@bcc-code/component-library-vue 0.0.0-dev.8327377 → 0.0.0-dev.883df16
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 +5969 -5867
- package/dist/component-library.umd.cjs +327 -327
- package/dist/index.css +1 -1
- package/dist/theme.css +287 -232
- package/dist-types/components/custom/BccCircleLoader/BccCircleLoader.vue.d.ts +9 -1
- package/dist-types/components/custom/BccTopNavigation/BccTopNavigation.vue.d.ts +11 -3
- package/dist-types/components/wrapped/BccMenu/BccMenu.vue.d.ts +15 -1
- package/dist-types/components/wrapped/BccRadioButton.vue.d.ts +1 -0
- package/dist-types/components/wrapped/BccSelectButton.vue.d.ts +17 -0
- package/dist-types/components/wrapped/index.d.ts +2 -0
- package/dist-types/index.d.ts +0 -1
- package/package.json +2 -2
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
|
|
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;
|
|
@@ -22,13 +22,21 @@ declare var __VLS_1: {
|
|
|
22
22
|
title: string;
|
|
23
23
|
subtitle: string;
|
|
24
24
|
};
|
|
25
|
-
}, __VLS_13: {
|
|
25
|
+
}, __VLS_13: {
|
|
26
|
+
title: string;
|
|
27
|
+
}, __VLS_15: {
|
|
28
|
+
subtitle: string;
|
|
29
|
+
}, __VLS_17: {}, __VLS_24: {};
|
|
26
30
|
type __VLS_Slots = {} & {
|
|
27
31
|
default?: (props: typeof __VLS_1) => any;
|
|
28
32
|
} & {
|
|
29
|
-
|
|
33
|
+
title?: (props: typeof __VLS_13) => any;
|
|
30
34
|
} & {
|
|
31
|
-
|
|
35
|
+
subtitle?: (props: typeof __VLS_15) => any;
|
|
36
|
+
} & {
|
|
37
|
+
right?: (props: typeof __VLS_17) => any;
|
|
38
|
+
} & {
|
|
39
|
+
bottom?: (props: typeof __VLS_24) => any;
|
|
32
40
|
};
|
|
33
41
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
34
42
|
back: () => any;
|
|
@@ -9,6 +9,20 @@ export type BccMenuItem = Omit<MenuItem, 'icon' | 'items'> & {
|
|
|
9
9
|
export type MenuProps = {
|
|
10
10
|
model?: BccMenuItem[];
|
|
11
11
|
} & Omit<PrimeMenuProps, 'model'>;
|
|
12
|
-
declare
|
|
12
|
+
declare var __VLS_16: {
|
|
13
|
+
item: MenuItem;
|
|
14
|
+
label: string | ((...args: any) => string) | undefined;
|
|
15
|
+
props: import("primevue").MenuRouterBindProps;
|
|
16
|
+
};
|
|
17
|
+
type __VLS_Slots = {} & {
|
|
18
|
+
item?: (props: typeof __VLS_16) => any;
|
|
19
|
+
};
|
|
20
|
+
declare const __VLS_base: import("vue").DefineComponent<MenuProps, PrimeMenuMethods, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MenuProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
13
22
|
declare const _default: typeof __VLS_export;
|
|
14
23
|
export default _default;
|
|
24
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -2,6 +2,7 @@ import { type RadioButtonProps as PrimeRadioButtonProps } from 'primevue/radiobu
|
|
|
2
2
|
export type RadioButtonProps = PrimeRadioButtonProps & {
|
|
3
3
|
label?: string;
|
|
4
4
|
labelLeft?: boolean;
|
|
5
|
+
justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
|
|
5
6
|
};
|
|
6
7
|
declare var __VLS_6: {};
|
|
7
8
|
type __VLS_Slots = {} & {
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { type SelectButtonProps as PrimeSelectButtonProps } from 'primevue/selectbutton';
|
|
2
|
+
export type SelectButtonProps = PrimeSelectButtonProps;
|
|
3
|
+
declare var __VLS_9: {
|
|
4
|
+
option: any;
|
|
5
|
+
};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
option?: (props: typeof __VLS_9) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_base: import("vue").DefineComponent<PrimeSelectButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PrimeSelectButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -12,6 +12,7 @@ export { default as BccInput } from './BccInput.vue';
|
|
|
12
12
|
export { default as BccMenu } from './BccMenu/BccMenu.vue';
|
|
13
13
|
export { default as BccMessage } from './BccMessage.vue';
|
|
14
14
|
export { default as BccRadioButton } from './BccRadioButton.vue';
|
|
15
|
+
export { default as BccSelectButton } from './BccSelectButton.vue';
|
|
15
16
|
export { default as BccTabs } from './BccTabs/BccTabs.vue';
|
|
16
17
|
export { default as BccToggle } from './BccToggle/BccToggle.vue';
|
|
17
18
|
export { default as BccToggleButton } from './BccToggleButton.vue';
|
|
@@ -24,6 +25,7 @@ export type { InputProps } from './BccInput.vue';
|
|
|
24
25
|
export type { BccMenuItem, MenuProps } from './BccMenu/BccMenu.vue';
|
|
25
26
|
export type { MessageProps } from './BccMessage.vue';
|
|
26
27
|
export type { RadioButtonProps } from './BccRadioButton.vue';
|
|
28
|
+
export type { SelectButtonProps } from './BccSelectButton.vue';
|
|
27
29
|
export type { TabItem, TabsProps } from './BccTabs/BccTabs.vue';
|
|
28
30
|
export type { ToggleProps } from './BccToggle/BccToggle.vue';
|
|
29
31
|
export type { ToggleButtonProps } from './BccToggleButton.vue';
|
package/dist-types/index.d.ts
CHANGED
|
@@ -101,7 +101,6 @@ export { default as BccRow } from 'primevue/row';
|
|
|
101
101
|
export { default as BccScrollPanel } from 'primevue/scrollpanel';
|
|
102
102
|
export { default as BccScrollTop } from 'primevue/scrolltop';
|
|
103
103
|
export { default as BccSelect } from 'primevue/select';
|
|
104
|
-
export { default as BccSelectButton } from 'primevue/selectbutton';
|
|
105
104
|
export { default as BccSkeleton } from 'primevue/skeleton';
|
|
106
105
|
export { default as BccSlider } from 'primevue/slider';
|
|
107
106
|
export { default as BccSpeedDial } from 'primevue/speeddial';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcc-code/component-library-vue",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.883df16",
|
|
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.
|
|
56
|
+
"@bcc-code/design-tokens": "^5.1.60",
|
|
57
57
|
"@bcc-code/icons-vue": "^1.4.0",
|
|
58
58
|
"@primeuix/themes": "^2.0.3",
|
|
59
59
|
"@tailwindcss/vite": "^4.1.18",
|