@yahoo/uds 3.37.0-beta.1 → 3.38.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 (49) hide show
  1. package/dist/Box-B5-iomov.d.ts +34 -0
  2. package/dist/Box-DiAlMwFs.d.cts +34 -0
  3. package/dist/Input-C2JHbAnz.d.cts +54 -0
  4. package/dist/Input-Drdk_VTx.d.ts +54 -0
  5. package/dist/Pressable-BtsR3Qz0.d.cts +44 -0
  6. package/dist/Pressable-DvTJyjgZ.d.ts +44 -0
  7. package/dist/VStack-mmwkcypy.d.cts +83 -0
  8. package/dist/VStack-r7oAc-8J.d.ts +83 -0
  9. package/dist/chunk-4GUXQTU3.cjs +3 -0
  10. package/dist/chunk-5U4J6DA5.cjs +1 -0
  11. package/dist/chunk-6HG5KSL6.cjs +1 -0
  12. package/dist/chunk-CTYIRZ5A.cjs +1 -0
  13. package/dist/chunk-DCZLRK3J.js +2 -0
  14. package/dist/chunk-H62QDZOV.cjs +2 -0
  15. package/dist/chunk-LWGAE6PD.cjs +1 -0
  16. package/dist/chunk-MATTX7AJ.js +1 -0
  17. package/dist/chunk-PVXOGAWH.js +2 -0
  18. package/dist/chunk-QF6YIMT4.js +2 -0
  19. package/dist/chunk-RMRBUBTB.js +3 -0
  20. package/dist/chunk-S5NRWKDP.cjs +1 -0
  21. package/dist/chunk-ST7Z3YRS.js +2 -0
  22. package/dist/chunk-UYLBFQ4P.js +2 -0
  23. package/dist/chunk-VQ4KEVVH.cjs +1 -0
  24. package/dist/chunk-WRE54KQN.js +2 -0
  25. package/dist/chunk-WX4V6S4A.js +1 -0
  26. package/dist/chunk-Y5HRSSOF.cjs +1 -0
  27. package/dist/experimental/client/SwitchV2.cjs +1 -0
  28. package/dist/experimental/client/SwitchV2.js +1 -0
  29. package/dist/experimental/client/index.d.cts +1 -1
  30. package/dist/experimental/client/index.d.ts +1 -1
  31. package/dist/experimental/index.cjs +2 -3
  32. package/dist/experimental/index.d.cts +2 -5
  33. package/dist/experimental/index.d.ts +2 -5
  34. package/dist/experimental/index.js +2 -2
  35. package/dist/index-BiFYC5eM.d.ts +245 -0
  36. package/dist/index-CISBacKa.d.cts +245 -0
  37. package/dist/index.cjs +1 -1
  38. package/dist/index.d.cts +29 -2
  39. package/dist/index.d.ts +29 -2
  40. package/dist/index.js +1 -1
  41. package/dist/metafile-cjs.json +1 -1
  42. package/dist/metafile-esm.json +1 -1
  43. package/dist/tailwind/purger.cjs +1 -1
  44. package/dist/tailwind/purger.js +1 -1
  45. package/dist/types-BRmrSr-u.d.cts +10585 -0
  46. package/dist/types-BRmrSr-u.d.ts +10585 -0
  47. package/package.json +1 -1
  48. package/dist/{Box-DLjI-1wX.d.cts → Text-Buzrh-6W.d.cts} +4 -4
  49. package/dist/{Box-DLjI-1wX.d.ts → Text-Buzrh-6W.d.ts} +4 -4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@yahoo/uds",
3
3
  "description": "Yahoo Universal System",
4
- "version": "3.37.0-beta.1",
4
+ "version": "3.38.0",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "uds": "./cli/uds-cli.js"
@@ -253,6 +253,10 @@ interface UniversalSwitchProps {
253
253
  labelPosition?: 'start' | 'end';
254
254
  }
255
255
 
256
+ type DivProps = React.HTMLAttributes<HTMLDivElement>;
257
+ interface BoxProps extends UniversalBoxProps, DivProps {
258
+ }
259
+
256
260
  type TextElementTagName = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'p' | 'strong' | 'span' | 'label' | 'li' | 'sup';
257
261
  type ColorWithInherit = Exclude<UniversalTextProps['color'], undefined> | 'inherit';
258
262
  type VariantWithInherit = Exclude<UniversalTextProps['variant'], undefined> | 'inherit';
@@ -265,8 +269,4 @@ type TextProps<TagName extends TextElementTagName = TextElementTagName> = {
265
269
  color?: ColorWithInherit;
266
270
  } & JSX.IntrinsicElements[TagName] & Omit<UniversalTextProps, 'variant' | 'color'>;
267
271
 
268
- type DivProps = React.HTMLAttributes<HTMLDivElement>;
269
- interface BoxProps extends UniversalBoxProps, DivProps {
270
- }
271
-
272
272
  export type { BoxProps as B, DivProps as D, IconPropsWithSVGProps as I, TextProps as T, UniversalTextProps as U, UniversalStackProps as a, UniversalSwitchProps as b };
@@ -253,6 +253,10 @@ interface UniversalSwitchProps {
253
253
  labelPosition?: 'start' | 'end';
254
254
  }
255
255
 
256
+ type DivProps = React.HTMLAttributes<HTMLDivElement>;
257
+ interface BoxProps extends UniversalBoxProps, DivProps {
258
+ }
259
+
256
260
  type TextElementTagName = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'p' | 'strong' | 'span' | 'label' | 'li' | 'sup';
257
261
  type ColorWithInherit = Exclude<UniversalTextProps['color'], undefined> | 'inherit';
258
262
  type VariantWithInherit = Exclude<UniversalTextProps['variant'], undefined> | 'inherit';
@@ -265,8 +269,4 @@ type TextProps<TagName extends TextElementTagName = TextElementTagName> = {
265
269
  color?: ColorWithInherit;
266
270
  } & JSX.IntrinsicElements[TagName] & Omit<UniversalTextProps, 'variant' | 'color'>;
267
271
 
268
- type DivProps = React.HTMLAttributes<HTMLDivElement>;
269
- interface BoxProps extends UniversalBoxProps, DivProps {
270
- }
271
-
272
272
  export type { BoxProps as B, DivProps as D, IconPropsWithSVGProps as I, TextProps as T, UniversalTextProps as U, UniversalStackProps as a, UniversalSwitchProps as b };