@voicenter-team/voicenter-ui-plus 3.3.2 → 3.3.4
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 -502
- package/library/assets/assets/sass/main.css +1 -1
- package/library/assets/components/VcSoundplayer/VcSoundPlayerMarker.css +1 -0
- package/library/assets/components/VcSoundplayer/VcSoundPlayerProgress.css +1 -1
- package/library/components/VcSoundplayer/VcSoundPlayer.vue.mjs +54 -14
- package/library/components/VcSoundplayer/VcSoundPlayerMarker.vue.mjs +131 -0
- package/library/components/VcSoundplayer/VcSoundPlayerMarker.vue3.mjs +5 -0
- package/library/components/VcSoundplayer/VcSoundPlayerMarkers.vue.mjs +49 -0
- package/library/components/VcSoundplayer/VcSoundPlayerMarkers.vue2.mjs +4 -0
- package/library/components/VcSoundplayer/VcSoundPlayerProgress.vue.mjs +13 -3
- package/library/components/VcSoundplayer/VcSoundPlayerWrapper.vue.mjs +17 -1
- package/library/index.mjs +53 -48
- package/library/index.mjs.br +0 -0
- package/library/index.mjs.gz +0 -0
- package/library/localization/index.mjs.gz +0 -0
- package/library/plugin-components.gen.mjs +47 -42
- package/library/plugin.mjs +53 -48
- package/library/plugin.mjs.br +0 -0
- package/library/plugin.mjs.gz +0 -0
- package/library/style.css +4 -2
- package/library/style.css.br +0 -0
- package/library/style.css.gz +0 -0
- package/library/theme/index.mjs.gz +0 -0
- package/library/types/components/VcModal/VcModal.vue.d.ts +1 -1
- package/library/types/components/VcNotification/VcNotification.vue.d.ts +1 -1
- package/library/types/components/VcRadioTabs/UiComponents/VcRadioTabsNav.vue.d.ts +3 -3
- package/library/types/components/VcSoundplayer/VcSoundPlayer.vue.d.ts +43 -3
- package/library/types/components/VcSoundplayer/VcSoundPlayerMarker.vue.d.ts +95 -0
- package/library/types/components/VcSoundplayer/VcSoundPlayerMarkers.vue.d.ts +52 -0
- package/library/types/components/VcSoundplayer/VcSoundPlayerProgress.vue.d.ts +10 -2
- package/library/types/components/VcSoundplayer/VcSoundPlayerWrapper.vue.d.ts +2 -0
- package/library/types/components/VcSoundplayer/soundPlayerParts.d.ts +3 -1
- package/library/types/components/exports.d.ts +5 -1
- package/library/types/components.gen.d.ts +2 -0
- package/library/types/types/VcSoundPlayer.types.d.ts +36 -1
- package/library/utils/jsonSchema/index.mjs.gz +0 -0
- package/package.json +185 -169
- package/tailwind.config.js +192 -192
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { defineComponent, openBlock, createElementBlock, Fragment, renderList, createBlock, createSlots, withCtx, renderSlot, mergeProps } from "vue";
|
|
2
|
+
import _sfc_main$1 from "./VcSoundPlayerMarker.vue.mjs";
|
|
3
|
+
import '../../assets/components/VcSoundplayer/VcSoundPlayerMarker.css';/* empty css */
|
|
4
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
|
+
__name: "VcSoundPlayerMarkers",
|
|
6
|
+
props: {
|
|
7
|
+
markers: {},
|
|
8
|
+
seekOnClick: { type: Boolean, default: true }
|
|
9
|
+
},
|
|
10
|
+
emits: ["click"],
|
|
11
|
+
setup(__props, { emit: __emit }) {
|
|
12
|
+
const emit = __emit;
|
|
13
|
+
function onMarkerClick(marker, index, time, event) {
|
|
14
|
+
emit("click", marker, index, time, event);
|
|
15
|
+
}
|
|
16
|
+
return (_ctx, _cache) => {
|
|
17
|
+
return openBlock(true), createElementBlock(Fragment, null, renderList(__props.markers, (marker, index) => {
|
|
18
|
+
return openBlock(), createBlock(_sfc_main$1, {
|
|
19
|
+
key: marker.id ?? `${marker.time}-${index}`,
|
|
20
|
+
time: marker.time,
|
|
21
|
+
label: marker.label,
|
|
22
|
+
color: marker.color,
|
|
23
|
+
disabled: marker.disabled,
|
|
24
|
+
"aria-label": marker.ariaLabel,
|
|
25
|
+
"show-stem": marker.showStem ?? true,
|
|
26
|
+
icon: marker.icon,
|
|
27
|
+
"icon-class": marker.iconClass,
|
|
28
|
+
placement: marker.placement ?? "top",
|
|
29
|
+
"seek-on-click": __props.seekOnClick,
|
|
30
|
+
onClick: (time, event) => onMarkerClick(marker, index, time, event)
|
|
31
|
+
}, createSlots({ _: 2 }, [
|
|
32
|
+
_ctx.$slots.marker ? {
|
|
33
|
+
name: "default",
|
|
34
|
+
fn: withCtx((slotProps) => [
|
|
35
|
+
renderSlot(_ctx.$slots, "marker", mergeProps({ ref_for: true }, slotProps, {
|
|
36
|
+
marker,
|
|
37
|
+
index
|
|
38
|
+
}))
|
|
39
|
+
]),
|
|
40
|
+
key: "0"
|
|
41
|
+
} : void 0
|
|
42
|
+
]), 1032, ["time", "label", "color", "disabled", "aria-label", "show-stem", "icon", "icon-class", "placement", "seek-on-click", "onClick"]);
|
|
43
|
+
}), 128);
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
export {
|
|
48
|
+
_sfc_main as default
|
|
49
|
+
};
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import '../../assets/components/VcSoundplayer/VcSoundPlayerProgress.css';
|
|
2
|
-
import { defineComponent, computed, ref, onMounted, openBlock, createElementBlock, unref, createBlock, createCommentVNode, withDirectives, createElementVNode, vShow } from "vue";
|
|
2
|
+
import { defineComponent, useSlots, computed, ref, onMounted, openBlock, createElementBlock, unref, createBlock, createCommentVNode, withDirectives, createElementVNode, renderSlot, vShow } from "vue";
|
|
3
3
|
import { useSoundPlayerInject } from "./useSoundPlayerProvideInject.mjs";
|
|
4
4
|
import _sfc_main$1 from "../VcSkeletonLoader/VcSkeletonLoader.vue.mjs";
|
|
5
5
|
const _hoisted_1 = { class: "vc-sound-progress-bar" };
|
|
6
6
|
const _hoisted_2 = { class: "flex-grow w-full h-full wave-form-content" };
|
|
7
7
|
const _hoisted_3 = ["id"];
|
|
8
8
|
const _hoisted_4 = {
|
|
9
|
+
key: 0,
|
|
10
|
+
class: "vc-sound-player__markers-layer"
|
|
11
|
+
};
|
|
12
|
+
const _hoisted_5 = {
|
|
9
13
|
key: 1,
|
|
10
14
|
class: "w-full h-px bg-ui-lines rounded-full"
|
|
11
15
|
};
|
|
@@ -17,12 +21,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
17
21
|
setup(__props) {
|
|
18
22
|
const { componentId, loading, options, isPlayingInProgress, initWavesurfer, isInitialized, isInitSound } = useSoundPlayerInject();
|
|
19
23
|
const props = __props;
|
|
24
|
+
const slots = useSlots();
|
|
20
25
|
const isVisibleLine = computed(() => {
|
|
21
26
|
if (props.showByInit) {
|
|
22
27
|
return (loading == null ? void 0 : loading.value) || !(isInitSound == null ? void 0 : isInitSound.value);
|
|
23
28
|
}
|
|
24
29
|
return !(loading == null ? void 0 : loading.value) && !(isPlayingInProgress == null ? void 0 : isPlayingInProgress.value);
|
|
25
30
|
});
|
|
31
|
+
const hasMarkers = computed(() => Boolean(slots.markers || slots.default));
|
|
26
32
|
const waveformProgress = ref();
|
|
27
33
|
onMounted(() => {
|
|
28
34
|
if (isInitialized == null ? void 0 : isInitialized.value) {
|
|
@@ -47,11 +53,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
47
53
|
ref_key: "waveformProgress",
|
|
48
54
|
ref: waveformProgress,
|
|
49
55
|
class: "waveform-progress"
|
|
50
|
-
}, null, 8, _hoisted_3)
|
|
56
|
+
}, null, 8, _hoisted_3),
|
|
57
|
+
hasMarkers.value ? (openBlock(), createElementBlock("div", _hoisted_4, [
|
|
58
|
+
renderSlot(_ctx.$slots, "markers"),
|
|
59
|
+
renderSlot(_ctx.$slots, "default")
|
|
60
|
+
])) : createCommentVNode("", true)
|
|
51
61
|
], 512), [
|
|
52
62
|
[vShow, __props.showByInit ? unref(isInitSound) : unref(isPlayingInProgress)]
|
|
53
63
|
]),
|
|
54
|
-
isVisibleLine.value ? (openBlock(), createElementBlock("div",
|
|
64
|
+
isVisibleLine.value ? (openBlock(), createElementBlock("div", _hoisted_5)) : createCommentVNode("", true)
|
|
55
65
|
]);
|
|
56
66
|
};
|
|
57
67
|
}
|
|
@@ -178,6 +178,20 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
178
178
|
var _a;
|
|
179
179
|
(_a = wavesurfer.value) == null ? void 0 : _a.setTime(time);
|
|
180
180
|
}
|
|
181
|
+
function seekTo(time) {
|
|
182
|
+
var _a;
|
|
183
|
+
if (props.disabled) {
|
|
184
|
+
return;
|
|
185
|
+
}
|
|
186
|
+
const dur = duration.value;
|
|
187
|
+
const target = dur > 0 ? Math.min(Math.max(time, 0), dur) : Math.max(time, 0);
|
|
188
|
+
if (!isInitSound.value) {
|
|
189
|
+
initialStartTime.value = target;
|
|
190
|
+
loadingSound(target);
|
|
191
|
+
return;
|
|
192
|
+
}
|
|
193
|
+
(_a = wavesurfer.value) == null ? void 0 : _a.setTime(target);
|
|
194
|
+
}
|
|
181
195
|
function setTimeAndPlay(time) {
|
|
182
196
|
stop();
|
|
183
197
|
play(time);
|
|
@@ -257,7 +271,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
257
271
|
initWavesurfer,
|
|
258
272
|
skipBackward,
|
|
259
273
|
skipForward,
|
|
260
|
-
setPlaybackRate
|
|
274
|
+
setPlaybackRate,
|
|
275
|
+
seekTo
|
|
261
276
|
});
|
|
262
277
|
__expose({
|
|
263
278
|
initSound,
|
|
@@ -269,6 +284,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
269
284
|
skipBackward,
|
|
270
285
|
skipForward,
|
|
271
286
|
setTime,
|
|
287
|
+
seekTo,
|
|
272
288
|
getCurrentTime: () => currentTime.value,
|
|
273
289
|
getDurationTime: () => duration.value,
|
|
274
290
|
setDurationTime,
|
package/library/index.mjs
CHANGED
|
@@ -165,54 +165,57 @@ import { default as default91 } from "./components/VcSoundplayer/VcSoundDuration
|
|
|
165
165
|
import { default as default92 } from "./components/VcSoundplayer/VcSoundPlayer.vue.mjs";
|
|
166
166
|
/* empty css */
|
|
167
167
|
import { default as default93 } from "./components/VcSoundplayer/VcSoundPlayerError.vue.mjs";
|
|
168
|
-
import { default as default94 } from "./components/VcSoundplayer/
|
|
168
|
+
import { default as default94 } from "./components/VcSoundplayer/VcSoundPlayerMarker.vue.mjs";
|
|
169
|
+
/* empty css */
|
|
170
|
+
import { default as default95 } from "./components/VcSoundplayer/VcSoundPlayerMarkers.vue.mjs";
|
|
171
|
+
import { default as default96 } from "./components/VcSoundplayer/VcSoundPlayerProgress.vue.mjs";
|
|
169
172
|
/* empty css */
|
|
170
|
-
import { default as
|
|
173
|
+
import { default as default97 } from "./components/VcSoundplayer/VcSoundPlayerWrapper.vue.mjs";
|
|
171
174
|
/* empty css */
|
|
172
|
-
import { default as
|
|
175
|
+
import { default as default98 } from "./components/VcSoundplayer/VcSoundVolume.vue.mjs";
|
|
173
176
|
/* empty css */
|
|
174
|
-
import { default as
|
|
175
|
-
import { default as
|
|
177
|
+
import { default as default99 } from "./components/VcSparkline/VcSparkline.vue.mjs";
|
|
178
|
+
import { default as default100 } from "./components/VcSplitButton/VcSplitButton.vue.mjs";
|
|
176
179
|
/* empty css */
|
|
177
|
-
import { default as
|
|
180
|
+
import { default as default101 } from "./components/VcSwitch/VcSwitch.vue.mjs";
|
|
178
181
|
/* empty css */
|
|
179
|
-
import { default as
|
|
182
|
+
import { default as default102 } from "./components/VcSystemUserPrompt/VcSystemUserPrompt.vue.mjs";
|
|
180
183
|
/* empty css */
|
|
181
|
-
import { default as
|
|
184
|
+
import { default as default103 } from "./components/VcTabs/VcTabNav.vue.mjs";
|
|
182
185
|
/* empty css */
|
|
183
|
-
import { default as
|
|
186
|
+
import { default as default104 } from "./components/VcTabs/VcTabPane.vue.mjs";
|
|
184
187
|
/* empty css */
|
|
185
|
-
import { default as
|
|
188
|
+
import { default as default105 } from "./components/VcTable/VcTable.vue.mjs";
|
|
186
189
|
/* empty css */
|
|
187
190
|
/* empty css */
|
|
188
|
-
import { default as
|
|
191
|
+
import { default as default106 } from "./components/VcTabs/VcTabs.vue.mjs";
|
|
189
192
|
/* empty css */
|
|
190
|
-
import { default as
|
|
193
|
+
import { default as default107 } from "./components/VcTag/VcTag.vue.mjs";
|
|
191
194
|
/* empty css */
|
|
192
|
-
import { default as
|
|
195
|
+
import { default as default108 } from "./components/VcTagInput/VcTagInput.vue.mjs";
|
|
193
196
|
/* empty css */
|
|
194
|
-
import { default as
|
|
197
|
+
import { default as default109 } from "./components/VcTimeInput/VcTimeInput.vue.mjs";
|
|
195
198
|
/* empty css */
|
|
196
|
-
import { default as
|
|
199
|
+
import { default as default110 } from "./components/VcButton/VcToggleButton.vue.mjs";
|
|
197
200
|
/* empty css */
|
|
198
|
-
import { default as
|
|
201
|
+
import { default as default111 } from "./components/VcTour/VcTour.vue.mjs";
|
|
199
202
|
/* empty css */
|
|
200
|
-
import { default as
|
|
203
|
+
import { default as default112 } from "./components/VcTransfer/VcTransfer.vue.mjs";
|
|
201
204
|
/* empty css */
|
|
202
|
-
import { default as
|
|
205
|
+
import { default as default113 } from "./components/VcTree/VcTree.vue.mjs";
|
|
203
206
|
/* empty css */
|
|
204
|
-
import { default as
|
|
207
|
+
import { default as default114 } from "./components/VcTree/VcTreeSelect.vue.mjs";
|
|
205
208
|
/* empty css */
|
|
206
209
|
/* empty css */
|
|
207
|
-
import { default as
|
|
210
|
+
import { default as default115 } from "./components/VcVerticalTabs/VcVerticalTabs.vue.mjs";
|
|
208
211
|
/* empty css */
|
|
209
|
-
import { default as
|
|
212
|
+
import { default as default116 } from "./components/VcViewSwitcher/VcViewSwitcher.vue.mjs";
|
|
210
213
|
/* empty css */
|
|
211
|
-
import { default as
|
|
214
|
+
import { default as default117 } from "./components/VcWizard/VcWizard.vue.mjs";
|
|
212
215
|
/* empty css */
|
|
213
216
|
export * from "element-plus/es/components/form/src/constants";
|
|
214
|
-
import { default as
|
|
215
|
-
import { default as
|
|
217
|
+
import { default as default118 } from "./components/VcFileUploader/VcFileUploader.vue.mjs";
|
|
218
|
+
import { default as default119 } from "./components/VcLoading/VcLoading.vue.mjs";
|
|
216
219
|
export {
|
|
217
220
|
ALIAS_ITEM_SPACE,
|
|
218
221
|
BaseEntityService,
|
|
@@ -285,7 +288,7 @@ export {
|
|
|
285
288
|
default44 as VcEntityVerticalEditForm,
|
|
286
289
|
default45 as VcExcelFileUploader,
|
|
287
290
|
default46 as VcExtendedDatetimeRangePicker,
|
|
288
|
-
|
|
291
|
+
default118 as VcFileUploader,
|
|
289
292
|
default47 as VcForm,
|
|
290
293
|
default48 as VcFormItem,
|
|
291
294
|
default49 as VcHtmlEditor,
|
|
@@ -300,7 +303,7 @@ export {
|
|
|
300
303
|
default57 as VcInputLabel,
|
|
301
304
|
default58 as VcInputNumber,
|
|
302
305
|
default59 as VcJsonSchema,
|
|
303
|
-
|
|
306
|
+
default119 as VcLoading,
|
|
304
307
|
default60 as VcMdEditor,
|
|
305
308
|
default61 as VcMeterGroup,
|
|
306
309
|
default62 as VcMeterGroupLabel,
|
|
@@ -336,31 +339,33 @@ export {
|
|
|
336
339
|
default91 as VcSoundDuration,
|
|
337
340
|
default92 as VcSoundPlayer,
|
|
338
341
|
default93 as VcSoundPlayerError,
|
|
339
|
-
default94 as
|
|
342
|
+
default94 as VcSoundPlayerMarker,
|
|
343
|
+
default95 as VcSoundPlayerMarkers,
|
|
344
|
+
default96 as VcSoundPlayerProgress,
|
|
340
345
|
VcSoundPlayerProvideKey,
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
346
|
+
default97 as VcSoundPlayerWrapper,
|
|
347
|
+
default98 as VcSoundVolume,
|
|
348
|
+
default99 as VcSparkline,
|
|
349
|
+
default100 as VcSplitButton,
|
|
350
|
+
default101 as VcSwitch,
|
|
351
|
+
default102 as VcSystemUserPrompt,
|
|
352
|
+
default103 as VcTabNav,
|
|
353
|
+
default104 as VcTabPane,
|
|
349
354
|
VcTabPaneProvideKey,
|
|
350
|
-
|
|
351
|
-
|
|
355
|
+
default105 as VcTable,
|
|
356
|
+
default106 as VcTabs,
|
|
352
357
|
VcTabsProvideKey,
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
358
|
+
default107 as VcTag,
|
|
359
|
+
default108 as VcTagInput,
|
|
360
|
+
default109 as VcTimeInput,
|
|
361
|
+
default110 as VcToggleButton,
|
|
362
|
+
default111 as VcTour,
|
|
363
|
+
default112 as VcTransfer,
|
|
364
|
+
default113 as VcTree,
|
|
365
|
+
default114 as VcTreeSelect,
|
|
366
|
+
default115 as VcVerticalTabs,
|
|
367
|
+
default116 as VcViewSwitcher,
|
|
368
|
+
default117 as VcWizard,
|
|
364
369
|
default9 as ZIndexUtils,
|
|
365
370
|
add,
|
|
366
371
|
addDays,
|
package/library/index.mjs.br
CHANGED
|
Binary file
|
package/library/index.mjs.gz
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -149,38 +149,41 @@ import _sfc_main$1e from "./components/VcSoundplayer/VcPlayerSkipButtons.vue.mjs
|
|
|
149
149
|
import _sfc_main$1f from "./components/VcSoundplayer/VcSoundCurrentTime.vue.mjs";
|
|
150
150
|
import _sfc_main$1g from "./components/VcSoundplayer/VcSoundDuration.vue.mjs";
|
|
151
151
|
import _sfc_main$1h from "./components/VcSoundplayer/VcSoundPlayerError.vue.mjs";
|
|
152
|
-
import _sfc_main$1i from "./components/VcSoundplayer/
|
|
152
|
+
import _sfc_main$1i from "./components/VcSoundplayer/VcSoundPlayerMarker.vue.mjs";
|
|
153
|
+
/* empty css */
|
|
154
|
+
import _sfc_main$1j from "./components/VcSoundplayer/VcSoundPlayerMarkers.vue.mjs";
|
|
155
|
+
import _sfc_main$1k from "./components/VcSoundplayer/VcSoundPlayerProgress.vue.mjs";
|
|
153
156
|
/* empty css */
|
|
154
|
-
import _sfc_main$
|
|
157
|
+
import _sfc_main$1l from "./components/VcSoundplayer/VcSoundPlayerWrapper.vue.mjs";
|
|
155
158
|
/* empty css */
|
|
156
|
-
import _sfc_main$
|
|
159
|
+
import _sfc_main$1m from "./components/VcSoundplayer/VcSoundVolume.vue.mjs";
|
|
157
160
|
/* empty css */
|
|
158
|
-
import _sfc_main$
|
|
161
|
+
import _sfc_main$1n from "./components/VcHtmlEditor/VcHtmlEditor.vue.mjs";
|
|
159
162
|
/* empty css */
|
|
160
|
-
import _sfc_main$
|
|
163
|
+
import _sfc_main$1o from "./components/VcPdfViewer/VcPdfDocument.vue.mjs";
|
|
161
164
|
/* empty css */
|
|
162
|
-
import _sfc_main$
|
|
163
|
-
import _sfc_main$
|
|
165
|
+
import _sfc_main$1p from "./components/VcExcelUploader/VcExcelFileUploader.vue.mjs";
|
|
166
|
+
import _sfc_main$1q from "./components/VcImageUploader/VcImageUploader.vue.mjs";
|
|
164
167
|
/* empty css */
|
|
165
|
-
import _sfc_main$
|
|
168
|
+
import _sfc_main$1r from "./components/VcTour/VcTour.vue.mjs";
|
|
166
169
|
/* empty css */
|
|
167
|
-
import _sfc_main$
|
|
170
|
+
import _sfc_main$1s from "./components/VcSipFlow/VcSipFlow.vue.mjs";
|
|
168
171
|
/* empty css */
|
|
169
|
-
import _sfc_main$
|
|
170
|
-
import _sfc_main$
|
|
171
|
-
import _sfc_main$
|
|
172
|
-
import _sfc_main$
|
|
173
|
-
import _sfc_main$
|
|
174
|
-
import _sfc_main$
|
|
175
|
-
import _sfc_main$
|
|
172
|
+
import _sfc_main$1t from "./entity/components/Button/VcEntityAddButton.vue.mjs";
|
|
173
|
+
import _sfc_main$1u from "./entity/components/Button/VcEntityCancelButton.vue.mjs";
|
|
174
|
+
import _sfc_main$1v from "./entity/components/Button/VcEntityDeleteIconButton.vue.mjs";
|
|
175
|
+
import _sfc_main$1w from "./entity/components/Button/VcEntityEditIconButton.vue.mjs";
|
|
176
|
+
import _sfc_main$1x from "./entity/components/Button/VcEntityRestoreButton.vue.mjs";
|
|
177
|
+
import _sfc_main$1y from "./entity/components/Button/VcEntityStatusButton.vue.mjs";
|
|
178
|
+
import _sfc_main$1z from "./entity/components/Tabs/VcEntityEditableTabs.vue.mjs";
|
|
176
179
|
/* empty css */
|
|
177
|
-
import _sfc_main$
|
|
180
|
+
import _sfc_main$1A from "./entity/components/Table/VcEntityListTable.vue.mjs";
|
|
178
181
|
/* empty css */
|
|
179
|
-
import _sfc_main$
|
|
182
|
+
import _sfc_main$1B from "./entity/components/Form/VcBaseVerticalForm.vue.mjs";
|
|
180
183
|
/* empty css */
|
|
181
|
-
import _sfc_main$
|
|
182
|
-
import _sfc_main$
|
|
183
|
-
import _sfc_main$
|
|
184
|
+
import _sfc_main$1C from "./entity/components/Form/VcEntityVerticalCreateForm.vue.mjs";
|
|
185
|
+
import _sfc_main$1D from "./entity/components/Form/VcEntityVerticalEditForm.vue.mjs";
|
|
186
|
+
import _sfc_main$1E from "./entity/components/Form/VcEntityEditPageForm.vue.mjs";
|
|
184
187
|
/* empty css */
|
|
185
188
|
function registerComponents(app) {
|
|
186
189
|
app.component("VcButton", _sfc_main);
|
|
@@ -267,27 +270,29 @@ function registerComponents(app) {
|
|
|
267
270
|
app.component("VcSoundCurrentTime", _sfc_main$1f);
|
|
268
271
|
app.component("VcSoundDuration", _sfc_main$1g);
|
|
269
272
|
app.component("VcSoundPlayerError", _sfc_main$1h);
|
|
270
|
-
app.component("
|
|
271
|
-
app.component("
|
|
272
|
-
app.component("
|
|
273
|
-
app.component("
|
|
274
|
-
app.component("
|
|
275
|
-
app.component("
|
|
276
|
-
app.component("
|
|
277
|
-
app.component("
|
|
278
|
-
app.component("
|
|
279
|
-
app.component("
|
|
280
|
-
app.component("
|
|
281
|
-
app.component("
|
|
282
|
-
app.component("
|
|
283
|
-
app.component("
|
|
284
|
-
app.component("
|
|
285
|
-
app.component("
|
|
286
|
-
app.component("
|
|
287
|
-
app.component("
|
|
288
|
-
app.component("
|
|
289
|
-
app.component("
|
|
290
|
-
app.component("
|
|
273
|
+
app.component("VcSoundPlayerMarker", _sfc_main$1i);
|
|
274
|
+
app.component("VcSoundPlayerMarkers", _sfc_main$1j);
|
|
275
|
+
app.component("VcSoundPlayerProgress", _sfc_main$1k);
|
|
276
|
+
app.component("VcSoundPlayerWrapper", _sfc_main$1l);
|
|
277
|
+
app.component("VcSoundVolume", _sfc_main$1m);
|
|
278
|
+
app.component("VcHtmlEditor", _sfc_main$1n);
|
|
279
|
+
app.component("VcPdfDocument", _sfc_main$1o);
|
|
280
|
+
app.component("VcExcelFileUploader", _sfc_main$1p);
|
|
281
|
+
app.component("VcImageUploader", _sfc_main$1q);
|
|
282
|
+
app.component("VcTour", _sfc_main$1r);
|
|
283
|
+
app.component("VcSipFlow", _sfc_main$1s);
|
|
284
|
+
app.component("VcEntityAddButton", _sfc_main$1t);
|
|
285
|
+
app.component("VcEntityCancelButton", _sfc_main$1u);
|
|
286
|
+
app.component("VcEntityDeleteIconButton", _sfc_main$1v);
|
|
287
|
+
app.component("VcEntityEditIconButton", _sfc_main$1w);
|
|
288
|
+
app.component("VcEntityRestoreButton", _sfc_main$1x);
|
|
289
|
+
app.component("VcEntityStatusButton", _sfc_main$1y);
|
|
290
|
+
app.component("VcEntityEditableTabs", _sfc_main$1z);
|
|
291
|
+
app.component("VcEntityListTable", _sfc_main$1A);
|
|
292
|
+
app.component("VcBaseVerticalForm", _sfc_main$1B);
|
|
293
|
+
app.component("VcEntityVerticalCreateForm", _sfc_main$1C);
|
|
294
|
+
app.component("VcEntityVerticalEditForm", _sfc_main$1D);
|
|
295
|
+
app.component("VcEntityEditPageForm", _sfc_main$1E);
|
|
291
296
|
}
|
|
292
297
|
export {
|
|
293
298
|
registerComponents
|
package/library/plugin.mjs
CHANGED
|
@@ -171,54 +171,57 @@ import { default as default90 } from "./components/VcSoundplayer/VcSoundDuration
|
|
|
171
171
|
import { default as default91 } from "./components/VcSoundplayer/VcSoundPlayer.vue.mjs";
|
|
172
172
|
/* empty css */
|
|
173
173
|
import { default as default92 } from "./components/VcSoundplayer/VcSoundPlayerError.vue.mjs";
|
|
174
|
-
import { default as default93 } from "./components/VcSoundplayer/
|
|
174
|
+
import { default as default93 } from "./components/VcSoundplayer/VcSoundPlayerMarker.vue.mjs";
|
|
175
|
+
/* empty css */
|
|
176
|
+
import { default as default94 } from "./components/VcSoundplayer/VcSoundPlayerMarkers.vue.mjs";
|
|
177
|
+
import { default as default95 } from "./components/VcSoundplayer/VcSoundPlayerProgress.vue.mjs";
|
|
175
178
|
/* empty css */
|
|
176
|
-
import { default as
|
|
179
|
+
import { default as default96 } from "./components/VcSoundplayer/VcSoundPlayerWrapper.vue.mjs";
|
|
177
180
|
/* empty css */
|
|
178
|
-
import { default as
|
|
181
|
+
import { default as default97 } from "./components/VcSoundplayer/VcSoundVolume.vue.mjs";
|
|
179
182
|
/* empty css */
|
|
180
|
-
import { default as
|
|
181
|
-
import { default as
|
|
183
|
+
import { default as default98 } from "./components/VcSparkline/VcSparkline.vue.mjs";
|
|
184
|
+
import { default as default99 } from "./components/VcSplitButton/VcSplitButton.vue.mjs";
|
|
182
185
|
/* empty css */
|
|
183
|
-
import { default as
|
|
186
|
+
import { default as default100 } from "./components/VcSwitch/VcSwitch.vue.mjs";
|
|
184
187
|
/* empty css */
|
|
185
|
-
import { default as
|
|
188
|
+
import { default as default101 } from "./components/VcSystemUserPrompt/VcSystemUserPrompt.vue.mjs";
|
|
186
189
|
/* empty css */
|
|
187
|
-
import { default as
|
|
190
|
+
import { default as default102 } from "./components/VcTabs/VcTabNav.vue.mjs";
|
|
188
191
|
/* empty css */
|
|
189
|
-
import { default as
|
|
192
|
+
import { default as default103 } from "./components/VcTabs/VcTabPane.vue.mjs";
|
|
190
193
|
/* empty css */
|
|
191
|
-
import { default as
|
|
194
|
+
import { default as default104 } from "./components/VcTable/VcTable.vue.mjs";
|
|
192
195
|
/* empty css */
|
|
193
196
|
/* empty css */
|
|
194
|
-
import { default as
|
|
197
|
+
import { default as default105 } from "./components/VcTabs/VcTabs.vue.mjs";
|
|
195
198
|
/* empty css */
|
|
196
|
-
import { default as
|
|
199
|
+
import { default as default106 } from "./components/VcTag/VcTag.vue.mjs";
|
|
197
200
|
/* empty css */
|
|
198
|
-
import { default as
|
|
201
|
+
import { default as default107 } from "./components/VcTagInput/VcTagInput.vue.mjs";
|
|
199
202
|
/* empty css */
|
|
200
|
-
import { default as
|
|
203
|
+
import { default as default108 } from "./components/VcTimeInput/VcTimeInput.vue.mjs";
|
|
201
204
|
/* empty css */
|
|
202
|
-
import { default as
|
|
205
|
+
import { default as default109 } from "./components/VcButton/VcToggleButton.vue.mjs";
|
|
203
206
|
/* empty css */
|
|
204
|
-
import { default as
|
|
207
|
+
import { default as default110 } from "./components/VcTour/VcTour.vue.mjs";
|
|
205
208
|
/* empty css */
|
|
206
|
-
import { default as
|
|
209
|
+
import { default as default111 } from "./components/VcTransfer/VcTransfer.vue.mjs";
|
|
207
210
|
/* empty css */
|
|
208
|
-
import { default as
|
|
211
|
+
import { default as default112 } from "./components/VcTree/VcTree.vue.mjs";
|
|
209
212
|
/* empty css */
|
|
210
|
-
import { default as
|
|
213
|
+
import { default as default113 } from "./components/VcTree/VcTreeSelect.vue.mjs";
|
|
211
214
|
/* empty css */
|
|
212
215
|
/* empty css */
|
|
213
|
-
import { default as
|
|
216
|
+
import { default as default114 } from "./components/VcVerticalTabs/VcVerticalTabs.vue.mjs";
|
|
214
217
|
/* empty css */
|
|
215
|
-
import { default as
|
|
218
|
+
import { default as default115 } from "./components/VcViewSwitcher/VcViewSwitcher.vue.mjs";
|
|
216
219
|
/* empty css */
|
|
217
|
-
import { default as
|
|
220
|
+
import { default as default116 } from "./components/VcWizard/VcWizard.vue.mjs";
|
|
218
221
|
/* empty css */
|
|
219
222
|
export * from "element-plus/es/components/form/src/constants";
|
|
220
|
-
import { default as
|
|
221
|
-
import { default as
|
|
223
|
+
import { default as default117 } from "./components/VcFileUploader/VcFileUploader.vue.mjs";
|
|
224
|
+
import { default as default118 } from "./components/VcLoading/VcLoading.vue.mjs";
|
|
222
225
|
const install = function installCore(app, config) {
|
|
223
226
|
registerComponents(app);
|
|
224
227
|
Object.entries(directives).forEach(([name, directive]) => {
|
|
@@ -322,7 +325,7 @@ export {
|
|
|
322
325
|
default44 as VcEntityVerticalEditForm,
|
|
323
326
|
default45 as VcExcelFileUploader,
|
|
324
327
|
default46 as VcExtendedDatetimeRangePicker,
|
|
325
|
-
|
|
328
|
+
default117 as VcFileUploader,
|
|
326
329
|
default47 as VcForm,
|
|
327
330
|
default48 as VcFormItem,
|
|
328
331
|
default49 as VcHtmlEditor,
|
|
@@ -337,7 +340,7 @@ export {
|
|
|
337
340
|
default57 as VcInputLabel,
|
|
338
341
|
default58 as VcInputNumber,
|
|
339
342
|
default59 as VcJsonSchema,
|
|
340
|
-
|
|
343
|
+
default118 as VcLoading,
|
|
341
344
|
default60 as VcMdEditor,
|
|
342
345
|
default61 as VcMeterGroup,
|
|
343
346
|
default62 as VcMeterGroupLabel,
|
|
@@ -373,31 +376,33 @@ export {
|
|
|
373
376
|
default90 as VcSoundDuration,
|
|
374
377
|
default91 as VcSoundPlayer,
|
|
375
378
|
default92 as VcSoundPlayerError,
|
|
376
|
-
default93 as
|
|
379
|
+
default93 as VcSoundPlayerMarker,
|
|
380
|
+
default94 as VcSoundPlayerMarkers,
|
|
381
|
+
default95 as VcSoundPlayerProgress,
|
|
377
382
|
VcSoundPlayerProvideKey,
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
383
|
+
default96 as VcSoundPlayerWrapper,
|
|
384
|
+
default97 as VcSoundVolume,
|
|
385
|
+
default98 as VcSparkline,
|
|
386
|
+
default99 as VcSplitButton,
|
|
387
|
+
default100 as VcSwitch,
|
|
388
|
+
default101 as VcSystemUserPrompt,
|
|
389
|
+
default102 as VcTabNav,
|
|
390
|
+
default103 as VcTabPane,
|
|
386
391
|
VcTabPaneProvideKey,
|
|
387
|
-
|
|
388
|
-
|
|
392
|
+
default104 as VcTable,
|
|
393
|
+
default105 as VcTabs,
|
|
389
394
|
VcTabsProvideKey,
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
395
|
+
default106 as VcTag,
|
|
396
|
+
default107 as VcTagInput,
|
|
397
|
+
default108 as VcTimeInput,
|
|
398
|
+
default109 as VcToggleButton,
|
|
399
|
+
default110 as VcTour,
|
|
400
|
+
default111 as VcTransfer,
|
|
401
|
+
default112 as VcTree,
|
|
402
|
+
default113 as VcTreeSelect,
|
|
403
|
+
default114 as VcVerticalTabs,
|
|
404
|
+
default115 as VcViewSwitcher,
|
|
405
|
+
default116 as VcWizard,
|
|
401
406
|
default9 as ZIndexUtils,
|
|
402
407
|
add,
|
|
403
408
|
addDays,
|
package/library/plugin.mjs.br
CHANGED
|
Binary file
|
package/library/plugin.mjs.gz
CHANGED
|
Binary file
|