@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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. 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: 'sun' | 'mon' | 'tue' | 'wed' | 'thu' | 'fri' | 'sat';
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: (name: string) => void;
866
+ onClear?: (name: string) => void;
867
867
  onBlur?: any;
868
- styles: TDateMenuFormStyles;
868
+ styles?: TDateMenuFormStyles;
869
869
  };
870
870
  declare const DateMenuForm: FC<TDateMenuFormProps>;
871
871
 
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "email": "info@ballistix.digital",
8
8
  "url": "https://ballistix.digital"
9
9
  },
10
- "version": "0.4.87",
10
+ "version": "0.4.88",
11
11
  "private": false,
12
12
  "main": "dist/index.js",
13
13
  "module": "dist/index.esm.js",