base6-ui 2.0.25 → 2.0.26
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/config/themes/token/dark.d.ts +4 -0
- package/dist/config/themes/token/light.d.ts +5 -0
- package/dist/index.umd.js +3 -3
- package/es/components/dialog/index.vue.mjs +3 -3
- package/es/components/dialog/options.mjs +1 -1
- package/es/components/global-header/index.vue.mjs +3 -2
- package/es/config/themes/components/baseComponent/light.mjs +15 -14
- package/es/config/themes/components/card/light.mjs +3 -2
- package/es/config/themes/components/checkbox/light.mjs +3 -2
- package/es/config/themes/components/dataTable/light.mjs +3 -2
- package/es/config/themes/components/divider/light.mjs +4 -3
- package/es/config/themes/components/layout/light.mjs +3 -2
- package/es/config/themes/components/popover/light.mjs +3 -2
- package/es/config/themes/components/radio/light.mjs +3 -2
- package/es/config/themes/components/switch/light.mjs +5 -4
- package/es/config/themes/index.mjs +8 -6
- package/es/config/themes/token/dark.d.ts +4 -0
- package/es/config/themes/token/dark.mjs +8 -3
- package/es/config/themes/token/light.d.ts +5 -0
- package/es/config/themes/token/light.mjs +10 -5
- package/es/globalMethods/modules/confirmTip.mjs +12 -11
- package/es/locale/lang/en-us.mjs +1 -1
- package/es/locale/lang/zh-cn.mjs +1 -1
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/getSymbols.mjs +6 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/getTag.mjs +6 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/tags.mjs +25 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/object/cloneDeep.mjs +7 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/object/cloneDeepWith.mjs +127 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/predicate/isPrimitive.mjs +6 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/predicate/isTypedArray.mjs +6 -0
- package/lib/components/dialog/index.vue.js +1 -1
- package/lib/components/dialog/options.js +1 -1
- package/lib/components/global-header/index.vue.js +1 -1
- package/lib/config/themes/components/baseComponent/light.js +1 -1
- package/lib/config/themes/components/card/light.js +1 -1
- package/lib/config/themes/components/checkbox/light.js +1 -1
- package/lib/config/themes/components/dataTable/light.js +1 -1
- package/lib/config/themes/components/divider/light.js +1 -1
- package/lib/config/themes/components/layout/light.js +1 -1
- package/lib/config/themes/components/popover/light.js +1 -1
- package/lib/config/themes/components/radio/light.js +1 -1
- package/lib/config/themes/components/switch/light.js +1 -1
- package/lib/config/themes/index.js +1 -1
- package/lib/config/themes/token/dark.d.ts +4 -0
- package/lib/config/themes/token/dark.js +1 -1
- package/lib/config/themes/token/light.d.ts +5 -0
- package/lib/config/themes/token/light.js +1 -1
- package/lib/globalMethods/modules/confirmTip.js +1 -1
- package/lib/locale/lang/en-us.js +1 -1
- package/lib/locale/lang/zh-cn.js +1 -1
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/getSymbols.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/getTag.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/tags.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/object/cloneDeep.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/object/cloneDeepWith.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/predicate/isPrimitive.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/predicate/isTypedArray.js +1 -0
- package/package.json +1 -1
|
@@ -24,5 +24,9 @@ declare const darkToken: {
|
|
|
24
24
|
'color-error-disabled-opacity': string;
|
|
25
25
|
'color-success-disabled': string;
|
|
26
26
|
'color-warning-disabled': string;
|
|
27
|
+
'border-color-1': string;
|
|
28
|
+
'border-color-2': string;
|
|
29
|
+
'border-color-3': string;
|
|
30
|
+
'border-color-4': string;
|
|
27
31
|
};
|
|
28
32
|
export default darkToken;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
declare const lightToken: {
|
|
2
2
|
'color-text-1': string;
|
|
3
3
|
'color-text-2': string;
|
|
4
|
+
'color-text-3': string;
|
|
5
|
+
'color-text-4': string;
|
|
6
|
+
'color-text-5': string;
|
|
4
7
|
'color-text-6': string;
|
|
5
8
|
'bg-color-1': string;
|
|
6
9
|
'bg-color-2': string;
|
|
@@ -10,5 +13,7 @@ declare const lightToken: {
|
|
|
10
13
|
'fill-color-5': string;
|
|
11
14
|
'border-color-1': string;
|
|
12
15
|
'border-color-2': string;
|
|
16
|
+
'border-color-3': string;
|
|
17
|
+
'border-color-4': string;
|
|
13
18
|
};
|
|
14
19
|
export default lightToken;
|