@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.
Files changed (35) hide show
  1. package/dist/endpoints/plugins-endpoints.js +2 -2
  2. package/dist/entities-plugins.es.js +2 -2
  3. package/dist/entities-plugins.umd.js +1 -1
  4. package/dist/filler/cypress/index.js +152 -149
  5. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/create-filler.d.ts +2 -2
  6. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/create-filler.d.ts.map +1 -1
  7. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/array.d.ts +1 -1
  8. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/array.d.ts.map +1 -1
  9. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/boolean.d.ts +1 -1
  10. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/boolean.d.ts.map +1 -1
  11. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/enum.d.ts +1 -1
  12. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/enum.d.ts.map +1 -1
  13. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/foreign.d.ts +1 -1
  14. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/foreign.d.ts.map +1 -1
  15. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/json.d.ts +1 -1
  16. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/json.d.ts.map +1 -1
  17. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/map.d.ts +1 -1
  18. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/map.d.ts.map +1 -1
  19. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/number.d.ts +1 -1
  20. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/number.d.ts.map +1 -1
  21. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/record.d.ts.map +1 -1
  22. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/string.d.ts +1 -1
  23. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/string.d.ts.map +1 -1
  24. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/tag.d.ts +1 -1
  25. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/tag.d.ts.map +1 -1
  26. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/types.d.ts +7 -11
  27. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/cypress/handlers/types.d.ts.map +1 -1
  28. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/create-filler.d.ts +1 -4
  29. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/create-filler.d.ts.map +1 -1
  30. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/handlers/array.d.ts.map +1 -1
  31. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/handlers/record.d.ts.map +1 -1
  32. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/handlers/types.d.ts +3 -6
  33. package/dist/filler/packages/entities/entities-plugins/src/components/free-form/filler/playwright/handlers/types.d.ts.map +1 -1
  34. package/dist/filler/playwright/index.js +89 -89
  35. 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,CAgC3E"}
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 = Omit<HandlerOption, 'typeOptions'> & {
9
+ export type RecordHandlerOption = HandlerOption & {
13
10
  onFillChildren: () => Promise<void>;
14
11
  };
15
- export type ArrayHandlerOption = Omit<HandlerOption, 'typeOptions'> & {
12
+ export type ArrayHandlerOption = HandlerOption & {
16
13
  onFillItem: (index: number, itemValue: any) => Promise<void>;
17
14
  };
18
- export type MapHandlerOption = Omit<HandlerOption, 'typeOptions'> & {
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;IACV,WAAW,CAAC,EAAE;QAAE,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE,CAAA;CACjC,CAAA;AAED,MAAM,MAAM,mBAAmB,GAAG,IAAI,CAAC,aAAa,EAAE,aAAa,CAAC,GAAG;IACrE,cAAc,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAA;CACpC,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG,IAAI,CAAC,aAAa,EAAE,aAAa,CAAC,GAAG;IACpE,UAAU,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,GAAG,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;CAC7D,CAAA;AAED,MAAM,MAAM,gBAAgB,GAAG,IAAI,CAAC,aAAa,EAAE,aAAa,CAAC,GAAG;IAClE,WAAW,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,EAAE,GAAG,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;CAC/D,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 S, c as F, g as h, w as v, a as A, b as p, d as B } from "../field-walker-_YAwDcC1.js";
2
- async function I(o) {
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({ force: !0 }) : t === !1 && await i.uncheck({ force: !0 });
12
+ t === !0 ? await i.check() : t === !1 && await i.uncheck();
13
13
  }
14
- async function T(o) {
15
- var k;
16
- const { page: a, fieldKey: n, fieldSchema: t, value: e } = o, i = S(t), w = i ? Array.isArray(e) ? e : [e] : [e], d = f.field(n);
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 g = f.selectTrigger(n);
19
- for (const u of t.one_of ?? ((k = t.elements) == null ? void 0 : k.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 r = i ? f.multiSelectItem(String(u)) : f.selectItem(String(u));
22
- i && await a.locator(g).locator(`${r} button.selected`).count() > 0 && await a.locator(g).locator(r).click(), w.includes(u) && await a.locator(g).locator(r).click();
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, g = await a.locator(w).count() > 0;
31
- if (d || g) {
32
- const k = f.arrayRemoveBtns(n), u = async () => {
33
- await a.locator(k).count() > 0 && (await a.locator(k).first().click(), await u());
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 r = 0; r < t.length; r++) {
37
+ for (let l = 0; l < t.length; l++) {
38
38
  const c = f.arrayAddBtn(n);
39
- await a.locator(c).scrollIntoViewIfNeeded(), await a.locator(c).click({ force: !0 }), await e(r, t[r]);
39
+ await a.locator(c).click(), await e(l, t[l]);
40
40
  }
41
41
  }
42
42
  }
43
- async function x(o) {
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({ force: !0 });
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({ force: !0 }), await new Promise((w) => setTimeout(w, 300)), await t();
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 N(o, a) {
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 [g, k] = w[d];
69
+ const [m, b] = w[d];
70
70
  await a.locator(f.mapAddBtn(n)).click();
71
- const u = f.mapContainer(n, d), r = a.locator(u);
72
- await r.waitFor();
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(g));
75
- const s = r.locator(`[data-testid*="${n}.kid:"]`).first();
76
- await s.waitFor();
77
- const l = N(await s.getAttribute("data-testid"), n);
78
- await e(l, k);
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 J(o) {
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 H = {
92
- fillString: I,
91
+ const J = {
92
+ fillString: B,
93
93
  fillNumber: C,
94
94
  fillBoolean: E,
95
- fillEnum: T,
95
+ fillEnum: I,
96
96
  fillTag: j,
97
97
  fillArray: M,
98
- fillRecord: x,
98
+ fillRecord: T,
99
99
  fillMap: R,
100
100
  fillJson: $,
101
- fillForeign: J
101
+ fillForeign: N
102
102
  };
103
- function U(o, a, n) {
104
- const t = F(a), e = { ...H, ...n };
105
- async function i(r, c, s = "") {
106
- for (const l of v(r, c, t, s))
107
- await w(l);
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: r, fieldKey: c, fieldSchema: s, value: l }, y) {
110
- switch (r) {
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: s, value: l, typeOptions: y });
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: s, value: l, typeOptions: y });
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: s, value: l, typeOptions: y });
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: s, value: l, typeOptions: y });
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: s, value: l, typeOptions: y });
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: s,
131
- value: l,
132
- onFillEntry: async (m, b) => {
133
- await g(t, c, m, b);
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: s, value: l, typeOptions: y });
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: s, value: l, typeOptions: y });
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: s,
148
- value: l,
149
- onFillItem: async (m, b) => {
150
- await d(t, c, m, b);
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: s,
159
- value: l,
158
+ fieldSchema: r,
159
+ value: s,
160
160
  onFillChildren: async () => {
161
- await i(s.fields, l, c);
161
+ await i(r.fields, s, c);
162
162
  }
163
163
  });
164
164
  break;
165
165
  }
166
166
  }
167
- async function d(r, c, s, l) {
168
- const { itemKey: y, itemSchema: m } = A(c, s, r);
169
- p(m) ? await i(m.fields, l, y) : await w({
170
- handlerType: h(m),
171
- fieldKey: y,
172
- fieldSchema: m,
173
- value: l
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 g(r, c, s, l) {
177
- const { entryKey: y, entrySchema: m } = B(c, s, r);
176
+ async function m(l, c, r, s) {
177
+ const { entryKey: g, entrySchema: y } = A(c, r, l);
178
178
  await w({
179
- handlerType: h(m),
180
- fieldKey: y,
181
- fieldSchema: m,
182
- value: l
179
+ handlerType: k(y),
180
+ fieldKey: g,
181
+ fieldSchema: y,
182
+ value: s
183
183
  });
184
184
  }
185
- async function k(r) {
186
- a.fields && Array.isArray(a.fields) && await i(a.fields, r);
185
+ async function b(l) {
186
+ a.fields && Array.isArray(a.fields) && await i(a.fields, l);
187
187
  }
188
- async function u(r, c, s) {
189
- const l = t.schemaMap[r];
190
- if (!l)
191
- throw new Error(`Field schema for "${r}" not found in schema map`);
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: h(l),
194
- fieldKey: r,
195
- fieldSchema: l,
193
+ handlerType: k(r),
194
+ fieldKey: l,
195
+ fieldSchema: r,
196
196
  value: c
197
- }, s);
197
+ });
198
198
  }
199
199
  return {
200
- fill: k,
200
+ fill: b,
201
201
  fillField: u,
202
202
  schemaMap: t.schemaMap,
203
203
  handlers: e
204
204
  };
205
205
  }
206
206
  export {
207
- U as createFiller,
207
+ K as createFiller,
208
208
  M as fillArray,
209
209
  E as fillBoolean,
210
- T as fillEnum,
211
- J as fillForeign,
210
+ I as fillEnum,
211
+ N as fillForeign,
212
212
  $ as fillJson,
213
213
  R as fillMap,
214
214
  C as fillNumber,
215
- x as fillRecord,
216
- I as fillString,
215
+ T as fillRecord,
216
+ B as fillString,
217
217
  j as fillTag,
218
- H as handlers
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.1",
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/entities-shared": "^3.53.5",
58
+ "@kong-ui-public/monaco-editor": "^0.22.23",
59
59
  "@kong-ui-public/i18n": "^2.4.6",
60
- "@kong-ui-public/monaco-editor": "^0.22.23"
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",