@bcc-code/component-library-vue 0.0.0-dev.29c9655 → 0.0.0-dev.29ce246
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 +1095 -1123
- package/dist/component-library.umd.cjs +46 -46
- package/dist/index.css +1 -1
- package/dist/theme.css +616 -582
- package/dist-types/components/custom/BccGraphic/BccGraphic.vue.d.ts +7 -4
- package/package.json +4 -4
|
@@ -9,6 +9,8 @@ export type GraphicProps = {
|
|
|
9
9
|
ratio?: AspectRatioStyle;
|
|
10
10
|
/** When true, renders the banner image in grayscale. */
|
|
11
11
|
grayscale?: boolean;
|
|
12
|
+
/** When true, renders the banner image with a brightness of 150%. */
|
|
13
|
+
highlight?: boolean;
|
|
12
14
|
};
|
|
13
15
|
export declare const ratioClasses: {
|
|
14
16
|
ultraWide: string;
|
|
@@ -22,6 +24,7 @@ export declare const roundingClasses: {
|
|
|
22
24
|
sm: string;
|
|
23
25
|
base: string;
|
|
24
26
|
md: string;
|
|
27
|
+
lg: string;
|
|
25
28
|
xl: string;
|
|
26
29
|
};
|
|
27
30
|
export type AspectRatioStyle = keyof typeof ratioClasses | string | undefined;
|
|
@@ -32,13 +35,13 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<Graphi
|
|
|
32
35
|
rounding: keyof typeof roundingClasses;
|
|
33
36
|
ratio: string;
|
|
34
37
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
35
|
-
|
|
38
|
+
topLeft?: (props: {}) => any;
|
|
36
39
|
} & {
|
|
37
|
-
|
|
40
|
+
topRight?: (props: {}) => any;
|
|
38
41
|
} & {
|
|
39
|
-
|
|
42
|
+
bottomRight?: (props: {}) => any;
|
|
40
43
|
} & {
|
|
41
|
-
|
|
44
|
+
bottomLeft?: (props: {}) => any;
|
|
42
45
|
}>;
|
|
43
46
|
type __VLS_WithSlots<T, S> = T & {
|
|
44
47
|
new (): {
|
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.29ce246",
|
|
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.4",
|
|
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": {
|