@sinco/react 1.0.14-rc.52 → 1.0.14-rc.54

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.14-rc.52",
3
+ "version": "1.0.14-rc.54",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
package/src/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export * from './lib/Theme';
2
2
  export * from './lib/Components';
3
3
  export * from './lib/Hooks';
4
- export * from './lib/Utils';
4
+ export * from '..';
@@ -1,15 +1,14 @@
1
- import { ReactNode } from 'react';
1
+ import React, { ReactNode } from 'react';
2
2
  export type EmptyStateStates = 'create' | 'error' | 'noResult' | 'search';
3
- export declare enum EmptyStateImageUrls {
4
- error = "error",
5
- search = "search",
6
- noResult = "noResult",
7
- create = "create"
8
- }
3
+ export declare const EmptyStateImageUrls: Record<EmptyStateStates, string>;
9
4
  export interface EmptyStateProperties {
10
5
  state?: EmptyStateStates;
11
6
  title?: string;
12
7
  content?: string;
8
+ imageWidth?: string;
9
+ imageHeight?: string;
13
10
  actions?: ReactNode;
11
+ icon?: ReactNode;
12
+ iconStyle?: React.CSSProperties;
14
13
  }
15
- export declare const EmptyStateComponent: ({ state, title, content, actions, }: EmptyStateProperties) => JSX.Element;
14
+ export declare const EmptyStateComponent: ({ state, title, content, actions, icon, }: EmptyStateProperties) => JSX.Element;
@@ -1,4 +1,3 @@
1
1
  export * from './EmptyState';
2
2
  export * from './Drawer';
3
3
  export * from './FooterAction';
4
- export * from './PageHeader';
@@ -1,14 +0,0 @@
1
- import React from "react";
2
- interface PageheaderProperties {
3
- title: string;
4
- subtitle?: string;
5
- actions?: React.ReactNode;
6
- buttonBack?: React.ReactNode;
7
- fixed?: boolean;
8
- date?: boolean;
9
- }
10
- export declare const PageHeaderContent: import("@emotion/styled").StyledComponent<import("@mui/material").StackOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
11
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
12
- }, keyof import("@mui/material/OverridableComponent").CommonProps | keyof import("@mui/material").StackOwnProps> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
13
- export declare const PageHeaderComponent: ({ title, subtitle, actions, buttonBack, fixed, date, }: PageheaderProperties) => JSX.Element;
14
- export {};
@@ -1 +0,0 @@
1
- export * from './dynamicColor';