@ailife-dev-vue/uiplus 0.1.6-snapshot → 0.1.8-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.css +1 -1
- package/dist/index.d.ts +20 -4
- package/dist/index.mjs +9286 -9179
- 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>;
|
|
@@ -4612,7 +4619,9 @@ export declare const UpGeneralWheel: {
|
|
|
4612
4619
|
readonly type: PropType<GeneralWheelSubscribeData>;
|
|
4613
4620
|
readonly required: true;
|
|
4614
4621
|
};
|
|
4615
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
4622
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
4623
|
+
rootRef: HTMLDivElement;
|
|
4624
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
4616
4625
|
P: {};
|
|
4617
4626
|
B: {};
|
|
4618
4627
|
D: {};
|
|
@@ -6211,10 +6220,13 @@ export declare type WheelZoneConfig = {
|
|
|
6211
6220
|
type: WheelZoneType;
|
|
6212
6221
|
operate: WheelOperate;
|
|
6213
6222
|
defaultValue?: string;
|
|
6223
|
+
/** 仅 bool;自由模式 enum 亦可配置:false=固定 defaultValue,true=toggle/环形 */
|
|
6214
6224
|
reverse?: boolean;
|
|
6215
6225
|
values?: string[];
|
|
6226
|
+
/** 内容展示方案;中心默认 none,四向默认 custom */
|
|
6227
|
+
show?: WheelZoneShow;
|
|
6216
6228
|
icons?: Record<string, string[]>;
|
|
6217
|
-
/** key = 展示值字符串;value 支持 string / { zh, en, key } / 槽位数组 */
|
|
6229
|
+
/** key = 展示值字符串;int 区 show=texts|icons 时读 `fix`;value 支持 string / { zh, en, key } / 槽位数组 */
|
|
6218
6230
|
texts?: WheelZoneTexts;
|
|
6219
6231
|
/** 本区文案字号(px) */
|
|
6220
6232
|
textSize?: number;
|
|
@@ -6224,6 +6236,9 @@ export declare type WheelZoneConfig = {
|
|
|
6224
6236
|
|
|
6225
6237
|
export declare type WheelZoneKey = (typeof WHEEL_ZONE_KEYS)[number];
|
|
6226
6238
|
|
|
6239
|
+
/** 分区内容展示方案:none 无内容 / custom 默认圆点 / texts 文案 / icons 图标 */
|
|
6240
|
+
declare type WheelZoneShow = 'none' | 'custom' | 'texts' | 'icons';
|
|
6241
|
+
|
|
6227
6242
|
/** texts 单条:i18n key 字面量 / 双语对象 / { key } */
|
|
6228
6243
|
declare type WheelZoneTextEntry = string | WheelZoneTextI18n;
|
|
6229
6244
|
|
|
@@ -6422,6 +6437,7 @@ export declare const zhCN: {
|
|
|
6422
6437
|
closePrefix: string;
|
|
6423
6438
|
};
|
|
6424
6439
|
timerCut: {
|
|
6440
|
+
title: string;
|
|
6425
6441
|
subtitle: string;
|
|
6426
6442
|
durationZero: string;
|
|
6427
6443
|
durationSeconds: string;
|