@kong-ui-public/forms 4.15.3-pr.2319.28543a705.0 → 4.15.4-pr.2204.3e9086057.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/forms.es.js +2702 -2320
- package/dist/forms.umd.js +3 -3
- package/dist/style.css +1 -1
- package/dist/types/components/FormGenerator.vue.d.ts +36 -6
- package/dist/types/components/FormGenerator.vue.d.ts.map +1 -1
- package/dist/types/components/FormGroup.vue.d.ts +7 -1
- package/dist/types/components/FormGroup.vue.d.ts.map +1 -1
- package/dist/types/components/FormMixin.vue.d.ts +7 -1
- package/dist/types/components/FormRedis.vue.d.ts +1 -1
- package/dist/types/components/FormRedis.vue.d.ts.map +1 -1
- package/dist/types/components/RedisConfigCard.vue.d.ts +3 -3
- package/dist/types/components/RedisConfigCard.vue.d.ts.map +1 -1
- package/dist/types/components/RedisConfigSelect.vue.d.ts +3 -3
- package/dist/types/components/RedisConfigSelect.vue.d.ts.map +1 -1
- package/dist/types/components/fields/AutoSuggest.vue.d.ts +38 -0
- package/dist/types/components/fields/AutoSuggest.vue.d.ts.map +1 -0
- package/dist/types/components/fields/FieldArray.vue.d.ts +239 -12
- package/dist/types/components/fields/FieldArrayCardContainer.vue.d.ts +6 -10
- package/dist/types/components/fields/FieldArrayCardContainer.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldArrayItem.vue.d.ts +8 -11
- package/dist/types/components/fields/FieldArrayItem.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldArrayMultiItem.vue.d.ts +6 -10
- package/dist/types/components/fields/FieldArrayMultiItem.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldAutoSuggest.vue.d.ts +2 -2
- package/dist/types/components/fields/FieldAutoSuggestV2.vue.d.ts +228 -0
- package/dist/types/components/fields/FieldAutoSuggestV2.vue.d.ts.map +1 -0
- package/dist/types/components/fields/FieldCheckbox.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldInput.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldLabel.vue.d.ts +1 -1
- package/dist/types/components/fields/FieldLabel.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldMultiselect.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldObjectAdvanced.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldRadio.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldScopedEntitySelect.vue.d.ts +40 -0
- package/dist/types/components/fields/FieldScopedEntitySelect.vue.d.ts.map +1 -0
- package/dist/types/components/fields/FieldSelect.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldSelectionGroup.vue.d.ts +7 -0
- package/dist/types/components/fields/FieldSelectionGroup.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldSwitch.vue.d.ts.map +1 -1
- package/dist/types/components/fields/FieldTextArea.vue.d.ts.map +1 -1
- package/dist/types/components/forms/ACMEForm.vue.d.ts +1 -1
- package/dist/types/components/forms/ACMEForm.vue.d.ts.map +1 -1
- package/dist/types/components/forms/ExitTransformer.vue.d.ts +1 -1
- package/dist/types/components/forms/ExitTransformer.vue.d.ts.map +1 -1
- package/dist/types/components/forms/OIDCForm.vue.d.ts +36 -6
- package/dist/types/components/forms/PostFunction.vue.d.ts +1 -1
- package/dist/types/components/forms/PostFunction.vue.d.ts.map +1 -1
- package/dist/types/components/forms/RLAForm.vue.d.ts +3 -11
- package/dist/types/components/forms/RLAForm.vue.d.ts.map +1 -1
- package/dist/types/const.d.ts +6 -0
- package/dist/types/const.d.ts.map +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/types/form-autosuggest.d.ts +18 -0
- package/dist/types/types/form-autosuggest.d.ts.map +1 -0
- package/dist/types/utils/autoSuggest.d.ts +13 -0
- package/dist/types/utils/autoSuggest.d.ts.map +1 -0
- package/dist/types/utils/fieldsLoader.d.ts +1 -0
- package/dist/types/utils/fieldsLoader.d.ts.map +1 -1
- package/dist/types/utils/isValidUuid.d.ts.map +1 -1
- package/dist/types/utils/redisPartial.d.ts.map +1 -1
- package/dist/types/utils/schema.d.ts.map +1 -1
- package/package.json +2 -1
|
@@ -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
|
-
}>,
|
|
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
|
-
}>,
|
|
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
|
|
113
|
-
|
|
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
|
-
}>,
|
|
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
|
-
}>,
|
|
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
|
|
141
|
+
default?: (props: {}) => any;
|
|
141
142
|
};
|
|
142
143
|
});
|
|
143
144
|
FieldSelect: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -513,7 +514,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
513
514
|
"onModel-updated"?: ((...args: any[]) => any) | undefined;
|
|
514
515
|
}>, {}, {}, {}, {}, "schema" | "validate" | "clearValidationErrors", import("vue").ComponentProvideOptions, true, {}, any>;
|
|
515
516
|
FieldAutoSuggest: import("vue").DefineComponent<{}, {
|
|
516
|
-
t: (translationKey: "general" | "post-function" | "exit-transformer" | "rla" | "validators" | "redis" | "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_fields" | "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" | "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;
|
|
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_fields" | "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;
|
|
517
518
|
}, {
|
|
518
519
|
suggestions: never[];
|
|
519
520
|
idValue: string;
|
|
@@ -522,7 +523,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
522
523
|
initialItems: never[];
|
|
523
524
|
loading: boolean;
|
|
524
525
|
}, {
|
|
525
|
-
fieldState():
|
|
526
|
+
fieldState(): string;
|
|
526
527
|
associatedEntity(): string | string[];
|
|
527
528
|
entity(): any;
|
|
528
529
|
scope(): any;
|
|
@@ -577,6 +578,232 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
577
578
|
}, import("vue").ComponentOptionsMixin, "model-updated"[], "model-updated", import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
578
579
|
"onModel-updated"?: ((...args: any[]) => any) | undefined;
|
|
579
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_fields" | "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
|
+
loading: boolean;
|
|
592
|
+
dataDrained: boolean;
|
|
593
|
+
}, {
|
|
594
|
+
fieldState(): string;
|
|
595
|
+
associatedEntity(): string | string[];
|
|
596
|
+
entity(): any;
|
|
597
|
+
scope(): any;
|
|
598
|
+
bypassSearch(): import("vue-router").LocationQueryValue | import("vue-router").LocationQueryValue[];
|
|
599
|
+
inputFields(): any;
|
|
600
|
+
allowUuidSearch(): any;
|
|
601
|
+
inputFieldsWithoutId(): any;
|
|
602
|
+
initialValueSelected(): boolean;
|
|
603
|
+
}, {
|
|
604
|
+
getPartial(size: any): any;
|
|
605
|
+
getAll(query: any, signal: any): Promise<any[]>;
|
|
606
|
+
getOne(id: any): Promise<any>;
|
|
607
|
+
transformItem(item: any): any;
|
|
608
|
+
dedupeSuggestions(items: any, filteredIds: any): any[];
|
|
609
|
+
getItem(data: any): any;
|
|
610
|
+
fetchUntilLimit(params: any, signal: any): Promise<any>;
|
|
611
|
+
fetchSuggestions(query: any, field: any, signal: any): Promise<any>;
|
|
612
|
+
getSuggestionLabel(item: any): any;
|
|
613
|
+
updateModel(value: any): void;
|
|
614
|
+
onSelected(item: any): void;
|
|
615
|
+
getReturnValue(item: any): any;
|
|
616
|
+
}, {
|
|
617
|
+
name: string;
|
|
618
|
+
props: string[];
|
|
619
|
+
emits: string[];
|
|
620
|
+
data(): {
|
|
621
|
+
errors: never[];
|
|
622
|
+
debouncedValidateFunc: null;
|
|
623
|
+
debouncedFormatFunc: null;
|
|
624
|
+
};
|
|
625
|
+
directives: {
|
|
626
|
+
attributes: {
|
|
627
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
628
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
629
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
630
|
+
};
|
|
631
|
+
};
|
|
632
|
+
computed: {
|
|
633
|
+
value: {
|
|
634
|
+
cache: boolean;
|
|
635
|
+
get(): any;
|
|
636
|
+
set(newValue: any): void;
|
|
637
|
+
};
|
|
638
|
+
};
|
|
639
|
+
methods: {
|
|
640
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
641
|
+
debouncedValidate(): void;
|
|
642
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
643
|
+
clearValidationErrors(): void;
|
|
644
|
+
setModelValueByPath(path: any, value: any): void;
|
|
645
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
646
|
+
getLabelId(schema: any): string;
|
|
647
|
+
getFieldClasses(): any;
|
|
648
|
+
formatValueToField(value: any): any;
|
|
649
|
+
formatValueToModel(value: any): any;
|
|
650
|
+
};
|
|
651
|
+
}, import("vue").ComponentOptionsMixin, "model-updated"[], "model-updated", import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
652
|
+
"onModel-updated"?: ((...args: any[]) => any) | undefined;
|
|
653
|
+
}>, {}, {}, {
|
|
654
|
+
FieldScopedEntitySelect: {
|
|
655
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
656
|
+
transformItem?: import("../../types/form-autosuggest").AutoSuggestItemTransformer;
|
|
657
|
+
allowUuidSearch?: boolean;
|
|
658
|
+
placeholder?: string;
|
|
659
|
+
fields: string[];
|
|
660
|
+
initialItem?: import("@kong/kongponents").SelectItem<string>;
|
|
661
|
+
initialItemSelected?: boolean;
|
|
662
|
+
domId: string;
|
|
663
|
+
id: string;
|
|
664
|
+
entity: string;
|
|
665
|
+
disabled?: boolean;
|
|
666
|
+
fieldDisabled?: boolean;
|
|
667
|
+
} & import("../../types/form-autosuggest").AutoSuggestInjection> & Readonly<{
|
|
668
|
+
onChange?: ((item: import("@kong/kongponents").SelectItem<string> | null) => any) | undefined;
|
|
669
|
+
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
670
|
+
change: (item: import("@kong/kongponents").SelectItem<string> | null) => any;
|
|
671
|
+
}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
672
|
+
P: {};
|
|
673
|
+
B: {};
|
|
674
|
+
D: {};
|
|
675
|
+
C: {};
|
|
676
|
+
M: {};
|
|
677
|
+
Defaults: {};
|
|
678
|
+
}, Readonly<{
|
|
679
|
+
transformItem?: import("../../types/form-autosuggest").AutoSuggestItemTransformer;
|
|
680
|
+
allowUuidSearch?: boolean;
|
|
681
|
+
placeholder?: string;
|
|
682
|
+
fields: string[];
|
|
683
|
+
initialItem?: import("@kong/kongponents").SelectItem<string>;
|
|
684
|
+
initialItemSelected?: boolean;
|
|
685
|
+
domId: string;
|
|
686
|
+
id: string;
|
|
687
|
+
entity: string;
|
|
688
|
+
disabled?: boolean;
|
|
689
|
+
fieldDisabled?: boolean;
|
|
690
|
+
} & import("../../types/form-autosuggest").AutoSuggestInjection> & Readonly<{
|
|
691
|
+
onChange?: ((item: import("@kong/kongponents").SelectItem<string> | null) => any) | undefined;
|
|
692
|
+
}>, {}, {}, {}, {}, {}>;
|
|
693
|
+
__isFragment?: never;
|
|
694
|
+
__isTeleport?: never;
|
|
695
|
+
__isSuspense?: never;
|
|
696
|
+
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
697
|
+
transformItem?: import("../../types/form-autosuggest").AutoSuggestItemTransformer;
|
|
698
|
+
allowUuidSearch?: boolean;
|
|
699
|
+
placeholder?: string;
|
|
700
|
+
fields: string[];
|
|
701
|
+
initialItem?: import("@kong/kongponents").SelectItem<string>;
|
|
702
|
+
initialItemSelected?: boolean;
|
|
703
|
+
domId: string;
|
|
704
|
+
id: string;
|
|
705
|
+
entity: string;
|
|
706
|
+
disabled?: boolean;
|
|
707
|
+
fieldDisabled?: boolean;
|
|
708
|
+
} & import("../../types/form-autosuggest").AutoSuggestInjection> & Readonly<{
|
|
709
|
+
onChange?: ((item: import("@kong/kongponents").SelectItem<string> | null) => any) | undefined;
|
|
710
|
+
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
711
|
+
change: (item: import("@kong/kongponents").SelectItem<string> | null) => any;
|
|
712
|
+
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
713
|
+
$slots: {
|
|
714
|
+
before?: (props: {}) => any;
|
|
715
|
+
} & {
|
|
716
|
+
'selected-item'?: (props: {
|
|
717
|
+
item: import("@kong/kongponents").SelectItem<string>;
|
|
718
|
+
}) => any;
|
|
719
|
+
} & {
|
|
720
|
+
item?: (props: {
|
|
721
|
+
item: import("@kong/kongponents").SelectItem<string>;
|
|
722
|
+
}) => any;
|
|
723
|
+
};
|
|
724
|
+
});
|
|
725
|
+
SearchIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
726
|
+
title: {
|
|
727
|
+
type: StringConstructor;
|
|
728
|
+
required: false;
|
|
729
|
+
default: string;
|
|
730
|
+
};
|
|
731
|
+
color: {
|
|
732
|
+
type: StringConstructor;
|
|
733
|
+
required: false;
|
|
734
|
+
default: string;
|
|
735
|
+
};
|
|
736
|
+
display: {
|
|
737
|
+
type: StringConstructor;
|
|
738
|
+
required: false;
|
|
739
|
+
default: string;
|
|
740
|
+
};
|
|
741
|
+
decorative: {
|
|
742
|
+
type: BooleanConstructor;
|
|
743
|
+
required: false;
|
|
744
|
+
default: boolean;
|
|
745
|
+
};
|
|
746
|
+
size: {
|
|
747
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
748
|
+
required: false;
|
|
749
|
+
default: "24px";
|
|
750
|
+
validator: (sizeValue: number | string) => boolean;
|
|
751
|
+
};
|
|
752
|
+
as: {
|
|
753
|
+
type: StringConstructor;
|
|
754
|
+
required: false;
|
|
755
|
+
default: string;
|
|
756
|
+
};
|
|
757
|
+
staticIds: {
|
|
758
|
+
type: BooleanConstructor;
|
|
759
|
+
default: boolean;
|
|
760
|
+
};
|
|
761
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
762
|
+
title: {
|
|
763
|
+
type: StringConstructor;
|
|
764
|
+
required: false;
|
|
765
|
+
default: string;
|
|
766
|
+
};
|
|
767
|
+
color: {
|
|
768
|
+
type: StringConstructor;
|
|
769
|
+
required: false;
|
|
770
|
+
default: string;
|
|
771
|
+
};
|
|
772
|
+
display: {
|
|
773
|
+
type: StringConstructor;
|
|
774
|
+
required: false;
|
|
775
|
+
default: string;
|
|
776
|
+
};
|
|
777
|
+
decorative: {
|
|
778
|
+
type: BooleanConstructor;
|
|
779
|
+
required: false;
|
|
780
|
+
default: boolean;
|
|
781
|
+
};
|
|
782
|
+
size: {
|
|
783
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
784
|
+
required: false;
|
|
785
|
+
default: "24px";
|
|
786
|
+
validator: (sizeValue: number | string) => boolean;
|
|
787
|
+
};
|
|
788
|
+
as: {
|
|
789
|
+
type: StringConstructor;
|
|
790
|
+
required: false;
|
|
791
|
+
default: string;
|
|
792
|
+
};
|
|
793
|
+
staticIds: {
|
|
794
|
+
type: BooleanConstructor;
|
|
795
|
+
default: boolean;
|
|
796
|
+
};
|
|
797
|
+
}>> & Readonly<{}>, {
|
|
798
|
+
title: string;
|
|
799
|
+
color: string;
|
|
800
|
+
display: string;
|
|
801
|
+
decorative: boolean;
|
|
802
|
+
size: string | number;
|
|
803
|
+
as: string;
|
|
804
|
+
staticIds: boolean;
|
|
805
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
806
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
580
807
|
FieldRadio: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
581
808
|
disabled: {
|
|
582
809
|
type: BooleanConstructor;
|
|
@@ -664,7 +891,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
664
891
|
};
|
|
665
892
|
}>> & Readonly<{
|
|
666
893
|
"onRemove-item"?: (() => any) | undefined;
|
|
667
|
-
}>,
|
|
894
|
+
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
668
895
|
"remove-item": () => any;
|
|
669
896
|
}, import("vue").PublicProps, {
|
|
670
897
|
model: Record<string, any>;
|
|
@@ -715,7 +942,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
715
942
|
};
|
|
716
943
|
}>> & Readonly<{
|
|
717
944
|
"onRemove-item"?: (() => any) | undefined;
|
|
718
|
-
}>,
|
|
945
|
+
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
719
946
|
"remove-item": () => any;
|
|
720
947
|
}, string, {
|
|
721
948
|
model: Record<string, any>;
|
|
@@ -723,7 +950,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
723
950
|
index: number;
|
|
724
951
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
725
952
|
$slots: {
|
|
726
|
-
default
|
|
953
|
+
default?: (props: {}) => any;
|
|
727
954
|
};
|
|
728
955
|
});
|
|
729
956
|
FieldInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
}>,
|
|
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:
|
|
40
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
45
41
|
export default _default;
|
|
46
|
-
type
|
|
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":"
|
|
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
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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
|
-
}>,
|
|
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:
|
|
24
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
28
25
|
export default _default;
|
|
29
|
-
type
|
|
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":"
|
|
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
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
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:
|
|
10
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
15
11
|
export default _default;
|
|
16
|
-
type
|
|
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":"
|
|
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,5 +1,5 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
-
t: (translationKey: "general" | "post-function" | "exit-transformer" | "rla" | "validators" | "redis" | "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_fields" | "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" | "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;
|
|
2
|
+
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_fields" | "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;
|
|
3
3
|
}, {
|
|
4
4
|
suggestions: never[];
|
|
5
5
|
idValue: string;
|
|
@@ -8,7 +8,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
8
8
|
initialItems: never[];
|
|
9
9
|
loading: boolean;
|
|
10
10
|
}, {
|
|
11
|
-
fieldState():
|
|
11
|
+
fieldState(): string;
|
|
12
12
|
associatedEntity(): string | string[];
|
|
13
13
|
entity(): any;
|
|
14
14
|
scope(): any;
|