yc-pro-components 0.0.25 → 0.0.27
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/es/components/form-item/src/form-item.mjs +2 -1
- package/es/components/table/src/table-title-bar.vue2.mjs +1 -0
- package/es/components/yc-dialog/src/index.vue2.mjs +1 -1
- package/es/components/yc-drawer/src/index.vue.mjs +1 -1
- package/es/components/yc-drawer/src/index.vue2.mjs +1 -1
- package/es/components/yc-plus-page/src/index.vue.d.ts +53 -211
- package/es/components/yc-plus-page/src/index.vue.mjs +1 -1
- package/es/components/yc-plus-page/src/index.vue2.mjs +4 -2
- package/es/components/yc-plus-tree/src/index.vue.d.ts +5 -0
- package/es/components/yc-plus-tree/src/index.vue.mjs +1 -1
- package/es/components/yc-plus-tree/src/index.vue2.mjs +14 -6
- package/es/index.css +3 -3
- package/index.css +54 -54
- package/index.js +26 -14
- package/index.min.css +3 -3
- package/index.min.js +7 -7
- package/index.min.mjs +7 -7
- package/index.mjs +26 -14
- package/lib/components/form-item/src/form-item.js +2 -1
- package/lib/components/table/src/table-title-bar.vue2.js +1 -0
- package/lib/components/yc-dialog/src/index.vue2.js +1 -1
- package/lib/components/yc-drawer/src/index.vue.js +1 -1
- package/lib/components/yc-drawer/src/index.vue2.js +1 -1
- package/lib/components/yc-plus-page/src/index.vue.d.ts +53 -211
- package/lib/components/yc-plus-page/src/index.vue.js +1 -1
- package/lib/components/yc-plus-page/src/index.vue2.js +4 -2
- package/lib/components/yc-plus-tree/src/index.vue.d.ts +5 -0
- package/lib/components/yc-plus-tree/src/index.vue.js +1 -1
- package/lib/components/yc-plus-tree/src/index.vue2.js +13 -5
- package/lib/index.css +3 -3
- package/locale/en.js +1 -1
- package/locale/en.min.js +1 -1
- package/locale/en.min.mjs +1 -1
- package/locale/en.mjs +1 -1
- package/locale/ja.js +1 -1
- package/locale/ja.min.js +1 -1
- package/locale/ja.min.mjs +1 -1
- package/locale/ja.mjs +1 -1
- package/locale/ko.js +1 -1
- package/locale/ko.min.js +1 -1
- package/locale/ko.min.mjs +1 -1
- package/locale/ko.mjs +1 -1
- package/locale/zh-cn.js +1 -1
- package/locale/zh-cn.min.js +1 -1
- package/locale/zh-cn.min.mjs +1 -1
- package/locale/zh-cn.mjs +1 -1
- package/locale/zh-tw.js +1 -1
- package/locale/zh-tw.min.js +1 -1
- package/locale/zh-tw.min.mjs +1 -1
- package/locale/zh-tw.mjs +1 -1
- package/package.json +1 -1
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/plus-dialog.css +1 -1
- package/theme-chalk/plus-display-item.css +1 -1
- package/theme-chalk/plus-table.css +1 -1
- package/theme-chalk/plus-yc-dialog.css +1 -1
- package/theme-chalk/plus-yc-drawer.css +1 -1
- package/theme-chalk/plus-yc-plus-tree.css +1 -1
- package/theme-chalk/src/dialog.scss +45 -0
- package/theme-chalk/src/display-item.scss +1 -0
- package/theme-chalk/src/table.scss +10 -0
- package/theme-chalk/src/yc-dialog.scss +50 -0
- package/theme-chalk/src/yc-drawer.scss +1 -1
- package/theme-chalk/src/yc-plus-tree.scss +1 -0
|
@@ -991,9 +991,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
991
991
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
992
992
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
993
993
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
994
|
-
/**
|
|
995
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
996
|
-
*/
|
|
997
994
|
readonly scrollToError: BooleanConstructor;
|
|
998
995
|
readonly scrollIntoViewOptions: {
|
|
999
996
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -1020,7 +1017,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1020
1017
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1021
1018
|
__epPropKey: true;
|
|
1022
1019
|
};
|
|
1023
|
-
/** 表头筛选重置 */
|
|
1024
1020
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
1025
1021
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
1026
1022
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -1028,10 +1024,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1028
1024
|
readonly inline: BooleanConstructor;
|
|
1029
1025
|
readonly inlineMessage: BooleanConstructor;
|
|
1030
1026
|
readonly statusIcon: BooleanConstructor;
|
|
1031
|
-
/**
|
|
1032
|
-
* 计算属性:暴露 formRefs
|
|
1033
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
1034
|
-
*/
|
|
1035
1027
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1036
1028
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1037
1029
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -1107,9 +1099,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1107
1099
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1108
1100
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1109
1101
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
1110
|
-
/**
|
|
1111
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
1112
|
-
*/
|
|
1113
1102
|
readonly scrollToError: BooleanConstructor;
|
|
1114
1103
|
readonly scrollIntoViewOptions: {
|
|
1115
1104
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -1138,9 +1127,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1138
1127
|
readonly inlineMessage: boolean;
|
|
1139
1128
|
readonly statusIcon: boolean;
|
|
1140
1129
|
readonly hideRequiredAsterisk: boolean;
|
|
1141
|
-
/**
|
|
1142
|
-
* 组件卸载时清理 MutationObserver
|
|
1143
|
-
*/
|
|
1144
1130
|
readonly scrollToError: boolean;
|
|
1145
1131
|
}, true, {}, {}, {
|
|
1146
1132
|
P: {};
|
|
@@ -1167,9 +1153,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1167
1153
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1168
1154
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1169
1155
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
1170
|
-
/**
|
|
1171
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
1172
|
-
*/
|
|
1173
1156
|
readonly scrollToError: BooleanConstructor;
|
|
1174
1157
|
readonly scrollIntoViewOptions: {
|
|
1175
1158
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -1196,7 +1179,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1196
1179
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1197
1180
|
__epPropKey: true;
|
|
1198
1181
|
};
|
|
1199
|
-
/** 表头筛选重置 */
|
|
1200
1182
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
1201
1183
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
1202
1184
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -1204,10 +1186,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1204
1186
|
readonly inline: BooleanConstructor;
|
|
1205
1187
|
readonly inlineMessage: BooleanConstructor;
|
|
1206
1188
|
readonly statusIcon: BooleanConstructor;
|
|
1207
|
-
/**
|
|
1208
|
-
* 计算属性:暴露 formRefs
|
|
1209
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
1210
|
-
*/
|
|
1211
1189
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1212
1190
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1213
1191
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -1275,9 +1253,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1275
1253
|
readonly inlineMessage: boolean;
|
|
1276
1254
|
readonly statusIcon: boolean;
|
|
1277
1255
|
readonly hideRequiredAsterisk: boolean;
|
|
1278
|
-
/**
|
|
1279
|
-
* 组件卸载时清理 MutationObserver
|
|
1280
|
-
*/
|
|
1281
1256
|
readonly scrollToError: boolean;
|
|
1282
1257
|
}> | null>;
|
|
1283
1258
|
handleSubmit: () => void;
|
|
@@ -1475,9 +1450,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1475
1450
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1476
1451
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1477
1452
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
1478
|
-
/**
|
|
1479
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
1480
|
-
*/
|
|
1481
1453
|
readonly scrollToError: BooleanConstructor;
|
|
1482
1454
|
readonly scrollIntoViewOptions: {
|
|
1483
1455
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -1504,7 +1476,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1504
1476
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1505
1477
|
__epPropKey: true;
|
|
1506
1478
|
};
|
|
1507
|
-
/** 表头筛选重置 */
|
|
1508
1479
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
1509
1480
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
1510
1481
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -1512,10 +1483,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1512
1483
|
readonly inline: BooleanConstructor;
|
|
1513
1484
|
readonly inlineMessage: BooleanConstructor;
|
|
1514
1485
|
readonly statusIcon: BooleanConstructor;
|
|
1515
|
-
/**
|
|
1516
|
-
* 计算属性:暴露 formRefs
|
|
1517
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
1518
|
-
*/
|
|
1519
1486
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1520
1487
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1521
1488
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -1591,9 +1558,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1591
1558
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1592
1559
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1593
1560
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
1594
|
-
/**
|
|
1595
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
1596
|
-
*/
|
|
1597
1561
|
readonly scrollToError: BooleanConstructor;
|
|
1598
1562
|
readonly scrollIntoViewOptions: {
|
|
1599
1563
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -1622,9 +1586,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1622
1586
|
readonly inlineMessage: boolean;
|
|
1623
1587
|
readonly statusIcon: boolean;
|
|
1624
1588
|
readonly hideRequiredAsterisk: boolean;
|
|
1625
|
-
/**
|
|
1626
|
-
* 组件卸载时清理 MutationObserver
|
|
1627
|
-
*/
|
|
1628
1589
|
readonly scrollToError: boolean;
|
|
1629
1590
|
}, true, {}, {}, {
|
|
1630
1591
|
P: {};
|
|
@@ -1651,9 +1612,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1651
1612
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1652
1613
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1653
1614
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
1654
|
-
/**
|
|
1655
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
1656
|
-
*/
|
|
1657
1615
|
readonly scrollToError: BooleanConstructor;
|
|
1658
1616
|
readonly scrollIntoViewOptions: {
|
|
1659
1617
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -1680,7 +1638,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1680
1638
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1681
1639
|
__epPropKey: true;
|
|
1682
1640
|
};
|
|
1683
|
-
/** 表头筛选重置 */
|
|
1684
1641
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
1685
1642
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
1686
1643
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -1688,10 +1645,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1688
1645
|
readonly inline: BooleanConstructor;
|
|
1689
1646
|
readonly inlineMessage: BooleanConstructor;
|
|
1690
1647
|
readonly statusIcon: BooleanConstructor;
|
|
1691
|
-
/**
|
|
1692
|
-
* 计算属性:暴露 formRefs
|
|
1693
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
1694
|
-
*/
|
|
1695
1648
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1696
1649
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1697
1650
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -1759,9 +1712,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1759
1712
|
readonly inlineMessage: boolean;
|
|
1760
1713
|
readonly statusIcon: boolean;
|
|
1761
1714
|
readonly hideRequiredAsterisk: boolean;
|
|
1762
|
-
/**
|
|
1763
|
-
* 组件卸载时清理 MutationObserver
|
|
1764
|
-
*/
|
|
1765
1715
|
readonly scrollToError: boolean;
|
|
1766
1716
|
}> | null>;
|
|
1767
1717
|
handleSubmit: () => void;
|
|
@@ -1799,7 +1749,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1799
1749
|
[index: number]: any;
|
|
1800
1750
|
[index: symbol]: any;
|
|
1801
1751
|
class: any;
|
|
1802
|
-
style: CSSProperties;
|
|
1752
|
+
style: CSSProperties; /** 搜索卡片属性配置 */
|
|
1803
1753
|
modelModifiers: {
|
|
1804
1754
|
[index: string]: any;
|
|
1805
1755
|
lazy?: boolean | undefined;
|
|
@@ -1907,7 +1857,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1907
1857
|
[index: number]: any;
|
|
1908
1858
|
[index: symbol]: any;
|
|
1909
1859
|
class: any;
|
|
1910
|
-
style: CSSProperties;
|
|
1860
|
+
style: CSSProperties; /** 搜索卡片属性配置 */
|
|
1911
1861
|
modelModifiers: {
|
|
1912
1862
|
[index: string]: any;
|
|
1913
1863
|
lazy?: boolean | undefined;
|
|
@@ -2507,9 +2457,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2507
2457
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2508
2458
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2509
2459
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
2510
|
-
/**
|
|
2511
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
2512
|
-
*/
|
|
2513
2460
|
readonly scrollToError: BooleanConstructor;
|
|
2514
2461
|
readonly scrollIntoViewOptions: {
|
|
2515
2462
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -2536,7 +2483,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2536
2483
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2537
2484
|
__epPropKey: true;
|
|
2538
2485
|
};
|
|
2539
|
-
/** 表头筛选重置 */
|
|
2540
2486
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
2541
2487
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
2542
2488
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -2544,10 +2490,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2544
2490
|
readonly inline: BooleanConstructor;
|
|
2545
2491
|
readonly inlineMessage: BooleanConstructor;
|
|
2546
2492
|
readonly statusIcon: BooleanConstructor;
|
|
2547
|
-
/**
|
|
2548
|
-
* 计算属性:暴露 formRefs
|
|
2549
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
2550
|
-
*/
|
|
2551
2493
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2552
2494
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2553
2495
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -2623,9 +2565,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2623
2565
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2624
2566
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2625
2567
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
2626
|
-
/**
|
|
2627
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
2628
|
-
*/
|
|
2629
2568
|
readonly scrollToError: BooleanConstructor;
|
|
2630
2569
|
readonly scrollIntoViewOptions: {
|
|
2631
2570
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -2654,9 +2593,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2654
2593
|
readonly inlineMessage: boolean;
|
|
2655
2594
|
readonly statusIcon: boolean;
|
|
2656
2595
|
readonly hideRequiredAsterisk: boolean;
|
|
2657
|
-
/**
|
|
2658
|
-
* 组件卸载时清理 MutationObserver
|
|
2659
|
-
*/
|
|
2660
2596
|
readonly scrollToError: boolean;
|
|
2661
2597
|
}, true, {}, {}, {
|
|
2662
2598
|
P: {};
|
|
@@ -2683,9 +2619,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2683
2619
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2684
2620
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2685
2621
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
2686
|
-
/**
|
|
2687
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
2688
|
-
*/
|
|
2689
2622
|
readonly scrollToError: BooleanConstructor;
|
|
2690
2623
|
readonly scrollIntoViewOptions: {
|
|
2691
2624
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -2712,7 +2645,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2712
2645
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2713
2646
|
__epPropKey: true;
|
|
2714
2647
|
};
|
|
2715
|
-
/** 表头筛选重置 */
|
|
2716
2648
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
2717
2649
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
2718
2650
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -2720,10 +2652,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2720
2652
|
readonly inline: BooleanConstructor;
|
|
2721
2653
|
readonly inlineMessage: BooleanConstructor;
|
|
2722
2654
|
readonly statusIcon: BooleanConstructor;
|
|
2723
|
-
/**
|
|
2724
|
-
* 计算属性:暴露 formRefs
|
|
2725
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
2726
|
-
*/
|
|
2727
2655
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2728
2656
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2729
2657
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -2791,9 +2719,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2791
2719
|
readonly inlineMessage: boolean;
|
|
2792
2720
|
readonly statusIcon: boolean;
|
|
2793
2721
|
readonly hideRequiredAsterisk: boolean;
|
|
2794
|
-
/**
|
|
2795
|
-
* 组件卸载时清理 MutationObserver
|
|
2796
|
-
*/
|
|
2797
2722
|
readonly scrollToError: boolean;
|
|
2798
2723
|
}> | null>;
|
|
2799
2724
|
handleSubmit: () => void;
|
|
@@ -2991,9 +2916,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2991
2916
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2992
2917
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
2993
2918
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
2994
|
-
/**
|
|
2995
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
2996
|
-
*/
|
|
2997
2919
|
readonly scrollToError: BooleanConstructor;
|
|
2998
2920
|
readonly scrollIntoViewOptions: {
|
|
2999
2921
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -3020,7 +2942,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3020
2942
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
3021
2943
|
__epPropKey: true;
|
|
3022
2944
|
};
|
|
3023
|
-
/** 表头筛选重置 */
|
|
3024
2945
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
3025
2946
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
3026
2947
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -3028,10 +2949,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3028
2949
|
readonly inline: BooleanConstructor;
|
|
3029
2950
|
readonly inlineMessage: BooleanConstructor;
|
|
3030
2951
|
readonly statusIcon: BooleanConstructor;
|
|
3031
|
-
/**
|
|
3032
|
-
* 计算属性:暴露 formRefs
|
|
3033
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
3034
|
-
*/
|
|
3035
2952
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
3036
2953
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
3037
2954
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -3107,9 +3024,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3107
3024
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
3108
3025
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
3109
3026
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
3110
|
-
/**
|
|
3111
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
3112
|
-
*/
|
|
3113
3027
|
readonly scrollToError: BooleanConstructor;
|
|
3114
3028
|
readonly scrollIntoViewOptions: {
|
|
3115
3029
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -3138,9 +3052,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3138
3052
|
readonly inlineMessage: boolean;
|
|
3139
3053
|
readonly statusIcon: boolean;
|
|
3140
3054
|
readonly hideRequiredAsterisk: boolean;
|
|
3141
|
-
/**
|
|
3142
|
-
* 组件卸载时清理 MutationObserver
|
|
3143
|
-
*/
|
|
3144
3055
|
readonly scrollToError: boolean;
|
|
3145
3056
|
}, true, {}, {}, {
|
|
3146
3057
|
P: {};
|
|
@@ -3167,9 +3078,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3167
3078
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
3168
3079
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
3169
3080
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
3170
|
-
/**
|
|
3171
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
3172
|
-
*/
|
|
3173
3081
|
readonly scrollToError: BooleanConstructor;
|
|
3174
3082
|
readonly scrollIntoViewOptions: {
|
|
3175
3083
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -3196,7 +3104,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3196
3104
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
3197
3105
|
__epPropKey: true;
|
|
3198
3106
|
};
|
|
3199
|
-
/** 表头筛选重置 */
|
|
3200
3107
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
3201
3108
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
3202
3109
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -3204,10 +3111,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3204
3111
|
readonly inline: BooleanConstructor;
|
|
3205
3112
|
readonly inlineMessage: BooleanConstructor;
|
|
3206
3113
|
readonly statusIcon: BooleanConstructor;
|
|
3207
|
-
/**
|
|
3208
|
-
* 计算属性:暴露 formRefs
|
|
3209
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
3210
|
-
*/
|
|
3211
3114
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
3212
3115
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
3213
3116
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -3275,9 +3178,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3275
3178
|
readonly inlineMessage: boolean;
|
|
3276
3179
|
readonly statusIcon: boolean;
|
|
3277
3180
|
readonly hideRequiredAsterisk: boolean;
|
|
3278
|
-
/**
|
|
3279
|
-
* 组件卸载时清理 MutationObserver
|
|
3280
|
-
*/
|
|
3281
3181
|
readonly scrollToError: boolean;
|
|
3282
3182
|
}> | null>;
|
|
3283
3183
|
handleSubmit: () => void;
|
|
@@ -3315,7 +3215,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3315
3215
|
[index: number]: any;
|
|
3316
3216
|
[index: symbol]: any;
|
|
3317
3217
|
class: any;
|
|
3318
|
-
style: CSSProperties;
|
|
3218
|
+
style: CSSProperties; /** 搜索卡片属性配置 */
|
|
3319
3219
|
modelModifiers: {
|
|
3320
3220
|
[index: string]: any;
|
|
3321
3221
|
lazy?: boolean | undefined;
|
|
@@ -3423,7 +3323,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3423
3323
|
[index: number]: any;
|
|
3424
3324
|
[index: symbol]: any;
|
|
3425
3325
|
class: any;
|
|
3426
|
-
style: CSSProperties;
|
|
3326
|
+
style: CSSProperties; /** 搜索卡片属性配置 */
|
|
3427
3327
|
modelModifiers: {
|
|
3428
3328
|
[index: string]: any;
|
|
3429
3329
|
lazy?: boolean | undefined;
|
|
@@ -3549,7 +3449,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3549
3449
|
[index: number]: any;
|
|
3550
3450
|
[index: symbol]: any;
|
|
3551
3451
|
class: any;
|
|
3552
|
-
style: CSSProperties;
|
|
3452
|
+
style: CSSProperties; /** 搜索卡片属性配置 */
|
|
3553
3453
|
modelModifiers: {
|
|
3554
3454
|
[index: string]: any;
|
|
3555
3455
|
lazy?: boolean | undefined;
|
|
@@ -4253,6 +4153,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
4253
4153
|
context: Table<any>;
|
|
4254
4154
|
computedSumText: ComputedRef<string>;
|
|
4255
4155
|
computedEmptyText: ComputedRef<string>;
|
|
4156
|
+
/**
|
|
4157
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
4158
|
+
*/
|
|
4256
4159
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
4257
4160
|
scrollbarViewStyle: {
|
|
4258
4161
|
display: string;
|
|
@@ -4584,6 +4487,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
4584
4487
|
context: Table<any>;
|
|
4585
4488
|
computedSumText: ComputedRef<string>;
|
|
4586
4489
|
computedEmptyText: ComputedRef<string>;
|
|
4490
|
+
/**
|
|
4491
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
4492
|
+
*/
|
|
4587
4493
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
4588
4494
|
scrollbarViewStyle: {
|
|
4589
4495
|
display: string;
|
|
@@ -5040,6 +4946,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5040
4946
|
context: Table<any>;
|
|
5041
4947
|
computedSumText: ComputedRef<string>;
|
|
5042
4948
|
computedEmptyText: ComputedRef<string>;
|
|
4949
|
+
/**
|
|
4950
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
4951
|
+
*/
|
|
5043
4952
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
5044
4953
|
scrollbarViewStyle: {
|
|
5045
4954
|
display: string;
|
|
@@ -5371,6 +5280,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5371
5280
|
context: Table<any>;
|
|
5372
5281
|
computedSumText: ComputedRef<string>;
|
|
5373
5282
|
computedEmptyText: ComputedRef<string>;
|
|
5283
|
+
/**
|
|
5284
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
5285
|
+
*/
|
|
5374
5286
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
5375
5287
|
scrollbarViewStyle: {
|
|
5376
5288
|
display: string;
|
|
@@ -6244,9 +6156,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6244
6156
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6245
6157
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6246
6158
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
6247
|
-
/**
|
|
6248
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
6249
|
-
*/
|
|
6250
6159
|
readonly scrollToError: BooleanConstructor;
|
|
6251
6160
|
readonly scrollIntoViewOptions: {
|
|
6252
6161
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -6273,7 +6182,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6273
6182
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
6274
6183
|
__epPropKey: true;
|
|
6275
6184
|
};
|
|
6276
|
-
/** 表头筛选重置 */
|
|
6277
6185
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
6278
6186
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
6279
6187
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -6281,10 +6189,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6281
6189
|
readonly inline: BooleanConstructor;
|
|
6282
6190
|
readonly inlineMessage: BooleanConstructor;
|
|
6283
6191
|
readonly statusIcon: BooleanConstructor;
|
|
6284
|
-
/**
|
|
6285
|
-
* 计算属性:暴露 formRefs
|
|
6286
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
6287
|
-
*/
|
|
6288
6192
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6289
6193
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6290
6194
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -6360,9 +6264,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6360
6264
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6361
6265
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6362
6266
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
6363
|
-
/**
|
|
6364
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
6365
|
-
*/
|
|
6366
6267
|
readonly scrollToError: BooleanConstructor;
|
|
6367
6268
|
readonly scrollIntoViewOptions: {
|
|
6368
6269
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -6391,9 +6292,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6391
6292
|
readonly inlineMessage: boolean;
|
|
6392
6293
|
readonly statusIcon: boolean;
|
|
6393
6294
|
readonly hideRequiredAsterisk: boolean;
|
|
6394
|
-
/**
|
|
6395
|
-
* 组件卸载时清理 MutationObserver
|
|
6396
|
-
*/
|
|
6397
6295
|
readonly scrollToError: boolean;
|
|
6398
6296
|
}, true, {}, {}, {
|
|
6399
6297
|
P: {};
|
|
@@ -6420,9 +6318,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6420
6318
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6421
6319
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6422
6320
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
6423
|
-
/**
|
|
6424
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
6425
|
-
*/
|
|
6426
6321
|
readonly scrollToError: BooleanConstructor;
|
|
6427
6322
|
readonly scrollIntoViewOptions: {
|
|
6428
6323
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -6449,7 +6344,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6449
6344
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
6450
6345
|
__epPropKey: true;
|
|
6451
6346
|
};
|
|
6452
|
-
/** 表头筛选重置 */
|
|
6453
6347
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
6454
6348
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
6455
6349
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -6457,10 +6351,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6457
6351
|
readonly inline: BooleanConstructor;
|
|
6458
6352
|
readonly inlineMessage: BooleanConstructor;
|
|
6459
6353
|
readonly statusIcon: BooleanConstructor;
|
|
6460
|
-
/**
|
|
6461
|
-
* 计算属性:暴露 formRefs
|
|
6462
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
6463
|
-
*/
|
|
6464
6354
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6465
6355
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6466
6356
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -6528,9 +6418,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6528
6418
|
readonly inlineMessage: boolean;
|
|
6529
6419
|
readonly statusIcon: boolean;
|
|
6530
6420
|
readonly hideRequiredAsterisk: boolean;
|
|
6531
|
-
/**
|
|
6532
|
-
* 组件卸载时清理 MutationObserver
|
|
6533
|
-
*/
|
|
6534
6421
|
readonly scrollToError: boolean;
|
|
6535
6422
|
}> | null>;
|
|
6536
6423
|
handleSubmit: () => void;
|
|
@@ -6728,9 +6615,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6728
6615
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6729
6616
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6730
6617
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
6731
|
-
/**
|
|
6732
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
6733
|
-
*/
|
|
6734
6618
|
readonly scrollToError: BooleanConstructor;
|
|
6735
6619
|
readonly scrollIntoViewOptions: {
|
|
6736
6620
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -6757,7 +6641,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6757
6641
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
6758
6642
|
__epPropKey: true;
|
|
6759
6643
|
};
|
|
6760
|
-
/** 表头筛选重置 */
|
|
6761
6644
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
6762
6645
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
6763
6646
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -6765,10 +6648,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6765
6648
|
readonly inline: BooleanConstructor;
|
|
6766
6649
|
readonly inlineMessage: BooleanConstructor;
|
|
6767
6650
|
readonly statusIcon: BooleanConstructor;
|
|
6768
|
-
/**
|
|
6769
|
-
* 计算属性:暴露 formRefs
|
|
6770
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
6771
|
-
*/
|
|
6772
6651
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6773
6652
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6774
6653
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -6844,9 +6723,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6844
6723
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6845
6724
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6846
6725
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
6847
|
-
/**
|
|
6848
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
6849
|
-
*/
|
|
6850
6726
|
readonly scrollToError: BooleanConstructor;
|
|
6851
6727
|
readonly scrollIntoViewOptions: {
|
|
6852
6728
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -6875,9 +6751,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6875
6751
|
readonly inlineMessage: boolean;
|
|
6876
6752
|
readonly statusIcon: boolean;
|
|
6877
6753
|
readonly hideRequiredAsterisk: boolean;
|
|
6878
|
-
/**
|
|
6879
|
-
* 组件卸载时清理 MutationObserver
|
|
6880
|
-
*/
|
|
6881
6754
|
readonly scrollToError: boolean;
|
|
6882
6755
|
}, true, {}, {}, {
|
|
6883
6756
|
P: {};
|
|
@@ -6904,9 +6777,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6904
6777
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6905
6778
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6906
6779
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
6907
|
-
/**
|
|
6908
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
6909
|
-
*/
|
|
6910
6780
|
readonly scrollToError: BooleanConstructor;
|
|
6911
6781
|
readonly scrollIntoViewOptions: {
|
|
6912
6782
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -6933,7 +6803,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6933
6803
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
6934
6804
|
__epPropKey: true;
|
|
6935
6805
|
};
|
|
6936
|
-
/** 表头筛选重置 */
|
|
6937
6806
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
6938
6807
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
6939
6808
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -6941,10 +6810,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6941
6810
|
readonly inline: BooleanConstructor;
|
|
6942
6811
|
readonly inlineMessage: BooleanConstructor;
|
|
6943
6812
|
readonly statusIcon: BooleanConstructor;
|
|
6944
|
-
/**
|
|
6945
|
-
* 计算属性:暴露 formRefs
|
|
6946
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
6947
|
-
*/
|
|
6948
6813
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6949
6814
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6950
6815
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -7012,9 +6877,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7012
6877
|
readonly inlineMessage: boolean;
|
|
7013
6878
|
readonly statusIcon: boolean;
|
|
7014
6879
|
readonly hideRequiredAsterisk: boolean;
|
|
7015
|
-
/**
|
|
7016
|
-
* 组件卸载时清理 MutationObserver
|
|
7017
|
-
*/
|
|
7018
6880
|
readonly scrollToError: boolean;
|
|
7019
6881
|
}> | null>;
|
|
7020
6882
|
handleSubmit: () => void;
|
|
@@ -7052,7 +6914,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7052
6914
|
[index: number]: any;
|
|
7053
6915
|
[index: symbol]: any;
|
|
7054
6916
|
class: any;
|
|
7055
|
-
style: CSSProperties;
|
|
6917
|
+
style: CSSProperties; /** 搜索卡片属性配置 */
|
|
7056
6918
|
modelModifiers: {
|
|
7057
6919
|
[index: string]: any;
|
|
7058
6920
|
lazy?: boolean | undefined;
|
|
@@ -7160,7 +7022,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7160
7022
|
[index: number]: any;
|
|
7161
7023
|
[index: symbol]: any;
|
|
7162
7024
|
class: any;
|
|
7163
|
-
style: CSSProperties;
|
|
7025
|
+
style: CSSProperties; /** 搜索卡片属性配置 */
|
|
7164
7026
|
modelModifiers: {
|
|
7165
7027
|
[index: string]: any;
|
|
7166
7028
|
lazy?: boolean | undefined;
|
|
@@ -7760,9 +7622,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7760
7622
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7761
7623
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7762
7624
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
7763
|
-
/**
|
|
7764
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
7765
|
-
*/
|
|
7766
7625
|
readonly scrollToError: BooleanConstructor;
|
|
7767
7626
|
readonly scrollIntoViewOptions: {
|
|
7768
7627
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -7789,7 +7648,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7789
7648
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
7790
7649
|
__epPropKey: true;
|
|
7791
7650
|
};
|
|
7792
|
-
/** 表头筛选重置 */
|
|
7793
7651
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
7794
7652
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
7795
7653
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -7797,10 +7655,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7797
7655
|
readonly inline: BooleanConstructor;
|
|
7798
7656
|
readonly inlineMessage: BooleanConstructor;
|
|
7799
7657
|
readonly statusIcon: BooleanConstructor;
|
|
7800
|
-
/**
|
|
7801
|
-
* 计算属性:暴露 formRefs
|
|
7802
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
7803
|
-
*/
|
|
7804
7658
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7805
7659
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7806
7660
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -7876,9 +7730,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7876
7730
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7877
7731
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7878
7732
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
7879
|
-
/**
|
|
7880
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
7881
|
-
*/
|
|
7882
7733
|
readonly scrollToError: BooleanConstructor;
|
|
7883
7734
|
readonly scrollIntoViewOptions: {
|
|
7884
7735
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -7907,9 +7758,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7907
7758
|
readonly inlineMessage: boolean;
|
|
7908
7759
|
readonly statusIcon: boolean;
|
|
7909
7760
|
readonly hideRequiredAsterisk: boolean;
|
|
7910
|
-
/**
|
|
7911
|
-
* 组件卸载时清理 MutationObserver
|
|
7912
|
-
*/
|
|
7913
7761
|
readonly scrollToError: boolean;
|
|
7914
7762
|
}, true, {}, {}, {
|
|
7915
7763
|
P: {};
|
|
@@ -7936,9 +7784,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7936
7784
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7937
7785
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7938
7786
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
7939
|
-
/**
|
|
7940
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
7941
|
-
*/
|
|
7942
7787
|
readonly scrollToError: BooleanConstructor;
|
|
7943
7788
|
readonly scrollIntoViewOptions: {
|
|
7944
7789
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -7965,7 +7810,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7965
7810
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
7966
7811
|
__epPropKey: true;
|
|
7967
7812
|
};
|
|
7968
|
-
/** 表头筛选重置 */
|
|
7969
7813
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
7970
7814
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
7971
7815
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -7973,10 +7817,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7973
7817
|
readonly inline: BooleanConstructor;
|
|
7974
7818
|
readonly inlineMessage: BooleanConstructor;
|
|
7975
7819
|
readonly statusIcon: BooleanConstructor;
|
|
7976
|
-
/**
|
|
7977
|
-
* 计算属性:暴露 formRefs
|
|
7978
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
7979
|
-
*/
|
|
7980
7820
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7981
7821
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7982
7822
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -8044,9 +7884,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8044
7884
|
readonly inlineMessage: boolean;
|
|
8045
7885
|
readonly statusIcon: boolean;
|
|
8046
7886
|
readonly hideRequiredAsterisk: boolean;
|
|
8047
|
-
/**
|
|
8048
|
-
* 组件卸载时清理 MutationObserver
|
|
8049
|
-
*/
|
|
8050
7887
|
readonly scrollToError: boolean;
|
|
8051
7888
|
}> | null>;
|
|
8052
7889
|
handleSubmit: () => void;
|
|
@@ -8244,9 +8081,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8244
8081
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
8245
8082
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
8246
8083
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
8247
|
-
/**
|
|
8248
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
8249
|
-
*/
|
|
8250
8084
|
readonly scrollToError: BooleanConstructor;
|
|
8251
8085
|
readonly scrollIntoViewOptions: {
|
|
8252
8086
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -8273,7 +8107,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8273
8107
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
8274
8108
|
__epPropKey: true;
|
|
8275
8109
|
};
|
|
8276
|
-
/** 表头筛选重置 */
|
|
8277
8110
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
8278
8111
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
8279
8112
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -8281,10 +8114,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8281
8114
|
readonly inline: BooleanConstructor;
|
|
8282
8115
|
readonly inlineMessage: BooleanConstructor;
|
|
8283
8116
|
readonly statusIcon: BooleanConstructor;
|
|
8284
|
-
/**
|
|
8285
|
-
* 计算属性:暴露 formRefs
|
|
8286
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
8287
|
-
*/
|
|
8288
8117
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
8289
8118
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
8290
8119
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -8360,9 +8189,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8360
8189
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
8361
8190
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
8362
8191
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
8363
|
-
/**
|
|
8364
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
8365
|
-
*/
|
|
8366
8192
|
readonly scrollToError: BooleanConstructor;
|
|
8367
8193
|
readonly scrollIntoViewOptions: {
|
|
8368
8194
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -8391,9 +8217,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8391
8217
|
readonly inlineMessage: boolean;
|
|
8392
8218
|
readonly statusIcon: boolean;
|
|
8393
8219
|
readonly hideRequiredAsterisk: boolean;
|
|
8394
|
-
/**
|
|
8395
|
-
* 组件卸载时清理 MutationObserver
|
|
8396
|
-
*/
|
|
8397
8220
|
readonly scrollToError: boolean;
|
|
8398
8221
|
}, true, {}, {}, {
|
|
8399
8222
|
P: {};
|
|
@@ -8420,9 +8243,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8420
8243
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
8421
8244
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
8422
8245
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
8423
|
-
/**
|
|
8424
|
-
* MutationObserver 实例,用于监听组件可见性变化
|
|
8425
|
-
*/
|
|
8426
8246
|
readonly scrollToError: BooleanConstructor;
|
|
8427
8247
|
readonly scrollIntoViewOptions: {
|
|
8428
8248
|
readonly type: PropType<EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>>;
|
|
@@ -8449,7 +8269,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8449
8269
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
8450
8270
|
__epPropKey: true;
|
|
8451
8271
|
};
|
|
8452
|
-
/** 表头筛选重置 */
|
|
8453
8272
|
readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
|
|
8454
8273
|
readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
|
|
8455
8274
|
readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
@@ -8457,10 +8276,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8457
8276
|
readonly inline: BooleanConstructor;
|
|
8458
8277
|
readonly inlineMessage: BooleanConstructor;
|
|
8459
8278
|
readonly statusIcon: BooleanConstructor;
|
|
8460
|
-
/**
|
|
8461
|
-
* 计算属性:暴露 formRefs
|
|
8462
|
-
* @description 通过 plusTableInstance 访问表单引用,用于单元格编辑控制
|
|
8463
|
-
*/
|
|
8464
8279
|
readonly showMessage: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
8465
8280
|
readonly validateOnRuleChange: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
8466
8281
|
readonly hideRequiredAsterisk: BooleanConstructor;
|
|
@@ -8528,9 +8343,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8528
8343
|
readonly inlineMessage: boolean;
|
|
8529
8344
|
readonly statusIcon: boolean;
|
|
8530
8345
|
readonly hideRequiredAsterisk: boolean;
|
|
8531
|
-
/**
|
|
8532
|
-
* 组件卸载时清理 MutationObserver
|
|
8533
|
-
*/
|
|
8534
8346
|
readonly scrollToError: boolean;
|
|
8535
8347
|
}> | null>;
|
|
8536
8348
|
handleSubmit: () => void;
|
|
@@ -8568,7 +8380,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8568
8380
|
[index: number]: any;
|
|
8569
8381
|
[index: symbol]: any;
|
|
8570
8382
|
class: any;
|
|
8571
|
-
style: CSSProperties;
|
|
8383
|
+
style: CSSProperties; /** 搜索卡片属性配置 */
|
|
8572
8384
|
modelModifiers: {
|
|
8573
8385
|
[index: string]: any;
|
|
8574
8386
|
lazy?: boolean | undefined;
|
|
@@ -8676,7 +8488,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8676
8488
|
[index: number]: any;
|
|
8677
8489
|
[index: symbol]: any;
|
|
8678
8490
|
class: any;
|
|
8679
|
-
style: CSSProperties;
|
|
8491
|
+
style: CSSProperties; /** 搜索卡片属性配置 */
|
|
8680
8492
|
modelModifiers: {
|
|
8681
8493
|
[index: string]: any;
|
|
8682
8494
|
lazy?: boolean | undefined;
|
|
@@ -8802,7 +8614,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
8802
8614
|
[index: number]: any;
|
|
8803
8615
|
[index: symbol]: any;
|
|
8804
8616
|
class: any;
|
|
8805
|
-
style: CSSProperties;
|
|
8617
|
+
style: CSSProperties; /** 搜索卡片属性配置 */
|
|
8806
8618
|
modelModifiers: {
|
|
8807
8619
|
[index: string]: any;
|
|
8808
8620
|
lazy?: boolean | undefined;
|
|
@@ -9506,6 +9318,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
9506
9318
|
context: Table<any>;
|
|
9507
9319
|
computedSumText: ComputedRef<string>;
|
|
9508
9320
|
computedEmptyText: ComputedRef<string>;
|
|
9321
|
+
/**
|
|
9322
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
9323
|
+
*/
|
|
9509
9324
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
9510
9325
|
scrollbarViewStyle: {
|
|
9511
9326
|
display: string;
|
|
@@ -9837,6 +9652,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
9837
9652
|
context: Table<any>;
|
|
9838
9653
|
computedSumText: ComputedRef<string>;
|
|
9839
9654
|
computedEmptyText: ComputedRef<string>;
|
|
9655
|
+
/**
|
|
9656
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
9657
|
+
*/
|
|
9840
9658
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
9841
9659
|
scrollbarViewStyle: {
|
|
9842
9660
|
display: string;
|
|
@@ -10293,6 +10111,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
10293
10111
|
context: Table<any>;
|
|
10294
10112
|
computedSumText: ComputedRef<string>;
|
|
10295
10113
|
computedEmptyText: ComputedRef<string>;
|
|
10114
|
+
/**
|
|
10115
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
10116
|
+
*/
|
|
10296
10117
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
10297
10118
|
scrollbarViewStyle: {
|
|
10298
10119
|
display: string;
|
|
@@ -10624,6 +10445,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
10624
10445
|
context: Table<any>;
|
|
10625
10446
|
computedSumText: ComputedRef<string>;
|
|
10626
10447
|
computedEmptyText: ComputedRef<string>;
|
|
10448
|
+
/**
|
|
10449
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
10450
|
+
*/
|
|
10627
10451
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
10628
10452
|
scrollbarViewStyle: {
|
|
10629
10453
|
display: string;
|
|
@@ -10730,7 +10554,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
10730
10554
|
[index: number]: any;
|
|
10731
10555
|
[index: symbol]: any;
|
|
10732
10556
|
class: any;
|
|
10733
|
-
style: CSSProperties;
|
|
10557
|
+
style: CSSProperties; /** 搜索卡片属性配置 */
|
|
10734
10558
|
modelModifiers: {
|
|
10735
10559
|
[index: string]: any;
|
|
10736
10560
|
lazy?: boolean | undefined;
|
|
@@ -11450,6 +11274,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
11450
11274
|
context: Table<any>;
|
|
11451
11275
|
computedSumText: ComputedRef<string>;
|
|
11452
11276
|
computedEmptyText: ComputedRef<string>;
|
|
11277
|
+
/**
|
|
11278
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
11279
|
+
*/
|
|
11453
11280
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
11454
11281
|
scrollbarViewStyle: {
|
|
11455
11282
|
display: string;
|
|
@@ -11781,6 +11608,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
11781
11608
|
context: Table<any>;
|
|
11782
11609
|
computedSumText: ComputedRef<string>;
|
|
11783
11610
|
computedEmptyText: ComputedRef<string>;
|
|
11611
|
+
/**
|
|
11612
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
11613
|
+
*/
|
|
11784
11614
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
11785
11615
|
scrollbarViewStyle: {
|
|
11786
11616
|
display: string;
|
|
@@ -12237,6 +12067,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
12237
12067
|
context: Table<any>;
|
|
12238
12068
|
computedSumText: ComputedRef<string>;
|
|
12239
12069
|
computedEmptyText: ComputedRef<string>;
|
|
12070
|
+
/**
|
|
12071
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
12072
|
+
*/
|
|
12240
12073
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
12241
12074
|
scrollbarViewStyle: {
|
|
12242
12075
|
display: string;
|
|
@@ -12568,6 +12401,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
12568
12401
|
context: Table<any>;
|
|
12569
12402
|
computedSumText: ComputedRef<string>;
|
|
12570
12403
|
computedEmptyText: ComputedRef<string>;
|
|
12404
|
+
/**
|
|
12405
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
12406
|
+
*/
|
|
12571
12407
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
12572
12408
|
scrollbarViewStyle: {
|
|
12573
12409
|
display: string;
|
|
@@ -12812,6 +12648,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
12812
12648
|
context: Table<any>;
|
|
12813
12649
|
computedSumText: ComputedRef<string>;
|
|
12814
12650
|
computedEmptyText: ComputedRef<string>;
|
|
12651
|
+
/**
|
|
12652
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
12653
|
+
*/
|
|
12815
12654
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
12816
12655
|
scrollbarViewStyle: {
|
|
12817
12656
|
display: string;
|
|
@@ -13143,6 +12982,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
13143
12982
|
context: Table<any>;
|
|
13144
12983
|
computedSumText: ComputedRef<string>;
|
|
13145
12984
|
computedEmptyText: ComputedRef<string>;
|
|
12985
|
+
/**
|
|
12986
|
+
* 字段管理图标 URL(从全局配置 CDN 获取)
|
|
12987
|
+
*/
|
|
13146
12988
|
tableLayout: ComputedRef<"fixed" | "auto" | undefined>;
|
|
13147
12989
|
scrollbarViewStyle: {
|
|
13148
12990
|
display: string;
|