@ultraviolet/form 1.8.5 → 1.8.7

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 +1 -1
  2. package/package.json +5 -2
package/dist/index.d.ts CHANGED
@@ -132,7 +132,7 @@ declare const CheckboxGroupField: {
132
132
  };
133
133
 
134
134
  type DateExtends = Date | [Date | null, Date | null];
135
- type DateFieldProps = BaseFieldProps<DateExtends> & Omit<ComponentProps<typeof DateInput>, 'maxDate' | 'minDate' | 'disabled' | 'required' | 'locale' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'autoFocus'> & {
135
+ type DateFieldProps = BaseFieldProps<DateExtends> & Omit<ComponentProps<typeof DateInput>, 'maxDate' | 'minDate' | 'disabled' | 'required' | 'locale' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'autoFocus' | 'startDate' | 'endDate'> & {
136
136
  name: string;
137
137
  maxDate?: Date;
138
138
  minDate?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ultraviolet/form",
3
- "version": "1.8.5",
3
+ "version": "1.8.7",
4
4
  "description": "Ultraviolet Form",
5
5
  "homepage": "https://github.com/scaleway/ultraviolet#readme",
6
6
  "repository": {
@@ -55,6 +55,9 @@
55
55
  "react-final-form": "6.5.9",
56
56
  "react-final-form-arrays": "3.1.4",
57
57
  "react-select": "5.7.7",
58
- "@ultraviolet/ui": "1.20.0"
58
+ "@ultraviolet/ui": "1.20.2"
59
+ },
60
+ "scripts": {
61
+ "build": "rollup -c ../../rollup.config.mjs"
59
62
  }
60
63
  }