@wsxjs/wsx-base-components 0.0.5 → 0.0.7
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/package.json +4 -4
- package/src/ReactiveCounter.css +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wsxjs/wsx-base-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Base UI components built with WSX Framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"!**/test"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wsxjs/wsx-core": "0.0.
|
|
21
|
+
"@wsxjs/wsx-core": "0.0.7"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@typescript-eslint/eslint-plugin": "^8.37.0",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"tsup": "^8.0.0",
|
|
29
29
|
"typescript": "^5.0.0",
|
|
30
30
|
"vite": "^5.4.19",
|
|
31
|
-
"@wsxjs/eslint-plugin-wsx": "0.0.
|
|
32
|
-
"@wsxjs/wsx-vite-plugin": "0.0.
|
|
31
|
+
"@wsxjs/eslint-plugin-wsx": "0.0.7",
|
|
32
|
+
"@wsxjs/wsx-vite-plugin": "0.0.7"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"wsx",
|
package/src/ReactiveCounter.css
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
padding: 24px;
|
|
5
5
|
border-radius: 12px;
|
|
6
6
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
7
|
-
font-family: -apple-system, BlinkMacSystemFont,
|
|
7
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
8
8
|
transition: all 0.3s ease;
|
|
9
9
|
}
|
|
10
10
|
|
|
@@ -279,26 +279,26 @@
|
|
|
279
279
|
margin: 10px;
|
|
280
280
|
padding: 16px;
|
|
281
281
|
}
|
|
282
|
-
|
|
282
|
+
|
|
283
283
|
.count-value {
|
|
284
284
|
font-size: 36px;
|
|
285
285
|
}
|
|
286
|
-
|
|
286
|
+
|
|
287
287
|
.controls {
|
|
288
288
|
flex-direction: column;
|
|
289
289
|
align-items: center;
|
|
290
290
|
}
|
|
291
|
-
|
|
291
|
+
|
|
292
292
|
.btn {
|
|
293
293
|
width: 200px;
|
|
294
294
|
}
|
|
295
|
-
|
|
295
|
+
|
|
296
296
|
.step-controls label {
|
|
297
297
|
flex-direction: column;
|
|
298
298
|
gap: 8px;
|
|
299
299
|
}
|
|
300
|
-
|
|
300
|
+
|
|
301
301
|
.message-controls input {
|
|
302
302
|
width: 100%;
|
|
303
303
|
}
|
|
304
|
-
}
|
|
304
|
+
}
|