triafly-ui-kit 1.0.25 → 1.0.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/README.md +93 -93
- package/dist/_virtual/dayjs.min.js +7 -0
- package/dist/_virtual/dayjs.min2.js +4 -0
- package/dist/_virtual/ru.js +2 -0
- package/dist/_virtual/ru2.js +4 -0
- package/dist/assets/src/components/Ui/DateRangePicker/DateRangePicker.css +1 -0
- package/dist/assets/src/components/Ui/Tooltip/Tooltip.stories.module.css +1 -1
- package/dist/components/Ui/DatePicker/DatePicker.js +6 -13
- package/dist/components/Ui/DatePicker/DatePicker.stories.js +33 -39
- package/dist/components/Ui/DatePicker/index.js +4 -0
- package/dist/components/Ui/DateRangePicker/DateRangePicker.js +195 -0
- package/dist/components/Ui/DateRangePicker/DateRangePicker.stories.js +84 -0
- package/dist/components/Ui/DateRangePicker/const.js +37 -0
- package/dist/components/Ui/DateRangePicker/hooks/useCalendarRenderer.js +48 -0
- package/dist/components/Ui/DateRangePicker/hooks/useChangeDate.js +28 -0
- package/dist/components/Ui/DateRangePicker/hooks/useDateNavigation.js +22 -0
- package/dist/components/Ui/DateRangePicker/hooks/useDateRangeState.js +24 -0
- package/dist/components/Ui/DateRangePicker/hooks/useQuickRange.js +77 -0
- package/dist/components/Ui/DateRangePicker/index.js +4 -0
- package/dist/main.d.ts +33 -0
- package/dist/main.js +157 -153
- package/dist/node_modules/dayjs/dayjs.min.js +282 -0
- package/dist/node_modules/dayjs/locale/ru.js +36 -0
- package/dist/src/components/Ui/Tooltip/Tooltip.stories.module.css.js +1 -1
- package/dist/styles/_mixins.scss +21 -21
- package/dist/styles/fix.scss +3 -3
- package/dist/styles/main.scss +26 -26
- package/dist/styles/reset.scss +105 -105
- package/dist/styles/typography.scss +102 -102
- package/dist/styles/variables.scss +273 -278
- package/package.json +111 -110
- package/src/styles/_mixins.scss +21 -21
- package/src/styles/fix.scss +3 -3
- package/src/styles/main.scss +26 -26
- package/src/styles/reset.scss +105 -105
- package/src/styles/typography.scss +102 -102
- package/src/styles/variables.scss +273 -278
package/dist/main.js
CHANGED
@@ -1,162 +1,166 @@
|
|
1
1
|
import { Accordeon as e } from "./components/Ui/Accordeon/Accordeon.js";
|
2
|
-
import { Alert as
|
3
|
-
import { Avatar as
|
2
|
+
import { Alert as t } from "./components/Ui/Alert/Alert.js";
|
3
|
+
import { Avatar as a } from "./components/Ui/Avatar/Avatar.js";
|
4
4
|
import { ModalWindow as p } from "./components/Ui/ModalWindow/ModalWindow.js";
|
5
5
|
import { Badge as f } from "./components/Ui/Badge/Badge.js";
|
6
|
-
import {
|
7
|
-
import {
|
8
|
-
import {
|
9
|
-
import {
|
6
|
+
import { DatePicker as x } from "./components/Ui/DatePicker/DatePicker.js";
|
7
|
+
import { DateRangePicker as u } from "./components/Ui/DateRangePicker/DateRangePicker.js";
|
8
|
+
import { Button as C } from "./components/Ui/Button/Button.js";
|
9
|
+
import { ButtonsArray as h } from "./components/Ui/ButtonsArray/ButtonsArray.js";
|
10
|
+
import { Checkbox as S } from "./components/Ui/Checkbox/Checkbox.js";
|
11
|
+
import { CliTextareaInput as k } from "./components/Ui/CliTextareaInput/CliTextareaInput.js";
|
10
12
|
import "react";
|
11
|
-
import { CustomLink as
|
12
|
-
import { DropdownInput as
|
13
|
-
import { DropdownMenu as
|
14
|
-
import { FileUpload as
|
15
|
-
import { Form as
|
16
|
-
import { useForm as
|
17
|
-
import { Loader as
|
18
|
-
import { Pagination as
|
19
|
-
import { Radio as
|
20
|
-
import { SearchInput as
|
21
|
-
import { Skeleton as
|
22
|
-
import { Switch as
|
23
|
-
import { Table as
|
24
|
-
import { TextInput as
|
25
|
-
import { TextareaInput as
|
26
|
-
import { Tooltip as
|
27
|
-
import { Tabs as
|
28
|
-
import { IconArrowBendUpRight as
|
29
|
-
import { ToastProvider as
|
30
|
-
import { TriaflyContext as
|
31
|
-
import { useBreakpointValueTriafly as
|
32
|
-
import { useThemeLogic as
|
33
|
-
import { useModalState as
|
13
|
+
import { CustomLink as D } from "./components/Ui/CustomLink/CustomLink.js";
|
14
|
+
import { DropdownInput as P } from "./components/Ui/DropdownInput/DropdownInput.js";
|
15
|
+
import { DropdownMenu as U } from "./components/Ui/DropdownMenu/DropdownMenu.js";
|
16
|
+
import { FileUpload as F } from "./components/Ui/FileUpload/FileUpload.js";
|
17
|
+
import { Form as R } from "./components/Ui/Form/FormRoot/FormRoot.js";
|
18
|
+
import { useForm as X } from "./components/Ui/Form/useForm/useForm.js";
|
19
|
+
import { Loader as H } from "./components/Ui/Loader/Loader.js";
|
20
|
+
import { Pagination as O } from "./components/Ui/Pagination/Pagination.js";
|
21
|
+
import { Radio as E } from "./components/Ui/Radio/Radio.js";
|
22
|
+
import { SearchInput as W } from "./components/Ui/SearchInput/SearchInput.js";
|
23
|
+
import { Skeleton as z } from "./components/Ui/Skeleton/Skeleton.js";
|
24
|
+
import { Switch as Y } from "./components/Ui/Switch/Switch.js";
|
25
|
+
import { Table as q } from "./components/Ui/Table/Table.js";
|
26
|
+
import { TextInput as Z } from "./components/Ui/TextInput/TextInput.js";
|
27
|
+
import { TextareaInput as $ } from "./components/Ui/TextareaInput/TextareaInput.js";
|
28
|
+
import { Tooltip as ro } from "./components/Ui/Tooltip/Tooltip.js";
|
29
|
+
import { Tabs as eo } from "./components/Ui/Tabs/Tabs.js";
|
30
|
+
import { IconArrowBendUpRight as to, IconArrowClockwise as Io, IconArrowDown as ao, IconArrowLeft as io, IconArrowLineDown as po, IconArrowLineLeft as lo, IconArrowLineRight as fo, IconArrowLineUp as mo, IconArrowRight as xo, IconArrowUp as so, IconArrowsOut as uo, IconArticle as Co, IconAt as wo, IconBellSimple as ho, IconBookOpenText as go, IconCalendarBlank as So, IconCaretDown as To, IconCaretLeft as ko, IconCaretRight as Ao, IconCaretUp as Do, IconCaretUpDown as Lo, IconChartPieSlice as Po, IconChatText as yo, IconCheck as Uo, IconCheckCircle as Bo, IconChecks as Fo, IconCircleNotch as Mo, IconCopy as Ro, IconCornersOut as vo, IconCsv as Xo, IconCube as bo, IconDatabase as Ho, IconDotsNine as No, IconDotsThreeVertical as Oo, IconExport as Qo, IconEye as Eo, IconEyeSlash as Go, IconFile as Wo, IconFiles as Vo, IconFloppyDisk as zo, IconFolderSimple as Jo, IconFolderSimpleX as Yo, IconFunnel as jo, IconGauge as qo, IconGear as Ko, IconGoogleDrive as Zo, IconHand as _o, IconHeadCircuit as $o, IconHouse as or, IconIcon as rr, IconInfo as nr, IconJoin as er, IconLanguage as cr, IconLink as tr, IconList as Ir, IconLock as ar, IconLockOpen as ir, IconMariaDB as pr, IconMinus as lr, IconMongoDB as fr, IconMoon as mr, IconMySQL as xr, IconNavigationArrow as sr, IconNotePencil as ur, IconPassword as dr, IconPen as Cr, IconPlay as wr, IconPlugsX as hr, IconPlus as gr, IconPorsgteSQL as Sr, IconPresentationChart as Tr, IconQuestion as kr, IconQuestionFullfilled as Ar, IconRedo as Dr, IconRoleX as Lr, IconSearch as Pr, IconSearchX as yr, IconSelection as Ur, IconServer as Br, IconSlidersHorizontal as Fr, IconSticker as Mr, IconSun as Rr, IconThreeDot as vr, IconTrash as Xr, IconTriangleDown as br, IconTriangleUp as Hr, IconUndo as Nr, IconUploadSimple as Or, IconUser as Qr, IconUserX as Er, IconWarningCircle as Gr, IconWrench as Wr, IconX as Vr, IconYandexDisk as zr } from "./components/Ui/Icons/Icons.js";
|
31
|
+
import { ToastProvider as Yr } from "./context/ToastContext/ToastContext.js";
|
32
|
+
import { TriaflyContext as qr, TriaflyProvider as Kr, useTriafly as Zr } from "./context/TriaflyContext/TriaflyProvider.js";
|
33
|
+
import { useBreakpointValueTriafly as $r } from "./context/TriaflyContext/hooks/useBreakpointValue/useBreakpointValue.js";
|
34
|
+
import { useThemeLogic as rn } from "./context/TriaflyContext/hooks/useTheme/useTheme.js";
|
35
|
+
import { useModalState as en } from "./context/TriaflyContext/hooks/useModal/useModal.js";
|
34
36
|
export {
|
35
37
|
e as Accordeon,
|
36
|
-
|
37
|
-
|
38
|
+
t as Alert,
|
39
|
+
a as Avatar,
|
38
40
|
f as Badge,
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
P as
|
47
|
-
U as
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
Lo as
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
41
|
+
C as Button,
|
42
|
+
h as ButtonsArray,
|
43
|
+
S as Checkbox,
|
44
|
+
k as CliTextareaInput,
|
45
|
+
D as CustomLink,
|
46
|
+
x as DatePicker,
|
47
|
+
u as DateRangePicker,
|
48
|
+
P as DropdownInput,
|
49
|
+
U as DropdownMenu,
|
50
|
+
F as FileUpload,
|
51
|
+
R as Form,
|
52
|
+
to as IconArrowBendUpRight,
|
53
|
+
Io as IconArrowClockwise,
|
54
|
+
ao as IconArrowDown,
|
55
|
+
io as IconArrowLeft,
|
56
|
+
po as IconArrowLineDown,
|
57
|
+
lo as IconArrowLineLeft,
|
58
|
+
fo as IconArrowLineRight,
|
59
|
+
mo as IconArrowLineUp,
|
60
|
+
xo as IconArrowRight,
|
61
|
+
so as IconArrowUp,
|
62
|
+
uo as IconArrowsOut,
|
63
|
+
Co as IconArticle,
|
64
|
+
wo as IconAt,
|
65
|
+
ho as IconBellSimple,
|
66
|
+
go as IconBookOpenText,
|
67
|
+
So as IconCalendarBlank,
|
68
|
+
To as IconCaretDown,
|
69
|
+
ko as IconCaretLeft,
|
70
|
+
Ao as IconCaretRight,
|
71
|
+
Do as IconCaretUp,
|
72
|
+
Lo as IconCaretUpDown,
|
73
|
+
Po as IconChartPieSlice,
|
74
|
+
yo as IconChatText,
|
75
|
+
Uo as IconCheck,
|
76
|
+
Bo as IconCheckCircle,
|
77
|
+
Fo as IconChecks,
|
78
|
+
Mo as IconCircleNotch,
|
79
|
+
Ro as IconCopy,
|
80
|
+
vo as IconCornersOut,
|
81
|
+
Xo as IconCsv,
|
82
|
+
bo as IconCube,
|
83
|
+
Ho as IconDatabase,
|
84
|
+
No as IconDotsNine,
|
85
|
+
Oo as IconDotsThreeVertical,
|
86
|
+
Qo as IconExport,
|
87
|
+
Eo as IconEye,
|
88
|
+
Go as IconEyeSlash,
|
89
|
+
Wo as IconFile,
|
90
|
+
Vo as IconFiles,
|
91
|
+
zo as IconFloppyDisk,
|
92
|
+
Jo as IconFolderSimple,
|
93
|
+
Yo as IconFolderSimpleX,
|
94
|
+
jo as IconFunnel,
|
95
|
+
qo as IconGauge,
|
96
|
+
Ko as IconGear,
|
97
|
+
Zo as IconGoogleDrive,
|
98
|
+
_o as IconHand,
|
99
|
+
$o as IconHeadCircuit,
|
100
|
+
or as IconHouse,
|
101
|
+
rr as IconIcon,
|
102
|
+
nr as IconInfo,
|
103
|
+
er as IconJoin,
|
104
|
+
cr as IconLanguage,
|
105
|
+
tr as IconLink,
|
106
|
+
Ir as IconList,
|
107
|
+
ar as IconLock,
|
108
|
+
ir as IconLockOpen,
|
109
|
+
pr as IconMariaDB,
|
110
|
+
lr as IconMinus,
|
111
|
+
fr as IconMongoDB,
|
112
|
+
mr as IconMoon,
|
113
|
+
xr as IconMySQL,
|
114
|
+
sr as IconNavigationArrow,
|
115
|
+
ur as IconNotePencil,
|
116
|
+
dr as IconPassword,
|
117
|
+
Cr as IconPen,
|
118
|
+
wr as IconPlay,
|
119
|
+
hr as IconPlugsX,
|
120
|
+
gr as IconPlus,
|
121
|
+
Sr as IconPorsgteSQL,
|
122
|
+
Tr as IconPresentationChart,
|
123
|
+
kr as IconQuestion,
|
124
|
+
Ar as IconQuestionFullfilled,
|
125
|
+
Dr as IconRedo,
|
126
|
+
Lr as IconRoleX,
|
127
|
+
Pr as IconSearch,
|
128
|
+
yr as IconSearchX,
|
129
|
+
Ur as IconSelection,
|
130
|
+
Br as IconServer,
|
131
|
+
Fr as IconSlidersHorizontal,
|
132
|
+
Mr as IconSticker,
|
133
|
+
Rr as IconSun,
|
134
|
+
vr as IconThreeDot,
|
135
|
+
Xr as IconTrash,
|
136
|
+
br as IconTriangleDown,
|
137
|
+
Hr as IconTriangleUp,
|
138
|
+
Nr as IconUndo,
|
139
|
+
Or as IconUploadSimple,
|
140
|
+
Qr as IconUser,
|
141
|
+
Er as IconUserX,
|
142
|
+
Gr as IconWarningCircle,
|
143
|
+
Wr as IconWrench,
|
144
|
+
Vr as IconX,
|
145
|
+
zr as IconYandexDisk,
|
146
|
+
H as Loader,
|
143
147
|
p as ModalWindow,
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
148
|
+
O as Pagination,
|
149
|
+
E as Radio,
|
150
|
+
W as SearchInput,
|
151
|
+
z as Skeleton,
|
152
|
+
Y as Switch,
|
153
|
+
q as Table,
|
154
|
+
eo as Tabs,
|
155
|
+
Z as TextInput,
|
156
|
+
$ as TextareaInput,
|
157
|
+
Yr as ToastProvider,
|
158
|
+
ro as Tooltip,
|
159
|
+
qr as TriaflyContext,
|
160
|
+
Kr as TriaflyProvider,
|
161
|
+
$r as useBreakpointValueTriafly,
|
162
|
+
X as useForm,
|
163
|
+
en as useModalState,
|
164
|
+
rn as useThemeLogic,
|
165
|
+
Zr as useTriafly
|
162
166
|
};
|
@@ -0,0 +1,282 @@
|
|
1
|
+
import { __module as C } from "../../_virtual/dayjs.min2.js";
|
2
|
+
var G = C.exports, V;
|
3
|
+
function tt() {
|
4
|
+
return V ? C.exports : (V = 1, function(B, K) {
|
5
|
+
(function(A, k) {
|
6
|
+
B.exports = k();
|
7
|
+
})(G, function() {
|
8
|
+
var A = 1e3, k = 6e4, q = 36e5, I = "millisecond", S = "second", w = "minute", _ = "hour", M = "day", T = "week", m = "month", F = "quarter", y = "year", O = "date", J = "Invalid Date", E = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, P = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, Q = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(i) {
|
9
|
+
var n = ["th", "st", "nd", "rd"], t = i % 100;
|
10
|
+
return "[" + i + (n[(t - 20) % 10] || n[t] || n[0]) + "]";
|
11
|
+
} }, N = function(i, n, t) {
|
12
|
+
var r = String(i);
|
13
|
+
return !r || r.length >= n ? i : "" + Array(n + 1 - r.length).join(t) + i;
|
14
|
+
}, R = { s: N, z: function(i) {
|
15
|
+
var n = -i.utcOffset(), t = Math.abs(n), r = Math.floor(t / 60), e = t % 60;
|
16
|
+
return (n <= 0 ? "+" : "-") + N(r, 2, "0") + ":" + N(e, 2, "0");
|
17
|
+
}, m: function i(n, t) {
|
18
|
+
if (n.date() < t.date()) return -i(t, n);
|
19
|
+
var r = 12 * (t.year() - n.year()) + (t.month() - n.month()), e = n.clone().add(r, m), s = t - e < 0, u = n.clone().add(r + (s ? -1 : 1), m);
|
20
|
+
return +(-(r + (t - e) / (s ? e - u : u - e)) || 0);
|
21
|
+
}, a: function(i) {
|
22
|
+
return i < 0 ? Math.ceil(i) || 0 : Math.floor(i);
|
23
|
+
}, p: function(i) {
|
24
|
+
return { M: m, y, w: T, d: M, D: O, h: _, m: w, s: S, ms: I, Q: F }[i] || String(i || "").toLowerCase().replace(/s$/, "");
|
25
|
+
}, u: function(i) {
|
26
|
+
return i === void 0;
|
27
|
+
} }, x = "en", D = {};
|
28
|
+
D[x] = Q;
|
29
|
+
var Z = "$isDayjsObject", U = function(i) {
|
30
|
+
return i instanceof L || !(!i || !i[Z]);
|
31
|
+
}, j = function i(n, t, r) {
|
32
|
+
var e;
|
33
|
+
if (!n) return x;
|
34
|
+
if (typeof n == "string") {
|
35
|
+
var s = n.toLowerCase();
|
36
|
+
D[s] && (e = s), t && (D[s] = t, e = s);
|
37
|
+
var u = n.split("-");
|
38
|
+
if (!e && u.length > 1) return i(u[0]);
|
39
|
+
} else {
|
40
|
+
var o = n.name;
|
41
|
+
D[o] = n, e = o;
|
42
|
+
}
|
43
|
+
return !r && e && (x = e), e || !r && x;
|
44
|
+
}, f = function(i, n) {
|
45
|
+
if (U(i)) return i.clone();
|
46
|
+
var t = typeof n == "object" ? n : {};
|
47
|
+
return t.date = i, t.args = arguments, new L(t);
|
48
|
+
}, a = R;
|
49
|
+
a.l = j, a.i = U, a.w = function(i, n) {
|
50
|
+
return f(i, { locale: n.$L, utc: n.$u, x: n.$x, $offset: n.$offset });
|
51
|
+
};
|
52
|
+
var L = function() {
|
53
|
+
function i(t) {
|
54
|
+
this.$L = j(t.locale, null, !0), this.parse(t), this.$x = this.$x || t.x || {}, this[Z] = !0;
|
55
|
+
}
|
56
|
+
var n = i.prototype;
|
57
|
+
return n.parse = function(t) {
|
58
|
+
this.$d = function(r) {
|
59
|
+
var e = r.date, s = r.utc;
|
60
|
+
if (e === null) return /* @__PURE__ */ new Date(NaN);
|
61
|
+
if (a.u(e)) return /* @__PURE__ */ new Date();
|
62
|
+
if (e instanceof Date) return new Date(e);
|
63
|
+
if (typeof e == "string" && !/Z$/i.test(e)) {
|
64
|
+
var u = e.match(E);
|
65
|
+
if (u) {
|
66
|
+
var o = u[2] - 1 || 0, c = (u[7] || "0").substring(0, 3);
|
67
|
+
return s ? new Date(Date.UTC(u[1], o, u[3] || 1, u[4] || 0, u[5] || 0, u[6] || 0, c)) : new Date(u[1], o, u[3] || 1, u[4] || 0, u[5] || 0, u[6] || 0, c);
|
68
|
+
}
|
69
|
+
}
|
70
|
+
return new Date(e);
|
71
|
+
}(t), this.init();
|
72
|
+
}, n.init = function() {
|
73
|
+
var t = this.$d;
|
74
|
+
this.$y = t.getFullYear(), this.$M = t.getMonth(), this.$D = t.getDate(), this.$W = t.getDay(), this.$H = t.getHours(), this.$m = t.getMinutes(), this.$s = t.getSeconds(), this.$ms = t.getMilliseconds();
|
75
|
+
}, n.$utils = function() {
|
76
|
+
return a;
|
77
|
+
}, n.isValid = function() {
|
78
|
+
return this.$d.toString() !== J;
|
79
|
+
}, n.isSame = function(t, r) {
|
80
|
+
var e = f(t);
|
81
|
+
return this.startOf(r) <= e && e <= this.endOf(r);
|
82
|
+
}, n.isAfter = function(t, r) {
|
83
|
+
return f(t) < this.startOf(r);
|
84
|
+
}, n.isBefore = function(t, r) {
|
85
|
+
return this.endOf(r) < f(t);
|
86
|
+
}, n.$g = function(t, r, e) {
|
87
|
+
return a.u(t) ? this[r] : this.set(e, t);
|
88
|
+
}, n.unix = function() {
|
89
|
+
return Math.floor(this.valueOf() / 1e3);
|
90
|
+
}, n.valueOf = function() {
|
91
|
+
return this.$d.getTime();
|
92
|
+
}, n.startOf = function(t, r) {
|
93
|
+
var e = this, s = !!a.u(r) || r, u = a.p(t), o = function(p, $) {
|
94
|
+
var v = a.w(e.$u ? Date.UTC(e.$y, $, p) : new Date(e.$y, $, p), e);
|
95
|
+
return s ? v : v.endOf(M);
|
96
|
+
}, c = function(p, $) {
|
97
|
+
return a.w(e.toDate()[p].apply(e.toDate("s"), (s ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice($)), e);
|
98
|
+
}, h = this.$W, d = this.$M, l = this.$D, b = "set" + (this.$u ? "UTC" : "");
|
99
|
+
switch (u) {
|
100
|
+
case y:
|
101
|
+
return s ? o(1, 0) : o(31, 11);
|
102
|
+
case m:
|
103
|
+
return s ? o(1, d) : o(0, d + 1);
|
104
|
+
case T:
|
105
|
+
var g = this.$locale().weekStart || 0, Y = (h < g ? h + 7 : h) - g;
|
106
|
+
return o(s ? l - Y : l + (6 - Y), d);
|
107
|
+
case M:
|
108
|
+
case O:
|
109
|
+
return c(b + "Hours", 0);
|
110
|
+
case _:
|
111
|
+
return c(b + "Minutes", 1);
|
112
|
+
case w:
|
113
|
+
return c(b + "Seconds", 2);
|
114
|
+
case S:
|
115
|
+
return c(b + "Milliseconds", 3);
|
116
|
+
default:
|
117
|
+
return this.clone();
|
118
|
+
}
|
119
|
+
}, n.endOf = function(t) {
|
120
|
+
return this.startOf(t, !1);
|
121
|
+
}, n.$set = function(t, r) {
|
122
|
+
var e, s = a.p(t), u = "set" + (this.$u ? "UTC" : ""), o = (e = {}, e[M] = u + "Date", e[O] = u + "Date", e[m] = u + "Month", e[y] = u + "FullYear", e[_] = u + "Hours", e[w] = u + "Minutes", e[S] = u + "Seconds", e[I] = u + "Milliseconds", e)[s], c = s === M ? this.$D + (r - this.$W) : r;
|
123
|
+
if (s === m || s === y) {
|
124
|
+
var h = this.clone().set(O, 1);
|
125
|
+
h.$d[o](c), h.init(), this.$d = h.set(O, Math.min(this.$D, h.daysInMonth())).$d;
|
126
|
+
} else o && this.$d[o](c);
|
127
|
+
return this.init(), this;
|
128
|
+
}, n.set = function(t, r) {
|
129
|
+
return this.clone().$set(t, r);
|
130
|
+
}, n.get = function(t) {
|
131
|
+
return this[a.p(t)]();
|
132
|
+
}, n.add = function(t, r) {
|
133
|
+
var e, s = this;
|
134
|
+
t = Number(t);
|
135
|
+
var u = a.p(r), o = function(d) {
|
136
|
+
var l = f(s);
|
137
|
+
return a.w(l.date(l.date() + Math.round(d * t)), s);
|
138
|
+
};
|
139
|
+
if (u === m) return this.set(m, this.$M + t);
|
140
|
+
if (u === y) return this.set(y, this.$y + t);
|
141
|
+
if (u === M) return o(1);
|
142
|
+
if (u === T) return o(7);
|
143
|
+
var c = (e = {}, e[w] = k, e[_] = q, e[S] = A, e)[u] || 1, h = this.$d.getTime() + t * c;
|
144
|
+
return a.w(h, this);
|
145
|
+
}, n.subtract = function(t, r) {
|
146
|
+
return this.add(-1 * t, r);
|
147
|
+
}, n.format = function(t) {
|
148
|
+
var r = this, e = this.$locale();
|
149
|
+
if (!this.isValid()) return e.invalidDate || J;
|
150
|
+
var s = t || "YYYY-MM-DDTHH:mm:ssZ", u = a.z(this), o = this.$H, c = this.$m, h = this.$M, d = e.weekdays, l = e.months, b = e.meridiem, g = function($, v, H, W) {
|
151
|
+
return $ && ($[v] || $(r, s)) || H[v].slice(0, W);
|
152
|
+
}, Y = function($) {
|
153
|
+
return a.s(o % 12 || 12, $, "0");
|
154
|
+
}, p = b || function($, v, H) {
|
155
|
+
var W = $ < 12 ? "AM" : "PM";
|
156
|
+
return H ? W.toLowerCase() : W;
|
157
|
+
};
|
158
|
+
return s.replace(P, function($, v) {
|
159
|
+
return v || function(H) {
|
160
|
+
switch (H) {
|
161
|
+
case "YY":
|
162
|
+
return String(r.$y).slice(-2);
|
163
|
+
case "YYYY":
|
164
|
+
return a.s(r.$y, 4, "0");
|
165
|
+
case "M":
|
166
|
+
return h + 1;
|
167
|
+
case "MM":
|
168
|
+
return a.s(h + 1, 2, "0");
|
169
|
+
case "MMM":
|
170
|
+
return g(e.monthsShort, h, l, 3);
|
171
|
+
case "MMMM":
|
172
|
+
return g(l, h);
|
173
|
+
case "D":
|
174
|
+
return r.$D;
|
175
|
+
case "DD":
|
176
|
+
return a.s(r.$D, 2, "0");
|
177
|
+
case "d":
|
178
|
+
return String(r.$W);
|
179
|
+
case "dd":
|
180
|
+
return g(e.weekdaysMin, r.$W, d, 2);
|
181
|
+
case "ddd":
|
182
|
+
return g(e.weekdaysShort, r.$W, d, 3);
|
183
|
+
case "dddd":
|
184
|
+
return d[r.$W];
|
185
|
+
case "H":
|
186
|
+
return String(o);
|
187
|
+
case "HH":
|
188
|
+
return a.s(o, 2, "0");
|
189
|
+
case "h":
|
190
|
+
return Y(1);
|
191
|
+
case "hh":
|
192
|
+
return Y(2);
|
193
|
+
case "a":
|
194
|
+
return p(o, c, !0);
|
195
|
+
case "A":
|
196
|
+
return p(o, c, !1);
|
197
|
+
case "m":
|
198
|
+
return String(c);
|
199
|
+
case "mm":
|
200
|
+
return a.s(c, 2, "0");
|
201
|
+
case "s":
|
202
|
+
return String(r.$s);
|
203
|
+
case "ss":
|
204
|
+
return a.s(r.$s, 2, "0");
|
205
|
+
case "SSS":
|
206
|
+
return a.s(r.$ms, 3, "0");
|
207
|
+
case "Z":
|
208
|
+
return u;
|
209
|
+
}
|
210
|
+
return null;
|
211
|
+
}($) || u.replace(":", "");
|
212
|
+
});
|
213
|
+
}, n.utcOffset = function() {
|
214
|
+
return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
|
215
|
+
}, n.diff = function(t, r, e) {
|
216
|
+
var s, u = this, o = a.p(r), c = f(t), h = (c.utcOffset() - this.utcOffset()) * k, d = this - c, l = function() {
|
217
|
+
return a.m(u, c);
|
218
|
+
};
|
219
|
+
switch (o) {
|
220
|
+
case y:
|
221
|
+
s = l() / 12;
|
222
|
+
break;
|
223
|
+
case m:
|
224
|
+
s = l();
|
225
|
+
break;
|
226
|
+
case F:
|
227
|
+
s = l() / 3;
|
228
|
+
break;
|
229
|
+
case T:
|
230
|
+
s = (d - h) / 6048e5;
|
231
|
+
break;
|
232
|
+
case M:
|
233
|
+
s = (d - h) / 864e5;
|
234
|
+
break;
|
235
|
+
case _:
|
236
|
+
s = d / q;
|
237
|
+
break;
|
238
|
+
case w:
|
239
|
+
s = d / k;
|
240
|
+
break;
|
241
|
+
case S:
|
242
|
+
s = d / A;
|
243
|
+
break;
|
244
|
+
default:
|
245
|
+
s = d;
|
246
|
+
}
|
247
|
+
return e ? s : a.a(s);
|
248
|
+
}, n.daysInMonth = function() {
|
249
|
+
return this.endOf(m).$D;
|
250
|
+
}, n.$locale = function() {
|
251
|
+
return D[this.$L];
|
252
|
+
}, n.locale = function(t, r) {
|
253
|
+
if (!t) return this.$L;
|
254
|
+
var e = this.clone(), s = j(t, r, !0);
|
255
|
+
return s && (e.$L = s), e;
|
256
|
+
}, n.clone = function() {
|
257
|
+
return a.w(this.$d, this);
|
258
|
+
}, n.toDate = function() {
|
259
|
+
return new Date(this.valueOf());
|
260
|
+
}, n.toJSON = function() {
|
261
|
+
return this.isValid() ? this.toISOString() : null;
|
262
|
+
}, n.toISOString = function() {
|
263
|
+
return this.$d.toISOString();
|
264
|
+
}, n.toString = function() {
|
265
|
+
return this.$d.toUTCString();
|
266
|
+
}, i;
|
267
|
+
}(), z = L.prototype;
|
268
|
+
return f.prototype = z, [["$ms", I], ["$s", S], ["$m", w], ["$H", _], ["$W", M], ["$M", m], ["$y", y], ["$D", O]].forEach(function(i) {
|
269
|
+
z[i[1]] = function(n) {
|
270
|
+
return this.$g(n, i[0], i[1]);
|
271
|
+
};
|
272
|
+
}), f.extend = function(i, n) {
|
273
|
+
return i.$i || (i(n, L, f), i.$i = !0), f;
|
274
|
+
}, f.locale = j, f.isDayjs = U, f.unix = function(i) {
|
275
|
+
return f(1e3 * i);
|
276
|
+
}, f.en = D[x], f.Ls = D, f.p = {}, f;
|
277
|
+
});
|
278
|
+
}(C), C.exports);
|
279
|
+
}
|
280
|
+
export {
|
281
|
+
tt as __require
|
282
|
+
};
|
@@ -0,0 +1,36 @@
|
|
1
|
+
import { __module as u } from "../../../_virtual/ru2.js";
|
2
|
+
import { __require as y } from "../dayjs.min.js";
|
3
|
+
var v = u.exports, h;
|
4
|
+
function S() {
|
5
|
+
return h ? u.exports : (h = 1, function(c, D) {
|
6
|
+
(function(m, s) {
|
7
|
+
c.exports = s(y());
|
8
|
+
})(v, function(m) {
|
9
|
+
function s(_) {
|
10
|
+
return _ && typeof _ == "object" && "default" in _ ? _ : { default: _ };
|
11
|
+
}
|
12
|
+
var L = s(m), a = "января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"), M = "январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"), f = "янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"), d = "янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_"), l = /D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;
|
13
|
+
function r(_, e, Y) {
|
14
|
+
var t, n;
|
15
|
+
return Y === "m" ? e ? "минута" : "минуту" : _ + " " + (t = +_, n = { mm: e ? "минута_минуты_минут" : "минуту_минуты_минут", hh: "час_часа_часов", dd: "день_дня_дней", MM: "месяц_месяца_месяцев", yy: "год_года_лет" }[Y].split("_"), t % 10 == 1 && t % 100 != 11 ? n[0] : t % 10 >= 2 && t % 10 <= 4 && (t % 100 < 10 || t % 100 >= 20) ? n[1] : n[2]);
|
16
|
+
}
|
17
|
+
var o = function(_, e) {
|
18
|
+
return l.test(e) ? a[_.month()] : M[_.month()];
|
19
|
+
};
|
20
|
+
o.s = M, o.f = a;
|
21
|
+
var i = function(_, e) {
|
22
|
+
return l.test(e) ? f[_.month()] : d[_.month()];
|
23
|
+
};
|
24
|
+
i.s = d, i.f = f;
|
25
|
+
var p = { name: "ru", weekdays: "воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"), weekdaysShort: "вск_пнд_втр_срд_чтв_птн_сбт".split("_"), weekdaysMin: "вс_пн_вт_ср_чт_пт_сб".split("_"), months: o, monthsShort: i, weekStart: 1, yearStart: 4, formats: { LT: "H:mm", LTS: "H:mm:ss", L: "DD.MM.YYYY", LL: "D MMMM YYYY г.", LLL: "D MMMM YYYY г., H:mm", LLLL: "dddd, D MMMM YYYY г., H:mm" }, relativeTime: { future: "через %s", past: "%s назад", s: "несколько секунд", m: r, mm: r, h: "час", hh: r, d: "день", dd: r, M: "месяц", MM: r, y: "год", yy: r }, ordinal: function(_) {
|
26
|
+
return _;
|
27
|
+
}, meridiem: function(_) {
|
28
|
+
return _ < 4 ? "ночи" : _ < 12 ? "утра" : _ < 17 ? "дня" : "вечера";
|
29
|
+
} };
|
30
|
+
return L.default.locale(p, null, !0), p;
|
31
|
+
});
|
32
|
+
}(u), u.exports);
|
33
|
+
}
|
34
|
+
export {
|
35
|
+
S as __require
|
36
|
+
};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import '../../../../assets/src/components/Ui/Tooltip/Tooltip.stories.module.css';const i = "
|
1
|
+
import '../../../../assets/src/components/Ui/Tooltip/Tooltip.stories.module.css';const i = "_container_193w2_1", o = "_trigger_193w2_14", t = "_clickTrigger_193w2_29 _trigger_193w2_14", n = "_positionsContainer_193w2_38", r = "_positionGroup_193w2_42", s = {
|
2
2
|
container: i,
|
3
3
|
trigger: o,
|
4
4
|
clickTrigger: t,
|