@sprinklrjs/spaceweb-themes 10.1.0 → 12.0.0-ci.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.
Files changed (40) hide show
  1. package/common-theme/theme.d.ts +4 -0
  2. package/common-theme/theme.js +4 -0
  3. package/common-theme/utilities.d.ts +193 -36
  4. package/common-theme/utilities.js +79 -36
  5. package/hyperspace/dark/index.d.ts +303 -52
  6. package/hyperspace/dark/theme.d.ts +79 -16
  7. package/hyperspace/dark/theme.js +65 -38
  8. package/hyperspace/dark/utilities.d.ts +224 -36
  9. package/hyperspace/dark/utilities.js +15 -0
  10. package/hyperspace/light/index.d.ts +303 -52
  11. package/hyperspace/light/theme.d.ts +79 -16
  12. package/hyperspace/light/theme.js +81 -54
  13. package/hyperspace/light/utilities.d.ts +224 -36
  14. package/hyperspace/light/utilities.js +25 -8
  15. package/hyperspace/themeVars.css +31 -8
  16. package/hyperspace/themeVars.min.css +1 -1
  17. package/package.json +6 -5
  18. package/space/dark/index.d.ts +258 -40
  19. package/space/dark/theme.d.ts +34 -4
  20. package/space/dark/theme.js +30 -4
  21. package/space/dark/utilities.d.ts +224 -36
  22. package/space/dark/utilities.js +15 -0
  23. package/space/light/index.d.ts +258 -40
  24. package/space/light/theme.d.ts +34 -4
  25. package/space/light/theme.js +32 -6
  26. package/space/light/utilities.d.ts +224 -36
  27. package/space/light/utilities.js +16 -1
  28. package/space/themeVars.css +24 -1
  29. package/space/themeVars.min.css +1 -1
  30. package/styles/globals.css +0 -0
  31. package/styles/globals.min.css +0 -0
  32. package/styles/normalize.css +4 -5
  33. package/styles/normalize.min.css +1 -1
  34. package/styles/tailwind.css +9163 -0
  35. package/styles/tailwind.min.css +1 -0
  36. package/styles/tokens.scss +488 -0
  37. package/types.d.ts +84 -1
  38. package/types.js +0 -0
  39. package/utilities.css +83 -5
  40. package/utilities.min.css +1 -1
@@ -90,6 +90,7 @@ declare const _default: {
90
90
  10: string;
91
91
  11: string;
92
92
  12: string;
93
+ 15: string;
93
94
  16: string;
94
95
  20: string;
95
96
  24: string;
@@ -99,6 +100,7 @@ declare const _default: {
99
100
  56: string;
100
101
  64: string;
101
102
  auto: string;
103
+ '05': string;
102
104
  px: string;
103
105
  '-1': string;
104
106
  '-2': string;
@@ -185,6 +187,7 @@ declare const _default: {
185
187
  10: string;
186
188
  11: string;
187
189
  12: string;
190
+ 15: string;
188
191
  16: string;
189
192
  20: string;
190
193
  24: string;
@@ -193,6 +196,7 @@ declare const _default: {
193
196
  48: string;
194
197
  56: string;
195
198
  64: string;
199
+ '05': string;
196
200
  px: string;
197
201
  };
198
202
  stroke: {
@@ -91,6 +91,7 @@ var theme = {
91
91
  10: '4rem',
92
92
  11: '4.4rem',
93
93
  12: '4.8rem',
94
+ 15: '-0.6rem',
94
95
  16: '6.4rem',
95
96
  20: '8rem',
96
97
  24: '9.6rem',
@@ -100,6 +101,7 @@ var theme = {
100
101
  56: '22.4rem',
101
102
  64: '25.6rem',
102
103
  auto: 'auto',
104
+ '05': '-0.2rem',
103
105
  px: '-1px',
104
106
  '-1': '-0.4rem',
105
107
  '-2': '-0.8rem',
@@ -167,6 +169,7 @@ var theme = {
167
169
  10: '4rem',
168
170
  11: '4.4rem',
169
171
  12: '4.8rem',
172
+ 15: '0.6rem',
170
173
  16: '6.4rem',
171
174
  20: '8rem',
172
175
  24: '9.6rem',
@@ -175,6 +178,7 @@ var theme = {
175
178
  48: '19.2rem',
176
179
  56: '22.4rem',
177
180
  64: '25.6rem',
181
+ '05': '0.2rem',
178
182
  px: '1px'
179
183
  },
180
184
  stroke: { current: 'currentColor' },
@@ -715,6 +715,9 @@ declare const _default: {
715
715
  'cursor-wait': {
716
716
  cursor: string;
717
717
  };
718
+ 'cursor-grab': {
719
+ cursor: string;
720
+ };
718
721
  'cursor-text': {
719
722
  cursor: string;
720
723
  };
@@ -882,7 +885,7 @@ declare const _default: {
882
885
  'h-px': {
883
886
  height: string;
884
887
  };
885
- 'h-1\\/2': {
888
+ 'h-1/2': {
886
889
  height: string;
887
890
  };
888
891
  'h-full': {
@@ -1144,6 +1147,30 @@ declare const _default: {
1144
1147
  marginLeft: any;
1145
1148
  marginRight: any;
1146
1149
  };
1150
+ 'm-1.5': {
1151
+ marginTop: any;
1152
+ marginBottom: any;
1153
+ marginLeft: any;
1154
+ marginRight: any;
1155
+ };
1156
+ 'm-0.5': {
1157
+ marginTop: any;
1158
+ marginBottom: any;
1159
+ marginLeft: any;
1160
+ marginRight: any;
1161
+ };
1162
+ '-m-1.5': {
1163
+ marginTop: any;
1164
+ marginBottom: any;
1165
+ marginLeft: any;
1166
+ marginRight: any;
1167
+ };
1168
+ '-m-0.5': {
1169
+ marginTop: any;
1170
+ marginBottom: any;
1171
+ marginLeft: any;
1172
+ marginRight: any;
1173
+ };
1147
1174
  'm-px': {
1148
1175
  marginTop: any;
1149
1176
  marginBottom: any;
@@ -1452,6 +1479,38 @@ declare const _default: {
1452
1479
  marginLeft: string;
1453
1480
  marginRight: string;
1454
1481
  };
1482
+ 'my-1.5': {
1483
+ marginTop: string;
1484
+ marginBottom: string;
1485
+ };
1486
+ 'mx-1.5': {
1487
+ marginLeft: string;
1488
+ marginRight: string;
1489
+ };
1490
+ 'my-0.5': {
1491
+ marginTop: string;
1492
+ marginBottom: string;
1493
+ };
1494
+ 'mx-0.5': {
1495
+ marginLeft: string;
1496
+ marginRight: string;
1497
+ };
1498
+ '-my-1.5': {
1499
+ marginTop: string;
1500
+ marginBottom: string;
1501
+ };
1502
+ '-mx-1.5': {
1503
+ marginLeft: string;
1504
+ marginRight: string;
1505
+ };
1506
+ '-my-0.5': {
1507
+ marginTop: string;
1508
+ marginBottom: string;
1509
+ };
1510
+ '-mx-0.5': {
1511
+ marginLeft: string;
1512
+ marginRight: string;
1513
+ };
1455
1514
  'my-px': {
1456
1515
  marginTop: string;
1457
1516
  marginBottom: string;
@@ -1892,6 +1951,54 @@ declare const _default: {
1892
1951
  'ml-auto': {
1893
1952
  marginLeft: string;
1894
1953
  };
1954
+ 'mt-1.5': {
1955
+ marginTop: string;
1956
+ };
1957
+ 'mr-1.5': {
1958
+ marginRight: string;
1959
+ };
1960
+ 'mb-1.5': {
1961
+ marginBottom: string;
1962
+ };
1963
+ 'ml-1.5': {
1964
+ marginLeft: string;
1965
+ };
1966
+ 'mt-0.5': {
1967
+ marginTop: string;
1968
+ };
1969
+ 'mr-0.5': {
1970
+ marginRight: string;
1971
+ };
1972
+ 'mb-0.5': {
1973
+ marginBottom: string;
1974
+ };
1975
+ 'ml-0.5': {
1976
+ marginLeft: string;
1977
+ };
1978
+ '-mt-1.5': {
1979
+ marginTop: string;
1980
+ };
1981
+ '-mr-1.5': {
1982
+ marginRight: string;
1983
+ };
1984
+ '-mb-1.5': {
1985
+ marginBottom: string;
1986
+ };
1987
+ '-ml-1.5': {
1988
+ marginLeft: string;
1989
+ };
1990
+ '-mt-0.5': {
1991
+ marginTop: string;
1992
+ };
1993
+ '-mr-0.5': {
1994
+ marginRight: string;
1995
+ };
1996
+ '-mb-0.5': {
1997
+ marginBottom: string;
1998
+ };
1999
+ '-ml-0.5': {
2000
+ marginLeft: string;
2001
+ };
1895
2002
  'mt-px': {
1896
2003
  marginTop: string;
1897
2004
  };
@@ -2504,6 +2611,18 @@ declare const _default: {
2504
2611
  paddingLeft: any;
2505
2612
  paddingRight: any;
2506
2613
  };
2614
+ 'p-1.5': {
2615
+ paddingTop: any;
2616
+ paddingBottom: any;
2617
+ paddingLeft: any;
2618
+ paddingRight: any;
2619
+ };
2620
+ 'p-0.5': {
2621
+ paddingTop: any;
2622
+ paddingBottom: any;
2623
+ paddingLeft: any;
2624
+ paddingRight: any;
2625
+ };
2507
2626
  'p-px': {
2508
2627
  paddingTop: any;
2509
2628
  paddingBottom: any;
@@ -2678,6 +2797,22 @@ declare const _default: {
2678
2797
  paddingLeft: string;
2679
2798
  paddingRight: string;
2680
2799
  };
2800
+ 'py-1.5': {
2801
+ paddingTop: string;
2802
+ paddingBottom: string;
2803
+ };
2804
+ 'px-1.5': {
2805
+ paddingLeft: string;
2806
+ paddingRight: string;
2807
+ };
2808
+ 'py-0.5': {
2809
+ paddingTop: string;
2810
+ paddingBottom: string;
2811
+ };
2812
+ 'px-0.5': {
2813
+ paddingLeft: string;
2814
+ paddingRight: string;
2815
+ };
2681
2816
  'py-px': {
2682
2817
  paddingTop: string;
2683
2818
  paddingBottom: string;
@@ -2938,6 +3073,30 @@ declare const _default: {
2938
3073
  'pl-64': {
2939
3074
  paddingLeft: string;
2940
3075
  };
3076
+ 'pt-1.5': {
3077
+ paddingTop: string;
3078
+ };
3079
+ 'pr-1.5': {
3080
+ paddingRight: string;
3081
+ };
3082
+ 'pb-1.5': {
3083
+ paddingBottom: string;
3084
+ };
3085
+ 'pl-1.5': {
3086
+ paddingLeft: string;
3087
+ };
3088
+ 'pt-0.5': {
3089
+ paddingTop: string;
3090
+ };
3091
+ 'pr-0.5': {
3092
+ paddingRight: string;
3093
+ };
3094
+ 'pb-0.5': {
3095
+ paddingBottom: string;
3096
+ };
3097
+ 'pl-0.5': {
3098
+ paddingLeft: string;
3099
+ };
2941
3100
  'pt-px': {
2942
3101
  paddingTop: string;
2943
3102
  };
@@ -3031,91 +3190,91 @@ declare const _default: {
3031
3190
  'w-px': {
3032
3191
  width: string;
3033
3192
  };
3034
- 'w-1\\/2': {
3193
+ 'w-1/2': {
3035
3194
  width: string;
3036
3195
  };
3037
- 'w-1\\/3': {
3196
+ 'w-1/3': {
3038
3197
  width: string;
3039
3198
  };
3040
- 'w-1\\/4': {
3199
+ 'w-1/4': {
3041
3200
  width: string;
3042
3201
  };
3043
- 'w-2\\/3': {
3202
+ 'w-2/3': {
3044
3203
  width: string;
3045
3204
  };
3046
- 'w-2\\/4': {
3205
+ 'w-2/4': {
3047
3206
  width: string;
3048
3207
  };
3049
- 'w-3\\/4': {
3208
+ 'w-3/4': {
3050
3209
  width: string;
3051
3210
  };
3052
- 'w-1\\/24': {
3211
+ 'w-1/24': {
3053
3212
  width: string;
3054
3213
  };
3055
- 'w-2\\/24': {
3214
+ 'w-2/24': {
3056
3215
  width: string;
3057
3216
  };
3058
- 'w-3\\/24': {
3217
+ 'w-3/24': {
3059
3218
  width: string;
3060
3219
  };
3061
- 'w-4\\/24': {
3220
+ 'w-4/24': {
3062
3221
  width: string;
3063
3222
  };
3064
- 'w-5\\/24': {
3223
+ 'w-5/24': {
3065
3224
  width: string;
3066
3225
  };
3067
- 'w-6\\/24': {
3226
+ 'w-6/24': {
3068
3227
  width: string;
3069
3228
  };
3070
- 'w-7\\/24': {
3229
+ 'w-7/24': {
3071
3230
  width: string;
3072
3231
  };
3073
- 'w-8\\/24': {
3232
+ 'w-8/24': {
3074
3233
  width: string;
3075
3234
  };
3076
- 'w-9\\/24': {
3235
+ 'w-9/24': {
3077
3236
  width: string;
3078
3237
  };
3079
- 'w-10\\/24': {
3238
+ 'w-10/24': {
3080
3239
  width: string;
3081
3240
  };
3082
- 'w-11\\/24': {
3241
+ 'w-11/24': {
3083
3242
  width: string;
3084
3243
  };
3085
- 'w-12\\/24': {
3244
+ 'w-12/24': {
3086
3245
  width: string;
3087
3246
  };
3088
- 'w-13\\/24': {
3247
+ 'w-13/24': {
3089
3248
  width: string;
3090
3249
  };
3091
- 'w-14\\/24': {
3250
+ 'w-14/24': {
3092
3251
  width: string;
3093
3252
  };
3094
- 'w-15\\/24': {
3253
+ 'w-15/24': {
3095
3254
  width: string;
3096
3255
  };
3097
- 'w-16\\/24': {
3256
+ 'w-16/24': {
3098
3257
  width: string;
3099
3258
  };
3100
- 'w-17\\/24': {
3259
+ 'w-17/24': {
3101
3260
  width: string;
3102
3261
  };
3103
- 'w-18\\/24': {
3262
+ 'w-18/24': {
3104
3263
  width: string;
3105
3264
  };
3106
- 'w-19\\/24': {
3265
+ 'w-19/24': {
3107
3266
  width: string;
3108
3267
  };
3109
- 'w-20\\/24': {
3268
+ 'w-20/24': {
3110
3269
  width: string;
3111
3270
  };
3112
- 'w-21\\/24': {
3271
+ 'w-21/24': {
3113
3272
  width: string;
3114
3273
  };
3115
- 'w-22\\/24': {
3274
+ 'w-22/24': {
3116
3275
  width: string;
3117
3276
  };
3118
- 'w-23\\/24': {
3277
+ 'w-23/24': {
3119
3278
  width: string;
3120
3279
  };
3121
3280
  'w-full': {
@@ -4148,10 +4307,10 @@ declare const _default: {
4148
4307
  '-translate-x-full': {
4149
4308
  '-TransformTranslateX': string;
4150
4309
  };
4151
- '-translate-x-1\\/2': {
4310
+ '-translate-x-1/2': {
4152
4311
  '-TransformTranslateX': string;
4153
4312
  };
4154
- 'translate-x-1\\/2': {
4313
+ 'translate-x-1/2': {
4155
4314
  '-TransformTranslateX': string;
4156
4315
  };
4157
4316
  'translate-x-full': {
@@ -4289,10 +4448,10 @@ declare const _default: {
4289
4448
  '-translate-y-full': {
4290
4449
  '-TransformTranslateY': string;
4291
4450
  };
4292
- '-translate-y-1\\/2': {
4451
+ '-translate-y-1/2': {
4293
4452
  '-TransformTranslateY': string;
4294
4453
  };
4295
- 'translate-y-1\\/2': {
4454
+ 'translate-y-1/2': {
4296
4455
  '-TransformTranslateY': string;
4297
4456
  };
4298
4457
  'translate-y-full': {
@@ -5039,12 +5198,10 @@ declare const _default: {
5039
5198
  whiteSpace: string;
5040
5199
  };
5041
5200
  'break-normal': {
5042
- wordWrap: string;
5043
5201
  overflowWrap: string;
5044
5202
  wordBreak: string;
5045
5203
  };
5046
5204
  'break-words': {
5047
- wordWrap: string;
5048
5205
  overflowWrap: string;
5049
5206
  };
5050
5207
  'break-all': {
@@ -224,6 +224,7 @@ exports["default"] = {
224
224
  'cursor-default': { cursor: 'default' },
225
225
  'cursor-pointer': { cursor: 'pointer' },
226
226
  'cursor-wait': { cursor: 'wait' },
227
+ 'cursor-grab': { cursor: 'grab' },
227
228
  'cursor-text': { cursor: 'text' },
228
229
  'cursor-move': { cursor: 'move' },
229
230
  'cursor-not-allowed': { cursor: 'not-allowed' },
@@ -279,7 +280,7 @@ exports["default"] = {
279
280
  'h-64': { height: '25.6rem' },
280
281
  'h-auto': { height: 'auto' },
281
282
  'h-px': { height: '1px' },
282
- 'h-1\\/2': { height: '50%' },
283
+ 'h-1/2': { height: '50%' },
283
284
  'h-full': { height: '100%' },
284
285
  'h-screen': { height: '100vh' },
285
286
  'inset-0': { top: '0', right: '0', bottom: '0', left: '0' },
@@ -341,6 +342,10 @@ exports["default"] = {
341
342
  'm-56': margin('22.4rem'),
342
343
  'm-64': margin('25.6rem'),
343
344
  'm-auto': margin('auto'),
345
+ 'm-1.5': margin('0.6rem'),
346
+ 'm-0.5': margin('0.2rem'),
347
+ '-m-1.5': margin('-0.6rem'),
348
+ '-m-0.5': margin('-0.2rem'),
344
349
  'm-px': margin('1px'),
345
350
  '-m-1': margin('-0.4rem'),
346
351
  '-m-2': margin('-0.8rem'),
@@ -407,6 +412,14 @@ exports["default"] = {
407
412
  'mx-64': { marginLeft: '25.6rem', marginRight: '25.6rem' },
408
413
  'my-auto': { marginTop: 'auto', marginBottom: 'auto' },
409
414
  'mx-auto': { marginLeft: 'auto', marginRight: 'auto' },
415
+ 'my-1.5': { marginTop: '0.6rem', marginBottom: '0.6rem' },
416
+ 'mx-1.5': { marginLeft: '0.6rem', marginRight: '0.6rem' },
417
+ 'my-0.5': { marginTop: '0.2rem', marginBottom: '0.2rem' },
418
+ 'mx-0.5': { marginLeft: '0.2rem', marginRight: '0.2rem' },
419
+ '-my-1.5': { marginTop: '-0.6rem', marginBottom: '-0.6rem' },
420
+ '-mx-1.5': { marginLeft: '-0.6rem', marginRight: '-0.6rem' },
421
+ '-my-0.5': { marginTop: '-0.2rem', marginBottom: '-0.2rem' },
422
+ '-mx-0.5': { marginLeft: '-0.2rem', marginRight: '-0.2rem' },
410
423
  'my-px': { marginTop: '1px', marginBottom: '1px' },
411
424
  'mx-px': { marginLeft: '1px', marginRight: '1px' },
412
425
  '-my-1': { marginTop: '-0.4rem', marginBottom: '-0.4rem' },
@@ -539,6 +552,22 @@ exports["default"] = {
539
552
  'mr-auto': { marginRight: 'auto' },
540
553
  'mb-auto': { marginBottom: 'auto' },
541
554
  'ml-auto': { marginLeft: 'auto' },
555
+ 'mt-1.5': { marginTop: '0.6rem' },
556
+ 'mr-1.5': { marginRight: '0.6rem' },
557
+ 'mb-1.5': { marginBottom: '0.6rem' },
558
+ 'ml-1.5': { marginLeft: '0.6rem' },
559
+ 'mt-0.5': { marginTop: '0.2rem' },
560
+ 'mr-0.5': { marginRight: '0.2rem' },
561
+ 'mb-0.5': { marginBottom: '0.2rem' },
562
+ 'ml-0.5': { marginLeft: '0.2rem' },
563
+ '-mt-1.5': { marginTop: '-0.6rem' },
564
+ '-mr-1.5': { marginRight: '-0.6rem' },
565
+ '-mb-1.5': { marginBottom: '-0.6rem' },
566
+ '-ml-1.5': { marginLeft: '-0.6rem' },
567
+ '-mt-0.5': { marginTop: '-0.2rem' },
568
+ '-mr-0.5': { marginRight: '-0.2rem' },
569
+ '-mb-0.5': { marginBottom: '-0.2rem' },
570
+ '-ml-0.5': { marginLeft: '-0.2rem' },
542
571
  'mt-px': { marginTop: '1px' },
543
572
  'mr-px': { marginRight: '1px' },
544
573
  'mb-px': { marginBottom: '1px' },
@@ -722,6 +751,8 @@ exports["default"] = {
722
751
  'p-48': padding('19.2rem'),
723
752
  'p-56': padding('22.4rem'),
724
753
  'p-64': padding('25.6rem'),
754
+ 'p-1.5': padding('0.6rem'),
755
+ 'p-0.5': padding('0.2rem'),
725
756
  'p-px': padding('1px'),
726
757
  'py-0': { paddingTop: '0', paddingBottom: '0' },
727
758
  'px-0': { paddingLeft: '0', paddingRight: '0' },
@@ -765,6 +796,10 @@ exports["default"] = {
765
796
  'px-56': { paddingLeft: '22.4rem', paddingRight: '22.4rem' },
766
797
  'py-64': { paddingTop: '25.6rem', paddingBottom: '25.6rem' },
767
798
  'px-64': { paddingLeft: '25.6rem', paddingRight: '25.6rem' },
799
+ 'py-1.5': { paddingTop: '0.6rem', paddingBottom: '0.6rem' },
800
+ 'px-1.5': { paddingLeft: '0.6rem', paddingRight: '0.6rem' },
801
+ 'py-0.5': { paddingTop: '0.2rem', paddingBottom: '0.2rem' },
802
+ 'px-0.5': { paddingLeft: '0.2rem', paddingRight: '0.2rem' },
768
803
  'py-px': { paddingTop: '1px', paddingBottom: '1px' },
769
804
  'px-px': { paddingLeft: '1px', paddingRight: '1px' },
770
805
  'pt-0': { paddingTop: '0' },
@@ -851,6 +886,14 @@ exports["default"] = {
851
886
  'pr-64': { paddingRight: '25.6rem' },
852
887
  'pb-64': { paddingBottom: '25.6rem' },
853
888
  'pl-64': { paddingLeft: '25.6rem' },
889
+ 'pt-1.5': { paddingTop: '0.6rem' },
890
+ 'pr-1.5': { paddingRight: '0.6rem' },
891
+ 'pb-1.5': { paddingBottom: '0.6rem' },
892
+ 'pl-1.5': { paddingLeft: '0.6rem' },
893
+ 'pt-0.5': { paddingTop: '0.2rem' },
894
+ 'pr-0.5': { paddingRight: '0.2rem' },
895
+ 'pb-0.5': { paddingBottom: '0.2rem' },
896
+ 'pl-0.5': { paddingLeft: '0.2rem' },
854
897
  'pt-px': { paddingTop: '1px' },
855
898
  'pr-px': { paddingRight: '1px' },
856
899
  'pb-px': { paddingBottom: '1px' },
@@ -882,35 +925,35 @@ exports["default"] = {
882
925
  'w-64': { width: '25.6rem' },
883
926
  'w-auto': { width: 'auto' },
884
927
  'w-px': { width: '1px' },
885
- 'w-1\\/2': { width: '50%' },
886
- 'w-1\\/3': { width: '33.333333%' },
887
- 'w-1\\/4': { width: '25%' },
888
- 'w-2\\/3': { width: '66.666667%' },
889
- 'w-2\\/4': { width: '50%' },
890
- 'w-3\\/4': { width: '75%' },
891
- 'w-1\\/24': { width: '4.166667%' },
892
- 'w-2\\/24': { width: '8.333333%' },
893
- 'w-3\\/24': { width: '12.5%' },
894
- 'w-4\\/24': { width: '16.666667%' },
895
- 'w-5\\/24': { width: '20.833333%' },
896
- 'w-6\\/24': { width: '25%' },
897
- 'w-7\\/24': { width: '29.166667%' },
898
- 'w-8\\/24': { width: '33.333333%' },
899
- 'w-9\\/24': { width: '37.5%' },
900
- 'w-10\\/24': { width: '41.666667%' },
901
- 'w-11\\/24': { width: '45.833333%' },
902
- 'w-12\\/24': { width: '50%' },
903
- 'w-13\\/24': { width: '54.166667%' },
904
- 'w-14\\/24': { width: '58.333333%' },
905
- 'w-15\\/24': { width: '62.5%' },
906
- 'w-16\\/24': { width: '66.666667%' },
907
- 'w-17\\/24': { width: '70.833333%' },
908
- 'w-18\\/24': { width: '75%' },
909
- 'w-19\\/24': { width: '79.166667%' },
910
- 'w-20\\/24': { width: '83.333333%' },
911
- 'w-21\\/24': { width: '87.5%' },
912
- 'w-22\\/24': { width: '91.666667%' },
913
- 'w-23\\/24': { width: '95.833333%' },
928
+ 'w-1/2': { width: '50%' },
929
+ 'w-1/3': { width: '33.333333%' },
930
+ 'w-1/4': { width: '25%' },
931
+ 'w-2/3': { width: '66.666667%' },
932
+ 'w-2/4': { width: '50%' },
933
+ 'w-3/4': { width: '75%' },
934
+ 'w-1/24': { width: '4.166667%' },
935
+ 'w-2/24': { width: '8.333333%' },
936
+ 'w-3/24': { width: '12.5%' },
937
+ 'w-4/24': { width: '16.666667%' },
938
+ 'w-5/24': { width: '20.833333%' },
939
+ 'w-6/24': { width: '25%' },
940
+ 'w-7/24': { width: '29.166667%' },
941
+ 'w-8/24': { width: '33.333333%' },
942
+ 'w-9/24': { width: '37.5%' },
943
+ 'w-10/24': { width: '41.666667%' },
944
+ 'w-11/24': { width: '45.833333%' },
945
+ 'w-12/24': { width: '50%' },
946
+ 'w-13/24': { width: '54.166667%' },
947
+ 'w-14/24': { width: '58.333333%' },
948
+ 'w-15/24': { width: '62.5%' },
949
+ 'w-16/24': { width: '66.666667%' },
950
+ 'w-17/24': { width: '70.833333%' },
951
+ 'w-18/24': { width: '75%' },
952
+ 'w-19/24': { width: '79.166667%' },
953
+ 'w-20/24': { width: '83.333333%' },
954
+ 'w-21/24': { width: '87.5%' },
955
+ 'w-22/24': { width: '91.666667%' },
956
+ 'w-23/24': { width: '95.833333%' },
914
957
  'w-full': { width: '100%' },
915
958
  'z-0': { zIndex: '0' },
916
959
  'z-10': { zIndex: '10' },
@@ -1229,8 +1272,8 @@ exports["default"] = {
1229
1272
  '-translate-x-64': { '-TransformTranslateX': '-25.6rem' },
1230
1273
  '-translate-x-px': { '-TransformTranslateX': '-1px' },
1231
1274
  '-translate-x-full': { '-TransformTranslateX': '-100%' },
1232
- '-translate-x-1\\/2': { '-TransformTranslateX': '-50%' },
1233
- 'translate-x-1\\/2': { '-TransformTranslateX': '50%' },
1275
+ '-translate-x-1/2': { '-TransformTranslateX': '-50%' },
1276
+ 'translate-x-1/2': { '-TransformTranslateX': '50%' },
1234
1277
  'translate-x-full': { '-TransformTranslateX': '100%' },
1235
1278
  'translate-y-0': { '-TransformTranslateY': '0' },
1236
1279
  'translate-y-1': { '-TransformTranslateY': '0.4rem' },
@@ -1276,8 +1319,8 @@ exports["default"] = {
1276
1319
  '-translate-y-64': { '-TransformTranslateY': '-25.6rem' },
1277
1320
  '-translate-y-px': { '-TransformTranslateY': '-1px' },
1278
1321
  '-translate-y-full': { '-TransformTranslateY': '-100%' },
1279
- '-translate-y-1\\/2': { '-TransformTranslateY': '-50%' },
1280
- 'translate-y-1\\/2': { '-TransformTranslateY': '50%' },
1322
+ '-translate-y-1/2': { '-TransformTranslateY': '-50%' },
1323
+ 'translate-y-1/2': { '-TransformTranslateY': '50%' },
1281
1324
  'translate-y-full': { '-TransformTranslateY': '100%' },
1282
1325
  'skew-x-0': { '-TransformSkewX': '0' },
1283
1326
  'skew-x-3': { '-TransformSkewX': '3deg' },
@@ -1547,8 +1590,8 @@ exports["default"] = {
1547
1590
  'whitespace-pre': { whiteSpace: 'pre' },
1548
1591
  'whitespace-pre-line': { whiteSpace: 'pre-line' },
1549
1592
  'whitespace-pre-wrap': { whiteSpace: 'pre-wrap' },
1550
- 'break-normal': { wordWrap: 'normal', overflowWrap: 'normal', wordBreak: 'normal' },
1551
- 'break-words': { wordWrap: 'break-word', overflowWrap: 'break-word' },
1593
+ 'break-normal': { overflowWrap: 'normal', wordBreak: 'normal' },
1594
+ 'break-words': { overflowWrap: 'anywhere' },
1552
1595
  'break-all': { wordBreak: 'break-all' },
1553
1596
  truncate: { overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' },
1554
1597
  'tabular-nums': { fontVariantNumeric: 'tabular-nums' },