@ailife-dev-vue/uiplus 0.0.4 → 0.0.6-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
@@ -22,30 +22,22 @@ import { VNodeProps } from 'vue';
22
22
 
23
23
  export declare type ActionStatusbarCommandPayload = HilinkDeviceControlPayload;
24
24
 
25
- declare interface ActionStatusbarConfirmDialogConfig {
25
+ export declare interface ActionStatusbarConfirmDialogConfig {
26
26
  enabled?: boolean;
27
- /** 仅支持 i18n key,不支持直接传展示文案 */
27
+ /** 仅支持 i18n key,不支持直接传展示文案;0/1 点击共用 */
28
28
  content?: string;
29
29
  }
30
30
 
31
31
  export declare type ActionStatusbarProps = ExtractPropTypes<typeof actionStatusbarProps>;
32
32
 
33
33
  declare const actionStatusbarProps: {
34
- subscribes: {
34
+ subscribesCenter: {
35
35
  type: PropType<ProductSubscribe[]>;
36
36
  default: () => never[];
37
37
  };
38
- status: {
39
- type: PropType<ActionStatusbarState>;
40
- default: number;
41
- };
42
- showSecondStatus: {
43
- type: BooleanConstructor;
44
- default: boolean;
45
- };
46
- secondStatus: {
47
- type: PropType<ActionStatusbarState>;
48
- default: undefined;
38
+ statusConfigs: {
39
+ type: PropType<Partial<Record<number | string, ActionStatusbarStatusConfig>>>;
40
+ default: () => {};
49
41
  };
50
42
  showMiddle: {
51
43
  type: BooleanConstructor;
@@ -55,14 +47,17 @@ declare const actionStatusbarProps: {
55
47
  type: BooleanConstructor;
56
48
  default: boolean;
57
49
  };
58
- actionConfirmDialogs: {
59
- type: PropType<Partial<Record<ActionStatusbarState, ActionStatusbarConfirmDialogConfig>>>;
60
- default: () => {};
61
- };
62
50
  };
63
51
 
64
52
  export declare type ActionStatusbarState = 0 | 1 | 2;
65
53
 
54
+ export declare interface ActionStatusbarStatusConfig {
55
+ status: ActionStatusbarState;
56
+ showSecondStatus?: boolean;
57
+ secondStatus?: ActionStatusbarState;
58
+ confirmDialog?: ActionStatusbarConfirmDialogConfig;
59
+ }
60
+
66
61
  /** 与 `sendHilinkDeviceControl` / `window.hilink._deviceControlInner` 约定一致 */
67
62
  declare type BoolIconCardCommandPayload = HilinkDeviceControlPayload;
68
63
  export { BoolIconCardCommandPayload }
@@ -318,6 +313,8 @@ export declare const DELAY_I18N_KEYS: {
318
313
  readonly titleOff: "delay.titleOff";
319
314
  readonly previewWillOn: "delay.previewWillOn";
320
315
  readonly previewWillOff: "delay.previewWillOff";
316
+ readonly previewWillOnTomorrow: "delay.previewWillOnTomorrow";
317
+ readonly previewWillOffTomorrow: "delay.previewWillOffTomorrow";
321
318
  readonly closeCountdown: "delay.closeCountdown";
322
319
  readonly wheelHour: "delay.wheelHour";
323
320
  readonly wheelMinute: "delay.wheelMinute";
@@ -541,6 +538,7 @@ export declare const enUS: {
541
538
  placeholderPleaseSelect: string;
542
539
  toastMaxTimers: string;
543
540
  toastSelectFunction: string;
541
+ toastStartEndSame: string;
544
542
  summary: {
545
543
  template: {
546
544
  dualToday: string;
@@ -589,10 +587,19 @@ export declare const enUS: {
589
587
  titleOff: string;
590
588
  previewWillOn: string;
591
589
  previewWillOff: string;
590
+ previewWillOnTomorrow: string;
591
+ previewWillOffTomorrow: string;
592
592
  closeCountdown: string;
593
593
  wheelHour: string;
594
594
  wheelMinute: string;
595
595
  };
596
+ generalTimeSwitch: {
597
+ unitHour: string;
598
+ unitMinute: string;
599
+ unitSecond: string;
600
+ subtitleHourMinute: string;
601
+ subtitleMinuteSecond: string;
602
+ };
596
603
  generalEnumSlider: {
597
604
  placeholderOption1: string;
598
605
  placeholderOption2: string;
@@ -603,6 +610,7 @@ export declare const enUS: {
603
610
  placeholderOption2: string;
604
611
  placeholderOption3: string;
605
612
  placeholderOption4: string;
613
+ more: string;
606
614
  };
607
615
  commonBannerNew: {
608
616
  connect: {
@@ -754,6 +762,15 @@ export declare function formatUtcAbsoluteTimeAfterOffsetMs(offsetMs: number): st
754
762
  /** 毫秒时间戳 → `formatUtcAbsoluteTime` */
755
763
  export declare function formatUtcAbsoluteTimeFromMs(timestampMs: number): string;
756
764
 
765
+ /** UpGeneralTimeSwitch 组件文案 key(`@uiplus/locale` zh-CN / en-US) */
766
+ export declare const GENERAL_TIME_SWITCH_I18N_KEYS: {
767
+ readonly unitHour: "generalTimeSwitch.unitHour";
768
+ readonly unitMinute: "generalTimeSwitch.unitMinute";
769
+ readonly unitSecond: "generalTimeSwitch.unitSecond";
770
+ readonly subtitleHourMinute: "generalTimeSwitch.subtitleHourMinute";
771
+ readonly subtitleMinuteSecond: "generalTimeSwitch.subtitleMinuteSecond";
772
+ };
773
+
757
774
  export declare type GeneralCombinedDeliveryDisplayItem = {
758
775
  enumVal: string;
759
776
  label: string;
@@ -855,6 +872,7 @@ export declare type GeneralEnumTileDisplayItem = {
855
872
  enumVal: string;
856
873
  label: string;
857
874
  isPlaceholder?: boolean;
875
+ isMore?: boolean;
858
876
  };
859
877
 
860
878
  export declare type GeneralEnumTileOptionConfig = {
@@ -893,6 +911,10 @@ declare const generalEnumTileProps: {
893
911
  type: PropType<GeneralEnumTileOptionConfig[]>;
894
912
  default: () => never[];
895
913
  };
914
+ moreEnumOptionConfigs: {
915
+ type: PropType<GeneralEnumTileOptionConfig[]>;
916
+ default: () => never[];
917
+ };
896
918
  };
897
919
 
898
920
  export declare interface GeneralHistoricalRecordConfigItem {
@@ -1121,6 +1143,27 @@ export declare interface GeneralScreenRowModel {
1121
1143
 
1122
1144
  export declare type GeneralScreenTimeUnit = 'hour' | 'day';
1123
1145
 
1146
+ export declare type GeneralTimeSwitchCardSize = 'full' | 'half';
1147
+
1148
+ export declare type GeneralTimeSwitchProps = ExtractPropTypes<typeof generalTimeSwitchProps>;
1149
+
1150
+ declare const generalTimeSwitchProps: {
1151
+ readonly subscribes: {
1152
+ readonly type: PropType<ProductSubscribe[]>;
1153
+ readonly default: () => never[];
1154
+ };
1155
+ readonly cardSize: {
1156
+ readonly type: PropType<GeneralTimeSwitchCardSize>;
1157
+ readonly default: "half";
1158
+ };
1159
+ readonly wheelUnit: {
1160
+ readonly type: PropType<GeneralTimeSwitchWheelUnit>;
1161
+ readonly default: "hourMinute";
1162
+ };
1163
+ };
1164
+
1165
+ declare type GeneralTimeSwitchWheelUnit = 'hourMinute' | 'minuteSecond';
1166
+
1124
1167
  export declare type GeneralWarnEmits = {
1125
1168
  (e: 'expanded-change', expanded: boolean): void;
1126
1169
  };
@@ -1461,6 +1504,8 @@ export declare interface Service {
1461
1504
 
1462
1505
  export declare function setHilinkTitleVisible(visible: boolean, callbackName?: string): void;
1463
1506
 
1507
+ export declare function setShowFakeTitleBar(visible: boolean): void;
1508
+
1464
1509
  /** 写入 `state[sid][cid]`;若 `state[sid]` 尚非对象则置为 `{ [cid]: value }`。 */
1465
1510
  export declare const setStateValue: (state: ProductState, sid: string, cid: string, value: unknown) => void;
1466
1511
 
@@ -1514,6 +1559,9 @@ declare const sheetDialogProps: {
1514
1559
  };
1515
1560
  };
1516
1561
 
1562
+ /** 与宿主约定:`showFakeTitleBar(visible)`,二级页显示/隐藏假标题栏。 */
1563
+ export declare type ShowFakeTitleBarFn = (visible: boolean) => void;
1564
+
1517
1565
  declare type StatusBarBinaryState = 0 | 1;
1518
1566
 
1519
1567
  /** 与 `sendHilinkDeviceControl` / `window.hilink._deviceControlInner` 约定一致 */
@@ -1526,6 +1574,10 @@ declare const statusBarProps: {
1526
1574
  type: PropType<ProductSubscribe[]>;
1527
1575
  default: () => never[];
1528
1576
  };
1577
+ subscribesCenter: {
1578
+ type: PropType<ProductSubscribe[]>;
1579
+ default: () => never[];
1580
+ };
1529
1581
  showMiddle: {
1530
1582
  type: BooleanConstructor;
1531
1583
  default: boolean;
@@ -1706,27 +1758,24 @@ declare const timeWheelPickerProps: {
1706
1758
  type: NumberConstructor;
1707
1759
  default: number;
1708
1760
  };
1761
+ /** 为 true 时,列 key 为 hour/minute 的选项展示补零(如 1 → 01) */
1762
+ padTimeDigits: {
1763
+ type: BooleanConstructor;
1764
+ default: boolean;
1765
+ };
1709
1766
  };
1710
1767
 
1711
1768
  export declare type TimeWheelPickerValue = Record<string, string | number>;
1712
1769
 
1713
1770
  export declare const UpActionStatusbar: {
1714
1771
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
1715
- subscribes: {
1772
+ subscribesCenter: {
1716
1773
  type: PropType<ProductSubscribe[]>;
1717
1774
  default: () => never[];
1718
1775
  };
1719
- status: {
1720
- type: PropType<ActionStatusbarState>;
1721
- default: number;
1722
- };
1723
- showSecondStatus: {
1724
- type: BooleanConstructor;
1725
- default: boolean;
1726
- };
1727
- secondStatus: {
1728
- type: PropType<ActionStatusbarState>;
1729
- default: undefined;
1776
+ statusConfigs: {
1777
+ type: PropType<Partial<Record<number | string, ActionStatusbarStatusConfig>>>;
1778
+ default: () => {};
1730
1779
  };
1731
1780
  showMiddle: {
1732
1781
  type: BooleanConstructor;
@@ -1736,18 +1785,11 @@ export declare const UpActionStatusbar: {
1736
1785
  type: BooleanConstructor;
1737
1786
  default: boolean;
1738
1787
  };
1739
- actionConfirmDialogs: {
1740
- type: PropType<Partial<Record<ActionStatusbarState, ActionStatusbarConfirmDialogConfig>>>;
1741
- default: () => {};
1742
- };
1743
1788
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
1744
- subscribes: ProductSubscribe[];
1745
- status: ActionStatusbarState;
1789
+ subscribesCenter: ProductSubscribe[];
1746
1790
  showMiddle: boolean;
1747
1791
  showMiddleWhenOff: boolean;
1748
- showSecondStatus: boolean;
1749
- secondStatus: ActionStatusbarState;
1750
- actionConfirmDialogs: Partial<Record<ActionStatusbarState, ActionStatusbarConfirmDialogConfig>>;
1792
+ statusConfigs: Partial<Record<string | number, ActionStatusbarStatusConfig>>;
1751
1793
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
1752
1794
  P: {};
1753
1795
  B: {};
@@ -1756,21 +1798,13 @@ export declare const UpActionStatusbar: {
1756
1798
  M: {};
1757
1799
  Defaults: {};
1758
1800
  }, Readonly<ExtractPropTypes< {
1759
- subscribes: {
1801
+ subscribesCenter: {
1760
1802
  type: PropType<ProductSubscribe[]>;
1761
1803
  default: () => never[];
1762
1804
  };
1763
- status: {
1764
- type: PropType<ActionStatusbarState>;
1765
- default: number;
1766
- };
1767
- showSecondStatus: {
1768
- type: BooleanConstructor;
1769
- default: boolean;
1770
- };
1771
- secondStatus: {
1772
- type: PropType<ActionStatusbarState>;
1773
- default: undefined;
1805
+ statusConfigs: {
1806
+ type: PropType<Partial<Record<number | string, ActionStatusbarStatusConfig>>>;
1807
+ default: () => {};
1774
1808
  };
1775
1809
  showMiddle: {
1776
1810
  type: BooleanConstructor;
@@ -1780,38 +1814,23 @@ export declare const UpActionStatusbar: {
1780
1814
  type: BooleanConstructor;
1781
1815
  default: boolean;
1782
1816
  };
1783
- actionConfirmDialogs: {
1784
- type: PropType<Partial<Record<ActionStatusbarState, ActionStatusbarConfirmDialogConfig>>>;
1785
- default: () => {};
1786
- };
1787
1817
  }>> & Readonly<{}>, {}, {}, {}, {}, {
1788
- subscribes: ProductSubscribe[];
1789
- status: ActionStatusbarState;
1818
+ subscribesCenter: ProductSubscribe[];
1790
1819
  showMiddle: boolean;
1791
1820
  showMiddleWhenOff: boolean;
1792
- showSecondStatus: boolean;
1793
- secondStatus: ActionStatusbarState;
1794
- actionConfirmDialogs: Partial<Record<ActionStatusbarState, ActionStatusbarConfirmDialogConfig>>;
1821
+ statusConfigs: Partial<Record<string | number, ActionStatusbarStatusConfig>>;
1795
1822
  }>;
1796
1823
  __isFragment?: never;
1797
1824
  __isTeleport?: never;
1798
1825
  __isSuspense?: never;
1799
1826
  } & ComponentOptionsBase<Readonly<ExtractPropTypes< {
1800
- subscribes: {
1827
+ subscribesCenter: {
1801
1828
  type: PropType<ProductSubscribe[]>;
1802
1829
  default: () => never[];
1803
1830
  };
1804
- status: {
1805
- type: PropType<ActionStatusbarState>;
1806
- default: number;
1807
- };
1808
- showSecondStatus: {
1809
- type: BooleanConstructor;
1810
- default: boolean;
1811
- };
1812
- secondStatus: {
1813
- type: PropType<ActionStatusbarState>;
1814
- default: undefined;
1831
+ statusConfigs: {
1832
+ type: PropType<Partial<Record<number | string, ActionStatusbarStatusConfig>>>;
1833
+ default: () => {};
1815
1834
  };
1816
1835
  showMiddle: {
1817
1836
  type: BooleanConstructor;
@@ -1821,18 +1840,11 @@ showMiddleWhenOff: {
1821
1840
  type: BooleanConstructor;
1822
1841
  default: boolean;
1823
1842
  };
1824
- actionConfirmDialogs: {
1825
- type: PropType<Partial<Record<ActionStatusbarState, ActionStatusbarConfirmDialogConfig>>>;
1826
- default: () => {};
1827
- };
1828
1843
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
1829
- subscribes: ProductSubscribe[];
1830
- status: ActionStatusbarState;
1844
+ subscribesCenter: ProductSubscribe[];
1831
1845
  showMiddle: boolean;
1832
1846
  showMiddleWhenOff: boolean;
1833
- showSecondStatus: boolean;
1834
- secondStatus: ActionStatusbarState;
1835
- actionConfirmDialogs: Partial<Record<ActionStatusbarState, ActionStatusbarConfirmDialogConfig>>;
1847
+ statusConfigs: Partial<Record<string | number, ActionStatusbarStatusConfig>>;
1836
1848
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
1837
1849
  $slots: {
1838
1850
  middle?(_: {}): any;
@@ -3377,6 +3389,10 @@ export declare const UpGeneralEnumTile: {
3377
3389
  type: PropType<GeneralEnumTileOptionConfig[]>;
3378
3390
  default: () => never[];
3379
3391
  };
3392
+ moreEnumOptionConfigs: {
3393
+ type: PropType<GeneralEnumTileOptionConfig[]>;
3394
+ default: () => never[];
3395
+ };
3380
3396
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
3381
3397
  subscribes: ProductSubscribe[];
3382
3398
  showTitle: boolean;
@@ -3384,7 +3400,10 @@ export declare const UpGeneralEnumTile: {
3384
3400
  invertEnabled: boolean;
3385
3401
  invertEnumValue: string | number;
3386
3402
  enumOptionConfigs: GeneralEnumTileOptionConfig[];
3387
- }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
3403
+ moreEnumOptionConfigs: GeneralEnumTileOptionConfig[];
3404
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
3405
+ moreDropdownRef: HTMLDivElement;
3406
+ }, HTMLDivElement, ComponentProvideOptions, {
3388
3407
  P: {};
3389
3408
  B: {};
3390
3409
  D: {};
@@ -3416,6 +3435,10 @@ export declare const UpGeneralEnumTile: {
3416
3435
  type: PropType<GeneralEnumTileOptionConfig[]>;
3417
3436
  default: () => never[];
3418
3437
  };
3438
+ moreEnumOptionConfigs: {
3439
+ type: PropType<GeneralEnumTileOptionConfig[]>;
3440
+ default: () => never[];
3441
+ };
3419
3442
  }>> & Readonly<{}>, {}, {}, {}, {}, {
3420
3443
  subscribes: ProductSubscribe[];
3421
3444
  showTitle: boolean;
@@ -3423,6 +3446,7 @@ export declare const UpGeneralEnumTile: {
3423
3446
  invertEnabled: boolean;
3424
3447
  invertEnumValue: string | number;
3425
3448
  enumOptionConfigs: GeneralEnumTileOptionConfig[];
3449
+ moreEnumOptionConfigs: GeneralEnumTileOptionConfig[];
3426
3450
  }>;
3427
3451
  __isFragment?: never;
3428
3452
  __isTeleport?: never;
@@ -3452,6 +3476,10 @@ enumOptionConfigs: {
3452
3476
  type: PropType<GeneralEnumTileOptionConfig[]>;
3453
3477
  default: () => never[];
3454
3478
  };
3479
+ moreEnumOptionConfigs: {
3480
+ type: PropType<GeneralEnumTileOptionConfig[]>;
3481
+ default: () => never[];
3482
+ };
3455
3483
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
3456
3484
  subscribes: ProductSubscribe[];
3457
3485
  showTitle: boolean;
@@ -3459,6 +3487,7 @@ singleTapDispatch: boolean;
3459
3487
  invertEnabled: boolean;
3460
3488
  invertEnumValue: string | number;
3461
3489
  enumOptionConfigs: GeneralEnumTileOptionConfig[];
3490
+ moreEnumOptionConfigs: GeneralEnumTileOptionConfig[];
3462
3491
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
3463
3492
  $slots: {
3464
3493
  default?(_: {}): any;
@@ -3878,6 +3907,71 @@ default: () => never[];
3878
3907
  filterElementItemConfigs: GeneralScreenFilterElementItemConfig[];
3879
3908
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
3880
3909
 
3910
+ export declare const UpGeneralTimeSwitch: {
3911
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
3912
+ readonly subscribes: {
3913
+ readonly type: PropType<ProductSubscribe[]>;
3914
+ readonly default: () => never[];
3915
+ };
3916
+ readonly cardSize: {
3917
+ readonly type: PropType<GeneralTimeSwitchCardSize>;
3918
+ readonly default: "half";
3919
+ };
3920
+ readonly wheelUnit: {
3921
+ readonly type: PropType<GeneralTimeSwitchWheelUnit>;
3922
+ readonly default: "hourMinute";
3923
+ };
3924
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
3925
+ readonly subscribes: ProductSubscribe[];
3926
+ readonly cardSize: GeneralTimeSwitchCardSize;
3927
+ readonly wheelUnit: GeneralTimeSwitchWheelUnit;
3928
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
3929
+ P: {};
3930
+ B: {};
3931
+ D: {};
3932
+ C: {};
3933
+ M: {};
3934
+ Defaults: {};
3935
+ }, Readonly<ExtractPropTypes< {
3936
+ readonly subscribes: {
3937
+ readonly type: PropType<ProductSubscribe[]>;
3938
+ readonly default: () => never[];
3939
+ };
3940
+ readonly cardSize: {
3941
+ readonly type: PropType<GeneralTimeSwitchCardSize>;
3942
+ readonly default: "half";
3943
+ };
3944
+ readonly wheelUnit: {
3945
+ readonly type: PropType<GeneralTimeSwitchWheelUnit>;
3946
+ readonly default: "hourMinute";
3947
+ };
3948
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
3949
+ readonly subscribes: ProductSubscribe[];
3950
+ readonly cardSize: GeneralTimeSwitchCardSize;
3951
+ readonly wheelUnit: GeneralTimeSwitchWheelUnit;
3952
+ }>;
3953
+ __isFragment?: never;
3954
+ __isTeleport?: never;
3955
+ __isSuspense?: never;
3956
+ } & ComponentOptionsBase<Readonly<ExtractPropTypes< {
3957
+ readonly subscribes: {
3958
+ readonly type: PropType<ProductSubscribe[]>;
3959
+ readonly default: () => never[];
3960
+ };
3961
+ readonly cardSize: {
3962
+ readonly type: PropType<GeneralTimeSwitchCardSize>;
3963
+ readonly default: "half";
3964
+ };
3965
+ readonly wheelUnit: {
3966
+ readonly type: PropType<GeneralTimeSwitchWheelUnit>;
3967
+ readonly default: "hourMinute";
3968
+ };
3969
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
3970
+ readonly subscribes: ProductSubscribe[];
3971
+ readonly cardSize: GeneralTimeSwitchCardSize;
3972
+ readonly wheelUnit: GeneralTimeSwitchWheelUnit;
3973
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
3974
+
3881
3975
  export declare const UpGeneralWarn: {
3882
3976
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
3883
3977
  description: {
@@ -4369,7 +4463,9 @@ export declare const UpPageBarNew: {
4369
4463
  }, PublicProps, {
4370
4464
  showProductWikiCard: boolean;
4371
4465
  productWikiDeviceTransport: PageBarNewProductWikiDeviceTransport;
4372
- }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
4466
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
4467
+ scrollRef: HTMLDivElement;
4468
+ }, HTMLDivElement, ComponentProvideOptions, {
4373
4469
  P: {};
4374
4470
  B: {};
4375
4471
  D: {};
@@ -4621,6 +4717,10 @@ export declare const UpStatusBar: {
4621
4717
  type: PropType<ProductSubscribe[]>;
4622
4718
  default: () => never[];
4623
4719
  };
4720
+ subscribesCenter: {
4721
+ type: PropType<ProductSubscribe[]>;
4722
+ default: () => never[];
4723
+ };
4624
4724
  showMiddle: {
4625
4725
  type: BooleanConstructor;
4626
4726
  default: boolean;
@@ -4671,6 +4771,7 @@ export declare const UpStatusBar: {
4671
4771
  closeDialogShowTitle: boolean;
4672
4772
  closeDialogTitle: string;
4673
4773
  closeDialogContent: string;
4774
+ subscribesCenter: ProductSubscribe[];
4674
4775
  showMiddle: boolean;
4675
4776
  showMiddleWhenOff: boolean;
4676
4777
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
@@ -4685,6 +4786,10 @@ export declare const UpStatusBar: {
4685
4786
  type: PropType<ProductSubscribe[]>;
4686
4787
  default: () => never[];
4687
4788
  };
4789
+ subscribesCenter: {
4790
+ type: PropType<ProductSubscribe[]>;
4791
+ default: () => never[];
4792
+ };
4688
4793
  showMiddle: {
4689
4794
  type: BooleanConstructor;
4690
4795
  default: boolean;
@@ -4735,6 +4840,7 @@ export declare const UpStatusBar: {
4735
4840
  closeDialogShowTitle: boolean;
4736
4841
  closeDialogTitle: string;
4737
4842
  closeDialogContent: string;
4843
+ subscribesCenter: ProductSubscribe[];
4738
4844
  showMiddle: boolean;
4739
4845
  showMiddleWhenOff: boolean;
4740
4846
  }>;
@@ -4746,6 +4852,10 @@ subscribes: {
4746
4852
  type: PropType<ProductSubscribe[]>;
4747
4853
  default: () => never[];
4748
4854
  };
4855
+ subscribesCenter: {
4856
+ type: PropType<ProductSubscribe[]>;
4857
+ default: () => never[];
4858
+ };
4749
4859
  showMiddle: {
4750
4860
  type: BooleanConstructor;
4751
4861
  default: boolean;
@@ -4796,6 +4906,7 @@ enableCloseDialog: boolean;
4796
4906
  closeDialogShowTitle: boolean;
4797
4907
  closeDialogTitle: string;
4798
4908
  closeDialogContent: string;
4909
+ subscribesCenter: ProductSubscribe[];
4799
4910
  showMiddle: boolean;
4800
4911
  showMiddleWhenOff: boolean;
4801
4912
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
@@ -4998,6 +5109,10 @@ export declare const UpTimeWheelPicker: {
4998
5109
  type: NumberConstructor;
4999
5110
  default: number;
5000
5111
  };
5112
+ padTimeDigits: {
5113
+ type: BooleanConstructor;
5114
+ default: boolean;
5115
+ };
5001
5116
  }>> & Readonly<{
5002
5117
  onChange?: ((value: TimeWheelPickerValue) => any) | undefined;
5003
5118
  "onUpdate:modelValue"?: ((value: TimeWheelPickerValue) => any) | undefined;
@@ -5010,6 +5125,7 @@ export declare const UpTimeWheelPicker: {
5010
5125
  itemHeight: number;
5011
5126
  viewHeight: number;
5012
5127
  centerItemHeight: number;
5128
+ padTimeDigits: boolean;
5013
5129
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
5014
5130
  P: {};
5015
5131
  B: {};
@@ -5038,6 +5154,10 @@ export declare const UpTimeWheelPicker: {
5038
5154
  type: NumberConstructor;
5039
5155
  default: number;
5040
5156
  };
5157
+ padTimeDigits: {
5158
+ type: BooleanConstructor;
5159
+ default: boolean;
5160
+ };
5041
5161
  }>> & Readonly<{
5042
5162
  onChange?: ((value: TimeWheelPickerValue) => any) | undefined;
5043
5163
  "onUpdate:modelValue"?: ((value: TimeWheelPickerValue) => any) | undefined;
@@ -5047,6 +5167,7 @@ export declare const UpTimeWheelPicker: {
5047
5167
  itemHeight: number;
5048
5168
  viewHeight: number;
5049
5169
  centerItemHeight: number;
5170
+ padTimeDigits: boolean;
5050
5171
  }>;
5051
5172
  __isFragment?: never;
5052
5173
  __isTeleport?: never;
@@ -5072,6 +5193,10 @@ centerItemHeight: {
5072
5193
  type: NumberConstructor;
5073
5194
  default: number;
5074
5195
  };
5196
+ padTimeDigits: {
5197
+ type: BooleanConstructor;
5198
+ default: boolean;
5199
+ };
5075
5200
  }>> & Readonly<{
5076
5201
  onChange?: ((value: TimeWheelPickerValue) => any) | undefined;
5077
5202
  "onUpdate:modelValue"?: ((value: TimeWheelPickerValue) => any) | undefined;
@@ -5084,6 +5209,7 @@ columns: TimeWheelPickerColumn[];
5084
5209
  itemHeight: number;
5085
5210
  viewHeight: number;
5086
5211
  centerItemHeight: number;
5212
+ padTimeDigits: boolean;
5087
5213
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
5088
5214
 
5089
5215
  export declare const UpWaterHeaterTimeEnd: {
@@ -5232,7 +5358,7 @@ export declare const useGlobalI18n: () => {
5232
5358
  };
5233
5359
 
5234
5360
  /**
5235
- * 全屏二级页打开时隐藏宿主原生标题,关闭时恢复;卸载时强制恢复,避免残留隐藏态。
5361
+ * 全屏二级页打开时隐藏宿主原生标题与假标题栏,关闭时恢复;卸载时强制恢复,避免残留隐藏态。
5236
5362
  */
5237
5363
  export declare function useHilinkSubPageTitleVisibility(isSubPage: MaybeRefOrGetter<boolean>): void;
5238
5364
 
@@ -5465,6 +5591,7 @@ export declare const zhCN: {
5465
5591
  placeholderPleaseSelect: string;
5466
5592
  toastMaxTimers: string;
5467
5593
  toastSelectFunction: string;
5594
+ toastStartEndSame: string;
5468
5595
  summary: {
5469
5596
  template: {
5470
5597
  dualToday: string;
@@ -5507,10 +5634,19 @@ export declare const zhCN: {
5507
5634
  titleOff: string;
5508
5635
  previewWillOn: string;
5509
5636
  previewWillOff: string;
5637
+ previewWillOnTomorrow: string;
5638
+ previewWillOffTomorrow: string;
5510
5639
  closeCountdown: string;
5511
5640
  wheelHour: string;
5512
5641
  wheelMinute: string;
5513
5642
  };
5643
+ generalTimeSwitch: {
5644
+ unitHour: string;
5645
+ unitMinute: string;
5646
+ unitSecond: string;
5647
+ subtitleHourMinute: string;
5648
+ subtitleMinuteSecond: string;
5649
+ };
5514
5650
  waterHeaterTimeEnd: {
5515
5651
  cardTitle: string;
5516
5652
  dialogTitle: string;
@@ -5527,6 +5663,7 @@ export declare const zhCN: {
5527
5663
  placeholderOption2: string;
5528
5664
  placeholderOption3: string;
5529
5665
  placeholderOption4: string;
5666
+ more: string;
5530
5667
  };
5531
5668
  commonBannerNew: {
5532
5669
  connect: {