@opengis/form 0.0.133 → 0.0.135
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{index-BHNP0KBm.js → index-DOrBnpGK.js} +2501 -2499
- package/dist/index.css +1 -1
- package/dist/index.js +1 -1
- package/dist/index.umd.cjs +13 -13
- package/dist/src/components/form/vs-compact-form.vue.d.ts.map +1 -1
- package/dist/src/components/inputs/file/vs-input-file-list-item.vue.d.ts +10 -6
- package/dist/src/components/inputs/file/vs-input-file-list-item.vue.d.ts.map +1 -1
- package/dist/src/components/inputs/file/vs-input-file.vue.d.ts +9 -5
- package/dist/src/components/inputs/file/vs-input-file.vue.d.ts.map +1 -1
- package/dist/src/components/inputs/file/vs-input-file2.vue.d.ts +7 -3
- package/dist/src/components/inputs/file/vs-input-file2.vue.d.ts.map +1 -1
- package/dist/src/components/inputs/index.d.ts +94 -22
- package/dist/src/components/inputs/index.d.ts.map +1 -1
- package/dist/src/components/inputs/map/vs-input-map.vue.d.ts.map +1 -1
- package/dist/src/components/modal/modal-edit.vue.d.ts.map +1 -1
- package/dist/{vs-richtext-23DWrqSz.js → vs-richtext-Lxs8PQar.js} +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-compact-form.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/vs-compact-form.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-compact-form.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/vs-compact-form.vue"],"names":[],"mappings":"AAwKA,OAAO,KAAK,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAQ3D,UAAU,SAAS;IACjB,MAAM,EAAE,WAAW,EAAE,GAAG,GAAG,CAAC;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE;QACR,SAAS,EAAE,MAAM,CAAC;QAClB,KAAK,EAAE,MAAM,CAAC;KACf,CAAC;CACH;AAED,KAAK,WAAW,GAAG,SAAS,CAAC;AAqG7B,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,MAAM,CAAC,EAAE,KAAK,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,SAAS,CAAC;CAC1C,CAAC;;;;;;;;;;;;;;;;;;;;WAtHQ,MAAM;YADN,WAAW,EAAE,GAAG,GAAG;cAKhB,OAAO;YAFT,MAAM;YACN,MAAM;gBAEF,OAAO;cACT,MAAM;;AAkQnB,wBASG"}
|
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
import type { IInputFileProps } from "../../../types/form.ts";
|
|
2
|
+
type FileItem = {
|
|
3
|
+
file_id: string;
|
|
4
|
+
file_path: string;
|
|
5
|
+
};
|
|
2
6
|
type __VLS_Props = IInputFileProps;
|
|
3
7
|
type __VLS_PublicProps = __VLS_Props & {
|
|
4
|
-
'value'?: string | string[];
|
|
5
|
-
'item'?: string;
|
|
8
|
+
'value'?: FileItem | FileItem[] | string | string[];
|
|
9
|
+
'item'?: FileItem | string;
|
|
6
10
|
};
|
|
7
11
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
-
"update:value": (value: string | string[] | undefined) => any;
|
|
9
|
-
"update:item": (value: string | undefined) => any;
|
|
12
|
+
"update:value": (value: string | string[] | FileItem | FileItem[] | undefined) => any;
|
|
13
|
+
"update:item": (value: string | FileItem | undefined) => any;
|
|
10
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
|
-
"onUpdate:value"?: ((value: string | string[] | undefined) => any) | undefined;
|
|
12
|
-
"onUpdate:item"?: ((value: string | undefined) => any) | undefined;
|
|
15
|
+
"onUpdate:value"?: ((value: string | string[] | FileItem | FileItem[] | undefined) => any) | undefined;
|
|
16
|
+
"onUpdate:item"?: ((value: string | FileItem | undefined) => any) | undefined;
|
|
13
17
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
18
|
export default _default;
|
|
15
19
|
//# sourceMappingURL=vs-input-file-list-item.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-file-list-item.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/file/vs-input-file-list-item.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-file-list-item.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/file/vs-input-file-list-item.vue"],"names":[],"mappings":"AAgFA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAE9D,KAAK,QAAQ,GAAG;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,CAAC;AAKvD,KAAK,WAAW,GAAG,eAAe,CAAC;AAyBnC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,OAAO,CAAC,EAAE,QAAQ,GAAG,QAAQ,EAAE,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;IACpD,MAAM,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAC;CAC1B,CAAC;;;;;;;;AAkJF,wBAOG"}
|
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
import { IInputFileProps } from "../../../types/form";
|
|
2
|
+
type FileItem = {
|
|
3
|
+
file_id: string;
|
|
4
|
+
file_path: string;
|
|
5
|
+
};
|
|
2
6
|
type __VLS_Props = IInputFileProps;
|
|
3
7
|
type __VLS_PublicProps = __VLS_Props & {
|
|
4
|
-
modelValue?:
|
|
8
|
+
modelValue?: FileItem | FileItem[];
|
|
5
9
|
};
|
|
6
10
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
change: (value:
|
|
8
|
-
"update:modelValue": (value:
|
|
11
|
+
change: (value: FileItem | FileItem[]) => any;
|
|
12
|
+
"update:modelValue": (value: FileItem | FileItem[] | undefined) => any;
|
|
9
13
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
10
|
-
onChange?: ((value:
|
|
11
|
-
"onUpdate:modelValue"?: ((value:
|
|
14
|
+
onChange?: ((value: FileItem | FileItem[]) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: FileItem | FileItem[] | undefined) => any) | undefined;
|
|
12
16
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
17
|
export default _default;
|
|
14
18
|
//# sourceMappingURL=vs-input-file.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-file.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/file/vs-input-file.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-file.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/file/vs-input-file.vue"],"names":[],"mappings":"AAgSA,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAEtD,KAAK,QAAQ,GAAG;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,CAAC;AAEvD,KAAK,WAAW,GAAG,eAAe,CAAC;AA+MnC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,QAAQ,GAAG,QAAQ,EAAE,CAAC;CAClC,CAAC;;;;;;;;AAqLF,wBAOG"}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import type { IInputFileChunkProps } from '../../../types/form';
|
|
2
2
|
type __VLS_Props = IInputFileChunkProps;
|
|
3
|
+
type FileItem = {
|
|
4
|
+
file_id: string;
|
|
5
|
+
file_path: string;
|
|
6
|
+
};
|
|
3
7
|
type __VLS_PublicProps = __VLS_Props & {
|
|
4
|
-
modelValue?: string;
|
|
8
|
+
modelValue?: FileItem | string;
|
|
5
9
|
};
|
|
6
10
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (value: string) => any;
|
|
11
|
+
"update:modelValue": (value: string | FileItem) => any;
|
|
8
12
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
13
|
+
"onUpdate:modelValue"?: ((value: string | FileItem) => any) | undefined;
|
|
10
14
|
}>, {
|
|
11
15
|
chunkSize: number;
|
|
12
16
|
subdir: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-file2.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/file/vs-input-file2.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-file2.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/file/vs-input-file2.vue"],"names":[],"mappings":"AAsXA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAEhE,KAAK,WAAW,GAAG,oBAAoB,CAAC;AAMxC,KAAK,QAAQ,GAAG;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,CAAC;AA+PvD,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAC;CAC9B,CAAC;;;;;;;;;AA6QF,wBAQG"}
|
|
@@ -269,48 +269,120 @@ declare const _default: {
|
|
|
269
269
|
modelValue: any;
|
|
270
270
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
271
271
|
'vs-input-file': import("vue").DefineComponent<import("../../types/form.js").IInputFileProps & {
|
|
272
|
-
modelValue?:
|
|
272
|
+
modelValue?: {
|
|
273
|
+
file_id: string;
|
|
274
|
+
file_path: string;
|
|
275
|
+
} | {
|
|
276
|
+
file_id: string;
|
|
277
|
+
file_path: string;
|
|
278
|
+
}[];
|
|
273
279
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
274
|
-
change: (value:
|
|
275
|
-
|
|
280
|
+
change: (value: {
|
|
281
|
+
file_id: string;
|
|
282
|
+
file_path: string;
|
|
283
|
+
} | {
|
|
284
|
+
file_id: string;
|
|
285
|
+
file_path: string;
|
|
286
|
+
}[]) => any;
|
|
287
|
+
"update:modelValue": (value: {
|
|
288
|
+
file_id: string;
|
|
289
|
+
file_path: string;
|
|
290
|
+
} | {
|
|
291
|
+
file_id: string;
|
|
292
|
+
file_path: string;
|
|
293
|
+
}[] | undefined) => any;
|
|
276
294
|
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputFileProps & {
|
|
277
|
-
modelValue?:
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
295
|
+
modelValue?: {
|
|
296
|
+
file_id: string;
|
|
297
|
+
file_path: string;
|
|
298
|
+
} | {
|
|
299
|
+
file_id: string;
|
|
300
|
+
file_path: string;
|
|
301
|
+
}[];
|
|
302
|
+
}> & Readonly<{
|
|
303
|
+
onChange?: ((value: {
|
|
304
|
+
file_id: string;
|
|
305
|
+
file_path: string;
|
|
306
|
+
} | {
|
|
307
|
+
file_id: string;
|
|
308
|
+
file_path: string;
|
|
309
|
+
}[]) => any) | undefined;
|
|
310
|
+
"onUpdate:modelValue"?: ((value: {
|
|
311
|
+
file_id: string;
|
|
312
|
+
file_path: string;
|
|
313
|
+
} | {
|
|
314
|
+
file_id: string;
|
|
315
|
+
file_path: string;
|
|
316
|
+
}[] | undefined) => any) | undefined;
|
|
281
317
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
282
318
|
'vs-input-file2': import("vue").DefineComponent<import("../../types/form.js").IInputFileChunkProps & {
|
|
283
|
-
modelValue?:
|
|
319
|
+
modelValue?: {
|
|
320
|
+
file_id: string;
|
|
321
|
+
file_path: string;
|
|
322
|
+
} | string;
|
|
284
323
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
285
|
-
"update:modelValue": (value: string
|
|
324
|
+
"update:modelValue": (value: string | {
|
|
325
|
+
file_id: string;
|
|
326
|
+
file_path: string;
|
|
327
|
+
}) => any;
|
|
286
328
|
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputFileChunkProps & {
|
|
287
|
-
modelValue?:
|
|
288
|
-
|
|
289
|
-
|
|
329
|
+
modelValue?: {
|
|
330
|
+
file_id: string;
|
|
331
|
+
file_path: string;
|
|
332
|
+
} | string;
|
|
333
|
+
}> & Readonly<{
|
|
334
|
+
"onUpdate:modelValue"?: ((value: string | {
|
|
335
|
+
file_id: string;
|
|
336
|
+
file_path: string;
|
|
337
|
+
}) => any) | undefined;
|
|
290
338
|
}>, {
|
|
291
339
|
chunkSize: number;
|
|
292
340
|
subdir: string;
|
|
293
341
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
294
342
|
file2: import("vue").DefineComponent<import("../../types/form.js").IInputFileChunkProps & {
|
|
295
|
-
modelValue?:
|
|
343
|
+
modelValue?: {
|
|
344
|
+
file_id: string;
|
|
345
|
+
file_path: string;
|
|
346
|
+
} | string;
|
|
296
347
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
297
|
-
"update:modelValue": (value: string
|
|
348
|
+
"update:modelValue": (value: string | {
|
|
349
|
+
file_id: string;
|
|
350
|
+
file_path: string;
|
|
351
|
+
}) => any;
|
|
298
352
|
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputFileChunkProps & {
|
|
299
|
-
modelValue?:
|
|
300
|
-
|
|
301
|
-
|
|
353
|
+
modelValue?: {
|
|
354
|
+
file_id: string;
|
|
355
|
+
file_path: string;
|
|
356
|
+
} | string;
|
|
357
|
+
}> & Readonly<{
|
|
358
|
+
"onUpdate:modelValue"?: ((value: string | {
|
|
359
|
+
file_id: string;
|
|
360
|
+
file_path: string;
|
|
361
|
+
}) => any) | undefined;
|
|
302
362
|
}>, {
|
|
303
363
|
chunkSize: number;
|
|
304
364
|
subdir: string;
|
|
305
365
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
306
366
|
File2: import("vue").DefineComponent<import("../../types/form.js").IInputFileChunkProps & {
|
|
307
|
-
modelValue?:
|
|
367
|
+
modelValue?: {
|
|
368
|
+
file_id: string;
|
|
369
|
+
file_path: string;
|
|
370
|
+
} | string;
|
|
308
371
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
309
|
-
"update:modelValue": (value: string
|
|
372
|
+
"update:modelValue": (value: string | {
|
|
373
|
+
file_id: string;
|
|
374
|
+
file_path: string;
|
|
375
|
+
}) => any;
|
|
310
376
|
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputFileChunkProps & {
|
|
311
|
-
modelValue?:
|
|
312
|
-
|
|
313
|
-
|
|
377
|
+
modelValue?: {
|
|
378
|
+
file_id: string;
|
|
379
|
+
file_path: string;
|
|
380
|
+
} | string;
|
|
381
|
+
}> & Readonly<{
|
|
382
|
+
"onUpdate:modelValue"?: ((value: string | {
|
|
383
|
+
file_id: string;
|
|
384
|
+
file_path: string;
|
|
385
|
+
}) => any) | undefined;
|
|
314
386
|
}>, {
|
|
315
387
|
chunkSize: number;
|
|
316
388
|
subdir: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuCA,wBA0CE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-map.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/map/vs-input-map.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-map.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/map/vs-input-map.vue"],"names":[],"mappings":"AA0mFE,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;;;;;;;;;;;;;;;;;;;AAqkGhF,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modal-edit.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/modal/modal-edit.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"modal-edit.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/modal/modal-edit.vue"],"names":[],"mappings":"AAmRA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;;;;;;;;;;AA2b/D,wBAOG"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { shallowRef as Je, ref as $, computed as P, watch as ue, markRaw as et, nextTick as be, getCurrentInstance as tt, resolveComponent as G, openBlock as v, createElementBlock as w, normalizeClass as T, createVNode as C, createElementVNode as d, unref as k, createBlock as K, Teleport as Ve, Transition as Re, withCtx as D, toDisplayString as W, renderSlot as he, createCommentVNode as R, defineComponent as rt, withDirectives as ie, mergeProps as ot, vModelDynamic as lt, Fragment as re, vModelCheckbox as at, onMounted as fe, onBeforeUnmount as Ue, normalizeStyle as ae, vShow as ye, renderList as le, onUnmounted as ke, resolveDynamicComponent as Fe, vModelText as st, withModifiers as nt, createStaticVNode as it, useModel as ct, isRef as dt, mergeModels as Pe } from "vue";
|
|
2
|
-
import { r as Me, _ as X, a as ut, b as ft } from "./index-
|
|
2
|
+
import { r as Me, _ as X, a as ut, b as ft } from "./index-DOrBnpGK.js";
|
|
3
3
|
import { Quote as pt, List as gt, ListOrdered as ht, CodeXml as vt, Bold as mt, Italic as bt, Underline as yt, Strikethrough as xt, X as Te, Mail as wt, Search as kt, Link2 as _t, ExternalLink as $t, Trash2 as Ct, Table2 as At, AlignJustify as Ft, AlignRight as St, AlignCenter as Tt, AlignLeft as Lt, Type as Bt, Check as ve, Eraser as It, PaintBucket as Et, Highlighter as jt, ChevronDown as Le, ALargeSmall as Pt, Superscript as Mt, Subscript as Ht, RemoveFormatting as Nt, Image as zt, Undo2 as Dt, Redo2 as Ot, CircleHelp as Vt, Minus as Rt, Maximize as Ut, ListIndentIncrease as qt } from "lucide-vue-next";
|
|
4
4
|
import { notify as we } from "@opengis/core";
|
|
5
5
|
const Kt = async (t) => {
|