@bcc-code/component-library-vue 0.0.0-dev.2a59bd6 → 0.0.0-dev.2b1ba99
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 +1472 -1481
- package/dist/component-library.umd.cjs +91 -91
- package/dist/index.css +1 -1
- package/dist/theme.css +608 -589
- package/dist-types/components/custom/BccGraphic/BccGraphic.vue.d.ts +5 -4
- package/dist-types/components/wrapped/BccMessage.vue.d.ts +5 -1
- package/package.json +4 -4
|
@@ -24,6 +24,7 @@ export declare const roundingClasses: {
|
|
|
24
24
|
sm: string;
|
|
25
25
|
base: string;
|
|
26
26
|
md: string;
|
|
27
|
+
lg: string;
|
|
27
28
|
xl: string;
|
|
28
29
|
};
|
|
29
30
|
export type AspectRatioStyle = keyof typeof ratioClasses | string | undefined;
|
|
@@ -34,13 +35,13 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<Graphi
|
|
|
34
35
|
rounding: keyof typeof roundingClasses;
|
|
35
36
|
ratio: string;
|
|
36
37
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
37
|
-
|
|
38
|
+
topLeft?: (props: {}) => any;
|
|
38
39
|
} & {
|
|
39
|
-
|
|
40
|
+
topRight?: (props: {}) => any;
|
|
40
41
|
} & {
|
|
41
|
-
|
|
42
|
+
bottomRight?: (props: {}) => any;
|
|
42
43
|
} & {
|
|
43
|
-
|
|
44
|
+
bottomLeft?: (props: {}) => any;
|
|
44
45
|
}>;
|
|
45
46
|
type __VLS_WithSlots<T, S> = T & {
|
|
46
47
|
new (): {
|
|
@@ -6,9 +6,13 @@ export type MessageProps = Omit<PrimeMessageProps, 'icon'> & {
|
|
|
6
6
|
title?: string;
|
|
7
7
|
message?: string;
|
|
8
8
|
};
|
|
9
|
-
declare var __VLS_19: {};
|
|
9
|
+
declare var __VLS_19: {}, __VLS_21: {}, __VLS_23: {};
|
|
10
10
|
type __VLS_Slots = {} & {
|
|
11
11
|
default?: (props: typeof __VLS_19) => any;
|
|
12
|
+
} & {
|
|
13
|
+
title?: (props: typeof __VLS_21) => any;
|
|
14
|
+
} & {
|
|
15
|
+
message?: (props: typeof __VLS_23) => any;
|
|
12
16
|
};
|
|
13
17
|
declare const __VLS_base: import("vue").DefineComponent<MessageProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MessageProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
18
|
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": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.2b1ba99",
|
|
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",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"create-version": "node ./scripts/version.cjs"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@bcc-code/design-tokens": "^5.
|
|
57
|
+
"@bcc-code/design-tokens": "^5.2.5",
|
|
58
58
|
"@bcc-code/icons-vue": "^1.4.0",
|
|
59
59
|
"@primeuix/themes": "^2.0.3",
|
|
60
60
|
"@tailwindcss/vite": "^4.1.18",
|
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
"autoprefixer": "^10.4.20",
|
|
79
79
|
"eslint": "^9.39.2",
|
|
80
80
|
"eslint-plugin-prettier": "^5.5.5",
|
|
81
|
+
"eslint-plugin-storybook": "10.3.5",
|
|
81
82
|
"eslint-plugin-vue": "^10.7.0",
|
|
82
83
|
"globals": "^17.3.0",
|
|
83
84
|
"http-server": "^14.1.1",
|
|
@@ -96,8 +97,7 @@
|
|
|
96
97
|
"vite": "^7.3.0",
|
|
97
98
|
"vitest": "^4.0.18",
|
|
98
99
|
"vue": "^3.5.0",
|
|
99
|
-
"vue-tsc": "^3.2.4"
|
|
100
|
-
"eslint-plugin-storybook": "10.3.5"
|
|
100
|
+
"vue-tsc": "^3.2.4"
|
|
101
101
|
},
|
|
102
102
|
"pnpm": {
|
|
103
103
|
"patchedDependencies": {
|