@useloops/design-system 1.4.166 → 1.4.167

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
@@ -615,6 +615,7 @@ interface CustomTheme {
615
615
  };
616
616
  typography: {
617
617
  headline: {
618
+ xxs: string;
618
619
  xs: string;
619
620
  sm: string;
620
621
  md: string;
@@ -624,6 +625,7 @@ interface CustomTheme {
624
625
  xxxl: string;
625
626
  };
626
627
  body: {
628
+ xxs: string;
627
629
  xs: string;
628
630
  sm: string;
629
631
  md: string;
@@ -1230,7 +1232,7 @@ interface TypographyProps {
1230
1232
  clamp?: number;
1231
1233
  component: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p';
1232
1234
  type?: 'default' | 'button';
1233
- variation: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xxxl';
1235
+ variation: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xxxl';
1234
1236
  weight?: 'default' | 'bold';
1235
1237
  }
1236
1238
  declare const Typography: FunctionComponent<TypographyProps & TypographyProps$1>;
@@ -1428,6 +1430,7 @@ declare module '@mui/material/styles' {
1428
1430
  md: React.CSSProperties;
1429
1431
  sm: React.CSSProperties;
1430
1432
  xs: React.CSSProperties;
1433
+ xxs: React.CSSProperties;
1431
1434
  }
1432
1435
  interface TypographyVariantsOptions {
1433
1436
  xxxl?: React.CSSProperties;
@@ -1437,6 +1440,7 @@ declare module '@mui/material/styles' {
1437
1440
  md?: React.CSSProperties;
1438
1441
  sm?: React.CSSProperties;
1439
1442
  xs?: React.CSSProperties;
1443
+ xxs?: React.CSSProperties;
1440
1444
  }
1441
1445
  interface ThemeOptions {
1442
1446
  custom?: {
@@ -1539,6 +1543,7 @@ declare module '@mui/material/styles' {
1539
1543
  };
1540
1544
  typography?: {
1541
1545
  headline?: {
1546
+ xxs?: string;
1542
1547
  xs?: string;
1543
1548
  sm?: string;
1544
1549
  md?: string;
@@ -1548,6 +1553,7 @@ declare module '@mui/material/styles' {
1548
1553
  xxxl?: string;
1549
1554
  };
1550
1555
  body?: {
1556
+ xxs?: string;
1551
1557
  xs?: string;
1552
1558
  sm?: string;
1553
1559
  md?: string;
@@ -1599,6 +1605,7 @@ declare module '@mui/material/Typography' {
1599
1605
  md: true;
1600
1606
  sm: true;
1601
1607
  xs: true;
1608
+ xxs: true;
1602
1609
  }
1603
1610
  }
1604
1611
  declare module '@mui/system' {