@bcc-code/component-library-vue 1.4.5 → 1.4.6
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 +3651 -3645
- package/dist/component-library.umd.cjs +188 -188
- package/dist/index.css +1 -1
- package/dist/theme.css +11 -1
- package/dist-types/components/custom/BccReact/types.d.ts +2 -0
- package/dist-types/components/custom/BccTopNavigation/BccTopNavigation.vue.d.ts +1 -0
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -1547,6 +1547,10 @@
|
|
|
1547
1547
|
--p-tooltip-max-width: min(85vw, calc(var(--spacing) * 100));
|
|
1548
1548
|
}
|
|
1549
1549
|
|
|
1550
|
+
.p-overlay-mask {
|
|
1551
|
+
padding: 1rem;
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1550
1554
|
/**
|
|
1551
1555
|
* GUTTER FIX
|
|
1552
1556
|
* Primevue's dropwdown components are all missing the gap between input and dropdown
|
|
@@ -2318,7 +2322,13 @@
|
|
|
2318
2322
|
@apply flex shrink-0 cursor-pointer items-center justify-center rounded-full transition;
|
|
2319
2323
|
}
|
|
2320
2324
|
.bcc-react-list {
|
|
2321
|
-
@apply hide-scrollbar ml-2 flex h-8 flex-1 items-center gap-1.5
|
|
2325
|
+
@apply hide-scrollbar ml-2 flex h-8 flex-1 items-center gap-1.5 rounded-full;
|
|
2326
|
+
}
|
|
2327
|
+
.bcc-react-list--limited {
|
|
2328
|
+
@apply min-w-0 overflow-x-auto;
|
|
2329
|
+
max-width: calc(
|
|
2330
|
+
var(--bcc-react-max-visible) * 3.25rem + (var(--bcc-react-max-visible) - 1) * 0.375rem
|
|
2331
|
+
);
|
|
2322
2332
|
}
|
|
2323
2333
|
.bcc-react-empty {
|
|
2324
2334
|
@apply heading-xs flex items-center;
|
|
@@ -15,4 +15,6 @@ export type ReactProps = {
|
|
|
15
15
|
top?: boolean;
|
|
16
16
|
/** Message shown when there are no reactions yet (e.g. "Be the first to react"). */
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
/** Max active reactions visible at once; overflow scrolls horizontally when exceeded. */
|
|
19
|
+
max?: number;
|
|
18
20
|
};
|
package/package.json
CHANGED