@sinco/react 1.0.5-rc.5 → 1.0.5-rc.6

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.0.5-rc.5",
3
+ "version": "1.0.5-rc.6",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -1,4 +1,3 @@
1
1
  export * from './ToastNotification/ToastNofitication';
2
2
  export * from './pageHeader/PageHeader';
3
3
  export * from './Drawer/Drawer';
4
- export * from './EmptyState/EmptyState';
@@ -1,15 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export interface EmptyStateProperties {
3
- state?: States;
4
- title?: string;
5
- content?: string;
6
- actions?: ReactNode;
7
- }
8
- export type States = 'create' | 'error' | 'noresult' | 'search';
9
- export declare enum UrlImage {
10
- error = "src/assets/error.svg",
11
- search = "src/assets/search.svg",
12
- noresult = "src/assets/noresult.svg",
13
- create = "src/assets/create.svg"
14
- }
15
- export declare const EmptyState: ({ state, title, content, actions, }: EmptyStateProperties) => JSX.Element;