@ailife-dev-vue/uiplus 0.1.6-snapshot → 0.1.7-snapshot
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/index.d.ts +10 -2
- package/dist/index.mjs +7966 -7978
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -666,6 +666,7 @@ export declare const enUS: {
|
|
|
666
666
|
closePrefix: string;
|
|
667
667
|
};
|
|
668
668
|
timerCut: {
|
|
669
|
+
title: string;
|
|
669
670
|
subtitle: string;
|
|
670
671
|
durationZero: string;
|
|
671
672
|
durationSeconds: string;
|
|
@@ -927,10 +928,16 @@ export declare type GeneralCombinedDeliverySecondaryConfig = {
|
|
|
927
928
|
|
|
928
929
|
export declare type GeneralDisplayCardCardSize = 'full' | 'half';
|
|
929
930
|
|
|
930
|
-
|
|
931
|
+
export declare type GeneralDisplayCardLevelColorPair = {
|
|
932
|
+
light?: string;
|
|
933
|
+
dark?: string;
|
|
934
|
+
};
|
|
935
|
+
|
|
936
|
+
/** level 枚举取值与 current 数值着色配置(浅色 color / 深色 darkColor) */
|
|
931
937
|
export declare type GeneralDisplayCardLevelConfig = {
|
|
932
938
|
enumVal: string | number;
|
|
933
|
-
color
|
|
939
|
+
color?: string;
|
|
940
|
+
darkColor?: string;
|
|
934
941
|
};
|
|
935
942
|
|
|
936
943
|
export declare type GeneralDisplayCardProps = ExtractPropTypes<typeof generalDisplayCardProps>;
|
|
@@ -6422,6 +6429,7 @@ export declare const zhCN: {
|
|
|
6422
6429
|
closePrefix: string;
|
|
6423
6430
|
};
|
|
6424
6431
|
timerCut: {
|
|
6432
|
+
title: string;
|
|
6425
6433
|
subtitle: string;
|
|
6426
6434
|
durationZero: string;
|
|
6427
6435
|
durationSeconds: string;
|