@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.
- package/dist/Box-B5-iomov.d.ts +34 -0
- package/dist/Box-DiAlMwFs.d.cts +34 -0
- package/dist/Input-C2JHbAnz.d.cts +54 -0
- package/dist/Input-Drdk_VTx.d.ts +54 -0
- package/dist/Pressable-BtsR3Qz0.d.cts +44 -0
- package/dist/Pressable-DvTJyjgZ.d.ts +44 -0
- package/dist/VStack-mmwkcypy.d.cts +83 -0
- package/dist/VStack-r7oAc-8J.d.ts +83 -0
- package/dist/chunk-4GUXQTU3.cjs +3 -0
- package/dist/chunk-5U4J6DA5.cjs +1 -0
- package/dist/chunk-6HG5KSL6.cjs +1 -0
- package/dist/chunk-CTYIRZ5A.cjs +1 -0
- package/dist/chunk-DCZLRK3J.js +2 -0
- package/dist/chunk-H62QDZOV.cjs +2 -0
- package/dist/chunk-LWGAE6PD.cjs +1 -0
- package/dist/chunk-MATTX7AJ.js +1 -0
- package/dist/chunk-PVXOGAWH.js +2 -0
- package/dist/chunk-QF6YIMT4.js +2 -0
- package/dist/chunk-RMRBUBTB.js +3 -0
- package/dist/chunk-S5NRWKDP.cjs +1 -0
- package/dist/chunk-ST7Z3YRS.js +2 -0
- package/dist/chunk-UYLBFQ4P.js +2 -0
- package/dist/chunk-VQ4KEVVH.cjs +1 -0
- package/dist/chunk-WRE54KQN.js +2 -0
- package/dist/chunk-WX4V6S4A.js +1 -0
- package/dist/chunk-Y5HRSSOF.cjs +1 -0
- package/dist/experimental/client/SwitchV2.cjs +1 -0
- package/dist/experimental/client/SwitchV2.js +1 -0
- package/dist/experimental/client/index.d.cts +1 -1
- package/dist/experimental/client/index.d.ts +1 -1
- package/dist/experimental/index.cjs +2 -3
- package/dist/experimental/index.d.cts +2 -5
- package/dist/experimental/index.d.ts +2 -5
- package/dist/experimental/index.js +2 -2
- package/dist/index-BiFYC5eM.d.ts +245 -0
- package/dist/index-CISBacKa.d.cts +245 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +29 -2
- package/dist/index.d.ts +29 -2
- package/dist/index.js +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/tailwind/purger.cjs +1 -1
- package/dist/tailwind/purger.js +1 -1
- package/dist/types-BRmrSr-u.d.cts +10585 -0
- package/dist/types-BRmrSr-u.d.ts +10585 -0
- package/package.json +1 -1
- package/dist/{Box-DLjI-1wX.d.cts → Text-Buzrh-6W.d.cts} +4 -4
- package/dist/{Box-DLjI-1wX.d.ts → Text-Buzrh-6W.d.ts} +4 -4
package/package.json
CHANGED
@@ -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 };
|