@voicenter-team/voicenter-ui-plus 3.0.0 → 3.0.1

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.
Files changed (81) hide show
  1. package/library/assets/assets/sass/main.css +1 -1
  2. package/library/assets/components/VcButton/VcButton.css +1 -1
  3. package/library/assets/components/VcButton/VcButtonIcon.css +1 -1
  4. package/library/assets/components/VcDelimitedList/VcDelimitedList.css +1 -1
  5. package/library/assets/components/VcExcelUploader/VcExcelFileUploadBlock.css +1 -1
  6. package/library/assets/components/VcModal/VcModal.css +1 -1
  7. package/library/assets/components/VcSoundplayer/VcSoundPlayer.css +1 -1
  8. package/library/assets/components/VcSplitButton/VcSplitButton.css +1 -1
  9. package/library/assets/components/VcTable/VcTable.css +1 -1
  10. package/library/assets/entity/components/Form/VcBaseVerticalForm.css +1 -1
  11. package/library/assets/entity/components/Table/VcEntityListTable.css +1 -1
  12. package/library/assets/entity/components/Tabs/VcEntityEditableTabs.css +1 -1
  13. package/library/components/VcButton/VcButton.vue.mjs +3 -2
  14. package/library/components/VcButton/VcButtonIcon.vue.mjs +92 -5
  15. package/library/components/VcButton/VcButtonIcon.vue3.mjs +5 -0
  16. package/library/components/VcButton/VcToggleButton.vue.mjs +20 -7
  17. package/library/components/VcDelimitedList/VcDelimitedList.vue.mjs +194 -5
  18. package/library/components/VcDelimitedList/VcDelimitedList.vue3.mjs +5 -0
  19. package/library/components/VcExcelUploader/VcExcelFileUploadBlock.vue.mjs +140 -5
  20. package/library/components/VcExcelUploader/VcExcelFileUploadBlock.vue3.mjs +5 -0
  21. package/library/components/VcExcelUploader/VcExcelFileUploader.vue.mjs +6 -5
  22. package/library/components/VcExcelUploader/VcFileImportParseResultBlock.vue.mjs +5 -3
  23. package/library/components/VcExcelUploader/VcFileImportResultBindDataTable.vue.mjs +21 -18
  24. package/library/components/VcExtendedDatetimeRangePicker/VcExtendedDatetimeRangePickerQuickOptionsSelection.vue.mjs +4 -3
  25. package/library/components/VcFileUploader/VcFileUploader.vue2.mjs +11 -9
  26. package/library/components/VcHtmlEditor/VcHtmlEditorToolbar.vue.mjs +10 -9
  27. package/library/components/VcIcon/VcIcon.vue.mjs +7 -3
  28. package/library/components/VcJsonSchema/Components/JsonSchemaEditor.vue.mjs +8 -7
  29. package/library/components/VcJsonSchema/PropertySetup/JsonSchemaPropertyModal.vue.mjs +10 -9
  30. package/library/components/VcMdEditor/ParameterNode.vue2.mjs +6 -5
  31. package/library/components/VcMdEditor/VcMdEditor.vue.mjs +8 -7
  32. package/library/components/VcPagination/VcPaginationButton.vue.mjs +3 -2
  33. package/library/components/VcSelect/VcSelect.vue.mjs +9 -5
  34. package/library/components/VcSoundplayer/VcSoundPlayer.vue.mjs +274 -5
  35. package/library/components/VcSoundplayer/VcSoundPlayer.vue3.mjs +5 -0
  36. package/library/components/VcSplitButton/VcSplitButton.vue.mjs +4 -3
  37. package/library/components/VcTable/VcTable.vue.mjs +1069 -6
  38. package/library/components/VcTable/VcTable.vue4.mjs +6 -0
  39. package/library/components/VcTree/VcTreeSelect.vue.mjs +8 -7
  40. package/library/entity/components/Button/VcEntityDeleteIconButton.vue.mjs +3 -2
  41. package/library/entity/components/Button/VcEntityEditIconButton.vue.mjs +3 -2
  42. package/library/entity/components/Form/VcBaseVerticalForm.vue.mjs +95 -5
  43. package/library/entity/components/Form/VcBaseVerticalForm.vue3.mjs +5 -0
  44. package/library/entity/components/Form/VcEntityVerticalCreateForm.vue.mjs +3 -2
  45. package/library/entity/components/Form/VcEntityVerticalEditForm.vue.mjs +9 -8
  46. package/library/entity/components/Table/VcEntityListTable.vue.mjs +414 -5
  47. package/library/entity/components/Table/VcEntityListTable.vue3.mjs +5 -0
  48. package/library/entity/components/Tabs/VcEntityEditableTabs.vue.mjs +287 -5
  49. package/library/entity/components/Tabs/VcEntityEditableTabs.vue3.mjs +5 -0
  50. package/library/index.mjs +8 -0
  51. package/library/index.mjs.br +0 -0
  52. package/library/index.mjs.gz +0 -0
  53. package/library/plugin.mjs +272 -264
  54. package/library/plugin.mjs.br +0 -0
  55. package/library/plugin.mjs.gz +0 -0
  56. package/library/style.css +12 -12
  57. package/library/style.css.br +0 -0
  58. package/library/style.css.gz +0 -0
  59. package/library/types/components/VcButton/VcButton.vue.d.ts +1 -1
  60. package/library/types/components/VcButton/VcToggleButton.vue.d.ts +4 -0
  61. package/library/types/components/VcDelimitedList/VcDelimitedList.vue.d.ts +1 -2
  62. package/library/types/components/VcIcon/VcIcon.vue.d.ts +1 -0
  63. package/library/types/components/VcLoading/VcLoading.vue.d.ts +1 -1
  64. package/library/types/components/VcOtpInput/VcOtpInput.vue.d.ts +1 -1
  65. package/library/types/components/VcSelect/VcSelect.vue.d.ts +3 -3
  66. package/library/types/components/VcSelect/VcSelectGrouped.vue.d.ts +3 -3
  67. package/library/types/components/VcSipFlow/VcSipFlow.vue.d.ts +1 -1
  68. package/library/types/components/VcSplitButton/VcSplitButton.vue.d.ts +1 -1
  69. package/library/types/components/VcSwitch/VcSwitch.vue.d.ts +3 -3
  70. package/library/types/components/VcTable/VcTable.vue.d.ts +3 -3
  71. package/library/types/components/VcTree/VcTree.vue.d.ts +3 -3
  72. package/library/types/components/VcTree/VcTreeSelect.vue.d.ts +3 -3
  73. package/package.json +1 -1
  74. package/library/components/VcButton/VcButtonIcon.vue2.mjs +0 -92
  75. package/library/components/VcDelimitedList/VcDelimitedList.vue2.mjs +0 -195
  76. package/library/components/VcExcelUploader/VcExcelFileUploadBlock.vue2.mjs +0 -141
  77. package/library/components/VcSoundplayer/VcSoundPlayer.vue2.mjs +0 -275
  78. package/library/components/VcTable/VcTable.vue2.mjs +0 -1069
  79. package/library/entity/components/Form/VcBaseVerticalForm.vue2.mjs +0 -96
  80. package/library/entity/components/Table/VcEntityListTable.vue2.mjs +0 -413
  81. package/library/entity/components/Tabs/VcEntityEditableTabs.vue2.mjs +0 -288
@@ -6,157 +6,165 @@ import directives from "./directives/index.mjs";
6
6
  import { loadIconFont, loadTextFont } from "./font/index.mjs";
7
7
  import _sfc_main from "./components/VcButton/VcButton.vue.mjs";
8
8
  /* empty css */
9
- import VcButtonIcon from "./components/VcButton/VcButtonIcon.vue.mjs";
10
- import _sfc_main$1 from "./components/VcButton/VcToggleButton.vue.mjs";
9
+ import _sfc_main$1 from "./components/VcButton/VcButtonIcon.vue.mjs";
10
+ /* empty css */
11
+ import _sfc_main$2 from "./components/VcButton/VcToggleButton.vue.mjs";
11
12
  /* empty css */
12
- import _sfc_main$2 from "./components/VcIcon/VcIcon.vue.mjs";
13
+ import _sfc_main$3 from "./components/VcIcon/VcIcon.vue.mjs";
13
14
  /* empty css */
14
- import _sfc_main$3 from "./components/VcInput/VcInput.vue.mjs";
15
+ import _sfc_main$4 from "./components/VcInput/VcInput.vue.mjs";
15
16
  /* empty css */
16
- import _sfc_main$4 from "./components/VcInputNumber/VcInputNumber.vue.mjs";
17
+ import _sfc_main$5 from "./components/VcInputNumber/VcInputNumber.vue.mjs";
17
18
  /* empty css */
18
- import _sfc_main$5 from "./components/VcForm/UiComponents/VcInputError.vue.mjs";
19
+ import _sfc_main$6 from "./components/VcForm/UiComponents/VcInputError.vue.mjs";
19
20
  /* empty css */
20
- import _sfc_main$6 from "./components/VcForm/UiComponents/VcInputLabel.vue.mjs";
21
+ import _sfc_main$7 from "./components/VcForm/UiComponents/VcInputLabel.vue.mjs";
21
22
  /* empty css */
22
- import _sfc_main$7 from "./components/VcSelect/VcSelect.vue.mjs";
23
+ import _sfc_main$8 from "./components/VcSelect/VcSelect.vue.mjs";
23
24
  /* empty css */
24
- import _sfc_main$8 from "./components/VcSelect/VcSelectGrouped.vue.mjs";
25
- import _sfc_main$9 from "./components/VcSelect/VcSelectOption.vue.mjs";
25
+ import _sfc_main$9 from "./components/VcSelect/VcSelectGrouped.vue.mjs";
26
+ import _sfc_main$a from "./components/VcSelect/VcSelectOption.vue.mjs";
26
27
  /* empty css */
27
- import _sfc_main$a from "./components/VcSelect/VcInfiniteScrollSelect.vue.mjs";
28
- import _sfc_main$b from "./components/VcAutocomplete/VcAutocomplete.vue.mjs";
28
+ import _sfc_main$b from "./components/VcSelect/VcInfiniteScrollSelect.vue.mjs";
29
+ import _sfc_main$c from "./components/VcAutocomplete/VcAutocomplete.vue.mjs";
29
30
  /* empty css */
30
- import _sfc_main$c from "./components/VcCheckbox/VcCheckbox.vue.mjs";
31
+ import _sfc_main$d from "./components/VcCheckbox/VcCheckbox.vue.mjs";
31
32
  /* empty css */
32
- import _sfc_main$d from "./components/VcCheckboxGroup/VcCheckboxGroup.vue.mjs";
33
- import _sfc_main$e from "./components/VcRadio/VcRadio.vue.mjs";
33
+ import _sfc_main$e from "./components/VcCheckboxGroup/VcCheckboxGroup.vue.mjs";
34
+ import _sfc_main$f from "./components/VcRadio/VcRadio.vue.mjs";
34
35
  /* empty css */
35
- import _sfc_main$f from "./components/VcRadioGroup/VcRadioGroup.vue.mjs";
36
+ import _sfc_main$g from "./components/VcRadioGroup/VcRadioGroup.vue.mjs";
36
37
  /* empty css */
37
- import _sfc_main$g from "./components/VcRadioButtons/VcRadioButtonsGroup.vue.mjs";
38
+ import _sfc_main$h from "./components/VcRadioButtons/VcRadioButtonsGroup.vue.mjs";
38
39
  /* empty css */
39
- import _sfc_main$h from "./components/VcSwitch/VcSwitch.vue.mjs";
40
+ import _sfc_main$i from "./components/VcSwitch/VcSwitch.vue.mjs";
40
41
  /* empty css */
41
- import _sfc_main$i from "./components/VcSlider/VcSlider.vue.mjs";
42
+ import _sfc_main$j from "./components/VcSlider/VcSlider.vue.mjs";
42
43
  /* empty css */
43
- import _sfc_main$j from "./components/VcColorPicker/VcColorPicker.vue.mjs";
44
+ import _sfc_main$k from "./components/VcColorPicker/VcColorPicker.vue.mjs";
44
45
  /* empty css */
45
- import _sfc_main$k from "./components/VcDatePicker/VcDatePicker.vue.mjs";
46
+ import _sfc_main$l from "./components/VcDatePicker/VcDatePicker.vue.mjs";
46
47
  /* empty css */
47
- import _sfc_main$l from "./components/VcDatePickerPanel/VcDatePickerPanel.vue.mjs";
48
+ import _sfc_main$m from "./components/VcDatePickerPanel/VcDatePickerPanel.vue.mjs";
48
49
  /* empty css */
49
- import _sfc_main$m from "./components/VcDatetimeRangePicker/VcDatetimeRangePicker.vue.mjs";
50
+ import _sfc_main$n from "./components/VcDatetimeRangePicker/VcDatetimeRangePicker.vue.mjs";
50
51
  /* empty css */
51
- import _sfc_main$n from "./components/VcExtendedDatetimeRangePicker/VcExtendedDatetimeRangePicker.vue.mjs";
52
+ import _sfc_main$o from "./components/VcExtendedDatetimeRangePicker/VcExtendedDatetimeRangePicker.vue.mjs";
52
53
  /* empty css */
53
- import _sfc_main$o from "./components/VcTimeInput/VcTimeInput.vue.mjs";
54
+ import _sfc_main$p from "./components/VcTimeInput/VcTimeInput.vue.mjs";
54
55
  /* empty css */
55
- import _sfc_main$p from "./components/VcPhoneInput/VcPhoneInput.vue.mjs";
56
+ import _sfc_main$q from "./components/VcPhoneInput/VcPhoneInput.vue.mjs";
56
57
  /* empty css */
57
- import _sfc_main$q from "./components/VcTagInput/VcTagInput.vue.mjs";
58
+ import _sfc_main$r from "./components/VcTagInput/VcTagInput.vue.mjs";
58
59
  /* empty css */
59
- import _sfc_main$r from "./components/VcOtpInput/VcOtpInput.vue.mjs";
60
+ import _sfc_main$s from "./components/VcOtpInput/VcOtpInput.vue.mjs";
60
61
  /* empty css */
61
62
  import VcFileUploader from "./components/VcFileUploader/VcFileUploader.vue.mjs";
62
- import _sfc_main$s from "./components/VcCard/VcCard.vue.mjs";
63
+ import _sfc_main$t from "./components/VcCard/VcCard.vue.mjs";
63
64
  /* empty css */
64
- import _sfc_main$t from "./components/VcModal/VcModal.vue.mjs";
65
+ import _sfc_main$u from "./components/VcModal/VcModal.vue.mjs";
65
66
  /* empty css */
66
- import _sfc_main$u from "./components/VcModal/VcConfirmModal.vue.mjs";
67
- import _sfc_main$v from "./components/VcPopover/VcPopover.vue.mjs";
67
+ import _sfc_main$v from "./components/VcModal/VcConfirmModal.vue.mjs";
68
+ import _sfc_main$w from "./components/VcPopover/VcPopover.vue.mjs";
68
69
  /* empty css */
69
- import _sfc_main$w from "./components/VcPopover/VcConfirmPopover.vue.mjs";
70
+ import _sfc_main$x from "./components/VcPopover/VcConfirmPopover.vue.mjs";
70
71
  /* empty css */
71
- import _sfc_main$x from "./components/VcPopover/VcSelectPopover.vue.mjs";
72
+ import _sfc_main$y from "./components/VcPopover/VcSelectPopover.vue.mjs";
72
73
  /* empty css */
73
- import _sfc_main$y from "./components/VcTabs/VcTabs.vue.mjs";
74
+ import _sfc_main$z from "./components/VcTabs/VcTabs.vue.mjs";
74
75
  /* empty css */
75
- import _sfc_main$z from "./components/VcTabs/VcTabNav.vue.mjs";
76
+ import _sfc_main$A from "./components/VcTabs/VcTabNav.vue.mjs";
76
77
  /* empty css */
77
- import _sfc_main$A from "./components/VcTabs/VcTabPane.vue.mjs";
78
+ import _sfc_main$B from "./components/VcTabs/VcTabPane.vue.mjs";
78
79
  /* empty css */
79
- import _sfc_main$B from "./components/VcVerticalTabs/VcVerticalTabs.vue.mjs";
80
+ import _sfc_main$C from "./components/VcVerticalTabs/VcVerticalTabs.vue.mjs";
80
81
  /* empty css */
81
- import _sfc_main$C from "./components/VcRadioTabs/VcRadioTabs.vue.mjs";
82
+ import _sfc_main$D from "./components/VcRadioTabs/VcRadioTabs.vue.mjs";
82
83
  /* empty css */
83
- import _sfc_main$D from "./components/VcRadioTabs/UiComponents/VcRadioTabsNav.vue.mjs";
84
+ import _sfc_main$E from "./components/VcRadioTabs/UiComponents/VcRadioTabsNav.vue.mjs";
84
85
  /* empty css */
85
- import _sfc_main$E from "./components/VcCollapse/VcCollapse.vue.mjs";
86
- import _sfc_main$F from "./components/VcCollapse/VcCollapseItem.vue.mjs";
86
+ import _sfc_main$F from "./components/VcCollapse/VcCollapse.vue.mjs";
87
+ import _sfc_main$G from "./components/VcCollapse/VcCollapseItem.vue.mjs";
87
88
  /* empty css */
88
- import _sfc_main$G from "./components/VcWizard/VcWizard.vue.mjs";
89
+ import _sfc_main$H from "./components/VcWizard/VcWizard.vue.mjs";
89
90
  /* empty css */
90
- import _sfc_main$H from "./components/VcDropdown/VcDropdown.vue.mjs";
91
+ import _sfc_main$I from "./components/VcDropdown/VcDropdown.vue.mjs";
91
92
  /* empty css */
92
- import _sfc_main$I from "./components/VcDropdown/VcDropdownItem.vue.mjs";
93
+ import _sfc_main$J from "./components/VcDropdown/VcDropdownItem.vue.mjs";
93
94
  /* empty css */
94
- import VcTable from "./components/VcTable/VcTable.vue.mjs";
95
- import _sfc_main$J from "./components/VcPagination/VcPagination.vue.mjs";
95
+ import _sfc_main$K from "./components/VcTable/VcTable.vue.mjs";
96
+ /* empty css */
97
+ /* empty css */
98
+ import _sfc_main$L from "./components/VcPagination/VcPagination.vue.mjs";
96
99
  /* empty css */
97
- import _sfc_main$K from "./components/VcTree/VcTree.vue.mjs";
100
+ import _sfc_main$M from "./components/VcTree/VcTree.vue.mjs";
98
101
  /* empty css */
99
- import _sfc_main$L from "./components/VcTree/VcTreeSelect.vue.mjs";
102
+ import _sfc_main$N from "./components/VcTree/VcTreeSelect.vue.mjs";
100
103
  /* empty css */
101
104
  /* empty css */
102
- import _sfc_main$M from "./components/VcTransfer/VcTransfer.vue.mjs";
105
+ import _sfc_main$O from "./components/VcTransfer/VcTransfer.vue.mjs";
103
106
  /* empty css */
104
- import _sfc_main$N from "./components/VcTag/VcTag.vue.mjs";
107
+ import _sfc_main$P from "./components/VcTag/VcTag.vue.mjs";
105
108
  /* empty css */
106
- import VcDelimitedList from "./components/VcDelimitedList/VcDelimitedList.vue.mjs";
107
- import _sfc_main$O from "./components/VcSparkline/VcSparkline.vue.mjs";
108
- import _sfc_main$P from "./components/VcViewSwitcher/VcViewSwitcher.vue.mjs";
109
+ import _sfc_main$Q from "./components/VcDelimitedList/VcDelimitedList.vue.mjs";
110
+ /* empty css */
111
+ import _sfc_main$R from "./components/VcSparkline/VcSparkline.vue.mjs";
112
+ import _sfc_main$S from "./components/VcViewSwitcher/VcViewSwitcher.vue.mjs";
109
113
  /* empty css */
110
- import _sfc_main$Q from "./components/VcSegmented/VcSegmented.vue.mjs";
114
+ import _sfc_main$T from "./components/VcSegmented/VcSegmented.vue.mjs";
111
115
  /* empty css */
112
116
  import VcLoading from "./components/VcLoading/VcLoading.vue.mjs";
113
- import _sfc_main$R from "./components/VcProgress/VcProgress.vue.mjs";
117
+ import _sfc_main$U from "./components/VcProgress/VcProgress.vue.mjs";
114
118
  /* empty css */
115
- import _sfc_main$S from "./components/VcProgress/VcProgressCircular.vue.mjs";
119
+ import _sfc_main$V from "./components/VcProgress/VcProgressCircular.vue.mjs";
116
120
  /* empty css */
117
- import _sfc_main$T from "./components/VcSkeletonLoader/VcSkeletonLoader.vue.mjs";
118
- import _sfc_main$U from "./components/VcNotification/VcNotification.vue.mjs";
121
+ import _sfc_main$W from "./components/VcSkeletonLoader/VcSkeletonLoader.vue.mjs";
122
+ import _sfc_main$X from "./components/VcNotification/VcNotification.vue.mjs";
119
123
  /* empty css */
120
- import _sfc_main$V from "./components/VcForm/VcForm.vue.mjs";
121
- import _sfc_main$W from "./components/VcForm/VcFormItem.vue.mjs";
124
+ import _sfc_main$Y from "./components/VcForm/VcForm.vue.mjs";
125
+ import _sfc_main$Z from "./components/VcForm/VcFormItem.vue.mjs";
122
126
  /* empty css */
123
- import _sfc_main$X from "./components/VcSplitButton/VcSplitButton.vue.mjs";
127
+ import _sfc_main$_ from "./components/VcSplitButton/VcSplitButton.vue.mjs";
124
128
  /* empty css */
125
- import _sfc_main$Y from "./components/VcHyperLink/VcHyperLink.vue.mjs";
129
+ import _sfc_main$$ from "./components/VcHyperLink/VcHyperLink.vue.mjs";
126
130
  /* empty css */
127
- import _sfc_main$Z from "./components/VcIconPicker/VcIconPicker.vue.mjs";
131
+ import _sfc_main$10 from "./components/VcIconPicker/VcIconPicker.vue.mjs";
128
132
  /* empty css */
129
- import _sfc_main$_ from "./components/VcMeterGroup/VcMeterGroup.vue.mjs";
133
+ import _sfc_main$11 from "./components/VcMeterGroup/VcMeterGroup.vue.mjs";
130
134
  /* empty css */
131
- import _sfc_main$$ from "./components/VcMeterGroup/VcMeterGroupLabel.vue.mjs";
132
- import _sfc_main$10 from "./components/VcMdEditor/VcMdEditor.vue.mjs";
133
- import _sfc_main$11 from "./components/VcSystemUserPrompt/VcSystemUserPrompt.vue.mjs";
134
- import VcSoundPlayer from "./components/VcSoundplayer/VcSoundPlayer.vue.mjs";
135
- import _sfc_main$12 from "./components/VcJsonSchema/VcJsonSchema.vue.mjs";
135
+ import _sfc_main$12 from "./components/VcMeterGroup/VcMeterGroupLabel.vue.mjs";
136
+ import _sfc_main$13 from "./components/VcMdEditor/VcMdEditor.vue.mjs";
137
+ import _sfc_main$14 from "./components/VcSystemUserPrompt/VcSystemUserPrompt.vue.mjs";
138
+ import _sfc_main$15 from "./components/VcSoundplayer/VcSoundPlayer.vue.mjs";
139
+ /* empty css */
140
+ import _sfc_main$16 from "./components/VcJsonSchema/VcJsonSchema.vue.mjs";
136
141
  /* empty css */
137
- import _sfc_main$13 from "./components/VcHtmlEditor/VcHtmlEditor.vue.mjs";
142
+ import _sfc_main$17 from "./components/VcHtmlEditor/VcHtmlEditor.vue.mjs";
138
143
  /* empty css */
139
- import _sfc_main$14 from "./components/VcPdfViewer/VcPdfDocument.vue.mjs";
144
+ import _sfc_main$18 from "./components/VcPdfViewer/VcPdfDocument.vue.mjs";
140
145
  /* empty css */
141
- import _sfc_main$15 from "./components/VcExcelUploader/VcExcelFileUploader.vue.mjs";
142
- import _sfc_main$16 from "./components/VcImageUploader/VcImageUploader.vue.mjs";
146
+ import _sfc_main$19 from "./components/VcExcelUploader/VcExcelFileUploader.vue.mjs";
147
+ import _sfc_main$1a from "./components/VcImageUploader/VcImageUploader.vue.mjs";
143
148
  /* empty css */
144
- import _sfc_main$17 from "./components/VcTour/VcTour.vue.mjs";
149
+ import _sfc_main$1b from "./components/VcTour/VcTour.vue.mjs";
145
150
  /* empty css */
146
- import _sfc_main$18 from "./components/VcSipFlow/VcSipFlow.vue.mjs";
151
+ import _sfc_main$1c from "./components/VcSipFlow/VcSipFlow.vue.mjs";
147
152
  /* empty css */
148
- import _sfc_main$19 from "./entity/components/Button/VcEntityAddButton.vue.mjs";
149
- import _sfc_main$1a from "./entity/components/Button/VcEntityCancelButton.vue.mjs";
150
- import _sfc_main$1b from "./entity/components/Button/VcEntityDeleteIconButton.vue.mjs";
151
- import _sfc_main$1c from "./entity/components/Button/VcEntityEditIconButton.vue.mjs";
152
- import _sfc_main$1d from "./entity/components/Button/VcEntityRestoreButton.vue.mjs";
153
- import _sfc_main$1e from "./entity/components/Button/VcEntityStatusButton.vue.mjs";
154
- import VcEntityEditableTabs from "./entity/components/Tabs/VcEntityEditableTabs.vue.mjs";
155
- import VcEntityListTable from "./entity/components/Table/VcEntityListTable.vue.mjs";
156
- import VcBaseVerticalForm from "./entity/components/Form/VcBaseVerticalForm.vue.mjs";
157
- import _sfc_main$1f from "./entity/components/Form/VcEntityVerticalCreateForm.vue.mjs";
158
- import _sfc_main$1g from "./entity/components/Form/VcEntityVerticalEditForm.vue.mjs";
159
- import _sfc_main$1h from "./entity/components/Form/VcEntityEditPageForm.vue.mjs";
153
+ import _sfc_main$1d from "./entity/components/Button/VcEntityAddButton.vue.mjs";
154
+ import _sfc_main$1e from "./entity/components/Button/VcEntityCancelButton.vue.mjs";
155
+ import _sfc_main$1f from "./entity/components/Button/VcEntityDeleteIconButton.vue.mjs";
156
+ import _sfc_main$1g from "./entity/components/Button/VcEntityEditIconButton.vue.mjs";
157
+ import _sfc_main$1h from "./entity/components/Button/VcEntityRestoreButton.vue.mjs";
158
+ import _sfc_main$1i from "./entity/components/Button/VcEntityStatusButton.vue.mjs";
159
+ import _sfc_main$1j from "./entity/components/Tabs/VcEntityEditableTabs.vue.mjs";
160
+ /* empty css */
161
+ import _sfc_main$1k from "./entity/components/Table/VcEntityListTable.vue.mjs";
162
+ /* empty css */
163
+ import _sfc_main$1l from "./entity/components/Form/VcBaseVerticalForm.vue.mjs";
164
+ /* empty css */
165
+ import _sfc_main$1m from "./entity/components/Form/VcEntityVerticalCreateForm.vue.mjs";
166
+ import _sfc_main$1n from "./entity/components/Form/VcEntityVerticalEditForm.vue.mjs";
167
+ import _sfc_main$1o from "./entity/components/Form/VcEntityEditPageForm.vue.mjs";
160
168
  /* empty css */
161
169
  import { VcCollapseProvideKey, VcEditableTabsDataToken, VcEntityListTableExternalPaginateToken, VcEntityToken, VcSoundPlayerProvideKey, VcTabPaneProvideKey, VcTabsProvideKey } from "./tokens/tokens.mjs";
162
170
  import { isIconComponent, isIconString, isVueComponent } from "./types/icons.types.mjs";
@@ -204,96 +212,96 @@ import { ALIAS_ITEM_SPACE, COLUMN_ARROW_COLORS, DEFAULT_COLOR_ARROW, DEFAULT_COL
204
212
  export * from "element-plus/es/components/form/src/constants";
205
213
  const install = function installCore(app, config) {
206
214
  app.component("VcButton", _sfc_main);
207
- app.component("VcButtonIcon", VcButtonIcon);
208
- app.component("VcToggleButton", _sfc_main$1);
209
- app.component("VcIcon", _sfc_main$2);
210
- app.component("VcInput", _sfc_main$3);
211
- app.component("VcInputNumber", _sfc_main$4);
212
- app.component("VcInputError", _sfc_main$5);
213
- app.component("VcInputLabel", _sfc_main$6);
214
- app.component("VcSelect", _sfc_main$7);
215
- app.component("VcSelectGrouped", _sfc_main$8);
216
- app.component("VcSelectOption", _sfc_main$9);
217
- app.component("VcInfiniteScrollSelect", _sfc_main$a);
218
- app.component("VcAutocomplete", _sfc_main$b);
219
- app.component("VcCheckbox", _sfc_main$c);
220
- app.component("VcCheckboxGroup", _sfc_main$d);
221
- app.component("VcRadio", _sfc_main$e);
222
- app.component("VcRadioGroup", _sfc_main$f);
223
- app.component("VcRadioButtonsGroup", _sfc_main$g);
224
- app.component("VcSwitch", _sfc_main$h);
225
- app.component("VcSlider", _sfc_main$i);
226
- app.component("VcColorPicker", _sfc_main$j);
227
- app.component("VcDatePicker", _sfc_main$k);
228
- app.component("VcDatePickerPanel", _sfc_main$l);
229
- app.component("VcDatetimeRangePicker", _sfc_main$m);
230
- app.component("VcExtendedDatetimeRangePicker", _sfc_main$n);
231
- app.component("VcTimeInput", _sfc_main$o);
232
- app.component("VcPhoneInput", _sfc_main$p);
233
- app.component("VcTagInput", _sfc_main$q);
234
- app.component("VcOtpInput", _sfc_main$r);
215
+ app.component("VcButtonIcon", _sfc_main$1);
216
+ app.component("VcToggleButton", _sfc_main$2);
217
+ app.component("VcIcon", _sfc_main$3);
218
+ app.component("VcInput", _sfc_main$4);
219
+ app.component("VcInputNumber", _sfc_main$5);
220
+ app.component("VcInputError", _sfc_main$6);
221
+ app.component("VcInputLabel", _sfc_main$7);
222
+ app.component("VcSelect", _sfc_main$8);
223
+ app.component("VcSelectGrouped", _sfc_main$9);
224
+ app.component("VcSelectOption", _sfc_main$a);
225
+ app.component("VcInfiniteScrollSelect", _sfc_main$b);
226
+ app.component("VcAutocomplete", _sfc_main$c);
227
+ app.component("VcCheckbox", _sfc_main$d);
228
+ app.component("VcCheckboxGroup", _sfc_main$e);
229
+ app.component("VcRadio", _sfc_main$f);
230
+ app.component("VcRadioGroup", _sfc_main$g);
231
+ app.component("VcRadioButtonsGroup", _sfc_main$h);
232
+ app.component("VcSwitch", _sfc_main$i);
233
+ app.component("VcSlider", _sfc_main$j);
234
+ app.component("VcColorPicker", _sfc_main$k);
235
+ app.component("VcDatePicker", _sfc_main$l);
236
+ app.component("VcDatePickerPanel", _sfc_main$m);
237
+ app.component("VcDatetimeRangePicker", _sfc_main$n);
238
+ app.component("VcExtendedDatetimeRangePicker", _sfc_main$o);
239
+ app.component("VcTimeInput", _sfc_main$p);
240
+ app.component("VcPhoneInput", _sfc_main$q);
241
+ app.component("VcTagInput", _sfc_main$r);
242
+ app.component("VcOtpInput", _sfc_main$s);
235
243
  app.component("VcFileUploader", VcFileUploader);
236
- app.component("VcCard", _sfc_main$s);
237
- app.component("VcModal", _sfc_main$t);
238
- app.component("VcConfirmModal", _sfc_main$u);
239
- app.component("VcPopover", _sfc_main$v);
240
- app.component("VcConfirmPopover", _sfc_main$w);
241
- app.component("VcSelectPopover", _sfc_main$x);
242
- app.component("VcTabs", _sfc_main$y);
243
- app.component("VcTabNav", _sfc_main$z);
244
- app.component("VcTabPane", _sfc_main$A);
245
- app.component("VcVerticalTabs", _sfc_main$B);
246
- app.component("VcRadioTabs", _sfc_main$C);
247
- app.component("VcRadioTabsNav", _sfc_main$D);
248
- app.component("VcCollapse", _sfc_main$E);
249
- app.component("VcCollapseItem", _sfc_main$F);
250
- app.component("VcWizard", _sfc_main$G);
251
- app.component("VcDropdown", _sfc_main$H);
252
- app.component("VcDropdownItem", _sfc_main$I);
253
- app.component("VcTable", VcTable);
254
- app.component("VcPagination", _sfc_main$J);
255
- app.component("VcTree", _sfc_main$K);
256
- app.component("VcTreeSelect", _sfc_main$L);
257
- app.component("VcTransfer", _sfc_main$M);
258
- app.component("VcTag", _sfc_main$N);
259
- app.component("VcDelimitedList", VcDelimitedList);
260
- app.component("VcSparkline", _sfc_main$O);
261
- app.component("VcViewSwitcher", _sfc_main$P);
262
- app.component("VcSegmented", _sfc_main$Q);
244
+ app.component("VcCard", _sfc_main$t);
245
+ app.component("VcModal", _sfc_main$u);
246
+ app.component("VcConfirmModal", _sfc_main$v);
247
+ app.component("VcPopover", _sfc_main$w);
248
+ app.component("VcConfirmPopover", _sfc_main$x);
249
+ app.component("VcSelectPopover", _sfc_main$y);
250
+ app.component("VcTabs", _sfc_main$z);
251
+ app.component("VcTabNav", _sfc_main$A);
252
+ app.component("VcTabPane", _sfc_main$B);
253
+ app.component("VcVerticalTabs", _sfc_main$C);
254
+ app.component("VcRadioTabs", _sfc_main$D);
255
+ app.component("VcRadioTabsNav", _sfc_main$E);
256
+ app.component("VcCollapse", _sfc_main$F);
257
+ app.component("VcCollapseItem", _sfc_main$G);
258
+ app.component("VcWizard", _sfc_main$H);
259
+ app.component("VcDropdown", _sfc_main$I);
260
+ app.component("VcDropdownItem", _sfc_main$J);
261
+ app.component("VcTable", _sfc_main$K);
262
+ app.component("VcPagination", _sfc_main$L);
263
+ app.component("VcTree", _sfc_main$M);
264
+ app.component("VcTreeSelect", _sfc_main$N);
265
+ app.component("VcTransfer", _sfc_main$O);
266
+ app.component("VcTag", _sfc_main$P);
267
+ app.component("VcDelimitedList", _sfc_main$Q);
268
+ app.component("VcSparkline", _sfc_main$R);
269
+ app.component("VcViewSwitcher", _sfc_main$S);
270
+ app.component("VcSegmented", _sfc_main$T);
263
271
  app.component("VcLoading", VcLoading);
264
- app.component("VcProgress", _sfc_main$R);
265
- app.component("VcProgressCircular", _sfc_main$S);
266
- app.component("VcSkeletonLoader", _sfc_main$T);
267
- app.component("VcNotification", _sfc_main$U);
268
- app.component("VcForm", _sfc_main$V);
269
- app.component("VcFormItem", _sfc_main$W);
270
- app.component("VcSplitButton", _sfc_main$X);
271
- app.component("VcHyperLink", _sfc_main$Y);
272
- app.component("VcIconPicker", _sfc_main$Z);
273
- app.component("VcMeterGroup", _sfc_main$_);
274
- app.component("VcMeterGroupLabel", _sfc_main$$);
275
- app.component("VcMdEditor", _sfc_main$10);
276
- app.component("VcSystemUserPrompt", _sfc_main$11);
277
- app.component("VcSoundPlayer", VcSoundPlayer);
278
- app.component("VcJsonSchema", _sfc_main$12);
279
- app.component("VcHtmlEditor", _sfc_main$13);
280
- app.component("VcPdfDocument", _sfc_main$14);
281
- app.component("VcExcelFileUploader", _sfc_main$15);
282
- app.component("VcImageUploader", _sfc_main$16);
283
- app.component("VcTour", _sfc_main$17);
284
- app.component("VcSipFlow", _sfc_main$18);
285
- app.component("VcEntityAddButton", _sfc_main$19);
286
- app.component("VcEntityCancelButton", _sfc_main$1a);
287
- app.component("VcEntityDeleteIconButton", _sfc_main$1b);
288
- app.component("VcEntityEditIconButton", _sfc_main$1c);
289
- app.component("VcEntityRestoreButton", _sfc_main$1d);
290
- app.component("VcEntityStatusButton", _sfc_main$1e);
291
- app.component("VcEntityEditableTabs", VcEntityEditableTabs);
292
- app.component("VcEntityListTable", VcEntityListTable);
293
- app.component("VcBaseVerticalForm", VcBaseVerticalForm);
294
- app.component("VcEntityVerticalCreateForm", _sfc_main$1f);
295
- app.component("VcEntityVerticalEditForm", _sfc_main$1g);
296
- app.component("VcEntityEditPageForm", _sfc_main$1h);
272
+ app.component("VcProgress", _sfc_main$U);
273
+ app.component("VcProgressCircular", _sfc_main$V);
274
+ app.component("VcSkeletonLoader", _sfc_main$W);
275
+ app.component("VcNotification", _sfc_main$X);
276
+ app.component("VcForm", _sfc_main$Y);
277
+ app.component("VcFormItem", _sfc_main$Z);
278
+ app.component("VcSplitButton", _sfc_main$_);
279
+ app.component("VcHyperLink", _sfc_main$$);
280
+ app.component("VcIconPicker", _sfc_main$10);
281
+ app.component("VcMeterGroup", _sfc_main$11);
282
+ app.component("VcMeterGroupLabel", _sfc_main$12);
283
+ app.component("VcMdEditor", _sfc_main$13);
284
+ app.component("VcSystemUserPrompt", _sfc_main$14);
285
+ app.component("VcSoundPlayer", _sfc_main$15);
286
+ app.component("VcJsonSchema", _sfc_main$16);
287
+ app.component("VcHtmlEditor", _sfc_main$17);
288
+ app.component("VcPdfDocument", _sfc_main$18);
289
+ app.component("VcExcelFileUploader", _sfc_main$19);
290
+ app.component("VcImageUploader", _sfc_main$1a);
291
+ app.component("VcTour", _sfc_main$1b);
292
+ app.component("VcSipFlow", _sfc_main$1c);
293
+ app.component("VcEntityAddButton", _sfc_main$1d);
294
+ app.component("VcEntityCancelButton", _sfc_main$1e);
295
+ app.component("VcEntityDeleteIconButton", _sfc_main$1f);
296
+ app.component("VcEntityEditIconButton", _sfc_main$1g);
297
+ app.component("VcEntityRestoreButton", _sfc_main$1h);
298
+ app.component("VcEntityStatusButton", _sfc_main$1i);
299
+ app.component("VcEntityEditableTabs", _sfc_main$1j);
300
+ app.component("VcEntityListTable", _sfc_main$1k);
301
+ app.component("VcBaseVerticalForm", _sfc_main$1l);
302
+ app.component("VcEntityVerticalCreateForm", _sfc_main$1m);
303
+ app.component("VcEntityVerticalEditForm", _sfc_main$1n);
304
+ app.component("VcEntityEditPageForm", _sfc_main$1o);
297
305
  Object.entries(directives).forEach(([name, directive]) => {
298
306
  app.directive(name, directive);
299
307
  });
@@ -346,116 +354,116 @@ export {
346
354
  UPDATE_MODEL_EVENT,
347
355
  default5 as UniqueComponentId,
348
356
  VERTICAL_SPACE,
349
- _sfc_main$b as VcAutocomplete,
350
- VcBaseVerticalForm,
357
+ _sfc_main$c as VcAutocomplete,
358
+ _sfc_main$1l as VcBaseVerticalForm,
351
359
  _sfc_main as VcButton,
352
- VcButtonIcon,
353
- _sfc_main$s as VcCard,
354
- _sfc_main$c as VcCheckbox,
355
- _sfc_main$d as VcCheckboxGroup,
356
- _sfc_main$E as VcCollapse,
357
- _sfc_main$F as VcCollapseItem,
360
+ _sfc_main$1 as VcButtonIcon,
361
+ _sfc_main$t as VcCard,
362
+ _sfc_main$d as VcCheckbox,
363
+ _sfc_main$e as VcCheckboxGroup,
364
+ _sfc_main$F as VcCollapse,
365
+ _sfc_main$G as VcCollapseItem,
358
366
  VcCollapseProvideKey,
359
- _sfc_main$j as VcColorPicker,
360
- _sfc_main$u as VcConfirmModal,
361
- _sfc_main$w as VcConfirmPopover,
362
- _sfc_main$k as VcDatePicker,
363
- _sfc_main$l as VcDatePickerPanel,
364
- _sfc_main$m as VcDatetimeRangePicker,
365
- VcDelimitedList,
366
- _sfc_main$H as VcDropdown,
367
- _sfc_main$I as VcDropdownItem,
367
+ _sfc_main$k as VcColorPicker,
368
+ _sfc_main$v as VcConfirmModal,
369
+ _sfc_main$x as VcConfirmPopover,
370
+ _sfc_main$l as VcDatePicker,
371
+ _sfc_main$m as VcDatePickerPanel,
372
+ _sfc_main$n as VcDatetimeRangePicker,
373
+ _sfc_main$Q as VcDelimitedList,
374
+ _sfc_main$I as VcDropdown,
375
+ _sfc_main$J as VcDropdownItem,
368
376
  VcEditableTabsDataToken,
369
- _sfc_main$19 as VcEntityAddButton,
370
- _sfc_main$1a as VcEntityCancelButton,
371
- _sfc_main$1b as VcEntityDeleteIconButton,
372
- _sfc_main$1c as VcEntityEditIconButton,
373
- _sfc_main$1h as VcEntityEditPageForm,
374
- VcEntityEditableTabs,
375
- VcEntityListTable,
377
+ _sfc_main$1d as VcEntityAddButton,
378
+ _sfc_main$1e as VcEntityCancelButton,
379
+ _sfc_main$1f as VcEntityDeleteIconButton,
380
+ _sfc_main$1g as VcEntityEditIconButton,
381
+ _sfc_main$1o as VcEntityEditPageForm,
382
+ _sfc_main$1j as VcEntityEditableTabs,
383
+ _sfc_main$1k as VcEntityListTable,
376
384
  VcEntityListTableExternalPaginateToken,
377
- _sfc_main$1d as VcEntityRestoreButton,
378
- _sfc_main$1e as VcEntityStatusButton,
385
+ _sfc_main$1h as VcEntityRestoreButton,
386
+ _sfc_main$1i as VcEntityStatusButton,
379
387
  VcEntityToken,
380
- _sfc_main$1f as VcEntityVerticalCreateForm,
381
- _sfc_main$1g as VcEntityVerticalEditForm,
382
- _sfc_main$15 as VcExcelFileUploader,
383
- _sfc_main$n as VcExtendedDatetimeRangePicker,
388
+ _sfc_main$1m as VcEntityVerticalCreateForm,
389
+ _sfc_main$1n as VcEntityVerticalEditForm,
390
+ _sfc_main$19 as VcExcelFileUploader,
391
+ _sfc_main$o as VcExtendedDatetimeRangePicker,
384
392
  VcFileUploader,
385
- _sfc_main$V as VcForm,
386
- _sfc_main$W as VcFormItem,
387
- _sfc_main$13 as VcHtmlEditor,
388
- _sfc_main$Y as VcHyperLink,
389
- _sfc_main$2 as VcIcon,
393
+ _sfc_main$Y as VcForm,
394
+ _sfc_main$Z as VcFormItem,
395
+ _sfc_main$17 as VcHtmlEditor,
396
+ _sfc_main$$ as VcHyperLink,
397
+ _sfc_main$3 as VcIcon,
390
398
  VcIconList,
391
- _sfc_main$Z as VcIconPicker,
392
- _sfc_main$16 as VcImageUploader,
393
- _sfc_main$a as VcInfiniteScrollSelect,
394
- _sfc_main$3 as VcInput,
395
- _sfc_main$5 as VcInputError,
396
- _sfc_main$6 as VcInputLabel,
397
- _sfc_main$4 as VcInputNumber,
398
- _sfc_main$12 as VcJsonSchema,
399
+ _sfc_main$10 as VcIconPicker,
400
+ _sfc_main$1a as VcImageUploader,
401
+ _sfc_main$b as VcInfiniteScrollSelect,
402
+ _sfc_main$4 as VcInput,
403
+ _sfc_main$6 as VcInputError,
404
+ _sfc_main$7 as VcInputLabel,
405
+ _sfc_main$5 as VcInputNumber,
406
+ _sfc_main$16 as VcJsonSchema,
399
407
  VcLoading,
400
- _sfc_main$10 as VcMdEditor,
401
- _sfc_main$_ as VcMeterGroup,
402
- _sfc_main$$ as VcMeterGroupLabel,
403
- _sfc_main$t as VcModal,
404
- _sfc_main$U as VcNotification,
408
+ _sfc_main$13 as VcMdEditor,
409
+ _sfc_main$11 as VcMeterGroup,
410
+ _sfc_main$12 as VcMeterGroupLabel,
411
+ _sfc_main$u as VcModal,
412
+ _sfc_main$X as VcNotification,
405
413
  VcNotifySymbol,
406
- _sfc_main$r as VcOtpInput,
407
- _sfc_main$J as VcPagination,
408
- _sfc_main$14 as VcPdfDocument,
409
- _sfc_main$p as VcPhoneInput,
414
+ _sfc_main$s as VcOtpInput,
415
+ _sfc_main$L as VcPagination,
416
+ _sfc_main$18 as VcPdfDocument,
417
+ _sfc_main$q as VcPhoneInput,
410
418
  default14 as VcPlayerPlayStopButton,
411
419
  default12 as VcPlayerPlaybackRate,
412
420
  default13 as VcPlayerPlaybackRatePopup,
413
421
  default15 as VcPlayerSkipButtons,
414
- _sfc_main$v as VcPopover,
415
- _sfc_main$R as VcProgress,
416
- _sfc_main$S as VcProgressCircular,
417
- _sfc_main$e as VcRadio,
418
- _sfc_main$g as VcRadioButtonsGroup,
419
- _sfc_main$f as VcRadioGroup,
420
- _sfc_main$C as VcRadioTabs,
421
- _sfc_main$D as VcRadioTabsNav,
422
- _sfc_main$Q as VcSegmented,
423
- _sfc_main$7 as VcSelect,
424
- _sfc_main$8 as VcSelectGrouped,
425
- _sfc_main$9 as VcSelectOption,
426
- _sfc_main$x as VcSelectPopover,
427
- _sfc_main$18 as VcSipFlow,
428
- _sfc_main$T as VcSkeletonLoader,
429
- _sfc_main$i as VcSlider,
422
+ _sfc_main$w as VcPopover,
423
+ _sfc_main$U as VcProgress,
424
+ _sfc_main$V as VcProgressCircular,
425
+ _sfc_main$f as VcRadio,
426
+ _sfc_main$h as VcRadioButtonsGroup,
427
+ _sfc_main$g as VcRadioGroup,
428
+ _sfc_main$D as VcRadioTabs,
429
+ _sfc_main$E as VcRadioTabsNav,
430
+ _sfc_main$T as VcSegmented,
431
+ _sfc_main$8 as VcSelect,
432
+ _sfc_main$9 as VcSelectGrouped,
433
+ _sfc_main$a as VcSelectOption,
434
+ _sfc_main$y as VcSelectPopover,
435
+ _sfc_main$1c as VcSipFlow,
436
+ _sfc_main$W as VcSkeletonLoader,
437
+ _sfc_main$j as VcSlider,
430
438
  default16 as VcSoundCurrentTime,
431
439
  default17 as VcSoundDuration,
432
- VcSoundPlayer,
440
+ _sfc_main$15 as VcSoundPlayer,
433
441
  default18 as VcSoundPlayerError,
434
442
  default19 as VcSoundPlayerProgress,
435
443
  VcSoundPlayerProvideKey,
436
444
  default20 as VcSoundPlayerWrapper,
437
445
  default21 as VcSoundVolume,
438
- _sfc_main$O as VcSparkline,
439
- _sfc_main$X as VcSplitButton,
440
- _sfc_main$h as VcSwitch,
441
- _sfc_main$11 as VcSystemUserPrompt,
442
- _sfc_main$z as VcTabNav,
443
- _sfc_main$A as VcTabPane,
446
+ _sfc_main$R as VcSparkline,
447
+ _sfc_main$_ as VcSplitButton,
448
+ _sfc_main$i as VcSwitch,
449
+ _sfc_main$14 as VcSystemUserPrompt,
450
+ _sfc_main$A as VcTabNav,
451
+ _sfc_main$B as VcTabPane,
444
452
  VcTabPaneProvideKey,
445
- VcTable,
446
- _sfc_main$y as VcTabs,
453
+ _sfc_main$K as VcTable,
454
+ _sfc_main$z as VcTabs,
447
455
  VcTabsProvideKey,
448
- _sfc_main$N as VcTag,
449
- _sfc_main$q as VcTagInput,
450
- _sfc_main$o as VcTimeInput,
451
- _sfc_main$1 as VcToggleButton,
452
- _sfc_main$17 as VcTour,
453
- _sfc_main$M as VcTransfer,
454
- _sfc_main$K as VcTree,
455
- _sfc_main$L as VcTreeSelect,
456
- _sfc_main$B as VcVerticalTabs,
457
- _sfc_main$P as VcViewSwitcher,
458
- _sfc_main$G as VcWizard,
456
+ _sfc_main$P as VcTag,
457
+ _sfc_main$r as VcTagInput,
458
+ _sfc_main$p as VcTimeInput,
459
+ _sfc_main$2 as VcToggleButton,
460
+ _sfc_main$1b as VcTour,
461
+ _sfc_main$O as VcTransfer,
462
+ _sfc_main$M as VcTree,
463
+ _sfc_main$N as VcTreeSelect,
464
+ _sfc_main$C as VcVerticalTabs,
465
+ _sfc_main$S as VcViewSwitcher,
466
+ _sfc_main$H as VcWizard,
459
467
  default9 as ZIndexUtils,
460
468
  add,
461
469
  addDays,