@bcc-code/component-library-vue 1.3.29 → 1.4.0

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.
@@ -2,15 +2,15 @@ import type { VueComponent } from '@/types';
2
2
  import { type ButtonProps as PrimeButtonProps } from 'primevue/button';
3
3
  export type ButtonProps = {
4
4
  icon?: VueComponent;
5
- iconRight?: boolean;
5
+ iconRight?: boolean | VueComponent;
6
6
  iconClass?: PrimeButtonProps['iconClass'];
7
7
  size?: PrimeButtonProps['size'];
8
8
  loadingIcon?: VueComponent;
9
9
  useCtx?: boolean;
10
10
  } & /* @vue-ignore */ Omit<PrimeButtonProps, 'icon' | 'iconPos' | 'loadingIcon'>;
11
- declare var __VLS_20: {};
11
+ declare var __VLS_25: {};
12
12
  type __VLS_Slots = {} & {
13
- default?: (props: typeof __VLS_20) => any;
13
+ default?: (props: typeof __VLS_25) => any;
14
14
  };
15
15
  declare const __VLS_base: import("vue").DefineComponent<ButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
16
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bcc-code/component-library-vue",
3
- "version": "1.3.29",
3
+ "version": "1.4.0",
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",
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "dependencies": {
61
61
  "@bcc-code/design-tokens": "^5.2.5",
62
- "@bcc-code/icons-vue": "^1.4.0",
62
+ "@bcc-code/icons-vue": "^1.5.0",
63
63
  "@primeuix/themes": "^2.0.3",
64
64
  "@tailwindcss/vite": "^4.1.18",
65
65
  "primevue": "^4.5.4",