hiver-ui-kit-extended 1.0.0-beta.4 → 1.0.0-beta.6
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 +10 -10
- package/dist/env.hui.js.map +1 -1
- package/dist/env.prime.d.ts +8 -8
- package/dist/hiver-ui-kit-extended.css +1 -1
- package/dist/providers.hui.d.ts +2 -2
- package/dist/providers.prime.d.ts +2 -2
- package/package.json +13 -12
package/dist/env.prime.d.ts
CHANGED
|
@@ -5,11 +5,11 @@ import { DataTableProps as DataTableProps_2 } from 'primereact/datatable';
|
|
|
5
5
|
import { default as default_2 } from 'react';
|
|
6
6
|
import { ElementType } from 'react';
|
|
7
7
|
import { HTMLAttributes } from 'react';
|
|
8
|
-
import { JSX } from 'react/jsx-runtime';
|
|
8
|
+
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
9
9
|
import { MouseEvent as MouseEvent_2 } from 'react';
|
|
10
10
|
import { ReactNode } from 'react';
|
|
11
11
|
|
|
12
|
-
export declare function Breadcrumb({ items, className, style, ...rest }: BreadcrumbProps):
|
|
12
|
+
export declare function Breadcrumb({ items, className, style, ...rest }: BreadcrumbProps): JSX_2.Element;
|
|
13
13
|
|
|
14
14
|
export declare interface BreadcrumbItem {
|
|
15
15
|
label?: string;
|
|
@@ -23,7 +23,7 @@ export declare interface BreadcrumbProps extends Omit<BreadCrumbProps, 'model' |
|
|
|
23
23
|
style?: React.CSSProperties;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
export declare function Button(props: ButtonProps):
|
|
26
|
+
export declare function Button(props: ButtonProps): JSX_2.Element;
|
|
27
27
|
|
|
28
28
|
export declare interface ButtonProps {
|
|
29
29
|
label?: string;
|
|
@@ -40,7 +40,7 @@ export declare interface ButtonProps {
|
|
|
40
40
|
badge?: string;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
export declare function Chip(props: ChipProps):
|
|
43
|
+
export declare function Chip(props: ChipProps): JSX_2.Element;
|
|
44
44
|
|
|
45
45
|
export declare interface ChipProps extends Omit<ChipProps_2, 'label'> {
|
|
46
46
|
label?: string | ReactNode;
|
|
@@ -59,7 +59,7 @@ declare interface ColumnConfig {
|
|
|
59
59
|
[key: string]: any;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
export declare function DataTable<T extends DataTableValueArray = DataTableValueArray>(props: DataTableProps<T>):
|
|
62
|
+
export declare function DataTable<T extends DataTableValueArray = DataTableValueArray>(props: DataTableProps<T>): JSX_2.Element;
|
|
63
63
|
|
|
64
64
|
export declare interface DataTableProps<T extends DataTableValueArray = DataTableValueArray> extends Omit<DataTableProps_2<T>, 'children' | 'rows' | 'onRowClick'> {
|
|
65
65
|
children?: ReactNode;
|
|
@@ -74,7 +74,7 @@ export declare interface DataTableProps<T extends DataTableValueArray = DataTabl
|
|
|
74
74
|
|
|
75
75
|
declare type DataTableValueArray = Array<Record<string, any>>;
|
|
76
76
|
|
|
77
|
-
export declare function Dialog(props: DialogProps):
|
|
77
|
+
export declare function Dialog(props: DialogProps): JSX_2.Element;
|
|
78
78
|
|
|
79
79
|
export declare interface DialogProps {
|
|
80
80
|
children: ReactNode;
|
|
@@ -149,7 +149,7 @@ export declare type TabsTextColor = 'primary' | 'secondary' | 'inherit';
|
|
|
149
149
|
|
|
150
150
|
export declare type TabsVariant = 'standard' | 'scrollable' | 'fullWidth';
|
|
151
151
|
|
|
152
|
-
export declare function TextField(props: TextFieldProps):
|
|
152
|
+
export declare function TextField(props: TextFieldProps): JSX_2.Element;
|
|
153
153
|
|
|
154
154
|
export declare interface TextFieldProps {
|
|
155
155
|
value?: string;
|
|
@@ -204,7 +204,7 @@ export declare interface ToastRef {
|
|
|
204
204
|
|
|
205
205
|
export declare type ToastSeverity = 'success' | 'error' | 'warning' | 'info';
|
|
206
206
|
|
|
207
|
-
export declare function Typography({ text, variant, tag, noWrap, children, className, ...rest }: TypographyProps):
|
|
207
|
+
export declare function Typography({ text, variant, tag, noWrap, children, className, ...rest }: TypographyProps): JSX_2.Element;
|
|
208
208
|
|
|
209
209
|
export declare interface TypographyProps extends Omit<HTMLAttributes<HTMLElement>, 'children'> {
|
|
210
210
|
text?: string;
|