@kong-ui-public/forms 4.17.6-pr.2488.45c2dead3.0 → 4.17.6

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 (122) hide show
  1. package/dist/forms.es.js +6822 -0
  2. package/dist/forms.umd.js +4 -0
  3. package/dist/style.css +1 -0
  4. package/dist/types/components/FormGenerator.vue.d.ts +517 -0
  5. package/dist/types/components/FormGenerator.vue.d.ts.map +1 -0
  6. package/dist/types/components/FormGroup.vue.d.ts +88 -0
  7. package/dist/types/components/FormGroup.vue.d.ts.map +1 -0
  8. package/dist/types/components/FormMixin.vue.d.ts +16 -0
  9. package/dist/types/components/FormMixin.vue.d.ts.map +1 -0
  10. package/dist/types/components/FormRedis.vue.d.ts +99 -0
  11. package/dist/types/components/FormRedis.vue.d.ts.map +1 -0
  12. package/dist/types/components/RedisConfigCard.vue.d.ts +54 -0
  13. package/dist/types/components/RedisConfigCard.vue.d.ts.map +1 -0
  14. package/dist/types/components/RedisConfigSelect.vue.d.ts +87 -0
  15. package/dist/types/components/RedisConfigSelect.vue.d.ts.map +1 -0
  16. package/dist/types/components/fields/AutoSuggest.vue.d.ts +38 -0
  17. package/dist/types/components/fields/AutoSuggest.vue.d.ts.map +1 -0
  18. package/dist/types/components/fields/FieldAdvanced.vue.d.ts +49 -0
  19. package/dist/types/components/fields/FieldAdvanced.vue.d.ts.map +1 -0
  20. package/dist/types/components/fields/FieldArray.vue.d.ts +1033 -0
  21. package/dist/types/components/fields/FieldArray.vue.d.ts.map +1 -0
  22. package/dist/types/components/fields/FieldArrayCardContainer.vue.d.ts +47 -0
  23. package/dist/types/components/fields/FieldArrayCardContainer.vue.d.ts.map +1 -0
  24. package/dist/types/components/fields/FieldArrayItem.vue.d.ts +31 -0
  25. package/dist/types/components/fields/FieldArrayItem.vue.d.ts.map +1 -0
  26. package/dist/types/components/fields/FieldArrayMultiItem.vue.d.ts +17 -0
  27. package/dist/types/components/fields/FieldArrayMultiItem.vue.d.ts.map +1 -0
  28. package/dist/types/components/fields/FieldAutoSuggest.vue.d.ts +67 -0
  29. package/dist/types/components/fields/FieldAutoSuggest.vue.d.ts.map +1 -0
  30. package/dist/types/components/fields/FieldAutoSuggestV2.vue.d.ts +232 -0
  31. package/dist/types/components/fields/FieldAutoSuggestV2.vue.d.ts.map +1 -0
  32. package/dist/types/components/fields/FieldCheckbox.vue.d.ts +82 -0
  33. package/dist/types/components/fields/FieldCheckbox.vue.d.ts.map +1 -0
  34. package/dist/types/components/fields/FieldChecklist.vue.d.ts +50 -0
  35. package/dist/types/components/fields/FieldChecklist.vue.d.ts.map +1 -0
  36. package/dist/types/components/fields/FieldInput.vue.d.ts +82 -0
  37. package/dist/types/components/fields/FieldInput.vue.d.ts.map +1 -0
  38. package/dist/types/components/fields/FieldKeyValuePairs.vue.d.ts +127 -0
  39. package/dist/types/components/fields/FieldKeyValuePairs.vue.d.ts.map +1 -0
  40. package/dist/types/components/fields/FieldLabel.vue.d.ts +50 -0
  41. package/dist/types/components/fields/FieldLabel.vue.d.ts.map +1 -0
  42. package/dist/types/components/fields/FieldMetric.vue.d.ts +205 -0
  43. package/dist/types/components/fields/FieldMetric.vue.d.ts.map +1 -0
  44. package/dist/types/components/fields/FieldMultiselect.vue.d.ts +82 -0
  45. package/dist/types/components/fields/FieldMultiselect.vue.d.ts.map +1 -0
  46. package/dist/types/components/fields/FieldObject.vue.d.ts +49 -0
  47. package/dist/types/components/fields/FieldObject.vue.d.ts.map +1 -0
  48. package/dist/types/components/fields/FieldObjectAdvanced.vue.d.ts +73 -0
  49. package/dist/types/components/fields/FieldObjectAdvanced.vue.d.ts.map +1 -0
  50. package/dist/types/components/fields/FieldRadio.vue.d.ts +82 -0
  51. package/dist/types/components/fields/FieldRadio.vue.d.ts.map +1 -0
  52. package/dist/types/components/fields/FieldScopedEntitySelect.vue.d.ts +58 -0
  53. package/dist/types/components/fields/FieldScopedEntitySelect.vue.d.ts.map +1 -0
  54. package/dist/types/components/fields/FieldSelect.vue.d.ts +82 -0
  55. package/dist/types/components/fields/FieldSelect.vue.d.ts.map +1 -0
  56. package/dist/types/components/fields/FieldSelectionGroup.vue.d.ts +66 -0
  57. package/dist/types/components/fields/FieldSelectionGroup.vue.d.ts.map +1 -0
  58. package/dist/types/components/fields/FieldSwitch.vue.d.ts +82 -0
  59. package/dist/types/components/fields/FieldSwitch.vue.d.ts.map +1 -0
  60. package/dist/types/components/fields/FieldTextArea.vue.d.ts +82 -0
  61. package/dist/types/components/fields/FieldTextArea.vue.d.ts.map +1 -0
  62. package/dist/types/components/fields/__tests__/FieldAutoSuggest.spec.d.ts +2 -0
  63. package/dist/types/components/fields/__tests__/FieldAutoSuggest.spec.d.ts.map +1 -0
  64. package/dist/types/components/fields/abstractField.d.ts +39 -0
  65. package/dist/types/components/fields/abstractField.d.ts.map +1 -0
  66. package/dist/types/components/fields/exports.d.ts +2 -0
  67. package/dist/types/components/fields/exports.d.ts.map +1 -0
  68. package/dist/types/components/forms/ACMEForm.vue.d.ts +48 -0
  69. package/dist/types/components/forms/ACMEForm.vue.d.ts.map +1 -0
  70. package/dist/types/components/forms/ExitTransformer.vue.d.ts +48 -0
  71. package/dist/types/components/forms/ExitTransformer.vue.d.ts.map +1 -0
  72. package/dist/types/components/forms/OIDCForm.vue.d.ts +610 -0
  73. package/dist/types/components/forms/OIDCForm.vue.d.ts.map +1 -0
  74. package/dist/types/components/forms/PostFunction.vue.d.ts +48 -0
  75. package/dist/types/components/forms/PostFunction.vue.d.ts.map +1 -0
  76. package/dist/types/components/forms/RLAForm.vue.d.ts +13 -0
  77. package/dist/types/components/forms/RLAForm.vue.d.ts.map +1 -0
  78. package/dist/types/components/forms/__tests__/OIDCSchema.d.ts +2452 -0
  79. package/dist/types/components/forms/__tests__/OIDCSchema.d.ts.map +1 -0
  80. package/dist/types/components/forms/__tests__/RLASchema.d.ts +1132 -0
  81. package/dist/types/components/forms/__tests__/RLASchema.d.ts.map +1 -0
  82. package/dist/types/components/forms/index.d.ts +6 -0
  83. package/dist/types/components/forms/index.d.ts.map +1 -0
  84. package/dist/types/components/forms/schemas/ACMECommon.d.ts +19 -0
  85. package/dist/types/components/forms/schemas/ACMECommon.d.ts.map +1 -0
  86. package/dist/types/composables/index.d.ts +10 -0
  87. package/dist/types/composables/index.d.ts.map +1 -0
  88. package/dist/types/composables/useAbstractFields.d.ts +29 -0
  89. package/dist/types/composables/useAbstractFields.d.ts.map +1 -0
  90. package/dist/types/composables/useRedisNonStandardFields.d.ts +9 -0
  91. package/dist/types/composables/useRedisNonStandardFields.d.ts.map +1 -0
  92. package/dist/types/composables/useRedisPartial.d.ts +23 -0
  93. package/dist/types/composables/useRedisPartial.d.ts.map +1 -0
  94. package/dist/types/const.d.ts +15 -0
  95. package/dist/types/const.d.ts.map +1 -0
  96. package/dist/types/external-links.d.ts +9 -0
  97. package/dist/types/external-links.d.ts.map +1 -0
  98. package/dist/types/index.d.ts +10 -0
  99. package/dist/types/index.d.ts.map +1 -0
  100. package/dist/types/types/form-autosuggest.d.ts +18 -0
  101. package/dist/types/types/form-autosuggest.d.ts.map +1 -0
  102. package/dist/types/types/form-fields.d.ts +25 -0
  103. package/dist/types/types/form-fields.d.ts.map +1 -0
  104. package/dist/types/types/form-generator.d.ts +27 -0
  105. package/dist/types/types/form-generator.d.ts.map +1 -0
  106. package/dist/types/types/form-redis-partial.d.ts +88 -0
  107. package/dist/types/types/form-redis-partial.d.ts.map +1 -0
  108. package/dist/types/types/index.d.ts +4 -0
  109. package/dist/types/types/index.d.ts.map +1 -0
  110. package/dist/types/utils/autoSuggest.d.ts +13 -0
  111. package/dist/types/utils/autoSuggest.d.ts.map +1 -0
  112. package/dist/types/utils/fieldsLoader.d.ts +22 -0
  113. package/dist/types/utils/fieldsLoader.d.ts.map +1 -0
  114. package/dist/types/utils/isValidUuid.d.ts +8 -0
  115. package/dist/types/utils/isValidUuid.d.ts.map +1 -0
  116. package/dist/types/utils/redisPartial.d.ts +15 -0
  117. package/dist/types/utils/redisPartial.d.ts.map +1 -0
  118. package/dist/types/utils/schema.d.ts +6 -0
  119. package/dist/types/utils/schema.d.ts.map +1 -0
  120. package/dist/types/utils/validators.d.ts +3 -0
  121. package/dist/types/utils/validators.d.ts.map +1 -0
  122. package/package.json +3 -3
@@ -0,0 +1,1033 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ newElementButtonLabel: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ removeElementButtonLabel: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ }>, {}, {}, {}, {
11
+ generateSchema(rootValue: any, schema: any, index: any): any;
12
+ newElement(): void;
13
+ removeElement(index: any): void;
14
+ getFieldComponent(fieldSchema: any): any;
15
+ modelUpdated(): void;
16
+ handleInput(val: any, index: any): void;
17
+ }, {
18
+ name: string;
19
+ props: string[];
20
+ emits: string[];
21
+ data(): {
22
+ errors: never[];
23
+ debouncedValidateFunc: null;
24
+ debouncedFormatFunc: null;
25
+ };
26
+ directives: {
27
+ attributes: {
28
+ beforeMount: (el: any, binding: any, vnode: any) => void;
29
+ updated: (el: any, binding: any, vnode: any) => void;
30
+ componentUpdated: (el: any, binding: any, vnode: any) => void;
31
+ };
32
+ };
33
+ computed: {
34
+ value: {
35
+ cache: boolean;
36
+ get(): any;
37
+ set(newValue: any): void;
38
+ };
39
+ };
40
+ methods: {
41
+ validate(calledParent: any): any[] | Promise<any[]>;
42
+ debouncedValidate(): void;
43
+ updateModelValue(newValue: any, oldValue: any): void;
44
+ clearValidationErrors(): void;
45
+ setModelValueByPath(path: any, value: any): void;
46
+ getFieldID(schema: any, unique?: boolean): string;
47
+ getLabelId(schema: any): string;
48
+ getFieldClasses(): any;
49
+ formatValueToField(value: any): any;
50
+ formatValueToModel(value: any): any;
51
+ };
52
+ }, import("vue").ComponentOptionsMixin, "refreshModel"[], "refreshModel", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
53
+ newElementButtonLabel: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ };
57
+ removeElementButtonLabel: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ }>> & Readonly<{
62
+ onRefreshModel?: ((...args: any[]) => any) | undefined;
63
+ }>, {
64
+ newElementButtonLabel: string;
65
+ removeElementButtonLabel: string;
66
+ }, {}, {
67
+ FieldArrayItem: {
68
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
69
+ model: {
70
+ type: StringConstructor;
71
+ default: string;
72
+ };
73
+ }>> & Readonly<{
74
+ "onRemove-item"?: (() => any) | undefined;
75
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
76
+ "remove-item": () => any;
77
+ }, import("vue").PublicProps, {
78
+ model: string;
79
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
80
+ P: {};
81
+ B: {};
82
+ D: {};
83
+ C: {};
84
+ M: {};
85
+ Defaults: {};
86
+ }, Readonly<import("vue").ExtractPropTypes<{
87
+ model: {
88
+ type: StringConstructor;
89
+ default: string;
90
+ };
91
+ }>> & Readonly<{
92
+ "onRemove-item"?: (() => any) | undefined;
93
+ }>, {}, {}, {}, {}, {
94
+ model: string;
95
+ }>;
96
+ __isFragment?: never;
97
+ __isTeleport?: never;
98
+ __isSuspense?: never;
99
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
100
+ model: {
101
+ type: StringConstructor;
102
+ default: string;
103
+ };
104
+ }>> & Readonly<{
105
+ "onRemove-item"?: (() => any) | undefined;
106
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
107
+ "remove-item": () => any;
108
+ }, string, {
109
+ model: string;
110
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
111
+ $slots: {
112
+ default?: (props: {}) => any;
113
+ } & {
114
+ after?: (props: {}) => any;
115
+ };
116
+ });
117
+ FieldArrayMultiItem: {
118
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
119
+ "onRemove-item"?: (() => any) | undefined;
120
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
121
+ "remove-item": () => any;
122
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
123
+ P: {};
124
+ B: {};
125
+ D: {};
126
+ C: {};
127
+ M: {};
128
+ Defaults: {};
129
+ }, Readonly<{}> & Readonly<{
130
+ "onRemove-item"?: (() => any) | undefined;
131
+ }>, {}, {}, {}, {}, {}>;
132
+ __isFragment?: never;
133
+ __isTeleport?: never;
134
+ __isSuspense?: never;
135
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{
136
+ "onRemove-item"?: (() => any) | undefined;
137
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
138
+ "remove-item": () => any;
139
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
140
+ $slots: {
141
+ default?: (props: {}) => any;
142
+ };
143
+ });
144
+ FieldSelect: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
145
+ disabled: {
146
+ type: BooleanConstructor;
147
+ default: boolean;
148
+ };
149
+ formOptions: {
150
+ type: import("vue").PropType<Record<string, any>>;
151
+ default: () => undefined;
152
+ };
153
+ model: {
154
+ type: import("vue").PropType<Record<string, any>>;
155
+ default: () => undefined;
156
+ };
157
+ schema: {
158
+ type: import("vue").PropType<Record<string, any>>;
159
+ required: true;
160
+ };
161
+ vfg: {
162
+ type: ObjectConstructor;
163
+ required: true;
164
+ };
165
+ errors: {
166
+ type: ArrayConstructor;
167
+ default: () => never[];
168
+ };
169
+ hint: {
170
+ type: StringConstructor;
171
+ default: string;
172
+ };
173
+ }>, {
174
+ clearValidationErrors: () => void;
175
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
176
+ modelUpdated: (value: any, model: Record<string, any>) => any;
177
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
178
+ disabled: {
179
+ type: BooleanConstructor;
180
+ default: boolean;
181
+ };
182
+ formOptions: {
183
+ type: import("vue").PropType<Record<string, any>>;
184
+ default: () => undefined;
185
+ };
186
+ model: {
187
+ type: import("vue").PropType<Record<string, any>>;
188
+ default: () => undefined;
189
+ };
190
+ schema: {
191
+ type: import("vue").PropType<Record<string, any>>;
192
+ required: true;
193
+ };
194
+ vfg: {
195
+ type: ObjectConstructor;
196
+ required: true;
197
+ };
198
+ errors: {
199
+ type: ArrayConstructor;
200
+ default: () => never[];
201
+ };
202
+ hint: {
203
+ type: StringConstructor;
204
+ default: string;
205
+ };
206
+ }>> & Readonly<{
207
+ onModelUpdated?: ((value: any, model: Record<string, any>) => any) | undefined;
208
+ }>, {
209
+ errors: unknown[];
210
+ model: Record<string, any>;
211
+ hint: string;
212
+ formOptions: Record<string, any>;
213
+ disabled: boolean;
214
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
215
+ FieldMetric: import("vue").DefineComponent<{}, {}, {
216
+ contentVisible: boolean;
217
+ }, {}, {}, {
218
+ name: string;
219
+ props: string[];
220
+ emits: string[];
221
+ data(): {
222
+ errors: never[];
223
+ debouncedValidateFunc: null;
224
+ debouncedFormatFunc: null;
225
+ };
226
+ directives: {
227
+ attributes: {
228
+ beforeMount: (el: any, binding: any, vnode: any) => void;
229
+ updated: (el: any, binding: any, vnode: any) => void;
230
+ componentUpdated: (el: any, binding: any, vnode: any) => void;
231
+ };
232
+ };
233
+ computed: {
234
+ value: {
235
+ cache: boolean;
236
+ get(): any;
237
+ set(newValue: any): void;
238
+ };
239
+ };
240
+ methods: {
241
+ validate(calledParent: any): any[] | Promise<any[]>;
242
+ debouncedValidate(): void;
243
+ updateModelValue(newValue: any, oldValue: any): void;
244
+ clearValidationErrors(): void;
245
+ setModelValueByPath(path: any, value: any): void;
246
+ getFieldID(schema: any, unique?: boolean): string;
247
+ getLabelId(schema: any): string;
248
+ getFieldClasses(): any;
249
+ formatValueToField(value: any): any;
250
+ formatValueToModel(value: any): any;
251
+ };
252
+ }, import("vue").ComponentOptionsMixin, "remove-item"[], "remove-item", import("vue").PublicProps, Readonly<{}> & Readonly<{
253
+ "onRemove-item"?: ((...args: any[]) => any) | undefined;
254
+ }>, {}, {}, {
255
+ AddIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
256
+ title: {
257
+ type: StringConstructor;
258
+ required: false;
259
+ default: string;
260
+ };
261
+ color: {
262
+ type: StringConstructor;
263
+ required: false;
264
+ default: string;
265
+ };
266
+ display: {
267
+ type: StringConstructor;
268
+ required: false;
269
+ default: string;
270
+ };
271
+ decorative: {
272
+ type: BooleanConstructor;
273
+ required: false;
274
+ default: boolean;
275
+ };
276
+ size: {
277
+ type: (StringConstructor | NumberConstructor)[];
278
+ required: false;
279
+ default: "24px";
280
+ validator: (sizeValue: number | string) => boolean;
281
+ };
282
+ as: {
283
+ type: StringConstructor;
284
+ required: false;
285
+ default: string;
286
+ };
287
+ staticIds: {
288
+ type: BooleanConstructor;
289
+ default: boolean;
290
+ };
291
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
292
+ title: {
293
+ type: StringConstructor;
294
+ required: false;
295
+ default: string;
296
+ };
297
+ color: {
298
+ type: StringConstructor;
299
+ required: false;
300
+ default: string;
301
+ };
302
+ display: {
303
+ type: StringConstructor;
304
+ required: false;
305
+ default: string;
306
+ };
307
+ decorative: {
308
+ type: BooleanConstructor;
309
+ required: false;
310
+ default: boolean;
311
+ };
312
+ size: {
313
+ type: (StringConstructor | NumberConstructor)[];
314
+ required: false;
315
+ default: "24px";
316
+ validator: (sizeValue: number | string) => boolean;
317
+ };
318
+ as: {
319
+ type: StringConstructor;
320
+ required: false;
321
+ default: string;
322
+ };
323
+ staticIds: {
324
+ type: BooleanConstructor;
325
+ default: boolean;
326
+ };
327
+ }>> & Readonly<{}>, {
328
+ title: string;
329
+ color: string;
330
+ display: string;
331
+ decorative: boolean;
332
+ size: string | number;
333
+ as: string;
334
+ staticIds: boolean;
335
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
336
+ TrashIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
337
+ title: {
338
+ type: StringConstructor;
339
+ required: false;
340
+ default: string;
341
+ };
342
+ color: {
343
+ type: StringConstructor;
344
+ required: false;
345
+ default: string;
346
+ };
347
+ display: {
348
+ type: StringConstructor;
349
+ required: false;
350
+ default: string;
351
+ };
352
+ decorative: {
353
+ type: BooleanConstructor;
354
+ required: false;
355
+ default: boolean;
356
+ };
357
+ size: {
358
+ type: (StringConstructor | NumberConstructor)[];
359
+ required: false;
360
+ default: "24px";
361
+ validator: (sizeValue: number | string) => boolean;
362
+ };
363
+ as: {
364
+ type: StringConstructor;
365
+ required: false;
366
+ default: string;
367
+ };
368
+ staticIds: {
369
+ type: BooleanConstructor;
370
+ default: boolean;
371
+ };
372
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
373
+ title: {
374
+ type: StringConstructor;
375
+ required: false;
376
+ default: string;
377
+ };
378
+ color: {
379
+ type: StringConstructor;
380
+ required: false;
381
+ default: string;
382
+ };
383
+ display: {
384
+ type: StringConstructor;
385
+ required: false;
386
+ default: string;
387
+ };
388
+ decorative: {
389
+ type: BooleanConstructor;
390
+ required: false;
391
+ default: boolean;
392
+ };
393
+ size: {
394
+ type: (StringConstructor | NumberConstructor)[];
395
+ required: false;
396
+ default: "24px";
397
+ validator: (sizeValue: number | string) => boolean;
398
+ };
399
+ as: {
400
+ type: StringConstructor;
401
+ required: false;
402
+ default: string;
403
+ };
404
+ staticIds: {
405
+ type: BooleanConstructor;
406
+ default: boolean;
407
+ };
408
+ }>> & Readonly<{}>, {
409
+ title: string;
410
+ color: string;
411
+ display: string;
412
+ decorative: boolean;
413
+ size: string | number;
414
+ as: string;
415
+ staticIds: boolean;
416
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
417
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
418
+ FieldObject: import("vue").DefineComponent<{}, {}, {
419
+ attributes: any;
420
+ newKeyType: string;
421
+ newKeyName: string;
422
+ keyTypes: {};
423
+ }, {}, {
424
+ removeElement(index: any): void;
425
+ addKey(): void;
426
+ updateModel(model: any, schema: any): void;
427
+ }, {
428
+ name: string;
429
+ props: string[];
430
+ emits: string[];
431
+ data(): {
432
+ errors: never[];
433
+ debouncedValidateFunc: null;
434
+ debouncedFormatFunc: null;
435
+ };
436
+ directives: {
437
+ attributes: {
438
+ beforeMount: (el: any, binding: any, vnode: any) => void;
439
+ updated: (el: any, binding: any, vnode: any) => void;
440
+ componentUpdated: (el: any, binding: any, vnode: any) => void;
441
+ };
442
+ };
443
+ computed: {
444
+ value: {
445
+ cache: boolean;
446
+ get(): any;
447
+ set(newValue: any): void;
448
+ };
449
+ };
450
+ methods: {
451
+ validate(calledParent: any): any[] | Promise<any[]>;
452
+ debouncedValidate(): void;
453
+ updateModelValue(newValue: any, oldValue: any): void;
454
+ clearValidationErrors(): void;
455
+ setModelValueByPath(path: any, value: any): void;
456
+ getFieldID(schema: any, unique?: boolean): string;
457
+ getLabelId(schema: any): string;
458
+ getFieldClasses(): any;
459
+ formatValueToField(value: any): any;
460
+ formatValueToModel(value: any): any;
461
+ };
462
+ }, import("vue").ComponentOptionsMixin, "modelUpdated"[], "modelUpdated", import("vue").PublicProps, Readonly<{}> & Readonly<{
463
+ onModelUpdated?: ((...args: any[]) => any) | undefined;
464
+ }>, {}, {}, {}, {}, "schema" | "validate" | "clearValidationErrors", import("vue").ComponentProvideOptions, true, {}, any>;
465
+ FieldObjectAdvanced: import("vue").DefineComponent<{}, {}, {
466
+ newKeyName: string;
467
+ }, {
468
+ subSchema(): any;
469
+ subFields(): any;
470
+ hasObjectKeys(): any;
471
+ transformedModel(): any;
472
+ valueInputType(): "text" | "number";
473
+ }, {
474
+ removeElement(index: any): void;
475
+ transformMapModelValuesToObject(model: Object, fields: any[], field: string): Object;
476
+ addKey(): void;
477
+ updateModel(_: any, schema: any): void;
478
+ }, {
479
+ name: string;
480
+ props: string[];
481
+ emits: string[];
482
+ data(): {
483
+ errors: never[];
484
+ debouncedValidateFunc: null;
485
+ debouncedFormatFunc: null;
486
+ };
487
+ directives: {
488
+ attributes: {
489
+ beforeMount: (el: any, binding: any, vnode: any) => void;
490
+ updated: (el: any, binding: any, vnode: any) => void;
491
+ componentUpdated: (el: any, binding: any, vnode: any) => void;
492
+ };
493
+ };
494
+ computed: {
495
+ value: {
496
+ cache: boolean;
497
+ get(): any;
498
+ set(newValue: any): void;
499
+ };
500
+ };
501
+ methods: {
502
+ validate(calledParent: any): any[] | Promise<any[]>;
503
+ debouncedValidate(): void;
504
+ updateModelValue(newValue: any, oldValue: any): void;
505
+ clearValidationErrors(): void;
506
+ setModelValueByPath(path: any, value: any): void;
507
+ getFieldID(schema: any, unique?: boolean): string;
508
+ getLabelId(schema: any): string;
509
+ getFieldClasses(): any;
510
+ formatValueToField(value: any): any;
511
+ formatValueToModel(value: any): any;
512
+ };
513
+ }, import("vue").ComponentOptionsMixin, "model-updated"[], "model-updated", import("vue").PublicProps, Readonly<{}> & Readonly<{
514
+ "onModel-updated"?: ((...args: any[]) => any) | undefined;
515
+ }>, {}, {}, {}, {}, "schema" | "validate" | "clearValidationErrors", import("vue").ComponentProvideOptions, true, {}, any>;
516
+ FieldAutoSuggest: import("vue").DefineComponent<{}, {
517
+ t: (translationKey: "general" | "post-function" | "exit-transformer" | "rla" | "validators" | "redis" | "fields" | "vfg" | "general.packageName" | "general.disable_global_radio" | "general.disable_source_scope_change" | "post-function.tags" | "post-function.enabled" | "post-function.selectionGroup" | "post-function.instance_name" | "post-function.name" | "post-function.config-certificate" | "post-function.config-access" | "post-function.config-body_filter" | "post-function.config-header_filter" | "post-function.config-functions" | "post-function.config-log" | "post-function.config-rewrite" | "post-function.config-ws_client_frame" | "post-function.config-ws_close" | "post-function.config-ws_handshake" | "post-function.config-ws_upstream_frame" | "post-function.tags.hint" | "post-function.tags.newElementButtonLabel" | "post-function.enabled.newElementButtonLabel" | "post-function.selectionGroup.newElementButtonLabel" | "post-function.instance_name.newElementButtonLabel" | "post-function.name.newElementButtonLabel" | "post-function.config-certificate.newElementButtonLabel" | "post-function.config-certificate.help" | "post-function.config-access.newElementButtonLabel" | "post-function.config-access.help" | "post-function.config-body_filter.newElementButtonLabel" | "post-function.config-body_filter.help" | "post-function.config-header_filter.newElementButtonLabel" | "post-function.config-header_filter.help" | "post-function.config-functions.newElementButtonLabel" | "post-function.config-log.newElementButtonLabel" | "post-function.config-rewrite.newElementButtonLabel" | "post-function.config-ws_client_frame.newElementButtonLabel" | "post-function.config-ws_close.newElementButtonLabel" | "post-function.config-ws_handshake.newElementButtonLabel" | "post-function.config-ws_upstream_frame.newElementButtonLabel" | "exit-transformer.config-functions" | "exit-transformer.config-functions.newElementButtonLabel" | "redis.title" | "rla.redis" | "rla.view_advanced" | "rla.window_type" | "rla.request_limits" | "rla.start_with_a_use_case" | "rla.use_case_index" | "rla.error_message" | "rla.identifiers" | "rla.redis.title" | "rla.redis.address_example" | "rla.window_type.options" | "rla.window_type.help" | "rla.window_type.label" | "rla.window_type.options.fixed" | "rla.window_type.options.sliding" | "rla.request_limits.title" | "rla.request_limits.label" | "rla.request_limits.subtitle" | "rla.request_limits.label_index" | "rla.request_limits.request_number" | "rla.request_limits.time_interval" | "rla.request_limits.interval_determiner" | "rla.request_limits.seconds" | "rla.error_message.help" | "rla.error_message.label" | "rla.error_message.code_placeholder" | "rla.error_message.message_placeholder" | "rla.identifiers.options" | "rla.identifiers.label" | "rla.identifiers.options.ip" | "rla.identifiers.options.credential" | "rla.identifiers.options.consumer" | "rla.identifiers.options.service" | "rla.identifiers.options.header" | "rla.identifiers.options.path" | "rla.identifiers.options.consumer-group" | "validators.field_is_required" | "validators.invalid_format" | "validators.number_too_small" | "validators.number_too_large" | "validators.invalid_number" | "validators.invalid_integer" | "validators.text_too_short" | "validators.text_too_long" | "validators.this_not_text" | "validators.this_not_array" | "validators.select_min_items" | "validators.select_max_items" | "validators.invalid_date" | "validators.date_is_early" | "validators.date_is_late" | "validators.invalid_email" | "validators.invalid_url" | "validators.invalid_card" | "validators.invalid_card_number" | "validators.invalid_text_contain_number" | "validators.invalid_tex_contain_spec" | "redis.shared_configuration" | "redis.dedicated_configuration" | "redis.config_card" | "redis.custom_plugin" | "redis.shared_configuration.error" | "redis.shared_configuration.title" | "redis.shared_configuration.label" | "redis.shared_configuration.description" | "redis.shared_configuration.tooltip" | "redis.shared_configuration.configuration_selector_label" | "redis.shared_configuration.configuration_selector_placeholder" | "redis.shared_configuration.create_new_configuration" | "redis.shared_configuration.empty_state" | "redis.shared_configuration.badge" | "redis.shared_configuration.selector" | "redis.shared_configuration.selector.title" | "redis.shared_configuration.selector.description" | "redis.shared_configuration.selector.placeholder" | "redis.dedicated_configuration.title" | "redis.dedicated_configuration.label" | "redis.dedicated_configuration.description" | "redis.config_card.common_fields" | "redis.config_card.common_fields.created_at_label" | "redis.config_card.common_fields.updated_at_label" | "redis.config_card.common_fields.type_label" | "redis.custom_plugin.tooltip" | "redis.custom_plugin.alert" | "fields.auto_suggest" | "fields.auto_suggest.error" | "fields.auto_suggest.recently_created" | "fields.auto_suggest.items_count" | "fields.auto_suggest.no_results" | "fields.auto_suggest.loading" | "fields.auto_suggest.error.load_entity" | "vfg.labels" | "vfg.labels.on" | "vfg.labels.off", values?: Record<string, import("@kong-ui-public/i18n").MessageFormatPrimitiveValue> | undefined, opts?: import("@kong-ui-public/i18n").IntlMessageFormatOptions) => string;
518
+ }, {
519
+ suggestions: never[];
520
+ idValue: string;
521
+ message: string;
522
+ items: never[];
523
+ initialItems: never[];
524
+ loading: boolean;
525
+ }, {
526
+ fieldState(): string;
527
+ associatedEntity(): string | string[];
528
+ entity(): any;
529
+ scope(): any;
530
+ bypassSearch(): import("vue-router").LocationQueryValue | import("vue-router").LocationQueryValue[];
531
+ }, {
532
+ onQueryChange(query: any): void;
533
+ search(query: any): Promise<void>;
534
+ getItem(data: any): any;
535
+ fetchUntilLimit(params: any): Promise<any[]>;
536
+ fetchSuggestions(query: any, field: any): Promise<any[]>;
537
+ fetchExact(id: any): Promise<any>;
538
+ getInputFields(): any;
539
+ getSuggestionLabel(item: any): any;
540
+ updateModel(value: any): void;
541
+ onSelected(item: any): void;
542
+ getReturnValue(item: any): any;
543
+ }, {
544
+ name: string;
545
+ props: string[];
546
+ emits: string[];
547
+ data(): {
548
+ errors: never[];
549
+ debouncedValidateFunc: null;
550
+ debouncedFormatFunc: null;
551
+ };
552
+ directives: {
553
+ attributes: {
554
+ beforeMount: (el: any, binding: any, vnode: any) => void;
555
+ updated: (el: any, binding: any, vnode: any) => void;
556
+ componentUpdated: (el: any, binding: any, vnode: any) => void;
557
+ };
558
+ };
559
+ computed: {
560
+ value: {
561
+ cache: boolean;
562
+ get(): any;
563
+ set(newValue: any): void;
564
+ };
565
+ };
566
+ methods: {
567
+ validate(calledParent: any): any[] | Promise<any[]>;
568
+ debouncedValidate(): void;
569
+ updateModelValue(newValue: any, oldValue: any): void;
570
+ clearValidationErrors(): void;
571
+ setModelValueByPath(path: any, value: any): void;
572
+ getFieldID(schema: any, unique?: boolean): string;
573
+ getLabelId(schema: any): string;
574
+ getFieldClasses(): any;
575
+ formatValueToField(value: any): any;
576
+ formatValueToModel(value: any): any;
577
+ };
578
+ }, import("vue").ComponentOptionsMixin, "model-updated"[], "model-updated", import("vue").PublicProps, Readonly<{}> & Readonly<{
579
+ "onModel-updated"?: ((...args: any[]) => any) | undefined;
580
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
581
+ FieldAutoSuggestV2: import("vue").DefineComponent<{}, {
582
+ t: (translationKey: "general" | "post-function" | "exit-transformer" | "rla" | "validators" | "redis" | "fields" | "vfg" | "general.packageName" | "general.disable_global_radio" | "general.disable_source_scope_change" | "post-function.tags" | "post-function.enabled" | "post-function.selectionGroup" | "post-function.instance_name" | "post-function.name" | "post-function.config-certificate" | "post-function.config-access" | "post-function.config-body_filter" | "post-function.config-header_filter" | "post-function.config-functions" | "post-function.config-log" | "post-function.config-rewrite" | "post-function.config-ws_client_frame" | "post-function.config-ws_close" | "post-function.config-ws_handshake" | "post-function.config-ws_upstream_frame" | "post-function.tags.hint" | "post-function.tags.newElementButtonLabel" | "post-function.enabled.newElementButtonLabel" | "post-function.selectionGroup.newElementButtonLabel" | "post-function.instance_name.newElementButtonLabel" | "post-function.name.newElementButtonLabel" | "post-function.config-certificate.newElementButtonLabel" | "post-function.config-certificate.help" | "post-function.config-access.newElementButtonLabel" | "post-function.config-access.help" | "post-function.config-body_filter.newElementButtonLabel" | "post-function.config-body_filter.help" | "post-function.config-header_filter.newElementButtonLabel" | "post-function.config-header_filter.help" | "post-function.config-functions.newElementButtonLabel" | "post-function.config-log.newElementButtonLabel" | "post-function.config-rewrite.newElementButtonLabel" | "post-function.config-ws_client_frame.newElementButtonLabel" | "post-function.config-ws_close.newElementButtonLabel" | "post-function.config-ws_handshake.newElementButtonLabel" | "post-function.config-ws_upstream_frame.newElementButtonLabel" | "exit-transformer.config-functions" | "exit-transformer.config-functions.newElementButtonLabel" | "redis.title" | "rla.redis" | "rla.view_advanced" | "rla.window_type" | "rla.request_limits" | "rla.start_with_a_use_case" | "rla.use_case_index" | "rla.error_message" | "rla.identifiers" | "rla.redis.title" | "rla.redis.address_example" | "rla.window_type.options" | "rla.window_type.help" | "rla.window_type.label" | "rla.window_type.options.fixed" | "rla.window_type.options.sliding" | "rla.request_limits.title" | "rla.request_limits.label" | "rla.request_limits.subtitle" | "rla.request_limits.label_index" | "rla.request_limits.request_number" | "rla.request_limits.time_interval" | "rla.request_limits.interval_determiner" | "rla.request_limits.seconds" | "rla.error_message.help" | "rla.error_message.label" | "rla.error_message.code_placeholder" | "rla.error_message.message_placeholder" | "rla.identifiers.options" | "rla.identifiers.label" | "rla.identifiers.options.ip" | "rla.identifiers.options.credential" | "rla.identifiers.options.consumer" | "rla.identifiers.options.service" | "rla.identifiers.options.header" | "rla.identifiers.options.path" | "rla.identifiers.options.consumer-group" | "validators.field_is_required" | "validators.invalid_format" | "validators.number_too_small" | "validators.number_too_large" | "validators.invalid_number" | "validators.invalid_integer" | "validators.text_too_short" | "validators.text_too_long" | "validators.this_not_text" | "validators.this_not_array" | "validators.select_min_items" | "validators.select_max_items" | "validators.invalid_date" | "validators.date_is_early" | "validators.date_is_late" | "validators.invalid_email" | "validators.invalid_url" | "validators.invalid_card" | "validators.invalid_card_number" | "validators.invalid_text_contain_number" | "validators.invalid_tex_contain_spec" | "redis.shared_configuration" | "redis.dedicated_configuration" | "redis.config_card" | "redis.custom_plugin" | "redis.shared_configuration.error" | "redis.shared_configuration.title" | "redis.shared_configuration.label" | "redis.shared_configuration.description" | "redis.shared_configuration.tooltip" | "redis.shared_configuration.configuration_selector_label" | "redis.shared_configuration.configuration_selector_placeholder" | "redis.shared_configuration.create_new_configuration" | "redis.shared_configuration.empty_state" | "redis.shared_configuration.badge" | "redis.shared_configuration.selector" | "redis.shared_configuration.selector.title" | "redis.shared_configuration.selector.description" | "redis.shared_configuration.selector.placeholder" | "redis.dedicated_configuration.title" | "redis.dedicated_configuration.label" | "redis.dedicated_configuration.description" | "redis.config_card.common_fields" | "redis.config_card.common_fields.created_at_label" | "redis.config_card.common_fields.updated_at_label" | "redis.config_card.common_fields.type_label" | "redis.custom_plugin.tooltip" | "redis.custom_plugin.alert" | "fields.auto_suggest" | "fields.auto_suggest.error" | "fields.auto_suggest.recently_created" | "fields.auto_suggest.items_count" | "fields.auto_suggest.no_results" | "fields.auto_suggest.loading" | "fields.auto_suggest.error.load_entity" | "vfg.labels" | "vfg.labels.on" | "vfg.labels.off", values?: Record<string, import("@kong-ui-public/i18n").MessageFormatPrimitiveValue> | undefined, opts?: import("@kong-ui-public/i18n").IntlMessageFormatOptions) => string;
583
+ KUI_ICON_SIZE_40: "20px";
584
+ KUI_COLOR_TEXT_NEUTRAL: "#6c7489";
585
+ }, {
586
+ suggestions: never[];
587
+ idValue: string;
588
+ message: string;
589
+ items: never[];
590
+ initialItem: null;
591
+ selectedItem: null;
592
+ loading: boolean;
593
+ dataDrained: boolean;
594
+ }, {
595
+ fieldState(): string;
596
+ associatedEntity(): string | string[];
597
+ entity(): any;
598
+ scope(): any;
599
+ bypassSearch(): import("vue-router").LocationQueryValue | import("vue-router").LocationQueryValue[];
600
+ inputFields(): any;
601
+ allowUuidSearch(): any;
602
+ inputFieldsWithoutId(): any;
603
+ initialValueSelected(): boolean;
604
+ }, {
605
+ getPartial(size: any): any;
606
+ getAll(query: any, signal: any): Promise<any>;
607
+ getOne(id: any): Promise<any>;
608
+ transformItem(item: any): any;
609
+ dedupeSuggestions(items: any, filteredIds: any): any[];
610
+ getItem(data: any): any;
611
+ fetchUntilLimit(params: any, signal: any): Promise<any>;
612
+ fetchSuggestions(query: any, field: any, signal: any): Promise<any>;
613
+ getSuggestionLabel(item: any): any;
614
+ updateModel(value: any): void;
615
+ onSelected(item: any): void;
616
+ getReturnValue(item: any): any;
617
+ }, {
618
+ name: string;
619
+ props: string[];
620
+ emits: string[];
621
+ data(): {
622
+ errors: never[];
623
+ debouncedValidateFunc: null;
624
+ debouncedFormatFunc: null;
625
+ };
626
+ directives: {
627
+ attributes: {
628
+ beforeMount: (el: any, binding: any, vnode: any) => void;
629
+ updated: (el: any, binding: any, vnode: any) => void;
630
+ componentUpdated: (el: any, binding: any, vnode: any) => void;
631
+ };
632
+ };
633
+ computed: {
634
+ value: {
635
+ cache: boolean;
636
+ get(): any;
637
+ set(newValue: any): void;
638
+ };
639
+ };
640
+ methods: {
641
+ validate(calledParent: any): any[] | Promise<any[]>;
642
+ debouncedValidate(): void;
643
+ updateModelValue(newValue: any, oldValue: any): void;
644
+ clearValidationErrors(): void;
645
+ setModelValueByPath(path: any, value: any): void;
646
+ getFieldID(schema: any, unique?: boolean): string;
647
+ getLabelId(schema: any): string;
648
+ getFieldClasses(): any;
649
+ formatValueToField(value: any): any;
650
+ formatValueToModel(value: any): any;
651
+ };
652
+ }, import("vue").ComponentOptionsMixin, "model-updated"[], "model-updated", import("vue").PublicProps, Readonly<{}> & Readonly<{
653
+ "onModel-updated"?: ((...args: any[]) => any) | undefined;
654
+ }>, {}, {}, {
655
+ FieldScopedEntitySelect: {
656
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
657
+ transformItem?: import("../../types/form-autosuggest").AutoSuggestItemTransformer;
658
+ allowUuidSearch?: boolean;
659
+ placeholder?: string;
660
+ fields: string[];
661
+ selectedItem?: import("@kong/kongponents").SelectItem<string>;
662
+ selectedItemLoading?: boolean;
663
+ initialItemSelected?: boolean;
664
+ domId: string;
665
+ id: string;
666
+ entity: string;
667
+ disabled?: boolean;
668
+ fieldDisabled?: boolean;
669
+ } & import("../../types/form-autosuggest").AutoSuggestInjection> & Readonly<{
670
+ onChange?: ((item: import("@kong/kongponents").SelectItem<string> | null) => any) | undefined;
671
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
672
+ change: (item: import("@kong/kongponents").SelectItem<string> | null) => any;
673
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
674
+ P: {};
675
+ B: {};
676
+ D: {};
677
+ C: {};
678
+ M: {};
679
+ Defaults: {};
680
+ }, Readonly<{
681
+ transformItem?: import("../../types/form-autosuggest").AutoSuggestItemTransformer;
682
+ allowUuidSearch?: boolean;
683
+ placeholder?: string;
684
+ fields: string[];
685
+ selectedItem?: import("@kong/kongponents").SelectItem<string>;
686
+ selectedItemLoading?: boolean;
687
+ initialItemSelected?: boolean;
688
+ domId: string;
689
+ id: string;
690
+ entity: string;
691
+ disabled?: boolean;
692
+ fieldDisabled?: boolean;
693
+ } & import("../../types/form-autosuggest").AutoSuggestInjection> & Readonly<{
694
+ onChange?: ((item: import("@kong/kongponents").SelectItem<string> | null) => any) | undefined;
695
+ }>, {}, {}, {}, {}, {}>;
696
+ __isFragment?: never;
697
+ __isTeleport?: never;
698
+ __isSuspense?: never;
699
+ } & import("vue").ComponentOptionsBase<Readonly<{
700
+ transformItem?: import("../../types/form-autosuggest").AutoSuggestItemTransformer;
701
+ allowUuidSearch?: boolean;
702
+ placeholder?: string;
703
+ fields: string[];
704
+ selectedItem?: import("@kong/kongponents").SelectItem<string>;
705
+ selectedItemLoading?: boolean;
706
+ initialItemSelected?: boolean;
707
+ domId: string;
708
+ id: string;
709
+ entity: string;
710
+ disabled?: boolean;
711
+ fieldDisabled?: boolean;
712
+ } & import("../../types/form-autosuggest").AutoSuggestInjection> & Readonly<{
713
+ onChange?: ((item: import("@kong/kongponents").SelectItem<string> | null) => any) | undefined;
714
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
715
+ change: (item: import("@kong/kongponents").SelectItem<string> | null) => any;
716
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
717
+ $slots: {
718
+ before?: (props: {}) => any;
719
+ } & {
720
+ 'selected-item'?: (props: {
721
+ item: import("@kong/kongponents").SelectItem<string>;
722
+ }) => any;
723
+ } & {
724
+ item?: (props: {
725
+ item: import("@kong/kongponents").SelectItem<string>;
726
+ }) => any;
727
+ };
728
+ });
729
+ SearchIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
730
+ title: {
731
+ type: StringConstructor;
732
+ required: false;
733
+ default: string;
734
+ };
735
+ color: {
736
+ type: StringConstructor;
737
+ required: false;
738
+ default: string;
739
+ };
740
+ display: {
741
+ type: StringConstructor;
742
+ required: false;
743
+ default: string;
744
+ };
745
+ decorative: {
746
+ type: BooleanConstructor;
747
+ required: false;
748
+ default: boolean;
749
+ };
750
+ size: {
751
+ type: (StringConstructor | NumberConstructor)[];
752
+ required: false;
753
+ default: "24px";
754
+ validator: (sizeValue: number | string) => boolean;
755
+ };
756
+ as: {
757
+ type: StringConstructor;
758
+ required: false;
759
+ default: string;
760
+ };
761
+ staticIds: {
762
+ type: BooleanConstructor;
763
+ default: boolean;
764
+ };
765
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
766
+ title: {
767
+ type: StringConstructor;
768
+ required: false;
769
+ default: string;
770
+ };
771
+ color: {
772
+ type: StringConstructor;
773
+ required: false;
774
+ default: string;
775
+ };
776
+ display: {
777
+ type: StringConstructor;
778
+ required: false;
779
+ default: string;
780
+ };
781
+ decorative: {
782
+ type: BooleanConstructor;
783
+ required: false;
784
+ default: boolean;
785
+ };
786
+ size: {
787
+ type: (StringConstructor | NumberConstructor)[];
788
+ required: false;
789
+ default: "24px";
790
+ validator: (sizeValue: number | string) => boolean;
791
+ };
792
+ as: {
793
+ type: StringConstructor;
794
+ required: false;
795
+ default: string;
796
+ };
797
+ staticIds: {
798
+ type: BooleanConstructor;
799
+ default: boolean;
800
+ };
801
+ }>> & Readonly<{}>, {
802
+ title: string;
803
+ color: string;
804
+ display: string;
805
+ decorative: boolean;
806
+ size: string | number;
807
+ as: string;
808
+ staticIds: boolean;
809
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
810
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
811
+ FieldRadio: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
812
+ disabled: {
813
+ type: BooleanConstructor;
814
+ default: boolean;
815
+ };
816
+ formOptions: {
817
+ type: import("vue").PropType<Record<string, any>>;
818
+ default: () => undefined;
819
+ };
820
+ model: {
821
+ type: import("vue").PropType<Record<string, any>>;
822
+ default: () => undefined;
823
+ };
824
+ schema: {
825
+ type: import("vue").PropType<Record<string, any>>;
826
+ required: true;
827
+ };
828
+ vfg: {
829
+ type: ObjectConstructor;
830
+ required: true;
831
+ };
832
+ errors: {
833
+ type: ArrayConstructor;
834
+ default: () => never[];
835
+ };
836
+ hint: {
837
+ type: StringConstructor;
838
+ default: string;
839
+ };
840
+ }>, {
841
+ clearValidationErrors: () => void;
842
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
843
+ modelUpdated: (value: any, model: Record<string, any>) => any;
844
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
845
+ disabled: {
846
+ type: BooleanConstructor;
847
+ default: boolean;
848
+ };
849
+ formOptions: {
850
+ type: import("vue").PropType<Record<string, any>>;
851
+ default: () => undefined;
852
+ };
853
+ model: {
854
+ type: import("vue").PropType<Record<string, any>>;
855
+ default: () => undefined;
856
+ };
857
+ schema: {
858
+ type: import("vue").PropType<Record<string, any>>;
859
+ required: true;
860
+ };
861
+ vfg: {
862
+ type: ObjectConstructor;
863
+ required: true;
864
+ };
865
+ errors: {
866
+ type: ArrayConstructor;
867
+ default: () => never[];
868
+ };
869
+ hint: {
870
+ type: StringConstructor;
871
+ default: string;
872
+ };
873
+ }>> & Readonly<{
874
+ onModelUpdated?: ((value: any, model: Record<string, any>) => any) | undefined;
875
+ }>, {
876
+ errors: unknown[];
877
+ model: Record<string, any>;
878
+ hint: string;
879
+ formOptions: Record<string, any>;
880
+ disabled: boolean;
881
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
882
+ FieldArrayCardContainer: {
883
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
884
+ model: {
885
+ type: ObjectConstructor;
886
+ default: () => null;
887
+ };
888
+ schema: {
889
+ type: ObjectConstructor;
890
+ default: () => null;
891
+ };
892
+ index: {
893
+ type: NumberConstructor;
894
+ default: undefined;
895
+ };
896
+ }>> & Readonly<{
897
+ "onRemove-item"?: (() => any) | undefined;
898
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
899
+ "remove-item": () => any;
900
+ }, import("vue").PublicProps, {
901
+ model: Record<string, any>;
902
+ schema: Record<string, any>;
903
+ index: number;
904
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
905
+ P: {};
906
+ B: {};
907
+ D: {};
908
+ C: {};
909
+ M: {};
910
+ Defaults: {};
911
+ }, Readonly<import("vue").ExtractPropTypes<{
912
+ model: {
913
+ type: ObjectConstructor;
914
+ default: () => null;
915
+ };
916
+ schema: {
917
+ type: ObjectConstructor;
918
+ default: () => null;
919
+ };
920
+ index: {
921
+ type: NumberConstructor;
922
+ default: undefined;
923
+ };
924
+ }>> & Readonly<{
925
+ "onRemove-item"?: (() => any) | undefined;
926
+ }>, {}, {}, {}, {}, {
927
+ model: Record<string, any>;
928
+ schema: Record<string, any>;
929
+ index: number;
930
+ }>;
931
+ __isFragment?: never;
932
+ __isTeleport?: never;
933
+ __isSuspense?: never;
934
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
935
+ model: {
936
+ type: ObjectConstructor;
937
+ default: () => null;
938
+ };
939
+ schema: {
940
+ type: ObjectConstructor;
941
+ default: () => null;
942
+ };
943
+ index: {
944
+ type: NumberConstructor;
945
+ default: undefined;
946
+ };
947
+ }>> & Readonly<{
948
+ "onRemove-item"?: (() => any) | undefined;
949
+ }>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
950
+ "remove-item": () => any;
951
+ }, string, {
952
+ model: Record<string, any>;
953
+ schema: Record<string, any>;
954
+ index: number;
955
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
956
+ $slots: {
957
+ default?: (props: {}) => any;
958
+ };
959
+ });
960
+ FieldInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
961
+ disabled: {
962
+ type: BooleanConstructor;
963
+ default: boolean;
964
+ };
965
+ formOptions: {
966
+ type: import("vue").PropType<Record<string, any>>;
967
+ default: () => undefined;
968
+ };
969
+ model: {
970
+ type: import("vue").PropType<Record<string, any>>;
971
+ default: () => undefined;
972
+ };
973
+ schema: {
974
+ type: import("vue").PropType<Record<string, any>>;
975
+ required: true;
976
+ };
977
+ vfg: {
978
+ type: ObjectConstructor;
979
+ required: true;
980
+ };
981
+ errors: {
982
+ type: ArrayConstructor;
983
+ default: () => never[];
984
+ };
985
+ hint: {
986
+ type: StringConstructor;
987
+ default: string;
988
+ };
989
+ }>, {
990
+ clearValidationErrors: () => void;
991
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
992
+ modelUpdated: (value: any, model: Record<string, any>) => any;
993
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
994
+ disabled: {
995
+ type: BooleanConstructor;
996
+ default: boolean;
997
+ };
998
+ formOptions: {
999
+ type: import("vue").PropType<Record<string, any>>;
1000
+ default: () => undefined;
1001
+ };
1002
+ model: {
1003
+ type: import("vue").PropType<Record<string, any>>;
1004
+ default: () => undefined;
1005
+ };
1006
+ schema: {
1007
+ type: import("vue").PropType<Record<string, any>>;
1008
+ required: true;
1009
+ };
1010
+ vfg: {
1011
+ type: ObjectConstructor;
1012
+ required: true;
1013
+ };
1014
+ errors: {
1015
+ type: ArrayConstructor;
1016
+ default: () => never[];
1017
+ };
1018
+ hint: {
1019
+ type: StringConstructor;
1020
+ default: string;
1021
+ };
1022
+ }>> & Readonly<{
1023
+ onModelUpdated?: ((value: any, model: Record<string, any>) => any) | undefined;
1024
+ }>, {
1025
+ errors: unknown[];
1026
+ model: Record<string, any>;
1027
+ hint: string;
1028
+ formOptions: Record<string, any>;
1029
+ disabled: boolean;
1030
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1031
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1032
+ export default _default;
1033
+ //# sourceMappingURL=FieldArray.vue.d.ts.map