@volvo-cars/css 1.40.0 → 1.41.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/dist/styles.d.ts CHANGED
@@ -642,6 +642,10 @@ export interface ClassNames {
642
642
  * ```css
643
643
  * bottom: 1rem
644
644
  * ``` */ readonly bottom16: 'bottom-16';
645
+ /**
646
+ * ```css
647
+ * bottom: .125rem
648
+ * ``` */ readonly bottom2: 'bottom-2';
645
649
  /**
646
650
  * ```css
647
651
  * bottom: 1.5rem
@@ -928,6 +932,10 @@ export interface ClassNames {
928
932
  * ```css
929
933
  * inset-inline-end: 1rem
930
934
  * ``` */ readonly end16: 'end-16';
935
+ /**
936
+ * ```css
937
+ * inset-inline-end: .125rem
938
+ * ``` */ readonly end2: 'end-2';
931
939
  /**
932
940
  * ```css
933
941
  * inset-inline-end: 1.5rem
@@ -1070,6 +1078,10 @@ export interface ClassNames {
1070
1078
  * ```css
1071
1079
  * gap: 1rem
1072
1080
  * ``` */ readonly gap16: 'gap-16';
1081
+ /**
1082
+ * ```css
1083
+ * gap: .125rem
1084
+ * ``` */ readonly gap2: 'gap-2';
1073
1085
  /**
1074
1086
  * ```css
1075
1087
  * gap: 1.5rem
@@ -1094,6 +1106,10 @@ export interface ClassNames {
1094
1106
  * ```css
1095
1107
  * gap: .5rem
1096
1108
  * ``` */ readonly gap8: 'gap-8';
1109
+ /**
1110
+ * ```css
1111
+ * gap: var(--v-space-gridded-element-gap)
1112
+ * ``` */ readonly gapGriddedElement: 'gap-gridded-element';
1097
1113
  /**
1098
1114
  * ```css
1099
1115
  * column-gap: 0
@@ -1106,6 +1122,10 @@ export interface ClassNames {
1106
1122
  * ```css
1107
1123
  * column-gap: 1rem
1108
1124
  * ``` */ readonly gapX16: 'gap-x-16';
1125
+ /**
1126
+ * ```css
1127
+ * column-gap: .125rem
1128
+ * ``` */ readonly gapX2: 'gap-x-2';
1109
1129
  /**
1110
1130
  * ```css
1111
1131
  * column-gap: 1.5rem
@@ -1130,6 +1150,10 @@ export interface ClassNames {
1130
1150
  * ```css
1131
1151
  * column-gap: .5rem
1132
1152
  * ``` */ readonly gapX8: 'gap-x-8';
1153
+ /**
1154
+ * ```css
1155
+ * column-gap: var(--v-space-gridded-element-gap)
1156
+ * ``` */ readonly gapXGriddedElement: 'gap-x-gridded-element';
1133
1157
  /**
1134
1158
  * ```css
1135
1159
  * column-gap: var(--v-space-gutter)
@@ -1146,10 +1170,18 @@ export interface ClassNames {
1146
1170
  * ```css
1147
1171
  * row-gap: 1rem
1148
1172
  * ``` */ readonly gapY16: 'gap-y-16';
1173
+ /**
1174
+ * ```css
1175
+ * row-gap: .125rem
1176
+ * ``` */ readonly gapY2: 'gap-y-2';
1149
1177
  /**
1150
1178
  * ```css
1151
1179
  * row-gap: 1.5rem
1152
1180
  * ``` */ readonly gapY24: 'gap-y-24';
1181
+ /**
1182
+ * ```css
1183
+ * row-gap: var(--v-space-2xl)
1184
+ * ``` */ readonly gapY2xl: 'gap-y-2xl';
1153
1185
  /**
1154
1186
  * ```css
1155
1187
  * row-gap: 2rem
@@ -1170,18 +1202,42 @@ export interface ClassNames {
1170
1202
  * ```css
1171
1203
  * row-gap: .5rem
1172
1204
  * ``` */ readonly gapY8: 'gap-y-8';
1205
+ /**
1206
+ * ```css
1207
+ * row-gap: var(--v-space-gridded-element-gap)
1208
+ * ``` */ readonly gapYGriddedElement: 'gap-y-gridded-element';
1173
1209
  /**
1174
1210
  * ```css
1175
1211
  * row-gap: var(--v-space-l)
1176
1212
  * ``` */ readonly gapYL: 'gap-y-l';
1213
+ /**
1214
+ * ```css
1215
+ * row-gap: var(--v-space-lg)
1216
+ * ``` */ readonly gapYLg: 'gap-y-lg';
1177
1217
  /**
1178
1218
  * ```css
1179
1219
  * row-gap: var(--v-space-m)
1180
1220
  * ``` */ readonly gapYM: 'gap-y-m';
1221
+ /**
1222
+ * ```css
1223
+ * row-gap: var(--v-space-md)
1224
+ * ``` */ readonly gapYMd: 'gap-y-md';
1181
1225
  /**
1182
1226
  * ```css
1183
1227
  * row-gap: var(--v-space-s)
1184
1228
  * ``` */ readonly gapYS: 'gap-y-s';
1229
+ /**
1230
+ * ```css
1231
+ * row-gap: var(--v-space-sm)
1232
+ * ``` */ readonly gapYSm: 'gap-y-sm';
1233
+ /**
1234
+ * ```css
1235
+ * row-gap: var(--v-space-xl)
1236
+ * ``` */ readonly gapYXl: 'gap-y-xl';
1237
+ /**
1238
+ * ```css
1239
+ * row-gap: var(--v-space-xs)
1240
+ * ``` */ readonly gapYXs: 'gap-y-xs';
1185
1241
  /**
1186
1242
  * ```css
1187
1243
  * --_display-inner: grid
@@ -1629,6 +1685,10 @@ export interface ClassNames {
1629
1685
  * ```css
1630
1686
  * margin-bottom: 1.5rem
1631
1687
  * ``` */ readonly mb24: 'mb-24';
1688
+ /**
1689
+ * ```css
1690
+ * margin-bottom: var(--v-space-2xl)
1691
+ * ``` */ readonly mb2xl: 'mb-2xl';
1632
1692
  /**
1633
1693
  * ```css
1634
1694
  * margin-bottom: 2rem
@@ -1657,14 +1717,34 @@ export interface ClassNames {
1657
1717
  * ```css
1658
1718
  * margin-bottom: var(--v-space-l)
1659
1719
  * ``` */ readonly mbL: 'mb-l';
1720
+ /**
1721
+ * ```css
1722
+ * margin-bottom: var(--v-space-lg)
1723
+ * ``` */ readonly mbLg: 'mb-lg';
1660
1724
  /**
1661
1725
  * ```css
1662
1726
  * margin-bottom: var(--v-space-m)
1663
1727
  * ``` */ readonly mbM: 'mb-m';
1728
+ /**
1729
+ * ```css
1730
+ * margin-bottom: var(--v-space-md)
1731
+ * ``` */ readonly mbMd: 'mb-md';
1664
1732
  /**
1665
1733
  * ```css
1666
1734
  * margin-bottom: var(--v-space-s)
1667
1735
  * ``` */ readonly mbS: 'mb-s';
1736
+ /**
1737
+ * ```css
1738
+ * margin-bottom: var(--v-space-sm)
1739
+ * ``` */ readonly mbSm: 'mb-sm';
1740
+ /**
1741
+ * ```css
1742
+ * margin-bottom: var(--v-space-xl)
1743
+ * ``` */ readonly mbXl: 'mb-xl';
1744
+ /**
1745
+ * ```css
1746
+ * margin-bottom: var(--v-space-xs)
1747
+ * ``` */ readonly mbXs: 'mb-xs';
1668
1748
  /**
1669
1749
  * ```css
1670
1750
  * font-size: var(--v-font-12-size)
@@ -1839,6 +1919,10 @@ export interface ClassNames {
1839
1919
  * ```css
1840
1920
  * margin-top: 1.5rem
1841
1921
  * ``` */ readonly mt24: 'mt-24';
1922
+ /**
1923
+ * ```css
1924
+ * margin-top: var(--v-space-2xl)
1925
+ * ``` */ readonly mt2xl: 'mt-2xl';
1842
1926
  /**
1843
1927
  * ```css
1844
1928
  * margin-top: 2rem
@@ -1867,14 +1951,34 @@ export interface ClassNames {
1867
1951
  * ```css
1868
1952
  * margin-top: var(--v-space-l)
1869
1953
  * ``` */ readonly mtL: 'mt-l';
1954
+ /**
1955
+ * ```css
1956
+ * margin-top: var(--v-space-lg)
1957
+ * ``` */ readonly mtLg: 'mt-lg';
1870
1958
  /**
1871
1959
  * ```css
1872
1960
  * margin-top: var(--v-space-m)
1873
1961
  * ``` */ readonly mtM: 'mt-m';
1962
+ /**
1963
+ * ```css
1964
+ * margin-top: var(--v-space-md)
1965
+ * ``` */ readonly mtMd: 'mt-md';
1874
1966
  /**
1875
1967
  * ```css
1876
1968
  * margin-top: var(--v-space-s)
1877
1969
  * ``` */ readonly mtS: 'mt-s';
1970
+ /**
1971
+ * ```css
1972
+ * margin-top: var(--v-space-sm)
1973
+ * ``` */ readonly mtSm: 'mt-sm';
1974
+ /**
1975
+ * ```css
1976
+ * margin-top: var(--v-space-xl)
1977
+ * ``` */ readonly mtXl: 'mt-xl';
1978
+ /**
1979
+ * ```css
1980
+ * margin-top: var(--v-space-xs)
1981
+ * ``` */ readonly mtXs: 'mt-xs';
1878
1982
  /**
1879
1983
  * ```css
1880
1984
  * margin-inline-end: 0
@@ -1960,6 +2064,11 @@ export interface ClassNames {
1960
2064
  * margin-top: 1.5rem
1961
2065
  * margin-bottom: 1.5rem
1962
2066
  * ``` */ readonly my24: 'my-24';
2067
+ /**
2068
+ * ```css
2069
+ * margin-top: var(--v-space-2xl)
2070
+ * margin-bottom: var(--v-space-2xl)
2071
+ * ``` */ readonly my2xl: 'my-2xl';
1963
2072
  /**
1964
2073
  * ```css
1965
2074
  * margin-top: 2rem
@@ -1995,16 +2104,41 @@ export interface ClassNames {
1995
2104
  * margin-top: var(--v-space-l)
1996
2105
  * margin-bottom: var(--v-space-l)
1997
2106
  * ``` */ readonly myL: 'my-l';
2107
+ /**
2108
+ * ```css
2109
+ * margin-top: var(--v-space-lg)
2110
+ * margin-bottom: var(--v-space-lg)
2111
+ * ``` */ readonly myLg: 'my-lg';
1998
2112
  /**
1999
2113
  * ```css
2000
2114
  * margin-top: var(--v-space-m)
2001
2115
  * margin-bottom: var(--v-space-m)
2002
2116
  * ``` */ readonly myM: 'my-m';
2117
+ /**
2118
+ * ```css
2119
+ * margin-top: var(--v-space-md)
2120
+ * margin-bottom: var(--v-space-md)
2121
+ * ``` */ readonly myMd: 'my-md';
2003
2122
  /**
2004
2123
  * ```css
2005
2124
  * margin-top: var(--v-space-s)
2006
2125
  * margin-bottom: var(--v-space-s)
2007
2126
  * ``` */ readonly myS: 'my-s';
2127
+ /**
2128
+ * ```css
2129
+ * margin-top: var(--v-space-sm)
2130
+ * margin-bottom: var(--v-space-sm)
2131
+ * ``` */ readonly mySm: 'my-sm';
2132
+ /**
2133
+ * ```css
2134
+ * margin-top: var(--v-space-xl)
2135
+ * margin-bottom: var(--v-space-xl)
2136
+ * ``` */ readonly myXl: 'my-xl';
2137
+ /**
2138
+ * ```css
2139
+ * margin-top: var(--v-space-xs)
2140
+ * margin-bottom: var(--v-space-xs)
2141
+ * ``` */ readonly myXs: 'my-xs';
2008
2142
  /**
2009
2143
  * ```css
2010
2144
  * object-fit: contain
@@ -2153,6 +2287,10 @@ export interface ClassNames {
2153
2287
  * ```css
2154
2288
  * padding-bottom: 1.5rem
2155
2289
  * ``` */ readonly pb24: 'pb-24';
2290
+ /**
2291
+ * ```css
2292
+ * padding-bottom: var(--v-space-2xl)
2293
+ * ``` */ readonly pb2xl: 'pb-2xl';
2156
2294
  /**
2157
2295
  * ```css
2158
2296
  * padding-bottom: 2rem
@@ -2177,14 +2315,34 @@ export interface ClassNames {
2177
2315
  * ```css
2178
2316
  * padding-bottom: var(--v-space-l)
2179
2317
  * ``` */ readonly pbL: 'pb-l';
2318
+ /**
2319
+ * ```css
2320
+ * padding-bottom: var(--v-space-lg)
2321
+ * ``` */ readonly pbLg: 'pb-lg';
2180
2322
  /**
2181
2323
  * ```css
2182
2324
  * padding-bottom: var(--v-space-m)
2183
2325
  * ``` */ readonly pbM: 'pb-m';
2326
+ /**
2327
+ * ```css
2328
+ * padding-bottom: var(--v-space-md)
2329
+ * ``` */ readonly pbMd: 'pb-md';
2184
2330
  /**
2185
2331
  * ```css
2186
2332
  * padding-bottom: var(--v-space-s)
2187
2333
  * ``` */ readonly pbS: 'pb-s';
2334
+ /**
2335
+ * ```css
2336
+ * padding-bottom: var(--v-space-sm)
2337
+ * ``` */ readonly pbSm: 'pb-sm';
2338
+ /**
2339
+ * ```css
2340
+ * padding-bottom: var(--v-space-xl)
2341
+ * ``` */ readonly pbXl: 'pb-xl';
2342
+ /**
2343
+ * ```css
2344
+ * padding-bottom: var(--v-space-xs)
2345
+ * ``` */ readonly pbXs: 'pb-xs';
2188
2346
  /**
2189
2347
  * ```css
2190
2348
  * width: fit-content
@@ -2321,6 +2479,10 @@ export interface ClassNames {
2321
2479
  * ```css
2322
2480
  * padding-top: 1.5rem
2323
2481
  * ``` */ readonly pt24: 'pt-24';
2482
+ /**
2483
+ * ```css
2484
+ * padding-top: var(--v-space-2xl)
2485
+ * ``` */ readonly pt2xl: 'pt-2xl';
2324
2486
  /**
2325
2487
  * ```css
2326
2488
  * padding-top: 2rem
@@ -2345,14 +2507,34 @@ export interface ClassNames {
2345
2507
  * ```css
2346
2508
  * padding-top: var(--v-space-l)
2347
2509
  * ``` */ readonly ptL: 'pt-l';
2510
+ /**
2511
+ * ```css
2512
+ * padding-top: var(--v-space-lg)
2513
+ * ``` */ readonly ptLg: 'pt-lg';
2348
2514
  /**
2349
2515
  * ```css
2350
2516
  * padding-top: var(--v-space-m)
2351
2517
  * ``` */ readonly ptM: 'pt-m';
2518
+ /**
2519
+ * ```css
2520
+ * padding-top: var(--v-space-md)
2521
+ * ``` */ readonly ptMd: 'pt-md';
2352
2522
  /**
2353
2523
  * ```css
2354
2524
  * padding-top: var(--v-space-s)
2355
2525
  * ``` */ readonly ptS: 'pt-s';
2526
+ /**
2527
+ * ```css
2528
+ * padding-top: var(--v-space-sm)
2529
+ * ``` */ readonly ptSm: 'pt-sm';
2530
+ /**
2531
+ * ```css
2532
+ * padding-top: var(--v-space-xl)
2533
+ * ``` */ readonly ptXl: 'pt-xl';
2534
+ /**
2535
+ * ```css
2536
+ * padding-top: var(--v-space-xs)
2537
+ * ``` */ readonly ptXs: 'pt-xs';
2356
2538
  /**
2357
2539
  * ```css
2358
2540
  * padding-inline-end: 0
@@ -2433,6 +2615,11 @@ export interface ClassNames {
2433
2615
  * padding-top: 1.5rem
2434
2616
  * padding-bottom: 1.5rem
2435
2617
  * ``` */ readonly py24: 'py-24';
2618
+ /**
2619
+ * ```css
2620
+ * padding-top: var(--v-space-2xl)
2621
+ * padding-bottom: var(--v-space-2xl)
2622
+ * ``` */ readonly py2xl: 'py-2xl';
2436
2623
  /**
2437
2624
  * ```css
2438
2625
  * padding-top: 2rem
@@ -2463,16 +2650,41 @@ export interface ClassNames {
2463
2650
  * padding-top: var(--v-space-l)
2464
2651
  * padding-bottom: var(--v-space-l)
2465
2652
  * ``` */ readonly pyL: 'py-l';
2653
+ /**
2654
+ * ```css
2655
+ * padding-top: var(--v-space-lg)
2656
+ * padding-bottom: var(--v-space-lg)
2657
+ * ``` */ readonly pyLg: 'py-lg';
2466
2658
  /**
2467
2659
  * ```css
2468
2660
  * padding-top: var(--v-space-m)
2469
2661
  * padding-bottom: var(--v-space-m)
2470
2662
  * ``` */ readonly pyM: 'py-m';
2663
+ /**
2664
+ * ```css
2665
+ * padding-top: var(--v-space-md)
2666
+ * padding-bottom: var(--v-space-md)
2667
+ * ``` */ readonly pyMd: 'py-md';
2471
2668
  /**
2472
2669
  * ```css
2473
2670
  * padding-top: var(--v-space-s)
2474
2671
  * padding-bottom: var(--v-space-s)
2475
2672
  * ``` */ readonly pyS: 'py-s';
2673
+ /**
2674
+ * ```css
2675
+ * padding-top: var(--v-space-sm)
2676
+ * padding-bottom: var(--v-space-sm)
2677
+ * ``` */ readonly pySm: 'py-sm';
2678
+ /**
2679
+ * ```css
2680
+ * padding-top: var(--v-space-xl)
2681
+ * padding-bottom: var(--v-space-xl)
2682
+ * ``` */ readonly pyXl: 'py-xl';
2683
+ /**
2684
+ * ```css
2685
+ * padding-top: var(--v-space-xs)
2686
+ * padding-bottom: var(--v-space-xs)
2687
+ * ``` */ readonly pyXs: 'py-xs';
2476
2688
  /**
2477
2689
  * ```css
2478
2690
  *
@@ -2817,6 +3029,10 @@ export interface ClassNames {
2817
3029
  * ```css
2818
3030
  * inset-inline-start: 1rem
2819
3031
  * ``` */ readonly start16: 'start-16';
3032
+ /**
3033
+ * ```css
3034
+ * inset-inline-start: .125rem
3035
+ * ``` */ readonly start2: 'start-2';
2820
3036
  /**
2821
3037
  * ```css
2822
3038
  * inset-inline-start: 1.5rem
@@ -3061,6 +3277,10 @@ export interface ClassNames {
3061
3277
  * ```css
3062
3278
  * top: 1rem
3063
3279
  * ``` */ readonly top16: 'top-16';
3280
+ /**
3281
+ * ```css
3282
+ * top: .125rem
3283
+ * ``` */ readonly top2: 'top-2';
3064
3284
  /**
3065
3285
  * ```css
3066
3286
  * top: 1.5rem