@6thbridge/hexa 0.0.86 → 0.0.88
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 +3 -1
- package/dist/index.d.ts +3 -1
- 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 = {
|
|
@@ -581,8 +582,9 @@ type CalendarInputProps = {
|
|
|
581
582
|
modal?: boolean;
|
|
582
583
|
minDate?: Date | string;
|
|
583
584
|
showTime?: boolean;
|
|
585
|
+
id?: string;
|
|
584
586
|
};
|
|
585
|
-
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
587
|
+
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, id, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
586
588
|
|
|
587
589
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
588
590
|
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 = {
|
|
@@ -581,8 +582,9 @@ type CalendarInputProps = {
|
|
|
581
582
|
modal?: boolean;
|
|
582
583
|
minDate?: Date | string;
|
|
583
584
|
showTime?: boolean;
|
|
585
|
+
id?: string;
|
|
584
586
|
};
|
|
585
|
-
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
587
|
+
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, id, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
586
588
|
|
|
587
589
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
588
590
|
className?: string;
|