@opengis/form 0.0.139 → 0.0.141

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.
@@ -1,16 +1,71 @@
1
- import type { IInputNumberProps } from '../../../types/form';
2
- type __VLS_Props = IInputNumberProps;
3
- type __VLS_PublicProps = __VLS_Props & {
4
- modelValue?: number;
5
- };
6
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1
+ import { type PropType } from 'vue';
2
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ style: {
4
+ type: PropType<Record<string, any>>;
5
+ default: () => {};
6
+ };
7
+ placeholder: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ disabled: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ min: {
16
+ type: NumberConstructor;
17
+ default: undefined;
18
+ };
19
+ max: {
20
+ type: NumberConstructor;
21
+ default: undefined;
22
+ };
23
+ step: {
24
+ type: PropType<number | string>;
25
+ default: undefined;
26
+ };
27
+ modelValue: {
28
+ type: PropType<number>;
29
+ };
30
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
31
  "update:modelValue": (value: number) => any;
8
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
32
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
33
+ style: {
34
+ type: PropType<Record<string, any>>;
35
+ default: () => {};
36
+ };
37
+ placeholder: {
38
+ type: StringConstructor;
39
+ default: string;
40
+ };
41
+ disabled: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ min: {
46
+ type: NumberConstructor;
47
+ default: undefined;
48
+ };
49
+ max: {
50
+ type: NumberConstructor;
51
+ default: undefined;
52
+ };
53
+ step: {
54
+ type: PropType<number | string>;
55
+ default: undefined;
56
+ };
57
+ modelValue: {
58
+ type: PropType<number>;
59
+ };
60
+ }>> & Readonly<{
9
61
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
10
62
  }>, {
63
+ min: number;
64
+ max: number;
65
+ step: string | number;
11
66
  style: Record<string, any>;
12
67
  disabled: boolean;
13
68
  placeholder: string;
14
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
69
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
15
70
  export default _default;
16
71
  //# sourceMappingURL=vs-input-number.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-number.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/base/vs-input-number.vue"],"names":[],"mappings":"AAsCA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAE7D,KAAK,WAAW,GAAG,iBAAiB,CAAC;AAuBrC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;;;;;AAsDF,wBAQG"}
1
+ {"version":3,"file":"vs-input-number.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/base/vs-input-number.vue"],"names":[],"mappings":"AAsEA,OAAO,EAAsB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;;;cAsJpC,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;cAoBnB,QAAQ,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;;;cApBnC,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;cAoBnB,QAAQ,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;;;;;;;;;AA9BvD,wBAmCG"}
@@ -3,16 +3,18 @@ type FileItem = {
3
3
  file_id: string;
4
4
  file_path: string;
5
5
  };
6
+ /** Як у vs-input-file: з API — об’єкт(и), після вибору з інпута — path або змішаний масив. */
7
+ type FileValueModel = string | FileItem | (string | FileItem)[];
6
8
  type __VLS_Props = IInputFileProps;
7
9
  type __VLS_PublicProps = __VLS_Props & {
8
- 'value'?: FileItem | FileItem[] | string | string[];
10
+ 'value'?: FileValueModel;
9
11
  'item'?: FileItem | string;
10
12
  };
11
13
  declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
- "update:value": (value: string | string[] | FileItem | FileItem[] | undefined) => any;
14
+ "update:value": (value: FileValueModel | undefined) => any;
13
15
  "update:item": (value: string | FileItem | undefined) => any;
14
16
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
15
- "onUpdate:value"?: ((value: string | string[] | FileItem | FileItem[] | undefined) => any) | undefined;
17
+ "onUpdate:value"?: ((value: FileValueModel | undefined) => any) | undefined;
16
18
  "onUpdate:item"?: ((value: string | FileItem | undefined) => any) | undefined;
17
19
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
20
  export default _default;
@@ -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":"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
+ {"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":"AAkFA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAE9D,KAAK,QAAQ,GAAG;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,CAAC;AACvD,8FAA8F;AAC9F,KAAK,cAAc,GAAG,MAAM,GAAG,QAAQ,GAAG,CAAC,MAAM,GAAG,QAAQ,CAAC,EAAE,CAAC;AAKhE,KAAK,WAAW,GAAG,eAAe,CAAC;AAyBnC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,OAAO,CAAC,EAAE,cAAc,CAAC;IACzB,MAAM,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAC;CAC1B,CAAC;;;;;;;;AAkJF,wBAOG"}
@@ -3,16 +3,17 @@ type FileItem = {
3
3
  file_id: string;
4
4
  file_path: string;
5
5
  };
6
+ type FileModelValue = string | FileItem | (string | FileItem)[];
6
7
  type __VLS_Props = IInputFileProps;
7
8
  type __VLS_PublicProps = __VLS_Props & {
8
- modelValue?: FileItem | FileItem[];
9
+ modelValue?: FileModelValue;
9
10
  };
10
11
  declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
- change: (value: FileItem | FileItem[]) => any;
12
- "update:modelValue": (value: FileItem | FileItem[] | undefined) => any;
12
+ change: (value: FileModelValue) => any;
13
+ "update:modelValue": (value: FileModelValue | undefined) => any;
13
14
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
- onChange?: ((value: FileItem | FileItem[]) => any) | undefined;
15
- "onUpdate:modelValue"?: ((value: FileItem | FileItem[] | undefined) => any) | undefined;
15
+ onChange?: ((value: FileModelValue) => any) | undefined;
16
+ "onUpdate:modelValue"?: ((value: FileModelValue | undefined) => any) | undefined;
16
17
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
18
  export default _default;
18
19
  //# 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":"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
+ {"version":3,"file":"vs-input-file.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/file/vs-input-file.vue"],"names":[],"mappings":"AAuSA,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAEtD,KAAK,QAAQ,GAAG;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,CAAC;AACvD,KAAK,cAAc,GAAG,MAAM,GAAG,QAAQ,GAAG,CAAC,MAAM,GAAG,QAAQ,CAAC,EAAE,CAAC;AAEhE,KAAK,WAAW,GAAG,eAAe,CAAC;AAqNnC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,cAAc,CAAC;CAC3B,CAAC;;;;;;;;AAsLF,wBAOG"}
@@ -108,19 +108,74 @@ declare const _default: {
108
108
  placeholder: string;
109
109
  customClass: string;
110
110
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
111
- 'vs-input-number': import("vue").DefineComponent<import("../../types/form.js").IInputNumberProps & {
112
- modelValue?: number;
113
- }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
111
+ 'vs-input-number': import("vue").DefineComponent<import("vue").ExtractPropTypes<{
112
+ style: {
113
+ type: import("vue").PropType<Record<string, any>>;
114
+ default: () => {};
115
+ };
116
+ placeholder: {
117
+ type: StringConstructor;
118
+ default: string;
119
+ };
120
+ disabled: {
121
+ type: BooleanConstructor;
122
+ default: boolean;
123
+ };
124
+ min: {
125
+ type: NumberConstructor;
126
+ default: undefined;
127
+ };
128
+ max: {
129
+ type: NumberConstructor;
130
+ default: undefined;
131
+ };
132
+ step: {
133
+ type: import("vue").PropType<number | string>;
134
+ default: undefined;
135
+ };
136
+ modelValue: {
137
+ type: import("vue").PropType<number>;
138
+ };
139
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
114
140
  "update:modelValue": (value: number) => any;
115
- }, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputNumberProps & {
116
- modelValue?: number;
117
- }> & Readonly<{
141
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
142
+ style: {
143
+ type: import("vue").PropType<Record<string, any>>;
144
+ default: () => {};
145
+ };
146
+ placeholder: {
147
+ type: StringConstructor;
148
+ default: string;
149
+ };
150
+ disabled: {
151
+ type: BooleanConstructor;
152
+ default: boolean;
153
+ };
154
+ min: {
155
+ type: NumberConstructor;
156
+ default: undefined;
157
+ };
158
+ max: {
159
+ type: NumberConstructor;
160
+ default: undefined;
161
+ };
162
+ step: {
163
+ type: import("vue").PropType<number | string>;
164
+ default: undefined;
165
+ };
166
+ modelValue: {
167
+ type: import("vue").PropType<number>;
168
+ };
169
+ }>> & Readonly<{
118
170
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
119
171
  }>, {
172
+ min: number;
173
+ max: number;
174
+ step: string | number;
120
175
  style: Record<string, any>;
121
176
  disabled: boolean;
122
177
  placeholder: string;
123
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
178
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
124
179
  'vs-input-radio': import("vue").DefineComponent<import("../../types/form.js").IInputRadioProps & {
125
180
  modelValue?: string;
126
181
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -269,51 +324,51 @@ declare const _default: {
269
324
  modelValue: any;
270
325
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
271
326
  'vs-input-file': import("vue").DefineComponent<import("../../types/form.js").IInputFileProps & {
272
- modelValue?: {
327
+ modelValue?: string | {
273
328
  file_id: string;
274
329
  file_path: string;
275
- } | {
330
+ } | (string | {
276
331
  file_id: string;
277
332
  file_path: string;
278
- }[];
333
+ })[];
279
334
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
280
- change: (value: {
335
+ change: (value: string | {
281
336
  file_id: string;
282
337
  file_path: string;
283
- } | {
338
+ } | (string | {
284
339
  file_id: string;
285
340
  file_path: string;
286
- }[]) => any;
287
- "update:modelValue": (value: {
341
+ })[]) => any;
342
+ "update:modelValue": (value: (string | {
288
343
  file_id: string;
289
344
  file_path: string;
290
- } | {
345
+ } | (string | {
291
346
  file_id: string;
292
347
  file_path: string;
293
- }[] | undefined) => any;
348
+ })[]) | undefined) => any;
294
349
  }, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputFileProps & {
295
- modelValue?: {
350
+ modelValue?: string | {
296
351
  file_id: string;
297
352
  file_path: string;
298
- } | {
353
+ } | (string | {
299
354
  file_id: string;
300
355
  file_path: string;
301
- }[];
356
+ })[];
302
357
  }> & Readonly<{
303
- onChange?: ((value: {
358
+ onChange?: ((value: string | {
304
359
  file_id: string;
305
360
  file_path: string;
306
- } | {
361
+ } | (string | {
307
362
  file_id: string;
308
363
  file_path: string;
309
- }[]) => any) | undefined;
310
- "onUpdate:modelValue"?: ((value: {
364
+ })[]) => any) | undefined;
365
+ "onUpdate:modelValue"?: ((value: (string | {
311
366
  file_id: string;
312
367
  file_path: string;
313
- } | {
368
+ } | (string | {
314
369
  file_id: string;
315
370
  file_path: string;
316
- }[] | undefined) => any) | undefined;
371
+ })[]) | undefined) => any) | undefined;
317
372
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
318
373
  'vs-input-file2': import("vue").DefineComponent<import("../../types/form.js").IInputFileChunkProps & {
319
374
  modelValue?: {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuCA,wBA0CE"}
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-compact-form-layout.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layouts/vs-compact-form-layout.vue"],"names":[],"mappings":"AA+KA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,KAAK,WAAW,GAAG,YAAY,CAAC;AAkJhC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,CAAC;;;;;;;;;;;;;;;;;;AA+GF,wBAQG"}
1
+ {"version":3,"file":"vs-compact-form-layout.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layouts/vs-compact-form-layout.vue"],"names":[],"mappings":"AA8KA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,KAAK,WAAW,GAAG,YAAY,CAAC;AAiJhC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,CAAC;;;;;;;;;;;;;;;;;;AA+GF,wBAQG"}
@@ -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, createElementBlock as w, openBlock as v, normalizeClass as T, createVNode as C, createElementVNode as d, unref as k, createBlock as K, Teleport as Ve, createCommentVNode as R, Transition as Re, withCtx as D, toDisplayString as W, renderSlot as he, 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, mergeModels as Pe, useModel as ct, isRef as dt } from "vue";
2
- import { r as Me, _ as X, a as ut, b as ft } from "./index-kKKKCGVc.js";
2
+ import { r as Me, _ as X, a as ut, b as ft } from "./index-CuCkJJxN.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) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@opengis/form",
3
3
  "private": false,
4
- "version": "0.0.139",
4
+ "version": "0.0.141",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",