@onereach/styles 3.3.0 → 3.3.1-beta.3207.0
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 +8 -10
- package/tailwind.config.json +131 -96
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onereach/styles",
|
|
3
|
-
"version": "3.3.0",
|
|
3
|
+
"version": "3.3.1-beta.3207.0",
|
|
4
4
|
"description": "Styles for or-ui-next",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"main": "./main.css",
|
|
@@ -41,22 +41,20 @@
|
|
|
41
41
|
"json-to-scss": "json-to-scss mock/design-tokens.json src/variables/tokens"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"
|
|
45
|
-
"tailwindcss": "3.1.3"
|
|
44
|
+
"tailwindcss": "^3.3.2"
|
|
46
45
|
},
|
|
47
46
|
"devDependencies": {
|
|
48
47
|
"autoprefixer": "^10.2.5",
|
|
49
48
|
"clean-css-cli": "^5.2.2",
|
|
50
49
|
"json-to-scss": "^1.6.2",
|
|
51
50
|
"npm-run-all": "^4.1.5",
|
|
52
|
-
"postcss": "^8.
|
|
53
|
-
"postcss-cli": "^
|
|
54
|
-
"postcss-import": "^
|
|
55
|
-
"postcss-preset-env": "^
|
|
56
|
-
"sass": "^1.
|
|
51
|
+
"postcss": "^8.4.24",
|
|
52
|
+
"postcss-cli": "^10.1.0",
|
|
53
|
+
"postcss-import": "^15.1.0",
|
|
54
|
+
"postcss-preset-env": "^8.5.0",
|
|
55
|
+
"sass": "^1.63.4"
|
|
57
56
|
},
|
|
58
57
|
"publishConfig": {
|
|
59
58
|
"access": "public"
|
|
60
|
-
}
|
|
61
|
-
"gitHead": "1dc1c80cc1539c62af8151bc997681865344877a"
|
|
59
|
+
}
|
|
62
60
|
}
|
package/tailwind.config.json
CHANGED
|
@@ -2043,33 +2043,18 @@
|
|
|
2043
2043
|
"transitionTimingFunction": {
|
|
2044
2044
|
"standard": "cubic-bezier(0.2, 0, 0, 1)"
|
|
2045
2045
|
},
|
|
2046
|
-
"
|
|
2047
|
-
"
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
"
|
|
2051
|
-
"
|
|
2052
|
-
"
|
|
2053
|
-
"
|
|
2054
|
-
"
|
|
2055
|
-
"
|
|
2056
|
-
"
|
|
2057
|
-
"
|
|
2058
|
-
"12": "12",
|
|
2059
|
-
"auto": "auto",
|
|
2060
|
-
"3xs": "16rem",
|
|
2061
|
-
"2xs": "18rem",
|
|
2062
|
-
"xs": "20rem",
|
|
2063
|
-
"sm": "24rem",
|
|
2064
|
-
"md": "28rem",
|
|
2065
|
-
"lg": "32rem",
|
|
2066
|
-
"xl": "36rem",
|
|
2067
|
-
"2xl": "42rem",
|
|
2068
|
-
"3xl": "48rem",
|
|
2069
|
-
"4xl": "56rem",
|
|
2070
|
-
"5xl": "64rem",
|
|
2071
|
-
"6xl": "72rem",
|
|
2072
|
-
"7xl": "80rem"
|
|
2046
|
+
"accentColor": {
|
|
2047
|
+
"auto": "auto"
|
|
2048
|
+
},
|
|
2049
|
+
"aria": {
|
|
2050
|
+
"checked": "checked=\"true\"",
|
|
2051
|
+
"disabled": "disabled=\"true\"",
|
|
2052
|
+
"expanded": "expanded=\"true\"",
|
|
2053
|
+
"hidden": "hidden=\"true\"",
|
|
2054
|
+
"pressed": "pressed=\"true\"",
|
|
2055
|
+
"readonly": "readonly=\"true\"",
|
|
2056
|
+
"required": "required=\"true\"",
|
|
2057
|
+
"selected": "selected=\"true\""
|
|
2073
2058
|
},
|
|
2074
2059
|
"aspectRatio": {
|
|
2075
2060
|
"auto": "auto",
|
|
@@ -2197,19 +2182,6 @@
|
|
|
2197
2182
|
"2xl": "40px",
|
|
2198
2183
|
"3xl": "64px"
|
|
2199
2184
|
},
|
|
2200
|
-
"brightness": {
|
|
2201
|
-
"0": "0",
|
|
2202
|
-
"50": ".5",
|
|
2203
|
-
"75": ".75",
|
|
2204
|
-
"90": ".9",
|
|
2205
|
-
"95": ".95",
|
|
2206
|
-
"100": "1",
|
|
2207
|
-
"105": "1.05",
|
|
2208
|
-
"110": "1.1",
|
|
2209
|
-
"125": "1.25",
|
|
2210
|
-
"150": "1.5",
|
|
2211
|
-
"200": "2"
|
|
2212
|
-
},
|
|
2213
2185
|
"borderOpacity": {
|
|
2214
2186
|
"0": "0",
|
|
2215
2187
|
"5": "0.05",
|
|
@@ -2253,10 +2225,49 @@
|
|
|
2253
2225
|
"lg+*": "27px"
|
|
2254
2226
|
},
|
|
2255
2227
|
"boxShadowColor": {},
|
|
2228
|
+
"brightness": {
|
|
2229
|
+
"0": "0",
|
|
2230
|
+
"50": ".5",
|
|
2231
|
+
"75": ".75",
|
|
2232
|
+
"90": ".9",
|
|
2233
|
+
"95": ".95",
|
|
2234
|
+
"100": "1",
|
|
2235
|
+
"105": "1.05",
|
|
2236
|
+
"110": "1.1",
|
|
2237
|
+
"125": "1.25",
|
|
2238
|
+
"150": "1.5",
|
|
2239
|
+
"200": "2"
|
|
2240
|
+
},
|
|
2256
2241
|
"caretColor": {},
|
|
2257
|
-
"
|
|
2258
|
-
"
|
|
2242
|
+
"columns": {
|
|
2243
|
+
"1": "1",
|
|
2244
|
+
"2": "2",
|
|
2245
|
+
"3": "3",
|
|
2246
|
+
"4": "4",
|
|
2247
|
+
"5": "5",
|
|
2248
|
+
"6": "6",
|
|
2249
|
+
"7": "7",
|
|
2250
|
+
"8": "8",
|
|
2251
|
+
"9": "9",
|
|
2252
|
+
"10": "10",
|
|
2253
|
+
"11": "11",
|
|
2254
|
+
"12": "12",
|
|
2255
|
+
"auto": "auto",
|
|
2256
|
+
"3xs": "16rem",
|
|
2257
|
+
"2xs": "18rem",
|
|
2258
|
+
"xs": "20rem",
|
|
2259
|
+
"sm": "24rem",
|
|
2260
|
+
"md": "28rem",
|
|
2261
|
+
"lg": "32rem",
|
|
2262
|
+
"xl": "36rem",
|
|
2263
|
+
"2xl": "42rem",
|
|
2264
|
+
"3xl": "48rem",
|
|
2265
|
+
"4xl": "56rem",
|
|
2266
|
+
"5xl": "64rem",
|
|
2267
|
+
"6xl": "72rem",
|
|
2268
|
+
"7xl": "80rem"
|
|
2259
2269
|
},
|
|
2270
|
+
"container": {},
|
|
2260
2271
|
"contrast": {
|
|
2261
2272
|
"0": "0",
|
|
2262
2273
|
"50": ".5",
|
|
@@ -2266,7 +2277,6 @@
|
|
|
2266
2277
|
"150": "1.5",
|
|
2267
2278
|
"200": "2"
|
|
2268
2279
|
},
|
|
2269
|
-
"container": {},
|
|
2270
2280
|
"cursor": {
|
|
2271
2281
|
"auto": "auto",
|
|
2272
2282
|
"default": "default",
|
|
@@ -2579,22 +2589,6 @@
|
|
|
2579
2589
|
"2xl": "0 25px 25px rgb(0 0 0 / 0.15)",
|
|
2580
2590
|
"none": "0 0 #0000"
|
|
2581
2591
|
},
|
|
2582
|
-
"grayscale": {
|
|
2583
|
-
"0": "0",
|
|
2584
|
-
"DEFAULT": "100%"
|
|
2585
|
-
},
|
|
2586
|
-
"hueRotate": {
|
|
2587
|
-
"0": "0deg",
|
|
2588
|
-
"15": "15deg",
|
|
2589
|
-
"30": "30deg",
|
|
2590
|
-
"60": "60deg",
|
|
2591
|
-
"90": "90deg",
|
|
2592
|
-
"180": "180deg"
|
|
2593
|
-
},
|
|
2594
|
-
"invert": {
|
|
2595
|
-
"0": "0",
|
|
2596
|
-
"DEFAULT": "100%"
|
|
2597
|
-
},
|
|
2598
2592
|
"flex": {
|
|
2599
2593
|
"1": "1 1 0%",
|
|
2600
2594
|
"auto": "1 1 auto",
|
|
@@ -2688,6 +2682,33 @@
|
|
|
2688
2682
|
"lg+*": "27px"
|
|
2689
2683
|
},
|
|
2690
2684
|
"gradientColorStops": {},
|
|
2685
|
+
"gradientColorStopPositions": {
|
|
2686
|
+
"0%": "0%",
|
|
2687
|
+
"5%": "5%",
|
|
2688
|
+
"10%": "10%",
|
|
2689
|
+
"15%": "15%",
|
|
2690
|
+
"20%": "20%",
|
|
2691
|
+
"25%": "25%",
|
|
2692
|
+
"30%": "30%",
|
|
2693
|
+
"35%": "35%",
|
|
2694
|
+
"40%": "40%",
|
|
2695
|
+
"45%": "45%",
|
|
2696
|
+
"50%": "50%",
|
|
2697
|
+
"55%": "55%",
|
|
2698
|
+
"60%": "60%",
|
|
2699
|
+
"65%": "65%",
|
|
2700
|
+
"70%": "70%",
|
|
2701
|
+
"75%": "75%",
|
|
2702
|
+
"80%": "80%",
|
|
2703
|
+
"85%": "85%",
|
|
2704
|
+
"90%": "90%",
|
|
2705
|
+
"95%": "95%",
|
|
2706
|
+
"100%": "100%"
|
|
2707
|
+
},
|
|
2708
|
+
"grayscale": {
|
|
2709
|
+
"0": "0",
|
|
2710
|
+
"DEFAULT": "100%"
|
|
2711
|
+
},
|
|
2691
2712
|
"gridAutoColumns": {
|
|
2692
2713
|
"auto": "auto",
|
|
2693
2714
|
"min": "min-content",
|
|
@@ -2758,7 +2779,7 @@
|
|
|
2758
2779
|
"span-6": "span 6 / span 6",
|
|
2759
2780
|
"span-full": "1 / -1"
|
|
2760
2781
|
},
|
|
2761
|
-
"
|
|
2782
|
+
"gridRowEnd": {
|
|
2762
2783
|
"1": "1",
|
|
2763
2784
|
"2": "2",
|
|
2764
2785
|
"3": "3",
|
|
@@ -2768,7 +2789,7 @@
|
|
|
2768
2789
|
"7": "7",
|
|
2769
2790
|
"auto": "auto"
|
|
2770
2791
|
},
|
|
2771
|
-
"
|
|
2792
|
+
"gridRowStart": {
|
|
2772
2793
|
"1": "1",
|
|
2773
2794
|
"2": "2",
|
|
2774
2795
|
"3": "3",
|
|
@@ -2848,6 +2869,14 @@
|
|
|
2848
2869
|
"max": "max-content",
|
|
2849
2870
|
"fit": "fit-content"
|
|
2850
2871
|
},
|
|
2872
|
+
"hueRotate": {
|
|
2873
|
+
"0": "0deg",
|
|
2874
|
+
"15": "15deg",
|
|
2875
|
+
"30": "30deg",
|
|
2876
|
+
"60": "60deg",
|
|
2877
|
+
"90": "90deg",
|
|
2878
|
+
"180": "180deg"
|
|
2879
|
+
},
|
|
2851
2880
|
"inset": {
|
|
2852
2881
|
"auto": "auto",
|
|
2853
2882
|
"none": "0px",
|
|
@@ -2881,6 +2910,10 @@
|
|
|
2881
2910
|
"3/4": "75%",
|
|
2882
2911
|
"full": "100%"
|
|
2883
2912
|
},
|
|
2913
|
+
"invert": {
|
|
2914
|
+
"0": "0",
|
|
2915
|
+
"DEFAULT": "100%"
|
|
2916
|
+
},
|
|
2884
2917
|
"letterSpacing": {
|
|
2885
2918
|
"tighter": "-0.05em",
|
|
2886
2919
|
"tight": "-0.025em",
|
|
@@ -2910,6 +2943,9 @@
|
|
|
2910
2943
|
"disc": "disc",
|
|
2911
2944
|
"decimal": "decimal"
|
|
2912
2945
|
},
|
|
2946
|
+
"listStyleImage": {
|
|
2947
|
+
"none": "none"
|
|
2948
|
+
},
|
|
2913
2949
|
"margin": {
|
|
2914
2950
|
"auto": "auto",
|
|
2915
2951
|
"none": "0px",
|
|
@@ -2936,8 +2972,16 @@
|
|
|
2936
2972
|
"lg+": "28px",
|
|
2937
2973
|
"lg+*": "27px"
|
|
2938
2974
|
},
|
|
2975
|
+
"lineClamp": {
|
|
2976
|
+
"1": "1",
|
|
2977
|
+
"2": "2",
|
|
2978
|
+
"3": "3",
|
|
2979
|
+
"4": "4",
|
|
2980
|
+
"5": "5",
|
|
2981
|
+
"6": "6"
|
|
2982
|
+
},
|
|
2939
2983
|
"maxHeight": {
|
|
2940
|
-
"none": "
|
|
2984
|
+
"none": "none",
|
|
2941
2985
|
"xs": "4px",
|
|
2942
2986
|
"xs*": "3px",
|
|
2943
2987
|
"sm": "8px",
|
|
@@ -3046,6 +3090,13 @@
|
|
|
3046
3090
|
"last": "9999",
|
|
3047
3091
|
"none": "0"
|
|
3048
3092
|
},
|
|
3093
|
+
"outlineOffset": {
|
|
3094
|
+
"0": "0px",
|
|
3095
|
+
"1": "1px",
|
|
3096
|
+
"2": "2px",
|
|
3097
|
+
"4": "4px",
|
|
3098
|
+
"8": "8px"
|
|
3099
|
+
},
|
|
3049
3100
|
"padding": {
|
|
3050
3101
|
"none": "0px",
|
|
3051
3102
|
"xs": "4px",
|
|
@@ -3089,13 +3140,6 @@
|
|
|
3089
3140
|
"95": "0.95",
|
|
3090
3141
|
"100": "1"
|
|
3091
3142
|
},
|
|
3092
|
-
"outlineOffset": {
|
|
3093
|
-
"0": "0px",
|
|
3094
|
-
"1": "1px",
|
|
3095
|
-
"2": "2px",
|
|
3096
|
-
"4": "4px",
|
|
3097
|
-
"8": "8px"
|
|
3098
|
-
},
|
|
3099
3143
|
"ringColor": {
|
|
3100
3144
|
"DEFAULT": "#3b82f6"
|
|
3101
3145
|
},
|
|
@@ -3255,6 +3299,8 @@
|
|
|
3255
3299
|
"1": "1",
|
|
3256
3300
|
"2": "2"
|
|
3257
3301
|
},
|
|
3302
|
+
"supports": {},
|
|
3303
|
+
"data": {},
|
|
3258
3304
|
"textDecorationColor": {},
|
|
3259
3305
|
"textDecorationThickness": {
|
|
3260
3306
|
"0": "0px",
|
|
@@ -3265,14 +3311,6 @@
|
|
|
3265
3311
|
"auto": "auto",
|
|
3266
3312
|
"from-font": "from-font"
|
|
3267
3313
|
},
|
|
3268
|
-
"textUnderlineOffset": {
|
|
3269
|
-
"0": "0px",
|
|
3270
|
-
"1": "1px",
|
|
3271
|
-
"2": "2px",
|
|
3272
|
-
"4": "4px",
|
|
3273
|
-
"8": "8px",
|
|
3274
|
-
"auto": "auto"
|
|
3275
|
-
},
|
|
3276
3314
|
"textIndent": {
|
|
3277
3315
|
"none": "0px",
|
|
3278
3316
|
"xs": "4px",
|
|
@@ -3315,6 +3353,14 @@
|
|
|
3315
3353
|
"95": "0.95",
|
|
3316
3354
|
"100": "1"
|
|
3317
3355
|
},
|
|
3356
|
+
"textUnderlineOffset": {
|
|
3357
|
+
"0": "0px",
|
|
3358
|
+
"1": "1px",
|
|
3359
|
+
"2": "2px",
|
|
3360
|
+
"4": "4px",
|
|
3361
|
+
"8": "8px",
|
|
3362
|
+
"auto": "auto"
|
|
3363
|
+
},
|
|
3318
3364
|
"transformOrigin": {
|
|
3319
3365
|
"center": "center",
|
|
3320
3366
|
"top": "top",
|
|
@@ -3327,6 +3373,7 @@
|
|
|
3327
3373
|
"top-left": "top left"
|
|
3328
3374
|
},
|
|
3329
3375
|
"transitionDelay": {
|
|
3376
|
+
"0": "0s",
|
|
3330
3377
|
"75": "75ms",
|
|
3331
3378
|
"100": "100ms",
|
|
3332
3379
|
"150": "150ms",
|
|
@@ -3471,6 +3518,7 @@
|
|
|
3471
3518
|
"clear",
|
|
3472
3519
|
"margin",
|
|
3473
3520
|
"boxSizing",
|
|
3521
|
+
"lineClamp",
|
|
3474
3522
|
"display",
|
|
3475
3523
|
"aspectRatio",
|
|
3476
3524
|
"height",
|
|
@@ -3484,6 +3532,7 @@
|
|
|
3484
3532
|
"flexGrow",
|
|
3485
3533
|
"flexBasis",
|
|
3486
3534
|
"tableLayout",
|
|
3535
|
+
"captionSide",
|
|
3487
3536
|
"borderCollapse",
|
|
3488
3537
|
"borderSpacing",
|
|
3489
3538
|
"transformOrigin",
|
|
@@ -3504,6 +3553,7 @@
|
|
|
3504
3553
|
"scrollPadding",
|
|
3505
3554
|
"listStylePosition",
|
|
3506
3555
|
"listStyleType",
|
|
3556
|
+
"listStyleImage",
|
|
3507
3557
|
"appearance",
|
|
3508
3558
|
"columns",
|
|
3509
3559
|
"breakBefore",
|
|
@@ -3535,6 +3585,7 @@
|
|
|
3535
3585
|
"overscrollBehavior",
|
|
3536
3586
|
"scrollBehavior",
|
|
3537
3587
|
"textOverflow",
|
|
3588
|
+
"hyphens",
|
|
3538
3589
|
"whitespace",
|
|
3539
3590
|
"wordBreak",
|
|
3540
3591
|
"borderRadius",
|
|
@@ -3640,31 +3691,15 @@
|
|
|
3640
3691
|
"[data-theme=\"dark\"]"
|
|
3641
3692
|
],
|
|
3642
3693
|
"content": {
|
|
3694
|
+
"relative": false,
|
|
3643
3695
|
"files": [],
|
|
3644
3696
|
"extract": {},
|
|
3645
3697
|
"transform": {}
|
|
3646
3698
|
},
|
|
3647
3699
|
"presets": [],
|
|
3648
|
-
"variantOrder": [
|
|
3649
|
-
"first",
|
|
3650
|
-
"last",
|
|
3651
|
-
"odd",
|
|
3652
|
-
"even",
|
|
3653
|
-
"visited",
|
|
3654
|
-
"checked",
|
|
3655
|
-
"empty",
|
|
3656
|
-
"read-only",
|
|
3657
|
-
"group-hover",
|
|
3658
|
-
"group-focus",
|
|
3659
|
-
"focus-within",
|
|
3660
|
-
"hover",
|
|
3661
|
-
"focus",
|
|
3662
|
-
"focus-visible",
|
|
3663
|
-
"active",
|
|
3664
|
-
"disabled"
|
|
3665
|
-
],
|
|
3666
3700
|
"prefix": "",
|
|
3667
3701
|
"important": false,
|
|
3668
3702
|
"separator": ":",
|
|
3669
|
-
"safelist": []
|
|
3703
|
+
"safelist": [],
|
|
3704
|
+
"blocklist": []
|
|
3670
3705
|
}
|