@bcc-code/component-library-vue 0.0.0-dev.926a8fe → 0.0.0-dev.944a07d
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/README.md +31 -35
- package/dist/component-library.js +36215 -32020
- package/dist/component-library.umd.cjs +3225 -2001
- package/dist/index.css +1 -1
- package/dist/library-utilities.css +2 -0
- package/dist/quill-BfNQeuzX.js +7524 -0
- package/dist/sfc-styles.css +1 -0
- package/dist/theme.css +1182 -980
- package/dist-types/components/custom/BccAppNavigation/BccAppNavigation.vue.d.ts +33 -0
- package/dist-types/components/custom/BccBadge/BccBadge.vue.d.ts +2 -0
- package/dist-types/components/custom/BccCapacityIndicator/BccCapacityIndicator.vue.d.ts +3 -0
- package/dist-types/components/custom/BccCircleLoader/BccCircleLoader.vue.d.ts +7 -1
- package/dist-types/components/custom/BccDialKnob/BccDialKnob.vue.d.ts +1 -1
- package/dist-types/components/custom/BccGraphic/BccGraphic.vue.d.ts +7 -4
- package/dist-types/components/custom/BccNpsResult/BccNpsResult.vue.d.ts +2 -2
- package/dist-types/components/custom/BccReact/BccReact.vue.d.ts +2 -1
- package/dist-types/components/custom/BccStepIndicator/BccStepIndicator.vue.d.ts +8 -8
- package/dist-types/components/custom/BccTag/BccTag.vue.d.ts +1 -0
- package/dist-types/components/custom/BccTopNavigation/BccTopNavigation.vue.d.ts +57 -0
- package/dist-types/components/custom/index.d.ts +4 -0
- package/dist-types/components/wrapped/BccAvatar/BccAvatar.vue.d.ts +2 -2
- package/dist-types/components/wrapped/BccButton.vue.d.ts +5 -3
- package/dist-types/components/wrapped/BccCheckbox.vue.d.ts +3 -0
- package/dist-types/components/wrapped/BccImage.vue.d.ts +17 -0
- package/dist-types/components/wrapped/BccMenu/BccMenu.vue.d.ts +28 -0
- package/dist-types/components/wrapped/BccMessage.vue.d.ts +8 -2
- package/dist-types/components/wrapped/BccRadioButton.vue.d.ts +21 -0
- package/dist-types/components/wrapped/BccSelectButton.vue.d.ts +20 -0
- package/dist-types/components/wrapped/BccTabs/BccTabs.vue.d.ts +2 -0
- package/dist-types/components/wrapped/BccToggle/BccToggle.vue.d.ts +12 -1
- package/dist-types/components/wrapped/index.d.ts +11 -0
- package/dist-types/index.d.ts +15 -7
- package/package.json +18 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcc-code/component-library-vue",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.944a07d",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Extended Vue component library based on PrimeVue and BCC design tokens",
|
|
6
6
|
"repository": "https://github.com/bcc-code/bcc-design.git",
|
|
@@ -30,6 +30,8 @@
|
|
|
30
30
|
},
|
|
31
31
|
"./style.css": "./dist/index.css",
|
|
32
32
|
"./theme.css": "./dist/theme.css",
|
|
33
|
+
"./sfc-styles.css": "./dist/sfc-styles.css",
|
|
34
|
+
"./library-utilities.css": "./dist/library-utilities.css",
|
|
33
35
|
"./archivo-font.css": "./dist/archivo-font.css",
|
|
34
36
|
"./tailwind.css": "./dist-css/tailwind.css"
|
|
35
37
|
},
|
|
@@ -37,7 +39,9 @@
|
|
|
37
39
|
"start": "storybook dev -p 6006",
|
|
38
40
|
"build-storybook": "storybook build",
|
|
39
41
|
"build": "run-p typecheck build:types build:vite",
|
|
40
|
-
"build:vite": "rimraf dist && vite build && node scripts/build-theme-css.mjs",
|
|
42
|
+
"build:vite": "rimraf dist && vite build && pnpm run build:sfc-styles && pnpm run build:library-utilities && node scripts/build-theme-css.mjs",
|
|
43
|
+
"build:sfc-styles": "vite build --config vite.config.sfc-styles.ts && rimraf dist/sfc-styles.js",
|
|
44
|
+
"build:library-utilities": "tailwindcss -i src/library-utilities-input.css -o dist/library-utilities.css --minify",
|
|
41
45
|
"build:types": "rimraf dist-types && vue-tsc -p tsconfig.build.json",
|
|
42
46
|
"generate:semantic": "node scripts/restructure-semantic-primitives.mjs",
|
|
43
47
|
"generate:semantic-css": "node scripts/generate-semantic-css.mjs",
|
|
@@ -49,11 +53,12 @@
|
|
|
49
53
|
"lint": "eslint src/**/*.ts src/**/*.vue",
|
|
50
54
|
"lint:fix": "eslint --fix src/**/*.ts src/**/*.vue",
|
|
51
55
|
"test:unit": "vitest run",
|
|
56
|
+
"test:e2e": "playwright test",
|
|
52
57
|
"release-channel": "node ./scripts/release-channel.cjs",
|
|
53
58
|
"create-version": "node ./scripts/version.cjs"
|
|
54
59
|
},
|
|
55
60
|
"dependencies": {
|
|
56
|
-
"@bcc-code/design-tokens": "^5.
|
|
61
|
+
"@bcc-code/design-tokens": "^5.2.5",
|
|
57
62
|
"@bcc-code/icons-vue": "^1.4.0",
|
|
58
63
|
"@primeuix/themes": "^2.0.3",
|
|
59
64
|
"@tailwindcss/vite": "^4.1.18",
|
|
@@ -65,10 +70,11 @@
|
|
|
65
70
|
},
|
|
66
71
|
"devDependencies": {
|
|
67
72
|
"@eslint/js": "^9.39.2",
|
|
73
|
+
"@playwright/test": "^1.59.1",
|
|
68
74
|
"@primevue/auto-import-resolver": "^4.5.4",
|
|
69
|
-
"@storybook/addon-docs": "^10.
|
|
70
|
-
"@storybook/vue3": "^10.
|
|
71
|
-
"@
|
|
75
|
+
"@storybook/addon-docs": "^10.3.5",
|
|
76
|
+
"@storybook/vue3-vite": "^10.3.5",
|
|
77
|
+
"@tailwindcss/cli": "^4.2.4",
|
|
72
78
|
"@types/node": "^22.0.0",
|
|
73
79
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
74
80
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
@@ -77,15 +83,20 @@
|
|
|
77
83
|
"autoprefixer": "^10.4.20",
|
|
78
84
|
"eslint": "^9.39.2",
|
|
79
85
|
"eslint-plugin-prettier": "^5.5.5",
|
|
86
|
+
"eslint-plugin-storybook": "10.3.5",
|
|
80
87
|
"eslint-plugin-vue": "^10.7.0",
|
|
81
88
|
"globals": "^17.3.0",
|
|
89
|
+
"http-server": "^14.1.1",
|
|
82
90
|
"jiti": "^2.6.1",
|
|
83
91
|
"npm-run-all": "^4.1.5",
|
|
84
92
|
"postcss": "^8.4.49",
|
|
85
93
|
"prettier": "^3.8.1",
|
|
86
94
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
95
|
+
"quill": "^2.0.3",
|
|
96
|
+
"remark-gfm": "^4.0.0",
|
|
87
97
|
"rimraf": "^6.0.0",
|
|
88
|
-
"storybook": "^10.
|
|
98
|
+
"storybook": "^10.3.5",
|
|
99
|
+
"tippy.js": "^6.3.7",
|
|
89
100
|
"typescript": "~5.7.0",
|
|
90
101
|
"typescript-eslint": "^8.54.0",
|
|
91
102
|
"unplugin-vue-components": "^31.0.0",
|