@6thbridge/hexa 0.0.87 → 0.0.89
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/index.d.mts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -421,6 +421,7 @@ type TableBulkRowActionsProps = {
|
|
|
421
421
|
tableBulkActions: RowAction[];
|
|
422
422
|
selectedRows: string[];
|
|
423
423
|
isMobile?: boolean;
|
|
424
|
+
id?: string;
|
|
424
425
|
};
|
|
425
426
|
|
|
426
427
|
type SelectOption = {
|
|
@@ -518,8 +519,9 @@ type TableProps<T extends RowData> = {
|
|
|
518
519
|
actions: TableBulkRowActionsProps["tableBulkActions"];
|
|
519
520
|
selectedRows?: TableBulkRowActionsProps["selectedRows"];
|
|
520
521
|
};
|
|
522
|
+
emptyDataMessage?: ReactNode;
|
|
521
523
|
};
|
|
522
|
-
declare const Table: <T extends RowData>({ table, isMobile, onRowClick, id, onRefetch, isRefetching, FilterMenu, ExtraNode, onExport, search, download, isLoading, pagination, filterListOptions, setAppliedFilters, onFilterChange, tableBulkActions, }: TableProps<T>) => react_jsx_runtime.JSX.Element;
|
|
524
|
+
declare const Table: <T extends RowData>({ table, isMobile, onRowClick, id, onRefetch, isRefetching, FilterMenu, ExtraNode, onExport, search, download, isLoading, pagination, filterListOptions, setAppliedFilters, onFilterChange, tableBulkActions, emptyDataMessage, }: TableProps<T>) => react_jsx_runtime.JSX.Element;
|
|
523
525
|
|
|
524
526
|
type PageDataToolbarProps = {
|
|
525
527
|
onRefetch?: () => void;
|
|
@@ -581,8 +583,9 @@ type CalendarInputProps = {
|
|
|
581
583
|
modal?: boolean;
|
|
582
584
|
minDate?: Date | string;
|
|
583
585
|
showTime?: boolean;
|
|
586
|
+
id?: string;
|
|
584
587
|
};
|
|
585
|
-
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
588
|
+
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, id, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
586
589
|
|
|
587
590
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
588
591
|
className?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -421,6 +421,7 @@ type TableBulkRowActionsProps = {
|
|
|
421
421
|
tableBulkActions: RowAction[];
|
|
422
422
|
selectedRows: string[];
|
|
423
423
|
isMobile?: boolean;
|
|
424
|
+
id?: string;
|
|
424
425
|
};
|
|
425
426
|
|
|
426
427
|
type SelectOption = {
|
|
@@ -518,8 +519,9 @@ type TableProps<T extends RowData> = {
|
|
|
518
519
|
actions: TableBulkRowActionsProps["tableBulkActions"];
|
|
519
520
|
selectedRows?: TableBulkRowActionsProps["selectedRows"];
|
|
520
521
|
};
|
|
522
|
+
emptyDataMessage?: ReactNode;
|
|
521
523
|
};
|
|
522
|
-
declare const Table: <T extends RowData>({ table, isMobile, onRowClick, id, onRefetch, isRefetching, FilterMenu, ExtraNode, onExport, search, download, isLoading, pagination, filterListOptions, setAppliedFilters, onFilterChange, tableBulkActions, }: TableProps<T>) => react_jsx_runtime.JSX.Element;
|
|
524
|
+
declare const Table: <T extends RowData>({ table, isMobile, onRowClick, id, onRefetch, isRefetching, FilterMenu, ExtraNode, onExport, search, download, isLoading, pagination, filterListOptions, setAppliedFilters, onFilterChange, tableBulkActions, emptyDataMessage, }: TableProps<T>) => react_jsx_runtime.JSX.Element;
|
|
523
525
|
|
|
524
526
|
type PageDataToolbarProps = {
|
|
525
527
|
onRefetch?: () => void;
|
|
@@ -581,8 +583,9 @@ type CalendarInputProps = {
|
|
|
581
583
|
modal?: boolean;
|
|
582
584
|
minDate?: Date | string;
|
|
583
585
|
showTime?: boolean;
|
|
586
|
+
id?: string;
|
|
584
587
|
};
|
|
585
|
-
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
588
|
+
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, id, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
586
589
|
|
|
587
590
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
588
591
|
className?: string;
|