@frontify/fondue 12.0.0-beta.319 → 12.0.0-beta.320
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/index.d.ts
CHANGED
|
@@ -13068,7 +13068,7 @@ declare const Targets: {
|
|
|
13068
13068
|
declare type TargetValue = (typeof Targets)[keyof typeof Targets];
|
|
13069
13069
|
|
|
13070
13070
|
declare const Text_2: {
|
|
13071
|
-
({ children, as: Tag, weight, size, color, decoration, wordBreak, whitespace, overflow, display, }: TextProps): ReactElement;
|
|
13071
|
+
({ children, as: Tag, weight, size, color, decoration, wordBreak, whitespace, overflow, display, ...props }: TextProps): ReactElement;
|
|
13072
13072
|
displayName: string;
|
|
13073
13073
|
};
|
|
13074
13074
|
export { Text_2 as Text }
|
|
@@ -13163,7 +13163,7 @@ export declare type TextOrNumberItem = {
|
|
|
13163
13163
|
value: string | number;
|
|
13164
13164
|
};
|
|
13165
13165
|
|
|
13166
|
-
export declare type TextProps = SharedTypographyProps & {
|
|
13166
|
+
export declare type TextProps = SharedTypographyProps & AriaAttributes & {
|
|
13167
13167
|
size?: TextSize;
|
|
13168
13168
|
weight?: TextWeight;
|
|
13169
13169
|
as?: 'a' | 'abbr' | 'address' | 'em' | 'label' | 'li' | 'span' | 'strong' | 'time' | 'p';
|