@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 +4 -1
- package/dist/index.d.ts +4 -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/dist/output.css +20 -0
- package/package.json +1 -1
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;
|