@codeleap/mobile 2.0.6 → 2.0.7

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.
@@ -5,7 +5,7 @@ import { StylesOf } from '../../types';
5
5
  export * from './styles';
6
6
  export declare type EmptyPlaceholderProps = {
7
7
  itemName?: string;
8
- title?: string;
8
+ title?: React.ReactElement;
9
9
  loading?: boolean;
10
10
  styles?: StylesOf<EmptyPlaceholderComposition>;
11
11
  variants?: ComponentVariants<typeof EmptyPlaceholderStyles>['variants'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codeleap/mobile",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "main": "src/index.ts",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {
@@ -23,7 +23,7 @@ export * from './styles'
23
23
 
24
24
  export type EmptyPlaceholderProps = {
25
25
  itemName?: string
26
- title?: string
26
+ title?: React.ReactElement
27
27
  loading?: boolean
28
28
  styles?: StylesOf<EmptyPlaceholderComposition>
29
29
  variants?: ComponentVariants<typeof EmptyPlaceholderStyles>['variants']