@bcc-code/component-library-vue 0.5.0 → 0.6.0
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 +44 -0
- package/dist/component-library.js +13347 -14420
- package/dist/component-library.umd.cjs +186 -225
- package/dist/index.css +1 -1
- package/dist/theme.css +8 -0
- package/package.json +9 -3
package/dist/theme.css
CHANGED
|
@@ -1819,6 +1819,14 @@
|
|
|
1819
1819
|
|
|
1820
1820
|
|
|
1821
1821
|
|
|
1822
|
+
/* === ./styles/component-overrides.css === */
|
|
1823
|
+
.p-autocomplete .p-icon {
|
|
1824
|
+
--p-icon-size: 20px;
|
|
1825
|
+
--p-form-field-sm-font-size: 20px;
|
|
1826
|
+
--p-form-field-lg-font-size: 24px;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
|
|
1822
1830
|
|
|
1823
1831
|
/* === ./components/custom/styles.css === */
|
|
1824
1832
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcc-code/component-library-vue",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
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",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"generate:context-modes": "node scripts/generate-context-modes.mjs",
|
|
45
45
|
"generate:context-css": "node scripts/generate-context-css.mjs",
|
|
46
46
|
"generate": "pnpm run generate:semantic && pnpm run generate:semantic-css && pnpm run generate:context-modes && pnpm run generate:context-css",
|
|
47
|
+
"sync:primevue-icon-patches": "node scripts/sync-primevue-icon-patches.mjs",
|
|
47
48
|
"typecheck": "vue-tsc --noEmit",
|
|
48
49
|
"lint": "eslint src/**/*.ts src/**/*.vue",
|
|
49
50
|
"lint:fix": "eslint --fix src/**/*.ts src/**/*.vue",
|
|
@@ -59,8 +60,8 @@
|
|
|
59
60
|
"tailwindcss": "^4.0.0"
|
|
60
61
|
},
|
|
61
62
|
"peerDependencies": {
|
|
62
|
-
"
|
|
63
|
-
"
|
|
63
|
+
"@bcc-code/design-tokens": "^5.0.3",
|
|
64
|
+
"vue": "^3.5.0"
|
|
64
65
|
},
|
|
65
66
|
"devDependencies": {
|
|
66
67
|
"@bcc-code/design-tokens": "^5.0.3",
|
|
@@ -93,5 +94,10 @@
|
|
|
93
94
|
"vitest": "^4.0.18",
|
|
94
95
|
"vue": "^3.5.0",
|
|
95
96
|
"vue-tsc": "^3.2.4"
|
|
97
|
+
},
|
|
98
|
+
"pnpm": {
|
|
99
|
+
"patchedDependencies": {
|
|
100
|
+
"@primevue/icons": "patches/@primevue__icons.patch"
|
|
101
|
+
}
|
|
96
102
|
}
|
|
97
103
|
}
|