@bcc-code/component-library-vue 0.7.0 → 0.7.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/dist/component-library.js +308 -329
- package/dist/component-library.umd.cjs +38 -38
- package/dist/index.css +1 -1
- package/dist/theme.css +10 -8
- package/package.json +2 -2
package/dist/theme.css
CHANGED
|
@@ -1981,11 +1981,11 @@
|
|
|
1981
1981
|
}
|
|
1982
1982
|
|
|
1983
1983
|
.bcc-knob-top-left {
|
|
1984
|
-
@apply absolute top-0 left-0
|
|
1984
|
+
@apply absolute top-0 left-0 text-left;
|
|
1985
1985
|
}
|
|
1986
1986
|
|
|
1987
1987
|
.bcc-knob-top-right {
|
|
1988
|
-
@apply absolute top-0 right-0
|
|
1988
|
+
@apply absolute top-0 right-0 text-right;
|
|
1989
1989
|
}
|
|
1990
1990
|
}
|
|
1991
1991
|
|
|
@@ -2453,17 +2453,19 @@
|
|
|
2453
2453
|
|
|
2454
2454
|
|
|
2455
2455
|
|
|
2456
|
-
:host {
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2456
|
+
:root, :host {
|
|
2457
|
+
--font-sans: 'Archivo', system-ui, sans-serif;
|
|
2458
|
+
@apply font-sans antialiased p-0 m-0;
|
|
2459
|
+
-webkit-font-smoothing: antialiased;
|
|
2460
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2461
|
+
|
|
2460
2462
|
}
|
|
2461
2463
|
|
|
2462
2464
|
b,
|
|
2463
2465
|
strong,
|
|
2464
2466
|
.bold {
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
+
font-weight: bold;
|
|
2468
|
+
--ctx-text: var(--ctx-text-bold);
|
|
2467
2469
|
}
|
|
2468
2470
|
|
|
2469
2471
|
/* Disable state */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcc-code/component-library-vue",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
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",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"create-version": "node ./scripts/version.cjs"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
+
"@bcc-code/design-tokens": "^5.1.0",
|
|
56
57
|
"@bcc-code/icons-vue": "^1.4.0",
|
|
57
58
|
"@primeuix/themes": "^2.0.3",
|
|
58
59
|
"@tailwindcss/vite": "^4.1.18",
|
|
@@ -64,7 +65,6 @@
|
|
|
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
69
|
"@primevue/auto-import-resolver": "^4.5.4",
|
|
70
70
|
"@storybook/addon-docs": "^10.2.8",
|