@useloops/design-system 1.4.181 → 1.4.183
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/esm/index.js +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1103,14 +1103,14 @@ 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
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;
|
|
@@ -1244,8 +1244,8 @@ interface LoopsAiButtonProps {
|
|
|
1244
1244
|
declare const LoopsAiButton: FunctionComponent<LoopsAiButtonProps>;
|
|
1245
1245
|
|
|
1246
1246
|
type MarkdownProps = {
|
|
1247
|
-
children: string;
|
|
1248
1247
|
typographyProps?: TypographyProps;
|
|
1248
|
+
children?: string;
|
|
1249
1249
|
};
|
|
1250
1250
|
declare const Markdown: FC<MarkdownProps>;
|
|
1251
1251
|
|