@hyphen/hyphen-components 2.9.4 → 2.9.6
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/css/index.css +6 -6
- package/dist/css/utilities.css +7 -1
- package/dist/css/variables.css +5 -2
- package/dist/hyphen-components.cjs.development.js +1 -1
- package/dist/hyphen-components.cjs.development.js.map +1 -1
- package/dist/hyphen-components.cjs.production.min.js +1 -1
- package/dist/hyphen-components.cjs.production.min.js.map +1 -1
- package/dist/hyphen-components.esm.js +1 -1
- package/dist/hyphen-components.esm.js.map +1 -1
- package/dist/lib/tokens.d.ts +1 -1
- package/package.json +2 -2
- package/src/components/DateInput/DateInput.tsx +1 -1
- package/src/components/SelectInputInset/SelectInputInset.module.scss +21 -0
- package/src/components/SelectInputNative/SelectInputNative.module.scss +24 -5
- package/src/components/TextInput/TextInput.module.scss +11 -0
- package/src/components/TextInputInset/TextInputInset.module.scss +18 -0
- package/src/components/TextareaInput/TextareaInput.module.scss +10 -0
- package/src/components/TextareaInputInset/TextareaInputInset.module.scss +30 -0
- package/src/styles/variables/forms.scss +1 -0
|
@@ -1775,7 +1775,7 @@ var DateInput = function DateInput(_ref) {
|
|
|
1775
1775
|
* */
|
|
1776
1776
|
var handleOnClickOutside = function handleOnClickOutside(event) {
|
|
1777
1777
|
var target = event.target;
|
|
1778
|
-
if (target.
|
|
1778
|
+
if (target.classList.contains('react-datepicker__navigation')) {
|
|
1779
1779
|
return;
|
|
1780
1780
|
}
|
|
1781
1781
|
handleTogglePopover(false);
|