@scalar/api-client 1.2.1 → 1.2.2
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/dist/index.css +5 -53
- package/dist/index.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -105,21 +105,9 @@
|
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
/* Use :where to lower specificity to 0 */
|
|
108
|
-
:where(.
|
|
108
|
+
:where(._reset_12vhc_3) {
|
|
109
109
|
/** Add some more things which are normally applied to `html`. */
|
|
110
|
-
font-family:
|
|
111
|
-
var(--scalar-font),
|
|
112
|
-
'Inter',
|
|
113
|
-
-apple-system,
|
|
114
|
-
BlinkMacSystemFont,
|
|
115
|
-
'Segoe UI',
|
|
116
|
-
Roboto,
|
|
117
|
-
Oxygen,
|
|
118
|
-
Ubuntu,
|
|
119
|
-
Cantarell,
|
|
120
|
-
'Open Sans',
|
|
121
|
-
'Helvetica Neue',
|
|
122
|
-
sans-serif;
|
|
110
|
+
font-family: var(--scalar-font);
|
|
123
111
|
line-height: 1.15;
|
|
124
112
|
-webkit-text-size-adjust: 100%;
|
|
125
113
|
-moz-tab-size: 4;
|
|
@@ -151,19 +139,7 @@ button {
|
|
|
151
139
|
border: unset;
|
|
152
140
|
background: unset;
|
|
153
141
|
appearance: unset;
|
|
154
|
-
font-family:
|
|
155
|
-
var(--scalar-font),
|
|
156
|
-
'Inter',
|
|
157
|
-
-apple-system,
|
|
158
|
-
BlinkMacSystemFont,
|
|
159
|
-
'Segoe UI',
|
|
160
|
-
Roboto,
|
|
161
|
-
Oxygen,
|
|
162
|
-
Ubuntu,
|
|
163
|
-
Cantarell,
|
|
164
|
-
'Open Sans',
|
|
165
|
-
'Helvetica Neue',
|
|
166
|
-
sans-serif;
|
|
142
|
+
font-family: var(--scalar-font);
|
|
167
143
|
}
|
|
168
144
|
input::placeholder {
|
|
169
145
|
color: var(--scalar-color-3);
|
|
@@ -183,35 +159,11 @@ input::placeholder {
|
|
|
183
159
|
}
|
|
184
160
|
input:-ms-input-placeholder {
|
|
185
161
|
color: var(--scalar-color-3);
|
|
186
|
-
font-family:
|
|
187
|
-
var(--scalar-font),
|
|
188
|
-
'Inter',
|
|
189
|
-
-apple-system,
|
|
190
|
-
BlinkMacSystemFont,
|
|
191
|
-
'Segoe UI',
|
|
192
|
-
Roboto,
|
|
193
|
-
Oxygen,
|
|
194
|
-
Ubuntu,
|
|
195
|
-
Cantarell,
|
|
196
|
-
'Open Sans',
|
|
197
|
-
'Helvetica Neue',
|
|
198
|
-
sans-serif;
|
|
162
|
+
font-family: var(--scalar-font);
|
|
199
163
|
}
|
|
200
164
|
input::-webkit-input-placeholder {
|
|
201
165
|
color: var(--scalar-color-3);
|
|
202
|
-
font-family:
|
|
203
|
-
var(--scalar-font),
|
|
204
|
-
'Inter',
|
|
205
|
-
-apple-system,
|
|
206
|
-
BlinkMacSystemFont,
|
|
207
|
-
'Segoe UI',
|
|
208
|
-
Roboto,
|
|
209
|
-
Oxygen,
|
|
210
|
-
Ubuntu,
|
|
211
|
-
Cantarell,
|
|
212
|
-
'Open Sans',
|
|
213
|
-
'Helvetica Neue',
|
|
214
|
-
sans-serif;
|
|
166
|
+
font-family: var(--scalar-font);
|
|
215
167
|
}
|
|
216
168
|
}
|
|
217
169
|
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"rest",
|
|
14
14
|
"testing"
|
|
15
15
|
],
|
|
16
|
-
"version": "1.2.
|
|
16
|
+
"version": "1.2.2",
|
|
17
17
|
"engines": {
|
|
18
18
|
"node": ">=18"
|
|
19
19
|
},
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
"nanoid": "^5.0.1",
|
|
43
43
|
"pretty-bytes": "^6.1.1",
|
|
44
44
|
"pretty-ms": "^8.0.0",
|
|
45
|
-
"@scalar/themes": "0.7.1",
|
|
46
|
-
"@scalar/use-codemirror": "0.10.0",
|
|
47
|
-
"@scalar/use-modal": "0.3.0",
|
|
48
45
|
"@scalar/components": "0.5.0",
|
|
46
|
+
"@scalar/themes": "0.7.2",
|
|
47
|
+
"@scalar/use-modal": "0.3.0",
|
|
48
|
+
"@scalar/use-codemirror": "0.10.0",
|
|
49
49
|
"@scalar/use-tooltip": "0.6.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"vitest": "^1.5.0",
|
|
59
59
|
"vue": "^3.4.21",
|
|
60
60
|
"vue-tsc": "^1.8.19",
|
|
61
|
+
"@scalar/api-client-proxy": "0.5.24",
|
|
61
62
|
"@scalar/echo-server": "0.6.1",
|
|
62
|
-
"@scalar/oas-utils": "0.1.6"
|
|
63
|
-
"@scalar/api-client-proxy": "0.5.24"
|
|
63
|
+
"@scalar/oas-utils": "0.1.6"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
66
|
"vue": "^3.3.0",
|