docusaurus-theme-openapi-docs 0.0.0-581 → 0.0.0-583
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/lib/markdown/utils.js
CHANGED
|
@@ -18,30 +18,6 @@
|
|
|
18
18
|
font-weight: var(--ifm-font-weight-normal);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
.responseStatusSuccess {
|
|
22
|
-
border: none;
|
|
23
|
-
color: var(--ifm-color-success);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.responseStatusSuccess.active {
|
|
27
|
-
background-color: var(--ifm-color-success);
|
|
28
|
-
color: white;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.responseStatusDanger {
|
|
32
|
-
border: none;
|
|
33
|
-
color: var(--ifm-color-danger);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.responseStatusDanger.active {
|
|
37
|
-
background-color: var(--ifm-color-danger);
|
|
38
|
-
color: white;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.responseTabDot {
|
|
42
|
-
display: none;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
21
|
.tabItem:not(.active) {
|
|
46
22
|
opacity: 0.65;
|
|
47
23
|
}
|
|
@@ -18,30 +18,6 @@
|
|
|
18
18
|
font-weight: var(--ifm-font-weight-normal);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
.responseStatusSuccess {
|
|
22
|
-
border: none;
|
|
23
|
-
color: var(--ifm-color-success);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.responseStatusSuccess.active {
|
|
27
|
-
background-color: var(--ifm-color-success);
|
|
28
|
-
color: white;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.responseStatusDanger {
|
|
32
|
-
border: none;
|
|
33
|
-
color: var(--ifm-color-danger);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.responseStatusDanger.active {
|
|
37
|
-
background-color: var(--ifm-color-danger);
|
|
38
|
-
color: white;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.responseTabDot {
|
|
42
|
-
display: none;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
21
|
.tabItem:not(.active) {
|
|
46
22
|
opacity: 0.65;
|
|
47
23
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docusaurus-theme-openapi-docs",
|
|
3
3
|
"description": "OpenAPI theme for Docusaurus.",
|
|
4
|
-
"version": "0.0.0-
|
|
4
|
+
"version": "0.0.0-583",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"openapi",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"buffer": "^6.0.3",
|
|
52
52
|
"clsx": "^1.1.1",
|
|
53
53
|
"crypto-js": "^4.1.1",
|
|
54
|
-
"docusaurus-plugin-openapi-docs": "0.0.0-
|
|
54
|
+
"docusaurus-plugin-openapi-docs": "0.0.0-583",
|
|
55
55
|
"file-saver": "^2.0.5",
|
|
56
56
|
"immer": "^9.0.7",
|
|
57
57
|
"lodash": "^4.17.20",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"engines": {
|
|
75
75
|
"node": ">=14"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "99bfcb51279bdc1731717433962d49df6a0fb8c2"
|
|
78
78
|
}
|
package/src/markdown/utils.ts
CHANGED
|
@@ -18,30 +18,6 @@
|
|
|
18
18
|
font-weight: var(--ifm-font-weight-normal);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
.responseStatusSuccess {
|
|
22
|
-
border: none;
|
|
23
|
-
color: var(--ifm-color-success);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.responseStatusSuccess.active {
|
|
27
|
-
background-color: var(--ifm-color-success);
|
|
28
|
-
color: white;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.responseStatusDanger {
|
|
32
|
-
border: none;
|
|
33
|
-
color: var(--ifm-color-danger);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.responseStatusDanger.active {
|
|
37
|
-
background-color: var(--ifm-color-danger);
|
|
38
|
-
color: white;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.responseTabDot {
|
|
42
|
-
display: none;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
21
|
.tabItem:not(.active) {
|
|
46
22
|
opacity: 0.65;
|
|
47
23
|
}
|