@useloops/design-system 1.4.288 → 1.4.290

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
@@ -1195,6 +1195,7 @@ interface IconButtonGroupProps {
1195
1195
  declare const IconButtonGroup: FunctionComponent<IconButtonGroupProps>;
1196
1196
 
1197
1197
  interface ImageProps extends LazyLoadImageProps {
1198
+ containerSx: SxProps<Theme>;
1198
1199
  }
1199
1200
  declare const Image: FunctionComponent<ImageProps>;
1200
1201
 
@@ -1686,6 +1687,10 @@ interface HeaderProps {
1686
1687
  breadcrumbLinks?: BreadcrumbLink[];
1687
1688
  buttons?: ReactNode;
1688
1689
  controlBar?: ReactNode;
1690
+ sx?: SxProps<Theme>;
1691
+ slotProps?: {
1692
+ titleIconButton?: Omit<IconButtonProps, 'icon'>;
1693
+ };
1689
1694
  }
1690
1695
  declare const Header: FunctionComponent<HeaderProps>;
1691
1696