@kong-ui-public/entities-gateway-services 3.10.5-pr.2005.e9e725032.0 → 3.10.6-pr.2001.dfcf418cd.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/entities-gateway-services.es.js +1570 -675
- package/dist/entities-gateway-services.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types/components/GatewayServiceForm.vue.d.ts +26 -0
- package/dist/types/components/GatewayServiceForm.vue.d.ts.map +1 -1
- package/dist/types/components/GatewayServiceList.vue.d.ts +0 -11
- package/dist/types/components/GatewayServiceList.vue.d.ts.map +1 -1
- package/dist/types/components/LegacyGatewayServiceForm.vue.d.ts +86 -0
- package/dist/types/components/LegacyGatewayServiceForm.vue.d.ts.map +1 -0
- package/dist/types/composables/index.d.ts +2 -0
- package/dist/types/composables/index.d.ts.map +1 -1
- package/dist/types/composables/useUrlValidators.d.ts +8 -0
- package/dist/types/composables/useUrlValidators.d.ts.map +1 -0
- package/dist/types/constants.d.ts +15 -0
- package/dist/types/constants.d.ts.map +1 -0
- package/dist/types/index.d.ts +3 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/types/gateway-service-form.d.ts +33 -2
- package/dist/types/types/gateway-service-form.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { AxiosResponse } from 'axios';
|
|
3
|
+
import type { KonnectGatewayServiceFormConfig, KongManagerGatewayServiceFormConfig } from '../types';
|
|
4
|
+
import '@kong-ui-public/entities-shared/dist/style.css';
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
slots: {
|
|
7
|
+
"form-actions"?(_: {
|
|
8
|
+
canSubmit: boolean;
|
|
9
|
+
cancel: () => void;
|
|
10
|
+
submit: () => Promise<AxiosResponse | undefined>;
|
|
11
|
+
}): any;
|
|
12
|
+
};
|
|
13
|
+
refs: {};
|
|
14
|
+
attrs: Partial<{}>;
|
|
15
|
+
};
|
|
16
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
18
|
+
/** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
|
|
19
|
+
config: {
|
|
20
|
+
type: PropType<KonnectGatewayServiceFormConfig | KongManagerGatewayServiceFormConfig>;
|
|
21
|
+
required: true;
|
|
22
|
+
validator: (config: KonnectGatewayServiceFormConfig | KongManagerGatewayServiceFormConfig) => boolean;
|
|
23
|
+
};
|
|
24
|
+
/** If a valid Gateway Service ID is provided, it will put the form in Edit mode instead of Create */
|
|
25
|
+
gatewayServiceId: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
required: false;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
/** Whether show or hide EntityFormSection info column */
|
|
31
|
+
hideSectionsInfo: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
required: false;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
}>, {
|
|
37
|
+
validateUrl: () => void;
|
|
38
|
+
getPayload: import("vue").ComputedRef<Record<string, any>>;
|
|
39
|
+
saveFormData: () => Promise<AxiosResponse | undefined>;
|
|
40
|
+
canSubmit: import("vue").ComputedRef<boolean>;
|
|
41
|
+
initForm: (data: Record<string, any>) => void;
|
|
42
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
43
|
+
error: (error: any) => any;
|
|
44
|
+
update: (data: Record<string, any>) => any;
|
|
45
|
+
"url-valid:success": () => any;
|
|
46
|
+
"url-valid:error": (error: string) => any;
|
|
47
|
+
loading: (isLoading: boolean) => any;
|
|
48
|
+
"model-updated": (val: Record<string, any>) => any;
|
|
49
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
+
/** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
|
|
51
|
+
config: {
|
|
52
|
+
type: PropType<KonnectGatewayServiceFormConfig | KongManagerGatewayServiceFormConfig>;
|
|
53
|
+
required: true;
|
|
54
|
+
validator: (config: KonnectGatewayServiceFormConfig | KongManagerGatewayServiceFormConfig) => boolean;
|
|
55
|
+
};
|
|
56
|
+
/** If a valid Gateway Service ID is provided, it will put the form in Edit mode instead of Create */
|
|
57
|
+
gatewayServiceId: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
required: false;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
/** Whether show or hide EntityFormSection info column */
|
|
63
|
+
hideSectionsInfo: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
required: false;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
68
|
+
}>> & Readonly<{
|
|
69
|
+
onError?: ((error: any) => any) | undefined;
|
|
70
|
+
onUpdate?: ((data: Record<string, any>) => any) | undefined;
|
|
71
|
+
"onUrl-valid:success"?: (() => any) | undefined;
|
|
72
|
+
"onUrl-valid:error"?: ((error: string) => any) | undefined;
|
|
73
|
+
onLoading?: ((isLoading: boolean) => any) | undefined;
|
|
74
|
+
"onModel-updated"?: ((val: Record<string, any>) => any) | undefined;
|
|
75
|
+
}>, {
|
|
76
|
+
gatewayServiceId: string;
|
|
77
|
+
hideSectionsInfo: boolean;
|
|
78
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
79
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
80
|
+
export default _default;
|
|
81
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
82
|
+
new (): {
|
|
83
|
+
$slots: S;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
//# sourceMappingURL=LegacyGatewayServiceForm.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LegacyGatewayServiceForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/LegacyGatewayServiceForm.vue"],"names":[],"mappings":"AAu4BA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAGnC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAC1C,OAAO,KAAK,EACV,+BAA+B,EAC/B,mCAAmC,EAGpC,MAAM,UAAU,CAAA;AAajB,OAAO,gDAAgD,CAAA;AAkgBvD,iBAAS,cAAc;;;;0BA/NO,IAAI;0BAmGH,OAAO,CAAC,aAAa,GAAG,SAAS,CAAC;YA2rB3B,GAAG;;;WAS3B,OAAO,IAA6B;EAEjD;AAoED,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;IAenB,oHAAoH;;cAElG,QAAQ,CAAC,+BAA+B,GAAG,mCAAmC,CAAC;;4BAE3E,+BAA+B,GAAG,mCAAmC,KAAG,OAAO;;IAQrG,qGAAqG;;;;;;IAMrG,yDAAyD;;;;;;;uBA9+BnC,IAAI;;wBAkMG,OAAO,CAAC,aAAa,GAAG,SAAS,CAAC;;qBAtHzC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAG,IAAI;;;;;;;;;IAg5BhD,oHAAoH;;cAElG,QAAQ,CAAC,+BAA+B,GAAG,mCAAmC,CAAC;;4BAE3E,+BAA+B,GAAG,mCAAmC,KAAG,OAAO;;IAQrG,qGAAqG;;;;;;IAMrG,yDAAyD;;;;;;;;;;;;;;;;4EAOzD,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAKpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import useI18n from './useI18n';
|
|
2
2
|
import usePortFromProtocol from './getPortFromProtocol';
|
|
3
|
+
import useUrlValidators from './useUrlValidators';
|
|
3
4
|
declare const _default: {
|
|
4
5
|
useI18n: typeof useI18n;
|
|
5
6
|
usePortFromProtocol: typeof usePortFromProtocol;
|
|
7
|
+
useUrlValidators: typeof useUrlValidators;
|
|
6
8
|
};
|
|
7
9
|
export default _default;
|
|
8
10
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/composables/index.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,WAAW,CAAA;AAC/B,OAAO,mBAAmB,MAAM,uBAAuB,CAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/composables/index.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,WAAW,CAAA;AAC/B,OAAO,mBAAmB,MAAM,uBAAuB,CAAA;AACvD,OAAO,gBAAgB,MAAM,oBAAoB,CAAA;;;;;;AAGjD,wBAIC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ProtocolItem } from 'src/types';
|
|
2
|
+
export default function useUrlValidators(): {
|
|
3
|
+
validateHost: (host: string) => string;
|
|
4
|
+
validateProtocol: (protocol: string, gatewayServiceProtocolItems: ProtocolItem[]) => string;
|
|
5
|
+
validatePath: (path: string | null | undefined) => string;
|
|
6
|
+
validatePort: (port: number | null | undefined | string) => string;
|
|
7
|
+
};
|
|
8
|
+
//# sourceMappingURL=useUrlValidators.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useUrlValidators.d.ts","sourceRoot":"","sources":["../../../src/composables/useUrlValidators.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAG7C,MAAM,CAAC,OAAO,UAAU,gBAAgB;yBAGV,MAAM,KAAG,MAAM;iCAuDP,MAAM,+BAA+B,YAAY,EAAE,KAAI,MAAM;yBAtBrE,MAAM,GAAG,IAAI,GAAG,SAAS,KAAG,MAAM;yBAvBlC,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM,KAAG,MAAM;EAmExE"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const KongAirService: {
|
|
2
|
+
name: string;
|
|
3
|
+
tags: never[];
|
|
4
|
+
protocol: string;
|
|
5
|
+
path: string;
|
|
6
|
+
read_timeout: number;
|
|
7
|
+
retries: number;
|
|
8
|
+
host: string;
|
|
9
|
+
connect_timeout: number;
|
|
10
|
+
ca_certificates: null;
|
|
11
|
+
client_certificate: null;
|
|
12
|
+
write_timeout: number;
|
|
13
|
+
port: number;
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,cAAc;;;;;;;;;;;;;CAa1B,CAAA"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import GatewayServiceList from './components/GatewayServiceList.vue';
|
|
2
|
-
import
|
|
2
|
+
import LegacyGatewayServiceForm from './components/LegacyGatewayServiceForm.vue';
|
|
3
3
|
import GatewayServiceConfigCard from './components/GatewayServiceConfigCard.vue';
|
|
4
|
-
|
|
4
|
+
import GatewayServiceForm from './components/GatewayServiceForm.vue';
|
|
5
|
+
export { GatewayServiceList, GatewayServiceForm, GatewayServiceConfigCard, LegacyGatewayServiceForm };
|
|
5
6
|
export * from './types';
|
|
6
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,qCAAqC,CAAA;AACpE,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,qCAAqC,CAAA;AACpE,OAAO,wBAAwB,MAAM,2CAA2C,CAAA;AAChF,OAAO,wBAAwB,MAAM,2CAA2C,CAAA;AAChF,OAAO,kBAAkB,MAAM,qCAAqC,CAAA;AAEpE,OAAO,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,wBAAwB,EAAE,wBAAwB,EAAE,CAAA;AAErG,cAAc,SAAS,CAAA"}
|
|
@@ -27,17 +27,48 @@ export interface GatewayServiceFormFields {
|
|
|
27
27
|
tls_verify_value: boolean;
|
|
28
28
|
tags: string;
|
|
29
29
|
}
|
|
30
|
-
export interface
|
|
30
|
+
export interface FormFieldErrors {
|
|
31
|
+
host: string;
|
|
32
|
+
port: string;
|
|
33
|
+
path: string;
|
|
34
|
+
url: string;
|
|
35
|
+
tags: string;
|
|
36
|
+
retries: string;
|
|
37
|
+
connect_timeout: string;
|
|
38
|
+
write_timeout: string;
|
|
39
|
+
read_timeout: string;
|
|
40
|
+
client_certificate: string;
|
|
41
|
+
ca_certificates: string;
|
|
42
|
+
tls_verify_enabled: string;
|
|
43
|
+
tls_verify_value: string;
|
|
44
|
+
name: string;
|
|
45
|
+
}
|
|
46
|
+
export interface LegacyGatewayServiceFormState {
|
|
31
47
|
/** Form fields */
|
|
32
48
|
fields: GatewayServiceFormFields;
|
|
33
49
|
/** Form readonly state (only used when saving entity details) */
|
|
34
50
|
isReadonly: boolean;
|
|
35
|
-
/** The error
|
|
51
|
+
/** The Array of error messages to show */
|
|
36
52
|
errorMessage: string;
|
|
37
53
|
}
|
|
54
|
+
export interface GatewayServiceFormState {
|
|
55
|
+
/** Form fields */
|
|
56
|
+
fields: GatewayServiceFormFields;
|
|
57
|
+
/** Form readonly state (only used when saving entity details) */
|
|
58
|
+
isReadonly: boolean;
|
|
59
|
+
/** The Array of error messages to show */
|
|
60
|
+
errorMessages: string[];
|
|
61
|
+
/** The error Object is to show error on each form field */
|
|
62
|
+
formFieldErrors: FormFieldErrors;
|
|
63
|
+
}
|
|
38
64
|
export interface SelectItem {
|
|
39
65
|
label: string;
|
|
40
66
|
value: string | number;
|
|
41
67
|
selected?: boolean;
|
|
42
68
|
}
|
|
69
|
+
export interface ProtocolItem {
|
|
70
|
+
label: string;
|
|
71
|
+
value: string;
|
|
72
|
+
group: string;
|
|
73
|
+
}
|
|
43
74
|
//# sourceMappingURL=gateway-service-form.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gateway-service-form.d.ts","sourceRoot":"","sources":["../../../src/types/gateway-service-form.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAClD,OAAO,KAAK,EAAE,qBAAqB,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAA;AAEvG,yCAAyC;AACzC,MAAM,WAAW,+BAAgC,SAAQ,qBAAqB;IAC5E,mEAAmE;IACnE,WAAW,EAAE,gBAAgB,CAAA;CAC9B;AAED,8CAA8C;AAC9C,MAAM,WAAW,mCAAoC,SAAQ,yBAAyB;IACpF,mEAAmE;IACnE,WAAW,EAAE,gBAAgB,CAAA;CAC9B;AAED,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,EAAE,MAAM,CAAA;IAChB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,OAAO,EAAE,MAAM,CAAA;IACf,eAAe,EAAE,MAAM,CAAA;IACvB,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,EAAE,MAAM,CAAA;IACpB,kBAAkB,EAAE,MAAM,CAAA;IAC1B,eAAe,EAAE,MAAM,CAAA;IACvB,kBAAkB,EAAE,OAAO,CAAA;IAC3B,gBAAgB,EAAE,OAAO,CAAA;IACzB,IAAI,EAAE,MAAM,CAAA;CACb;AAED,MAAM,WAAW,uBAAuB;IACtC,kBAAkB;IAClB,MAAM,EAAE,wBAAwB,CAAA;IAChC,iEAAiE;IACjE,UAAU,EAAE,OAAO,CAAA;IACnB,
|
|
1
|
+
{"version":3,"file":"gateway-service-form.d.ts","sourceRoot":"","sources":["../../../src/types/gateway-service-form.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAClD,OAAO,KAAK,EAAE,qBAAqB,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAA;AAEvG,yCAAyC;AACzC,MAAM,WAAW,+BAAgC,SAAQ,qBAAqB;IAC5E,mEAAmE;IACnE,WAAW,EAAE,gBAAgB,CAAA;CAC9B;AAED,8CAA8C;AAC9C,MAAM,WAAW,mCAAoC,SAAQ,yBAAyB;IACpF,mEAAmE;IACnE,WAAW,EAAE,gBAAgB,CAAA;CAC9B;AAED,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,EAAE,MAAM,CAAA;IAChB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,OAAO,EAAE,MAAM,CAAA;IACf,eAAe,EAAE,MAAM,CAAA;IACvB,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,EAAE,MAAM,CAAA;IACpB,kBAAkB,EAAE,MAAM,CAAA;IAC1B,eAAe,EAAE,MAAM,CAAA;IACvB,kBAAkB,EAAE,OAAO,CAAA;IAC3B,gBAAgB,EAAE,OAAO,CAAA;IACzB,IAAI,EAAE,MAAM,CAAA;CACb;AACD,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAA;IACf,eAAe,EAAE,MAAM,CAAA;IACvB,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,EAAE,MAAM,CAAA;IACpB,kBAAkB,EAAE,MAAM,CAAA;IAC1B,eAAe,EAAE,MAAM,CAAA;IACvB,kBAAkB,EAAE,MAAM,CAAA;IAC1B,gBAAgB,EAAE,MAAM,CAAA;IACxB,IAAI,EAAC,MAAM,CAAA;CACZ;AAED,MAAM,WAAW,6BAA6B;IAC5C,kBAAkB;IAClB,MAAM,EAAE,wBAAwB,CAAA;IAChC,iEAAiE;IACjE,UAAU,EAAE,OAAO,CAAA;IACnB,2CAA2C;IAC3C,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,uBAAuB;IACtC,kBAAkB;IAClB,MAAM,EAAE,wBAAwB,CAAA;IAChC,iEAAiE;IACjE,UAAU,EAAE,OAAO,CAAA;IACnB,2CAA2C;IAC3C,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,2DAA2D;IAC3D,eAAe,EAAE,eAAe,CAAA;CACjC;AAGD,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;CACd"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong-ui-public/entities-gateway-services",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.6-pr.2001.dfcf418cd.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/entities-gateway-services.umd.js",
|
|
6
6
|
"module": "./dist/entities-gateway-services.es.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"axios": "^1.7.7",
|
|
27
27
|
"vue": ">= 3.3.13 < 4",
|
|
28
28
|
"vue-router": "^4.4.5",
|
|
29
|
-
"@kong-ui-public/entities-shared": "^3.19.
|
|
29
|
+
"@kong-ui-public/entities-shared": "^3.19.3-pr.2001.dfcf418cd.0",
|
|
30
30
|
"@kong-ui-public/i18n": "^2.2.10"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"axios": "^1.7.7",
|
|
37
37
|
"vue": "^3.5.13",
|
|
38
38
|
"vue-router": "^4.4.5",
|
|
39
|
-
"@kong-ui-public/entities-shared": "^3.19.
|
|
39
|
+
"@kong-ui-public/entities-shared": "^3.19.3-pr.2001.dfcf418cd.0",
|
|
40
40
|
"@kong-ui-public/i18n": "^2.2.10"
|
|
41
41
|
},
|
|
42
42
|
"repository": {
|