@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.
- package/cli/bin/uds-darwin-arm64-baseline +0 -0
- package/cli/bin/uds-linux-arm64 +0 -0
- package/cli/bin/uds-linux-x64-baseline +0 -0
- package/dist/{VStack-CWaR6qMk.d.ts → VStack-CmraVolm.d.ts} +3 -8
- package/dist/{VStack-VYrQbFmE.d.cts → VStack-dT3EJCu4.d.cts} +3 -8
- package/dist/chunk-EE3DM7SS.js +2 -0
- package/dist/chunk-IQ4HRDIM.cjs +3 -0
- package/dist/chunk-KSHOOD3K.js +3 -0
- package/dist/chunk-P4XGJJCM.cjs +2 -0
- package/dist/client/index.cjs +2 -2
- package/dist/client/index.d.cts +2 -2
- package/dist/client/index.d.ts +2 -2
- package/dist/client/index.js +3 -3
- package/dist/{index-5FbcDtke.d.ts → index-BOfq14yW.d.ts} +6 -39
- package/dist/{index-D9eJ0LWw.d.cts → index-D1poGuo1.d.cts} +6 -39
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/tailwind/plugin.cjs +1 -1
- package/dist/tailwind/plugin.js +1 -1
- package/dist/tailwind/purger.cjs +1 -1
- package/dist/tailwind/purger.js +1 -1
- package/dist/tailwind/utils.cjs +1 -1
- package/dist/tailwind/utils.js +1 -1
- package/dist/tokens/automation/configs.cjs +1 -1
- package/dist/tokens/automation/configs.d.cts +1 -1
- package/dist/tokens/automation/configs.d.ts +1 -1
- package/dist/tokens/automation/configs.js +1 -1
- package/dist/tokens/automation/properties.cjs +1 -1
- package/dist/tokens/automation/properties.d.cts +1 -1
- package/dist/tokens/automation/properties.d.ts +1 -1
- package/dist/tokens/automation/properties.js +1 -1
- package/dist/tokens/index.cjs +1 -1
- package/dist/tokens/index.d.cts +2 -2
- package/dist/tokens/index.d.ts +2 -2
- package/dist/tokens/index.js +1 -1
- package/package.json +5 -3
- package/dist/chunk-4ZPWHOWH.js +0 -3
- package/dist/chunk-EIEARPEE.js +0 -2
- package/dist/chunk-MT7B3OK6.cjs +0 -2
- package/dist/chunk-TH6RUZ5W.cjs +0 -3
Binary file
|
package/cli/bin/uds-linux-arm64
CHANGED
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
|
-
|
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
|
-
|
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
|
*
|