@rsmax/web 1.3.13 → 1.3.14
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 +4 -0
- package/assets/normalize.css +19 -17
- package/package.json +4 -4
- package/rstest.config.js +7 -0
- package/vitest.config.js +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.3.14](https://github.com/remaxjs/remax/compare/v1.3.13...v1.3.14) (2025-09-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rsmax/web
|
|
9
|
+
|
|
6
10
|
## [1.3.13](https://github.com/remaxjs/remax/compare/v1.3.12...v1.3.13) (2025-06-16)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @rsmax/web
|
package/assets/normalize.css
CHANGED
|
@@ -174,7 +174,8 @@ textarea {
|
|
|
174
174
|
*/
|
|
175
175
|
|
|
176
176
|
button,
|
|
177
|
-
input {
|
|
177
|
+
input {
|
|
178
|
+
/* 1 */
|
|
178
179
|
overflow: visible;
|
|
179
180
|
}
|
|
180
181
|
|
|
@@ -184,7 +185,8 @@ input { /* 1 */
|
|
|
184
185
|
*/
|
|
185
186
|
|
|
186
187
|
button,
|
|
187
|
-
select {
|
|
188
|
+
select {
|
|
189
|
+
/* 1 */
|
|
188
190
|
text-transform: none;
|
|
189
191
|
}
|
|
190
192
|
|
|
@@ -193,9 +195,9 @@ select { /* 1 */
|
|
|
193
195
|
*/
|
|
194
196
|
|
|
195
197
|
button,
|
|
196
|
-
[type=
|
|
197
|
-
[type=
|
|
198
|
-
[type=
|
|
198
|
+
[type='button'],
|
|
199
|
+
[type='reset'],
|
|
200
|
+
[type='submit'] {
|
|
199
201
|
-webkit-appearance: button;
|
|
200
202
|
}
|
|
201
203
|
|
|
@@ -204,9 +206,9 @@ button,
|
|
|
204
206
|
*/
|
|
205
207
|
|
|
206
208
|
button::-moz-focus-inner,
|
|
207
|
-
[type=
|
|
208
|
-
[type=
|
|
209
|
-
[type=
|
|
209
|
+
[type='button']::-moz-focus-inner,
|
|
210
|
+
[type='reset']::-moz-focus-inner,
|
|
211
|
+
[type='submit']::-moz-focus-inner {
|
|
210
212
|
border-style: none;
|
|
211
213
|
padding: 0;
|
|
212
214
|
}
|
|
@@ -216,9 +218,9 @@ button::-moz-focus-inner,
|
|
|
216
218
|
*/
|
|
217
219
|
|
|
218
220
|
button:-moz-focusring,
|
|
219
|
-
[type=
|
|
220
|
-
[type=
|
|
221
|
-
[type=
|
|
221
|
+
[type='button']:-moz-focusring,
|
|
222
|
+
[type='reset']:-moz-focusring,
|
|
223
|
+
[type='submit']:-moz-focusring {
|
|
222
224
|
outline: 1px dotted ButtonText;
|
|
223
225
|
}
|
|
224
226
|
|
|
@@ -267,8 +269,8 @@ textarea {
|
|
|
267
269
|
* 2. Remove the padding in IE 10.
|
|
268
270
|
*/
|
|
269
271
|
|
|
270
|
-
[type=
|
|
271
|
-
[type=
|
|
272
|
+
[type='checkbox'],
|
|
273
|
+
[type='radio'] {
|
|
272
274
|
box-sizing: border-box; /* 1 */
|
|
273
275
|
padding: 0; /* 2 */
|
|
274
276
|
}
|
|
@@ -277,8 +279,8 @@ textarea {
|
|
|
277
279
|
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
278
280
|
*/
|
|
279
281
|
|
|
280
|
-
[type=
|
|
281
|
-
[type=
|
|
282
|
+
[type='number']::-webkit-inner-spin-button,
|
|
283
|
+
[type='number']::-webkit-outer-spin-button {
|
|
282
284
|
height: auto;
|
|
283
285
|
}
|
|
284
286
|
|
|
@@ -287,7 +289,7 @@ textarea {
|
|
|
287
289
|
* 2. Correct the outline style in Safari.
|
|
288
290
|
*/
|
|
289
291
|
|
|
290
|
-
[type=
|
|
292
|
+
[type='search'] {
|
|
291
293
|
-webkit-appearance: textfield; /* 1 */
|
|
292
294
|
outline-offset: -2px; /* 2 */
|
|
293
295
|
}
|
|
@@ -296,7 +298,7 @@ textarea {
|
|
|
296
298
|
* Remove the inner padding in Chrome and Safari on macOS.
|
|
297
299
|
*/
|
|
298
300
|
|
|
299
|
-
[type=
|
|
301
|
+
[type='search']::-webkit-search-decoration {
|
|
300
302
|
-webkit-appearance: none;
|
|
301
303
|
}
|
|
302
304
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsmax/web",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.14",
|
|
4
4
|
"description": "Shim of web for rsmax",
|
|
5
5
|
"homepage": "https://github.com/remaxjs/remax#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
"build": "tsc",
|
|
21
21
|
"build:cjs": "tsc --module CommonJS --outDir cjs",
|
|
22
22
|
"clean": "rimraf cjs esm tsconfig.tsbuildinfo",
|
|
23
|
-
"test": "
|
|
23
|
+
"test": "rstest run"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@loadable/component": "^5.12.0",
|
|
27
|
-
"@rsmax/framework-shared": "1.3.
|
|
27
|
+
"@rsmax/framework-shared": "1.3.14",
|
|
28
28
|
"history": "^5.3.0",
|
|
29
29
|
"qs": "^6.9.3",
|
|
30
30
|
"react-is": "^18.3.0",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
53
|
"esnext": "./esm/index.js",
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "a542ee33a167f862ec9db0f7466a33f1cef31106"
|
|
55
55
|
}
|
package/rstest.config.js
ADDED