@yahoo/uds 3.4.7 → 3.5.0-beta.1

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 (44) hide show
  1. package/cli/bin/uds-darwin-arm64-baseline +0 -0
  2. package/cli/bin/uds-linux-arm64 +0 -0
  3. package/cli/bin/uds-linux-x64-baseline +0 -0
  4. package/dist/{VStack-CWaR6qMk.d.ts → VStack-CmraVolm.d.ts} +3 -8
  5. package/dist/{VStack-VYrQbFmE.d.cts → VStack-dT3EJCu4.d.cts} +3 -8
  6. package/dist/chunk-EE3DM7SS.js +2 -0
  7. package/dist/chunk-IQ4HRDIM.cjs +3 -0
  8. package/dist/chunk-KSHOOD3K.js +3 -0
  9. package/dist/chunk-P4XGJJCM.cjs +2 -0
  10. package/dist/client/index.cjs +2 -2
  11. package/dist/client/index.d.cts +2 -2
  12. package/dist/client/index.d.ts +2 -2
  13. package/dist/client/index.js +3 -3
  14. package/dist/{index-5FbcDtke.d.ts → index-BOfq14yW.d.ts} +6 -39
  15. package/dist/{index-D9eJ0LWw.d.cts → index-D1poGuo1.d.cts} +6 -39
  16. package/dist/index.cjs +1 -1
  17. package/dist/index.d.cts +3 -3
  18. package/dist/index.d.ts +3 -3
  19. package/dist/index.js +1 -1
  20. package/dist/metafile-cjs.json +1 -1
  21. package/dist/metafile-esm.json +1 -1
  22. package/dist/tailwind/plugin.cjs +1 -1
  23. package/dist/tailwind/plugin.js +1 -1
  24. package/dist/tailwind/purger.cjs +1 -1
  25. package/dist/tailwind/purger.js +1 -1
  26. package/dist/tailwind/utils.cjs +1 -1
  27. package/dist/tailwind/utils.js +1 -1
  28. package/dist/tokens/automation/configs.cjs +1 -1
  29. package/dist/tokens/automation/configs.d.cts +1 -1
  30. package/dist/tokens/automation/configs.d.ts +1 -1
  31. package/dist/tokens/automation/configs.js +1 -1
  32. package/dist/tokens/automation/properties.cjs +1 -1
  33. package/dist/tokens/automation/properties.d.cts +1 -1
  34. package/dist/tokens/automation/properties.d.ts +1 -1
  35. package/dist/tokens/automation/properties.js +1 -1
  36. package/dist/tokens/index.cjs +1 -1
  37. package/dist/tokens/index.d.cts +2 -2
  38. package/dist/tokens/index.d.ts +2 -2
  39. package/dist/tokens/index.js +1 -1
  40. package/package.json +5 -3
  41. package/dist/chunk-4ZPWHOWH.js +0 -3
  42. package/dist/chunk-EIEARPEE.js +0 -2
  43. package/dist/chunk-MT7B3OK6.cjs +0 -2
  44. package/dist/chunk-TH6RUZ5W.cjs +0 -3
Binary file
Binary file
Binary file
@@ -32,20 +32,15 @@ interface BoxProps extends UniversalBoxProps, DivProps {
32
32
  */
33
33
  declare const Box: react.ForwardRefExoticComponent<BoxProps & react.RefAttributes<HTMLDivElement>>;
34
34
 
35
- interface DividerCoreProps extends Omit<BoxProps, 'color' | 'borderColor' | 'borderWidth'>, Omit<UniversalStackProps, 'separator' | 'asChild'>, Omit<UniversalDividerProps, 'variant'> {
35
+ type VariantWithInherit = Exclude<UniversalDividerProps['variant'], undefined> | 'inherit';
36
+ interface DividerProps extends Omit<BoxProps, 'color' | 'borderColor' | 'borderWidth'>, Omit<UniversalStackProps, 'separator' | 'asChild'>, Omit<UniversalDividerProps, 'variant'> {
37
+ variant?: VariantWithInherit;
36
38
  layerClassNames?: {
37
39
  root?: string;
38
40
  text?: string;
39
41
  line?: string;
40
42
  };
41
43
  }
42
-
43
- type VariantWithInherit = Exclude<UniversalDividerProps['variant'], undefined> | 'inherit';
44
- interface DividerInternalProps extends DividerCoreProps {
45
- variant?: VariantWithInherit;
46
- }
47
-
48
- type DividerProps = Omit<DividerInternalProps, 'layerClassNames'>;
49
44
  /**
50
45
  * **📦 A divider component that can be used to visually separate components**
51
46
  *
@@ -32,20 +32,15 @@ interface BoxProps extends UniversalBoxProps, DivProps {
32
32
  */
33
33
  declare const Box: react.ForwardRefExoticComponent<BoxProps & react.RefAttributes<HTMLDivElement>>;
34
34
 
35
- interface DividerCoreProps extends Omit<BoxProps, 'color' | 'borderColor' | 'borderWidth'>, Omit<UniversalStackProps, 'separator' | 'asChild'>, Omit<UniversalDividerProps, 'variant'> {
35
+ type VariantWithInherit = Exclude<UniversalDividerProps['variant'], undefined> | 'inherit';
36
+ interface DividerProps extends Omit<BoxProps, 'color' | 'borderColor' | 'borderWidth'>, Omit<UniversalStackProps, 'separator' | 'asChild'>, Omit<UniversalDividerProps, 'variant'> {
37
+ variant?: VariantWithInherit;
36
38
  layerClassNames?: {
37
39
  root?: string;
38
40
  text?: string;
39
41
  line?: string;
40
42
  };
41
43
  }
42
-
43
- type VariantWithInherit = Exclude<UniversalDividerProps['variant'], undefined> | 'inherit';
44
- interface DividerInternalProps extends DividerCoreProps {
45
- variant?: VariantWithInherit;
46
- }
47
-
48
- type DividerProps = Omit<DividerInternalProps, 'layerClassNames'>;
49
44
  /**
50
45
  * **📦 A divider component that can be used to visually separate components**
51
46
  *