qstd 0.3.9 → 0.3.11
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/dist/block/fns.d.ts +31 -0
- package/dist/block/fns.d.ts.map +1 -1
- package/dist/block/input.d.ts +15 -0
- package/dist/block/input.d.ts.map +1 -1
- package/dist/preset/index.cjs +22 -18
- package/dist/preset/index.d.ts.map +1 -1
- package/dist/preset/index.js +22 -18
- package/dist/react/index.cjs +86 -59
- package/dist/react/index.css +31 -64
- package/dist/react/index.js +86 -59
- package/package.json +21 -20
- package/styled-system/css/conditions.mjs +1 -1
- package/styled-system/jsx/is-valid-prop.mjs +1 -1
- package/styled-system/styles.css +36 -80
- package/styled-system/types/conditions.d.ts +2 -0
package/styled-system/styles.css
CHANGED
|
@@ -880,12 +880,12 @@
|
|
|
880
880
|
border-radius: 50%;
|
|
881
881
|
}
|
|
882
882
|
|
|
883
|
-
.
|
|
884
|
-
|
|
883
|
+
.bd-c_input-border-color-error {
|
|
884
|
+
border-color: var(--colors-input-border-color-error);
|
|
885
885
|
}
|
|
886
886
|
|
|
887
|
-
.
|
|
888
|
-
|
|
887
|
+
.bd-c_input-border-color {
|
|
888
|
+
border-color: var(--colors-input-border-color);
|
|
889
889
|
}
|
|
890
890
|
|
|
891
891
|
.py_0\.5 {
|
|
@@ -896,14 +896,6 @@
|
|
|
896
896
|
border-radius: 8px;
|
|
897
897
|
}
|
|
898
898
|
|
|
899
|
-
.bd-c_input-border-color-error {
|
|
900
|
-
border-color: var(--colors-input-border-color-error);
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
.bd-c_input-border-color {
|
|
904
|
-
border-color: var(--colors-input-border-color);
|
|
905
|
-
}
|
|
906
|
-
|
|
907
899
|
.ring_1px_solid_rgba\(208\,_58\,_58\,_0\.05\) {
|
|
908
900
|
outline: 1px solid rgba(208, 58, 58, 0.05);
|
|
909
901
|
}
|
|
@@ -948,6 +940,14 @@
|
|
|
948
940
|
transition: background-color 0.2s ease-in-out;
|
|
949
941
|
}
|
|
950
942
|
|
|
943
|
+
.trs_200ms_cubic-bezier\(0\,_0\,_0\.2\,_1\)_0ms\,_\.2s_color_ease-in-out\,_\.2s_background_ease-in-out {
|
|
944
|
+
transition: 200ms cubic-bezier(0, 0, 0.2, 1) 0ms, .2s color ease-in-out, .2s background ease-in-out;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.px_2 {
|
|
948
|
+
padding-inline: var(--spacing-2);
|
|
949
|
+
}
|
|
950
|
+
|
|
951
951
|
.px_10px {
|
|
952
952
|
padding-inline: 10px;
|
|
953
953
|
}
|
|
@@ -1144,30 +1144,6 @@
|
|
|
1144
1144
|
transform: translateY(-50%);
|
|
1145
1145
|
}
|
|
1146
1146
|
|
|
1147
|
-
.grid-af_column {
|
|
1148
|
-
grid-auto-flow: column;
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1151
|
-
.pointer-events_none {
|
|
1152
|
-
pointer-events: none;
|
|
1153
|
-
}
|
|
1154
|
-
|
|
1155
|
-
.trf-o_top_left {
|
|
1156
|
-
transform-origin: top left;
|
|
1157
|
-
}
|
|
1158
|
-
|
|
1159
|
-
.trf_translate\(0\,_-50\%\)_scale\(1\) {
|
|
1160
|
-
transform: translate(0, -50%) scale(1);
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
|
-
.c_input-label-color {
|
|
1164
|
-
color: var(--colors-input-label-color);
|
|
1165
|
-
}
|
|
1166
|
-
|
|
1167
|
-
.lh_1\.1 {
|
|
1168
|
-
line-height: 1.1;
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
1147
|
.ring-c_input-outline-color-error {
|
|
1172
1148
|
outline-color: var(--colors-input-outline-color-error);
|
|
1173
1149
|
}
|
|
@@ -1207,6 +1183,10 @@
|
|
|
1207
1183
|
position: absolute;
|
|
1208
1184
|
}
|
|
1209
1185
|
|
|
1186
|
+
.pointer-events_none {
|
|
1187
|
+
pointer-events: none;
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1210
1190
|
.bx-sh_0_0_0_6px_rgba\(0\,0\,0\,\.08\) {
|
|
1211
1191
|
box-shadow: 0 0 0 6px rgba(0,0,0,.08);
|
|
1212
1192
|
}
|
|
@@ -1272,10 +1252,22 @@
|
|
|
1272
1252
|
box-sizing: content-box;
|
|
1273
1253
|
}
|
|
1274
1254
|
|
|
1255
|
+
.grid-af_column {
|
|
1256
|
+
grid-auto-flow: column;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
.trf-o_top_left {
|
|
1260
|
+
transform-origin: top left;
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1275
1263
|
.trf_translate\(0\,_0\)_scale\(1\) {
|
|
1276
1264
|
transform: translate(0, 0) scale(1);
|
|
1277
1265
|
}
|
|
1278
1266
|
|
|
1267
|
+
.c_input-label-color {
|
|
1268
|
+
color: var(--colors-input-label-color);
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1279
1271
|
.resize_none {
|
|
1280
1272
|
resize: none;
|
|
1281
1273
|
}
|
|
@@ -1428,18 +1420,6 @@
|
|
|
1428
1420
|
right: 11px;
|
|
1429
1421
|
}
|
|
1430
1422
|
|
|
1431
|
-
.ml_6 {
|
|
1432
|
-
margin-left: var(--spacing-6);
|
|
1433
|
-
}
|
|
1434
|
-
|
|
1435
|
-
.ml_1 {
|
|
1436
|
-
margin-left: var(--spacing-1);
|
|
1437
|
-
}
|
|
1438
|
-
|
|
1439
|
-
.mr_1 {
|
|
1440
|
-
margin-right: var(--spacing-1);
|
|
1441
|
-
}
|
|
1442
|
-
|
|
1443
1423
|
.pl_7 {
|
|
1444
1424
|
padding-left: var(--spacing-7);
|
|
1445
1425
|
}
|
|
@@ -1496,6 +1476,14 @@
|
|
|
1496
1476
|
top: var(--spacing-1);
|
|
1497
1477
|
}
|
|
1498
1478
|
|
|
1479
|
+
.ml_1 {
|
|
1480
|
+
margin-left: var(--spacing-1);
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
.mr_1 {
|
|
1484
|
+
margin-right: var(--spacing-1);
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1499
1487
|
[data-theme=dark] .dark\:bg_neutral\.700 {
|
|
1500
1488
|
background: var(--colors-neutral-700);
|
|
1501
1489
|
}
|
|
@@ -1616,10 +1604,6 @@
|
|
|
1616
1604
|
background: var(--colors-neutral-200);
|
|
1617
1605
|
}
|
|
1618
1606
|
|
|
1619
|
-
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:bg_input-label-bg:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1620
|
-
background: var(--colors-input-label-bg);
|
|
1621
|
-
}
|
|
1622
|
-
|
|
1623
1607
|
.active\:bg_none:active:not(:disabled),.active\:bg_none:active:not(:focus-visible):not(:disabled),.active\:bg_none:active:focus-visible:not(:disabled) {
|
|
1624
1608
|
background: none;
|
|
1625
1609
|
}
|
|
@@ -1640,22 +1624,6 @@
|
|
|
1640
1624
|
box-shadow: 0 0 0 6px hsl(0 0% 100% / 0.05);
|
|
1641
1625
|
}
|
|
1642
1626
|
|
|
1643
|
-
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:c_input-label-color-lifted:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1644
|
-
color: var(--colors-input-label-color-lifted);
|
|
1645
|
-
}
|
|
1646
|
-
|
|
1647
|
-
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:c_input-label-color:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1648
|
-
color: var(--colors-input-label-color);
|
|
1649
|
-
}
|
|
1650
|
-
|
|
1651
|
-
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:trf-o_top_left:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1652
|
-
transform-origin: top left;
|
|
1653
|
-
}
|
|
1654
|
-
|
|
1655
|
-
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:trf_scale\(0\.8\):has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1656
|
-
transform: scale(0.8);
|
|
1657
|
-
}
|
|
1658
|
-
|
|
1659
1627
|
.active\:trf_none\!:active:not(:disabled),.active\:trf_none\!:active:not(:focus-visible):not(:disabled),.active\:trf_none\!:active:focus-visible:not(:disabled) {
|
|
1660
1628
|
transform: none !important;
|
|
1661
1629
|
}
|
|
@@ -1680,18 +1648,6 @@
|
|
|
1680
1648
|
transform: scale(0.8);
|
|
1681
1649
|
}
|
|
1682
1650
|
|
|
1683
|
-
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:ml_6:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1684
|
-
margin-left: var(--spacing-6);
|
|
1685
|
-
}
|
|
1686
|
-
|
|
1687
|
-
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:ml_1:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1688
|
-
margin-left: var(--spacing-1);
|
|
1689
|
-
}
|
|
1690
|
-
|
|
1691
|
-
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:top_-10px:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1692
|
-
top: -10px;
|
|
1693
|
-
}
|
|
1694
|
-
|
|
1695
1651
|
.\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:top_-14px:has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
|
|
1696
1652
|
top: -14px;
|
|
1697
1653
|
}
|
|
@@ -238,6 +238,8 @@ export interface Conditions {
|
|
|
238
238
|
"_path": string
|
|
239
239
|
/** `& svg` */
|
|
240
240
|
"_svg": string
|
|
241
|
+
/** `&:has(+ input:focus, + input:not(:placeholder-shown))` */
|
|
242
|
+
"_labelLifted": string
|
|
241
243
|
/** `@media screen and (min-width: 37.5rem)` */
|
|
242
244
|
"xs": string
|
|
243
245
|
/** `@media screen and (min-width: 37.5rem) and (max-width: 39.9975rem)` */
|