@bcc-code/component-library-vue 0.0.0-dev.f3889d2 → 0.0.0-dev.f3b912b

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
@@ -1810,16 +1810,18 @@
1810
1810
  cursor: pointer;
1811
1811
  }
1812
1812
 
1813
- .clickable:hover {
1814
- --ctx-background: var(--ctx-background-hover);
1815
- --ctx-text: var(--ctx-text-hover);
1816
- --ctx-border: var(--ctx-border-hover);
1817
- }
1813
+ @media (hover: hover) and (pointer: fine) {
1814
+ .clickable:hover {
1815
+ --ctx-background: var(--ctx-background-hover);
1816
+ --ctx-text: var(--ctx-text-hover);
1817
+ --ctx-border: var(--ctx-border-hover);
1818
+ }
1818
1819
 
1819
- .clickable:active {
1820
- --ctx-background: var(--ctx-background-pressed);
1821
- --ctx-text: var(--ctx-text-pressed);
1822
- --ctx-border: var(--ctx-border-pressed);
1820
+ .clickable:active {
1821
+ --ctx-background: var(--ctx-background-pressed);
1822
+ --ctx-text: var(--ctx-text-pressed);
1823
+ --ctx-border: var(--ctx-border-pressed);
1824
+ }
1823
1825
  }
1824
1826
 
1825
1827
 
@@ -1843,6 +1845,10 @@
1843
1845
  /* === ./styles/component-overrides.css === */
1844
1846
  /** Custom styles to fix primevue components that are not custom or wrapped. */
1845
1847
 
1848
+ :root {
1849
+ --p-toast-width: min(85vw, 400px);
1850
+ }
1851
+
1846
1852
  /**
1847
1853
  * GUTTER FIX
1848
1854
  * Primevue's dropwdown components are all missing the gap between input and dropdown
@@ -1,3 +1,11 @@
1
- declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1
+ type __VLS_Props = {
2
+ icon?: string;
3
+ size?: 'sm' | 'md' | 'base' | 'lg' | 'xl' | '2xl' | '3xl';
4
+ left?: boolean;
5
+ right?: boolean;
6
+ };
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
8
+ size: "sm" | "md" | "base" | "lg" | "xl" | "2xl" | "3xl";
9
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
2
10
  declare const _default: typeof __VLS_export;
3
11
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bcc-code/component-library-vue",
3
- "version": "0.0.0-dev.f3889d2",
3
+ "version": "0.0.0-dev.f3b912b",
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,7 +53,7 @@
53
53
  "create-version": "node ./scripts/version.cjs"
54
54
  },
55
55
  "dependencies": {
56
- "@bcc-code/design-tokens": "^5.1.50",
56
+ "@bcc-code/design-tokens": "^5.1.56",
57
57
  "@bcc-code/icons-vue": "^1.4.0",
58
58
  "@primeuix/themes": "^2.0.3",
59
59
  "@tailwindcss/vite": "^4.1.18",