@ailife-dev-vue/uiplus 0.1.8-snapshot → 0.1.9-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 CHANGED
@@ -4621,7 +4621,7 @@ export declare const UpGeneralWheel: {
4621
4621
  };
4622
4622
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
4623
4623
  rootRef: HTMLDivElement;
4624
- }, HTMLDivElement, ComponentProvideOptions, {
4624
+ }, any, ComponentProvideOptions, {
4625
4625
  P: {};
4626
4626
  B: {};
4627
4627
  D: {};
@@ -6225,6 +6225,7 @@ export declare type WheelZoneConfig = {
6225
6225
  values?: string[];
6226
6226
  /** 内容展示方案;中心默认 none,四向默认 custom */
6227
6227
  show?: WheelZoneShow;
6228
+ /** 槽位数组 `[浅色/上左, 深色/下右]`;仅一项时深浅色共用首项 */
6228
6229
  icons?: Record<string, string[]>;
6229
6230
  /** key = 展示值字符串;int 区 show=texts|icons 时读 `fix`;value 支持 string / { zh, en, key } / 槽位数组 */
6230
6231
  texts?: WheelZoneTexts;
@@ -6242,10 +6243,16 @@ declare type WheelZoneShow = 'none' | 'custom' | 'texts' | 'icons';
6242
6243
  /** texts 单条:i18n key 字面量 / 双语对象 / { key } */
6243
6244
  declare type WheelZoneTextEntry = string | WheelZoneTextI18n;
6244
6245
 
6246
+ /** 画布兼容:`zh_CN` / `en_US` 与 `zh` / `en` 等价 */
6245
6247
  declare type WheelZoneTextI18n = {
6246
6248
  zh?: string;
6247
6249
  en?: string;
6248
6250
  key?: string;
6251
+ zh_CN?: string;
6252
+ en_US?: string;
6253
+ 'zh-CN'?: string;
6254
+ 'en-US'?: string;
6255
+ type?: string;
6249
6256
  };
6250
6257
 
6251
6258
  declare type WheelZoneTexts = Record<string, WheelZoneTextEntry | WheelZoneTextEntry[]>;