@plasmicpkgs/antd 0.0.8 → 0.0.12
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/antd.cjs.development.js +388 -92
- package/dist/antd.cjs.development.js.map +1 -1
- package/dist/antd.cjs.production.min.js +1 -1
- package/dist/antd.cjs.production.min.js.map +1 -1
- package/dist/antd.esm.js +385 -94
- package/dist/antd.esm.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/registerTabs.d.ts +13 -0
- package/package.json +4 -3
|
@@ -23,6 +23,7 @@ var MenuItem = _interopDefault(require('antd/lib/menu/MenuItem'));
|
|
|
23
23
|
var SubMenu = _interopDefault(require('antd/lib/menu/SubMenu'));
|
|
24
24
|
var rcMenu = require('rc-menu');
|
|
25
25
|
var rcSelect = require('rc-select');
|
|
26
|
+
var rcTabs = require('rc-tabs');
|
|
26
27
|
|
|
27
28
|
var buttonMeta = {
|
|
28
29
|
name: "AntdButton",
|
|
@@ -31,37 +32,45 @@ var buttonMeta = {
|
|
|
31
32
|
type: {
|
|
32
33
|
type: "choice",
|
|
33
34
|
options: ["default", "primary", "ghost", "dashed", "link", "text"],
|
|
34
|
-
description: "Can be set to primary, ghost, dashed, link, text, default"
|
|
35
|
+
description: "Can be set to primary, ghost, dashed, link, text, default",
|
|
36
|
+
defaultValueHint: "default"
|
|
35
37
|
},
|
|
36
38
|
size: {
|
|
37
39
|
type: "choice",
|
|
38
40
|
options: ["small", "medium", "large"],
|
|
39
|
-
description: "Set the size of button"
|
|
41
|
+
description: "Set the size of button",
|
|
42
|
+
defaultValueHint: "medium"
|
|
40
43
|
},
|
|
41
44
|
shape: {
|
|
42
45
|
type: "choice",
|
|
43
46
|
options: ["default", "circle", "round"],
|
|
44
|
-
description: "Can be set button shape"
|
|
47
|
+
description: "Can be set button shape",
|
|
48
|
+
defaultValueHint: "default"
|
|
45
49
|
},
|
|
46
50
|
disabled: {
|
|
47
51
|
type: "boolean",
|
|
48
|
-
description: "Disabled state of button"
|
|
52
|
+
description: "Disabled state of button",
|
|
53
|
+
defaultValueHint: false
|
|
49
54
|
},
|
|
50
55
|
ghost: {
|
|
51
56
|
type: "boolean",
|
|
52
|
-
description: "Make background transparent and invert text and border colors"
|
|
57
|
+
description: "Make background transparent and invert text and border colors",
|
|
58
|
+
defaultValueHint: false
|
|
53
59
|
},
|
|
54
60
|
danger: {
|
|
55
61
|
type: "boolean",
|
|
56
|
-
description: "Set the danger status of button"
|
|
62
|
+
description: "Set the danger status of button",
|
|
63
|
+
defaultValueHint: false
|
|
57
64
|
},
|
|
58
65
|
block: {
|
|
59
66
|
type: "boolean",
|
|
60
|
-
description: "Option to fit button width to its parent width"
|
|
67
|
+
description: "Option to fit button width to its parent width",
|
|
68
|
+
defaultValueHint: false
|
|
61
69
|
},
|
|
62
70
|
loading: {
|
|
63
71
|
type: "boolean",
|
|
64
|
-
description: "Set the loading status of button"
|
|
72
|
+
description: "Set the loading status of button",
|
|
73
|
+
defaultValueHint: false
|
|
65
74
|
},
|
|
66
75
|
href: {
|
|
67
76
|
type: "string",
|
|
@@ -70,7 +79,11 @@ var buttonMeta = {
|
|
|
70
79
|
target: {
|
|
71
80
|
type: "choice",
|
|
72
81
|
options: ["_blank", "_self", "_parent", "_top"],
|
|
73
|
-
description: "Same as target attribute of a, works when href is specified"
|
|
82
|
+
description: "Same as target attribute of a, works when href is specified",
|
|
83
|
+
hidden: function hidden(props) {
|
|
84
|
+
return !props.href;
|
|
85
|
+
},
|
|
86
|
+
defaultValueHint: "_self"
|
|
74
87
|
},
|
|
75
88
|
children: {
|
|
76
89
|
type: "slot",
|
|
@@ -189,21 +202,25 @@ var checkboxMeta = {
|
|
|
189
202
|
props: {
|
|
190
203
|
autoFocus: {
|
|
191
204
|
type: "boolean",
|
|
192
|
-
description: "If get focus when component mounted"
|
|
205
|
+
description: "If get focus when component mounted",
|
|
206
|
+
defaultValueHint: false
|
|
193
207
|
},
|
|
194
208
|
checked: {
|
|
195
209
|
type: "boolean",
|
|
196
210
|
editOnly: true,
|
|
197
211
|
uncontrolledProp: "defaultChecked",
|
|
198
|
-
description: "Specifies the initial state: whether or not the checkbox is selected"
|
|
212
|
+
description: "Specifies the initial state: whether or not the checkbox is selected",
|
|
213
|
+
defaultValueHint: false
|
|
199
214
|
},
|
|
200
215
|
disabled: {
|
|
201
216
|
type: "boolean",
|
|
202
|
-
description: "If disable checkbox"
|
|
217
|
+
description: "If disable checkbox",
|
|
218
|
+
defaultValueHint: false
|
|
203
219
|
},
|
|
204
220
|
indeterminate: {
|
|
205
221
|
type: "boolean",
|
|
206
|
-
description: "The indeterminate checked state of checkbox"
|
|
222
|
+
description: "The indeterminate checked state of checkbox",
|
|
223
|
+
defaultValueHint: false
|
|
207
224
|
},
|
|
208
225
|
value: {
|
|
209
226
|
type: "string",
|
|
@@ -237,7 +254,8 @@ var checkboxGroupMeta = {
|
|
|
237
254
|
props: {
|
|
238
255
|
disabled: {
|
|
239
256
|
type: "boolean",
|
|
240
|
-
description: "If disable all checkboxes"
|
|
257
|
+
description: "If disable all checkboxes",
|
|
258
|
+
defaultValueHint: false
|
|
241
259
|
},
|
|
242
260
|
value: {
|
|
243
261
|
type: "choice",
|
|
@@ -292,20 +310,24 @@ var carouselMeta = {
|
|
|
292
310
|
props: {
|
|
293
311
|
autoplay: {
|
|
294
312
|
type: "boolean",
|
|
295
|
-
description: "Whether to scroll automatically"
|
|
313
|
+
description: "Whether to scroll automatically",
|
|
314
|
+
defaultValueHint: false
|
|
296
315
|
},
|
|
297
316
|
dotPosition: {
|
|
298
317
|
type: "choice",
|
|
299
318
|
options: ["top", "bottom", "left", "right"],
|
|
300
|
-
description: "The position of the dots"
|
|
319
|
+
description: "The position of the dots",
|
|
320
|
+
defaultValueHint: "bottom"
|
|
301
321
|
},
|
|
302
322
|
dots: {
|
|
303
323
|
type: "boolean",
|
|
304
|
-
description: "Whether to show the dots at the bottom of the gallery"
|
|
324
|
+
description: "Whether to show the dots at the bottom of the gallery",
|
|
325
|
+
defaultValueHint: true
|
|
305
326
|
},
|
|
306
327
|
effect: {
|
|
307
328
|
type: "choice",
|
|
308
|
-
options: ["scrollx", "fade"]
|
|
329
|
+
options: ["scrollx", "fade"],
|
|
330
|
+
defaultValueHint: "scrollx"
|
|
309
331
|
},
|
|
310
332
|
children: {
|
|
311
333
|
type: "slot",
|
|
@@ -348,7 +370,8 @@ var collapstePanelMeta = {
|
|
|
348
370
|
},
|
|
349
371
|
forceRender: {
|
|
350
372
|
type: "boolean",
|
|
351
|
-
description: "Forced render of content on panel, instead of lazy rending after clicking on header"
|
|
373
|
+
description: "Forced render of content on panel, instead of lazy rending after clicking on header",
|
|
374
|
+
defaultValueHint: false
|
|
352
375
|
},
|
|
353
376
|
header: {
|
|
354
377
|
type: "slot",
|
|
@@ -363,7 +386,8 @@ var collapstePanelMeta = {
|
|
|
363
386
|
},
|
|
364
387
|
showArrow: {
|
|
365
388
|
type: "boolean",
|
|
366
|
-
description: "If false, panel will not show arrow icon"
|
|
389
|
+
description: "If false, panel will not show arrow icon",
|
|
390
|
+
defaultValueHint: true
|
|
367
391
|
},
|
|
368
392
|
children: {
|
|
369
393
|
type: "slot",
|
|
@@ -391,7 +415,8 @@ var collapsteMeta = {
|
|
|
391
415
|
props: {
|
|
392
416
|
accordion: {
|
|
393
417
|
type: "boolean",
|
|
394
|
-
description: "If true, Collapse renders as Accordion"
|
|
418
|
+
description: "If true, Collapse renders as Accordion",
|
|
419
|
+
defaultValueHint: false
|
|
395
420
|
},
|
|
396
421
|
activeKey: {
|
|
397
422
|
type: "choice",
|
|
@@ -412,7 +437,8 @@ var collapsteMeta = {
|
|
|
412
437
|
},
|
|
413
438
|
bordered: {
|
|
414
439
|
type: "boolean",
|
|
415
|
-
description: "Toggles rendering of the border around the collapse block"
|
|
440
|
+
description: "Toggles rendering of the border around the collapse block",
|
|
441
|
+
defaultValueHint: true
|
|
416
442
|
},
|
|
417
443
|
collapsible: {
|
|
418
444
|
type: "choice",
|
|
@@ -422,11 +448,13 @@ var collapsteMeta = {
|
|
|
422
448
|
expandIconPosition: {
|
|
423
449
|
type: "choice",
|
|
424
450
|
options: ["left", "right"],
|
|
425
|
-
description: "Set expand icon position"
|
|
451
|
+
description: "Set expand icon position",
|
|
452
|
+
defaultValueHint: "left"
|
|
426
453
|
},
|
|
427
454
|
ghost: {
|
|
428
455
|
type: "boolean",
|
|
429
|
-
description: "Make the collapse borderless and its background transparent"
|
|
456
|
+
description: "Make the collapse borderless and its background transparent",
|
|
457
|
+
defaultValueHint: false
|
|
430
458
|
},
|
|
431
459
|
children: {
|
|
432
460
|
type: "slot",
|
|
@@ -473,11 +501,13 @@ var dropdownMeta = {
|
|
|
473
501
|
props: {
|
|
474
502
|
arrow: {
|
|
475
503
|
type: "boolean",
|
|
476
|
-
description: "Whether the dropdown arrow should be visible"
|
|
504
|
+
description: "Whether the dropdown arrow should be visible",
|
|
505
|
+
defaultValueHint: false
|
|
477
506
|
},
|
|
478
507
|
disabled: {
|
|
479
508
|
type: "boolean",
|
|
480
|
-
description: "Whether the dropdown menu is disabled"
|
|
509
|
+
description: "Whether the dropdown menu is disabled",
|
|
510
|
+
defaultValueHint: false
|
|
481
511
|
},
|
|
482
512
|
overlay: {
|
|
483
513
|
type: "slot",
|
|
@@ -490,17 +520,20 @@ var dropdownMeta = {
|
|
|
490
520
|
placement: {
|
|
491
521
|
type: "choice",
|
|
492
522
|
options: ["bottomLeft", "bottomCenter", "bottomRight", "topLeft", "topCenter", "topRight"],
|
|
493
|
-
description: "Placement of popup menu"
|
|
523
|
+
description: "Placement of popup menu",
|
|
524
|
+
defaultValueHint: "bottomLeft"
|
|
494
525
|
},
|
|
495
526
|
trigger: {
|
|
496
527
|
type: "choice",
|
|
497
528
|
options: ["click", "hover", "contextMenu"],
|
|
498
|
-
description: "The trigger mode which executes the dropdown action"
|
|
529
|
+
description: "The trigger mode which executes the dropdown action",
|
|
530
|
+
defaultValueHint: "hover"
|
|
499
531
|
},
|
|
500
532
|
visible: {
|
|
501
533
|
type: "boolean",
|
|
502
534
|
description: "Toggle visibility of dropdown menu in Plasmic Editor",
|
|
503
|
-
editOnly: true
|
|
535
|
+
editOnly: true,
|
|
536
|
+
defaultValueHint: false
|
|
504
537
|
},
|
|
505
538
|
children: {
|
|
506
539
|
type: "slot",
|
|
@@ -526,7 +559,8 @@ var dropdownButtonMeta = {
|
|
|
526
559
|
props: {
|
|
527
560
|
disabled: {
|
|
528
561
|
type: "boolean",
|
|
529
|
-
description: "Whether the dropdown menu is disabled"
|
|
562
|
+
description: "Whether the dropdown menu is disabled",
|
|
563
|
+
defaultValueHint: false
|
|
530
564
|
},
|
|
531
565
|
icon: {
|
|
532
566
|
type: "slot",
|
|
@@ -543,27 +577,32 @@ var dropdownButtonMeta = {
|
|
|
543
577
|
placement: {
|
|
544
578
|
type: "choice",
|
|
545
579
|
options: ["bottomLeft", "bottomCenter", "bottomRight", "topLeft", "topCenter", "topRight"],
|
|
546
|
-
description: "Placement of popup menu"
|
|
580
|
+
description: "Placement of popup menu",
|
|
581
|
+
defaultValueHint: "bottomLeft"
|
|
547
582
|
},
|
|
548
583
|
size: {
|
|
549
584
|
type: "choice",
|
|
550
585
|
options: ["small", "medium", "large"],
|
|
551
|
-
description: "Set the size of button"
|
|
586
|
+
description: "Set the size of button",
|
|
587
|
+
defaultValueHint: "medium"
|
|
552
588
|
},
|
|
553
589
|
trigger: {
|
|
554
590
|
type: "choice",
|
|
555
591
|
options: ["click", "hover", "contextMenu"],
|
|
556
|
-
description: "The trigger mode which executes the dropdown action"
|
|
592
|
+
description: "The trigger mode which executes the dropdown action",
|
|
593
|
+
defaultValueHint: "hover"
|
|
557
594
|
},
|
|
558
595
|
type: {
|
|
559
596
|
type: "choice",
|
|
560
597
|
options: ["default", "primary", "ghost", "dashed", "link", "text"],
|
|
561
|
-
description: "Can be set to primary, ghost, dashed, link, text, default"
|
|
598
|
+
description: "Can be set to primary, ghost, dashed, link, text, default",
|
|
599
|
+
defaultValueHint: "default"
|
|
562
600
|
},
|
|
563
601
|
visible: {
|
|
564
602
|
type: "boolean",
|
|
565
603
|
description: "Toggle visibility of dropdown menu in Plasmic Editor",
|
|
566
|
-
editOnly: true
|
|
604
|
+
editOnly: true,
|
|
605
|
+
defaultValueHint: false
|
|
567
606
|
},
|
|
568
607
|
children: {
|
|
569
608
|
type: "slot",
|
|
@@ -600,15 +639,18 @@ var inputMeta = {
|
|
|
600
639
|
},
|
|
601
640
|
allowClear: {
|
|
602
641
|
type: "boolean",
|
|
603
|
-
description: "If allow to remove input content with clear icon"
|
|
642
|
+
description: "If allow to remove input content with clear icon",
|
|
643
|
+
defaultValueHint: false
|
|
604
644
|
},
|
|
605
645
|
bordered: {
|
|
606
646
|
type: "boolean",
|
|
607
|
-
description: "Whether has border style"
|
|
647
|
+
description: "Whether has border style",
|
|
648
|
+
defaultValueHint: true
|
|
608
649
|
},
|
|
609
650
|
disabled: {
|
|
610
651
|
type: "boolean",
|
|
611
|
-
description: "Whether the input is disabled"
|
|
652
|
+
description: "Whether the input is disabled",
|
|
653
|
+
defaultValueHint: false
|
|
612
654
|
},
|
|
613
655
|
id: {
|
|
614
656
|
type: "string",
|
|
@@ -629,7 +671,8 @@ var inputMeta = {
|
|
|
629
671
|
size: {
|
|
630
672
|
type: "choice",
|
|
631
673
|
options: ["small", "middle", "large"],
|
|
632
|
-
description: "The size of the input box"
|
|
674
|
+
description: "The size of the input box",
|
|
675
|
+
defaultValueHint: "middle,"
|
|
633
676
|
},
|
|
634
677
|
suffix: {
|
|
635
678
|
type: "slot",
|
|
@@ -637,7 +680,8 @@ var inputMeta = {
|
|
|
637
680
|
},
|
|
638
681
|
type: {
|
|
639
682
|
type: "string",
|
|
640
|
-
description: "The type of input"
|
|
683
|
+
description: "The type of input",
|
|
684
|
+
defaultValueHint: "text"
|
|
641
685
|
},
|
|
642
686
|
value: {
|
|
643
687
|
type: "string",
|
|
@@ -661,7 +705,8 @@ var inputTextAreaMeta = {
|
|
|
661
705
|
props: {
|
|
662
706
|
allowClear: {
|
|
663
707
|
type: "boolean",
|
|
664
|
-
description: "If allow to remove input content with clear icon"
|
|
708
|
+
description: "If allow to remove input content with clear icon",
|
|
709
|
+
defaultValueHint: false
|
|
665
710
|
},
|
|
666
711
|
autoSize: {
|
|
667
712
|
type: "object",
|
|
@@ -669,15 +714,18 @@ var inputTextAreaMeta = {
|
|
|
669
714
|
},
|
|
670
715
|
disabled: {
|
|
671
716
|
type: "boolean",
|
|
672
|
-
description: "Whether the input is disabled"
|
|
717
|
+
description: "Whether the input is disabled",
|
|
718
|
+
defaultValueHint: false
|
|
673
719
|
},
|
|
674
720
|
bordered: {
|
|
675
721
|
type: "boolean",
|
|
676
|
-
description: "Whether has border style"
|
|
722
|
+
description: "Whether has border style",
|
|
723
|
+
defaultValueHint: true
|
|
677
724
|
},
|
|
678
725
|
showCount: {
|
|
679
726
|
type: "boolean",
|
|
680
|
-
description: "Whether show text count"
|
|
727
|
+
description: "Whether show text count",
|
|
728
|
+
defaultValueHint: false
|
|
681
729
|
},
|
|
682
730
|
id: {
|
|
683
731
|
type: "string",
|
|
@@ -719,15 +767,18 @@ var inputSearchMeta = {
|
|
|
719
767
|
},
|
|
720
768
|
allowClear: {
|
|
721
769
|
type: "boolean",
|
|
722
|
-
description: "If allow to remove input content with clear icon"
|
|
770
|
+
description: "If allow to remove input content with clear icon",
|
|
771
|
+
defaultValueHint: false
|
|
723
772
|
},
|
|
724
773
|
bordered: {
|
|
725
774
|
type: "boolean",
|
|
726
|
-
description: "Whether has border style"
|
|
775
|
+
description: "Whether has border style",
|
|
776
|
+
defaultValueHint: true
|
|
727
777
|
},
|
|
728
778
|
disabled: {
|
|
729
779
|
type: "boolean",
|
|
730
|
-
description: "Whether the input is disabled"
|
|
780
|
+
description: "Whether the input is disabled",
|
|
781
|
+
defaultValueHint: false
|
|
731
782
|
},
|
|
732
783
|
enterButton: {
|
|
733
784
|
type: "slot",
|
|
@@ -739,7 +790,8 @@ var inputSearchMeta = {
|
|
|
739
790
|
},
|
|
740
791
|
loading: {
|
|
741
792
|
type: "boolean",
|
|
742
|
-
description: "Search box with loading"
|
|
793
|
+
description: "Search box with loading",
|
|
794
|
+
defaultValueHint: false
|
|
743
795
|
},
|
|
744
796
|
maxLength: {
|
|
745
797
|
type: "number",
|
|
@@ -756,7 +808,8 @@ var inputSearchMeta = {
|
|
|
756
808
|
size: {
|
|
757
809
|
type: "choice",
|
|
758
810
|
options: ["small", "middle", "large"],
|
|
759
|
-
description: "The size of the input box"
|
|
811
|
+
description: "The size of the input box",
|
|
812
|
+
defaultValueHint: "middle"
|
|
760
813
|
},
|
|
761
814
|
suffix: {
|
|
762
815
|
type: "slot",
|
|
@@ -798,15 +851,18 @@ var inputPasswordMeta = {
|
|
|
798
851
|
},
|
|
799
852
|
allowClear: {
|
|
800
853
|
type: "boolean",
|
|
801
|
-
description: "If allow to remove input content with clear icon"
|
|
854
|
+
description: "If allow to remove input content with clear icon",
|
|
855
|
+
defaultValueHint: false
|
|
802
856
|
},
|
|
803
857
|
bordered: {
|
|
804
858
|
type: "boolean",
|
|
805
|
-
description: "Whether has border style"
|
|
859
|
+
description: "Whether has border style",
|
|
860
|
+
defaultValueHint: true
|
|
806
861
|
},
|
|
807
862
|
disabled: {
|
|
808
863
|
type: "boolean",
|
|
809
|
-
description: "Whether the input is disabled"
|
|
864
|
+
description: "Whether the input is disabled",
|
|
865
|
+
defaultValueHint: false
|
|
810
866
|
},
|
|
811
867
|
id: {
|
|
812
868
|
type: "string",
|
|
@@ -827,7 +883,8 @@ var inputPasswordMeta = {
|
|
|
827
883
|
size: {
|
|
828
884
|
type: "choice",
|
|
829
885
|
options: ["small", "middle", "large"],
|
|
830
|
-
description: "The size of the input box"
|
|
886
|
+
description: "The size of the input box",
|
|
887
|
+
defaultValueHint: "middle"
|
|
831
888
|
},
|
|
832
889
|
type: {
|
|
833
890
|
type: "string",
|
|
@@ -840,7 +897,8 @@ var inputPasswordMeta = {
|
|
|
840
897
|
},
|
|
841
898
|
visibilityToggle: {
|
|
842
899
|
type: "boolean",
|
|
843
|
-
description: "Whether show toggle button"
|
|
900
|
+
description: "Whether show toggle button",
|
|
901
|
+
defaultValueHint: true
|
|
844
902
|
}
|
|
845
903
|
},
|
|
846
904
|
importPath: "antd/lib/input/Password",
|
|
@@ -861,12 +919,14 @@ var inputGroupMeta = {
|
|
|
861
919
|
props: {
|
|
862
920
|
compact: {
|
|
863
921
|
type: "boolean",
|
|
864
|
-
description: "Whether use compact style"
|
|
922
|
+
description: "Whether use compact style",
|
|
923
|
+
defaultValueHint: false
|
|
865
924
|
},
|
|
866
925
|
size: {
|
|
867
926
|
type: "choice",
|
|
868
927
|
options: ["small", "default", "large"],
|
|
869
|
-
description: "The size of Input.Group specifies the size of the included Input fields"
|
|
928
|
+
description: "The size of Input.Group specifies the size of the included Input fields",
|
|
929
|
+
defaultValueHint: "default"
|
|
870
930
|
},
|
|
871
931
|
children: {
|
|
872
932
|
type: "slot",
|
|
@@ -898,7 +958,8 @@ var menuDividerMeta = {
|
|
|
898
958
|
props: {
|
|
899
959
|
dashed: {
|
|
900
960
|
type: "boolean",
|
|
901
|
-
description: "Whether line is dashed"
|
|
961
|
+
description: "Whether line is dashed",
|
|
962
|
+
defaultValueHint: false
|
|
902
963
|
}
|
|
903
964
|
},
|
|
904
965
|
importPath: "antd/lib/menu/MenuDivider",
|
|
@@ -919,11 +980,13 @@ var menuItemMeta = {
|
|
|
919
980
|
props: {
|
|
920
981
|
danger: {
|
|
921
982
|
type: "boolean",
|
|
922
|
-
description: "Display the danger style"
|
|
983
|
+
description: "Display the danger style",
|
|
984
|
+
defaultValueHint: false
|
|
923
985
|
},
|
|
924
986
|
disabled: {
|
|
925
987
|
type: "boolean",
|
|
926
|
-
description: "Whether disabled select"
|
|
988
|
+
description: "Whether disabled select",
|
|
989
|
+
defaultValueHint: false
|
|
927
990
|
},
|
|
928
991
|
key: {
|
|
929
992
|
type: "string",
|
|
@@ -991,7 +1054,8 @@ var subMenuMeta = {
|
|
|
991
1054
|
props: {
|
|
992
1055
|
disabled: {
|
|
993
1056
|
type: "boolean",
|
|
994
|
-
description: "Whether sub-menu is disabled"
|
|
1057
|
+
description: "Whether sub-menu is disabled",
|
|
1058
|
+
defaultValueHint: false
|
|
995
1059
|
},
|
|
996
1060
|
key: {
|
|
997
1061
|
type: "string",
|
|
@@ -1039,20 +1103,24 @@ var menuMeta = {
|
|
|
1039
1103
|
},
|
|
1040
1104
|
forceSubMenuRender: {
|
|
1041
1105
|
type: "boolean",
|
|
1042
|
-
description: "Render submenu into DOM before it becomes visible"
|
|
1106
|
+
description: "Render submenu into DOM before it becomes visible",
|
|
1107
|
+
defaultValueHint: false
|
|
1043
1108
|
},
|
|
1044
1109
|
inlineIndent: {
|
|
1045
1110
|
type: "number",
|
|
1046
|
-
description: "Indent (in pixels) of inline menu items on each level"
|
|
1111
|
+
description: "Indent (in pixels) of inline menu items on each level",
|
|
1112
|
+
defaultValueHint: 24
|
|
1047
1113
|
},
|
|
1048
1114
|
mode: {
|
|
1049
1115
|
type: "choice",
|
|
1050
1116
|
options: ["horizontal", "vertical", "inline"],
|
|
1051
|
-
description: "Type of menu"
|
|
1117
|
+
description: "Type of menu",
|
|
1118
|
+
defaultValueHint: "vertical"
|
|
1052
1119
|
},
|
|
1053
1120
|
multiple: {
|
|
1054
1121
|
type: "boolean",
|
|
1055
|
-
description: "Allows selection of multiple items"
|
|
1122
|
+
description: "Allows selection of multiple items",
|
|
1123
|
+
defaultValueHint: false
|
|
1056
1124
|
},
|
|
1057
1125
|
openKeys: {
|
|
1058
1126
|
type: "choice",
|
|
@@ -1076,7 +1144,8 @@ var menuMeta = {
|
|
|
1076
1144
|
},
|
|
1077
1145
|
selectable: {
|
|
1078
1146
|
type: "boolean",
|
|
1079
|
-
description: "Allows selecting menu items"
|
|
1147
|
+
description: "Allows selecting menu items",
|
|
1148
|
+
defaultValueHint: true
|
|
1080
1149
|
},
|
|
1081
1150
|
selectedKeys: {
|
|
1082
1151
|
type: "choice",
|
|
@@ -1096,21 +1165,25 @@ var menuMeta = {
|
|
|
1096
1165
|
},
|
|
1097
1166
|
subMenuCloseDelay: {
|
|
1098
1167
|
type: "number",
|
|
1099
|
-
description: "Delay time to hide submenu when mouse leaves (in seconds)"
|
|
1168
|
+
description: "Delay time to hide submenu when mouse leaves (in seconds)",
|
|
1169
|
+
defaultValueHint: 0.1
|
|
1100
1170
|
},
|
|
1101
1171
|
subMenuOpenDelay: {
|
|
1102
1172
|
type: "number",
|
|
1103
|
-
description: "Delay time to show submenu when mouse enters, (in seconds)"
|
|
1173
|
+
description: "Delay time to show submenu when mouse enters, (in seconds)",
|
|
1174
|
+
defaultValueHint: 0
|
|
1104
1175
|
},
|
|
1105
1176
|
theme: {
|
|
1106
1177
|
type: "choice",
|
|
1107
1178
|
options: ["light", "dark"],
|
|
1108
|
-
description: "Color theme of the menu"
|
|
1179
|
+
description: "Color theme of the menu",
|
|
1180
|
+
defaultValueHint: "light"
|
|
1109
1181
|
},
|
|
1110
1182
|
triggerSubMenuAction: {
|
|
1111
1183
|
type: "choice",
|
|
1112
1184
|
options: ["hover", "click"],
|
|
1113
|
-
description: "Which action can trigger submenu open/close"
|
|
1185
|
+
description: "Which action can trigger submenu open/close",
|
|
1186
|
+
defaultValueHint: "hover"
|
|
1114
1187
|
},
|
|
1115
1188
|
children: {
|
|
1116
1189
|
type: "slot",
|
|
@@ -1142,7 +1215,8 @@ var optionMeta = {
|
|
|
1142
1215
|
props: {
|
|
1143
1216
|
disabled: {
|
|
1144
1217
|
type: "boolean",
|
|
1145
|
-
description: "Disable this option"
|
|
1218
|
+
description: "Disable this option",
|
|
1219
|
+
defaultValueHint: false
|
|
1146
1220
|
},
|
|
1147
1221
|
title: {
|
|
1148
1222
|
type: "string",
|
|
@@ -1212,25 +1286,43 @@ var selectMeta = {
|
|
|
1212
1286
|
name: "AntdSelect",
|
|
1213
1287
|
displayName: "Antd Select",
|
|
1214
1288
|
props: {
|
|
1289
|
+
allowClear: {
|
|
1290
|
+
type: "boolean",
|
|
1291
|
+
description: "Show clear button",
|
|
1292
|
+
defaultValueHint: false
|
|
1293
|
+
},
|
|
1294
|
+
autoClearSearchValue: {
|
|
1295
|
+
type: "boolean",
|
|
1296
|
+
description: "Whether the current search will be cleared on selecting an item",
|
|
1297
|
+
defaultValueHint: true,
|
|
1298
|
+
hidden: function hidden(props) {
|
|
1299
|
+
return props.mode !== "multiple" && props.mode !== "tags";
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1215
1302
|
autoFocus: {
|
|
1216
1303
|
type: "boolean",
|
|
1217
|
-
description: "Get focus by default"
|
|
1304
|
+
description: "Get focus by default",
|
|
1305
|
+
defaultValueHint: false
|
|
1218
1306
|
},
|
|
1219
1307
|
bordered: {
|
|
1220
1308
|
type: "boolean",
|
|
1221
|
-
description: "Whether has border style"
|
|
1309
|
+
description: "Whether has border style",
|
|
1310
|
+
defaultValueHint: true
|
|
1222
1311
|
},
|
|
1223
1312
|
disabled: {
|
|
1224
1313
|
type: "boolean",
|
|
1225
|
-
description: "Whether disabled select"
|
|
1314
|
+
description: "Whether disabled select",
|
|
1315
|
+
defaultValueHint: false
|
|
1226
1316
|
},
|
|
1227
1317
|
listHeight: {
|
|
1228
1318
|
type: "number",
|
|
1229
|
-
description: "Config popup height"
|
|
1319
|
+
description: "Config popup height",
|
|
1320
|
+
defaultValueHint: 256
|
|
1230
1321
|
},
|
|
1231
1322
|
loading: {
|
|
1232
1323
|
type: "boolean",
|
|
1233
|
-
description: "Indicate loading state"
|
|
1324
|
+
description: "Indicate loading state",
|
|
1325
|
+
defaultValueHint: false
|
|
1234
1326
|
},
|
|
1235
1327
|
mode: {
|
|
1236
1328
|
type: "choice",
|
|
@@ -1241,7 +1333,8 @@ var selectMeta = {
|
|
|
1241
1333
|
type: "boolean",
|
|
1242
1334
|
editOnly: true,
|
|
1243
1335
|
uncontrolledProp: "defaultOpen",
|
|
1244
|
-
description: "Initial open state of dropdown"
|
|
1336
|
+
description: "Initial open state of dropdown",
|
|
1337
|
+
defaultValueHint: false
|
|
1245
1338
|
},
|
|
1246
1339
|
placeholder: {
|
|
1247
1340
|
type: "slot",
|
|
@@ -1252,16 +1345,19 @@ var selectMeta = {
|
|
|
1252
1345
|
},
|
|
1253
1346
|
showArrow: {
|
|
1254
1347
|
type: "boolean",
|
|
1255
|
-
description: "Whether to show the drop-down arrow"
|
|
1348
|
+
description: "Whether to show the drop-down arrow",
|
|
1349
|
+
defaultValueHint: true
|
|
1256
1350
|
},
|
|
1257
1351
|
showSearch: {
|
|
1258
1352
|
type: "boolean",
|
|
1259
|
-
description: "Whether show search input in single mode"
|
|
1353
|
+
description: "Whether show search input in single mode",
|
|
1354
|
+
defaultValueHint: false
|
|
1260
1355
|
},
|
|
1261
1356
|
size: {
|
|
1262
1357
|
type: "choice",
|
|
1263
1358
|
options: ["large", "middle", "small"],
|
|
1264
|
-
description: "Set mode of Select"
|
|
1359
|
+
description: "Set mode of Select",
|
|
1360
|
+
defaultValueHint: "middle"
|
|
1265
1361
|
},
|
|
1266
1362
|
value: {
|
|
1267
1363
|
type: "choice",
|
|
@@ -1282,7 +1378,8 @@ var selectMeta = {
|
|
|
1282
1378
|
},
|
|
1283
1379
|
virtual: {
|
|
1284
1380
|
type: "boolean",
|
|
1285
|
-
description: "Disable virtual scroll when set to false"
|
|
1381
|
+
description: "Disable virtual scroll when set to false",
|
|
1382
|
+
defaultValueHint: true
|
|
1286
1383
|
},
|
|
1287
1384
|
children: {
|
|
1288
1385
|
type: "slot",
|
|
@@ -1348,31 +1445,38 @@ var sliderMeta = {
|
|
|
1348
1445
|
props: {
|
|
1349
1446
|
max: {
|
|
1350
1447
|
type: "number",
|
|
1351
|
-
description: "The maximum value the slider can slide to"
|
|
1448
|
+
description: "The maximum value the slider can slide to",
|
|
1449
|
+
defaultValueHint: 100
|
|
1352
1450
|
},
|
|
1353
1451
|
min: {
|
|
1354
1452
|
type: "number",
|
|
1355
|
-
description: "The minimum value the slider can slide to"
|
|
1453
|
+
description: "The minimum value the slider can slide to",
|
|
1454
|
+
defaultValueHint: 0
|
|
1356
1455
|
},
|
|
1357
1456
|
included: {
|
|
1358
1457
|
type: "boolean",
|
|
1359
|
-
description: "Make effect when marks not null, true means containment and false means coordinative"
|
|
1458
|
+
description: "Make effect when marks not null, true means containment and false means coordinative",
|
|
1459
|
+
defaultValueHint: true
|
|
1360
1460
|
},
|
|
1361
1461
|
disabled: {
|
|
1362
1462
|
type: "boolean",
|
|
1363
|
-
description: "If true, the slider will not be interactable"
|
|
1463
|
+
description: "If true, the slider will not be interactable",
|
|
1464
|
+
defaultValueHint: false
|
|
1364
1465
|
},
|
|
1365
1466
|
range: {
|
|
1366
1467
|
type: "boolean",
|
|
1367
|
-
description: "Dual thumb mode"
|
|
1468
|
+
description: "Dual thumb mode",
|
|
1469
|
+
defaultValueHint: false
|
|
1368
1470
|
},
|
|
1369
1471
|
reverse: {
|
|
1370
1472
|
type: "boolean",
|
|
1371
|
-
description: "Reverse the component"
|
|
1473
|
+
description: "Reverse the component",
|
|
1474
|
+
defaultValueHint: false
|
|
1372
1475
|
},
|
|
1373
1476
|
vertical: {
|
|
1374
1477
|
type: "boolean",
|
|
1375
|
-
description: "If true, the slider will be vertical"
|
|
1478
|
+
description: "If true, the slider will be vertical",
|
|
1479
|
+
defaultValueHint: false
|
|
1376
1480
|
},
|
|
1377
1481
|
value: {
|
|
1378
1482
|
type: "number",
|
|
@@ -1421,21 +1525,25 @@ var switchMeta = {
|
|
|
1421
1525
|
props: {
|
|
1422
1526
|
autoFocus: {
|
|
1423
1527
|
type: "boolean",
|
|
1424
|
-
description: "Whether get focus when component mounted"
|
|
1528
|
+
description: "Whether get focus when component mounted",
|
|
1529
|
+
defaultValueHint: false
|
|
1425
1530
|
},
|
|
1426
1531
|
checked: {
|
|
1427
1532
|
type: "boolean",
|
|
1428
1533
|
editOnly: true,
|
|
1429
1534
|
uncontrolledProp: "defaultChecked",
|
|
1430
|
-
description: "Whether to set the initial state"
|
|
1535
|
+
description: "Whether to set the initial state",
|
|
1536
|
+
defaultValueHint: false
|
|
1431
1537
|
},
|
|
1432
1538
|
disabled: {
|
|
1433
1539
|
type: "boolean",
|
|
1434
|
-
description: "Disable switch"
|
|
1540
|
+
description: "Disable switch",
|
|
1541
|
+
defaultValueHint: false
|
|
1435
1542
|
},
|
|
1436
1543
|
loading: {
|
|
1437
1544
|
type: "boolean",
|
|
1438
|
-
description: "Loading state of switch"
|
|
1545
|
+
description: "Loading state of switch",
|
|
1546
|
+
defaultValueHint: false
|
|
1439
1547
|
},
|
|
1440
1548
|
checkedChildren: {
|
|
1441
1549
|
type: "slot",
|
|
@@ -1450,7 +1558,8 @@ var switchMeta = {
|
|
|
1450
1558
|
size: {
|
|
1451
1559
|
type: "choice",
|
|
1452
1560
|
options: ["small", "default"],
|
|
1453
|
-
description: "The size of the Switch"
|
|
1561
|
+
description: "The size of the Switch",
|
|
1562
|
+
defaultValueHint: "default"
|
|
1454
1563
|
}
|
|
1455
1564
|
},
|
|
1456
1565
|
importPath: "antd",
|
|
@@ -1464,6 +1573,186 @@ function registerSwitch(loader, customSwitchMeta) {
|
|
|
1464
1573
|
doRegisterComponent(antd.Switch, customSwitchMeta != null ? customSwitchMeta : switchMeta);
|
|
1465
1574
|
}
|
|
1466
1575
|
|
|
1576
|
+
var tabPaneMeta = {
|
|
1577
|
+
name: "AntdTabPane",
|
|
1578
|
+
displayName: "Antd Tab Pane",
|
|
1579
|
+
props: {
|
|
1580
|
+
tab: {
|
|
1581
|
+
type: "slot",
|
|
1582
|
+
defaultValue: [{
|
|
1583
|
+
type: "text",
|
|
1584
|
+
value: "Tab"
|
|
1585
|
+
}]
|
|
1586
|
+
},
|
|
1587
|
+
key: {
|
|
1588
|
+
type: "string",
|
|
1589
|
+
description: "Unique TabPane's key",
|
|
1590
|
+
defaultValue: "tabPaneKey"
|
|
1591
|
+
},
|
|
1592
|
+
closable: {
|
|
1593
|
+
type: "boolean",
|
|
1594
|
+
description: "Wether the tab can be closed or not. Only works for editable tabs",
|
|
1595
|
+
defaultValueHint: true
|
|
1596
|
+
},
|
|
1597
|
+
disabled: {
|
|
1598
|
+
type: "boolean",
|
|
1599
|
+
description: "Disabled state of tab",
|
|
1600
|
+
defaultValueHint: false
|
|
1601
|
+
},
|
|
1602
|
+
forceRender: {
|
|
1603
|
+
type: "boolean",
|
|
1604
|
+
description: "Forced render of content in tabs, not lazy render after clicking on tabs",
|
|
1605
|
+
defaultValueHint: false
|
|
1606
|
+
},
|
|
1607
|
+
closeIcon: {
|
|
1608
|
+
type: "slot",
|
|
1609
|
+
hidePlaceholder: true
|
|
1610
|
+
},
|
|
1611
|
+
children: {
|
|
1612
|
+
type: "slot",
|
|
1613
|
+
defaultValue: [{
|
|
1614
|
+
type: "text",
|
|
1615
|
+
value: "Tab Content"
|
|
1616
|
+
}]
|
|
1617
|
+
}
|
|
1618
|
+
},
|
|
1619
|
+
parentComponentName: "AntdTabs",
|
|
1620
|
+
importPath: "rc-tabs",
|
|
1621
|
+
importName: "TabPane"
|
|
1622
|
+
};
|
|
1623
|
+
function registerTabPane(loader, customTabPaneMeta) {
|
|
1624
|
+
var doRegisterComponent = function doRegisterComponent() {
|
|
1625
|
+
return loader ? loader.registerComponent.apply(loader, arguments) : registerComponent.apply(void 0, arguments);
|
|
1626
|
+
};
|
|
1627
|
+
|
|
1628
|
+
doRegisterComponent(rcTabs.TabPane, customTabPaneMeta != null ? customTabPaneMeta : tabPaneMeta);
|
|
1629
|
+
}
|
|
1630
|
+
function Tabs(props) {
|
|
1631
|
+
var leftTabBarExtraContent = props.leftTabBarExtraContent,
|
|
1632
|
+
rightTabBarExtraContent = props.rightTabBarExtraContent,
|
|
1633
|
+
otherProps = _objectWithoutPropertiesLoose(props, ["leftTabBarExtraContent", "rightTabBarExtraContent"]);
|
|
1634
|
+
|
|
1635
|
+
return React.createElement(antd.Tabs, Object.assign({}, otherProps, {
|
|
1636
|
+
tabBarExtraContent: {
|
|
1637
|
+
left: leftTabBarExtraContent,
|
|
1638
|
+
right: rightTabBarExtraContent
|
|
1639
|
+
}
|
|
1640
|
+
}));
|
|
1641
|
+
}
|
|
1642
|
+
var tabsMeta = {
|
|
1643
|
+
name: "AntdTabs",
|
|
1644
|
+
displayName: "Antd Tabs",
|
|
1645
|
+
props: {
|
|
1646
|
+
type: {
|
|
1647
|
+
type: "choice",
|
|
1648
|
+
options: ["line", "card", "editable-card"],
|
|
1649
|
+
defaultValueHint: "line",
|
|
1650
|
+
description: "Basic style of tabs"
|
|
1651
|
+
},
|
|
1652
|
+
addIcon: {
|
|
1653
|
+
type: "slot",
|
|
1654
|
+
hidePlaceholder: true
|
|
1655
|
+
},
|
|
1656
|
+
animated: {
|
|
1657
|
+
type: "object",
|
|
1658
|
+
hidden: function hidden(props) {
|
|
1659
|
+
return props.tabPosition !== "top" && !!props.tabPosition;
|
|
1660
|
+
},
|
|
1661
|
+
defaultValueHint: {
|
|
1662
|
+
inkBar: true,
|
|
1663
|
+
tabPane: false
|
|
1664
|
+
},
|
|
1665
|
+
description: "Whether to change tabs with animation. Can be either a boolean or specify for inkBar and tabPane"
|
|
1666
|
+
},
|
|
1667
|
+
hideAdd: {
|
|
1668
|
+
type: "boolean",
|
|
1669
|
+
hidden: function hidden(props) {
|
|
1670
|
+
return props.type !== "editable-card";
|
|
1671
|
+
},
|
|
1672
|
+
defaultValueHint: false,
|
|
1673
|
+
description: "Hide plus icon or not"
|
|
1674
|
+
},
|
|
1675
|
+
moreIcon: {
|
|
1676
|
+
type: "slot",
|
|
1677
|
+
hidePlaceholder: true
|
|
1678
|
+
},
|
|
1679
|
+
size: {
|
|
1680
|
+
type: "choice",
|
|
1681
|
+
options: ["large", "default", "small"],
|
|
1682
|
+
defaultValueHint: "default",
|
|
1683
|
+
description: "Preset tab bar size"
|
|
1684
|
+
},
|
|
1685
|
+
tabPosition: {
|
|
1686
|
+
type: "choice",
|
|
1687
|
+
options: ["top", "right", "bottom", "left"],
|
|
1688
|
+
defaultValueHint: "top",
|
|
1689
|
+
description: "Position of tabs"
|
|
1690
|
+
},
|
|
1691
|
+
tabBarGutter: {
|
|
1692
|
+
type: "number",
|
|
1693
|
+
description: "The gap between tabs"
|
|
1694
|
+
},
|
|
1695
|
+
centered: {
|
|
1696
|
+
type: "boolean",
|
|
1697
|
+
description: "Centers tabs",
|
|
1698
|
+
defaultValueHint: false
|
|
1699
|
+
},
|
|
1700
|
+
leftTabBarExtraContent: {
|
|
1701
|
+
type: "slot",
|
|
1702
|
+
hidePlaceholder: true
|
|
1703
|
+
},
|
|
1704
|
+
rightTabBarExtraContent: {
|
|
1705
|
+
type: "slot",
|
|
1706
|
+
hidePlaceholder: true
|
|
1707
|
+
},
|
|
1708
|
+
tabBarStyle: {
|
|
1709
|
+
type: "object",
|
|
1710
|
+
description: "CSS for the Tab Bar style"
|
|
1711
|
+
},
|
|
1712
|
+
activeKey: {
|
|
1713
|
+
type: "choice",
|
|
1714
|
+
editOnly: true,
|
|
1715
|
+
uncontrolledProp: "defaultActiveKey",
|
|
1716
|
+
description: "Initial active TabPane's key",
|
|
1717
|
+
options: function options(props) {
|
|
1718
|
+
var options = new Set();
|
|
1719
|
+
traverseReactEltTree(props.children, function (elt) {
|
|
1720
|
+
if ((elt == null ? void 0 : elt.type) === rcTabs.TabPane && typeof (elt == null ? void 0 : elt.key) === "string") {
|
|
1721
|
+
options.add(elt.key);
|
|
1722
|
+
}
|
|
1723
|
+
});
|
|
1724
|
+
return Array.from(options.keys());
|
|
1725
|
+
}
|
|
1726
|
+
},
|
|
1727
|
+
children: {
|
|
1728
|
+
type: "slot",
|
|
1729
|
+
allowedComponents: ["AntdTabPane"],
|
|
1730
|
+
defaultValue: [{
|
|
1731
|
+
type: "component",
|
|
1732
|
+
name: "AntdTabPane",
|
|
1733
|
+
props: {
|
|
1734
|
+
key: "1"
|
|
1735
|
+
}
|
|
1736
|
+
}, {
|
|
1737
|
+
type: "component",
|
|
1738
|
+
name: "AntdTabPane",
|
|
1739
|
+
props: {
|
|
1740
|
+
key: "2"
|
|
1741
|
+
}
|
|
1742
|
+
}]
|
|
1743
|
+
}
|
|
1744
|
+
},
|
|
1745
|
+
importPath: "@plasmicpkgs/antd",
|
|
1746
|
+
importName: "Tabs"
|
|
1747
|
+
};
|
|
1748
|
+
function registerTabs(loader, customTabsMeta) {
|
|
1749
|
+
var doRegisterComponent = function doRegisterComponent() {
|
|
1750
|
+
return loader ? loader.registerComponent.apply(loader, arguments) : registerComponent.apply(void 0, arguments);
|
|
1751
|
+
};
|
|
1752
|
+
|
|
1753
|
+
doRegisterComponent(Tabs, customTabsMeta != null ? customTabsMeta : tabsMeta);
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1467
1756
|
function registerAll(loader) {
|
|
1468
1757
|
registerButton(loader);
|
|
1469
1758
|
registerSlider(loader);
|
|
@@ -1488,10 +1777,13 @@ function registerAll(loader) {
|
|
|
1488
1777
|
registerInputSearch(loader);
|
|
1489
1778
|
registerInputPassword(loader);
|
|
1490
1779
|
registerInputGroup(loader);
|
|
1780
|
+
registerTabPane(loader);
|
|
1781
|
+
registerTabs(loader);
|
|
1491
1782
|
}
|
|
1492
1783
|
|
|
1493
1784
|
exports.Dropdown = Dropdown;
|
|
1494
1785
|
exports.Slider = Slider;
|
|
1786
|
+
exports.Tabs = Tabs;
|
|
1495
1787
|
exports.buttonMeta = buttonMeta;
|
|
1496
1788
|
exports.carouselMeta = carouselMeta;
|
|
1497
1789
|
exports.checkboxGroupMeta = checkboxGroupMeta;
|
|
@@ -1535,8 +1827,12 @@ exports.registerSelect = registerSelect;
|
|
|
1535
1827
|
exports.registerSlider = registerSlider;
|
|
1536
1828
|
exports.registerSubMenu = registerSubMenu;
|
|
1537
1829
|
exports.registerSwitch = registerSwitch;
|
|
1830
|
+
exports.registerTabPane = registerTabPane;
|
|
1831
|
+
exports.registerTabs = registerTabs;
|
|
1538
1832
|
exports.selectMeta = selectMeta;
|
|
1539
1833
|
exports.sliderMeta = sliderMeta;
|
|
1540
1834
|
exports.subMenuMeta = subMenuMeta;
|
|
1541
1835
|
exports.switchMeta = switchMeta;
|
|
1836
|
+
exports.tabPaneMeta = tabPaneMeta;
|
|
1837
|
+
exports.tabsMeta = tabsMeta;
|
|
1542
1838
|
//# sourceMappingURL=antd.cjs.development.js.map
|