vueless 0.0.579 → 0.0.580
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/composables/useUI.ts +46 -60
- package/constants.js +3 -0
- package/package.json +1 -1
- package/types.ts +39 -48
- package/ui.button/UButton.vue +2 -3
- package/ui.button/types.ts +2 -2
- package/ui.button-link/ULink.vue +23 -24
- package/ui.button-link/storybook/stories.ts +2 -2
- package/ui.button-link/types.ts +7 -6
- package/ui.button-toggle/UToggle.vue +15 -16
- package/ui.button-toggle/storybook/stories.ts +2 -2
- package/ui.button-toggle/types.ts +6 -4
- package/ui.button-toggle-item/UToggleItem.vue +29 -20
- package/ui.button-toggle-item/storybook/stories.ts +2 -2
- package/ui.button-toggle-item/types.ts +5 -4
- package/ui.container-accordion/UAccordion.vue +22 -17
- package/ui.container-accordion/storybook/stories.ts +2 -2
- package/ui.container-accordion/types.ts +5 -4
- package/ui.container-card/UCard.vue +12 -5
- package/ui.container-card/storybook/stories.ts +2 -2
- package/ui.container-card/types.ts +4 -3
- package/ui.container-col/UCol.vue +11 -12
- package/ui.container-col/storybook/stories.ts +2 -2
- package/ui.container-col/types.ts +5 -3
- package/ui.container-divider/UDivider.vue +13 -13
- package/ui.container-divider/storybook/stories.ts +2 -2
- package/ui.container-divider/types.ts +5 -3
- package/ui.container-group/UGroup.vue +10 -8
- package/ui.container-group/storybook/stories.ts +2 -2
- package/ui.container-group/types.ts +5 -3
- package/ui.container-groups/UGroups.vue +10 -7
- package/ui.container-groups/storybook/stories.ts +2 -2
- package/ui.container-groups/types.ts +5 -3
- package/ui.container-modal/UModal.vue +43 -43
- package/ui.container-modal/storybook/stories.ts +2 -3
- package/ui.container-modal/types.ts +5 -3
- package/ui.container-modal-confirm/UModalConfirm.vue +14 -17
- package/ui.container-modal-confirm/storybook/stories.ts +8 -6
- package/ui.container-modal-confirm/types.ts +5 -3
- package/ui.container-page/UPage.vue +32 -31
- package/ui.container-page/storybook/stories.ts +2 -2
- package/ui.container-page/types.ts +4 -3
- package/ui.container-row/URow.vue +10 -13
- package/ui.container-row/storybook/stories.ts +2 -2
- package/ui.container-row/types.ts +5 -3
- package/ui.data-list/UDataList.vue +40 -51
- package/ui.data-list/storybook/stories.ts +2 -2
- package/ui.data-list/types.ts +4 -4
- package/ui.data-table/UTable.vue +61 -60
- package/ui.data-table/types.ts +4 -3
- package/ui.dropdown-badge/UDropdownBadge.vue +21 -25
- package/ui.dropdown-badge/storybook/stories.ts +3 -3
- package/ui.dropdown-badge/types.ts +4 -3
- package/ui.dropdown-button/UDropdownButton.vue +20 -23
- package/ui.dropdown-button/storybook/stories.ts +3 -3
- package/ui.dropdown-button/types.ts +4 -3
- package/ui.dropdown-link/UDropdownLink.vue +20 -23
- package/ui.dropdown-link/storybook/stories.ts +3 -3
- package/ui.dropdown-link/types.ts +4 -3
- package/ui.dropdown-list/UDropdownList.vue +28 -32
- package/ui.dropdown-list/storybook/stories.ts +4 -4
- package/ui.dropdown-list/types.ts +4 -4
- package/ui.form-calendar/UCalendar.vue +36 -34
- package/ui.form-calendar/UCalendarDayView.vue +28 -23
- package/ui.form-calendar/UCalendarMonthView.vue +24 -19
- package/ui.form-calendar/UCalendarYearView.vue +24 -19
- package/ui.form-calendar/config.ts +2 -2
- package/ui.form-calendar/storybook/stories.ts +2 -2
- package/ui.form-calendar/types.ts +8 -7
- package/ui.form-checkbox/UCheckbox.vue +23 -21
- package/ui.form-checkbox/storybook/stories.ts +2 -2
- package/ui.form-checkbox/types.ts +7 -5
- package/ui.form-checkbox-group/UCheckboxGroup.vue +17 -14
- package/ui.form-checkbox-group/storybook/stories.ts +2 -2
- package/ui.form-checkbox-group/types.ts +6 -6
- package/ui.form-checkbox-multi-state/UCheckboxMultiState.vue +33 -14
- package/ui.form-checkbox-multi-state/storybook/stories.ts +2 -2
- package/ui.form-checkbox-multi-state/types.ts +4 -4
- package/ui.form-color-picker/UColorPicker.vue +23 -21
- package/ui.form-color-picker/storybook/stories.ts +2 -2
- package/ui.form-color-picker/types.ts +5 -5
- package/ui.form-date-picker/UDatePicker.vue +42 -27
- package/ui.form-date-picker/config.ts +5 -5
- package/ui.form-date-picker/types.ts +5 -2
- package/ui.form-date-picker-range/UDatePickerRange.vue +80 -53
- package/ui.form-date-picker-range/types.ts +7 -4
- package/ui.form-input/UInput.vue +32 -28
- package/ui.form-input/storybook/stories.ts +2 -2
- package/ui.form-input/types.ts +5 -3
- package/ui.form-input-file/UInputFile.vue +37 -32
- package/ui.form-input-file/storybook/stories.ts +2 -2
- package/ui.form-input-file/types.ts +6 -4
- package/ui.form-input-money/UInputMoney.vue +13 -18
- package/ui.form-input-money/storybook/stories.ts +2 -2
- package/ui.form-input-money/types.ts +5 -3
- package/ui.form-input-number/UInputNumber.vue +23 -24
- package/ui.form-input-number/types.ts +4 -2
- package/ui.form-input-rating/UInputRating.vue +24 -19
- package/ui.form-input-rating/storybook/stories.ts +2 -2
- package/ui.form-input-rating/types.ts +5 -3
- package/ui.form-input-search/UInputSearch.vue +22 -20
- package/ui.form-input-search/storybook/stories.ts +2 -2
- package/ui.form-input-search/types.ts +5 -3
- package/ui.form-label/ULabel.vue +19 -11
- package/ui.form-label/config.ts +0 -1
- package/ui.form-label/storybook/stories.ts +2 -2
- package/ui.form-label/types.ts +10 -8
- package/ui.form-radio/URadio.vue +22 -12
- package/ui.form-radio/storybook/stories.ts +2 -2
- package/ui.form-radio/types.ts +5 -5
- package/ui.form-radio-group/URadioGroup.vue +16 -12
- package/ui.form-radio-group/storybook/stories.ts +2 -2
- package/ui.form-radio-group/types.ts +7 -7
- package/ui.form-select/USelect.vue +53 -39
- package/ui.form-switch/USwitch.vue +30 -23
- package/ui.form-switch/storybook/stories.ts +2 -2
- package/ui.form-switch/types.ts +5 -3
- package/ui.form-textarea/UTextarea.vue +19 -15
- package/ui.form-textarea/storybook/stories.ts +2 -2
- package/ui.form-textarea/types.ts +5 -3
- package/ui.image-avatar/UAvatar.vue +12 -11
- package/ui.image-avatar/types.ts +4 -2
- package/ui.image-icon/UIcon.vue +31 -18
- package/ui.image-icon/storybook/stories.ts +2 -2
- package/ui.image-icon/types.ts +12 -5
- package/ui.loader/ULoader.vue +11 -9
- package/ui.loader/storybook/stories.ts +2 -2
- package/ui.loader/types.ts +10 -3
- package/ui.loader-overlay/ULoaderOverlay.vue +11 -7
- package/ui.loader-overlay/storybook/stories.ts +2 -2
- package/ui.loader-overlay/types.ts +4 -3
- package/ui.loader-progress/ULoaderProgress.vue +14 -10
- package/ui.loader-progress/storybook/stories.ts +2 -2
- package/ui.loader-progress/types.ts +4 -3
- package/ui.navigation-pagination/UPagination.vue +34 -33
- package/ui.navigation-pagination/storybook/stories.ts +2 -2
- package/ui.navigation-pagination/types.ts +4 -3
- package/ui.navigation-progress/StepperProgress.vue +25 -12
- package/ui.navigation-progress/UProgress.vue +12 -12
- package/ui.navigation-progress/types.ts +4 -3
- package/ui.navigation-tab/UTab.vue +18 -9
- package/ui.navigation-tab/storybook/stories.ts +2 -2
- package/ui.navigation-tab/types.ts +4 -3
- package/ui.navigation-tabs/UTabs.vue +13 -8
- package/ui.navigation-tabs/storybook/stories.ts +2 -2
- package/ui.navigation-tabs/types.ts +5 -5
- package/ui.other-dot/UDot.vue +10 -8
- package/ui.other-dot/storybook/stories.ts +2 -2
- package/ui.other-dot/types.ts +4 -3
- package/ui.text-alert/UAlert.vue +24 -27
- package/ui.text-alert/storybook/stories.ts +2 -2
- package/ui.text-alert/types.ts +4 -3
- package/ui.text-badge/UBadge.vue +25 -13
- package/ui.text-badge/storybook/stories.ts +2 -2
- package/ui.text-badge/types.ts +4 -3
- package/ui.text-block/UText.vue +10 -9
- package/ui.text-block/storybook/stories.ts +2 -2
- package/ui.text-block/types.ts +4 -3
- package/ui.text-empty/UEmpty.vue +22 -19
- package/ui.text-empty/storybook/stories.ts +2 -2
- package/ui.text-empty/types.ts +4 -3
- package/ui.text-file/UFile.vue +23 -20
- package/ui.text-file/storybook/stories.ts +2 -2
- package/ui.text-file/types.ts +4 -3
- package/ui.text-files/UFiles.vue +16 -10
- package/ui.text-files/storybook/stories.ts +2 -2
- package/ui.text-files/types.ts +4 -3
- package/ui.text-header/UHeader.vue +11 -11
- package/ui.text-header/storybook/stories.ts +2 -2
- package/ui.text-header/types.ts +4 -3
- package/ui.text-money/UMoney.vue +20 -27
- package/ui.text-money/storybook/stories.ts +2 -2
- package/ui.text-money/types.ts +4 -3
- package/ui.text-notify/UNotify.vue +58 -41
- package/ui.text-notify/config.ts +3 -3
- package/ui.text-notify/constants.ts +18 -20
- package/ui.text-notify/storybook/stories.ts +2 -2
- package/ui.text-notify/types.ts +10 -5
- package/ui.text-notify/utilNotify.ts +17 -11
- package/utils/helper.ts +5 -5
- package/utils/storybook.ts +11 -1
- package/utils/ui.ts +19 -9
- package/web-types.json +521 -368
- package/ui.button-link/useAttrs.ts +0 -20
- package/ui.button-toggle/useAttrs.ts +0 -12
- package/ui.button-toggle-item/useAttrs.ts +0 -29
- package/ui.container-accordion/useAttrs.ts +0 -26
- package/ui.container-card/useAttrs.ts +0 -12
- package/ui.container-col/useAttrs.ts +0 -12
- package/ui.container-divider/useAttrs.ts +0 -17
- package/ui.container-group/useAttrs.ts +0 -12
- package/ui.container-groups/useAttrs.ts +0 -12
- package/ui.container-modal/useAttrs.ts +0 -12
- package/ui.container-modal-confirm/useAttrs.ts +0 -12
- package/ui.container-page/useAttrs.ts +0 -12
- package/ui.container-row/useAttrs.ts +0 -12
- package/ui.data-list/useAttrs.ts +0 -12
- package/ui.data-table/useAttrs.ts +0 -31
- package/ui.dropdown-badge/useAttrs.ts +0 -26
- package/ui.dropdown-button/useAttrs.ts +0 -26
- package/ui.dropdown-link/useAttrs.ts +0 -26
- package/ui.dropdown-list/useAttrs.ts +0 -12
- package/ui.form-calendar/useAttrs.ts +0 -12
- package/ui.form-checkbox/useAttrs.ts +0 -29
- package/ui.form-checkbox-group/useAttrs.ts +0 -12
- package/ui.form-checkbox-multi-state/useAttrs.ts +0 -37
- package/ui.form-color-picker/useAttrs.ts +0 -15
- package/ui.form-date-picker/useAttrs.ts +0 -43
- package/ui.form-date-picker-range/useAttrs.ts +0 -53
- package/ui.form-input/useAttrs.ts +0 -31
- package/ui.form-input-file/useAttrs.ts +0 -21
- package/ui.form-input-money/useAttrs.ts +0 -15
- package/ui.form-input-number/useAttrs.ts +0 -15
- package/ui.form-input-rating/useAttrs.ts +0 -14
- package/ui.form-input-search/useAttrs.ts +0 -15
- package/ui.form-label/useAttrs.ts +0 -20
- package/ui.form-radio/useAttrs.ts +0 -29
- package/ui.form-radio-group/useAttrs.ts +0 -12
- package/ui.form-select/useAttrs.js +0 -19
- package/ui.form-switch/useAttrs.ts +0 -28
- package/ui.form-textarea/useAttrs.ts +0 -21
- package/ui.image-avatar/useAttrs.ts +0 -12
- package/ui.image-icon/useAttrs.ts +0 -12
- package/ui.loader/useAttrs.ts +0 -12
- package/ui.loader-overlay/useAttrs.ts +0 -12
- package/ui.loader-progress/useAttrs.ts +0 -12
- package/ui.navigation-pagination/useAttrs.ts +0 -12
- package/ui.navigation-progress/useAttrs.ts +0 -17
- package/ui.navigation-tab/useAttrs.ts +0 -28
- package/ui.navigation-tabs/useAttrs.ts +0 -12
- package/ui.other-dot/useAttrs.ts +0 -12
- package/ui.text-alert/useAttrs.ts +0 -12
- package/ui.text-badge/useAttrs.ts +0 -21
- package/ui.text-block/useAttrs.ts +0 -12
- package/ui.text-empty/useAttrs.ts +0 -12
- package/ui.text-file/useAttrs.ts +0 -12
- package/ui.text-files/useAttrs.ts +0 -12
- package/ui.text-header/useAttrs.ts +0 -12
- package/ui.text-money/useAttrs.ts +0 -12
- package/ui.text-notify/useAttrs.ts +0 -12
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "vueless",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.580",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -43,9 +43,12 @@
|
|
|
43
43
|
"name": "config",
|
|
44
44
|
"required": false,
|
|
45
45
|
"description": "Component config object.",
|
|
46
|
+
"enum": [
|
|
47
|
+
"Config"
|
|
48
|
+
],
|
|
46
49
|
"value": {
|
|
47
50
|
"kind": "expression",
|
|
48
|
-
"type": "
|
|
51
|
+
"type": "ComponentConfig"
|
|
49
52
|
}
|
|
50
53
|
},
|
|
51
54
|
{
|
|
@@ -114,9 +117,12 @@
|
|
|
114
117
|
"name": "config",
|
|
115
118
|
"required": false,
|
|
116
119
|
"description": "Component config object.",
|
|
120
|
+
"enum": [
|
|
121
|
+
"Config"
|
|
122
|
+
],
|
|
117
123
|
"value": {
|
|
118
124
|
"kind": "expression",
|
|
119
|
-
"type": "
|
|
125
|
+
"type": "ComponentConfig"
|
|
120
126
|
}
|
|
121
127
|
},
|
|
122
128
|
{
|
|
@@ -126,8 +132,7 @@
|
|
|
126
132
|
"value": {
|
|
127
133
|
"kind": "expression",
|
|
128
134
|
"type": "string"
|
|
129
|
-
}
|
|
130
|
-
"default": "\"\""
|
|
135
|
+
}
|
|
131
136
|
}
|
|
132
137
|
],
|
|
133
138
|
"events": [
|
|
@@ -296,11 +301,13 @@
|
|
|
296
301
|
"name": "config",
|
|
297
302
|
"required": false,
|
|
298
303
|
"description": "Component config object.",
|
|
304
|
+
"enum": [
|
|
305
|
+
"Config"
|
|
306
|
+
],
|
|
299
307
|
"value": {
|
|
300
308
|
"kind": "expression",
|
|
301
|
-
"type": "
|
|
302
|
-
}
|
|
303
|
-
"default": "() => ({})"
|
|
309
|
+
"type": "ComponentConfig"
|
|
310
|
+
}
|
|
304
311
|
},
|
|
305
312
|
{
|
|
306
313
|
"name": "dataTest",
|
|
@@ -309,8 +316,7 @@
|
|
|
309
316
|
"value": {
|
|
310
317
|
"kind": "expression",
|
|
311
318
|
"type": "string"
|
|
312
|
-
}
|
|
313
|
-
"default": "\"\""
|
|
319
|
+
}
|
|
314
320
|
}
|
|
315
321
|
],
|
|
316
322
|
"events": [
|
|
@@ -406,7 +412,8 @@
|
|
|
406
412
|
"value": {
|
|
407
413
|
"kind": "expression",
|
|
408
414
|
"type": "string"
|
|
409
|
-
}
|
|
415
|
+
},
|
|
416
|
+
"default": "\"\""
|
|
410
417
|
},
|
|
411
418
|
{
|
|
412
419
|
"name": "placeholderIcon",
|
|
@@ -504,9 +511,12 @@
|
|
|
504
511
|
"name": "config",
|
|
505
512
|
"required": false,
|
|
506
513
|
"description": "Component config object.",
|
|
514
|
+
"enum": [
|
|
515
|
+
"Config"
|
|
516
|
+
],
|
|
507
517
|
"value": {
|
|
508
518
|
"kind": "expression",
|
|
509
|
-
"type": "
|
|
519
|
+
"type": "ComponentConfig"
|
|
510
520
|
}
|
|
511
521
|
},
|
|
512
522
|
{
|
|
@@ -516,8 +526,7 @@
|
|
|
516
526
|
"value": {
|
|
517
527
|
"kind": "expression",
|
|
518
528
|
"type": "string"
|
|
519
|
-
}
|
|
520
|
-
"default": "\"\""
|
|
529
|
+
}
|
|
521
530
|
}
|
|
522
531
|
],
|
|
523
532
|
"events": [
|
|
@@ -563,7 +572,8 @@
|
|
|
563
572
|
"value": {
|
|
564
573
|
"kind": "expression",
|
|
565
574
|
"type": "string"
|
|
566
|
-
}
|
|
575
|
+
},
|
|
576
|
+
"default": "\"\""
|
|
567
577
|
},
|
|
568
578
|
{
|
|
569
579
|
"name": "variant",
|
|
@@ -689,9 +699,12 @@
|
|
|
689
699
|
"name": "config",
|
|
690
700
|
"required": false,
|
|
691
701
|
"description": "Component config object.",
|
|
702
|
+
"enum": [
|
|
703
|
+
"Config"
|
|
704
|
+
],
|
|
692
705
|
"value": {
|
|
693
706
|
"kind": "expression",
|
|
694
|
-
"type": "
|
|
707
|
+
"type": "ComponentConfig"
|
|
695
708
|
}
|
|
696
709
|
},
|
|
697
710
|
{
|
|
@@ -701,8 +714,7 @@
|
|
|
701
714
|
"value": {
|
|
702
715
|
"kind": "expression",
|
|
703
716
|
"type": "string"
|
|
704
|
-
}
|
|
705
|
-
"default": "\"\""
|
|
717
|
+
}
|
|
706
718
|
}
|
|
707
719
|
],
|
|
708
720
|
"events": [
|
|
@@ -879,7 +891,8 @@
|
|
|
879
891
|
"value": {
|
|
880
892
|
"kind": "expression",
|
|
881
893
|
"type": "string"
|
|
882
|
-
}
|
|
894
|
+
},
|
|
895
|
+
"default": "\"\""
|
|
883
896
|
},
|
|
884
897
|
{
|
|
885
898
|
"name": "tag",
|
|
@@ -1015,9 +1028,12 @@
|
|
|
1015
1028
|
"name": "config",
|
|
1016
1029
|
"required": false,
|
|
1017
1030
|
"description": "Component config object.",
|
|
1031
|
+
"enum": [
|
|
1032
|
+
"Config"
|
|
1033
|
+
],
|
|
1018
1034
|
"value": {
|
|
1019
1035
|
"kind": "expression",
|
|
1020
|
-
"type": "
|
|
1036
|
+
"type": "ComponentConfig"
|
|
1021
1037
|
}
|
|
1022
1038
|
},
|
|
1023
1039
|
{
|
|
@@ -1120,7 +1136,8 @@
|
|
|
1120
1136
|
"value": {
|
|
1121
1137
|
"kind": "expression",
|
|
1122
1138
|
"type": "TModelValue"
|
|
1123
|
-
}
|
|
1139
|
+
},
|
|
1140
|
+
"default": "undefined"
|
|
1124
1141
|
},
|
|
1125
1142
|
{
|
|
1126
1143
|
"name": "view",
|
|
@@ -1220,7 +1237,8 @@
|
|
|
1220
1237
|
"value": {
|
|
1221
1238
|
"kind": "expression",
|
|
1222
1239
|
"type": "union"
|
|
1223
|
-
}
|
|
1240
|
+
},
|
|
1241
|
+
"default": "undefined"
|
|
1224
1242
|
},
|
|
1225
1243
|
{
|
|
1226
1244
|
"name": "maxDate",
|
|
@@ -1233,17 +1251,20 @@
|
|
|
1233
1251
|
"value": {
|
|
1234
1252
|
"kind": "expression",
|
|
1235
1253
|
"type": "union"
|
|
1236
|
-
}
|
|
1254
|
+
},
|
|
1255
|
+
"default": "undefined"
|
|
1237
1256
|
},
|
|
1238
1257
|
{
|
|
1239
1258
|
"name": "config",
|
|
1240
1259
|
"required": false,
|
|
1241
1260
|
"description": "Component config object.",
|
|
1261
|
+
"enum": [
|
|
1262
|
+
"Config"
|
|
1263
|
+
],
|
|
1242
1264
|
"value": {
|
|
1243
1265
|
"kind": "expression",
|
|
1244
|
-
"type": "
|
|
1245
|
-
}
|
|
1246
|
-
"default": "() => ({})"
|
|
1266
|
+
"type": "ComponentConfig"
|
|
1267
|
+
}
|
|
1247
1268
|
},
|
|
1248
1269
|
{
|
|
1249
1270
|
"name": "dataTest",
|
|
@@ -1252,8 +1273,7 @@
|
|
|
1252
1273
|
"value": {
|
|
1253
1274
|
"kind": "expression",
|
|
1254
1275
|
"type": "string"
|
|
1255
|
-
}
|
|
1256
|
-
"default": "\"\""
|
|
1276
|
+
}
|
|
1257
1277
|
}
|
|
1258
1278
|
],
|
|
1259
1279
|
"events": [
|
|
@@ -1265,7 +1285,7 @@
|
|
|
1265
1285
|
"type": [
|
|
1266
1286
|
"object"
|
|
1267
1287
|
],
|
|
1268
|
-
"name": "
|
|
1288
|
+
"name": "modelValue"
|
|
1269
1289
|
}
|
|
1270
1290
|
]
|
|
1271
1291
|
},
|
|
@@ -1392,14 +1412,10 @@
|
|
|
1392
1412
|
},
|
|
1393
1413
|
{
|
|
1394
1414
|
"name": "dateFormat",
|
|
1395
|
-
"required":
|
|
1396
|
-
"enum": [
|
|
1397
|
-
"string",
|
|
1398
|
-
"undefined"
|
|
1399
|
-
],
|
|
1415
|
+
"required": false,
|
|
1400
1416
|
"value": {
|
|
1401
1417
|
"kind": "expression",
|
|
1402
|
-
"type": "
|
|
1418
|
+
"type": "string"
|
|
1403
1419
|
}
|
|
1404
1420
|
},
|
|
1405
1421
|
{
|
|
@@ -1413,11 +1429,10 @@
|
|
|
1413
1429
|
},
|
|
1414
1430
|
{
|
|
1415
1431
|
"name": "maxDate",
|
|
1416
|
-
"required":
|
|
1432
|
+
"required": false,
|
|
1417
1433
|
"enum": [
|
|
1418
1434
|
"Date",
|
|
1419
|
-
"string"
|
|
1420
|
-
"undefined"
|
|
1435
|
+
"string"
|
|
1421
1436
|
],
|
|
1422
1437
|
"value": {
|
|
1423
1438
|
"kind": "expression",
|
|
@@ -1426,11 +1441,10 @@
|
|
|
1426
1441
|
},
|
|
1427
1442
|
{
|
|
1428
1443
|
"name": "minDate",
|
|
1429
|
-
"required":
|
|
1444
|
+
"required": false,
|
|
1430
1445
|
"enum": [
|
|
1431
1446
|
"Date",
|
|
1432
|
-
"string"
|
|
1433
|
-
"undefined"
|
|
1447
|
+
"string"
|
|
1434
1448
|
],
|
|
1435
1449
|
"value": {
|
|
1436
1450
|
"kind": "expression",
|
|
@@ -1518,14 +1532,10 @@
|
|
|
1518
1532
|
},
|
|
1519
1533
|
{
|
|
1520
1534
|
"name": "dateFormat",
|
|
1521
|
-
"required":
|
|
1522
|
-
"enum": [
|
|
1523
|
-
"string",
|
|
1524
|
-
"undefined"
|
|
1525
|
-
],
|
|
1535
|
+
"required": false,
|
|
1526
1536
|
"value": {
|
|
1527
1537
|
"kind": "expression",
|
|
1528
|
-
"type": "
|
|
1538
|
+
"type": "string"
|
|
1529
1539
|
}
|
|
1530
1540
|
},
|
|
1531
1541
|
{
|
|
@@ -1539,11 +1549,10 @@
|
|
|
1539
1549
|
},
|
|
1540
1550
|
{
|
|
1541
1551
|
"name": "maxDate",
|
|
1542
|
-
"required":
|
|
1552
|
+
"required": false,
|
|
1543
1553
|
"enum": [
|
|
1544
1554
|
"Date",
|
|
1545
|
-
"string"
|
|
1546
|
-
"undefined"
|
|
1555
|
+
"string"
|
|
1547
1556
|
],
|
|
1548
1557
|
"value": {
|
|
1549
1558
|
"kind": "expression",
|
|
@@ -1552,11 +1561,10 @@
|
|
|
1552
1561
|
},
|
|
1553
1562
|
{
|
|
1554
1563
|
"name": "minDate",
|
|
1555
|
-
"required":
|
|
1564
|
+
"required": false,
|
|
1556
1565
|
"enum": [
|
|
1557
1566
|
"Date",
|
|
1558
|
-
"string"
|
|
1559
|
-
"undefined"
|
|
1567
|
+
"string"
|
|
1560
1568
|
],
|
|
1561
1569
|
"value": {
|
|
1562
1570
|
"kind": "expression",
|
|
@@ -1644,14 +1652,10 @@
|
|
|
1644
1652
|
},
|
|
1645
1653
|
{
|
|
1646
1654
|
"name": "dateFormat",
|
|
1647
|
-
"required":
|
|
1648
|
-
"enum": [
|
|
1649
|
-
"string",
|
|
1650
|
-
"undefined"
|
|
1651
|
-
],
|
|
1655
|
+
"required": false,
|
|
1652
1656
|
"value": {
|
|
1653
1657
|
"kind": "expression",
|
|
1654
|
-
"type": "
|
|
1658
|
+
"type": "string"
|
|
1655
1659
|
}
|
|
1656
1660
|
},
|
|
1657
1661
|
{
|
|
@@ -1665,11 +1669,10 @@
|
|
|
1665
1669
|
},
|
|
1666
1670
|
{
|
|
1667
1671
|
"name": "maxDate",
|
|
1668
|
-
"required":
|
|
1672
|
+
"required": false,
|
|
1669
1673
|
"enum": [
|
|
1670
1674
|
"Date",
|
|
1671
|
-
"string"
|
|
1672
|
-
"undefined"
|
|
1675
|
+
"string"
|
|
1673
1676
|
],
|
|
1674
1677
|
"value": {
|
|
1675
1678
|
"kind": "expression",
|
|
@@ -1678,11 +1681,10 @@
|
|
|
1678
1681
|
},
|
|
1679
1682
|
{
|
|
1680
1683
|
"name": "minDate",
|
|
1681
|
-
"required":
|
|
1684
|
+
"required": false,
|
|
1682
1685
|
"enum": [
|
|
1683
1686
|
"Date",
|
|
1684
|
-
"string"
|
|
1685
|
-
"undefined"
|
|
1687
|
+
"string"
|
|
1686
1688
|
],
|
|
1687
1689
|
"value": {
|
|
1688
1690
|
"kind": "expression",
|
|
@@ -1734,9 +1736,12 @@
|
|
|
1734
1736
|
"name": "config",
|
|
1735
1737
|
"required": false,
|
|
1736
1738
|
"description": "Component config object.",
|
|
1739
|
+
"enum": [
|
|
1740
|
+
"Config"
|
|
1741
|
+
],
|
|
1737
1742
|
"value": {
|
|
1738
1743
|
"kind": "expression",
|
|
1739
|
-
"type": "
|
|
1744
|
+
"type": "ComponentConfig"
|
|
1740
1745
|
}
|
|
1741
1746
|
},
|
|
1742
1747
|
{
|
|
@@ -1746,8 +1751,7 @@
|
|
|
1746
1751
|
"value": {
|
|
1747
1752
|
"kind": "expression",
|
|
1748
1753
|
"type": "string"
|
|
1749
|
-
}
|
|
1750
|
-
"default": "\"\""
|
|
1754
|
+
}
|
|
1751
1755
|
}
|
|
1752
1756
|
],
|
|
1753
1757
|
"slots": [
|
|
@@ -1803,7 +1807,8 @@
|
|
|
1803
1807
|
"value": {
|
|
1804
1808
|
"kind": "expression",
|
|
1805
1809
|
"type": "union"
|
|
1806
|
-
}
|
|
1810
|
+
},
|
|
1811
|
+
"default": "false"
|
|
1807
1812
|
},
|
|
1808
1813
|
{
|
|
1809
1814
|
"name": "value",
|
|
@@ -1863,8 +1868,7 @@
|
|
|
1863
1868
|
"value": {
|
|
1864
1869
|
"kind": "expression",
|
|
1865
1870
|
"type": "string"
|
|
1866
|
-
}
|
|
1867
|
-
"default": "\"\""
|
|
1871
|
+
}
|
|
1868
1872
|
},
|
|
1869
1873
|
{
|
|
1870
1874
|
"name": "label",
|
|
@@ -1873,7 +1877,8 @@
|
|
|
1873
1877
|
"value": {
|
|
1874
1878
|
"kind": "expression",
|
|
1875
1879
|
"type": "string"
|
|
1876
|
-
}
|
|
1880
|
+
},
|
|
1881
|
+
"default": "\"\""
|
|
1877
1882
|
},
|
|
1878
1883
|
{
|
|
1879
1884
|
"name": "description",
|
|
@@ -1987,9 +1992,12 @@
|
|
|
1987
1992
|
"name": "config",
|
|
1988
1993
|
"required": false,
|
|
1989
1994
|
"description": "Component config object.",
|
|
1995
|
+
"enum": [
|
|
1996
|
+
"Config"
|
|
1997
|
+
],
|
|
1990
1998
|
"value": {
|
|
1991
1999
|
"kind": "expression",
|
|
1992
|
-
"type": "
|
|
2000
|
+
"type": "ComponentConfig"
|
|
1993
2001
|
}
|
|
1994
2002
|
},
|
|
1995
2003
|
{
|
|
@@ -1999,8 +2007,7 @@
|
|
|
1999
2007
|
"value": {
|
|
2000
2008
|
"kind": "expression",
|
|
2001
2009
|
"type": "string"
|
|
2002
|
-
}
|
|
2003
|
-
"default": "\"\""
|
|
2010
|
+
}
|
|
2004
2011
|
}
|
|
2005
2012
|
],
|
|
2006
2013
|
"events": [
|
|
@@ -2054,19 +2061,21 @@
|
|
|
2054
2061
|
"value": {
|
|
2055
2062
|
"kind": "expression",
|
|
2056
2063
|
"type": "Array"
|
|
2057
|
-
}
|
|
2064
|
+
},
|
|
2065
|
+
"default": "() => []"
|
|
2058
2066
|
},
|
|
2059
2067
|
{
|
|
2060
2068
|
"name": "options",
|
|
2061
2069
|
"required": false,
|
|
2062
2070
|
"description": "Checkbox group options.",
|
|
2063
2071
|
"enum": [
|
|
2064
|
-
"
|
|
2072
|
+
"UCheckboxOption"
|
|
2065
2073
|
],
|
|
2066
2074
|
"value": {
|
|
2067
2075
|
"kind": "expression",
|
|
2068
2076
|
"type": "Array"
|
|
2069
|
-
}
|
|
2077
|
+
},
|
|
2078
|
+
"default": "() => []"
|
|
2070
2079
|
},
|
|
2071
2080
|
{
|
|
2072
2081
|
"name": "label",
|
|
@@ -2075,7 +2084,8 @@
|
|
|
2075
2084
|
"value": {
|
|
2076
2085
|
"kind": "expression",
|
|
2077
2086
|
"type": "string"
|
|
2078
|
-
}
|
|
2087
|
+
},
|
|
2088
|
+
"default": "\"\""
|
|
2079
2089
|
},
|
|
2080
2090
|
{
|
|
2081
2091
|
"name": "description",
|
|
@@ -2149,8 +2159,7 @@
|
|
|
2149
2159
|
"value": {
|
|
2150
2160
|
"kind": "expression",
|
|
2151
2161
|
"type": "string"
|
|
2152
|
-
}
|
|
2153
|
-
"default": "\"\""
|
|
2162
|
+
}
|
|
2154
2163
|
},
|
|
2155
2164
|
{
|
|
2156
2165
|
"name": "disabled",
|
|
@@ -2166,9 +2175,12 @@
|
|
|
2166
2175
|
"name": "config",
|
|
2167
2176
|
"required": false,
|
|
2168
2177
|
"description": "Component config object.",
|
|
2178
|
+
"enum": [
|
|
2179
|
+
"Config"
|
|
2180
|
+
],
|
|
2169
2181
|
"value": {
|
|
2170
2182
|
"kind": "expression",
|
|
2171
|
-
"type": "
|
|
2183
|
+
"type": "ComponentConfig"
|
|
2172
2184
|
}
|
|
2173
2185
|
},
|
|
2174
2186
|
{
|
|
@@ -2178,8 +2190,7 @@
|
|
|
2178
2190
|
"value": {
|
|
2179
2191
|
"kind": "expression",
|
|
2180
2192
|
"type": "string"
|
|
2181
|
-
}
|
|
2182
|
-
"default": "\"\""
|
|
2193
|
+
}
|
|
2183
2194
|
}
|
|
2184
2195
|
],
|
|
2185
2196
|
"events": [
|
|
@@ -2223,7 +2234,8 @@
|
|
|
2223
2234
|
"value": {
|
|
2224
2235
|
"kind": "expression",
|
|
2225
2236
|
"type": "union"
|
|
2226
|
-
}
|
|
2237
|
+
},
|
|
2238
|
+
"default": "false"
|
|
2227
2239
|
},
|
|
2228
2240
|
{
|
|
2229
2241
|
"name": "options",
|
|
@@ -2235,7 +2247,8 @@
|
|
|
2235
2247
|
"value": {
|
|
2236
2248
|
"kind": "expression",
|
|
2237
2249
|
"type": "Array"
|
|
2238
|
-
}
|
|
2250
|
+
},
|
|
2251
|
+
"default": "() => []"
|
|
2239
2252
|
},
|
|
2240
2253
|
{
|
|
2241
2254
|
"name": "name",
|
|
@@ -2321,9 +2334,12 @@
|
|
|
2321
2334
|
"name": "config",
|
|
2322
2335
|
"required": false,
|
|
2323
2336
|
"description": "Component config object.",
|
|
2337
|
+
"enum": [
|
|
2338
|
+
"Config"
|
|
2339
|
+
],
|
|
2324
2340
|
"value": {
|
|
2325
2341
|
"kind": "expression",
|
|
2326
|
-
"type": "
|
|
2342
|
+
"type": "ComponentConfig"
|
|
2327
2343
|
}
|
|
2328
2344
|
},
|
|
2329
2345
|
{
|
|
@@ -2333,8 +2349,7 @@
|
|
|
2333
2349
|
"value": {
|
|
2334
2350
|
"kind": "expression",
|
|
2335
2351
|
"type": "string"
|
|
2336
|
-
}
|
|
2337
|
-
"default": "\"\""
|
|
2352
|
+
}
|
|
2338
2353
|
}
|
|
2339
2354
|
],
|
|
2340
2355
|
"events": [
|
|
@@ -2462,9 +2477,12 @@
|
|
|
2462
2477
|
"name": "config",
|
|
2463
2478
|
"required": false,
|
|
2464
2479
|
"description": "Component config object.",
|
|
2480
|
+
"enum": [
|
|
2481
|
+
"Config"
|
|
2482
|
+
],
|
|
2465
2483
|
"value": {
|
|
2466
2484
|
"kind": "expression",
|
|
2467
|
-
"type": "
|
|
2485
|
+
"type": "ComponentConfig"
|
|
2468
2486
|
}
|
|
2469
2487
|
},
|
|
2470
2488
|
{
|
|
@@ -2474,8 +2492,7 @@
|
|
|
2474
2492
|
"value": {
|
|
2475
2493
|
"kind": "expression",
|
|
2476
2494
|
"type": "string"
|
|
2477
|
-
}
|
|
2478
|
-
"default": "\"\""
|
|
2495
|
+
}
|
|
2479
2496
|
}
|
|
2480
2497
|
],
|
|
2481
2498
|
"slots": [
|
|
@@ -2500,7 +2517,8 @@
|
|
|
2500
2517
|
"value": {
|
|
2501
2518
|
"kind": "expression",
|
|
2502
2519
|
"type": "string"
|
|
2503
|
-
}
|
|
2520
|
+
},
|
|
2521
|
+
"default": "\"\""
|
|
2504
2522
|
},
|
|
2505
2523
|
{
|
|
2506
2524
|
"name": "name",
|
|
@@ -2519,7 +2537,8 @@
|
|
|
2519
2537
|
"value": {
|
|
2520
2538
|
"kind": "expression",
|
|
2521
2539
|
"type": "string"
|
|
2522
|
-
}
|
|
2540
|
+
},
|
|
2541
|
+
"default": "\"\""
|
|
2523
2542
|
},
|
|
2524
2543
|
{
|
|
2525
2544
|
"name": "description",
|
|
@@ -2558,12 +2577,9 @@
|
|
|
2558
2577
|
"name": "colorOptions",
|
|
2559
2578
|
"required": false,
|
|
2560
2579
|
"description": "Color picker color list.",
|
|
2561
|
-
"enum": [
|
|
2562
|
-
"BrandColors"
|
|
2563
|
-
],
|
|
2564
2580
|
"value": {
|
|
2565
2581
|
"kind": "expression",
|
|
2566
|
-
"type": "
|
|
2582
|
+
"type": "BrandColors"
|
|
2567
2583
|
},
|
|
2568
2584
|
"default": "red,orange,amber,yellow,lime,green,emerald,teal,cyan,sky,blue,indigo,violet,purple,fuchsia,pink,rose"
|
|
2569
2585
|
},
|
|
@@ -2590,11 +2606,13 @@
|
|
|
2590
2606
|
"name": "config",
|
|
2591
2607
|
"required": false,
|
|
2592
2608
|
"description": "Component config object.",
|
|
2609
|
+
"enum": [
|
|
2610
|
+
"Config"
|
|
2611
|
+
],
|
|
2593
2612
|
"value": {
|
|
2594
2613
|
"kind": "expression",
|
|
2595
|
-
"type": "
|
|
2596
|
-
}
|
|
2597
|
-
"default": "() => ({})"
|
|
2614
|
+
"type": "ComponentConfig"
|
|
2615
|
+
}
|
|
2598
2616
|
},
|
|
2599
2617
|
{
|
|
2600
2618
|
"name": "dataTest",
|
|
@@ -2603,8 +2621,7 @@
|
|
|
2603
2621
|
"value": {
|
|
2604
2622
|
"kind": "expression",
|
|
2605
2623
|
"type": "string"
|
|
2606
|
-
}
|
|
2607
|
-
"default": "\"\""
|
|
2624
|
+
}
|
|
2608
2625
|
}
|
|
2609
2626
|
],
|
|
2610
2627
|
"events": [
|
|
@@ -2640,7 +2657,8 @@
|
|
|
2640
2657
|
"value": {
|
|
2641
2658
|
"kind": "expression",
|
|
2642
2659
|
"type": "Array"
|
|
2643
|
-
}
|
|
2660
|
+
},
|
|
2661
|
+
"default": "() => []"
|
|
2644
2662
|
},
|
|
2645
2663
|
{
|
|
2646
2664
|
"name": "group",
|
|
@@ -2731,18 +2749,19 @@
|
|
|
2731
2749
|
"value": {
|
|
2732
2750
|
"kind": "expression",
|
|
2733
2751
|
"type": "boolean"
|
|
2734
|
-
}
|
|
2735
|
-
"default": "false"
|
|
2752
|
+
}
|
|
2736
2753
|
},
|
|
2737
2754
|
{
|
|
2738
2755
|
"name": "config",
|
|
2739
2756
|
"required": false,
|
|
2740
2757
|
"description": "Component config object.",
|
|
2758
|
+
"enum": [
|
|
2759
|
+
"Config"
|
|
2760
|
+
],
|
|
2741
2761
|
"value": {
|
|
2742
2762
|
"kind": "expression",
|
|
2743
|
-
"type": "
|
|
2744
|
-
}
|
|
2745
|
-
"default": "() => ({})"
|
|
2763
|
+
"type": "ComponentConfig"
|
|
2764
|
+
}
|
|
2746
2765
|
},
|
|
2747
2766
|
{
|
|
2748
2767
|
"name": "dataTest",
|
|
@@ -2751,8 +2770,7 @@
|
|
|
2751
2770
|
"value": {
|
|
2752
2771
|
"kind": "expression",
|
|
2753
2772
|
"type": "string"
|
|
2754
|
-
}
|
|
2755
|
-
"default": "\"\""
|
|
2773
|
+
}
|
|
2756
2774
|
}
|
|
2757
2775
|
],
|
|
2758
2776
|
"events": [
|
|
@@ -2921,7 +2939,8 @@
|
|
|
2921
2939
|
"value": {
|
|
2922
2940
|
"kind": "expression",
|
|
2923
2941
|
"type": "TModelValue"
|
|
2924
|
-
}
|
|
2942
|
+
},
|
|
2943
|
+
"default": "undefined"
|
|
2925
2944
|
},
|
|
2926
2945
|
{
|
|
2927
2946
|
"name": "label",
|
|
@@ -2930,7 +2949,8 @@
|
|
|
2930
2949
|
"value": {
|
|
2931
2950
|
"kind": "expression",
|
|
2932
2951
|
"type": "string"
|
|
2933
|
-
}
|
|
2952
|
+
},
|
|
2953
|
+
"default": "\"\""
|
|
2934
2954
|
},
|
|
2935
2955
|
{
|
|
2936
2956
|
"name": "labelAlign",
|
|
@@ -2956,7 +2976,8 @@
|
|
|
2956
2976
|
"value": {
|
|
2957
2977
|
"kind": "expression",
|
|
2958
2978
|
"type": "string"
|
|
2959
|
-
}
|
|
2979
|
+
},
|
|
2980
|
+
"default": "\"\""
|
|
2960
2981
|
},
|
|
2961
2982
|
{
|
|
2962
2983
|
"name": "description",
|
|
@@ -3137,11 +3158,13 @@
|
|
|
3137
3158
|
"name": "config",
|
|
3138
3159
|
"required": false,
|
|
3139
3160
|
"description": "Component config object.",
|
|
3161
|
+
"enum": [
|
|
3162
|
+
"Config"
|
|
3163
|
+
],
|
|
3140
3164
|
"value": {
|
|
3141
3165
|
"kind": "expression",
|
|
3142
|
-
"type": "
|
|
3143
|
-
}
|
|
3144
|
-
"default": "() => ({})"
|
|
3166
|
+
"type": "ComponentConfig"
|
|
3167
|
+
}
|
|
3145
3168
|
},
|
|
3146
3169
|
{
|
|
3147
3170
|
"name": "dataTest",
|
|
@@ -3150,8 +3173,7 @@
|
|
|
3150
3173
|
"value": {
|
|
3151
3174
|
"kind": "expression",
|
|
3152
3175
|
"type": "string"
|
|
3153
|
-
}
|
|
3154
|
-
"default": "\"\""
|
|
3176
|
+
}
|
|
3155
3177
|
}
|
|
3156
3178
|
],
|
|
3157
3179
|
"events": [
|
|
@@ -3264,7 +3286,8 @@
|
|
|
3264
3286
|
"value": {
|
|
3265
3287
|
"kind": "expression",
|
|
3266
3288
|
"type": "TModelValue"
|
|
3267
|
-
}
|
|
3289
|
+
},
|
|
3290
|
+
"default": "undefined"
|
|
3268
3291
|
},
|
|
3269
3292
|
{
|
|
3270
3293
|
"name": "customRangeButton",
|
|
@@ -3274,7 +3297,7 @@
|
|
|
3274
3297
|
"kind": "expression",
|
|
3275
3298
|
"type": "CustomRangeButton"
|
|
3276
3299
|
},
|
|
3277
|
-
"default": "() => ({
|
|
3300
|
+
"default": "() => ({ range: { from: null, to: null } })"
|
|
3278
3301
|
},
|
|
3279
3302
|
{
|
|
3280
3303
|
"name": "openDirectionX",
|
|
@@ -3415,7 +3438,8 @@
|
|
|
3415
3438
|
"value": {
|
|
3416
3439
|
"kind": "expression",
|
|
3417
3440
|
"type": "string"
|
|
3418
|
-
}
|
|
3441
|
+
},
|
|
3442
|
+
"default": "\"\""
|
|
3419
3443
|
},
|
|
3420
3444
|
{
|
|
3421
3445
|
"name": "labelAlign",
|
|
@@ -3441,7 +3465,8 @@
|
|
|
3441
3465
|
"value": {
|
|
3442
3466
|
"kind": "expression",
|
|
3443
3467
|
"type": "string"
|
|
3444
|
-
}
|
|
3468
|
+
},
|
|
3469
|
+
"default": "\"\""
|
|
3445
3470
|
},
|
|
3446
3471
|
{
|
|
3447
3472
|
"name": "description",
|
|
@@ -3478,18 +3503,19 @@
|
|
|
3478
3503
|
"value": {
|
|
3479
3504
|
"kind": "expression",
|
|
3480
3505
|
"type": "string"
|
|
3481
|
-
}
|
|
3482
|
-
"default": "\"\""
|
|
3506
|
+
}
|
|
3483
3507
|
},
|
|
3484
3508
|
{
|
|
3485
3509
|
"name": "config",
|
|
3486
3510
|
"required": false,
|
|
3487
3511
|
"description": "Component config object.",
|
|
3512
|
+
"enum": [
|
|
3513
|
+
"Config"
|
|
3514
|
+
],
|
|
3488
3515
|
"value": {
|
|
3489
3516
|
"kind": "expression",
|
|
3490
|
-
"type": "
|
|
3491
|
-
}
|
|
3492
|
-
"default": "() => ({})"
|
|
3517
|
+
"type": "ComponentConfig"
|
|
3518
|
+
}
|
|
3493
3519
|
},
|
|
3494
3520
|
{
|
|
3495
3521
|
"name": "dataTest",
|
|
@@ -3498,8 +3524,7 @@
|
|
|
3498
3524
|
"value": {
|
|
3499
3525
|
"kind": "expression",
|
|
3500
3526
|
"type": "string"
|
|
3501
|
-
}
|
|
3502
|
-
"default": "\"\""
|
|
3527
|
+
}
|
|
3503
3528
|
}
|
|
3504
3529
|
],
|
|
3505
3530
|
"events": [
|
|
@@ -3751,7 +3776,8 @@
|
|
|
3751
3776
|
"value": {
|
|
3752
3777
|
"kind": "expression",
|
|
3753
3778
|
"type": "string"
|
|
3754
|
-
}
|
|
3779
|
+
},
|
|
3780
|
+
"default": "\"\""
|
|
3755
3781
|
},
|
|
3756
3782
|
{
|
|
3757
3783
|
"name": "size",
|
|
@@ -3845,9 +3871,12 @@
|
|
|
3845
3871
|
"name": "config",
|
|
3846
3872
|
"required": false,
|
|
3847
3873
|
"description": "Component config object.",
|
|
3874
|
+
"enum": [
|
|
3875
|
+
"Config"
|
|
3876
|
+
],
|
|
3848
3877
|
"value": {
|
|
3849
3878
|
"kind": "expression",
|
|
3850
|
-
"type": "
|
|
3879
|
+
"type": "ComponentConfig"
|
|
3851
3880
|
}
|
|
3852
3881
|
},
|
|
3853
3882
|
{
|
|
@@ -3857,8 +3886,7 @@
|
|
|
3857
3886
|
"value": {
|
|
3858
3887
|
"kind": "expression",
|
|
3859
3888
|
"type": "string"
|
|
3860
|
-
}
|
|
3861
|
-
"default": "\"\""
|
|
3889
|
+
}
|
|
3862
3890
|
}
|
|
3863
3891
|
],
|
|
3864
3892
|
"source": {
|
|
@@ -3924,9 +3952,12 @@
|
|
|
3924
3952
|
"name": "config",
|
|
3925
3953
|
"required": false,
|
|
3926
3954
|
"description": "Component config object.",
|
|
3955
|
+
"enum": [
|
|
3956
|
+
"Config"
|
|
3957
|
+
],
|
|
3927
3958
|
"value": {
|
|
3928
3959
|
"kind": "expression",
|
|
3929
|
-
"type": "
|
|
3960
|
+
"type": "ComponentConfig"
|
|
3930
3961
|
}
|
|
3931
3962
|
},
|
|
3932
3963
|
{
|
|
@@ -3936,8 +3967,7 @@
|
|
|
3936
3967
|
"value": {
|
|
3937
3968
|
"kind": "expression",
|
|
3938
3969
|
"type": "string"
|
|
3939
|
-
}
|
|
3940
|
-
"default": "\"\""
|
|
3970
|
+
}
|
|
3941
3971
|
}
|
|
3942
3972
|
],
|
|
3943
3973
|
"source": {
|
|
@@ -3956,7 +3986,8 @@
|
|
|
3956
3986
|
"value": {
|
|
3957
3987
|
"kind": "expression",
|
|
3958
3988
|
"type": "string"
|
|
3959
|
-
}
|
|
3989
|
+
},
|
|
3990
|
+
"default": "\"\""
|
|
3960
3991
|
},
|
|
3961
3992
|
{
|
|
3962
3993
|
"name": "options",
|
|
@@ -4099,18 +4130,19 @@
|
|
|
4099
4130
|
"value": {
|
|
4100
4131
|
"kind": "expression",
|
|
4101
4132
|
"type": "string"
|
|
4102
|
-
}
|
|
4103
|
-
"default": "\"\""
|
|
4133
|
+
}
|
|
4104
4134
|
},
|
|
4105
4135
|
{
|
|
4106
4136
|
"name": "config",
|
|
4107
4137
|
"required": false,
|
|
4108
4138
|
"description": "Component config object.",
|
|
4139
|
+
"enum": [
|
|
4140
|
+
"Config"
|
|
4141
|
+
],
|
|
4109
4142
|
"value": {
|
|
4110
4143
|
"kind": "expression",
|
|
4111
|
-
"type": "
|
|
4112
|
-
}
|
|
4113
|
-
"default": "() => ({})"
|
|
4144
|
+
"type": "ComponentConfig"
|
|
4145
|
+
}
|
|
4114
4146
|
},
|
|
4115
4147
|
{
|
|
4116
4148
|
"name": "dataTest",
|
|
@@ -4119,8 +4151,7 @@
|
|
|
4119
4151
|
"value": {
|
|
4120
4152
|
"kind": "expression",
|
|
4121
4153
|
"type": "string"
|
|
4122
|
-
}
|
|
4123
|
-
"default": "\"\""
|
|
4154
|
+
}
|
|
4124
4155
|
}
|
|
4125
4156
|
],
|
|
4126
4157
|
"events": [
|
|
@@ -4191,7 +4222,8 @@
|
|
|
4191
4222
|
"value": {
|
|
4192
4223
|
"kind": "expression",
|
|
4193
4224
|
"type": "string"
|
|
4194
|
-
}
|
|
4225
|
+
},
|
|
4226
|
+
"default": "\"\""
|
|
4195
4227
|
},
|
|
4196
4228
|
{
|
|
4197
4229
|
"name": "options",
|
|
@@ -4367,18 +4399,19 @@
|
|
|
4367
4399
|
"value": {
|
|
4368
4400
|
"kind": "expression",
|
|
4369
4401
|
"type": "string"
|
|
4370
|
-
}
|
|
4371
|
-
"default": "\"\""
|
|
4402
|
+
}
|
|
4372
4403
|
},
|
|
4373
4404
|
{
|
|
4374
4405
|
"name": "config",
|
|
4375
4406
|
"required": false,
|
|
4376
4407
|
"description": "Component config object.",
|
|
4408
|
+
"enum": [
|
|
4409
|
+
"Config"
|
|
4410
|
+
],
|
|
4377
4411
|
"value": {
|
|
4378
4412
|
"kind": "expression",
|
|
4379
|
-
"type": "
|
|
4380
|
-
}
|
|
4381
|
-
"default": "() => ({})"
|
|
4413
|
+
"type": "ComponentConfig"
|
|
4414
|
+
}
|
|
4382
4415
|
},
|
|
4383
4416
|
{
|
|
4384
4417
|
"name": "dataTest",
|
|
@@ -4387,8 +4420,7 @@
|
|
|
4387
4420
|
"value": {
|
|
4388
4421
|
"kind": "expression",
|
|
4389
4422
|
"type": "string"
|
|
4390
|
-
}
|
|
4391
|
-
"default": "\"\""
|
|
4423
|
+
}
|
|
4392
4424
|
}
|
|
4393
4425
|
],
|
|
4394
4426
|
"events": [
|
|
@@ -4460,7 +4492,8 @@
|
|
|
4460
4492
|
"value": {
|
|
4461
4493
|
"kind": "expression",
|
|
4462
4494
|
"type": "string"
|
|
4463
|
-
}
|
|
4495
|
+
},
|
|
4496
|
+
"default": "\"\""
|
|
4464
4497
|
},
|
|
4465
4498
|
{
|
|
4466
4499
|
"name": "options",
|
|
@@ -4617,18 +4650,19 @@
|
|
|
4617
4650
|
"value": {
|
|
4618
4651
|
"kind": "expression",
|
|
4619
4652
|
"type": "string"
|
|
4620
|
-
}
|
|
4621
|
-
"default": "\"\""
|
|
4653
|
+
}
|
|
4622
4654
|
},
|
|
4623
4655
|
{
|
|
4624
4656
|
"name": "config",
|
|
4625
4657
|
"required": false,
|
|
4626
4658
|
"description": "Component config object.",
|
|
4659
|
+
"enum": [
|
|
4660
|
+
"Config"
|
|
4661
|
+
],
|
|
4627
4662
|
"value": {
|
|
4628
4663
|
"kind": "expression",
|
|
4629
|
-
"type": "
|
|
4630
|
-
}
|
|
4631
|
-
"default": "() => ({})"
|
|
4664
|
+
"type": "ComponentConfig"
|
|
4665
|
+
}
|
|
4632
4666
|
},
|
|
4633
4667
|
{
|
|
4634
4668
|
"name": "dataTest",
|
|
@@ -4637,8 +4671,7 @@
|
|
|
4637
4671
|
"value": {
|
|
4638
4672
|
"kind": "expression",
|
|
4639
4673
|
"type": "string"
|
|
4640
|
-
}
|
|
4641
|
-
"default": "\"\""
|
|
4674
|
+
}
|
|
4642
4675
|
}
|
|
4643
4676
|
],
|
|
4644
4677
|
"events": [
|
|
@@ -4791,18 +4824,19 @@
|
|
|
4791
4824
|
"value": {
|
|
4792
4825
|
"kind": "expression",
|
|
4793
4826
|
"type": "string"
|
|
4794
|
-
}
|
|
4795
|
-
"default": "\"\""
|
|
4827
|
+
}
|
|
4796
4828
|
},
|
|
4797
4829
|
{
|
|
4798
4830
|
"name": "config",
|
|
4799
4831
|
"required": false,
|
|
4800
4832
|
"description": "Component config object.",
|
|
4833
|
+
"enum": [
|
|
4834
|
+
"Config"
|
|
4835
|
+
],
|
|
4801
4836
|
"value": {
|
|
4802
4837
|
"kind": "expression",
|
|
4803
|
-
"type": "
|
|
4804
|
-
}
|
|
4805
|
-
"default": "() => ({})"
|
|
4838
|
+
"type": "ComponentConfig"
|
|
4839
|
+
}
|
|
4806
4840
|
},
|
|
4807
4841
|
{
|
|
4808
4842
|
"name": "dataTest",
|
|
@@ -4811,8 +4845,7 @@
|
|
|
4811
4845
|
"value": {
|
|
4812
4846
|
"kind": "expression",
|
|
4813
4847
|
"type": "string"
|
|
4814
|
-
}
|
|
4815
|
-
"default": "\"\""
|
|
4848
|
+
}
|
|
4816
4849
|
}
|
|
4817
4850
|
],
|
|
4818
4851
|
"events": [
|
|
@@ -4987,11 +5020,13 @@
|
|
|
4987
5020
|
"name": "config",
|
|
4988
5021
|
"required": false,
|
|
4989
5022
|
"description": "Component config object.",
|
|
5023
|
+
"enum": [
|
|
5024
|
+
"Config"
|
|
5025
|
+
],
|
|
4990
5026
|
"value": {
|
|
4991
5027
|
"kind": "expression",
|
|
4992
|
-
"type": "
|
|
4993
|
-
}
|
|
4994
|
-
"default": "() => ({})"
|
|
5028
|
+
"type": "ComponentConfig"
|
|
5029
|
+
}
|
|
4995
5030
|
},
|
|
4996
5031
|
{
|
|
4997
5032
|
"name": "dataTest",
|
|
@@ -5000,8 +5035,7 @@
|
|
|
5000
5035
|
"value": {
|
|
5001
5036
|
"kind": "expression",
|
|
5002
5037
|
"type": "string"
|
|
5003
|
-
}
|
|
5004
|
-
"default": "\"\""
|
|
5038
|
+
}
|
|
5005
5039
|
}
|
|
5006
5040
|
],
|
|
5007
5041
|
"slots": [
|
|
@@ -5052,7 +5086,8 @@
|
|
|
5052
5086
|
"value": {
|
|
5053
5087
|
"kind": "expression",
|
|
5054
5088
|
"type": "string"
|
|
5055
|
-
}
|
|
5089
|
+
},
|
|
5090
|
+
"default": "\"\""
|
|
5056
5091
|
},
|
|
5057
5092
|
{
|
|
5058
5093
|
"name": "size",
|
|
@@ -5091,11 +5126,13 @@
|
|
|
5091
5126
|
"name": "config",
|
|
5092
5127
|
"required": false,
|
|
5093
5128
|
"description": "Component config object.",
|
|
5129
|
+
"enum": [
|
|
5130
|
+
"Config"
|
|
5131
|
+
],
|
|
5094
5132
|
"value": {
|
|
5095
5133
|
"kind": "expression",
|
|
5096
|
-
"type": "
|
|
5097
|
-
}
|
|
5098
|
-
"default": "() => ({})"
|
|
5134
|
+
"type": "ComponentConfig"
|
|
5135
|
+
}
|
|
5099
5136
|
},
|
|
5100
5137
|
{
|
|
5101
5138
|
"name": "dataTest",
|
|
@@ -5104,8 +5141,7 @@
|
|
|
5104
5141
|
"value": {
|
|
5105
5142
|
"kind": "expression",
|
|
5106
5143
|
"type": "string"
|
|
5107
|
-
}
|
|
5108
|
-
"default": "\"\""
|
|
5144
|
+
}
|
|
5109
5145
|
}
|
|
5110
5146
|
],
|
|
5111
5147
|
"events": [
|
|
@@ -5180,7 +5216,8 @@
|
|
|
5180
5216
|
"value": {
|
|
5181
5217
|
"kind": "expression",
|
|
5182
5218
|
"type": "string"
|
|
5183
|
-
}
|
|
5219
|
+
},
|
|
5220
|
+
"default": "\"\""
|
|
5184
5221
|
},
|
|
5185
5222
|
{
|
|
5186
5223
|
"name": "labelAlign",
|
|
@@ -5233,9 +5270,12 @@
|
|
|
5233
5270
|
"name": "config",
|
|
5234
5271
|
"required": false,
|
|
5235
5272
|
"description": "Component config object.",
|
|
5273
|
+
"enum": [
|
|
5274
|
+
"Config"
|
|
5275
|
+
],
|
|
5236
5276
|
"value": {
|
|
5237
5277
|
"kind": "expression",
|
|
5238
|
-
"type": "
|
|
5278
|
+
"type": "ComponentConfig"
|
|
5239
5279
|
}
|
|
5240
5280
|
},
|
|
5241
5281
|
{
|
|
@@ -5245,8 +5285,7 @@
|
|
|
5245
5285
|
"value": {
|
|
5246
5286
|
"kind": "expression",
|
|
5247
5287
|
"type": "string"
|
|
5248
|
-
}
|
|
5249
|
-
"default": "\"\""
|
|
5288
|
+
}
|
|
5250
5289
|
}
|
|
5251
5290
|
],
|
|
5252
5291
|
"events": [
|
|
@@ -5341,9 +5380,12 @@
|
|
|
5341
5380
|
"name": "config",
|
|
5342
5381
|
"required": false,
|
|
5343
5382
|
"description": "Component config object.",
|
|
5383
|
+
"enum": [
|
|
5384
|
+
"Config"
|
|
5385
|
+
],
|
|
5344
5386
|
"value": {
|
|
5345
5387
|
"kind": "expression",
|
|
5346
|
-
"type": "
|
|
5388
|
+
"type": "ComponentConfig"
|
|
5347
5389
|
}
|
|
5348
5390
|
},
|
|
5349
5391
|
{
|
|
@@ -5353,8 +5395,7 @@
|
|
|
5353
5395
|
"value": {
|
|
5354
5396
|
"kind": "expression",
|
|
5355
5397
|
"type": "string"
|
|
5356
|
-
}
|
|
5357
|
-
"default": "\"\""
|
|
5398
|
+
}
|
|
5358
5399
|
}
|
|
5359
5400
|
],
|
|
5360
5401
|
"slots": [
|
|
@@ -5410,9 +5451,12 @@
|
|
|
5410
5451
|
"name": "config",
|
|
5411
5452
|
"required": false,
|
|
5412
5453
|
"description": "Component config object.",
|
|
5454
|
+
"enum": [
|
|
5455
|
+
"Config"
|
|
5456
|
+
],
|
|
5413
5457
|
"value": {
|
|
5414
5458
|
"kind": "expression",
|
|
5415
|
-
"type": "
|
|
5459
|
+
"type": "ComponentConfig"
|
|
5416
5460
|
}
|
|
5417
5461
|
},
|
|
5418
5462
|
{
|
|
@@ -5422,8 +5466,7 @@
|
|
|
5422
5466
|
"value": {
|
|
5423
5467
|
"kind": "expression",
|
|
5424
5468
|
"type": "string"
|
|
5425
|
-
}
|
|
5426
|
-
"default": "\"\""
|
|
5469
|
+
}
|
|
5427
5470
|
}
|
|
5428
5471
|
],
|
|
5429
5472
|
"slots": [
|
|
@@ -5448,7 +5491,8 @@
|
|
|
5448
5491
|
"value": {
|
|
5449
5492
|
"kind": "expression",
|
|
5450
5493
|
"type": "string"
|
|
5451
|
-
}
|
|
5494
|
+
},
|
|
5495
|
+
"default": "\"\""
|
|
5452
5496
|
},
|
|
5453
5497
|
{
|
|
5454
5498
|
"name": "size",
|
|
@@ -5535,9 +5579,12 @@
|
|
|
5535
5579
|
"name": "config",
|
|
5536
5580
|
"required": false,
|
|
5537
5581
|
"description": "Component config object.",
|
|
5582
|
+
"enum": [
|
|
5583
|
+
"Config"
|
|
5584
|
+
],
|
|
5538
5585
|
"value": {
|
|
5539
5586
|
"kind": "expression",
|
|
5540
|
-
"type": "
|
|
5587
|
+
"type": "ComponentConfig"
|
|
5541
5588
|
}
|
|
5542
5589
|
},
|
|
5543
5590
|
{
|
|
@@ -5547,8 +5594,7 @@
|
|
|
5547
5594
|
"value": {
|
|
5548
5595
|
"kind": "expression",
|
|
5549
5596
|
"type": "string"
|
|
5550
|
-
}
|
|
5551
|
-
"default": "\"\""
|
|
5597
|
+
}
|
|
5552
5598
|
}
|
|
5553
5599
|
],
|
|
5554
5600
|
"slots": [
|
|
@@ -5578,9 +5624,12 @@
|
|
|
5578
5624
|
"name": "src",
|
|
5579
5625
|
"required": false,
|
|
5580
5626
|
"description": "Icon source (svg as a vue component).",
|
|
5627
|
+
"enum": [
|
|
5628
|
+
"SVGAttributes"
|
|
5629
|
+
],
|
|
5581
5630
|
"value": {
|
|
5582
5631
|
"kind": "expression",
|
|
5583
|
-
"type": "
|
|
5632
|
+
"type": "DefineComponent"
|
|
5584
5633
|
}
|
|
5585
5634
|
},
|
|
5586
5635
|
{
|
|
@@ -5681,8 +5730,9 @@
|
|
|
5681
5730
|
"description": "Tooltip settings.\n[See all settings here](https://kabbouchi.github.io/vue-tippy/4.0/features/placement.html).",
|
|
5682
5731
|
"value": {
|
|
5683
5732
|
"kind": "expression",
|
|
5684
|
-
"type": "
|
|
5685
|
-
}
|
|
5733
|
+
"type": "TippyProps"
|
|
5734
|
+
},
|
|
5735
|
+
"default": "() => (({}) as TippyProps)"
|
|
5686
5736
|
},
|
|
5687
5737
|
{
|
|
5688
5738
|
"name": "internal",
|
|
@@ -5697,9 +5747,12 @@
|
|
|
5697
5747
|
"name": "config",
|
|
5698
5748
|
"required": false,
|
|
5699
5749
|
"description": "Component config object.",
|
|
5750
|
+
"enum": [
|
|
5751
|
+
"Config"
|
|
5752
|
+
],
|
|
5700
5753
|
"value": {
|
|
5701
5754
|
"kind": "expression",
|
|
5702
|
-
"type": "
|
|
5755
|
+
"type": "ComponentConfig"
|
|
5703
5756
|
}
|
|
5704
5757
|
},
|
|
5705
5758
|
{
|
|
@@ -5709,8 +5762,7 @@
|
|
|
5709
5762
|
"value": {
|
|
5710
5763
|
"kind": "expression",
|
|
5711
5764
|
"type": "string"
|
|
5712
|
-
}
|
|
5713
|
-
"default": "\"\""
|
|
5765
|
+
}
|
|
5714
5766
|
}
|
|
5715
5767
|
],
|
|
5716
5768
|
"events": [
|
|
@@ -5749,7 +5801,8 @@
|
|
|
5749
5801
|
"value": {
|
|
5750
5802
|
"kind": "expression",
|
|
5751
5803
|
"type": "string"
|
|
5752
|
-
}
|
|
5804
|
+
},
|
|
5805
|
+
"default": "\"\""
|
|
5753
5806
|
},
|
|
5754
5807
|
{
|
|
5755
5808
|
"name": "labelAlign",
|
|
@@ -5775,7 +5828,8 @@
|
|
|
5775
5828
|
"value": {
|
|
5776
5829
|
"kind": "expression",
|
|
5777
5830
|
"type": "string"
|
|
5778
|
-
}
|
|
5831
|
+
},
|
|
5832
|
+
"default": "\"\""
|
|
5779
5833
|
},
|
|
5780
5834
|
{
|
|
5781
5835
|
"name": "description",
|
|
@@ -5940,11 +5994,13 @@
|
|
|
5940
5994
|
"name": "config",
|
|
5941
5995
|
"required": false,
|
|
5942
5996
|
"description": "Component config object.",
|
|
5997
|
+
"enum": [
|
|
5998
|
+
"Config"
|
|
5999
|
+
],
|
|
5943
6000
|
"value": {
|
|
5944
6001
|
"kind": "expression",
|
|
5945
|
-
"type": "
|
|
5946
|
-
}
|
|
5947
|
-
"default": "() => ({})"
|
|
6002
|
+
"type": "ComponentConfig"
|
|
6003
|
+
}
|
|
5948
6004
|
},
|
|
5949
6005
|
{
|
|
5950
6006
|
"name": "dataTest",
|
|
@@ -5953,8 +6009,7 @@
|
|
|
5953
6009
|
"value": {
|
|
5954
6010
|
"kind": "expression",
|
|
5955
6011
|
"type": "string"
|
|
5956
|
-
}
|
|
5957
|
-
"default": "\"\""
|
|
6012
|
+
}
|
|
5958
6013
|
}
|
|
5959
6014
|
],
|
|
5960
6015
|
"events": [
|
|
@@ -6088,13 +6143,13 @@
|
|
|
6088
6143
|
"required": false,
|
|
6089
6144
|
"description": "Input value.",
|
|
6090
6145
|
"enum": [
|
|
6091
|
-
"File"
|
|
6092
|
-
"Array"
|
|
6146
|
+
"File"
|
|
6093
6147
|
],
|
|
6094
6148
|
"value": {
|
|
6095
6149
|
"kind": "expression",
|
|
6096
|
-
"type": "
|
|
6097
|
-
}
|
|
6150
|
+
"type": "Array"
|
|
6151
|
+
},
|
|
6152
|
+
"default": "() => []"
|
|
6098
6153
|
},
|
|
6099
6154
|
{
|
|
6100
6155
|
"name": "label",
|
|
@@ -6103,7 +6158,8 @@
|
|
|
6103
6158
|
"value": {
|
|
6104
6159
|
"kind": "expression",
|
|
6105
6160
|
"type": "string"
|
|
6106
|
-
}
|
|
6161
|
+
},
|
|
6162
|
+
"default": "\"\""
|
|
6107
6163
|
},
|
|
6108
6164
|
{
|
|
6109
6165
|
"name": "description",
|
|
@@ -6209,11 +6265,13 @@
|
|
|
6209
6265
|
"name": "config",
|
|
6210
6266
|
"required": false,
|
|
6211
6267
|
"description": "Component config object.",
|
|
6268
|
+
"enum": [
|
|
6269
|
+
"Config"
|
|
6270
|
+
],
|
|
6212
6271
|
"value": {
|
|
6213
6272
|
"kind": "expression",
|
|
6214
|
-
"type": "
|
|
6215
|
-
}
|
|
6216
|
-
"default": "() => ({})"
|
|
6273
|
+
"type": "ComponentConfig"
|
|
6274
|
+
}
|
|
6217
6275
|
},
|
|
6218
6276
|
{
|
|
6219
6277
|
"name": "dataTest",
|
|
@@ -6222,8 +6280,7 @@
|
|
|
6222
6280
|
"value": {
|
|
6223
6281
|
"kind": "expression",
|
|
6224
6282
|
"type": "string"
|
|
6225
|
-
}
|
|
6226
|
-
"default": "\"\""
|
|
6283
|
+
}
|
|
6227
6284
|
}
|
|
6228
6285
|
],
|
|
6229
6286
|
"events": [
|
|
@@ -6305,7 +6362,8 @@
|
|
|
6305
6362
|
"value": {
|
|
6306
6363
|
"kind": "expression",
|
|
6307
6364
|
"type": "string"
|
|
6308
|
-
}
|
|
6365
|
+
},
|
|
6366
|
+
"default": "\"\""
|
|
6309
6367
|
},
|
|
6310
6368
|
{
|
|
6311
6369
|
"name": "labelAlign",
|
|
@@ -6341,7 +6399,8 @@
|
|
|
6341
6399
|
"value": {
|
|
6342
6400
|
"kind": "expression",
|
|
6343
6401
|
"type": "string"
|
|
6344
|
-
}
|
|
6402
|
+
},
|
|
6403
|
+
"default": "\"\""
|
|
6345
6404
|
},
|
|
6346
6405
|
{
|
|
6347
6406
|
"name": "description",
|
|
@@ -6487,9 +6546,12 @@
|
|
|
6487
6546
|
"name": "config",
|
|
6488
6547
|
"required": false,
|
|
6489
6548
|
"description": "Component config object.",
|
|
6549
|
+
"enum": [
|
|
6550
|
+
"Config"
|
|
6551
|
+
],
|
|
6490
6552
|
"value": {
|
|
6491
6553
|
"kind": "expression",
|
|
6492
|
-
"type": "
|
|
6554
|
+
"type": "ComponentConfig"
|
|
6493
6555
|
}
|
|
6494
6556
|
},
|
|
6495
6557
|
{
|
|
@@ -6499,8 +6561,7 @@
|
|
|
6499
6561
|
"value": {
|
|
6500
6562
|
"kind": "expression",
|
|
6501
6563
|
"type": "string"
|
|
6502
|
-
}
|
|
6503
|
-
"default": "\"\""
|
|
6564
|
+
}
|
|
6504
6565
|
}
|
|
6505
6566
|
],
|
|
6506
6567
|
"events": [
|
|
@@ -6619,7 +6680,8 @@
|
|
|
6619
6680
|
"value": {
|
|
6620
6681
|
"kind": "expression",
|
|
6621
6682
|
"type": "string"
|
|
6622
|
-
}
|
|
6683
|
+
},
|
|
6684
|
+
"default": "\"\""
|
|
6623
6685
|
},
|
|
6624
6686
|
{
|
|
6625
6687
|
"name": "labelAlign",
|
|
@@ -6684,11 +6746,13 @@
|
|
|
6684
6746
|
"name": "config",
|
|
6685
6747
|
"required": false,
|
|
6686
6748
|
"description": "Component config object.",
|
|
6749
|
+
"enum": [
|
|
6750
|
+
"Config"
|
|
6751
|
+
],
|
|
6687
6752
|
"value": {
|
|
6688
6753
|
"kind": "expression",
|
|
6689
|
-
"type": "
|
|
6690
|
-
}
|
|
6691
|
-
"default": "() => ({})"
|
|
6754
|
+
"type": "ComponentConfig"
|
|
6755
|
+
}
|
|
6692
6756
|
},
|
|
6693
6757
|
{
|
|
6694
6758
|
"name": "dataTest",
|
|
@@ -6697,8 +6761,7 @@
|
|
|
6697
6761
|
"value": {
|
|
6698
6762
|
"kind": "expression",
|
|
6699
6763
|
"type": "string"
|
|
6700
|
-
}
|
|
6701
|
-
"default": "\"\""
|
|
6764
|
+
}
|
|
6702
6765
|
}
|
|
6703
6766
|
],
|
|
6704
6767
|
"events": [
|
|
@@ -6731,8 +6794,7 @@
|
|
|
6731
6794
|
"value": {
|
|
6732
6795
|
"kind": "expression",
|
|
6733
6796
|
"type": "number"
|
|
6734
|
-
}
|
|
6735
|
-
"default": "0"
|
|
6797
|
+
}
|
|
6736
6798
|
},
|
|
6737
6799
|
{
|
|
6738
6800
|
"name": "stars",
|
|
@@ -6766,7 +6828,8 @@
|
|
|
6766
6828
|
"value": {
|
|
6767
6829
|
"kind": "expression",
|
|
6768
6830
|
"type": "string"
|
|
6769
|
-
}
|
|
6831
|
+
},
|
|
6832
|
+
"default": "\"\""
|
|
6770
6833
|
},
|
|
6771
6834
|
{
|
|
6772
6835
|
"name": "labelAlign",
|
|
@@ -6835,11 +6898,13 @@
|
|
|
6835
6898
|
"name": "config",
|
|
6836
6899
|
"required": false,
|
|
6837
6900
|
"description": "Component config object.",
|
|
6901
|
+
"enum": [
|
|
6902
|
+
"Config"
|
|
6903
|
+
],
|
|
6838
6904
|
"value": {
|
|
6839
6905
|
"kind": "expression",
|
|
6840
|
-
"type": "
|
|
6841
|
-
}
|
|
6842
|
-
"default": "() => ({})"
|
|
6906
|
+
"type": "ComponentConfig"
|
|
6907
|
+
}
|
|
6843
6908
|
},
|
|
6844
6909
|
{
|
|
6845
6910
|
"name": "dataTest",
|
|
@@ -6848,8 +6913,7 @@
|
|
|
6848
6913
|
"value": {
|
|
6849
6914
|
"kind": "expression",
|
|
6850
6915
|
"type": "string"
|
|
6851
|
-
}
|
|
6852
|
-
"default": "\"\""
|
|
6916
|
+
}
|
|
6853
6917
|
}
|
|
6854
6918
|
],
|
|
6855
6919
|
"events": [
|
|
@@ -6914,7 +6978,8 @@
|
|
|
6914
6978
|
"value": {
|
|
6915
6979
|
"kind": "expression",
|
|
6916
6980
|
"type": "string"
|
|
6917
|
-
}
|
|
6981
|
+
},
|
|
6982
|
+
"default": "\"\""
|
|
6918
6983
|
},
|
|
6919
6984
|
{
|
|
6920
6985
|
"name": "size",
|
|
@@ -6938,7 +7003,8 @@
|
|
|
6938
7003
|
"value": {
|
|
6939
7004
|
"kind": "expression",
|
|
6940
7005
|
"type": "string"
|
|
6941
|
-
}
|
|
7006
|
+
},
|
|
7007
|
+
"default": "\"\""
|
|
6942
7008
|
},
|
|
6943
7009
|
{
|
|
6944
7010
|
"name": "labelAlign",
|
|
@@ -6964,7 +7030,8 @@
|
|
|
6964
7030
|
"value": {
|
|
6965
7031
|
"kind": "expression",
|
|
6966
7032
|
"type": "string"
|
|
6967
|
-
}
|
|
7033
|
+
},
|
|
7034
|
+
"default": "\"\""
|
|
6968
7035
|
},
|
|
6969
7036
|
{
|
|
6970
7037
|
"name": "description",
|
|
@@ -7072,11 +7139,13 @@
|
|
|
7072
7139
|
"name": "config",
|
|
7073
7140
|
"required": false,
|
|
7074
7141
|
"description": "Component config object.",
|
|
7142
|
+
"enum": [
|
|
7143
|
+
"Config"
|
|
7144
|
+
],
|
|
7075
7145
|
"value": {
|
|
7076
7146
|
"kind": "expression",
|
|
7077
|
-
"type": "
|
|
7078
|
-
}
|
|
7079
|
-
"default": "() => ({})"
|
|
7147
|
+
"type": "ComponentConfig"
|
|
7148
|
+
}
|
|
7080
7149
|
},
|
|
7081
7150
|
{
|
|
7082
7151
|
"name": "dataTest",
|
|
@@ -7085,8 +7154,7 @@
|
|
|
7085
7154
|
"value": {
|
|
7086
7155
|
"kind": "expression",
|
|
7087
7156
|
"type": "string"
|
|
7088
|
-
}
|
|
7089
|
-
"default": "\"\""
|
|
7157
|
+
}
|
|
7090
7158
|
}
|
|
7091
7159
|
],
|
|
7092
7160
|
"events": [
|
|
@@ -7173,6 +7241,16 @@
|
|
|
7173
7241
|
"name": "label",
|
|
7174
7242
|
"required": false,
|
|
7175
7243
|
"description": "Label text.",
|
|
7244
|
+
"value": {
|
|
7245
|
+
"kind": "expression",
|
|
7246
|
+
"type": "string"
|
|
7247
|
+
},
|
|
7248
|
+
"default": "\"\""
|
|
7249
|
+
},
|
|
7250
|
+
{
|
|
7251
|
+
"name": "for",
|
|
7252
|
+
"required": false,
|
|
7253
|
+
"description": "Set input id for label `for` attribute.",
|
|
7176
7254
|
"value": {
|
|
7177
7255
|
"kind": "expression",
|
|
7178
7256
|
"type": "string"
|
|
@@ -7194,8 +7272,7 @@
|
|
|
7194
7272
|
"value": {
|
|
7195
7273
|
"kind": "expression",
|
|
7196
7274
|
"type": "string"
|
|
7197
|
-
}
|
|
7198
|
-
"default": "false"
|
|
7275
|
+
}
|
|
7199
7276
|
},
|
|
7200
7277
|
{
|
|
7201
7278
|
"name": "align",
|
|
@@ -7249,22 +7326,16 @@
|
|
|
7249
7326
|
},
|
|
7250
7327
|
"default": "false"
|
|
7251
7328
|
},
|
|
7252
|
-
{
|
|
7253
|
-
"name": "for",
|
|
7254
|
-
"required": false,
|
|
7255
|
-
"description": "Set input id for label `for` attribute.",
|
|
7256
|
-
"value": {
|
|
7257
|
-
"kind": "expression",
|
|
7258
|
-
"type": "string"
|
|
7259
|
-
}
|
|
7260
|
-
},
|
|
7261
7329
|
{
|
|
7262
7330
|
"name": "config",
|
|
7263
7331
|
"required": false,
|
|
7264
7332
|
"description": "Component config object.",
|
|
7333
|
+
"enum": [
|
|
7334
|
+
"Config"
|
|
7335
|
+
],
|
|
7265
7336
|
"value": {
|
|
7266
7337
|
"kind": "expression",
|
|
7267
|
-
"type": "
|
|
7338
|
+
"type": "ComponentConfig"
|
|
7268
7339
|
}
|
|
7269
7340
|
},
|
|
7270
7341
|
{
|
|
@@ -7274,8 +7345,7 @@
|
|
|
7274
7345
|
"value": {
|
|
7275
7346
|
"kind": "expression",
|
|
7276
7347
|
"type": "string"
|
|
7277
|
-
}
|
|
7278
|
-
"default": "\"\""
|
|
7348
|
+
}
|
|
7279
7349
|
}
|
|
7280
7350
|
],
|
|
7281
7351
|
"events": [
|
|
@@ -7330,7 +7400,8 @@
|
|
|
7330
7400
|
"value": {
|
|
7331
7401
|
"kind": "expression",
|
|
7332
7402
|
"type": "string"
|
|
7333
|
-
}
|
|
7403
|
+
},
|
|
7404
|
+
"default": "\"\""
|
|
7334
7405
|
},
|
|
7335
7406
|
{
|
|
7336
7407
|
"name": "href",
|
|
@@ -7348,7 +7419,8 @@
|
|
|
7348
7419
|
"value": {
|
|
7349
7420
|
"kind": "expression",
|
|
7350
7421
|
"type": "RouteLocationRaw"
|
|
7351
|
-
}
|
|
7422
|
+
},
|
|
7423
|
+
"default": "undefined"
|
|
7352
7424
|
},
|
|
7353
7425
|
{
|
|
7354
7426
|
"name": "size",
|
|
@@ -7401,7 +7473,7 @@
|
|
|
7401
7473
|
{
|
|
7402
7474
|
"name": "type",
|
|
7403
7475
|
"required": false,
|
|
7404
|
-
"description": "Link open type
|
|
7476
|
+
"description": "Link open type behavior.",
|
|
7405
7477
|
"enum": [
|
|
7406
7478
|
"phone",
|
|
7407
7479
|
"email",
|
|
@@ -7436,7 +7508,7 @@
|
|
|
7436
7508
|
{
|
|
7437
7509
|
"name": "custom",
|
|
7438
7510
|
"required": false,
|
|
7439
|
-
"description": "Whether RouterLink should not wrap its content in
|
|
7511
|
+
"description": "Whether RouterLink should not wrap its content in a tag.",
|
|
7440
7512
|
"value": {
|
|
7441
7513
|
"kind": "expression",
|
|
7442
7514
|
"type": "boolean"
|
|
@@ -7446,7 +7518,7 @@
|
|
|
7446
7518
|
{
|
|
7447
7519
|
"name": "replace",
|
|
7448
7520
|
"required": false,
|
|
7449
|
-
"description": "Whether RouterLink should not wrap its content in
|
|
7521
|
+
"description": "Whether RouterLink should not wrap its content in a tag.",
|
|
7450
7522
|
"value": {
|
|
7451
7523
|
"kind": "expression",
|
|
7452
7524
|
"type": "boolean"
|
|
@@ -7546,9 +7618,12 @@
|
|
|
7546
7618
|
"name": "config",
|
|
7547
7619
|
"required": false,
|
|
7548
7620
|
"description": "Component config object.",
|
|
7621
|
+
"enum": [
|
|
7622
|
+
"Config"
|
|
7623
|
+
],
|
|
7549
7624
|
"value": {
|
|
7550
7625
|
"kind": "expression",
|
|
7551
|
-
"type": "
|
|
7626
|
+
"type": "ComponentConfig"
|
|
7552
7627
|
}
|
|
7553
7628
|
},
|
|
7554
7629
|
{
|
|
@@ -7558,8 +7633,7 @@
|
|
|
7558
7633
|
"value": {
|
|
7559
7634
|
"kind": "expression",
|
|
7560
7635
|
"type": "string"
|
|
7561
|
-
}
|
|
7562
|
-
"default": "\"\""
|
|
7636
|
+
}
|
|
7563
7637
|
}
|
|
7564
7638
|
],
|
|
7565
7639
|
"events": [
|
|
@@ -7681,9 +7755,21 @@
|
|
|
7681
7755
|
"name": "config",
|
|
7682
7756
|
"required": false,
|
|
7683
7757
|
"description": "Component config object.",
|
|
7758
|
+
"enum": [
|
|
7759
|
+
"Config"
|
|
7760
|
+
],
|
|
7684
7761
|
"value": {
|
|
7685
7762
|
"kind": "expression",
|
|
7686
|
-
"type": "
|
|
7763
|
+
"type": "ComponentConfig"
|
|
7764
|
+
}
|
|
7765
|
+
},
|
|
7766
|
+
{
|
|
7767
|
+
"name": "dataTest",
|
|
7768
|
+
"required": false,
|
|
7769
|
+
"description": "Data-test attribute for automated testing.",
|
|
7770
|
+
"value": {
|
|
7771
|
+
"kind": "expression",
|
|
7772
|
+
"type": "string"
|
|
7687
7773
|
}
|
|
7688
7774
|
}
|
|
7689
7775
|
],
|
|
@@ -7749,9 +7835,12 @@
|
|
|
7749
7835
|
"name": "config",
|
|
7750
7836
|
"required": false,
|
|
7751
7837
|
"description": "Component config object.",
|
|
7838
|
+
"enum": [
|
|
7839
|
+
"Config"
|
|
7840
|
+
],
|
|
7752
7841
|
"value": {
|
|
7753
7842
|
"kind": "expression",
|
|
7754
|
-
"type": "
|
|
7843
|
+
"type": "ComponentConfig"
|
|
7755
7844
|
}
|
|
7756
7845
|
}
|
|
7757
7846
|
],
|
|
@@ -7814,7 +7903,8 @@
|
|
|
7814
7903
|
"value": {
|
|
7815
7904
|
"kind": "expression",
|
|
7816
7905
|
"type": "union"
|
|
7817
|
-
}
|
|
7906
|
+
},
|
|
7907
|
+
"default": "() => []"
|
|
7818
7908
|
},
|
|
7819
7909
|
{
|
|
7820
7910
|
"name": "size",
|
|
@@ -7846,9 +7936,12 @@
|
|
|
7846
7936
|
"name": "config",
|
|
7847
7937
|
"required": false,
|
|
7848
7938
|
"description": "Component config object.",
|
|
7939
|
+
"enum": [
|
|
7940
|
+
"Config"
|
|
7941
|
+
],
|
|
7849
7942
|
"value": {
|
|
7850
7943
|
"kind": "expression",
|
|
7851
|
-
"type": "
|
|
7944
|
+
"type": "ComponentConfig"
|
|
7852
7945
|
}
|
|
7853
7946
|
}
|
|
7854
7947
|
],
|
|
@@ -7868,7 +7961,8 @@
|
|
|
7868
7961
|
"value": {
|
|
7869
7962
|
"kind": "expression",
|
|
7870
7963
|
"type": "boolean"
|
|
7871
|
-
}
|
|
7964
|
+
},
|
|
7965
|
+
"default": "false"
|
|
7872
7966
|
},
|
|
7873
7967
|
{
|
|
7874
7968
|
"name": "title",
|
|
@@ -7916,7 +8010,8 @@
|
|
|
7916
8010
|
"value": {
|
|
7917
8011
|
"kind": "expression",
|
|
7918
8012
|
"type": "RouteLocationRaw"
|
|
7919
|
-
}
|
|
8013
|
+
},
|
|
8014
|
+
"default": "\"\""
|
|
7920
8015
|
},
|
|
7921
8016
|
{
|
|
7922
8017
|
"name": "backLabel",
|
|
@@ -7925,7 +8020,8 @@
|
|
|
7925
8020
|
"value": {
|
|
7926
8021
|
"kind": "expression",
|
|
7927
8022
|
"type": "string"
|
|
7928
|
-
}
|
|
8023
|
+
},
|
|
8024
|
+
"default": "\"\""
|
|
7929
8025
|
},
|
|
7930
8026
|
{
|
|
7931
8027
|
"name": "closeOnCross",
|
|
@@ -8000,11 +8096,13 @@
|
|
|
8000
8096
|
"name": "config",
|
|
8001
8097
|
"required": false,
|
|
8002
8098
|
"description": "Component config object.",
|
|
8099
|
+
"enum": [
|
|
8100
|
+
"Config"
|
|
8101
|
+
],
|
|
8003
8102
|
"value": {
|
|
8004
8103
|
"kind": "expression",
|
|
8005
|
-
"type": "
|
|
8006
|
-
}
|
|
8007
|
-
"default": "() => ({})"
|
|
8104
|
+
"type": "ComponentConfig"
|
|
8105
|
+
}
|
|
8008
8106
|
},
|
|
8009
8107
|
{
|
|
8010
8108
|
"name": "dataTest",
|
|
@@ -8013,8 +8111,7 @@
|
|
|
8013
8111
|
"value": {
|
|
8014
8112
|
"kind": "expression",
|
|
8015
8113
|
"type": "string"
|
|
8016
|
-
}
|
|
8017
|
-
"default": "\"\""
|
|
8114
|
+
}
|
|
8018
8115
|
}
|
|
8019
8116
|
],
|
|
8020
8117
|
"events": [
|
|
@@ -8092,7 +8189,8 @@
|
|
|
8092
8189
|
"value": {
|
|
8093
8190
|
"kind": "expression",
|
|
8094
8191
|
"type": "boolean"
|
|
8095
|
-
}
|
|
8192
|
+
},
|
|
8193
|
+
"default": "false"
|
|
8096
8194
|
},
|
|
8097
8195
|
{
|
|
8098
8196
|
"name": "title",
|
|
@@ -8119,7 +8217,8 @@
|
|
|
8119
8217
|
"value": {
|
|
8120
8218
|
"kind": "expression",
|
|
8121
8219
|
"type": "string"
|
|
8122
|
-
}
|
|
8220
|
+
},
|
|
8221
|
+
"default": "\"\""
|
|
8123
8222
|
},
|
|
8124
8223
|
{
|
|
8125
8224
|
"name": "confirmColor",
|
|
@@ -8258,9 +8357,12 @@
|
|
|
8258
8357
|
"name": "config",
|
|
8259
8358
|
"required": false,
|
|
8260
8359
|
"description": "Component config object.",
|
|
8360
|
+
"enum": [
|
|
8361
|
+
"Config"
|
|
8362
|
+
],
|
|
8261
8363
|
"value": {
|
|
8262
8364
|
"kind": "expression",
|
|
8263
|
-
"type": "
|
|
8365
|
+
"type": "ComponentConfig"
|
|
8264
8366
|
}
|
|
8265
8367
|
},
|
|
8266
8368
|
{
|
|
@@ -8270,8 +8372,7 @@
|
|
|
8270
8372
|
"value": {
|
|
8271
8373
|
"kind": "expression",
|
|
8272
8374
|
"type": "string"
|
|
8273
|
-
}
|
|
8274
|
-
"default": "\"\""
|
|
8375
|
+
}
|
|
8275
8376
|
}
|
|
8276
8377
|
],
|
|
8277
8378
|
"events": [
|
|
@@ -8524,9 +8625,12 @@
|
|
|
8524
8625
|
"name": "config",
|
|
8525
8626
|
"required": false,
|
|
8526
8627
|
"description": "Component config object.",
|
|
8628
|
+
"enum": [
|
|
8629
|
+
"Config"
|
|
8630
|
+
],
|
|
8527
8631
|
"value": {
|
|
8528
8632
|
"kind": "expression",
|
|
8529
|
-
"type": "
|
|
8633
|
+
"type": "ComponentConfig"
|
|
8530
8634
|
}
|
|
8531
8635
|
},
|
|
8532
8636
|
{
|
|
@@ -8536,8 +8640,7 @@
|
|
|
8536
8640
|
"value": {
|
|
8537
8641
|
"kind": "expression",
|
|
8538
8642
|
"type": "string"
|
|
8539
|
-
}
|
|
8540
|
-
"default": "\"\""
|
|
8643
|
+
}
|
|
8541
8644
|
}
|
|
8542
8645
|
],
|
|
8543
8646
|
"slots": [
|
|
@@ -8602,19 +8705,22 @@
|
|
|
8602
8705
|
"name": "config",
|
|
8603
8706
|
"required": false,
|
|
8604
8707
|
"description": "Component config object.",
|
|
8708
|
+
"enum": [
|
|
8709
|
+
"Config"
|
|
8710
|
+
],
|
|
8605
8711
|
"value": {
|
|
8606
8712
|
"kind": "expression",
|
|
8607
|
-
"type": "
|
|
8608
|
-
}
|
|
8609
|
-
"default": "() => ({})"
|
|
8713
|
+
"type": "ComponentConfig"
|
|
8714
|
+
}
|
|
8610
8715
|
},
|
|
8611
8716
|
{
|
|
8612
8717
|
"name": "dataTest",
|
|
8718
|
+
"required": false,
|
|
8719
|
+
"description": "Data-test attribute for automated testing.",
|
|
8613
8720
|
"value": {
|
|
8614
8721
|
"kind": "expression",
|
|
8615
|
-
"type": "
|
|
8616
|
-
}
|
|
8617
|
-
"default": "\"\""
|
|
8722
|
+
"type": "string"
|
|
8723
|
+
}
|
|
8618
8724
|
}
|
|
8619
8725
|
],
|
|
8620
8726
|
"source": {
|
|
@@ -8691,7 +8797,8 @@
|
|
|
8691
8797
|
"value": {
|
|
8692
8798
|
"kind": "expression",
|
|
8693
8799
|
"type": "RouteLocationRaw"
|
|
8694
|
-
}
|
|
8800
|
+
},
|
|
8801
|
+
"default": "\"\""
|
|
8695
8802
|
},
|
|
8696
8803
|
{
|
|
8697
8804
|
"name": "backLabel",
|
|
@@ -8700,7 +8807,8 @@
|
|
|
8700
8807
|
"value": {
|
|
8701
8808
|
"kind": "expression",
|
|
8702
8809
|
"type": "string"
|
|
8703
|
-
}
|
|
8810
|
+
},
|
|
8811
|
+
"default": "\"\""
|
|
8704
8812
|
},
|
|
8705
8813
|
{
|
|
8706
8814
|
"name": "gray",
|
|
@@ -8726,11 +8834,13 @@
|
|
|
8726
8834
|
"name": "config",
|
|
8727
8835
|
"required": false,
|
|
8728
8836
|
"description": "Component config object.",
|
|
8837
|
+
"enum": [
|
|
8838
|
+
"Config"
|
|
8839
|
+
],
|
|
8729
8840
|
"value": {
|
|
8730
8841
|
"kind": "expression",
|
|
8731
|
-
"type": "
|
|
8732
|
-
}
|
|
8733
|
-
"default": "() => ({})"
|
|
8842
|
+
"type": "ComponentConfig"
|
|
8843
|
+
}
|
|
8734
8844
|
},
|
|
8735
8845
|
{
|
|
8736
8846
|
"name": "dataTest",
|
|
@@ -8739,8 +8849,7 @@
|
|
|
8739
8849
|
"value": {
|
|
8740
8850
|
"kind": "expression",
|
|
8741
8851
|
"type": "string"
|
|
8742
|
-
}
|
|
8743
|
-
"default": "\"\""
|
|
8852
|
+
}
|
|
8744
8853
|
}
|
|
8745
8854
|
],
|
|
8746
8855
|
"slots": [
|
|
@@ -8805,7 +8914,8 @@
|
|
|
8805
8914
|
"value": {
|
|
8806
8915
|
"kind": "expression",
|
|
8807
8916
|
"type": "number"
|
|
8808
|
-
}
|
|
8917
|
+
},
|
|
8918
|
+
"default": "1"
|
|
8809
8919
|
},
|
|
8810
8920
|
{
|
|
8811
8921
|
"name": "perPage",
|
|
@@ -8873,7 +8983,8 @@
|
|
|
8873
8983
|
"value": {
|
|
8874
8984
|
"kind": "expression",
|
|
8875
8985
|
"type": "string"
|
|
8876
|
-
}
|
|
8986
|
+
},
|
|
8987
|
+
"default": "\"\""
|
|
8877
8988
|
},
|
|
8878
8989
|
{
|
|
8879
8990
|
"name": "prevLabel",
|
|
@@ -8882,7 +8993,8 @@
|
|
|
8882
8993
|
"value": {
|
|
8883
8994
|
"kind": "expression",
|
|
8884
8995
|
"type": "string"
|
|
8885
|
-
}
|
|
8996
|
+
},
|
|
8997
|
+
"default": "\"\""
|
|
8886
8998
|
},
|
|
8887
8999
|
{
|
|
8888
9000
|
"name": "nextLabel",
|
|
@@ -8891,7 +9003,8 @@
|
|
|
8891
9003
|
"value": {
|
|
8892
9004
|
"kind": "expression",
|
|
8893
9005
|
"type": "string"
|
|
8894
|
-
}
|
|
9006
|
+
},
|
|
9007
|
+
"default": "\"\""
|
|
8895
9008
|
},
|
|
8896
9009
|
{
|
|
8897
9010
|
"name": "lastLabel",
|
|
@@ -8900,7 +9013,8 @@
|
|
|
8900
9013
|
"value": {
|
|
8901
9014
|
"kind": "expression",
|
|
8902
9015
|
"type": "string"
|
|
8903
|
-
}
|
|
9016
|
+
},
|
|
9017
|
+
"default": "\"\""
|
|
8904
9018
|
},
|
|
8905
9019
|
{
|
|
8906
9020
|
"name": "disabled",
|
|
@@ -8946,11 +9060,13 @@
|
|
|
8946
9060
|
"name": "config",
|
|
8947
9061
|
"required": false,
|
|
8948
9062
|
"description": "Component config object.",
|
|
9063
|
+
"enum": [
|
|
9064
|
+
"Config"
|
|
9065
|
+
],
|
|
8949
9066
|
"value": {
|
|
8950
9067
|
"kind": "expression",
|
|
8951
|
-
"type": "
|
|
8952
|
-
}
|
|
8953
|
-
"default": "() => ({})"
|
|
9068
|
+
"type": "ComponentConfig"
|
|
9069
|
+
}
|
|
8954
9070
|
},
|
|
8955
9071
|
{
|
|
8956
9072
|
"name": "dataTest",
|
|
@@ -8959,8 +9075,7 @@
|
|
|
8959
9075
|
"value": {
|
|
8960
9076
|
"kind": "expression",
|
|
8961
9077
|
"type": "string"
|
|
8962
|
-
}
|
|
8963
|
-
"default": "\"\""
|
|
9078
|
+
}
|
|
8964
9079
|
}
|
|
8965
9080
|
],
|
|
8966
9081
|
"events": [
|
|
@@ -9027,8 +9142,7 @@
|
|
|
9027
9142
|
"value": {
|
|
9028
9143
|
"kind": "expression",
|
|
9029
9144
|
"type": "number"
|
|
9030
|
-
}
|
|
9031
|
-
"default": "0"
|
|
9145
|
+
}
|
|
9032
9146
|
},
|
|
9033
9147
|
{
|
|
9034
9148
|
"name": "max",
|
|
@@ -9124,9 +9238,12 @@
|
|
|
9124
9238
|
"name": "config",
|
|
9125
9239
|
"required": false,
|
|
9126
9240
|
"description": "Component config object.",
|
|
9241
|
+
"enum": [
|
|
9242
|
+
"Config"
|
|
9243
|
+
],
|
|
9127
9244
|
"value": {
|
|
9128
9245
|
"kind": "expression",
|
|
9129
|
-
"type": "
|
|
9246
|
+
"type": "ComponentConfig"
|
|
9130
9247
|
}
|
|
9131
9248
|
},
|
|
9132
9249
|
{
|
|
@@ -9136,8 +9253,7 @@
|
|
|
9136
9253
|
"value": {
|
|
9137
9254
|
"kind": "expression",
|
|
9138
9255
|
"type": "string"
|
|
9139
|
-
}
|
|
9140
|
-
"default": "\"\""
|
|
9256
|
+
}
|
|
9141
9257
|
}
|
|
9142
9258
|
],
|
|
9143
9259
|
"slots": [
|
|
@@ -9207,7 +9323,8 @@
|
|
|
9207
9323
|
"value": {
|
|
9208
9324
|
"kind": "expression",
|
|
9209
9325
|
"type": "union"
|
|
9210
|
-
}
|
|
9326
|
+
},
|
|
9327
|
+
"default": "() => ({})"
|
|
9211
9328
|
},
|
|
9212
9329
|
{
|
|
9213
9330
|
"name": "value",
|
|
@@ -9223,7 +9340,8 @@
|
|
|
9223
9340
|
"value": {
|
|
9224
9341
|
"kind": "expression",
|
|
9225
9342
|
"type": "union"
|
|
9226
|
-
}
|
|
9343
|
+
},
|
|
9344
|
+
"default": "() => ({})"
|
|
9227
9345
|
},
|
|
9228
9346
|
{
|
|
9229
9347
|
"name": "label",
|
|
@@ -9232,7 +9350,8 @@
|
|
|
9232
9350
|
"value": {
|
|
9233
9351
|
"kind": "expression",
|
|
9234
9352
|
"type": "string"
|
|
9235
|
-
}
|
|
9353
|
+
},
|
|
9354
|
+
"default": "\"\""
|
|
9236
9355
|
},
|
|
9237
9356
|
{
|
|
9238
9357
|
"name": "labelAlign",
|
|
@@ -9355,9 +9474,12 @@
|
|
|
9355
9474
|
"name": "config",
|
|
9356
9475
|
"required": false,
|
|
9357
9476
|
"description": "Component config object.",
|
|
9477
|
+
"enum": [
|
|
9478
|
+
"Config"
|
|
9479
|
+
],
|
|
9358
9480
|
"value": {
|
|
9359
9481
|
"kind": "expression",
|
|
9360
|
-
"type": "
|
|
9482
|
+
"type": "ComponentConfig"
|
|
9361
9483
|
}
|
|
9362
9484
|
},
|
|
9363
9485
|
{
|
|
@@ -9367,8 +9489,7 @@
|
|
|
9367
9489
|
"value": {
|
|
9368
9490
|
"kind": "expression",
|
|
9369
9491
|
"type": "string"
|
|
9370
|
-
}
|
|
9371
|
-
"default": "\"\""
|
|
9492
|
+
}
|
|
9372
9493
|
}
|
|
9373
9494
|
],
|
|
9374
9495
|
"events": [
|
|
@@ -9415,7 +9536,7 @@
|
|
|
9415
9536
|
"kind": "expression",
|
|
9416
9537
|
"type": "union"
|
|
9417
9538
|
},
|
|
9418
|
-
"default": "
|
|
9539
|
+
"default": "() => []"
|
|
9419
9540
|
},
|
|
9420
9541
|
{
|
|
9421
9542
|
"name": "options",
|
|
@@ -9427,7 +9548,8 @@
|
|
|
9427
9548
|
"value": {
|
|
9428
9549
|
"kind": "expression",
|
|
9429
9550
|
"type": "Array"
|
|
9430
|
-
}
|
|
9551
|
+
},
|
|
9552
|
+
"default": "() => []"
|
|
9431
9553
|
},
|
|
9432
9554
|
{
|
|
9433
9555
|
"name": "label",
|
|
@@ -9436,7 +9558,8 @@
|
|
|
9436
9558
|
"value": {
|
|
9437
9559
|
"kind": "expression",
|
|
9438
9560
|
"type": "string"
|
|
9439
|
-
}
|
|
9561
|
+
},
|
|
9562
|
+
"default": "\"\""
|
|
9440
9563
|
},
|
|
9441
9564
|
{
|
|
9442
9565
|
"name": "description",
|
|
@@ -9526,9 +9649,12 @@
|
|
|
9526
9649
|
"name": "config",
|
|
9527
9650
|
"required": false,
|
|
9528
9651
|
"description": "Component config object.",
|
|
9652
|
+
"enum": [
|
|
9653
|
+
"Config"
|
|
9654
|
+
],
|
|
9529
9655
|
"value": {
|
|
9530
9656
|
"kind": "expression",
|
|
9531
|
-
"type": "
|
|
9657
|
+
"type": "ComponentConfig"
|
|
9532
9658
|
}
|
|
9533
9659
|
},
|
|
9534
9660
|
{
|
|
@@ -9538,8 +9664,7 @@
|
|
|
9538
9664
|
"value": {
|
|
9539
9665
|
"kind": "expression",
|
|
9540
9666
|
"type": "string"
|
|
9541
|
-
}
|
|
9542
|
-
"default": "\"\""
|
|
9667
|
+
}
|
|
9543
9668
|
}
|
|
9544
9669
|
],
|
|
9545
9670
|
"events": [
|
|
@@ -9681,9 +9806,12 @@
|
|
|
9681
9806
|
"name": "config",
|
|
9682
9807
|
"required": false,
|
|
9683
9808
|
"description": "Component config object.",
|
|
9809
|
+
"enum": [
|
|
9810
|
+
"Config"
|
|
9811
|
+
],
|
|
9684
9812
|
"value": {
|
|
9685
9813
|
"kind": "expression",
|
|
9686
|
-
"type": "
|
|
9814
|
+
"type": "ComponentConfig"
|
|
9687
9815
|
}
|
|
9688
9816
|
},
|
|
9689
9817
|
{
|
|
@@ -9693,8 +9821,7 @@
|
|
|
9693
9821
|
"value": {
|
|
9694
9822
|
"kind": "expression",
|
|
9695
9823
|
"type": "string"
|
|
9696
|
-
}
|
|
9697
|
-
"default": "\"\""
|
|
9824
|
+
}
|
|
9698
9825
|
}
|
|
9699
9826
|
],
|
|
9700
9827
|
"slots": [
|
|
@@ -10302,7 +10429,8 @@
|
|
|
10302
10429
|
"value": {
|
|
10303
10430
|
"kind": "expression",
|
|
10304
10431
|
"type": "string"
|
|
10305
|
-
}
|
|
10432
|
+
},
|
|
10433
|
+
"default": "\"\""
|
|
10306
10434
|
},
|
|
10307
10435
|
{
|
|
10308
10436
|
"name": "description",
|
|
@@ -10404,11 +10532,13 @@
|
|
|
10404
10532
|
"name": "config",
|
|
10405
10533
|
"required": false,
|
|
10406
10534
|
"description": "Component config object.",
|
|
10535
|
+
"enum": [
|
|
10536
|
+
"Config"
|
|
10537
|
+
],
|
|
10407
10538
|
"value": {
|
|
10408
10539
|
"kind": "expression",
|
|
10409
|
-
"type": "
|
|
10410
|
-
}
|
|
10411
|
-
"default": "() => ({})"
|
|
10540
|
+
"type": "ComponentConfig"
|
|
10541
|
+
}
|
|
10412
10542
|
},
|
|
10413
10543
|
{
|
|
10414
10544
|
"name": "dataTest",
|
|
@@ -10417,8 +10547,7 @@
|
|
|
10417
10547
|
"value": {
|
|
10418
10548
|
"kind": "expression",
|
|
10419
10549
|
"type": "string"
|
|
10420
|
-
}
|
|
10421
|
-
"default": "\"\""
|
|
10550
|
+
}
|
|
10422
10551
|
}
|
|
10423
10552
|
],
|
|
10424
10553
|
"events": [
|
|
@@ -10480,9 +10609,12 @@
|
|
|
10480
10609
|
"name": "config",
|
|
10481
10610
|
"required": false,
|
|
10482
10611
|
"description": "Component config object.",
|
|
10612
|
+
"enum": [
|
|
10613
|
+
"Config"
|
|
10614
|
+
],
|
|
10483
10615
|
"value": {
|
|
10484
10616
|
"kind": "expression",
|
|
10485
|
-
"type": "
|
|
10617
|
+
"type": "ComponentConfig"
|
|
10486
10618
|
}
|
|
10487
10619
|
},
|
|
10488
10620
|
{
|
|
@@ -10492,8 +10624,7 @@
|
|
|
10492
10624
|
"value": {
|
|
10493
10625
|
"kind": "expression",
|
|
10494
10626
|
"type": "string"
|
|
10495
|
-
}
|
|
10496
|
-
"default": "\"\""
|
|
10627
|
+
}
|
|
10497
10628
|
}
|
|
10498
10629
|
],
|
|
10499
10630
|
"slots": [
|
|
@@ -10521,7 +10652,8 @@
|
|
|
10521
10652
|
"value": {
|
|
10522
10653
|
"kind": "expression",
|
|
10523
10654
|
"type": "Array"
|
|
10524
|
-
}
|
|
10655
|
+
},
|
|
10656
|
+
"default": "() => []"
|
|
10525
10657
|
},
|
|
10526
10658
|
{
|
|
10527
10659
|
"name": "rows",
|
|
@@ -10533,7 +10665,8 @@
|
|
|
10533
10665
|
"value": {
|
|
10534
10666
|
"kind": "expression",
|
|
10535
10667
|
"type": "Array"
|
|
10536
|
-
}
|
|
10668
|
+
},
|
|
10669
|
+
"default": "() => []"
|
|
10537
10670
|
},
|
|
10538
10671
|
{
|
|
10539
10672
|
"name": "emptyCellLabel",
|
|
@@ -10613,11 +10746,13 @@
|
|
|
10613
10746
|
"name": "config",
|
|
10614
10747
|
"required": false,
|
|
10615
10748
|
"description": "Component config object.",
|
|
10749
|
+
"enum": [
|
|
10750
|
+
"Config"
|
|
10751
|
+
],
|
|
10616
10752
|
"value": {
|
|
10617
10753
|
"kind": "expression",
|
|
10618
|
-
"type": "
|
|
10619
|
-
}
|
|
10620
|
-
"default": "() => ({})"
|
|
10754
|
+
"type": "ComponentConfig"
|
|
10755
|
+
}
|
|
10621
10756
|
},
|
|
10622
10757
|
{
|
|
10623
10758
|
"name": "dataTest",
|
|
@@ -10626,8 +10761,7 @@
|
|
|
10626
10761
|
"value": {
|
|
10627
10762
|
"kind": "expression",
|
|
10628
10763
|
"type": "string"
|
|
10629
|
-
}
|
|
10630
|
-
"default": "\"\""
|
|
10764
|
+
}
|
|
10631
10765
|
}
|
|
10632
10766
|
],
|
|
10633
10767
|
"events": [
|
|
@@ -10951,7 +11085,8 @@
|
|
|
10951
11085
|
"value": {
|
|
10952
11086
|
"kind": "expression",
|
|
10953
11087
|
"type": "string"
|
|
10954
|
-
}
|
|
11088
|
+
},
|
|
11089
|
+
"default": "\"\""
|
|
10955
11090
|
},
|
|
10956
11091
|
{
|
|
10957
11092
|
"name": "options",
|
|
@@ -10963,7 +11098,8 @@
|
|
|
10963
11098
|
"value": {
|
|
10964
11099
|
"kind": "expression",
|
|
10965
11100
|
"type": "Array"
|
|
10966
|
-
}
|
|
11101
|
+
},
|
|
11102
|
+
"default": "() => []"
|
|
10967
11103
|
},
|
|
10968
11104
|
{
|
|
10969
11105
|
"name": "size",
|
|
@@ -10994,9 +11130,12 @@
|
|
|
10994
11130
|
"name": "config",
|
|
10995
11131
|
"required": false,
|
|
10996
11132
|
"description": "Component config object.",
|
|
11133
|
+
"enum": [
|
|
11134
|
+
"Config"
|
|
11135
|
+
],
|
|
10997
11136
|
"value": {
|
|
10998
11137
|
"kind": "expression",
|
|
10999
|
-
"type": "
|
|
11138
|
+
"type": "ComponentConfig"
|
|
11000
11139
|
}
|
|
11001
11140
|
},
|
|
11002
11141
|
{
|
|
@@ -11006,8 +11145,7 @@
|
|
|
11006
11145
|
"value": {
|
|
11007
11146
|
"kind": "expression",
|
|
11008
11147
|
"type": "string"
|
|
11009
|
-
}
|
|
11010
|
-
"default": "\"\""
|
|
11148
|
+
}
|
|
11011
11149
|
}
|
|
11012
11150
|
],
|
|
11013
11151
|
"events": [
|
|
@@ -11092,9 +11230,12 @@
|
|
|
11092
11230
|
"name": "config",
|
|
11093
11231
|
"required": false,
|
|
11094
11232
|
"description": "Component config object.",
|
|
11233
|
+
"enum": [
|
|
11234
|
+
"Config"
|
|
11235
|
+
],
|
|
11095
11236
|
"value": {
|
|
11096
11237
|
"kind": "expression",
|
|
11097
|
-
"type": "
|
|
11238
|
+
"type": "ComponentConfig"
|
|
11098
11239
|
}
|
|
11099
11240
|
},
|
|
11100
11241
|
{
|
|
@@ -11104,8 +11245,7 @@
|
|
|
11104
11245
|
"value": {
|
|
11105
11246
|
"kind": "expression",
|
|
11106
11247
|
"type": "string"
|
|
11107
|
-
}
|
|
11108
|
-
"default": "\"\""
|
|
11248
|
+
}
|
|
11109
11249
|
}
|
|
11110
11250
|
],
|
|
11111
11251
|
"slots": [
|
|
@@ -11155,7 +11295,8 @@
|
|
|
11155
11295
|
"value": {
|
|
11156
11296
|
"kind": "expression",
|
|
11157
11297
|
"type": "string"
|
|
11158
|
-
}
|
|
11298
|
+
},
|
|
11299
|
+
"default": "\"\""
|
|
11159
11300
|
},
|
|
11160
11301
|
{
|
|
11161
11302
|
"name": "label",
|
|
@@ -11164,7 +11305,8 @@
|
|
|
11164
11305
|
"value": {
|
|
11165
11306
|
"kind": "expression",
|
|
11166
11307
|
"type": "string"
|
|
11167
|
-
}
|
|
11308
|
+
},
|
|
11309
|
+
"default": "\"\""
|
|
11168
11310
|
},
|
|
11169
11311
|
{
|
|
11170
11312
|
"name": "labelAlign",
|
|
@@ -11288,9 +11430,12 @@
|
|
|
11288
11430
|
"name": "config",
|
|
11289
11431
|
"required": false,
|
|
11290
11432
|
"description": "Component config object.",
|
|
11433
|
+
"enum": [
|
|
11434
|
+
"Config"
|
|
11435
|
+
],
|
|
11291
11436
|
"value": {
|
|
11292
11437
|
"kind": "expression",
|
|
11293
|
-
"type": "
|
|
11438
|
+
"type": "ComponentConfig"
|
|
11294
11439
|
}
|
|
11295
11440
|
},
|
|
11296
11441
|
{
|
|
@@ -11300,8 +11445,7 @@
|
|
|
11300
11445
|
"value": {
|
|
11301
11446
|
"kind": "expression",
|
|
11302
11447
|
"type": "string"
|
|
11303
|
-
}
|
|
11304
|
-
"default": "\"\""
|
|
11448
|
+
}
|
|
11305
11449
|
}
|
|
11306
11450
|
],
|
|
11307
11451
|
"events": [
|
|
@@ -11380,7 +11524,8 @@
|
|
|
11380
11524
|
"value": {
|
|
11381
11525
|
"kind": "expression",
|
|
11382
11526
|
"type": "union"
|
|
11383
|
-
}
|
|
11527
|
+
},
|
|
11528
|
+
"default": "\"\""
|
|
11384
11529
|
},
|
|
11385
11530
|
{
|
|
11386
11531
|
"name": "options",
|
|
@@ -11392,7 +11537,8 @@
|
|
|
11392
11537
|
"value": {
|
|
11393
11538
|
"kind": "expression",
|
|
11394
11539
|
"type": "Array"
|
|
11395
|
-
}
|
|
11540
|
+
},
|
|
11541
|
+
"default": "() => []"
|
|
11396
11542
|
},
|
|
11397
11543
|
{
|
|
11398
11544
|
"name": "variant",
|
|
@@ -11450,7 +11596,8 @@
|
|
|
11450
11596
|
"value": {
|
|
11451
11597
|
"kind": "expression",
|
|
11452
11598
|
"type": "string"
|
|
11453
|
-
}
|
|
11599
|
+
},
|
|
11600
|
+
"default": "\"\""
|
|
11454
11601
|
},
|
|
11455
11602
|
{
|
|
11456
11603
|
"name": "description",
|
|
@@ -11534,9 +11681,12 @@
|
|
|
11534
11681
|
"name": "config",
|
|
11535
11682
|
"required": false,
|
|
11536
11683
|
"description": "Component config object.",
|
|
11684
|
+
"enum": [
|
|
11685
|
+
"Config"
|
|
11686
|
+
],
|
|
11537
11687
|
"value": {
|
|
11538
11688
|
"kind": "expression",
|
|
11539
|
-
"type": "
|
|
11689
|
+
"type": "ComponentConfig"
|
|
11540
11690
|
}
|
|
11541
11691
|
},
|
|
11542
11692
|
{
|
|
@@ -11546,8 +11696,7 @@
|
|
|
11546
11696
|
"value": {
|
|
11547
11697
|
"kind": "expression",
|
|
11548
11698
|
"type": "string"
|
|
11549
|
-
}
|
|
11550
|
-
"default": "\"\""
|
|
11699
|
+
}
|
|
11551
11700
|
}
|
|
11552
11701
|
],
|
|
11553
11702
|
"events": [
|
|
@@ -11591,7 +11740,8 @@
|
|
|
11591
11740
|
"value": {
|
|
11592
11741
|
"kind": "expression",
|
|
11593
11742
|
"type": "union"
|
|
11594
|
-
}
|
|
11743
|
+
},
|
|
11744
|
+
"default": "\"\""
|
|
11595
11745
|
},
|
|
11596
11746
|
{
|
|
11597
11747
|
"name": "value",
|
|
@@ -11613,7 +11763,8 @@
|
|
|
11613
11763
|
"value": {
|
|
11614
11764
|
"kind": "expression",
|
|
11615
11765
|
"type": "string"
|
|
11616
|
-
}
|
|
11766
|
+
},
|
|
11767
|
+
"default": "\"\""
|
|
11617
11768
|
},
|
|
11618
11769
|
{
|
|
11619
11770
|
"name": "disabled",
|
|
@@ -11638,9 +11789,12 @@
|
|
|
11638
11789
|
"name": "config",
|
|
11639
11790
|
"required": false,
|
|
11640
11791
|
"description": "Component config object.",
|
|
11792
|
+
"enum": [
|
|
11793
|
+
"Config"
|
|
11794
|
+
],
|
|
11641
11795
|
"value": {
|
|
11642
11796
|
"kind": "expression",
|
|
11643
|
-
"type": "
|
|
11797
|
+
"type": "ComponentConfig"
|
|
11644
11798
|
}
|
|
11645
11799
|
},
|
|
11646
11800
|
{
|
|
@@ -11650,8 +11804,7 @@
|
|
|
11650
11804
|
"value": {
|
|
11651
11805
|
"kind": "expression",
|
|
11652
11806
|
"type": "string"
|
|
11653
|
-
}
|
|
11654
|
-
"default": "\"\""
|
|
11807
|
+
}
|
|
11655
11808
|
}
|
|
11656
11809
|
],
|
|
11657
11810
|
"events": [
|