@bcc-code/component-library-vue 1.4.5 → 1.4.7

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/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:has(.p-dialog) {
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 overflow-visible rounded-full;
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
  };
@@ -13,6 +13,7 @@ type __VLS_Props = TopNavigationProps & {
13
13
  padded?: boolean;
14
14
  transparent?: boolean;
15
15
  white?: boolean;
16
+ sunken?: boolean;
16
17
  backTitle?: string;
17
18
  force?: boolean;
18
19
  titleLeft?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bcc-code/component-library-vue",
3
- "version": "1.4.5",
3
+ "version": "1.4.7",
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",