@ailife-dev-vue/uiplus-dev 0.1.33 → 0.1.35
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.css +1 -1
- package/dist/index.d.ts +2323 -94
- package/dist/index.mjs +22343 -21724
- package/package.json +1 -1
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
/**
|
|
@@ -636,6 +656,10 @@ export declare const enUS: {
|
|
|
636
656
|
pageRouter: {
|
|
637
657
|
defaultTitle: string;
|
|
638
658
|
};
|
|
659
|
+
generalRedirect: {
|
|
660
|
+
defaultTitle: string;
|
|
661
|
+
defaultSubtitle: string;
|
|
662
|
+
};
|
|
639
663
|
enumControl: {
|
|
640
664
|
prev: string;
|
|
641
665
|
next: string;
|
|
@@ -1098,6 +1122,16 @@ declare const generalCombinedDeliveryProps: {
|
|
|
1098
1122
|
type: PropType<GeneralCombinedDeliveryModeOptionConfig[]>;
|
|
1099
1123
|
default: () => never[];
|
|
1100
1124
|
};
|
|
1125
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1126
|
+
showInfo: {
|
|
1127
|
+
type: BooleanConstructor;
|
|
1128
|
+
default: boolean;
|
|
1129
|
+
};
|
|
1130
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1131
|
+
infoContent: {
|
|
1132
|
+
type: StringConstructor;
|
|
1133
|
+
default: string;
|
|
1134
|
+
};
|
|
1101
1135
|
};
|
|
1102
1136
|
|
|
1103
1137
|
export declare type GeneralCombinedDeliverySecondaryConfig = {
|
|
@@ -1200,6 +1234,16 @@ declare const generalEnumControlProps: {
|
|
|
1200
1234
|
type: PropType<GeneralEnumControlIconStyle>;
|
|
1201
1235
|
default: string;
|
|
1202
1236
|
};
|
|
1237
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1238
|
+
showInfo: {
|
|
1239
|
+
type: BooleanConstructor;
|
|
1240
|
+
default: boolean;
|
|
1241
|
+
};
|
|
1242
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1243
|
+
infoContent: {
|
|
1244
|
+
type: StringConstructor;
|
|
1245
|
+
default: string;
|
|
1246
|
+
};
|
|
1203
1247
|
};
|
|
1204
1248
|
|
|
1205
1249
|
export declare type GeneralEnumDialogCardCommandPayload = HilinkDeviceControlPayload;
|
|
@@ -1224,6 +1268,16 @@ declare const generalEnumDialogCardProps: {
|
|
|
1224
1268
|
type: PropType<string[]>;
|
|
1225
1269
|
default: undefined;
|
|
1226
1270
|
};
|
|
1271
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1272
|
+
showInfo: {
|
|
1273
|
+
type: BooleanConstructor;
|
|
1274
|
+
default: boolean;
|
|
1275
|
+
};
|
|
1276
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1277
|
+
infoContent: {
|
|
1278
|
+
type: StringConstructor;
|
|
1279
|
+
default: string;
|
|
1280
|
+
};
|
|
1227
1281
|
};
|
|
1228
1282
|
|
|
1229
1283
|
export declare type GeneralEnumDialogCardSize = 'full' | 'half';
|
|
@@ -1254,6 +1308,16 @@ declare const generalEnumDroplistCardProps: {
|
|
|
1254
1308
|
type: PropType<string[]>;
|
|
1255
1309
|
default: undefined;
|
|
1256
1310
|
};
|
|
1311
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1312
|
+
showInfo: {
|
|
1313
|
+
type: BooleanConstructor;
|
|
1314
|
+
default: boolean;
|
|
1315
|
+
};
|
|
1316
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1317
|
+
infoContent: {
|
|
1318
|
+
type: StringConstructor;
|
|
1319
|
+
default: string;
|
|
1320
|
+
};
|
|
1257
1321
|
};
|
|
1258
1322
|
|
|
1259
1323
|
export declare type GeneralEnumDroplistCardSize = 'full' | 'half';
|
|
@@ -1271,6 +1335,16 @@ declare const generalEnumSliderProps: {
|
|
|
1271
1335
|
type: PropType<Array<string | number>>;
|
|
1272
1336
|
default: () => never[];
|
|
1273
1337
|
};
|
|
1338
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1339
|
+
showInfo: {
|
|
1340
|
+
type: BooleanConstructor;
|
|
1341
|
+
default: boolean;
|
|
1342
|
+
};
|
|
1343
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1344
|
+
infoContent: {
|
|
1345
|
+
type: StringConstructor;
|
|
1346
|
+
default: string;
|
|
1347
|
+
};
|
|
1274
1348
|
};
|
|
1275
1349
|
|
|
1276
1350
|
export declare type GeneralEnumTileDisplayItem = {
|
|
@@ -1324,6 +1398,16 @@ declare const generalEnumTileProps: {
|
|
|
1324
1398
|
type: PropType<GeneralEnumTileOptionConfig[]>;
|
|
1325
1399
|
default: () => never[];
|
|
1326
1400
|
};
|
|
1401
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1402
|
+
showInfo: {
|
|
1403
|
+
type: BooleanConstructor;
|
|
1404
|
+
default: boolean;
|
|
1405
|
+
};
|
|
1406
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1407
|
+
infoContent: {
|
|
1408
|
+
type: StringConstructor;
|
|
1409
|
+
default: string;
|
|
1410
|
+
};
|
|
1327
1411
|
};
|
|
1328
1412
|
|
|
1329
1413
|
export declare type GeneralExecutionCardSize = 'full' | 'half';
|
|
@@ -1343,6 +1427,16 @@ declare const generalExecutionProps: {
|
|
|
1343
1427
|
type: PropType<GeneralExecutionCardSize>;
|
|
1344
1428
|
default: string;
|
|
1345
1429
|
};
|
|
1430
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1431
|
+
showInfo: {
|
|
1432
|
+
type: BooleanConstructor;
|
|
1433
|
+
default: boolean;
|
|
1434
|
+
};
|
|
1435
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1436
|
+
infoContent: {
|
|
1437
|
+
type: StringConstructor;
|
|
1438
|
+
default: string;
|
|
1439
|
+
};
|
|
1346
1440
|
};
|
|
1347
1441
|
|
|
1348
1442
|
export declare interface GeneralHistoricalRecordConfigItem {
|
|
@@ -1401,6 +1495,16 @@ declare const generalIntCardProps: {
|
|
|
1401
1495
|
type: BooleanConstructor;
|
|
1402
1496
|
default: boolean;
|
|
1403
1497
|
};
|
|
1498
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1499
|
+
showInfo: {
|
|
1500
|
+
type: BooleanConstructor;
|
|
1501
|
+
default: boolean;
|
|
1502
|
+
};
|
|
1503
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1504
|
+
infoContent: {
|
|
1505
|
+
type: StringConstructor;
|
|
1506
|
+
default: string;
|
|
1507
|
+
};
|
|
1404
1508
|
};
|
|
1405
1509
|
|
|
1406
1510
|
export declare type GeneralIntCardStyleType = 'slider' | 'stepper';
|
|
@@ -1437,6 +1541,16 @@ declare const generalIntCircularProps: {
|
|
|
1437
1541
|
type: PropType<string[]>;
|
|
1438
1542
|
default: undefined;
|
|
1439
1543
|
};
|
|
1544
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1545
|
+
showInfo: {
|
|
1546
|
+
type: BooleanConstructor;
|
|
1547
|
+
default: boolean;
|
|
1548
|
+
};
|
|
1549
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1550
|
+
infoContent: {
|
|
1551
|
+
type: StringConstructor;
|
|
1552
|
+
default: string;
|
|
1553
|
+
};
|
|
1440
1554
|
};
|
|
1441
1555
|
|
|
1442
1556
|
export declare type GeneralIntTileDisplayItem = {
|
|
@@ -1465,6 +1579,16 @@ declare const generalIntTileProps: {
|
|
|
1465
1579
|
type: PropType<GeneralIntTilePresetOptionConfig[]>;
|
|
1466
1580
|
default: () => never[];
|
|
1467
1581
|
};
|
|
1582
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1583
|
+
showInfo: {
|
|
1584
|
+
type: BooleanConstructor;
|
|
1585
|
+
default: boolean;
|
|
1586
|
+
};
|
|
1587
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1588
|
+
infoContent: {
|
|
1589
|
+
type: StringConstructor;
|
|
1590
|
+
default: string;
|
|
1591
|
+
};
|
|
1468
1592
|
};
|
|
1469
1593
|
|
|
1470
1594
|
export declare type GeneralMemoryControlCardSize = 'full' | 'half';
|
|
@@ -1482,6 +1606,16 @@ declare const generalMemoryControlProps: {
|
|
|
1482
1606
|
type: PropType<GeneralMemoryControlCardSize>;
|
|
1483
1607
|
default: string;
|
|
1484
1608
|
};
|
|
1609
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1610
|
+
showInfo: {
|
|
1611
|
+
type: BooleanConstructor;
|
|
1612
|
+
default: boolean;
|
|
1613
|
+
};
|
|
1614
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1615
|
+
infoContent: {
|
|
1616
|
+
type: StringConstructor;
|
|
1617
|
+
default: string;
|
|
1618
|
+
};
|
|
1485
1619
|
};
|
|
1486
1620
|
|
|
1487
1621
|
export declare type GeneralModeDisplayItem = {
|
|
@@ -1521,6 +1655,36 @@ declare const generalModeProps: {
|
|
|
1521
1655
|
};
|
|
1522
1656
|
};
|
|
1523
1657
|
|
|
1658
|
+
export declare type GeneralRedirectProps = ExtractPropTypes<typeof generalRedirectProps>;
|
|
1659
|
+
|
|
1660
|
+
declare const generalRedirectProps: {
|
|
1661
|
+
/** 主标题 text-or-key;空则回退库内 `generalRedirect.defaultTitle` */
|
|
1662
|
+
readonly title: {
|
|
1663
|
+
readonly type: StringConstructor;
|
|
1664
|
+
readonly default: "";
|
|
1665
|
+
};
|
|
1666
|
+
/** 副标题 text-or-key;空则回退库内 `generalRedirect.defaultSubtitle` */
|
|
1667
|
+
readonly subtitle: {
|
|
1668
|
+
readonly type: StringConstructor;
|
|
1669
|
+
readonly default: "";
|
|
1670
|
+
};
|
|
1671
|
+
/** 传给 startApp 第三参 JSON 的 appLink;纯字符串,不走 i18n */
|
|
1672
|
+
readonly appLink: {
|
|
1673
|
+
readonly type: StringConstructor;
|
|
1674
|
+
readonly default: "";
|
|
1675
|
+
};
|
|
1676
|
+
/** 应用包名,作为 startApp 第一参;纯字符串,不走 i18n */
|
|
1677
|
+
readonly packageName: {
|
|
1678
|
+
readonly type: StringConstructor;
|
|
1679
|
+
readonly default: "";
|
|
1680
|
+
};
|
|
1681
|
+
/** 可选;2 或 4 项 URL,后缀 on/off/DarkOn/DarkOff;未配置或全 custom 时用内置 ic_enum */
|
|
1682
|
+
readonly icon: {
|
|
1683
|
+
readonly type: PropType<string[]>;
|
|
1684
|
+
readonly default: undefined;
|
|
1685
|
+
};
|
|
1686
|
+
};
|
|
1687
|
+
|
|
1524
1688
|
export declare interface GeneralReminderEnumConfig {
|
|
1525
1689
|
enumVal: string;
|
|
1526
1690
|
/** i18n key */
|
|
@@ -1570,6 +1734,16 @@ declare const generalScreenProps: {
|
|
|
1570
1734
|
type: PropType<GeneralScreenFilterElementItemConfig[]>;
|
|
1571
1735
|
default: () => never[];
|
|
1572
1736
|
};
|
|
1737
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1738
|
+
showInfo: {
|
|
1739
|
+
type: BooleanConstructor;
|
|
1740
|
+
default: boolean;
|
|
1741
|
+
};
|
|
1742
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1743
|
+
infoContent: {
|
|
1744
|
+
type: StringConstructor;
|
|
1745
|
+
default: string;
|
|
1746
|
+
};
|
|
1573
1747
|
};
|
|
1574
1748
|
|
|
1575
1749
|
export declare interface GeneralScreenRowModel {
|
|
@@ -1616,6 +1790,16 @@ declare const generalTaskProps: {
|
|
|
1616
1790
|
type: PropType<GeneralTaskCardSize>;
|
|
1617
1791
|
default: string;
|
|
1618
1792
|
};
|
|
1793
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1794
|
+
showInfo: {
|
|
1795
|
+
type: BooleanConstructor;
|
|
1796
|
+
default: boolean;
|
|
1797
|
+
};
|
|
1798
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1799
|
+
infoContent: {
|
|
1800
|
+
type: StringConstructor;
|
|
1801
|
+
default: string;
|
|
1802
|
+
};
|
|
1619
1803
|
};
|
|
1620
1804
|
|
|
1621
1805
|
export declare type GeneralTimeSwitchCardSize = 'full' | 'half';
|
|
@@ -1644,6 +1828,16 @@ declare const generalTimeSwitchProps: {
|
|
|
1644
1828
|
readonly type: PropType<string[]>;
|
|
1645
1829
|
readonly default: undefined;
|
|
1646
1830
|
};
|
|
1831
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
1832
|
+
readonly showInfo: {
|
|
1833
|
+
readonly type: BooleanConstructor;
|
|
1834
|
+
readonly default: false;
|
|
1835
|
+
};
|
|
1836
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1837
|
+
readonly infoContent: {
|
|
1838
|
+
readonly type: StringConstructor;
|
|
1839
|
+
readonly default: "";
|
|
1840
|
+
};
|
|
1647
1841
|
};
|
|
1648
1842
|
|
|
1649
1843
|
declare type GeneralTimeSwitchWheelUnit = 'hourMinute' | 'minuteSecond';
|
|
@@ -1740,6 +1934,31 @@ export declare type HilinkSetDeviceInfoWithoutCallbackFn = (deviceId: string, pa
|
|
|
1740
1934
|
/** 与宿主约定:`setTitleVisible(visible, callbackName)`,`true` 显示原生标题栏,`false` 隐藏。 */
|
|
1741
1935
|
export declare type HilinkSetTitleVisibleFn = (visible: boolean, callbackName: string) => void;
|
|
1742
1936
|
|
|
1937
|
+
export declare type InfoTriggerExpose = {
|
|
1938
|
+
/** 关闭说明浮层(程序化场景;常规交互由组件内 dismiss 自动处理) */
|
|
1939
|
+
close: () => void;
|
|
1940
|
+
/** 根节点(可用于 useCardFitText 的 observe / titleRow) */
|
|
1941
|
+
rootEl: HTMLElement | null;
|
|
1942
|
+
};
|
|
1943
|
+
|
|
1944
|
+
declare type InfoTriggerInfoContent = string;
|
|
1945
|
+
|
|
1946
|
+
export declare type InfoTriggerProps = ExtractPropTypes<typeof infoTriggerProps>;
|
|
1947
|
+
|
|
1948
|
+
/** Bool 系说明入口契约:后续组件接入说明信息时复用本 props 形状 */
|
|
1949
|
+
declare const infoTriggerProps: {
|
|
1950
|
+
/** 是否展示说明入口;为 true 时始终渲染图标 */
|
|
1951
|
+
readonly showInfo: {
|
|
1952
|
+
readonly type: BooleanConstructor;
|
|
1953
|
+
readonly default: false;
|
|
1954
|
+
};
|
|
1955
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
1956
|
+
readonly infoContent: {
|
|
1957
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
1958
|
+
readonly default: "";
|
|
1959
|
+
};
|
|
1960
|
+
};
|
|
1961
|
+
|
|
1743
1962
|
/**
|
|
1744
1963
|
* boolGate:当前值是否落在 enable 允许集合内。
|
|
1745
1964
|
* 未命中时组件应局部只读(禁止切换),并保持当前视觉态(勿走 disable 强制关)。
|
|
@@ -2026,6 +2245,16 @@ declare const pageRouterProps: {
|
|
|
2026
2245
|
readonly type: StringConstructor;
|
|
2027
2246
|
readonly default: "";
|
|
2028
2247
|
};
|
|
2248
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
2249
|
+
readonly showInfo: {
|
|
2250
|
+
readonly type: BooleanConstructor;
|
|
2251
|
+
readonly default: false;
|
|
2252
|
+
};
|
|
2253
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
2254
|
+
readonly infoContent: {
|
|
2255
|
+
readonly type: StringConstructor;
|
|
2256
|
+
readonly default: "";
|
|
2257
|
+
};
|
|
2029
2258
|
/** 可选;2 或 4 项 URL,后缀 on/off/DarkOn/DarkOff(2 项时为 on+DarkOn 或 off+DarkOff,缺对镜像补齐);全 `custom` 或未配置时用内置 ic_enum 图标 */
|
|
2030
2259
|
readonly icon: {
|
|
2031
2260
|
readonly type: PropType<string[]>;
|
|
@@ -2416,6 +2645,16 @@ declare const subpageBoolItemProps: {
|
|
|
2416
2645
|
type: PropType<ProductSubscribe[]>;
|
|
2417
2646
|
default: () => never[];
|
|
2418
2647
|
};
|
|
2648
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
2649
|
+
showInfo: {
|
|
2650
|
+
type: BooleanConstructor;
|
|
2651
|
+
default: boolean;
|
|
2652
|
+
};
|
|
2653
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
2654
|
+
infoContent: {
|
|
2655
|
+
type: StringConstructor;
|
|
2656
|
+
default: string;
|
|
2657
|
+
};
|
|
2419
2658
|
/** 切换到开启态时是否弹出确认弹窗 */
|
|
2420
2659
|
enableOpenDialog: {
|
|
2421
2660
|
type: BooleanConstructor;
|
|
@@ -2497,6 +2736,16 @@ declare const subpageEnumItemProps: {
|
|
|
2497
2736
|
type: PropType<Array<string | number>>;
|
|
2498
2737
|
default: () => never[];
|
|
2499
2738
|
};
|
|
2739
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
2740
|
+
showInfo: {
|
|
2741
|
+
type: BooleanConstructor;
|
|
2742
|
+
default: boolean;
|
|
2743
|
+
};
|
|
2744
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
2745
|
+
infoContent: {
|
|
2746
|
+
type: StringConstructor;
|
|
2747
|
+
default: string;
|
|
2748
|
+
};
|
|
2500
2749
|
};
|
|
2501
2750
|
|
|
2502
2751
|
export declare type SubPageGroupProps = ExtractPropTypes<typeof subPageGroupProps>;
|
|
@@ -2572,6 +2821,16 @@ declare const subpageNumberItemProps: {
|
|
|
2572
2821
|
type: StringConstructor;
|
|
2573
2822
|
default: string;
|
|
2574
2823
|
};
|
|
2824
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
2825
|
+
showInfo: {
|
|
2826
|
+
type: BooleanConstructor;
|
|
2827
|
+
default: boolean;
|
|
2828
|
+
};
|
|
2829
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
2830
|
+
infoContent: {
|
|
2831
|
+
type: StringConstructor;
|
|
2832
|
+
default: string;
|
|
2833
|
+
};
|
|
2575
2834
|
};
|
|
2576
2835
|
|
|
2577
2836
|
export declare type TableLampFadeTimeCardSize = 'full' | 'half';
|
|
@@ -2735,7 +2994,18 @@ export { TimerFunctionOption as TimerNewFunctionOption }
|
|
|
2735
2994
|
export declare type TimerNewProps = ExtractPropTypes<typeof timerNewProps>;
|
|
2736
2995
|
|
|
2737
2996
|
/** UpTimerNew 无尺寸属性,卡片固定全宽 */
|
|
2738
|
-
declare const timerNewProps: {
|
|
2997
|
+
declare const timerNewProps: {
|
|
2998
|
+
/** 是否在卡片顶栏标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
2999
|
+
showInfo: {
|
|
3000
|
+
type: BooleanConstructor;
|
|
3001
|
+
default: boolean;
|
|
3002
|
+
};
|
|
3003
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
3004
|
+
infoContent: {
|
|
3005
|
+
type: StringConstructor;
|
|
3006
|
+
default: string;
|
|
3007
|
+
};
|
|
3008
|
+
};
|
|
2739
3009
|
|
|
2740
3010
|
export declare type TimerProps = ExtractPropTypes<typeof timerProps>;
|
|
2741
3011
|
|
|
@@ -2744,6 +3014,16 @@ declare const timerProps: {
|
|
|
2744
3014
|
type: PropType<TimerCardSize>;
|
|
2745
3015
|
default: string;
|
|
2746
3016
|
};
|
|
3017
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
3018
|
+
showInfo: {
|
|
3019
|
+
type: BooleanConstructor;
|
|
3020
|
+
default: boolean;
|
|
3021
|
+
};
|
|
3022
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
3023
|
+
infoContent: {
|
|
3024
|
+
type: StringConstructor;
|
|
3025
|
+
default: string;
|
|
3026
|
+
};
|
|
2747
3027
|
};
|
|
2748
3028
|
|
|
2749
3029
|
declare interface TimerRecord {
|
|
@@ -3026,9 +3306,10 @@ export declare const UpBoolIconCard: {
|
|
|
3026
3306
|
default: undefined;
|
|
3027
3307
|
};
|
|
3028
3308
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
3029
|
-
subscribes: ProductSubscribe[];
|
|
3030
3309
|
showInfo: boolean;
|
|
3031
3310
|
infoContent: string;
|
|
3311
|
+
icon: string[];
|
|
3312
|
+
subscribes: ProductSubscribe[];
|
|
3032
3313
|
enableOpenDialog: boolean;
|
|
3033
3314
|
openDialogShowTitle: boolean;
|
|
3034
3315
|
openDialogTitle: string;
|
|
@@ -3040,13 +3321,91 @@ export declare const UpBoolIconCard: {
|
|
|
3040
3321
|
cardSize: "full" | "half";
|
|
3041
3322
|
singleTapDispatch: boolean;
|
|
3042
3323
|
singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
|
|
3043
|
-
icon: string[];
|
|
3044
3324
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3325
|
+
infoTriggerRef: ({
|
|
3326
|
+
$: ComponentInternalInstance;
|
|
3327
|
+
$data: {};
|
|
3328
|
+
$props: Partial<{
|
|
3329
|
+
readonly showInfo: boolean;
|
|
3330
|
+
readonly infoContent: string;
|
|
3331
|
+
}> & Omit<{
|
|
3332
|
+
readonly showInfo: boolean;
|
|
3333
|
+
readonly infoContent: string;
|
|
3334
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
3335
|
+
$attrs: {
|
|
3336
|
+
[x: string]: unknown;
|
|
3337
|
+
};
|
|
3338
|
+
$refs: {
|
|
3339
|
+
[x: string]: unknown;
|
|
3340
|
+
} & {
|
|
3341
|
+
rootElRef: HTMLDivElement;
|
|
3048
3342
|
infoTriggerRef: HTMLButtonElement;
|
|
3049
3343
|
infoTooltipRef: HTMLDivElement;
|
|
3344
|
+
};
|
|
3345
|
+
$slots: Readonly<{
|
|
3346
|
+
[name: string]: Slot<any> | undefined;
|
|
3347
|
+
}>;
|
|
3348
|
+
$root: ComponentPublicInstance | null;
|
|
3349
|
+
$parent: ComponentPublicInstance | null;
|
|
3350
|
+
$host: Element | null;
|
|
3351
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
3352
|
+
$el: HTMLDivElement;
|
|
3353
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
3354
|
+
readonly showInfo: {
|
|
3355
|
+
readonly type: BooleanConstructor;
|
|
3356
|
+
readonly default: false;
|
|
3357
|
+
};
|
|
3358
|
+
readonly infoContent: {
|
|
3359
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
3360
|
+
readonly default: "";
|
|
3361
|
+
};
|
|
3362
|
+
}>> & Readonly<{}>, {
|
|
3363
|
+
close: () => void;
|
|
3364
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
3365
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
3366
|
+
readonly showInfo: boolean;
|
|
3367
|
+
readonly infoContent: string;
|
|
3368
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
3369
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
3370
|
+
created?: (() => void) | (() => void)[];
|
|
3371
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
3372
|
+
mounted?: (() => void) | (() => void)[];
|
|
3373
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
3374
|
+
updated?: (() => void) | (() => void)[];
|
|
3375
|
+
activated?: (() => void) | (() => void)[];
|
|
3376
|
+
deactivated?: (() => void) | (() => void)[];
|
|
3377
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
3378
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
3379
|
+
destroyed?: (() => void) | (() => void)[];
|
|
3380
|
+
unmounted?: (() => void) | (() => void)[];
|
|
3381
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
3382
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
3383
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
3384
|
+
};
|
|
3385
|
+
$forceUpdate: () => void;
|
|
3386
|
+
$nextTick: nextTick;
|
|
3387
|
+
$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;
|
|
3388
|
+
} & Readonly<{
|
|
3389
|
+
readonly showInfo: boolean;
|
|
3390
|
+
readonly infoContent: string;
|
|
3391
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
3392
|
+
readonly showInfo: {
|
|
3393
|
+
readonly type: BooleanConstructor;
|
|
3394
|
+
readonly default: false;
|
|
3395
|
+
};
|
|
3396
|
+
readonly infoContent: {
|
|
3397
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
3398
|
+
readonly default: "";
|
|
3399
|
+
};
|
|
3400
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
3401
|
+
close: () => void;
|
|
3402
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
3403
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
3404
|
+
$slots: {
|
|
3405
|
+
default?(_: {}): any;
|
|
3406
|
+
};
|
|
3407
|
+
}) | null;
|
|
3408
|
+
titleRef: HTMLDivElement;
|
|
3050
3409
|
statusRef: HTMLDivElement;
|
|
3051
3410
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
3052
3411
|
P: {};
|
|
@@ -3117,9 +3476,10 @@ export declare const UpBoolIconCard: {
|
|
|
3117
3476
|
default: undefined;
|
|
3118
3477
|
};
|
|
3119
3478
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
3120
|
-
subscribes: ProductSubscribe[];
|
|
3121
3479
|
showInfo: boolean;
|
|
3122
3480
|
infoContent: string;
|
|
3481
|
+
icon: string[];
|
|
3482
|
+
subscribes: ProductSubscribe[];
|
|
3123
3483
|
enableOpenDialog: boolean;
|
|
3124
3484
|
openDialogShowTitle: boolean;
|
|
3125
3485
|
openDialogTitle: string;
|
|
@@ -3131,7 +3491,6 @@ export declare const UpBoolIconCard: {
|
|
|
3131
3491
|
cardSize: "full" | "half";
|
|
3132
3492
|
singleTapDispatch: boolean;
|
|
3133
3493
|
singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
|
|
3134
|
-
icon: string[];
|
|
3135
3494
|
}>;
|
|
3136
3495
|
__isFragment?: never;
|
|
3137
3496
|
__isTeleport?: never;
|
|
@@ -3198,9 +3557,10 @@ type: PropType<string[]>;
|
|
|
3198
3557
|
default: undefined;
|
|
3199
3558
|
};
|
|
3200
3559
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
3201
|
-
subscribes: ProductSubscribe[];
|
|
3202
3560
|
showInfo: boolean;
|
|
3203
3561
|
infoContent: string;
|
|
3562
|
+
icon: string[];
|
|
3563
|
+
subscribes: ProductSubscribe[];
|
|
3204
3564
|
enableOpenDialog: boolean;
|
|
3205
3565
|
openDialogShowTitle: boolean;
|
|
3206
3566
|
openDialogTitle: string;
|
|
@@ -3212,7 +3572,6 @@ closeDialogContent: string;
|
|
|
3212
3572
|
cardSize: "full" | "half";
|
|
3213
3573
|
singleTapDispatch: boolean;
|
|
3214
3574
|
singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
|
|
3215
|
-
icon: string[];
|
|
3216
3575
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
3217
3576
|
|
|
3218
3577
|
export declare const UpBoolPanelCard: {
|
|
@@ -3262,9 +3621,9 @@ export declare const UpBoolPanelCard: {
|
|
|
3262
3621
|
default: string;
|
|
3263
3622
|
};
|
|
3264
3623
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
3265
|
-
subscribes: ProductSubscribe[];
|
|
3266
3624
|
showInfo: boolean;
|
|
3267
3625
|
infoContent: string;
|
|
3626
|
+
subscribes: ProductSubscribe[];
|
|
3268
3627
|
enableOpenDialog: boolean;
|
|
3269
3628
|
openDialogShowTitle: boolean;
|
|
3270
3629
|
openDialogTitle: string;
|
|
@@ -3274,11 +3633,90 @@ export declare const UpBoolPanelCard: {
|
|
|
3274
3633
|
closeDialogTitle: string;
|
|
3275
3634
|
closeDialogContent: string;
|
|
3276
3635
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3636
|
+
infoTriggerRef: ({
|
|
3637
|
+
$: ComponentInternalInstance;
|
|
3638
|
+
$data: {};
|
|
3639
|
+
$props: Partial<{
|
|
3640
|
+
readonly showInfo: boolean;
|
|
3641
|
+
readonly infoContent: string;
|
|
3642
|
+
}> & Omit<{
|
|
3643
|
+
readonly showInfo: boolean;
|
|
3644
|
+
readonly infoContent: string;
|
|
3645
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
3646
|
+
$attrs: {
|
|
3647
|
+
[x: string]: unknown;
|
|
3648
|
+
};
|
|
3649
|
+
$refs: {
|
|
3650
|
+
[x: string]: unknown;
|
|
3651
|
+
} & {
|
|
3652
|
+
rootElRef: HTMLDivElement;
|
|
3280
3653
|
infoTriggerRef: HTMLButtonElement;
|
|
3281
3654
|
infoTooltipRef: HTMLDivElement;
|
|
3655
|
+
};
|
|
3656
|
+
$slots: Readonly<{
|
|
3657
|
+
[name: string]: Slot<any> | undefined;
|
|
3658
|
+
}>;
|
|
3659
|
+
$root: ComponentPublicInstance | null;
|
|
3660
|
+
$parent: ComponentPublicInstance | null;
|
|
3661
|
+
$host: Element | null;
|
|
3662
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
3663
|
+
$el: HTMLDivElement;
|
|
3664
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
3665
|
+
readonly showInfo: {
|
|
3666
|
+
readonly type: BooleanConstructor;
|
|
3667
|
+
readonly default: false;
|
|
3668
|
+
};
|
|
3669
|
+
readonly infoContent: {
|
|
3670
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
3671
|
+
readonly default: "";
|
|
3672
|
+
};
|
|
3673
|
+
}>> & Readonly<{}>, {
|
|
3674
|
+
close: () => void;
|
|
3675
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
3676
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
3677
|
+
readonly showInfo: boolean;
|
|
3678
|
+
readonly infoContent: string;
|
|
3679
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
3680
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
3681
|
+
created?: (() => void) | (() => void)[];
|
|
3682
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
3683
|
+
mounted?: (() => void) | (() => void)[];
|
|
3684
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
3685
|
+
updated?: (() => void) | (() => void)[];
|
|
3686
|
+
activated?: (() => void) | (() => void)[];
|
|
3687
|
+
deactivated?: (() => void) | (() => void)[];
|
|
3688
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
3689
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
3690
|
+
destroyed?: (() => void) | (() => void)[];
|
|
3691
|
+
unmounted?: (() => void) | (() => void)[];
|
|
3692
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
3693
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
3694
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
3695
|
+
};
|
|
3696
|
+
$forceUpdate: () => void;
|
|
3697
|
+
$nextTick: nextTick;
|
|
3698
|
+
$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;
|
|
3699
|
+
} & Readonly<{
|
|
3700
|
+
readonly showInfo: boolean;
|
|
3701
|
+
readonly infoContent: string;
|
|
3702
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
3703
|
+
readonly showInfo: {
|
|
3704
|
+
readonly type: BooleanConstructor;
|
|
3705
|
+
readonly default: false;
|
|
3706
|
+
};
|
|
3707
|
+
readonly infoContent: {
|
|
3708
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
3709
|
+
readonly default: "";
|
|
3710
|
+
};
|
|
3711
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
3712
|
+
close: () => void;
|
|
3713
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
3714
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
3715
|
+
$slots: {
|
|
3716
|
+
default?(_: {}): any;
|
|
3717
|
+
};
|
|
3718
|
+
}) | null;
|
|
3719
|
+
titleRef: HTMLDivElement;
|
|
3282
3720
|
statusRef: HTMLDivElement;
|
|
3283
3721
|
dropzoneRef: HTMLDivElement;
|
|
3284
3722
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -3334,9 +3772,9 @@ export declare const UpBoolPanelCard: {
|
|
|
3334
3772
|
default: string;
|
|
3335
3773
|
};
|
|
3336
3774
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
3337
|
-
subscribes: ProductSubscribe[];
|
|
3338
3775
|
showInfo: boolean;
|
|
3339
3776
|
infoContent: string;
|
|
3777
|
+
subscribes: ProductSubscribe[];
|
|
3340
3778
|
enableOpenDialog: boolean;
|
|
3341
3779
|
openDialogShowTitle: boolean;
|
|
3342
3780
|
openDialogTitle: string;
|
|
@@ -3395,9 +3833,9 @@ type: PropType<BoolPanelCardLocaleText>;
|
|
|
3395
3833
|
default: string;
|
|
3396
3834
|
};
|
|
3397
3835
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
3398
|
-
subscribes: ProductSubscribe[];
|
|
3399
3836
|
showInfo: boolean;
|
|
3400
3837
|
infoContent: string;
|
|
3838
|
+
subscribes: ProductSubscribe[];
|
|
3401
3839
|
enableOpenDialog: boolean;
|
|
3402
3840
|
openDialogShowTitle: boolean;
|
|
3403
3841
|
openDialogTitle: string;
|
|
@@ -3475,9 +3913,10 @@ export declare const UpBoolSwitchCard: {
|
|
|
3475
3913
|
default: undefined;
|
|
3476
3914
|
};
|
|
3477
3915
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
3478
|
-
subscribes: ProductSubscribe[];
|
|
3479
3916
|
showInfo: boolean;
|
|
3480
3917
|
infoContent: string;
|
|
3918
|
+
icon: string[];
|
|
3919
|
+
subscribes: ProductSubscribe[];
|
|
3481
3920
|
enableOpenDialog: boolean;
|
|
3482
3921
|
openDialogShowTitle: boolean;
|
|
3483
3922
|
openDialogTitle: string;
|
|
@@ -3489,18 +3928,96 @@ export declare const UpBoolSwitchCard: {
|
|
|
3489
3928
|
cardSize: "full" | "half";
|
|
3490
3929
|
singleTapDispatch: boolean;
|
|
3491
3930
|
singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
|
|
3492
|
-
icon: string[];
|
|
3493
3931
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3932
|
+
infoTriggerRef: ({
|
|
3933
|
+
$: ComponentInternalInstance;
|
|
3934
|
+
$data: {};
|
|
3935
|
+
$props: Partial<{
|
|
3936
|
+
readonly showInfo: boolean;
|
|
3937
|
+
readonly infoContent: string;
|
|
3938
|
+
}> & Omit<{
|
|
3939
|
+
readonly showInfo: boolean;
|
|
3940
|
+
readonly infoContent: string;
|
|
3941
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
3942
|
+
$attrs: {
|
|
3943
|
+
[x: string]: unknown;
|
|
3944
|
+
};
|
|
3945
|
+
$refs: {
|
|
3946
|
+
[x: string]: unknown;
|
|
3947
|
+
} & {
|
|
3948
|
+
rootElRef: HTMLDivElement;
|
|
3497
3949
|
infoTriggerRef: HTMLButtonElement;
|
|
3498
3950
|
infoTooltipRef: HTMLDivElement;
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3951
|
+
};
|
|
3952
|
+
$slots: Readonly<{
|
|
3953
|
+
[name: string]: Slot<any> | undefined;
|
|
3954
|
+
}>;
|
|
3955
|
+
$root: ComponentPublicInstance | null;
|
|
3956
|
+
$parent: ComponentPublicInstance | null;
|
|
3957
|
+
$host: Element | null;
|
|
3958
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
3959
|
+
$el: HTMLDivElement;
|
|
3960
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
3961
|
+
readonly showInfo: {
|
|
3962
|
+
readonly type: BooleanConstructor;
|
|
3963
|
+
readonly default: false;
|
|
3964
|
+
};
|
|
3965
|
+
readonly infoContent: {
|
|
3966
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
3967
|
+
readonly default: "";
|
|
3968
|
+
};
|
|
3969
|
+
}>> & Readonly<{}>, {
|
|
3970
|
+
close: () => void;
|
|
3971
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
3972
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
3973
|
+
readonly showInfo: boolean;
|
|
3974
|
+
readonly infoContent: string;
|
|
3975
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
3976
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
3977
|
+
created?: (() => void) | (() => void)[];
|
|
3978
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
3979
|
+
mounted?: (() => void) | (() => void)[];
|
|
3980
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
3981
|
+
updated?: (() => void) | (() => void)[];
|
|
3982
|
+
activated?: (() => void) | (() => void)[];
|
|
3983
|
+
deactivated?: (() => void) | (() => void)[];
|
|
3984
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
3985
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
3986
|
+
destroyed?: (() => void) | (() => void)[];
|
|
3987
|
+
unmounted?: (() => void) | (() => void)[];
|
|
3988
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
3989
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
3990
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
3991
|
+
};
|
|
3992
|
+
$forceUpdate: () => void;
|
|
3993
|
+
$nextTick: nextTick;
|
|
3994
|
+
$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;
|
|
3995
|
+
} & Readonly<{
|
|
3996
|
+
readonly showInfo: boolean;
|
|
3997
|
+
readonly infoContent: string;
|
|
3998
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
3999
|
+
readonly showInfo: {
|
|
4000
|
+
readonly type: BooleanConstructor;
|
|
4001
|
+
readonly default: false;
|
|
4002
|
+
};
|
|
4003
|
+
readonly infoContent: {
|
|
4004
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
4005
|
+
readonly default: "";
|
|
4006
|
+
};
|
|
4007
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
4008
|
+
close: () => void;
|
|
4009
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
4010
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
4011
|
+
$slots: {
|
|
4012
|
+
default?(_: {}): any;
|
|
4013
|
+
};
|
|
4014
|
+
}) | null;
|
|
4015
|
+
titleRef: HTMLDivElement;
|
|
4016
|
+
statusRef: HTMLDivElement;
|
|
4017
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
4018
|
+
P: {};
|
|
4019
|
+
B: {};
|
|
4020
|
+
D: {};
|
|
3504
4021
|
C: {};
|
|
3505
4022
|
M: {};
|
|
3506
4023
|
Defaults: {};
|
|
@@ -3566,9 +4083,10 @@ export declare const UpBoolSwitchCard: {
|
|
|
3566
4083
|
default: undefined;
|
|
3567
4084
|
};
|
|
3568
4085
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
3569
|
-
subscribes: ProductSubscribe[];
|
|
3570
4086
|
showInfo: boolean;
|
|
3571
4087
|
infoContent: string;
|
|
4088
|
+
icon: string[];
|
|
4089
|
+
subscribes: ProductSubscribe[];
|
|
3572
4090
|
enableOpenDialog: boolean;
|
|
3573
4091
|
openDialogShowTitle: boolean;
|
|
3574
4092
|
openDialogTitle: string;
|
|
@@ -3580,7 +4098,6 @@ export declare const UpBoolSwitchCard: {
|
|
|
3580
4098
|
cardSize: "full" | "half";
|
|
3581
4099
|
singleTapDispatch: boolean;
|
|
3582
4100
|
singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
|
|
3583
|
-
icon: string[];
|
|
3584
4101
|
}>;
|
|
3585
4102
|
__isFragment?: never;
|
|
3586
4103
|
__isTeleport?: never;
|
|
@@ -3647,9 +4164,10 @@ type: PropType<string[]>;
|
|
|
3647
4164
|
default: undefined;
|
|
3648
4165
|
};
|
|
3649
4166
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
3650
|
-
subscribes: ProductSubscribe[];
|
|
3651
4167
|
showInfo: boolean;
|
|
3652
4168
|
infoContent: string;
|
|
4169
|
+
icon: string[];
|
|
4170
|
+
subscribes: ProductSubscribe[];
|
|
3653
4171
|
enableOpenDialog: boolean;
|
|
3654
4172
|
openDialogShowTitle: boolean;
|
|
3655
4173
|
openDialogTitle: string;
|
|
@@ -3661,7 +4179,6 @@ closeDialogContent: string;
|
|
|
3661
4179
|
cardSize: "full" | "half";
|
|
3662
4180
|
singleTapDispatch: boolean;
|
|
3663
4181
|
singleTapDispatchTarget: BoolIconCardSingleTapDispatchTarget;
|
|
3664
|
-
icon: string[];
|
|
3665
4182
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
3666
4183
|
|
|
3667
4184
|
export declare const UpCards: {
|
|
@@ -4083,7 +4600,17 @@ export declare const UpDelay: {
|
|
|
4083
4600
|
readonly type: PropType<DelayCardSize>;
|
|
4084
4601
|
readonly default: "half";
|
|
4085
4602
|
};
|
|
4603
|
+
readonly showInfo: {
|
|
4604
|
+
readonly type: BooleanConstructor;
|
|
4605
|
+
readonly default: false;
|
|
4606
|
+
};
|
|
4607
|
+
readonly infoContent: {
|
|
4608
|
+
readonly type: StringConstructor;
|
|
4609
|
+
readonly default: "";
|
|
4610
|
+
};
|
|
4086
4611
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
4612
|
+
readonly showInfo: boolean;
|
|
4613
|
+
readonly infoContent: string;
|
|
4087
4614
|
readonly subscribes: ProductSubscribe[];
|
|
4088
4615
|
readonly cardSize: DelayCardSize;
|
|
4089
4616
|
readonly recordSettingTime: boolean;
|
|
@@ -4107,7 +4634,17 @@ export declare const UpDelay: {
|
|
|
4107
4634
|
readonly type: PropType<DelayCardSize>;
|
|
4108
4635
|
readonly default: "half";
|
|
4109
4636
|
};
|
|
4637
|
+
readonly showInfo: {
|
|
4638
|
+
readonly type: BooleanConstructor;
|
|
4639
|
+
readonly default: false;
|
|
4640
|
+
};
|
|
4641
|
+
readonly infoContent: {
|
|
4642
|
+
readonly type: StringConstructor;
|
|
4643
|
+
readonly default: "";
|
|
4644
|
+
};
|
|
4110
4645
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
4646
|
+
readonly showInfo: boolean;
|
|
4647
|
+
readonly infoContent: string;
|
|
4111
4648
|
readonly subscribes: ProductSubscribe[];
|
|
4112
4649
|
readonly cardSize: DelayCardSize;
|
|
4113
4650
|
readonly recordSettingTime: boolean;
|
|
@@ -4128,7 +4665,17 @@ readonly cardSize: {
|
|
|
4128
4665
|
readonly type: PropType<DelayCardSize>;
|
|
4129
4666
|
readonly default: "half";
|
|
4130
4667
|
};
|
|
4668
|
+
readonly showInfo: {
|
|
4669
|
+
readonly type: BooleanConstructor;
|
|
4670
|
+
readonly default: false;
|
|
4671
|
+
};
|
|
4672
|
+
readonly infoContent: {
|
|
4673
|
+
readonly type: StringConstructor;
|
|
4674
|
+
readonly default: "";
|
|
4675
|
+
};
|
|
4131
4676
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
4677
|
+
readonly showInfo: boolean;
|
|
4678
|
+
readonly infoContent: string;
|
|
4132
4679
|
readonly subscribes: ProductSubscribe[];
|
|
4133
4680
|
readonly cardSize: DelayCardSize;
|
|
4134
4681
|
readonly recordSettingTime: boolean;
|
|
@@ -4173,9 +4720,9 @@ export declare const UpEnumStatus: {
|
|
|
4173
4720
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
4174
4721
|
"expanded-change": (expanded: boolean) => any;
|
|
4175
4722
|
}, PublicProps, {
|
|
4723
|
+
icon: string[];
|
|
4176
4724
|
subscribes: ProductSubscribe[];
|
|
4177
4725
|
cardSize: EnumStatusCardSize;
|
|
4178
|
-
icon: string[];
|
|
4179
4726
|
enumStatusConfigs: EnumStatusConfig[];
|
|
4180
4727
|
showReset: boolean;
|
|
4181
4728
|
bindData: ProductSubscribe[];
|
|
@@ -4229,9 +4776,9 @@ export declare const UpEnumStatus: {
|
|
|
4229
4776
|
}>> & Readonly<{
|
|
4230
4777
|
"onExpanded-change"?: ((expanded: boolean) => any) | undefined;
|
|
4231
4778
|
}>, {}, {}, {}, {}, {
|
|
4779
|
+
icon: string[];
|
|
4232
4780
|
subscribes: ProductSubscribe[];
|
|
4233
4781
|
cardSize: EnumStatusCardSize;
|
|
4234
|
-
icon: string[];
|
|
4235
4782
|
enumStatusConfigs: EnumStatusConfig[];
|
|
4236
4783
|
showReset: boolean;
|
|
4237
4784
|
bindData: ProductSubscribe[];
|
|
@@ -4279,9 +4826,9 @@ default: undefined;
|
|
|
4279
4826
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
4280
4827
|
"expanded-change": (expanded: boolean) => any;
|
|
4281
4828
|
}, string, {
|
|
4829
|
+
icon: string[];
|
|
4282
4830
|
subscribes: ProductSubscribe[];
|
|
4283
4831
|
cardSize: EnumStatusCardSize;
|
|
4284
|
-
icon: string[];
|
|
4285
4832
|
enumStatusConfigs: EnumStatusConfig[];
|
|
4286
4833
|
showReset: boolean;
|
|
4287
4834
|
bindData: ProductSubscribe[];
|
|
@@ -4435,7 +4982,17 @@ export declare const UpGeneralCombinedDelivery: {
|
|
|
4435
4982
|
type: PropType<GeneralCombinedDeliveryModeOptionConfig[]>;
|
|
4436
4983
|
default: () => never[];
|
|
4437
4984
|
};
|
|
4985
|
+
showInfo: {
|
|
4986
|
+
type: BooleanConstructor;
|
|
4987
|
+
default: boolean;
|
|
4988
|
+
};
|
|
4989
|
+
infoContent: {
|
|
4990
|
+
type: StringConstructor;
|
|
4991
|
+
default: string;
|
|
4992
|
+
};
|
|
4438
4993
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
4994
|
+
showInfo: boolean;
|
|
4995
|
+
infoContent: string;
|
|
4439
4996
|
subscribes: ProductSubscribe[];
|
|
4440
4997
|
showTitle: boolean;
|
|
4441
4998
|
modeOptionConfigs: GeneralCombinedDeliveryModeOptionConfig[];
|
|
@@ -4459,7 +5016,17 @@ export declare const UpGeneralCombinedDelivery: {
|
|
|
4459
5016
|
type: PropType<GeneralCombinedDeliveryModeOptionConfig[]>;
|
|
4460
5017
|
default: () => never[];
|
|
4461
5018
|
};
|
|
5019
|
+
showInfo: {
|
|
5020
|
+
type: BooleanConstructor;
|
|
5021
|
+
default: boolean;
|
|
5022
|
+
};
|
|
5023
|
+
infoContent: {
|
|
5024
|
+
type: StringConstructor;
|
|
5025
|
+
default: string;
|
|
5026
|
+
};
|
|
4462
5027
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
5028
|
+
showInfo: boolean;
|
|
5029
|
+
infoContent: string;
|
|
4463
5030
|
subscribes: ProductSubscribe[];
|
|
4464
5031
|
showTitle: boolean;
|
|
4465
5032
|
modeOptionConfigs: GeneralCombinedDeliveryModeOptionConfig[];
|
|
@@ -4480,7 +5047,17 @@ modeOptionConfigs: {
|
|
|
4480
5047
|
type: PropType<GeneralCombinedDeliveryModeOptionConfig[]>;
|
|
4481
5048
|
default: () => never[];
|
|
4482
5049
|
};
|
|
5050
|
+
showInfo: {
|
|
5051
|
+
type: BooleanConstructor;
|
|
5052
|
+
default: boolean;
|
|
5053
|
+
};
|
|
5054
|
+
infoContent: {
|
|
5055
|
+
type: StringConstructor;
|
|
5056
|
+
default: string;
|
|
5057
|
+
};
|
|
4483
5058
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
5059
|
+
showInfo: boolean;
|
|
5060
|
+
infoContent: string;
|
|
4484
5061
|
subscribes: ProductSubscribe[];
|
|
4485
5062
|
showTitle: boolean;
|
|
4486
5063
|
modeOptionConfigs: GeneralCombinedDeliveryModeOptionConfig[];
|
|
@@ -4670,7 +5247,17 @@ export declare const UpGeneralEnumControl: {
|
|
|
4670
5247
|
type: PropType<GeneralEnumControlIconStyle>;
|
|
4671
5248
|
default: string;
|
|
4672
5249
|
};
|
|
5250
|
+
showInfo: {
|
|
5251
|
+
type: BooleanConstructor;
|
|
5252
|
+
default: boolean;
|
|
5253
|
+
};
|
|
5254
|
+
infoContent: {
|
|
5255
|
+
type: StringConstructor;
|
|
5256
|
+
default: string;
|
|
5257
|
+
};
|
|
4673
5258
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
5259
|
+
showInfo: boolean;
|
|
5260
|
+
infoContent: string;
|
|
4674
5261
|
subscribes: ProductSubscribe[];
|
|
4675
5262
|
status1EnumVal: string | number;
|
|
4676
5263
|
status2EnumVal: string | number;
|
|
@@ -4704,7 +5291,17 @@ export declare const UpGeneralEnumControl: {
|
|
|
4704
5291
|
type: PropType<GeneralEnumControlIconStyle>;
|
|
4705
5292
|
default: string;
|
|
4706
5293
|
};
|
|
5294
|
+
showInfo: {
|
|
5295
|
+
type: BooleanConstructor;
|
|
5296
|
+
default: boolean;
|
|
5297
|
+
};
|
|
5298
|
+
infoContent: {
|
|
5299
|
+
type: StringConstructor;
|
|
5300
|
+
default: string;
|
|
5301
|
+
};
|
|
4707
5302
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
5303
|
+
showInfo: boolean;
|
|
5304
|
+
infoContent: string;
|
|
4708
5305
|
subscribes: ProductSubscribe[];
|
|
4709
5306
|
status1EnumVal: string | number;
|
|
4710
5307
|
status2EnumVal: string | number;
|
|
@@ -4735,7 +5332,17 @@ iconStyle: {
|
|
|
4735
5332
|
type: PropType<GeneralEnumControlIconStyle>;
|
|
4736
5333
|
default: string;
|
|
4737
5334
|
};
|
|
5335
|
+
showInfo: {
|
|
5336
|
+
type: BooleanConstructor;
|
|
5337
|
+
default: boolean;
|
|
5338
|
+
};
|
|
5339
|
+
infoContent: {
|
|
5340
|
+
type: StringConstructor;
|
|
5341
|
+
default: string;
|
|
5342
|
+
};
|
|
4738
5343
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
5344
|
+
showInfo: boolean;
|
|
5345
|
+
infoContent: string;
|
|
4739
5346
|
subscribes: ProductSubscribe[];
|
|
4740
5347
|
status1EnumVal: string | number;
|
|
4741
5348
|
status2EnumVal: string | number;
|
|
@@ -4761,13 +5368,105 @@ export declare const UpGeneralEnumDialogCard: {
|
|
|
4761
5368
|
type: PropType<string[]>;
|
|
4762
5369
|
default: undefined;
|
|
4763
5370
|
};
|
|
5371
|
+
showInfo: {
|
|
5372
|
+
type: BooleanConstructor;
|
|
5373
|
+
default: boolean;
|
|
5374
|
+
};
|
|
5375
|
+
infoContent: {
|
|
5376
|
+
type: StringConstructor;
|
|
5377
|
+
default: string;
|
|
5378
|
+
};
|
|
4764
5379
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
5380
|
+
showInfo: boolean;
|
|
5381
|
+
infoContent: string;
|
|
5382
|
+
icon: string[];
|
|
4765
5383
|
subscribes: ProductSubscribe[];
|
|
4766
5384
|
cardSize: GeneralEnumDialogCardSize;
|
|
4767
|
-
icon: string[];
|
|
4768
5385
|
visibleEnumValues: (string | number)[];
|
|
4769
5386
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
4770
|
-
|
|
5387
|
+
infoTriggerRef: ({
|
|
5388
|
+
$: ComponentInternalInstance;
|
|
5389
|
+
$data: {};
|
|
5390
|
+
$props: Partial<{
|
|
5391
|
+
readonly showInfo: boolean;
|
|
5392
|
+
readonly infoContent: string;
|
|
5393
|
+
}> & Omit<{
|
|
5394
|
+
readonly showInfo: boolean;
|
|
5395
|
+
readonly infoContent: string;
|
|
5396
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
5397
|
+
$attrs: {
|
|
5398
|
+
[x: string]: unknown;
|
|
5399
|
+
};
|
|
5400
|
+
$refs: {
|
|
5401
|
+
[x: string]: unknown;
|
|
5402
|
+
} & {
|
|
5403
|
+
rootElRef: HTMLDivElement;
|
|
5404
|
+
infoTriggerRef: HTMLButtonElement;
|
|
5405
|
+
infoTooltipRef: HTMLDivElement;
|
|
5406
|
+
};
|
|
5407
|
+
$slots: Readonly<{
|
|
5408
|
+
[name: string]: Slot<any> | undefined;
|
|
5409
|
+
}>;
|
|
5410
|
+
$root: ComponentPublicInstance | null;
|
|
5411
|
+
$parent: ComponentPublicInstance | null;
|
|
5412
|
+
$host: Element | null;
|
|
5413
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
5414
|
+
$el: HTMLDivElement;
|
|
5415
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
5416
|
+
readonly showInfo: {
|
|
5417
|
+
readonly type: BooleanConstructor;
|
|
5418
|
+
readonly default: false;
|
|
5419
|
+
};
|
|
5420
|
+
readonly infoContent: {
|
|
5421
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
5422
|
+
readonly default: "";
|
|
5423
|
+
};
|
|
5424
|
+
}>> & Readonly<{}>, {
|
|
5425
|
+
close: () => void;
|
|
5426
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
5427
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
5428
|
+
readonly showInfo: boolean;
|
|
5429
|
+
readonly infoContent: string;
|
|
5430
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
5431
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
5432
|
+
created?: (() => void) | (() => void)[];
|
|
5433
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
5434
|
+
mounted?: (() => void) | (() => void)[];
|
|
5435
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
5436
|
+
updated?: (() => void) | (() => void)[];
|
|
5437
|
+
activated?: (() => void) | (() => void)[];
|
|
5438
|
+
deactivated?: (() => void) | (() => void)[];
|
|
5439
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
5440
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
5441
|
+
destroyed?: (() => void) | (() => void)[];
|
|
5442
|
+
unmounted?: (() => void) | (() => void)[];
|
|
5443
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
5444
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
5445
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
5446
|
+
};
|
|
5447
|
+
$forceUpdate: () => void;
|
|
5448
|
+
$nextTick: nextTick;
|
|
5449
|
+
$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;
|
|
5450
|
+
} & Readonly<{
|
|
5451
|
+
readonly showInfo: boolean;
|
|
5452
|
+
readonly infoContent: string;
|
|
5453
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
5454
|
+
readonly showInfo: {
|
|
5455
|
+
readonly type: BooleanConstructor;
|
|
5456
|
+
readonly default: false;
|
|
5457
|
+
};
|
|
5458
|
+
readonly infoContent: {
|
|
5459
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
5460
|
+
readonly default: "";
|
|
5461
|
+
};
|
|
5462
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
5463
|
+
close: () => void;
|
|
5464
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
5465
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
5466
|
+
$slots: {
|
|
5467
|
+
default?(_: {}): any;
|
|
5468
|
+
};
|
|
5469
|
+
}) | null;
|
|
4771
5470
|
titleRef: HTMLDivElement;
|
|
4772
5471
|
subtitleRef: HTMLDivElement;
|
|
4773
5472
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -4794,10 +5493,20 @@ export declare const UpGeneralEnumDialogCard: {
|
|
|
4794
5493
|
type: PropType<string[]>;
|
|
4795
5494
|
default: undefined;
|
|
4796
5495
|
};
|
|
5496
|
+
showInfo: {
|
|
5497
|
+
type: BooleanConstructor;
|
|
5498
|
+
default: boolean;
|
|
5499
|
+
};
|
|
5500
|
+
infoContent: {
|
|
5501
|
+
type: StringConstructor;
|
|
5502
|
+
default: string;
|
|
5503
|
+
};
|
|
4797
5504
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
5505
|
+
showInfo: boolean;
|
|
5506
|
+
infoContent: string;
|
|
5507
|
+
icon: string[];
|
|
4798
5508
|
subscribes: ProductSubscribe[];
|
|
4799
5509
|
cardSize: GeneralEnumDialogCardSize;
|
|
4800
|
-
icon: string[];
|
|
4801
5510
|
visibleEnumValues: (string | number)[];
|
|
4802
5511
|
}>;
|
|
4803
5512
|
__isFragment?: never;
|
|
@@ -4820,10 +5529,20 @@ icon: {
|
|
|
4820
5529
|
type: PropType<string[]>;
|
|
4821
5530
|
default: undefined;
|
|
4822
5531
|
};
|
|
5532
|
+
showInfo: {
|
|
5533
|
+
type: BooleanConstructor;
|
|
5534
|
+
default: boolean;
|
|
5535
|
+
};
|
|
5536
|
+
infoContent: {
|
|
5537
|
+
type: StringConstructor;
|
|
5538
|
+
default: string;
|
|
5539
|
+
};
|
|
4823
5540
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
5541
|
+
showInfo: boolean;
|
|
5542
|
+
infoContent: string;
|
|
5543
|
+
icon: string[];
|
|
4824
5544
|
subscribes: ProductSubscribe[];
|
|
4825
5545
|
cardSize: GeneralEnumDialogCardSize;
|
|
4826
|
-
icon: string[];
|
|
4827
5546
|
visibleEnumValues: (string | number)[];
|
|
4828
5547
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
4829
5548
|
|
|
@@ -4849,16 +5568,108 @@ export declare const UpGeneralEnumDroplistCard: {
|
|
|
4849
5568
|
type: PropType<string[]>;
|
|
4850
5569
|
default: undefined;
|
|
4851
5570
|
};
|
|
5571
|
+
showInfo: {
|
|
5572
|
+
type: BooleanConstructor;
|
|
5573
|
+
default: boolean;
|
|
5574
|
+
};
|
|
5575
|
+
infoContent: {
|
|
5576
|
+
type: StringConstructor;
|
|
5577
|
+
default: string;
|
|
5578
|
+
};
|
|
4852
5579
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
5580
|
+
showInfo: boolean;
|
|
5581
|
+
infoContent: string;
|
|
5582
|
+
icon: string[];
|
|
4853
5583
|
subscribes: ProductSubscribe[];
|
|
4854
5584
|
cardSize: GeneralEnumDroplistCardSize;
|
|
4855
|
-
icon: string[];
|
|
4856
5585
|
visibleEnumValues: (string | number)[];
|
|
4857
5586
|
hasDefaultValue: boolean;
|
|
4858
5587
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
4859
5588
|
rootRef: HTMLDivElement;
|
|
4860
5589
|
dropdownRef: HTMLDivElement;
|
|
4861
|
-
|
|
5590
|
+
infoTriggerRef: ({
|
|
5591
|
+
$: ComponentInternalInstance;
|
|
5592
|
+
$data: {};
|
|
5593
|
+
$props: Partial<{
|
|
5594
|
+
readonly showInfo: boolean;
|
|
5595
|
+
readonly infoContent: string;
|
|
5596
|
+
}> & Omit<{
|
|
5597
|
+
readonly showInfo: boolean;
|
|
5598
|
+
readonly infoContent: string;
|
|
5599
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
5600
|
+
$attrs: {
|
|
5601
|
+
[x: string]: unknown;
|
|
5602
|
+
};
|
|
5603
|
+
$refs: {
|
|
5604
|
+
[x: string]: unknown;
|
|
5605
|
+
} & {
|
|
5606
|
+
rootElRef: HTMLDivElement;
|
|
5607
|
+
infoTriggerRef: HTMLButtonElement;
|
|
5608
|
+
infoTooltipRef: HTMLDivElement;
|
|
5609
|
+
};
|
|
5610
|
+
$slots: Readonly<{
|
|
5611
|
+
[name: string]: Slot<any> | undefined;
|
|
5612
|
+
}>;
|
|
5613
|
+
$root: ComponentPublicInstance | null;
|
|
5614
|
+
$parent: ComponentPublicInstance | null;
|
|
5615
|
+
$host: Element | null;
|
|
5616
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
5617
|
+
$el: HTMLDivElement;
|
|
5618
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
5619
|
+
readonly showInfo: {
|
|
5620
|
+
readonly type: BooleanConstructor;
|
|
5621
|
+
readonly default: false;
|
|
5622
|
+
};
|
|
5623
|
+
readonly infoContent: {
|
|
5624
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
5625
|
+
readonly default: "";
|
|
5626
|
+
};
|
|
5627
|
+
}>> & Readonly<{}>, {
|
|
5628
|
+
close: () => void;
|
|
5629
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
5630
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
5631
|
+
readonly showInfo: boolean;
|
|
5632
|
+
readonly infoContent: string;
|
|
5633
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
5634
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
5635
|
+
created?: (() => void) | (() => void)[];
|
|
5636
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
5637
|
+
mounted?: (() => void) | (() => void)[];
|
|
5638
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
5639
|
+
updated?: (() => void) | (() => void)[];
|
|
5640
|
+
activated?: (() => void) | (() => void)[];
|
|
5641
|
+
deactivated?: (() => void) | (() => void)[];
|
|
5642
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
5643
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
5644
|
+
destroyed?: (() => void) | (() => void)[];
|
|
5645
|
+
unmounted?: (() => void) | (() => void)[];
|
|
5646
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
5647
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
5648
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
5649
|
+
};
|
|
5650
|
+
$forceUpdate: () => void;
|
|
5651
|
+
$nextTick: nextTick;
|
|
5652
|
+
$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;
|
|
5653
|
+
} & Readonly<{
|
|
5654
|
+
readonly showInfo: boolean;
|
|
5655
|
+
readonly infoContent: string;
|
|
5656
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
5657
|
+
readonly showInfo: {
|
|
5658
|
+
readonly type: BooleanConstructor;
|
|
5659
|
+
readonly default: false;
|
|
5660
|
+
};
|
|
5661
|
+
readonly infoContent: {
|
|
5662
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
5663
|
+
readonly default: "";
|
|
5664
|
+
};
|
|
5665
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
5666
|
+
close: () => void;
|
|
5667
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
5668
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
5669
|
+
$slots: {
|
|
5670
|
+
default?(_: {}): any;
|
|
5671
|
+
};
|
|
5672
|
+
}) | null;
|
|
4862
5673
|
titleRef: HTMLDivElement;
|
|
4863
5674
|
subtitleRef: HTMLDivElement;
|
|
4864
5675
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -4889,10 +5700,20 @@ export declare const UpGeneralEnumDroplistCard: {
|
|
|
4889
5700
|
type: PropType<string[]>;
|
|
4890
5701
|
default: undefined;
|
|
4891
5702
|
};
|
|
5703
|
+
showInfo: {
|
|
5704
|
+
type: BooleanConstructor;
|
|
5705
|
+
default: boolean;
|
|
5706
|
+
};
|
|
5707
|
+
infoContent: {
|
|
5708
|
+
type: StringConstructor;
|
|
5709
|
+
default: string;
|
|
5710
|
+
};
|
|
4892
5711
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
5712
|
+
showInfo: boolean;
|
|
5713
|
+
infoContent: string;
|
|
5714
|
+
icon: string[];
|
|
4893
5715
|
subscribes: ProductSubscribe[];
|
|
4894
5716
|
cardSize: GeneralEnumDroplistCardSize;
|
|
4895
|
-
icon: string[];
|
|
4896
5717
|
visibleEnumValues: (string | number)[];
|
|
4897
5718
|
hasDefaultValue: boolean;
|
|
4898
5719
|
}>;
|
|
@@ -4920,10 +5741,20 @@ icon: {
|
|
|
4920
5741
|
type: PropType<string[]>;
|
|
4921
5742
|
default: undefined;
|
|
4922
5743
|
};
|
|
5744
|
+
showInfo: {
|
|
5745
|
+
type: BooleanConstructor;
|
|
5746
|
+
default: boolean;
|
|
5747
|
+
};
|
|
5748
|
+
infoContent: {
|
|
5749
|
+
type: StringConstructor;
|
|
5750
|
+
default: string;
|
|
5751
|
+
};
|
|
4923
5752
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
5753
|
+
showInfo: boolean;
|
|
5754
|
+
infoContent: string;
|
|
5755
|
+
icon: string[];
|
|
4924
5756
|
subscribes: ProductSubscribe[];
|
|
4925
5757
|
cardSize: GeneralEnumDroplistCardSize;
|
|
4926
|
-
icon: string[];
|
|
4927
5758
|
visibleEnumValues: (string | number)[];
|
|
4928
5759
|
hasDefaultValue: boolean;
|
|
4929
5760
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
@@ -4938,7 +5769,17 @@ export declare const UpGeneralEnumSlider: {
|
|
|
4938
5769
|
type: PropType<Array<string | number>>;
|
|
4939
5770
|
default: () => never[];
|
|
4940
5771
|
};
|
|
5772
|
+
showInfo: {
|
|
5773
|
+
type: BooleanConstructor;
|
|
5774
|
+
default: boolean;
|
|
5775
|
+
};
|
|
5776
|
+
infoContent: {
|
|
5777
|
+
type: StringConstructor;
|
|
5778
|
+
default: string;
|
|
5779
|
+
};
|
|
4941
5780
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
5781
|
+
showInfo: boolean;
|
|
5782
|
+
infoContent: string;
|
|
4942
5783
|
subscribes: ProductSubscribe[];
|
|
4943
5784
|
visibleEnumValues: (string | number)[];
|
|
4944
5785
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
@@ -4959,7 +5800,17 @@ export declare const UpGeneralEnumSlider: {
|
|
|
4959
5800
|
type: PropType<Array<string | number>>;
|
|
4960
5801
|
default: () => never[];
|
|
4961
5802
|
};
|
|
5803
|
+
showInfo: {
|
|
5804
|
+
type: BooleanConstructor;
|
|
5805
|
+
default: boolean;
|
|
5806
|
+
};
|
|
5807
|
+
infoContent: {
|
|
5808
|
+
type: StringConstructor;
|
|
5809
|
+
default: string;
|
|
5810
|
+
};
|
|
4962
5811
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
5812
|
+
showInfo: boolean;
|
|
5813
|
+
infoContent: string;
|
|
4963
5814
|
subscribes: ProductSubscribe[];
|
|
4964
5815
|
visibleEnumValues: (string | number)[];
|
|
4965
5816
|
}>;
|
|
@@ -4975,7 +5826,17 @@ visibleEnumValues: {
|
|
|
4975
5826
|
type: PropType<Array<string | number>>;
|
|
4976
5827
|
default: () => never[];
|
|
4977
5828
|
};
|
|
5829
|
+
showInfo: {
|
|
5830
|
+
type: BooleanConstructor;
|
|
5831
|
+
default: boolean;
|
|
5832
|
+
};
|
|
5833
|
+
infoContent: {
|
|
5834
|
+
type: StringConstructor;
|
|
5835
|
+
default: string;
|
|
5836
|
+
};
|
|
4978
5837
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
5838
|
+
showInfo: boolean;
|
|
5839
|
+
infoContent: string;
|
|
4979
5840
|
subscribes: ProductSubscribe[];
|
|
4980
5841
|
visibleEnumValues: (string | number)[];
|
|
4981
5842
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
@@ -5010,7 +5871,17 @@ export declare const UpGeneralEnumTile: {
|
|
|
5010
5871
|
type: PropType<GeneralEnumTileOptionConfig[]>;
|
|
5011
5872
|
default: () => never[];
|
|
5012
5873
|
};
|
|
5874
|
+
showInfo: {
|
|
5875
|
+
type: BooleanConstructor;
|
|
5876
|
+
default: boolean;
|
|
5877
|
+
};
|
|
5878
|
+
infoContent: {
|
|
5879
|
+
type: StringConstructor;
|
|
5880
|
+
default: string;
|
|
5881
|
+
};
|
|
5013
5882
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
5883
|
+
showInfo: boolean;
|
|
5884
|
+
infoContent: string;
|
|
5014
5885
|
subscribes: ProductSubscribe[];
|
|
5015
5886
|
singleTapDispatch: boolean;
|
|
5016
5887
|
showTitle: boolean;
|
|
@@ -5057,7 +5928,17 @@ export declare const UpGeneralEnumTile: {
|
|
|
5057
5928
|
type: PropType<GeneralEnumTileOptionConfig[]>;
|
|
5058
5929
|
default: () => never[];
|
|
5059
5930
|
};
|
|
5931
|
+
showInfo: {
|
|
5932
|
+
type: BooleanConstructor;
|
|
5933
|
+
default: boolean;
|
|
5934
|
+
};
|
|
5935
|
+
infoContent: {
|
|
5936
|
+
type: StringConstructor;
|
|
5937
|
+
default: string;
|
|
5938
|
+
};
|
|
5060
5939
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
5940
|
+
showInfo: boolean;
|
|
5941
|
+
infoContent: string;
|
|
5061
5942
|
subscribes: ProductSubscribe[];
|
|
5062
5943
|
singleTapDispatch: boolean;
|
|
5063
5944
|
showTitle: boolean;
|
|
@@ -5098,7 +5979,17 @@ moreEnumOptionConfigs: {
|
|
|
5098
5979
|
type: PropType<GeneralEnumTileOptionConfig[]>;
|
|
5099
5980
|
default: () => never[];
|
|
5100
5981
|
};
|
|
5982
|
+
showInfo: {
|
|
5983
|
+
type: BooleanConstructor;
|
|
5984
|
+
default: boolean;
|
|
5985
|
+
};
|
|
5986
|
+
infoContent: {
|
|
5987
|
+
type: StringConstructor;
|
|
5988
|
+
default: string;
|
|
5989
|
+
};
|
|
5101
5990
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
5991
|
+
showInfo: boolean;
|
|
5992
|
+
infoContent: string;
|
|
5102
5993
|
subscribes: ProductSubscribe[];
|
|
5103
5994
|
singleTapDispatch: boolean;
|
|
5104
5995
|
showTitle: boolean;
|
|
@@ -5122,11 +6013,103 @@ export declare const UpGeneralExecution: {
|
|
|
5122
6013
|
type: PropType<GeneralExecutionCardSize>;
|
|
5123
6014
|
default: string;
|
|
5124
6015
|
};
|
|
6016
|
+
showInfo: {
|
|
6017
|
+
type: BooleanConstructor;
|
|
6018
|
+
default: boolean;
|
|
6019
|
+
};
|
|
6020
|
+
infoContent: {
|
|
6021
|
+
type: StringConstructor;
|
|
6022
|
+
default: string;
|
|
6023
|
+
};
|
|
5125
6024
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
6025
|
+
showInfo: boolean;
|
|
6026
|
+
infoContent: string;
|
|
5126
6027
|
subscribes: ProductSubscribe[];
|
|
5127
6028
|
cardSize: GeneralExecutionCardSize;
|
|
5128
6029
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
5129
|
-
|
|
6030
|
+
infoTriggerRef: ({
|
|
6031
|
+
$: ComponentInternalInstance;
|
|
6032
|
+
$data: {};
|
|
6033
|
+
$props: Partial<{
|
|
6034
|
+
readonly showInfo: boolean;
|
|
6035
|
+
readonly infoContent: string;
|
|
6036
|
+
}> & Omit<{
|
|
6037
|
+
readonly showInfo: boolean;
|
|
6038
|
+
readonly infoContent: string;
|
|
6039
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
6040
|
+
$attrs: {
|
|
6041
|
+
[x: string]: unknown;
|
|
6042
|
+
};
|
|
6043
|
+
$refs: {
|
|
6044
|
+
[x: string]: unknown;
|
|
6045
|
+
} & {
|
|
6046
|
+
rootElRef: HTMLDivElement;
|
|
6047
|
+
infoTriggerRef: HTMLButtonElement;
|
|
6048
|
+
infoTooltipRef: HTMLDivElement;
|
|
6049
|
+
};
|
|
6050
|
+
$slots: Readonly<{
|
|
6051
|
+
[name: string]: Slot<any> | undefined;
|
|
6052
|
+
}>;
|
|
6053
|
+
$root: ComponentPublicInstance | null;
|
|
6054
|
+
$parent: ComponentPublicInstance | null;
|
|
6055
|
+
$host: Element | null;
|
|
6056
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
6057
|
+
$el: HTMLDivElement;
|
|
6058
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
6059
|
+
readonly showInfo: {
|
|
6060
|
+
readonly type: BooleanConstructor;
|
|
6061
|
+
readonly default: false;
|
|
6062
|
+
};
|
|
6063
|
+
readonly infoContent: {
|
|
6064
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
6065
|
+
readonly default: "";
|
|
6066
|
+
};
|
|
6067
|
+
}>> & Readonly<{}>, {
|
|
6068
|
+
close: () => void;
|
|
6069
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
6070
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
6071
|
+
readonly showInfo: boolean;
|
|
6072
|
+
readonly infoContent: string;
|
|
6073
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
6074
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
6075
|
+
created?: (() => void) | (() => void)[];
|
|
6076
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
6077
|
+
mounted?: (() => void) | (() => void)[];
|
|
6078
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
6079
|
+
updated?: (() => void) | (() => void)[];
|
|
6080
|
+
activated?: (() => void) | (() => void)[];
|
|
6081
|
+
deactivated?: (() => void) | (() => void)[];
|
|
6082
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
6083
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
6084
|
+
destroyed?: (() => void) | (() => void)[];
|
|
6085
|
+
unmounted?: (() => void) | (() => void)[];
|
|
6086
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
6087
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
6088
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
6089
|
+
};
|
|
6090
|
+
$forceUpdate: () => void;
|
|
6091
|
+
$nextTick: nextTick;
|
|
6092
|
+
$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;
|
|
6093
|
+
} & Readonly<{
|
|
6094
|
+
readonly showInfo: boolean;
|
|
6095
|
+
readonly infoContent: string;
|
|
6096
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
6097
|
+
readonly showInfo: {
|
|
6098
|
+
readonly type: BooleanConstructor;
|
|
6099
|
+
readonly default: false;
|
|
6100
|
+
};
|
|
6101
|
+
readonly infoContent: {
|
|
6102
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
6103
|
+
readonly default: "";
|
|
6104
|
+
};
|
|
6105
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
6106
|
+
close: () => void;
|
|
6107
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
6108
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
6109
|
+
$slots: {
|
|
6110
|
+
default?(_: {}): any;
|
|
6111
|
+
};
|
|
6112
|
+
}) | null;
|
|
5130
6113
|
titleRef: HTMLDivElement;
|
|
5131
6114
|
statusRef: HTMLDivElement;
|
|
5132
6115
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -5145,7 +6128,17 @@ export declare const UpGeneralExecution: {
|
|
|
5145
6128
|
type: PropType<GeneralExecutionCardSize>;
|
|
5146
6129
|
default: string;
|
|
5147
6130
|
};
|
|
6131
|
+
showInfo: {
|
|
6132
|
+
type: BooleanConstructor;
|
|
6133
|
+
default: boolean;
|
|
6134
|
+
};
|
|
6135
|
+
infoContent: {
|
|
6136
|
+
type: StringConstructor;
|
|
6137
|
+
default: string;
|
|
6138
|
+
};
|
|
5148
6139
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
6140
|
+
showInfo: boolean;
|
|
6141
|
+
infoContent: string;
|
|
5149
6142
|
subscribes: ProductSubscribe[];
|
|
5150
6143
|
cardSize: GeneralExecutionCardSize;
|
|
5151
6144
|
}>;
|
|
@@ -5161,7 +6154,17 @@ cardSize: {
|
|
|
5161
6154
|
type: PropType<GeneralExecutionCardSize>;
|
|
5162
6155
|
default: string;
|
|
5163
6156
|
};
|
|
6157
|
+
showInfo: {
|
|
6158
|
+
type: BooleanConstructor;
|
|
6159
|
+
default: boolean;
|
|
6160
|
+
};
|
|
6161
|
+
infoContent: {
|
|
6162
|
+
type: StringConstructor;
|
|
6163
|
+
default: string;
|
|
6164
|
+
};
|
|
5164
6165
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
6166
|
+
showInfo: boolean;
|
|
6167
|
+
infoContent: string;
|
|
5165
6168
|
subscribes: ProductSubscribe[];
|
|
5166
6169
|
cardSize: GeneralExecutionCardSize;
|
|
5167
6170
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
@@ -5223,13 +6226,191 @@ export declare const UpGeneralIntCard: {
|
|
|
5223
6226
|
type: BooleanConstructor;
|
|
5224
6227
|
default: boolean;
|
|
5225
6228
|
};
|
|
6229
|
+
showInfo: {
|
|
6230
|
+
type: BooleanConstructor;
|
|
6231
|
+
default: boolean;
|
|
6232
|
+
};
|
|
6233
|
+
infoContent: {
|
|
6234
|
+
type: StringConstructor;
|
|
6235
|
+
default: string;
|
|
6236
|
+
};
|
|
5226
6237
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
6238
|
+
showInfo: boolean;
|
|
6239
|
+
infoContent: string;
|
|
5227
6240
|
subscribes: ProductSubscribe[];
|
|
5228
6241
|
unit: string;
|
|
5229
6242
|
styleType: GeneralIntCardStyleType;
|
|
5230
6243
|
hasPopup: boolean;
|
|
5231
6244
|
isDeviceInt: boolean;
|
|
5232
|
-
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
6245
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
6246
|
+
sliderInfoTriggerRef: ({
|
|
6247
|
+
$: ComponentInternalInstance;
|
|
6248
|
+
$data: {};
|
|
6249
|
+
$props: Partial<{
|
|
6250
|
+
readonly showInfo: boolean;
|
|
6251
|
+
readonly infoContent: string;
|
|
6252
|
+
}> & Omit<{
|
|
6253
|
+
readonly showInfo: boolean;
|
|
6254
|
+
readonly infoContent: string;
|
|
6255
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
6256
|
+
$attrs: {
|
|
6257
|
+
[x: string]: unknown;
|
|
6258
|
+
};
|
|
6259
|
+
$refs: {
|
|
6260
|
+
[x: string]: unknown;
|
|
6261
|
+
} & {
|
|
6262
|
+
rootElRef: HTMLDivElement;
|
|
6263
|
+
infoTriggerRef: HTMLButtonElement;
|
|
6264
|
+
infoTooltipRef: HTMLDivElement;
|
|
6265
|
+
};
|
|
6266
|
+
$slots: Readonly<{
|
|
6267
|
+
[name: string]: Slot<any> | undefined;
|
|
6268
|
+
}>;
|
|
6269
|
+
$root: ComponentPublicInstance | null;
|
|
6270
|
+
$parent: ComponentPublicInstance | null;
|
|
6271
|
+
$host: Element | null;
|
|
6272
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
6273
|
+
$el: HTMLDivElement;
|
|
6274
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
6275
|
+
readonly showInfo: {
|
|
6276
|
+
readonly type: BooleanConstructor;
|
|
6277
|
+
readonly default: false;
|
|
6278
|
+
};
|
|
6279
|
+
readonly infoContent: {
|
|
6280
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
6281
|
+
readonly default: "";
|
|
6282
|
+
};
|
|
6283
|
+
}>> & Readonly<{}>, {
|
|
6284
|
+
close: () => void;
|
|
6285
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
6286
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
6287
|
+
readonly showInfo: boolean;
|
|
6288
|
+
readonly infoContent: string;
|
|
6289
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
6290
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
6291
|
+
created?: (() => void) | (() => void)[];
|
|
6292
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
6293
|
+
mounted?: (() => void) | (() => void)[];
|
|
6294
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
6295
|
+
updated?: (() => void) | (() => void)[];
|
|
6296
|
+
activated?: (() => void) | (() => void)[];
|
|
6297
|
+
deactivated?: (() => void) | (() => void)[];
|
|
6298
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
6299
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
6300
|
+
destroyed?: (() => void) | (() => void)[];
|
|
6301
|
+
unmounted?: (() => void) | (() => void)[];
|
|
6302
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
6303
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
6304
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
6305
|
+
};
|
|
6306
|
+
$forceUpdate: () => void;
|
|
6307
|
+
$nextTick: nextTick;
|
|
6308
|
+
$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;
|
|
6309
|
+
} & Readonly<{
|
|
6310
|
+
readonly showInfo: boolean;
|
|
6311
|
+
readonly infoContent: string;
|
|
6312
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
6313
|
+
readonly showInfo: {
|
|
6314
|
+
readonly type: BooleanConstructor;
|
|
6315
|
+
readonly default: false;
|
|
6316
|
+
};
|
|
6317
|
+
readonly infoContent: {
|
|
6318
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
6319
|
+
readonly default: "";
|
|
6320
|
+
};
|
|
6321
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
6322
|
+
close: () => void;
|
|
6323
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
6324
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
6325
|
+
$slots: {
|
|
6326
|
+
default?(_: {}): any;
|
|
6327
|
+
};
|
|
6328
|
+
}) | null;
|
|
6329
|
+
valueRowRef: HTMLDivElement;
|
|
6330
|
+
stepperInfoTriggerRef: ({
|
|
6331
|
+
$: ComponentInternalInstance;
|
|
6332
|
+
$data: {};
|
|
6333
|
+
$props: Partial<{
|
|
6334
|
+
readonly showInfo: boolean;
|
|
6335
|
+
readonly infoContent: string;
|
|
6336
|
+
}> & Omit<{
|
|
6337
|
+
readonly showInfo: boolean;
|
|
6338
|
+
readonly infoContent: string;
|
|
6339
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
6340
|
+
$attrs: {
|
|
6341
|
+
[x: string]: unknown;
|
|
6342
|
+
};
|
|
6343
|
+
$refs: {
|
|
6344
|
+
[x: string]: unknown;
|
|
6345
|
+
} & {
|
|
6346
|
+
rootElRef: HTMLDivElement;
|
|
6347
|
+
infoTriggerRef: HTMLButtonElement;
|
|
6348
|
+
infoTooltipRef: HTMLDivElement;
|
|
6349
|
+
};
|
|
6350
|
+
$slots: Readonly<{
|
|
6351
|
+
[name: string]: Slot<any> | undefined;
|
|
6352
|
+
}>;
|
|
6353
|
+
$root: ComponentPublicInstance | null;
|
|
6354
|
+
$parent: ComponentPublicInstance | null;
|
|
6355
|
+
$host: Element | null;
|
|
6356
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
6357
|
+
$el: HTMLDivElement;
|
|
6358
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
6359
|
+
readonly showInfo: {
|
|
6360
|
+
readonly type: BooleanConstructor;
|
|
6361
|
+
readonly default: false;
|
|
6362
|
+
};
|
|
6363
|
+
readonly infoContent: {
|
|
6364
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
6365
|
+
readonly default: "";
|
|
6366
|
+
};
|
|
6367
|
+
}>> & Readonly<{}>, {
|
|
6368
|
+
close: () => void;
|
|
6369
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
6370
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
6371
|
+
readonly showInfo: boolean;
|
|
6372
|
+
readonly infoContent: string;
|
|
6373
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
6374
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
6375
|
+
created?: (() => void) | (() => void)[];
|
|
6376
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
6377
|
+
mounted?: (() => void) | (() => void)[];
|
|
6378
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
6379
|
+
updated?: (() => void) | (() => void)[];
|
|
6380
|
+
activated?: (() => void) | (() => void)[];
|
|
6381
|
+
deactivated?: (() => void) | (() => void)[];
|
|
6382
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
6383
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
6384
|
+
destroyed?: (() => void) | (() => void)[];
|
|
6385
|
+
unmounted?: (() => void) | (() => void)[];
|
|
6386
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
6387
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
6388
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
6389
|
+
};
|
|
6390
|
+
$forceUpdate: () => void;
|
|
6391
|
+
$nextTick: nextTick;
|
|
6392
|
+
$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;
|
|
6393
|
+
} & Readonly<{
|
|
6394
|
+
readonly showInfo: boolean;
|
|
6395
|
+
readonly infoContent: string;
|
|
6396
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
6397
|
+
readonly showInfo: {
|
|
6398
|
+
readonly type: BooleanConstructor;
|
|
6399
|
+
readonly default: false;
|
|
6400
|
+
};
|
|
6401
|
+
readonly infoContent: {
|
|
6402
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
6403
|
+
readonly default: "";
|
|
6404
|
+
};
|
|
6405
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
6406
|
+
close: () => void;
|
|
6407
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
6408
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
6409
|
+
$slots: {
|
|
6410
|
+
default?(_: {}): any;
|
|
6411
|
+
};
|
|
6412
|
+
}) | null;
|
|
6413
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
5233
6414
|
P: {};
|
|
5234
6415
|
B: {};
|
|
5235
6416
|
D: {};
|
|
@@ -5257,7 +6438,17 @@ export declare const UpGeneralIntCard: {
|
|
|
5257
6438
|
type: BooleanConstructor;
|
|
5258
6439
|
default: boolean;
|
|
5259
6440
|
};
|
|
6441
|
+
showInfo: {
|
|
6442
|
+
type: BooleanConstructor;
|
|
6443
|
+
default: boolean;
|
|
6444
|
+
};
|
|
6445
|
+
infoContent: {
|
|
6446
|
+
type: StringConstructor;
|
|
6447
|
+
default: string;
|
|
6448
|
+
};
|
|
5260
6449
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
6450
|
+
showInfo: boolean;
|
|
6451
|
+
infoContent: string;
|
|
5261
6452
|
subscribes: ProductSubscribe[];
|
|
5262
6453
|
unit: string;
|
|
5263
6454
|
styleType: GeneralIntCardStyleType;
|
|
@@ -5288,7 +6479,17 @@ isDeviceInt: {
|
|
|
5288
6479
|
type: BooleanConstructor;
|
|
5289
6480
|
default: boolean;
|
|
5290
6481
|
};
|
|
6482
|
+
showInfo: {
|
|
6483
|
+
type: BooleanConstructor;
|
|
6484
|
+
default: boolean;
|
|
6485
|
+
};
|
|
6486
|
+
infoContent: {
|
|
6487
|
+
type: StringConstructor;
|
|
6488
|
+
default: string;
|
|
6489
|
+
};
|
|
5291
6490
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
6491
|
+
showInfo: boolean;
|
|
6492
|
+
infoContent: string;
|
|
5292
6493
|
subscribes: ProductSubscribe[];
|
|
5293
6494
|
unit: string;
|
|
5294
6495
|
styleType: GeneralIntCardStyleType;
|
|
@@ -5322,15 +6523,108 @@ export declare const UpGeneralIntCircular: {
|
|
|
5322
6523
|
type: PropType<string[]>;
|
|
5323
6524
|
default: undefined;
|
|
5324
6525
|
};
|
|
6526
|
+
showInfo: {
|
|
6527
|
+
type: BooleanConstructor;
|
|
6528
|
+
default: boolean;
|
|
6529
|
+
};
|
|
6530
|
+
infoContent: {
|
|
6531
|
+
type: StringConstructor;
|
|
6532
|
+
default: string;
|
|
6533
|
+
};
|
|
5325
6534
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
6535
|
+
showInfo: boolean;
|
|
6536
|
+
infoContent: string;
|
|
6537
|
+
icon: string[];
|
|
5326
6538
|
subscribes: ProductSubscribe[];
|
|
5327
6539
|
cardSize: GeneralIntCircularCardSize;
|
|
5328
|
-
icon: string[];
|
|
5329
6540
|
displayUnit: string;
|
|
5330
6541
|
wheelLoop: boolean;
|
|
5331
6542
|
dialogSubtitle: string;
|
|
5332
6543
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
5333
6544
|
textRef: HTMLDivElement;
|
|
6545
|
+
infoTriggerRef: ({
|
|
6546
|
+
$: ComponentInternalInstance;
|
|
6547
|
+
$data: {};
|
|
6548
|
+
$props: Partial<{
|
|
6549
|
+
readonly showInfo: boolean;
|
|
6550
|
+
readonly infoContent: string;
|
|
6551
|
+
}> & Omit<{
|
|
6552
|
+
readonly showInfo: boolean;
|
|
6553
|
+
readonly infoContent: string;
|
|
6554
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
6555
|
+
$attrs: {
|
|
6556
|
+
[x: string]: unknown;
|
|
6557
|
+
};
|
|
6558
|
+
$refs: {
|
|
6559
|
+
[x: string]: unknown;
|
|
6560
|
+
} & {
|
|
6561
|
+
rootElRef: HTMLDivElement;
|
|
6562
|
+
infoTriggerRef: HTMLButtonElement;
|
|
6563
|
+
infoTooltipRef: HTMLDivElement;
|
|
6564
|
+
};
|
|
6565
|
+
$slots: Readonly<{
|
|
6566
|
+
[name: string]: Slot<any> | undefined;
|
|
6567
|
+
}>;
|
|
6568
|
+
$root: ComponentPublicInstance | null;
|
|
6569
|
+
$parent: ComponentPublicInstance | null;
|
|
6570
|
+
$host: Element | null;
|
|
6571
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
6572
|
+
$el: HTMLDivElement;
|
|
6573
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
6574
|
+
readonly showInfo: {
|
|
6575
|
+
readonly type: BooleanConstructor;
|
|
6576
|
+
readonly default: false;
|
|
6577
|
+
};
|
|
6578
|
+
readonly infoContent: {
|
|
6579
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
6580
|
+
readonly default: "";
|
|
6581
|
+
};
|
|
6582
|
+
}>> & Readonly<{}>, {
|
|
6583
|
+
close: () => void;
|
|
6584
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
6585
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
6586
|
+
readonly showInfo: boolean;
|
|
6587
|
+
readonly infoContent: string;
|
|
6588
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
6589
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
6590
|
+
created?: (() => void) | (() => void)[];
|
|
6591
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
6592
|
+
mounted?: (() => void) | (() => void)[];
|
|
6593
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
6594
|
+
updated?: (() => void) | (() => void)[];
|
|
6595
|
+
activated?: (() => void) | (() => void)[];
|
|
6596
|
+
deactivated?: (() => void) | (() => void)[];
|
|
6597
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
6598
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
6599
|
+
destroyed?: (() => void) | (() => void)[];
|
|
6600
|
+
unmounted?: (() => void) | (() => void)[];
|
|
6601
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
6602
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
6603
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
6604
|
+
};
|
|
6605
|
+
$forceUpdate: () => void;
|
|
6606
|
+
$nextTick: nextTick;
|
|
6607
|
+
$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;
|
|
6608
|
+
} & Readonly<{
|
|
6609
|
+
readonly showInfo: boolean;
|
|
6610
|
+
readonly infoContent: string;
|
|
6611
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
6612
|
+
readonly showInfo: {
|
|
6613
|
+
readonly type: BooleanConstructor;
|
|
6614
|
+
readonly default: false;
|
|
6615
|
+
};
|
|
6616
|
+
readonly infoContent: {
|
|
6617
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
6618
|
+
readonly default: "";
|
|
6619
|
+
};
|
|
6620
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
6621
|
+
close: () => void;
|
|
6622
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
6623
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
6624
|
+
$slots: {
|
|
6625
|
+
default?(_: {}): any;
|
|
6626
|
+
};
|
|
6627
|
+
}) | null;
|
|
5334
6628
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
5335
6629
|
P: {};
|
|
5336
6630
|
B: {};
|
|
@@ -5363,10 +6657,20 @@ export declare const UpGeneralIntCircular: {
|
|
|
5363
6657
|
type: PropType<string[]>;
|
|
5364
6658
|
default: undefined;
|
|
5365
6659
|
};
|
|
6660
|
+
showInfo: {
|
|
6661
|
+
type: BooleanConstructor;
|
|
6662
|
+
default: boolean;
|
|
6663
|
+
};
|
|
6664
|
+
infoContent: {
|
|
6665
|
+
type: StringConstructor;
|
|
6666
|
+
default: string;
|
|
6667
|
+
};
|
|
5366
6668
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
6669
|
+
showInfo: boolean;
|
|
6670
|
+
infoContent: string;
|
|
6671
|
+
icon: string[];
|
|
5367
6672
|
subscribes: ProductSubscribe[];
|
|
5368
6673
|
cardSize: GeneralIntCircularCardSize;
|
|
5369
|
-
icon: string[];
|
|
5370
6674
|
displayUnit: string;
|
|
5371
6675
|
wheelLoop: boolean;
|
|
5372
6676
|
dialogSubtitle: string;
|
|
@@ -5399,10 +6703,20 @@ icon: {
|
|
|
5399
6703
|
type: PropType<string[]>;
|
|
5400
6704
|
default: undefined;
|
|
5401
6705
|
};
|
|
6706
|
+
showInfo: {
|
|
6707
|
+
type: BooleanConstructor;
|
|
6708
|
+
default: boolean;
|
|
6709
|
+
};
|
|
6710
|
+
infoContent: {
|
|
6711
|
+
type: StringConstructor;
|
|
6712
|
+
default: string;
|
|
6713
|
+
};
|
|
5402
6714
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
6715
|
+
showInfo: boolean;
|
|
6716
|
+
infoContent: string;
|
|
6717
|
+
icon: string[];
|
|
5403
6718
|
subscribes: ProductSubscribe[];
|
|
5404
6719
|
cardSize: GeneralIntCircularCardSize;
|
|
5405
|
-
icon: string[];
|
|
5406
6720
|
displayUnit: string;
|
|
5407
6721
|
wheelLoop: boolean;
|
|
5408
6722
|
dialogSubtitle: string;
|
|
@@ -5418,7 +6732,17 @@ export declare const UpGeneralIntTile: {
|
|
|
5418
6732
|
type: PropType<GeneralIntTilePresetOptionConfig[]>;
|
|
5419
6733
|
default: () => never[];
|
|
5420
6734
|
};
|
|
6735
|
+
showInfo: {
|
|
6736
|
+
type: BooleanConstructor;
|
|
6737
|
+
default: boolean;
|
|
6738
|
+
};
|
|
6739
|
+
infoContent: {
|
|
6740
|
+
type: StringConstructor;
|
|
6741
|
+
default: string;
|
|
6742
|
+
};
|
|
5421
6743
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
6744
|
+
showInfo: boolean;
|
|
6745
|
+
infoContent: string;
|
|
5422
6746
|
subscribes: ProductSubscribe[];
|
|
5423
6747
|
intPresetOptionConfigs: GeneralIntTilePresetOptionConfig[];
|
|
5424
6748
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -5437,7 +6761,17 @@ export declare const UpGeneralIntTile: {
|
|
|
5437
6761
|
type: PropType<GeneralIntTilePresetOptionConfig[]>;
|
|
5438
6762
|
default: () => never[];
|
|
5439
6763
|
};
|
|
6764
|
+
showInfo: {
|
|
6765
|
+
type: BooleanConstructor;
|
|
6766
|
+
default: boolean;
|
|
6767
|
+
};
|
|
6768
|
+
infoContent: {
|
|
6769
|
+
type: StringConstructor;
|
|
6770
|
+
default: string;
|
|
6771
|
+
};
|
|
5440
6772
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
6773
|
+
showInfo: boolean;
|
|
6774
|
+
infoContent: string;
|
|
5441
6775
|
subscribes: ProductSubscribe[];
|
|
5442
6776
|
intPresetOptionConfigs: GeneralIntTilePresetOptionConfig[];
|
|
5443
6777
|
}>;
|
|
@@ -5453,7 +6787,17 @@ intPresetOptionConfigs: {
|
|
|
5453
6787
|
type: PropType<GeneralIntTilePresetOptionConfig[]>;
|
|
5454
6788
|
default: () => never[];
|
|
5455
6789
|
};
|
|
6790
|
+
showInfo: {
|
|
6791
|
+
type: BooleanConstructor;
|
|
6792
|
+
default: boolean;
|
|
6793
|
+
};
|
|
6794
|
+
infoContent: {
|
|
6795
|
+
type: StringConstructor;
|
|
6796
|
+
default: string;
|
|
6797
|
+
};
|
|
5456
6798
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
6799
|
+
showInfo: boolean;
|
|
6800
|
+
infoContent: string;
|
|
5457
6801
|
subscribes: ProductSubscribe[];
|
|
5458
6802
|
intPresetOptionConfigs: GeneralIntTilePresetOptionConfig[];
|
|
5459
6803
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
@@ -5468,11 +6812,103 @@ export declare const UpGeneralMemoryControl: {
|
|
|
5468
6812
|
type: PropType<GeneralMemoryControlCardSize>;
|
|
5469
6813
|
default: string;
|
|
5470
6814
|
};
|
|
6815
|
+
showInfo: {
|
|
6816
|
+
type: BooleanConstructor;
|
|
6817
|
+
default: boolean;
|
|
6818
|
+
};
|
|
6819
|
+
infoContent: {
|
|
6820
|
+
type: StringConstructor;
|
|
6821
|
+
default: string;
|
|
6822
|
+
};
|
|
5471
6823
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
6824
|
+
showInfo: boolean;
|
|
6825
|
+
infoContent: string;
|
|
5472
6826
|
subscribes: ProductSubscribe[];
|
|
5473
6827
|
cardSize: GeneralMemoryControlCardSize;
|
|
5474
6828
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
5475
|
-
|
|
6829
|
+
infoTriggerRef: ({
|
|
6830
|
+
$: ComponentInternalInstance;
|
|
6831
|
+
$data: {};
|
|
6832
|
+
$props: Partial<{
|
|
6833
|
+
readonly showInfo: boolean;
|
|
6834
|
+
readonly infoContent: string;
|
|
6835
|
+
}> & Omit<{
|
|
6836
|
+
readonly showInfo: boolean;
|
|
6837
|
+
readonly infoContent: string;
|
|
6838
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
6839
|
+
$attrs: {
|
|
6840
|
+
[x: string]: unknown;
|
|
6841
|
+
};
|
|
6842
|
+
$refs: {
|
|
6843
|
+
[x: string]: unknown;
|
|
6844
|
+
} & {
|
|
6845
|
+
rootElRef: HTMLDivElement;
|
|
6846
|
+
infoTriggerRef: HTMLButtonElement;
|
|
6847
|
+
infoTooltipRef: HTMLDivElement;
|
|
6848
|
+
};
|
|
6849
|
+
$slots: Readonly<{
|
|
6850
|
+
[name: string]: Slot<any> | undefined;
|
|
6851
|
+
}>;
|
|
6852
|
+
$root: ComponentPublicInstance | null;
|
|
6853
|
+
$parent: ComponentPublicInstance | null;
|
|
6854
|
+
$host: Element | null;
|
|
6855
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
6856
|
+
$el: HTMLDivElement;
|
|
6857
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
6858
|
+
readonly showInfo: {
|
|
6859
|
+
readonly type: BooleanConstructor;
|
|
6860
|
+
readonly default: false;
|
|
6861
|
+
};
|
|
6862
|
+
readonly infoContent: {
|
|
6863
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
6864
|
+
readonly default: "";
|
|
6865
|
+
};
|
|
6866
|
+
}>> & Readonly<{}>, {
|
|
6867
|
+
close: () => void;
|
|
6868
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
6869
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
6870
|
+
readonly showInfo: boolean;
|
|
6871
|
+
readonly infoContent: string;
|
|
6872
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
6873
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
6874
|
+
created?: (() => void) | (() => void)[];
|
|
6875
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
6876
|
+
mounted?: (() => void) | (() => void)[];
|
|
6877
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
6878
|
+
updated?: (() => void) | (() => void)[];
|
|
6879
|
+
activated?: (() => void) | (() => void)[];
|
|
6880
|
+
deactivated?: (() => void) | (() => void)[];
|
|
6881
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
6882
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
6883
|
+
destroyed?: (() => void) | (() => void)[];
|
|
6884
|
+
unmounted?: (() => void) | (() => void)[];
|
|
6885
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
6886
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
6887
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
6888
|
+
};
|
|
6889
|
+
$forceUpdate: () => void;
|
|
6890
|
+
$nextTick: nextTick;
|
|
6891
|
+
$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;
|
|
6892
|
+
} & Readonly<{
|
|
6893
|
+
readonly showInfo: boolean;
|
|
6894
|
+
readonly infoContent: string;
|
|
6895
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
6896
|
+
readonly showInfo: {
|
|
6897
|
+
readonly type: BooleanConstructor;
|
|
6898
|
+
readonly default: false;
|
|
6899
|
+
};
|
|
6900
|
+
readonly infoContent: {
|
|
6901
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
6902
|
+
readonly default: "";
|
|
6903
|
+
};
|
|
6904
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
6905
|
+
close: () => void;
|
|
6906
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
6907
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
6908
|
+
$slots: {
|
|
6909
|
+
default?(_: {}): any;
|
|
6910
|
+
};
|
|
6911
|
+
}) | null;
|
|
5476
6912
|
titleRef: HTMLDivElement;
|
|
5477
6913
|
statusRef: HTMLDivElement;
|
|
5478
6914
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -5491,7 +6927,17 @@ export declare const UpGeneralMemoryControl: {
|
|
|
5491
6927
|
type: PropType<GeneralMemoryControlCardSize>;
|
|
5492
6928
|
default: string;
|
|
5493
6929
|
};
|
|
6930
|
+
showInfo: {
|
|
6931
|
+
type: BooleanConstructor;
|
|
6932
|
+
default: boolean;
|
|
6933
|
+
};
|
|
6934
|
+
infoContent: {
|
|
6935
|
+
type: StringConstructor;
|
|
6936
|
+
default: string;
|
|
6937
|
+
};
|
|
5494
6938
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
6939
|
+
showInfo: boolean;
|
|
6940
|
+
infoContent: string;
|
|
5495
6941
|
subscribes: ProductSubscribe[];
|
|
5496
6942
|
cardSize: GeneralMemoryControlCardSize;
|
|
5497
6943
|
}>;
|
|
@@ -5507,7 +6953,17 @@ cardSize: {
|
|
|
5507
6953
|
type: PropType<GeneralMemoryControlCardSize>;
|
|
5508
6954
|
default: string;
|
|
5509
6955
|
};
|
|
6956
|
+
showInfo: {
|
|
6957
|
+
type: BooleanConstructor;
|
|
6958
|
+
default: boolean;
|
|
6959
|
+
};
|
|
6960
|
+
infoContent: {
|
|
6961
|
+
type: StringConstructor;
|
|
6962
|
+
default: string;
|
|
6963
|
+
};
|
|
5510
6964
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
6965
|
+
showInfo: boolean;
|
|
6966
|
+
infoContent: string;
|
|
5511
6967
|
subscribes: ProductSubscribe[];
|
|
5512
6968
|
cardSize: GeneralMemoryControlCardSize;
|
|
5513
6969
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
@@ -5523,15 +6979,96 @@ export declare const UpGeneralMode: {
|
|
|
5523
6979
|
default: string;
|
|
5524
6980
|
validator: (v: string) => v is "grid" | "list";
|
|
5525
6981
|
};
|
|
5526
|
-
modeOptionConfigs: {
|
|
5527
|
-
type: PropType<GeneralModeOptionConfig[]>;
|
|
5528
|
-
default: () => never[];
|
|
6982
|
+
modeOptionConfigs: {
|
|
6983
|
+
type: PropType<GeneralModeOptionConfig[]>;
|
|
6984
|
+
default: () => never[];
|
|
6985
|
+
};
|
|
6986
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
6987
|
+
subscribes: ProductSubscribe[];
|
|
6988
|
+
layout: GeneralModeLayout;
|
|
6989
|
+
modeOptionConfigs: GeneralModeOptionConfig[];
|
|
6990
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
|
|
6991
|
+
P: {};
|
|
6992
|
+
B: {};
|
|
6993
|
+
D: {};
|
|
6994
|
+
C: {};
|
|
6995
|
+
M: {};
|
|
6996
|
+
Defaults: {};
|
|
6997
|
+
}, Readonly<ExtractPropTypes< {
|
|
6998
|
+
subscribes: {
|
|
6999
|
+
type: PropType<ProductSubscribe[]>;
|
|
7000
|
+
default: () => never[];
|
|
7001
|
+
};
|
|
7002
|
+
layout: {
|
|
7003
|
+
type: PropType<GeneralModeLayout>;
|
|
7004
|
+
default: string;
|
|
7005
|
+
validator: (v: string) => v is "grid" | "list";
|
|
7006
|
+
};
|
|
7007
|
+
modeOptionConfigs: {
|
|
7008
|
+
type: PropType<GeneralModeOptionConfig[]>;
|
|
7009
|
+
default: () => never[];
|
|
7010
|
+
};
|
|
7011
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
7012
|
+
subscribes: ProductSubscribe[];
|
|
7013
|
+
layout: GeneralModeLayout;
|
|
7014
|
+
modeOptionConfigs: GeneralModeOptionConfig[];
|
|
7015
|
+
}>;
|
|
7016
|
+
__isFragment?: never;
|
|
7017
|
+
__isTeleport?: never;
|
|
7018
|
+
__isSuspense?: never;
|
|
7019
|
+
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
7020
|
+
subscribes: {
|
|
7021
|
+
type: PropType<ProductSubscribe[]>;
|
|
7022
|
+
default: () => never[];
|
|
7023
|
+
};
|
|
7024
|
+
layout: {
|
|
7025
|
+
type: PropType<GeneralModeLayout>;
|
|
7026
|
+
default: string;
|
|
7027
|
+
validator: (v: string) => v is "grid" | "list";
|
|
7028
|
+
};
|
|
7029
|
+
modeOptionConfigs: {
|
|
7030
|
+
type: PropType<GeneralModeOptionConfig[]>;
|
|
7031
|
+
default: () => never[];
|
|
7032
|
+
};
|
|
7033
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
7034
|
+
subscribes: ProductSubscribe[];
|
|
7035
|
+
layout: GeneralModeLayout;
|
|
7036
|
+
modeOptionConfigs: GeneralModeOptionConfig[];
|
|
7037
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
7038
|
+
|
|
7039
|
+
export declare const UpGeneralRedirect: {
|
|
7040
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
7041
|
+
readonly title: {
|
|
7042
|
+
readonly type: StringConstructor;
|
|
7043
|
+
readonly default: "";
|
|
7044
|
+
};
|
|
7045
|
+
readonly subtitle: {
|
|
7046
|
+
readonly type: StringConstructor;
|
|
7047
|
+
readonly default: "";
|
|
7048
|
+
};
|
|
7049
|
+
readonly appLink: {
|
|
7050
|
+
readonly type: StringConstructor;
|
|
7051
|
+
readonly default: "";
|
|
7052
|
+
};
|
|
7053
|
+
readonly packageName: {
|
|
7054
|
+
readonly type: StringConstructor;
|
|
7055
|
+
readonly default: "";
|
|
7056
|
+
};
|
|
7057
|
+
readonly icon: {
|
|
7058
|
+
readonly type: PropType<string[]>;
|
|
7059
|
+
readonly default: undefined;
|
|
5529
7060
|
};
|
|
5530
7061
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
5531
|
-
|
|
5532
|
-
|
|
5533
|
-
|
|
5534
|
-
|
|
7062
|
+
readonly title: string;
|
|
7063
|
+
readonly icon: string[];
|
|
7064
|
+
readonly subtitle: string;
|
|
7065
|
+
readonly appLink: string;
|
|
7066
|
+
readonly packageName: string;
|
|
7067
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
7068
|
+
contentRef: HTMLDivElement;
|
|
7069
|
+
titleRef: HTMLDivElement;
|
|
7070
|
+
subtitleRef: HTMLDivElement;
|
|
7071
|
+
}, any, ComponentProvideOptions, {
|
|
5535
7072
|
P: {};
|
|
5536
7073
|
B: {};
|
|
5537
7074
|
D: {};
|
|
@@ -5539,45 +7076,63 @@ export declare const UpGeneralMode: {
|
|
|
5539
7076
|
M: {};
|
|
5540
7077
|
Defaults: {};
|
|
5541
7078
|
}, Readonly<ExtractPropTypes< {
|
|
5542
|
-
|
|
5543
|
-
type:
|
|
5544
|
-
default:
|
|
7079
|
+
readonly title: {
|
|
7080
|
+
readonly type: StringConstructor;
|
|
7081
|
+
readonly default: "";
|
|
5545
7082
|
};
|
|
5546
|
-
|
|
5547
|
-
type:
|
|
5548
|
-
default:
|
|
5549
|
-
validator: (v: string) => v is "grid" | "list";
|
|
7083
|
+
readonly subtitle: {
|
|
7084
|
+
readonly type: StringConstructor;
|
|
7085
|
+
readonly default: "";
|
|
5550
7086
|
};
|
|
5551
|
-
|
|
5552
|
-
type:
|
|
5553
|
-
default:
|
|
7087
|
+
readonly appLink: {
|
|
7088
|
+
readonly type: StringConstructor;
|
|
7089
|
+
readonly default: "";
|
|
7090
|
+
};
|
|
7091
|
+
readonly packageName: {
|
|
7092
|
+
readonly type: StringConstructor;
|
|
7093
|
+
readonly default: "";
|
|
7094
|
+
};
|
|
7095
|
+
readonly icon: {
|
|
7096
|
+
readonly type: PropType<string[]>;
|
|
7097
|
+
readonly default: undefined;
|
|
5554
7098
|
};
|
|
5555
7099
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
7100
|
+
readonly title: string;
|
|
7101
|
+
readonly icon: string[];
|
|
7102
|
+
readonly subtitle: string;
|
|
7103
|
+
readonly appLink: string;
|
|
7104
|
+
readonly packageName: string;
|
|
5559
7105
|
}>;
|
|
5560
7106
|
__isFragment?: never;
|
|
5561
7107
|
__isTeleport?: never;
|
|
5562
7108
|
__isSuspense?: never;
|
|
5563
7109
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
5564
|
-
|
|
5565
|
-
type:
|
|
5566
|
-
default:
|
|
7110
|
+
readonly title: {
|
|
7111
|
+
readonly type: StringConstructor;
|
|
7112
|
+
readonly default: "";
|
|
5567
7113
|
};
|
|
5568
|
-
|
|
5569
|
-
type:
|
|
5570
|
-
default:
|
|
5571
|
-
validator: (v: string) => v is "grid" | "list";
|
|
7114
|
+
readonly subtitle: {
|
|
7115
|
+
readonly type: StringConstructor;
|
|
7116
|
+
readonly default: "";
|
|
5572
7117
|
};
|
|
5573
|
-
|
|
5574
|
-
type:
|
|
5575
|
-
default:
|
|
7118
|
+
readonly appLink: {
|
|
7119
|
+
readonly type: StringConstructor;
|
|
7120
|
+
readonly default: "";
|
|
7121
|
+
};
|
|
7122
|
+
readonly packageName: {
|
|
7123
|
+
readonly type: StringConstructor;
|
|
7124
|
+
readonly default: "";
|
|
7125
|
+
};
|
|
7126
|
+
readonly icon: {
|
|
7127
|
+
readonly type: PropType<string[]>;
|
|
7128
|
+
readonly default: undefined;
|
|
5576
7129
|
};
|
|
5577
7130
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
7131
|
+
readonly title: string;
|
|
7132
|
+
readonly icon: string[];
|
|
7133
|
+
readonly subtitle: string;
|
|
7134
|
+
readonly appLink: string;
|
|
7135
|
+
readonly packageName: string;
|
|
5581
7136
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
5582
7137
|
|
|
5583
7138
|
export declare const UpGeneralReminder: {
|
|
@@ -5621,7 +7176,17 @@ export declare const UpGeneralScreen: {
|
|
|
5621
7176
|
type: PropType<GeneralScreenFilterElementItemConfig[]>;
|
|
5622
7177
|
default: () => never[];
|
|
5623
7178
|
};
|
|
7179
|
+
showInfo: {
|
|
7180
|
+
type: BooleanConstructor;
|
|
7181
|
+
default: boolean;
|
|
7182
|
+
};
|
|
7183
|
+
infoContent: {
|
|
7184
|
+
type: StringConstructor;
|
|
7185
|
+
default: string;
|
|
7186
|
+
};
|
|
5624
7187
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
7188
|
+
showInfo: boolean;
|
|
7189
|
+
infoContent: string;
|
|
5625
7190
|
filterElementItemConfigs: GeneralScreenFilterElementItemConfig[];
|
|
5626
7191
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
5627
7192
|
alarmStripRef: HTMLDivElement;
|
|
@@ -5639,7 +7204,17 @@ export declare const UpGeneralScreen: {
|
|
|
5639
7204
|
type: PropType<GeneralScreenFilterElementItemConfig[]>;
|
|
5640
7205
|
default: () => never[];
|
|
5641
7206
|
};
|
|
7207
|
+
showInfo: {
|
|
7208
|
+
type: BooleanConstructor;
|
|
7209
|
+
default: boolean;
|
|
7210
|
+
};
|
|
7211
|
+
infoContent: {
|
|
7212
|
+
type: StringConstructor;
|
|
7213
|
+
default: string;
|
|
7214
|
+
};
|
|
5642
7215
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
7216
|
+
showInfo: boolean;
|
|
7217
|
+
infoContent: string;
|
|
5643
7218
|
filterElementItemConfigs: GeneralScreenFilterElementItemConfig[];
|
|
5644
7219
|
}>;
|
|
5645
7220
|
__isFragment?: never;
|
|
@@ -5650,7 +7225,17 @@ filterElementItemConfigs: {
|
|
|
5650
7225
|
type: PropType<GeneralScreenFilterElementItemConfig[]>;
|
|
5651
7226
|
default: () => never[];
|
|
5652
7227
|
};
|
|
7228
|
+
showInfo: {
|
|
7229
|
+
type: BooleanConstructor;
|
|
7230
|
+
default: boolean;
|
|
7231
|
+
};
|
|
7232
|
+
infoContent: {
|
|
7233
|
+
type: StringConstructor;
|
|
7234
|
+
default: string;
|
|
7235
|
+
};
|
|
5653
7236
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
7237
|
+
showInfo: boolean;
|
|
7238
|
+
infoContent: string;
|
|
5654
7239
|
filterElementItemConfigs: GeneralScreenFilterElementItemConfig[];
|
|
5655
7240
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
5656
7241
|
|
|
@@ -5664,11 +7249,103 @@ export declare const UpGeneralTask: {
|
|
|
5664
7249
|
type: PropType<GeneralTaskCardSize>;
|
|
5665
7250
|
default: string;
|
|
5666
7251
|
};
|
|
7252
|
+
showInfo: {
|
|
7253
|
+
type: BooleanConstructor;
|
|
7254
|
+
default: boolean;
|
|
7255
|
+
};
|
|
7256
|
+
infoContent: {
|
|
7257
|
+
type: StringConstructor;
|
|
7258
|
+
default: string;
|
|
7259
|
+
};
|
|
5667
7260
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
7261
|
+
showInfo: boolean;
|
|
7262
|
+
infoContent: string;
|
|
5668
7263
|
subscribes: ProductSubscribe[];
|
|
5669
7264
|
cardSize: GeneralTaskCardSize;
|
|
5670
7265
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
5671
|
-
|
|
7266
|
+
infoTriggerRef: ({
|
|
7267
|
+
$: ComponentInternalInstance;
|
|
7268
|
+
$data: {};
|
|
7269
|
+
$props: Partial<{
|
|
7270
|
+
readonly showInfo: boolean;
|
|
7271
|
+
readonly infoContent: string;
|
|
7272
|
+
}> & Omit<{
|
|
7273
|
+
readonly showInfo: boolean;
|
|
7274
|
+
readonly infoContent: string;
|
|
7275
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
7276
|
+
$attrs: {
|
|
7277
|
+
[x: string]: unknown;
|
|
7278
|
+
};
|
|
7279
|
+
$refs: {
|
|
7280
|
+
[x: string]: unknown;
|
|
7281
|
+
} & {
|
|
7282
|
+
rootElRef: HTMLDivElement;
|
|
7283
|
+
infoTriggerRef: HTMLButtonElement;
|
|
7284
|
+
infoTooltipRef: HTMLDivElement;
|
|
7285
|
+
};
|
|
7286
|
+
$slots: Readonly<{
|
|
7287
|
+
[name: string]: Slot<any> | undefined;
|
|
7288
|
+
}>;
|
|
7289
|
+
$root: ComponentPublicInstance | null;
|
|
7290
|
+
$parent: ComponentPublicInstance | null;
|
|
7291
|
+
$host: Element | null;
|
|
7292
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
7293
|
+
$el: HTMLDivElement;
|
|
7294
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
7295
|
+
readonly showInfo: {
|
|
7296
|
+
readonly type: BooleanConstructor;
|
|
7297
|
+
readonly default: false;
|
|
7298
|
+
};
|
|
7299
|
+
readonly infoContent: {
|
|
7300
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
7301
|
+
readonly default: "";
|
|
7302
|
+
};
|
|
7303
|
+
}>> & Readonly<{}>, {
|
|
7304
|
+
close: () => void;
|
|
7305
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
7306
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
7307
|
+
readonly showInfo: boolean;
|
|
7308
|
+
readonly infoContent: string;
|
|
7309
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
7310
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
7311
|
+
created?: (() => void) | (() => void)[];
|
|
7312
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
7313
|
+
mounted?: (() => void) | (() => void)[];
|
|
7314
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
7315
|
+
updated?: (() => void) | (() => void)[];
|
|
7316
|
+
activated?: (() => void) | (() => void)[];
|
|
7317
|
+
deactivated?: (() => void) | (() => void)[];
|
|
7318
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
7319
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
7320
|
+
destroyed?: (() => void) | (() => void)[];
|
|
7321
|
+
unmounted?: (() => void) | (() => void)[];
|
|
7322
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
7323
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
7324
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
7325
|
+
};
|
|
7326
|
+
$forceUpdate: () => void;
|
|
7327
|
+
$nextTick: nextTick;
|
|
7328
|
+
$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;
|
|
7329
|
+
} & Readonly<{
|
|
7330
|
+
readonly showInfo: boolean;
|
|
7331
|
+
readonly infoContent: string;
|
|
7332
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
7333
|
+
readonly showInfo: {
|
|
7334
|
+
readonly type: BooleanConstructor;
|
|
7335
|
+
readonly default: false;
|
|
7336
|
+
};
|
|
7337
|
+
readonly infoContent: {
|
|
7338
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
7339
|
+
readonly default: "";
|
|
7340
|
+
};
|
|
7341
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
7342
|
+
close: () => void;
|
|
7343
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
7344
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
7345
|
+
$slots: {
|
|
7346
|
+
default?(_: {}): any;
|
|
7347
|
+
};
|
|
7348
|
+
}) | null;
|
|
5672
7349
|
titleRef: HTMLDivElement;
|
|
5673
7350
|
statusRef: HTMLDivElement;
|
|
5674
7351
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -5687,7 +7364,17 @@ export declare const UpGeneralTask: {
|
|
|
5687
7364
|
type: PropType<GeneralTaskCardSize>;
|
|
5688
7365
|
default: string;
|
|
5689
7366
|
};
|
|
7367
|
+
showInfo: {
|
|
7368
|
+
type: BooleanConstructor;
|
|
7369
|
+
default: boolean;
|
|
7370
|
+
};
|
|
7371
|
+
infoContent: {
|
|
7372
|
+
type: StringConstructor;
|
|
7373
|
+
default: string;
|
|
7374
|
+
};
|
|
5690
7375
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
7376
|
+
showInfo: boolean;
|
|
7377
|
+
infoContent: string;
|
|
5691
7378
|
subscribes: ProductSubscribe[];
|
|
5692
7379
|
cardSize: GeneralTaskCardSize;
|
|
5693
7380
|
}>;
|
|
@@ -5703,7 +7390,17 @@ cardSize: {
|
|
|
5703
7390
|
type: PropType<GeneralTaskCardSize>;
|
|
5704
7391
|
default: string;
|
|
5705
7392
|
};
|
|
7393
|
+
showInfo: {
|
|
7394
|
+
type: BooleanConstructor;
|
|
7395
|
+
default: boolean;
|
|
7396
|
+
};
|
|
7397
|
+
infoContent: {
|
|
7398
|
+
type: StringConstructor;
|
|
7399
|
+
default: string;
|
|
7400
|
+
};
|
|
5706
7401
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
7402
|
+
showInfo: boolean;
|
|
7403
|
+
infoContent: string;
|
|
5707
7404
|
subscribes: ProductSubscribe[];
|
|
5708
7405
|
cardSize: GeneralTaskCardSize;
|
|
5709
7406
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
@@ -5730,14 +7427,107 @@ export declare const UpGeneralTimeSwitch: {
|
|
|
5730
7427
|
readonly type: PropType<string[]>;
|
|
5731
7428
|
readonly default: undefined;
|
|
5732
7429
|
};
|
|
7430
|
+
readonly showInfo: {
|
|
7431
|
+
readonly type: BooleanConstructor;
|
|
7432
|
+
readonly default: false;
|
|
7433
|
+
};
|
|
7434
|
+
readonly infoContent: {
|
|
7435
|
+
readonly type: StringConstructor;
|
|
7436
|
+
readonly default: "";
|
|
7437
|
+
};
|
|
5733
7438
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
7439
|
+
readonly showInfo: boolean;
|
|
7440
|
+
readonly infoContent: string;
|
|
7441
|
+
readonly icon: string[];
|
|
5734
7442
|
readonly subscribes: ProductSubscribe[];
|
|
5735
7443
|
readonly cardSize: GeneralTimeSwitchCardSize;
|
|
5736
|
-
readonly icon: string[];
|
|
5737
7444
|
readonly subscribesSecond: ProductSubscribe[];
|
|
5738
7445
|
readonly wheelUnit: GeneralTimeSwitchWheelUnit;
|
|
5739
7446
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
5740
7447
|
textRef: HTMLDivElement;
|
|
7448
|
+
infoTriggerRef: ({
|
|
7449
|
+
$: ComponentInternalInstance;
|
|
7450
|
+
$data: {};
|
|
7451
|
+
$props: Partial<{
|
|
7452
|
+
readonly showInfo: boolean;
|
|
7453
|
+
readonly infoContent: string;
|
|
7454
|
+
}> & Omit<{
|
|
7455
|
+
readonly showInfo: boolean;
|
|
7456
|
+
readonly infoContent: string;
|
|
7457
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
7458
|
+
$attrs: {
|
|
7459
|
+
[x: string]: unknown;
|
|
7460
|
+
};
|
|
7461
|
+
$refs: {
|
|
7462
|
+
[x: string]: unknown;
|
|
7463
|
+
} & {
|
|
7464
|
+
rootElRef: HTMLDivElement;
|
|
7465
|
+
infoTriggerRef: HTMLButtonElement;
|
|
7466
|
+
infoTooltipRef: HTMLDivElement;
|
|
7467
|
+
};
|
|
7468
|
+
$slots: Readonly<{
|
|
7469
|
+
[name: string]: Slot<any> | undefined;
|
|
7470
|
+
}>;
|
|
7471
|
+
$root: ComponentPublicInstance | null;
|
|
7472
|
+
$parent: ComponentPublicInstance | null;
|
|
7473
|
+
$host: Element | null;
|
|
7474
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
7475
|
+
$el: HTMLDivElement;
|
|
7476
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
7477
|
+
readonly showInfo: {
|
|
7478
|
+
readonly type: BooleanConstructor;
|
|
7479
|
+
readonly default: false;
|
|
7480
|
+
};
|
|
7481
|
+
readonly infoContent: {
|
|
7482
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
7483
|
+
readonly default: "";
|
|
7484
|
+
};
|
|
7485
|
+
}>> & Readonly<{}>, {
|
|
7486
|
+
close: () => void;
|
|
7487
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
7488
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
7489
|
+
readonly showInfo: boolean;
|
|
7490
|
+
readonly infoContent: string;
|
|
7491
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
7492
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
7493
|
+
created?: (() => void) | (() => void)[];
|
|
7494
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
7495
|
+
mounted?: (() => void) | (() => void)[];
|
|
7496
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
7497
|
+
updated?: (() => void) | (() => void)[];
|
|
7498
|
+
activated?: (() => void) | (() => void)[];
|
|
7499
|
+
deactivated?: (() => void) | (() => void)[];
|
|
7500
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
7501
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
7502
|
+
destroyed?: (() => void) | (() => void)[];
|
|
7503
|
+
unmounted?: (() => void) | (() => void)[];
|
|
7504
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
7505
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
7506
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
7507
|
+
};
|
|
7508
|
+
$forceUpdate: () => void;
|
|
7509
|
+
$nextTick: nextTick;
|
|
7510
|
+
$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;
|
|
7511
|
+
} & Readonly<{
|
|
7512
|
+
readonly showInfo: boolean;
|
|
7513
|
+
readonly infoContent: string;
|
|
7514
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
7515
|
+
readonly showInfo: {
|
|
7516
|
+
readonly type: BooleanConstructor;
|
|
7517
|
+
readonly default: false;
|
|
7518
|
+
};
|
|
7519
|
+
readonly infoContent: {
|
|
7520
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
7521
|
+
readonly default: "";
|
|
7522
|
+
};
|
|
7523
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
7524
|
+
close: () => void;
|
|
7525
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
7526
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
7527
|
+
$slots: {
|
|
7528
|
+
default?(_: {}): any;
|
|
7529
|
+
};
|
|
7530
|
+
}) | null;
|
|
5741
7531
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
5742
7532
|
P: {};
|
|
5743
7533
|
B: {};
|
|
@@ -5766,10 +7556,20 @@ export declare const UpGeneralTimeSwitch: {
|
|
|
5766
7556
|
readonly type: PropType<string[]>;
|
|
5767
7557
|
readonly default: undefined;
|
|
5768
7558
|
};
|
|
7559
|
+
readonly showInfo: {
|
|
7560
|
+
readonly type: BooleanConstructor;
|
|
7561
|
+
readonly default: false;
|
|
7562
|
+
};
|
|
7563
|
+
readonly infoContent: {
|
|
7564
|
+
readonly type: StringConstructor;
|
|
7565
|
+
readonly default: "";
|
|
7566
|
+
};
|
|
5769
7567
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
7568
|
+
readonly showInfo: boolean;
|
|
7569
|
+
readonly infoContent: string;
|
|
7570
|
+
readonly icon: string[];
|
|
5770
7571
|
readonly subscribes: ProductSubscribe[];
|
|
5771
7572
|
readonly cardSize: GeneralTimeSwitchCardSize;
|
|
5772
|
-
readonly icon: string[];
|
|
5773
7573
|
readonly subscribesSecond: ProductSubscribe[];
|
|
5774
7574
|
readonly wheelUnit: GeneralTimeSwitchWheelUnit;
|
|
5775
7575
|
}>;
|
|
@@ -5797,10 +7597,20 @@ readonly icon: {
|
|
|
5797
7597
|
readonly type: PropType<string[]>;
|
|
5798
7598
|
readonly default: undefined;
|
|
5799
7599
|
};
|
|
7600
|
+
readonly showInfo: {
|
|
7601
|
+
readonly type: BooleanConstructor;
|
|
7602
|
+
readonly default: false;
|
|
7603
|
+
};
|
|
7604
|
+
readonly infoContent: {
|
|
7605
|
+
readonly type: StringConstructor;
|
|
7606
|
+
readonly default: "";
|
|
7607
|
+
};
|
|
5800
7608
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
7609
|
+
readonly showInfo: boolean;
|
|
7610
|
+
readonly infoContent: string;
|
|
7611
|
+
readonly icon: string[];
|
|
5801
7612
|
readonly subscribes: ProductSubscribe[];
|
|
5802
7613
|
readonly cardSize: GeneralTimeSwitchCardSize;
|
|
5803
|
-
readonly icon: string[];
|
|
5804
7614
|
readonly subscribesSecond: ProductSubscribe[];
|
|
5805
7615
|
readonly wheelUnit: GeneralTimeSwitchWheelUnit;
|
|
5806
7616
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
@@ -5883,6 +7693,73 @@ readonly required: true;
|
|
|
5883
7693
|
};
|
|
5884
7694
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
5885
7695
|
|
|
7696
|
+
export declare const UpInfoTrigger: {
|
|
7697
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
7698
|
+
readonly showInfo: {
|
|
7699
|
+
readonly type: BooleanConstructor;
|
|
7700
|
+
readonly default: false;
|
|
7701
|
+
};
|
|
7702
|
+
readonly infoContent: {
|
|
7703
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
7704
|
+
readonly default: "";
|
|
7705
|
+
};
|
|
7706
|
+
}>> & Readonly<{}>, {
|
|
7707
|
+
close: () => void;
|
|
7708
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
7709
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
7710
|
+
readonly showInfo: boolean;
|
|
7711
|
+
readonly infoContent: string;
|
|
7712
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
7713
|
+
rootElRef: HTMLDivElement;
|
|
7714
|
+
infoTriggerRef: HTMLButtonElement;
|
|
7715
|
+
infoTooltipRef: HTMLDivElement;
|
|
7716
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
7717
|
+
P: {};
|
|
7718
|
+
B: {};
|
|
7719
|
+
D: {};
|
|
7720
|
+
C: {};
|
|
7721
|
+
M: {};
|
|
7722
|
+
Defaults: {};
|
|
7723
|
+
}, Readonly<ExtractPropTypes< {
|
|
7724
|
+
readonly showInfo: {
|
|
7725
|
+
readonly type: BooleanConstructor;
|
|
7726
|
+
readonly default: false;
|
|
7727
|
+
};
|
|
7728
|
+
readonly infoContent: {
|
|
7729
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
7730
|
+
readonly default: "";
|
|
7731
|
+
};
|
|
7732
|
+
}>> & Readonly<{}>, {
|
|
7733
|
+
close: () => void;
|
|
7734
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
7735
|
+
}, {}, {}, {}, {
|
|
7736
|
+
readonly showInfo: boolean;
|
|
7737
|
+
readonly infoContent: string;
|
|
7738
|
+
}>;
|
|
7739
|
+
__isFragment?: never;
|
|
7740
|
+
__isTeleport?: never;
|
|
7741
|
+
__isSuspense?: never;
|
|
7742
|
+
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
7743
|
+
readonly showInfo: {
|
|
7744
|
+
readonly type: BooleanConstructor;
|
|
7745
|
+
readonly default: false;
|
|
7746
|
+
};
|
|
7747
|
+
readonly infoContent: {
|
|
7748
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
7749
|
+
readonly default: "";
|
|
7750
|
+
};
|
|
7751
|
+
}>> & Readonly<{}>, {
|
|
7752
|
+
close: () => void;
|
|
7753
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
7754
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
7755
|
+
readonly showInfo: boolean;
|
|
7756
|
+
readonly infoContent: string;
|
|
7757
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
7758
|
+
$slots: {
|
|
7759
|
+
default?(_: {}): any;
|
|
7760
|
+
};
|
|
7761
|
+
}) & Plugin_2;
|
|
7762
|
+
|
|
5886
7763
|
export declare const UpLampCCT: {
|
|
5887
7764
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
5888
7765
|
linkColourMode: {
|
|
@@ -6585,6 +8462,14 @@ export declare const UpPageRouter: {
|
|
|
6585
8462
|
readonly type: StringConstructor;
|
|
6586
8463
|
readonly default: "";
|
|
6587
8464
|
};
|
|
8465
|
+
readonly showInfo: {
|
|
8466
|
+
readonly type: BooleanConstructor;
|
|
8467
|
+
readonly default: false;
|
|
8468
|
+
};
|
|
8469
|
+
readonly infoContent: {
|
|
8470
|
+
readonly type: StringConstructor;
|
|
8471
|
+
readonly default: "";
|
|
8472
|
+
};
|
|
6588
8473
|
readonly icon: {
|
|
6589
8474
|
readonly type: PropType<string[]>;
|
|
6590
8475
|
readonly default: undefined;
|
|
@@ -6601,15 +8486,99 @@ export declare const UpPageRouter: {
|
|
|
6601
8486
|
}) => any;
|
|
6602
8487
|
}, PublicProps, {
|
|
6603
8488
|
readonly title: string;
|
|
6604
|
-
readonly
|
|
8489
|
+
readonly showInfo: boolean;
|
|
8490
|
+
readonly infoContent: string;
|
|
6605
8491
|
readonly icon: string[];
|
|
8492
|
+
readonly cardSize: "full" | "half";
|
|
6606
8493
|
readonly params: Record<string, string>;
|
|
6607
8494
|
readonly description: string;
|
|
6608
8495
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
6609
|
-
|
|
8496
|
+
infoTriggerRef: ({
|
|
8497
|
+
$: ComponentInternalInstance;
|
|
8498
|
+
$data: {};
|
|
8499
|
+
$props: Partial<{
|
|
8500
|
+
readonly showInfo: boolean;
|
|
8501
|
+
readonly infoContent: string;
|
|
8502
|
+
}> & Omit<{
|
|
8503
|
+
readonly showInfo: boolean;
|
|
8504
|
+
readonly infoContent: string;
|
|
8505
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "showInfo" | "infoContent">;
|
|
8506
|
+
$attrs: {
|
|
8507
|
+
[x: string]: unknown;
|
|
8508
|
+
};
|
|
8509
|
+
$refs: {
|
|
8510
|
+
[x: string]: unknown;
|
|
8511
|
+
} & {
|
|
8512
|
+
rootElRef: HTMLDivElement;
|
|
8513
|
+
infoTriggerRef: HTMLButtonElement;
|
|
8514
|
+
infoTooltipRef: HTMLDivElement;
|
|
8515
|
+
};
|
|
8516
|
+
$slots: Readonly<{
|
|
8517
|
+
[name: string]: Slot<any> | undefined;
|
|
8518
|
+
}>;
|
|
8519
|
+
$root: ComponentPublicInstance | null;
|
|
8520
|
+
$parent: ComponentPublicInstance | null;
|
|
8521
|
+
$host: Element | null;
|
|
8522
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
8523
|
+
$el: HTMLDivElement;
|
|
8524
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
8525
|
+
readonly showInfo: {
|
|
8526
|
+
readonly type: BooleanConstructor;
|
|
8527
|
+
readonly default: false;
|
|
8528
|
+
};
|
|
8529
|
+
readonly infoContent: {
|
|
8530
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
8531
|
+
readonly default: "";
|
|
8532
|
+
};
|
|
8533
|
+
}>> & Readonly<{}>, {
|
|
8534
|
+
close: () => void;
|
|
8535
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
8536
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
8537
|
+
readonly showInfo: boolean;
|
|
8538
|
+
readonly infoContent: string;
|
|
8539
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
8540
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
8541
|
+
created?: (() => void) | (() => void)[];
|
|
8542
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
8543
|
+
mounted?: (() => void) | (() => void)[];
|
|
8544
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
8545
|
+
updated?: (() => void) | (() => void)[];
|
|
8546
|
+
activated?: (() => void) | (() => void)[];
|
|
8547
|
+
deactivated?: (() => void) | (() => void)[];
|
|
8548
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
8549
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
8550
|
+
destroyed?: (() => void) | (() => void)[];
|
|
8551
|
+
unmounted?: (() => void) | (() => void)[];
|
|
8552
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
8553
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
8554
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
8555
|
+
};
|
|
8556
|
+
$forceUpdate: () => void;
|
|
8557
|
+
$nextTick: nextTick;
|
|
8558
|
+
$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;
|
|
8559
|
+
} & Readonly<{
|
|
8560
|
+
readonly showInfo: boolean;
|
|
8561
|
+
readonly infoContent: string;
|
|
8562
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
8563
|
+
readonly showInfo: {
|
|
8564
|
+
readonly type: BooleanConstructor;
|
|
8565
|
+
readonly default: false;
|
|
8566
|
+
};
|
|
8567
|
+
readonly infoContent: {
|
|
8568
|
+
readonly type: PropType<InfoTriggerInfoContent>;
|
|
8569
|
+
readonly default: "";
|
|
8570
|
+
};
|
|
8571
|
+
}>> & Readonly<{}>, "close" | "rootEl" | ("showInfo" | "infoContent")> & ShallowUnwrapRef< {
|
|
8572
|
+
close: () => void;
|
|
8573
|
+
rootEl: Ref<HTMLElement | null, HTMLElement | null>;
|
|
8574
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
8575
|
+
$slots: {
|
|
8576
|
+
default?(_: {}): any;
|
|
8577
|
+
};
|
|
8578
|
+
}) | null;
|
|
6610
8579
|
titleRef: HTMLDivElement;
|
|
6611
8580
|
descriptionRef: HTMLDivElement;
|
|
6612
|
-
},
|
|
8581
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
6613
8582
|
P: {};
|
|
6614
8583
|
B: {};
|
|
6615
8584
|
D: {};
|
|
@@ -6637,6 +8606,14 @@ export declare const UpPageRouter: {
|
|
|
6637
8606
|
readonly type: StringConstructor;
|
|
6638
8607
|
readonly default: "";
|
|
6639
8608
|
};
|
|
8609
|
+
readonly showInfo: {
|
|
8610
|
+
readonly type: BooleanConstructor;
|
|
8611
|
+
readonly default: false;
|
|
8612
|
+
};
|
|
8613
|
+
readonly infoContent: {
|
|
8614
|
+
readonly type: StringConstructor;
|
|
8615
|
+
readonly default: "";
|
|
8616
|
+
};
|
|
6640
8617
|
readonly icon: {
|
|
6641
8618
|
readonly type: PropType<string[]>;
|
|
6642
8619
|
readonly default: undefined;
|
|
@@ -6648,8 +8625,10 @@ export declare const UpPageRouter: {
|
|
|
6648
8625
|
}) => any) | undefined;
|
|
6649
8626
|
}>, {}, {}, {}, {}, {
|
|
6650
8627
|
readonly title: string;
|
|
6651
|
-
readonly
|
|
8628
|
+
readonly showInfo: boolean;
|
|
8629
|
+
readonly infoContent: string;
|
|
6652
8630
|
readonly icon: string[];
|
|
8631
|
+
readonly cardSize: "full" | "half";
|
|
6653
8632
|
readonly params: Record<string, string>;
|
|
6654
8633
|
readonly description: string;
|
|
6655
8634
|
}>;
|
|
@@ -6677,6 +8656,14 @@ readonly description: {
|
|
|
6677
8656
|
readonly type: StringConstructor;
|
|
6678
8657
|
readonly default: "";
|
|
6679
8658
|
};
|
|
8659
|
+
readonly showInfo: {
|
|
8660
|
+
readonly type: BooleanConstructor;
|
|
8661
|
+
readonly default: false;
|
|
8662
|
+
};
|
|
8663
|
+
readonly infoContent: {
|
|
8664
|
+
readonly type: StringConstructor;
|
|
8665
|
+
readonly default: "";
|
|
8666
|
+
};
|
|
6680
8667
|
readonly icon: {
|
|
6681
8668
|
readonly type: PropType<string[]>;
|
|
6682
8669
|
readonly default: undefined;
|
|
@@ -6693,8 +8680,10 @@ query: Record<string, string>;
|
|
|
6693
8680
|
}) => any;
|
|
6694
8681
|
}, string, {
|
|
6695
8682
|
readonly title: string;
|
|
6696
|
-
readonly
|
|
8683
|
+
readonly showInfo: boolean;
|
|
8684
|
+
readonly infoContent: string;
|
|
6697
8685
|
readonly icon: string[];
|
|
8686
|
+
readonly cardSize: "full" | "half";
|
|
6698
8687
|
readonly params: Record<string, string>;
|
|
6699
8688
|
readonly description: string;
|
|
6700
8689
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
@@ -7365,6 +9354,14 @@ export declare const UpSubpageBoolItem: {
|
|
|
7365
9354
|
type: PropType<ProductSubscribe[]>;
|
|
7366
9355
|
default: () => never[];
|
|
7367
9356
|
};
|
|
9357
|
+
showInfo: {
|
|
9358
|
+
type: BooleanConstructor;
|
|
9359
|
+
default: boolean;
|
|
9360
|
+
};
|
|
9361
|
+
infoContent: {
|
|
9362
|
+
type: StringConstructor;
|
|
9363
|
+
default: string;
|
|
9364
|
+
};
|
|
7368
9365
|
enableOpenDialog: {
|
|
7369
9366
|
type: BooleanConstructor;
|
|
7370
9367
|
default: boolean;
|
|
@@ -7398,6 +9395,8 @@ export declare const UpSubpageBoolItem: {
|
|
|
7398
9395
|
default: string;
|
|
7399
9396
|
};
|
|
7400
9397
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
9398
|
+
showInfo: boolean;
|
|
9399
|
+
infoContent: string;
|
|
7401
9400
|
subscribes: ProductSubscribe[];
|
|
7402
9401
|
enableOpenDialog: boolean;
|
|
7403
9402
|
openDialogShowTitle: boolean;
|
|
@@ -7419,6 +9418,14 @@ export declare const UpSubpageBoolItem: {
|
|
|
7419
9418
|
type: PropType<ProductSubscribe[]>;
|
|
7420
9419
|
default: () => never[];
|
|
7421
9420
|
};
|
|
9421
|
+
showInfo: {
|
|
9422
|
+
type: BooleanConstructor;
|
|
9423
|
+
default: boolean;
|
|
9424
|
+
};
|
|
9425
|
+
infoContent: {
|
|
9426
|
+
type: StringConstructor;
|
|
9427
|
+
default: string;
|
|
9428
|
+
};
|
|
7422
9429
|
enableOpenDialog: {
|
|
7423
9430
|
type: BooleanConstructor;
|
|
7424
9431
|
default: boolean;
|
|
@@ -7452,6 +9459,8 @@ export declare const UpSubpageBoolItem: {
|
|
|
7452
9459
|
default: string;
|
|
7453
9460
|
};
|
|
7454
9461
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
9462
|
+
showInfo: boolean;
|
|
9463
|
+
infoContent: string;
|
|
7455
9464
|
subscribes: ProductSubscribe[];
|
|
7456
9465
|
enableOpenDialog: boolean;
|
|
7457
9466
|
openDialogShowTitle: boolean;
|
|
@@ -7470,6 +9479,14 @@ subscribes: {
|
|
|
7470
9479
|
type: PropType<ProductSubscribe[]>;
|
|
7471
9480
|
default: () => never[];
|
|
7472
9481
|
};
|
|
9482
|
+
showInfo: {
|
|
9483
|
+
type: BooleanConstructor;
|
|
9484
|
+
default: boolean;
|
|
9485
|
+
};
|
|
9486
|
+
infoContent: {
|
|
9487
|
+
type: StringConstructor;
|
|
9488
|
+
default: string;
|
|
9489
|
+
};
|
|
7473
9490
|
enableOpenDialog: {
|
|
7474
9491
|
type: BooleanConstructor;
|
|
7475
9492
|
default: boolean;
|
|
@@ -7503,6 +9520,8 @@ type: PropType<BoolIconCardLocaleText>;
|
|
|
7503
9520
|
default: string;
|
|
7504
9521
|
};
|
|
7505
9522
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
9523
|
+
showInfo: boolean;
|
|
9524
|
+
infoContent: string;
|
|
7506
9525
|
subscribes: ProductSubscribe[];
|
|
7507
9526
|
enableOpenDialog: boolean;
|
|
7508
9527
|
openDialogShowTitle: boolean;
|
|
@@ -7604,7 +9623,17 @@ export declare const UpSubpageEnumItem: {
|
|
|
7604
9623
|
type: PropType<Array<string | number>>;
|
|
7605
9624
|
default: () => never[];
|
|
7606
9625
|
};
|
|
9626
|
+
showInfo: {
|
|
9627
|
+
type: BooleanConstructor;
|
|
9628
|
+
default: boolean;
|
|
9629
|
+
};
|
|
9630
|
+
infoContent: {
|
|
9631
|
+
type: StringConstructor;
|
|
9632
|
+
default: string;
|
|
9633
|
+
};
|
|
7607
9634
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
9635
|
+
showInfo: boolean;
|
|
9636
|
+
infoContent: string;
|
|
7608
9637
|
subscribes: ProductSubscribe[];
|
|
7609
9638
|
visibleEnumValues: (string | number)[];
|
|
7610
9639
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -7623,7 +9652,17 @@ export declare const UpSubpageEnumItem: {
|
|
|
7623
9652
|
type: PropType<Array<string | number>>;
|
|
7624
9653
|
default: () => never[];
|
|
7625
9654
|
};
|
|
9655
|
+
showInfo: {
|
|
9656
|
+
type: BooleanConstructor;
|
|
9657
|
+
default: boolean;
|
|
9658
|
+
};
|
|
9659
|
+
infoContent: {
|
|
9660
|
+
type: StringConstructor;
|
|
9661
|
+
default: string;
|
|
9662
|
+
};
|
|
7626
9663
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
9664
|
+
showInfo: boolean;
|
|
9665
|
+
infoContent: string;
|
|
7627
9666
|
subscribes: ProductSubscribe[];
|
|
7628
9667
|
visibleEnumValues: (string | number)[];
|
|
7629
9668
|
}>;
|
|
@@ -7639,7 +9678,17 @@ visibleEnumValues: {
|
|
|
7639
9678
|
type: PropType<Array<string | number>>;
|
|
7640
9679
|
default: () => never[];
|
|
7641
9680
|
};
|
|
9681
|
+
showInfo: {
|
|
9682
|
+
type: BooleanConstructor;
|
|
9683
|
+
default: boolean;
|
|
9684
|
+
};
|
|
9685
|
+
infoContent: {
|
|
9686
|
+
type: StringConstructor;
|
|
9687
|
+
default: string;
|
|
9688
|
+
};
|
|
7642
9689
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
9690
|
+
showInfo: boolean;
|
|
9691
|
+
infoContent: string;
|
|
7643
9692
|
subscribes: ProductSubscribe[];
|
|
7644
9693
|
visibleEnumValues: (string | number)[];
|
|
7645
9694
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
@@ -7824,7 +9873,17 @@ export declare const UpSubpageNumberItem: {
|
|
|
7824
9873
|
type: StringConstructor;
|
|
7825
9874
|
default: string;
|
|
7826
9875
|
};
|
|
9876
|
+
showInfo: {
|
|
9877
|
+
type: BooleanConstructor;
|
|
9878
|
+
default: boolean;
|
|
9879
|
+
};
|
|
9880
|
+
infoContent: {
|
|
9881
|
+
type: StringConstructor;
|
|
9882
|
+
default: string;
|
|
9883
|
+
};
|
|
7827
9884
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
9885
|
+
showInfo: boolean;
|
|
9886
|
+
infoContent: string;
|
|
7828
9887
|
subscribes: ProductSubscribe[];
|
|
7829
9888
|
displayUnit: string;
|
|
7830
9889
|
dialogPickerType: SubpageNumberItemDialogPickerType;
|
|
@@ -7858,7 +9917,17 @@ export declare const UpSubpageNumberItem: {
|
|
|
7858
9917
|
type: StringConstructor;
|
|
7859
9918
|
default: string;
|
|
7860
9919
|
};
|
|
9920
|
+
showInfo: {
|
|
9921
|
+
type: BooleanConstructor;
|
|
9922
|
+
default: boolean;
|
|
9923
|
+
};
|
|
9924
|
+
infoContent: {
|
|
9925
|
+
type: StringConstructor;
|
|
9926
|
+
default: string;
|
|
9927
|
+
};
|
|
7861
9928
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
9929
|
+
showInfo: boolean;
|
|
9930
|
+
infoContent: string;
|
|
7862
9931
|
subscribes: ProductSubscribe[];
|
|
7863
9932
|
displayUnit: string;
|
|
7864
9933
|
dialogPickerType: SubpageNumberItemDialogPickerType;
|
|
@@ -7889,7 +9958,17 @@ displayUnit: {
|
|
|
7889
9958
|
type: StringConstructor;
|
|
7890
9959
|
default: string;
|
|
7891
9960
|
};
|
|
9961
|
+
showInfo: {
|
|
9962
|
+
type: BooleanConstructor;
|
|
9963
|
+
default: boolean;
|
|
9964
|
+
};
|
|
9965
|
+
infoContent: {
|
|
9966
|
+
type: StringConstructor;
|
|
9967
|
+
default: string;
|
|
9968
|
+
};
|
|
7892
9969
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
9970
|
+
showInfo: boolean;
|
|
9971
|
+
infoContent: string;
|
|
7893
9972
|
subscribes: ProductSubscribe[];
|
|
7894
9973
|
displayUnit: string;
|
|
7895
9974
|
dialogPickerType: SubpageNumberItemDialogPickerType;
|
|
@@ -8231,7 +10310,17 @@ export declare const UpTimer: {
|
|
|
8231
10310
|
type: PropType<TimerCardSize>;
|
|
8232
10311
|
default: string;
|
|
8233
10312
|
};
|
|
10313
|
+
showInfo: {
|
|
10314
|
+
type: BooleanConstructor;
|
|
10315
|
+
default: boolean;
|
|
10316
|
+
};
|
|
10317
|
+
infoContent: {
|
|
10318
|
+
type: StringConstructor;
|
|
10319
|
+
default: string;
|
|
10320
|
+
};
|
|
8234
10321
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
10322
|
+
showInfo: boolean;
|
|
10323
|
+
infoContent: string;
|
|
8235
10324
|
cardSize: TimerCardSize;
|
|
8236
10325
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
|
|
8237
10326
|
P: {};
|
|
@@ -8245,7 +10334,17 @@ export declare const UpTimer: {
|
|
|
8245
10334
|
type: PropType<TimerCardSize>;
|
|
8246
10335
|
default: string;
|
|
8247
10336
|
};
|
|
10337
|
+
showInfo: {
|
|
10338
|
+
type: BooleanConstructor;
|
|
10339
|
+
default: boolean;
|
|
10340
|
+
};
|
|
10341
|
+
infoContent: {
|
|
10342
|
+
type: StringConstructor;
|
|
10343
|
+
default: string;
|
|
10344
|
+
};
|
|
8248
10345
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
10346
|
+
showInfo: boolean;
|
|
10347
|
+
infoContent: string;
|
|
8249
10348
|
cardSize: TimerCardSize;
|
|
8250
10349
|
}>;
|
|
8251
10350
|
__isFragment?: never;
|
|
@@ -8256,7 +10355,17 @@ cardSize: {
|
|
|
8256
10355
|
type: PropType<TimerCardSize>;
|
|
8257
10356
|
default: string;
|
|
8258
10357
|
};
|
|
10358
|
+
showInfo: {
|
|
10359
|
+
type: BooleanConstructor;
|
|
10360
|
+
default: boolean;
|
|
10361
|
+
};
|
|
10362
|
+
infoContent: {
|
|
10363
|
+
type: StringConstructor;
|
|
10364
|
+
default: string;
|
|
10365
|
+
};
|
|
8259
10366
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
10367
|
+
showInfo: boolean;
|
|
10368
|
+
infoContent: string;
|
|
8260
10369
|
cardSize: TimerCardSize;
|
|
8261
10370
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
8262
10371
|
|
|
@@ -8275,18 +10384,54 @@ export declare const UpTimerCut: {
|
|
|
8275
10384
|
} & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
8276
10385
|
|
|
8277
10386
|
export declare const UpTimerNew: {
|
|
8278
|
-
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<
|
|
10387
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
10388
|
+
showInfo: {
|
|
10389
|
+
type: BooleanConstructor;
|
|
10390
|
+
default: boolean;
|
|
10391
|
+
};
|
|
10392
|
+
infoContent: {
|
|
10393
|
+
type: StringConstructor;
|
|
10394
|
+
default: string;
|
|
10395
|
+
};
|
|
10396
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
10397
|
+
showInfo: boolean;
|
|
10398
|
+
infoContent: string;
|
|
10399
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
|
|
8279
10400
|
P: {};
|
|
8280
10401
|
B: {};
|
|
8281
10402
|
D: {};
|
|
8282
10403
|
C: {};
|
|
8283
10404
|
M: {};
|
|
8284
10405
|
Defaults: {};
|
|
8285
|
-
}, Readonly<
|
|
10406
|
+
}, Readonly<ExtractPropTypes< {
|
|
10407
|
+
showInfo: {
|
|
10408
|
+
type: BooleanConstructor;
|
|
10409
|
+
default: boolean;
|
|
10410
|
+
};
|
|
10411
|
+
infoContent: {
|
|
10412
|
+
type: StringConstructor;
|
|
10413
|
+
default: string;
|
|
10414
|
+
};
|
|
10415
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
10416
|
+
showInfo: boolean;
|
|
10417
|
+
infoContent: string;
|
|
10418
|
+
}>;
|
|
8286
10419
|
__isFragment?: never;
|
|
8287
10420
|
__isTeleport?: never;
|
|
8288
10421
|
__isSuspense?: never;
|
|
8289
|
-
} & ComponentOptionsBase<Readonly<
|
|
10422
|
+
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
10423
|
+
showInfo: {
|
|
10424
|
+
type: BooleanConstructor;
|
|
10425
|
+
default: boolean;
|
|
10426
|
+
};
|
|
10427
|
+
infoContent: {
|
|
10428
|
+
type: StringConstructor;
|
|
10429
|
+
default: string;
|
|
10430
|
+
};
|
|
10431
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
10432
|
+
showInfo: boolean;
|
|
10433
|
+
infoContent: string;
|
|
10434
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin_2;
|
|
8290
10435
|
|
|
8291
10436
|
export declare const UpTimeWheelPicker: {
|
|
8292
10437
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
@@ -8457,7 +10602,17 @@ export declare const UpWaterHeaterTimeEnd: {
|
|
|
8457
10602
|
type: PropType<WaterHeaterTimeEndCardSize>;
|
|
8458
10603
|
default: string;
|
|
8459
10604
|
};
|
|
10605
|
+
showInfo: {
|
|
10606
|
+
type: BooleanConstructor;
|
|
10607
|
+
default: boolean;
|
|
10608
|
+
};
|
|
10609
|
+
infoContent: {
|
|
10610
|
+
type: StringConstructor;
|
|
10611
|
+
default: string;
|
|
10612
|
+
};
|
|
8460
10613
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
10614
|
+
showInfo: boolean;
|
|
10615
|
+
infoContent: string;
|
|
8461
10616
|
cardSize: WaterHeaterTimeEndCardSize;
|
|
8462
10617
|
subscribesStatus: ProductSubscribe[];
|
|
8463
10618
|
subscribesLeftTime: ProductSubscribe[];
|
|
@@ -8501,7 +10656,17 @@ export declare const UpWaterHeaterTimeEnd: {
|
|
|
8501
10656
|
type: PropType<WaterHeaterTimeEndCardSize>;
|
|
8502
10657
|
default: string;
|
|
8503
10658
|
};
|
|
10659
|
+
showInfo: {
|
|
10660
|
+
type: BooleanConstructor;
|
|
10661
|
+
default: boolean;
|
|
10662
|
+
};
|
|
10663
|
+
infoContent: {
|
|
10664
|
+
type: StringConstructor;
|
|
10665
|
+
default: string;
|
|
10666
|
+
};
|
|
8504
10667
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
10668
|
+
showInfo: boolean;
|
|
10669
|
+
infoContent: string;
|
|
8505
10670
|
cardSize: WaterHeaterTimeEndCardSize;
|
|
8506
10671
|
subscribesStatus: ProductSubscribe[];
|
|
8507
10672
|
subscribesLeftTime: ProductSubscribe[];
|
|
@@ -8542,7 +10707,17 @@ cardSize: {
|
|
|
8542
10707
|
type: PropType<WaterHeaterTimeEndCardSize>;
|
|
8543
10708
|
default: string;
|
|
8544
10709
|
};
|
|
10710
|
+
showInfo: {
|
|
10711
|
+
type: BooleanConstructor;
|
|
10712
|
+
default: boolean;
|
|
10713
|
+
};
|
|
10714
|
+
infoContent: {
|
|
10715
|
+
type: StringConstructor;
|
|
10716
|
+
default: string;
|
|
10717
|
+
};
|
|
8545
10718
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
10719
|
+
showInfo: boolean;
|
|
10720
|
+
infoContent: string;
|
|
8546
10721
|
cardSize: WaterHeaterTimeEndCardSize;
|
|
8547
10722
|
subscribesStatus: ProductSubscribe[];
|
|
8548
10723
|
subscribesLeftTime: ProductSubscribe[];
|
|
@@ -8582,7 +10757,17 @@ export declare const UpWaterHeaterTimeStart: {
|
|
|
8582
10757
|
type: PropType<WaterHeaterTimeStartCardSize>;
|
|
8583
10758
|
default: string;
|
|
8584
10759
|
};
|
|
10760
|
+
showInfo: {
|
|
10761
|
+
type: BooleanConstructor;
|
|
10762
|
+
default: boolean;
|
|
10763
|
+
};
|
|
10764
|
+
infoContent: {
|
|
10765
|
+
type: StringConstructor;
|
|
10766
|
+
default: string;
|
|
10767
|
+
};
|
|
8585
10768
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
10769
|
+
showInfo: boolean;
|
|
10770
|
+
infoContent: string;
|
|
8586
10771
|
cardSize: WaterHeaterTimeStartCardSize;
|
|
8587
10772
|
subscribesStatus: ProductSubscribe[];
|
|
8588
10773
|
subscribesLeftTime: ProductSubscribe[];
|
|
@@ -8626,7 +10811,17 @@ export declare const UpWaterHeaterTimeStart: {
|
|
|
8626
10811
|
type: PropType<WaterHeaterTimeStartCardSize>;
|
|
8627
10812
|
default: string;
|
|
8628
10813
|
};
|
|
10814
|
+
showInfo: {
|
|
10815
|
+
type: BooleanConstructor;
|
|
10816
|
+
default: boolean;
|
|
10817
|
+
};
|
|
10818
|
+
infoContent: {
|
|
10819
|
+
type: StringConstructor;
|
|
10820
|
+
default: string;
|
|
10821
|
+
};
|
|
8629
10822
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
10823
|
+
showInfo: boolean;
|
|
10824
|
+
infoContent: string;
|
|
8630
10825
|
cardSize: WaterHeaterTimeStartCardSize;
|
|
8631
10826
|
subscribesStatus: ProductSubscribe[];
|
|
8632
10827
|
subscribesLeftTime: ProductSubscribe[];
|
|
@@ -8667,7 +10862,17 @@ cardSize: {
|
|
|
8667
10862
|
type: PropType<WaterHeaterTimeStartCardSize>;
|
|
8668
10863
|
default: string;
|
|
8669
10864
|
};
|
|
10865
|
+
showInfo: {
|
|
10866
|
+
type: BooleanConstructor;
|
|
10867
|
+
default: boolean;
|
|
10868
|
+
};
|
|
10869
|
+
infoContent: {
|
|
10870
|
+
type: StringConstructor;
|
|
10871
|
+
default: string;
|
|
10872
|
+
};
|
|
8670
10873
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
10874
|
+
showInfo: boolean;
|
|
10875
|
+
infoContent: string;
|
|
8671
10876
|
cardSize: WaterHeaterTimeStartCardSize;
|
|
8672
10877
|
subscribesStatus: ProductSubscribe[];
|
|
8673
10878
|
subscribesLeftTime: ProductSubscribe[];
|
|
@@ -8774,6 +10979,16 @@ declare const waterHeaterTimeEndProps: {
|
|
|
8774
10979
|
type: PropType<WaterHeaterTimeEndCardSize>;
|
|
8775
10980
|
default: string;
|
|
8776
10981
|
};
|
|
10982
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
10983
|
+
showInfo: {
|
|
10984
|
+
type: BooleanConstructor;
|
|
10985
|
+
default: boolean;
|
|
10986
|
+
};
|
|
10987
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
10988
|
+
infoContent: {
|
|
10989
|
+
type: StringConstructor;
|
|
10990
|
+
default: string;
|
|
10991
|
+
};
|
|
8777
10992
|
};
|
|
8778
10993
|
|
|
8779
10994
|
export declare type WaterHeaterTimeStartCardSize = 'full' | 'half';
|
|
@@ -8815,6 +11030,16 @@ declare const waterHeaterTimeStartProps: {
|
|
|
8815
11030
|
type: PropType<WaterHeaterTimeStartCardSize>;
|
|
8816
11031
|
default: string;
|
|
8817
11032
|
};
|
|
11033
|
+
/** 是否在标题旁展示说明入口;为 true 时始终渲染图标 */
|
|
11034
|
+
showInfo: {
|
|
11035
|
+
type: BooleanConstructor;
|
|
11036
|
+
default: boolean;
|
|
11037
|
+
};
|
|
11038
|
+
/** 说明文案;text-or-key(i18n key 或中/英文原文);解析 trim 为空时点击不弹出浮层 */
|
|
11039
|
+
infoContent: {
|
|
11040
|
+
type: StringConstructor;
|
|
11041
|
+
default: string;
|
|
11042
|
+
};
|
|
8818
11043
|
};
|
|
8819
11044
|
|
|
8820
11045
|
declare const WHEEL_ZONE_KEYS: readonly ["0", "1", "2", "3", "4"];
|
|
@@ -8926,6 +11151,10 @@ export declare const zhCN: {
|
|
|
8926
11151
|
pageRouter: {
|
|
8927
11152
|
defaultTitle: string;
|
|
8928
11153
|
};
|
|
11154
|
+
generalRedirect: {
|
|
11155
|
+
defaultTitle: string;
|
|
11156
|
+
defaultSubtitle: string;
|
|
11157
|
+
};
|
|
8929
11158
|
enumControl: {
|
|
8930
11159
|
prev: string;
|
|
8931
11160
|
next: string;
|