@yahoo/uds-mobile 2.3.2 → 2.3.3

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.
@@ -1521,6 +1521,11 @@ const bottomSheetStyles = StyleSheet.create((theme) => ({
1521
1521
  variant: { default: theme.components['bottomSheet/variant/default/root/rest'] },
1522
1522
  },
1523
1523
  },
1524
+ handleIndicator: {
1525
+ variants: {
1526
+ variant: { default: theme.components['bottomSheet/variant/default/handleIndicator/rest'] },
1527
+ },
1528
+ },
1524
1529
  header: {
1525
1530
  variants: {
1526
1531
  variant: { default: theme.components['bottomSheet/variant/default/header/rest'] },
@@ -1368,6 +1368,7 @@ export declare const bottomSheetStyles: {
1368
1368
  paddingHorizontal: number;
1369
1369
  paddingVertical: number;
1370
1370
  };
1371
+ handleIndicator: { backgroundColor: string };
1371
1372
  header: {
1372
1373
  color: string;
1373
1374
  fontFamily: 'YahooProductSans';
@@ -1376,7 +1377,9 @@ export declare const bottomSheetStyles: {
1376
1377
  lineHeight: number;
1377
1378
  };
1378
1379
  } & {
1379
- useVariants: (variants: { variant?: undefined } | { variant?: undefined }) => void;
1380
+ useVariants: (
1381
+ variants: { variant?: undefined } | { variant?: undefined } | { variant?: undefined },
1382
+ ) => void;
1380
1383
  };
1381
1384
 
1382
1385
  export declare const buttonStyles: {
@@ -1521,6 +1521,11 @@ const bottomSheetStyles = StyleSheet.create((theme) => ({
1521
1521
  variant: { default: theme.components['bottomSheet/variant/default/root/rest'] },
1522
1522
  },
1523
1523
  },
1524
+ handleIndicator: {
1525
+ variants: {
1526
+ variant: { default: theme.components['bottomSheet/variant/default/handleIndicator/rest'] },
1527
+ },
1528
+ },
1524
1529
  header: {
1525
1530
  variants: {
1526
1531
  variant: { default: theme.components['bottomSheet/variant/default/header/rest'] },
@@ -344,6 +344,9 @@ interface ComponentTheme {
344
344
  'badge/variant/warning/rootText/rest': {
345
345
  color: string;
346
346
  };
347
+ 'bottomSheet/variant/default/handleIndicator/rest': {
348
+ backgroundColor: string;
349
+ };
347
350
  'bottomSheet/variant/default/header/rest': {
348
351
  color: string;
349
352
  fontFamily: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yahoo/uds-mobile",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "uds-mobile": "./cli/uds-mobile.js"
@@ -254,7 +254,7 @@
254
254
  "lodash-es": "^4.17.23"
255
255
  },
256
256
  "peerDependencies": {
257
- "@yahoo/uds-icons": "workspace:*",
257
+ "@yahoo/uds-icons": ">=2.0.0",
258
258
  "expo-blur": "~55.0.0",
259
259
  "expo-font": "~55.0.0",
260
260
  "react": "*",
@@ -266,6 +266,9 @@
266
266
  "react-native-unistyles": ">=3.0.0"
267
267
  },
268
268
  "peerDependenciesMeta": {
269
+ "@yahoo/uds-icons": {
270
+ "optional": true
271
+ },
269
272
  "expo-blur": {
270
273
  "optional": true
271
274
  },