hiver-ui-kit-extended 1.0.0-beta.4 → 1.0.0-beta.5

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/env.hui.d.ts CHANGED
@@ -4,11 +4,11 @@ import { ChipProps as ChipProps_2 } from 'primereact/chip';
4
4
  import { DataTableProps as DataTableProps_2 } from 'primereact/datatable';
5
5
  import { ElementType } from 'react';
6
6
  import { HTMLAttributes } from 'react';
7
- import { JSX } from 'react/jsx-runtime';
7
+ import { JSX as JSX_2 } from 'react/jsx-runtime';
8
8
  import { MouseEvent as MouseEvent_2 } from 'react';
9
9
  import { ReactNode } from 'react';
10
10
 
11
- export declare const Breadcrumb: (props: BreadcrumbProps) => JSX.Element;
11
+ export declare const Breadcrumb: (props: BreadcrumbProps) => JSX_2.Element;
12
12
 
13
13
  export declare interface BreadcrumbItem {
14
14
  label?: string;
@@ -22,7 +22,7 @@ export declare interface BreadcrumbProps extends Omit<BreadCrumbProps, 'model' |
22
22
  style?: React.CSSProperties;
23
23
  }
24
24
 
25
- export declare const Button: (props: ButtonProps) => JSX.Element;
25
+ export declare const Button: (props: ButtonProps) => JSX_2.Element;
26
26
 
27
27
  export declare interface ButtonProps {
28
28
  label?: string;
@@ -39,7 +39,7 @@ export declare interface ButtonProps {
39
39
  badge?: string;
40
40
  }
41
41
 
42
- export declare const Chip: (props: ChipProps) => JSX.Element;
42
+ export declare const Chip: (props: ChipProps) => JSX_2.Element;
43
43
 
44
44
  export declare interface ChipProps extends Omit<ChipProps_2, 'label'> {
45
45
  label?: string | ReactNode;
@@ -58,7 +58,7 @@ export declare interface ColumnConfig {
58
58
  [key: string]: any;
59
59
  }
60
60
 
61
- export declare function DataTable<T extends DataTableValueArray = DataTableValueArray>(props: DataTableProps<T>): JSX.Element;
61
+ export declare function DataTable<T extends DataTableValueArray = DataTableValueArray>(props: DataTableProps<T>): JSX_2.Element;
62
62
 
63
63
  export declare interface DataTableProps<T extends DataTableValueArray = DataTableValueArray> extends Omit<DataTableProps_2<T>, 'children' | 'rows' | 'onRowClick'> {
64
64
  children?: ReactNode;
@@ -73,7 +73,7 @@ export declare interface DataTableProps<T extends DataTableValueArray = DataTabl
73
73
 
74
74
  export declare type DataTableValueArray = Array<Record<string, any>>;
75
75
 
76
- export declare const Dialog: (props: DialogProps) => JSX.Element;
76
+ export declare const Dialog: (props: DialogProps) => JSX_2.Element;
77
77
 
78
78
  export declare interface DialogProps {
79
79
  children: ReactNode;
@@ -107,7 +107,7 @@ declare type IconType = ReactNode | string;
107
107
 
108
108
  export declare type SxProps = React.CSSProperties | ((theme: any) => React.CSSProperties);
109
109
 
110
- export declare const Tab: (props: TabProps) => JSX.Element;
110
+ export declare const Tab: (props: TabProps) => JSX_2.Element;
111
111
 
112
112
  export declare interface TabItem {
113
113
  label: string;
@@ -129,7 +129,7 @@ export declare interface TabProps extends Omit<ButtonHTMLAttributes<HTMLButtonEl
129
129
  children?: ReactNode;
130
130
  }
131
131
 
132
- export declare const Tabs: (props: TabsProps) => JSX.Element;
132
+ export declare const Tabs: (props: TabsProps) => JSX_2.Element;
133
133
 
134
134
  export declare type TabsIndicatorColor = 'primary' | 'secondary';
135
135
 
@@ -148,7 +148,7 @@ export declare type TabsTextColor = 'primary' | 'secondary' | 'inherit';
148
148
 
149
149
  export declare type TabsVariant = 'standard' | 'scrollable' | 'fullWidth';
150
150
 
151
- export declare const TextField: (props: TextFieldProps) => JSX.Element;
151
+ export declare const TextField: (props: TextFieldProps) => JSX_2.Element;
152
152
 
153
153
  export declare interface TextFieldProps {
154
154
  value?: string;
@@ -172,7 +172,7 @@ export declare interface TextFieldProps {
172
172
  children?: ReactNode;
173
173
  }
174
174
 
175
- export declare const Toast: (props: ToastProps) => JSX.Element;
175
+ export declare const Toast: (props: ToastProps) => JSX_2.Element;
176
176
 
177
177
  export declare type ToastPosition = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right' | 'center';
178
178