@bcc-code/component-library-vue 1.4.8 → 1.4.9
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 +1 -2
- package/dist/component-library.js +14287 -13149
- package/dist/component-library.umd.cjs +247 -212
- package/dist/index.css +1 -1
- package/dist/theme.css +22 -0
- package/package.json +2 -2
package/dist/theme.css
CHANGED
|
@@ -1651,6 +1651,28 @@
|
|
|
1651
1651
|
min-height: var(--p-togglebutton-lg-min-height);
|
|
1652
1652
|
}
|
|
1653
1653
|
|
|
1654
|
+
/**
|
|
1655
|
+
* By default stack toast messages
|
|
1656
|
+
**/
|
|
1657
|
+
.p-toast:not(.expanded) .p-toast-message {
|
|
1658
|
+
margin-top: 2rem;
|
|
1659
|
+
width: 100%;
|
|
1660
|
+
position: relative;
|
|
1661
|
+
z-index: 10;
|
|
1662
|
+
}
|
|
1663
|
+
.p-toast:not(.expanded) .p-toast-message:has(+ .p-toast-message) {
|
|
1664
|
+
margin-top: 0.8rem;
|
|
1665
|
+
width: 100%;
|
|
1666
|
+
position: absolute;
|
|
1667
|
+
transform: scale(0.9);
|
|
1668
|
+
transition: all 0.5s ease;
|
|
1669
|
+
z-index: 1;
|
|
1670
|
+
}
|
|
1671
|
+
.p-toast:not(.expanded) .p-toast-message:has(+ .p-toast-message + .p-toast-message) {
|
|
1672
|
+
margin-top: 1.6rem;
|
|
1673
|
+
transform: scale(0.8);
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1654
1676
|
/* primevue-overrides.css - CSS-level component overrides */
|
|
1655
1677
|
@layer custom {
|
|
1656
1678
|
.p-accordionheader {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcc-code/component-library-vue",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.9",
|
|
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",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@bcc-code/icons-vue": "^1.5.0",
|
|
66
66
|
"@primeuix/themes": "^2.0.3",
|
|
67
67
|
"@tailwindcss/vite": "^4.1.18",
|
|
68
|
-
"primevue": "^4.5.
|
|
68
|
+
"primevue": "^4.5.5",
|
|
69
69
|
"tailwindcss": "^4.0.0"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|