@movable/ui 3.18.0 → 3.18.1

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.
@@ -1,6 +1,7 @@
1
1
  import { ComponentType } from 'react';
2
2
  import { StackProps } from '@mui/material';
3
3
  import { InkTileIconProps } from './TileIconWrapper';
4
+ export type { InkTileIconProps };
4
5
  export type InkComponentTileProps = StackProps & {
5
6
  /**
6
7
  * The label/title of the tile
@@ -1 +1 @@
1
- export { InkComponentTile, type InkComponentTileProps, } from './InkComponentTile';
1
+ export { InkComponentTile, type InkComponentTileProps, type InkTileIconProps, } from './InkComponentTile';
@@ -15,7 +15,7 @@ export { InkEmptyState } from './InkEmptyState';
15
15
  export { InkAttributeList } from './InkAttributeList';
16
16
  export { InkImage } from './InkImage';
17
17
  export { InkDrawer } from './InkDrawer';
18
- export { InkComponentTile, type InkComponentTileProps, } from './InkComponentTile';
18
+ export { InkComponentTile, type InkComponentTileProps, type InkTileIconProps, } from './InkComponentTile';
19
19
  export * from './InkSnackbar';
20
20
  export * from './InkCheckboxGroup';
21
21
  export * from './InkRadioGroup';
package/lib/index.d.ts CHANGED
@@ -903,7 +903,7 @@ export declare type InkTextFieldProps = TextFieldProps & {
903
903
  name: string;
904
904
  };
905
905
 
906
- declare interface InkTileIconProps {
906
+ export declare interface InkTileIconProps {
907
907
  size?: 'small' | 'normal';
908
908
  }
909
909