@ballistix.digital/react-components 0.4.87 → 0.4.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.ts +3 -3
- package/dist/index.esm.js +0 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- 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
|
|
package/dist/index.esm.js
CHANGED
|
@@ -9181,7 +9181,6 @@ var DateMenuForm = function (props) {
|
|
|
9181
9181
|
endDate: null,
|
|
9182
9182
|
}), value = _m[0], setValue = _m[1];
|
|
9183
9183
|
var handleValueChange = function (newValue) {
|
|
9184
|
-
console.log('newValue:', newValue);
|
|
9185
9184
|
setValue(newValue);
|
|
9186
9185
|
onChange && onChange(newValue);
|
|
9187
9186
|
};
|