@kong-ui-public/forms 4.15.4-pr.2315.147b66d4f.0 → 4.15.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.
Files changed (42) hide show
  1. package/dist/types/components/FormGenerator.vue.d.ts +36 -6
  2. package/dist/types/components/FormGenerator.vue.d.ts.map +1 -1
  3. package/dist/types/components/FormGroup.vue.d.ts +7 -1
  4. package/dist/types/components/FormGroup.vue.d.ts.map +1 -1
  5. package/dist/types/components/FormMixin.vue.d.ts +7 -1
  6. package/dist/types/components/FormRedis.vue.d.ts +1 -1
  7. package/dist/types/components/FormRedis.vue.d.ts.map +1 -1
  8. package/dist/types/components/RedisConfigCard.vue.d.ts +3 -3
  9. package/dist/types/components/RedisConfigCard.vue.d.ts.map +1 -1
  10. package/dist/types/components/RedisConfigSelect.vue.d.ts +3 -3
  11. package/dist/types/components/RedisConfigSelect.vue.d.ts.map +1 -1
  12. package/dist/types/components/fields/FieldArray.vue.d.ts +11 -10
  13. package/dist/types/components/fields/FieldArrayCardContainer.vue.d.ts +6 -10
  14. package/dist/types/components/fields/FieldArrayCardContainer.vue.d.ts.map +1 -1
  15. package/dist/types/components/fields/FieldArrayItem.vue.d.ts +8 -11
  16. package/dist/types/components/fields/FieldArrayItem.vue.d.ts.map +1 -1
  17. package/dist/types/components/fields/FieldArrayMultiItem.vue.d.ts +6 -10
  18. package/dist/types/components/fields/FieldArrayMultiItem.vue.d.ts.map +1 -1
  19. package/dist/types/components/fields/FieldCheckbox.vue.d.ts.map +1 -1
  20. package/dist/types/components/fields/FieldInput.vue.d.ts.map +1 -1
  21. package/dist/types/components/fields/FieldLabel.vue.d.ts +1 -1
  22. package/dist/types/components/fields/FieldLabel.vue.d.ts.map +1 -1
  23. package/dist/types/components/fields/FieldMultiselect.vue.d.ts.map +1 -1
  24. package/dist/types/components/fields/FieldObjectAdvanced.vue.d.ts.map +1 -1
  25. package/dist/types/components/fields/FieldRadio.vue.d.ts.map +1 -1
  26. package/dist/types/components/fields/FieldSelect.vue.d.ts.map +1 -1
  27. package/dist/types/components/fields/FieldSwitch.vue.d.ts.map +1 -1
  28. package/dist/types/components/fields/FieldTextArea.vue.d.ts.map +1 -1
  29. package/dist/types/components/forms/ACMEForm.vue.d.ts +1 -1
  30. package/dist/types/components/forms/ACMEForm.vue.d.ts.map +1 -1
  31. package/dist/types/components/forms/ExitTransformer.vue.d.ts +1 -1
  32. package/dist/types/components/forms/ExitTransformer.vue.d.ts.map +1 -1
  33. package/dist/types/components/forms/OIDCForm.vue.d.ts +36 -6
  34. package/dist/types/components/forms/PostFunction.vue.d.ts +1 -1
  35. package/dist/types/components/forms/PostFunction.vue.d.ts.map +1 -1
  36. package/dist/types/components/forms/RLAForm.vue.d.ts +3 -11
  37. package/dist/types/components/forms/RLAForm.vue.d.ts.map +1 -1
  38. package/dist/types/index.d.ts.map +1 -1
  39. package/dist/types/utils/isValidUuid.d.ts.map +1 -1
  40. package/dist/types/utils/redisPartial.d.ts.map +1 -1
  41. package/dist/types/utils/schema.d.ts.map +1 -1
  42. package/package.json +5 -5
@@ -92,7 +92,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
92
92
  onPartialToggled?: ((...args: any[]) => any) | undefined;
93
93
  onShowNewPartialModal?: ((...args: any[]) => any) | undefined;
94
94
  }>, {}, {}, {}, import("vue").MethodOptions, import("vue").DefineComponent<{}, {}, {}, {}, {
95
- getFieldRowClasses(field: any): any;
95
+ getFieldRowClasses(field: any): {
96
+ [x: number]: any;
97
+ disabled: any;
98
+ readonly: any;
99
+ featured: any;
100
+ required: any;
101
+ };
96
102
  fieldErrors(field: any): any;
97
103
  fieldDisabled(field: any): any;
98
104
  fieldReadonly(field: any): any;
@@ -153,7 +159,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
153
159
  D: {};
154
160
  C: {};
155
161
  M: {
156
- getFieldRowClasses(field: any): any;
162
+ getFieldRowClasses(field: any): {
163
+ [x: number]: any;
164
+ disabled: any;
165
+ readonly: any;
166
+ featured: any;
167
+ required: any;
168
+ };
157
169
  fieldErrors(field: any): any;
158
170
  fieldDisabled(field: any): any;
159
171
  fieldReadonly(field: any): any;
@@ -218,7 +230,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
218
230
  onPartialToggled?: ((...args: any[]) => any) | undefined;
219
231
  onShowNewPartialModal?: ((...args: any[]) => any) | undefined;
220
232
  }>, {}, {}, {}, {
221
- getFieldRowClasses(field: any): any;
233
+ getFieldRowClasses(field: any): {
234
+ [x: number]: any;
235
+ disabled: any;
236
+ readonly: any;
237
+ featured: any;
238
+ required: any;
239
+ };
222
240
  fieldErrors(field: any): any;
223
241
  fieldDisabled(field: any): any;
224
242
  fieldReadonly(field: any): any;
@@ -240,7 +258,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
240
258
  validate(isAsync?: null): boolean | any[] | Promise<boolean | any[]>;
241
259
  clearValidationErrors(): void;
242
260
  }, import("vue").DefineComponent<{}, {}, {}, {}, {
243
- getFieldRowClasses(field: any): any;
261
+ getFieldRowClasses(field: any): {
262
+ [x: number]: any;
263
+ disabled: any;
264
+ readonly: any;
265
+ featured: any;
266
+ required: any;
267
+ };
244
268
  fieldErrors(field: any): any;
245
269
  fieldDisabled(field: any): any;
246
270
  fieldReadonly(field: any): any;
@@ -348,7 +372,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
348
372
  clearValidationErrors(): any;
349
373
  formattedLabel(originalLabel: any): any;
350
374
  }, import("vue").DefineComponent<{}, {}, {}, {}, {
351
- getFieldRowClasses(field: any): any;
375
+ getFieldRowClasses(field: any): {
376
+ [x: number]: any;
377
+ disabled: any;
378
+ readonly: any;
379
+ featured: any;
380
+ required: any;
381
+ };
352
382
  fieldErrors(field: any): any;
353
383
  fieldDisabled(field: any): any;
354
384
  fieldReadonly(field: any): any;
@@ -419,7 +449,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
419
449
  type: BooleanConstructor;
420
450
  default: boolean;
421
451
  };
422
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
452
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
423
453
  validated: (res: boolean, errors: any[], field: any) => any;
424
454
  modelUpdated: (payload: any, schema: string) => any;
425
455
  refreshModel: () => any;
@@ -1 +1 @@
1
- {"version":3,"file":"FormGenerator.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormGenerator.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCA2qBa,OAAO,yBAAyB,EAAE,oBAAoB;sBACtD,OAAO,yBAAyB,EAAE,OAAO;;kBAG5C,oBAAoB,YAAC;YACrB,OAAO,YAAC;;oBAEL,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,YAAY"}
1
+ {"version":3,"file":"FormGenerator.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormGenerator.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCA2qBa,OAAO,yBAAyB,EAAE,oBAAoB;sBACtD,OAAO,yBAAyB,EAAE,OAAO;;kBAG5C,oBAAoB,YAAC;YACrB,OAAO,YAAC;;oBAEL,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,YAAY"}
@@ -41,7 +41,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
41
41
  clearValidationErrors(): any;
42
42
  formattedLabel(originalLabel: any): any;
43
43
  }, import("vue").DefineComponent<{}, {}, {}, {}, {
44
- getFieldRowClasses(field: any): any;
44
+ getFieldRowClasses(field: any): {
45
+ [x: number]: any;
46
+ disabled: any;
47
+ readonly: any;
48
+ featured: any;
49
+ required: any;
50
+ };
45
51
  fieldErrors(field: any): any;
46
52
  fieldDisabled(field: any): any;
47
53
  fieldReadonly(field: any): any;
@@ -1 +1 @@
1
- {"version":3,"file":"FormGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormGroup.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA8ViC,uBAAuB"}
1
+ {"version":3,"file":"FormGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormGroup.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA8ViC,uBAAuB"}
@@ -1,5 +1,11 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {
2
- getFieldRowClasses(field: any): any;
2
+ getFieldRowClasses(field: any): {
3
+ [x: number]: any;
4
+ disabled: any;
5
+ readonly: any;
6
+ featured: any;
7
+ required: any;
8
+ };
3
9
  fieldErrors(field: any): any;
4
10
  fieldDisabled(field: any): any;
5
11
  fieldReadonly(field: any): any;
@@ -38,7 +38,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
38
38
  type: BooleanConstructor;
39
39
  default: boolean;
40
40
  };
41
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
41
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
42
42
  validated: (res: boolean, errors: any[], field: any) => any;
43
43
  modelUpdated: (payload: any, schema: string) => any;
44
44
  refreshModel: () => any;
@@ -1 +1 @@
1
- {"version":3,"file":"FormRedis.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormRedis.vue"],"names":[],"mappings":"AAmQA,OAAO,EAAuC,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;AAQxE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;;;;;2BA2ehB,MAAM,KAAG,OAAO;;;;;;;;;;;cAa3B,QAAQ,CAAC,eAAe,CAAC;;;;;;;IAO3C;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;2BAtB0B,MAAM,KAAG,OAAO;;;;;;;;;;;cAa3B,QAAQ,CAAC,eAAe,CAAC;;;;;;;IAO3C;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;AAtCL,wBAuDG"}
1
+ {"version":3,"file":"FormRedis.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormRedis.vue"],"names":[],"mappings":"AAmQA,OAAO,EAAuC,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;AAQxE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;;;;;2BAkehB,MAAM,KAAG,OAAO;;;;;;;;;;;cAa3B,QAAQ,CAAC,eAAe,CAAC;;;;;;;IAO3C;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;2BAtB0B,MAAM,KAAG,OAAO;;;;;;;;;;;cAa3B,QAAQ,CAAC,eAAe,CAAC;;;;;;;IAO3C;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;AA9BL,wBA+CG"}
@@ -20,12 +20,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
20
20
  from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
21
21
  of<T>(...items: T[]): T[];
22
22
  fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
23
- fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
23
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
24
24
  readonly [Symbol.species]: ArrayConstructor;
25
25
  };
26
26
  required: true;
27
27
  };
28
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
28
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
29
29
  configFields: {
30
30
  type: PropType<FlattendRedisConfigurationFields>;
31
31
  required: true;
@@ -44,7 +44,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
44
44
  from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
45
45
  of<T>(...items: T[]): T[];
46
46
  fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
47
- fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
47
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
48
48
  readonly [Symbol.species]: ArrayConstructor;
49
49
  };
50
50
  required: true;
@@ -1 +1 @@
1
- {"version":3,"file":"RedisConfigCard.vue.d.ts","sourceRoot":"","sources":["../../../src/components/RedisConfigCard.vue"],"names":[],"mappings":"AAmKA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gCAAgC,CAAA;AAM3D,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,UAAU,CAAA;;;cA0L5C,QAAQ,CAAC,gCAAgC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;cAA1C,QAAQ,CAAC,gCAAgC,CAAC;;;;;;;;;;;;;;;;;;;;;;;AAP9D,wBAeG"}
1
+ {"version":3,"file":"RedisConfigCard.vue.d.ts","sourceRoot":"","sources":["../../../src/components/RedisConfigCard.vue"],"names":[],"mappings":"AAmKA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gCAAgC,CAAA;AAM3D,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,UAAU,CAAA;;;cAwL5C,QAAQ,CAAC,gCAAgC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;cAA1C,QAAQ,CAAC,gCAAgC,CAAC;;;;;;;;;;;;;;;;;;;;;;;AAL9D,wBAaG"}
@@ -24,7 +24,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
24
24
  from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
25
25
  of<T>(...items: T[]): T[];
26
26
  fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
27
- fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
27
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
28
28
  readonly [Symbol.species]: ArrayConstructor;
29
29
  };
30
30
  required: true;
@@ -37,7 +37,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
37
37
  type: BooleanConstructor;
38
38
  default: boolean;
39
39
  };
40
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
40
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
41
41
  showNewPartialModal: () => any;
42
42
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
43
43
  defaultRedisConfigItem: {
@@ -63,7 +63,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
63
63
  from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
64
64
  of<T>(...items: T[]): T[];
65
65
  fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
66
- fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
66
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
67
67
  readonly [Symbol.species]: ArrayConstructor;
68
68
  };
69
69
  required: true;
@@ -1 +1 @@
1
- {"version":3,"file":"RedisConfigSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/RedisConfigSelect.vue"],"names":[],"mappings":"AA+RA,OAAO,EAAyD,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;AAiB1F,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gCAAgC,CAAA;;;;;;;;cAiYrC,QAAQ,CAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAxC,QAAQ,CAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAf9D,wBA+BG"}
1
+ {"version":3,"file":"RedisConfigSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/RedisConfigSelect.vue"],"names":[],"mappings":"AA+RA,OAAO,EAAyD,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;AAiB1F,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gCAAgC,CAAA;;;;;;;;cAiZrC,QAAQ,CAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAxC,QAAQ,CAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAX9D,wBA2BG"}
@@ -72,7 +72,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
72
72
  };
73
73
  }>> & Readonly<{
74
74
  "onRemove-item"?: (() => any) | undefined;
75
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
75
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
76
76
  "remove-item": () => any;
77
77
  }, import("vue").PublicProps, {
78
78
  model: string;
@@ -103,20 +103,21 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
103
103
  };
104
104
  }>> & Readonly<{
105
105
  "onRemove-item"?: (() => any) | undefined;
106
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
106
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
107
107
  "remove-item": () => any;
108
108
  }, string, {
109
109
  model: string;
110
110
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
111
111
  $slots: {
112
- default?(_: {}): any;
113
- after?(_: {}): any;
112
+ default?: (props: {}) => any;
113
+ } & {
114
+ after?: (props: {}) => any;
114
115
  };
115
116
  });
116
117
  FieldArrayMultiItem: {
117
118
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
118
119
  "onRemove-item"?: (() => any) | undefined;
119
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
120
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
120
121
  "remove-item": () => any;
121
122
  }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
122
123
  P: {};
@@ -133,11 +134,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
133
134
  __isSuspense?: never;
134
135
  } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{
135
136
  "onRemove-item"?: (() => any) | undefined;
136
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
137
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
137
138
  "remove-item": () => any;
138
139
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
139
140
  $slots: {
140
- default?(_: {}): any;
141
+ default?: (props: {}) => any;
141
142
  };
142
143
  });
143
144
  FieldSelect: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -664,7 +665,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
664
665
  };
665
666
  }>> & Readonly<{
666
667
  "onRemove-item"?: (() => any) | undefined;
667
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
668
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
668
669
  "remove-item": () => any;
669
670
  }, import("vue").PublicProps, {
670
671
  model: Record<string, any>;
@@ -715,7 +716,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
715
716
  };
716
717
  }>> & Readonly<{
717
718
  "onRemove-item"?: (() => any) | undefined;
718
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
719
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
719
720
  "remove-item": () => any;
720
721
  }, string, {
721
722
  model: Record<string, any>;
@@ -723,7 +724,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
723
724
  index: number;
724
725
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
725
726
  $slots: {
726
- default?(_: {}): any;
727
+ default?: (props: {}) => any;
727
728
  };
728
729
  });
729
730
  FieldInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -1,11 +1,7 @@
1
- declare function __VLS_template(): {
2
- slots: {
3
- default?(_: {}): any;
4
- };
5
- refs: {};
6
- attrs: Partial<{}>;
1
+ declare var __VLS_6: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_6) => any;
7
4
  };
8
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
5
  declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
10
6
  model: {
11
7
  type: ObjectConstructor;
@@ -19,7 +15,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
19
15
  type: NumberConstructor;
20
16
  default: undefined;
21
17
  };
22
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
18
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
23
19
  "remove-item": () => any;
24
20
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
25
21
  model: {
@@ -41,9 +37,9 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
41
37
  schema: Record<string, any>;
42
38
  index: number;
43
39
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
44
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
40
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
45
41
  export default _default;
46
- type __VLS_WithTemplateSlots<T, S> = T & {
42
+ type __VLS_WithSlots<T, S> = T & {
47
43
  new (): {
48
44
  $slots: S;
49
45
  };
@@ -1 +1 @@
1
- {"version":3,"file":"FieldArrayCardContainer.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldArrayCardContainer.vue"],"names":[],"mappings":"AA+GA,iBAAS,cAAc;;yBAwEM,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AAyBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAsBnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAKpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"FieldArrayCardContainer.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldArrayCardContainer.vue"],"names":[],"mappings":"AAiKA,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAiC/C,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAkBnB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAE1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,18 +1,15 @@
1
- declare function __VLS_template(): {
2
- slots: {
3
- default?(_: {}): any;
4
- after?(_: {}): any;
5
- };
6
- refs: {};
7
- attrs: Partial<{}>;
1
+ declare var __VLS_1: {}, __VLS_16: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_1) => any;
4
+ } & {
5
+ after?: (props: typeof __VLS_16) => any;
8
6
  };
9
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
7
  declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
11
8
  model: {
12
9
  type: StringConstructor;
13
10
  default: string;
14
11
  };
15
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
12
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
16
13
  "remove-item": () => any;
17
14
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
18
15
  model: {
@@ -24,9 +21,9 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
24
21
  }>, {
25
22
  model: string;
26
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
27
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
24
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
28
25
  export default _default;
29
- type __VLS_WithTemplateSlots<T, S> = T & {
26
+ type __VLS_WithSlots<T, S> = T & {
30
27
  new (): {
31
28
  $slots: S;
32
29
  };
@@ -1 +1 @@
1
- {"version":3,"file":"FieldArrayItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldArrayItem.vue"],"names":[],"mappings":"AAiFA,iBAAS,cAAc;;yBAqEM,GAAG;uBACJ,GAAG;;;WASjB,OAAO,IAA6B;EAEjD;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;4EAcnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAKpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"FieldArrayItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldArrayItem.vue"],"names":[],"mappings":"AAwIA,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAY,CAAE;AAC7C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC5C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAyB9C,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;4EAUnB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAE1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,19 +1,15 @@
1
- declare function __VLS_template(): {
2
- slots: {
3
- default?(_: {}): any;
4
- };
5
- refs: {};
6
- attrs: Partial<{}>;
1
+ declare var __VLS_1: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_1) => any;
7
4
  };
8
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
- declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
5
+ declare const __VLS_component: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
10
6
  "remove-item": () => any;
11
7
  }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
12
8
  "onRemove-item"?: (() => any) | undefined;
13
9
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
14
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
10
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
15
11
  export default _default;
16
- type __VLS_WithTemplateSlots<T, S> = T & {
12
+ type __VLS_WithSlots<T, S> = T & {
17
13
  new (): {
18
14
  $slots: S;
19
15
  };
@@ -1 +1 @@
1
- {"version":3,"file":"FieldArrayMultiItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldArrayMultiItem.vue"],"names":[],"mappings":"AAwCA,iBAAS,cAAc;;yBAwDM,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;iFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAKpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"FieldArrayMultiItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldArrayMultiItem.vue"],"names":[],"mappings":"AAiFA,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAkB/C,QAAA,MAAM,eAAe;;;;iFAInB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAE1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"FieldCheckbox.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldCheckbox.vue"],"names":[],"mappings":"AAoFA,OAAO,EAAU,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cAkNvB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AAjCL,wBA2CG"}
1
+ {"version":3,"file":"FieldCheckbox.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldCheckbox.vue"],"names":[],"mappings":"AAoFA,OAAO,EAAU,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cA8KvB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AA7BL,wBAuCG"}
@@ -1 +1 @@
1
- {"version":3,"file":"FieldInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldInput.vue"],"names":[],"mappings":"AA4PA,OAAO,EAA2D,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cA+XxE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AAjCL,wBA2CG"}
1
+ {"version":3,"file":"FieldInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldInput.vue"],"names":[],"mappings":"AA4PA,OAAO,EAA2D,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cAmWxE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AA7BL,wBAuCG"}
@@ -20,7 +20,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
20
20
  type: ObjectConstructor;
21
21
  required: true;
22
22
  };
23
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
23
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
24
24
  disabled: {
25
25
  type: BooleanConstructor;
26
26
  default: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"FieldLabel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldLabel.vue"],"names":[],"mappings":"AAqDA,OAAO,EAAU,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cAuJvB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;;;;;;;cAR7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;;;;;;AAnBjD,wBA2BG"}
1
+ {"version":3,"file":"FieldLabel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldLabel.vue"],"names":[],"mappings":"AAqDA,OAAO,EAAU,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cAyHvB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;;;;;;;cAR7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;;;;;;AAjBjD,wBAyBG"}
@@ -1 +1 @@
1
- {"version":3,"file":"FieldMultiselect.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldMultiselect.vue"],"names":[],"mappings":"AA2FA,OAAO,EAAmB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cA2NhC,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AAjCL,wBA2CG"}
1
+ {"version":3,"file":"FieldMultiselect.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldMultiselect.vue"],"names":[],"mappings":"AA2FA,OAAO,EAAmB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cA2LhC,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AA7BL,wBAuCG"}
@@ -1 +1 @@
1
- {"version":3,"file":"FieldObjectAdvanced.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldObjectAdvanced.vue"],"names":[],"mappings":";;;;;;;;;;IA0rBI;;;;;;;;;;;;;;;;;;;OAmBG;2CAfQ,MAAM,iCAGJ,MAAM"}
1
+ {"version":3,"file":"FieldObjectAdvanced.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldObjectAdvanced.vue"],"names":[],"mappings":";;;;;;;;;;IA0vBI;;;;;;;;;;;;;;;;;;;OAmBG;2CAfQ,MAAM,iCAGJ,MAAM"}
@@ -1 +1 @@
1
- {"version":3,"file":"FieldRadio.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldRadio.vue"],"names":[],"mappings":"AAqGA,OAAO,EAAU,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cA8OvB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AAjCL,wBA2CG"}
1
+ {"version":3,"file":"FieldRadio.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldRadio.vue"],"names":[],"mappings":"AAqGA,OAAO,EAAU,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cAiMvB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AA7BL,wBAuCG"}
@@ -1 +1 @@
1
- {"version":3,"file":"FieldSelect.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldSelect.vue"],"names":[],"mappings":"AAsJA,OAAO,EAAoB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cAuRjC,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AAjCL,wBA2CG"}
1
+ {"version":3,"file":"FieldSelect.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldSelect.vue"],"names":[],"mappings":"AAsJA,OAAO,EAAoB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cAqPjC,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AA7BL,wBAuCG"}
@@ -1 +1 @@
1
- {"version":3,"file":"FieldSwitch.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldSwitch.vue"],"names":[],"mappings":"AAsGA,OAAO,EAAU,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cAyOvB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AAjCL,wBA2CG"}
1
+ {"version":3,"file":"FieldSwitch.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldSwitch.vue"],"names":[],"mappings":"AAsGA,OAAO,EAAU,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cAiMvB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AA7BL,wBAuCG"}
@@ -1 +1 @@
1
- {"version":3,"file":"FieldTextArea.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldTextArea.vue"],"names":[],"mappings":"AAyGA,OAAO,EAAkB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cAgO/B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AAjCL,wBA2CG"}
1
+ {"version":3,"file":"FieldTextArea.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fields/FieldTextArea.vue"],"names":[],"mappings":"AAyGA,OAAO,EAAkB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cA8M/B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;;cAlBe,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;cAI7B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;;;;IAO/C;;;OAGG;;;;;;;;;;;;;;;;;;AA7BL,wBAuCG"}
@@ -20,7 +20,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
20
20
  type: BooleanConstructor;
21
21
  required: true;
22
22
  };
23
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
23
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
24
24
  formModel: {
25
25
  type: PropType<any>;
26
26
  required: true;
@@ -1 +1 @@
1
- {"version":3,"file":"ACMEForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/ACMEForm.vue"],"names":[],"mappings":"AAsZA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;;;cAwsBf,QAAQ,CAAC,GAAG,CAAC;;;;cAIb,QAAQ,CAAC,GAAG,CAAC;;;;cAIb,QAAQ,CAAC,GAAG,CAAC;;;;cAIX,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;cAZtB,QAAQ,CAAC,GAAG,CAAC;;;;cAIb,QAAQ,CAAC,GAAG,CAAC;;;;cAIb,QAAQ,CAAC,GAAG,CAAC;;;;cAIX,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;;AAnB1C,wBA2BG"}
1
+ {"version":3,"file":"ACMEForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/ACMEForm.vue"],"names":[],"mappings":"AAsZA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;;;cA0rBf,QAAQ,CAAC,GAAG,CAAC;;;;cAIb,QAAQ,CAAC,GAAG,CAAC;;;;cAIb,QAAQ,CAAC,GAAG,CAAC;;;;cAIX,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;cAZtB,QAAQ,CAAC,GAAG,CAAC;;;;cAIb,QAAQ,CAAC,GAAG,CAAC;;;;cAIb,QAAQ,CAAC,GAAG,CAAC;;;;cAIX,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;;AAjB1C,wBAyBG"}
@@ -20,7 +20,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
20
20
  type: BooleanConstructor;
21
21
  required: true;
22
22
  };
23
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
23
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
24
24
  formModel: {
25
25
  type: ObjectConstructor;
26
26
  required: true;
@@ -1 +1 @@
1
- {"version":3,"file":"ExitTransformer.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/ExitTransformer.vue"],"names":[],"mappings":"AAyFA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;;;;;;;;;cA+Mb,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;cAApB,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;;AAnB1C,wBA2BG"}
1
+ {"version":3,"file":"ExitTransformer.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/ExitTransformer.vue"],"names":[],"mappings":"AAyFA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;;;;;;;;;cAoKb,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;cAApB,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;;AAjB1C,wBAyBG"}
@@ -189,7 +189,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
189
189
  onPartialToggled?: ((...args: any[]) => any) | undefined;
190
190
  onShowNewPartialModal?: ((...args: any[]) => any) | undefined;
191
191
  }>, {}, {}, {}, import("vue").MethodOptions, import("vue").DefineComponent<{}, {}, {}, {}, {
192
- getFieldRowClasses(field: any): any;
192
+ getFieldRowClasses(field: any): {
193
+ [x: number]: any;
194
+ disabled: any;
195
+ readonly: any;
196
+ featured: any;
197
+ required: any;
198
+ };
193
199
  fieldErrors(field: any): any;
194
200
  fieldDisabled(field: any): any;
195
201
  fieldReadonly(field: any): any;
@@ -250,7 +256,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
250
256
  D: {};
251
257
  C: {};
252
258
  M: {
253
- getFieldRowClasses(field: any): any;
259
+ getFieldRowClasses(field: any): {
260
+ [x: number]: any;
261
+ disabled: any;
262
+ readonly: any;
263
+ featured: any;
264
+ required: any;
265
+ };
254
266
  fieldErrors(field: any): any;
255
267
  fieldDisabled(field: any): any;
256
268
  fieldReadonly(field: any): any;
@@ -315,7 +327,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
315
327
  onPartialToggled?: ((...args: any[]) => any) | undefined;
316
328
  onShowNewPartialModal?: ((...args: any[]) => any) | undefined;
317
329
  }>, {}, {}, {}, {
318
- getFieldRowClasses(field: any): any;
330
+ getFieldRowClasses(field: any): {
331
+ [x: number]: any;
332
+ disabled: any;
333
+ readonly: any;
334
+ featured: any;
335
+ required: any;
336
+ };
319
337
  fieldErrors(field: any): any;
320
338
  fieldDisabled(field: any): any;
321
339
  fieldReadonly(field: any): any;
@@ -337,7 +355,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
337
355
  validate(isAsync?: null): boolean | any[] | Promise<boolean | any[]>;
338
356
  clearValidationErrors(): void;
339
357
  }, import("vue").DefineComponent<{}, {}, {}, {}, {
340
- getFieldRowClasses(field: any): any;
358
+ getFieldRowClasses(field: any): {
359
+ [x: number]: any;
360
+ disabled: any;
361
+ readonly: any;
362
+ featured: any;
363
+ required: any;
364
+ };
341
365
  fieldErrors(field: any): any;
342
366
  fieldDisabled(field: any): any;
343
367
  fieldReadonly(field: any): any;
@@ -445,7 +469,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
445
469
  clearValidationErrors(): any;
446
470
  formattedLabel(originalLabel: any): any;
447
471
  }, import("vue").DefineComponent<{}, {}, {}, {}, {
448
- getFieldRowClasses(field: any): any;
472
+ getFieldRowClasses(field: any): {
473
+ [x: number]: any;
474
+ disabled: any;
475
+ readonly: any;
476
+ featured: any;
477
+ required: any;
478
+ };
449
479
  fieldErrors(field: any): any;
450
480
  fieldDisabled(field: any): any;
451
481
  fieldReadonly(field: any): any;
@@ -516,7 +546,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
516
546
  type: BooleanConstructor;
517
547
  default: boolean;
518
548
  };
519
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
549
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
520
550
  validated: (res: boolean, errors: any[], field: any) => any;
521
551
  modelUpdated: (payload: any, schema: string) => any;
522
552
  refreshModel: () => any;
@@ -20,7 +20,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
20
20
  type: BooleanConstructor;
21
21
  required: true;
22
22
  };
23
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
23
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
24
24
  formModel: {
25
25
  type: ObjectConstructor;
26
26
  required: true;
@@ -1 +1 @@
1
- {"version":3,"file":"PostFunction.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/PostFunction.vue"],"names":[],"mappings":"AAyFA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;;;;;;;;;cA+Mb,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;cAApB,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;;AAnB1C,wBA2BG"}
1
+ {"version":3,"file":"PostFunction.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/PostFunction.vue"],"names":[],"mappings":"AAyFA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;;;;;;;;;cAoKb,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;cAApB,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;;;;AAjB1C,wBAyBG"}
@@ -1,4 +1,4 @@
1
- declare const _default: import("vue").DefineComponent<{
1
+ type __VLS_Props = {
2
2
  formSchema: any;
3
3
  formModel: Record<string, any>;
4
4
  formOptions: any;
@@ -7,15 +7,7 @@ declare const _default: import("vue").DefineComponent<{
7
7
  showNewPartialModal: (redisType: string) => void;
8
8
  isEditing?: boolean;
9
9
  enableRedisPartial?: boolean;
10
- }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
11
- formSchema: any;
12
- formModel: Record<string, any>;
13
- formOptions: any;
14
- onModelUpdated: (value: any, model: string) => void;
15
- onPartialToggled: (field: string, model: any) => void;
16
- showNewPartialModal: (redisType: string) => void;
17
- isEditing?: boolean;
18
- enableRedisPartial?: boolean;
19
- }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ };
11
+ declare const _default: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
12
  export default _default;
21
13
  //# sourceMappingURL=RLAForm.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"RLAForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/RLAForm.vue"],"names":[],"mappings":";gBA6vBc,GAAG;eACJ,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;iBACjB,GAAG;oBACA,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI;sBACjC,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,KAAK,IAAI;yBAChC,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI;gBACpC,OAAO;yBACE,OAAO;;gBAPhB,GAAG;eACJ,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;iBACjB,GAAG;oBACA,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI;sBACjC,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,KAAK,IAAI;yBAChC,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI;gBACpC,OAAO;yBACE,OAAO;;AA2yB9B,wBAMG"}
1
+ {"version":3,"file":"RLAForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/RLAForm.vue"],"names":[],"mappings":"AA0vBA,KAAK,WAAW,GAAG;IACjB,UAAU,EAAE,GAAG,CAAA;IACf,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAC9B,WAAW,EAAE,GAAG,CAAA;IAChB,cAAc,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IACnD,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,KAAK,IAAI,CAAA;IACrD,mBAAmB,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAA;IAChD,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,kBAAkB,CAAC,EAAE,OAAO,CAAA;CAC7B,CAAC;;AA85BF,wBAIG"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,MAAM,gCAAgC,CAAA;AAC7D,OAAO,KAAK,WAAW,MAAM,oBAAoB,CAAA;AAEjD,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAA;AAC1D,OAAO,EAAE,gBAAgB,EAAE,WAAW,EAAE,CAAA;AAExC,eAAO,MAAM,iBAAiB,cAAe,MAAM,KAAG,MAWrD,CAAA;AAED,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,OAAO,KAAK,aAAa,MAAM,mCAAmC,CAAA;AAElE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,MAAM,gCAAgC,CAAA;AAC7D,OAAO,KAAK,WAAW,MAAM,oBAAoB,CAAA;AAEjD,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAA;AAC1D,OAAO,EAAE,gBAAgB,EAAE,WAAW,EAAE,CAAA;AAExC,eAAO,MAAM,iBAAiB,GAAI,WAAW,MAAM,KAAG,MAWrD,CAAA;AAED,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,OAAO,KAAK,aAAa,MAAM,mCAAmC,CAAA;AAElE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"isValidUuid.d.ts","sourceRoot":"","sources":["../../../src/utils/isValidUuid.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,eAAO,MAAM,SAAS,iEAAiE,CAAA;AAEvF,eAAO,MAAM,WAAW,QAAS,MAAM,YAMtC,CAAA"}
1
+ {"version":3,"file":"isValidUuid.d.ts","sourceRoot":"","sources":["../../../src/utils/isValidUuid.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,eAAO,MAAM,SAAS,iEAAiE,CAAA;AAEvF,eAAO,MAAM,WAAW,GAAI,KAAK,MAAM,YAMtC,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"redisPartial.d.ts","sourceRoot":"","sources":["../../../src/utils/redisPartial.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAA;AAC3E,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAA;AAEzD,oBAAY,gBAAgB;IAC1B,YAAY,cAAc;IAE1B,YAAY,cAAc;IAC1B,QAAQ,aAAa;IACrB,OAAO,YAAY;CACpB;AAED,eAAO,MAAM,YAAY,WAAY,wBAAwB,KAAG,gBAc/D,CAAA;AAED,eAAO,MAAM,kBAAkB;;;CAG9B,CAAA;AAED,eAAO,MAAM,qBAAqB,SAAU,WAAW,KAAG,MAEzD,CAAA"}
1
+ {"version":3,"file":"redisPartial.d.ts","sourceRoot":"","sources":["../../../src/utils/redisPartial.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAA;AAC3E,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAA;AAEzD,oBAAY,gBAAgB;IAC1B,YAAY,cAAc;IAE1B,YAAY,cAAc;IAC1B,QAAQ,aAAa;IACrB,OAAO,YAAY;CACpB;AAED,eAAO,MAAM,YAAY,GAAI,QAAQ,wBAAwB,KAAG,gBAc/D,CAAA;AAED,eAAO,MAAM,kBAAkB;;;CAG9B,CAAA;AAED,eAAO,MAAM,qBAAqB,GAAI,MAAM,WAAW,KAAG,MAEzD,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/utils/schema.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,mBAAmB,WAAY,GAAG,QAAO,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAQ,MAAM,CAAC,MAAM,EAAE,GAAG,CAYlG,CAAA;AAGD,eAAO,MAAM,iBAAiB,WAAY,GAAG,KAAG,GAAG,EAUlD,CAAA;AAGD,eAAO,MAAM,sBAAsB,WAAY,GAAG,QAAQ,GAAG,KAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAyBjF,CAAA;AAED,eAAO,MAAM,aAAa,WAAY,GAAG,WAAU,GAAG,KAAQ,MA0B7D,CAAA;AAED,eAAO,MAAM,OAAO,UAAU,GAAG,KAAQ,MAkBxC,CAAA"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/utils/schema.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,mBAAmB,GAAI,QAAQ,GAAG,EAAE,MAAK,MAAM,CAAC,MAAM,EAAE,GAAG,CAAM,KAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAYlG,CAAA;AAGD,eAAO,MAAM,iBAAiB,GAAI,QAAQ,GAAG,KAAG,GAAG,EAUlD,CAAA;AAGD,eAAO,MAAM,sBAAsB,GAAI,QAAQ,GAAG,EAAE,MAAM,GAAG,KAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAyBjF,CAAA;AAED,eAAO,MAAM,aAAa,GAAI,QAAQ,GAAG,EAAE,SAAQ,GAAQ,KAAG,MA0B7D,CAAA;AAED,eAAO,MAAM,OAAO,GAAI,OAAM,GAAQ,KAAG,MAkBxC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong-ui-public/forms",
3
- "version": "4.15.4-pr.2315.147b66d4f.0",
3
+ "version": "4.15.4",
4
4
  "type": "module",
5
5
  "main": "./dist/forms.umd.js",
6
6
  "module": "./dist/forms.es.js",
@@ -40,16 +40,16 @@
40
40
  "peerDependencies": {
41
41
  "@kong/kongponents": "^9.37.2",
42
42
  "vue": "^3.5.13",
43
- "@kong-ui-public/i18n": "^2.4.0",
44
- "@kong-ui-public/entities-shared": "^3.27.3-pr.2315.147b66d4f.0"
43
+ "@kong-ui-public/entities-shared": "^3.27.3",
44
+ "@kong-ui-public/i18n": "^2.4.1"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@kong/design-tokens": "^1.18.0",
48
48
  "@kong/kongponents": "^9.37.2",
49
49
  "@types/lodash-es": "^4.17.12",
50
50
  "pug": "^3.0.3",
51
- "@kong-ui-public/entities-shared": "^3.27.3-pr.2315.147b66d4f.0",
52
- "@kong-ui-public/i18n": "^2.4.0"
51
+ "@kong-ui-public/entities-shared": "^3.27.3",
52
+ "@kong-ui-public/i18n": "^2.4.1"
53
53
  },
54
54
  "distSizeChecker": {
55
55
  "errorLimit": "1.2MB"