mimir-ui-kit 1.17.2 → 1.17.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -84,6 +84,7 @@ const Input = memo(
84
84
  id,
85
85
  onFocus,
86
86
  onBlur,
87
+ onChange,
87
88
  label: label2,
88
89
  withClearButton,
89
90
  disabled: disabled2,
@@ -125,10 +126,9 @@ const Input = memo(
125
126
  }
126
127
  };
127
128
  const handleChange = (event) => {
128
- var _a;
129
129
  const targetValue = event.target.value;
130
130
  setWithValue(!!targetValue);
131
- (_a = otherProps == null ? void 0 : otherProps.onChange) == null ? void 0 : _a.call(otherProps, event);
131
+ onChange == null ? void 0 : onChange(event);
132
132
  };
133
133
  const currentLeftAddon = renderAddon(leftAddon);
134
134
  const currentRightAddon = renderAddon(rightAddon);
@@ -5,7 +5,7 @@ import { c as cls, D as DatePickerModal } from "../../DatePickerModal-BM0BgzTb.j
5
5
  import { useClickOutside } from "../../hooks/useClickOutside/useClickOutside.js";
6
6
  import { formating } from "../../utils/index.js";
7
7
  import { Button } from "../Button/Button.js";
8
- import { I as Input } from "../../Input-BFFPzelg.js";
8
+ import { I as Input } from "../../Input-D-FCB1FU.js";
9
9
  const DatePicker = memo(
10
10
  forwardRef(
11
11
  ({ size, value, onChangeValue, name, before, ...props }, ref) => {
@@ -2,7 +2,7 @@ import "react/jsx-runtime";
2
2
  import "../../index-CweZ_OcN.js";
3
3
  import "react";
4
4
  import "./constants.js";
5
- import { I } from "../../Input-BFFPzelg.js";
5
+ import { I } from "../../Input-D-FCB1FU.js";
6
6
  import "../../hooks/useMergeRefs/useMergeRefs.js";
7
7
  import "../../icons/Icon.js";
8
8
  import "../Button/Button.js";
@@ -1,4 +1,4 @@
1
- import { I } from "../../Input-BFFPzelg.js";
1
+ import { I } from "../../Input-D-FCB1FU.js";
2
2
  import { EInputSize, EInputVariant } from "./constants.js";
3
3
  export {
4
4
  EInputSize,
@@ -2,7 +2,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import { memo, forwardRef, useState } from "react";
3
3
  import { Icon } from "../../icons/Icon.js";
4
4
  import { Button } from "../Button/Button.js";
5
- import { I as Input } from "../../Input-BFFPzelg.js";
5
+ import { I as Input } from "../../Input-D-FCB1FU.js";
6
6
  import '../../assets/InputPassword.css';const input = "_input_mam1g_2";
7
7
  const wrapper = "_wrapper_mam1g_6";
8
8
  const button = "_button_mam1g_17";
@@ -1,7 +1,7 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { memo, forwardRef, useState, useCallback, useImperativeHandle } from "react";
3
3
  import { getMaskedInputPhoneValue, getUnmaskedInputValue } from "./utils.js";
4
- import { I as Input } from "../../Input-BFFPzelg.js";
4
+ import { I as Input } from "../../Input-D-FCB1FU.js";
5
5
  const InputPhoneNumber = memo(
6
6
  forwardRef(
7
7
  ({ value = "", onChange, ...props }, ref) => {
@@ -3,7 +3,7 @@ import { c as classNames } from "../../index-CweZ_OcN.js";
3
3
  import { forwardRef, useImperativeHandle, Fragment } from "react";
4
4
  import { ITEMS_PER_SEPARATOR, DEFAULT_VALUE_LENGTH } from "./constants.js";
5
5
  import { useOTPInput } from "./hooks.js";
6
- import { I as Input } from "../../Input-BFFPzelg.js";
6
+ import { I as Input } from "../../Input-D-FCB1FU.js";
7
7
  import '../../assets/OtpInput.css';const otp = "_otp_196ev_3";
8
8
  const input = "_input_196ev_14";
9
9
  const separator = "_separator_196ev_28";
@@ -4,7 +4,7 @@ import * as React from "react";
4
4
  import React__default, { useReducer, useMemo, useSyncExternalStore, useId as useId$1, useEffect, useCallback, useRef, useLayoutEffect, createContext, useContext, useState, Fragment, createRef, forwardRef } from "react";
5
5
  import { ESelectSearchSize } from "./constants.js";
6
6
  import { Icon } from "../../icons/Icon.js";
7
- import { I as Input } from "../../Input-BFFPzelg.js";
7
+ import { I as Input } from "../../Input-D-FCB1FU.js";
8
8
  import { EInputSize } from "../Input/constants.js";
9
9
  import { n as n$2, u as u$3, d as o$1, s as s$3, o as o$2, p as p$1, t as t$3, e as s$4, W as W$1, y as y$3, T, H, M as M$1, a as u$5, $ as $f7dceffc5ad7768b$export$4e328f61c538687f, b as $6179b936705e76d3$export$ae780daf29e6d456, D as D$2, c as o$3 } from "../../keyboard-B256ZoM-.js";
10
10
  import * as ReactDOM from "react-dom";
@@ -5,7 +5,7 @@ import { useAutoResizeTextArea } from "./hooks.js";
5
5
  import { useMergeRefs } from "../../hooks/useMergeRefs/useMergeRefs.js";
6
6
  import { Icon } from "../../icons/Icon.js";
7
7
  import { Button } from "../Button/Button.js";
8
- import { c as cls } from "../../Input-BFFPzelg.js";
8
+ import { c as cls } from "../../Input-D-FCB1FU.js";
9
9
  import { EInputVariant } from "../Input/constants.js";
10
10
  import '../../assets/TextArea.css';const textarea = "_textarea_46c4k_2";
11
11
  const s = "_s_46c4k_6";
@@ -62,6 +62,7 @@ const TextArea = memo(
62
62
  id,
63
63
  onFocus,
64
64
  onBlur,
65
+ onChange,
65
66
  label,
66
67
  withClearButton,
67
68
  disabled,
@@ -104,11 +105,10 @@ const TextArea = memo(
104
105
  }
105
106
  };
106
107
  const handleChange = (event) => {
107
- var _a;
108
108
  const targetValue = event.target.value;
109
109
  setWithValue(!!targetValue);
110
110
  handleResize();
111
- (_a = otherProps == null ? void 0 : otherProps.onChange) == null ? void 0 : _a.call(otherProps, event);
111
+ onChange == null ? void 0 : onChange(event);
112
112
  };
113
113
  const currentLeftAddon = renderAddon(leftAddon);
114
114
  const currentRightAddon = renderAddon(rightAddon);
@@ -1,6 +1,6 @@
1
1
  import { Button } from "./Button/Button.js";
2
2
  import { EButtonForm, EButtonSize, EButtonVariantDefault, EButtonVariantOutline, EButtonVariantRound } from "./Button/constants.js";
3
- import { I } from "../Input-BFFPzelg.js";
3
+ import { I } from "../Input-D-FCB1FU.js";
4
4
  import { EInputSize, EInputVariant } from "./Input/constants.js";
5
5
  import { TextArea } from "./TextArea/TextArea.js";
6
6
  import { InputPassword } from "./InputPassword/InputPassword.js";
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Button } from "./components/Button/Button.js";
2
2
  import { EButtonForm, EButtonSize, EButtonVariantDefault, EButtonVariantOutline, EButtonVariantRound } from "./components/Button/constants.js";
3
- import { I } from "./Input-BFFPzelg.js";
3
+ import { I } from "./Input-D-FCB1FU.js";
4
4
  import { EInputSize, EInputVariant } from "./components/Input/constants.js";
5
5
  import { TextArea } from "./components/TextArea/TextArea.js";
6
6
  import { InputPassword } from "./components/InputPassword/InputPassword.js";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mimir-ui-kit",
3
3
  "private": false,
4
- "version": "1.17.2",
4
+ "version": "1.17.3",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": {