@yahoo/uds 3.128.0 → 3.129.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/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
- package/dist/components/Banner/Banner.cjs +3 -2
- package/dist/components/Banner/Banner.js +3 -2
- package/dist/components/Icon.cjs +12 -6
- package/dist/components/Icon.js +13 -7
- package/dist/components/IconSlot.cjs +11 -3
- package/dist/components/IconSlot.js +11 -3
- package/dist/components/client/IconButton.cjs +5 -1
- package/dist/components/client/IconButton.js +6 -2
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/components/client/Popover/UDSPopoverConfigProvider.d.ts +1 -1
- package/dist/components/client/Toast/UDSToastConfigProvider.d.cts +1 -1
- package/dist/config/dist/index.cjs +2371 -2361
- package/dist/config/dist/index.js +2371 -2361
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/styles/styler.d.cts +27 -27
- package/dist/styles/styler.d.ts +43 -43
- package/dist/tailwind/dist/config/dist/index.cjs +2371 -2361
- package/dist/tailwind/dist/config/dist/index.js +2371 -2361
- package/dist/tailwind/dist/config/dist/index.js.map +1 -1
- package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.cts +1 -1
- package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.ts +1 -1
- package/dist/tailwind/dist/tailwind/utils/getShadowStyles.d.cts +4 -4
- package/dist/tailwind/dist/tailwind/utils/getShadowStyles.d.ts +4 -4
- package/dist/tailwind/dist/types/dist/index.d.cts.map +1 -1
- package/dist/tailwind/dist/types/dist/index.d.ts.map +1 -1
- package/dist/tokens/index.d.cts +2 -2
- package/dist/tokens/index.d.ts +2 -2
- package/dist/tokens/types.d.cts +7 -7
- package/dist/tokens/types.d.ts +7 -7
- package/dist/types/dist/index.d.cts +12 -10
- package/dist/types/dist/index.d.ts +12 -10
- package/dist/uds/generated/componentData.cjs +455 -454
- package/dist/uds/generated/componentData.js +455 -454
- package/dist/uds/generated/tailwindPurge.cjs +68 -68
- package/dist/uds/generated/tailwindPurge.js +68 -68
- package/generated/componentData.json +578 -575
- package/generated/tailwindPurge.ts +1 -1
- package/package.json +1 -1
- package/dist/icons/dist/types.d.cts +0 -18
- package/dist/icons/dist/types.d.ts +0 -18
package/package.json
CHANGED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
//#region ../icons/dist/types.d.ts
|
|
3
|
-
type IconSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
4
|
-
type IconVariant = 'fill' | 'outline' | 'multicolor';
|
|
5
|
-
interface SvgIconProps {
|
|
6
|
-
size?: IconSize;
|
|
7
|
-
variant?: IconVariant;
|
|
8
|
-
}
|
|
9
|
-
interface SvgIconWithStaticProps<SvgIconProps> extends React.FunctionComponent<SvgIconProps> {
|
|
10
|
-
metadata: {
|
|
11
|
-
/** Icon name */name: string; /** Whether this is an SVG icon */
|
|
12
|
-
isSvgIcon: boolean; /** List of available variants for this icon */
|
|
13
|
-
variants: IconVariant[];
|
|
14
|
-
};
|
|
15
|
-
}
|
|
16
|
-
type SvgIcon = SvgIconWithStaticProps<SvgIconProps>; //#endregion
|
|
17
|
-
//#endregion
|
|
18
|
-
export { type SvgIcon };
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
//#region ../icons/dist/types.d.ts
|
|
3
|
-
type IconSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
4
|
-
type IconVariant = 'fill' | 'outline' | 'multicolor';
|
|
5
|
-
interface SvgIconProps {
|
|
6
|
-
size?: IconSize;
|
|
7
|
-
variant?: IconVariant;
|
|
8
|
-
}
|
|
9
|
-
interface SvgIconWithStaticProps<SvgIconProps> extends React.FunctionComponent<SvgIconProps> {
|
|
10
|
-
metadata: {
|
|
11
|
-
/** Icon name */name: string; /** Whether this is an SVG icon */
|
|
12
|
-
isSvgIcon: boolean; /** List of available variants for this icon */
|
|
13
|
-
variants: IconVariant[];
|
|
14
|
-
};
|
|
15
|
-
}
|
|
16
|
-
type SvgIcon = SvgIconWithStaticProps<SvgIconProps>; //#endregion
|
|
17
|
-
//#endregion
|
|
18
|
-
export { type SvgIcon };
|