@ailife-dev-vue/uiplus 0.1.0 → 0.1.1

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
@@ -245,7 +245,19 @@ export declare interface Characteristic {
245
245
  export declare type CommonBannerNewProps = ExtractPropTypes<typeof commonBannerNewProps>;
246
246
 
247
247
  declare const commonBannerNewProps: {
248
- subscribes: {
248
+ subscribesLeftTop: {
249
+ type: PropType<ProductSubscribe[]>;
250
+ default: () => never[];
251
+ };
252
+ showLeftBottom: {
253
+ type: BooleanConstructor;
254
+ default: boolean;
255
+ };
256
+ subscribesLeftBottom: {
257
+ type: PropType<ProductSubscribe[]>;
258
+ default: () => never[];
259
+ };
260
+ subscribesRightBottom: {
249
261
  type: PropType<ProductSubscribe[]>;
250
262
  default: () => never[];
251
263
  };
@@ -671,6 +683,7 @@ export declare const enUS: {
671
683
  unitSecond: string;
672
684
  subtitleHourMinute: string;
673
685
  subtitleMinuteSecond: string;
686
+ closePrefix: string;
674
687
  };
675
688
  generalEnumSlider: {
676
689
  placeholderOption1: string;
@@ -865,6 +878,7 @@ export declare type FirmwareUpdatesCardSize = 'full' | 'half';
865
878
 
866
879
  export declare type FirmwareUpdatesEmits = {
867
880
  (e: 'click'): void;
881
+ (e: 'jump-complete', data: unknown): void;
868
882
  };
869
883
 
870
884
  export declare type FirmwareUpdatesProps = ExtractPropTypes<typeof firmwareUpdatesProps>;
@@ -907,6 +921,8 @@ export declare const GENERAL_TIME_SWITCH_I18N_KEYS: {
907
921
  readonly unitSecond: "generalTimeSwitch.unitSecond";
908
922
  readonly subtitleHourMinute: "generalTimeSwitch.subtitleHourMinute";
909
923
  readonly subtitleMinuteSecond: "generalTimeSwitch.subtitleMinuteSecond";
924
+ /** active 弹框左键:前缀 + 弹框标题(如「关闭自清洁倒计时」) */
925
+ readonly closePrefix: "generalTimeSwitch.closePrefix";
910
926
  };
911
927
 
912
928
  export declare type GeneralCombinedDeliveryDisplayItem = {
@@ -1289,6 +1305,10 @@ declare const generalTimeSwitchProps: {
1289
1305
  readonly type: PropType<ProductSubscribe[]>;
1290
1306
  readonly default: () => never[];
1291
1307
  };
1308
+ readonly subscribesSecond: {
1309
+ readonly type: PropType<ProductSubscribe[]>;
1310
+ readonly default: () => never[];
1311
+ };
1292
1312
  readonly cardSize: {
1293
1313
  readonly type: PropType<GeneralTimeSwitchCardSize>;
1294
1314
  readonly default: "half";
@@ -1543,9 +1563,6 @@ export declare type PageBarNewEmits = {
1543
1563
  (e: 'third-card-click'): void;
1544
1564
  };
1545
1565
 
1546
- /** 产品百科 HiLink 调用方式:蓝牙 `jumpTo`,WiFi `gotoNative`(具体赋值来源可后续再接业务)。 */
1547
- export declare type PageBarNewProductWikiDeviceTransport = 'bluetooth' | 'wifi';
1548
-
1549
1566
  export declare type PageBarNewProps = ExtractPropTypes<typeof pageBarNewProps>;
1550
1567
 
1551
1568
  declare const pageBarNewProps: {
@@ -1553,12 +1570,7 @@ declare const pageBarNewProps: {
1553
1570
  type: BooleanConstructor;
1554
1571
  default: boolean;
1555
1572
  };
1556
- productWikiDeviceTransport: {
1557
- type: PropType<PageBarNewProductWikiDeviceTransport>;
1558
- default: string;
1559
- validator: (v: unknown) => v is "bluetooth" | "wifi";
1560
- };
1561
- /** 客服热线电话;为空时使用默认号码 */
1573
+ /** 客服热线电话;未传或为空时副标题不显示号码 */
1562
1574
  hotline: {
1563
1575
  type: StringConstructor;
1564
1576
  default: string;
@@ -1691,6 +1703,10 @@ declare const sheetDialogProps: {
1691
1703
  type: StringConstructor;
1692
1704
  default: string;
1693
1705
  };
1706
+ confirmDisabled: {
1707
+ type: BooleanConstructor;
1708
+ default: boolean;
1709
+ };
1694
1710
  closeOnClickMask: {
1695
1711
  type: BooleanConstructor;
1696
1712
  default: boolean;
@@ -2718,7 +2734,19 @@ collapsedRows: number;
2718
2734
 
2719
2735
  export declare const UpCommonBannerNew: {
2720
2736
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
2721
- subscribes: {
2737
+ subscribesLeftTop: {
2738
+ type: PropType<ProductSubscribe[]>;
2739
+ default: () => never[];
2740
+ };
2741
+ showLeftBottom: {
2742
+ type: BooleanConstructor;
2743
+ default: boolean;
2744
+ };
2745
+ subscribesLeftBottom: {
2746
+ type: PropType<ProductSubscribe[]>;
2747
+ default: () => never[];
2748
+ };
2749
+ subscribesRightBottom: {
2722
2750
  type: PropType<ProductSubscribe[]>;
2723
2751
  default: () => never[];
2724
2752
  };
@@ -2763,7 +2791,6 @@ export declare const UpCommonBannerNew: {
2763
2791
  default: string;
2764
2792
  };
2765
2793
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
2766
- subscribes: ProductSubscribe[];
2767
2794
  enableOpenDialog: boolean;
2768
2795
  openDialogShowTitle: boolean;
2769
2796
  openDialogTitle: string;
@@ -2772,6 +2799,10 @@ export declare const UpCommonBannerNew: {
2772
2799
  closeDialogShowTitle: boolean;
2773
2800
  closeDialogTitle: string;
2774
2801
  closeDialogContent: string;
2802
+ subscribesLeftTop: ProductSubscribe[];
2803
+ showLeftBottom: boolean;
2804
+ subscribesLeftBottom: ProductSubscribe[];
2805
+ subscribesRightBottom: ProductSubscribe[];
2775
2806
  centerImageUrl: string;
2776
2807
  showBottomWhenOff: boolean;
2777
2808
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
@@ -2782,7 +2813,19 @@ export declare const UpCommonBannerNew: {
2782
2813
  M: {};
2783
2814
  Defaults: {};
2784
2815
  }, Readonly<ExtractPropTypes< {
2785
- subscribes: {
2816
+ subscribesLeftTop: {
2817
+ type: PropType<ProductSubscribe[]>;
2818
+ default: () => never[];
2819
+ };
2820
+ showLeftBottom: {
2821
+ type: BooleanConstructor;
2822
+ default: boolean;
2823
+ };
2824
+ subscribesLeftBottom: {
2825
+ type: PropType<ProductSubscribe[]>;
2826
+ default: () => never[];
2827
+ };
2828
+ subscribesRightBottom: {
2786
2829
  type: PropType<ProductSubscribe[]>;
2787
2830
  default: () => never[];
2788
2831
  };
@@ -2827,7 +2870,6 @@ export declare const UpCommonBannerNew: {
2827
2870
  default: string;
2828
2871
  };
2829
2872
  }>> & Readonly<{}>, {}, {}, {}, {}, {
2830
- subscribes: ProductSubscribe[];
2831
2873
  enableOpenDialog: boolean;
2832
2874
  openDialogShowTitle: boolean;
2833
2875
  openDialogTitle: string;
@@ -2836,6 +2878,10 @@ export declare const UpCommonBannerNew: {
2836
2878
  closeDialogShowTitle: boolean;
2837
2879
  closeDialogTitle: string;
2838
2880
  closeDialogContent: string;
2881
+ subscribesLeftTop: ProductSubscribe[];
2882
+ showLeftBottom: boolean;
2883
+ subscribesLeftBottom: ProductSubscribe[];
2884
+ subscribesRightBottom: ProductSubscribe[];
2839
2885
  centerImageUrl: string;
2840
2886
  showBottomWhenOff: boolean;
2841
2887
  }>;
@@ -2843,7 +2889,19 @@ export declare const UpCommonBannerNew: {
2843
2889
  __isTeleport?: never;
2844
2890
  __isSuspense?: never;
2845
2891
  } & ComponentOptionsBase<Readonly<ExtractPropTypes< {
2846
- subscribes: {
2892
+ subscribesLeftTop: {
2893
+ type: PropType<ProductSubscribe[]>;
2894
+ default: () => never[];
2895
+ };
2896
+ showLeftBottom: {
2897
+ type: BooleanConstructor;
2898
+ default: boolean;
2899
+ };
2900
+ subscribesLeftBottom: {
2901
+ type: PropType<ProductSubscribe[]>;
2902
+ default: () => never[];
2903
+ };
2904
+ subscribesRightBottom: {
2847
2905
  type: PropType<ProductSubscribe[]>;
2848
2906
  default: () => never[];
2849
2907
  };
@@ -2888,7 +2946,6 @@ type: StringConstructor;
2888
2946
  default: string;
2889
2947
  };
2890
2948
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
2891
- subscribes: ProductSubscribe[];
2892
2949
  enableOpenDialog: boolean;
2893
2950
  openDialogShowTitle: boolean;
2894
2951
  openDialogTitle: string;
@@ -2897,6 +2954,10 @@ enableCloseDialog: boolean;
2897
2954
  closeDialogShowTitle: boolean;
2898
2955
  closeDialogTitle: string;
2899
2956
  closeDialogContent: string;
2957
+ subscribesLeftTop: ProductSubscribe[];
2958
+ showLeftBottom: boolean;
2959
+ subscribesLeftBottom: ProductSubscribe[];
2960
+ subscribesRightBottom: ProductSubscribe[];
2900
2961
  centerImageUrl: string;
2901
2962
  showBottomWhenOff: boolean;
2902
2963
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
@@ -3271,8 +3332,10 @@ export declare const UpFirmwareUpdates: {
3271
3332
  };
3272
3333
  }>> & Readonly<{
3273
3334
  onClick?: (() => any) | undefined;
3335
+ "onJump-complete"?: ((data: unknown) => any) | undefined;
3274
3336
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3275
3337
  click: () => any;
3338
+ "jump-complete": (data: unknown) => any;
3276
3339
  }, PublicProps, {
3277
3340
  cardSize: FirmwareUpdatesCardSize;
3278
3341
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
@@ -3289,6 +3352,7 @@ export declare const UpFirmwareUpdates: {
3289
3352
  };
3290
3353
  }>> & Readonly<{
3291
3354
  onClick?: (() => any) | undefined;
3355
+ "onJump-complete"?: ((data: unknown) => any) | undefined;
3292
3356
  }>, {}, {}, {}, {}, {
3293
3357
  cardSize: FirmwareUpdatesCardSize;
3294
3358
  }>;
@@ -3302,8 +3366,10 @@ default: string;
3302
3366
  };
3303
3367
  }>> & Readonly<{
3304
3368
  onClick?: (() => any) | undefined;
3369
+ "onJump-complete"?: ((data: unknown) => any) | undefined;
3305
3370
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3306
3371
  click: () => any;
3372
+ "jump-complete": (data: unknown) => any;
3307
3373
  }, string, {
3308
3374
  cardSize: FirmwareUpdatesCardSize;
3309
3375
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
@@ -4131,6 +4197,10 @@ export declare const UpGeneralTimeSwitch: {
4131
4197
  readonly type: PropType<ProductSubscribe[]>;
4132
4198
  readonly default: () => never[];
4133
4199
  };
4200
+ readonly subscribesSecond: {
4201
+ readonly type: PropType<ProductSubscribe[]>;
4202
+ readonly default: () => never[];
4203
+ };
4134
4204
  readonly cardSize: {
4135
4205
  readonly type: PropType<GeneralTimeSwitchCardSize>;
4136
4206
  readonly default: "half";
@@ -4142,6 +4212,7 @@ export declare const UpGeneralTimeSwitch: {
4142
4212
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
4143
4213
  readonly subscribes: ProductSubscribe[];
4144
4214
  readonly cardSize: GeneralTimeSwitchCardSize;
4215
+ readonly subscribesSecond: ProductSubscribe[];
4145
4216
  readonly wheelUnit: GeneralTimeSwitchWheelUnit;
4146
4217
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
4147
4218
  P: {};
@@ -4155,6 +4226,10 @@ export declare const UpGeneralTimeSwitch: {
4155
4226
  readonly type: PropType<ProductSubscribe[]>;
4156
4227
  readonly default: () => never[];
4157
4228
  };
4229
+ readonly subscribesSecond: {
4230
+ readonly type: PropType<ProductSubscribe[]>;
4231
+ readonly default: () => never[];
4232
+ };
4158
4233
  readonly cardSize: {
4159
4234
  readonly type: PropType<GeneralTimeSwitchCardSize>;
4160
4235
  readonly default: "half";
@@ -4166,6 +4241,7 @@ export declare const UpGeneralTimeSwitch: {
4166
4241
  }>> & Readonly<{}>, {}, {}, {}, {}, {
4167
4242
  readonly subscribes: ProductSubscribe[];
4168
4243
  readonly cardSize: GeneralTimeSwitchCardSize;
4244
+ readonly subscribesSecond: ProductSubscribe[];
4169
4245
  readonly wheelUnit: GeneralTimeSwitchWheelUnit;
4170
4246
  }>;
4171
4247
  __isFragment?: never;
@@ -4176,6 +4252,10 @@ readonly subscribes: {
4176
4252
  readonly type: PropType<ProductSubscribe[]>;
4177
4253
  readonly default: () => never[];
4178
4254
  };
4255
+ readonly subscribesSecond: {
4256
+ readonly type: PropType<ProductSubscribe[]>;
4257
+ readonly default: () => never[];
4258
+ };
4179
4259
  readonly cardSize: {
4180
4260
  readonly type: PropType<GeneralTimeSwitchCardSize>;
4181
4261
  readonly default: "half";
@@ -4187,6 +4267,7 @@ readonly default: "hourMinute";
4187
4267
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
4188
4268
  readonly subscribes: ProductSubscribe[];
4189
4269
  readonly cardSize: GeneralTimeSwitchCardSize;
4270
+ readonly subscribesSecond: ProductSubscribe[];
4190
4271
  readonly wheelUnit: GeneralTimeSwitchWheelUnit;
4191
4272
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
4192
4273
 
@@ -4592,11 +4673,6 @@ export declare const UpPageBarNew: {
4592
4673
  type: BooleanConstructor;
4593
4674
  default: boolean;
4594
4675
  };
4595
- productWikiDeviceTransport: {
4596
- type: PropType<PageBarNewProductWikiDeviceTransport>;
4597
- default: string;
4598
- validator: (v: unknown) => v is "bluetooth" | "wifi";
4599
- };
4600
4676
  hotline: {
4601
4677
  type: StringConstructor;
4602
4678
  default: string;
@@ -4611,10 +4687,8 @@ export declare const UpPageBarNew: {
4611
4687
  "third-card-click": () => any;
4612
4688
  }, PublicProps, {
4613
4689
  showProductWikiCard: boolean;
4614
- productWikiDeviceTransport: PageBarNewProductWikiDeviceTransport;
4615
4690
  hotline: string;
4616
4691
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
4617
- scrollRef: HTMLDivElement;
4618
4692
  dropzoneRef: HTMLDivElement;
4619
4693
  }, HTMLDivElement, ComponentProvideOptions, {
4620
4694
  P: {};
@@ -4628,11 +4702,6 @@ export declare const UpPageBarNew: {
4628
4702
  type: BooleanConstructor;
4629
4703
  default: boolean;
4630
4704
  };
4631
- productWikiDeviceTransport: {
4632
- type: PropType<PageBarNewProductWikiDeviceTransport>;
4633
- default: string;
4634
- validator: (v: unknown) => v is "bluetooth" | "wifi";
4635
- };
4636
4705
  hotline: {
4637
4706
  type: StringConstructor;
4638
4707
  default: string;
@@ -4643,7 +4712,6 @@ export declare const UpPageBarNew: {
4643
4712
  "onThird-card-click"?: (() => any) | undefined;
4644
4713
  }>, {}, {}, {}, {}, {
4645
4714
  showProductWikiCard: boolean;
4646
- productWikiDeviceTransport: PageBarNewProductWikiDeviceTransport;
4647
4715
  hotline: string;
4648
4716
  }>;
4649
4717
  __isFragment?: never;
@@ -4654,11 +4722,6 @@ showProductWikiCard: {
4654
4722
  type: BooleanConstructor;
4655
4723
  default: boolean;
4656
4724
  };
4657
- productWikiDeviceTransport: {
4658
- type: PropType<PageBarNewProductWikiDeviceTransport>;
4659
- default: string;
4660
- validator: (v: unknown) => v is "bluetooth" | "wifi";
4661
- };
4662
4725
  hotline: {
4663
4726
  type: StringConstructor;
4664
4727
  default: string;
@@ -4673,7 +4736,6 @@ default: string;
4673
4736
  "third-card-click": () => any;
4674
4737
  }, string, {
4675
4738
  showProductWikiCard: boolean;
4676
- productWikiDeviceTransport: PageBarNewProductWikiDeviceTransport;
4677
4739
  hotline: string;
4678
4740
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
4679
4741
  $slots: {
@@ -4715,6 +4777,10 @@ export declare const UpSheetDialog: {
4715
4777
  type: StringConstructor;
4716
4778
  default: string;
4717
4779
  };
4780
+ confirmDisabled: {
4781
+ type: BooleanConstructor;
4782
+ default: boolean;
4783
+ };
4718
4784
  closeOnClickMask: {
4719
4785
  type: BooleanConstructor;
4720
4786
  default: boolean;
@@ -4738,6 +4804,7 @@ export declare const UpSheetDialog: {
4738
4804
  showConfirm: boolean;
4739
4805
  cancelColor: string;
4740
4806
  confirmColor: string;
4807
+ confirmDisabled: boolean;
4741
4808
  closeOnClickMask: boolean;
4742
4809
  zIndex: number;
4743
4810
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
@@ -4780,6 +4847,10 @@ export declare const UpSheetDialog: {
4780
4847
  type: StringConstructor;
4781
4848
  default: string;
4782
4849
  };
4850
+ confirmDisabled: {
4851
+ type: BooleanConstructor;
4852
+ default: boolean;
4853
+ };
4783
4854
  closeOnClickMask: {
4784
4855
  type: BooleanConstructor;
4785
4856
  default: boolean;
@@ -4800,6 +4871,7 @@ export declare const UpSheetDialog: {
4800
4871
  showConfirm: boolean;
4801
4872
  cancelColor: string;
4802
4873
  confirmColor: string;
4874
+ confirmDisabled: boolean;
4803
4875
  closeOnClickMask: boolean;
4804
4876
  zIndex: number;
4805
4877
  }>;
@@ -4839,6 +4911,10 @@ confirmColor: {
4839
4911
  type: StringConstructor;
4840
4912
  default: string;
4841
4913
  };
4914
+ confirmDisabled: {
4915
+ type: BooleanConstructor;
4916
+ default: boolean;
4917
+ };
4842
4918
  closeOnClickMask: {
4843
4919
  type: BooleanConstructor;
4844
4920
  default: boolean;
@@ -4862,6 +4938,7 @@ showCancel: boolean;
4862
4938
  showConfirm: boolean;
4863
4939
  cancelColor: string;
4864
4940
  confirmColor: string;
4941
+ confirmDisabled: boolean;
4865
4942
  closeOnClickMask: boolean;
4866
4943
  zIndex: number;
4867
4944
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
@@ -6028,6 +6105,7 @@ export declare const zhCN: {
6028
6105
  unitSecond: string;
6029
6106
  subtitleHourMinute: string;
6030
6107
  subtitleMinuteSecond: string;
6108
+ closePrefix: string;
6031
6109
  };
6032
6110
  waterHeaterTimeEnd: {
6033
6111
  cardTitle: string;