@kong-ui-public/entities-consumer-credentials 3.6.31 → 3.6.32-pr.2694.d983d66d0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong-ui-public/entities-consumer-credentials",
3
- "version": "3.6.31",
3
+ "version": "3.6.32-pr.2694.d983d66d0.0",
4
4
  "type": "module",
5
5
  "main": "./dist/entities-consumer-credentials.umd.js",
6
6
  "module": "./dist/entities-consumer-credentials.es.js",
@@ -26,8 +26,8 @@
26
26
  "axios": "^1.13.2",
27
27
  "vue": ">= 3.3.13 < 4",
28
28
  "vue-router": "^4.6.4",
29
- "@kong-ui-public/entities-shared": "^3.36.8",
30
- "@kong-ui-public/i18n": "^2.4.5"
29
+ "@kong-ui-public/i18n": "^2.4.5",
30
+ "@kong-ui-public/entities-shared": "^3.36.9-pr.2694.d983d66d0.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@kong/design-tokens": "1.18.2",
@@ -36,7 +36,7 @@
36
36
  "axios": "^1.13.2",
37
37
  "vue": "^3.5.26",
38
38
  "vue-router": "^4.6.4",
39
- "@kong-ui-public/entities-shared": "^3.36.8",
39
+ "@kong-ui-public/entities-shared": "^3.36.9-pr.2694.d983d66d0.0",
40
40
  "@kong-ui-public/i18n": "^2.4.5"
41
41
  },
42
42
  "repository": {
@@ -1,536 +0,0 @@
1
- import { defineComponent as Y, computed as T, ref as C, watch as Z, onBeforeMount as ee, resolveComponent as D, createElementBlock as te, openBlock as b, createVNode as c, unref as r, withCtx as n, createBlock as k, createCommentVNode as I, createTextVNode as p, toDisplayString as u, createElementVNode as B, Teleport as ae } from "vue";
2
- import { AddIcon as ne } from "@kong/icons";
3
- import { createI18n as le, i18nTComponent as ie } from "@kong-ui-public/i18n";
4
- import { useAxios as ce, useFetcher as re, useDeleteUrlBuilder as se, EntityTypes as oe, FetcherStatus as de, EntityBaseTable as ue, PermissionsWrapper as j, TableTags as he, EntityDeleteModal as pe } from "@kong-ui-public/entities-shared";
5
- const ye = {
6
- title: "Consumer Credentials",
7
- list: {
8
- toolbar_actions: {
9
- acls: {
10
- new: "New ACL Credential"
11
- },
12
- "basic-auth": {
13
- new: "New Basic Auth Credential"
14
- },
15
- "key-auth": {
16
- new: "New Key Auth Credential"
17
- },
18
- "key-auth-enc": {
19
- new: "New Key Auth Encrypted Credential"
20
- },
21
- oauth2: {
22
- new: "New OAuth 2.0 Credential"
23
- },
24
- "hmac-auth": {
25
- new: "New HMAC Credential"
26
- },
27
- jwt: {
28
- new: "New JWT Credential"
29
- }
30
- },
31
- table_headers: {
32
- acls: {
33
- group: "Group",
34
- created_at: "Created At",
35
- tags: "Tags"
36
- },
37
- "basic-auth": {
38
- password: "Credential",
39
- username: "Username",
40
- created_at: "Created at",
41
- tags: "Tags"
42
- },
43
- "key-auth": {
44
- key: "Key",
45
- created_at: "Created at",
46
- tags: "Tags"
47
- },
48
- "key-auth-enc": {
49
- key: "Key",
50
- created_at: "Created at",
51
- tags: "Tags"
52
- },
53
- oauth2: {
54
- name: "Name",
55
- client_id: "Client ID",
56
- client_secret: "Client secret",
57
- created_at: "Created at",
58
- tags: "Tags"
59
- },
60
- "hmac-auth": {
61
- username: "Username",
62
- secret: "Secret",
63
- created_at: "Created at",
64
- tags: "Tags"
65
- },
66
- jwt: {
67
- key: "Key",
68
- algorithm: "Algorithm",
69
- created_at: "Created at",
70
- tags: "Tags"
71
- }
72
- },
73
- empty_state: {
74
- acls: {
75
- title: "Configure a New ACL Credential",
76
- cta: "New ACL Credential"
77
- },
78
- "basic-auth": {
79
- title: "Configure a New Basic Auth Credential",
80
- cta: "New Basic Auth Credential"
81
- },
82
- "key-auth": {
83
- title: "Configure a New Key Auth Credential",
84
- cta: "New Key Auth Credential"
85
- },
86
- "key-auth-enc": {
87
- title: "Configure a New Key Auth Encrypted Credential",
88
- cta: "New Key Auth Encrypted Credential"
89
- },
90
- oauth2: {
91
- title: "Configure a New OAuth 2.0 Credential",
92
- cta: "New OAuth 2.0 Credential"
93
- },
94
- "hmac-auth": {
95
- title: "Configure a New HMAC Credential",
96
- cta: "New HMAC Credential"
97
- },
98
- jwt: {
99
- title: "Configure a New JWT Credential",
100
- cta: "New JWT Credential"
101
- }
102
- }
103
- },
104
- actions: {
105
- copy_id: "Copy ID",
106
- copy_credential: "Copy Credential",
107
- copy_key: "Copy Key",
108
- copy_secret: "Copy Secret",
109
- copy_json: "Copy JSON",
110
- edit: "Edit",
111
- delete: "Delete"
112
- },
113
- delete: {
114
- acls: {
115
- title: "Delete an ACL Credential"
116
- },
117
- "basic-auth": {
118
- title: "Delete a Basic Auth Credential"
119
- },
120
- "key-auth": {
121
- title: "Delete a Key Auth Credential"
122
- },
123
- "key-auth-enc": {
124
- title: "Delete a Key Auth Encrypted Credential"
125
- },
126
- oauth2: {
127
- title: "Delete an OAuth 2.0 Credential"
128
- },
129
- "hmac-auth": {
130
- title: "Delete an HMAC Credential"
131
- },
132
- jwt: {
133
- title: "Delete a JWT Credential"
134
- },
135
- description: "This action cannot be reversed."
136
- },
137
- error: {
138
- general: "Credentials could not be retrieved",
139
- delete: "The credential could not be deleted at this time.",
140
- copy: "Failed to copy to clipboard"
141
- },
142
- copy: {
143
- success: "Copied {val} to clipboard",
144
- success_brief: "Successfully copied to clipboard"
145
- }
146
- }, ge = {
147
- credentials: ye
148
- };
149
- function fe() {
150
- const l = le("en-us", ge);
151
- return {
152
- i18n: l,
153
- i18nT: ie(l)
154
- // Translation component <i18n-t>
155
- };
156
- }
157
- const me = {
158
- useI18n: fe
159
- }, Ce = {
160
- list: {
161
- konnect: "/v2/control-planes/{controlPlaneId}/core-entities/consumers/{consumerId}/{plugin}",
162
- kongManager: "/{workspace}/consumers/{consumerId}/{plugin}"
163
- }
164
- }, be = { class: "kong-ui-entities-consumer-credentials-list" }, _e = /* @__PURE__ */ Y({
165
- __name: "ConsumerCredentialList",
166
- props: {
167
- /** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
168
- config: {
169
- type: Object,
170
- required: !0,
171
- validator: (l) => !(!l || !["konnect", "kongManager"].includes(l == null ? void 0 : l.app) || !l.createRoute || !l.getEditRoute)
172
- },
173
- // used to override the default identifier for the cache entry
174
- cacheIdentifier: {
175
- type: String,
176
- default: ""
177
- },
178
- /** A synchronous or asynchronous function, that returns a boolean, that evaluates if the user can create a new entity */
179
- canCreate: {
180
- type: Function,
181
- required: !1,
182
- default: async () => !0
183
- },
184
- /** A synchronous or asynchronous function, that returns a boolean, that evaluates if the user can delete a given entity */
185
- canDelete: {
186
- type: Function,
187
- required: !1,
188
- default: async () => !0
189
- },
190
- /** A synchronous or asynchronous function, that returns a boolean, that evaluates if the user can edit a given entity */
191
- canEdit: {
192
- type: Function,
193
- required: !1,
194
- default: async () => !0
195
- },
196
- /** default to false, setting to true will teleport the toolbar button to the destination in the consuming app */
197
- useActionOutside: {
198
- type: Boolean,
199
- default: !1
200
- }
201
- },
202
- emits: ["error", "copy:success", "copy:error", "delete:success"],
203
- setup(l, { emit: K }) {
204
- var S;
205
- const y = K, i = l, { i18n: { t: e, formatUnixTimeStamp: O } } = me.useI18n(), { axiosInstance: P } = ce((S = i.config) == null ? void 0 : S.axiosRequestConfig), F = {
206
- acls: {
207
- group: { label: e("credentials.list.table_headers.acls.group") },
208
- created_at: { label: e("credentials.list.table_headers.acls.created_at") },
209
- tags: { label: e("credentials.list.table_headers.acls.tags") }
210
- },
211
- "basic-auth": {
212
- username: { label: e("credentials.list.table_headers.basic-auth.username") },
213
- created_at: { label: e("credentials.list.table_headers.basic-auth.created_at") },
214
- tags: { label: e("credentials.list.table_headers.basic-auth.tags") }
215
- },
216
- "key-auth": {
217
- key: { label: e("credentials.list.table_headers.key-auth.key") },
218
- created_at: { label: e("credentials.list.table_headers.key-auth.created_at") },
219
- tags: { label: e("credentials.list.table_headers.key-auth.tags") }
220
- },
221
- "key-auth-enc": {
222
- key: { label: e("credentials.list.table_headers.key-auth-enc.key") },
223
- created_at: { label: e("credentials.list.table_headers.key-auth-enc.created_at") },
224
- tags: { label: e("credentials.list.table_headers.key-auth-enc.tags") }
225
- },
226
- oauth2: {
227
- name: { label: e("credentials.list.table_headers.oauth2.name") },
228
- client_id: { label: e("credentials.list.table_headers.oauth2.client_id") },
229
- client_secret: { label: e("credentials.list.table_headers.oauth2.client_secret") },
230
- created_at: { label: e("credentials.list.table_headers.oauth2.created_at") },
231
- tags: { label: e("credentials.list.table_headers.oauth2.tags") }
232
- },
233
- "hmac-auth": {
234
- username: { label: e("credentials.list.table_headers.hmac-auth.username") },
235
- secret: { label: e("credentials.list.table_headers.hmac-auth.secret") },
236
- created_at: { label: e("credentials.list.table_headers.hmac-auth.created_at") },
237
- tags: { label: e("credentials.list.table_headers.hmac-auth.tags") }
238
- },
239
- jwt: {
240
- key: { label: e("credentials.list.table_headers.jwt.key") },
241
- algorithm: { label: e("credentials.list.table_headers.jwt.algorithm") },
242
- created_at: { label: e("credentials.list.table_headers.jwt.created_at") },
243
- tags: { label: e("credentials.list.table_headers.jwt.tags") }
244
- }
245
- }, R = T(() => F[i.config.plugin]), M = T(() => {
246
- let t = `${i.config.apiBaseUrl}${Ce.list[i.config.app]}`;
247
- return i.config.app === "konnect" ? t = t.replace(/{controlPlaneId}/gi, i.config.controlPlaneId || "").replace(/{consumerId}/gi, i.config.consumerId || "").replace(/{plugin}/gi, i.config.plugin || "") : i.config.app === "kongManager" && (t = t.replace(/\/{workspace}/gi, i.config.workspace ? `/${i.config.workspace}` : "").replace(/{consumerId}/gi, i.config.consumerId || "").replace(/{plugin}/gi, i.config.plugin || "")), t;
248
- }), {
249
- fetcher: U,
250
- fetcherState: J,
251
- fetcherCacheKey: x
252
- } = re(T(() => ({ ...i.config, cacheIdentifier: i.cacheIdentifier })), M), L = () => {
253
- x.value++;
254
- }, v = C(null), f = async (t, s, h) => {
255
- const o = s ? t[s] : JSON.stringify(t);
256
- if (!await h(o)) {
257
- H(t, s);
258
- return;
259
- }
260
- q(t, s);
261
- }, q = (t, s) => {
262
- y("copy:success", {
263
- entity: t,
264
- field: s,
265
- message: s && !["password", "key", "client_secret", "secret"].includes(s) ? e("credentials.copy.success", { val: t[s] }) : e("credentials.copy.success_brief")
266
- });
267
- }, H = (t, s) => {
268
- y("copy:error", {
269
- entity: t,
270
- field: s,
271
- message: e("credentials.error.copy")
272
- });
273
- }, V = (t) => ({
274
- label: e("credentials.actions.edit"),
275
- to: i.config.getEditRoute(t)
276
- }), w = C(void 0), A = C(!1), N = C(!1), $ = C(""), W = se(i.config, M.value), z = T(() => oe[i.config.plugin]), G = (t) => {
277
- w.value = t, A.value = !0;
278
- }, Q = () => {
279
- A.value = !1;
280
- }, X = async () => {
281
- var t, s, h;
282
- if ((t = w.value) != null && t.id) {
283
- N.value = !0;
284
- try {
285
- await P.delete(W(w.value.id)), N.value = !1, A.value = !1, x.value++, y("delete:success", w.value);
286
- } catch (o) {
287
- $.value = ((h = (s = o.response) == null ? void 0 : s.data) == null ? void 0 : h.message) || o.message || e("credentials.error.delete"), y("error", o);
288
- } finally {
289
- N.value = !1;
290
- }
291
- }
292
- };
293
- Z(J, (t) => {
294
- var s, h, o;
295
- if (t.status === de.Error) {
296
- v.value = {
297
- title: e("credentials.error.general")
298
- }, (o = (h = (s = t.error) == null ? void 0 : s.response) == null ? void 0 : h.data) != null && o.message && (v.value.message = t.error.response.data.message), y("error", t.error);
299
- return;
300
- }
301
- v.value = null;
302
- });
303
- const E = C({
304
- ctaPath: i.config.createRoute,
305
- ctaText: void 0,
306
- message: "",
307
- title: e("credentials.title")
308
- });
309
- return ee(async () => {
310
- await i.canCreate() && (E.value.title = e(`credentials.list.empty_state.${i.config.plugin}.title`), E.value.ctaText = e(`credentials.list.empty_state.${i.config.plugin}.cta`));
311
- }), (t, s) => {
312
- const h = D("KButton"), o = D("KCopy"), g = D("KDropdownItem"), m = D("KClipboardProvider");
313
- return b(), te("div", be, [
314
- c(r(ue), {
315
- "cache-identifier": l.cacheIdentifier,
316
- "disable-row-click": "",
317
- "disable-sorting": "",
318
- "empty-state-options": E.value,
319
- "enable-entity-actions": "",
320
- "error-message": v.value,
321
- fetcher: r(U),
322
- "fetcher-cache-key": r(x),
323
- "pagination-type": "offset",
324
- "preferences-storage-key": "kong-ui-entities-consumer-credentials-list",
325
- "table-headers": R.value,
326
- onSort: L
327
- }, {
328
- "toolbar-button": n(() => [
329
- (b(), k(ae, {
330
- disabled: !l.useActionOutside,
331
- to: "#kong-ui-app-page-header-action-button"
332
- }, [
333
- c(r(j), {
334
- "auth-function": () => l.canCreate()
335
- }, {
336
- default: n(() => [
337
- c(h, {
338
- appearance: "primary",
339
- "data-testid": "toolbar-add-credential",
340
- size: l.useActionOutside ? "medium" : "large",
341
- to: l.config.createRoute
342
- }, {
343
- default: n(() => [
344
- c(r(ne)),
345
- p(" " + u(r(e)(`credentials.list.toolbar_actions.${l.config.plugin}.new`)), 1)
346
- ]),
347
- _: 1
348
- }, 8, ["size", "to"])
349
- ]),
350
- _: 1
351
- }, 8, ["auth-function"])
352
- ], 8, ["disabled"]))
353
- ]),
354
- group: n(({ rowValue: a }) => [
355
- B("b", null, u(a ?? "-"), 1)
356
- ]),
357
- name: n(({ rowValue: a }) => [
358
- B("b", null, u(a ?? "-"), 1)
359
- ]),
360
- username: n(({ rowValue: a }) => [
361
- B("span", null, u(a ?? "-"), 1)
362
- ]),
363
- password: n(({ rowValue: a }) => [
364
- c(o, {
365
- format: "redacted",
366
- text: a,
367
- truncate: ""
368
- }, null, 8, ["text"])
369
- ]),
370
- key: n(({ rowValue: a }) => [
371
- c(o, {
372
- format: "redacted",
373
- text: a,
374
- truncate: ""
375
- }, null, 8, ["text"])
376
- ]),
377
- client_secret: n(({ rowValue: a }) => [
378
- c(o, {
379
- format: "redacted",
380
- text: a,
381
- truncate: ""
382
- }, null, 8, ["text"])
383
- ]),
384
- secret: n(({ rowValue: a }) => [
385
- c(o, {
386
- format: "redacted",
387
- text: a,
388
- truncate: ""
389
- }, null, 8, ["text"])
390
- ]),
391
- created_at: n(({ rowValue: a }) => [
392
- p(u(r(O)(a)), 1)
393
- ]),
394
- tags: n(({ rowValue: a }) => [
395
- c(r(he), { tags: a }, null, 8, ["tags"])
396
- ]),
397
- actions: n(({ row: a }) => [
398
- c(m, null, {
399
- default: n(({ copyToClipboard: d }) => [
400
- c(g, {
401
- "data-testid": "action-entity-copy-id",
402
- onClick: (_) => f(a, "id", d)
403
- }, {
404
- default: n(() => [
405
- p(u(r(e)("credentials.actions.copy_id")), 1)
406
- ]),
407
- _: 1
408
- }, 8, ["onClick"])
409
- ]),
410
- _: 2
411
- }, 1024),
412
- l.config.plugin === "basic-auth" ? (b(), k(m, { key: 0 }, {
413
- default: n(({ copyToClipboard: d }) => [
414
- c(g, {
415
- "data-testid": "action-entity-copy-credential",
416
- onClick: (_) => f(a, "password", d)
417
- }, {
418
- default: n(() => [
419
- p(u(r(e)("credentials.actions.copy_credential")), 1)
420
- ]),
421
- _: 1
422
- }, 8, ["onClick"])
423
- ]),
424
- _: 2
425
- }, 1024)) : I("", !0),
426
- ["key-auth", "key-auth-enc", "jwt"].includes(l.config.plugin) ? (b(), k(m, { key: 1 }, {
427
- default: n(({ copyToClipboard: d }) => [
428
- c(g, {
429
- "data-testid": "action-entity-copy-key",
430
- onClick: (_) => f(a, "key", d)
431
- }, {
432
- default: n(() => [
433
- p(u(r(e)("credentials.actions.copy_key")), 1)
434
- ]),
435
- _: 1
436
- }, 8, ["onClick"])
437
- ]),
438
- _: 2
439
- }, 1024)) : I("", !0),
440
- l.config.plugin === "oauth2" ? (b(), k(m, { key: 2 }, {
441
- default: n(({ copyToClipboard: d }) => [
442
- c(g, {
443
- "data-testid": "action-entity-copy-secret",
444
- onClick: (_) => f(a, "client_secret", d)
445
- }, {
446
- default: n(() => [
447
- p(u(r(e)("credentials.actions.copy_secret")), 1)
448
- ]),
449
- _: 1
450
- }, 8, ["onClick"])
451
- ]),
452
- _: 2
453
- }, 1024)) : I("", !0),
454
- l.config.plugin === "hmac-auth" ? (b(), k(m, { key: 3 }, {
455
- default: n(({ copyToClipboard: d }) => [
456
- c(g, {
457
- "data-testid": "action-entity-copy-secret",
458
- onClick: (_) => f(a, "secret", d)
459
- }, {
460
- default: n(() => [
461
- p(u(r(e)("credentials.actions.copy_secret")), 1)
462
- ]),
463
- _: 1
464
- }, 8, ["onClick"])
465
- ]),
466
- _: 2
467
- }, 1024)) : I("", !0),
468
- c(m, null, {
469
- default: n(({ copyToClipboard: d }) => [
470
- c(g, {
471
- "data-testid": "action-entity-copy-json",
472
- onClick: (_) => f(a, void 0, d)
473
- }, {
474
- default: n(() => [
475
- p(u(r(e)("credentials.actions.copy_json")), 1)
476
- ]),
477
- _: 1
478
- }, 8, ["onClick"])
479
- ]),
480
- _: 2
481
- }, 1024),
482
- c(r(j), {
483
- "auth-function": () => l.canEdit(a)
484
- }, {
485
- default: n(() => [
486
- c(g, {
487
- "data-testid": "action-entity-edit",
488
- "has-divider": "",
489
- item: V(a.id)
490
- }, null, 8, ["item"])
491
- ]),
492
- _: 2
493
- }, 1032, ["auth-function"]),
494
- c(r(j), {
495
- "auth-function": () => l.canDelete(a)
496
- }, {
497
- default: n(() => [
498
- c(g, {
499
- danger: "",
500
- "data-testid": "action-entity-delete",
501
- "has-divider": "",
502
- onClick: (d) => G(a)
503
- }, {
504
- default: n(() => [
505
- p(u(r(e)("credentials.actions.delete")), 1)
506
- ]),
507
- _: 1
508
- }, 8, ["onClick"])
509
- ]),
510
- _: 2
511
- }, 1032, ["auth-function"])
512
- ]),
513
- _: 1
514
- }, 8, ["cache-identifier", "empty-state-options", "error-message", "fetcher", "fetcher-cache-key", "table-headers"]),
515
- c(r(pe), {
516
- "action-pending": N.value,
517
- description: r(e)("credentials.delete.description"),
518
- "entity-type": z.value,
519
- error: $.value,
520
- title: r(e)(`credentials.delete.${l.config.plugin}.title`),
521
- visible: A.value,
522
- onCancel: Q,
523
- onProceed: X
524
- }, null, 8, ["action-pending", "description", "entity-type", "error", "title", "visible"])
525
- ]);
526
- };
527
- }
528
- }), ke = (l, K) => {
529
- const y = l.__vccOpts || l;
530
- for (const [i, e] of K)
531
- y[i] = e;
532
- return y;
533
- }, Te = /* @__PURE__ */ ke(_e, [["__scopeId", "data-v-7216927c"]]);
534
- export {
535
- Te as ConsumerCredentialList
536
- };
@@ -1 +0,0 @@
1
- (function(d,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("@kong/icons"),require("@kong-ui-public/i18n"),require("@kong-ui-public/entities-shared")):typeof define=="function"&&define.amd?define(["exports","vue","@kong/icons","@kong-ui-public/i18n","@kong-ui-public/entities-shared"],e):(d=typeof globalThis<"u"?globalThis:d||self,e(d["kong-ui-public-entities-consumer-credentials"]={},d.Vue,d.KongIcons,d["kong-ui-public-i18n"],d["kong-ui-public-entities-shared"]))})(this,function(d,e,A,x,o){"use strict";const B={credentials:{title:"Consumer Credentials",list:{toolbar_actions:{acls:{new:"New ACL Credential"},"basic-auth":{new:"New Basic Auth Credential"},"key-auth":{new:"New Key Auth Credential"},"key-auth-enc":{new:"New Key Auth Encrypted Credential"},oauth2:{new:"New OAuth 2.0 Credential"},"hmac-auth":{new:"New HMAC Credential"},jwt:{new:"New JWT Credential"}},table_headers:{acls:{group:"Group",created_at:"Created At",tags:"Tags"},"basic-auth":{password:"Credential",username:"Username",created_at:"Created at",tags:"Tags"},"key-auth":{key:"Key",created_at:"Created at",tags:"Tags"},"key-auth-enc":{key:"Key",created_at:"Created at",tags:"Tags"},oauth2:{name:"Name",client_id:"Client ID",client_secret:"Client secret",created_at:"Created at",tags:"Tags"},"hmac-auth":{username:"Username",secret:"Secret",created_at:"Created at",tags:"Tags"},jwt:{key:"Key",algorithm:"Algorithm",created_at:"Created at",tags:"Tags"}},empty_state:{acls:{title:"Configure a New ACL Credential",cta:"New ACL Credential"},"basic-auth":{title:"Configure a New Basic Auth Credential",cta:"New Basic Auth Credential"},"key-auth":{title:"Configure a New Key Auth Credential",cta:"New Key Auth Credential"},"key-auth-enc":{title:"Configure a New Key Auth Encrypted Credential",cta:"New Key Auth Encrypted Credential"},oauth2:{title:"Configure a New OAuth 2.0 Credential",cta:"New OAuth 2.0 Credential"},"hmac-auth":{title:"Configure a New HMAC Credential",cta:"New HMAC Credential"},jwt:{title:"Configure a New JWT Credential",cta:"New JWT Credential"}}},actions:{copy_id:"Copy ID",copy_credential:"Copy Credential",copy_key:"Copy Key",copy_secret:"Copy Secret",copy_json:"Copy JSON",edit:"Edit",delete:"Delete"},delete:{acls:{title:"Delete an ACL Credential"},"basic-auth":{title:"Delete a Basic Auth Credential"},"key-auth":{title:"Delete a Key Auth Credential"},"key-auth-enc":{title:"Delete a Key Auth Encrypted Credential"},oauth2:{title:"Delete an OAuth 2.0 Credential"},"hmac-auth":{title:"Delete an HMAC Credential"},jwt:{title:"Delete a JWT Credential"},description:"This action cannot be reversed."},error:{general:"Credentials could not be retrieved",delete:"The credential could not be deleted at this time.",copy:"Failed to copy to clipboard"},copy:{success:"Copied {val} to clipboard",success_brief:"Successfully copied to clipboard"}}};function I(){const i=x.createI18n("en-us",B);return{i18n:i,i18nT:x.i18nTComponent(i)}}const K={useI18n:I},E={list:{konnect:"/v2/control-planes/{controlPlaneId}/core-entities/consumers/{consumerId}/{plugin}",kongManager:"/{workspace}/consumers/{consumerId}/{plugin}"}},j={class:"kong-ui-entities-consumer-credentials-list"},S=((i,k)=>{const p=i.__vccOpts||i;for(const[r,t]of k)p[r]=t;return p})(e.defineComponent({__name:"ConsumerCredentialList",props:{config:{type:Object,required:!0,validator:i=>!(!i||!["konnect","kongManager"].includes(i==null?void 0:i.app)||!i.createRoute||!i.getEditRoute)},cacheIdentifier:{type:String,default:""},canCreate:{type:Function,required:!1,default:async()=>!0},canDelete:{type:Function,required:!1,default:async()=>!0},canEdit:{type:Function,required:!1,default:async()=>!0},useActionOutside:{type:Boolean,default:!1}},emits:["error","copy:success","copy:error","delete:success"],setup(i,{emit:k}){var D;const p=k,r=i,{i18n:{t,formatUnixTimeStamp:M}}=K.useI18n(),{axiosInstance:$}=o.useAxios((D=r.config)==null?void 0:D.axiosRequestConfig),O={acls:{group:{label:t("credentials.list.table_headers.acls.group")},created_at:{label:t("credentials.list.table_headers.acls.created_at")},tags:{label:t("credentials.list.table_headers.acls.tags")}},"basic-auth":{username:{label:t("credentials.list.table_headers.basic-auth.username")},created_at:{label:t("credentials.list.table_headers.basic-auth.created_at")},tags:{label:t("credentials.list.table_headers.basic-auth.tags")}},"key-auth":{key:{label:t("credentials.list.table_headers.key-auth.key")},created_at:{label:t("credentials.list.table_headers.key-auth.created_at")},tags:{label:t("credentials.list.table_headers.key-auth.tags")}},"key-auth-enc":{key:{label:t("credentials.list.table_headers.key-auth-enc.key")},created_at:{label:t("credentials.list.table_headers.key-auth-enc.created_at")},tags:{label:t("credentials.list.table_headers.key-auth-enc.tags")}},oauth2:{name:{label:t("credentials.list.table_headers.oauth2.name")},client_id:{label:t("credentials.list.table_headers.oauth2.client_id")},client_secret:{label:t("credentials.list.table_headers.oauth2.client_secret")},created_at:{label:t("credentials.list.table_headers.oauth2.created_at")},tags:{label:t("credentials.list.table_headers.oauth2.tags")}},"hmac-auth":{username:{label:t("credentials.list.table_headers.hmac-auth.username")},secret:{label:t("credentials.list.table_headers.hmac-auth.secret")},created_at:{label:t("credentials.list.table_headers.hmac-auth.created_at")},tags:{label:t("credentials.list.table_headers.hmac-auth.tags")}},jwt:{key:{label:t("credentials.list.table_headers.jwt.key")},algorithm:{label:t("credentials.list.table_headers.jwt.algorithm")},created_at:{label:t("credentials.list.table_headers.jwt.created_at")},tags:{label:t("credentials.list.table_headers.jwt.tags")}}},P=e.computed(()=>O[r.config.plugin]),V=e.computed(()=>{let a=`${r.config.apiBaseUrl}${E.list[r.config.app]}`;return r.config.app==="konnect"?a=a.replace(/{controlPlaneId}/gi,r.config.controlPlaneId||"").replace(/{consumerId}/gi,r.config.consumerId||"").replace(/{plugin}/gi,r.config.plugin||""):r.config.app==="kongManager"&&(a=a.replace(/\/{workspace}/gi,r.config.workspace?`/${r.config.workspace}`:"").replace(/{consumerId}/gi,r.config.consumerId||"").replace(/{plugin}/gi,r.config.plugin||"")),a}),{fetcher:q,fetcherState:F,fetcherCacheKey:w}=o.useFetcher(e.computed(()=>({...r.config,cacheIdentifier:r.cacheIdentifier})),V),L=()=>{w.value++},C=e.ref(null),y=async(a,c,u)=>{const l=c?a[c]:JSON.stringify(a);if(!await u(l)){U(a,c);return}R(a,c)},R=(a,c)=>{p("copy:success",{entity:a,field:c,message:c&&!["password","key","client_secret","secret"].includes(c)?t("credentials.copy.success",{val:a[c]}):t("credentials.copy.success_brief")})},U=(a,c)=>{p("copy:error",{entity:a,field:c,message:t("credentials.error.copy")})},W=a=>({label:t("credentials.actions.edit"),to:r.config.getEditRoute(a)}),m=e.ref(void 0),b=e.ref(!1),_=e.ref(!1),T=e.ref(""),J=o.useDeleteUrlBuilder(r.config,V.value),H=e.computed(()=>o.EntityTypes[r.config.plugin]),z=a=>{m.value=a,b.value=!0},G=()=>{b.value=!1},Q=async()=>{var a,c,u;if((a=m.value)!=null&&a.id){_.value=!0;try{await $.delete(J(m.value.id)),_.value=!1,b.value=!1,w.value++,p("delete:success",m.value)}catch(l){T.value=((u=(c=l.response)==null?void 0:c.data)==null?void 0:u.message)||l.message||t("credentials.error.delete"),p("error",l)}finally{_.value=!1}}};e.watch(F,a=>{var c,u,l;if(a.status===o.FetcherStatus.Error){C.value={title:t("credentials.error.general")},(l=(u=(c=a.error)==null?void 0:c.response)==null?void 0:u.data)!=null&&l.message&&(C.value.message=a.error.response.data.message),p("error",a.error);return}C.value=null});const N=e.ref({ctaPath:r.config.createRoute,ctaText:void 0,message:"",title:t("credentials.title")});return e.onBeforeMount(async()=>{await r.canCreate()&&(N.value.title=t(`credentials.list.empty_state.${r.config.plugin}.title`),N.value.ctaText=t(`credentials.list.empty_state.${r.config.plugin}.cta`))}),(a,c)=>{const u=e.resolveComponent("KButton"),l=e.resolveComponent("KCopy"),h=e.resolveComponent("KDropdownItem"),g=e.resolveComponent("KClipboardProvider");return e.openBlock(),e.createElementBlock("div",j,[e.createVNode(e.unref(o.EntityBaseTable),{"cache-identifier":i.cacheIdentifier,"disable-row-click":"","disable-sorting":"","empty-state-options":N.value,"enable-entity-actions":"","error-message":C.value,fetcher:e.unref(q),"fetcher-cache-key":e.unref(w),"pagination-type":"offset","preferences-storage-key":"kong-ui-entities-consumer-credentials-list","table-headers":P.value,onSort:L},{"toolbar-button":e.withCtx(()=>[(e.openBlock(),e.createBlock(e.Teleport,{disabled:!i.useActionOutside,to:"#kong-ui-app-page-header-action-button"},[e.createVNode(e.unref(o.PermissionsWrapper),{"auth-function":()=>i.canCreate()},{default:e.withCtx(()=>[e.createVNode(u,{appearance:"primary","data-testid":"toolbar-add-credential",size:i.useActionOutside?"medium":"large",to:i.config.createRoute},{default:e.withCtx(()=>[e.createVNode(e.unref(A.AddIcon)),e.createTextVNode(" "+e.toDisplayString(e.unref(t)(`credentials.list.toolbar_actions.${i.config.plugin}.new`)),1)]),_:1},8,["size","to"])]),_:1},8,["auth-function"])],8,["disabled"]))]),group:e.withCtx(({rowValue:n})=>[e.createElementVNode("b",null,e.toDisplayString(n??"-"),1)]),name:e.withCtx(({rowValue:n})=>[e.createElementVNode("b",null,e.toDisplayString(n??"-"),1)]),username:e.withCtx(({rowValue:n})=>[e.createElementVNode("span",null,e.toDisplayString(n??"-"),1)]),password:e.withCtx(({rowValue:n})=>[e.createVNode(l,{format:"redacted",text:n,truncate:""},null,8,["text"])]),key:e.withCtx(({rowValue:n})=>[e.createVNode(l,{format:"redacted",text:n,truncate:""},null,8,["text"])]),client_secret:e.withCtx(({rowValue:n})=>[e.createVNode(l,{format:"redacted",text:n,truncate:""},null,8,["text"])]),secret:e.withCtx(({rowValue:n})=>[e.createVNode(l,{format:"redacted",text:n,truncate:""},null,8,["text"])]),created_at:e.withCtx(({rowValue:n})=>[e.createTextVNode(e.toDisplayString(e.unref(M)(n)),1)]),tags:e.withCtx(({rowValue:n})=>[e.createVNode(e.unref(o.TableTags),{tags:n},null,8,["tags"])]),actions:e.withCtx(({row:n})=>[e.createVNode(g,null,{default:e.withCtx(({copyToClipboard:s})=>[e.createVNode(h,{"data-testid":"action-entity-copy-id",onClick:f=>y(n,"id",s)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t)("credentials.actions.copy_id")),1)]),_:1},8,["onClick"])]),_:2},1024),i.config.plugin==="basic-auth"?(e.openBlock(),e.createBlock(g,{key:0},{default:e.withCtx(({copyToClipboard:s})=>[e.createVNode(h,{"data-testid":"action-entity-copy-credential",onClick:f=>y(n,"password",s)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t)("credentials.actions.copy_credential")),1)]),_:1},8,["onClick"])]),_:2},1024)):e.createCommentVNode("",!0),["key-auth","key-auth-enc","jwt"].includes(i.config.plugin)?(e.openBlock(),e.createBlock(g,{key:1},{default:e.withCtx(({copyToClipboard:s})=>[e.createVNode(h,{"data-testid":"action-entity-copy-key",onClick:f=>y(n,"key",s)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t)("credentials.actions.copy_key")),1)]),_:1},8,["onClick"])]),_:2},1024)):e.createCommentVNode("",!0),i.config.plugin==="oauth2"?(e.openBlock(),e.createBlock(g,{key:2},{default:e.withCtx(({copyToClipboard:s})=>[e.createVNode(h,{"data-testid":"action-entity-copy-secret",onClick:f=>y(n,"client_secret",s)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t)("credentials.actions.copy_secret")),1)]),_:1},8,["onClick"])]),_:2},1024)):e.createCommentVNode("",!0),i.config.plugin==="hmac-auth"?(e.openBlock(),e.createBlock(g,{key:3},{default:e.withCtx(({copyToClipboard:s})=>[e.createVNode(h,{"data-testid":"action-entity-copy-secret",onClick:f=>y(n,"secret",s)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t)("credentials.actions.copy_secret")),1)]),_:1},8,["onClick"])]),_:2},1024)):e.createCommentVNode("",!0),e.createVNode(g,null,{default:e.withCtx(({copyToClipboard:s})=>[e.createVNode(h,{"data-testid":"action-entity-copy-json",onClick:f=>y(n,void 0,s)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t)("credentials.actions.copy_json")),1)]),_:1},8,["onClick"])]),_:2},1024),e.createVNode(e.unref(o.PermissionsWrapper),{"auth-function":()=>i.canEdit(n)},{default:e.withCtx(()=>[e.createVNode(h,{"data-testid":"action-entity-edit","has-divider":"",item:W(n.id)},null,8,["item"])]),_:2},1032,["auth-function"]),e.createVNode(e.unref(o.PermissionsWrapper),{"auth-function":()=>i.canDelete(n)},{default:e.withCtx(()=>[e.createVNode(h,{danger:"","data-testid":"action-entity-delete","has-divider":"",onClick:s=>z(n)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t)("credentials.actions.delete")),1)]),_:1},8,["onClick"])]),_:2},1032,["auth-function"])]),_:1},8,["cache-identifier","empty-state-options","error-message","fetcher","fetcher-cache-key","table-headers"]),e.createVNode(e.unref(o.EntityDeleteModal),{"action-pending":_.value,description:e.unref(t)("credentials.delete.description"),"entity-type":H.value,error:T.value,title:e.unref(t)(`credentials.delete.${i.config.plugin}.title`),visible:b.value,onCancel:G,onProceed:Q},null,8,["action-pending","description","entity-type","error","title","visible"])])}}}),[["__scopeId","data-v-7216927c"]]);d.ConsumerCredentialList=S,Object.defineProperty(d,Symbol.toStringTag,{value:"Module"})});
package/dist/style.css DELETED
@@ -1 +0,0 @@
1
- .config-card-fieldset[data-v-dc1e39a1]{border:solid 1px #e0e4ea;border-radius:4px;margin-bottom:8px;margin-top:4px}.config-card-fieldset-title[data-v-dc1e39a1]{font-size:14px;padding:0 8px;width:auto}fieldset.config-card-fieldset .config-card-details-row{width:unset}.config-card-json-item .config-card-details-row,fieldset.config-card-fieldset .config-card-details-row{margin:0 16px}.config-card-json-item .config-card-details-row:last-of-type,fieldset.config-card-fieldset .config-card-details-row:last-of-type{border-bottom:none}[data-v-2feb8c2e] .k-button.navigation-button{font-size:14px;font-weight:400}.config-card-details-row[data-v-40ffb9f1]{align-items:center;border-bottom:var(--v0b2cd434);box-sizing:border-box;display:var(--bb02ad32);padding:16px 16px 16px 0;width:100%}.config-card-details-row .config-card-details-label[data-v-40ffb9f1]{box-sizing:border-box;padding-right:16px;width:var(--d92de3ce)}.config-card-details-row .config-card-details-label label[data-v-40ffb9f1]{color:#3a3f51;display:inline-flex;max-width:100%}.config-card-details-row .config-card-details-label label .label-content[data-v-40ffb9f1]{line-height:initial;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.config-card-details-row .config-card-details-label label .k-popover[data-v-40ffb9f1]{min-width:0}.config-card-details-row .config-card-details-value[data-v-40ffb9f1]{box-sizing:border-box;width:var(--d9295818)}.config-card-details-row .config-card-details-value .truncated[data-v-40ffb9f1]{display:inline-block;line-height:initial;max-width:20ch;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.config-card-details-row .config-card-details-value span.attrs-data-text[data-v-40ffb9f1]{overflow-wrap:anywhere}.config-card-details-row .config-card-details-value .copy-uuid-array[data-v-40ffb9f1] .k-copy:not(:last-of-type){margin-bottom:8px}.config-card-details-row .config-card-details-value .method-badge-array[data-v-40ffb9f1]{display:flex;flex-wrap:wrap;row-gap:10px}.config-card-details-row .config-badge[data-v-40ffb9f1]{margin-right:4px}.config-card-details-row[data-v-40ffb9f1] .k-label{margin-bottom:0}.config-card-details-row[data-v-40ffb9f1] .k-label .kong-icon-infoFilled{display:flex}.config-card-details-row[data-v-40ffb9f1] .config-card-details-row{width:auto}.json-content.k-code-block{border-top-left-radius:0;border-top-right-radius:0}.json-endpoint{align-items:baseline;background-color:#000933;border-bottom:1px solid rgba(255,255,255,.2);border-top-left-radius:8px;border-top-right-radius:8px;display:flex;padding:8px 0 8px 12px}.json-endpoint .k-code-block{flex:auto;z-index:2}.json-endpoint .k-code-block .code-block-content{padding-bottom:0;padding-top:0}.json-endpoint .k-code-block .code-block-secondary-actions{margin-top:0!important}.json-endpoint code{direction:rtl;max-width:var(--v58418ff6);overflow:hidden!important;text-align:left;text-overflow:ellipsis;white-space:nowrap}.config-card-prop-section-title[data-v-a7689049]{color:#000933;font-size:16px;font-weight:600;margin-bottom:16px;margin-top:48px}.kong-ui-entity-base-config-card .config-card-actions[data-v-f2b42324]{align-items:center;display:flex}.kong-ui-entity-base-config-card .config-card-actions .config-format-select-label[data-v-f2b42324]{margin-bottom:0;margin-right:8px}.kong-ui-entity-base-config-card .config-card-prop-section-title[data-v-f2b42324]{color:#000933;font-size:16px;font-weight:600;margin-bottom:16px;margin-top:48px}.kong-ui-entity-base-config-card[data-v-f2b42324] .config-card-details-row:last-of-type{border-bottom:none}.kong-ui-entity-base-config-card .book-icon[data-v-f2b42324]{margin-left:8px;padding:0}.deck-config .k-select[data-v-04c956bc]{margin-bottom:16px}.deck-config .k-code-block[data-v-04c956bc]{margin-top:12px}.kong-ui-entity-base-form[data-v-7cbcaad8]{box-sizing:border-box;max-width:1536px;width:100%}.kong-ui-entity-base-form[data-v-7cbcaad8] .k-slideout-title{color:#000933!important;font-size:24px!important;font-weight:700!important;line-height:32px!important;margin-bottom:16px!important}.kong-ui-entity-base-form[data-v-7cbcaad8] .k-card.content-card{padding:0 16px!important}.kong-ui-entity-base-form[data-v-7cbcaad8] .tab-item>div.tab-link.has-panels{color:#6c7489!important;font-size:14px!important;font-weight:700!important;line-height:24px!important}.kong-ui-entity-base-form[data-v-7cbcaad8] .tab-item.active>div.tab-link.has-panels{color:#000933!important;font-weight:600!important}.kong-ui-entity-base-form[data-v-7cbcaad8] .slideout-content{overflow-y:unset!important}.form-actions[data-v-7cbcaad8]{align-items:center;display:flex;justify-content:flex-end;margin-top:24px}.form-actions[data-v-7cbcaad8] .k-button:last-of-type,.form-actions[data-v-7cbcaad8] .k-button:nth-last-of-type(2){margin-inline-start:16px}.form-actions-reverted[data-v-7cbcaad8]{direction:rtl}.content-wrapper[data-v-a3a65cac] .k-tooltip{word-break:break-all}.kong-ui-entity-base-table .toolbar-container[data-v-09e101d4]{align-items:center;display:flex;width:100%}.kong-ui-entity-base-table .toolbar-button-container[data-v-09e101d4]{margin-left:auto}.kong-ui-entity-base-table .hidden[data-v-09e101d4]{display:none}.kong-ui-entity-delete-modal .message[data-v-4361d622],.kong-ui-entity-delete-modal .description[data-v-4361d622]{line-height:24px;margin:0}.kong-ui-entity-delete-modal .message strong[data-v-4361d622]{font-weight:600}.kong-ui-entity-delete-modal .description[data-v-4361d622]{margin-top:32px}.kong-ui-entity-delete-error[data-v-4361d622]{margin-bottom:16px}.kong-ui-entity-filter-input[data-v-084f7978]{width:100%}.kong-ui-entity-filter-clear[data-v-084f7978]{cursor:pointer}.kong-ui-entity-filter[data-v-084f7978]{display:flex;position:relative}.kong-ui-entity-filter[data-v-084f7978] .menu-content{flex-direction:column}.kong-ui-entity-filter[data-v-084f7978] .k-menu-item-divider hr{margin:12px 0}.kong-ui-entity-filter-backdrop[data-v-084f7978]{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1050}.kong-ui-entity-filter-menu[data-v-084f7978]{background-color:#fff;border:1px solid #afb7c5;border-radius:4px;box-shadow:0 4px 20px #e0e4ea;left:0;margin-top:16px;padding:8px 0 12px;position:absolute;top:100%;width:300px;z-index:1060}.kong-ui-entity-filter-menu-item[data-v-084f7978]{border-bottom:1px solid #e0e4ea;color:#6c7489;font-size:12px;font-weight:400;line-height:16px;list-style:none;margin:0 20px;padding:16px 0;position:relative;white-space:nowrap}.menu-item-title[data-v-084f7978]{align-items:center;cursor:pointer;display:flex;line-height:24px}.menu-item-title.expanded[data-v-084f7978]{color:#232633}.menu-item-expand-icon[data-v-084f7978]{margin-left:auto}.menu-item-expand-icon.expanded[data-v-084f7978]{transform:rotate(180deg)}.menu-item-indicator[data-v-084f7978]{background-color:#0044f4;border-radius:50%;height:4px;margin-left:4px;width:4px}.menu-item-body[data-v-084f7978]{align-items:center;display:flex;justify-content:space-between;margin-top:16px}.menu-item-body[data-v-084f7978] .input{padding-bottom:4px!important;padding-top:4px!important}.menu-item-body[data-v-084f7978] .k-input{width:100%}.menu-item-body[data-v-084f7978] .k-select-input .input{font-size:12px}.menu-item-body[data-v-084f7978] .k-select-input .input::placeholder{color:#00000073!important;font-size:12px}.menu-item-label[data-v-084f7978]{margin-bottom:0;margin-right:12px}.menu-item-buttons[data-v-084f7978]{display:flex;justify-content:space-between;margin:10px 0 6px}.filter-clear-button-container[data-v-084f7978]{padding:12px 20px 0}fieldset[data-v-b1f74200]{margin:0;min-width:0;padding:0}.kong-ui-entity-form-section[data-v-b1f74200]{border:0}.kong-ui-entity-form-section .form-section-wrapper[data-v-b1f74200]{column-gap:16px;display:flex;flex-direction:column;padding-bottom:64px;row-gap:12px;width:100%}@media (min-width: 1024px){.kong-ui-entity-form-section .form-section-wrapper[data-v-b1f74200]{flex-direction:row}}.kong-ui-entity-form-section .form-section-wrapper .form-section-info[data-v-b1f74200]{flex:1}@media (min-width: 1024px){.kong-ui-entity-form-section .form-section-wrapper .form-section-info[data-v-b1f74200]{max-width:350px}.kong-ui-entity-form-section .form-section-wrapper .form-section-info.sticky[data-v-b1f74200]{height:fit-content;margin-bottom:16px;position:sticky;top:16px}}.kong-ui-entity-form-section .form-section-wrapper .form-section-info .form-section-title[data-v-b1f74200]{color:#000933;font-size:16px;font-weight:700;line-height:20px;margin-bottom:8px;margin-top:0}.kong-ui-entity-form-section .form-section-wrapper .form-section-info .form-section-description[data-v-b1f74200],.kong-ui-entity-form-section .form-section-wrapper .form-section-info .form-section-description p[data-v-b1f74200],.kong-ui-entity-form-section .form-section-wrapper .form-section-info .form-section-description[data-v-b1f74200] p{color:#000933;font-size:14px;font-weight:400;line-height:20px;margin:0}.kong-ui-entity-form-section .form-section-wrapper .form-section-info .form-section-footer[data-v-b1f74200]{margin-top:32px}.kong-ui-entity-form-section .form-section-wrapper .form-section-content[data-v-b1f74200]{flex:1}.kong-ui-entity-form-section .form-section-wrapper .form-section-content[data-v-b1f74200]>*:not(:first-child){margin-top:24px}.kong-ui-entity-form-section.has-divider .form-section-wrapper[data-v-b1f74200]{border-bottom:1px solid #e0e4ea}.ff-form-section .header[data-v-cb6d2e95]{align-items:flex-start;display:flex;gap:8px}.ff-form-section .step[data-v-cb6d2e95]{align-items:center;background:#fff;border:1px solid #afb7c5;border-radius:100px;display:flex;flex:0 0 auto;height:32px;justify-content:center;padding:4px;width:32px}.ff-form-section .header-content[data-v-cb6d2e95]{align-items:flex-start;display:flex;flex:1 1 auto;flex-direction:column;gap:8px;padding-top:4px}.ff-form-section .header-title[data-v-cb6d2e95]{color:#000933;font-size:18px;font-weight:700;line-height:24px;margin:0}.ff-form-section .header-description[data-v-cb6d2e95]{color:#52596e;font-size:14px;line-height:20px;margin:0}.ff-form-section .header-extra[data-v-cb6d2e95]{align-items:center;display:flex;flex:0 0 auto;gap:8px;justify-content:flex-end}.ff-form-section .content[data-v-cb6d2e95]{background:#f9fafb;border:1px solid #e0e4ea;border-radius:6px;display:flex;flex-direction:column;gap:20px;margin-left:16px;margin-top:20px;padding:20px 24px}.kong-ui-public-entity-link[data-v-96efdfa5]{align-items:center;display:flex}.kong-ui-public-entity-link .deleted-entity[data-v-96efdfa5]{font-style:italic}.kong-ui-public-entity-link .entity-link[data-v-96efdfa5]{display:flex;flex:1}.kong-ui-public-entity-link .entity-link[data-v-96efdfa5] .external-link-icon{color:#0044f4;margin-left:4px;padding:2px}.kong-ui-public-entity-link .entity-link-label[data-v-96efdfa5]{display:inline-block;font-weight:400;max-width:90%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.kong-ui-public-entity-link .copy-uuid-tooltip[data-v-96efdfa5]{align-items:center;cursor:pointer;display:flex}.kong-ui-public-entity-link .copy-uuid-tooltip .entity-link-copy-id[data-v-96efdfa5]{margin-left:2px}.kong-ui-public-entity-empty-state[data-v-6d4a0f89]{align-items:center;background-color:#fff;box-sizing:border-box;display:flex;flex-direction:column;font-family:Inter,Roboto,Helvetica,sans-serif;gap:24px;padding:64px 0;width:100%}@media (min-width: 640px){.kong-ui-public-entity-empty-state[data-v-6d4a0f89]{padding:64px 96px}}.kong-ui-public-entity-empty-state .empty-state-image[data-v-6d4a0f89]{margin-bottom:8px}.kong-ui-public-entity-empty-state .entity-empty-state-content[data-v-6d4a0f89]{align-items:center;display:flex;flex-direction:column;gap:8px;text-align:center;width:100%}.kong-ui-public-entity-empty-state .entity-empty-state-content .entity-empty-state-title h1[data-v-6d4a0f89]{align-items:center;color:#000933;display:flex;font-size:24px;font-weight:700;gap:8px;line-height:32px;margin:0}.kong-ui-public-entity-empty-state .entity-empty-state-content .entity-empty-state-title h1.secondary[data-v-6d4a0f89]{font-size:18px}.kong-ui-public-entity-empty-state .entity-empty-state-description[data-v-6d4a0f89],.kong-ui-public-entity-empty-state .entity-empty-state-pricing[data-v-6d4a0f89]{color:#52596e;font-size:14px;font-weight:400;line-height:20px;max-width:640px}.kong-ui-public-entity-empty-state .entity-empty-state-description p[data-v-6d4a0f89],.kong-ui-public-entity-empty-state .entity-empty-state-pricing p[data-v-6d4a0f89]{margin:0}.kong-ui-public-entity-empty-state .entity-empty-state-pricing[data-v-6d4a0f89]{margin-top:16px}.kong-ui-public-entity-empty-state .entity-empty-state-message[data-v-6d4a0f89]{color:#52596e}.kong-ui-public-entity-empty-state .entity-empty-state-action[data-v-6d4a0f89]{align-items:center;display:flex;gap:12px}.kong-ui-public-entity-empty-state .entity-empty-state-card-container[data-v-6d4a0f89]{display:flex;flex-wrap:wrap;gap:16px;justify-content:space-around;margin-top:8px;width:312px}@media (min-width: 640px){.kong-ui-public-entity-empty-state .entity-empty-state-card-container[data-v-6d4a0f89]{width:640px}}.kong-ui-public-entity-empty-state .entity-empty-state-card-container .entity-empty-state-card[data-v-6d4a0f89]{background-color:#f9fafb;border:1px solid #e0e4ea;border-radius:6px;color:#afb7c5;gap:8px;height:160px;padding:20px;width:312px}.kong-ui-public-entity-empty-state .entity-empty-state-card-container .entity-empty-state-card .feature-icon[data-v-6d4a0f89]{color:#3a3f51;display:flex;margin-bottom:12px}.kong-ui-public-entity-empty-state .entity-empty-state-card-container .entity-empty-state-card .feature-icon[data-v-6d4a0f89] .kui-icon{height:20px!important;width:20px!important}.kong-ui-public-entity-empty-state .entity-empty-state-card-container .entity-empty-state-card[data-v-6d4a0f89] .card-title{font-size:14px;font-weight:600}.kong-ui-public-entity-empty-state .entity-empty-state-card-container .entity-empty-state-card[data-v-6d4a0f89] .card-content{-webkit-box-orient:vertical;color:#6c7489;display:-webkit-box;-webkit-line-clamp:3;line-clamp:3;overflow:hidden}.kong-ui-public-entity-empty-state .entity-empty-state-bottom-container[data-v-6d4a0f89]{border-top:1px solid #e0e4ea;display:flex;flex-direction:column;gap:16px;padding-top:48px;width:100%}@media (min-width: 640px){.kong-ui-public-entity-empty-state .entity-empty-state-bottom-container[data-v-6d4a0f89]{width:640px}}.kong-ui-entities-consumer-credentials-list[data-v-7216927c]{width:100%}
@@ -1,92 +0,0 @@
1
- import type { PropType } from 'vue';
2
- import type { AxiosError } from 'axios';
3
- import type { KongManagerConsumerCredentialListConfig, KonnectConsumerCredentialListConfig, EntityRow, CopyEventPayload } from '../types';
4
- import '@kong-ui-public/entities-shared/dist/style.css';
5
- declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
6
- /** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
7
- config: {
8
- type: PropType<KonnectConsumerCredentialListConfig | KongManagerConsumerCredentialListConfig>;
9
- required: true;
10
- validator: (config: KonnectConsumerCredentialListConfig | KongManagerConsumerCredentialListConfig) => boolean;
11
- };
12
- cacheIdentifier: {
13
- type: StringConstructor;
14
- default: string;
15
- };
16
- /** A synchronous or asynchronous function, that returns a boolean, that evaluates if the user can create a new entity */
17
- canCreate: {
18
- type: PropType<() => boolean | Promise<boolean>>;
19
- required: false;
20
- default: () => Promise<boolean>;
21
- };
22
- /** A synchronous or asynchronous function, that returns a boolean, that evaluates if the user can delete a given entity */
23
- canDelete: {
24
- type: PropType<(row: EntityRow) => boolean | Promise<boolean>>;
25
- required: false;
26
- default: () => Promise<boolean>;
27
- };
28
- /** A synchronous or asynchronous function, that returns a boolean, that evaluates if the user can edit a given entity */
29
- canEdit: {
30
- type: PropType<(row: EntityRow) => boolean | Promise<boolean>>;
31
- required: false;
32
- default: () => Promise<boolean>;
33
- };
34
- /** default to false, setting to true will teleport the toolbar button to the destination in the consuming app */
35
- useActionOutside: {
36
- type: BooleanConstructor;
37
- default: boolean;
38
- };
39
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
40
- error: (error: AxiosError<unknown, any>) => any;
41
- "copy:success": (payload: CopyEventPayload) => any;
42
- "copy:error": (payload: CopyEventPayload) => any;
43
- "delete:success": (credential: EntityRow) => any;
44
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
45
- /** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
46
- config: {
47
- type: PropType<KonnectConsumerCredentialListConfig | KongManagerConsumerCredentialListConfig>;
48
- required: true;
49
- validator: (config: KonnectConsumerCredentialListConfig | KongManagerConsumerCredentialListConfig) => boolean;
50
- };
51
- cacheIdentifier: {
52
- type: StringConstructor;
53
- default: string;
54
- };
55
- /** A synchronous or asynchronous function, that returns a boolean, that evaluates if the user can create a new entity */
56
- canCreate: {
57
- type: PropType<() => boolean | Promise<boolean>>;
58
- required: false;
59
- default: () => Promise<boolean>;
60
- };
61
- /** A synchronous or asynchronous function, that returns a boolean, that evaluates if the user can delete a given entity */
62
- canDelete: {
63
- type: PropType<(row: EntityRow) => boolean | Promise<boolean>>;
64
- required: false;
65
- default: () => Promise<boolean>;
66
- };
67
- /** A synchronous or asynchronous function, that returns a boolean, that evaluates if the user can edit a given entity */
68
- canEdit: {
69
- type: PropType<(row: EntityRow) => boolean | Promise<boolean>>;
70
- required: false;
71
- default: () => Promise<boolean>;
72
- };
73
- /** default to false, setting to true will teleport the toolbar button to the destination in the consuming app */
74
- useActionOutside: {
75
- type: BooleanConstructor;
76
- default: boolean;
77
- };
78
- }>> & Readonly<{
79
- onError?: ((error: AxiosError<unknown, any>) => any) | undefined;
80
- "onCopy:success"?: ((payload: CopyEventPayload) => any) | undefined;
81
- "onCopy:error"?: ((payload: CopyEventPayload) => any) | undefined;
82
- "onDelete:success"?: ((credential: EntityRow) => any) | undefined;
83
- }>, {
84
- cacheIdentifier: string;
85
- canCreate: () => boolean | Promise<boolean>;
86
- canDelete: (row: EntityRow) => boolean | Promise<boolean>;
87
- canEdit: (row: EntityRow) => boolean | Promise<boolean>;
88
- useActionOutside: boolean;
89
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
90
- declare const _default: typeof __VLS_export;
91
- export default _default;
92
- //# sourceMappingURL=ConsumerCredentialList.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ConsumerCredentialList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ConsumerCredentialList.vue"],"names":[],"mappings":"AAyeA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;AAevC,OAAO,KAAK,EAEV,uCAAuC,EACvC,mCAAmC,EACnC,SAAS,EACT,gBAAgB,EACjB,MAAM,UAAU,CAAA;AAMjB,OAAO,gDAAgD,CAAA;AAq6BvD,QAAA,MAAM,YAAY;IAGhB,oHAAoH;;cAElG,QAAQ,CAAC,mCAAmC,GAAG,uCAAuC,CAAC;;4BAEnF,mCAAmC,GAAG,uCAAuC,KAAG,OAAO;;;;;;IAW7G,yHAAyH;;cAErG,QAAQ,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;;;;IAI9D,2HAA2H;;cAEvG,QAAQ,CAAC,CAAC,GAAG,EAAE,SAAS,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;;;;IAI5E,yHAAyH;;cAErG,QAAQ,CAAC,CAAC,GAAG,EAAE,SAAS,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;;;;IAI5E,iHAAiH;;;;;;;;;;;IAjCjH,oHAAoH;;cAElG,QAAQ,CAAC,mCAAmC,GAAG,uCAAuC,CAAC;;4BAEnF,mCAAmC,GAAG,uCAAuC,KAAG,OAAO;;;;;;IAW7G,yHAAyH;;cAErG,QAAQ,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;;;;IAI9D,2HAA2H;;cAEvG,QAAQ,CAAC,CAAC,GAAG,EAAE,SAAS,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;;;;IAI5E,yHAAyH;;cAErG,QAAQ,CAAC,CAAC,GAAG,EAAE,SAAS,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;;;;IAI5E,iHAAiH;;;;;;;;;;;;qBAhB9E,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;qBAM1B,SAAS,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;mBAMxC,SAAS,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;;4EAU3E,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -1,6 +0,0 @@
1
- import useI18n from './useI18n';
2
- declare const _default: {
3
- useI18n: typeof useI18n;
4
- };
5
- export default _default;
6
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/composables/index.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,WAAW,CAAA;;;;AAG/B,wBAEC"}
@@ -1,9 +0,0 @@
1
- import { createI18n, i18nTComponent } from '@kong-ui-public/i18n';
2
- import english from '../locales/en.json';
3
- interface UseI18nReturn {
4
- i18n: ReturnType<typeof createI18n<typeof english>>;
5
- i18nT: ReturnType<typeof i18nTComponent<typeof english>>;
6
- }
7
- export default function useI18n(): UseI18nReturn;
8
- export {};
9
- //# sourceMappingURL=useI18n.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"useI18n.d.ts","sourceRoot":"","sources":["../../../src/composables/useI18n.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AACjE,OAAO,OAAO,MAAM,oBAAoB,CAAA;AAExC,UAAU,aAAa;IACrB,IAAI,EAAE,UAAU,CAAC,OAAO,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC,CAAA;IACnD,KAAK,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,OAAO,OAAO,CAAC,CAAC,CAAA;CACzD;AAED,MAAM,CAAC,OAAO,UAAU,OAAO,IAAI,aAAa,CAO/C"}
@@ -1,8 +0,0 @@
1
- declare const _default: {
2
- list: {
3
- konnect: string;
4
- kongManager: string;
5
- };
6
- };
7
- export default _default;
8
- //# sourceMappingURL=consumer-credentials-endpoints.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"consumer-credentials-endpoints.d.ts","sourceRoot":"","sources":["../../src/consumer-credentials-endpoints.ts"],"names":[],"mappings":";;;;;;AAAA,wBAKC"}
@@ -1,4 +0,0 @@
1
- import ConsumerCredentialList from './components/ConsumerCredentialList.vue';
2
- export { ConsumerCredentialList };
3
- export * from './types';
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,sBAAsB,MAAM,yCAAyC,CAAA;AAE5E,OAAO,EAAE,sBAAsB,EAAE,CAAA;AAEjC,cAAc,SAAS,CAAA"}
@@ -1,32 +0,0 @@
1
- import type { RouteLocationRaw } from 'vue-router';
2
- import type { KongManagerBaseTableConfig, KonnectBaseTableConfig } from '@kong-ui-public/entities-shared';
3
- export type CredentialPlugins = 'acls' | 'basic-auth' | 'key-auth' | 'key-auth-enc' | 'oauth2' | 'hmac-auth' | 'jwt';
4
- export interface BaseConsumerCredentialListConfig {
5
- /** Consumer ID */
6
- consumerId: string;
7
- /** Credential plugin name */
8
- plugin: CredentialPlugins;
9
- /** Route for creating a consumer credential */
10
- createRoute: RouteLocationRaw;
11
- /** A function that returns the route for editing a consumer credential */
12
- getEditRoute: (id: string) => RouteLocationRaw;
13
- }
14
- /** Konnect consumer credential list config */
15
- export interface KonnectConsumerCredentialListConfig extends KonnectBaseTableConfig, BaseConsumerCredentialListConfig {
16
- }
17
- /** Kong Manager consumer credential list config */
18
- export interface KongManagerConsumerCredentialListConfig extends KongManagerBaseTableConfig, BaseConsumerCredentialListConfig {
19
- }
20
- export interface EntityRow extends Record<string, any> {
21
- id: string;
22
- }
23
- /** Copy field event payload */
24
- export interface CopyEventPayload {
25
- /** The entity row */
26
- entity: EntityRow;
27
- /** The field being copied. If omitted, the entity JSON is being copied. */
28
- field?: string;
29
- /** The toaster message */
30
- message: string;
31
- }
32
- //# sourceMappingURL=consumer-credential-list.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"consumer-credential-list.d.ts","sourceRoot":"","sources":["../../../src/types/consumer-credential-list.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAClD,OAAO,KAAK,EAAE,0BAA0B,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAA;AAEzG,MAAM,MAAM,iBAAiB,GAAG,MAAM,GAAG,YAAY,GAAG,UAAU,GAAG,cAAc,GAAG,QAAQ,GAAG,WAAW,GAAG,KAAK,CAAA;AAEpH,MAAM,WAAW,gCAAgC;IAC/C,kBAAkB;IAClB,UAAU,EAAE,MAAM,CAAA;IAClB,6BAA6B;IAC7B,MAAM,EAAE,iBAAiB,CAAA;IACzB,+CAA+C;IAC/C,WAAW,EAAE,gBAAgB,CAAA;IAC7B,0EAA0E;IAC1E,YAAY,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,gBAAgB,CAAA;CAC/C;AAED,8CAA8C;AAC9C,MAAM,WAAW,mCAAoC,SAAQ,sBAAsB,EAAE,gCAAgC;CAAG;AAExH,mDAAmD;AACnD,MAAM,WAAW,uCAAwC,SAAQ,0BAA0B,EAAE,gCAAgC;CAAG;AAEhI,MAAM,WAAW,SAAU,SAAQ,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;IACpD,EAAE,EAAE,MAAM,CAAA;CACX;AAED,+BAA+B;AAC/B,MAAM,WAAW,gBAAgB;IAC/B,qBAAqB;IACrB,MAAM,EAAE,SAAS,CAAA;IACjB,2EAA2E;IAC3E,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,0BAA0B;IAC1B,OAAO,EAAE,MAAM,CAAA;CAChB"}
@@ -1,2 +0,0 @@
1
- export * from './consumer-credential-list';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAGA,cAAc,4BAA4B,CAAA"}