@ballistix.digital/react-components 0.4.87 → 0.4.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.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -847,7 +847,7 @@ type TDateMenuFormProps = {
|
|
|
847
847
|
direction?: 'up' | 'down';
|
|
848
848
|
minDate?: Date;
|
|
849
849
|
maxDate?: Date;
|
|
850
|
-
startWeekOn
|
|
850
|
+
startWeekOn?: 'sun' | 'mon' | 'tue' | 'wed' | 'thu' | 'fri' | 'sat';
|
|
851
851
|
required?: ({ isRequired }: {
|
|
852
852
|
isRequired: boolean;
|
|
853
853
|
}) => string | ReactNode;
|
|
@@ -863,9 +863,9 @@ type TDateMenuFormProps = {
|
|
|
863
863
|
isSolo?: boolean;
|
|
864
864
|
isRanged?: boolean;
|
|
865
865
|
onChange?: (value: string) => void;
|
|
866
|
-
onClear
|
|
866
|
+
onClear?: (name: string) => void;
|
|
867
867
|
onBlur?: any;
|
|
868
|
-
styles
|
|
868
|
+
styles?: TDateMenuFormStyles;
|
|
869
869
|
};
|
|
870
870
|
declare const DateMenuForm: FC<TDateMenuFormProps>;
|
|
871
871
|
|