@bcc-code/component-library-vue 0.0.0-dev.8cb567c → 0.0.0-dev.8cc8bc2
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 +3386 -3372
- package/dist/component-library.umd.cjs +168 -168
- package/dist/index.css +1 -1
- package/dist/theme.css +13 -15
- package/dist-types/components/custom/BccStepIndicator/BccStepIndicator.vue.d.ts +3 -3
- package/dist-types/components/custom/BccTopNavigation/BccTopNavigation.vue.d.ts +9 -7
- package/package.json +2 -2
package/dist/theme.css
CHANGED
|
@@ -1962,29 +1962,27 @@
|
|
|
1962
1962
|
}
|
|
1963
1963
|
|
|
1964
1964
|
.bcc-app-nav-item {
|
|
1965
|
-
@apply
|
|
1965
|
+
@apply relative flex h-12 flex-1 flex-col items-center justify-center gap-1 transition-colors focus:ring-0 focus:outline-none;
|
|
1966
1966
|
}
|
|
1967
1967
|
|
|
1968
1968
|
.bcc-nav-item-icon {
|
|
1969
|
-
@apply size-6
|
|
1969
|
+
@apply size-6 icon-subtlest;
|
|
1970
1970
|
}
|
|
1971
1971
|
|
|
1972
1972
|
.bcc-nav-item-badge {
|
|
1973
|
-
@apply absolute top-0 right-1
|
|
1973
|
+
@apply absolute top-0 right-1;
|
|
1974
1974
|
}
|
|
1975
1975
|
|
|
1976
1976
|
.bcc-nav-item-title {
|
|
1977
|
-
@apply text-heading-xs text-center opacity-
|
|
1977
|
+
@apply text-heading-xs text-center text-subtlest opacity-75;
|
|
1978
1978
|
}
|
|
1979
1979
|
|
|
1980
|
-
.bcc-app-nav-item--active {
|
|
1981
|
-
@apply text-selected;
|
|
1980
|
+
.bcc-app-nav-item--active .bcc-nav-item-title {
|
|
1981
|
+
@apply text-selected opacity-100;
|
|
1982
1982
|
}
|
|
1983
1983
|
|
|
1984
|
-
.bcc-app-nav-item--active .bcc-nav-item-icon
|
|
1985
|
-
|
|
1986
|
-
.bcc-app-nav-item--active .bcc-nav-item-title {
|
|
1987
|
-
@apply opacity-100;
|
|
1984
|
+
.bcc-app-nav-item--active .bcc-nav-item-icon {
|
|
1985
|
+
@apply text-selected;
|
|
1988
1986
|
}
|
|
1989
1987
|
}
|
|
1990
1988
|
|
|
@@ -2432,27 +2430,27 @@
|
|
|
2432
2430
|
|
|
2433
2431
|
|
|
2434
2432
|
/* from ./BccTag/BccTag.css */
|
|
2435
|
-
|
|
2436
2433
|
@layer components {
|
|
2437
2434
|
.bcc-tag.bcc-badge {
|
|
2438
2435
|
@apply w-auto;
|
|
2439
2436
|
}
|
|
2440
2437
|
.bcc-tag.bcc-badge.md {
|
|
2441
|
-
@apply
|
|
2438
|
+
@apply text-body-md h-6;
|
|
2442
2439
|
}
|
|
2443
2440
|
.bcc-tag.bcc-badge.sm {
|
|
2444
|
-
@apply
|
|
2441
|
+
@apply text-body-sm h-5;
|
|
2445
2442
|
}
|
|
2446
2443
|
.bcc-tag.bcc-badge.lg {
|
|
2447
|
-
@apply
|
|
2444
|
+
@apply text-body-md h-8;
|
|
2448
2445
|
}
|
|
2449
2446
|
.bcc-tag.bcc-badge.xl {
|
|
2450
|
-
@apply
|
|
2447
|
+
@apply text-body-lg h-10;
|
|
2451
2448
|
}
|
|
2452
2449
|
}
|
|
2453
2450
|
|
|
2454
2451
|
|
|
2455
2452
|
|
|
2453
|
+
|
|
2456
2454
|
/* === ./components/wrapped/styles.css === */
|
|
2457
2455
|
|
|
2458
2456
|
/* from ./BccAvatar/BccAvatar.css */
|
|
@@ -11,13 +11,13 @@ export type StepIndicatorProps = {
|
|
|
11
11
|
};
|
|
12
12
|
type __VLS_Props = StepIndicatorProps;
|
|
13
13
|
type __VLS_ModelProps = {
|
|
14
|
-
modelValue?: number;
|
|
14
|
+
modelValue?: number | null;
|
|
15
15
|
};
|
|
16
16
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
17
17
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
-
"update:modelValue": (value: number) => any;
|
|
18
|
+
"update:modelValue": (value: number | null) => any;
|
|
19
19
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
20
|
-
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
20
|
+
"onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
|
|
21
21
|
}>, {
|
|
22
22
|
context: BCC_CONTEXT;
|
|
23
23
|
hideText: boolean;
|
|
@@ -22,21 +22,23 @@ declare var __VLS_1: {
|
|
|
22
22
|
title: string;
|
|
23
23
|
subtitle: string;
|
|
24
24
|
};
|
|
25
|
-
},
|
|
25
|
+
}, __VLS_8: {}, __VLS_15: {
|
|
26
26
|
title: string;
|
|
27
|
-
},
|
|
27
|
+
}, __VLS_17: {
|
|
28
28
|
subtitle: string;
|
|
29
|
-
},
|
|
29
|
+
}, __VLS_19: {}, __VLS_26: {};
|
|
30
30
|
type __VLS_Slots = {} & {
|
|
31
31
|
default?: (props: typeof __VLS_1) => any;
|
|
32
32
|
} & {
|
|
33
|
-
|
|
33
|
+
left?: (props: typeof __VLS_8) => any;
|
|
34
34
|
} & {
|
|
35
|
-
|
|
35
|
+
title?: (props: typeof __VLS_15) => any;
|
|
36
36
|
} & {
|
|
37
|
-
|
|
37
|
+
subtitle?: (props: typeof __VLS_17) => any;
|
|
38
38
|
} & {
|
|
39
|
-
|
|
39
|
+
right?: (props: typeof __VLS_19) => any;
|
|
40
|
+
} & {
|
|
41
|
+
bottom?: (props: typeof __VLS_26) => any;
|
|
40
42
|
};
|
|
41
43
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
42
44
|
back: () => any;
|
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.8cc8bc2",
|
|
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.76",
|
|
57
57
|
"@bcc-code/icons-vue": "^1.4.0",
|
|
58
58
|
"@primeuix/themes": "^2.0.3",
|
|
59
59
|
"@tailwindcss/vite": "^4.1.18",
|