@opengis/form 0.0.25 → 0.0.27

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.
@@ -0,0 +1,13 @@
1
+ import { IInputProps } from "../../../types/form";
2
+ declare const _default: import("vue").DefineComponent<IInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
3
+ "update:modelValue": (v: string) => any;
4
+ }, string, import("vue").PublicProps, Readonly<IInputProps> & Readonly<{
5
+ "onUpdate:modelValue"?: ((v: string) => any) | undefined;
6
+ }>, {
7
+ style: Record<string, any>;
8
+ customClass: string;
9
+ disabled: boolean;
10
+ placeholder: string;
11
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ export default _default;
13
+ //# sourceMappingURL=vs-input-color.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vs-input-color.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/base/vs-input-color.vue"],"names":[],"mappings":"AAmDA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;;;;;;;;;;;AAuGlD,wBAQG"}
@@ -0,0 +1,21 @@
1
+ import { IInputProps } from "../../../types/form";
2
+ type __VLS_Props = IInputProps & {
3
+ min?: number;
4
+ max?: number;
5
+ step?: number;
6
+ };
7
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
8
+ "update:modelValue": (v: number) => any;
9
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
10
+ "onUpdate:modelValue"?: ((v: number) => any) | undefined;
11
+ }>, {
12
+ style: Record<string, any>;
13
+ customClass: string;
14
+ disabled: boolean;
15
+ placeholder: string;
16
+ step: number;
17
+ min: number;
18
+ max: number;
19
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ export default _default;
21
+ //# sourceMappingURL=vs-input-range.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vs-input-range.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/base/vs-input-range.vue"],"names":[],"mappings":"AAiDA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAElD,KAAK,WAAW,GAAG,WAAW,GAAG;IAC/B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;;;;;;;;;;UADO,MAAM;SAFP,MAAM;SACN,MAAM;;AAmGd,wBAQG"}
@@ -1,9 +1,13 @@
1
1
  import { IInputProps } from "../../../types/form";
2
- declare const _default: import("vue").DefineComponent<IInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
2
+ type __VLS_Props = IInputProps & {
3
+ mode?: 'datetime' | 'month' | 'week' | 'time' | 'date';
4
+ };
5
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
3
6
  "update:modelValue": (v: string) => any;
4
- }, string, import("vue").PublicProps, Readonly<IInputProps> & Readonly<{
7
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
5
8
  "onUpdate:modelValue"?: ((v: string) => any) | undefined;
6
9
  }>, {
10
+ mode: "datetime" | "month" | "week" | "time" | "date";
7
11
  style: Record<string, any>;
8
12
  customClass: string;
9
13
  disabled: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-date1.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/date/vs-input-date1.vue"],"names":[],"mappings":"AA0CA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;;;;;;;;;;;AA6ElD,wBAQG"}
1
+ {"version":3,"file":"vs-input-date1.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/date/vs-input-date1.vue"],"names":[],"mappings":"AAoDA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAElD,KAAK,WAAW,GAAG,WAAW,GAAG;IAC/B,IAAI,CAAC,EAAE,UAAU,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,CAAA;CACvD,CAAC;;;;;;UADO,UAAU,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM;;;;;;AAsFxD,wBAQG"}
@@ -178,11 +178,16 @@ declare const _default: {
178
178
  title: string;
179
179
  schema: import("../../types/form.js").ISchemaItem[];
180
180
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
181
- 'vs-input-date': import("vue").DefineComponent<import("../../types/form.js").IInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
181
+ 'vs-input-date': import("vue").DefineComponent<import("../../types/form.js").IInputProps & {
182
+ mode?: "datetime" | "month" | "week" | "time" | "date";
183
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
182
184
  "update:modelValue": (v: string) => any;
183
- }, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputProps> & Readonly<{
185
+ }, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputProps & {
186
+ mode?: "datetime" | "month" | "week" | "time" | "date";
187
+ }> & Readonly<{
184
188
  "onUpdate:modelValue"?: ((v: string) => any) | undefined;
185
189
  }>, {
190
+ mode: "datetime" | "month" | "week" | "time" | "date";
186
191
  style: Record<string, any>;
187
192
  customClass: string;
188
193
  disabled: boolean;
@@ -269,28 +274,67 @@ declare const _default: {
269
274
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
270
275
  'vs-input-slug': import("vue").DefineComponent<{
271
276
  disabled?: boolean;
272
- modelValue: string;
273
277
  placeholder?: string;
274
278
  parent: string;
275
- }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
279
+ } & {
280
+ modelValue?: string;
281
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
276
282
  "update:modelValue": (value: string) => any;
277
283
  }, string, import("vue").PublicProps, Readonly<{
278
284
  disabled?: boolean;
279
- modelValue: string;
280
285
  placeholder?: string;
281
286
  parent: string;
287
+ } & {
288
+ modelValue?: string;
282
289
  }> & Readonly<{
283
290
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
284
291
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
285
292
  'vs-input-key-value': import("vue").DefineComponent<{
286
- parent: string;
293
+ parent?: string;
287
294
  ignore?: string[];
288
295
  addButtonText?: string;
289
- }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
290
- parent: string;
296
+ modelValue?: Record<string, string>;
297
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
298
+ "update:modelValue": (v: Record<string, string>) => any;
299
+ }, string, import("vue").PublicProps, Readonly<{
300
+ parent?: string;
291
301
  ignore?: string[];
292
302
  addButtonText?: string;
293
- }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
303
+ modelValue?: Record<string, string>;
304
+ }> & Readonly<{
305
+ "onUpdate:modelValue"?: ((v: Record<string, string>) => any) | undefined;
306
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
307
+ 'vs-input-range': import("vue").DefineComponent<import("../../types/form.js").IInputProps & {
308
+ min?: number;
309
+ max?: number;
310
+ step?: number;
311
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
312
+ "update:modelValue": (v: number) => any;
313
+ }, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputProps & {
314
+ min?: number;
315
+ max?: number;
316
+ step?: number;
317
+ }> & Readonly<{
318
+ "onUpdate:modelValue"?: ((v: number) => any) | undefined;
319
+ }>, {
320
+ style: Record<string, any>;
321
+ customClass: string;
322
+ disabled: boolean;
323
+ placeholder: string;
324
+ step: number;
325
+ min: number;
326
+ max: number;
327
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
328
+ 'vs-input-color': import("vue").DefineComponent<import("../../types/form.js").IInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
329
+ "update:modelValue": (v: string) => any;
330
+ }, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputProps> & Readonly<{
331
+ "onUpdate:modelValue"?: ((v: string) => any) | undefined;
332
+ }>, {
333
+ style: Record<string, any>;
334
+ customClass: string;
335
+ disabled: boolean;
336
+ placeholder: string;
337
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
294
338
  };
295
339
  export default _default;
296
340
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyBA,wBAuBE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BA,wBAyBE"}
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-datatable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/table/vs-input-datatable.vue"],"names":[],"mappings":"AA0WA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAGvD,KAAK,WAAW,GAAG,gBAAgB,CAAC;AAoKpC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC;CAClB,CAAC;;;;;;AAuwBF,wBAOG"}
1
+ {"version":3,"file":"vs-input-datatable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/table/vs-input-datatable.vue"],"names":[],"mappings":"AA4WA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAGvD,KAAK,WAAW,GAAG,gBAAgB,CAAC;AAsKpC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC;CAClB,CAAC;;;;;;AAuwBF,wBAOG"}
@@ -1,8 +1,13 @@
1
1
  type __VLS_Props = {
2
- parent: string;
2
+ parent?: string;
3
3
  ignore?: string[];
4
4
  addButtonText?: string;
5
+ modelValue?: Record<string, string>;
5
6
  };
6
- declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
8
+ "update:modelValue": (v: Record<string, string>) => any;
9
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
10
+ "onUpdate:modelValue"?: ((v: Record<string, string>) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
12
  export default _default;
8
13
  //# sourceMappingURL=vs-input-key-value.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-key-value.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/vs-input-key-value.vue"],"names":[],"mappings":"AAyKA,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;;AAkSF,wBAMG"}
1
+ {"version":3,"file":"vs-input-key-value.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/vs-input-key-value.vue"],"names":[],"mappings":"AA2KA,KAAK,WAAW,GAAG;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACrC,CAAC;;;;;;AAsSF,wBAOG"}
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-select.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/vs-input-select.vue"],"names":[],"mappings":"AA4oBA,OAAO,KAAK,EAAE,iBAAiB,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;;;;;;;;;;;;;;;;;;;;AAm4BnE,wBAQG"}
1
+ {"version":3,"file":"vs-input-select.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/vs-input-select.vue"],"names":[],"mappings":"AA8vBA,OAAO,KAAK,EAAE,iBAAiB,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;;;;;;;;;;;;;;;;;;;;AAs/BnE,wBAQG"}
@@ -1,12 +1,14 @@
1
1
  type __VLS_Props = {
2
2
  disabled?: boolean;
3
- modelValue: string;
4
3
  placeholder?: string;
5
4
  parent: string;
6
5
  };
7
- declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
6
+ type __VLS_PublicProps = __VLS_Props & {
7
+ modelValue?: string;
8
+ };
9
+ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
10
  "update:modelValue": (value: string) => any;
9
- }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
12
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
11
13
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
14
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-slug.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/vs-input-slug.vue"],"names":[],"mappings":"AA4HA,KAAK,WAAW,GAAG;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;;;;;;AA6JF,wBAOG"}
1
+ {"version":3,"file":"vs-input-slug.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/vs-input-slug.vue"],"names":[],"mappings":"AA+GA,KAAK,WAAW,GAAG;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAoEF,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;AAkFF,wBAOG"}
@@ -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":"AAgEA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,KAAK,WAAW,GAAG,YAAY,CAAC;AAgDhC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,CAAC;;;;;;;;;;;AAmFF,wBAQG"}
1
+ {"version":3,"file":"vs-compact-form-layout.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layouts/vs-compact-form-layout.vue"],"names":[],"mappings":"AA8DA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,KAAK,WAAW,GAAG,YAAY,CAAC;AA8ChC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,CAAC;;;;;;;;;;;AAmFF,wBAQG"}
package/dist/index.css CHANGED
@@ -1 +1 @@
1
- @charset "UTF-8";.grid[data-v-91f3584a]{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:1rem}.item-file:hover>div[data-v-0ca886b3]{display:flex!important;background-color:#00000080}.widget-file .vs-button{background-color:#2563eb;color:#fff;font-size:.875rem;line-height:1.25rem;font-weight:600}.ui-dialog__modal div.flex.justify-between.items-center.py-3.px-4.border-b{border-bottom-width:0px;--tw-text-opacity: 1;color:#1f2937;font-weight:500;font-size:1.125rem;line-height:1.75rem;padding-bottom:0rem}.ui-dialog__modal .ui-dialog__content .p-4{padding-top:0rem}.slide-fade-enter-active[data-v-90320b87],.slide-fade-leave-active[data-v-90320b87]{transition:all .3s ease}.slide-fade-enter-from[data-v-90320b87],.slide-fade-leave-to[data-v-90320b87]{max-height:0;opacity:0;transform:translateY(-10px)}.slide-fade-enter-to[data-v-90320b87],.slide-fade-leave-from[data-v-90320b87]{max-height:1000px;opacity:1;transform:translateY(0)}.slide-fade-enter-active[data-v-590eff11],.slide-fade-leave-active[data-v-590eff11]{transition:all .3s ease}.slide-fade-enter-from[data-v-590eff11],.slide-fade-leave-to[data-v-590eff11]{max-height:0;opacity:0;transform:translateY(-10px)}.slide-fade-enter-to[data-v-590eff11],.slide-fade-leave-from[data-v-590eff11]{max-height:1000px;opacity:1;transform:translateY(0)}.vs-ctrl-group[data-v-e82d2d97]{display:inline-flex;flex-direction:column;background:#fff;border:1px solid #e5e7eb;border-radius:6px;overflow:hidden;box-shadow:0 1px 2px #0000000a;gap:2px}.vs-btn[data-v-e82d2d97]{width:34px;height:34px;display:inline-flex;align-items:center;justify-content:center;background:#fff;border:none;cursor:pointer;border-radius:.375rem;transition:background-color .15s ease,color .15s ease,opacity .15s}.vs-btn svg[data-v-e82d2d97]{width:16px;height:16px;stroke:currentColor;fill:none;color:#3c3c43;stroke-width:2}.vs-btn[data-v-e82d2d97]:hover,.vs-active[data-v-e82d2d97]{background:#2563eb;color:#fff}.vs-btn[data-v-e82d2d97]:disabled{opacity:.5;cursor:not-allowed}.vs-btn-danger[data-v-e82d2d97]:hover{background:#ef4444;color:#fff}.ring-2[data-v-e82d2d97]{box-shadow:0 0 0 2px #3b82f699}.leaflet-map-wrapper .leaflet-container[data-v-e82d2d97]{font:inherit}.vs-btn-row[data-v-e82d2d97]{@apply inline-flex items-center gap-2 text-sm font-medium border rounded-md px-3 py-2 bg-white text-blue-600 border-stone-200 hover:bg-blue-500 hover:text-white hover:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500 focus:ring-offset-1 transition;}.vs-btn-row[data-v-e82d2d97]:disabled{@apply opacity-50 cursor-not-allowed bg-gray-100 text-gray-400 border-gray-200 hover:bg-gray-100 hover:text-gray-400;}.fullscreen[data-v-e82d2d97]{position:fixed!important;inset:0;width:100vw!important;height:100vh!important;z-index:9999;background:#fff}.tool[data-v-e82d2d97]{line-height:1}.col-error .vs-form-text input[data-v-f76159c3]{border:1px solid red}.vs-form-text[data-v-f76159c3]{position:relative}.vs-form-text__input[data-v-f76159c3]::placeholder{opacity:.5}[draggable=true][data-v-fe75c0b1]{-webkit-user-select:none;user-select:none}
1
+ @charset "UTF-8";.grid[data-v-91f3584a]{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:1rem}.item-file:hover>div[data-v-0ca886b3]{display:flex!important;background-color:#00000080}.widget-file .vs-button{background-color:#2563eb;color:#fff;font-size:.875rem;line-height:1.25rem;font-weight:600}.ui-dialog__modal div.flex.justify-between.items-center.py-3.px-4.border-b{border-bottom-width:0px;--tw-text-opacity: 1;color:#1f2937;font-weight:500;font-size:1.125rem;line-height:1.75rem;padding-bottom:0rem}.ui-dialog__modal .ui-dialog__content .p-4{padding-top:0rem}.slide-fade-enter-active[data-v-90320b87],.slide-fade-leave-active[data-v-90320b87]{transition:all .3s ease}.slide-fade-enter-from[data-v-90320b87],.slide-fade-leave-to[data-v-90320b87]{max-height:0;opacity:0;transform:translateY(-10px)}.slide-fade-enter-to[data-v-90320b87],.slide-fade-leave-from[data-v-90320b87]{max-height:1000px;opacity:1;transform:translateY(0)}.slide-fade-enter-active[data-v-590eff11],.slide-fade-leave-active[data-v-590eff11]{transition:all .3s ease}.slide-fade-enter-from[data-v-590eff11],.slide-fade-leave-to[data-v-590eff11]{max-height:0;opacity:0;transform:translateY(-10px)}.slide-fade-enter-to[data-v-590eff11],.slide-fade-leave-from[data-v-590eff11]{max-height:1000px;opacity:1;transform:translateY(0)}.vs-ctrl-group[data-v-e82d2d97]{display:inline-flex;flex-direction:column;background:#fff;border:1px solid #e5e7eb;border-radius:6px;overflow:hidden;box-shadow:0 1px 2px #0000000a;gap:2px}.vs-btn[data-v-e82d2d97]{width:34px;height:34px;display:inline-flex;align-items:center;justify-content:center;background:#fff;border:none;cursor:pointer;border-radius:.375rem;transition:background-color .15s ease,color .15s ease,opacity .15s}.vs-btn svg[data-v-e82d2d97]{width:16px;height:16px;stroke:currentColor;fill:none;color:#3c3c43;stroke-width:2}.vs-btn[data-v-e82d2d97]:hover,.vs-active[data-v-e82d2d97]{background:#2563eb;color:#fff}.vs-btn[data-v-e82d2d97]:disabled{opacity:.5;cursor:not-allowed}.vs-btn-danger[data-v-e82d2d97]:hover{background:#ef4444;color:#fff}.ring-2[data-v-e82d2d97]{box-shadow:0 0 0 2px #3b82f699}.leaflet-map-wrapper .leaflet-container[data-v-e82d2d97]{font:inherit}.vs-btn-row[data-v-e82d2d97]{@apply inline-flex items-center gap-2 text-sm font-medium border rounded-md px-3 py-2 bg-white text-blue-600 border-stone-200 hover:bg-blue-500 hover:text-white hover:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500 focus:ring-offset-1 transition;}.vs-btn-row[data-v-e82d2d97]:disabled{@apply opacity-50 cursor-not-allowed bg-gray-100 text-gray-400 border-gray-200 hover:bg-gray-100 hover:text-gray-400;}.fullscreen[data-v-e82d2d97]{position:fixed!important;inset:0;width:100vw!important;height:100vh!important;z-index:9999;background:#fff}.tool[data-v-e82d2d97]{line-height:1}.col-error .vs-form-text input[data-v-b0eba370]{border:1px solid red}.vs-form-text[data-v-b0eba370]{position:relative}.vs-form-text__input[data-v-b0eba370]::placeholder{opacity:.5}[draggable=true][data-v-a0f7fbfc]{-webkit-user-select:none;user-select:none}
package/dist/index.d.ts CHANGED
@@ -7,6 +7,8 @@ export { default as VsInputSwitcher } from './components/inputs/base/vs-input-sw
7
7
  export { default as VsInputStatic } from './components/inputs/base/vs-input-static.vue';
8
8
  export { default as VsInputMask } from './components/inputs/base/vs-input-mask.vue';
9
9
  export { default as VsInputEmail } from "./components/inputs/base/vs-input-email.vue";
10
+ export { default as VsInputRange } from "./components/inputs/base/vs-input-range.vue";
11
+ export { default as VsInputColor } from "./components/inputs/base/vs-input-color.vue";
10
12
  export { default as VsInputRadio } from './components/inputs/options/radio/vs-input-radio.vue';
11
13
  export { default as VsInputCheckbox } from './components/inputs/options/checkbox/vs-input-checkbox.vue';
12
14
  export { default as VsInputDate } from './components/inputs/date/vs-input-date1.vue';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,uCAAuC,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,2BAA2B,CAAC;AAG9D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,8CAA8C,CAAC;AACxF,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,gDAAgD,CAAC;AAC5F,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,8CAA8C,CAAC;AACxF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,6CAA6C,CAAC;AAGtF,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sDAAsD,CAAC;AAC/F,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,4DAA4D,CAAC;AAGxG,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,6CAA6C,CAAC;AACrF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,sDAAsD,CAAC;AAClG,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,4CAA4C,CAAC;AACzF,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,yCAAyC,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,gDAAgD,CAAC;AAC5F,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,kDAAkD,CAAC;AAC/F,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,0CAA0C,CAAC;AACjF,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,0CAA0C,CAAC;AACjF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,uCAAuC,CAAC;AAC/E,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAGxF,OAAO,MAAM,MAAM,uCAAuC,CAAC;AAK3D,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,uCAAuC,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,2BAA2B,CAAC;AAG9D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,8CAA8C,CAAC;AACxF,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,gDAAgD,CAAC;AAC5F,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,8CAA8C,CAAC;AACxF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,6CAA6C,CAAC;AACtF,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,6CAA6C,CAAC;AACtF,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,6CAA6C,CAAC;AAGtF,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sDAAsD,CAAC;AAC/F,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,4DAA4D,CAAC;AAGxG,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,6CAA6C,CAAC;AACrF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,sDAAsD,CAAC;AAClG,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,4CAA4C,CAAC;AACzF,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,yCAAyC,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,gDAAgD,CAAC;AAC5F,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,kDAAkD,CAAC;AAC/F,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,0CAA0C,CAAC;AACjF,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,0CAA0C,CAAC;AACjF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,uCAAuC,CAAC;AAC/E,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAGxF,OAAO,MAAM,MAAM,uCAAuC,CAAC;AAO3D,eAAe,MAAM,CAAC"}