@ailife-dev-vue/uiplus 0.0.13-snapshot → 0.0.15-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
@@ -421,6 +421,8 @@ export declare interface EnumItem {
421
421
  descCh: string;
422
422
  }
423
423
 
424
+ export declare type EnumStatusCardSize = 'full' | 'half';
425
+
424
426
  export declare type EnumStatusEmits = {
425
427
  (e: 'expanded-change', expanded: boolean): void;
426
428
  };
@@ -432,46 +434,61 @@ declare const enumStatusGaugeProps: {
432
434
  type: StringConstructor;
433
435
  default: string;
434
436
  };
435
- statusColor: {
437
+ /** 圆环中心下行「当前{特征名}」整句,由父组件拼好传入 */
438
+ currentLabel: {
436
439
  type: StringConstructor;
437
440
  default: string;
438
441
  };
439
- subtitle: {
440
- type: StringConstructor;
441
- default: string;
442
+ enumCount: {
443
+ type: NumberConstructor;
444
+ default: number;
442
445
  };
443
- ratio: {
446
+ selectedIndex: {
444
447
  type: NumberConstructor;
445
448
  default: number;
446
449
  };
447
450
  };
448
451
 
452
+ export declare interface EnumStatusItemDescription {
453
+ enumVal: string | number;
454
+ /** L2 i18n key 或直接文案 */
455
+ description: string;
456
+ }
457
+
449
458
  export declare type EnumStatusProps = ExtractPropTypes<typeof enumStatusProps>;
450
459
 
451
460
  declare const enumStatusProps: {
452
- title: {
453
- type: StringConstructor;
454
- default: string;
461
+ subscribes: {
462
+ type: PropType<ProductSubscribe[]>;
463
+ default: () => never[];
455
464
  };
456
- statusText: {
457
- type: StringConstructor;
458
- default: string;
465
+ /** 各枚举值在二级页与圆环同级的描述文案*/
466
+ enumItemDescriptions: {
467
+ type: PropType<EnumStatusItemDescription[]>;
468
+ default: () => never[];
469
+ };
470
+ showResetButton: {
471
+ type: BooleanConstructor;
472
+ default: boolean;
459
473
  };
460
- statusColor: {
474
+ /** 重置下发锚点,与 subscribes 独立;仅消费首项,须为 bool */
475
+ resetSubscribes: {
476
+ type: PropType<ProductSubscribe[]>;
477
+ default: () => never[];
478
+ };
479
+ /** 重置按钮文案,同时作为确认弹窗标题;为空时不展示重置按钮 */
480
+ resetButtonText: {
461
481
  type: StringConstructor;
462
482
  default: string;
463
483
  };
464
- detailSubtitle: {
484
+ /** 重置确认弹窗正文;为空时弹窗仍展示,正文区不渲染 */
485
+ resetDialogContent: {
465
486
  type: StringConstructor;
466
487
  default: string;
467
488
  };
468
- detailRatio: {
469
- type: NumberConstructor;
470
- default: number;
471
- };
472
- disabled: {
473
- type: BooleanConstructor;
474
- default: boolean;
489
+ cardSize: {
490
+ type: PropType<EnumStatusCardSize>;
491
+ default: string;
475
492
  };
476
493
  };
477
494
 
@@ -746,6 +763,63 @@ export declare const enUS: {
746
763
  monthSuffix: string;
747
764
  };
748
765
  };
766
+ tableLampMorning: {
767
+ cardTitle: string;
768
+ aria: {
769
+ back: string;
770
+ };
771
+ field: {
772
+ openTime: string;
773
+ duration: string;
774
+ brightness: string;
775
+ };
776
+ timeUnit: {
777
+ hour: string;
778
+ minute: string;
779
+ };
780
+ rangeUnit: {
781
+ minute: string;
782
+ };
783
+ rangeValue: string;
784
+ };
785
+ tableLampNightWake: {
786
+ cardTitle: string;
787
+ aria: {
788
+ back: string;
789
+ };
790
+ field: {
791
+ activePeriod: string;
792
+ activePeriodValue: string;
793
+ startTime: string;
794
+ endTime: string;
795
+ brightness: string;
796
+ };
797
+ detailHint: string;
798
+ timeUnit: {
799
+ hour: string;
800
+ minute: string;
801
+ };
802
+ nextDayPrefix: string;
803
+ };
804
+ tableLampSleepy: {
805
+ cardTitle: string;
806
+ aria: {
807
+ back: string;
808
+ };
809
+ field: {
810
+ openTime: string;
811
+ duration: string;
812
+ brightness: string;
813
+ };
814
+ timeUnit: {
815
+ hour: string;
816
+ minute: string;
817
+ };
818
+ rangeUnit: {
819
+ minute: string;
820
+ };
821
+ rangeValue: string;
822
+ };
749
823
  lampCCT: {
750
824
  cardTitle: string;
751
825
  cool: string;
@@ -762,6 +836,9 @@ export declare const enUS: {
762
836
  infoTitle: string;
763
837
  statPlaceholder: string;
764
838
  };
839
+ enumStatus: {
840
+ gaugeCurrentLabel: string;
841
+ };
765
842
  lampColour: {
766
843
  cardTitle: string;
767
844
  cardSubtitle: string;
@@ -1743,6 +1820,56 @@ declare const tableLampMorningProps: {
1743
1820
  };
1744
1821
  };
1745
1822
 
1823
+ export declare type TableLampNightWakeCardSize = 'full' | 'half';
1824
+
1825
+ export declare type TableLampNightWakeCommandPayload = HilinkDeviceControlPayload;
1826
+
1827
+ export declare type TableLampNightWakeEmits = {
1828
+ (e: 'expanded-change', expanded: boolean): void;
1829
+ };
1830
+
1831
+ export declare type TableLampNightWakeProps = ExtractPropTypes<typeof tableLampNightWakeProps>;
1832
+
1833
+ declare const tableLampNightWakeProps: {
1834
+ cardSize: {
1835
+ type: PropType<TableLampNightWakeCardSize>;
1836
+ default: string;
1837
+ };
1838
+ title: {
1839
+ type: StringConstructor;
1840
+ default: string;
1841
+ };
1842
+ showDetailHint: {
1843
+ type: BooleanConstructor;
1844
+ default: boolean;
1845
+ };
1846
+ detailHint: {
1847
+ type: StringConstructor;
1848
+ default: string;
1849
+ };
1850
+ };
1851
+
1852
+ export declare type TableLampSleepyCardSize = 'full' | 'half';
1853
+
1854
+ export declare type TableLampSleepyCommandPayload = HilinkDeviceControlPayload;
1855
+
1856
+ export declare type TableLampSleepyEmits = {
1857
+ (e: 'expanded-change', expanded: boolean): void;
1858
+ };
1859
+
1860
+ export declare type TableLampSleepyProps = ExtractPropTypes<typeof tableLampSleepyProps>;
1861
+
1862
+ declare const tableLampSleepyProps: {
1863
+ cardSize: {
1864
+ type: PropType<TableLampSleepyCardSize>;
1865
+ default: string;
1866
+ };
1867
+ title: {
1868
+ type: StringConstructor;
1869
+ default: string;
1870
+ };
1871
+ };
1872
+
1746
1873
  export declare type TimerCardSize = 'full' | 'half';
1747
1874
 
1748
1875
  declare type TimerCommandPayload = HilinkDeviceControlPayload;
@@ -2906,42 +3033,51 @@ readonly recordSettingTime: boolean;
2906
3033
 
2907
3034
  export declare const UpEnumStatus: {
2908
3035
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
2909
- title: {
2910
- type: StringConstructor;
2911
- default: string;
3036
+ subscribes: {
3037
+ type: PropType<ProductSubscribe[]>;
3038
+ default: () => never[];
2912
3039
  };
2913
- statusText: {
2914
- type: StringConstructor;
2915
- default: string;
3040
+ enumItemDescriptions: {
3041
+ type: PropType<EnumStatusItemDescription[]>;
3042
+ default: () => never[];
3043
+ };
3044
+ showResetButton: {
3045
+ type: BooleanConstructor;
3046
+ default: boolean;
3047
+ };
3048
+ resetSubscribes: {
3049
+ type: PropType<ProductSubscribe[]>;
3050
+ default: () => never[];
2916
3051
  };
2917
- statusColor: {
3052
+ resetButtonText: {
2918
3053
  type: StringConstructor;
2919
3054
  default: string;
2920
3055
  };
2921
- detailSubtitle: {
3056
+ resetDialogContent: {
2922
3057
  type: StringConstructor;
2923
3058
  default: string;
2924
3059
  };
2925
- detailRatio: {
2926
- type: NumberConstructor;
2927
- default: number;
2928
- };
2929
- disabled: {
2930
- type: BooleanConstructor;
2931
- default: boolean;
3060
+ cardSize: {
3061
+ type: PropType<EnumStatusCardSize>;
3062
+ default: string;
2932
3063
  };
2933
3064
  }>> & Readonly<{
2934
3065
  "onExpanded-change"?: ((expanded: boolean) => any) | undefined;
2935
3066
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2936
3067
  "expanded-change": (expanded: boolean) => any;
2937
3068
  }, PublicProps, {
2938
- title: string;
2939
- disabled: boolean;
2940
- statusText: string;
2941
- statusColor: string;
2942
- detailSubtitle: string;
2943
- detailRatio: number;
2944
- }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
3069
+ subscribes: ProductSubscribe[];
3070
+ cardSize: EnumStatusCardSize;
3071
+ enumItemDescriptions: EnumStatusItemDescription[];
3072
+ showResetButton: boolean;
3073
+ resetSubscribes: ProductSubscribe[];
3074
+ resetButtonText: string;
3075
+ resetDialogContent: string;
3076
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
3077
+ contentRef: HTMLDivElement;
3078
+ titleRef: HTMLDivElement;
3079
+ statusRef: HTMLDivElement;
3080
+ }, HTMLDivElement, ComponentProvideOptions, {
2945
3081
  P: {};
2946
3082
  B: {};
2947
3083
  D: {};
@@ -2949,79 +3085,89 @@ export declare const UpEnumStatus: {
2949
3085
  M: {};
2950
3086
  Defaults: {};
2951
3087
  }, Readonly<ExtractPropTypes< {
2952
- title: {
2953
- type: StringConstructor;
2954
- default: string;
3088
+ subscribes: {
3089
+ type: PropType<ProductSubscribe[]>;
3090
+ default: () => never[];
2955
3091
  };
2956
- statusText: {
2957
- type: StringConstructor;
2958
- default: string;
3092
+ enumItemDescriptions: {
3093
+ type: PropType<EnumStatusItemDescription[]>;
3094
+ default: () => never[];
2959
3095
  };
2960
- statusColor: {
3096
+ showResetButton: {
3097
+ type: BooleanConstructor;
3098
+ default: boolean;
3099
+ };
3100
+ resetSubscribes: {
3101
+ type: PropType<ProductSubscribe[]>;
3102
+ default: () => never[];
3103
+ };
3104
+ resetButtonText: {
2961
3105
  type: StringConstructor;
2962
3106
  default: string;
2963
3107
  };
2964
- detailSubtitle: {
3108
+ resetDialogContent: {
2965
3109
  type: StringConstructor;
2966
3110
  default: string;
2967
3111
  };
2968
- detailRatio: {
2969
- type: NumberConstructor;
2970
- default: number;
2971
- };
2972
- disabled: {
2973
- type: BooleanConstructor;
2974
- default: boolean;
3112
+ cardSize: {
3113
+ type: PropType<EnumStatusCardSize>;
3114
+ default: string;
2975
3115
  };
2976
3116
  }>> & Readonly<{
2977
3117
  "onExpanded-change"?: ((expanded: boolean) => any) | undefined;
2978
3118
  }>, {}, {}, {}, {}, {
2979
- title: string;
2980
- disabled: boolean;
2981
- statusText: string;
2982
- statusColor: string;
2983
- detailSubtitle: string;
2984
- detailRatio: number;
3119
+ subscribes: ProductSubscribe[];
3120
+ cardSize: EnumStatusCardSize;
3121
+ enumItemDescriptions: EnumStatusItemDescription[];
3122
+ showResetButton: boolean;
3123
+ resetSubscribes: ProductSubscribe[];
3124
+ resetButtonText: string;
3125
+ resetDialogContent: string;
2985
3126
  }>;
2986
3127
  __isFragment?: never;
2987
3128
  __isTeleport?: never;
2988
3129
  __isSuspense?: never;
2989
3130
  } & ComponentOptionsBase<Readonly<ExtractPropTypes< {
2990
- title: {
2991
- type: StringConstructor;
2992
- default: string;
3131
+ subscribes: {
3132
+ type: PropType<ProductSubscribe[]>;
3133
+ default: () => never[];
2993
3134
  };
2994
- statusText: {
2995
- type: StringConstructor;
2996
- default: string;
3135
+ enumItemDescriptions: {
3136
+ type: PropType<EnumStatusItemDescription[]>;
3137
+ default: () => never[];
2997
3138
  };
2998
- statusColor: {
3139
+ showResetButton: {
3140
+ type: BooleanConstructor;
3141
+ default: boolean;
3142
+ };
3143
+ resetSubscribes: {
3144
+ type: PropType<ProductSubscribe[]>;
3145
+ default: () => never[];
3146
+ };
3147
+ resetButtonText: {
2999
3148
  type: StringConstructor;
3000
3149
  default: string;
3001
3150
  };
3002
- detailSubtitle: {
3151
+ resetDialogContent: {
3003
3152
  type: StringConstructor;
3004
3153
  default: string;
3005
3154
  };
3006
- detailRatio: {
3007
- type: NumberConstructor;
3008
- default: number;
3009
- };
3010
- disabled: {
3011
- type: BooleanConstructor;
3012
- default: boolean;
3155
+ cardSize: {
3156
+ type: PropType<EnumStatusCardSize>;
3157
+ default: string;
3013
3158
  };
3014
3159
  }>> & Readonly<{
3015
3160
  "onExpanded-change"?: ((expanded: boolean) => any) | undefined;
3016
3161
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3017
3162
  "expanded-change": (expanded: boolean) => any;
3018
3163
  }, string, {
3019
- title: string;
3020
- disabled: boolean;
3021
- statusText: string;
3022
- statusColor: string;
3023
- detailSubtitle: string;
3024
- detailRatio: number;
3164
+ subscribes: ProductSubscribe[];
3165
+ cardSize: EnumStatusCardSize;
3166
+ enumItemDescriptions: EnumStatusItemDescription[];
3167
+ showResetButton: boolean;
3168
+ resetSubscribes: ProductSubscribe[];
3169
+ resetButtonText: string;
3170
+ resetDialogContent: string;
3025
3171
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
3026
3172
  $slots: {
3027
3173
  icon?(_: {}): any;
@@ -3034,23 +3180,23 @@ export declare const UpEnumStatusGauge: {
3034
3180
  type: StringConstructor;
3035
3181
  default: string;
3036
3182
  };
3037
- statusColor: {
3183
+ currentLabel: {
3038
3184
  type: StringConstructor;
3039
3185
  default: string;
3040
3186
  };
3041
- subtitle: {
3042
- type: StringConstructor;
3043
- default: string;
3187
+ enumCount: {
3188
+ type: NumberConstructor;
3189
+ default: number;
3044
3190
  };
3045
- ratio: {
3191
+ selectedIndex: {
3046
3192
  type: NumberConstructor;
3047
3193
  default: number;
3048
3194
  };
3049
3195
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
3050
3196
  statusText: string;
3051
- subtitle: string;
3052
- statusColor: string;
3053
- ratio: number;
3197
+ currentLabel: string;
3198
+ enumCount: number;
3199
+ selectedIndex: number;
3054
3200
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
3055
3201
  P: {};
3056
3202
  B: {};
@@ -3063,23 +3209,23 @@ export declare const UpEnumStatusGauge: {
3063
3209
  type: StringConstructor;
3064
3210
  default: string;
3065
3211
  };
3066
- statusColor: {
3212
+ currentLabel: {
3067
3213
  type: StringConstructor;
3068
3214
  default: string;
3069
3215
  };
3070
- subtitle: {
3071
- type: StringConstructor;
3072
- default: string;
3216
+ enumCount: {
3217
+ type: NumberConstructor;
3218
+ default: number;
3073
3219
  };
3074
- ratio: {
3220
+ selectedIndex: {
3075
3221
  type: NumberConstructor;
3076
3222
  default: number;
3077
3223
  };
3078
3224
  }>> & Readonly<{}>, {}, {}, {}, {}, {
3079
3225
  statusText: string;
3080
- subtitle: string;
3081
- statusColor: string;
3082
- ratio: number;
3226
+ currentLabel: string;
3227
+ enumCount: number;
3228
+ selectedIndex: number;
3083
3229
  }>;
3084
3230
  __isFragment?: never;
3085
3231
  __isTeleport?: never;
@@ -3089,23 +3235,23 @@ statusText: {
3089
3235
  type: StringConstructor;
3090
3236
  default: string;
3091
3237
  };
3092
- statusColor: {
3238
+ currentLabel: {
3093
3239
  type: StringConstructor;
3094
3240
  default: string;
3095
3241
  };
3096
- subtitle: {
3097
- type: StringConstructor;
3098
- default: string;
3242
+ enumCount: {
3243
+ type: NumberConstructor;
3244
+ default: number;
3099
3245
  };
3100
- ratio: {
3246
+ selectedIndex: {
3101
3247
  type: NumberConstructor;
3102
3248
  default: number;
3103
3249
  };
3104
3250
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
3105
3251
  statusText: string;
3106
- subtitle: string;
3107
- statusColor: string;
3108
- ratio: number;
3252
+ currentLabel: string;
3253
+ enumCount: number;
3254
+ selectedIndex: number;
3109
3255
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
3110
3256
 
3111
3257
  export declare const UpFirmwareUpdates: {
@@ -5146,6 +5292,156 @@ title: string;
5146
5292
  cardSize: TableLampMorningCardSize;
5147
5293
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
5148
5294
 
5295
+ export declare const UpTableLampNightWake: {
5296
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
5297
+ cardSize: {
5298
+ type: PropType<TableLampNightWakeCardSize>;
5299
+ default: string;
5300
+ };
5301
+ title: {
5302
+ type: StringConstructor;
5303
+ default: string;
5304
+ };
5305
+ showDetailHint: {
5306
+ type: BooleanConstructor;
5307
+ default: boolean;
5308
+ };
5309
+ detailHint: {
5310
+ type: StringConstructor;
5311
+ default: string;
5312
+ };
5313
+ }>> & Readonly<{
5314
+ "onExpanded-change"?: ((expanded: boolean) => any) | undefined;
5315
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
5316
+ "expanded-change": (expanded: boolean) => any;
5317
+ }, PublicProps, {
5318
+ title: string;
5319
+ cardSize: TableLampNightWakeCardSize;
5320
+ showDetailHint: boolean;
5321
+ detailHint: string;
5322
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
5323
+ P: {};
5324
+ B: {};
5325
+ D: {};
5326
+ C: {};
5327
+ M: {};
5328
+ Defaults: {};
5329
+ }, Readonly<ExtractPropTypes< {
5330
+ cardSize: {
5331
+ type: PropType<TableLampNightWakeCardSize>;
5332
+ default: string;
5333
+ };
5334
+ title: {
5335
+ type: StringConstructor;
5336
+ default: string;
5337
+ };
5338
+ showDetailHint: {
5339
+ type: BooleanConstructor;
5340
+ default: boolean;
5341
+ };
5342
+ detailHint: {
5343
+ type: StringConstructor;
5344
+ default: string;
5345
+ };
5346
+ }>> & Readonly<{
5347
+ "onExpanded-change"?: ((expanded: boolean) => any) | undefined;
5348
+ }>, {}, {}, {}, {}, {
5349
+ title: string;
5350
+ cardSize: TableLampNightWakeCardSize;
5351
+ showDetailHint: boolean;
5352
+ detailHint: string;
5353
+ }>;
5354
+ __isFragment?: never;
5355
+ __isTeleport?: never;
5356
+ __isSuspense?: never;
5357
+ } & ComponentOptionsBase<Readonly<ExtractPropTypes< {
5358
+ cardSize: {
5359
+ type: PropType<TableLampNightWakeCardSize>;
5360
+ default: string;
5361
+ };
5362
+ title: {
5363
+ type: StringConstructor;
5364
+ default: string;
5365
+ };
5366
+ showDetailHint: {
5367
+ type: BooleanConstructor;
5368
+ default: boolean;
5369
+ };
5370
+ detailHint: {
5371
+ type: StringConstructor;
5372
+ default: string;
5373
+ };
5374
+ }>> & Readonly<{
5375
+ "onExpanded-change"?: ((expanded: boolean) => any) | undefined;
5376
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
5377
+ "expanded-change": (expanded: boolean) => any;
5378
+ }, string, {
5379
+ title: string;
5380
+ cardSize: TableLampNightWakeCardSize;
5381
+ showDetailHint: boolean;
5382
+ detailHint: string;
5383
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
5384
+
5385
+ export declare const UpTableLampSleepy: {
5386
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
5387
+ cardSize: {
5388
+ type: PropType<TableLampSleepyCardSize>;
5389
+ default: string;
5390
+ };
5391
+ title: {
5392
+ type: StringConstructor;
5393
+ default: string;
5394
+ };
5395
+ }>> & Readonly<{
5396
+ "onExpanded-change"?: ((expanded: boolean) => any) | undefined;
5397
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
5398
+ "expanded-change": (expanded: boolean) => any;
5399
+ }, PublicProps, {
5400
+ title: string;
5401
+ cardSize: TableLampSleepyCardSize;
5402
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
5403
+ P: {};
5404
+ B: {};
5405
+ D: {};
5406
+ C: {};
5407
+ M: {};
5408
+ Defaults: {};
5409
+ }, Readonly<ExtractPropTypes< {
5410
+ cardSize: {
5411
+ type: PropType<TableLampSleepyCardSize>;
5412
+ default: string;
5413
+ };
5414
+ title: {
5415
+ type: StringConstructor;
5416
+ default: string;
5417
+ };
5418
+ }>> & Readonly<{
5419
+ "onExpanded-change"?: ((expanded: boolean) => any) | undefined;
5420
+ }>, {}, {}, {}, {}, {
5421
+ title: string;
5422
+ cardSize: TableLampSleepyCardSize;
5423
+ }>;
5424
+ __isFragment?: never;
5425
+ __isTeleport?: never;
5426
+ __isSuspense?: never;
5427
+ } & ComponentOptionsBase<Readonly<ExtractPropTypes< {
5428
+ cardSize: {
5429
+ type: PropType<TableLampSleepyCardSize>;
5430
+ default: string;
5431
+ };
5432
+ title: {
5433
+ type: StringConstructor;
5434
+ default: string;
5435
+ };
5436
+ }>> & Readonly<{
5437
+ "onExpanded-change"?: ((expanded: boolean) => any) | undefined;
5438
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
5439
+ "expanded-change": (expanded: boolean) => any;
5440
+ }, string, {
5441
+ title: string;
5442
+ cardSize: TableLampSleepyCardSize;
5443
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
5444
+
5149
5445
  export declare const UpTimer: {
5150
5446
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
5151
5447
  cardSize: {
@@ -5888,6 +6184,63 @@ export declare const zhCN: {
5888
6184
  monthSuffix: string;
5889
6185
  };
5890
6186
  };
6187
+ tableLampMorning: {
6188
+ cardTitle: string;
6189
+ aria: {
6190
+ back: string;
6191
+ };
6192
+ field: {
6193
+ openTime: string;
6194
+ duration: string;
6195
+ brightness: string;
6196
+ };
6197
+ timeUnit: {
6198
+ hour: string;
6199
+ minute: string;
6200
+ };
6201
+ rangeUnit: {
6202
+ minute: string;
6203
+ };
6204
+ rangeValue: string;
6205
+ };
6206
+ tableLampNightWake: {
6207
+ cardTitle: string;
6208
+ aria: {
6209
+ back: string;
6210
+ };
6211
+ field: {
6212
+ activePeriod: string;
6213
+ activePeriodValue: string;
6214
+ startTime: string;
6215
+ endTime: string;
6216
+ brightness: string;
6217
+ };
6218
+ detailHint: string;
6219
+ timeUnit: {
6220
+ hour: string;
6221
+ minute: string;
6222
+ };
6223
+ nextDayPrefix: string;
6224
+ };
6225
+ tableLampSleepy: {
6226
+ cardTitle: string;
6227
+ aria: {
6228
+ back: string;
6229
+ };
6230
+ field: {
6231
+ openTime: string;
6232
+ duration: string;
6233
+ brightness: string;
6234
+ };
6235
+ timeUnit: {
6236
+ hour: string;
6237
+ minute: string;
6238
+ };
6239
+ rangeUnit: {
6240
+ minute: string;
6241
+ };
6242
+ rangeValue: string;
6243
+ };
5891
6244
  lampCCT: {
5892
6245
  cardTitle: string;
5893
6246
  cool: string;
@@ -5904,6 +6257,9 @@ export declare const zhCN: {
5904
6257
  infoTitle: string;
5905
6258
  statPlaceholder: string;
5906
6259
  };
6260
+ enumStatus: {
6261
+ gaugeCurrentLabel: string;
6262
+ };
5907
6263
  lampColour: {
5908
6264
  cardTitle: string;
5909
6265
  cardSubtitle: string;