@kong-ui-public/entities-plugins 9.37.0 → 9.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/entities-plugins.es.js +95 -90
- package/dist/entities-plugins.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types/components/free-form/Datakit/flow-editor/node/FlowNode.vue.d.ts +1 -1
- package/dist/types/components/free-form/Datakit/flow-editor/node/FlowNode.vue.d.ts.map +1 -1
- package/dist/types/components/free-form/Datakit/flow-editor/node/node-meta.d.ts +2 -0
- package/dist/types/components/free-form/Datakit/flow-editor/node/node-meta.d.ts.map +1 -1
- package/dist/types/components/free-form/Datakit/types.d.ts +225 -3
- package/dist/types/components/free-form/Datakit/types.d.ts.map +1 -1
- package/package.json +8 -8
- package/dist/types/components/free-form/Datakit/flow-editor/types.d.ts +0 -15
- package/dist/types/components/free-form/Datakit/flow-editor/types.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong-ui-public/entities-plugins",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.38.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/entities-plugins.umd.js",
|
|
6
6
|
"module": "./dist/entities-plugins.es.js",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"axios": "^1.7.7",
|
|
33
33
|
"vue": ">= 3.3.13 < 4",
|
|
34
34
|
"vue-router": "^4.4.5",
|
|
35
|
-
"@kong-ui-public/i18n": "^2.3.2",
|
|
36
35
|
"@kong-ui-public/entities-plugins-icon": "^1.1.0",
|
|
37
|
-
"@kong-ui-public/entities-shared": "^3.26.0"
|
|
36
|
+
"@kong-ui-public/entities-shared": "^3.26.0",
|
|
37
|
+
"@kong-ui-public/i18n": "^2.3.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@kong/design-tokens": "1.17.4",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"axios": "^1.7.7",
|
|
49
49
|
"vue": "^3.5.13",
|
|
50
50
|
"vue-router": "^4.4.5",
|
|
51
|
-
"@kong-ui-public/entities-shared": "^3.26.0",
|
|
52
51
|
"@kong-ui-public/entities-plugins-icon": "^1.1.0",
|
|
52
|
+
"@kong-ui-public/entities-shared": "^3.26.0",
|
|
53
53
|
"@kong-ui-public/i18n": "^2.3.2",
|
|
54
54
|
"@kong-ui-public/entities-vaults": "^3.22.6"
|
|
55
55
|
},
|
|
@@ -71,14 +71,14 @@
|
|
|
71
71
|
"focus-trap": "^7.6.0",
|
|
72
72
|
"marked": "^14.1.3",
|
|
73
73
|
"monaco-editor": "0.52.2",
|
|
74
|
-
"@kong-ui-public/entities-gateway-services": "^3.11.35",
|
|
75
|
-
"@kong-ui-public/entities-plugins-metadata": "^1.6.0",
|
|
76
74
|
"@kong-ui-public/entities-consumer-groups": "^4.0.6",
|
|
75
|
+
"@kong-ui-public/entities-consumers": "^4.0.7",
|
|
76
|
+
"@kong-ui-public/entities-plugins-metadata": "^1.6.0",
|
|
77
|
+
"@kong-ui-public/entities-gateway-services": "^3.11.35",
|
|
77
78
|
"@kong-ui-public/entities-redis-configurations": "^1.1.2",
|
|
78
79
|
"@kong-ui-public/entities-routes": "^3.14.7",
|
|
79
80
|
"@kong-ui-public/entities-vaults": "^3.22.6",
|
|
80
|
-
"@kong-ui-public/forms": "^4.13.8"
|
|
81
|
-
"@kong-ui-public/entities-consumers": "^4.0.7"
|
|
81
|
+
"@kong-ui-public/forms": "^4.13.8"
|
|
82
82
|
},
|
|
83
83
|
"scripts": {
|
|
84
84
|
"dev": "cross-env USE_SANDBOX=true vite",
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type { Component } from 'vue';
|
|
2
|
-
import type { ButtonProps } from '@kong/kongponents';
|
|
3
|
-
export type EditorMode = 'code' | 'flow';
|
|
4
|
-
type RequireAtLeastOne<T, Keys extends keyof T = keyof T> = Keys extends any ? Omit<T, Keys> & {
|
|
5
|
-
[K in Keys]-?: T[K];
|
|
6
|
-
} : never;
|
|
7
|
-
interface EditorModalNavItemBase {
|
|
8
|
-
label: string;
|
|
9
|
-
icon: Component;
|
|
10
|
-
to?: ButtonProps['to'];
|
|
11
|
-
onClick?: () => void;
|
|
12
|
-
}
|
|
13
|
-
export type EditorModalNavItem = RequireAtLeastOne<EditorModalNavItemBase, 'to' | 'onClick'>;
|
|
14
|
-
export {};
|
|
15
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/components/free-form/Datakit/flow-editor/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAA;AACpC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAA;AAEpD,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,MAAM,CAAA;AAExC,KAAK,iBAAiB,CAAC,CAAC,EAAE,IAAI,SAAS,MAAM,CAAC,GAAG,MAAM,CAAC,IAAI,IAAI,SAAS,GAAG,GACxE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG;KAAG,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAE,GACvC,KAAK,CAAA;AAET,UAAU,sBAAsB;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,SAAS,CAAA;IACf,EAAE,CAAC,EAAE,WAAW,CAAC,IAAI,CAAC,CAAA;IACtB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACrB;AAED,MAAM,MAAM,kBAAkB,GAAG,iBAAiB,CAAC,sBAAsB,EAAE,IAAI,GAAG,SAAS,CAAC,CAAA"}
|