@yahoo/uds 3.138.0 → 3.139.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/components/Box.cjs +1 -1
- package/dist/components/Box.js +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/components/client/Toast/UDSToastConfigProvider.d.cts +5 -5
- package/dist/components/client/Toast/UDSToastConfigProvider.d.ts +5 -5
- package/dist/config/dist/index.cjs +14 -2
- package/dist/config/dist/index.js +14 -2
- package/dist/css-tokens/dist/index.cjs +2 -0
- package/dist/css-tokens/dist/index.d.cts +2 -1
- package/dist/css-tokens/dist/index.d.ts +2 -1
- package/dist/css-tokens/dist/index.js +2 -1
- package/dist/fixtures/dist/index.cjs +4 -2
- package/dist/fixtures/dist/index.d.cts +3 -2
- package/dist/fixtures/dist/index.d.ts +3 -2
- package/dist/fixtures/dist/index.js +4 -3
- package/dist/fixtures/index.cjs +1 -0
- package/dist/fixtures/index.d.cts +2 -2
- package/dist/fixtures/index.d.ts +2 -2
- package/dist/fixtures/index.js +2 -2
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +2 -2
- package/dist/styles/styler.d.cts +35 -35
- package/dist/styles/styler.d.ts +35 -35
- package/dist/styles/variants.cjs +7 -1
- package/dist/styles/variants.d.cts +6 -0
- package/dist/styles/variants.d.ts +6 -0
- package/dist/styles/variants.js +7 -1
- package/dist/tailwind/dist/config/dist/index.cjs +14 -2
- package/dist/tailwind/dist/config/dist/index.js +14 -2
- package/dist/tailwind/dist/config/dist/index.js.map +1 -1
- package/dist/tailwind/dist/css-tokens/dist/index.cjs +2 -0
- package/dist/tailwind/dist/css-tokens/dist/index.js +2 -1
- package/dist/tailwind/dist/css-tokens/dist/index.js.map +1 -1
- package/dist/tailwind/dist/fixtures/dist/index.js.map +1 -1
- package/dist/tailwind/dist/tailwind/utils/getElevationStyles.cjs +1 -1
- package/dist/tailwind/dist/tailwind/utils/getElevationStyles.js +1 -1
- package/dist/tailwind/dist/tailwind/utils/getElevationStyles.js.map +1 -1
- package/dist/tailwind/dist/types/dist/index.d.cts +3 -0
- package/dist/tailwind/dist/types/dist/index.d.cts.map +1 -1
- package/dist/tailwind/dist/types/dist/index.d.ts +3 -0
- package/dist/tailwind/dist/types/dist/index.d.ts.map +1 -1
- package/dist/tailwind/dist/utils/parseTokens.cjs +9 -0
- package/dist/tailwind/dist/utils/parseTokens.d.cts.map +1 -1
- package/dist/tailwind/dist/utils/parseTokens.d.ts.map +1 -1
- package/dist/tailwind/dist/utils/parseTokens.js +10 -1
- package/dist/tailwind/dist/utils/parseTokens.js.map +1 -1
- package/dist/tokens/consts/cssTokens.cjs +1 -0
- package/dist/tokens/consts/cssTokens.d.cts +2 -2
- package/dist/tokens/consts/cssTokens.d.ts +2 -2
- package/dist/tokens/consts/cssTokens.js +2 -2
- package/dist/tokens/index.cjs +1 -0
- package/dist/tokens/index.d.cts +3 -3
- package/dist/tokens/index.d.ts +3 -3
- package/dist/tokens/index.js +2 -2
- package/dist/tokens/types.d.cts +2 -2
- package/dist/tokens/types.d.ts +2 -2
- package/dist/types/dist/index.d.cts +4 -2
- package/dist/types/dist/index.d.ts +4 -2
- package/dist/uds/generated/componentData.cjs +102 -101
- package/dist/uds/generated/componentData.js +102 -101
- package/dist/uds/generated/tailwindPurge.cjs +21 -3
- package/dist/uds/generated/tailwindPurge.js +21 -3
- package/generated/componentData.json +126 -125
- package/generated/tailwindPurge.ts +1 -1
- package/package.json +1 -1
|
@@ -2390,6 +2390,12 @@ declare const variants: {
|
|
|
2390
2390
|
'lg-invert': string;
|
|
2391
2391
|
'xl-invert': string;
|
|
2392
2392
|
'2xl-invert': string;
|
|
2393
|
+
'elevation-0': string;
|
|
2394
|
+
'elevation-1': string;
|
|
2395
|
+
'elevation-2': string;
|
|
2396
|
+
'elevation-3': string;
|
|
2397
|
+
'elevation-4': string;
|
|
2398
|
+
'elevation-5': string;
|
|
2393
2399
|
};
|
|
2394
2400
|
nestedBorderRadiusSize: {
|
|
2395
2401
|
none: string;
|
|
@@ -2390,6 +2390,12 @@ declare const variants: {
|
|
|
2390
2390
|
'lg-invert': string;
|
|
2391
2391
|
'xl-invert': string;
|
|
2392
2392
|
'2xl-invert': string;
|
|
2393
|
+
'elevation-0': string;
|
|
2394
|
+
'elevation-1': string;
|
|
2395
|
+
'elevation-2': string;
|
|
2396
|
+
'elevation-3': string;
|
|
2397
|
+
'elevation-4': string;
|
|
2398
|
+
'elevation-5': string;
|
|
2393
2399
|
};
|
|
2394
2400
|
nestedBorderRadiusSize: {
|
|
2395
2401
|
none: string;
|
package/dist/styles/variants.js
CHANGED
|
@@ -1490,7 +1490,13 @@ const variants = {
|
|
|
1490
1490
|
"md-invert": "uds-inset-shadow-md-invert",
|
|
1491
1491
|
"lg-invert": "uds-inset-shadow-lg-invert",
|
|
1492
1492
|
"xl-invert": "uds-inset-shadow-xl-invert",
|
|
1493
|
-
"2xl-invert": "uds-inset-shadow-2xl-invert"
|
|
1493
|
+
"2xl-invert": "uds-inset-shadow-2xl-invert",
|
|
1494
|
+
"elevation-0": "uds-inset-shadow-elevation-0",
|
|
1495
|
+
"elevation-1": "uds-inset-shadow-elevation-1",
|
|
1496
|
+
"elevation-2": "uds-inset-shadow-elevation-2",
|
|
1497
|
+
"elevation-3": "uds-inset-shadow-elevation-3",
|
|
1498
|
+
"elevation-4": "uds-inset-shadow-elevation-4",
|
|
1499
|
+
"elevation-5": "uds-inset-shadow-elevation-5"
|
|
1494
1500
|
},
|
|
1495
1501
|
nestedBorderRadiusSize: {
|
|
1496
1502
|
none: "uds-nested-border-radius-size-none",
|
|
@@ -13876,6 +13876,7 @@ const defaultTokensConfig = {
|
|
|
13876
13876
|
r: "30",
|
|
13877
13877
|
type: "rgba"
|
|
13878
13878
|
},
|
|
13879
|
+
insetShadow: "none",
|
|
13879
13880
|
layerWithBackgroundFill: true,
|
|
13880
13881
|
surfaceColor: {
|
|
13881
13882
|
opacity: "6",
|
|
@@ -13909,6 +13910,7 @@ const defaultTokensConfig = {
|
|
|
13909
13910
|
r: "255",
|
|
13910
13911
|
type: "rgba"
|
|
13911
13912
|
},
|
|
13913
|
+
insetShadow: "none",
|
|
13912
13914
|
layerWithBackgroundFill: true,
|
|
13913
13915
|
surfaceColor: {
|
|
13914
13916
|
opacity: "0",
|
|
@@ -13989,6 +13991,7 @@ const defaultTokensConfig = {
|
|
|
13989
13991
|
r: "35",
|
|
13990
13992
|
type: "rgba"
|
|
13991
13993
|
},
|
|
13994
|
+
insetShadow: "none",
|
|
13992
13995
|
layerWithBackgroundFill: true,
|
|
13993
13996
|
surfaceColor: {
|
|
13994
13997
|
opacity: "8",
|
|
@@ -14067,6 +14070,7 @@ const defaultTokensConfig = {
|
|
|
14067
14070
|
r: "255",
|
|
14068
14071
|
type: "rgba"
|
|
14069
14072
|
},
|
|
14073
|
+
insetShadow: "none",
|
|
14070
14074
|
layerWithBackgroundFill: true,
|
|
14071
14075
|
surfaceColor: {
|
|
14072
14076
|
opacity: "0",
|
|
@@ -14147,6 +14151,7 @@ const defaultTokensConfig = {
|
|
|
14147
14151
|
r: "40",
|
|
14148
14152
|
type: "rgba"
|
|
14149
14153
|
},
|
|
14154
|
+
insetShadow: "none",
|
|
14150
14155
|
layerWithBackgroundFill: true,
|
|
14151
14156
|
surfaceColor: {
|
|
14152
14157
|
opacity: "10",
|
|
@@ -14225,6 +14230,7 @@ const defaultTokensConfig = {
|
|
|
14225
14230
|
r: "255",
|
|
14226
14231
|
type: "rgba"
|
|
14227
14232
|
},
|
|
14233
|
+
insetShadow: "none",
|
|
14228
14234
|
layerWithBackgroundFill: true,
|
|
14229
14235
|
surfaceColor: {
|
|
14230
14236
|
opacity: "0",
|
|
@@ -14305,6 +14311,7 @@ const defaultTokensConfig = {
|
|
|
14305
14311
|
r: "45",
|
|
14306
14312
|
type: "rgba"
|
|
14307
14313
|
},
|
|
14314
|
+
insetShadow: "none",
|
|
14308
14315
|
layerWithBackgroundFill: true,
|
|
14309
14316
|
surfaceColor: {
|
|
14310
14317
|
opacity: "12",
|
|
@@ -14383,6 +14390,7 @@ const defaultTokensConfig = {
|
|
|
14383
14390
|
r: "255",
|
|
14384
14391
|
type: "rgba"
|
|
14385
14392
|
},
|
|
14393
|
+
insetShadow: "none",
|
|
14386
14394
|
layerWithBackgroundFill: true,
|
|
14387
14395
|
surfaceColor: {
|
|
14388
14396
|
opacity: "0",
|
|
@@ -14463,6 +14471,7 @@ const defaultTokensConfig = {
|
|
|
14463
14471
|
r: "49",
|
|
14464
14472
|
type: "rgba"
|
|
14465
14473
|
},
|
|
14474
|
+
insetShadow: "none",
|
|
14466
14475
|
layerWithBackgroundFill: true,
|
|
14467
14476
|
surfaceColor: {
|
|
14468
14477
|
opacity: "14",
|
|
@@ -14541,6 +14550,7 @@ const defaultTokensConfig = {
|
|
|
14541
14550
|
r: "255",
|
|
14542
14551
|
type: "rgba"
|
|
14543
14552
|
},
|
|
14553
|
+
insetShadow: "none",
|
|
14544
14554
|
layerWithBackgroundFill: true,
|
|
14545
14555
|
surfaceColor: {
|
|
14546
14556
|
opacity: "0",
|
|
@@ -14621,6 +14631,7 @@ const defaultTokensConfig = {
|
|
|
14621
14631
|
r: "54",
|
|
14622
14632
|
type: "rgba"
|
|
14623
14633
|
},
|
|
14634
|
+
insetShadow: "none",
|
|
14624
14635
|
layerWithBackgroundFill: true,
|
|
14625
14636
|
surfaceColor: {
|
|
14626
14637
|
opacity: "16",
|
|
@@ -14699,6 +14710,7 @@ const defaultTokensConfig = {
|
|
|
14699
14710
|
r: "255",
|
|
14700
14711
|
type: "rgba"
|
|
14701
14712
|
},
|
|
14713
|
+
insetShadow: "none",
|
|
14702
14714
|
layerWithBackgroundFill: true,
|
|
14703
14715
|
surfaceColor: {
|
|
14704
14716
|
opacity: "0",
|
|
@@ -28550,8 +28562,8 @@ const defaultTokensConfig = {
|
|
|
28550
28562
|
}
|
|
28551
28563
|
}
|
|
28552
28564
|
},
|
|
28553
|
-
version: "v0.
|
|
28554
|
-
version: "v0.
|
|
28565
|
+
version: "v0.93.0",
|
|
28566
|
+
version: "v0.93.0"
|
|
28555
28567
|
};
|
|
28556
28568
|
//#endregion
|
|
28557
28569
|
exports.defaultTokensConfig = defaultTokensConfig;
|
|
@@ -13876,6 +13876,7 @@ const defaultTokensConfig = {
|
|
|
13876
13876
|
r: "30",
|
|
13877
13877
|
type: "rgba"
|
|
13878
13878
|
},
|
|
13879
|
+
insetShadow: "none",
|
|
13879
13880
|
layerWithBackgroundFill: true,
|
|
13880
13881
|
surfaceColor: {
|
|
13881
13882
|
opacity: "6",
|
|
@@ -13909,6 +13910,7 @@ const defaultTokensConfig = {
|
|
|
13909
13910
|
r: "255",
|
|
13910
13911
|
type: "rgba"
|
|
13911
13912
|
},
|
|
13913
|
+
insetShadow: "none",
|
|
13912
13914
|
layerWithBackgroundFill: true,
|
|
13913
13915
|
surfaceColor: {
|
|
13914
13916
|
opacity: "0",
|
|
@@ -13989,6 +13991,7 @@ const defaultTokensConfig = {
|
|
|
13989
13991
|
r: "35",
|
|
13990
13992
|
type: "rgba"
|
|
13991
13993
|
},
|
|
13994
|
+
insetShadow: "none",
|
|
13992
13995
|
layerWithBackgroundFill: true,
|
|
13993
13996
|
surfaceColor: {
|
|
13994
13997
|
opacity: "8",
|
|
@@ -14067,6 +14070,7 @@ const defaultTokensConfig = {
|
|
|
14067
14070
|
r: "255",
|
|
14068
14071
|
type: "rgba"
|
|
14069
14072
|
},
|
|
14073
|
+
insetShadow: "none",
|
|
14070
14074
|
layerWithBackgroundFill: true,
|
|
14071
14075
|
surfaceColor: {
|
|
14072
14076
|
opacity: "0",
|
|
@@ -14147,6 +14151,7 @@ const defaultTokensConfig = {
|
|
|
14147
14151
|
r: "40",
|
|
14148
14152
|
type: "rgba"
|
|
14149
14153
|
},
|
|
14154
|
+
insetShadow: "none",
|
|
14150
14155
|
layerWithBackgroundFill: true,
|
|
14151
14156
|
surfaceColor: {
|
|
14152
14157
|
opacity: "10",
|
|
@@ -14225,6 +14230,7 @@ const defaultTokensConfig = {
|
|
|
14225
14230
|
r: "255",
|
|
14226
14231
|
type: "rgba"
|
|
14227
14232
|
},
|
|
14233
|
+
insetShadow: "none",
|
|
14228
14234
|
layerWithBackgroundFill: true,
|
|
14229
14235
|
surfaceColor: {
|
|
14230
14236
|
opacity: "0",
|
|
@@ -14305,6 +14311,7 @@ const defaultTokensConfig = {
|
|
|
14305
14311
|
r: "45",
|
|
14306
14312
|
type: "rgba"
|
|
14307
14313
|
},
|
|
14314
|
+
insetShadow: "none",
|
|
14308
14315
|
layerWithBackgroundFill: true,
|
|
14309
14316
|
surfaceColor: {
|
|
14310
14317
|
opacity: "12",
|
|
@@ -14383,6 +14390,7 @@ const defaultTokensConfig = {
|
|
|
14383
14390
|
r: "255",
|
|
14384
14391
|
type: "rgba"
|
|
14385
14392
|
},
|
|
14393
|
+
insetShadow: "none",
|
|
14386
14394
|
layerWithBackgroundFill: true,
|
|
14387
14395
|
surfaceColor: {
|
|
14388
14396
|
opacity: "0",
|
|
@@ -14463,6 +14471,7 @@ const defaultTokensConfig = {
|
|
|
14463
14471
|
r: "49",
|
|
14464
14472
|
type: "rgba"
|
|
14465
14473
|
},
|
|
14474
|
+
insetShadow: "none",
|
|
14466
14475
|
layerWithBackgroundFill: true,
|
|
14467
14476
|
surfaceColor: {
|
|
14468
14477
|
opacity: "14",
|
|
@@ -14541,6 +14550,7 @@ const defaultTokensConfig = {
|
|
|
14541
14550
|
r: "255",
|
|
14542
14551
|
type: "rgba"
|
|
14543
14552
|
},
|
|
14553
|
+
insetShadow: "none",
|
|
14544
14554
|
layerWithBackgroundFill: true,
|
|
14545
14555
|
surfaceColor: {
|
|
14546
14556
|
opacity: "0",
|
|
@@ -14621,6 +14631,7 @@ const defaultTokensConfig = {
|
|
|
14621
14631
|
r: "54",
|
|
14622
14632
|
type: "rgba"
|
|
14623
14633
|
},
|
|
14634
|
+
insetShadow: "none",
|
|
14624
14635
|
layerWithBackgroundFill: true,
|
|
14625
14636
|
surfaceColor: {
|
|
14626
14637
|
opacity: "16",
|
|
@@ -14699,6 +14710,7 @@ const defaultTokensConfig = {
|
|
|
14699
14710
|
r: "255",
|
|
14700
14711
|
type: "rgba"
|
|
14701
14712
|
},
|
|
14713
|
+
insetShadow: "none",
|
|
14702
14714
|
layerWithBackgroundFill: true,
|
|
14703
14715
|
surfaceColor: {
|
|
14704
14716
|
opacity: "0",
|
|
@@ -28550,8 +28562,8 @@ const defaultTokensConfig = {
|
|
|
28550
28562
|
}
|
|
28551
28563
|
}
|
|
28552
28564
|
},
|
|
28553
|
-
version: "v0.
|
|
28554
|
-
version: "v0.
|
|
28565
|
+
version: "v0.93.0",
|
|
28566
|
+
version: "v0.93.0"
|
|
28555
28567
|
};
|
|
28556
28568
|
//#endregion
|
|
28557
28569
|
export { defaultTokensConfig };
|