@6thbridge/hexa 0.0.84 → 0.0.86

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 CHANGED
@@ -443,6 +443,7 @@ type FilterListDate = {
443
443
  type FilterListInputDropDown = {
444
444
  type: "drop-down" | "multi" | "radio";
445
445
  options: SelectOption[];
446
+ hideSearch?: boolean;
446
447
  };
447
448
  type FilterListItem = Base & (FilterListOption | FilterListInputDropDown | FilterListDate);
448
449
  type FilterContentProps = {
@@ -578,8 +579,10 @@ type CalendarInputProps = {
578
579
  maxDate?: Date | string;
579
580
  closeOnSelect?: boolean;
580
581
  modal?: boolean;
582
+ minDate?: Date | string;
583
+ showTime?: boolean;
581
584
  };
582
- declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
585
+ declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
583
586
 
584
587
  declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
585
588
  className?: string;
package/dist/index.d.ts CHANGED
@@ -443,6 +443,7 @@ type FilterListDate = {
443
443
  type FilterListInputDropDown = {
444
444
  type: "drop-down" | "multi" | "radio";
445
445
  options: SelectOption[];
446
+ hideSearch?: boolean;
446
447
  };
447
448
  type FilterListItem = Base & (FilterListOption | FilterListInputDropDown | FilterListDate);
448
449
  type FilterContentProps = {
@@ -578,8 +579,10 @@ type CalendarInputProps = {
578
579
  maxDate?: Date | string;
579
580
  closeOnSelect?: boolean;
580
581
  modal?: boolean;
582
+ minDate?: Date | string;
583
+ showTime?: boolean;
581
584
  };
582
- declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
585
+ declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
583
586
 
584
587
  declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
585
588
  className?: string;