asiaint-lowcode 3.1.55 → 3.1.57
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/asiaint-lowcode.js +1 -1
- package/dist/asiaint-lowcode.umd.cjs +179 -178
- package/dist/index.d.ts +372 -1
- package/dist/lazy/{Card-BXKpqwP2.js → Card-DdWp3Dz9.js} +1 -1
- package/dist/lazy/{Cascader-Ds98RPzS.js → Cascader-BxsxfWZi.js} +1 -1
- package/dist/lazy/{Checkbox-DKkkcLvw.js → Checkbox-BPJjRDut.js} +2 -2
- package/dist/lazy/{Collapse-CNy7cdGL.js → Collapse-DMpWXH2D.js} +1 -1
- package/dist/lazy/{Component-gvpBh8iD.js → Component-BAb8Glyu.js} +1 -1
- package/dist/lazy/{Component-DMl5Bagt.js → Component-Bvb11i1A.js} +1 -1
- package/dist/lazy/{Component-D5uZd6W1.js → Component-Cq9v0YT0.js} +1 -1
- package/dist/lazy/{Component-CLtv3HZE.js → Component-DhRio0qv.js} +1 -1
- package/dist/lazy/{Component-CwnK1Ums.js → Component-haJrwEDP.js} +1 -1
- package/dist/lazy/Component-xrpa5QWJ.js +143 -0
- package/dist/lazy/{CurdCard-CtMRBBlf.js → CurdCard-BqzAFbA5.js} +15 -14
- package/dist/lazy/{Custom-CbAPve0N.js → Custom-EmbK57YY.js} +1 -1
- package/dist/lazy/{DatePicker-ibO4UCty.js → DatePicker-BXnfk1Zr.js} +22 -20
- package/dist/lazy/{DragList-DSnWhZqP.js → DragList-DG75zaHa.js} +1 -1
- package/dist/lazy/{FilterSearch-BTN22Rs4.js → FilterSearch-BMF9jCxH.js} +1 -1
- package/dist/lazy/FloatCurd-D_OPcxR6.js +148 -0
- package/dist/lazy/{FormList-CYJ7WSaW.js → FormList-_S8br6_H.js} +1 -1
- package/dist/lazy/{Grid-BLcQVZnc.js → Grid-kruDCFf5.js} +1 -1
- package/dist/lazy/{InfiniteScroll-CISAZvfc.js → InfiniteScroll-CtsW_oYO.js} +1 -1
- package/dist/lazy/{Inline-CN9syZ28.js → Inline-5o19mIFm.js} +1 -1
- package/dist/lazy/{JsonEdit-CWt6xA_b.js → JsonEdit-DzAF4EKV.js} +1 -1
- package/dist/lazy/{LogList-DNUwLcXX.js → LogList-DA4nYLDd.js} +1 -1
- package/dist/lazy/{ObjGroup-DwPq7CZw.js → ObjGroup-6YLhqnv5.js} +1 -1
- package/dist/lazy/{OfferDetails-BXAoZXs2.js → OfferDetails-BjMnexIs.js} +10 -9
- package/dist/lazy/{Pagination-C5YW52OB.js → Pagination-DiXJ2GWc.js} +1 -1
- package/dist/lazy/{Progress-xqmF3wW_.js → Progress-DPzECwdm.js} +1 -1
- package/dist/lazy/{Radio--HOOmZfy.js → Radio-D3XvuscY.js} +2 -2
- package/dist/lazy/{SearchSelect-ClmaNMSl.js → SearchSelect-D0-zUts-.js} +2 -2
- package/dist/lazy/{Select-B65r4vDH.js → Select-B1XcN6fN.js} +2 -2
- package/dist/lazy/Table-x-_aoAyQ.js +566 -0
- package/dist/lazy/Tabs-Bdc3ze7v.js +127 -0
- package/dist/lazy/TextArea-Crwzr10r.js +34 -0
- package/dist/lazy/{Wrapper-crDMNWXD.js → Wrapper-DH0CbkLZ.js} +7 -7
- package/dist/lazy/{index-DItZh2kd.js → index-DY31m1LD.js} +17831 -17625
- package/dist/lazy/{useSelect-B5EeeCHx.js → useSelect-Mr_5r7kL.js} +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/dist/lazy/Component-Fo_Dyn0s.js +0 -120
- package/dist/lazy/Table-DATLGVBG.js +0 -527
- package/dist/lazy/Tabs-DKNVRbtN.js +0 -72
- package/dist/lazy/TextArea-BuoAInxT.js +0 -34
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ import { Ref } from 'vue';
|
|
|
15
15
|
import { StyleValue } from 'vue';
|
|
16
16
|
import { TabPaneName } from 'element-plus';
|
|
17
17
|
import { TabsProps } from 'element-plus';
|
|
18
|
+
import { TreeOptionProps } from 'element-plus/es/components/tree/src/tree.type';
|
|
18
19
|
import { VNode } from 'vue';
|
|
19
20
|
|
|
20
21
|
export declare const $options: InjectionKey<Options>;
|
|
@@ -55,6 +56,8 @@ updateInitialValues: (values: Record<string, any>) => void;
|
|
|
55
56
|
getInitialValues: () => Record<string, any>;
|
|
56
57
|
updateVCodePass: (value: boolean) => void;
|
|
57
58
|
validate: () => FormValidationResult | undefined;
|
|
59
|
+
validateField: (props?: string | string[]) => FormValidationResult | undefined;
|
|
60
|
+
validateByParentName: (wrapperName: string) => Promise<void> | FormValidationResult | undefined;
|
|
58
61
|
resetFields: (names?: string[]) => void;
|
|
59
62
|
submit: () => void;
|
|
60
63
|
setDisabled: (disabled: boolean) => void;
|
|
@@ -169,6 +172,10 @@ declare type __VLS_NonUndefinedable_2<T> = T extends undefined ? never : T;
|
|
|
169
172
|
|
|
170
173
|
declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
|
|
171
174
|
|
|
175
|
+
declare type __VLS_NonUndefinedable_4<T> = T extends undefined ? never : T;
|
|
176
|
+
|
|
177
|
+
declare type __VLS_NonUndefinedable_5<T> = T extends undefined ? never : T;
|
|
178
|
+
|
|
172
179
|
declare function __VLS_template(): {
|
|
173
180
|
default?(_: {}): any;
|
|
174
181
|
};
|
|
@@ -204,6 +211,24 @@ declare type __VLS_TypePropsToRuntimeProps_3<T> = {
|
|
|
204
211
|
};
|
|
205
212
|
};
|
|
206
213
|
|
|
214
|
+
declare type __VLS_TypePropsToRuntimeProps_4<T> = {
|
|
215
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
216
|
+
type: PropType<__VLS_NonUndefinedable_4<T[K]>>;
|
|
217
|
+
} : {
|
|
218
|
+
type: PropType<T[K]>;
|
|
219
|
+
required: true;
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
declare type __VLS_TypePropsToRuntimeProps_5<T> = {
|
|
224
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
225
|
+
type: PropType<__VLS_NonUndefinedable_5<T[K]>>;
|
|
226
|
+
} : {
|
|
227
|
+
type: PropType<T[K]>;
|
|
228
|
+
required: true;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
|
|
207
232
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
208
233
|
new (): {
|
|
209
234
|
$slots: S;
|
|
@@ -224,6 +249,7 @@ declare type AlertSchema = {
|
|
|
224
249
|
text: string | number;
|
|
225
250
|
onClick?: string;
|
|
226
251
|
ext?: any;
|
|
252
|
+
getPopoverContent?: string;
|
|
227
253
|
}[];
|
|
228
254
|
type?: 'primary' | 'success' | 'warning' | 'info' | 'error';
|
|
229
255
|
key: string;
|
|
@@ -293,6 +319,31 @@ declare const _default: {
|
|
|
293
319
|
};
|
|
294
320
|
export default _default;
|
|
295
321
|
|
|
322
|
+
declare const _default_10: DefineComponent<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_5<{
|
|
323
|
+
onNodeClick?: string;
|
|
324
|
+
onCheckChange?: string;
|
|
325
|
+
onLoad?: string;
|
|
326
|
+
btns: BtnType[];
|
|
327
|
+
data?: any[];
|
|
328
|
+
props?: TreeOptionProps;
|
|
329
|
+
nodeKey: string;
|
|
330
|
+
styleType?: "modal" | "normal";
|
|
331
|
+
name: string;
|
|
332
|
+
}>>, {
|
|
333
|
+
getCheckedNodes: () => any;
|
|
334
|
+
type: "tree";
|
|
335
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_5<{
|
|
336
|
+
onNodeClick?: string;
|
|
337
|
+
onCheckChange?: string;
|
|
338
|
+
onLoad?: string;
|
|
339
|
+
btns: BtnType[];
|
|
340
|
+
data?: any[];
|
|
341
|
+
props?: TreeOptionProps;
|
|
342
|
+
nodeKey: string;
|
|
343
|
+
styleType?: "modal" | "normal";
|
|
344
|
+
name: string;
|
|
345
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
346
|
+
|
|
296
347
|
declare const _default_2: DefineComponent<ExtractPropTypes< {
|
|
297
348
|
schema: {
|
|
298
349
|
required: true;
|
|
@@ -309,6 +360,10 @@ pageRulePath: {
|
|
|
309
360
|
type: PropType<string>;
|
|
310
361
|
required: true;
|
|
311
362
|
};
|
|
363
|
+
styleType: {
|
|
364
|
+
type: PropType<"normal" | "modal" | "btn">;
|
|
365
|
+
required: true;
|
|
366
|
+
};
|
|
312
367
|
}>, {
|
|
313
368
|
setTabContent: (newContents: TabsSchema["content"]) => void;
|
|
314
369
|
addTabContent: (newContent: TabsSchema["content"] | getArrayType<TabsSchema["content"]>) => void;
|
|
@@ -332,6 +387,289 @@ readonly hidden?: boolean | undefined;
|
|
|
332
387
|
readonly isSticky?: boolean | undefined;
|
|
333
388
|
readonly stickyTop?: number | undefined;
|
|
334
389
|
readonly expandTop?: boolean | undefined;
|
|
390
|
+
readonly styleType?: ("modal" | "btn" | "normal") | undefined;
|
|
391
|
+
readonly staticBtns: readonly ({
|
|
392
|
+
readonly component: "Popover";
|
|
393
|
+
readonly props: {
|
|
394
|
+
readonly trigger: "hover" | "click" | "focus";
|
|
395
|
+
readonly hoverStyle: any;
|
|
396
|
+
readonly ostyle: any;
|
|
397
|
+
readonly width?: number | undefined;
|
|
398
|
+
readonly size?: ("small" | "normal" | "large") | undefined;
|
|
399
|
+
readonly hoverColor?: string | undefined;
|
|
400
|
+
};
|
|
401
|
+
readonly children: readonly {
|
|
402
|
+
readonly label?: string | undefined;
|
|
403
|
+
readonly name: string;
|
|
404
|
+
readonly component: string;
|
|
405
|
+
readonly required?: boolean | undefined;
|
|
406
|
+
readonly props?: {
|
|
407
|
+
readonly [x: string]: any;
|
|
408
|
+
} | undefined;
|
|
409
|
+
readonly initialValue?: any;
|
|
410
|
+
readonly help?: string | undefined;
|
|
411
|
+
readonly labelSuffix?: {
|
|
412
|
+
readonly component: "Popover";
|
|
413
|
+
readonly props: any;
|
|
414
|
+
} | undefined;
|
|
415
|
+
readonly children?: readonly any[] | undefined;
|
|
416
|
+
readonly hidden?: (boolean | string) | undefined;
|
|
417
|
+
readonly hideLabel?: boolean | undefined;
|
|
418
|
+
readonly designKey?: string | undefined;
|
|
419
|
+
readonly rules?: readonly {
|
|
420
|
+
readonly type: "email" | "url" | "custom" | string;
|
|
421
|
+
readonly customReg?: string | undefined;
|
|
422
|
+
readonly templateExp?: any;
|
|
423
|
+
readonly message?: string | undefined;
|
|
424
|
+
readonly trigger: readonly string[];
|
|
425
|
+
}[] | undefined;
|
|
426
|
+
readonly class?: any;
|
|
427
|
+
readonly style?: any;
|
|
428
|
+
readonly change?: readonly {
|
|
429
|
+
readonly target: string;
|
|
430
|
+
readonly value?: any;
|
|
431
|
+
readonly condition?: any;
|
|
432
|
+
}[] | undefined;
|
|
433
|
+
readonly dialog?: boolean | undefined;
|
|
434
|
+
readonly width?: number | undefined;
|
|
435
|
+
}[];
|
|
436
|
+
readonly tooltip?: string | undefined;
|
|
437
|
+
readonly key: string;
|
|
438
|
+
readonly text?: string | undefined;
|
|
439
|
+
readonly isTextBtn?: boolean | undefined;
|
|
440
|
+
readonly isLinkBtn?: boolean | undefined;
|
|
441
|
+
readonly isPlainBtn?: boolean | undefined;
|
|
442
|
+
readonly onClick?: string | undefined;
|
|
443
|
+
readonly disabled?: boolean | undefined;
|
|
444
|
+
readonly hidden?: boolean | undefined;
|
|
445
|
+
readonly type?: ("primary" | "success" | "warning" | "danger" | "info") | undefined;
|
|
446
|
+
readonly color?: string | undefined;
|
|
447
|
+
readonly orange?: boolean | undefined;
|
|
448
|
+
readonly isReverse?: boolean | undefined;
|
|
449
|
+
readonly icon?: {
|
|
450
|
+
readonly name: string;
|
|
451
|
+
readonly color?: string | undefined;
|
|
452
|
+
readonly size?: ("x-small" | "small" | "normal" | "large" | "ultra-large") | undefined;
|
|
453
|
+
readonly tooltip?: string | undefined;
|
|
454
|
+
} | undefined;
|
|
455
|
+
readonly label?: string | undefined;
|
|
456
|
+
readonly size?: ("default" | "small" | "large") | undefined;
|
|
457
|
+
readonly style?: any;
|
|
458
|
+
} | {
|
|
459
|
+
readonly component: "BtnGroup";
|
|
460
|
+
readonly children: readonly {
|
|
461
|
+
readonly tooltip?: string | undefined;
|
|
462
|
+
readonly key: string;
|
|
463
|
+
readonly text?: string | undefined;
|
|
464
|
+
readonly isTextBtn?: boolean | undefined;
|
|
465
|
+
readonly isLinkBtn?: boolean | undefined;
|
|
466
|
+
readonly isPlainBtn?: boolean | undefined;
|
|
467
|
+
readonly onClick?: string | undefined;
|
|
468
|
+
readonly disabled?: boolean | undefined;
|
|
469
|
+
readonly hidden?: boolean | undefined;
|
|
470
|
+
readonly type?: ("primary" | "success" | "warning" | "danger" | "info") | undefined;
|
|
471
|
+
readonly color?: string | undefined;
|
|
472
|
+
readonly orange?: boolean | undefined;
|
|
473
|
+
readonly isReverse?: boolean | undefined;
|
|
474
|
+
readonly icon?: {
|
|
475
|
+
readonly name: string;
|
|
476
|
+
readonly color?: string | undefined;
|
|
477
|
+
readonly size?: ("x-small" | "small" | "normal" | "large" | "ultra-large") | undefined;
|
|
478
|
+
readonly tooltip?: string | undefined;
|
|
479
|
+
} | undefined;
|
|
480
|
+
readonly label?: string | undefined;
|
|
481
|
+
readonly size?: ("default" | "small" | "large") | undefined;
|
|
482
|
+
readonly style?: any;
|
|
483
|
+
}[];
|
|
484
|
+
readonly tooltip?: string | undefined;
|
|
485
|
+
readonly key: string;
|
|
486
|
+
readonly text?: string | undefined;
|
|
487
|
+
readonly isTextBtn?: boolean | undefined;
|
|
488
|
+
readonly isLinkBtn?: boolean | undefined;
|
|
489
|
+
readonly isPlainBtn?: boolean | undefined;
|
|
490
|
+
readonly onClick?: string | undefined;
|
|
491
|
+
readonly disabled?: boolean | undefined;
|
|
492
|
+
readonly hidden?: boolean | undefined;
|
|
493
|
+
readonly type?: ("primary" | "success" | "warning" | "danger" | "info") | undefined;
|
|
494
|
+
readonly color?: string | undefined;
|
|
495
|
+
readonly orange?: boolean | undefined;
|
|
496
|
+
readonly isReverse?: boolean | undefined;
|
|
497
|
+
readonly icon?: {
|
|
498
|
+
readonly name: string;
|
|
499
|
+
readonly color?: string | undefined;
|
|
500
|
+
readonly size?: ("x-small" | "small" | "normal" | "large" | "ultra-large") | undefined;
|
|
501
|
+
readonly tooltip?: string | undefined;
|
|
502
|
+
} | undefined;
|
|
503
|
+
readonly label?: string | undefined;
|
|
504
|
+
readonly size?: ("default" | "small" | "large") | undefined;
|
|
505
|
+
readonly style?: any;
|
|
506
|
+
} | {
|
|
507
|
+
readonly component?: never | undefined;
|
|
508
|
+
readonly children?: never | undefined;
|
|
509
|
+
readonly tooltip?: string | undefined;
|
|
510
|
+
readonly key: string;
|
|
511
|
+
readonly text?: string | undefined;
|
|
512
|
+
readonly isTextBtn?: boolean | undefined;
|
|
513
|
+
readonly isLinkBtn?: boolean | undefined;
|
|
514
|
+
readonly isPlainBtn?: boolean | undefined;
|
|
515
|
+
readonly onClick?: string | undefined;
|
|
516
|
+
readonly disabled?: boolean | undefined;
|
|
517
|
+
readonly hidden?: boolean | undefined;
|
|
518
|
+
readonly type?: ("primary" | "success" | "warning" | "danger" | "info") | undefined;
|
|
519
|
+
readonly color?: string | undefined;
|
|
520
|
+
readonly orange?: boolean | undefined;
|
|
521
|
+
readonly isReverse?: boolean | undefined;
|
|
522
|
+
readonly icon?: {
|
|
523
|
+
readonly name: string;
|
|
524
|
+
readonly color?: string | undefined;
|
|
525
|
+
readonly size?: ("x-small" | "small" | "normal" | "large" | "ultra-large") | undefined;
|
|
526
|
+
readonly tooltip?: string | undefined;
|
|
527
|
+
} | undefined;
|
|
528
|
+
readonly label?: string | undefined;
|
|
529
|
+
readonly size?: ("default" | "small" | "large") | undefined;
|
|
530
|
+
readonly style?: any;
|
|
531
|
+
})[];
|
|
532
|
+
readonly dynamicBtns: readonly ({
|
|
533
|
+
readonly component: "Popover";
|
|
534
|
+
readonly props: {
|
|
535
|
+
readonly trigger: "hover" | "click" | "focus";
|
|
536
|
+
readonly hoverStyle: any;
|
|
537
|
+
readonly ostyle: any;
|
|
538
|
+
readonly width?: number | undefined;
|
|
539
|
+
readonly size?: ("small" | "normal" | "large") | undefined;
|
|
540
|
+
readonly hoverColor?: string | undefined;
|
|
541
|
+
};
|
|
542
|
+
readonly children: readonly {
|
|
543
|
+
readonly label?: string | undefined;
|
|
544
|
+
readonly name: string;
|
|
545
|
+
readonly component: string;
|
|
546
|
+
readonly required?: boolean | undefined;
|
|
547
|
+
readonly props?: {
|
|
548
|
+
readonly [x: string]: any;
|
|
549
|
+
} | undefined;
|
|
550
|
+
readonly initialValue?: any;
|
|
551
|
+
readonly help?: string | undefined;
|
|
552
|
+
readonly labelSuffix?: {
|
|
553
|
+
readonly component: "Popover";
|
|
554
|
+
readonly props: any;
|
|
555
|
+
} | undefined;
|
|
556
|
+
readonly children?: readonly any[] | undefined;
|
|
557
|
+
readonly hidden?: (boolean | string) | undefined;
|
|
558
|
+
readonly hideLabel?: boolean | undefined;
|
|
559
|
+
readonly designKey?: string | undefined;
|
|
560
|
+
readonly rules?: readonly {
|
|
561
|
+
readonly type: "email" | "url" | "custom" | string;
|
|
562
|
+
readonly customReg?: string | undefined;
|
|
563
|
+
readonly templateExp?: any;
|
|
564
|
+
readonly message?: string | undefined;
|
|
565
|
+
readonly trigger: readonly string[];
|
|
566
|
+
}[] | undefined;
|
|
567
|
+
readonly class?: any;
|
|
568
|
+
readonly style?: any;
|
|
569
|
+
readonly change?: readonly {
|
|
570
|
+
readonly target: string;
|
|
571
|
+
readonly value?: any;
|
|
572
|
+
readonly condition?: any;
|
|
573
|
+
}[] | undefined;
|
|
574
|
+
readonly dialog?: boolean | undefined;
|
|
575
|
+
readonly width?: number | undefined;
|
|
576
|
+
}[];
|
|
577
|
+
readonly tooltip?: string | undefined;
|
|
578
|
+
readonly key: string;
|
|
579
|
+
readonly text?: string | undefined;
|
|
580
|
+
readonly isTextBtn?: boolean | undefined;
|
|
581
|
+
readonly isLinkBtn?: boolean | undefined;
|
|
582
|
+
readonly isPlainBtn?: boolean | undefined;
|
|
583
|
+
readonly onClick?: string | undefined;
|
|
584
|
+
readonly disabled?: boolean | undefined;
|
|
585
|
+
readonly hidden?: boolean | undefined;
|
|
586
|
+
readonly type?: ("primary" | "success" | "warning" | "danger" | "info") | undefined;
|
|
587
|
+
readonly color?: string | undefined;
|
|
588
|
+
readonly orange?: boolean | undefined;
|
|
589
|
+
readonly isReverse?: boolean | undefined;
|
|
590
|
+
readonly icon?: {
|
|
591
|
+
readonly name: string;
|
|
592
|
+
readonly color?: string | undefined;
|
|
593
|
+
readonly size?: ("x-small" | "small" | "normal" | "large" | "ultra-large") | undefined;
|
|
594
|
+
readonly tooltip?: string | undefined;
|
|
595
|
+
} | undefined;
|
|
596
|
+
readonly label?: string | undefined;
|
|
597
|
+
readonly size?: ("default" | "small" | "large") | undefined;
|
|
598
|
+
readonly style?: any;
|
|
599
|
+
} | {
|
|
600
|
+
readonly component: "BtnGroup";
|
|
601
|
+
readonly children: readonly {
|
|
602
|
+
readonly tooltip?: string | undefined;
|
|
603
|
+
readonly key: string;
|
|
604
|
+
readonly text?: string | undefined;
|
|
605
|
+
readonly isTextBtn?: boolean | undefined;
|
|
606
|
+
readonly isLinkBtn?: boolean | undefined;
|
|
607
|
+
readonly isPlainBtn?: boolean | undefined;
|
|
608
|
+
readonly onClick?: string | undefined;
|
|
609
|
+
readonly disabled?: boolean | undefined;
|
|
610
|
+
readonly hidden?: boolean | undefined;
|
|
611
|
+
readonly type?: ("primary" | "success" | "warning" | "danger" | "info") | undefined;
|
|
612
|
+
readonly color?: string | undefined;
|
|
613
|
+
readonly orange?: boolean | undefined;
|
|
614
|
+
readonly isReverse?: boolean | undefined;
|
|
615
|
+
readonly icon?: {
|
|
616
|
+
readonly name: string;
|
|
617
|
+
readonly color?: string | undefined;
|
|
618
|
+
readonly size?: ("x-small" | "small" | "normal" | "large" | "ultra-large") | undefined;
|
|
619
|
+
readonly tooltip?: string | undefined;
|
|
620
|
+
} | undefined;
|
|
621
|
+
readonly label?: string | undefined;
|
|
622
|
+
readonly size?: ("default" | "small" | "large") | undefined;
|
|
623
|
+
readonly style?: any;
|
|
624
|
+
}[];
|
|
625
|
+
readonly tooltip?: string | undefined;
|
|
626
|
+
readonly key: string;
|
|
627
|
+
readonly text?: string | undefined;
|
|
628
|
+
readonly isTextBtn?: boolean | undefined;
|
|
629
|
+
readonly isLinkBtn?: boolean | undefined;
|
|
630
|
+
readonly isPlainBtn?: boolean | undefined;
|
|
631
|
+
readonly onClick?: string | undefined;
|
|
632
|
+
readonly disabled?: boolean | undefined;
|
|
633
|
+
readonly hidden?: boolean | undefined;
|
|
634
|
+
readonly type?: ("primary" | "success" | "warning" | "danger" | "info") | undefined;
|
|
635
|
+
readonly color?: string | undefined;
|
|
636
|
+
readonly orange?: boolean | undefined;
|
|
637
|
+
readonly isReverse?: boolean | undefined;
|
|
638
|
+
readonly icon?: {
|
|
639
|
+
readonly name: string;
|
|
640
|
+
readonly color?: string | undefined;
|
|
641
|
+
readonly size?: ("x-small" | "small" | "normal" | "large" | "ultra-large") | undefined;
|
|
642
|
+
readonly tooltip?: string | undefined;
|
|
643
|
+
} | undefined;
|
|
644
|
+
readonly label?: string | undefined;
|
|
645
|
+
readonly size?: ("default" | "small" | "large") | undefined;
|
|
646
|
+
readonly style?: any;
|
|
647
|
+
} | {
|
|
648
|
+
readonly component?: never | undefined;
|
|
649
|
+
readonly children?: never | undefined;
|
|
650
|
+
readonly tooltip?: string | undefined;
|
|
651
|
+
readonly key: string;
|
|
652
|
+
readonly text?: string | undefined;
|
|
653
|
+
readonly isTextBtn?: boolean | undefined;
|
|
654
|
+
readonly isLinkBtn?: boolean | undefined;
|
|
655
|
+
readonly isPlainBtn?: boolean | undefined;
|
|
656
|
+
readonly onClick?: string | undefined;
|
|
657
|
+
readonly disabled?: boolean | undefined;
|
|
658
|
+
readonly hidden?: boolean | undefined;
|
|
659
|
+
readonly type?: ("primary" | "success" | "warning" | "danger" | "info") | undefined;
|
|
660
|
+
readonly color?: string | undefined;
|
|
661
|
+
readonly orange?: boolean | undefined;
|
|
662
|
+
readonly isReverse?: boolean | undefined;
|
|
663
|
+
readonly icon?: {
|
|
664
|
+
readonly name: string;
|
|
665
|
+
readonly color?: string | undefined;
|
|
666
|
+
readonly size?: ("x-small" | "small" | "normal" | "large" | "ultra-large") | undefined;
|
|
667
|
+
readonly tooltip?: string | undefined;
|
|
668
|
+
} | undefined;
|
|
669
|
+
readonly label?: string | undefined;
|
|
670
|
+
readonly size?: ("default" | "small" | "large") | undefined;
|
|
671
|
+
readonly style?: any;
|
|
672
|
+
})[];
|
|
335
673
|
readonly content: readonly {
|
|
336
674
|
readonly label: string;
|
|
337
675
|
readonly key?: string | undefined;
|
|
@@ -341,6 +679,7 @@ readonly closable?: boolean | undefined;
|
|
|
341
679
|
readonly pageParams?: any;
|
|
342
680
|
readonly mixMode?: boolean | undefined;
|
|
343
681
|
readonly hidden?: boolean | undefined;
|
|
682
|
+
readonly icon?: string | undefined;
|
|
344
683
|
}[];
|
|
345
684
|
readonly btns: readonly {
|
|
346
685
|
readonly key: string;
|
|
@@ -373,6 +712,10 @@ pageRulePath: {
|
|
|
373
712
|
type: PropType<string>;
|
|
374
713
|
required: true;
|
|
375
714
|
};
|
|
715
|
+
styleType: {
|
|
716
|
+
type: PropType<"normal" | "modal" | "btn">;
|
|
717
|
+
required: true;
|
|
718
|
+
};
|
|
376
719
|
}>> & Readonly<{
|
|
377
720
|
onAddPageParams?: ((...args: any[]) => any) | undefined;
|
|
378
721
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -629,6 +972,22 @@ onChange?: string;
|
|
|
629
972
|
onSearchTypeChange: string;
|
|
630
973
|
}>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
631
974
|
|
|
975
|
+
declare const _default_9: DefineComponent<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_4<{
|
|
976
|
+
name: string;
|
|
977
|
+
children: FormItemType[];
|
|
978
|
+
formTitle: string;
|
|
979
|
+
onSearch: string;
|
|
980
|
+
inputPlaceholder: string;
|
|
981
|
+
}>>, {
|
|
982
|
+
type: "floatcurd";
|
|
983
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_4<{
|
|
984
|
+
name: string;
|
|
985
|
+
children: FormItemType[];
|
|
986
|
+
formTitle: string;
|
|
987
|
+
onSearch: string;
|
|
988
|
+
inputPlaceholder: string;
|
|
989
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
990
|
+
|
|
632
991
|
declare type DropdownType = {
|
|
633
992
|
key: string;
|
|
634
993
|
text: string;
|
|
@@ -656,6 +1015,8 @@ declare type ExtraRefTypeMap = {
|
|
|
656
1015
|
draglist: InstanceType<typeof _default_6> & ComponentPublicInstance;
|
|
657
1016
|
pagination: InstanceType<typeof _default_7> & ComponentPublicInstance;
|
|
658
1017
|
filterSearch: InstanceType<typeof _default_8> & ComponentPublicInstance;
|
|
1018
|
+
floatcurd: InstanceType<typeof _default_9> & ComponentPublicInstance;
|
|
1019
|
+
tree: InstanceType<typeof _default_10> & ComponentPublicInstance;
|
|
659
1020
|
};
|
|
660
1021
|
|
|
661
1022
|
declare type FindRefType<T extends keyof FindRefTypeMap> = FindRefTypeMap[T];
|
|
@@ -827,9 +1188,9 @@ declare type InfoCardSchema = {
|
|
|
827
1188
|
icon: {
|
|
828
1189
|
name: string;
|
|
829
1190
|
color?: string;
|
|
1191
|
+
tooltip?: string;
|
|
830
1192
|
};
|
|
831
1193
|
onClick?: string;
|
|
832
|
-
tooltip?: string;
|
|
833
1194
|
}[];
|
|
834
1195
|
avatarBgColor?: string;
|
|
835
1196
|
titleIcons?: {
|
|
@@ -1032,6 +1393,7 @@ export declare interface TableColumn {
|
|
|
1032
1393
|
iconPosition?: 'left' | 'right';
|
|
1033
1394
|
iconPopover?: boolean;
|
|
1034
1395
|
getIconPopoverContent?: string;
|
|
1396
|
+
getColPopoverContent?: string;
|
|
1035
1397
|
getCustomContent?: string;
|
|
1036
1398
|
noEllipsis?: boolean;
|
|
1037
1399
|
sortable?: boolean;
|
|
@@ -1093,6 +1455,8 @@ setColumn: <K extends keyof TableColumn>(key: string, keyName: K, keyValue: Tabl
|
|
|
1093
1455
|
setRowsBtnHidden: (btnKey: string, hidden: boolean) => void;
|
|
1094
1456
|
setShadowless: (shadowless: boolean) => void;
|
|
1095
1457
|
rootRef: Readonly<unknown>;
|
|
1458
|
+
mounted: () => Promise<void>;
|
|
1459
|
+
activated: () => Promise<void>;
|
|
1096
1460
|
type: "table";
|
|
1097
1461
|
design: boolean;
|
|
1098
1462
|
read: boolean;
|
|
@@ -1138,6 +1502,7 @@ declare type TableSchema = {
|
|
|
1138
1502
|
pageChange?: string;
|
|
1139
1503
|
topBtns?: BtnType[];
|
|
1140
1504
|
rowBtns?: (Omit<BtnType, 'hidden'> & {
|
|
1505
|
+
popoverProps?: any;
|
|
1141
1506
|
condition?: string | boolean;
|
|
1142
1507
|
buttonText?: {
|
|
1143
1508
|
text: string;
|
|
@@ -1162,6 +1527,8 @@ declare type TableSchema = {
|
|
|
1162
1527
|
height?: number;
|
|
1163
1528
|
collapsible?: boolean;
|
|
1164
1529
|
sortable?: boolean;
|
|
1530
|
+
paginationPosition?: 'top' | 'bottom';
|
|
1531
|
+
totalText: string;
|
|
1165
1532
|
};
|
|
1166
1533
|
|
|
1167
1534
|
declare type TabsSchema = {
|
|
@@ -1175,6 +1542,9 @@ declare type TabsSchema = {
|
|
|
1175
1542
|
isSticky?: boolean;
|
|
1176
1543
|
stickyTop?: number;
|
|
1177
1544
|
expandTop?: boolean;
|
|
1545
|
+
styleType?: 'modal' | 'btn' | 'normal';
|
|
1546
|
+
staticBtns: BtnType[];
|
|
1547
|
+
dynamicBtns: BtnType[];
|
|
1178
1548
|
content: {
|
|
1179
1549
|
label: string;
|
|
1180
1550
|
key?: string;
|
|
@@ -1184,6 +1554,7 @@ declare type TabsSchema = {
|
|
|
1184
1554
|
pageParams?: any;
|
|
1185
1555
|
mixMode?: boolean;
|
|
1186
1556
|
hidden?: boolean;
|
|
1557
|
+
icon?: string;
|
|
1187
1558
|
}[];
|
|
1188
1559
|
btns: Array<{
|
|
1189
1560
|
key: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as F, ref as S, inject as C, resolveComponent as p, openBlock as o, createBlock as d, mergeProps as $, withCtx as c, createElementVNode as r, normalizeClass as u, createElementBlock as s, createVNode as a, unref as m, createCommentVNode as t, toDisplayString as b, Fragment as h, renderList as y, withDirectives as M, vShow as E } from "vue";
|
|
2
|
-
import { a as P, I as v, b as _, B as V, _ as D } from "./index-
|
|
2
|
+
import { a as P, I as v, b as _, B as V, _ as D } from "./index-DY31m1LD.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const N = {
|
|
5
5
|
key: 3,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent as f, mergeModels as g, useModel as h, inject as r, resolveComponent as C, openBlock as v, createBlock as y, mergeProps as M, unref as d } from "vue";
|
|
2
2
|
import "element-plus";
|
|
3
|
-
import { u as b } from "./useSelect-
|
|
3
|
+
import { u as b } from "./useSelect-Mr_5r7kL.js";
|
|
4
4
|
const k = /* @__PURE__ */ f({
|
|
5
5
|
__name: "Cascader",
|
|
6
6
|
props: /* @__PURE__ */ g({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent as F, mergeModels as D, useModel as I, watch as O, resolveComponent as u, resolveDirective as P, unref as a, openBlock as l, createElementBlock as p, toDisplayString as S, withDirectives as $, createBlock as s, mergeProps as j, withCtx as h, Fragment as f, renderList as v, createCommentVNode as g } from "vue";
|
|
2
2
|
import "element-plus";
|
|
3
|
-
import { u as E, c as L } from "./index-
|
|
4
|
-
import { u as N } from "./useSelect-
|
|
3
|
+
import { u as E, c as L } from "./index-DY31m1LD.js";
|
|
4
|
+
import { u as N } from "./useSelect-Mr_5r7kL.js";
|
|
5
5
|
const R = { key: 0 }, H = /* @__PURE__ */ F({
|
|
6
6
|
__name: "Checkbox",
|
|
7
7
|
props: /* @__PURE__ */ D({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as u, ref as f, onMounted as _, watch as h, resolveComponent as c, openBlock as o, createBlock as i, mergeProps as C, withCtx as r, createElementBlock as E, Fragment as k, renderList as v, createVNode as m, unref as V } from "vue";
|
|
2
|
-
import { b as y } from "./index-
|
|
2
|
+
import { b as y } from "./index-DY31m1LD.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
import { _ as B } from "./Title.vue_vue_type_script_setup_true_lang-Ceco_9-w.js";
|
|
5
5
|
const b = /* @__PURE__ */ u({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as $, ref as v, computed as N, watch as L, onMounted as x, onBeforeUnmount as F, openBlock as T, createElementBlock as E, mergeModels as J, useModel as A, resolveComponent as G, unref as W, createElementVNode as P, createBlock as X, withCtx as D, createTextVNode as I, createCommentVNode as Y, createVNode as R } from "vue";
|
|
2
|
-
import { _ as H, u as K, d as Q } from "./index-
|
|
2
|
+
import { _ as H, u as K, d as Q } from "./index-DY31m1LD.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const Z = $({
|
|
5
5
|
props: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent as $, mergeModels as E, useModel as I, ref as L, resolveComponent as C, openBlock as a, createElementBlock as i, Fragment as d, createVNode as u, normalizeClass as N, createSlots as O, withCtx as c, createElementVNode as s, createTextVNode as b, createBlock as k, toDisplayString as p, createCommentVNode as f, unref as R, renderList as z } from "vue";
|
|
2
2
|
import { genFileId as S, ElMessage as D, ElMessageBox as j } from "element-plus";
|
|
3
|
-
import { c as P, I as h, a as q, _ as x } from "./index-
|
|
3
|
+
import { c as P, I as h, a as q, _ as x } from "./index-DY31m1LD.js";
|
|
4
4
|
const A = { class: "el-upload__tip" }, G = {
|
|
5
5
|
key: 0,
|
|
6
6
|
class: "upload-bottom-part"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as p, mergeModels as d, useModel as i, computed as c, resolveComponent as f, openBlock as t, createElementBlock as y, toDisplayString as v, createBlock as k, mergeProps as V } from "vue";
|
|
2
|
-
import { u as _ } from "./index-
|
|
2
|
+
import { u as _ } from "./index-DY31m1LD.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const B = { key: 0 }, g = /* @__PURE__ */ p({
|
|
5
5
|
__name: "Component",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as d, mergeModels as m, useModel as r, resolveComponent as u, openBlock as p, createBlock as i, mergeProps as c, unref as f } from "vue";
|
|
2
|
-
import { u as V } from "./index-
|
|
2
|
+
import { u as V } from "./index-DY31m1LD.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const B = /* @__PURE__ */ d({
|
|
5
5
|
__name: "Component",
|
|
@@ -2,7 +2,7 @@ var u = Object.defineProperty;
|
|
|
2
2
|
var m = (o, e, t) => e in o ? u(o, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : o[e] = t;
|
|
3
3
|
var a = (o, e, t) => m(o, typeof e != "symbol" ? e + "" : e, t);
|
|
4
4
|
import { defineComponent as g, mergeModels as v, useModel as I, ref as c, onMounted as w, resolveComponent as C, openBlock as y, createElementBlock as _, createVNode as V, createElementVNode as M } from "vue";
|
|
5
|
-
import { u as x, _ as S } from "./index-
|
|
5
|
+
import { u as x, _ as S } from "./index-DY31m1LD.js";
|
|
6
6
|
import "element-plus";
|
|
7
7
|
function b() {
|
|
8
8
|
return "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z".split(",");
|