@designcrowd/fe-shared-lib 1.2.1 → 1.2.2-data-id-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +2 -0
- package/index.js +2 -0
- package/nodemon.translation.json +7 -0
- package/package.json +7 -2
- package/{dist → public}/css/tailwind-brandCrowd.css +501 -608
- package/{dist → public}/css/tailwind-brandPage.css +425 -528
- package/{dist → public}/css/tailwind-crazyDomains.css +501 -608
- package/{dist → public}/css/tailwind-designCom.css +501 -608
- package/{dist → public}/css/tailwind-designCrowd.css +501 -608
- package/src/atoms/components/Icon/Icon.vue +4 -3
- package/src/bundleTranslation.js +89 -0
- package/src/bundles/bundled-translations.de-DE.json +5 -0
- package/src/bundles/bundled-translations.es-ES.json +5 -0
- package/src/bundles/bundled-translations.fr-FR.json +5 -0
- package/src/bundles/bundled-translations.json +5 -0
- package/src/bundles/bundled-translations.pt-PT.json +5 -0
- package/src/experiences/components/PaymentConfigList/PaymentConfig.mixin.js +1 -1
- package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue +16 -8
- package/src/experiences/components/PublishBrandPageModal/i18n/publish-modal.de-DE.json +5 -0
- package/src/experiences/components/PublishBrandPageModal/i18n/publish-modal.es-ES.json +5 -0
- package/src/experiences/components/PublishBrandPageModal/i18n/publish-modal.fr-FR.json +5 -0
- package/src/experiences/components/PublishBrandPageModal/i18n/publish-modal.json +5 -0
- package/src/experiences/components/PublishBrandPageModal/i18n/publish-modal.pt-PT.json +5 -0
- package/src/useSharedLibTranslate.js +38 -0
package/Dockerfile
CHANGED
package/index.js
CHANGED
|
@@ -19,6 +19,8 @@ export { default as SellDomainNameWidget } from './src/experiences/components/Se
|
|
|
19
19
|
export { default as PublishBrandPageModal } from './src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue';
|
|
20
20
|
export { default as PublishBrandPageCard } from './src/experiences/components/PublishBrandPageModal/PublishBrandPageCard.vue';
|
|
21
21
|
|
|
22
|
+
export { setLocaleAsync, tr } from './src/useSharedLibTranslate';
|
|
23
|
+
|
|
22
24
|
export { default as Button } from './src/atoms/components/Button/Button.vue';
|
|
23
25
|
export { default as ButtonGroup } from './src/atoms/components/ButtonGroup/ButtonGroup.vue';
|
|
24
26
|
export { default as Dropdown } from './src/atoms/components/Dropdown/Dropdown.vue';
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@designcrowd/fe-shared-lib",
|
|
3
|
-
"version": "1.2.1",
|
|
3
|
+
"version": "1.2.2-data-id-1",
|
|
4
4
|
"scripts": {
|
|
5
|
-
"start": "
|
|
5
|
+
"start": "run-p storybook watch:translation",
|
|
6
6
|
"build": "npm run build:css --production",
|
|
7
7
|
"storybook": "export NODE_ENV=development && npm run storybook:css && npm run storybook:themes && storybook dev -p 6006 public",
|
|
8
8
|
"build:css": "node ./tailwind.build.js",
|
|
9
9
|
"build:storybook": "mkdir -p public && mkdir -p public/css && npm run storybook:css && storybook build -c .storybook -o .storybook-static && cp -R ./public/css .storybook-static/",
|
|
10
|
+
"bundle-translation": "node ./src/bundleTranslation.js",
|
|
11
|
+
"watch:translation": "nodemon --config nodemon.translation.json",
|
|
10
12
|
"storybook:themes": "node ./tailwind.themes.js",
|
|
11
13
|
"storybook:css": "node ./tailwind.build.js --storybook",
|
|
12
14
|
"lint": "NODE_ENV=production eslint ./src/ --ext .ts,.js,.vue",
|
|
@@ -26,6 +28,7 @@
|
|
|
26
28
|
"cropperjs": "1.6.1",
|
|
27
29
|
"dropzone-vue3": "1.0.2",
|
|
28
30
|
"fs-extra": "11.2.0",
|
|
31
|
+
"i18next": "25.2.1",
|
|
29
32
|
"lodash.throttle": "4.1.1",
|
|
30
33
|
"postcss-loader": "8.1.0",
|
|
31
34
|
"swiper": "11.0.6",
|
|
@@ -62,6 +65,8 @@
|
|
|
62
65
|
"eslint-plugin-vue": "9.21.1",
|
|
63
66
|
"husky": "9.0.10",
|
|
64
67
|
"lint-staged": "15.2.1",
|
|
68
|
+
"nodemon": "3.0.3",
|
|
69
|
+
"npm-run-all": "4.1.5",
|
|
65
70
|
"postcss": "8.4.33",
|
|
66
71
|
"postcss-cli": "11.0.0",
|
|
67
72
|
"postcss-import": "16.0.0",
|