@ailife-dev-vue/uiplus 0.1.7-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 +10 -2
- package/dist/index.mjs +8723 -8604
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4619,7 +4619,9 @@ export declare const UpGeneralWheel: {
|
|
|
4619
4619
|
readonly type: PropType<GeneralWheelSubscribeData>;
|
|
4620
4620
|
readonly required: true;
|
|
4621
4621
|
};
|
|
4622
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
4622
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
4623
|
+
rootRef: HTMLDivElement;
|
|
4624
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
4623
4625
|
P: {};
|
|
4624
4626
|
B: {};
|
|
4625
4627
|
D: {};
|
|
@@ -6218,10 +6220,13 @@ export declare type WheelZoneConfig = {
|
|
|
6218
6220
|
type: WheelZoneType;
|
|
6219
6221
|
operate: WheelOperate;
|
|
6220
6222
|
defaultValue?: string;
|
|
6223
|
+
/** 仅 bool;自由模式 enum 亦可配置:false=固定 defaultValue,true=toggle/环形 */
|
|
6221
6224
|
reverse?: boolean;
|
|
6222
6225
|
values?: string[];
|
|
6226
|
+
/** 内容展示方案;中心默认 none,四向默认 custom */
|
|
6227
|
+
show?: WheelZoneShow;
|
|
6223
6228
|
icons?: Record<string, string[]>;
|
|
6224
|
-
/** key = 展示值字符串;value 支持 string / { zh, en, key } / 槽位数组 */
|
|
6229
|
+
/** key = 展示值字符串;int 区 show=texts|icons 时读 `fix`;value 支持 string / { zh, en, key } / 槽位数组 */
|
|
6225
6230
|
texts?: WheelZoneTexts;
|
|
6226
6231
|
/** 本区文案字号(px) */
|
|
6227
6232
|
textSize?: number;
|
|
@@ -6231,6 +6236,9 @@ export declare type WheelZoneConfig = {
|
|
|
6231
6236
|
|
|
6232
6237
|
export declare type WheelZoneKey = (typeof WHEEL_ZONE_KEYS)[number];
|
|
6233
6238
|
|
|
6239
|
+
/** 分区内容展示方案:none 无内容 / custom 默认圆点 / texts 文案 / icons 图标 */
|
|
6240
|
+
declare type WheelZoneShow = 'none' | 'custom' | 'texts' | 'icons';
|
|
6241
|
+
|
|
6234
6242
|
/** texts 单条:i18n key 字面量 / 双语对象 / { key } */
|
|
6235
6243
|
declare type WheelZoneTextEntry = string | WheelZoneTextI18n;
|
|
6236
6244
|
|