1
0
Fork 0

wip(sde): Working on file list

This commit is contained in:
joostdecock 2023-09-29 16:01:27 +02:00
parent 9929aed51a
commit c65c5876a3
199 changed files with 1065 additions and 196 deletions

View file

@ -1,9 +1,9 @@
// __SDEFILE__ - This file is a dependency for the stand-alone environment
import Worker from 'web-worker'
import fileSaver from 'file-saver'
import { themePlugin } from '@freesewing/plugin-theme'
import { pluginI18n } from '@freesewing/plugin-i18n'
import { pagesPlugin, materialPlugin } from 'shared/plugins/plugin-layout-part.mjs'
import { pluginAnnotations } from '@freesewing/plugin-annotations'
import { cutLayoutPlugin } from 'shared/plugins/plugin-cut-layout.mjs'
import { materialSettingsOrDefault } from 'shared/components/workbench/views/cut/hooks.mjs'
import { useMaterialLength } from 'shared/components/workbench/views/cut/hooks.mjs'
@ -36,7 +36,6 @@ const themedPattern = (Design, settings, overwrite, format, t) => {
// add the theme and translation to the pattern
pattern.use(themePlugin, { stripped: format !== 'svg', skipGrid: ['pages'] })
pattern.use(pluginI18n, { t })
pattern.use(pluginAnnotations)
return pattern
}