star-horse-lowcode 2.8.13 → 2.8.14
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/README.md +12 -2
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +30 -5
- package/dist/types/index.d.ts +125 -85
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -241,6 +241,60 @@ btnTextContinue: string;
|
|
|
241
241
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
242
242
|
|
|
243
243
|
declare const __VLS_component_2: DefineComponent<ExtractPropTypes< {
|
|
244
|
+
msg: {
|
|
245
|
+
type: StringConstructor;
|
|
246
|
+
required: true;
|
|
247
|
+
};
|
|
248
|
+
node: {
|
|
249
|
+
type: PropType<DynamicNode>;
|
|
250
|
+
required: true;
|
|
251
|
+
};
|
|
252
|
+
isActive: {
|
|
253
|
+
type: BooleanConstructor;
|
|
254
|
+
default: boolean;
|
|
255
|
+
};
|
|
256
|
+
styles: {
|
|
257
|
+
type: ObjectConstructor;
|
|
258
|
+
default: () => void;
|
|
259
|
+
};
|
|
260
|
+
isDesign: {
|
|
261
|
+
type: BooleanConstructor;
|
|
262
|
+
default: boolean;
|
|
263
|
+
};
|
|
264
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
265
|
+
selectNode: (...args: any[]) => void;
|
|
266
|
+
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
267
|
+
msg: {
|
|
268
|
+
type: StringConstructor;
|
|
269
|
+
required: true;
|
|
270
|
+
};
|
|
271
|
+
node: {
|
|
272
|
+
type: PropType<DynamicNode>;
|
|
273
|
+
required: true;
|
|
274
|
+
};
|
|
275
|
+
isActive: {
|
|
276
|
+
type: BooleanConstructor;
|
|
277
|
+
default: boolean;
|
|
278
|
+
};
|
|
279
|
+
styles: {
|
|
280
|
+
type: ObjectConstructor;
|
|
281
|
+
default: () => void;
|
|
282
|
+
};
|
|
283
|
+
isDesign: {
|
|
284
|
+
type: BooleanConstructor;
|
|
285
|
+
default: boolean;
|
|
286
|
+
};
|
|
287
|
+
}>> & Readonly<{
|
|
288
|
+
onSelectNode?: (...args: any[]) => any;
|
|
289
|
+
}>, {
|
|
290
|
+
isActive: boolean;
|
|
291
|
+
styles: Record<string, any>;
|
|
292
|
+
isDesign: boolean;
|
|
293
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
294
|
+
contentMenuRef: unknown;
|
|
295
|
+
}, any>;
|
|
296
|
+
|
|
297
|
+
declare const __VLS_component_3: DefineComponent<ExtractPropTypes< {
|
|
244
298
|
menuIcon: {
|
|
245
299
|
type: StringConstructor;
|
|
246
300
|
};
|
|
@@ -279,7 +333,7 @@ iconSize: number;
|
|
|
279
333
|
icons: unknown[];
|
|
280
334
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
281
335
|
|
|
282
|
-
declare const
|
|
336
|
+
declare const __VLS_component_4: DefineComponent<ExtractPropTypes< {
|
|
283
337
|
needScroller: {
|
|
284
338
|
type: BooleanConstructor;
|
|
285
339
|
default: boolean;
|
|
@@ -308,7 +362,7 @@ needScroller: boolean;
|
|
|
308
362
|
shFormRef: unknown;
|
|
309
363
|
}, any>;
|
|
310
364
|
|
|
311
|
-
declare const
|
|
365
|
+
declare const __VLS_component_5: DefineComponent<ExtractPropTypes< {
|
|
312
366
|
menuData: {
|
|
313
367
|
type: PropType<any>;
|
|
314
368
|
default: () => any[];
|
|
@@ -639,12 +693,24 @@ declare function __VLS_template_2(): {
|
|
|
639
693
|
attrs: Partial<{}>;
|
|
640
694
|
slots: {
|
|
641
695
|
default?(_: {}): any;
|
|
696
|
+
default?(_: {}): any;
|
|
697
|
+
};
|
|
698
|
+
refs: {
|
|
699
|
+
contentMenuRef: unknown;
|
|
642
700
|
};
|
|
643
|
-
refs: {};
|
|
644
701
|
rootEl: any;
|
|
645
702
|
};
|
|
646
703
|
|
|
647
704
|
declare function __VLS_template_3(): {
|
|
705
|
+
attrs: Partial<{}>;
|
|
706
|
+
slots: {
|
|
707
|
+
default?(_: {}): any;
|
|
708
|
+
};
|
|
709
|
+
refs: {};
|
|
710
|
+
rootEl: any;
|
|
711
|
+
};
|
|
712
|
+
|
|
713
|
+
declare function __VLS_template_4(): {
|
|
648
714
|
attrs: Partial<{}>;
|
|
649
715
|
slots: {
|
|
650
716
|
header?(_: {}): any;
|
|
@@ -660,7 +726,7 @@ declare function __VLS_template_3(): {
|
|
|
660
726
|
rootEl: any;
|
|
661
727
|
};
|
|
662
728
|
|
|
663
|
-
declare function
|
|
729
|
+
declare function __VLS_template_5(): {
|
|
664
730
|
attrs: Partial<{}>;
|
|
665
731
|
slots: {
|
|
666
732
|
title?(_: {}): any;
|
|
@@ -681,6 +747,8 @@ declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
|
681
747
|
|
|
682
748
|
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
683
749
|
|
|
750
|
+
declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
|
|
751
|
+
|
|
684
752
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
685
753
|
new (): {
|
|
686
754
|
$slots: S;
|
|
@@ -705,6 +773,12 @@ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
|
|
|
705
773
|
};
|
|
706
774
|
};
|
|
707
775
|
|
|
776
|
+
declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
777
|
+
new (): {
|
|
778
|
+
$slots: S;
|
|
779
|
+
};
|
|
780
|
+
};
|
|
781
|
+
|
|
708
782
|
/**
|
|
709
783
|
* 公共Api接口
|
|
710
784
|
* @param appName 应用名称
|
|
@@ -894,9 +968,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
894
968
|
"onUpdate:formData"?: (value: any) => any;
|
|
895
969
|
}>, {
|
|
896
970
|
disabled: boolean;
|
|
971
|
+
isDesign: boolean;
|
|
897
972
|
bareFlag: boolean;
|
|
898
973
|
isSearch: boolean;
|
|
899
|
-
isDesign: boolean;
|
|
900
974
|
showFormItem: boolean;
|
|
901
975
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
902
976
|
|
|
@@ -908,9 +982,9 @@ onSelectItem?: (...args: any[]) => any;
|
|
|
908
982
|
onSelfFunc?: (...args: any[]) => any;
|
|
909
983
|
}>, {
|
|
910
984
|
disabled: boolean;
|
|
985
|
+
isDesign: boolean;
|
|
911
986
|
bareFlag: boolean;
|
|
912
987
|
isSearch: boolean;
|
|
913
|
-
isDesign: boolean;
|
|
914
988
|
showFormItem: boolean;
|
|
915
989
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
916
990
|
audio: HTMLAudioElement;
|
|
@@ -926,9 +1000,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
926
1000
|
"onUpdate:formData"?: (value: any) => any;
|
|
927
1001
|
}>, {
|
|
928
1002
|
disabled: boolean;
|
|
1003
|
+
isDesign: boolean;
|
|
929
1004
|
bareFlag: boolean;
|
|
930
1005
|
isSearch: boolean;
|
|
931
|
-
isDesign: boolean;
|
|
932
1006
|
showFormItem: boolean;
|
|
933
1007
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
934
1008
|
|
|
@@ -942,9 +1016,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
942
1016
|
"onUpdate:formData"?: (value: any) => any;
|
|
943
1017
|
}>, {
|
|
944
1018
|
disabled: boolean;
|
|
1019
|
+
isDesign: boolean;
|
|
945
1020
|
bareFlag: boolean;
|
|
946
1021
|
isSearch: boolean;
|
|
947
|
-
isDesign: boolean;
|
|
948
1022
|
showFormItem: boolean;
|
|
949
1023
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
950
1024
|
|
|
@@ -1193,9 +1267,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
1193
1267
|
"onUpdate:formData"?: (value: any) => any;
|
|
1194
1268
|
}>, {
|
|
1195
1269
|
disabled: boolean;
|
|
1270
|
+
isDesign: boolean;
|
|
1196
1271
|
bareFlag: boolean;
|
|
1197
1272
|
isSearch: boolean;
|
|
1198
|
-
isDesign: boolean;
|
|
1199
1273
|
showFormItem: boolean;
|
|
1200
1274
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1201
1275
|
btnFormRef: unknown;
|
|
@@ -1285,9 +1359,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
1285
1359
|
"onUpdate:formData"?: (value: any) => any;
|
|
1286
1360
|
}>, {
|
|
1287
1361
|
disabled: boolean;
|
|
1362
|
+
isDesign: boolean;
|
|
1288
1363
|
bareFlag: boolean;
|
|
1289
1364
|
isSearch: boolean;
|
|
1290
|
-
isDesign: boolean;
|
|
1291
1365
|
showFormItem: boolean;
|
|
1292
1366
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1293
1367
|
|
|
@@ -1301,9 +1375,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
1301
1375
|
"onUpdate:formData"?: (value: any) => any;
|
|
1302
1376
|
}>, {
|
|
1303
1377
|
disabled: boolean;
|
|
1378
|
+
isDesign: boolean;
|
|
1304
1379
|
bareFlag: boolean;
|
|
1305
1380
|
isSearch: boolean;
|
|
1306
|
-
isDesign: boolean;
|
|
1307
1381
|
showFormItem: boolean;
|
|
1308
1382
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1309
1383
|
|
|
@@ -1385,9 +1459,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
1385
1459
|
"onUpdate:formData"?: (value: any) => any;
|
|
1386
1460
|
}>, {
|
|
1387
1461
|
disabled: boolean;
|
|
1462
|
+
isDesign: boolean;
|
|
1388
1463
|
bareFlag: boolean;
|
|
1389
1464
|
isSearch: boolean;
|
|
1390
|
-
isDesign: boolean;
|
|
1391
1465
|
showFormItem: boolean;
|
|
1392
1466
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1393
1467
|
|
|
@@ -1527,7 +1601,7 @@ export declare interface ContainerPreps {
|
|
|
1527
1601
|
source: number;
|
|
1528
1602
|
}
|
|
1529
1603
|
|
|
1530
|
-
export declare const ContentMenu:
|
|
1604
|
+
export declare const ContentMenu: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
1531
1605
|
|
|
1532
1606
|
/**
|
|
1533
1607
|
* 下划线转驼峰
|
|
@@ -1595,9 +1669,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
1595
1669
|
"onUpdate:formData"?: (value: any) => any;
|
|
1596
1670
|
}>, {
|
|
1597
1671
|
disabled: boolean;
|
|
1672
|
+
isDesign: boolean;
|
|
1598
1673
|
bareFlag: boolean;
|
|
1599
1674
|
isSearch: boolean;
|
|
1600
|
-
isDesign: boolean;
|
|
1601
1675
|
showFormItem: boolean;
|
|
1602
1676
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1603
1677
|
cronTabRef: CreateComponentPublicInstanceWithMixins<Readonly<Crontab> & Readonly<{
|
|
@@ -2150,9 +2224,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
2150
2224
|
"onUpdate:formData"?: (value: any) => any;
|
|
2151
2225
|
}>, {
|
|
2152
2226
|
disabled: boolean;
|
|
2227
|
+
isDesign: boolean;
|
|
2153
2228
|
bareFlag: boolean;
|
|
2154
2229
|
isSearch: boolean;
|
|
2155
|
-
isDesign: boolean;
|
|
2156
2230
|
showFormItem: boolean;
|
|
2157
2231
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2158
2232
|
|
|
@@ -2192,9 +2266,9 @@ onSelectItem?: (...args: any[]) => any;
|
|
|
2192
2266
|
onSelfFunc?: (...args: any[]) => any;
|
|
2193
2267
|
}>, {
|
|
2194
2268
|
disabled: boolean;
|
|
2269
|
+
isDesign: boolean;
|
|
2195
2270
|
bareFlag: boolean;
|
|
2196
2271
|
isSearch: boolean;
|
|
2197
|
-
isDesign: boolean;
|
|
2198
2272
|
showFormItem: boolean;
|
|
2199
2273
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2200
2274
|
|
|
@@ -2208,9 +2282,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
2208
2282
|
"onUpdate:formData"?: (value: any) => any;
|
|
2209
2283
|
}>, {
|
|
2210
2284
|
disabled: boolean;
|
|
2285
|
+
isDesign: boolean;
|
|
2211
2286
|
bareFlag: boolean;
|
|
2212
2287
|
isSearch: boolean;
|
|
2213
|
-
isDesign: boolean;
|
|
2214
2288
|
showFormItem: boolean;
|
|
2215
2289
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
2216
2290
|
dialogInputTableRef: unknown;
|
|
@@ -2293,9 +2367,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
2293
2367
|
"onUpdate:formData"?: (value: any) => any;
|
|
2294
2368
|
}>, {
|
|
2295
2369
|
disabled: boolean;
|
|
2370
|
+
isDesign: boolean;
|
|
2296
2371
|
bareFlag: boolean;
|
|
2297
2372
|
isSearch: boolean;
|
|
2298
|
-
isDesign: boolean;
|
|
2299
2373
|
showFormItem: boolean;
|
|
2300
2374
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2301
2375
|
|
|
@@ -2717,9 +2791,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
2717
2791
|
"onUpdate:formData"?: (value: any) => any;
|
|
2718
2792
|
}>, {
|
|
2719
2793
|
disabled: boolean;
|
|
2794
|
+
isDesign: boolean;
|
|
2720
2795
|
bareFlag: boolean;
|
|
2721
2796
|
isSearch: boolean;
|
|
2722
|
-
isDesign: boolean;
|
|
2723
2797
|
showFormItem: boolean;
|
|
2724
2798
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2725
2799
|
|
|
@@ -2733,9 +2807,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
2733
2807
|
"onUpdate:formData"?: (value: any) => any;
|
|
2734
2808
|
}>, {
|
|
2735
2809
|
disabled: boolean;
|
|
2810
|
+
isDesign: boolean;
|
|
2736
2811
|
bareFlag: boolean;
|
|
2737
2812
|
isSearch: boolean;
|
|
2738
|
-
isDesign: boolean;
|
|
2739
2813
|
showFormItem: boolean;
|
|
2740
2814
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2741
2815
|
|
|
@@ -2757,9 +2831,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
2757
2831
|
"onUpdate:formData"?: (value: any) => any;
|
|
2758
2832
|
}>, {
|
|
2759
2833
|
disabled: boolean;
|
|
2834
|
+
isDesign: boolean;
|
|
2760
2835
|
bareFlag: boolean;
|
|
2761
2836
|
isSearch: boolean;
|
|
2762
|
-
isDesign: boolean;
|
|
2763
2837
|
showFormItem: boolean;
|
|
2764
2838
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
2765
2839
|
popoverRef: unknown;
|
|
@@ -2775,9 +2849,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
2775
2849
|
"onUpdate:formData"?: (value: any) => any;
|
|
2776
2850
|
}>, {
|
|
2777
2851
|
disabled: boolean;
|
|
2852
|
+
isDesign: boolean;
|
|
2778
2853
|
bareFlag: boolean;
|
|
2779
2854
|
isSearch: boolean;
|
|
2780
|
-
isDesign: boolean;
|
|
2781
2855
|
showFormItem: boolean;
|
|
2782
2856
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2783
2857
|
|
|
@@ -2925,9 +2999,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
2925
2999
|
"onUpdate:formData"?: (value: any) => any;
|
|
2926
3000
|
}>, {
|
|
2927
3001
|
disabled: boolean;
|
|
3002
|
+
isDesign: boolean;
|
|
2928
3003
|
bareFlag: boolean;
|
|
2929
3004
|
isSearch: boolean;
|
|
2930
|
-
isDesign: boolean;
|
|
2931
3005
|
showFormItem: boolean;
|
|
2932
3006
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2933
3007
|
|
|
@@ -2941,9 +3015,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
2941
3015
|
"onUpdate:formData"?: (value: any) => any;
|
|
2942
3016
|
}>, {
|
|
2943
3017
|
disabled: boolean;
|
|
3018
|
+
isDesign: boolean;
|
|
2944
3019
|
bareFlag: boolean;
|
|
2945
3020
|
isSearch: boolean;
|
|
2946
|
-
isDesign: boolean;
|
|
2947
3021
|
showFormItem: boolean;
|
|
2948
3022
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2949
3023
|
|
|
@@ -2998,9 +3072,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
2998
3072
|
"onUpdate:formData"?: (value: any) => any;
|
|
2999
3073
|
}>, {
|
|
3000
3074
|
disabled: boolean;
|
|
3075
|
+
isDesign: boolean;
|
|
3001
3076
|
bareFlag: boolean;
|
|
3002
3077
|
isSearch: boolean;
|
|
3003
|
-
isDesign: boolean;
|
|
3004
3078
|
showFormItem: boolean;
|
|
3005
3079
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3006
3080
|
|
|
@@ -3113,9 +3187,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
3113
3187
|
"onUpdate:formData"?: (value: any) => any;
|
|
3114
3188
|
}>, {
|
|
3115
3189
|
disabled: boolean;
|
|
3190
|
+
isDesign: boolean;
|
|
3116
3191
|
bareFlag: boolean;
|
|
3117
3192
|
isSearch: boolean;
|
|
3118
|
-
isDesign: boolean;
|
|
3119
3193
|
showFormItem: boolean;
|
|
3120
3194
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3121
3195
|
|
|
@@ -3129,9 +3203,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
3129
3203
|
"onUpdate:formData"?: (value: any) => any;
|
|
3130
3204
|
}>, {
|
|
3131
3205
|
disabled: boolean;
|
|
3206
|
+
isDesign: boolean;
|
|
3132
3207
|
bareFlag: boolean;
|
|
3133
3208
|
isSearch: boolean;
|
|
3134
|
-
isDesign: boolean;
|
|
3135
3209
|
showFormItem: boolean;
|
|
3136
3210
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3137
3211
|
|
|
@@ -3252,9 +3326,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
3252
3326
|
"onUpdate:formData"?: (value: any) => any;
|
|
3253
3327
|
}>, {
|
|
3254
3328
|
disabled: boolean;
|
|
3329
|
+
isDesign: boolean;
|
|
3255
3330
|
bareFlag: boolean;
|
|
3256
3331
|
isSearch: boolean;
|
|
3257
|
-
isDesign: boolean;
|
|
3258
3332
|
showFormItem: boolean;
|
|
3259
3333
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
3260
3334
|
starHorseTableCompRef: unknown;
|
|
@@ -3272,9 +3346,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
3272
3346
|
"onUpdate:formData"?: (value: any) => any;
|
|
3273
3347
|
}>, {
|
|
3274
3348
|
disabled: boolean;
|
|
3349
|
+
isDesign: boolean;
|
|
3275
3350
|
bareFlag: boolean;
|
|
3276
3351
|
isSearch: boolean;
|
|
3277
|
-
isDesign: boolean;
|
|
3278
3352
|
showFormItem: boolean;
|
|
3279
3353
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3280
3354
|
|
|
@@ -3312,9 +3386,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
3312
3386
|
"onUpdate:formData"?: (value: any) => any;
|
|
3313
3387
|
}>, {
|
|
3314
3388
|
disabled: boolean;
|
|
3389
|
+
isDesign: boolean;
|
|
3315
3390
|
bareFlag: boolean;
|
|
3316
3391
|
isSearch: boolean;
|
|
3317
|
-
isDesign: boolean;
|
|
3318
3392
|
showFormItem: boolean;
|
|
3319
3393
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3320
3394
|
|
|
@@ -3328,9 +3402,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
3328
3402
|
"onUpdate:formData"?: (value: any) => any;
|
|
3329
3403
|
}>, {
|
|
3330
3404
|
disabled: boolean;
|
|
3405
|
+
isDesign: boolean;
|
|
3331
3406
|
bareFlag: boolean;
|
|
3332
3407
|
isSearch: boolean;
|
|
3333
|
-
isDesign: boolean;
|
|
3334
3408
|
showFormItem: boolean;
|
|
3335
3409
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3336
3410
|
|
|
@@ -3344,9 +3418,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
3344
3418
|
"onUpdate:formData"?: (value: any) => any;
|
|
3345
3419
|
}>, {
|
|
3346
3420
|
disabled: boolean;
|
|
3421
|
+
isDesign: boolean;
|
|
3347
3422
|
bareFlag: boolean;
|
|
3348
3423
|
isSearch: boolean;
|
|
3349
|
-
isDesign: boolean;
|
|
3350
3424
|
showFormItem: boolean;
|
|
3351
3425
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3352
3426
|
|
|
@@ -3578,9 +3652,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
3578
3652
|
"onUpdate:formData"?: (value: any) => any;
|
|
3579
3653
|
}>, {
|
|
3580
3654
|
disabled: boolean;
|
|
3655
|
+
isDesign: boolean;
|
|
3581
3656
|
bareFlag: boolean;
|
|
3582
3657
|
isSearch: boolean;
|
|
3583
|
-
isDesign: boolean;
|
|
3584
3658
|
showFormItem: boolean;
|
|
3585
3659
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3586
3660
|
|
|
@@ -3646,7 +3720,7 @@ typeModel: string;
|
|
|
3646
3720
|
starHorseFormRef: unknown;
|
|
3647
3721
|
}, any>;
|
|
3648
3722
|
|
|
3649
|
-
export declare const ShForm:
|
|
3723
|
+
export declare const ShForm: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
3650
3724
|
|
|
3651
3725
|
export declare type ShortKey = {
|
|
3652
3726
|
/**
|
|
@@ -3764,9 +3838,9 @@ onSelectItem?: (...args: any[]) => any;
|
|
|
3764
3838
|
onSelfFunc?: (...args: any[]) => any;
|
|
3765
3839
|
}>, {
|
|
3766
3840
|
disabled: boolean;
|
|
3841
|
+
isDesign: boolean;
|
|
3767
3842
|
bareFlag: boolean;
|
|
3768
3843
|
isSearch: boolean;
|
|
3769
|
-
isDesign: boolean;
|
|
3770
3844
|
showFormItem: boolean;
|
|
3771
3845
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
3772
3846
|
signatureCanvas: HTMLCanvasElement;
|
|
@@ -3782,9 +3856,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
3782
3856
|
"onUpdate:formData"?: (value: any) => any;
|
|
3783
3857
|
}>, {
|
|
3784
3858
|
disabled: boolean;
|
|
3859
|
+
isDesign: boolean;
|
|
3785
3860
|
bareFlag: boolean;
|
|
3786
3861
|
isSearch: boolean;
|
|
3787
|
-
isDesign: boolean;
|
|
3788
3862
|
showFormItem: boolean;
|
|
3789
3863
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3790
3864
|
|
|
@@ -4129,41 +4203,7 @@ compSize: string;
|
|
|
4129
4203
|
|
|
4130
4204
|
export declare const StarHorseDialog: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
4131
4205
|
|
|
4132
|
-
export declare const StarHorseDraggable:
|
|
4133
|
-
msg: {
|
|
4134
|
-
type: StringConstructor;
|
|
4135
|
-
required: true;
|
|
4136
|
-
};
|
|
4137
|
-
node: {
|
|
4138
|
-
type: PropType<DynamicNode>;
|
|
4139
|
-
required: true;
|
|
4140
|
-
};
|
|
4141
|
-
isActive: {
|
|
4142
|
-
type: BooleanConstructor;
|
|
4143
|
-
default: boolean;
|
|
4144
|
-
};
|
|
4145
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4146
|
-
selectNode: (...args: any[]) => void;
|
|
4147
|
-
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
4148
|
-
msg: {
|
|
4149
|
-
type: StringConstructor;
|
|
4150
|
-
required: true;
|
|
4151
|
-
};
|
|
4152
|
-
node: {
|
|
4153
|
-
type: PropType<DynamicNode>;
|
|
4154
|
-
required: true;
|
|
4155
|
-
};
|
|
4156
|
-
isActive: {
|
|
4157
|
-
type: BooleanConstructor;
|
|
4158
|
-
default: boolean;
|
|
4159
|
-
};
|
|
4160
|
-
}>> & Readonly<{
|
|
4161
|
-
onSelectNode?: (...args: any[]) => any;
|
|
4162
|
-
}>, {
|
|
4163
|
-
isActive: boolean;
|
|
4164
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
4165
|
-
contentMenuRef: unknown;
|
|
4166
|
-
}, any>;
|
|
4206
|
+
export declare const StarHorseDraggable: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
4167
4207
|
|
|
4168
4208
|
export declare const StarHorseForm: DefineComponent<ExtractPropTypes< {
|
|
4169
4209
|
compUrl: {
|
|
@@ -5179,7 +5219,7 @@ onSelectItem?: (...args: any[]) => any;
|
|
|
5179
5219
|
preps: any;
|
|
5180
5220
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
5181
5221
|
|
|
5182
|
-
export declare const StarHorsePopover:
|
|
5222
|
+
export declare const StarHorsePopover: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
5183
5223
|
|
|
5184
5224
|
export declare const StarHorseSearchComp: DefineComponent<ExtractPropTypes< {
|
|
5185
5225
|
dialogInput: {
|
|
@@ -6167,9 +6207,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
6167
6207
|
"onUpdate:formData"?: (value: any) => any;
|
|
6168
6208
|
}>, {
|
|
6169
6209
|
disabled: boolean;
|
|
6210
|
+
isDesign: boolean;
|
|
6170
6211
|
bareFlag: boolean;
|
|
6171
6212
|
isSearch: boolean;
|
|
6172
|
-
isDesign: boolean;
|
|
6173
6213
|
showFormItem: boolean;
|
|
6174
6214
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6175
6215
|
|
|
@@ -6347,9 +6387,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
6347
6387
|
"onUpdate:formData"?: (value: any) => any;
|
|
6348
6388
|
}>, {
|
|
6349
6389
|
disabled: boolean;
|
|
6390
|
+
isDesign: boolean;
|
|
6350
6391
|
bareFlag: boolean;
|
|
6351
6392
|
isSearch: boolean;
|
|
6352
|
-
isDesign: boolean;
|
|
6353
6393
|
showFormItem: boolean;
|
|
6354
6394
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6355
6395
|
|
|
@@ -6382,9 +6422,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
6382
6422
|
"onUpdate:formData"?: (value: any) => any;
|
|
6383
6423
|
}>, {
|
|
6384
6424
|
disabled: boolean;
|
|
6425
|
+
isDesign: boolean;
|
|
6385
6426
|
bareFlag: boolean;
|
|
6386
6427
|
isSearch: boolean;
|
|
6387
|
-
isDesign: boolean;
|
|
6388
6428
|
showFormItem: boolean;
|
|
6389
6429
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6390
6430
|
|
|
@@ -6398,9 +6438,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
6398
6438
|
"onUpdate:formData"?: (value: any) => any;
|
|
6399
6439
|
}>, {
|
|
6400
6440
|
disabled: boolean;
|
|
6441
|
+
isDesign: boolean;
|
|
6401
6442
|
bareFlag: boolean;
|
|
6402
6443
|
isSearch: boolean;
|
|
6403
|
-
isDesign: boolean;
|
|
6404
6444
|
showFormItem: boolean;
|
|
6405
6445
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6406
6446
|
|
|
@@ -6414,9 +6454,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
6414
6454
|
"onUpdate:formData"?: (value: any) => any;
|
|
6415
6455
|
}>, {
|
|
6416
6456
|
disabled: boolean;
|
|
6457
|
+
isDesign: boolean;
|
|
6417
6458
|
bareFlag: boolean;
|
|
6418
6459
|
isSearch: boolean;
|
|
6419
|
-
isDesign: boolean;
|
|
6420
6460
|
showFormItem: boolean;
|
|
6421
6461
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6422
6462
|
|
|
@@ -6430,9 +6470,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
6430
6470
|
"onUpdate:formData"?: (value: any) => any;
|
|
6431
6471
|
}>, {
|
|
6432
6472
|
disabled: boolean;
|
|
6473
|
+
isDesign: boolean;
|
|
6433
6474
|
bareFlag: boolean;
|
|
6434
6475
|
isSearch: boolean;
|
|
6435
|
-
isDesign: boolean;
|
|
6436
6476
|
showFormItem: boolean;
|
|
6437
6477
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6438
6478
|
|
|
@@ -6448,9 +6488,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
6448
6488
|
"onUpdate:formData"?: (value: any) => any;
|
|
6449
6489
|
}>, {
|
|
6450
6490
|
disabled: boolean;
|
|
6491
|
+
isDesign: boolean;
|
|
6451
6492
|
bareFlag: boolean;
|
|
6452
6493
|
isSearch: boolean;
|
|
6453
|
-
isDesign: boolean;
|
|
6454
6494
|
showFormItem: boolean;
|
|
6455
6495
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6456
6496
|
|
|
@@ -6470,9 +6510,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
6470
6510
|
"onUpdate:formData"?: (value: any) => any;
|
|
6471
6511
|
}>, {
|
|
6472
6512
|
disabled: boolean;
|
|
6513
|
+
isDesign: boolean;
|
|
6473
6514
|
bareFlag: boolean;
|
|
6474
6515
|
isSearch: boolean;
|
|
6475
|
-
isDesign: boolean;
|
|
6476
6516
|
showFormItem: boolean;
|
|
6477
6517
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6478
6518
|
|
|
@@ -6484,9 +6524,9 @@ onSelectItem?: (...args: any[]) => any;
|
|
|
6484
6524
|
onSelfFunc?: (...args: any[]) => any;
|
|
6485
6525
|
}>, {
|
|
6486
6526
|
disabled: boolean;
|
|
6527
|
+
isDesign: boolean;
|
|
6487
6528
|
bareFlag: boolean;
|
|
6488
6529
|
isSearch: boolean;
|
|
6489
|
-
isDesign: boolean;
|
|
6490
6530
|
showFormItem: boolean;
|
|
6491
6531
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6492
6532
|
|
|
@@ -6500,9 +6540,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
6500
6540
|
"onUpdate:formData"?: (value: any) => any;
|
|
6501
6541
|
}>, {
|
|
6502
6542
|
disabled: boolean;
|
|
6543
|
+
isDesign: boolean;
|
|
6503
6544
|
bareFlag: boolean;
|
|
6504
6545
|
isSearch: boolean;
|
|
6505
|
-
isDesign: boolean;
|
|
6506
6546
|
showFormItem: boolean;
|
|
6507
6547
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6508
6548
|
|
|
@@ -7079,9 +7119,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
7079
7119
|
}>, {
|
|
7080
7120
|
source: number;
|
|
7081
7121
|
disabled: boolean;
|
|
7122
|
+
isDesign: boolean;
|
|
7082
7123
|
bareFlag: boolean;
|
|
7083
7124
|
isSearch: boolean;
|
|
7084
|
-
isDesign: boolean;
|
|
7085
7125
|
showFormItem: boolean;
|
|
7086
7126
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
7087
7127
|
|
|
@@ -7146,9 +7186,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
7146
7186
|
"onUpdate:formData"?: (value: any) => any;
|
|
7147
7187
|
}>, {
|
|
7148
7188
|
disabled: boolean;
|
|
7189
|
+
isDesign: boolean;
|
|
7149
7190
|
bareFlag: boolean;
|
|
7150
7191
|
isSearch: boolean;
|
|
7151
|
-
isDesign: boolean;
|
|
7152
7192
|
showFormItem: boolean;
|
|
7153
7193
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
7154
7194
|
userTableRef: unknown;
|
|
@@ -7863,9 +7903,9 @@ onSelfFunc?: (...args: any[]) => any;
|
|
|
7863
7903
|
"onUpdate:formData"?: (value: any) => any;
|
|
7864
7904
|
}>, {
|
|
7865
7905
|
disabled: boolean;
|
|
7906
|
+
isDesign: boolean;
|
|
7866
7907
|
bareFlag: boolean;
|
|
7867
7908
|
isSearch: boolean;
|
|
7868
|
-
isDesign: boolean;
|
|
7869
7909
|
showFormItem: boolean;
|
|
7870
7910
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
7871
7911
|
markdownEditor: HTMLDivElement;
|