@swagger-api/apidom-ns-api-design-systems 0.82.2 → 0.84.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/CHANGELOG.md +8 -0
- package/cjs/refractor/visitors/SpecificationVisitor.cjs +3 -2
- package/dist/apidom-ns-api-design-systems.browser.js +7290 -7098
- package/dist/apidom-ns-api-design-systems.browser.min.js +1 -1
- package/es/refractor/visitors/SpecificationVisitor.mjs +3 -2
- package/package.json +6 -6
|
@@ -10,7 +10,8 @@ import Visitor from "./Visitor.mjs";
|
|
|
10
10
|
*/
|
|
11
11
|
const SpecificationVisitor = stampit(Visitor, {
|
|
12
12
|
props: {
|
|
13
|
-
specObj: null
|
|
13
|
+
specObj: null,
|
|
14
|
+
passingOptionsNames: ['specObj']
|
|
14
15
|
},
|
|
15
16
|
// @ts-ignore
|
|
16
17
|
init({
|
|
@@ -20,7 +21,7 @@ const SpecificationVisitor = stampit(Visitor, {
|
|
|
20
21
|
},
|
|
21
22
|
methods: {
|
|
22
23
|
retrievePassingOptions() {
|
|
23
|
-
return pick(
|
|
24
|
+
return pick(this.passingOptionsNames, this);
|
|
24
25
|
},
|
|
25
26
|
retrieveFixedFields(specPath) {
|
|
26
27
|
const fixedFields = path(['visitors', ...specPath, 'fixedFields'], this.specObj);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swagger-api/apidom-ns-api-design-systems",
|
|
3
3
|
"description": "API Design Systems 2021-05-07 namespace for ApiDOM.",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.84.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"registry": "https://registry.npmjs.org"
|
|
@@ -42,11 +42,11 @@
|
|
|
42
42
|
"license": "Apache-2.0",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@babel/runtime-corejs3": "^7.20.7",
|
|
45
|
-
"@swagger-api/apidom-core": "^0.
|
|
46
|
-
"@swagger-api/apidom-error": "^0.
|
|
47
|
-
"@swagger-api/apidom-ns-openapi-3-1": "^0.
|
|
45
|
+
"@swagger-api/apidom-core": "^0.84.0",
|
|
46
|
+
"@swagger-api/apidom-error": "^0.84.0",
|
|
47
|
+
"@swagger-api/apidom-ns-openapi-3-1": "^0.84.0",
|
|
48
48
|
"@types/ramda": "~0.29.6",
|
|
49
|
-
"ramda": "~0.29.
|
|
49
|
+
"ramda": "~0.29.1",
|
|
50
50
|
"ramda-adjunct": "^4.1.1",
|
|
51
51
|
"stampit": "^4.3.2"
|
|
52
52
|
},
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"README.md",
|
|
61
61
|
"CHANGELOG.md"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "6dbd9983371b63b56cab3983e478ef29e9e1525f"
|
|
64
64
|
}
|