@yahoo/uds 3.97.0 → 3.99.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/components/Icon.d.cts +6 -1
- package/dist/components/Icon.d.ts +6 -1
- package/dist/components/Image.d.cts +7 -2
- package/dist/components/Image.d.ts +7 -2
- package/dist/components/client/Input/InputHelpTextInternal.d.cts +2 -3
- package/dist/components/client/Input/InputHelpTextInternal.d.ts +2 -3
- 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/experimental/Spinner.d.cts +3 -4
- package/dist/components/experimental/Spinner.d.ts +3 -4
- package/dist/components/experimental/client/SegmentedControl.d.cts +3 -3
- package/dist/components/experimental/client/SegmentedControl.d.ts +3 -3
- package/dist/components/experimental/client/Tabs.d.cts +2 -2
- package/dist/components/experimental/client/Tabs.d.ts +2 -2
- package/dist/components/index.d.cts +3 -5
- package/dist/components/index.d.ts +3 -5
- package/dist/fixtures/dist/index.cjs +1 -1
- package/dist/fixtures/dist/index.d.cts +1 -1
- package/dist/fixtures/dist/index.d.ts +1 -1
- package/dist/fixtures/dist/index.js +1 -1
- package/dist/fonts/dist/index.cjs +1 -1
- package/dist/fonts/dist/index.d.cts +1 -1
- package/dist/fonts/dist/index.d.ts +1 -1
- package/dist/fonts/dist/index.js +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/styles/styler.d.cts +21 -21
- package/dist/styles/styler.d.ts +21 -21
- package/dist/types/dist/index.d.cts +130 -0
- package/dist/types/dist/index.d.ts +130 -0
- package/package.json +1 -1
|
@@ -4,6 +4,11 @@ import "../tokens/index.cjs";
|
|
|
4
4
|
import * as react from "react";
|
|
5
5
|
|
|
6
6
|
//#region src/components/Icon.d.ts
|
|
7
|
+
/**
|
|
8
|
+
* Props for the Icon component.
|
|
9
|
+
* @see IconPropsWithSVGProps
|
|
10
|
+
*/
|
|
11
|
+
type IconProps = IconPropsWithSVGProps;
|
|
7
12
|
/**
|
|
8
13
|
* **🎨 A component for displaying icons**
|
|
9
14
|
*
|
|
@@ -35,4 +40,4 @@ import * as react from "react";
|
|
|
35
40
|
*/
|
|
36
41
|
declare const Icon: react.ForwardRefExoticComponent<IconPropsWithSVGProps & react.RefAttributes<SVGSVGElement>>;
|
|
37
42
|
//#endregion
|
|
38
|
-
export { Icon, type
|
|
43
|
+
export { Icon, type IconProps };
|
|
@@ -4,6 +4,11 @@ import "../tokens/index.js";
|
|
|
4
4
|
import * as react from "react";
|
|
5
5
|
|
|
6
6
|
//#region src/components/Icon.d.ts
|
|
7
|
+
/**
|
|
8
|
+
* Props for the Icon component.
|
|
9
|
+
* @see IconPropsWithSVGProps
|
|
10
|
+
*/
|
|
11
|
+
type IconProps = IconPropsWithSVGProps;
|
|
7
12
|
/**
|
|
8
13
|
* **🎨 A component for displaying icons**
|
|
9
14
|
*
|
|
@@ -35,4 +40,4 @@ import * as react from "react";
|
|
|
35
40
|
*/
|
|
36
41
|
declare const Icon: react.ForwardRefExoticComponent<IconPropsWithSVGProps & react.RefAttributes<SVGSVGElement>>;
|
|
37
42
|
//#endregion
|
|
38
|
-
export { Icon, type
|
|
43
|
+
export { Icon, type IconProps };
|
|
@@ -4,6 +4,11 @@ import "../tokens/index.cjs";
|
|
|
4
4
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
5
|
|
|
6
6
|
//#region src/components/Image.d.ts
|
|
7
|
+
/**
|
|
8
|
+
* Props for the Image component.
|
|
9
|
+
* @see ImagePropsWithImgProps
|
|
10
|
+
*/
|
|
11
|
+
type ImageProps = ImagePropsWithImgProps;
|
|
7
12
|
/**
|
|
8
13
|
* **📸 A component for displaying images**
|
|
9
14
|
*
|
|
@@ -83,9 +88,9 @@ declare function Image({
|
|
|
83
88
|
columnGap,
|
|
84
89
|
rowGap,
|
|
85
90
|
...props
|
|
86
|
-
}:
|
|
91
|
+
}: ImageProps): react_jsx_runtime0.JSX.Element;
|
|
87
92
|
declare namespace Image {
|
|
88
93
|
var displayName: string;
|
|
89
94
|
}
|
|
90
95
|
//#endregion
|
|
91
|
-
export { Image, type
|
|
96
|
+
export { Image, type ImageProps };
|
|
@@ -4,6 +4,11 @@ import "../tokens/index.js";
|
|
|
4
4
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
5
|
|
|
6
6
|
//#region src/components/Image.d.ts
|
|
7
|
+
/**
|
|
8
|
+
* Props for the Image component.
|
|
9
|
+
* @see ImagePropsWithImgProps
|
|
10
|
+
*/
|
|
11
|
+
type ImageProps = ImagePropsWithImgProps;
|
|
7
12
|
/**
|
|
8
13
|
* **📸 A component for displaying images**
|
|
9
14
|
*
|
|
@@ -83,9 +88,9 @@ declare function Image({
|
|
|
83
88
|
columnGap,
|
|
84
89
|
rowGap,
|
|
85
90
|
...props
|
|
86
|
-
}:
|
|
91
|
+
}: ImageProps): react_jsx_runtime0.JSX.Element;
|
|
87
92
|
declare namespace Image {
|
|
88
93
|
var displayName: string;
|
|
89
94
|
}
|
|
90
95
|
//#endregion
|
|
91
|
-
export { Image, type
|
|
96
|
+
export { Image, type ImageProps };
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { UniversalIconSlot } from "../../../types/dist/index.cjs";
|
|
3
|
-
import { IconPropsWithSVGProps } from "../../../tokens/types.cjs";
|
|
4
3
|
import "../../../tokens/index.cjs";
|
|
5
|
-
import "../../Icon.cjs";
|
|
4
|
+
import { IconProps } from "../../Icon.cjs";
|
|
6
5
|
import { InputProps } from "./Input.cjs";
|
|
7
6
|
import * as react from "react";
|
|
8
7
|
import { PropsWithChildren } from "react";
|
|
@@ -18,7 +17,7 @@ interface InputHelpTextInternalProps extends PropsWithChildren {
|
|
|
18
17
|
* Props to pass to the start/end icon. If color is not provided, the icons
|
|
19
18
|
* will inherit the color from the `color` prop.
|
|
20
19
|
*/
|
|
21
|
-
iconProps?: Pick<
|
|
20
|
+
iconProps?: Pick<IconProps, 'color' | 'size' | 'variant'>;
|
|
22
21
|
size?: InputProps['size'];
|
|
23
22
|
isFilled?: boolean;
|
|
24
23
|
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { UniversalIconSlot } from "../../../types/dist/index.js";
|
|
3
|
-
import { IconPropsWithSVGProps } from "../../../tokens/types.js";
|
|
4
3
|
import "../../../tokens/index.js";
|
|
5
|
-
import "../../Icon.js";
|
|
4
|
+
import { IconProps } from "../../Icon.js";
|
|
6
5
|
import { InputProps } from "./Input.js";
|
|
7
6
|
import * as react from "react";
|
|
8
7
|
import { PropsWithChildren } from "react";
|
|
@@ -18,7 +17,7 @@ interface InputHelpTextInternalProps extends PropsWithChildren {
|
|
|
18
17
|
* Props to pass to the start/end icon. If color is not provided, the icons
|
|
19
18
|
* will inherit the color from the `color` prop.
|
|
20
19
|
*/
|
|
21
|
-
iconProps?: Pick<
|
|
20
|
+
iconProps?: Pick<IconProps, 'color' | 'size' | 'variant'>;
|
|
22
21
|
size?: InputProps['size'];
|
|
23
22
|
isFilled?: boolean;
|
|
24
23
|
}
|
|
@@ -88,6 +88,6 @@ interface MenuItemCheckboxProps extends Omit<PressableProps, 'asChild'>, HtmlBut
|
|
|
88
88
|
*
|
|
89
89
|
* @related [Menu](https://uds.build/docs/components/menu), [Menu.Item](https://uds.build/docs/components/menu-item)
|
|
90
90
|
**/
|
|
91
|
-
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "active" | "
|
|
91
|
+
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "active" | "hideEndIcon" | "rootProps"> & react.RefAttributes<HTMLDivElement>>;
|
|
92
92
|
//#endregion
|
|
93
93
|
export { MenuItemCheckbox, type MenuItemCheckboxProps };
|
|
@@ -88,6 +88,6 @@ interface MenuItemCheckboxProps extends Omit<PressableProps, 'asChild'>, HtmlBut
|
|
|
88
88
|
*
|
|
89
89
|
* @related [Menu](https://uds.build/docs/components/menu), [Menu.Item](https://uds.build/docs/components/menu-item)
|
|
90
90
|
**/
|
|
91
|
-
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "active" | "
|
|
91
|
+
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "active" | "hideEndIcon" | "rootProps"> & react.RefAttributes<HTMLDivElement>>;
|
|
92
92
|
//#endregion
|
|
93
93
|
export { MenuItemCheckbox, type MenuItemCheckboxProps };
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
|
|
2
|
-
import {
|
|
3
|
-
import "../Icon.cjs";
|
|
2
|
+
import { IconProps } from "../Icon.cjs";
|
|
4
3
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
4
|
|
|
6
5
|
//#region src/components/experimental/Spinner.d.ts
|
|
7
6
|
type SpinnerProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
8
|
-
color?:
|
|
9
|
-
size?:
|
|
7
|
+
color?: IconProps['color'];
|
|
8
|
+
size?: IconProps['size'];
|
|
10
9
|
};
|
|
11
10
|
declare function Spinner({
|
|
12
11
|
className,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
|
|
2
|
-
import {
|
|
3
|
-
import "../Icon.js";
|
|
2
|
+
import { IconProps } from "../Icon.js";
|
|
4
3
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
4
|
|
|
6
5
|
//#region src/components/experimental/Spinner.d.ts
|
|
7
6
|
type SpinnerProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
8
|
-
color?:
|
|
9
|
-
size?:
|
|
7
|
+
color?: IconProps['color'];
|
|
8
|
+
size?: IconProps['size'];
|
|
10
9
|
};
|
|
11
10
|
declare function Spinner({
|
|
12
11
|
className,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import {
|
|
2
|
+
import { IconProps } from "../../Icon.cjs";
|
|
3
3
|
import "../../index.cjs";
|
|
4
4
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
5
|
|
|
@@ -7,8 +7,8 @@ import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
|
7
7
|
interface SegmentedControlOption<T extends string> {
|
|
8
8
|
label: string;
|
|
9
9
|
value: T;
|
|
10
|
-
startIcon?:
|
|
11
|
-
endIcon?:
|
|
10
|
+
startIcon?: IconProps['name'];
|
|
11
|
+
endIcon?: IconProps['name'];
|
|
12
12
|
disabled?: boolean;
|
|
13
13
|
}
|
|
14
14
|
interface SegmentedControlProps<T extends string> {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import {
|
|
2
|
+
import { IconProps } from "../../Icon.js";
|
|
3
3
|
import "../../index.js";
|
|
4
4
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
5
|
|
|
@@ -7,8 +7,8 @@ import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
|
7
7
|
interface SegmentedControlOption<T extends string> {
|
|
8
8
|
label: string;
|
|
9
9
|
value: T;
|
|
10
|
-
startIcon?:
|
|
11
|
-
endIcon?:
|
|
10
|
+
startIcon?: IconProps['name'];
|
|
11
|
+
endIcon?: IconProps['name'];
|
|
12
12
|
disabled?: boolean;
|
|
13
13
|
}
|
|
14
14
|
interface SegmentedControlProps<T extends string> {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import {
|
|
2
|
+
import { IconProps } from "../../Icon.cjs";
|
|
3
3
|
import "../../index.cjs";
|
|
4
4
|
import * as react from "react";
|
|
5
5
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
@@ -10,7 +10,7 @@ interface TabProps extends React.PropsWithChildren {
|
|
|
10
10
|
asChild?: boolean;
|
|
11
11
|
value: string;
|
|
12
12
|
label: string;
|
|
13
|
-
startIcon?:
|
|
13
|
+
startIcon?: IconProps['name'];
|
|
14
14
|
}
|
|
15
15
|
declare function Tabs(props: TabsProps): react_jsx_runtime0.JSX.Element;
|
|
16
16
|
declare namespace Tabs {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import {
|
|
2
|
+
import { IconProps } from "../../Icon.js";
|
|
3
3
|
import "../../index.js";
|
|
4
4
|
import * as react from "react";
|
|
5
5
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
@@ -10,7 +10,7 @@ interface TabProps extends React.PropsWithChildren {
|
|
|
10
10
|
asChild?: boolean;
|
|
11
11
|
value: string;
|
|
12
12
|
label: string;
|
|
13
|
-
startIcon?:
|
|
13
|
+
startIcon?: IconProps['name'];
|
|
14
14
|
}
|
|
15
15
|
declare function Tabs(props: TabsProps): react_jsx_runtime0.JSX.Element;
|
|
16
16
|
declare namespace Tabs {
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
|
|
2
|
-
import { ImagePropsWithImgProps } from "../types/dist/index.cjs";
|
|
3
|
-
import { IconPropsWithSVGProps } from "../tokens/types.cjs";
|
|
4
2
|
import { Box, BoxProps } from "./Box.cjs";
|
|
5
3
|
import { Divider, DividerProps } from "./Divider/Divider.cjs";
|
|
6
4
|
import "./Divider/index.cjs";
|
|
7
5
|
import { FormLabel, FormLabelProps } from "./FormLabel.cjs";
|
|
8
6
|
import { HStack, HStackProps } from "./HStack.cjs";
|
|
9
|
-
import { Icon } from "./Icon.cjs";
|
|
10
|
-
import { Image } from "./Image.cjs";
|
|
7
|
+
import { Icon, IconProps } from "./Icon.cjs";
|
|
8
|
+
import { Image, ImageProps } from "./Image.cjs";
|
|
11
9
|
import { Link, LinkProps } from "./Link.cjs";
|
|
12
10
|
import { Text, TextProps } from "./Text.cjs";
|
|
13
11
|
import { VStack, VStackProps } from "./VStack.cjs";
|
|
@@ -46,4 +44,4 @@ import { ToastLoadingPromise, createToast } from "./client/Toast/createToast.cjs
|
|
|
46
44
|
import { UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, useBreakpointsConfig } from "./client/providers/UDSBreakpointsConfigProvider.cjs";
|
|
47
45
|
import { UDSConfigProvider, UDSConfigProviderProps } from "./client/providers/UDSConfigProvider.cjs";
|
|
48
46
|
import "./client/index.cjs";
|
|
49
|
-
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type
|
|
47
|
+
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type IconProps, Image, type ImageProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Link, type LinkProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Text, type TextProps, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, VStack, type VStackProps, createToast, useBreakpointsConfig, useToastConfig };
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
|
|
2
|
-
import { ImagePropsWithImgProps } from "../types/dist/index.js";
|
|
3
|
-
import { IconPropsWithSVGProps } from "../tokens/types.js";
|
|
4
2
|
import { Box, BoxProps } from "./Box.js";
|
|
5
3
|
import { Divider, DividerProps } from "./Divider/Divider.js";
|
|
6
4
|
import "./Divider/index.js";
|
|
7
5
|
import { FormLabel, FormLabelProps } from "./FormLabel.js";
|
|
8
6
|
import { HStack, HStackProps } from "./HStack.js";
|
|
9
|
-
import { Icon } from "./Icon.js";
|
|
10
|
-
import { Image } from "./Image.js";
|
|
7
|
+
import { Icon, IconProps } from "./Icon.js";
|
|
8
|
+
import { Image, ImageProps } from "./Image.js";
|
|
11
9
|
import { Link, LinkProps } from "./Link.js";
|
|
12
10
|
import { Text, TextProps } from "./Text.js";
|
|
13
11
|
import { VStack, VStackProps } from "./VStack.js";
|
|
@@ -46,4 +44,4 @@ import { ToastLoadingPromise, createToast } from "./client/Toast/createToast.js"
|
|
|
46
44
|
import { UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, useBreakpointsConfig } from "./client/providers/UDSBreakpointsConfigProvider.js";
|
|
47
45
|
import { UDSConfigProvider, UDSConfigProviderProps } from "./client/providers/UDSConfigProvider.js";
|
|
48
46
|
import "./client/index.js";
|
|
49
|
-
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type
|
|
47
|
+
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type IconProps, Image, type ImageProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Link, type LinkProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Text, type TextProps, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, VStack, type VStackProps, createToast, useBreakpointsConfig, useToastConfig };
|
|
@@ -1851,7 +1851,7 @@ var fontUrls = [
|
|
|
1851
1851
|
"https://s.yimg.com/bw/fonts/gelica-bold-italic.woff2",
|
|
1852
1852
|
"https://s.yimg.com/bw/fonts/gelica-black.woff2",
|
|
1853
1853
|
"https://s.yimg.com/bw/fonts/gelica-black-italic.woff2",
|
|
1854
|
-
"https://s.yimg.com/bw/fonts/yas-normal-no-italic-vf.woff2",
|
|
1854
|
+
"https://s.yimg.com/bw/fonts/yas-latin1-normal-no-italic-vf.woff2",
|
|
1855
1855
|
"https://s.yimg.com/bw/fonts/inter-vf.woff2",
|
|
1856
1856
|
"https://s.yimg.com/bw/fonts/roboto-mono-100.woff2",
|
|
1857
1857
|
"https://s.yimg.com/bw/fonts/roboto-mono-100-italic.woff2",
|
|
@@ -97,6 +97,6 @@ declare const fontIds: ("centra-no2" | "gelica" | "yas" | "inter" | "roboto-mono
|
|
|
97
97
|
/**
|
|
98
98
|
* Web-only font CDN URLs extracted from font-face src declarations.
|
|
99
99
|
*/
|
|
100
|
-
declare const fontUrls: ("https://s.yimg.com/bw/fonts/centra-no2-hairline.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-hairline-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-light.woff2" | "https://s.yimg.com/bw/fonts/gelica-light-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-black.woff2" | "https://s.yimg.com/bw/fonts/gelica-black-italic.woff2" | "https://s.yimg.com/bw/fonts/yas-normal-no-italic-vf.woff2" | "https://s.yimg.com/bw/fonts/inter-vf.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-cr4-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-product-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/YahooPd_Eval202412-v1.1.0.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-condensed-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-light.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-extrabold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-black.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold-italic.woff2")[];
|
|
100
|
+
declare const fontUrls: ("https://s.yimg.com/bw/fonts/centra-no2-hairline.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-hairline-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-light.woff2" | "https://s.yimg.com/bw/fonts/gelica-light-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-black.woff2" | "https://s.yimg.com/bw/fonts/gelica-black-italic.woff2" | "https://s.yimg.com/bw/fonts/yas-latin1-normal-no-italic-vf.woff2" | "https://s.yimg.com/bw/fonts/inter-vf.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-cr4-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-product-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/YahooPd_Eval202412-v1.1.0.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-condensed-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-light.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-extrabold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-black.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold-italic.woff2")[];
|
|
101
101
|
//#endregion
|
|
102
102
|
export { alwaysPaletteAliases, avatarShapes, avatarSizes, backgroundColors, backgroundPaletteColors, badgeSizes, badgeVariants, borderRadii, borderWidths, borderWidthsWithElevation, breakpoints, buttonIconSvgSize, buttonPalettes, buttonSizes, buttonVariants, buttonVariantsFlat, buttonVariantsPrimary, buttonVariantsSecondary, buttonVariantsTertiary, checkboxSizes, checkboxVariants, chipSizes, chipVariants, colorModes, configurableComponentNames, elevationAliases, elevationLevels, elevationShadowLayerCount, fontAliases, fontIds, fontUrls, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconButtonSizes, iconSizes, iconVariants, index_d_exports, inputSizes, lineColors, linePaletteColors, linkTextVariants, linkVariants, motionSpringConfigOptions, motionVariantSpeeds, motionVariants, opacityMap, opacitySteps, palette, regionModes, scaleEffects, scaleModes, shadowColors, shadowOffsetMap, shadowOffsets, shadowOpacities, shadowOpacityMap, shadowPaletteColors, shadowSpreadRadii, shadowSpreadRadiusMap, shadowVariantConfigs, shadowVariants, shadowVariantsInvert, shadowVariantsWithInvert, sortPalette, spacingAliases, spacingMap, spectrumColors, switchSizes, textDecorationLines, textProperties, textTransforms, textVariants, textVariantsTypography, textVariantsUi, textVariantsWithoutEmphasized, toastSizes, toastVariants, tshirtSizes, typographyStyleProperties };
|
|
@@ -97,6 +97,6 @@ declare const fontIds: ("centra-no2" | "gelica" | "yas" | "inter" | "roboto-mono
|
|
|
97
97
|
/**
|
|
98
98
|
* Web-only font CDN URLs extracted from font-face src declarations.
|
|
99
99
|
*/
|
|
100
|
-
declare const fontUrls: ("https://s.yimg.com/bw/fonts/centra-no2-hairline.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-hairline-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-light.woff2" | "https://s.yimg.com/bw/fonts/gelica-light-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-black.woff2" | "https://s.yimg.com/bw/fonts/gelica-black-italic.woff2" | "https://s.yimg.com/bw/fonts/yas-normal-no-italic-vf.woff2" | "https://s.yimg.com/bw/fonts/inter-vf.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-cr4-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-product-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/YahooPd_Eval202412-v1.1.0.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-condensed-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-light.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-extrabold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-black.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold-italic.woff2")[];
|
|
100
|
+
declare const fontUrls: ("https://s.yimg.com/bw/fonts/centra-no2-hairline.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-hairline-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-light.woff2" | "https://s.yimg.com/bw/fonts/gelica-light-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-black.woff2" | "https://s.yimg.com/bw/fonts/gelica-black-italic.woff2" | "https://s.yimg.com/bw/fonts/yas-latin1-normal-no-italic-vf.woff2" | "https://s.yimg.com/bw/fonts/inter-vf.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-cr4-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-product-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/YahooPd_Eval202412-v1.1.0.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-condensed-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-light.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-extrabold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-black.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold-italic.woff2")[];
|
|
101
101
|
//#endregion
|
|
102
102
|
export { alwaysPaletteAliases, avatarShapes, avatarSizes, backgroundColors, backgroundPaletteColors, badgeSizes, badgeVariants, borderRadii, borderWidths, borderWidthsWithElevation, breakpoints, buttonIconSvgSize, buttonPalettes, buttonSizes, buttonVariants, buttonVariantsFlat, buttonVariantsPrimary, buttonVariantsSecondary, buttonVariantsTertiary, checkboxSizes, checkboxVariants, chipSizes, chipVariants, colorModes, configurableComponentNames, elevationAliases, elevationLevels, elevationShadowLayerCount, fontAliases, fontIds, fontUrls, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconButtonSizes, iconSizes, iconVariants, index_d_exports, inputSizes, lineColors, linePaletteColors, linkTextVariants, linkVariants, motionSpringConfigOptions, motionVariantSpeeds, motionVariants, opacityMap, opacitySteps, palette, regionModes, scaleEffects, scaleModes, shadowColors, shadowOffsetMap, shadowOffsets, shadowOpacities, shadowOpacityMap, shadowPaletteColors, shadowSpreadRadii, shadowSpreadRadiusMap, shadowVariantConfigs, shadowVariants, shadowVariantsInvert, shadowVariantsWithInvert, sortPalette, spacingAliases, spacingMap, spectrumColors, switchSizes, textDecorationLines, textProperties, textTransforms, textVariants, textVariantsTypography, textVariantsUi, textVariantsWithoutEmphasized, toastSizes, toastVariants, tshirtSizes, typographyStyleProperties };
|
|
@@ -1850,7 +1850,7 @@ var fontUrls = [
|
|
|
1850
1850
|
"https://s.yimg.com/bw/fonts/gelica-bold-italic.woff2",
|
|
1851
1851
|
"https://s.yimg.com/bw/fonts/gelica-black.woff2",
|
|
1852
1852
|
"https://s.yimg.com/bw/fonts/gelica-black-italic.woff2",
|
|
1853
|
-
"https://s.yimg.com/bw/fonts/yas-normal-no-italic-vf.woff2",
|
|
1853
|
+
"https://s.yimg.com/bw/fonts/yas-latin1-normal-no-italic-vf.woff2",
|
|
1854
1854
|
"https://s.yimg.com/bw/fonts/inter-vf.woff2",
|
|
1855
1855
|
"https://s.yimg.com/bw/fonts/roboto-mono-100.woff2",
|
|
1856
1856
|
"https://s.yimg.com/bw/fonts/roboto-mono-100-italic.woff2",
|
|
@@ -314,7 +314,7 @@ const FONT_DECLARATIONS_MAP = {
|
|
|
314
314
|
declarations: [{
|
|
315
315
|
fontStyle: "normal",
|
|
316
316
|
fontWeight: "1 1000",
|
|
317
|
-
src: `${UDS_FONTS_CDN_PREFIX}/yas-normal-no-italic-vf.woff2`
|
|
317
|
+
src: `${UDS_FONTS_CDN_PREFIX}/yas-latin1-normal-no-italic-vf.woff2`
|
|
318
318
|
}]
|
|
319
319
|
},
|
|
320
320
|
inter: {
|
|
@@ -241,7 +241,7 @@ declare const FONT_DECLARATIONS_MAP: {
|
|
|
241
241
|
readonly declarations: [{
|
|
242
242
|
/** TODO: We can make performant by only including font weights used for this font in config */readonly fontStyle: "normal";
|
|
243
243
|
readonly fontWeight: "1 1000";
|
|
244
|
-
readonly src: "https://s.yimg.com/bw/fonts/yas-normal-no-italic-vf.woff2";
|
|
244
|
+
readonly src: "https://s.yimg.com/bw/fonts/yas-latin1-normal-no-italic-vf.woff2";
|
|
245
245
|
}];
|
|
246
246
|
};
|
|
247
247
|
readonly inter: {
|
|
@@ -241,7 +241,7 @@ declare const FONT_DECLARATIONS_MAP: {
|
|
|
241
241
|
readonly declarations: [{
|
|
242
242
|
/** TODO: We can make performant by only including font weights used for this font in config */readonly fontStyle: "normal";
|
|
243
243
|
readonly fontWeight: "1 1000";
|
|
244
|
-
readonly src: "https://s.yimg.com/bw/fonts/yas-normal-no-italic-vf.woff2";
|
|
244
|
+
readonly src: "https://s.yimg.com/bw/fonts/yas-latin1-normal-no-italic-vf.woff2";
|
|
245
245
|
}];
|
|
246
246
|
};
|
|
247
247
|
readonly inter: {
|
package/dist/fonts/dist/index.js
CHANGED
|
@@ -313,7 +313,7 @@ const FONT_DECLARATIONS_MAP = {
|
|
|
313
313
|
declarations: [{
|
|
314
314
|
fontStyle: "normal",
|
|
315
315
|
fontWeight: "1 1000",
|
|
316
|
-
src: `${UDS_FONTS_CDN_PREFIX}/yas-normal-no-italic-vf.woff2`
|
|
316
|
+
src: `${UDS_FONTS_CDN_PREFIX}/yas-latin1-normal-no-italic-vf.woff2`
|
|
317
317
|
}]
|
|
318
318
|
},
|
|
319
319
|
inter: {
|
package/dist/index.d.cts
CHANGED
|
@@ -37,8 +37,8 @@ import { Box, BoxProps } from "./components/Box.cjs";
|
|
|
37
37
|
import { Divider, DividerProps } from "./components/Divider/Divider.cjs";
|
|
38
38
|
import { FormLabel, FormLabelProps } from "./components/FormLabel.cjs";
|
|
39
39
|
import { HStack, HStackProps } from "./components/HStack.cjs";
|
|
40
|
-
import { Icon } from "./components/Icon.cjs";
|
|
41
|
-
import { Image } from "./components/Image.cjs";
|
|
40
|
+
import { Icon, IconProps } from "./components/Icon.cjs";
|
|
41
|
+
import { Image, ImageProps } from "./components/Image.cjs";
|
|
42
42
|
import { Link, LinkProps } from "./components/Link.cjs";
|
|
43
43
|
import { Text, TextProps } from "./components/Text.cjs";
|
|
44
44
|
import { VStack, VStackProps } from "./components/VStack.cjs";
|
|
@@ -83,4 +83,4 @@ import { UDSConfigProvider, UDSConfigProviderProps } from "./components/client/p
|
|
|
83
83
|
import "./components/index.cjs";
|
|
84
84
|
import "./runtime/index.cjs";
|
|
85
85
|
import { SetState } from "./types.cjs";
|
|
86
|
-
export { ALWAYS_PREFIX, AVATAR_SIZE_PREFIX, AllPossibleProperties, AllSelectors, AllVariantKeys, AlwaysPaletteAlias, AlwaysPaletteAliasWithPrefix, AlwaysPaletteColor, Animation, AriaAttribute, AutoComponentName, Avatar, AvatarAbbreviationStrategy, AvatarConfig, AvatarIcon, AvatarIconProps, AvatarImage, AvatarImageProps, AvatarProps, AvatarShape, AvatarSize, AvatarSizeConfig, AvatarText, AvatarTextProps, AvatarVariant, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, BackgroundColor, BackgroundPalette, BackgroundPaletteAlias, BackgroundStyleProps, BackwardsCompatibleReactElement, Badge, BadgeConfig, BadgeProps, BadgeSize, BadgeVariant, BaseSelector, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, Box, BoxProps, Breakpoint, BreakpointValue, BreakpointWithBase, BreakpointsConfig, Button, ButtonConfig, ButtonPalette, ButtonPaletteColor, ButtonProps, ButtonSize, ButtonSpectrumColor, ButtonVariant, ButtonVariantFlat, Checkbox, CheckboxConfig, CheckboxProps, CheckboxSize, CheckboxValue, CheckboxVariant, Chip, ChipButton, ChipButtonProps, ChipConfig, ChipDismissible, ChipDismissibleProps, ChipLink, ChipLinkProps, ChipProps, ChipSize, ChipToggle, ChipToggleProps, ChipVariant, ColorMode, ColorModeConfig, ColorModeForApp, ColorsConfig, ComponentConfig, ComponentSchema, ComponentStateConfig, ConfigurableComponentName, ConfigurablePropertiesName, CssStyleObject, CustomSizingStyleProps, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_FOR_APP, DEFAULT_HIGH_CONTRAST_MODE, DEFAULT_REGION_MODE, DEFAULT_SCALE_MODE, DEFAULT_SCALE_MODE_CLASSNAME, DEFAULT_SCALE_MODE_FOR_APP, DROP_SHADOW_PREFIX, DataAttribute, DeprecatedAlwaysPaletteAlias, Display, Divider, DividerConfig, DividerProps, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomShadows, ElevationGlobalRampConfig, ElevationGlobalRampSettings, ElevationLevel, ElevationPreset, ElevationSurfaceColor, ExtractUrlFromFontFaceRule, FONT_DECLARATIONS_MAP, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, Flex, FlexAlignContent, FlexAlignItems, FlexAlignSelf, FlexBasis, FlexDirection, FlexGrow, FlexJustifyContent, FlexShrink, FlexStyleProps, FlexWrap, FontAlias, FontAxisConfig, FontConfig, FontCssVar, FontDeclarationConfig, FontDeclarationItemConfig, FontDeclarationMap, FontFamilyCDNUrl, FontFamilyConfig, FontID, FontSize, FontSizeConfig, FontSlantConfig, FontType, FontUrlConfig, FontUrlMap, FontWeightConfig, FontWeightDescriptive, FontWeightForFont, FontWeightNumeric, FontWidthConfig, ForegroundColor, ForegroundPalette, ForegroundPaletteAlias, FormLabel, FormLabelProps, GenericIconComponent, GlobalDefaultsConfig, HStack, HStackProps, HighContrastMode, Hue, HueStep, ICON_SIZE_PREFIX, INVERT_COLOR_MODE_CLASSNAME, Icon, IconButton, IconButtonConfig, IconButtonProps, IconButtonSize, IconPixelSize,
|
|
86
|
+
export { ALWAYS_PREFIX, AVATAR_SIZE_PREFIX, AllPossibleProperties, AllSelectors, AllVariantKeys, AlwaysPaletteAlias, AlwaysPaletteAliasWithPrefix, AlwaysPaletteColor, Animation, AriaAttribute, AutoComponentName, Avatar, AvatarAbbreviationStrategy, AvatarConfig, AvatarIcon, AvatarIconProps, AvatarImage, AvatarImageProps, AvatarProps, AvatarShape, AvatarSize, AvatarSizeConfig, AvatarText, AvatarTextProps, AvatarVariant, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, BackgroundColor, BackgroundPalette, BackgroundPaletteAlias, BackgroundStyleProps, BackwardsCompatibleReactElement, Badge, BadgeConfig, BadgeProps, BadgeSize, BadgeVariant, BaseSelector, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, Box, BoxProps, Breakpoint, BreakpointValue, BreakpointWithBase, BreakpointsConfig, Button, ButtonConfig, ButtonPalette, ButtonPaletteColor, ButtonProps, ButtonSize, ButtonSpectrumColor, ButtonVariant, ButtonVariantFlat, Checkbox, CheckboxConfig, CheckboxProps, CheckboxSize, CheckboxValue, CheckboxVariant, Chip, ChipButton, ChipButtonProps, ChipConfig, ChipDismissible, ChipDismissibleProps, ChipLink, ChipLinkProps, ChipProps, ChipSize, ChipToggle, ChipToggleProps, ChipVariant, ColorMode, ColorModeConfig, ColorModeForApp, ColorsConfig, ComponentConfig, ComponentSchema, ComponentStateConfig, ConfigurableComponentName, ConfigurablePropertiesName, CssStyleObject, CustomSizingStyleProps, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_FOR_APP, DEFAULT_HIGH_CONTRAST_MODE, DEFAULT_REGION_MODE, DEFAULT_SCALE_MODE, DEFAULT_SCALE_MODE_CLASSNAME, DEFAULT_SCALE_MODE_FOR_APP, DROP_SHADOW_PREFIX, DataAttribute, DeprecatedAlwaysPaletteAlias, Display, Divider, DividerConfig, DividerProps, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomShadows, ElevationGlobalRampConfig, ElevationGlobalRampSettings, ElevationLevel, ElevationPreset, ElevationSurfaceColor, ExtractUrlFromFontFaceRule, FONT_DECLARATIONS_MAP, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, Flex, FlexAlignContent, FlexAlignItems, FlexAlignSelf, FlexBasis, FlexDirection, FlexGrow, FlexJustifyContent, FlexShrink, FlexStyleProps, FlexWrap, FontAlias, FontAxisConfig, FontConfig, FontCssVar, FontDeclarationConfig, FontDeclarationItemConfig, FontDeclarationMap, FontFamilyCDNUrl, FontFamilyConfig, FontID, FontSize, FontSizeConfig, FontSlantConfig, FontType, FontUrlConfig, FontUrlMap, FontWeightConfig, FontWeightDescriptive, FontWeightForFont, FontWeightNumeric, FontWidthConfig, ForegroundColor, ForegroundPalette, ForegroundPaletteAlias, FormLabel, FormLabelProps, GenericIconComponent, GlobalDefaultsConfig, HStack, HStackProps, HighContrastMode, Hue, HueStep, ICON_SIZE_PREFIX, INVERT_COLOR_MODE_CLASSNAME, Icon, IconButton, IconButtonConfig, IconButtonProps, IconButtonSize, IconPixelSize, IconProps, IconPropsWithSVGProps, IconSize, IconSizeConfig, IconSlotRenderProps, IconVariant, Image, ImageProps, ImagePropsWithImgProps, ImageStyleProps, ImgElementProps, Input, InputConfig, InputHelpText, InputHelpTextProps, InputProps, InputSize, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, LayerConfig, LayoutStyleProps, LineClampAlias, LineColor, LineHeight, LineHeightConfig, LinePalette, LinePaletteAlias, Link, LinkConfig, LinkProps, LinkTextVariant, LinkVariant, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, MaxLengthArray, Menu_index_d_exports as Menu, MenuContentConfig, MenuContentProps, MenuDividerProps, MenuItemCheckboxProps, MenuItemConfig, MenuItemProps, MenuPlacement, MenuProviderProps, MenuTriggerProps, Modes, MotionConfig, MotionCssVar, MotionSpringConfig, MotionSpringConfigOptions, MotionVariant, MotionVariantSpeed, MotionVariantValues, NestedBorderRadiusStyleProps, OpacityStep, Overflow, PSEUDO_STYLE_SELECTOR_MAP, Palette, PaletteConfig, PaletteType, PaletteValue, ParentVariantSelector, Percentage, PercentageUnit, PixelsUnit, PlatformMode, Position, PossibleStates, PossibleStatesWithRest, Pressable, PressableProps, PropertyToPaletteAliasMap, RGBAUnit, RGBColorValue, RGBUnit, Radio, RadioConfig, RadioGroupProvider, RadioGroupProviderProps, RadioProps, RadioSize, RadioValue, RadioVariant, RegionMode, RemsUnit, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SVGElementProps, SYSTEM_COLOR_MODE_CLASSNAME, ScaleConfig, ScaleEffect, ScaleMode, ScaleModeConfig, ScaleModeForApp, SelectedConfigurableProperty, SetState, ShadowAlwaysColor, ShadowColor, ShadowColorConfig, ShadowConfig, ShadowOffset, ShadowOpacity, ShadowPalette, ShadowPaletteAlias, ShadowPaletteColor, ShadowPreset, ShadowSpectrumColor, ShadowSpreadRadius, ShadowStyleProps, ShadowType, ShadowTypeConfig, ShadowVariant, ShadowVariantConfig, ShadowVariantInvert, ShadowVariantWithElevation, ShadowVariantWithInvert, SharedPaletteAlias, SizeStyleProps, SpacingAlias, SpacingConfig, SpacingStyleProps, SpectrumColor, SpectrumConfig, SpectrumValue, SpringMotionConfig, SpringMotionConfigProps, StateStyleProps, StyleProps, SubComponentConfig, Switch, SwitchConfig, SwitchProps, SwitchSize, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, TShirtSize, TShirtSizeCommon, Text, TextDecorationLine, TextProperty, TextProps, TextStyleProps, TextTransform, TextTransformConfig, TextVariant, TextVariantTypography, TextVariantUi, TextVariantWithoutEmphasized, Toast, ToastConfig, ToastContainer, ToastContainerProps, ToastLoadingPromise, ToastPortal, ToastPortalProps, ToastPosition, ToastProps, ToastSize, ToastVariant, TransitionDelay, TransitionDuration, TransitionTiming, TypographyConfig, TypographyResponsiveProperty, TypographyStyle, TypographyStyleProperty, TypographyUnitValue, UDSBreakpointsConfigContextType, UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, UDSConfigContextType, UDSConfigProvider, UDSConfigProviderProps, UDSToastConfigContextType, UDSToastConfigProvider, UDSToastConfigProviderProps, UDS_PREFIX, UdsCssVar, UnitlessUnit, UniversalAvatarBaseProps, UniversalAvatarIconProps, UniversalAvatarImageProps, UniversalAvatarProps, UniversalAvatarTextProps, UniversalBadgeProps, UniversalBoxProps, UniversalButtonProps, UniversalCheckboxProps, UniversalChipBaseProps, UniversalChipButtonProps, UniversalChipDismissibleProps, UniversalChipLinkProps, UniversalChipProps, UniversalChipToggleProps, UniversalDividerProps, UniversalFormLabelProps, UniversalIconButtonProps, UniversalIconProps, UniversalIconSlot, UniversalImageProps, UniversalInputProps, UniversalLinkProps, UniversalMenuItemProps, UniversalPressableProps, UniversalRadioGroupProps, UniversalRadioProps, UniversalStackProps, UniversalSwitchProps, UniversalTextProps, UniversalToastProps, UniversalTokensConfig, UniversalTokensConfigAuto, UniversalTokensConfigAutoBase, UniversalTokensConfigBase, UniversalTokensConfigGeneric, VStack, VStackProps, VariantConfig, VariantConfigWithComponentStates, VariantConfigWithProperties, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, alwaysPalette, buildConfigSchema, cartesianProduct, coalesceConfigVariant, configToBreakpointsConfigContext, configToToastConfigContext, configToUDSConfigContext, createComponentStates, createConfigurableProperty, createLayerConfig, createSubComponentConfig, createToast, createVariantConfig, createVariantConfigWithComponentStates, createVariantConfigWithProperties, cva, cx, deprecatedAlwaysPalette, entries, findFixtureType, fontUrls, fontWeightMap, fromEntries, generateClassName, generateConfigStyles, generateDeclaration, generateDefaultClassName, generateKeyFromFlatConfigPath, generateSchemaKey, generateStyles, getConfigDefaultValue, getConfigSubcomponents, getConfigVariantComponentStates, getConfigVariantComponentStatesMatrix, getConfigVariantProperties, getConfigVariantPseudoStates, getConfigVariants, getFontUrls, getFontUrlsByIds, getShadowLayerValue, getStyles, getStylesCacheKeySymbol, isConfigDefaultValue, mapValues, newAlwaysPalette, parseButtonVariantFlat, parseOpacityStep, shadow, statePseudoMapDocsMode, textVariantsSafe, useBreakpointsConfig, useToastConfig, variants };
|
package/dist/index.d.ts
CHANGED
|
@@ -37,8 +37,8 @@ import { Box, BoxProps } from "./components/Box.js";
|
|
|
37
37
|
import { Divider, DividerProps } from "./components/Divider/Divider.js";
|
|
38
38
|
import { FormLabel, FormLabelProps } from "./components/FormLabel.js";
|
|
39
39
|
import { HStack, HStackProps } from "./components/HStack.js";
|
|
40
|
-
import { Icon } from "./components/Icon.js";
|
|
41
|
-
import { Image } from "./components/Image.js";
|
|
40
|
+
import { Icon, IconProps } from "./components/Icon.js";
|
|
41
|
+
import { Image, ImageProps } from "./components/Image.js";
|
|
42
42
|
import { Link, LinkProps } from "./components/Link.js";
|
|
43
43
|
import { Text, TextProps } from "./components/Text.js";
|
|
44
44
|
import { VStack, VStackProps } from "./components/VStack.js";
|
|
@@ -83,4 +83,4 @@ import { UDSConfigProvider, UDSConfigProviderProps } from "./components/client/p
|
|
|
83
83
|
import "./components/index.js";
|
|
84
84
|
import "./runtime/index.js";
|
|
85
85
|
import { SetState } from "./types.js";
|
|
86
|
-
export { ALWAYS_PREFIX, AVATAR_SIZE_PREFIX, AllPossibleProperties, AllSelectors, AllVariantKeys, AlwaysPaletteAlias, AlwaysPaletteAliasWithPrefix, AlwaysPaletteColor, Animation, AriaAttribute, AutoComponentName, Avatar, AvatarAbbreviationStrategy, AvatarConfig, AvatarIcon, AvatarIconProps, AvatarImage, AvatarImageProps, AvatarProps, AvatarShape, AvatarSize, AvatarSizeConfig, AvatarText, AvatarTextProps, AvatarVariant, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, BackgroundColor, BackgroundPalette, BackgroundPaletteAlias, BackgroundStyleProps, BackwardsCompatibleReactElement, Badge, BadgeConfig, BadgeProps, BadgeSize, BadgeVariant, BaseSelector, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, Box, BoxProps, Breakpoint, BreakpointValue, BreakpointWithBase, BreakpointsConfig, Button, ButtonConfig, ButtonPalette, ButtonPaletteColor, ButtonProps, ButtonSize, ButtonSpectrumColor, ButtonVariant, ButtonVariantFlat, Checkbox, CheckboxConfig, CheckboxProps, CheckboxSize, CheckboxValue, CheckboxVariant, Chip, ChipButton, ChipButtonProps, ChipConfig, ChipDismissible, ChipDismissibleProps, ChipLink, ChipLinkProps, ChipProps, ChipSize, ChipToggle, ChipToggleProps, ChipVariant, ColorMode, ColorModeConfig, ColorModeForApp, ColorsConfig, ComponentConfig, ComponentSchema, ComponentStateConfig, ConfigurableComponentName, ConfigurablePropertiesName, CssStyleObject, CustomSizingStyleProps, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_FOR_APP, DEFAULT_HIGH_CONTRAST_MODE, DEFAULT_REGION_MODE, DEFAULT_SCALE_MODE, DEFAULT_SCALE_MODE_CLASSNAME, DEFAULT_SCALE_MODE_FOR_APP, DROP_SHADOW_PREFIX, DataAttribute, DeprecatedAlwaysPaletteAlias, Display, Divider, DividerConfig, DividerProps, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomShadows, ElevationGlobalRampConfig, ElevationGlobalRampSettings, ElevationLevel, ElevationPreset, ElevationSurfaceColor, ExtractUrlFromFontFaceRule, FONT_DECLARATIONS_MAP, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, Flex, FlexAlignContent, FlexAlignItems, FlexAlignSelf, FlexBasis, FlexDirection, FlexGrow, FlexJustifyContent, FlexShrink, FlexStyleProps, FlexWrap, FontAlias, FontAxisConfig, FontConfig, FontCssVar, FontDeclarationConfig, FontDeclarationItemConfig, FontDeclarationMap, FontFamilyCDNUrl, FontFamilyConfig, FontID, FontSize, FontSizeConfig, FontSlantConfig, FontType, FontUrlConfig, FontUrlMap, FontWeightConfig, FontWeightDescriptive, FontWeightForFont, FontWeightNumeric, FontWidthConfig, ForegroundColor, ForegroundPalette, ForegroundPaletteAlias, FormLabel, FormLabelProps, GenericIconComponent, GlobalDefaultsConfig, HStack, HStackProps, HighContrastMode, Hue, HueStep, ICON_SIZE_PREFIX, INVERT_COLOR_MODE_CLASSNAME, Icon, IconButton, IconButtonConfig, IconButtonProps, IconButtonSize, IconPixelSize,
|
|
86
|
+
export { ALWAYS_PREFIX, AVATAR_SIZE_PREFIX, AllPossibleProperties, AllSelectors, AllVariantKeys, AlwaysPaletteAlias, AlwaysPaletteAliasWithPrefix, AlwaysPaletteColor, Animation, AriaAttribute, AutoComponentName, Avatar, AvatarAbbreviationStrategy, AvatarConfig, AvatarIcon, AvatarIconProps, AvatarImage, AvatarImageProps, AvatarProps, AvatarShape, AvatarSize, AvatarSizeConfig, AvatarText, AvatarTextProps, AvatarVariant, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, BackgroundColor, BackgroundPalette, BackgroundPaletteAlias, BackgroundStyleProps, BackwardsCompatibleReactElement, Badge, BadgeConfig, BadgeProps, BadgeSize, BadgeVariant, BaseSelector, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, Box, BoxProps, Breakpoint, BreakpointValue, BreakpointWithBase, BreakpointsConfig, Button, ButtonConfig, ButtonPalette, ButtonPaletteColor, ButtonProps, ButtonSize, ButtonSpectrumColor, ButtonVariant, ButtonVariantFlat, Checkbox, CheckboxConfig, CheckboxProps, CheckboxSize, CheckboxValue, CheckboxVariant, Chip, ChipButton, ChipButtonProps, ChipConfig, ChipDismissible, ChipDismissibleProps, ChipLink, ChipLinkProps, ChipProps, ChipSize, ChipToggle, ChipToggleProps, ChipVariant, ColorMode, ColorModeConfig, ColorModeForApp, ColorsConfig, ComponentConfig, ComponentSchema, ComponentStateConfig, ConfigurableComponentName, ConfigurablePropertiesName, CssStyleObject, CustomSizingStyleProps, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_FOR_APP, DEFAULT_HIGH_CONTRAST_MODE, DEFAULT_REGION_MODE, DEFAULT_SCALE_MODE, DEFAULT_SCALE_MODE_CLASSNAME, DEFAULT_SCALE_MODE_FOR_APP, DROP_SHADOW_PREFIX, DataAttribute, DeprecatedAlwaysPaletteAlias, Display, Divider, DividerConfig, DividerProps, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomShadows, ElevationGlobalRampConfig, ElevationGlobalRampSettings, ElevationLevel, ElevationPreset, ElevationSurfaceColor, ExtractUrlFromFontFaceRule, FONT_DECLARATIONS_MAP, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, Flex, FlexAlignContent, FlexAlignItems, FlexAlignSelf, FlexBasis, FlexDirection, FlexGrow, FlexJustifyContent, FlexShrink, FlexStyleProps, FlexWrap, FontAlias, FontAxisConfig, FontConfig, FontCssVar, FontDeclarationConfig, FontDeclarationItemConfig, FontDeclarationMap, FontFamilyCDNUrl, FontFamilyConfig, FontID, FontSize, FontSizeConfig, FontSlantConfig, FontType, FontUrlConfig, FontUrlMap, FontWeightConfig, FontWeightDescriptive, FontWeightForFont, FontWeightNumeric, FontWidthConfig, ForegroundColor, ForegroundPalette, ForegroundPaletteAlias, FormLabel, FormLabelProps, GenericIconComponent, GlobalDefaultsConfig, HStack, HStackProps, HighContrastMode, Hue, HueStep, ICON_SIZE_PREFIX, INVERT_COLOR_MODE_CLASSNAME, Icon, IconButton, IconButtonConfig, IconButtonProps, IconButtonSize, IconPixelSize, IconProps, IconPropsWithSVGProps, IconSize, IconSizeConfig, IconSlotRenderProps, IconVariant, Image, ImageProps, ImagePropsWithImgProps, ImageStyleProps, ImgElementProps, Input, InputConfig, InputHelpText, InputHelpTextProps, InputProps, InputSize, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, LayerConfig, LayoutStyleProps, LineClampAlias, LineColor, LineHeight, LineHeightConfig, LinePalette, LinePaletteAlias, Link, LinkConfig, LinkProps, LinkTextVariant, LinkVariant, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, MaxLengthArray, Menu_index_d_exports as Menu, MenuContentConfig, MenuContentProps, MenuDividerProps, MenuItemCheckboxProps, MenuItemConfig, MenuItemProps, MenuPlacement, MenuProviderProps, MenuTriggerProps, Modes, MotionConfig, MotionCssVar, MotionSpringConfig, MotionSpringConfigOptions, MotionVariant, MotionVariantSpeed, MotionVariantValues, NestedBorderRadiusStyleProps, OpacityStep, Overflow, PSEUDO_STYLE_SELECTOR_MAP, Palette, PaletteConfig, PaletteType, PaletteValue, ParentVariantSelector, Percentage, PercentageUnit, PixelsUnit, PlatformMode, Position, PossibleStates, PossibleStatesWithRest, Pressable, PressableProps, PropertyToPaletteAliasMap, RGBAUnit, RGBColorValue, RGBUnit, Radio, RadioConfig, RadioGroupProvider, RadioGroupProviderProps, RadioProps, RadioSize, RadioValue, RadioVariant, RegionMode, RemsUnit, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SVGElementProps, SYSTEM_COLOR_MODE_CLASSNAME, ScaleConfig, ScaleEffect, ScaleMode, ScaleModeConfig, ScaleModeForApp, SelectedConfigurableProperty, SetState, ShadowAlwaysColor, ShadowColor, ShadowColorConfig, ShadowConfig, ShadowOffset, ShadowOpacity, ShadowPalette, ShadowPaletteAlias, ShadowPaletteColor, ShadowPreset, ShadowSpectrumColor, ShadowSpreadRadius, ShadowStyleProps, ShadowType, ShadowTypeConfig, ShadowVariant, ShadowVariantConfig, ShadowVariantInvert, ShadowVariantWithElevation, ShadowVariantWithInvert, SharedPaletteAlias, SizeStyleProps, SpacingAlias, SpacingConfig, SpacingStyleProps, SpectrumColor, SpectrumConfig, SpectrumValue, SpringMotionConfig, SpringMotionConfigProps, StateStyleProps, StyleProps, SubComponentConfig, Switch, SwitchConfig, SwitchProps, SwitchSize, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, TShirtSize, TShirtSizeCommon, Text, TextDecorationLine, TextProperty, TextProps, TextStyleProps, TextTransform, TextTransformConfig, TextVariant, TextVariantTypography, TextVariantUi, TextVariantWithoutEmphasized, Toast, ToastConfig, ToastContainer, ToastContainerProps, ToastLoadingPromise, ToastPortal, ToastPortalProps, ToastPosition, ToastProps, ToastSize, ToastVariant, TransitionDelay, TransitionDuration, TransitionTiming, TypographyConfig, TypographyResponsiveProperty, TypographyStyle, TypographyStyleProperty, TypographyUnitValue, UDSBreakpointsConfigContextType, UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, UDSConfigContextType, UDSConfigProvider, UDSConfigProviderProps, UDSToastConfigContextType, UDSToastConfigProvider, UDSToastConfigProviderProps, UDS_PREFIX, UdsCssVar, UnitlessUnit, UniversalAvatarBaseProps, UniversalAvatarIconProps, UniversalAvatarImageProps, UniversalAvatarProps, UniversalAvatarTextProps, UniversalBadgeProps, UniversalBoxProps, UniversalButtonProps, UniversalCheckboxProps, UniversalChipBaseProps, UniversalChipButtonProps, UniversalChipDismissibleProps, UniversalChipLinkProps, UniversalChipProps, UniversalChipToggleProps, UniversalDividerProps, UniversalFormLabelProps, UniversalIconButtonProps, UniversalIconProps, UniversalIconSlot, UniversalImageProps, UniversalInputProps, UniversalLinkProps, UniversalMenuItemProps, UniversalPressableProps, UniversalRadioGroupProps, UniversalRadioProps, UniversalStackProps, UniversalSwitchProps, UniversalTextProps, UniversalToastProps, UniversalTokensConfig, UniversalTokensConfigAuto, UniversalTokensConfigAutoBase, UniversalTokensConfigBase, UniversalTokensConfigGeneric, VStack, VStackProps, VariantConfig, VariantConfigWithComponentStates, VariantConfigWithProperties, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, alwaysPalette, buildConfigSchema, cartesianProduct, coalesceConfigVariant, configToBreakpointsConfigContext, configToToastConfigContext, configToUDSConfigContext, createComponentStates, createConfigurableProperty, createLayerConfig, createSubComponentConfig, createToast, createVariantConfig, createVariantConfigWithComponentStates, createVariantConfigWithProperties, cva, cx, deprecatedAlwaysPalette, entries, findFixtureType, fontUrls, fontWeightMap, fromEntries, generateClassName, generateConfigStyles, generateDeclaration, generateDefaultClassName, generateKeyFromFlatConfigPath, generateSchemaKey, generateStyles, getConfigDefaultValue, getConfigSubcomponents, getConfigVariantComponentStates, getConfigVariantComponentStatesMatrix, getConfigVariantProperties, getConfigVariantPseudoStates, getConfigVariants, getFontUrls, getFontUrlsByIds, getShadowLayerValue, getStyles, getStylesCacheKeySymbol, isConfigDefaultValue, mapValues, newAlwaysPalette, parseButtonVariantFlat, parseOpacityStep, shadow, statePseudoMapDocsMode, textVariantsSafe, useBreakpointsConfig, useToastConfig, variants };
|