@voicenter-team/voicenter-ui-plus 3.2.0 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +502 -459
- package/library/assets/components/VcCheckbox/VcCheckboxButton.css +1 -0
- package/library/components/VcCheckbox/VcCheckbox.vue.mjs +1 -1
- package/library/components/VcCheckbox/VcCheckboxButton.vue.mjs +101 -0
- package/library/components/VcCheckbox/VcCheckboxButton.vue3.mjs +5 -0
- package/library/components/VcCheckbox/VcCheckboxButtonGroup.vue.mjs +89 -0
- package/library/components/VcCheckbox/VcCheckboxButtonGroup.vue2.mjs +4 -0
- package/library/components/VcDatePicker/VcDatePicker.vue.mjs +1 -1
- package/library/components/VcDropdown/VcDropdownItem.vue.mjs +1 -1
- package/library/components/VcForm/VcForm.vue.mjs +1 -1
- package/library/components/VcForm/VcFormItem.vue.mjs +1 -1
- package/library/components/VcHtmlEditor/VcHtmlEditorToolbar.vue.mjs +1 -1
- package/library/components/VcInput/VcInput.vue.mjs +1 -1
- package/library/components/VcMdEditor/VcMdEditor.vue.mjs +1 -1
- package/library/components/VcMdEditor/VcMdEditorToolbar.vue.mjs +1 -1
- package/library/components/VcRadio/VcRadio.vue.mjs +1 -1
- package/library/components/VcSelect/VcSelect.vue.mjs +1 -1
- package/library/components/VcSlider/VcSlider.vue.mjs +1 -1
- package/library/index.mjs +289 -284
- package/library/index.mjs.br +0 -0
- package/library/index.mjs.gz +0 -0
- package/library/plugin-components.gen.mjs +294 -0
- package/library/plugin.mjs +291 -377
- package/library/plugin.mjs.br +0 -0
- package/library/plugin.mjs.gz +0 -0
- package/library/style.css +2 -0
- package/library/style.css.br +0 -0
- package/library/style.css.gz +0 -0
- package/library/types/components/VcCheckbox/VcCheckboxButton.vue.d.ts +86 -0
- package/library/types/components/VcCheckbox/VcCheckboxButtonGroup.vue.d.ts +86 -0
- package/library/types/components/exports.d.ts +48 -2
- package/library/types/components.gen.d.ts +105 -0
- package/library/types/index.d.ts +1 -103
- package/library/types/plugin-components.gen.d.ts +2 -0
- package/library/utils/jsonSchema/helpers.mjs +1 -1
- package/package.json +10 -2
- /package/library/assets/node_modules/element-plus/theme-chalk/src/{dropdown-item.css → tooltip.css} +0 -0
package/library/index.mjs
CHANGED
|
@@ -1,173 +1,169 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { VcCollapseProvideKey, VcEditableTabsDataToken, VcEntityListTableExternalPaginateToken, VcEntityToken, VcSoundPlayerProvideKey, VcTabPaneProvideKey, VcTabsProvideKey } from "./tokens/tokens.mjs";
|
|
2
|
+
import { isIconComponent, isIconString, isVueComponent } from "./types/icons.types.mjs";
|
|
3
|
+
import { isGroupParameter } from "./types/VcMdEditor.types.mjs";
|
|
4
|
+
import { CHANGE_EVENT, CREATE_TAB_QUERY_VALUE, DEFAULT_COMPONENT_SIZE, EDITABLE_TAB_SUB_SECTION_QUERY_PARAM_NAME, EVENT_CODE, INPUT_EVENT, LIST_TAB_QUERY_VALUE, TEXT_COLORS, UPDATE_MODEL_EVENT, componentColors, componentSizes, iconSizes, isComponentColor, textSizes } from "./enum/constants.mjs";
|
|
5
|
+
import { CLASS_FOR_COLOR, CLASS_FOR_ICON_COLOR, CLASS_FOR_ICON_SIZE, DEFAULT_COLOR, DEFAULT_ICON_SIZE, DEFAULT_SIZE } from "./enum/inputDefaults.mjs";
|
|
6
|
+
import { default as default2 } from "./enum/dataTestAttributes.mjs";
|
|
7
|
+
import { default as default3 } from "./enum/countries.mjs";
|
|
8
|
+
import { VcIconList } from "./enum/icons.mjs";
|
|
9
|
+
import { default as default4 } from "./utils/makeDataTestAttributeValue.mjs";
|
|
10
|
+
import { mountPluginOverlays } from "./utils/mountPluginOverlays.mjs";
|
|
11
|
+
import { convertToUnit, getFileSize, getRefElement, resolveFieldData } from "./utils/helpers.mjs";
|
|
12
|
+
import { default as default5 } from "./utils/UniqueComponentId.mjs";
|
|
13
|
+
import { default as default6 } from "./composables/input/useInputColor.mjs";
|
|
14
|
+
import { isOptionObjectValueType, default as default7 } from "./composables/option/useOptionMethods.mjs";
|
|
15
|
+
import { ClickOutside } from "element-plus";
|
|
16
|
+
import { resize } from "./directives/resize.mjs";
|
|
17
|
+
import { default as default8, NotifyService, VcNotifySymbol } from "./services/VcNotifyService.mjs";
|
|
18
|
+
import { default as default9 } from "./utils/ZIndexUtils.mjs";
|
|
19
|
+
import { tVU, tVUManage } from "./localization/index.mjs";
|
|
20
|
+
import { confirmModalState, default as default10 } from "./composables/useConfirmModal.mjs";
|
|
21
|
+
import { confirmPopupState, default as default11 } from "./composables/useConfirmPopup.mjs";
|
|
22
|
+
import { add, addDays, addFp, format, formatDate, getHours, getMinutes, getSeconds, isAfter, isBefore, isSameAfter, isSameBefore, parseDate, setTime, sub, subFp, subtractDays } from "./utils/dateTime.mjs";
|
|
23
|
+
import { useRTL } from "./composables/useRTL.mjs";
|
|
24
|
+
import { buildMustacheSnippet } from "./components/VcMdEditor/buildMustacheSnippet.mjs";
|
|
25
|
+
import { BaseEntityService } from "./entity/services/BaseEntityService.mjs";
|
|
26
|
+
import { default as default12 } from "./entity/composable/useEditableTabs.mjs";
|
|
27
|
+
import { useEntityListTableInject, useEntityListTableProvide } from "./entity/composable/useEntityListTableExternalPaginate.mjs";
|
|
28
|
+
import { useTabsEditableDataInject, useTabsEditableDataProvide } from "./entity/composable/useEntityTabsProvideInject.mjs";
|
|
29
|
+
import { useEntityInject, useEntityProvide } from "./entity/composable/useEntityProvideInject.mjs";
|
|
30
|
+
import { ALIAS_ITEM_SPACE, COLUMN_ARROW_COLORS, DEFAULT_COLOR_ARROW, DEFAULT_COLOR_LABEL, DEFAULT_COLOR_LINE, HEADER_LINE_OFFSET, HEADER_NAME_DY, ICONS, MIN_HEIGHT, MIN_V_WIDTH, SERVER_ICONS, STATUS_COLORS, SVG_BOTTOM_SPACE, VERTICAL_SPACE, defaultOptions } from "./components/VcSipFlow/sip-flow.options.mjs";
|
|
31
|
+
import { default as default13 } from "./components/VcAutocomplete/VcAutocomplete.vue.mjs";
|
|
32
|
+
/* empty css */
|
|
33
|
+
import { default as default14 } from "./entity/components/Form/VcBaseVerticalForm.vue.mjs";
|
|
34
|
+
/* empty css */
|
|
35
|
+
import { default as default15 } from "./components/VcButton/VcButton.vue.mjs";
|
|
2
36
|
/* empty css */
|
|
3
|
-
import { default as
|
|
37
|
+
import { default as default16 } from "./components/VcButton/VcButtonIcon.vue.mjs";
|
|
4
38
|
/* empty css */
|
|
5
|
-
import { default as
|
|
6
|
-
/* empty css
|
|
7
|
-
import { default as
|
|
8
|
-
/* empty css
|
|
9
|
-
import { default as
|
|
39
|
+
import { default as default17 } from "./components/VcCard/VcCard.vue.mjs";
|
|
40
|
+
/* empty css */
|
|
41
|
+
import { default as default18 } from "./components/VcCheckbox/VcCheckbox.vue.mjs";
|
|
42
|
+
/* empty css */
|
|
43
|
+
import { default as default19 } from "./components/VcCheckbox/VcCheckboxButton.vue.mjs";
|
|
10
44
|
/* empty css */
|
|
11
|
-
import { default as
|
|
12
|
-
|
|
13
|
-
import { default as
|
|
14
|
-
/* empty css */
|
|
15
|
-
import { default as default9 } from "./components/VcSelect/VcSelect.vue.mjs";
|
|
16
|
-
/* empty css */
|
|
17
|
-
import { default as default10 } from "./components/VcSelect/VcSelectGrouped.vue.mjs";
|
|
18
|
-
import { default as default11 } from "./components/VcSelect/VcSelectOption.vue.mjs";
|
|
45
|
+
import { default as default20 } from "./components/VcCheckbox/VcCheckboxButtonGroup.vue.mjs";
|
|
46
|
+
import { default as default21 } from "./components/VcCheckboxGroup/VcCheckboxGroup.vue.mjs";
|
|
47
|
+
import { default as default22 } from "./components/VcCodeBlock/VcCodeBlock.vue.mjs";
|
|
19
48
|
/* empty css */
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as
|
|
22
|
-
/* empty css */
|
|
23
|
-
import { default as default14 } from "./components/VcCheckbox/VcCheckbox.vue.mjs";
|
|
24
|
-
/* empty css */
|
|
25
|
-
import { default as default15 } from "./components/VcCheckboxGroup/VcCheckboxGroup.vue.mjs";
|
|
26
|
-
import { default as default16 } from "./components/VcRadio/VcRadio.vue.mjs";
|
|
27
|
-
/* empty css */
|
|
28
|
-
import { default as default17 } from "./components/VcRadioGroup/VcRadioGroup.vue.mjs";
|
|
49
|
+
import { default as default23 } from "./components/VcCollapse/VcCollapse.vue.mjs";
|
|
50
|
+
import { default as default24 } from "./components/VcCollapse/VcCollapseItem.vue.mjs";
|
|
29
51
|
/* empty css */
|
|
30
|
-
import { default as
|
|
31
|
-
/* empty css */
|
|
32
|
-
import { default as default19 } from "./components/VcSwitch/VcSwitch.vue.mjs";
|
|
33
|
-
/* empty css */
|
|
34
|
-
import { default as default20 } from "./components/VcSlider/VcSlider.vue.mjs";
|
|
35
|
-
/* empty css */
|
|
36
|
-
import { default as default21 } from "./components/VcColorPicker/VcColorPicker.vue.mjs";
|
|
52
|
+
import { default as default25 } from "./components/VcColorPicker/VcColorPicker.vue.mjs";
|
|
37
53
|
/* empty css */
|
|
38
|
-
import { default as
|
|
54
|
+
import { default as default26 } from "./components/VcModal/VcConfirmModal.vue.mjs";
|
|
55
|
+
import { default as default27 } from "./components/VcPopover/VcConfirmPopover.vue.mjs";
|
|
56
|
+
/* empty css */
|
|
57
|
+
import { default as default28 } from "./components/VcDatePicker/VcDatePicker.vue.mjs";
|
|
39
58
|
/* empty css */
|
|
40
|
-
import { default as
|
|
59
|
+
import { default as default29 } from "./components/VcDatePickerPanel/VcDatePickerPanel.vue.mjs";
|
|
41
60
|
/* empty css */
|
|
42
|
-
import { default as
|
|
61
|
+
import { default as default30 } from "./components/VcDatetimeRangePicker/VcDatetimeRangePicker.vue.mjs";
|
|
43
62
|
/* empty css */
|
|
44
|
-
import { default as
|
|
63
|
+
import { default as default31 } from "./components/VcDelimitedList/VcDelimitedList.vue.mjs";
|
|
64
|
+
/* empty css */
|
|
65
|
+
import { default as default32 } from "./components/VcDropdown/VcDropdown.vue.mjs";
|
|
66
|
+
/* empty css */
|
|
67
|
+
import { default as default33 } from "./components/VcDropdown/VcDropdownItem.vue.mjs";
|
|
68
|
+
/* empty css */
|
|
69
|
+
import { default as default34 } from "./entity/components/Button/VcEntityAddButton.vue.mjs";
|
|
70
|
+
import { default as default35 } from "./entity/components/Button/VcEntityCancelButton.vue.mjs";
|
|
71
|
+
import { default as default36 } from "./entity/components/Button/VcEntityDeleteIconButton.vue.mjs";
|
|
72
|
+
import { default as default37 } from "./entity/components/Button/VcEntityEditIconButton.vue.mjs";
|
|
73
|
+
import { default as default38 } from "./entity/components/Form/VcEntityEditPageForm.vue.mjs";
|
|
74
|
+
/* empty css */
|
|
75
|
+
import { default as default39 } from "./entity/components/Tabs/VcEntityEditableTabs.vue.mjs";
|
|
76
|
+
/* empty css */
|
|
77
|
+
import { default as default40 } from "./entity/components/Table/VcEntityListTable.vue.mjs";
|
|
78
|
+
/* empty css */
|
|
79
|
+
import { default as default41 } from "./entity/components/Button/VcEntityRestoreButton.vue.mjs";
|
|
80
|
+
import { default as default42 } from "./entity/components/Button/VcEntityStatusButton.vue.mjs";
|
|
81
|
+
import { default as default43 } from "./entity/components/Form/VcEntityVerticalCreateForm.vue.mjs";
|
|
82
|
+
import { default as default44 } from "./entity/components/Form/VcEntityVerticalEditForm.vue.mjs";
|
|
83
|
+
import { default as default45 } from "./components/VcExcelUploader/VcExcelFileUploader.vue.mjs";
|
|
84
|
+
import { default as default46 } from "./components/VcExtendedDatetimeRangePicker/VcExtendedDatetimeRangePicker.vue.mjs";
|
|
45
85
|
/* empty css */
|
|
46
|
-
import { default as
|
|
47
|
-
|
|
48
|
-
|
|
86
|
+
import { default as default47 } from "./components/VcForm/VcForm.vue.mjs";
|
|
87
|
+
import { default as default48 } from "./components/VcForm/VcFormItem.vue.mjs";
|
|
88
|
+
/* empty css */
|
|
89
|
+
import { default as default49 } from "./components/VcHtmlEditor/VcHtmlEditor.vue.mjs";
|
|
49
90
|
/* empty css */
|
|
50
|
-
import { default as
|
|
51
|
-
/* empty css */
|
|
52
|
-
import { default as default29 } from "./components/VcOtpInput/VcOtpInput.vue.mjs";
|
|
53
|
-
/* empty css */
|
|
54
|
-
import { default as default30 } from "./components/VcFileUploader/VcFileUploader.vue.mjs";
|
|
55
|
-
import { default as default31 } from "./components/VcCard/VcCard.vue.mjs";
|
|
56
|
-
/* empty css */
|
|
57
|
-
import { default as default32 } from "./components/VcCodeBlock/VcCodeBlock.vue.mjs";
|
|
91
|
+
import { default as default50 } from "./components/VcHyperLink/VcHyperLink.vue.mjs";
|
|
58
92
|
/* empty css */
|
|
59
|
-
import { default as
|
|
93
|
+
import { default as default51 } from "./components/VcIcon/VcIcon.vue.mjs";
|
|
94
|
+
/* empty css */
|
|
95
|
+
import { default as default52 } from "./components/VcIconPicker/VcIconPicker.vue.mjs";
|
|
96
|
+
/* empty css */
|
|
97
|
+
import { default as default53 } from "./components/VcImageUploader/VcImageUploader.vue.mjs";
|
|
98
|
+
/* empty css */
|
|
99
|
+
import { default as default54 } from "./components/VcSelect/VcInfiniteScrollSelect.vue.mjs";
|
|
100
|
+
import { default as default55 } from "./components/VcInput/VcInput.vue.mjs";
|
|
60
101
|
/* empty css */
|
|
61
|
-
import { default as
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
102
|
+
import { default as default56 } from "./components/VcForm/UiComponents/VcInputError.vue.mjs";
|
|
103
|
+
/* empty css */
|
|
104
|
+
import { default as default57 } from "./components/VcForm/UiComponents/VcInputLabel.vue.mjs";
|
|
105
|
+
/* empty css */
|
|
106
|
+
import { default as default58 } from "./components/VcInputNumber/VcInputNumber.vue.mjs";
|
|
107
|
+
/* empty css */
|
|
108
|
+
import { default as default59 } from "./components/VcJsonSchema/VcJsonSchema.vue.mjs";
|
|
67
109
|
/* empty css */
|
|
68
|
-
import { default as
|
|
69
|
-
|
|
70
|
-
|
|
110
|
+
import { default as default60 } from "./components/VcMdEditor/VcMdEditor.vue.mjs";
|
|
111
|
+
import { default as default61 } from "./components/VcMeterGroup/VcMeterGroup.vue.mjs";
|
|
112
|
+
/* empty css */
|
|
113
|
+
import { default as default62 } from "./components/VcMeterGroup/VcMeterGroupLabel.vue.mjs";
|
|
114
|
+
import { default as default63 } from "./components/VcModal/VcModal.vue.mjs";
|
|
71
115
|
/* empty css */
|
|
72
|
-
import { default as
|
|
73
|
-
/* empty css */
|
|
74
|
-
import { default as default41 } from "./components/VcVerticalTabs/VcVerticalTabs.vue.mjs";
|
|
116
|
+
import { default as default64 } from "./components/VcNotification/VcNotification.vue.mjs";
|
|
75
117
|
/* empty css */
|
|
76
|
-
import { default as
|
|
77
|
-
/* empty css */
|
|
78
|
-
import { default as default43 } from "./components/VcRadioTabs/UiComponents/VcRadioTabsNav.vue.mjs";
|
|
79
|
-
/* empty css */
|
|
80
|
-
import { default as default44 } from "./components/VcCollapse/VcCollapse.vue.mjs";
|
|
81
|
-
import { default as default45 } from "./components/VcCollapse/VcCollapseItem.vue.mjs";
|
|
82
|
-
/* empty css */
|
|
83
|
-
import { default as default46 } from "./components/VcWizard/VcWizard.vue.mjs";
|
|
84
|
-
/* empty css */
|
|
85
|
-
import { default as default47 } from "./components/VcDropdown/VcDropdown.vue.mjs";
|
|
118
|
+
import { default as default65 } from "./components/VcOtpInput/VcOtpInput.vue.mjs";
|
|
86
119
|
/* empty css */
|
|
87
|
-
import { default as
|
|
120
|
+
import { default as default66 } from "./components/VcPagination/VcPagination.vue.mjs";
|
|
88
121
|
/* empty css */
|
|
89
|
-
import { default as
|
|
90
|
-
/* empty css */
|
|
91
|
-
/* empty css */
|
|
92
|
-
import { default as default50 } from "./components/VcPagination/VcPagination.vue.mjs";
|
|
122
|
+
import { default as default67 } from "./components/VcPdfViewer/VcPdfDocument.vue.mjs";
|
|
93
123
|
/* empty css */
|
|
94
|
-
import { default as
|
|
95
|
-
/* empty css
|
|
96
|
-
import { default as
|
|
97
|
-
|
|
124
|
+
import { default as default68 } from "./components/VcPhoneInput/VcPhoneInput.vue.mjs";
|
|
125
|
+
/* empty css */
|
|
126
|
+
import { default as default69 } from "./components/VcSoundplayer/VcPlayerPlayStopButton.vue.mjs";
|
|
127
|
+
import { default as default70 } from "./components/VcSoundplayer/VcPlayerPlaybackRate.vue.mjs";
|
|
128
|
+
/* empty css */
|
|
129
|
+
import { default as default71 } from "./components/VcSoundplayer/VcPlayerPlaybackRatePopup.vue.mjs";
|
|
130
|
+
import { default as default72 } from "./components/VcSoundplayer/VcPlayerSkipButtons.vue.mjs";
|
|
131
|
+
/* empty css */
|
|
132
|
+
import { default as default73 } from "./components/VcPluginOverlays/VcPluginOverlays.vue.mjs";
|
|
133
|
+
import { default as default74 } from "./components/VcPopover/VcPopover.vue.mjs";
|
|
98
134
|
/* empty css */
|
|
99
|
-
import { default as
|
|
135
|
+
import { default as default75 } from "./components/VcProgress/VcProgress.vue.mjs";
|
|
100
136
|
/* empty css */
|
|
101
|
-
import { default as
|
|
102
|
-
/* empty css */
|
|
103
|
-
import { default as default55 } from "./components/VcDelimitedList/VcDelimitedList.vue.mjs";
|
|
104
|
-
/* empty css */
|
|
105
|
-
import { default as default56 } from "./components/VcSparkline/VcSparkline.vue.mjs";
|
|
106
|
-
import { default as default57 } from "./components/VcViewSwitcher/VcViewSwitcher.vue.mjs";
|
|
137
|
+
import { default as default76 } from "./components/VcProgress/VcProgressCircular.vue.mjs";
|
|
107
138
|
/* empty css */
|
|
108
|
-
import { default as
|
|
139
|
+
import { default as default77 } from "./components/VcRadio/VcRadio.vue.mjs";
|
|
140
|
+
/* empty css */
|
|
141
|
+
import { default as default78 } from "./components/VcRadioButtons/VcRadioButtonsGroup.vue.mjs";
|
|
142
|
+
/* empty css */
|
|
143
|
+
import { default as default79 } from "./components/VcRadioGroup/VcRadioGroup.vue.mjs";
|
|
144
|
+
/* empty css */
|
|
145
|
+
import { default as default80 } from "./components/VcRadioTabs/VcRadioTabs.vue.mjs";
|
|
109
146
|
/* empty css */
|
|
110
|
-
import { default as
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
import { default as default62 } from "./components/VcSkeletonLoader/VcSkeletonLoader.vue.mjs";
|
|
116
|
-
import { default as default63 } from "./components/VcNotification/VcNotification.vue.mjs";
|
|
117
|
-
/* empty css */
|
|
118
|
-
import { default as default64 } from "./components/VcPluginOverlays/VcPluginOverlays.vue.mjs";
|
|
119
|
-
import { default as default65 } from "./components/VcForm/VcForm.vue.mjs";
|
|
120
|
-
import { default as default66 } from "./components/VcForm/VcFormItem.vue.mjs";
|
|
147
|
+
import { default as default81 } from "./components/VcRadioTabs/UiComponents/VcRadioTabsNav.vue.mjs";
|
|
148
|
+
/* empty css */
|
|
149
|
+
import { default as default82 } from "./components/VcSegmented/VcSegmented.vue.mjs";
|
|
150
|
+
/* empty css */
|
|
151
|
+
import { default as default83 } from "./components/VcSelect/VcSelect.vue.mjs";
|
|
121
152
|
/* empty css */
|
|
122
|
-
import { default as
|
|
123
|
-
|
|
124
|
-
import { default as default68 } from "./components/VcHyperLink/VcHyperLink.vue.mjs";
|
|
153
|
+
import { default as default84 } from "./components/VcSelect/VcSelectGrouped.vue.mjs";
|
|
154
|
+
import { default as default85 } from "./components/VcSelect/VcSelectOption.vue.mjs";
|
|
125
155
|
/* empty css */
|
|
126
|
-
import { default as
|
|
127
|
-
/* empty css */
|
|
128
|
-
import { default as default70 } from "./components/VcIconPicker/VcIconPicker.vue.mjs";
|
|
156
|
+
import { default as default86 } from "./components/VcPopover/VcSelectPopover.vue.mjs";
|
|
129
157
|
/* empty css */
|
|
130
|
-
import { default as
|
|
131
|
-
/* empty css
|
|
132
|
-
import { default as
|
|
133
|
-
import { default as
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
import { default as
|
|
158
|
+
import { default as default87 } from "./components/VcSipFlow/VcSipFlow.vue.mjs";
|
|
159
|
+
/* empty css */
|
|
160
|
+
import { default as default88 } from "./components/VcSkeletonLoader/VcSkeletonLoader.vue.mjs";
|
|
161
|
+
import { default as default89 } from "./components/VcSlider/VcSlider.vue.mjs";
|
|
162
|
+
/* empty css */
|
|
163
|
+
import { default as default90 } from "./components/VcSoundplayer/VcSoundCurrentTime.vue.mjs";
|
|
164
|
+
import { default as default91 } from "./components/VcSoundplayer/VcSoundDuration.vue.mjs";
|
|
165
|
+
import { default as default92 } from "./components/VcSoundplayer/VcSoundPlayer.vue.mjs";
|
|
137
166
|
/* empty css */
|
|
138
|
-
import { default as default76 } from "./components/VcJsonSchema/VcJsonSchema.vue.mjs";
|
|
139
|
-
/* empty css */
|
|
140
|
-
import { VcCollapseProvideKey, VcEditableTabsDataToken, VcEntityListTableExternalPaginateToken, VcEntityToken, VcSoundPlayerProvideKey, VcTabPaneProvideKey, VcTabsProvideKey } from "./tokens/tokens.mjs";
|
|
141
|
-
import { isIconComponent, isIconString, isVueComponent } from "./types/icons.types.mjs";
|
|
142
|
-
import { isGroupParameter } from "./types/VcMdEditor.types.mjs";
|
|
143
|
-
import { CHANGE_EVENT, CREATE_TAB_QUERY_VALUE, DEFAULT_COMPONENT_SIZE, EDITABLE_TAB_SUB_SECTION_QUERY_PARAM_NAME, EVENT_CODE, INPUT_EVENT, LIST_TAB_QUERY_VALUE, TEXT_COLORS, UPDATE_MODEL_EVENT, componentColors, componentSizes, iconSizes, isComponentColor, textSizes } from "./enum/constants.mjs";
|
|
144
|
-
import { CLASS_FOR_COLOR, CLASS_FOR_ICON_COLOR, CLASS_FOR_ICON_SIZE, DEFAULT_COLOR, DEFAULT_ICON_SIZE, DEFAULT_SIZE } from "./enum/inputDefaults.mjs";
|
|
145
|
-
import { default as default77 } from "./enum/dataTestAttributes.mjs";
|
|
146
|
-
import { default as default78 } from "./enum/countries.mjs";
|
|
147
|
-
import { VcIconList } from "./enum/icons.mjs";
|
|
148
|
-
import { default as default79 } from "./utils/makeDataTestAttributeValue.mjs";
|
|
149
|
-
import { mountPluginOverlays } from "./utils/mountPluginOverlays.mjs";
|
|
150
|
-
import { convertToUnit, getFileSize, getRefElement, resolveFieldData } from "./utils/helpers.mjs";
|
|
151
|
-
import { default as default80 } from "./utils/UniqueComponentId.mjs";
|
|
152
|
-
import { default as default81 } from "./composables/input/useInputColor.mjs";
|
|
153
|
-
import { isOptionObjectValueType, default as default82 } from "./composables/option/useOptionMethods.mjs";
|
|
154
|
-
import { ClickOutside } from "element-plus";
|
|
155
|
-
import { resize } from "./directives/resize.mjs";
|
|
156
|
-
import { default as default83, NotifyService, VcNotifySymbol } from "./services/VcNotifyService.mjs";
|
|
157
|
-
import { default as default84 } from "./utils/ZIndexUtils.mjs";
|
|
158
|
-
import { tVU, tVUManage } from "./localization/index.mjs";
|
|
159
|
-
import { confirmModalState, default as default85 } from "./composables/useConfirmModal.mjs";
|
|
160
|
-
import { confirmPopupState, default as default86 } from "./composables/useConfirmPopup.mjs";
|
|
161
|
-
import { add, addDays, addFp, format, formatDate, getHours, getMinutes, getSeconds, isAfter, isBefore, isSameAfter, isSameBefore, parseDate, setTime, sub, subFp, subtractDays } from "./utils/dateTime.mjs";
|
|
162
|
-
import { useRTL } from "./composables/useRTL.mjs";
|
|
163
|
-
import { default as default87 } from "./components/VcSoundplayer/VcPlayerPlaybackRate.vue.mjs";
|
|
164
|
-
/* empty css */
|
|
165
|
-
import { default as default88 } from "./components/VcSoundplayer/VcPlayerPlaybackRatePopup.vue.mjs";
|
|
166
|
-
import { default as default89 } from "./components/VcSoundplayer/VcPlayerPlayStopButton.vue.mjs";
|
|
167
|
-
import { default as default90 } from "./components/VcSoundplayer/VcPlayerSkipButtons.vue.mjs";
|
|
168
|
-
/* empty css */
|
|
169
|
-
import { default as default91 } from "./components/VcSoundplayer/VcSoundCurrentTime.vue.mjs";
|
|
170
|
-
import { default as default92 } from "./components/VcSoundplayer/VcSoundDuration.vue.mjs";
|
|
171
167
|
import { default as default93 } from "./components/VcSoundplayer/VcSoundPlayerError.vue.mjs";
|
|
172
168
|
import { default as default94 } from "./components/VcSoundplayer/VcSoundPlayerProgress.vue.mjs";
|
|
173
169
|
/* empty css */
|
|
@@ -175,41 +171,48 @@ import { default as default95 } from "./components/VcSoundplayer/VcSoundPlayerWr
|
|
|
175
171
|
/* empty css */
|
|
176
172
|
import { default as default96 } from "./components/VcSoundplayer/VcSoundVolume.vue.mjs";
|
|
177
173
|
/* empty css */
|
|
178
|
-
import {
|
|
179
|
-
import { default as
|
|
180
|
-
/* empty css
|
|
181
|
-
import { default as
|
|
182
|
-
/* empty css
|
|
183
|
-
import { default as
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
174
|
+
import { default as default97 } from "./components/VcSparkline/VcSparkline.vue.mjs";
|
|
175
|
+
import { default as default98 } from "./components/VcSplitButton/VcSplitButton.vue.mjs";
|
|
176
|
+
/* empty css */
|
|
177
|
+
import { default as default99 } from "./components/VcSwitch/VcSwitch.vue.mjs";
|
|
178
|
+
/* empty css */
|
|
179
|
+
import { default as default100 } from "./components/VcSystemUserPrompt/VcSystemUserPrompt.vue.mjs";
|
|
180
|
+
/* empty css */
|
|
181
|
+
import { default as default101 } from "./components/VcTabs/VcTabNav.vue.mjs";
|
|
182
|
+
/* empty css */
|
|
183
|
+
import { default as default102 } from "./components/VcTabs/VcTabPane.vue.mjs";
|
|
184
|
+
/* empty css */
|
|
185
|
+
import { default as default103 } from "./components/VcTable/VcTable.vue.mjs";
|
|
186
|
+
/* empty css */
|
|
187
|
+
/* empty css */
|
|
188
|
+
import { default as default104 } from "./components/VcTabs/VcTabs.vue.mjs";
|
|
187
189
|
/* empty css */
|
|
188
|
-
import { default as
|
|
190
|
+
import { default as default105 } from "./components/VcTag/VcTag.vue.mjs";
|
|
191
|
+
/* empty css */
|
|
192
|
+
import { default as default106 } from "./components/VcTagInput/VcTagInput.vue.mjs";
|
|
193
|
+
/* empty css */
|
|
194
|
+
import { default as default107 } from "./components/VcTimeInput/VcTimeInput.vue.mjs";
|
|
195
|
+
/* empty css */
|
|
196
|
+
import { default as default108 } from "./components/VcButton/VcToggleButton.vue.mjs";
|
|
197
|
+
/* empty css */
|
|
198
|
+
import { default as default109 } from "./components/VcTour/VcTour.vue.mjs";
|
|
199
|
+
/* empty css */
|
|
200
|
+
import { default as default110 } from "./components/VcTransfer/VcTransfer.vue.mjs";
|
|
201
|
+
/* empty css */
|
|
202
|
+
import { default as default111 } from "./components/VcTree/VcTree.vue.mjs";
|
|
203
|
+
/* empty css */
|
|
204
|
+
import { default as default112 } from "./components/VcTree/VcTreeSelect.vue.mjs";
|
|
189
205
|
/* empty css */
|
|
190
|
-
|
|
191
|
-
import { default as
|
|
192
|
-
|
|
193
|
-
import { default as
|
|
194
|
-
|
|
195
|
-
import { default as
|
|
196
|
-
|
|
197
|
-
/* empty css */
|
|
198
|
-
import { default as default110 } from "./entity/components/Table/VcEntityListTable.vue.mjs";
|
|
199
|
-
/* empty css */
|
|
200
|
-
import { default as default111 } from "./entity/components/Form/VcBaseVerticalForm.vue.mjs";
|
|
201
|
-
/* empty css */
|
|
202
|
-
import { default as default112 } from "./entity/components/Form/VcEntityVerticalCreateForm.vue.mjs";
|
|
203
|
-
import { default as default113 } from "./entity/components/Form/VcEntityVerticalEditForm.vue.mjs";
|
|
204
|
-
import { default as default114 } from "./entity/components/Form/VcEntityEditPageForm.vue.mjs";
|
|
205
|
-
/* empty css */
|
|
206
|
-
import { BaseEntityService } from "./entity/services/BaseEntityService.mjs";
|
|
207
|
-
import { default as default115 } from "./entity/composable/useEditableTabs.mjs";
|
|
208
|
-
import { useEntityListTableInject, useEntityListTableProvide } from "./entity/composable/useEntityListTableExternalPaginate.mjs";
|
|
209
|
-
import { useTabsEditableDataInject, useTabsEditableDataProvide } from "./entity/composable/useEntityTabsProvideInject.mjs";
|
|
210
|
-
import { useEntityInject, useEntityProvide } from "./entity/composable/useEntityProvideInject.mjs";
|
|
211
|
-
import { ALIAS_ITEM_SPACE, COLUMN_ARROW_COLORS, DEFAULT_COLOR_ARROW, DEFAULT_COLOR_LABEL, DEFAULT_COLOR_LINE, HEADER_LINE_OFFSET, HEADER_NAME_DY, ICONS, MIN_HEIGHT, MIN_V_WIDTH, SERVER_ICONS, STATUS_COLORS, SVG_BOTTOM_SPACE, VERTICAL_SPACE, defaultOptions } from "./components/VcSipFlow/sip-flow.options.mjs";
|
|
206
|
+
/* empty css */
|
|
207
|
+
import { default as default113 } from "./components/VcVerticalTabs/VcVerticalTabs.vue.mjs";
|
|
208
|
+
/* empty css */
|
|
209
|
+
import { default as default114 } from "./components/VcViewSwitcher/VcViewSwitcher.vue.mjs";
|
|
210
|
+
/* empty css */
|
|
211
|
+
import { default as default115 } from "./components/VcWizard/VcWizard.vue.mjs";
|
|
212
|
+
/* empty css */
|
|
212
213
|
export * from "element-plus/es/components/form/src/constants";
|
|
214
|
+
import { default as default116 } from "./components/VcFileUploader/VcFileUploader.vue.mjs";
|
|
215
|
+
import { default as default117 } from "./components/VcLoading/VcLoading.vue.mjs";
|
|
213
216
|
export {
|
|
214
217
|
ALIAS_ITEM_SPACE,
|
|
215
218
|
BaseEntityService,
|
|
@@ -235,139 +238,141 @@ export {
|
|
|
235
238
|
LIST_TAB_QUERY_VALUE,
|
|
236
239
|
MIN_HEIGHT,
|
|
237
240
|
MIN_V_WIDTH,
|
|
238
|
-
|
|
241
|
+
default8 as NotificationService,
|
|
239
242
|
NotifyService,
|
|
240
243
|
SERVER_ICONS,
|
|
241
244
|
STATUS_COLORS,
|
|
242
245
|
SVG_BOTTOM_SPACE,
|
|
243
246
|
TEXT_COLORS,
|
|
244
247
|
UPDATE_MODEL_EVENT,
|
|
245
|
-
|
|
248
|
+
default5 as UniqueComponentId,
|
|
246
249
|
VERTICAL_SPACE,
|
|
247
250
|
default13 as VcAutocomplete,
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
251
|
+
default14 as VcBaseVerticalForm,
|
|
252
|
+
default15 as VcButton,
|
|
253
|
+
default16 as VcButtonIcon,
|
|
254
|
+
default17 as VcCard,
|
|
255
|
+
default18 as VcCheckbox,
|
|
256
|
+
default19 as VcCheckboxButton,
|
|
257
|
+
default20 as VcCheckboxButtonGroup,
|
|
258
|
+
default21 as VcCheckboxGroup,
|
|
259
|
+
default22 as VcCodeBlock,
|
|
260
|
+
default23 as VcCollapse,
|
|
261
|
+
default24 as VcCollapseItem,
|
|
257
262
|
VcCollapseProvideKey,
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
263
|
+
default25 as VcColorPicker,
|
|
264
|
+
default26 as VcConfirmModal,
|
|
265
|
+
default27 as VcConfirmPopover,
|
|
266
|
+
default28 as VcDatePicker,
|
|
267
|
+
default29 as VcDatePickerPanel,
|
|
268
|
+
default30 as VcDatetimeRangePicker,
|
|
269
|
+
default31 as VcDelimitedList,
|
|
270
|
+
default32 as VcDropdown,
|
|
271
|
+
default33 as VcDropdownItem,
|
|
267
272
|
VcEditableTabsDataToken,
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
273
|
+
default34 as VcEntityAddButton,
|
|
274
|
+
default35 as VcEntityCancelButton,
|
|
275
|
+
default36 as VcEntityDeleteIconButton,
|
|
276
|
+
default37 as VcEntityEditIconButton,
|
|
277
|
+
default38 as VcEntityEditPageForm,
|
|
278
|
+
default39 as VcEntityEditableTabs,
|
|
279
|
+
default40 as VcEntityListTable,
|
|
275
280
|
VcEntityListTableExternalPaginateToken,
|
|
276
|
-
|
|
277
|
-
|
|
281
|
+
default41 as VcEntityRestoreButton,
|
|
282
|
+
default42 as VcEntityStatusButton,
|
|
278
283
|
VcEntityToken,
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
284
|
+
default43 as VcEntityVerticalCreateForm,
|
|
285
|
+
default44 as VcEntityVerticalEditForm,
|
|
286
|
+
default45 as VcExcelFileUploader,
|
|
287
|
+
default46 as VcExtendedDatetimeRangePicker,
|
|
288
|
+
default116 as VcFileUploader,
|
|
289
|
+
default47 as VcForm,
|
|
290
|
+
default48 as VcFormItem,
|
|
291
|
+
default49 as VcHtmlEditor,
|
|
292
|
+
default50 as VcHyperLink,
|
|
293
|
+
default51 as VcIcon,
|
|
289
294
|
VcIconList,
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
295
|
+
default52 as VcIconPicker,
|
|
296
|
+
default53 as VcImageUploader,
|
|
297
|
+
default54 as VcInfiniteScrollSelect,
|
|
298
|
+
default55 as VcInput,
|
|
299
|
+
default56 as VcInputError,
|
|
300
|
+
default57 as VcInputLabel,
|
|
301
|
+
default58 as VcInputNumber,
|
|
302
|
+
default59 as VcJsonSchema,
|
|
303
|
+
default117 as VcLoading,
|
|
304
|
+
default60 as VcMdEditor,
|
|
305
|
+
default61 as VcMeterGroup,
|
|
306
|
+
default62 as VcMeterGroupLabel,
|
|
307
|
+
default63 as VcModal,
|
|
308
|
+
default64 as VcNotification,
|
|
304
309
|
VcNotifySymbol,
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
310
|
+
default65 as VcOtpInput,
|
|
311
|
+
default66 as VcPagination,
|
|
312
|
+
default67 as VcPdfDocument,
|
|
313
|
+
default68 as VcPhoneInput,
|
|
314
|
+
default69 as VcPlayerPlayStopButton,
|
|
315
|
+
default70 as VcPlayerPlaybackRate,
|
|
316
|
+
default71 as VcPlayerPlaybackRatePopup,
|
|
317
|
+
default72 as VcPlayerSkipButtons,
|
|
318
|
+
default73 as VcPluginOverlays,
|
|
319
|
+
default74 as VcPopover,
|
|
320
|
+
default75 as VcProgress,
|
|
321
|
+
default76 as VcProgressCircular,
|
|
322
|
+
default77 as VcRadio,
|
|
323
|
+
default78 as VcRadioButtonsGroup,
|
|
324
|
+
default79 as VcRadioGroup,
|
|
325
|
+
default80 as VcRadioTabs,
|
|
326
|
+
default81 as VcRadioTabsNav,
|
|
327
|
+
default82 as VcSegmented,
|
|
328
|
+
default83 as VcSelect,
|
|
329
|
+
default84 as VcSelectGrouped,
|
|
330
|
+
default85 as VcSelectOption,
|
|
331
|
+
default86 as VcSelectPopover,
|
|
332
|
+
default87 as VcSipFlow,
|
|
333
|
+
default88 as VcSkeletonLoader,
|
|
334
|
+
default89 as VcSlider,
|
|
335
|
+
default90 as VcSoundCurrentTime,
|
|
336
|
+
default91 as VcSoundDuration,
|
|
337
|
+
default92 as VcSoundPlayer,
|
|
333
338
|
default93 as VcSoundPlayerError,
|
|
334
339
|
default94 as VcSoundPlayerProgress,
|
|
335
340
|
VcSoundPlayerProvideKey,
|
|
336
341
|
default95 as VcSoundPlayerWrapper,
|
|
337
342
|
default96 as VcSoundVolume,
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
343
|
+
default97 as VcSparkline,
|
|
344
|
+
default98 as VcSplitButton,
|
|
345
|
+
default99 as VcSwitch,
|
|
346
|
+
default100 as VcSystemUserPrompt,
|
|
347
|
+
default101 as VcTabNav,
|
|
348
|
+
default102 as VcTabPane,
|
|
344
349
|
VcTabPaneProvideKey,
|
|
345
|
-
|
|
346
|
-
|
|
350
|
+
default103 as VcTable,
|
|
351
|
+
default104 as VcTabs,
|
|
347
352
|
VcTabsProvideKey,
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
353
|
+
default105 as VcTag,
|
|
354
|
+
default106 as VcTagInput,
|
|
355
|
+
default107 as VcTimeInput,
|
|
356
|
+
default108 as VcToggleButton,
|
|
357
|
+
default109 as VcTour,
|
|
358
|
+
default110 as VcTransfer,
|
|
359
|
+
default111 as VcTree,
|
|
360
|
+
default112 as VcTreeSelect,
|
|
361
|
+
default113 as VcVerticalTabs,
|
|
362
|
+
default114 as VcViewSwitcher,
|
|
363
|
+
default115 as VcWizard,
|
|
364
|
+
default9 as ZIndexUtils,
|
|
360
365
|
add,
|
|
361
366
|
addDays,
|
|
362
367
|
addFp,
|
|
363
|
-
|
|
368
|
+
default3 as allCountries,
|
|
364
369
|
buildMustacheSnippet,
|
|
365
370
|
componentColors,
|
|
366
371
|
componentSizes,
|
|
367
372
|
confirmModalState,
|
|
368
373
|
confirmPopupState,
|
|
369
374
|
convertToUnit,
|
|
370
|
-
|
|
375
|
+
default2 as dataTestAttributes,
|
|
371
376
|
defaultOptions,
|
|
372
377
|
format,
|
|
373
378
|
formatDate,
|
|
@@ -387,7 +392,7 @@ export {
|
|
|
387
392
|
isSameAfter,
|
|
388
393
|
isSameBefore,
|
|
389
394
|
isVueComponent,
|
|
390
|
-
|
|
395
|
+
default4 as makeDataTestAttributeValue,
|
|
391
396
|
mountPluginOverlays,
|
|
392
397
|
parseDate,
|
|
393
398
|
resolveFieldData,
|
|
@@ -398,15 +403,15 @@ export {
|
|
|
398
403
|
tVU,
|
|
399
404
|
tVUManage,
|
|
400
405
|
textSizes,
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
406
|
+
default10 as useConfirmModal,
|
|
407
|
+
default11 as useConfirmPopup,
|
|
408
|
+
default12 as useEditableTabs,
|
|
404
409
|
useEntityInject,
|
|
405
410
|
useEntityListTableInject,
|
|
406
411
|
useEntityListTableProvide,
|
|
407
412
|
useEntityProvide,
|
|
408
|
-
|
|
409
|
-
|
|
413
|
+
default6 as useInputColor,
|
|
414
|
+
default7 as useOptionMethods,
|
|
410
415
|
useRTL,
|
|
411
416
|
useTabsEditableDataInject,
|
|
412
417
|
useTabsEditableDataProvide,
|