@kong-ui-public/spec-renderer 2.5.14 → 2.5.15
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/spec-renderer.es.js +25884 -25885
- package/dist/spec-renderer.umd.js +148 -148
- package/dist/types/components/SpecDetails.vue.d.ts +2 -1
- package/dist/types/components/SpecDetails.vue.d.ts.map +1 -1
- package/dist/types/components/SpecOperationsList.vue.d.ts +4 -3
- package/dist/types/components/SpecOperationsList.vue.d.ts.map +1 -1
- package/dist/types/components/SpecRenderer.vue.d.ts +4 -3
- package/dist/types/components/SpecRenderer.vue.d.ts.map +1 -1
- package/dist/types/components/operations-list/OperationsListItem.vue.d.ts +3 -2
- package/dist/types/components/operations-list/OperationsListItem.vue.d.ts.map +1 -1
- package/dist/types/components/operations-list/OperationsListSectionHeader.vue.d.ts +3 -2
- package/dist/types/components/operations-list/OperationsListSectionHeader.vue.d.ts.map +1 -1
- package/package.json +5 -5
|
@@ -2,7 +2,7 @@ import '@kong-ui-public/swagger-ui-web-component';
|
|
|
2
2
|
import type { SwaggerUIElement } from '@kong-ui-public/swagger-ui-web-component';
|
|
3
3
|
import type { PropType } from 'vue';
|
|
4
4
|
import type { SpecDocument, OperationListItem } from '../types';
|
|
5
|
-
declare const
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
6
|
document: {
|
|
7
7
|
type: PropType<SpecDocument>;
|
|
8
8
|
default: null;
|
|
@@ -89,5 +89,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
89
89
|
applicationRegistrationEnabled: boolean;
|
|
90
90
|
currentVersion: string;
|
|
91
91
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
92
|
+
declare const _default: typeof __VLS_export;
|
|
92
93
|
export default _default;
|
|
93
94
|
//# sourceMappingURL=SpecDetails.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SpecDetails.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SpecDetails.vue"],"names":[],"mappings":"AAkJA,OAAO,0CAA0C,CAAA;AACjD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAA;AAChF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAA
|
|
1
|
+
{"version":3,"file":"SpecDetails.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SpecDetails.vue"],"names":[],"mappings":"AAkJA,OAAO,0CAA0C,CAAA;AACjD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAA;AAChF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAA;AA6J/D,QAAA,MAAM,YAAY;;cAIE,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;;;;;cAwBtB,QAAQ,CAAC,iBAAiB,CAAC;;;;;;;;;;;;;;;cAxB3B,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;;;;;cAwBtB,QAAQ,CAAC,iBAAiB,CAAC;;;;;;;;;;;;;;;;;;;;;4EAY7C,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
import type { OperationListFilterFunction, Operation, OperationListItem, Tag } from '../types';
|
|
3
|
-
declare const _default:
|
|
3
|
+
declare const _default: typeof __VLS_export;
|
|
4
|
+
export default _default;
|
|
5
|
+
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
6
|
operations: {
|
|
5
7
|
type: PropType<Operation[]>;
|
|
6
8
|
required: true;
|
|
@@ -32,7 +34,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<import("vu
|
|
|
32
34
|
type: StringConstructor;
|
|
33
35
|
default: string;
|
|
34
36
|
};
|
|
35
|
-
}>,
|
|
37
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
36
38
|
selected: (...args: any[]) => void;
|
|
37
39
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
38
40
|
operations: {
|
|
@@ -92,7 +94,6 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<import("vu
|
|
|
92
94
|
} & {
|
|
93
95
|
'error-state'?: (props: {}) => any;
|
|
94
96
|
}>;
|
|
95
|
-
export default _default;
|
|
96
97
|
type __VLS_WithSlots<T, S> = T & {
|
|
97
98
|
new (): {
|
|
98
99
|
$slots: S;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SpecOperationsList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SpecOperationsList.vue"],"names":[],"mappings":"AAgWA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,2BAA2B,EAAE,SAAS,EAAE,iBAAiB,EAAE,GAAG,EAAE,MAAM,UAAU,CAAA
|
|
1
|
+
{"version":3,"file":"SpecOperationsList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SpecOperationsList.vue"],"names":[],"mappings":"AAgWA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,2BAA2B,EAAE,SAAS,EAAE,iBAAiB,EAAE,GAAG,EAAE,MAAM,UAAU,CAAA;wBAYzE,OAAO,YAAY;AAAxC,wBAAyC;AACzC,QAAA,MAAM,YAAY;;cAycC,QAAQ,CAAC,SAAS,EAAE,CAAC;;2BAEjB,SAAS,EAAE,KAAG,OAAO;;;cAGzB,QAAQ,CAAC,GAAG,EAAE,CAAC;;2BAEX,GAAG,EAAE,KAAG,OAAO;;;;;;;cAOhB,QAAQ,CAAC,2BAA2B,CAAC;iBAKjD,2BAA2B;;;;;;;;;;;;;;;;;;;cAnBlB,QAAQ,CAAC,SAAS,EAAE,CAAC;;2BAEjB,SAAS,EAAE,KAAG,OAAO;;;cAGzB,QAAQ,CAAC,GAAG,EAAE,CAAC;;2BAEX,GAAG,EAAE,KAAG,OAAO;;;;;;;cAOhB,QAAQ,CAAC,2BAA2B,CAAC;iBAKjD,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;WA/B1B,CAAC,KAAK;;;;KAAiB,KAAK,GAAG;;sBACpB,CAAC,KAAK;;;;KAAiB,KAAK,GAAG;;oBACjC,CAAC,KAAK,IAAiB,KAAK,GAAG;;oBAC/B,CAAC,KAAK,IAAiB,KAAK,GAAG;EA8C/C,CAAC;AACL,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
import type { SpecDocument, Operation, Tag } from '../types';
|
|
3
|
-
declare const _default:
|
|
3
|
+
declare const _default: typeof __VLS_export;
|
|
4
|
+
export default _default;
|
|
5
|
+
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
6
|
spec: {
|
|
5
7
|
type: PropType<SpecDocument>;
|
|
6
8
|
required: true;
|
|
@@ -27,7 +29,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<import("vu
|
|
|
27
29
|
type: BooleanConstructor;
|
|
28
30
|
default: boolean;
|
|
29
31
|
};
|
|
30
|
-
}>,
|
|
32
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
33
|
spec: {
|
|
32
34
|
type: PropType<SpecDocument>;
|
|
33
35
|
required: true;
|
|
@@ -64,7 +66,6 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<import("vu
|
|
|
64
66
|
} & {
|
|
65
67
|
'error-state'?: (props: {}) => any;
|
|
66
68
|
}>;
|
|
67
|
-
export default _default;
|
|
68
69
|
type __VLS_WithSlots<T, S> = T & {
|
|
69
70
|
new (): {
|
|
70
71
|
$slots: S;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SpecRenderer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SpecRenderer.vue"],"names":[],"mappings":"AAuHA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAqB,GAAG,EAAE,MAAM,UAAU,CAAA
|
|
1
|
+
{"version":3,"file":"SpecRenderer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SpecRenderer.vue"],"names":[],"mappings":"AAuHA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAqB,GAAG,EAAE,MAAM,UAAU,CAAA;wBAQ1D,OAAO,YAAY;AAAxC,wBAAyC;AACzC,QAAA,MAAM,YAAY;;cA6KE,QAAQ,CAAC,YAAY,CAAC;;;;;;;;cAQvB,QAAQ,CAAC,SAAS,EAAE,CAAC;;2BAEjB,SAAS,EAAE,KAAG,OAAO;;;cAGzB,QAAQ,CAAC,GAAG,EAAE,CAAC;;2BAEX,GAAG,EAAE,KAAG,OAAO;;;;;;;;;;;;cAflB,QAAQ,CAAC,YAAY,CAAC;;;;;;;;cAQvB,QAAQ,CAAC,SAAS,EAAE,CAAC;;2BAEjB,SAAS,EAAE,KAAG,OAAO;;;cAGzB,QAAQ,CAAC,GAAG,EAAE,CAAC;;2BAEX,GAAG,EAAE,KAAG,OAAO;;;;;;;;;;;;;;;;6BAxBT,CAAC,KAAK,IAAiB,KAAK,GAAG;;oBACxC,CAAC,KAAK,IAAiB,KAAK,GAAG;EAoC/C,CAAC;AACL,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
import type { OperationListItem } from '../../types';
|
|
3
|
-
declare const
|
|
3
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
4
|
item: {
|
|
5
5
|
type: PropType<OperationListItem>;
|
|
6
6
|
required: true;
|
|
@@ -14,7 +14,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
14
14
|
type: BooleanConstructor;
|
|
15
15
|
default: boolean;
|
|
16
16
|
};
|
|
17
|
-
}>,
|
|
17
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
18
|
click: (...args: any[]) => void;
|
|
19
19
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
20
|
item: {
|
|
@@ -36,5 +36,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
36
36
|
isSelected: boolean;
|
|
37
37
|
disableSelection: boolean;
|
|
38
38
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
39
|
+
declare const _default: typeof __VLS_export;
|
|
39
40
|
export default _default;
|
|
40
41
|
//# sourceMappingURL=OperationsListItem.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OperationsListItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/operations-list/OperationsListItem.vue"],"names":[],"mappings":"AAkNA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAA
|
|
1
|
+
{"version":3,"file":"OperationsListItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/operations-list/OperationsListItem.vue"],"names":[],"mappings":"AAkNA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAA;AAiJpD,QAAA,MAAM,YAAY;;cAIE,QAAQ,CAAC,iBAAiB,CAAC;;0BAGzB,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAG,OAAO;;;;;;;;;;;;;;cAHnC,QAAQ,CAAC,iBAAiB,CAAC;;0BAGzB,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAG,OAAO;;;;;;;;;;;;;;;4EAerD,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
isCollapsed: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
required: true;
|
|
@@ -15,7 +15,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
15
15
|
type: StringConstructor;
|
|
16
16
|
required: true;
|
|
17
17
|
};
|
|
18
|
-
}>,
|
|
18
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
19
|
toggle: (...args: any[]) => void;
|
|
20
20
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
21
|
isCollapsed: {
|
|
@@ -39,5 +39,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
39
39
|
}>, {
|
|
40
40
|
description: string;
|
|
41
41
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
42
|
+
declare const _default: typeof __VLS_export;
|
|
42
43
|
export default _default;
|
|
43
44
|
//# sourceMappingURL=OperationsListSectionHeader.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OperationsListSectionHeader.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/operations-list/OperationsListSectionHeader.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"OperationsListSectionHeader.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/operations-list/OperationsListSectionHeader.vue"],"names":[],"mappings":"AAoQA,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAoBhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong-ui-public/spec-renderer",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/spec-renderer.umd.js",
|
|
6
6
|
"module": "./dist/spec-renderer.es.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@kong/kongponents": "^9.48.6",
|
|
25
25
|
"vue": ">= 3.3.13 < 4",
|
|
26
|
-
"@kong-ui-public/i18n": "^2.4.
|
|
26
|
+
"@kong-ui-public/i18n": "^2.4.5"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@kong/design-tokens": "1.18.2",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@types/lodash.clonedeep": "^4.5.9",
|
|
33
33
|
"@types/uuid": "^11.0.0",
|
|
34
34
|
"openapi-types": "^12.1.3",
|
|
35
|
-
"vue": "^3.5.
|
|
36
|
-
"@kong-ui-public/i18n": "^2.4.
|
|
35
|
+
"vue": "^3.5.25",
|
|
36
|
+
"@kong-ui-public/i18n": "^2.4.5"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@kong-ui-public/swagger-ui-web-component": "^0.12.
|
|
39
|
+
"@kong-ui-public/swagger-ui-web-component": "^0.12.12",
|
|
40
40
|
"@kong/icons": "^1.41.0",
|
|
41
41
|
"lodash.clonedeep": "^4.5.0",
|
|
42
42
|
"uuid": "^11.1.0"
|