mimir-ui-kit 1.38.35 → 1.38.38
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.
@@ -20,7 +20,7 @@ export type TProps = {
|
|
20
20
|
/**
|
21
21
|
* Значение даты из стейта (data)
|
22
22
|
*/
|
23
|
-
value?: string;
|
23
|
+
value?: Date | string;
|
24
24
|
/**
|
25
25
|
* Значение типа модального окна календаря
|
26
26
|
*/
|
@@ -78,7 +78,7 @@ export declare const DatePicker: import('react').MemoExoticComponent<import('rea
|
|
78
78
|
/**
|
79
79
|
* Значение даты из стейта (data)
|
80
80
|
*/
|
81
|
-
value?: string;
|
81
|
+
value?: Date | string;
|
82
82
|
/**
|
83
83
|
* Значение типа модального окна календаря
|
84
84
|
*/
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { jsxs as
|
1
|
+
import { jsxs as i, jsx as t } from "react/jsx-runtime";
|
2
2
|
import { c as A } from "../../index-DIxK0V-G.js";
|
3
3
|
import { memo as x, useRef as E } from "react";
|
4
4
|
import { ANIMATION_VARIABLES_MAP as I, EToastPosition as _, EToastVariant as B, DEFAULT_TOAST_DURATION as D } from "./constants.js";
|
@@ -8,60 +8,60 @@ import { Button as w } from "../Button/Button.js";
|
|
8
8
|
const M = x(
|
9
9
|
({
|
10
10
|
id: e,
|
11
|
-
title:
|
12
|
-
message:
|
13
|
-
position:
|
14
|
-
variant:
|
11
|
+
title: a = "",
|
12
|
+
message: m,
|
13
|
+
position: h = _.TOP_RIGHT,
|
14
|
+
variant: p = B.DEFAULT,
|
15
15
|
duration: c = D,
|
16
|
-
autoClose:
|
16
|
+
autoClose: N = !0,
|
17
17
|
needProgress: n = !0,
|
18
|
-
needTimer:
|
19
|
-
needCloseButton:
|
18
|
+
needTimer: d = !0,
|
19
|
+
needCloseButton: u = !0,
|
20
20
|
onToastRemove: s,
|
21
|
-
slot:
|
21
|
+
slot: f
|
22
22
|
}) => {
|
23
|
-
const
|
23
|
+
const l = E(null), { seconds: o } = P({
|
24
24
|
expiryTimestamp: Date.now() + c,
|
25
|
-
autoStart:
|
26
|
-
onExpire:
|
25
|
+
autoStart: N,
|
26
|
+
onExpire: N ? () => s == null ? void 0 : s(e, l) : void 0
|
27
27
|
});
|
28
|
-
return /* @__PURE__ */
|
28
|
+
return /* @__PURE__ */ i(
|
29
29
|
"div",
|
30
30
|
{
|
31
31
|
style: {
|
32
|
-
"--elm-translate": I[
|
32
|
+
"--elm-translate": I[h]
|
33
33
|
},
|
34
34
|
className: A(
|
35
35
|
r["toast-in"],
|
36
36
|
r["toast-wrapper"],
|
37
|
-
r[
|
37
|
+
r[p]
|
38
38
|
),
|
39
|
-
ref:
|
39
|
+
ref: l,
|
40
40
|
role: "alert",
|
41
41
|
children: [
|
42
|
-
|
43
|
-
|
44
|
-
(
|
45
|
-
!!c &&
|
42
|
+
a && /* @__PURE__ */ t("h3", { className: r.title, children: a }),
|
43
|
+
m && /* @__PURE__ */ t("div", { className: r.message, children: m }),
|
44
|
+
(d || n) && /* @__PURE__ */ i("div", { children: [
|
45
|
+
!!c && d && /* @__PURE__ */ i("div", { className: r.timer, children: [
|
46
46
|
/* @__PURE__ */ t("h4", { className: r["timer-title"], children: "Осталось" }),
|
47
|
-
/* @__PURE__ */
|
48
|
-
|
47
|
+
/* @__PURE__ */ i("p", { className: r.seconds, children: [
|
48
|
+
o,
|
49
49
|
" сек"
|
50
50
|
] })
|
51
51
|
] }),
|
52
|
-
!!c && n && /* @__PURE__ */ t(O, { variant:
|
52
|
+
!!c && n && /* @__PURE__ */ t(O, { variant: p, duration: c })
|
53
53
|
] }),
|
54
|
-
|
54
|
+
u && /* @__PURE__ */ t(
|
55
55
|
w,
|
56
56
|
{
|
57
|
-
onClick: () => s == null ? void 0 : s(e,
|
57
|
+
onClick: () => s == null ? void 0 : s(e, l),
|
58
58
|
clear: !0,
|
59
59
|
isIconButton: !0,
|
60
60
|
className: r["close-button"],
|
61
61
|
iconName: "Close24px"
|
62
62
|
}
|
63
63
|
),
|
64
|
-
|
64
|
+
f && /* @__PURE__ */ t("div", { className: r.slot, children: f })
|
65
65
|
]
|
66
66
|
}
|
67
67
|
);
|