mimir-ui-kit 1.43.9 → 1.43.11

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 (162) hide show
  1. package/dist/Input-CGZoshMl.js +224 -0
  2. package/dist/assets/Accordion.css +1 -1
  3. package/dist/assets/AccordionItem.css +1 -1
  4. package/dist/assets/Avatar.css +1 -1
  5. package/dist/assets/Button.css +1 -1
  6. package/dist/assets/CarBodyButton.css +1 -0
  7. package/dist/assets/CheckboxMimir.css +1 -1
  8. package/dist/assets/Chip.css +1 -1
  9. package/dist/assets/Drawer.css +1 -1
  10. package/dist/assets/GosZnak.css +1 -1
  11. package/dist/assets/Input.css +1 -1
  12. package/dist/assets/InputPassword.css +1 -1
  13. package/dist/assets/InputRangeSlider.css +1 -1
  14. package/dist/assets/Link.css +1 -1
  15. package/dist/assets/ListFiles.css +1 -1
  16. package/dist/assets/ListPhotos.css +1 -1
  17. package/dist/assets/MessageShortReply.css +1 -1
  18. package/dist/assets/MiniButton.css +1 -0
  19. package/dist/assets/MultiSelectSearch.css +1 -1
  20. package/dist/assets/NotificationBadge.css +1 -1
  21. package/dist/assets/OtpInput.css +1 -1
  22. package/dist/assets/Pagination.css +1 -1
  23. package/dist/assets/RoundButton.css +1 -0
  24. package/dist/assets/ScrollWrapper.css +1 -0
  25. package/dist/assets/SelectSearch.css +1 -1
  26. package/dist/assets/hooks.css +1 -1
  27. package/dist/assets/index.css +1 -1
  28. package/dist/assets/styles.css +1 -1
  29. package/dist/components/Accordion/Accordion.d.ts +10 -3
  30. package/dist/components/Accordion/Accordion.js +286 -212
  31. package/dist/components/Accordion/AccordionItem/AccordionItem.js +3 -3
  32. package/dist/components/Accordion/constants.d.ts +0 -4
  33. package/dist/components/Accordion/constants.js +4 -5
  34. package/dist/components/AnchorLink/Link.js +21 -20
  35. package/dist/components/Avatar/Avatar.js +26 -26
  36. package/dist/components/Button/Button.js +110 -87
  37. package/dist/components/Button/constants.d.ts +8 -2
  38. package/dist/components/Button/constants.js +6 -5
  39. package/dist/components/CarBodyButton/CarBodyButton.d.ts +26 -0
  40. package/dist/components/CarBodyButton/CarBodyButton.js +40 -0
  41. package/dist/components/CarBodyButton/index.d.ts +1 -0
  42. package/dist/components/CarBodyButton/index.js +4 -0
  43. package/dist/components/CheckboxMimir/CheckboxMimir.d.ts +2 -0
  44. package/dist/components/CheckboxMimir/CheckboxMimir.js +37 -35
  45. package/dist/components/Chip/Chip.js +17 -17
  46. package/dist/components/DatePicker/DatePicker.d.ts +8 -0
  47. package/dist/components/DatePicker/DatePicker.js +182 -169
  48. package/dist/components/DatePicker/DatePickerModal.js +134 -98
  49. package/dist/components/DatePicker/MonthPickerModal.js +115 -95
  50. package/dist/components/DatePicker/YearPickerModal.js +109 -89
  51. package/dist/components/DatePicker/constants.d.ts +1 -0
  52. package/dist/components/DatePicker/constants.js +1 -1
  53. package/dist/components/DatePicker/hooks.d.ts +2 -1
  54. package/dist/components/DatePicker/hooks.js +12 -12
  55. package/dist/components/Drawer/Drawer.js +172 -138
  56. package/dist/components/Drawer/ScrollWrapper/ScrollWrapper.d.ts +11 -0
  57. package/dist/components/Drawer/ScrollWrapper/ScrollWrapper.js +27 -0
  58. package/dist/components/Dropdown/Dropdown.js +1 -1
  59. package/dist/components/Dropdown/hooks.js +1 -1
  60. package/dist/components/GosZnak/GosZnak.js +47 -38
  61. package/dist/components/GosZnak/utils.d.ts +6 -0
  62. package/dist/components/GosZnak/utils.js +15 -0
  63. package/dist/components/Input/Input.d.ts +4 -0
  64. package/dist/components/Input/Input.js +2 -2
  65. package/dist/components/Input/index.js +1 -1
  66. package/dist/components/InputPassword/InputPassword.js +38 -42
  67. package/dist/components/InputPhoneNumber/InputPhoneNumber.js +1 -1
  68. package/dist/components/InputRangeSlider/InputRangeSlider.js +159 -139
  69. package/dist/components/InputRangeSlider/constants.d.ts +5 -0
  70. package/dist/components/InputRangeSlider/constants.js +11 -6
  71. package/dist/components/ListFiles/ListFiles.js +41 -39
  72. package/dist/components/ListPhotos/ListPhotos.js +17 -18
  73. package/dist/components/MessageShortReply/MessageShortReply.js +34 -34
  74. package/dist/components/{InputClearButton/ClearButton.d.ts → MiniButton/MiniButton.d.ts} +17 -8
  75. package/dist/components/MiniButton/MiniButton.js +44 -0
  76. package/dist/components/MiniButton/constants.d.ts +9 -0
  77. package/dist/components/MiniButton/constants.js +5 -0
  78. package/dist/components/MiniButton/index.d.ts +4 -0
  79. package/dist/components/MiniButton/index.js +6 -0
  80. package/dist/components/MultiSelectSearch/MultiSelectSearch.js +153 -152
  81. package/dist/components/MultiSelectSearch/constants.d.ts +1 -0
  82. package/dist/components/MultiSelectSearch/constants.js +7 -7
  83. package/dist/components/MultiSelectSearch/utils.d.ts +1 -1
  84. package/dist/components/MultiSelectSearch/utils.js +18 -16
  85. package/dist/components/NotificationBadge/NotificationBadge.js +49 -33
  86. package/dist/components/NotificationBadge/constants.d.ts +9 -2
  87. package/dist/components/NotificationBadge/constants.js +3 -2
  88. package/dist/components/NotificationBadge/types.d.ts +11 -1
  89. package/dist/components/NotificationBadge/utils.d.ts +8 -0
  90. package/dist/components/NotificationBadge/utils.js +4 -0
  91. package/dist/components/OtpInput/OtpInput.js +44 -40
  92. package/dist/components/OtpInput/constants.d.ts +4 -0
  93. package/dist/components/OtpInput/constants.js +6 -4
  94. package/dist/components/OtpInput/index.d.ts +1 -0
  95. package/dist/components/OtpInput/index.js +2 -0
  96. package/dist/components/Pagination/Pagination.js +23 -23
  97. package/dist/components/RoundButton/RoundButton.d.ts +82 -0
  98. package/dist/components/RoundButton/RoundButton.js +69 -0
  99. package/dist/components/RoundButton/constants.d.ts +11 -0
  100. package/dist/components/RoundButton/constants.js +5 -0
  101. package/dist/components/RoundButton/index.d.ts +2 -0
  102. package/dist/components/RoundButton/index.js +7 -0
  103. package/dist/components/RoundButton/types.d.ts +20 -0
  104. package/dist/components/SelectSearch/SelectSearch.d.ts +2 -0
  105. package/dist/components/SelectSearch/SelectSearch.js +273 -236
  106. package/dist/components/SelectSearch/types.d.ts +9 -1
  107. package/dist/components/SelectSearch/utils.d.ts +1 -1
  108. package/dist/components/SelectSearch/utils.js +1 -1
  109. package/dist/components/Slider/Slider.d.ts +1 -5
  110. package/dist/components/Slider/Slider.js +34 -36
  111. package/dist/components/TextArea/TextArea.js +1 -1
  112. package/dist/components/index.d.ts +3 -1
  113. package/dist/components/index.js +55 -51
  114. package/dist/hooks-Cd4Ez6_j.js +117 -0
  115. package/dist/icons/Icon.js +1 -1
  116. package/dist/icons/components/16px/DropdownArrowDown16px.js +23 -0
  117. package/dist/icons/components/24px/EyeClosed24px.js +65 -0
  118. package/dist/icons/components/Avito.js +36 -13
  119. package/dist/icons/components/Site.js +13 -36
  120. package/dist/icons/components/index.js +564 -591
  121. package/dist/{index-C2dQUuc9.js → index-DrVFMaBi.js} +1184 -1346
  122. package/dist/index.js +73 -69
  123. package/dist/styles.module-BfkM1-KJ.js +32 -0
  124. package/package.json +1 -1
  125. package/dist/Input-BU_6U1CW.js +0 -227
  126. package/dist/assets/ClearButton.css +0 -1
  127. package/dist/components/InputClearButton/ClearButton.js +0 -41
  128. package/dist/components/InputClearButton/constants.d.ts +0 -8
  129. package/dist/components/InputClearButton/constants.js +0 -5
  130. package/dist/components/InputClearButton/index.d.ts +0 -4
  131. package/dist/components/InputClearButton/index.js +0 -6
  132. package/dist/hooks-HgN6Yauq.js +0 -117
  133. package/dist/icons/components/64px/AdvancePaymentDiscount64px.js +0 -59
  134. package/dist/icons/components/64px/AtsVendors64px.js +0 -37
  135. package/dist/icons/components/64px/ButtonOn64px.js +0 -31
  136. package/dist/icons/components/64px/BuyoutAuto64px.js +0 -45
  137. package/dist/icons/components/64px/CarAssistance64px.js +0 -44
  138. package/dist/icons/components/64px/CarDelivery64px.js +0 -37
  139. package/dist/icons/components/64px/CarSearchReturn64px.js +0 -45
  140. package/dist/icons/components/64px/CarService64px.js +0 -37
  141. package/dist/icons/components/64px/Case64px.js +0 -33
  142. package/dist/icons/components/64px/CoatOfArms64px.js +0 -149
  143. package/dist/icons/components/64px/CoffeeCup64px.js +0 -44
  144. package/dist/icons/components/64px/Cup64px.js +0 -38
  145. package/dist/icons/components/64px/ExpertAdvice64px.js +0 -40
  146. package/dist/icons/components/64px/Fines64px.js +0 -88
  147. package/dist/icons/components/64px/Fuel64px.js +0 -38
  148. package/dist/icons/components/64px/GazprombankIcon24px.js +0 -21
  149. package/dist/icons/components/64px/Kasko64px.js +0 -44
  150. package/dist/icons/components/64px/LegalSupport64px.js +0 -58
  151. package/dist/icons/components/64px/Microphone64px.js +0 -37
  152. package/dist/icons/components/64px/Money64px.js +0 -60
  153. package/dist/icons/components/64px/PaymentSchedule64px.js +0 -39
  154. package/dist/icons/components/64px/PersonalManager64px.js +0 -100
  155. package/dist/icons/components/64px/PreApproval64px.js +0 -44
  156. package/dist/icons/components/64px/Questions64px.js +0 -37
  157. package/dist/icons/components/64px/SupportGeography64px.js +0 -51
  158. package/dist/icons/components/64px/Timer64px.js +0 -45
  159. package/dist/icons/components/64px/Twogis64px.js +0 -51
  160. package/dist/icons/components/64px/Vehicles64px.js +0 -45
  161. package/dist/icons/components/64px/Workplace64px.js +0 -38
  162. package/dist/styles.module-Cuqm31CO.js +0 -28
@@ -0,0 +1,27 @@
1
+ import { jsx as t } from "react/jsx-runtime";
2
+ import { c } from "../../../index-DIxK0V-G.js";
3
+ import { forwardRef as n } from "react";
4
+ import { EScrollBarVariant as e, EScrollBarSize as i } from "../../ScrollBar/constants.js";
5
+ import '../../../assets/ScrollWrapper.css';const m = "_scrollContainer_6ln8u_2", p = {
6
+ scrollContainer: m
7
+ }, f = n(
8
+ ({
9
+ children: r,
10
+ className: o,
11
+ variant: a = e.LIGHT,
12
+ size: l = i.M
13
+ }, s) => /* @__PURE__ */ t(
14
+ "div",
15
+ {
16
+ ref: s,
17
+ className: c(p.scrollContainer, o),
18
+ "data-variant": a,
19
+ "data-size": l,
20
+ children: r
21
+ }
22
+ )
23
+ );
24
+ f.displayName = "ScrollWrapper";
25
+ export {
26
+ f as ScrollWrapper
27
+ };
@@ -1,7 +1,7 @@
1
1
  import { jsx as re, jsxs as De, Fragment as nt } from "react/jsx-runtime";
2
2
  import { c as pe } from "../../index-DIxK0V-G.js";
3
3
  import E, { createContext as ue, useState as X, useContext as te, useRef as R, useEffect as ce, useMemo as Z, Fragment as fe, useReducer as rt, createRef as Fe, useId as be, memo as ot, useCallback as me } from "react";
4
- import { u as lt, c as G } from "../../hooks-HgN6Yauq.js";
4
+ import { u as lt, c as G } from "../../hooks-Cd4Ez6_j.js";
5
5
  import { Button as at } from "../Button/Button.js";
6
6
  import { o as S, u as He, M as ve, W as Y, y as ee, O as le, n as ie, m as ut, t as st, H as se, s as Ce, p as it, a as V, T as ct, $ as dt, b as pt, D as ke, I as ft, c as oe } from "../../keyboard-wis2TUql.js";
7
7
  import { w as vt } from "../../use-active-press-CnDeVvQq.js";
@@ -1,7 +1,7 @@
1
1
  import "../../index-DIxK0V-G.js";
2
2
  import "react";
3
3
  import "./constants.js";
4
- import { a as r, A, D as N, P as O, u as i } from "../../hooks-HgN6Yauq.js";
4
+ import { a as r, A, D as N, P as O, u as i } from "../../hooks-Cd4Ez6_j.js";
5
5
  export {
6
6
  r as ALIGNMENT_THRESHOLD,
7
7
  A as ANIMATION_DELAY,
@@ -1,57 +1,66 @@
1
- import { jsxs as c, jsx as o } from "react/jsx-runtime";
1
+ import { jsxs as r, jsx as o } from "react/jsx-runtime";
2
2
  import { c as n } from "../../index-DIxK0V-G.js";
3
- import { EGosZnakSize as g, EGosZnakType as f } from "./constants.js";
4
- import '../../assets/GosZnak.css';const y = "_number_dr109_13", N = "_region_dr109_32", b = "_country_dr109_46", h = "_l_dr109_53", k = "_s_dr109_62", z = "_normal_dr109_71", v = "_traffic_dr109_78", x = "_military_dr109_85", G = "_police_dr109_92", Z = "_diplomatic_dr109_99", r = {
5
- "gos-znak": "_gos-znak_dr109_2",
6
- number: y,
7
- "number-container": "_number-container_dr109_22",
8
- region: N,
9
- "region-container": "_region-container_dr109_38",
3
+ import { EGosZnakSize as f, EGosZnakType as u } from "./constants.js";
4
+ import { splitAutoNumber as N } from "./utils.js";
5
+ import '../../assets/GosZnak.css';const h = "_letters_6vy0s_23", k = "_digits_6vy0s_33", z = "_region_6vy0s_43", b = "_country_6vy0s_57", x = "_l_6vy0s_23", G = "_s_6vy0s_77", Z = "_normal_6vy0s_91", j = "_traffic_6vy0s_98", E = "_military_6vy0s_105", A = "_police_6vy0s_112", L = "_diplomatic_6vy0s_119", s = {
6
+ "gos-znak": "_gos-znak_6vy0s_2",
7
+ "number-container": "_number-container_6vy0s_13",
8
+ letters: h,
9
+ digits: k,
10
+ region: z,
11
+ "region-container": "_region-container_6vy0s_49",
10
12
  country: b,
11
- l: h,
12
- s: k,
13
- normal: z,
14
- traffic: v,
15
- military: x,
16
- police: G,
17
- diplomatic: Z
18
- }, S = ({
19
- number: i,
20
- region: s,
21
- country: a,
22
- size: e = g.L,
23
- type: _ = f.Normal,
24
- className: t,
25
- numberClassName: l,
26
- regionClassName: m,
27
- countryClassName: d,
28
- numberContainerClassName: p,
29
- regionContainerClassName: u
30
- }) => /* @__PURE__ */ c(
13
+ l: x,
14
+ s: G,
15
+ normal: Z,
16
+ traffic: j,
17
+ military: E,
18
+ police: A,
19
+ diplomatic: L
20
+ }, B = ({
21
+ number: t,
22
+ region: c,
23
+ country: e,
24
+ size: a = f.L,
25
+ type: _ = u.Normal,
26
+ className: l,
27
+ numberClassName: m,
28
+ regionClassName: y,
29
+ countryClassName: p,
30
+ numberContainerClassName: v,
31
+ regionContainerClassName: d
32
+ }) => /* @__PURE__ */ r(
31
33
  "div",
32
34
  {
33
- className: n(r["gos-znak"], r[e], r[_], t),
35
+ className: n(s["gos-znak"], s[a], s[_], l),
34
36
  children: [
35
37
  /* @__PURE__ */ o(
36
38
  "div",
37
39
  {
38
40
  className: n(
39
- r["number-container"],
40
- p
41
+ s["number-container"],
42
+ v
41
43
  ),
42
- children: /* @__PURE__ */ o("span", { className: n(r.number, l), children: i })
44
+ children: N(t).map((i, g) => /* @__PURE__ */ o(
45
+ "span",
46
+ {
47
+ className: n(s[i.type], m),
48
+ children: i.value
49
+ },
50
+ g
51
+ ))
43
52
  }
44
53
  ),
45
- /* @__PURE__ */ c(
54
+ /* @__PURE__ */ r(
46
55
  "div",
47
56
  {
48
57
  className: n(
49
- r["region-container"],
50
- u
58
+ s["region-container"],
59
+ d
51
60
  ),
52
61
  children: [
53
- /* @__PURE__ */ o("span", { className: n(r.region, m), children: s }),
54
- /* @__PURE__ */ o("span", { className: n(r.country, d), children: a })
62
+ /* @__PURE__ */ o("span", { className: n(s.region, y), children: c }),
63
+ /* @__PURE__ */ o("span", { className: n(s.country, p), children: e })
55
64
  ]
56
65
  }
57
66
  )
@@ -59,5 +68,5 @@ import '../../assets/GosZnak.css';const y = "_number_dr109_13", N = "_region_dr1
59
68
  }
60
69
  );
61
70
  export {
62
- S as GosZnak
71
+ B as GosZnak
63
72
  };
@@ -0,0 +1,6 @@
1
+ type TAutoNumberPart = {
2
+ type: 'letters' | 'digits';
3
+ value: string;
4
+ };
5
+ export declare function splitAutoNumber(plate: string): TAutoNumberPart[];
6
+ export {};
@@ -0,0 +1,15 @@
1
+ function a(r) {
2
+ return (r.match(/[A-Za-zА-Яа-я\s]+|\d+/g) || []).map((e) => {
3
+ const t = e.replace(/ /g, " ");
4
+ return /[A-Za-zА-Яа-я]/.test(e) ? {
5
+ type: "letters",
6
+ value: t
7
+ } : {
8
+ type: "digits",
9
+ value: t
10
+ };
11
+ });
12
+ }
13
+ export {
14
+ a as splitAutoNumber
15
+ };
@@ -57,6 +57,10 @@ export type TAdditionalProps = {
57
57
  /**
58
58
  * Разрешить только числовой ввод
59
59
  */
60
+ onClearButtonClick?: (e: React.MouseEvent<HTMLButtonElement>) => void;
61
+ /**
62
+ * Функция вызывающаяся при клике на clearButton
63
+ */
60
64
  numbersOnly?: boolean;
61
65
  /**
62
66
  * Максимальная длина ввода
@@ -2,10 +2,10 @@ import "react/jsx-runtime";
2
2
  import "../../index-DIxK0V-G.js";
3
3
  import "react";
4
4
  import "./constants.js";
5
- import { I as f } from "../../Input-BU_6U1CW.js";
5
+ import { I as f } from "../../Input-CGZoshMl.js";
6
6
  import "../../hooks/useMergeRefs/useMergeRefs.js";
7
7
  import "../../icons/Icon.js";
8
- import "../Button/Button.js";
8
+ import "../MiniButton/MiniButton.js";
9
9
  export {
10
10
  f as Input
11
11
  };
@@ -1,4 +1,4 @@
1
- import { I as n } from "../../Input-BU_6U1CW.js";
1
+ import { I as n } from "../../Input-CGZoshMl.js";
2
2
  import { EInputSize as u, EInputStatus as I, EInputVariant as a } from "./constants.js";
3
3
  export {
4
4
  u as EInputSize,
@@ -1,60 +1,56 @@
1
- import { jsxs as _, jsx as o } from "react/jsx-runtime";
2
- import { c as l } from "../../index-DIxK0V-G.js";
3
- import { memo as d, forwardRef as b, useState as f, useCallback as r } from "react";
4
- import { Icon as x } from "../../icons/Icon.js";
5
- import { Button as N } from "../Button/Button.js";
6
- import { I as h } from "../../Input-BU_6U1CW.js";
7
- import '../../assets/InputPassword.css';const M = "_input_7b9x2_2", y = "_wrapper_7b9x2_6", I = "_button_7b9x2_17", v = "_icon_7b9x2_33", C = "_show_7b9x2_38", e = {
8
- input: M,
9
- wrapper: y,
10
- "input-wrapper": "_input-wrapper_7b9x2_13",
11
- "button-wrapper": "_button-wrapper_7b9x2_17",
12
- button: I,
13
- icon: v,
14
- show: C
15
- }, P = d(
16
- b(
17
- ({ size: p, showOnHold: t = !1, ...n }, i) => {
18
- const [s, a] = f(!1), c = r(() => {
19
- t || a(!s);
20
- }, [t, s]), u = r(() => {
21
- t && a(!0);
1
+ import { jsxs as l, jsx as p } from "react/jsx-runtime";
2
+ import { memo as _, forwardRef as w, useState as f, useCallback as r } from "react";
3
+ import { Icon as g } from "../../icons/Icon.js";
4
+ import { Button as v } from "../Button/Button.js";
5
+ import { I as b } from "../../Input-CGZoshMl.js";
6
+ import '../../assets/InputPassword.css';const N = "_input_qgg1v_2", q = "_wrapper_qgg1v_6", x = "_button_qgg1v_17", y = "_icon_qgg1v_33", e = {
7
+ input: N,
8
+ wrapper: q,
9
+ "input-wrapper": "_input-wrapper_qgg1v_13",
10
+ "button-wrapper": "_button-wrapper_qgg1v_17",
11
+ button: x,
12
+ icon: y
13
+ }, M = _(
14
+ w(
15
+ ({ size: o, showOnHold: t = !1, ...n }, i) => {
16
+ const [a, s] = f(!1), u = r(() => {
17
+ t || s(!a);
18
+ }, [t, a]), c = r(() => {
19
+ t && s(!0);
22
20
  }, [t]), m = r(() => {
23
- t && a(!1);
24
- }, [t]), w = r(() => {
25
- t && a(!1);
21
+ t && s(!1);
22
+ }, [t]), d = r(() => {
23
+ t && s(!1);
26
24
  }, [t]);
27
- return /* @__PURE__ */ _("div", { className: e.wrapper, "data-testid": "input-password-wrapper", children: [
28
- /* @__PURE__ */ o(
29
- h,
25
+ return /* @__PURE__ */ l("div", { className: e.wrapper, "data-testid": "input-password-wrapper", children: [
26
+ /* @__PURE__ */ p(
27
+ b,
30
28
  {
31
29
  ref: i,
32
30
  className: e.input,
33
31
  wrapperClassName: e["input-wrapper"],
34
- size: p,
35
- type: s ? "text" : "password",
32
+ size: o,
33
+ type: a ? "text" : "password",
36
34
  "data-testid": "password-input",
37
35
  ...n
38
36
  }
39
37
  ),
40
- /* @__PURE__ */ o("div", { className: e["button-wrapper"], children: /* @__PURE__ */ o(
41
- N,
38
+ /* @__PURE__ */ p("div", { className: e["button-wrapper"], children: /* @__PURE__ */ p(
39
+ v,
42
40
  {
43
41
  clear: !0,
44
42
  type: "button",
45
43
  className: e.button,
46
- onClick: c,
47
- onMouseDown: u,
44
+ onClick: u,
45
+ onMouseDown: c,
48
46
  onMouseUp: m,
49
- onMouseLeave: w,
47
+ onMouseLeave: d,
50
48
  "data-testid": "eye-icon",
51
- children: /* @__PURE__ */ o(
52
- x,
49
+ children: /* @__PURE__ */ p(
50
+ g,
53
51
  {
54
- className: l(e.icon, {
55
- [e.show]: s
56
- }),
57
- iconName: "Eye24px"
52
+ className: e.icon,
53
+ iconName: a ? "Eye24px" : "EyeClosed24px"
58
54
  }
59
55
  )
60
56
  }
@@ -63,7 +59,7 @@ import '../../assets/InputPassword.css';const M = "_input_7b9x2_2", y = "_wrappe
63
59
  }
64
60
  )
65
61
  );
66
- P.displayName = "InputPassword";
62
+ M.displayName = "InputPassword";
67
63
  export {
68
- P as InputPassword
64
+ M as InputPassword
69
65
  };
@@ -1,7 +1,7 @@
1
1
  import { jsx as d } from "react/jsx-runtime";
2
2
  import { memo as I, forwardRef as i, useState as c, useCallback as f, useImperativeHandle as P } from "react";
3
3
  import { getMaskedInputPhoneValue as m, getUnmaskedInputValue as o } from "./utils.js";
4
- import { I as b } from "../../Input-BU_6U1CW.js";
4
+ import { I as b } from "../../Input-CGZoshMl.js";
5
5
  const h = I(
6
6
  i(
7
7
  ({ value: s = "", onChange: e, ...p }, a) => {