@transferwise/components 0.0.0-experimental-d672ed6 → 0.0.0-experimental-0e8eafd
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/build/index.esm.js +2 -1
- package/build/index.esm.js.map +1 -1
- package/build/index.js +2 -1
- package/build/index.js.map +1 -1
- package/build/main.css +1 -1
- package/build/styles/flowNavigation/FlowNavigation.css +1 -1
- package/build/styles/main.css +1 -1
- package/build/types/dateLookup/DateLookup.d.ts +1 -1
- package/package.json +3 -3
- package/src/dateLookup/DateLookup.js +2 -1
- package/src/dateLookup/DateLookup.proptypes.spec.js +48 -0
- package/src/flowNavigation/FlowNavigation.css +1 -1
- package/src/main.css +1 -1
package/build/index.js
CHANGED
|
@@ -4458,7 +4458,7 @@ class DateLookup extends React.PureComponent {
|
|
|
4458
4458
|
}
|
|
4459
4459
|
}
|
|
4460
4460
|
DateLookup.propTypes = {
|
|
4461
|
-
value: PropTypes__default.default.instanceOf(Date)
|
|
4461
|
+
value: PropTypes__default.default.instanceOf(Date),
|
|
4462
4462
|
min: PropTypes__default.default.instanceOf(Date),
|
|
4463
4463
|
max: PropTypes__default.default.instanceOf(Date),
|
|
4464
4464
|
size: PropTypes__default.default.oneOf(['sm', 'md', 'lg']),
|
|
@@ -4472,6 +4472,7 @@ DateLookup.propTypes = {
|
|
|
4472
4472
|
clearable: PropTypes__default.default.bool
|
|
4473
4473
|
};
|
|
4474
4474
|
DateLookup.defaultProps = {
|
|
4475
|
+
value: null,
|
|
4475
4476
|
min: null,
|
|
4476
4477
|
max: null,
|
|
4477
4478
|
size: exports.Size.MEDIUM,
|