mimir-ui-kit 1.43.25 → 1.43.27
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/ProgressBar-F970LqqJ.js +68 -0
- package/dist/assets/Drawer.css +1 -1
- package/dist/assets/ProgressBar.css +1 -1
- package/dist/assets/index.css +1 -1
- package/dist/components/Drawer/Drawer.d.ts +4 -0
- package/dist/components/Drawer/Drawer.js +164 -156
- package/dist/components/Toasts/ProgressBar.js +1 -1
- package/dist/components/Toasts/Toast.js +1 -1
- package/dist/components/Toasts/ToastList.js +18 -17
- package/dist/components/Toasts/ToastsProvider.js +1 -1
- package/package.json +1 -1
- package/dist/ProgressBar-DA7-pT_u.js +0 -68
@@ -0,0 +1,68 @@
|
|
1
|
+
import { jsx as m } from "react/jsx-runtime";
|
2
|
+
import { c as u } from "./index-DIxK0V-G.js";
|
3
|
+
import { memo as q, useRef as r, useEffect as f } from "react";
|
4
|
+
import { DEFAULT_TOAST_DURATION as g, EToastVariant as b } from "./components/Toasts/constants.js";
|
5
|
+
import './assets/ProgressBar.css';const d = "_title_14r7q_37", A = "_timer_14r7q_41", T = "_seconds_14r7q_51", h = "_message_14r7q_61", w = "_progress_14r7q_69", D = "_slot_14r7q_95", F = "_success_14r7q_104", R = "_alarm_14r7q_109", E = "_error_14r7q_114", N = "_purple_14r7q_119", o = {
|
6
|
+
"toast-list": "_toast-list_14r7q_2",
|
7
|
+
"toast-wrapper": "_toast-wrapper_14r7q_24",
|
8
|
+
title: d,
|
9
|
+
timer: A,
|
10
|
+
"timer-title": "_timer-title_14r7q_49",
|
11
|
+
seconds: T,
|
12
|
+
message: h,
|
13
|
+
progress: w,
|
14
|
+
"progress-bar": "_progress-bar_14r7q_78",
|
15
|
+
"close-button": "_close-button_14r7q_89",
|
16
|
+
slot: D,
|
17
|
+
default: "_default_14r7q_99",
|
18
|
+
success: F,
|
19
|
+
alarm: R,
|
20
|
+
error: E,
|
21
|
+
purple: N,
|
22
|
+
"top-right": "_top-right_14r7q_124",
|
23
|
+
"top-center": "_top-center_14r7q_130",
|
24
|
+
"top-left": "_top-left_14r7q_136",
|
25
|
+
"bottom-left": "_bottom-left_14r7q_141",
|
26
|
+
"bottom-center": "_bottom-center_14r7q_146",
|
27
|
+
"bottom-right": "_bottom-right_14r7q_152",
|
28
|
+
"toast-in": "_toast-in_14r7q_184",
|
29
|
+
"toast-out": "_toast-out_14r7q_188"
|
30
|
+
}, O = q(
|
31
|
+
({
|
32
|
+
duration: _ = g,
|
33
|
+
variant: l = b.DEFAULT,
|
34
|
+
isPaused: n = !1
|
35
|
+
}) => {
|
36
|
+
const t = r(), e = r(null), c = r(Date.now()), s = r(0);
|
37
|
+
return f(() => {
|
38
|
+
if (n)
|
39
|
+
t.current && cancelAnimationFrame(t.current);
|
40
|
+
else {
|
41
|
+
c.current = Date.now() - s.current;
|
42
|
+
const a = () => {
|
43
|
+
const p = Date.now();
|
44
|
+
s.current = p - c.current;
|
45
|
+
const i = Math.min(
|
46
|
+
s.current / _ * 100,
|
47
|
+
100
|
48
|
+
);
|
49
|
+
e.current && (e.current.style.width = `${i}%`), i < 100 && (t.current = requestAnimationFrame(a));
|
50
|
+
};
|
51
|
+
t.current = requestAnimationFrame(a);
|
52
|
+
}
|
53
|
+
return () => {
|
54
|
+
t.current && cancelAnimationFrame(t.current);
|
55
|
+
};
|
56
|
+
}, [_, n]), /* @__PURE__ */ m("div", { className: o.progress, "data-testid": "progress-bar", children: /* @__PURE__ */ m(
|
57
|
+
"div",
|
58
|
+
{
|
59
|
+
ref: e,
|
60
|
+
className: u(o["progress-bar"], o[l])
|
61
|
+
}
|
62
|
+
) });
|
63
|
+
}
|
64
|
+
);
|
65
|
+
export {
|
66
|
+
O as P,
|
67
|
+
o as c
|
68
|
+
};
|
package/dist/assets/Drawer.css
CHANGED
@@ -1 +1 @@
|
|
1
|
-
.
|
1
|
+
._drawerContainer_yzb8n_2{position:fixed;z-index:1000000}._drawer_yzb8n_2{--drawer-width: 808px;--drawer-z-index: 10000;position:fixed;z-index:10000;z-index:var(--drawer-z-index);display:flex;flex-direction:column;width:808px;width:var(--drawer-width);height:100%;overflow:auto;background-color:var(--black-5);transition:all .3s ease;pointer-events:none}._drawer_yzb8n_2::-webkit-scrollbar{width:3px}._drawer_yzb8n_2::-webkit-scrollbar-thumb{background-color:var(--black-80);border-radius:2px}._drawer_yzb8n_2::-webkit-scrollbar-track{background-color:var(--white)}._drawer_yzb8n_2 ._content_yzb8n_31{position:relative;display:flex;flex:1;flex-direction:column;padding:var(--mimir-space-m) var(--mimir-space-xs) var(--mimir-space-3xs) var(--mimir-space-4xl);overflow:hidden;transition:all .3s ease}@media (max-width: 600px){._drawer_yzb8n_2 ._content_yzb8n_31{--drawer-width: 100%;padding:var(--mimir-space-m)}}._drawer_yzb8n_2 ._header_yzb8n_46{display:flex;gap:var(--mimir-space-xs);min-height:68px}._drawer_yzb8n_2 ._header_yzb8n_46:not(:last-child){margin-bottom:var(--mimir-space-2xl)}._drawer_yzb8n_2 ._header_yzb8n_46._sticky-header_yzb8n_54{position:-webkit-sticky;position:sticky;top:0;left:0;background-color:var(--black-5)}._drawer_yzb8n_2 ._header_yzb8n_46 ._title_yzb8n_60{flex:1;align-self:flex-end;font-weight:var(--mimir-font-weight-text-medium);font-size:var(--mimir-size-text-xl3);line-height:var(--mimir-space-2xxl);letter-spacing:.7px}@media (max-width: 600px){._drawer_yzb8n_2 ._header_yzb8n_46 ._title_yzb8n_60{font-size:var(--mimir-size-text-xl2);line-height:var(--mimir-line-height-text-xs)}}._drawer_yzb8n_2 ._header_yzb8n_46 ._space_yzb8n_74{flex:0 0 var(--button-height-m)}@media (max-width: 600px){._drawer_yzb8n_2 ._header_yzb8n_46{min-height:55px}._drawer_yzb8n_2 ._header_yzb8n_46:not(:last-child){margin-bottom:var(--mimir-space-m)}}._drawer_yzb8n_2 ._inner_yzb8n_85{flex:1;padding-right:var(--mimir-space-xxl);overflow-y:auto}._drawer_yzb8n_2 ._inner_yzb8n_85._is-loading_yzb8n_90{display:flex;flex-direction:column;align-items:center;justify-content:center}@media (max-width: 600px){._drawer_yzb8n_2 ._inner_yzb8n_85{padding-right:0}}._drawer_yzb8n_2 ._button_yzb8n_101{position:absolute;top:var(--mimir-space-m);right:var(--mimir-space-m)}._drawer_yzb8n_2 ._footer_yzb8n_106{display:block;padding:var(--mimir-space-2xl) var(--mimir-space-xxl) var(--mimir-space-4xl) var(--mimir-space-xxl)}@media (max-width: 600px){._drawer_yzb8n_2 ._footer_yzb8n_106{padding:var(--mimir-space-m)}}._drawer_yzb8n_2 ._footer_yzb8n_106._has-scroll_yzb8n_115{box-shadow:var(--mimir-modal-window-bottom-panel-shadow)}._drawer_yzb8n_2 ._footer-button_yzb8n_118{display:block;margin-left:auto}._drawer_yzb8n_2._left_yzb8n_122{top:0;left:-100%}._drawer_yzb8n_2._right_yzb8n_126{top:0;right:-100%}._drawer_yzb8n_2._full_yzb8n_130{top:0;right:0;bottom:0;left:0;width:100%;height:100%;max-height:100vh;border-radius:0;transform:scale(.95);opacity:0;transition:transform .3s ease-in-out,opacity .3s ease-in-out}._drawer_yzb8n_2._bottom_yzb8n_140{--drawer-width: calc(100% - var(--mimir-space-m));right:50%;bottom:-100%;left:50%;height:-webkit-max-content;height:-moz-max-content;height:max-content;max-height:calc(100% - var(--mimir-space-xs));border-top-left-radius:var(--mimir-control-radius);border-top-right-radius:var(--mimir-control-radius);transform:translate(-50%)}._drawer_yzb8n_2._bottom_yzb8n_140._full-bottom-height_yzb8n_151{height:calc(100% - var(--mimir-space-xs))}._drawer_yzb8n_2._bottom_yzb8n_140._is-loading_yzb8n_90{height:50vh}._drawer_yzb8n_2._opened_yzb8n_157{transition:all .3s ease;pointer-events:auto}._drawer_yzb8n_2._opened_yzb8n_157._left_yzb8n_122{left:0%;transition:left .3s ease}._drawer_yzb8n_2._opened_yzb8n_157._right_yzb8n_126{right:0%;transition:right .3s ease}._drawer_yzb8n_2._opened_yzb8n_157._bottom_yzb8n_140{bottom:0%}._drawer_yzb8n_2._opened_yzb8n_157._full_yzb8n_130{transform:scale(1);opacity:1}._drawer_yzb8n_2._is-closing_yzb8n_176._left_yzb8n_122{left:-100%}._drawer_yzb8n_2._is-closing_yzb8n_176._right_yzb8n_126{right:-100%}._drawer_yzb8n_2._is-closing_yzb8n_176._bottom_yzb8n_140{bottom:-100%}._drawer_yzb8n_2._is-closing_yzb8n_176._full_yzb8n_130{transform:scale(.95);opacity:0}@media (max-width: 1440px){._drawer_yzb8n_2{--drawer-width: 608px}}@media (max-width: 1280px){._drawer_yzb8n_2{--drawer-width: 648px}}@media (max-width: 768px){._drawer_yzb8n_2{--drawer-width: 584px}}@media (max-width: 600px){._drawer_yzb8n_2{--drawer-width: 100%}._drawer_yzb8n_2._bottom_yzb8n_140{--drawer-width: calc(100% - var(--mimir-space-m))}}._overlay_yzb8n_213{--overlay-z-index: 9990;position:fixed;top:0;left:0;z-index:9990;z-index:var(--overlay-z-index);width:100%;height:100%;background-color:#0009;opacity:0;transition:all .3s ease}._overlay_yzb8n_213._opened_yzb8n_157{opacity:1;transition:all .3s ease}._overlay_yzb8n_213._opened_yzb8n_157._unmount_yzb8n_229{z-index:var(--overlay-z-index);-webkit-appearance:none;-moz-appearance:none;appearance:none}._overlay_yzb8n_213._is-closing_yzb8n_176{opacity:0;transition:all .3s ease}._overlay_yzb8n_213._unmount_yzb8n_229{z-index:-1;-webkit-appearance:none;-moz-appearance:none;appearance:none}
|
@@ -1 +1 @@
|
|
1
|
-
._toast-
|
1
|
+
._toast-list_14r7q_2{position:fixed;z-index:var(--mimir-zindex-toasts-list);width:100vw;max-width:515px;max-height:100vh;padding:var(--mimir-space-m);overflow-x:hidden;overflow-y:auto;overflow:hidden auto}._toast-list_14r7q_2::-webkit-scrollbar{display:none}._toast-list_14r7q_2::-webkit-scrollbar-track{background-color:transparent}._toast-list_14r7q_2::-webkit-scrollbar-thumb{background-color:transparent}._toast-list_14r7q_2::-webkit-scrollbar-thumb:window-inactive{background-color:transparent}._toast-wrapper_14r7q_24{position:relative;display:flex;flex-direction:column;padding:var(--mimir-space-m);background-color:var(--toast-bg-color);border-radius:var(--mimir-control-radius);transition:all .3s ease}._toast-wrapper_14r7q_24:not(:last-child){margin-bottom:var(--mimir-space-s)}._title_14r7q_37:not(:last-child){margin-bottom:var(--mimir-space-xs)}._timer_14r7q_41{display:flex;justify-content:space-between}._timer_14r7q_41:not(:last-child){margin-bottom:var(--mimir-space-2xs)}._timer-title_14r7q_49,._title_14r7q_37,._seconds_14r7q_51{color:var(--black-60);font-size:var(--mimir-size-text-m);line-height:var(--mimir-line-height-text-xxs)}._seconds_14r7q_51{color:var(--black-100)}._message_14r7q_61{font-size:var(--mimir-size-text-l);line-height:var(--mimir-line-height-text-s1)}._message_14r7q_61:not(:last-child){margin-bottom:var(--mimir-space-xs)}._progress_14r7q_69{position:relative;width:100%;height:8px;overflow:hidden;background-color:var(--black-5);border-radius:var(--mimir-control-radius-xs)}._progress-bar_14r7q_78{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;background-color:var(--progress-bg-color);border-radius:var(--mimir-control-radius-xs)}._close-button_14r7q_89{position:absolute;top:var(--mimir-space-s);right:var(--mimir-space-s)}._slot_14r7q_95{margin-top:var(--mimir-space-xl)}._default_14r7q_99{--toast-bg-color: var(--white);--progress-bg-color: var(--sapphire-100)}._success_14r7q_104{--toast-bg-color: var(--success-bg-active);--progress-bg-color: var(--success-normal)}._alarm_14r7q_109{--toast-bg-color: var(--alarm-bg-active);--progress-bg-color: var(--alarm-normal)}._error_14r7q_114{--toast-bg-color: var(--error-bg-active);--progress-bg-color: var(--error-normal)}._purple_14r7q_119{--toast-bg-color: var(--purple-bg-active);--progress-bg-color: var(--purple-normal)}._top-right_14r7q_124{top:0;right:0;transition:all .3s ease}._top-center_14r7q_130{top:0;right:50%;transform:translate(50%)}._top-left_14r7q_136{top:0;left:0}._bottom-left_14r7q_141{bottom:0;left:0}._bottom-center_14r7q_146{right:50%;bottom:0;transform:translate(50%)}._bottom-right_14r7q_152{right:0;bottom:0}@keyframes _toast-in_14r7q_184{0%{transform:var(--elm-translate);opacity:.7}80%{transform:translate(0);opacity:.7}to{transform:scale(1);opacity:1}}@keyframes _toast-out_14r7q_188{0%{opacity:1}20%{transform:translate(0);opacity:.7}to{transform:var(--elm-translate);opacity:.7}}._toast-in_14r7q_184{animation:_toast-in_14r7q_184 .3s both}._toast-out_14r7q_188{animation:_toast-out_14r7q_188 .8s both}
|
package/dist/assets/index.css
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@font-face{font-weight:400;font-family:Montserrat;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Regular.woff2) format("woff2"),url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Regular.woff) format("woff")}@font-face{font-weight:700;font-family:Montserrat;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Bold.woff2) format("woff2"),url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Bold.woff) format("woff")}@font-face{font-weight:300;font-family:Montserrat;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Light.woff2) format("woff2"),url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Light.woff) format("woff")}@font-face{font-weight:500;font-family:Montserrat;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Medium.woff2) format("woff2"),url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Medium.woff) format("woff")}@font-face{font-weight:600;font-family:Montserrat;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-SemiBold.woff2) format("woff2"),url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-SemiBold.woff) format("woff")}@font-face{font-weight:400;font-family:Inter;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/inter/Inter-Regular.woff2) format("woff2");font-variant-numeric:slashed-zero}@font-face{font-weight:700;font-family:Inter;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/inter/Inter-Bold.woff2) format("woff2");font-variant-numeric:slashed-zero}@font-face{font-weight:500;font-family:Inter;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/inter/Inter-Medium.woff2) format("woff2");font-variant-numeric:slashed-zero}@font-face{font-weight:600;font-family:Inter;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/inter/Inter-SemiBold.woff2) format("woff2");font-variant-numeric:slashed-zero}@supports (font-variation-settings: normal){:root{font-family:InterVariable,sans-serif}}:root{font-feature-settings:"zero"}*{margin:0;padding:0;border:0;outline:none}*,:after,:before{box-sizing:border-box}:active,:focus{outline:0}a,a:visited,a:hover{-webkit-text-decoration:none;text-decoration:none}a:active,a:focus{outline:0}button,input,textarea,select{font-family:inherit}input::-ms-clear{display:none}button{background-color:transparent;cursor:pointer}button::-moz-focus-inner{padding:0;border:0}ul li{list-style:none}img{vertical-align:top}h1,h2,h3,h4,h5,h6{font-weight:inherit;font-size:inherit}input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus,input:-webkit-autofill:active{-webkit-background-clip:text;background-clip:text;-webkit-transition:background-color 5000s ease-in-out 0s;transition:background-color 5000s ease-in-out 0s}:root{--sapphire-100: #2355d7;--sapphire-90: #3564df;--sapphire-80: #4b75e2;--sapphire-70: #6186e6;--sapphire-60: #7797e9;--sapphire-50: #8da7ed;--sapphire-40: #9fb7f4;--sapphire-30: #b9caf4;--sapphire-20: #cfdaf7;--sapphire-10: #e5ebfb;--citrine-100: #ff7900;--citrine-90: #ff861a;--citrine-80: #ff9433;--citrine-70: #ffa14d;--citrine-60: #ffaf66;--citrine-50: #ffbc80;--citrine-40: #ffc999;--citrine-30: #ffd7b2;--citrine-20: #ffe4cc;--citrine-10: #fff2e5;--magenta-100: #bc2251;--magenta-90: #d8275d;--magenta-80: #dc3d6d;--magenta-70: #e15781;--magenta-60: #e46c91;--magenta-50: #e986a4;--magenta-40: #ed9cb4;--magenta-30: #f2b6c8;--magenta-20: #f6cbd8;--magenta-10: #fae5ec;--purple-normal: #8a2be2;--purple-bg-active: #fae1fa;--black-100: #000;--black-95: #0d0d0d;--black-90: #1a1a1a;--black-85: #262626;--black-80: #333;--black-75: #404040;--black-70: #4d4d4d;--black-65: #595959;--black-60: #666;--black-55: #737373;--black-50: #808080;--black-45: #8c8c8c;--black-40: #999;--black-35: #a6a6a6;--black-30: #b3b3b3;--black-25: #bfbfbf;--black-20: #ccc;--black-15: #d9d9d9;--black-10: #e6e6e6;--black-5: #f2f2f2;--white: #fff;--dark-blue: #0a38af;--blue-40: #a7bbef;--blue-20: #d3ddf7;--green: #1b770c;--red-tag: #f01406;--success-normal: #23b413;--success-bg-hover: #d5fbe2;--success-bg-active: #ebfdf1;--alarm-normal: #fdc023;--alarm-bg-hover: #fff0c7;--alarm-bg-active: #fff6de;--error-normal: #e64646;--error-bg-hover: #fadbdb;--error-bg-active: #fbe3e3;--disabled: #b3b3b3;--disabled-color: #b2b2b2;--light-text: var(--white);--dark-text: var(--black-100);--sapphire-normal: var(--sapphire-100);--sapphire-hover: #1b41a3;--sapphire-active: #122c70;--citrine-normal: var(--citrine-100);--citrine-hover: #e56d00;--citrine-active: #cc6100;--asphalt-border: var(--black-30);--asphalt-normal: var(--black-80);--asphalt-hover: var(--black-90);--asphalt-active: var(--black-100);--gray-normal: var(--black-5);--gray-hover: var(--black-10);--gray-active: var(--black-80);--white-normal: var(--white);--white-hover: var(--black-5);--white-transparent: rgba(255, 255, 255, .4);--white-active: var(--black-80);--red-normal: var(--error-normal);--red-hover: #e33030;--red-active: #dc1e1e;--green-normal: var(--green);--green-hover: #16610a;--green-active: #114a08;--counter-text: #ffa066;--gos-znak-traffic-background-color: #fede0c;--gos-znak-military-background-color: var(--black-80);--gos-znak-police-background-color: #4478ff;--gos-znak-diplomatic-background-color: #e64646;--gos-znak-diplomatic-country-color: #f5b7b7;--button-height-ms: 16px;--button-height-xs: 24px;--button-height-s: 32px;--button-height-m: 40px;--button-height-l: 48px;--button-height-xl: 56px;--button-height-xxl: 64px;--mimir-select-search-height-s: 40px;--mimir-select-search-height-l: 48px;--mimir-select-search-height-xxl: 64px;--mimir-select-search-options-height-desktop: 320px;--mimir-select-search-options-height-mobile: 264px;--mimir-control-default: var(--sapphire-20);--mimir-control-hover: var(--sapphire-40);--mimir-control-selected: var(--sapphire-100);--mimir-control-disabled: var(--black-10);--mimir-font-inter: "Inter", sans-serif;--mimir-font-montserrat: "Montserrat", sans-serif;--mimir-font-weight-text-regular: 400;--mimir-font-weight-text-medium: 500;--mimir-font-weight-text-semibold: 600;--mimir-font-weight-text-bold: 700;--mimir-font-weight-text-extrabold: 800;--mimir-font-weight-text-black: 900;--mimir-size-text-xs2: 8px;--mimir-size-text-xs: 10px;--mimir-size-text-s: 12px;--mimir-size-text-m: 14px;--mimir-size-text-l: 16px;--mimir-size-text-l2: 18px;--mimir-size-text-xl: 20px;--mimir-size-text-xl2: 24px;--mimir-size-text-3xl: 26px;--mimir-size-text-2xl: 28px;--mimir-size-text-xl3: 32px;--mimir-size-text-xl4: 48px;--mimir-size-text-4xl: 52px;--mimir-size-text-5xl: 56px;--mimir-size-text-xl5: 72px;--mimir-size-text-xl6: 96px;--mimir-line-height-text-2xs: 1em;--mimir-line-height-text-xxs: 1.125em;--mimir-line-height-text-xs: 1.1em;--mimir-line-height-text-xss: 1.12em;--mimir-line-height-text-xss1: 1.17em;--mimir-line-height-text-s: 1.2em;--mimir-line-height-text-s1: 1.25em;--mimir-line-height-text-m: 1.3em;--mimir-line-height-text-m1: 1.35em;--mimir-line-height-text-l: 1.4em;--mimir-line-height-text-l1: 1.45em;--mimir-line-height-text-xl: 1.5em;--mimir-line-height-text-xl1: 1.5em;--mimir-control-radius-xs2: 2px;--mimir-control-radius-xs: 4px;--mimir-control-radius-xs1: 5px;--mimir-control-radius: 6px;--mimir-control-radius-s: 8px;--mimir-control-radius-m-s: 16px;--mimir-control-radius-m: 20px;--mimir-control-radius-l: 24px;--mimir-control-radius-xl: 32px;--mimir-control-radius-xxl: 40px;--mimir-control-input-radius: 12px;--mimir-control-border-width: 1px;--mimir-control-space-xs: var(--mimir-space-s);--mimir-control-space-l: var(--mimir-space-xl);--mimir-control-space-xxl: var(--mimir-space-xl);--mimir-control-text-size-2xl: var(--mimir-size-text-xl);--mimir-control-text-size-xl: var(--mimir-size-text-xl3);--mimir-control-text-size-l: var(--mimir-size-text-l);--mimir-control-text-size-m: var(--mimir-size-text-m);--mimir-control-text-size-s: var(--mimir-size-text-s);--mimir-control-text-size-xs: var(--mimir-size-text-xs);--mimir-space-3xs: 2px;--mimir-space-2xs: 4px;--mimir-space-1xs: 6px;--mimir-space-xs: 8px;--mimir-space-xss: 10px;--mimir-space-s: 12px;--mimir-space-2s: 14px;--mimir-space-m: 16px;--mimir-space-2m: 18px;--mimir-space-l: 20px;--mimir-space-2l: 22px;--mimir-space-xl: 24px;--mimir-space-1xl: 28px;--mimir-space-2xl: 32px;--mimir-space-2xxl: 36px;--mimir-space-xxl: 40px;--mimir-space-3xl: 44px;--mimir-space-4xl: 48px;--mimir-space-5xl: 56px;--mimir-space-4xxl: 64px;--mimir-space-5xxl: 72px;--mimir-space-6xl: 96px;--mimir-box-shadow-active: 0 0 2px var(--sapphire-normal);--mimir-box-shadow-focus: 0px 0px 10px 2px #1389cc;--mimir-box-shadow-default: 0 0 4px 0 #1389cc;--mimir-box-shadow-select-search: 0 3px 15px 0 rgba(31, 32, 35, .15);--mimir-select-search-input-top-l: -15%;--mimir-select-search-input-top-xxl: -35%;--mimir-container-width-xs: 375px;--mimir-container-width-s: 767px;--mimir-container-width-m: 960px;--mimir-container-width-l: 1280px;--mimir-container-width-xl: 1440px;--mimir-container-width-xxl: 1920px;--mimir-zindex-dropdown: 1000;--mimir-zindex-sticky: 1020;--mimir-zindex-fixed: 1030;--mimir-zindex-modal-backdrop: 1040;--mimir-zindex-modal: 1050;--mimir-zindex-popover: 1060;--mimir-zindex-tooltip: 1070;--sidebar-width-collapsed: 64px;--sidebar-width-expanded: 256px;--sidebar-form-width-tablet: 369px;--sidebar-form-width-mobile: 309px;--header-height: 64px;--mimir-tab-trail-height-m: 58px;--mimir-tab-trail-height-s: 36px;--mimir-accordion-icon-circle-size-m: 48px;--mimir-accordion-icon-circle-size-s: 36px;--mimir-accordion-icon-square-size-m: 40px;--mimir-accordion-icon-square-size-s: 32px}@supports (font-variation-settings: normal){:root{font-family:Inter,sans-serif}}:root{font-feature-settings:"zero";font-variant-numeric:slashed-zero}body{font-family:Inter,sans-serif;font-feature-settings:"zero";font-variant-numeric:slashed-zero;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
1
|
+
@font-face{font-weight:400;font-family:Montserrat;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Regular.woff2) format("woff2"),url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Regular.woff) format("woff")}@font-face{font-weight:700;font-family:Montserrat;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Bold.woff2) format("woff2"),url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Bold.woff) format("woff")}@font-face{font-weight:300;font-family:Montserrat;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Light.woff2) format("woff2"),url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Light.woff) format("woff")}@font-face{font-weight:500;font-family:Montserrat;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Medium.woff2) format("woff2"),url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-Medium.woff) format("woff")}@font-face{font-weight:600;font-family:Montserrat;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-SemiBold.woff2) format("woff2"),url(https://cdn.autogpbl.ru/fonts/montserrat/Montserrat-SemiBold.woff) format("woff")}@font-face{font-weight:400;font-family:Inter;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/inter/Inter-Regular.woff2) format("woff2");font-variant-numeric:slashed-zero}@font-face{font-weight:700;font-family:Inter;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/inter/Inter-Bold.woff2) format("woff2");font-variant-numeric:slashed-zero}@font-face{font-weight:500;font-family:Inter;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/inter/Inter-Medium.woff2) format("woff2");font-variant-numeric:slashed-zero}@font-face{font-weight:600;font-family:Inter;font-style:normal;src:url(https://cdn.autogpbl.ru/fonts/inter/Inter-SemiBold.woff2) format("woff2");font-variant-numeric:slashed-zero}@supports (font-variation-settings: normal){:root{font-family:InterVariable,sans-serif}}:root{font-feature-settings:"zero"}*{margin:0;padding:0;border:0;outline:none}*,:after,:before{box-sizing:border-box}:active,:focus{outline:0}a,a:visited,a:hover{-webkit-text-decoration:none;text-decoration:none}a:active,a:focus{outline:0}button,input,textarea,select{font-family:inherit}input::-ms-clear{display:none}button{background-color:transparent;cursor:pointer}button::-moz-focus-inner{padding:0;border:0}ul li{list-style:none}img{vertical-align:top}h1,h2,h3,h4,h5,h6{font-weight:inherit;font-size:inherit}input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus,input:-webkit-autofill:active{-webkit-background-clip:text;background-clip:text;-webkit-transition:background-color 5000s ease-in-out 0s;transition:background-color 5000s ease-in-out 0s}:root{--sapphire-100: #2355d7;--sapphire-90: #3564df;--sapphire-80: #4b75e2;--sapphire-70: #6186e6;--sapphire-60: #7797e9;--sapphire-50: #8da7ed;--sapphire-40: #9fb7f4;--sapphire-30: #b9caf4;--sapphire-20: #cfdaf7;--sapphire-10: #e5ebfb;--citrine-100: #ff7900;--citrine-90: #ff861a;--citrine-80: #ff9433;--citrine-70: #ffa14d;--citrine-60: #ffaf66;--citrine-50: #ffbc80;--citrine-40: #ffc999;--citrine-30: #ffd7b2;--citrine-20: #ffe4cc;--citrine-10: #fff2e5;--magenta-100: #bc2251;--magenta-90: #d8275d;--magenta-80: #dc3d6d;--magenta-70: #e15781;--magenta-60: #e46c91;--magenta-50: #e986a4;--magenta-40: #ed9cb4;--magenta-30: #f2b6c8;--magenta-20: #f6cbd8;--magenta-10: #fae5ec;--purple-normal: #8a2be2;--purple-bg-active: #fae1fa;--black-100: #000;--black-95: #0d0d0d;--black-90: #1a1a1a;--black-85: #262626;--black-80: #333;--black-75: #404040;--black-70: #4d4d4d;--black-65: #595959;--black-60: #666;--black-55: #737373;--black-50: #808080;--black-45: #8c8c8c;--black-40: #999;--black-35: #a6a6a6;--black-30: #b3b3b3;--black-25: #bfbfbf;--black-20: #ccc;--black-15: #d9d9d9;--black-10: #e6e6e6;--black-5: #f2f2f2;--white: #fff;--dark-blue: #0a38af;--blue-40: #a7bbef;--blue-20: #d3ddf7;--green: #1b770c;--red-tag: #f01406;--success-normal: #23b413;--success-bg-hover: #d5fbe2;--success-bg-active: #ebfdf1;--alarm-normal: #fdc023;--alarm-bg-hover: #fff0c7;--alarm-bg-active: #fff6de;--error-normal: #e64646;--error-bg-hover: #fadbdb;--error-bg-active: #fbe3e3;--disabled: #b3b3b3;--disabled-color: #b2b2b2;--light-text: var(--white);--dark-text: var(--black-100);--sapphire-normal: var(--sapphire-100);--sapphire-hover: #1b41a3;--sapphire-active: #122c70;--citrine-normal: var(--citrine-100);--citrine-hover: #e56d00;--citrine-active: #cc6100;--asphalt-border: var(--black-30);--asphalt-normal: var(--black-80);--asphalt-hover: var(--black-90);--asphalt-active: var(--black-100);--gray-normal: var(--black-5);--gray-hover: var(--black-10);--gray-active: var(--black-80);--white-normal: var(--white);--white-hover: var(--black-5);--white-transparent: rgba(255, 255, 255, .4);--white-active: var(--black-80);--red-normal: var(--error-normal);--red-hover: #e33030;--red-active: #dc1e1e;--green-normal: var(--green);--green-hover: #16610a;--green-active: #114a08;--counter-text: #ffa066;--gos-znak-traffic-background-color: #fede0c;--gos-znak-military-background-color: var(--black-80);--gos-znak-police-background-color: #4478ff;--gos-znak-diplomatic-background-color: #e64646;--gos-znak-diplomatic-country-color: #f5b7b7;--button-height-ms: 16px;--button-height-xs: 24px;--button-height-s: 32px;--button-height-m: 40px;--button-height-l: 48px;--button-height-xl: 56px;--button-height-xxl: 64px;--mimir-select-search-height-s: 40px;--mimir-select-search-height-l: 48px;--mimir-select-search-height-xxl: 64px;--mimir-select-search-options-height-desktop: 320px;--mimir-select-search-options-height-mobile: 264px;--mimir-control-default: var(--sapphire-20);--mimir-control-hover: var(--sapphire-40);--mimir-control-selected: var(--sapphire-100);--mimir-control-disabled: var(--black-10);--mimir-font-inter: "Inter", sans-serif;--mimir-font-montserrat: "Montserrat", sans-serif;--mimir-font-weight-text-regular: 400;--mimir-font-weight-text-medium: 500;--mimir-font-weight-text-semibold: 600;--mimir-font-weight-text-bold: 700;--mimir-font-weight-text-extrabold: 800;--mimir-font-weight-text-black: 900;--mimir-size-text-xs2: 8px;--mimir-size-text-xs: 10px;--mimir-size-text-s: 12px;--mimir-size-text-m: 14px;--mimir-size-text-l: 16px;--mimir-size-text-l2: 18px;--mimir-size-text-xl: 20px;--mimir-size-text-xl2: 24px;--mimir-size-text-3xl: 26px;--mimir-size-text-2xl: 28px;--mimir-size-text-xl3: 32px;--mimir-size-text-xl4: 48px;--mimir-size-text-4xl: 52px;--mimir-size-text-5xl: 56px;--mimir-size-text-xl5: 72px;--mimir-size-text-xl6: 96px;--mimir-line-height-text-2xs: 1em;--mimir-line-height-text-xxs: 1.125em;--mimir-line-height-text-xs: 1.1em;--mimir-line-height-text-xss: 1.12em;--mimir-line-height-text-xss1: 1.17em;--mimir-line-height-text-s: 1.2em;--mimir-line-height-text-s1: 1.25em;--mimir-line-height-text-m: 1.3em;--mimir-line-height-text-m1: 1.35em;--mimir-line-height-text-l: 1.4em;--mimir-line-height-text-l1: 1.45em;--mimir-line-height-text-xl: 1.5em;--mimir-line-height-text-xl1: 1.5em;--mimir-control-radius-xs2: 2px;--mimir-control-radius-xs: 4px;--mimir-control-radius-xs1: 5px;--mimir-control-radius: 6px;--mimir-control-radius-s: 8px;--mimir-control-radius-m-s: 16px;--mimir-control-radius-m: 20px;--mimir-control-radius-l: 24px;--mimir-control-radius-xl: 32px;--mimir-control-radius-xxl: 40px;--mimir-control-input-radius: 12px;--mimir-control-border-width: 1px;--mimir-control-space-xs: var(--mimir-space-s);--mimir-control-space-l: var(--mimir-space-xl);--mimir-control-space-xxl: var(--mimir-space-xl);--mimir-control-text-size-2xl: var(--mimir-size-text-xl);--mimir-control-text-size-xl: var(--mimir-size-text-xl3);--mimir-control-text-size-l: var(--mimir-size-text-l);--mimir-control-text-size-m: var(--mimir-size-text-m);--mimir-control-text-size-s: var(--mimir-size-text-s);--mimir-control-text-size-xs: var(--mimir-size-text-xs);--mimir-space-3xs: 2px;--mimir-space-2xs: 4px;--mimir-space-1xs: 6px;--mimir-space-xs: 8px;--mimir-space-xss: 10px;--mimir-space-s: 12px;--mimir-space-2s: 14px;--mimir-space-m: 16px;--mimir-space-2m: 18px;--mimir-space-l: 20px;--mimir-space-2l: 22px;--mimir-space-xl: 24px;--mimir-space-1xl: 28px;--mimir-space-2xl: 32px;--mimir-space-2xxl: 36px;--mimir-space-xxl: 40px;--mimir-space-3xl: 44px;--mimir-space-4xl: 48px;--mimir-space-5xl: 56px;--mimir-space-4xxl: 64px;--mimir-space-5xxl: 72px;--mimir-space-6xl: 96px;--mimir-box-shadow-active: 0 0 2px var(--sapphire-normal);--mimir-box-shadow-focus: 0px 0px 10px 2px #1389cc;--mimir-box-shadow-default: 0 0 4px 0 #1389cc;--mimir-box-shadow-select-search: 0 3px 15px 0 rgba(31, 32, 35, .15);--mimir-select-search-input-top-l: -15%;--mimir-select-search-input-top-xxl: -35%;--mimir-container-width-xs: 375px;--mimir-container-width-s: 767px;--mimir-container-width-m: 960px;--mimir-container-width-l: 1280px;--mimir-container-width-xl: 1440px;--mimir-container-width-xxl: 1920px;--mimir-zindex-dropdown: 1000;--mimir-zindex-sticky: 1020;--mimir-zindex-fixed: 1030;--mimir-zindex-modal-backdrop: 1040;--mimir-zindex-modal: 1050;--mimir-zindex-popover: 1060;--mimir-zindex-tooltip: 1070;--mimir-zindex-toasts-list: 2147483647;--sidebar-width-collapsed: 64px;--sidebar-width-expanded: 256px;--sidebar-form-width-tablet: 369px;--sidebar-form-width-mobile: 309px;--header-height: 64px;--mimir-tab-trail-height-m: 58px;--mimir-tab-trail-height-s: 36px;--mimir-accordion-icon-circle-size-m: 48px;--mimir-accordion-icon-circle-size-s: 36px;--mimir-accordion-icon-square-size-m: 40px;--mimir-accordion-icon-square-size-s: 32px}@supports (font-variation-settings: normal){:root{font-family:Inter,sans-serif}}:root{font-feature-settings:"zero";font-variant-numeric:slashed-zero}body{font-family:Inter,sans-serif;font-feature-settings:"zero";font-variant-numeric:slashed-zero;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
@@ -70,6 +70,10 @@ type TProps = {
|
|
70
70
|
* Дополнительный класс для footer.
|
71
71
|
*/
|
72
72
|
classNameFooter?: string;
|
73
|
+
/**
|
74
|
+
* Дополнительный класс для drawerContainer.
|
75
|
+
*/
|
76
|
+
classNameDrawerContainer?: string;
|
73
77
|
/**
|
74
78
|
* Флаг, определяющий, закрывать ли Drawer при клике вне его области
|
75
79
|
*/
|
@@ -1,41 +1,42 @@
|
|
1
|
-
import { jsxs as l,
|
2
|
-
import { c as
|
3
|
-
import { forwardRef as ne, useState as
|
1
|
+
import { jsxs as l, jsx as o } from "react/jsx-runtime";
|
2
|
+
import { c as t } from "../../index-DIxK0V-G.js";
|
3
|
+
import { forwardRef as ne, useState as b, useRef as L, useEffect as M, useCallback as p } from "react";
|
4
4
|
import { EDrawerPosition as R } from "./constants.js";
|
5
5
|
import { useContainer as re } from "./hooks.js";
|
6
6
|
import { ScrollWrapper as se } from "./ScrollWrapper/index.js";
|
7
7
|
import { useMediaQuery as ie } from "../../hooks/useMediaQuery/useMediaQuery.js";
|
8
|
-
import { EMediaQuery as
|
8
|
+
import { EMediaQuery as ae } from "../../hooks/useMediaQuery/constants.js";
|
9
9
|
import { useLockBodyScroll as le } from "../../hooks/useLockBodyScroll/useLockBodyScroll.js";
|
10
|
-
import { useResizeObserver as
|
10
|
+
import { useResizeObserver as ce } from "../../hooks/useResizeObserver/useResizeObserver.js";
|
11
11
|
import { Button as H } from "../Button/Button.js";
|
12
|
-
import { EButtonVariantDefault as de, EButtonSize as
|
12
|
+
import { EButtonVariantDefault as de, EButtonSize as c } from "../Button/constants.js";
|
13
13
|
import { Loader as ue } from "../Loader/Loader.js";
|
14
14
|
import { Portal as me } from "../Portal/Portal.js";
|
15
|
-
import { EScrollBarVariant as fe, EScrollBarSize as
|
16
|
-
import '../../assets/Drawer.css';const
|
17
|
-
|
15
|
+
import { EScrollBarVariant as fe, EScrollBarSize as _e } from "../ScrollBar/constants.js";
|
16
|
+
import '../../assets/Drawer.css';const ye = "_drawerContainer_yzb8n_2", he = "_drawer_yzb8n_2", be = "_content_yzb8n_31", pe = "_header_yzb8n_46", ze = "_title_yzb8n_60", Ce = "_space_yzb8n_74", ge = "_inner_yzb8n_85", we = "_button_yzb8n_101", ve = "_footer_yzb8n_106", Ne = "_left_yzb8n_122", ke = "_right_yzb8n_126", Se = "_full_yzb8n_130", Be = "_bottom_yzb8n_140", Ee = "_opened_yzb8n_157", Ie = "_overlay_yzb8n_213", Oe = "_unmount_yzb8n_229", e = {
|
17
|
+
drawerContainer: ye,
|
18
|
+
drawer: he,
|
18
19
|
content: be,
|
19
20
|
header: pe,
|
20
|
-
"sticky-header": "_sticky-
|
21
|
-
title:
|
22
|
-
space:
|
23
|
-
inner:
|
24
|
-
"is-loading": "_is-
|
25
|
-
button:
|
26
|
-
footer:
|
27
|
-
"has-scroll": "_has-
|
28
|
-
"footer-button": "_footer-
|
21
|
+
"sticky-header": "_sticky-header_yzb8n_54",
|
22
|
+
title: ze,
|
23
|
+
space: Ce,
|
24
|
+
inner: ge,
|
25
|
+
"is-loading": "_is-loading_yzb8n_90",
|
26
|
+
button: we,
|
27
|
+
footer: ve,
|
28
|
+
"has-scroll": "_has-scroll_yzb8n_115",
|
29
|
+
"footer-button": "_footer-button_yzb8n_118",
|
29
30
|
left: Ne,
|
30
31
|
right: ke,
|
31
32
|
full: Se,
|
32
33
|
bottom: Be,
|
33
|
-
"full-bottom-height": "_full-bottom-
|
34
|
+
"full-bottom-height": "_full-bottom-height_yzb8n_151",
|
34
35
|
opened: Ee,
|
35
|
-
"is-closing": "_is-
|
36
|
-
overlay:
|
37
|
-
unmount:
|
38
|
-
},
|
36
|
+
"is-closing": "_is-closing_yzb8n_176",
|
37
|
+
overlay: Ie,
|
38
|
+
unmount: Oe
|
39
|
+
}, Le = 300, Me = (d) => d ? {
|
39
40
|
drawer: {
|
40
41
|
position: "absolute",
|
41
42
|
zIndex: 100
|
@@ -44,7 +45,7 @@ import '../../assets/Drawer.css';const _e = "_drawer_1cohb_2", be = "_content_1c
|
|
44
45
|
position: "absolute",
|
45
46
|
zIndex: 90
|
46
47
|
}
|
47
|
-
} : {},
|
48
|
+
} : {}, qe = ne(
|
48
49
|
(d, T) => {
|
49
50
|
const {
|
50
51
|
as: x = "div",
|
@@ -52,35 +53,36 @@ import '../../assets/Drawer.css';const _e = "_drawer_1cohb_2", be = "_content_1c
|
|
52
53
|
onClose: u,
|
53
54
|
title: D,
|
54
55
|
className: A,
|
55
|
-
unmount:
|
56
|
+
unmount: z = !0,
|
56
57
|
isLoading: s = !1,
|
57
58
|
stickyHeader: P,
|
58
59
|
fullBottomHeight: X = !1,
|
59
60
|
position: m = R.RIGHT,
|
60
61
|
paddingRight: j = 8,
|
61
62
|
footer: f,
|
62
|
-
children:
|
63
|
-
classNameTitle:
|
64
|
-
classNameHeader:
|
65
|
-
classNameInner:
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
63
|
+
children: G,
|
64
|
+
classNameTitle: Q,
|
65
|
+
classNameHeader: V,
|
66
|
+
classNameInner: W,
|
67
|
+
classNameDrawerContainer: F,
|
68
|
+
classNameContent: K,
|
69
|
+
classNameFooter: Y,
|
70
|
+
closeOnClickOutside: C = !0,
|
71
|
+
showCloseButton: g = !0,
|
72
|
+
getContainer: _,
|
73
|
+
...q
|
74
|
+
} = d, [w, v] = b(!1), [J, N] = b(!1), k = L(), y = ie(ae.XS1), { ref: U } = ce({
|
73
75
|
enabled: m === R.BOTTOM
|
74
|
-
}),
|
76
|
+
}), S = re(_), i = L(null), [Z, $] = b(!1);
|
75
77
|
M(() => {
|
76
|
-
const
|
78
|
+
const a = () => {
|
77
79
|
if (i.current) {
|
78
|
-
const { scrollHeight:
|
79
|
-
|
80
|
+
const { scrollHeight: oe, clientHeight: te } = i.current;
|
81
|
+
$(oe > te);
|
80
82
|
}
|
81
83
|
};
|
82
|
-
|
83
|
-
const O = new ResizeObserver(
|
84
|
+
a();
|
85
|
+
const O = new ResizeObserver(a);
|
84
86
|
return i.current && O.observe(i.current), () => {
|
85
87
|
O.disconnect();
|
86
88
|
};
|
@@ -88,135 +90,141 @@ import '../../assets/Drawer.css';const _e = "_drawer_1cohb_2", be = "_content_1c
|
|
88
90
|
on: r && !w,
|
89
91
|
paddingRight: j
|
90
92
|
});
|
91
|
-
const
|
92
|
-
u && (
|
93
|
-
u(),
|
94
|
-
},
|
95
|
-
}, [u]),
|
96
|
-
|
97
|
-
}, [
|
98
|
-
(
|
99
|
-
|
93
|
+
const n = p(() => {
|
94
|
+
u && (v(!0), k.current = setTimeout(() => {
|
95
|
+
u(), v(!1);
|
96
|
+
}, Le));
|
97
|
+
}, [u]), ee = p(() => {
|
98
|
+
C && n();
|
99
|
+
}, [C, n]), h = p(
|
100
|
+
(a) => {
|
101
|
+
a.key === "Escape" && n();
|
100
102
|
},
|
101
|
-
[
|
103
|
+
[n]
|
102
104
|
);
|
103
|
-
M(() => (r && (
|
104
|
-
|
105
|
-
}), [r,
|
106
|
-
const
|
107
|
-
[e.opened]:
|
105
|
+
M(() => (r && (N(!0), window.addEventListener("keydown", h)), () => {
|
106
|
+
N(!1), clearTimeout(k.current), window.removeEventListener("keydown", h);
|
107
|
+
}), [r, h]);
|
108
|
+
const B = {
|
109
|
+
[e.opened]: J,
|
108
110
|
[e["is-closing"]]: w,
|
109
111
|
[e["full-bottom-height"]]: X,
|
110
112
|
[e["is-loading"]]: s
|
111
113
|
};
|
112
|
-
if (!r &&
|
114
|
+
if (!r && z)
|
113
115
|
return null;
|
114
|
-
const
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
W,
|
132
|
-
e[m],
|
116
|
+
const E = Me(_ !== void 0 && _ !== !1), I = /* @__PURE__ */ l(
|
117
|
+
"div",
|
118
|
+
{
|
119
|
+
className: t(e.drawerContainer, F),
|
120
|
+
children: [
|
121
|
+
/* @__PURE__ */ l(
|
122
|
+
x,
|
123
|
+
{
|
124
|
+
ref: T,
|
125
|
+
"aria-hidden": !r,
|
126
|
+
role: "dialog",
|
127
|
+
style: E.drawer,
|
128
|
+
className: t(e.drawer, e[m], B, A),
|
129
|
+
...q,
|
130
|
+
children: [
|
131
|
+
/* @__PURE__ */ l(
|
132
|
+
"section",
|
133
133
|
{
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
/* @__PURE__ */ o("div", { className: e.space, children: C && /* @__PURE__ */ o(
|
147
|
-
H,
|
148
|
-
{
|
149
|
-
variant: de.SecondaryWhite,
|
150
|
-
isIconButton: !0,
|
151
|
-
size: _ ? a.S : a.M,
|
152
|
-
iconName: "Close16px",
|
153
|
-
onClick: t,
|
154
|
-
className: e.button
|
155
|
-
}
|
156
|
-
) })
|
157
|
-
]
|
158
|
-
}
|
159
|
-
),
|
160
|
-
/* @__PURE__ */ o(
|
161
|
-
se,
|
162
|
-
{
|
163
|
-
ref: i,
|
164
|
-
className: n(
|
165
|
-
e.inner,
|
134
|
+
ref: U,
|
135
|
+
className: t(
|
136
|
+
e.content,
|
137
|
+
K,
|
138
|
+
e[m],
|
139
|
+
{
|
140
|
+
[e["is-loading"]]: !!s
|
141
|
+
}
|
142
|
+
),
|
143
|
+
children: [
|
144
|
+
/* @__PURE__ */ l(
|
145
|
+
"header",
|
166
146
|
{
|
167
|
-
|
168
|
-
|
169
|
-
|
147
|
+
className: t(e.header, V, {
|
148
|
+
[e["sticky-header"]]: P
|
149
|
+
}),
|
150
|
+
children: [
|
151
|
+
/* @__PURE__ */ o("h2", { className: t(e.title, Q), children: D }),
|
152
|
+
/* @__PURE__ */ o("div", { className: e.space, children: g && /* @__PURE__ */ o(
|
153
|
+
H,
|
154
|
+
{
|
155
|
+
variant: de.SecondaryWhite,
|
156
|
+
isIconButton: !0,
|
157
|
+
size: y ? c.S : c.M,
|
158
|
+
iconName: "Close16px",
|
159
|
+
onClick: n,
|
160
|
+
className: e.button
|
161
|
+
}
|
162
|
+
) })
|
163
|
+
]
|
164
|
+
}
|
170
165
|
),
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
166
|
+
/* @__PURE__ */ o(
|
167
|
+
se,
|
168
|
+
{
|
169
|
+
ref: i,
|
170
|
+
className: t(
|
171
|
+
e.inner,
|
172
|
+
{
|
173
|
+
[e["is-loading"]]: !!s
|
174
|
+
},
|
175
|
+
W
|
176
|
+
),
|
177
|
+
variant: fe.LIGHT,
|
178
|
+
size: _e.M,
|
179
|
+
children: s ? /* @__PURE__ */ o(ue, {}) : G
|
180
|
+
}
|
181
|
+
)
|
182
|
+
]
|
183
|
+
}
|
184
|
+
),
|
185
|
+
/* @__PURE__ */ o(
|
186
|
+
"footer",
|
187
187
|
{
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
188
|
+
className: t(e.footer, Y, {
|
189
|
+
[e["has-scroll"]]: Z
|
190
|
+
}),
|
191
|
+
children: typeof f == "function" ? f({ handleClose: n }) : f || g && /* @__PURE__ */ o(
|
192
|
+
H,
|
193
|
+
{
|
194
|
+
size: y ? c.L : c.XXL,
|
195
|
+
full: y,
|
196
|
+
onClick: n,
|
197
|
+
className: e["footer-button"],
|
198
|
+
children: "Закрыть"
|
199
|
+
}
|
200
|
+
)
|
193
201
|
}
|
194
202
|
)
|
195
|
-
|
196
|
-
|
197
|
-
]
|
198
|
-
}
|
199
|
-
),
|
200
|
-
/* @__PURE__ */ o(
|
201
|
-
"div",
|
202
|
-
{
|
203
|
-
className: n(
|
204
|
-
e.overlay,
|
205
|
-
{
|
206
|
-
[e.unmount]: !y
|
207
|
-
},
|
208
|
-
E
|
203
|
+
]
|
204
|
+
}
|
209
205
|
),
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
206
|
+
/* @__PURE__ */ o(
|
207
|
+
"div",
|
208
|
+
{
|
209
|
+
className: t(
|
210
|
+
e.overlay,
|
211
|
+
{
|
212
|
+
[e.unmount]: !z
|
213
|
+
},
|
214
|
+
B
|
215
|
+
),
|
216
|
+
style: E.overlay,
|
217
|
+
"data-testid": "drawer-overlay",
|
218
|
+
onClick: ee
|
219
|
+
}
|
220
|
+
)
|
221
|
+
]
|
222
|
+
}
|
223
|
+
);
|
224
|
+
return S === !1 ? I : /* @__PURE__ */ o(me, { element: S, children: I });
|
217
225
|
}
|
218
226
|
);
|
219
227
|
export {
|
220
|
-
|
221
|
-
|
228
|
+
Le as ANIMATION_DELAY,
|
229
|
+
qe as Drawer
|
222
230
|
};
|
@@ -2,7 +2,7 @@ import { jsxs as a, jsx as r } from "react/jsx-runtime";
|
|
2
2
|
import { c as P } from "../../index-DIxK0V-G.js";
|
3
3
|
import { memo as L, useRef as _, useState as B } from "react";
|
4
4
|
import { ANIMATION_VARIABLES_MAP as D, EToastPosition as S, EToastVariant as w, DEFAULT_TOAST_DURATION as O } from "./constants.js";
|
5
|
-
import { c as s, P as T } from "../../ProgressBar-
|
5
|
+
import { c as s, P as T } from "../../ProgressBar-F970LqqJ.js";
|
6
6
|
import { useTimer as U } from "../../hooks/useTimer/index.js";
|
7
7
|
import { Button as j } from "../Button/Button.js";
|
8
8
|
const g = L(
|
@@ -1,41 +1,42 @@
|
|
1
|
-
import { jsx as
|
1
|
+
import { jsx as i } from "react/jsx-runtime";
|
2
2
|
import { c as a } from "../../index-DIxK0V-G.js";
|
3
3
|
import { memo as e, useRef as f, useCallback as T, useEffect as u } from "react";
|
4
|
-
import { EToastPosition as
|
5
|
-
import { c as l } from "../../ProgressBar-
|
4
|
+
import { EToastPosition as c } from "./constants.js";
|
5
|
+
import { c as l } from "../../ProgressBar-F970LqqJ.js";
|
6
6
|
import { Toast as d } from "./Toast.js";
|
7
|
-
|
8
|
-
|
9
|
-
|
7
|
+
import { Portal as p } from "../Portal/Portal.js";
|
8
|
+
const x = e(
|
9
|
+
({ toasts: s, position: r = c.TOP_RIGHT, onToastRemove: n }) => {
|
10
|
+
const t = f(null), m = T(
|
10
11
|
(o) => {
|
11
12
|
[
|
12
|
-
|
13
|
-
|
14
|
-
].includes(
|
13
|
+
c.TOP_LEFT,
|
14
|
+
c.TOP_RIGHT
|
15
|
+
].includes(r) ? o == null || o.scrollTo(0, o.scrollHeight) : o == null || o.scrollTo(0, 0);
|
15
16
|
},
|
16
|
-
[
|
17
|
+
[r]
|
17
18
|
);
|
18
19
|
return u(() => {
|
19
|
-
t.current &&
|
20
|
-
}, [
|
20
|
+
t.current && m(t.current);
|
21
|
+
}, [m, s]), s.length ? /* @__PURE__ */ i(p, { children: /* @__PURE__ */ i(
|
21
22
|
"div",
|
22
23
|
{
|
23
24
|
ref: t,
|
24
|
-
className: a(l["toast-list"], l[
|
25
|
+
className: a(l["toast-list"], l[r]),
|
25
26
|
"data-testid": "toast-list",
|
26
|
-
children:
|
27
|
+
children: s.map((o) => /* @__PURE__ */ i(
|
27
28
|
d,
|
28
29
|
{
|
29
|
-
position:
|
30
|
+
position: r,
|
30
31
|
onToastRemove: n,
|
31
32
|
...o
|
32
33
|
},
|
33
34
|
o.id
|
34
35
|
))
|
35
36
|
}
|
36
|
-
) : null;
|
37
|
+
) }) : null;
|
37
38
|
}
|
38
39
|
);
|
39
40
|
export {
|
40
|
-
|
41
|
+
x as ToastList
|
41
42
|
};
|
@@ -3,7 +3,7 @@ import { useReducer as u, useCallback as m, useMemo as E } from "react";
|
|
3
3
|
import { EToastVariant as o } from "./constants.js";
|
4
4
|
import { ToastContext as l } from "./hooks.js";
|
5
5
|
import { reducer as L, initialState as A, actionCreators as c } from "./store.js";
|
6
|
-
import { c as C } from "../../ProgressBar-
|
6
|
+
import { c as C } from "../../ProgressBar-F970LqqJ.js";
|
7
7
|
import { ToastList as S } from "./ToastList.js";
|
8
8
|
const F = ({ children: d }) => {
|
9
9
|
const [i, r] = u(L, A), a = m((t) => {
|
package/package.json
CHANGED
@@ -1,68 +0,0 @@
|
|
1
|
-
import { jsx as m } from "react/jsx-runtime";
|
2
|
-
import { c as u } from "./index-DIxK0V-G.js";
|
3
|
-
import { memo as x, useRef as e, useEffect as y } from "react";
|
4
|
-
import { DEFAULT_TOAST_DURATION as f, EToastVariant as g } from "./components/Toasts/constants.js";
|
5
|
-
import './assets/ProgressBar.css';const b = "_title_1xi9y_37", d = "_timer_1xi9y_41", A = "_seconds_1xi9y_51", T = "_message_1xi9y_61", h = "_progress_1xi9y_69", w = "_slot_1xi9y_95", D = "_success_1xi9y_104", F = "_alarm_1xi9y_109", R = "_error_1xi9y_114", E = "_purple_1xi9y_119", o = {
|
6
|
-
"toast-list": "_toast-list_1xi9y_2",
|
7
|
-
"toast-wrapper": "_toast-wrapper_1xi9y_24",
|
8
|
-
title: b,
|
9
|
-
timer: d,
|
10
|
-
"timer-title": "_timer-title_1xi9y_49",
|
11
|
-
seconds: A,
|
12
|
-
message: T,
|
13
|
-
progress: h,
|
14
|
-
"progress-bar": "_progress-bar_1xi9y_78",
|
15
|
-
"close-button": "_close-button_1xi9y_89",
|
16
|
-
slot: w,
|
17
|
-
default: "_default_1xi9y_99",
|
18
|
-
success: D,
|
19
|
-
alarm: F,
|
20
|
-
error: R,
|
21
|
-
purple: E,
|
22
|
-
"top-right": "_top-right_1xi9y_124",
|
23
|
-
"top-center": "_top-center_1xi9y_130",
|
24
|
-
"top-left": "_top-left_1xi9y_136",
|
25
|
-
"bottom-left": "_bottom-left_1xi9y_141",
|
26
|
-
"bottom-center": "_bottom-center_1xi9y_146",
|
27
|
-
"bottom-right": "_bottom-right_1xi9y_152",
|
28
|
-
"toast-in": "_toast-in_1xi9y_184",
|
29
|
-
"toast-out": "_toast-out_1xi9y_188"
|
30
|
-
}, L = x(
|
31
|
-
({
|
32
|
-
duration: _ = f,
|
33
|
-
variant: l = g.DEFAULT,
|
34
|
-
isPaused: i = !1
|
35
|
-
}) => {
|
36
|
-
const t = e(), r = e(null), n = e(Date.now()), s = e(0);
|
37
|
-
return y(() => {
|
38
|
-
if (i)
|
39
|
-
t.current && cancelAnimationFrame(t.current);
|
40
|
-
else {
|
41
|
-
n.current = Date.now() - s.current;
|
42
|
-
const c = () => {
|
43
|
-
const p = Date.now();
|
44
|
-
s.current = p - n.current;
|
45
|
-
const a = Math.min(
|
46
|
-
s.current / _ * 100,
|
47
|
-
100
|
48
|
-
);
|
49
|
-
r.current && (r.current.style.width = `${a}%`), a < 100 && (t.current = requestAnimationFrame(c));
|
50
|
-
};
|
51
|
-
t.current = requestAnimationFrame(c);
|
52
|
-
}
|
53
|
-
return () => {
|
54
|
-
t.current && cancelAnimationFrame(t.current);
|
55
|
-
};
|
56
|
-
}, [_, i]), /* @__PURE__ */ m("div", { className: o.progress, "data-testid": "progress-bar", children: /* @__PURE__ */ m(
|
57
|
-
"div",
|
58
|
-
{
|
59
|
-
ref: r,
|
60
|
-
className: u(o["progress-bar"], o[l])
|
61
|
-
}
|
62
|
-
) });
|
63
|
-
}
|
64
|
-
);
|
65
|
-
export {
|
66
|
-
L as P,
|
67
|
-
o as c
|
68
|
-
};
|