@kong-ui-public/entities-plugins 9.223.1 → 9.223.3
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/endpoints/plugins-endpoints.js +2 -2
- package/dist/entities-plugins.es.js +2 -2
- package/dist/entities-plugins.umd.js +1 -1
- package/dist/filler/cypress/index.js +152 -149
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/create-filler.d.ts +2 -2
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/create-filler.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/array.d.ts +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/array.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/boolean.d.ts +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/boolean.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/enum.d.ts +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/enum.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/foreign.d.ts +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/foreign.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/json.d.ts +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/json.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/map.d.ts +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/map.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/number.d.ts +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/number.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/record.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/string.d.ts +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/string.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/tag.d.ts +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/tag.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/types.d.ts +7 -11
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/types.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/create-filler.d.ts +1 -4
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/create-filler.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/handlers/array.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/handlers/record.d.ts.map +1 -1
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/handlers/types.d.ts +3 -6
- package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/handlers/types.d.ts.map +1 -1
- package/dist/filler/playwright/index.js +89 -89
- package/package.json +6 -6
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"record.d.ts","sourceRoot":"","sources":["../../../../../../../../../../../src/components/free-form/filler/playwright/handlers/record.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAGlD,wBAAsB,UAAU,CAAC,MAAM,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"record.d.ts","sourceRoot":"","sources":["../../../../../../../../../../../src/components/free-form/filler/playwright/handlers/record.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAGlD,wBAAsB,UAAU,CAAC,MAAM,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,CAoC3E"}
|
|
@@ -5,17 +5,14 @@ export type HandlerOption<T extends UnionFieldSchema = UnionFieldSchema> = {
|
|
|
5
5
|
fieldKey: string;
|
|
6
6
|
fieldSchema: T;
|
|
7
7
|
value: any;
|
|
8
|
-
typeOptions?: {
|
|
9
|
-
delay?: number;
|
|
10
|
-
};
|
|
11
8
|
};
|
|
12
|
-
export type RecordHandlerOption =
|
|
9
|
+
export type RecordHandlerOption = HandlerOption & {
|
|
13
10
|
onFillChildren: () => Promise<void>;
|
|
14
11
|
};
|
|
15
|
-
export type ArrayHandlerOption =
|
|
12
|
+
export type ArrayHandlerOption = HandlerOption & {
|
|
16
13
|
onFillItem: (index: number, itemValue: any) => Promise<void>;
|
|
17
14
|
};
|
|
18
|
-
export type MapHandlerOption =
|
|
15
|
+
export type MapHandlerOption = HandlerOption & {
|
|
19
16
|
onFillEntry: (kidId: string, entryValue: any) => Promise<void>;
|
|
20
17
|
};
|
|
21
18
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../../../../../src/components/free-form/filler/playwright/handlers/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAA;AAChF,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAA;AAE5C,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,gBAAgB,GAAG,gBAAgB,IAAI;IACzE,IAAI,EAAE,IAAI,CAAA;IACV,QAAQ,EAAE,MAAM,CAAA;IAChB,WAAW,EAAE,CAAC,CAAA;IACd,KAAK,EAAE,GAAG,CAAA;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../../../../../src/components/free-form/filler/playwright/handlers/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAA;AAChF,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAA;AAE5C,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,gBAAgB,GAAG,gBAAgB,IAAI;IACzE,IAAI,EAAE,IAAI,CAAA;IACV,QAAQ,EAAE,MAAM,CAAA;IAChB,WAAW,EAAE,CAAC,CAAA;IACd,KAAK,EAAE,GAAG,CAAA;CACX,CAAA;AAED,MAAM,MAAM,mBAAmB,GAAG,aAAa,GAAG;IAChD,cAAc,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAA;CACpC,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG,aAAa,GAAG;IAC/C,UAAU,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,GAAG,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;CAC7D,CAAA;AAED,MAAM,MAAM,gBAAgB,GAAG,aAAa,GAAG;IAC7C,WAAW,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,EAAE,GAAG,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;CAC/D,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { s as f, i as
|
|
2
|
-
async function
|
|
1
|
+
import { s as f, i as h, c as p, g as k, w as S, a as F, b as v, d as A } from "../field-walker-_YAwDcC1.js";
|
|
2
|
+
async function B(o) {
|
|
3
3
|
const { page: a, fieldKey: n, value: t } = o, e = f.field(n), i = a.locator(e);
|
|
4
4
|
await i.clear(), t != null && t !== "" && await i.fill(String(t));
|
|
5
5
|
}
|
|
@@ -9,17 +9,17 @@ async function C(o) {
|
|
|
9
9
|
}
|
|
10
10
|
async function E(o) {
|
|
11
11
|
const { page: a, fieldKey: n, value: t } = o, e = f.field(n), i = a.locator(e);
|
|
12
|
-
t === !0 ? await i.check(
|
|
12
|
+
t === !0 ? await i.check() : t === !1 && await i.uncheck();
|
|
13
13
|
}
|
|
14
|
-
async function
|
|
15
|
-
var
|
|
16
|
-
const { page: a, fieldKey: n, fieldSchema: t, value: e } = o, i =
|
|
14
|
+
async function I(o) {
|
|
15
|
+
var b;
|
|
16
|
+
const { page: a, fieldKey: n, fieldSchema: t, value: e } = o, i = h(t), w = i ? Array.isArray(e) ? e : [e] : [e], d = f.field(n);
|
|
17
17
|
await a.locator(d).click();
|
|
18
|
-
const
|
|
19
|
-
for (const u of t.one_of ?? ((
|
|
18
|
+
const m = f.selectTrigger(n);
|
|
19
|
+
for (const u of t.one_of ?? ((b = t.elements) == null ? void 0 : b.one_of) ?? [])
|
|
20
20
|
if (u != null) {
|
|
21
|
-
const
|
|
22
|
-
i && await a.locator(
|
|
21
|
+
const l = i ? f.multiSelectItem(String(u)) : f.selectItem(String(u));
|
|
22
|
+
i && await a.locator(m).locator(`${l} button.selected`).count() > 0 && await a.locator(m).locator(l).click(), w.includes(u) && await a.locator(m).locator(l).click();
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
async function j(o) {
|
|
@@ -27,28 +27,28 @@ async function j(o) {
|
|
|
27
27
|
await a.locator(i).fill(e.join(","));
|
|
28
28
|
}
|
|
29
29
|
async function M(o) {
|
|
30
|
-
const { page: a, fieldKey: n, value: t, onFillItem: e } = o, i = f.arrayTabContainer(n), w = f.arrayBasicContainer(n), d = await a.locator(i).count() > 0,
|
|
31
|
-
if (d ||
|
|
32
|
-
const
|
|
33
|
-
await a.locator(
|
|
30
|
+
const { page: a, fieldKey: n, value: t, onFillItem: e } = o, i = f.arrayTabContainer(n), w = f.arrayBasicContainer(n), d = await a.locator(i).count() > 0, m = await a.locator(w).count() > 0;
|
|
31
|
+
if (d || m) {
|
|
32
|
+
const b = f.arrayRemoveBtns(n), u = async () => {
|
|
33
|
+
await a.locator(b).count() > 0 && (await a.locator(b).first().click(), await u());
|
|
34
34
|
};
|
|
35
35
|
if (await u(), !Array.isArray(t))
|
|
36
36
|
return;
|
|
37
|
-
for (let
|
|
37
|
+
for (let l = 0; l < t.length; l++) {
|
|
38
38
|
const c = f.arrayAddBtn(n);
|
|
39
|
-
await a.locator(c).
|
|
39
|
+
await a.locator(c).click(), await e(l, t[l]);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
-
async function
|
|
43
|
+
async function T(o) {
|
|
44
44
|
const { page: a, fieldKey: n, onFillChildren: t } = o, e = f.objectSwitch(n), i = await a.locator(e).count() > 0;
|
|
45
45
|
if ((o.value === null || o.value === void 0) && i) {
|
|
46
|
-
await a.locator(e).locator("..").locator('[data-testid="switch-control"]').click(
|
|
46
|
+
await a.locator(e).locator("..").locator('[data-testid="switch-control"]').click();
|
|
47
47
|
return;
|
|
48
48
|
}
|
|
49
|
-
i && await a.locator(e).locator("..").locator('[data-testid="switch-control"]').click(
|
|
49
|
+
i && (await a.locator(e).locator("..").locator('[data-testid="switch-control"]').click(), await a.locator(f.objectContent(n)).waitFor({ state: "visible" })), await t();
|
|
50
50
|
}
|
|
51
|
-
function
|
|
51
|
+
function x(o, a) {
|
|
52
52
|
if (!o)
|
|
53
53
|
throw new Error(`Unable to find map entry test id for "${a}"`);
|
|
54
54
|
const n = o.match(/kid:\d+/);
|
|
@@ -66,88 +66,88 @@ async function R(o) {
|
|
|
66
66
|
const w = Object.entries(t);
|
|
67
67
|
if (w.length !== 0)
|
|
68
68
|
for (let d = 0; d < w.length; d++) {
|
|
69
|
-
const [
|
|
69
|
+
const [m, b] = w[d];
|
|
70
70
|
await a.locator(f.mapAddBtn(n)).click();
|
|
71
|
-
const u = f.mapContainer(n, d),
|
|
72
|
-
await
|
|
71
|
+
const u = f.mapContainer(n, d), l = a.locator(u);
|
|
72
|
+
await l.waitFor();
|
|
73
73
|
const c = a.locator(f.mapKey(n, d));
|
|
74
|
-
await c.clear(), await c.fill(String(
|
|
75
|
-
const
|
|
76
|
-
await
|
|
77
|
-
const
|
|
78
|
-
await e(
|
|
74
|
+
await c.clear(), await c.fill(String(m));
|
|
75
|
+
const r = l.locator(`[data-testid*="${n}.kid:"]`).first();
|
|
76
|
+
await r.waitFor();
|
|
77
|
+
const s = x(await r.getAttribute("data-testid"), n);
|
|
78
|
+
await e(s, b);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
async function $(o) {
|
|
82
82
|
const { page: a, fieldKey: n, value: t } = o, e = f.json(n), i = a.locator(e).locator("textarea"), w = typeof t == "string" ? t : JSON.stringify(t, null, 2);
|
|
83
83
|
await i.clear(), await i.fill(w);
|
|
84
84
|
}
|
|
85
|
-
async function
|
|
85
|
+
async function N(o) {
|
|
86
86
|
const { page: a, fieldKey: n, value: t } = o, e = f.field(n);
|
|
87
87
|
await a.locator(e).click();
|
|
88
88
|
const i = typeof t == "object" && (t != null && t.id) ? t.id : t;
|
|
89
89
|
i && await a.locator(`[data-testid="select-item-${i}"]`).click();
|
|
90
90
|
}
|
|
91
|
-
const
|
|
92
|
-
fillString:
|
|
91
|
+
const J = {
|
|
92
|
+
fillString: B,
|
|
93
93
|
fillNumber: C,
|
|
94
94
|
fillBoolean: E,
|
|
95
|
-
fillEnum:
|
|
95
|
+
fillEnum: I,
|
|
96
96
|
fillTag: j,
|
|
97
97
|
fillArray: M,
|
|
98
|
-
fillRecord:
|
|
98
|
+
fillRecord: T,
|
|
99
99
|
fillMap: R,
|
|
100
100
|
fillJson: $,
|
|
101
|
-
fillForeign:
|
|
101
|
+
fillForeign: N
|
|
102
102
|
};
|
|
103
|
-
function
|
|
104
|
-
const t =
|
|
105
|
-
async function i(
|
|
106
|
-
for (const
|
|
107
|
-
await w(
|
|
103
|
+
function K(o, a, n) {
|
|
104
|
+
const t = p(a), e = { ...J, ...n };
|
|
105
|
+
async function i(l, c, r = "") {
|
|
106
|
+
for (const s of S(l, c, t, r))
|
|
107
|
+
await w(s);
|
|
108
108
|
}
|
|
109
|
-
async function w({ handlerType:
|
|
110
|
-
switch (
|
|
109
|
+
async function w({ handlerType: l, fieldKey: c, fieldSchema: r, value: s }) {
|
|
110
|
+
switch (l) {
|
|
111
111
|
case "string":
|
|
112
|
-
await e.fillString({ page: o, fieldKey: c, fieldSchema:
|
|
112
|
+
await e.fillString({ page: o, fieldKey: c, fieldSchema: r, value: s });
|
|
113
113
|
break;
|
|
114
114
|
case "number":
|
|
115
|
-
await e.fillNumber({ page: o, fieldKey: c, fieldSchema:
|
|
115
|
+
await e.fillNumber({ page: o, fieldKey: c, fieldSchema: r, value: s });
|
|
116
116
|
break;
|
|
117
117
|
case "boolean":
|
|
118
|
-
await e.fillBoolean({ page: o, fieldKey: c, fieldSchema:
|
|
118
|
+
await e.fillBoolean({ page: o, fieldKey: c, fieldSchema: r, value: s });
|
|
119
119
|
break;
|
|
120
120
|
case "enum":
|
|
121
|
-
await e.fillEnum({ page: o, fieldKey: c, fieldSchema:
|
|
121
|
+
await e.fillEnum({ page: o, fieldKey: c, fieldSchema: r, value: s });
|
|
122
122
|
break;
|
|
123
123
|
case "tag":
|
|
124
|
-
await e.fillTag({ page: o, fieldKey: c, fieldSchema:
|
|
124
|
+
await e.fillTag({ page: o, fieldKey: c, fieldSchema: r, value: s });
|
|
125
125
|
break;
|
|
126
126
|
case "map":
|
|
127
127
|
await e.fillMap({
|
|
128
128
|
page: o,
|
|
129
129
|
fieldKey: c,
|
|
130
|
-
fieldSchema:
|
|
131
|
-
value:
|
|
132
|
-
onFillEntry: async (
|
|
133
|
-
await
|
|
130
|
+
fieldSchema: r,
|
|
131
|
+
value: s,
|
|
132
|
+
onFillEntry: async (g, y) => {
|
|
133
|
+
await m(t, c, g, y);
|
|
134
134
|
}
|
|
135
135
|
});
|
|
136
136
|
break;
|
|
137
137
|
case "json":
|
|
138
|
-
await e.fillJson({ page: o, fieldKey: c, fieldSchema:
|
|
138
|
+
await e.fillJson({ page: o, fieldKey: c, fieldSchema: r, value: s });
|
|
139
139
|
break;
|
|
140
140
|
case "foreign":
|
|
141
|
-
await e.fillForeign({ page: o, fieldKey: c, fieldSchema:
|
|
141
|
+
await e.fillForeign({ page: o, fieldKey: c, fieldSchema: r, value: s });
|
|
142
142
|
break;
|
|
143
143
|
case "array":
|
|
144
144
|
await e.fillArray({
|
|
145
145
|
page: o,
|
|
146
146
|
fieldKey: c,
|
|
147
|
-
fieldSchema:
|
|
148
|
-
value:
|
|
149
|
-
onFillItem: async (
|
|
150
|
-
await d(t, c,
|
|
147
|
+
fieldSchema: r,
|
|
148
|
+
value: s,
|
|
149
|
+
onFillItem: async (g, y) => {
|
|
150
|
+
await d(t, c, g, y);
|
|
151
151
|
}
|
|
152
152
|
});
|
|
153
153
|
break;
|
|
@@ -155,65 +155,65 @@ function U(o, a, n) {
|
|
|
155
155
|
await e.fillRecord({
|
|
156
156
|
page: o,
|
|
157
157
|
fieldKey: c,
|
|
158
|
-
fieldSchema:
|
|
159
|
-
value:
|
|
158
|
+
fieldSchema: r,
|
|
159
|
+
value: s,
|
|
160
160
|
onFillChildren: async () => {
|
|
161
|
-
await i(
|
|
161
|
+
await i(r.fields, s, c);
|
|
162
162
|
}
|
|
163
163
|
});
|
|
164
164
|
break;
|
|
165
165
|
}
|
|
166
166
|
}
|
|
167
|
-
async function d(
|
|
168
|
-
const { itemKey:
|
|
169
|
-
|
|
170
|
-
handlerType:
|
|
171
|
-
fieldKey:
|
|
172
|
-
fieldSchema:
|
|
173
|
-
value:
|
|
167
|
+
async function d(l, c, r, s) {
|
|
168
|
+
const { itemKey: g, itemSchema: y } = F(c, r, l);
|
|
169
|
+
v(y) ? await i(y.fields, s, g) : await w({
|
|
170
|
+
handlerType: k(y),
|
|
171
|
+
fieldKey: g,
|
|
172
|
+
fieldSchema: y,
|
|
173
|
+
value: s
|
|
174
174
|
});
|
|
175
175
|
}
|
|
176
|
-
async function
|
|
177
|
-
const { entryKey:
|
|
176
|
+
async function m(l, c, r, s) {
|
|
177
|
+
const { entryKey: g, entrySchema: y } = A(c, r, l);
|
|
178
178
|
await w({
|
|
179
|
-
handlerType:
|
|
180
|
-
fieldKey:
|
|
181
|
-
fieldSchema:
|
|
182
|
-
value:
|
|
179
|
+
handlerType: k(y),
|
|
180
|
+
fieldKey: g,
|
|
181
|
+
fieldSchema: y,
|
|
182
|
+
value: s
|
|
183
183
|
});
|
|
184
184
|
}
|
|
185
|
-
async function
|
|
186
|
-
a.fields && Array.isArray(a.fields) && await i(a.fields,
|
|
185
|
+
async function b(l) {
|
|
186
|
+
a.fields && Array.isArray(a.fields) && await i(a.fields, l);
|
|
187
187
|
}
|
|
188
|
-
async function u(
|
|
189
|
-
const
|
|
190
|
-
if (!
|
|
191
|
-
throw new Error(`Field schema for "${
|
|
188
|
+
async function u(l, c) {
|
|
189
|
+
const r = t.schemaMap[l];
|
|
190
|
+
if (!r)
|
|
191
|
+
throw new Error(`Field schema for "${l}" not found in schema map`);
|
|
192
192
|
await w({
|
|
193
|
-
handlerType:
|
|
194
|
-
fieldKey:
|
|
195
|
-
fieldSchema:
|
|
193
|
+
handlerType: k(r),
|
|
194
|
+
fieldKey: l,
|
|
195
|
+
fieldSchema: r,
|
|
196
196
|
value: c
|
|
197
|
-
}
|
|
197
|
+
});
|
|
198
198
|
}
|
|
199
199
|
return {
|
|
200
|
-
fill:
|
|
200
|
+
fill: b,
|
|
201
201
|
fillField: u,
|
|
202
202
|
schemaMap: t.schemaMap,
|
|
203
203
|
handlers: e
|
|
204
204
|
};
|
|
205
205
|
}
|
|
206
206
|
export {
|
|
207
|
-
|
|
207
|
+
K as createFiller,
|
|
208
208
|
M as fillArray,
|
|
209
209
|
E as fillBoolean,
|
|
210
|
-
|
|
211
|
-
|
|
210
|
+
I as fillEnum,
|
|
211
|
+
N as fillForeign,
|
|
212
212
|
$ as fillJson,
|
|
213
213
|
R as fillMap,
|
|
214
214
|
C as fillNumber,
|
|
215
|
-
|
|
216
|
-
|
|
215
|
+
T as fillRecord,
|
|
216
|
+
B as fillString,
|
|
217
217
|
j as fillTag,
|
|
218
|
-
|
|
218
|
+
J as handlers
|
|
219
219
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong-ui-public/entities-plugins",
|
|
3
|
-
"version": "9.223.
|
|
3
|
+
"version": "9.223.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/entities-plugins.umd.js",
|
|
6
6
|
"module": "./dist/entities-plugins.es.js",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"vue": ">= 3.3.13 < 4",
|
|
56
56
|
"vue-router": "^4.6.4 || ^5.0.6",
|
|
57
57
|
"zod": ">= 4.1.3 < 5",
|
|
58
|
-
"@kong-ui-public/
|
|
58
|
+
"@kong-ui-public/monaco-editor": "^0.22.23",
|
|
59
59
|
"@kong-ui-public/i18n": "^2.4.6",
|
|
60
|
-
"@kong-ui-public/
|
|
60
|
+
"@kong-ui-public/entities-shared": "^3.53.5"
|
|
61
61
|
},
|
|
62
62
|
"peerDependenciesMeta": {
|
|
63
63
|
"@playwright/test": {
|
|
@@ -115,14 +115,14 @@
|
|
|
115
115
|
"lodash-es": "^4.18.1",
|
|
116
116
|
"marked": "^14.1.4",
|
|
117
117
|
"@kong-ui-public/entities-consumer-groups": "^4.5.38",
|
|
118
|
-
"@kong-ui-public/entities-gateway-services": "^3.20.36",
|
|
119
|
-
"@kong-ui-public/entities-consumers": "^4.4.36",
|
|
120
118
|
"@kong-ui-public/entities-plugins-icon": "^1.6.7",
|
|
121
119
|
"@kong-ui-public/entities-plugins-metadata": "^1.13.3",
|
|
122
120
|
"@kong-ui-public/entities-redis-configurations": "^1.15.51",
|
|
123
121
|
"@kong-ui-public/entities-routes": "^3.22.46",
|
|
124
122
|
"@kong-ui-public/entities-vaults": "^4.12.5",
|
|
125
|
-
"@kong-ui-public/forms": "^4.30.1"
|
|
123
|
+
"@kong-ui-public/forms": "^4.30.1",
|
|
124
|
+
"@kong-ui-public/entities-gateway-services": "^3.20.36",
|
|
125
|
+
"@kong-ui-public/entities-consumers": "^4.4.36"
|
|
126
126
|
},
|
|
127
127
|
"scripts": {
|
|
128
128
|
"dev": "cross-env USE_SANDBOX=true vite",
|