@bcc-code/component-library-vue 0.0.0-dev.1f2ce94 → 0.0.0-dev.227aecb
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 +9 -0
- package/dist/component-library.js +45264 -42535
- package/dist/component-library.umd.cjs +4237 -4237
- package/dist/index.css +1 -1
- package/dist/theme.css +1223 -1001
- package/dist-types/components/custom/BccAppNavigation/BccAppNavigation.vue.d.ts +32 -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 +9 -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 +3 -2
- package/dist-types/components/custom/BccStepIndicator/BccStepIndicator.vue.d.ts +28 -0
- 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 +6 -6
- package/dist-types/components/{custom → wrapped}/BccAvatar/BccAvatar.vue.d.ts +2 -2
- package/dist-types/components/wrapped/BccButton.vue.d.ts +1 -0
- package/dist-types/components/wrapped/BccCheckbox.vue.d.ts +1 -0
- package/dist-types/components/wrapped/BccChip/BccChip.vue.d.ts +18 -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 +4 -2
- package/dist-types/components/wrapped/BccRadioButton.vue.d.ts +20 -0
- package/dist-types/components/wrapped/BccSelectButton.vue.d.ts +20 -0
- package/dist-types/components/{custom → wrapped}/BccTabs/BccTabs.vue.d.ts +3 -1
- package/dist-types/components/{custom → wrapped}/BccToggle/BccToggle.vue.d.ts +12 -1
- package/dist-types/components/wrapped/index.d.ts +17 -0
- package/dist-types/index.d.ts +13 -8
- package/package.json +11 -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.227aecb",
|
|
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",
|
|
@@ -49,10 +49,12 @@
|
|
|
49
49
|
"lint": "eslint src/**/*.ts src/**/*.vue",
|
|
50
50
|
"lint:fix": "eslint --fix src/**/*.ts src/**/*.vue",
|
|
51
51
|
"test:unit": "vitest run",
|
|
52
|
+
"test:e2e": "playwright test",
|
|
52
53
|
"release-channel": "node ./scripts/release-channel.cjs",
|
|
53
54
|
"create-version": "node ./scripts/version.cjs"
|
|
54
55
|
},
|
|
55
56
|
"dependencies": {
|
|
57
|
+
"@bcc-code/design-tokens": "^5.2.3",
|
|
56
58
|
"@bcc-code/icons-vue": "^1.4.0",
|
|
57
59
|
"@primeuix/themes": "^2.0.3",
|
|
58
60
|
"@tailwindcss/vite": "^4.1.18",
|
|
@@ -60,16 +62,14 @@
|
|
|
60
62
|
"tailwindcss": "^4.0.0"
|
|
61
63
|
},
|
|
62
64
|
"peerDependencies": {
|
|
63
|
-
"@bcc-code/design-tokens": "^5.1.0",
|
|
64
65
|
"vue": "^3.5.0"
|
|
65
66
|
},
|
|
66
67
|
"devDependencies": {
|
|
67
|
-
"@bcc-code/design-tokens": "^5.1.0",
|
|
68
68
|
"@eslint/js": "^9.39.2",
|
|
69
|
+
"@playwright/test": "^1.59.1",
|
|
69
70
|
"@primevue/auto-import-resolver": "^4.5.4",
|
|
70
|
-
"@storybook/addon-docs": "^10.
|
|
71
|
-
"@storybook/vue3": "^10.
|
|
72
|
-
"@storybook/vue3-vite": "^10.0.0",
|
|
71
|
+
"@storybook/addon-docs": "^10.3.5",
|
|
72
|
+
"@storybook/vue3-vite": "^10.3.5",
|
|
73
73
|
"@types/node": "^22.0.0",
|
|
74
74
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
75
75
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
@@ -78,15 +78,19 @@
|
|
|
78
78
|
"autoprefixer": "^10.4.20",
|
|
79
79
|
"eslint": "^9.39.2",
|
|
80
80
|
"eslint-plugin-prettier": "^5.5.5",
|
|
81
|
+
"eslint-plugin-storybook": "10.3.5",
|
|
81
82
|
"eslint-plugin-vue": "^10.7.0",
|
|
82
83
|
"globals": "^17.3.0",
|
|
84
|
+
"http-server": "^14.1.1",
|
|
83
85
|
"jiti": "^2.6.1",
|
|
84
86
|
"npm-run-all": "^4.1.5",
|
|
85
87
|
"postcss": "^8.4.49",
|
|
86
88
|
"prettier": "^3.8.1",
|
|
87
89
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
90
|
+
"remark-gfm": "^4.0.0",
|
|
88
91
|
"rimraf": "^6.0.0",
|
|
89
|
-
"storybook": "^10.
|
|
92
|
+
"storybook": "^10.3.5",
|
|
93
|
+
"tippy.js": "^6.3.7",
|
|
90
94
|
"typescript": "~5.7.0",
|
|
91
95
|
"typescript-eslint": "^8.54.0",
|
|
92
96
|
"unplugin-vue-components": "^31.0.0",
|