@ailife-dev-vue/uiplus-dev 0.1.33 → 0.1.34

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
@@ -1,23 +1,33 @@
1
1
  import { AllowedComponentProps } from 'vue';
2
2
  import { App } from 'vue';
3
+ import { ComponentCustomProperties } from 'vue';
3
4
  import { ComponentCustomProps } from 'vue';
5
+ import { ComponentInternalInstance } from 'vue';
4
6
  import { ComponentOptionsBase } from 'vue';
5
7
  import { ComponentOptionsMixin } from 'vue';
6
8
  import { ComponentProvideOptions } from 'vue';
9
+ import { ComponentPublicInstance } from 'vue';
7
10
  import { Composer } from 'vue-i18n';
8
11
  import { ComputedRef } from 'vue';
9
12
  import { CreateComponentPublicInstanceWithMixins } from 'vue';
13
+ import { DebuggerEvent } from 'vue';
10
14
  import { DefineComponent } from 'vue';
11
15
  import { ExtractPropTypes } from 'vue';
12
16
  import { GlobalComponents } from 'vue';
13
17
  import { GlobalDirectives } from 'vue';
14
18
  import { InjectionKey } from 'vue';
15
19
  import { MaybeRef } from 'vue';
20
+ import { nextTick } from 'vue';
21
+ import { OnCleanup } from '@vue/reactivity';
16
22
  import { Plugin as Plugin_2 } from 'vue';
17
23
  import { PropType } from 'vue';
18
24
  import { PublicProps } from 'vue';
19
25
  import { Ref } from 'vue';
26
+ import { ShallowUnwrapRef } from 'vue';
27
+ import { Slot } from 'vue';
20
28
  import { VNodeProps } from 'vue';
29
+ import { WatchOptions } from 'vue';
30
+ import { WatchStopHandle } from 'vue';
21
31
 
22
32
  export declare type ActionStatusbarCommandPayload = HilinkDeviceControlPayload;
23
33
 
@@ -108,7 +118,7 @@ declare const boolIconCardProps: {
108
118
  type: BooleanConstructor;
109
119
  default: boolean;
110
120
  };
111
- /** 说明文案 i18n key;解析结果为空或仅空白时点击叹号不弹出浮层 */
121
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击叹号不弹出浮层 */
112
122
  infoContent: {
113
123
  type: PropType<BoolIconCardInfoContent>;
114
124
  default: string;
@@ -191,7 +201,7 @@ declare const boolPanelCardProps: {
191
201
  type: BooleanConstructor;
192
202
  default: boolean;
193
203
  };
194
- /** 说明文案 i18n key;解析结果为空或仅空白时点击叹号不弹出浮层 */
204
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击叹号不弹出浮层 */
195
205
  infoContent: {
196
206
  type: PropType<BoolPanelCardInfoContent>;
197
207
  default: string;
@@ -445,6 +455,16 @@ declare const delayProps: {
445
455
  readonly type: PropType<DelayCardSize>;
446
456
  readonly default: "half";
447
457
  };
458
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
459
+ readonly showInfo: {
460
+ readonly type: BooleanConstructor;
461
+ readonly default: false;
462
+ };
463
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
464
+ readonly infoContent: {
465
+ readonly type: StringConstructor;
466
+ readonly default: "";
467
+ };
448
468
  };
449
469
 
450
470
  /**
@@ -1098,6 +1118,16 @@ declare const generalCombinedDeliveryProps: {
1098
1118
  type: PropType<GeneralCombinedDeliveryModeOptionConfig[]>;
1099
1119
  default: () => never[];
1100
1120
  };
1121
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1122
+ showInfo: {
1123
+ type: BooleanConstructor;
1124
+ default: boolean;
1125
+ };
1126
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1127
+ infoContent: {
1128
+ type: StringConstructor;
1129
+ default: string;
1130
+ };
1101
1131
  };
1102
1132
 
1103
1133
  export declare type GeneralCombinedDeliverySecondaryConfig = {
@@ -1200,6 +1230,16 @@ declare const generalEnumControlProps: {
1200
1230
  type: PropType<GeneralEnumControlIconStyle>;
1201
1231
  default: string;
1202
1232
  };
1233
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1234
+ showInfo: {
1235
+ type: BooleanConstructor;
1236
+ default: boolean;
1237
+ };
1238
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1239
+ infoContent: {
1240
+ type: StringConstructor;
1241
+ default: string;
1242
+ };
1203
1243
  };
1204
1244
 
1205
1245
  export declare type GeneralEnumDialogCardCommandPayload = HilinkDeviceControlPayload;
@@ -1224,6 +1264,16 @@ declare const generalEnumDialogCardProps: {
1224
1264
  type: PropType<string[]>;
1225
1265
  default: undefined;
1226
1266
  };
1267
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1268
+ showInfo: {
1269
+ type: BooleanConstructor;
1270
+ default: boolean;
1271
+ };
1272
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1273
+ infoContent: {
1274
+ type: StringConstructor;
1275
+ default: string;
1276
+ };
1227
1277
  };
1228
1278
 
1229
1279
  export declare type GeneralEnumDialogCardSize = 'full' | 'half';
@@ -1254,6 +1304,16 @@ declare const generalEnumDroplistCardProps: {
1254
1304
  type: PropType<string[]>;
1255
1305
  default: undefined;
1256
1306
  };
1307
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1308
+ showInfo: {
1309
+ type: BooleanConstructor;
1310
+ default: boolean;
1311
+ };
1312
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1313
+ infoContent: {
1314
+ type: StringConstructor;
1315
+ default: string;
1316
+ };
1257
1317
  };
1258
1318
 
1259
1319
  export declare type GeneralEnumDroplistCardSize = 'full' | 'half';
@@ -1271,6 +1331,16 @@ declare const generalEnumSliderProps: {
1271
1331
  type: PropType<Array<string | number>>;
1272
1332
  default: () => never[];
1273
1333
  };
1334
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1335
+ showInfo: {
1336
+ type: BooleanConstructor;
1337
+ default: boolean;
1338
+ };
1339
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1340
+ infoContent: {
1341
+ type: StringConstructor;
1342
+ default: string;
1343
+ };
1274
1344
  };
1275
1345
 
1276
1346
  export declare type GeneralEnumTileDisplayItem = {
@@ -1324,6 +1394,16 @@ declare const generalEnumTileProps: {
1324
1394
  type: PropType<GeneralEnumTileOptionConfig[]>;
1325
1395
  default: () => never[];
1326
1396
  };
1397
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1398
+ showInfo: {
1399
+ type: BooleanConstructor;
1400
+ default: boolean;
1401
+ };
1402
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1403
+ infoContent: {
1404
+ type: StringConstructor;
1405
+ default: string;
1406
+ };
1327
1407
  };
1328
1408
 
1329
1409
  export declare type GeneralExecutionCardSize = 'full' | 'half';
@@ -1343,6 +1423,16 @@ declare const generalExecutionProps: {
1343
1423
  type: PropType<GeneralExecutionCardSize>;
1344
1424
  default: string;
1345
1425
  };
1426
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1427
+ showInfo: {
1428
+ type: BooleanConstructor;
1429
+ default: boolean;
1430
+ };
1431
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1432
+ infoContent: {
1433
+ type: StringConstructor;
1434
+ default: string;
1435
+ };
1346
1436
  };
1347
1437
 
1348
1438
  export declare interface GeneralHistoricalRecordConfigItem {
@@ -1401,6 +1491,16 @@ declare const generalIntCardProps: {
1401
1491
  type: BooleanConstructor;
1402
1492
  default: boolean;
1403
1493
  };
1494
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1495
+ showInfo: {
1496
+ type: BooleanConstructor;
1497
+ default: boolean;
1498
+ };
1499
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1500
+ infoContent: {
1501
+ type: StringConstructor;
1502
+ default: string;
1503
+ };
1404
1504
  };
1405
1505
 
1406
1506
  export declare type GeneralIntCardStyleType = 'slider' | 'stepper';
@@ -1437,6 +1537,16 @@ declare const generalIntCircularProps: {
1437
1537
  type: PropType<string[]>;
1438
1538
  default: undefined;
1439
1539
  };
1540
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1541
+ showInfo: {
1542
+ type: BooleanConstructor;
1543
+ default: boolean;
1544
+ };
1545
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1546
+ infoContent: {
1547
+ type: StringConstructor;
1548
+ default: string;
1549
+ };
1440
1550
  };
1441
1551
 
1442
1552
  export declare type GeneralIntTileDisplayItem = {
@@ -1465,6 +1575,16 @@ declare const generalIntTileProps: {
1465
1575
  type: PropType<GeneralIntTilePresetOptionConfig[]>;
1466
1576
  default: () => never[];
1467
1577
  };
1578
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1579
+ showInfo: {
1580
+ type: BooleanConstructor;
1581
+ default: boolean;
1582
+ };
1583
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1584
+ infoContent: {
1585
+ type: StringConstructor;
1586
+ default: string;
1587
+ };
1468
1588
  };
1469
1589
 
1470
1590
  export declare type GeneralMemoryControlCardSize = 'full' | 'half';
@@ -1482,6 +1602,16 @@ declare const generalMemoryControlProps: {
1482
1602
  type: PropType<GeneralMemoryControlCardSize>;
1483
1603
  default: string;
1484
1604
  };
1605
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1606
+ showInfo: {
1607
+ type: BooleanConstructor;
1608
+ default: boolean;
1609
+ };
1610
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1611
+ infoContent: {
1612
+ type: StringConstructor;
1613
+ default: string;
1614
+ };
1485
1615
  };
1486
1616
 
1487
1617
  export declare type GeneralModeDisplayItem = {
@@ -1570,6 +1700,16 @@ declare const generalScreenProps: {
1570
1700
  type: PropType<GeneralScreenFilterElementItemConfig[]>;
1571
1701
  default: () => never[];
1572
1702
  };
1703
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1704
+ showInfo: {
1705
+ type: BooleanConstructor;
1706
+ default: boolean;
1707
+ };
1708
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1709
+ infoContent: {
1710
+ type: StringConstructor;
1711
+ default: string;
1712
+ };
1573
1713
  };
1574
1714
 
1575
1715
  export declare interface GeneralScreenRowModel {
@@ -1616,6 +1756,16 @@ declare const generalTaskProps: {
1616
1756
  type: PropType<GeneralTaskCardSize>;
1617
1757
  default: string;
1618
1758
  };
1759
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1760
+ showInfo: {
1761
+ type: BooleanConstructor;
1762
+ default: boolean;
1763
+ };
1764
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1765
+ infoContent: {
1766
+ type: StringConstructor;
1767
+ default: string;
1768
+ };
1619
1769
  };
1620
1770
 
1621
1771
  export declare type GeneralTimeSwitchCardSize = 'full' | 'half';
@@ -1644,6 +1794,16 @@ declare const generalTimeSwitchProps: {
1644
1794
  readonly type: PropType<string[]>;
1645
1795
  readonly default: undefined;
1646
1796
  };
1797
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
1798
+ readonly showInfo: {
1799
+ readonly type: BooleanConstructor;
1800
+ readonly default: false;
1801
+ };
1802
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1803
+ readonly infoContent: {
1804
+ readonly type: StringConstructor;
1805
+ readonly default: "";
1806
+ };
1647
1807
  };
1648
1808
 
1649
1809
  declare type GeneralTimeSwitchWheelUnit = 'hourMinute' | 'minuteSecond';
@@ -1740,6 +1900,31 @@ export declare type HilinkSetDeviceInfoWithoutCallbackFn = (deviceId: string, pa
1740
1900
  /** 与宿主约定:`setTitleVisible(visible, callbackName)`,`true` 显示原生标题栏,`false` 隐藏。 */
1741
1901
  export declare type HilinkSetTitleVisibleFn = (visible: boolean, callbackName: string) => void;
1742
1902
 
1903
+ export declare type InfoTriggerExpose = {
1904
+ /** 关闭说明浮层(程序化场景;常规交互由组件内 dismiss 自动处理) */
1905
+ close: () => void;
1906
+ /** 根节点(可用于 useCardFitText 的 observe / titleRow) */
1907
+ rootEl: HTMLElement | null;
1908
+ };
1909
+
1910
+ declare type InfoTriggerInfoContent = string;
1911
+
1912
+ export declare type InfoTriggerProps = ExtractPropTypes<typeof infoTriggerProps>;
1913
+
1914
+ /** Bool 系说明入口契约:后续组件接入说明信息时复用本 props 形状 */
1915
+ declare const infoTriggerProps: {
1916
+ /** 是否展示说明入口;为 true 时始终渲染图标 */
1917
+ readonly showInfo: {
1918
+ readonly type: BooleanConstructor;
1919
+ readonly default: false;
1920
+ };
1921
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
1922
+ readonly infoContent: {
1923
+ readonly type: PropType<InfoTriggerInfoContent>;
1924
+ readonly default: "";
1925
+ };
1926
+ };
1927
+
1743
1928
  /**
1744
1929
  * boolGate:当前值是否落在 enable 允许集合内。
1745
1930
  * 未命中时组件应局部只读(禁止切换),并保持当前视觉态(勿走 disable 强制关)。
@@ -2026,6 +2211,16 @@ declare const pageRouterProps: {
2026
2211
  readonly type: StringConstructor;
2027
2212
  readonly default: "";
2028
2213
  };
2214
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
2215
+ readonly showInfo: {
2216
+ readonly type: BooleanConstructor;
2217
+ readonly default: false;
2218
+ };
2219
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
2220
+ readonly infoContent: {
2221
+ readonly type: StringConstructor;
2222
+ readonly default: "";
2223
+ };
2029
2224
  /** 可选;2 或 4 项 URL,后缀 on/off/DarkOn/DarkOff(2 项时为 on+DarkOn 或 off+DarkOff,缺对镜像补齐);全 `custom` 或未配置时用内置 ic_enum 图标 */
2030
2225
  readonly icon: {
2031
2226
  readonly type: PropType<string[]>;
@@ -2416,6 +2611,16 @@ declare const subpageBoolItemProps: {
2416
2611
  type: PropType<ProductSubscribe[]>;
2417
2612
  default: () => never[];
2418
2613
  };
2614
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
2615
+ showInfo: {
2616
+ type: BooleanConstructor;
2617
+ default: boolean;
2618
+ };
2619
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
2620
+ infoContent: {
2621
+ type: StringConstructor;
2622
+ default: string;
2623
+ };
2419
2624
  /** 切换到开启态时是否弹出确认弹窗 */
2420
2625
  enableOpenDialog: {
2421
2626
  type: BooleanConstructor;
@@ -2497,6 +2702,16 @@ declare const subpageEnumItemProps: {
2497
2702
  type: PropType<Array<string | number>>;
2498
2703
  default: () => never[];
2499
2704
  };
2705
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
2706
+ showInfo: {
2707
+ type: BooleanConstructor;
2708
+ default: boolean;
2709
+ };
2710
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
2711
+ infoContent: {
2712
+ type: StringConstructor;
2713
+ default: string;
2714
+ };
2500
2715
  };
2501
2716
 
2502
2717
  export declare type SubPageGroupProps = ExtractPropTypes<typeof subPageGroupProps>;
@@ -2572,6 +2787,16 @@ declare const subpageNumberItemProps: {
2572
2787
  type: StringConstructor;
2573
2788
  default: string;
2574
2789
  };
2790
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
2791
+ showInfo: {
2792
+ type: BooleanConstructor;
2793
+ default: boolean;
2794
+ };
2795
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
2796
+ infoContent: {
2797
+ type: StringConstructor;
2798
+ default: string;
2799
+ };
2575
2800
  };
2576
2801
 
2577
2802
  export declare type TableLampFadeTimeCardSize = 'full' | 'half';
@@ -2735,7 +2960,18 @@ export { TimerFunctionOption as TimerNewFunctionOption }
2735
2960
  export declare type TimerNewProps = ExtractPropTypes<typeof timerNewProps>;
2736
2961
 
2737
2962
  /** UpTimerNew 无尺寸属性,卡片固定全宽 */
2738
- declare const timerNewProps: {};
2963
+ declare const timerNewProps: {
2964
+ /** 是否在卡片顶栏标题旁展示说明入口;为 true 时始终渲染图标 */
2965
+ showInfo: {
2966
+ type: BooleanConstructor;
2967
+ default: boolean;
2968
+ };
2969
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
2970
+ infoContent: {
2971
+ type: StringConstructor;
2972
+ default: string;
2973
+ };
2974
+ };
2739
2975
 
2740
2976
  export declare type TimerProps = ExtractPropTypes<typeof timerProps>;
2741
2977
 
@@ -2744,6 +2980,16 @@ declare const timerProps: {
2744
2980
  type: PropType<TimerCardSize>;
2745
2981
  default: string;
2746
2982
  };
2983
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
2984
+ showInfo: {
2985
+ type: BooleanConstructor;
2986
+ default: boolean;
2987
+ };
2988
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
2989
+ infoContent: {
2990
+ type: StringConstructor;
2991
+ default: string;
2992
+ };
2747
2993
  };
2748
2994
 
2749
2995
  declare interface TimerRecord {
@@ -3026,9 +3272,10 @@ export declare const UpBoolIconCard: {
3026
3272
  default: undefined;
3027
3273
  };
3028
3274
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
3029
- subscribes: ProductSubscribe[];
3030
3275
  showInfo: boolean;
3031
3276
  infoContent: string;
3277
+ icon: string[];
3278
+ subscribes: ProductSubscribe[];
3032
3279
  enableOpenDialog: boolean;
3033
3280
  openDialogShowTitle: boolean;
3034
3281
  openDialogTitle: string;
@@ -3040,13 +3287,91 @@ export declare const UpBoolIconCard: {
3040
3287
  cardSize: "full" | "half";
3041
3288
  singleTapDispatch: boolean;
3042
3289
  singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
3043
- icon: string[];
3044
3290
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
3045
- headRef: HTMLDivElement;
3046
- titleRowRef: HTMLDivElement;
3047
- titleRef: HTMLDivElement;
3291
+ infoTriggerRef: ({
3292
+ $: ComponentInternalInstance;
3293
+ $data: {};
3294
+ $props: Partial<{
3295
+ readonly showInfo: boolean;
3296
+ readonly infoContent: string;
3297
+ }> & Omit<{
3298
+ readonly showInfo: boolean;
3299
+ readonly infoContent: string;
3300
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
3301
+ $attrs: {
3302
+ [x: string]: unknown;
3303
+ };
3304
+ $refs: {
3305
+ [x: string]: unknown;
3306
+ } & {
3307
+ rootElRef: HTMLDivElement;
3048
3308
  infoTriggerRef: HTMLButtonElement;
3049
3309
  infoTooltipRef: HTMLDivElement;
3310
+ };
3311
+ $slots: Readonly<{
3312
+ [name: string]: Slot<any> | undefined;
3313
+ }>;
3314
+ $root: ComponentPublicInstance | null;
3315
+ $parent: ComponentPublicInstance | null;
3316
+ $host: Element | null;
3317
+ $emit: (event: string, ...args: any[]) => void;
3318
+ $el: HTMLDivElement;
3319
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
3320
+ readonly showInfo: {
3321
+ readonly type: BooleanConstructor;
3322
+ readonly default: false;
3323
+ };
3324
+ readonly infoContent: {
3325
+ readonly type: PropType<InfoTriggerInfoContent>;
3326
+ readonly default: "";
3327
+ };
3328
+ }>> & Readonly<{}>, {
3329
+ close: () => void;
3330
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
3331
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
3332
+ readonly showInfo: boolean;
3333
+ readonly infoContent: string;
3334
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
3335
+ beforeCreate?: (() => void) | (() => void)[];
3336
+ created?: (() => void) | (() => void)[];
3337
+ beforeMount?: (() => void) | (() => void)[];
3338
+ mounted?: (() => void) | (() => void)[];
3339
+ beforeUpdate?: (() => void) | (() => void)[];
3340
+ updated?: (() => void) | (() => void)[];
3341
+ activated?: (() => void) | (() => void)[];
3342
+ deactivated?: (() => void) | (() => void)[];
3343
+ beforeDestroy?: (() => void) | (() => void)[];
3344
+ beforeUnmount?: (() => void) | (() => void)[];
3345
+ destroyed?: (() => void) | (() => void)[];
3346
+ unmounted?: (() => void) | (() => void)[];
3347
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3348
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3349
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3350
+ };
3351
+ $forceUpdate: () => void;
3352
+ $nextTick: nextTick;
3353
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
3354
+ } & Readonly<{
3355
+ readonly showInfo: boolean;
3356
+ readonly infoContent: string;
3357
+ }> & Omit<Readonly<ExtractPropTypes< {
3358
+ readonly showInfo: {
3359
+ readonly type: BooleanConstructor;
3360
+ readonly default: false;
3361
+ };
3362
+ readonly infoContent: {
3363
+ readonly type: PropType<InfoTriggerInfoContent>;
3364
+ readonly default: "";
3365
+ };
3366
+ }>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
3367
+ close: () => void;
3368
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
3369
+ }> & {} & ComponentCustomProperties & {} & {
3370
+ $slots: {
3371
+ default?(_: {}): any;
3372
+ };
3373
+ }) | null;
3374
+ titleRef: HTMLDivElement;
3050
3375
  statusRef: HTMLDivElement;
3051
3376
  }, HTMLDivElement, ComponentProvideOptions, {
3052
3377
  P: {};
@@ -3117,9 +3442,10 @@ export declare const UpBoolIconCard: {
3117
3442
  default: undefined;
3118
3443
  };
3119
3444
  }>> & Readonly<{}>, {}, {}, {}, {}, {
3120
- subscribes: ProductSubscribe[];
3121
3445
  showInfo: boolean;
3122
3446
  infoContent: string;
3447
+ icon: string[];
3448
+ subscribes: ProductSubscribe[];
3123
3449
  enableOpenDialog: boolean;
3124
3450
  openDialogShowTitle: boolean;
3125
3451
  openDialogTitle: string;
@@ -3131,7 +3457,6 @@ export declare const UpBoolIconCard: {
3131
3457
  cardSize: "full" | "half";
3132
3458
  singleTapDispatch: boolean;
3133
3459
  singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
3134
- icon: string[];
3135
3460
  }>;
3136
3461
  __isFragment?: never;
3137
3462
  __isTeleport?: never;
@@ -3198,9 +3523,10 @@ type: PropType<string[]>;
3198
3523
  default: undefined;
3199
3524
  };
3200
3525
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
3201
- subscribes: ProductSubscribe[];
3202
3526
  showInfo: boolean;
3203
3527
  infoContent: string;
3528
+ icon: string[];
3529
+ subscribes: ProductSubscribe[];
3204
3530
  enableOpenDialog: boolean;
3205
3531
  openDialogShowTitle: boolean;
3206
3532
  openDialogTitle: string;
@@ -3212,7 +3538,6 @@ closeDialogContent: string;
3212
3538
  cardSize: "full" | "half";
3213
3539
  singleTapDispatch: boolean;
3214
3540
  singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
3215
- icon: string[];
3216
3541
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
3217
3542
 
3218
3543
  export declare const UpBoolPanelCard: {
@@ -3262,9 +3587,9 @@ export declare const UpBoolPanelCard: {
3262
3587
  default: string;
3263
3588
  };
3264
3589
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
3265
- subscribes: ProductSubscribe[];
3266
3590
  showInfo: boolean;
3267
3591
  infoContent: string;
3592
+ subscribes: ProductSubscribe[];
3268
3593
  enableOpenDialog: boolean;
3269
3594
  openDialogShowTitle: boolean;
3270
3595
  openDialogTitle: string;
@@ -3274,11 +3599,90 @@ export declare const UpBoolPanelCard: {
3274
3599
  closeDialogTitle: string;
3275
3600
  closeDialogContent: string;
3276
3601
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
3277
- headRef: HTMLDivElement;
3278
- titleRowRef: HTMLDivElement;
3279
- titleRef: HTMLDivElement;
3602
+ infoTriggerRef: ({
3603
+ $: ComponentInternalInstance;
3604
+ $data: {};
3605
+ $props: Partial<{
3606
+ readonly showInfo: boolean;
3607
+ readonly infoContent: string;
3608
+ }> & Omit<{
3609
+ readonly showInfo: boolean;
3610
+ readonly infoContent: string;
3611
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
3612
+ $attrs: {
3613
+ [x: string]: unknown;
3614
+ };
3615
+ $refs: {
3616
+ [x: string]: unknown;
3617
+ } & {
3618
+ rootElRef: HTMLDivElement;
3280
3619
  infoTriggerRef: HTMLButtonElement;
3281
3620
  infoTooltipRef: HTMLDivElement;
3621
+ };
3622
+ $slots: Readonly<{
3623
+ [name: string]: Slot<any> | undefined;
3624
+ }>;
3625
+ $root: ComponentPublicInstance | null;
3626
+ $parent: ComponentPublicInstance | null;
3627
+ $host: Element | null;
3628
+ $emit: (event: string, ...args: any[]) => void;
3629
+ $el: HTMLDivElement;
3630
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
3631
+ readonly showInfo: {
3632
+ readonly type: BooleanConstructor;
3633
+ readonly default: false;
3634
+ };
3635
+ readonly infoContent: {
3636
+ readonly type: PropType<InfoTriggerInfoContent>;
3637
+ readonly default: "";
3638
+ };
3639
+ }>> & Readonly<{}>, {
3640
+ close: () => void;
3641
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
3642
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
3643
+ readonly showInfo: boolean;
3644
+ readonly infoContent: string;
3645
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
3646
+ beforeCreate?: (() => void) | (() => void)[];
3647
+ created?: (() => void) | (() => void)[];
3648
+ beforeMount?: (() => void) | (() => void)[];
3649
+ mounted?: (() => void) | (() => void)[];
3650
+ beforeUpdate?: (() => void) | (() => void)[];
3651
+ updated?: (() => void) | (() => void)[];
3652
+ activated?: (() => void) | (() => void)[];
3653
+ deactivated?: (() => void) | (() => void)[];
3654
+ beforeDestroy?: (() => void) | (() => void)[];
3655
+ beforeUnmount?: (() => void) | (() => void)[];
3656
+ destroyed?: (() => void) | (() => void)[];
3657
+ unmounted?: (() => void) | (() => void)[];
3658
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3659
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3660
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3661
+ };
3662
+ $forceUpdate: () => void;
3663
+ $nextTick: nextTick;
3664
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
3665
+ } & Readonly<{
3666
+ readonly showInfo: boolean;
3667
+ readonly infoContent: string;
3668
+ }> & Omit<Readonly<ExtractPropTypes< {
3669
+ readonly showInfo: {
3670
+ readonly type: BooleanConstructor;
3671
+ readonly default: false;
3672
+ };
3673
+ readonly infoContent: {
3674
+ readonly type: PropType<InfoTriggerInfoContent>;
3675
+ readonly default: "";
3676
+ };
3677
+ }>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
3678
+ close: () => void;
3679
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
3680
+ }> & {} & ComponentCustomProperties & {} & {
3681
+ $slots: {
3682
+ default?(_: {}): any;
3683
+ };
3684
+ }) | null;
3685
+ titleRef: HTMLDivElement;
3282
3686
  statusRef: HTMLDivElement;
3283
3687
  dropzoneRef: HTMLDivElement;
3284
3688
  }, HTMLDivElement, ComponentProvideOptions, {
@@ -3334,9 +3738,9 @@ export declare const UpBoolPanelCard: {
3334
3738
  default: string;
3335
3739
  };
3336
3740
  }>> & Readonly<{}>, {}, {}, {}, {}, {
3337
- subscribes: ProductSubscribe[];
3338
3741
  showInfo: boolean;
3339
3742
  infoContent: string;
3743
+ subscribes: ProductSubscribe[];
3340
3744
  enableOpenDialog: boolean;
3341
3745
  openDialogShowTitle: boolean;
3342
3746
  openDialogTitle: string;
@@ -3395,9 +3799,9 @@ type: PropType<BoolPanelCardLocaleText>;
3395
3799
  default: string;
3396
3800
  };
3397
3801
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
3398
- subscribes: ProductSubscribe[];
3399
3802
  showInfo: boolean;
3400
3803
  infoContent: string;
3804
+ subscribes: ProductSubscribe[];
3401
3805
  enableOpenDialog: boolean;
3402
3806
  openDialogShowTitle: boolean;
3403
3807
  openDialogTitle: string;
@@ -3475,9 +3879,10 @@ export declare const UpBoolSwitchCard: {
3475
3879
  default: undefined;
3476
3880
  };
3477
3881
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
3478
- subscribes: ProductSubscribe[];
3479
3882
  showInfo: boolean;
3480
3883
  infoContent: string;
3884
+ icon: string[];
3885
+ subscribes: ProductSubscribe[];
3481
3886
  enableOpenDialog: boolean;
3482
3887
  openDialogShowTitle: boolean;
3483
3888
  openDialogTitle: string;
@@ -3489,13 +3894,91 @@ export declare const UpBoolSwitchCard: {
3489
3894
  cardSize: "full" | "half";
3490
3895
  singleTapDispatch: boolean;
3491
3896
  singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
3492
- icon: string[];
3493
3897
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
3494
- headRef: HTMLDivElement;
3495
- titleRowRef: HTMLDivElement;
3496
- titleRef: HTMLDivElement;
3898
+ infoTriggerRef: ({
3899
+ $: ComponentInternalInstance;
3900
+ $data: {};
3901
+ $props: Partial<{
3902
+ readonly showInfo: boolean;
3903
+ readonly infoContent: string;
3904
+ }> & Omit<{
3905
+ readonly showInfo: boolean;
3906
+ readonly infoContent: string;
3907
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
3908
+ $attrs: {
3909
+ [x: string]: unknown;
3910
+ };
3911
+ $refs: {
3912
+ [x: string]: unknown;
3913
+ } & {
3914
+ rootElRef: HTMLDivElement;
3497
3915
  infoTriggerRef: HTMLButtonElement;
3498
3916
  infoTooltipRef: HTMLDivElement;
3917
+ };
3918
+ $slots: Readonly<{
3919
+ [name: string]: Slot<any> | undefined;
3920
+ }>;
3921
+ $root: ComponentPublicInstance | null;
3922
+ $parent: ComponentPublicInstance | null;
3923
+ $host: Element | null;
3924
+ $emit: (event: string, ...args: any[]) => void;
3925
+ $el: HTMLDivElement;
3926
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
3927
+ readonly showInfo: {
3928
+ readonly type: BooleanConstructor;
3929
+ readonly default: false;
3930
+ };
3931
+ readonly infoContent: {
3932
+ readonly type: PropType<InfoTriggerInfoContent>;
3933
+ readonly default: "";
3934
+ };
3935
+ }>> & Readonly<{}>, {
3936
+ close: () => void;
3937
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
3938
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
3939
+ readonly showInfo: boolean;
3940
+ readonly infoContent: string;
3941
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
3942
+ beforeCreate?: (() => void) | (() => void)[];
3943
+ created?: (() => void) | (() => void)[];
3944
+ beforeMount?: (() => void) | (() => void)[];
3945
+ mounted?: (() => void) | (() => void)[];
3946
+ beforeUpdate?: (() => void) | (() => void)[];
3947
+ updated?: (() => void) | (() => void)[];
3948
+ activated?: (() => void) | (() => void)[];
3949
+ deactivated?: (() => void) | (() => void)[];
3950
+ beforeDestroy?: (() => void) | (() => void)[];
3951
+ beforeUnmount?: (() => void) | (() => void)[];
3952
+ destroyed?: (() => void) | (() => void)[];
3953
+ unmounted?: (() => void) | (() => void)[];
3954
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3955
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3956
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3957
+ };
3958
+ $forceUpdate: () => void;
3959
+ $nextTick: nextTick;
3960
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
3961
+ } & Readonly<{
3962
+ readonly showInfo: boolean;
3963
+ readonly infoContent: string;
3964
+ }> & Omit<Readonly<ExtractPropTypes< {
3965
+ readonly showInfo: {
3966
+ readonly type: BooleanConstructor;
3967
+ readonly default: false;
3968
+ };
3969
+ readonly infoContent: {
3970
+ readonly type: PropType<InfoTriggerInfoContent>;
3971
+ readonly default: "";
3972
+ };
3973
+ }>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
3974
+ close: () => void;
3975
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
3976
+ }> & {} & ComponentCustomProperties & {} & {
3977
+ $slots: {
3978
+ default?(_: {}): any;
3979
+ };
3980
+ }) | null;
3981
+ titleRef: HTMLDivElement;
3499
3982
  statusRef: HTMLDivElement;
3500
3983
  }, HTMLDivElement, ComponentProvideOptions, {
3501
3984
  P: {};
@@ -3566,9 +4049,10 @@ export declare const UpBoolSwitchCard: {
3566
4049
  default: undefined;
3567
4050
  };
3568
4051
  }>> & Readonly<{}>, {}, {}, {}, {}, {
3569
- subscribes: ProductSubscribe[];
3570
4052
  showInfo: boolean;
3571
4053
  infoContent: string;
4054
+ icon: string[];
4055
+ subscribes: ProductSubscribe[];
3572
4056
  enableOpenDialog: boolean;
3573
4057
  openDialogShowTitle: boolean;
3574
4058
  openDialogTitle: string;
@@ -3580,7 +4064,6 @@ export declare const UpBoolSwitchCard: {
3580
4064
  cardSize: "full" | "half";
3581
4065
  singleTapDispatch: boolean;
3582
4066
  singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
3583
- icon: string[];
3584
4067
  }>;
3585
4068
  __isFragment?: never;
3586
4069
  __isTeleport?: never;
@@ -3647,9 +4130,10 @@ type: PropType<string[]>;
3647
4130
  default: undefined;
3648
4131
  };
3649
4132
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
3650
- subscribes: ProductSubscribe[];
3651
4133
  showInfo: boolean;
3652
4134
  infoContent: string;
4135
+ icon: string[];
4136
+ subscribes: ProductSubscribe[];
3653
4137
  enableOpenDialog: boolean;
3654
4138
  openDialogShowTitle: boolean;
3655
4139
  openDialogTitle: string;
@@ -3661,7 +4145,6 @@ closeDialogContent: string;
3661
4145
  cardSize: "full" | "half";
3662
4146
  singleTapDispatch: boolean;
3663
4147
  singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
3664
- icon: string[];
3665
4148
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
3666
4149
 
3667
4150
  export declare const UpCards: {
@@ -4083,10 +4566,20 @@ export declare const UpDelay: {
4083
4566
  readonly type: PropType<DelayCardSize>;
4084
4567
  readonly default: "half";
4085
4568
  };
4086
- }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
4087
- readonly subscribes: ProductSubscribe[];
4088
- readonly cardSize: DelayCardSize;
4089
- readonly recordSettingTime: boolean;
4569
+ readonly showInfo: {
4570
+ readonly type: BooleanConstructor;
4571
+ readonly default: false;
4572
+ };
4573
+ readonly infoContent: {
4574
+ readonly type: StringConstructor;
4575
+ readonly default: "";
4576
+ };
4577
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
4578
+ readonly showInfo: boolean;
4579
+ readonly infoContent: string;
4580
+ readonly subscribes: ProductSubscribe[];
4581
+ readonly cardSize: DelayCardSize;
4582
+ readonly recordSettingTime: boolean;
4090
4583
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
4091
4584
  P: {};
4092
4585
  B: {};
@@ -4107,7 +4600,17 @@ export declare const UpDelay: {
4107
4600
  readonly type: PropType<DelayCardSize>;
4108
4601
  readonly default: "half";
4109
4602
  };
4603
+ readonly showInfo: {
4604
+ readonly type: BooleanConstructor;
4605
+ readonly default: false;
4606
+ };
4607
+ readonly infoContent: {
4608
+ readonly type: StringConstructor;
4609
+ readonly default: "";
4610
+ };
4110
4611
  }>> & Readonly<{}>, {}, {}, {}, {}, {
4612
+ readonly showInfo: boolean;
4613
+ readonly infoContent: string;
4111
4614
  readonly subscribes: ProductSubscribe[];
4112
4615
  readonly cardSize: DelayCardSize;
4113
4616
  readonly recordSettingTime: boolean;
@@ -4128,7 +4631,17 @@ readonly cardSize: {
4128
4631
  readonly type: PropType<DelayCardSize>;
4129
4632
  readonly default: "half";
4130
4633
  };
4634
+ readonly showInfo: {
4635
+ readonly type: BooleanConstructor;
4636
+ readonly default: false;
4637
+ };
4638
+ readonly infoContent: {
4639
+ readonly type: StringConstructor;
4640
+ readonly default: "";
4641
+ };
4131
4642
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
4643
+ readonly showInfo: boolean;
4644
+ readonly infoContent: string;
4132
4645
  readonly subscribes: ProductSubscribe[];
4133
4646
  readonly cardSize: DelayCardSize;
4134
4647
  readonly recordSettingTime: boolean;
@@ -4173,9 +4686,9 @@ export declare const UpEnumStatus: {
4173
4686
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4174
4687
  "expanded-change": (expanded: boolean) => any;
4175
4688
  }, PublicProps, {
4689
+ icon: string[];
4176
4690
  subscribes: ProductSubscribe[];
4177
4691
  cardSize: EnumStatusCardSize;
4178
- icon: string[];
4179
4692
  enumStatusConfigs: EnumStatusConfig[];
4180
4693
  showReset: boolean;
4181
4694
  bindData: ProductSubscribe[];
@@ -4229,9 +4742,9 @@ export declare const UpEnumStatus: {
4229
4742
  }>> & Readonly<{
4230
4743
  "onExpanded-change"?: ((expanded: boolean) => any) | undefined;
4231
4744
  }>, {}, {}, {}, {}, {
4745
+ icon: string[];
4232
4746
  subscribes: ProductSubscribe[];
4233
4747
  cardSize: EnumStatusCardSize;
4234
- icon: string[];
4235
4748
  enumStatusConfigs: EnumStatusConfig[];
4236
4749
  showReset: boolean;
4237
4750
  bindData: ProductSubscribe[];
@@ -4279,9 +4792,9 @@ default: undefined;
4279
4792
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4280
4793
  "expanded-change": (expanded: boolean) => any;
4281
4794
  }, string, {
4795
+ icon: string[];
4282
4796
  subscribes: ProductSubscribe[];
4283
4797
  cardSize: EnumStatusCardSize;
4284
- icon: string[];
4285
4798
  enumStatusConfigs: EnumStatusConfig[];
4286
4799
  showReset: boolean;
4287
4800
  bindData: ProductSubscribe[];
@@ -4435,7 +4948,17 @@ export declare const UpGeneralCombinedDelivery: {
4435
4948
  type: PropType<GeneralCombinedDeliveryModeOptionConfig[]>;
4436
4949
  default: () => never[];
4437
4950
  };
4951
+ showInfo: {
4952
+ type: BooleanConstructor;
4953
+ default: boolean;
4954
+ };
4955
+ infoContent: {
4956
+ type: StringConstructor;
4957
+ default: string;
4958
+ };
4438
4959
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
4960
+ showInfo: boolean;
4961
+ infoContent: string;
4439
4962
  subscribes: ProductSubscribe[];
4440
4963
  showTitle: boolean;
4441
4964
  modeOptionConfigs: GeneralCombinedDeliveryModeOptionConfig[];
@@ -4459,7 +4982,17 @@ export declare const UpGeneralCombinedDelivery: {
4459
4982
  type: PropType<GeneralCombinedDeliveryModeOptionConfig[]>;
4460
4983
  default: () => never[];
4461
4984
  };
4985
+ showInfo: {
4986
+ type: BooleanConstructor;
4987
+ default: boolean;
4988
+ };
4989
+ infoContent: {
4990
+ type: StringConstructor;
4991
+ default: string;
4992
+ };
4462
4993
  }>> & Readonly<{}>, {}, {}, {}, {}, {
4994
+ showInfo: boolean;
4995
+ infoContent: string;
4463
4996
  subscribes: ProductSubscribe[];
4464
4997
  showTitle: boolean;
4465
4998
  modeOptionConfigs: GeneralCombinedDeliveryModeOptionConfig[];
@@ -4480,7 +5013,17 @@ modeOptionConfigs: {
4480
5013
  type: PropType<GeneralCombinedDeliveryModeOptionConfig[]>;
4481
5014
  default: () => never[];
4482
5015
  };
5016
+ showInfo: {
5017
+ type: BooleanConstructor;
5018
+ default: boolean;
5019
+ };
5020
+ infoContent: {
5021
+ type: StringConstructor;
5022
+ default: string;
5023
+ };
4483
5024
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
5025
+ showInfo: boolean;
5026
+ infoContent: string;
4484
5027
  subscribes: ProductSubscribe[];
4485
5028
  showTitle: boolean;
4486
5029
  modeOptionConfigs: GeneralCombinedDeliveryModeOptionConfig[];
@@ -4670,7 +5213,17 @@ export declare const UpGeneralEnumControl: {
4670
5213
  type: PropType<GeneralEnumControlIconStyle>;
4671
5214
  default: string;
4672
5215
  };
5216
+ showInfo: {
5217
+ type: BooleanConstructor;
5218
+ default: boolean;
5219
+ };
5220
+ infoContent: {
5221
+ type: StringConstructor;
5222
+ default: string;
5223
+ };
4673
5224
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
5225
+ showInfo: boolean;
5226
+ infoContent: string;
4674
5227
  subscribes: ProductSubscribe[];
4675
5228
  status1EnumVal: string | number;
4676
5229
  status2EnumVal: string | number;
@@ -4704,7 +5257,17 @@ export declare const UpGeneralEnumControl: {
4704
5257
  type: PropType<GeneralEnumControlIconStyle>;
4705
5258
  default: string;
4706
5259
  };
5260
+ showInfo: {
5261
+ type: BooleanConstructor;
5262
+ default: boolean;
5263
+ };
5264
+ infoContent: {
5265
+ type: StringConstructor;
5266
+ default: string;
5267
+ };
4707
5268
  }>> & Readonly<{}>, {}, {}, {}, {}, {
5269
+ showInfo: boolean;
5270
+ infoContent: string;
4708
5271
  subscribes: ProductSubscribe[];
4709
5272
  status1EnumVal: string | number;
4710
5273
  status2EnumVal: string | number;
@@ -4735,7 +5298,17 @@ iconStyle: {
4735
5298
  type: PropType<GeneralEnumControlIconStyle>;
4736
5299
  default: string;
4737
5300
  };
5301
+ showInfo: {
5302
+ type: BooleanConstructor;
5303
+ default: boolean;
5304
+ };
5305
+ infoContent: {
5306
+ type: StringConstructor;
5307
+ default: string;
5308
+ };
4738
5309
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
5310
+ showInfo: boolean;
5311
+ infoContent: string;
4739
5312
  subscribes: ProductSubscribe[];
4740
5313
  status1EnumVal: string | number;
4741
5314
  status2EnumVal: string | number;
@@ -4761,13 +5334,105 @@ export declare const UpGeneralEnumDialogCard: {
4761
5334
  type: PropType<string[]>;
4762
5335
  default: undefined;
4763
5336
  };
5337
+ showInfo: {
5338
+ type: BooleanConstructor;
5339
+ default: boolean;
5340
+ };
5341
+ infoContent: {
5342
+ type: StringConstructor;
5343
+ default: string;
5344
+ };
4764
5345
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
5346
+ showInfo: boolean;
5347
+ infoContent: string;
5348
+ icon: string[];
4765
5349
  subscribes: ProductSubscribe[];
4766
5350
  cardSize: GeneralEnumDialogCardSize;
4767
- icon: string[];
4768
5351
  visibleEnumValues: (string | number)[];
4769
5352
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
4770
- textRef: HTMLDivElement;
5353
+ infoTriggerRef: ({
5354
+ $: ComponentInternalInstance;
5355
+ $data: {};
5356
+ $props: Partial<{
5357
+ readonly showInfo: boolean;
5358
+ readonly infoContent: string;
5359
+ }> & Omit<{
5360
+ readonly showInfo: boolean;
5361
+ readonly infoContent: string;
5362
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
5363
+ $attrs: {
5364
+ [x: string]: unknown;
5365
+ };
5366
+ $refs: {
5367
+ [x: string]: unknown;
5368
+ } & {
5369
+ rootElRef: HTMLDivElement;
5370
+ infoTriggerRef: HTMLButtonElement;
5371
+ infoTooltipRef: HTMLDivElement;
5372
+ };
5373
+ $slots: Readonly<{
5374
+ [name: string]: Slot<any> | undefined;
5375
+ }>;
5376
+ $root: ComponentPublicInstance | null;
5377
+ $parent: ComponentPublicInstance | null;
5378
+ $host: Element | null;
5379
+ $emit: (event: string, ...args: any[]) => void;
5380
+ $el: HTMLDivElement;
5381
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
5382
+ readonly showInfo: {
5383
+ readonly type: BooleanConstructor;
5384
+ readonly default: false;
5385
+ };
5386
+ readonly infoContent: {
5387
+ readonly type: PropType<InfoTriggerInfoContent>;
5388
+ readonly default: "";
5389
+ };
5390
+ }>> & Readonly<{}>, {
5391
+ close: () => void;
5392
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
5393
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
5394
+ readonly showInfo: boolean;
5395
+ readonly infoContent: string;
5396
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
5397
+ beforeCreate?: (() => void) | (() => void)[];
5398
+ created?: (() => void) | (() => void)[];
5399
+ beforeMount?: (() => void) | (() => void)[];
5400
+ mounted?: (() => void) | (() => void)[];
5401
+ beforeUpdate?: (() => void) | (() => void)[];
5402
+ updated?: (() => void) | (() => void)[];
5403
+ activated?: (() => void) | (() => void)[];
5404
+ deactivated?: (() => void) | (() => void)[];
5405
+ beforeDestroy?: (() => void) | (() => void)[];
5406
+ beforeUnmount?: (() => void) | (() => void)[];
5407
+ destroyed?: (() => void) | (() => void)[];
5408
+ unmounted?: (() => void) | (() => void)[];
5409
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
5410
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
5411
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
5412
+ };
5413
+ $forceUpdate: () => void;
5414
+ $nextTick: nextTick;
5415
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
5416
+ } & Readonly<{
5417
+ readonly showInfo: boolean;
5418
+ readonly infoContent: string;
5419
+ }> & Omit<Readonly<ExtractPropTypes< {
5420
+ readonly showInfo: {
5421
+ readonly type: BooleanConstructor;
5422
+ readonly default: false;
5423
+ };
5424
+ readonly infoContent: {
5425
+ readonly type: PropType<InfoTriggerInfoContent>;
5426
+ readonly default: "";
5427
+ };
5428
+ }>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
5429
+ close: () => void;
5430
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
5431
+ }> & {} & ComponentCustomProperties & {} & {
5432
+ $slots: {
5433
+ default?(_: {}): any;
5434
+ };
5435
+ }) | null;
4771
5436
  titleRef: HTMLDivElement;
4772
5437
  subtitleRef: HTMLDivElement;
4773
5438
  }, HTMLDivElement, ComponentProvideOptions, {
@@ -4794,10 +5459,20 @@ export declare const UpGeneralEnumDialogCard: {
4794
5459
  type: PropType<string[]>;
4795
5460
  default: undefined;
4796
5461
  };
5462
+ showInfo: {
5463
+ type: BooleanConstructor;
5464
+ default: boolean;
5465
+ };
5466
+ infoContent: {
5467
+ type: StringConstructor;
5468
+ default: string;
5469
+ };
4797
5470
  }>> & Readonly<{}>, {}, {}, {}, {}, {
5471
+ showInfo: boolean;
5472
+ infoContent: string;
5473
+ icon: string[];
4798
5474
  subscribes: ProductSubscribe[];
4799
5475
  cardSize: GeneralEnumDialogCardSize;
4800
- icon: string[];
4801
5476
  visibleEnumValues: (string | number)[];
4802
5477
  }>;
4803
5478
  __isFragment?: never;
@@ -4820,10 +5495,20 @@ icon: {
4820
5495
  type: PropType<string[]>;
4821
5496
  default: undefined;
4822
5497
  };
5498
+ showInfo: {
5499
+ type: BooleanConstructor;
5500
+ default: boolean;
5501
+ };
5502
+ infoContent: {
5503
+ type: StringConstructor;
5504
+ default: string;
5505
+ };
4823
5506
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
5507
+ showInfo: boolean;
5508
+ infoContent: string;
5509
+ icon: string[];
4824
5510
  subscribes: ProductSubscribe[];
4825
5511
  cardSize: GeneralEnumDialogCardSize;
4826
- icon: string[];
4827
5512
  visibleEnumValues: (string | number)[];
4828
5513
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
4829
5514
 
@@ -4849,16 +5534,108 @@ export declare const UpGeneralEnumDroplistCard: {
4849
5534
  type: PropType<string[]>;
4850
5535
  default: undefined;
4851
5536
  };
5537
+ showInfo: {
5538
+ type: BooleanConstructor;
5539
+ default: boolean;
5540
+ };
5541
+ infoContent: {
5542
+ type: StringConstructor;
5543
+ default: string;
5544
+ };
4852
5545
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
5546
+ showInfo: boolean;
5547
+ infoContent: string;
5548
+ icon: string[];
4853
5549
  subscribes: ProductSubscribe[];
4854
5550
  cardSize: GeneralEnumDroplistCardSize;
4855
- icon: string[];
4856
5551
  visibleEnumValues: (string | number)[];
4857
5552
  hasDefaultValue: boolean;
4858
5553
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
4859
5554
  rootRef: HTMLDivElement;
4860
5555
  dropdownRef: HTMLDivElement;
4861
- textRef: HTMLDivElement;
5556
+ infoTriggerRef: ({
5557
+ $: ComponentInternalInstance;
5558
+ $data: {};
5559
+ $props: Partial<{
5560
+ readonly showInfo: boolean;
5561
+ readonly infoContent: string;
5562
+ }> & Omit<{
5563
+ readonly showInfo: boolean;
5564
+ readonly infoContent: string;
5565
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
5566
+ $attrs: {
5567
+ [x: string]: unknown;
5568
+ };
5569
+ $refs: {
5570
+ [x: string]: unknown;
5571
+ } & {
5572
+ rootElRef: HTMLDivElement;
5573
+ infoTriggerRef: HTMLButtonElement;
5574
+ infoTooltipRef: HTMLDivElement;
5575
+ };
5576
+ $slots: Readonly<{
5577
+ [name: string]: Slot<any> | undefined;
5578
+ }>;
5579
+ $root: ComponentPublicInstance | null;
5580
+ $parent: ComponentPublicInstance | null;
5581
+ $host: Element | null;
5582
+ $emit: (event: string, ...args: any[]) => void;
5583
+ $el: HTMLDivElement;
5584
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
5585
+ readonly showInfo: {
5586
+ readonly type: BooleanConstructor;
5587
+ readonly default: false;
5588
+ };
5589
+ readonly infoContent: {
5590
+ readonly type: PropType<InfoTriggerInfoContent>;
5591
+ readonly default: "";
5592
+ };
5593
+ }>> & Readonly<{}>, {
5594
+ close: () => void;
5595
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
5596
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
5597
+ readonly showInfo: boolean;
5598
+ readonly infoContent: string;
5599
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
5600
+ beforeCreate?: (() => void) | (() => void)[];
5601
+ created?: (() => void) | (() => void)[];
5602
+ beforeMount?: (() => void) | (() => void)[];
5603
+ mounted?: (() => void) | (() => void)[];
5604
+ beforeUpdate?: (() => void) | (() => void)[];
5605
+ updated?: (() => void) | (() => void)[];
5606
+ activated?: (() => void) | (() => void)[];
5607
+ deactivated?: (() => void) | (() => void)[];
5608
+ beforeDestroy?: (() => void) | (() => void)[];
5609
+ beforeUnmount?: (() => void) | (() => void)[];
5610
+ destroyed?: (() => void) | (() => void)[];
5611
+ unmounted?: (() => void) | (() => void)[];
5612
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
5613
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
5614
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
5615
+ };
5616
+ $forceUpdate: () => void;
5617
+ $nextTick: nextTick;
5618
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
5619
+ } & Readonly<{
5620
+ readonly showInfo: boolean;
5621
+ readonly infoContent: string;
5622
+ }> & Omit<Readonly<ExtractPropTypes< {
5623
+ readonly showInfo: {
5624
+ readonly type: BooleanConstructor;
5625
+ readonly default: false;
5626
+ };
5627
+ readonly infoContent: {
5628
+ readonly type: PropType<InfoTriggerInfoContent>;
5629
+ readonly default: "";
5630
+ };
5631
+ }>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
5632
+ close: () => void;
5633
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
5634
+ }> & {} & ComponentCustomProperties & {} & {
5635
+ $slots: {
5636
+ default?(_: {}): any;
5637
+ };
5638
+ }) | null;
4862
5639
  titleRef: HTMLDivElement;
4863
5640
  subtitleRef: HTMLDivElement;
4864
5641
  }, HTMLDivElement, ComponentProvideOptions, {
@@ -4889,10 +5666,20 @@ export declare const UpGeneralEnumDroplistCard: {
4889
5666
  type: PropType<string[]>;
4890
5667
  default: undefined;
4891
5668
  };
5669
+ showInfo: {
5670
+ type: BooleanConstructor;
5671
+ default: boolean;
5672
+ };
5673
+ infoContent: {
5674
+ type: StringConstructor;
5675
+ default: string;
5676
+ };
4892
5677
  }>> & Readonly<{}>, {}, {}, {}, {}, {
5678
+ showInfo: boolean;
5679
+ infoContent: string;
5680
+ icon: string[];
4893
5681
  subscribes: ProductSubscribe[];
4894
5682
  cardSize: GeneralEnumDroplistCardSize;
4895
- icon: string[];
4896
5683
  visibleEnumValues: (string | number)[];
4897
5684
  hasDefaultValue: boolean;
4898
5685
  }>;
@@ -4920,10 +5707,20 @@ icon: {
4920
5707
  type: PropType<string[]>;
4921
5708
  default: undefined;
4922
5709
  };
5710
+ showInfo: {
5711
+ type: BooleanConstructor;
5712
+ default: boolean;
5713
+ };
5714
+ infoContent: {
5715
+ type: StringConstructor;
5716
+ default: string;
5717
+ };
4923
5718
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
5719
+ showInfo: boolean;
5720
+ infoContent: string;
5721
+ icon: string[];
4924
5722
  subscribes: ProductSubscribe[];
4925
5723
  cardSize: GeneralEnumDroplistCardSize;
4926
- icon: string[];
4927
5724
  visibleEnumValues: (string | number)[];
4928
5725
  hasDefaultValue: boolean;
4929
5726
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
@@ -4938,7 +5735,17 @@ export declare const UpGeneralEnumSlider: {
4938
5735
  type: PropType<Array<string | number>>;
4939
5736
  default: () => never[];
4940
5737
  };
5738
+ showInfo: {
5739
+ type: BooleanConstructor;
5740
+ default: boolean;
5741
+ };
5742
+ infoContent: {
5743
+ type: StringConstructor;
5744
+ default: string;
5745
+ };
4941
5746
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
5747
+ showInfo: boolean;
5748
+ infoContent: string;
4942
5749
  subscribes: ProductSubscribe[];
4943
5750
  visibleEnumValues: (string | number)[];
4944
5751
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
@@ -4959,7 +5766,17 @@ export declare const UpGeneralEnumSlider: {
4959
5766
  type: PropType<Array<string | number>>;
4960
5767
  default: () => never[];
4961
5768
  };
5769
+ showInfo: {
5770
+ type: BooleanConstructor;
5771
+ default: boolean;
5772
+ };
5773
+ infoContent: {
5774
+ type: StringConstructor;
5775
+ default: string;
5776
+ };
4962
5777
  }>> & Readonly<{}>, {}, {}, {}, {}, {
5778
+ showInfo: boolean;
5779
+ infoContent: string;
4963
5780
  subscribes: ProductSubscribe[];
4964
5781
  visibleEnumValues: (string | number)[];
4965
5782
  }>;
@@ -4975,7 +5792,17 @@ visibleEnumValues: {
4975
5792
  type: PropType<Array<string | number>>;
4976
5793
  default: () => never[];
4977
5794
  };
5795
+ showInfo: {
5796
+ type: BooleanConstructor;
5797
+ default: boolean;
5798
+ };
5799
+ infoContent: {
5800
+ type: StringConstructor;
5801
+ default: string;
5802
+ };
4978
5803
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
5804
+ showInfo: boolean;
5805
+ infoContent: string;
4979
5806
  subscribes: ProductSubscribe[];
4980
5807
  visibleEnumValues: (string | number)[];
4981
5808
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
@@ -5010,7 +5837,17 @@ export declare const UpGeneralEnumTile: {
5010
5837
  type: PropType<GeneralEnumTileOptionConfig[]>;
5011
5838
  default: () => never[];
5012
5839
  };
5840
+ showInfo: {
5841
+ type: BooleanConstructor;
5842
+ default: boolean;
5843
+ };
5844
+ infoContent: {
5845
+ type: StringConstructor;
5846
+ default: string;
5847
+ };
5013
5848
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
5849
+ showInfo: boolean;
5850
+ infoContent: string;
5014
5851
  subscribes: ProductSubscribe[];
5015
5852
  singleTapDispatch: boolean;
5016
5853
  showTitle: boolean;
@@ -5057,7 +5894,17 @@ export declare const UpGeneralEnumTile: {
5057
5894
  type: PropType<GeneralEnumTileOptionConfig[]>;
5058
5895
  default: () => never[];
5059
5896
  };
5897
+ showInfo: {
5898
+ type: BooleanConstructor;
5899
+ default: boolean;
5900
+ };
5901
+ infoContent: {
5902
+ type: StringConstructor;
5903
+ default: string;
5904
+ };
5060
5905
  }>> & Readonly<{}>, {}, {}, {}, {}, {
5906
+ showInfo: boolean;
5907
+ infoContent: string;
5061
5908
  subscribes: ProductSubscribe[];
5062
5909
  singleTapDispatch: boolean;
5063
5910
  showTitle: boolean;
@@ -5098,7 +5945,17 @@ moreEnumOptionConfigs: {
5098
5945
  type: PropType<GeneralEnumTileOptionConfig[]>;
5099
5946
  default: () => never[];
5100
5947
  };
5948
+ showInfo: {
5949
+ type: BooleanConstructor;
5950
+ default: boolean;
5951
+ };
5952
+ infoContent: {
5953
+ type: StringConstructor;
5954
+ default: string;
5955
+ };
5101
5956
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
5957
+ showInfo: boolean;
5958
+ infoContent: string;
5102
5959
  subscribes: ProductSubscribe[];
5103
5960
  singleTapDispatch: boolean;
5104
5961
  showTitle: boolean;
@@ -5122,11 +5979,103 @@ export declare const UpGeneralExecution: {
5122
5979
  type: PropType<GeneralExecutionCardSize>;
5123
5980
  default: string;
5124
5981
  };
5982
+ showInfo: {
5983
+ type: BooleanConstructor;
5984
+ default: boolean;
5985
+ };
5986
+ infoContent: {
5987
+ type: StringConstructor;
5988
+ default: string;
5989
+ };
5125
5990
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
5991
+ showInfo: boolean;
5992
+ infoContent: string;
5126
5993
  subscribes: ProductSubscribe[];
5127
5994
  cardSize: GeneralExecutionCardSize;
5128
5995
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
5129
- titleRowRef: HTMLDivElement;
5996
+ infoTriggerRef: ({
5997
+ $: ComponentInternalInstance;
5998
+ $data: {};
5999
+ $props: Partial<{
6000
+ readonly showInfo: boolean;
6001
+ readonly infoContent: string;
6002
+ }> & Omit<{
6003
+ readonly showInfo: boolean;
6004
+ readonly infoContent: string;
6005
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
6006
+ $attrs: {
6007
+ [x: string]: unknown;
6008
+ };
6009
+ $refs: {
6010
+ [x: string]: unknown;
6011
+ } & {
6012
+ rootElRef: HTMLDivElement;
6013
+ infoTriggerRef: HTMLButtonElement;
6014
+ infoTooltipRef: HTMLDivElement;
6015
+ };
6016
+ $slots: Readonly<{
6017
+ [name: string]: Slot<any> | undefined;
6018
+ }>;
6019
+ $root: ComponentPublicInstance | null;
6020
+ $parent: ComponentPublicInstance | null;
6021
+ $host: Element | null;
6022
+ $emit: (event: string, ...args: any[]) => void;
6023
+ $el: HTMLDivElement;
6024
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
6025
+ readonly showInfo: {
6026
+ readonly type: BooleanConstructor;
6027
+ readonly default: false;
6028
+ };
6029
+ readonly infoContent: {
6030
+ readonly type: PropType<InfoTriggerInfoContent>;
6031
+ readonly default: "";
6032
+ };
6033
+ }>> & Readonly<{}>, {
6034
+ close: () => void;
6035
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
6036
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
6037
+ readonly showInfo: boolean;
6038
+ readonly infoContent: string;
6039
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
6040
+ beforeCreate?: (() => void) | (() => void)[];
6041
+ created?: (() => void) | (() => void)[];
6042
+ beforeMount?: (() => void) | (() => void)[];
6043
+ mounted?: (() => void) | (() => void)[];
6044
+ beforeUpdate?: (() => void) | (() => void)[];
6045
+ updated?: (() => void) | (() => void)[];
6046
+ activated?: (() => void) | (() => void)[];
6047
+ deactivated?: (() => void) | (() => void)[];
6048
+ beforeDestroy?: (() => void) | (() => void)[];
6049
+ beforeUnmount?: (() => void) | (() => void)[];
6050
+ destroyed?: (() => void) | (() => void)[];
6051
+ unmounted?: (() => void) | (() => void)[];
6052
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
6053
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
6054
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
6055
+ };
6056
+ $forceUpdate: () => void;
6057
+ $nextTick: nextTick;
6058
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
6059
+ } & Readonly<{
6060
+ readonly showInfo: boolean;
6061
+ readonly infoContent: string;
6062
+ }> & Omit<Readonly<ExtractPropTypes< {
6063
+ readonly showInfo: {
6064
+ readonly type: BooleanConstructor;
6065
+ readonly default: false;
6066
+ };
6067
+ readonly infoContent: {
6068
+ readonly type: PropType<InfoTriggerInfoContent>;
6069
+ readonly default: "";
6070
+ };
6071
+ }>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
6072
+ close: () => void;
6073
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
6074
+ }> & {} & ComponentCustomProperties & {} & {
6075
+ $slots: {
6076
+ default?(_: {}): any;
6077
+ };
6078
+ }) | null;
5130
6079
  titleRef: HTMLDivElement;
5131
6080
  statusRef: HTMLDivElement;
5132
6081
  }, HTMLDivElement, ComponentProvideOptions, {
@@ -5145,7 +6094,17 @@ export declare const UpGeneralExecution: {
5145
6094
  type: PropType<GeneralExecutionCardSize>;
5146
6095
  default: string;
5147
6096
  };
6097
+ showInfo: {
6098
+ type: BooleanConstructor;
6099
+ default: boolean;
6100
+ };
6101
+ infoContent: {
6102
+ type: StringConstructor;
6103
+ default: string;
6104
+ };
5148
6105
  }>> & Readonly<{}>, {}, {}, {}, {}, {
6106
+ showInfo: boolean;
6107
+ infoContent: string;
5149
6108
  subscribes: ProductSubscribe[];
5150
6109
  cardSize: GeneralExecutionCardSize;
5151
6110
  }>;
@@ -5161,7 +6120,17 @@ cardSize: {
5161
6120
  type: PropType<GeneralExecutionCardSize>;
5162
6121
  default: string;
5163
6122
  };
6123
+ showInfo: {
6124
+ type: BooleanConstructor;
6125
+ default: boolean;
6126
+ };
6127
+ infoContent: {
6128
+ type: StringConstructor;
6129
+ default: string;
6130
+ };
5164
6131
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
6132
+ showInfo: boolean;
6133
+ infoContent: string;
5165
6134
  subscribes: ProductSubscribe[];
5166
6135
  cardSize: GeneralExecutionCardSize;
5167
6136
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
@@ -5223,7 +6192,17 @@ export declare const UpGeneralIntCard: {
5223
6192
  type: BooleanConstructor;
5224
6193
  default: boolean;
5225
6194
  };
6195
+ showInfo: {
6196
+ type: BooleanConstructor;
6197
+ default: boolean;
6198
+ };
6199
+ infoContent: {
6200
+ type: StringConstructor;
6201
+ default: string;
6202
+ };
5226
6203
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
6204
+ showInfo: boolean;
6205
+ infoContent: string;
5227
6206
  subscribes: ProductSubscribe[];
5228
6207
  unit: string;
5229
6208
  styleType: GeneralIntCardStyleType;
@@ -5257,7 +6236,17 @@ export declare const UpGeneralIntCard: {
5257
6236
  type: BooleanConstructor;
5258
6237
  default: boolean;
5259
6238
  };
6239
+ showInfo: {
6240
+ type: BooleanConstructor;
6241
+ default: boolean;
6242
+ };
6243
+ infoContent: {
6244
+ type: StringConstructor;
6245
+ default: string;
6246
+ };
5260
6247
  }>> & Readonly<{}>, {}, {}, {}, {}, {
6248
+ showInfo: boolean;
6249
+ infoContent: string;
5261
6250
  subscribes: ProductSubscribe[];
5262
6251
  unit: string;
5263
6252
  styleType: GeneralIntCardStyleType;
@@ -5288,7 +6277,17 @@ isDeviceInt: {
5288
6277
  type: BooleanConstructor;
5289
6278
  default: boolean;
5290
6279
  };
6280
+ showInfo: {
6281
+ type: BooleanConstructor;
6282
+ default: boolean;
6283
+ };
6284
+ infoContent: {
6285
+ type: StringConstructor;
6286
+ default: string;
6287
+ };
5291
6288
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
6289
+ showInfo: boolean;
6290
+ infoContent: string;
5292
6291
  subscribes: ProductSubscribe[];
5293
6292
  unit: string;
5294
6293
  styleType: GeneralIntCardStyleType;
@@ -5322,15 +6321,108 @@ export declare const UpGeneralIntCircular: {
5322
6321
  type: PropType<string[]>;
5323
6322
  default: undefined;
5324
6323
  };
6324
+ showInfo: {
6325
+ type: BooleanConstructor;
6326
+ default: boolean;
6327
+ };
6328
+ infoContent: {
6329
+ type: StringConstructor;
6330
+ default: string;
6331
+ };
5325
6332
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
6333
+ showInfo: boolean;
6334
+ infoContent: string;
6335
+ icon: string[];
5326
6336
  subscribes: ProductSubscribe[];
5327
6337
  cardSize: GeneralIntCircularCardSize;
5328
- icon: string[];
5329
6338
  displayUnit: string;
5330
6339
  wheelLoop: boolean;
5331
6340
  dialogSubtitle: string;
5332
6341
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
5333
6342
  textRef: HTMLDivElement;
6343
+ infoTriggerRef: ({
6344
+ $: ComponentInternalInstance;
6345
+ $data: {};
6346
+ $props: Partial<{
6347
+ readonly showInfo: boolean;
6348
+ readonly infoContent: string;
6349
+ }> & Omit<{
6350
+ readonly showInfo: boolean;
6351
+ readonly infoContent: string;
6352
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
6353
+ $attrs: {
6354
+ [x: string]: unknown;
6355
+ };
6356
+ $refs: {
6357
+ [x: string]: unknown;
6358
+ } & {
6359
+ rootElRef: HTMLDivElement;
6360
+ infoTriggerRef: HTMLButtonElement;
6361
+ infoTooltipRef: HTMLDivElement;
6362
+ };
6363
+ $slots: Readonly<{
6364
+ [name: string]: Slot<any> | undefined;
6365
+ }>;
6366
+ $root: ComponentPublicInstance | null;
6367
+ $parent: ComponentPublicInstance | null;
6368
+ $host: Element | null;
6369
+ $emit: (event: string, ...args: any[]) => void;
6370
+ $el: HTMLDivElement;
6371
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
6372
+ readonly showInfo: {
6373
+ readonly type: BooleanConstructor;
6374
+ readonly default: false;
6375
+ };
6376
+ readonly infoContent: {
6377
+ readonly type: PropType<InfoTriggerInfoContent>;
6378
+ readonly default: "";
6379
+ };
6380
+ }>> & Readonly<{}>, {
6381
+ close: () => void;
6382
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
6383
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
6384
+ readonly showInfo: boolean;
6385
+ readonly infoContent: string;
6386
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
6387
+ beforeCreate?: (() => void) | (() => void)[];
6388
+ created?: (() => void) | (() => void)[];
6389
+ beforeMount?: (() => void) | (() => void)[];
6390
+ mounted?: (() => void) | (() => void)[];
6391
+ beforeUpdate?: (() => void) | (() => void)[];
6392
+ updated?: (() => void) | (() => void)[];
6393
+ activated?: (() => void) | (() => void)[];
6394
+ deactivated?: (() => void) | (() => void)[];
6395
+ beforeDestroy?: (() => void) | (() => void)[];
6396
+ beforeUnmount?: (() => void) | (() => void)[];
6397
+ destroyed?: (() => void) | (() => void)[];
6398
+ unmounted?: (() => void) | (() => void)[];
6399
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
6400
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
6401
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
6402
+ };
6403
+ $forceUpdate: () => void;
6404
+ $nextTick: nextTick;
6405
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
6406
+ } & Readonly<{
6407
+ readonly showInfo: boolean;
6408
+ readonly infoContent: string;
6409
+ }> & Omit<Readonly<ExtractPropTypes< {
6410
+ readonly showInfo: {
6411
+ readonly type: BooleanConstructor;
6412
+ readonly default: false;
6413
+ };
6414
+ readonly infoContent: {
6415
+ readonly type: PropType<InfoTriggerInfoContent>;
6416
+ readonly default: "";
6417
+ };
6418
+ }>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
6419
+ close: () => void;
6420
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
6421
+ }> & {} & ComponentCustomProperties & {} & {
6422
+ $slots: {
6423
+ default?(_: {}): any;
6424
+ };
6425
+ }) | null;
5334
6426
  }, HTMLDivElement, ComponentProvideOptions, {
5335
6427
  P: {};
5336
6428
  B: {};
@@ -5363,10 +6455,20 @@ export declare const UpGeneralIntCircular: {
5363
6455
  type: PropType<string[]>;
5364
6456
  default: undefined;
5365
6457
  };
6458
+ showInfo: {
6459
+ type: BooleanConstructor;
6460
+ default: boolean;
6461
+ };
6462
+ infoContent: {
6463
+ type: StringConstructor;
6464
+ default: string;
6465
+ };
5366
6466
  }>> & Readonly<{}>, {}, {}, {}, {}, {
6467
+ showInfo: boolean;
6468
+ infoContent: string;
6469
+ icon: string[];
5367
6470
  subscribes: ProductSubscribe[];
5368
6471
  cardSize: GeneralIntCircularCardSize;
5369
- icon: string[];
5370
6472
  displayUnit: string;
5371
6473
  wheelLoop: boolean;
5372
6474
  dialogSubtitle: string;
@@ -5399,10 +6501,20 @@ icon: {
5399
6501
  type: PropType<string[]>;
5400
6502
  default: undefined;
5401
6503
  };
6504
+ showInfo: {
6505
+ type: BooleanConstructor;
6506
+ default: boolean;
6507
+ };
6508
+ infoContent: {
6509
+ type: StringConstructor;
6510
+ default: string;
6511
+ };
5402
6512
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
6513
+ showInfo: boolean;
6514
+ infoContent: string;
6515
+ icon: string[];
5403
6516
  subscribes: ProductSubscribe[];
5404
6517
  cardSize: GeneralIntCircularCardSize;
5405
- icon: string[];
5406
6518
  displayUnit: string;
5407
6519
  wheelLoop: boolean;
5408
6520
  dialogSubtitle: string;
@@ -5418,7 +6530,17 @@ export declare const UpGeneralIntTile: {
5418
6530
  type: PropType<GeneralIntTilePresetOptionConfig[]>;
5419
6531
  default: () => never[];
5420
6532
  };
6533
+ showInfo: {
6534
+ type: BooleanConstructor;
6535
+ default: boolean;
6536
+ };
6537
+ infoContent: {
6538
+ type: StringConstructor;
6539
+ default: string;
6540
+ };
5421
6541
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
6542
+ showInfo: boolean;
6543
+ infoContent: string;
5422
6544
  subscribes: ProductSubscribe[];
5423
6545
  intPresetOptionConfigs: GeneralIntTilePresetOptionConfig[];
5424
6546
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
@@ -5437,7 +6559,17 @@ export declare const UpGeneralIntTile: {
5437
6559
  type: PropType<GeneralIntTilePresetOptionConfig[]>;
5438
6560
  default: () => never[];
5439
6561
  };
6562
+ showInfo: {
6563
+ type: BooleanConstructor;
6564
+ default: boolean;
6565
+ };
6566
+ infoContent: {
6567
+ type: StringConstructor;
6568
+ default: string;
6569
+ };
5440
6570
  }>> & Readonly<{}>, {}, {}, {}, {}, {
6571
+ showInfo: boolean;
6572
+ infoContent: string;
5441
6573
  subscribes: ProductSubscribe[];
5442
6574
  intPresetOptionConfigs: GeneralIntTilePresetOptionConfig[];
5443
6575
  }>;
@@ -5453,7 +6585,17 @@ intPresetOptionConfigs: {
5453
6585
  type: PropType<GeneralIntTilePresetOptionConfig[]>;
5454
6586
  default: () => never[];
5455
6587
  };
6588
+ showInfo: {
6589
+ type: BooleanConstructor;
6590
+ default: boolean;
6591
+ };
6592
+ infoContent: {
6593
+ type: StringConstructor;
6594
+ default: string;
6595
+ };
5456
6596
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
6597
+ showInfo: boolean;
6598
+ infoContent: string;
5457
6599
  subscribes: ProductSubscribe[];
5458
6600
  intPresetOptionConfigs: GeneralIntTilePresetOptionConfig[];
5459
6601
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
@@ -5468,11 +6610,103 @@ export declare const UpGeneralMemoryControl: {
5468
6610
  type: PropType<GeneralMemoryControlCardSize>;
5469
6611
  default: string;
5470
6612
  };
6613
+ showInfo: {
6614
+ type: BooleanConstructor;
6615
+ default: boolean;
6616
+ };
6617
+ infoContent: {
6618
+ type: StringConstructor;
6619
+ default: string;
6620
+ };
5471
6621
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
6622
+ showInfo: boolean;
6623
+ infoContent: string;
5472
6624
  subscribes: ProductSubscribe[];
5473
6625
  cardSize: GeneralMemoryControlCardSize;
5474
6626
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
5475
- titleRowRef: HTMLDivElement;
6627
+ infoTriggerRef: ({
6628
+ $: ComponentInternalInstance;
6629
+ $data: {};
6630
+ $props: Partial<{
6631
+ readonly showInfo: boolean;
6632
+ readonly infoContent: string;
6633
+ }> & Omit<{
6634
+ readonly showInfo: boolean;
6635
+ readonly infoContent: string;
6636
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
6637
+ $attrs: {
6638
+ [x: string]: unknown;
6639
+ };
6640
+ $refs: {
6641
+ [x: string]: unknown;
6642
+ } & {
6643
+ rootElRef: HTMLDivElement;
6644
+ infoTriggerRef: HTMLButtonElement;
6645
+ infoTooltipRef: HTMLDivElement;
6646
+ };
6647
+ $slots: Readonly<{
6648
+ [name: string]: Slot<any> | undefined;
6649
+ }>;
6650
+ $root: ComponentPublicInstance | null;
6651
+ $parent: ComponentPublicInstance | null;
6652
+ $host: Element | null;
6653
+ $emit: (event: string, ...args: any[]) => void;
6654
+ $el: HTMLDivElement;
6655
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
6656
+ readonly showInfo: {
6657
+ readonly type: BooleanConstructor;
6658
+ readonly default: false;
6659
+ };
6660
+ readonly infoContent: {
6661
+ readonly type: PropType<InfoTriggerInfoContent>;
6662
+ readonly default: "";
6663
+ };
6664
+ }>> & Readonly<{}>, {
6665
+ close: () => void;
6666
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
6667
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
6668
+ readonly showInfo: boolean;
6669
+ readonly infoContent: string;
6670
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
6671
+ beforeCreate?: (() => void) | (() => void)[];
6672
+ created?: (() => void) | (() => void)[];
6673
+ beforeMount?: (() => void) | (() => void)[];
6674
+ mounted?: (() => void) | (() => void)[];
6675
+ beforeUpdate?: (() => void) | (() => void)[];
6676
+ updated?: (() => void) | (() => void)[];
6677
+ activated?: (() => void) | (() => void)[];
6678
+ deactivated?: (() => void) | (() => void)[];
6679
+ beforeDestroy?: (() => void) | (() => void)[];
6680
+ beforeUnmount?: (() => void) | (() => void)[];
6681
+ destroyed?: (() => void) | (() => void)[];
6682
+ unmounted?: (() => void) | (() => void)[];
6683
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
6684
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
6685
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
6686
+ };
6687
+ $forceUpdate: () => void;
6688
+ $nextTick: nextTick;
6689
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
6690
+ } & Readonly<{
6691
+ readonly showInfo: boolean;
6692
+ readonly infoContent: string;
6693
+ }> & Omit<Readonly<ExtractPropTypes< {
6694
+ readonly showInfo: {
6695
+ readonly type: BooleanConstructor;
6696
+ readonly default: false;
6697
+ };
6698
+ readonly infoContent: {
6699
+ readonly type: PropType<InfoTriggerInfoContent>;
6700
+ readonly default: "";
6701
+ };
6702
+ }>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
6703
+ close: () => void;
6704
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
6705
+ }> & {} & ComponentCustomProperties & {} & {
6706
+ $slots: {
6707
+ default?(_: {}): any;
6708
+ };
6709
+ }) | null;
5476
6710
  titleRef: HTMLDivElement;
5477
6711
  statusRef: HTMLDivElement;
5478
6712
  }, HTMLDivElement, ComponentProvideOptions, {
@@ -5491,7 +6725,17 @@ export declare const UpGeneralMemoryControl: {
5491
6725
  type: PropType<GeneralMemoryControlCardSize>;
5492
6726
  default: string;
5493
6727
  };
6728
+ showInfo: {
6729
+ type: BooleanConstructor;
6730
+ default: boolean;
6731
+ };
6732
+ infoContent: {
6733
+ type: StringConstructor;
6734
+ default: string;
6735
+ };
5494
6736
  }>> & Readonly<{}>, {}, {}, {}, {}, {
6737
+ showInfo: boolean;
6738
+ infoContent: string;
5495
6739
  subscribes: ProductSubscribe[];
5496
6740
  cardSize: GeneralMemoryControlCardSize;
5497
6741
  }>;
@@ -5507,7 +6751,17 @@ cardSize: {
5507
6751
  type: PropType<GeneralMemoryControlCardSize>;
5508
6752
  default: string;
5509
6753
  };
6754
+ showInfo: {
6755
+ type: BooleanConstructor;
6756
+ default: boolean;
6757
+ };
6758
+ infoContent: {
6759
+ type: StringConstructor;
6760
+ default: string;
6761
+ };
5510
6762
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
6763
+ showInfo: boolean;
6764
+ infoContent: string;
5511
6765
  subscribes: ProductSubscribe[];
5512
6766
  cardSize: GeneralMemoryControlCardSize;
5513
6767
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
@@ -5621,7 +6875,17 @@ export declare const UpGeneralScreen: {
5621
6875
  type: PropType<GeneralScreenFilterElementItemConfig[]>;
5622
6876
  default: () => never[];
5623
6877
  };
6878
+ showInfo: {
6879
+ type: BooleanConstructor;
6880
+ default: boolean;
6881
+ };
6882
+ infoContent: {
6883
+ type: StringConstructor;
6884
+ default: string;
6885
+ };
5624
6886
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
6887
+ showInfo: boolean;
6888
+ infoContent: string;
5625
6889
  filterElementItemConfigs: GeneralScreenFilterElementItemConfig[];
5626
6890
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
5627
6891
  alarmStripRef: HTMLDivElement;
@@ -5639,7 +6903,17 @@ export declare const UpGeneralScreen: {
5639
6903
  type: PropType<GeneralScreenFilterElementItemConfig[]>;
5640
6904
  default: () => never[];
5641
6905
  };
6906
+ showInfo: {
6907
+ type: BooleanConstructor;
6908
+ default: boolean;
6909
+ };
6910
+ infoContent: {
6911
+ type: StringConstructor;
6912
+ default: string;
6913
+ };
5642
6914
  }>> & Readonly<{}>, {}, {}, {}, {}, {
6915
+ showInfo: boolean;
6916
+ infoContent: string;
5643
6917
  filterElementItemConfigs: GeneralScreenFilterElementItemConfig[];
5644
6918
  }>;
5645
6919
  __isFragment?: never;
@@ -5650,7 +6924,17 @@ filterElementItemConfigs: {
5650
6924
  type: PropType<GeneralScreenFilterElementItemConfig[]>;
5651
6925
  default: () => never[];
5652
6926
  };
6927
+ showInfo: {
6928
+ type: BooleanConstructor;
6929
+ default: boolean;
6930
+ };
6931
+ infoContent: {
6932
+ type: StringConstructor;
6933
+ default: string;
6934
+ };
5653
6935
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
6936
+ showInfo: boolean;
6937
+ infoContent: string;
5654
6938
  filterElementItemConfigs: GeneralScreenFilterElementItemConfig[];
5655
6939
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
5656
6940
 
@@ -5664,11 +6948,103 @@ export declare const UpGeneralTask: {
5664
6948
  type: PropType<GeneralTaskCardSize>;
5665
6949
  default: string;
5666
6950
  };
6951
+ showInfo: {
6952
+ type: BooleanConstructor;
6953
+ default: boolean;
6954
+ };
6955
+ infoContent: {
6956
+ type: StringConstructor;
6957
+ default: string;
6958
+ };
5667
6959
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
6960
+ showInfo: boolean;
6961
+ infoContent: string;
5668
6962
  subscribes: ProductSubscribe[];
5669
6963
  cardSize: GeneralTaskCardSize;
5670
6964
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
5671
- titleRowRef: HTMLDivElement;
6965
+ infoTriggerRef: ({
6966
+ $: ComponentInternalInstance;
6967
+ $data: {};
6968
+ $props: Partial<{
6969
+ readonly showInfo: boolean;
6970
+ readonly infoContent: string;
6971
+ }> & Omit<{
6972
+ readonly showInfo: boolean;
6973
+ readonly infoContent: string;
6974
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
6975
+ $attrs: {
6976
+ [x: string]: unknown;
6977
+ };
6978
+ $refs: {
6979
+ [x: string]: unknown;
6980
+ } & {
6981
+ rootElRef: HTMLDivElement;
6982
+ infoTriggerRef: HTMLButtonElement;
6983
+ infoTooltipRef: HTMLDivElement;
6984
+ };
6985
+ $slots: Readonly<{
6986
+ [name: string]: Slot<any> | undefined;
6987
+ }>;
6988
+ $root: ComponentPublicInstance | null;
6989
+ $parent: ComponentPublicInstance | null;
6990
+ $host: Element | null;
6991
+ $emit: (event: string, ...args: any[]) => void;
6992
+ $el: HTMLDivElement;
6993
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
6994
+ readonly showInfo: {
6995
+ readonly type: BooleanConstructor;
6996
+ readonly default: false;
6997
+ };
6998
+ readonly infoContent: {
6999
+ readonly type: PropType<InfoTriggerInfoContent>;
7000
+ readonly default: "";
7001
+ };
7002
+ }>> & Readonly<{}>, {
7003
+ close: () => void;
7004
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
7005
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
7006
+ readonly showInfo: boolean;
7007
+ readonly infoContent: string;
7008
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
7009
+ beforeCreate?: (() => void) | (() => void)[];
7010
+ created?: (() => void) | (() => void)[];
7011
+ beforeMount?: (() => void) | (() => void)[];
7012
+ mounted?: (() => void) | (() => void)[];
7013
+ beforeUpdate?: (() => void) | (() => void)[];
7014
+ updated?: (() => void) | (() => void)[];
7015
+ activated?: (() => void) | (() => void)[];
7016
+ deactivated?: (() => void) | (() => void)[];
7017
+ beforeDestroy?: (() => void) | (() => void)[];
7018
+ beforeUnmount?: (() => void) | (() => void)[];
7019
+ destroyed?: (() => void) | (() => void)[];
7020
+ unmounted?: (() => void) | (() => void)[];
7021
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
7022
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
7023
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
7024
+ };
7025
+ $forceUpdate: () => void;
7026
+ $nextTick: nextTick;
7027
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
7028
+ } & Readonly<{
7029
+ readonly showInfo: boolean;
7030
+ readonly infoContent: string;
7031
+ }> & Omit<Readonly<ExtractPropTypes< {
7032
+ readonly showInfo: {
7033
+ readonly type: BooleanConstructor;
7034
+ readonly default: false;
7035
+ };
7036
+ readonly infoContent: {
7037
+ readonly type: PropType<InfoTriggerInfoContent>;
7038
+ readonly default: "";
7039
+ };
7040
+ }>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
7041
+ close: () => void;
7042
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
7043
+ }> & {} & ComponentCustomProperties & {} & {
7044
+ $slots: {
7045
+ default?(_: {}): any;
7046
+ };
7047
+ }) | null;
5672
7048
  titleRef: HTMLDivElement;
5673
7049
  statusRef: HTMLDivElement;
5674
7050
  }, HTMLDivElement, ComponentProvideOptions, {
@@ -5687,7 +7063,17 @@ export declare const UpGeneralTask: {
5687
7063
  type: PropType<GeneralTaskCardSize>;
5688
7064
  default: string;
5689
7065
  };
7066
+ showInfo: {
7067
+ type: BooleanConstructor;
7068
+ default: boolean;
7069
+ };
7070
+ infoContent: {
7071
+ type: StringConstructor;
7072
+ default: string;
7073
+ };
5690
7074
  }>> & Readonly<{}>, {}, {}, {}, {}, {
7075
+ showInfo: boolean;
7076
+ infoContent: string;
5691
7077
  subscribes: ProductSubscribe[];
5692
7078
  cardSize: GeneralTaskCardSize;
5693
7079
  }>;
@@ -5703,7 +7089,17 @@ cardSize: {
5703
7089
  type: PropType<GeneralTaskCardSize>;
5704
7090
  default: string;
5705
7091
  };
7092
+ showInfo: {
7093
+ type: BooleanConstructor;
7094
+ default: boolean;
7095
+ };
7096
+ infoContent: {
7097
+ type: StringConstructor;
7098
+ default: string;
7099
+ };
5706
7100
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
7101
+ showInfo: boolean;
7102
+ infoContent: string;
5707
7103
  subscribes: ProductSubscribe[];
5708
7104
  cardSize: GeneralTaskCardSize;
5709
7105
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
@@ -5730,14 +7126,107 @@ export declare const UpGeneralTimeSwitch: {
5730
7126
  readonly type: PropType<string[]>;
5731
7127
  readonly default: undefined;
5732
7128
  };
7129
+ readonly showInfo: {
7130
+ readonly type: BooleanConstructor;
7131
+ readonly default: false;
7132
+ };
7133
+ readonly infoContent: {
7134
+ readonly type: StringConstructor;
7135
+ readonly default: "";
7136
+ };
5733
7137
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
7138
+ readonly showInfo: boolean;
7139
+ readonly infoContent: string;
7140
+ readonly icon: string[];
5734
7141
  readonly subscribes: ProductSubscribe[];
5735
7142
  readonly cardSize: GeneralTimeSwitchCardSize;
5736
- readonly icon: string[];
5737
7143
  readonly subscribesSecond: ProductSubscribe[];
5738
7144
  readonly wheelUnit: GeneralTimeSwitchWheelUnit;
5739
7145
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
5740
7146
  textRef: HTMLDivElement;
7147
+ infoTriggerRef: ({
7148
+ $: ComponentInternalInstance;
7149
+ $data: {};
7150
+ $props: Partial<{
7151
+ readonly showInfo: boolean;
7152
+ readonly infoContent: string;
7153
+ }> & Omit<{
7154
+ readonly showInfo: boolean;
7155
+ readonly infoContent: string;
7156
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
7157
+ $attrs: {
7158
+ [x: string]: unknown;
7159
+ };
7160
+ $refs: {
7161
+ [x: string]: unknown;
7162
+ } & {
7163
+ rootElRef: HTMLDivElement;
7164
+ infoTriggerRef: HTMLButtonElement;
7165
+ infoTooltipRef: HTMLDivElement;
7166
+ };
7167
+ $slots: Readonly<{
7168
+ [name: string]: Slot<any> | undefined;
7169
+ }>;
7170
+ $root: ComponentPublicInstance | null;
7171
+ $parent: ComponentPublicInstance | null;
7172
+ $host: Element | null;
7173
+ $emit: (event: string, ...args: any[]) => void;
7174
+ $el: HTMLDivElement;
7175
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
7176
+ readonly showInfo: {
7177
+ readonly type: BooleanConstructor;
7178
+ readonly default: false;
7179
+ };
7180
+ readonly infoContent: {
7181
+ readonly type: PropType<InfoTriggerInfoContent>;
7182
+ readonly default: "";
7183
+ };
7184
+ }>> & Readonly<{}>, {
7185
+ close: () => void;
7186
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
7187
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
7188
+ readonly showInfo: boolean;
7189
+ readonly infoContent: string;
7190
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
7191
+ beforeCreate?: (() => void) | (() => void)[];
7192
+ created?: (() => void) | (() => void)[];
7193
+ beforeMount?: (() => void) | (() => void)[];
7194
+ mounted?: (() => void) | (() => void)[];
7195
+ beforeUpdate?: (() => void) | (() => void)[];
7196
+ updated?: (() => void) | (() => void)[];
7197
+ activated?: (() => void) | (() => void)[];
7198
+ deactivated?: (() => void) | (() => void)[];
7199
+ beforeDestroy?: (() => void) | (() => void)[];
7200
+ beforeUnmount?: (() => void) | (() => void)[];
7201
+ destroyed?: (() => void) | (() => void)[];
7202
+ unmounted?: (() => void) | (() => void)[];
7203
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
7204
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
7205
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
7206
+ };
7207
+ $forceUpdate: () => void;
7208
+ $nextTick: nextTick;
7209
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
7210
+ } & Readonly<{
7211
+ readonly showInfo: boolean;
7212
+ readonly infoContent: string;
7213
+ }> & Omit<Readonly<ExtractPropTypes< {
7214
+ readonly showInfo: {
7215
+ readonly type: BooleanConstructor;
7216
+ readonly default: false;
7217
+ };
7218
+ readonly infoContent: {
7219
+ readonly type: PropType<InfoTriggerInfoContent>;
7220
+ readonly default: "";
7221
+ };
7222
+ }>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
7223
+ close: () => void;
7224
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
7225
+ }> & {} & ComponentCustomProperties & {} & {
7226
+ $slots: {
7227
+ default?(_: {}): any;
7228
+ };
7229
+ }) | null;
5741
7230
  }, HTMLDivElement, ComponentProvideOptions, {
5742
7231
  P: {};
5743
7232
  B: {};
@@ -5766,10 +7255,20 @@ export declare const UpGeneralTimeSwitch: {
5766
7255
  readonly type: PropType<string[]>;
5767
7256
  readonly default: undefined;
5768
7257
  };
7258
+ readonly showInfo: {
7259
+ readonly type: BooleanConstructor;
7260
+ readonly default: false;
7261
+ };
7262
+ readonly infoContent: {
7263
+ readonly type: StringConstructor;
7264
+ readonly default: "";
7265
+ };
5769
7266
  }>> & Readonly<{}>, {}, {}, {}, {}, {
7267
+ readonly showInfo: boolean;
7268
+ readonly infoContent: string;
7269
+ readonly icon: string[];
5770
7270
  readonly subscribes: ProductSubscribe[];
5771
7271
  readonly cardSize: GeneralTimeSwitchCardSize;
5772
- readonly icon: string[];
5773
7272
  readonly subscribesSecond: ProductSubscribe[];
5774
7273
  readonly wheelUnit: GeneralTimeSwitchWheelUnit;
5775
7274
  }>;
@@ -5797,10 +7296,20 @@ readonly icon: {
5797
7296
  readonly type: PropType<string[]>;
5798
7297
  readonly default: undefined;
5799
7298
  };
7299
+ readonly showInfo: {
7300
+ readonly type: BooleanConstructor;
7301
+ readonly default: false;
7302
+ };
7303
+ readonly infoContent: {
7304
+ readonly type: StringConstructor;
7305
+ readonly default: "";
7306
+ };
5800
7307
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
7308
+ readonly showInfo: boolean;
7309
+ readonly infoContent: string;
7310
+ readonly icon: string[];
5801
7311
  readonly subscribes: ProductSubscribe[];
5802
7312
  readonly cardSize: GeneralTimeSwitchCardSize;
5803
- readonly icon: string[];
5804
7313
  readonly subscribesSecond: ProductSubscribe[];
5805
7314
  readonly wheelUnit: GeneralTimeSwitchWheelUnit;
5806
7315
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
@@ -5883,6 +7392,73 @@ readonly required: true;
5883
7392
  };
5884
7393
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
5885
7394
 
7395
+ export declare const UpInfoTrigger: {
7396
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
7397
+ readonly showInfo: {
7398
+ readonly type: BooleanConstructor;
7399
+ readonly default: false;
7400
+ };
7401
+ readonly infoContent: {
7402
+ readonly type: PropType<InfoTriggerInfoContent>;
7403
+ readonly default: "";
7404
+ };
7405
+ }>> & Readonly<{}>, {
7406
+ close: () => void;
7407
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
7408
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
7409
+ readonly showInfo: boolean;
7410
+ readonly infoContent: string;
7411
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
7412
+ rootElRef: HTMLDivElement;
7413
+ infoTriggerRef: HTMLButtonElement;
7414
+ infoTooltipRef: HTMLDivElement;
7415
+ }, HTMLDivElement, ComponentProvideOptions, {
7416
+ P: {};
7417
+ B: {};
7418
+ D: {};
7419
+ C: {};
7420
+ M: {};
7421
+ Defaults: {};
7422
+ }, Readonly<ExtractPropTypes< {
7423
+ readonly showInfo: {
7424
+ readonly type: BooleanConstructor;
7425
+ readonly default: false;
7426
+ };
7427
+ readonly infoContent: {
7428
+ readonly type: PropType<InfoTriggerInfoContent>;
7429
+ readonly default: "";
7430
+ };
7431
+ }>> & Readonly<{}>, {
7432
+ close: () => void;
7433
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
7434
+ }, {}, {}, {}, {
7435
+ readonly showInfo: boolean;
7436
+ readonly infoContent: string;
7437
+ }>;
7438
+ __isFragment?: never;
7439
+ __isTeleport?: never;
7440
+ __isSuspense?: never;
7441
+ } & ComponentOptionsBase<Readonly<ExtractPropTypes< {
7442
+ readonly showInfo: {
7443
+ readonly type: BooleanConstructor;
7444
+ readonly default: false;
7445
+ };
7446
+ readonly infoContent: {
7447
+ readonly type: PropType<InfoTriggerInfoContent>;
7448
+ readonly default: "";
7449
+ };
7450
+ }>> & Readonly<{}>, {
7451
+ close: () => void;
7452
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
7453
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
7454
+ readonly showInfo: boolean;
7455
+ readonly infoContent: string;
7456
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
7457
+ $slots: {
7458
+ default?(_: {}): any;
7459
+ };
7460
+ }) & Plugin_2;
7461
+
5886
7462
  export declare const UpLampCCT: {
5887
7463
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
5888
7464
  linkColourMode: {
@@ -6585,6 +8161,14 @@ export declare const UpPageRouter: {
6585
8161
  readonly type: StringConstructor;
6586
8162
  readonly default: "";
6587
8163
  };
8164
+ readonly showInfo: {
8165
+ readonly type: BooleanConstructor;
8166
+ readonly default: false;
8167
+ };
8168
+ readonly infoContent: {
8169
+ readonly type: StringConstructor;
8170
+ readonly default: "";
8171
+ };
6588
8172
  readonly icon: {
6589
8173
  readonly type: PropType<string[]>;
6590
8174
  readonly default: undefined;
@@ -6601,15 +8185,99 @@ export declare const UpPageRouter: {
6601
8185
  }) => any;
6602
8186
  }, PublicProps, {
6603
8187
  readonly title: string;
6604
- readonly cardSize: "full" | "half";
8188
+ readonly showInfo: boolean;
8189
+ readonly infoContent: string;
6605
8190
  readonly icon: string[];
8191
+ readonly cardSize: "full" | "half";
6606
8192
  readonly params: Record<string, string>;
6607
8193
  readonly description: string;
6608
8194
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
6609
- titleRowRef: HTMLDivElement;
8195
+ infoTriggerRef: ({
8196
+ $: ComponentInternalInstance;
8197
+ $data: {};
8198
+ $props: Partial<{
8199
+ readonly showInfo: boolean;
8200
+ readonly infoContent: string;
8201
+ }> & Omit<{
8202
+ readonly showInfo: boolean;
8203
+ readonly infoContent: string;
8204
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
8205
+ $attrs: {
8206
+ [x: string]: unknown;
8207
+ };
8208
+ $refs: {
8209
+ [x: string]: unknown;
8210
+ } & {
8211
+ rootElRef: HTMLDivElement;
8212
+ infoTriggerRef: HTMLButtonElement;
8213
+ infoTooltipRef: HTMLDivElement;
8214
+ };
8215
+ $slots: Readonly<{
8216
+ [name: string]: Slot<any> | undefined;
8217
+ }>;
8218
+ $root: ComponentPublicInstance | null;
8219
+ $parent: ComponentPublicInstance | null;
8220
+ $host: Element | null;
8221
+ $emit: (event: string, ...args: any[]) => void;
8222
+ $el: HTMLDivElement;
8223
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
8224
+ readonly showInfo: {
8225
+ readonly type: BooleanConstructor;
8226
+ readonly default: false;
8227
+ };
8228
+ readonly infoContent: {
8229
+ readonly type: PropType<InfoTriggerInfoContent>;
8230
+ readonly default: "";
8231
+ };
8232
+ }>> & Readonly<{}>, {
8233
+ close: () => void;
8234
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
8235
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
8236
+ readonly showInfo: boolean;
8237
+ readonly infoContent: string;
8238
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
8239
+ beforeCreate?: (() => void) | (() => void)[];
8240
+ created?: (() => void) | (() => void)[];
8241
+ beforeMount?: (() => void) | (() => void)[];
8242
+ mounted?: (() => void) | (() => void)[];
8243
+ beforeUpdate?: (() => void) | (() => void)[];
8244
+ updated?: (() => void) | (() => void)[];
8245
+ activated?: (() => void) | (() => void)[];
8246
+ deactivated?: (() => void) | (() => void)[];
8247
+ beforeDestroy?: (() => void) | (() => void)[];
8248
+ beforeUnmount?: (() => void) | (() => void)[];
8249
+ destroyed?: (() => void) | (() => void)[];
8250
+ unmounted?: (() => void) | (() => void)[];
8251
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
8252
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
8253
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
8254
+ };
8255
+ $forceUpdate: () => void;
8256
+ $nextTick: nextTick;
8257
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
8258
+ } & Readonly<{
8259
+ readonly showInfo: boolean;
8260
+ readonly infoContent: string;
8261
+ }> & Omit<Readonly<ExtractPropTypes< {
8262
+ readonly showInfo: {
8263
+ readonly type: BooleanConstructor;
8264
+ readonly default: false;
8265
+ };
8266
+ readonly infoContent: {
8267
+ readonly type: PropType<InfoTriggerInfoContent>;
8268
+ readonly default: "";
8269
+ };
8270
+ }>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
8271
+ close: () => void;
8272
+ rootEl: Ref<HTMLElement | null, HTMLElement | null>;
8273
+ }> & {} & ComponentCustomProperties & {} & {
8274
+ $slots: {
8275
+ default?(_: {}): any;
8276
+ };
8277
+ }) | null;
6610
8278
  titleRef: HTMLDivElement;
6611
8279
  descriptionRef: HTMLDivElement;
6612
- }, HTMLButtonElement, ComponentProvideOptions, {
8280
+ }, HTMLDivElement, ComponentProvideOptions, {
6613
8281
  P: {};
6614
8282
  B: {};
6615
8283
  D: {};
@@ -6637,6 +8305,14 @@ export declare const UpPageRouter: {
6637
8305
  readonly type: StringConstructor;
6638
8306
  readonly default: "";
6639
8307
  };
8308
+ readonly showInfo: {
8309
+ readonly type: BooleanConstructor;
8310
+ readonly default: false;
8311
+ };
8312
+ readonly infoContent: {
8313
+ readonly type: StringConstructor;
8314
+ readonly default: "";
8315
+ };
6640
8316
  readonly icon: {
6641
8317
  readonly type: PropType<string[]>;
6642
8318
  readonly default: undefined;
@@ -6648,8 +8324,10 @@ export declare const UpPageRouter: {
6648
8324
  }) => any) | undefined;
6649
8325
  }>, {}, {}, {}, {}, {
6650
8326
  readonly title: string;
6651
- readonly cardSize: "full" | "half";
8327
+ readonly showInfo: boolean;
8328
+ readonly infoContent: string;
6652
8329
  readonly icon: string[];
8330
+ readonly cardSize: "full" | "half";
6653
8331
  readonly params: Record<string, string>;
6654
8332
  readonly description: string;
6655
8333
  }>;
@@ -6677,6 +8355,14 @@ readonly description: {
6677
8355
  readonly type: StringConstructor;
6678
8356
  readonly default: "";
6679
8357
  };
8358
+ readonly showInfo: {
8359
+ readonly type: BooleanConstructor;
8360
+ readonly default: false;
8361
+ };
8362
+ readonly infoContent: {
8363
+ readonly type: StringConstructor;
8364
+ readonly default: "";
8365
+ };
6680
8366
  readonly icon: {
6681
8367
  readonly type: PropType<string[]>;
6682
8368
  readonly default: undefined;
@@ -6693,8 +8379,10 @@ query: Record<string, string>;
6693
8379
  }) => any;
6694
8380
  }, string, {
6695
8381
  readonly title: string;
6696
- readonly cardSize: "full" | "half";
8382
+ readonly showInfo: boolean;
8383
+ readonly infoContent: string;
6697
8384
  readonly icon: string[];
8385
+ readonly cardSize: "full" | "half";
6698
8386
  readonly params: Record<string, string>;
6699
8387
  readonly description: string;
6700
8388
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
@@ -7365,6 +9053,14 @@ export declare const UpSubpageBoolItem: {
7365
9053
  type: PropType<ProductSubscribe[]>;
7366
9054
  default: () => never[];
7367
9055
  };
9056
+ showInfo: {
9057
+ type: BooleanConstructor;
9058
+ default: boolean;
9059
+ };
9060
+ infoContent: {
9061
+ type: StringConstructor;
9062
+ default: string;
9063
+ };
7368
9064
  enableOpenDialog: {
7369
9065
  type: BooleanConstructor;
7370
9066
  default: boolean;
@@ -7398,6 +9094,8 @@ export declare const UpSubpageBoolItem: {
7398
9094
  default: string;
7399
9095
  };
7400
9096
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
9097
+ showInfo: boolean;
9098
+ infoContent: string;
7401
9099
  subscribes: ProductSubscribe[];
7402
9100
  enableOpenDialog: boolean;
7403
9101
  openDialogShowTitle: boolean;
@@ -7419,6 +9117,14 @@ export declare const UpSubpageBoolItem: {
7419
9117
  type: PropType<ProductSubscribe[]>;
7420
9118
  default: () => never[];
7421
9119
  };
9120
+ showInfo: {
9121
+ type: BooleanConstructor;
9122
+ default: boolean;
9123
+ };
9124
+ infoContent: {
9125
+ type: StringConstructor;
9126
+ default: string;
9127
+ };
7422
9128
  enableOpenDialog: {
7423
9129
  type: BooleanConstructor;
7424
9130
  default: boolean;
@@ -7452,6 +9158,8 @@ export declare const UpSubpageBoolItem: {
7452
9158
  default: string;
7453
9159
  };
7454
9160
  }>> & Readonly<{}>, {}, {}, {}, {}, {
9161
+ showInfo: boolean;
9162
+ infoContent: string;
7455
9163
  subscribes: ProductSubscribe[];
7456
9164
  enableOpenDialog: boolean;
7457
9165
  openDialogShowTitle: boolean;
@@ -7470,6 +9178,14 @@ subscribes: {
7470
9178
  type: PropType<ProductSubscribe[]>;
7471
9179
  default: () => never[];
7472
9180
  };
9181
+ showInfo: {
9182
+ type: BooleanConstructor;
9183
+ default: boolean;
9184
+ };
9185
+ infoContent: {
9186
+ type: StringConstructor;
9187
+ default: string;
9188
+ };
7473
9189
  enableOpenDialog: {
7474
9190
  type: BooleanConstructor;
7475
9191
  default: boolean;
@@ -7503,6 +9219,8 @@ type: PropType<BoolIconCardLocaleText>;
7503
9219
  default: string;
7504
9220
  };
7505
9221
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
9222
+ showInfo: boolean;
9223
+ infoContent: string;
7506
9224
  subscribes: ProductSubscribe[];
7507
9225
  enableOpenDialog: boolean;
7508
9226
  openDialogShowTitle: boolean;
@@ -7604,7 +9322,17 @@ export declare const UpSubpageEnumItem: {
7604
9322
  type: PropType<Array<string | number>>;
7605
9323
  default: () => never[];
7606
9324
  };
9325
+ showInfo: {
9326
+ type: BooleanConstructor;
9327
+ default: boolean;
9328
+ };
9329
+ infoContent: {
9330
+ type: StringConstructor;
9331
+ default: string;
9332
+ };
7607
9333
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
9334
+ showInfo: boolean;
9335
+ infoContent: string;
7608
9336
  subscribes: ProductSubscribe[];
7609
9337
  visibleEnumValues: (string | number)[];
7610
9338
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
@@ -7623,7 +9351,17 @@ export declare const UpSubpageEnumItem: {
7623
9351
  type: PropType<Array<string | number>>;
7624
9352
  default: () => never[];
7625
9353
  };
9354
+ showInfo: {
9355
+ type: BooleanConstructor;
9356
+ default: boolean;
9357
+ };
9358
+ infoContent: {
9359
+ type: StringConstructor;
9360
+ default: string;
9361
+ };
7626
9362
  }>> & Readonly<{}>, {}, {}, {}, {}, {
9363
+ showInfo: boolean;
9364
+ infoContent: string;
7627
9365
  subscribes: ProductSubscribe[];
7628
9366
  visibleEnumValues: (string | number)[];
7629
9367
  }>;
@@ -7639,7 +9377,17 @@ visibleEnumValues: {
7639
9377
  type: PropType<Array<string | number>>;
7640
9378
  default: () => never[];
7641
9379
  };
9380
+ showInfo: {
9381
+ type: BooleanConstructor;
9382
+ default: boolean;
9383
+ };
9384
+ infoContent: {
9385
+ type: StringConstructor;
9386
+ default: string;
9387
+ };
7642
9388
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
9389
+ showInfo: boolean;
9390
+ infoContent: string;
7643
9391
  subscribes: ProductSubscribe[];
7644
9392
  visibleEnumValues: (string | number)[];
7645
9393
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
@@ -7824,7 +9572,17 @@ export declare const UpSubpageNumberItem: {
7824
9572
  type: StringConstructor;
7825
9573
  default: string;
7826
9574
  };
9575
+ showInfo: {
9576
+ type: BooleanConstructor;
9577
+ default: boolean;
9578
+ };
9579
+ infoContent: {
9580
+ type: StringConstructor;
9581
+ default: string;
9582
+ };
7827
9583
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
9584
+ showInfo: boolean;
9585
+ infoContent: string;
7828
9586
  subscribes: ProductSubscribe[];
7829
9587
  displayUnit: string;
7830
9588
  dialogPickerType: SubpageNumberItemDialogPickerType;
@@ -7858,7 +9616,17 @@ export declare const UpSubpageNumberItem: {
7858
9616
  type: StringConstructor;
7859
9617
  default: string;
7860
9618
  };
9619
+ showInfo: {
9620
+ type: BooleanConstructor;
9621
+ default: boolean;
9622
+ };
9623
+ infoContent: {
9624
+ type: StringConstructor;
9625
+ default: string;
9626
+ };
7861
9627
  }>> & Readonly<{}>, {}, {}, {}, {}, {
9628
+ showInfo: boolean;
9629
+ infoContent: string;
7862
9630
  subscribes: ProductSubscribe[];
7863
9631
  displayUnit: string;
7864
9632
  dialogPickerType: SubpageNumberItemDialogPickerType;
@@ -7889,7 +9657,17 @@ displayUnit: {
7889
9657
  type: StringConstructor;
7890
9658
  default: string;
7891
9659
  };
9660
+ showInfo: {
9661
+ type: BooleanConstructor;
9662
+ default: boolean;
9663
+ };
9664
+ infoContent: {
9665
+ type: StringConstructor;
9666
+ default: string;
9667
+ };
7892
9668
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
9669
+ showInfo: boolean;
9670
+ infoContent: string;
7893
9671
  subscribes: ProductSubscribe[];
7894
9672
  displayUnit: string;
7895
9673
  dialogPickerType: SubpageNumberItemDialogPickerType;
@@ -8231,7 +10009,17 @@ export declare const UpTimer: {
8231
10009
  type: PropType<TimerCardSize>;
8232
10010
  default: string;
8233
10011
  };
10012
+ showInfo: {
10013
+ type: BooleanConstructor;
10014
+ default: boolean;
10015
+ };
10016
+ infoContent: {
10017
+ type: StringConstructor;
10018
+ default: string;
10019
+ };
8234
10020
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
10021
+ showInfo: boolean;
10022
+ infoContent: string;
8235
10023
  cardSize: TimerCardSize;
8236
10024
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
8237
10025
  P: {};
@@ -8245,7 +10033,17 @@ export declare const UpTimer: {
8245
10033
  type: PropType<TimerCardSize>;
8246
10034
  default: string;
8247
10035
  };
10036
+ showInfo: {
10037
+ type: BooleanConstructor;
10038
+ default: boolean;
10039
+ };
10040
+ infoContent: {
10041
+ type: StringConstructor;
10042
+ default: string;
10043
+ };
8248
10044
  }>> & Readonly<{}>, {}, {}, {}, {}, {
10045
+ showInfo: boolean;
10046
+ infoContent: string;
8249
10047
  cardSize: TimerCardSize;
8250
10048
  }>;
8251
10049
  __isFragment?: never;
@@ -8256,7 +10054,17 @@ cardSize: {
8256
10054
  type: PropType<TimerCardSize>;
8257
10055
  default: string;
8258
10056
  };
10057
+ showInfo: {
10058
+ type: BooleanConstructor;
10059
+ default: boolean;
10060
+ };
10061
+ infoContent: {
10062
+ type: StringConstructor;
10063
+ default: string;
10064
+ };
8259
10065
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
10066
+ showInfo: boolean;
10067
+ infoContent: string;
8260
10068
  cardSize: TimerCardSize;
8261
10069
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
8262
10070
 
@@ -8275,18 +10083,54 @@ export declare const UpTimerCut: {
8275
10083
  } & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
8276
10084
 
8277
10085
  export declare const UpTimerNew: {
8278
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
10086
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
10087
+ showInfo: {
10088
+ type: BooleanConstructor;
10089
+ default: boolean;
10090
+ };
10091
+ infoContent: {
10092
+ type: StringConstructor;
10093
+ default: string;
10094
+ };
10095
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
10096
+ showInfo: boolean;
10097
+ infoContent: string;
10098
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
8279
10099
  P: {};
8280
10100
  B: {};
8281
10101
  D: {};
8282
10102
  C: {};
8283
10103
  M: {};
8284
10104
  Defaults: {};
8285
- }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
10105
+ }, Readonly<ExtractPropTypes< {
10106
+ showInfo: {
10107
+ type: BooleanConstructor;
10108
+ default: boolean;
10109
+ };
10110
+ infoContent: {
10111
+ type: StringConstructor;
10112
+ default: string;
10113
+ };
10114
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
10115
+ showInfo: boolean;
10116
+ infoContent: string;
10117
+ }>;
8286
10118
  __isFragment?: never;
8287
10119
  __isTeleport?: never;
8288
10120
  __isSuspense?: never;
8289
- } & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
10121
+ } & ComponentOptionsBase<Readonly<ExtractPropTypes< {
10122
+ showInfo: {
10123
+ type: BooleanConstructor;
10124
+ default: boolean;
10125
+ };
10126
+ infoContent: {
10127
+ type: StringConstructor;
10128
+ default: string;
10129
+ };
10130
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
10131
+ showInfo: boolean;
10132
+ infoContent: string;
10133
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
8290
10134
 
8291
10135
  export declare const UpTimeWheelPicker: {
8292
10136
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
@@ -8457,7 +10301,17 @@ export declare const UpWaterHeaterTimeEnd: {
8457
10301
  type: PropType<WaterHeaterTimeEndCardSize>;
8458
10302
  default: string;
8459
10303
  };
10304
+ showInfo: {
10305
+ type: BooleanConstructor;
10306
+ default: boolean;
10307
+ };
10308
+ infoContent: {
10309
+ type: StringConstructor;
10310
+ default: string;
10311
+ };
8460
10312
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
10313
+ showInfo: boolean;
10314
+ infoContent: string;
8461
10315
  cardSize: WaterHeaterTimeEndCardSize;
8462
10316
  subscribesStatus: ProductSubscribe[];
8463
10317
  subscribesLeftTime: ProductSubscribe[];
@@ -8501,7 +10355,17 @@ export declare const UpWaterHeaterTimeEnd: {
8501
10355
  type: PropType<WaterHeaterTimeEndCardSize>;
8502
10356
  default: string;
8503
10357
  };
10358
+ showInfo: {
10359
+ type: BooleanConstructor;
10360
+ default: boolean;
10361
+ };
10362
+ infoContent: {
10363
+ type: StringConstructor;
10364
+ default: string;
10365
+ };
8504
10366
  }>> & Readonly<{}>, {}, {}, {}, {}, {
10367
+ showInfo: boolean;
10368
+ infoContent: string;
8505
10369
  cardSize: WaterHeaterTimeEndCardSize;
8506
10370
  subscribesStatus: ProductSubscribe[];
8507
10371
  subscribesLeftTime: ProductSubscribe[];
@@ -8542,7 +10406,17 @@ cardSize: {
8542
10406
  type: PropType<WaterHeaterTimeEndCardSize>;
8543
10407
  default: string;
8544
10408
  };
10409
+ showInfo: {
10410
+ type: BooleanConstructor;
10411
+ default: boolean;
10412
+ };
10413
+ infoContent: {
10414
+ type: StringConstructor;
10415
+ default: string;
10416
+ };
8545
10417
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
10418
+ showInfo: boolean;
10419
+ infoContent: string;
8546
10420
  cardSize: WaterHeaterTimeEndCardSize;
8547
10421
  subscribesStatus: ProductSubscribe[];
8548
10422
  subscribesLeftTime: ProductSubscribe[];
@@ -8582,7 +10456,17 @@ export declare const UpWaterHeaterTimeStart: {
8582
10456
  type: PropType<WaterHeaterTimeStartCardSize>;
8583
10457
  default: string;
8584
10458
  };
10459
+ showInfo: {
10460
+ type: BooleanConstructor;
10461
+ default: boolean;
10462
+ };
10463
+ infoContent: {
10464
+ type: StringConstructor;
10465
+ default: string;
10466
+ };
8585
10467
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
10468
+ showInfo: boolean;
10469
+ infoContent: string;
8586
10470
  cardSize: WaterHeaterTimeStartCardSize;
8587
10471
  subscribesStatus: ProductSubscribe[];
8588
10472
  subscribesLeftTime: ProductSubscribe[];
@@ -8626,7 +10510,17 @@ export declare const UpWaterHeaterTimeStart: {
8626
10510
  type: PropType<WaterHeaterTimeStartCardSize>;
8627
10511
  default: string;
8628
10512
  };
10513
+ showInfo: {
10514
+ type: BooleanConstructor;
10515
+ default: boolean;
10516
+ };
10517
+ infoContent: {
10518
+ type: StringConstructor;
10519
+ default: string;
10520
+ };
8629
10521
  }>> & Readonly<{}>, {}, {}, {}, {}, {
10522
+ showInfo: boolean;
10523
+ infoContent: string;
8630
10524
  cardSize: WaterHeaterTimeStartCardSize;
8631
10525
  subscribesStatus: ProductSubscribe[];
8632
10526
  subscribesLeftTime: ProductSubscribe[];
@@ -8667,7 +10561,17 @@ cardSize: {
8667
10561
  type: PropType<WaterHeaterTimeStartCardSize>;
8668
10562
  default: string;
8669
10563
  };
10564
+ showInfo: {
10565
+ type: BooleanConstructor;
10566
+ default: boolean;
10567
+ };
10568
+ infoContent: {
10569
+ type: StringConstructor;
10570
+ default: string;
10571
+ };
8670
10572
  }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
10573
+ showInfo: boolean;
10574
+ infoContent: string;
8671
10575
  cardSize: WaterHeaterTimeStartCardSize;
8672
10576
  subscribesStatus: ProductSubscribe[];
8673
10577
  subscribesLeftTime: ProductSubscribe[];
@@ -8774,6 +10678,16 @@ declare const waterHeaterTimeEndProps: {
8774
10678
  type: PropType<WaterHeaterTimeEndCardSize>;
8775
10679
  default: string;
8776
10680
  };
10681
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
10682
+ showInfo: {
10683
+ type: BooleanConstructor;
10684
+ default: boolean;
10685
+ };
10686
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
10687
+ infoContent: {
10688
+ type: StringConstructor;
10689
+ default: string;
10690
+ };
8777
10691
  };
8778
10692
 
8779
10693
  export declare type WaterHeaterTimeStartCardSize = 'full' | 'half';
@@ -8815,6 +10729,16 @@ declare const waterHeaterTimeStartProps: {
8815
10729
  type: PropType<WaterHeaterTimeStartCardSize>;
8816
10730
  default: string;
8817
10731
  };
10732
+ /** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
10733
+ showInfo: {
10734
+ type: BooleanConstructor;
10735
+ default: boolean;
10736
+ };
10737
+ /** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
10738
+ infoContent: {
10739
+ type: StringConstructor;
10740
+ default: string;
10741
+ };
8818
10742
  };
8819
10743
 
8820
10744
  declare const WHEEL_ZONE_KEYS: readonly ["0", "1", "2", "3", "4"];