@onereach/styles 2.35.1-beta.2366.0 → 2.35.1
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 +3 -2
- package/tailwind.config.preset.js +3 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onereach/styles",
|
|
3
|
-
"version": "2.35.1
|
|
3
|
+
"version": "2.35.1",
|
|
4
4
|
"description": "Styles for or-ui-next",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"main": "./main.css",
|
|
@@ -53,5 +53,6 @@
|
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
56
|
-
}
|
|
56
|
+
},
|
|
57
|
+
"gitHead": "cfa25cc86fde585263be7e6e8562054b3cd084c5"
|
|
57
58
|
}
|
|
@@ -115,7 +115,8 @@ module.exports = {
|
|
|
115
115
|
|
|
116
116
|
'100%': {
|
|
117
117
|
strokeDasharray: '25%, 100%',
|
|
118
|
-
|
|
118
|
+
// calc added here only for safari support
|
|
119
|
+
strokeDashoffset: 'calc((100% - 0px) * -2.5)',
|
|
119
120
|
},
|
|
120
121
|
},
|
|
121
122
|
|
|
@@ -241,23 +242,16 @@ module.exports = {
|
|
|
241
242
|
return {
|
|
242
243
|
display: prefix + 'flex',
|
|
243
244
|
flexDirection: direction,
|
|
244
|
-
|
|
245
|
-
alignItems: direction === 'row' ? 'center' : undefined,
|
|
245
|
+
alignItems: direction === 'row' ? 'center' : 'normal',
|
|
246
246
|
};
|
|
247
247
|
},
|
|
248
248
|
}, {
|
|
249
249
|
values: {
|
|
250
250
|
'row': 'row',
|
|
251
|
-
'row-reverse': 'row-reverse',
|
|
252
|
-
|
|
253
251
|
'column': 'column',
|
|
254
|
-
'column-reverse': 'column-reverse',
|
|
255
252
|
|
|
256
253
|
'inline-row': 'inline-..row',
|
|
257
|
-
'inline-row-reverse': 'inline-..row-reverse',
|
|
258
|
-
|
|
259
254
|
'inline-column': 'inline-..column',
|
|
260
|
-
'inline-column-reverse': 'inline-..column-reverse',
|
|
261
255
|
},
|
|
262
256
|
});
|
|
263
257
|
}),
|
|
@@ -630,7 +624,6 @@ module.exports = {
|
|
|
630
624
|
'surface-inverse-dark': 'inverse-surface..-dark',
|
|
631
625
|
|
|
632
626
|
'transparent': 'transparent',
|
|
633
|
-
'transparent-dark': 'transparent..-dark',
|
|
634
627
|
},
|
|
635
628
|
});
|
|
636
629
|
|
|
@@ -761,10 +754,7 @@ module.exports = {
|
|
|
761
754
|
'on-surface-inverse-dark': 'inverse-on-surface..-dark',
|
|
762
755
|
|
|
763
756
|
'transparent': 'transparent',
|
|
764
|
-
'transparent-dark': 'transparent..-dark',
|
|
765
|
-
|
|
766
757
|
'inherit': 'inherit',
|
|
767
|
-
'inherit-dark': 'inherit..-dark',
|
|
768
758
|
},
|
|
769
759
|
});
|
|
770
760
|
|
|
@@ -810,10 +800,7 @@ module.exports = {
|
|
|
810
800
|
'error-dark': 'error..-dark',
|
|
811
801
|
|
|
812
802
|
'transparent': 'transparent',
|
|
813
|
-
'transparent-dark': 'transparent..-dark',
|
|
814
|
-
|
|
815
803
|
'current': 'current',
|
|
816
|
-
'current-dark': 'current..-dark',
|
|
817
804
|
},
|
|
818
805
|
});
|
|
819
806
|
|
|
@@ -858,10 +845,7 @@ module.exports = {
|
|
|
858
845
|
'error-dark': 'error..-dark',
|
|
859
846
|
|
|
860
847
|
'transparent': 'transparent',
|
|
861
|
-
'transparent-dark': 'transparent..-dark',
|
|
862
|
-
|
|
863
848
|
'current': 'current',
|
|
864
|
-
'current-dark': 'current..-dark',
|
|
865
849
|
},
|
|
866
850
|
});
|
|
867
851
|
|
|
@@ -909,10 +893,7 @@ module.exports = {
|
|
|
909
893
|
'error-dark': 'error..-dark',
|
|
910
894
|
|
|
911
895
|
'transparent': 'transparent',
|
|
912
|
-
'transparent-dark': 'transparent..-dark',
|
|
913
|
-
|
|
914
896
|
'current': 'current',
|
|
915
|
-
'current-dark': 'current..-dark',
|
|
916
897
|
},
|
|
917
898
|
});
|
|
918
899
|
}),
|