@useloops/design-system 1.4.182 → 1.4.184
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 +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1103,18 +1103,18 @@ interface HtmlProps {
|
|
|
1103
1103
|
}
|
|
1104
1104
|
declare const Html: FunctionComponent<HtmlProps>;
|
|
1105
1105
|
|
|
1106
|
-
interface TypographyProps {
|
|
1106
|
+
interface TypographyProps extends Omit<TypographyProps$1, 'ref'> {
|
|
1107
1107
|
clamp?: number;
|
|
1108
1108
|
component: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p';
|
|
1109
1109
|
type?: 'default' | 'button';
|
|
1110
|
-
variation
|
|
1110
|
+
variation?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xxxl';
|
|
1111
1111
|
weight?: 'default' | 'bold';
|
|
1112
1112
|
}
|
|
1113
|
-
declare const Typography: FunctionComponent<TypographyProps
|
|
1113
|
+
declare const Typography: FunctionComponent<TypographyProps>;
|
|
1114
1114
|
|
|
1115
1115
|
type HtmlParserProps = {
|
|
1116
1116
|
children: string;
|
|
1117
|
-
typographyProps?: TypographyProps
|
|
1117
|
+
typographyProps?: Partial<TypographyProps>;
|
|
1118
1118
|
};
|
|
1119
1119
|
declare const HtmlParser: FC<HtmlParserProps>;
|
|
1120
1120
|
|
|
@@ -1244,7 +1244,7 @@ interface LoopsAiButtonProps {
|
|
|
1244
1244
|
declare const LoopsAiButton: FunctionComponent<LoopsAiButtonProps>;
|
|
1245
1245
|
|
|
1246
1246
|
type MarkdownProps = {
|
|
1247
|
-
typographyProps?: TypographyProps
|
|
1247
|
+
typographyProps?: Partial<TypographyProps>;
|
|
1248
1248
|
children?: string;
|
|
1249
1249
|
};
|
|
1250
1250
|
declare const Markdown: FC<MarkdownProps>;
|
|
@@ -1525,7 +1525,7 @@ declare const Textarea: FunctionComponent<TextareaProps>;
|
|
|
1525
1525
|
|
|
1526
1526
|
interface TextBarDividerProps {
|
|
1527
1527
|
sx?: SxProps;
|
|
1528
|
-
typographyProps?: TypographyProps
|
|
1528
|
+
typographyProps?: Partial<TypographyProps>;
|
|
1529
1529
|
text: string;
|
|
1530
1530
|
}
|
|
1531
1531
|
declare const TextBarDivider: FunctionComponent<TextBarDividerProps>;
|