mimir-ui-kit 1.38.33 → 1.38.35
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/components/MergedButton/MergedButton.d.ts +1 -0
- package/dist/components/Pagination/Pagination.js +43 -40
- package/dist/components/UniversalUploader/UniversalUploader.js +14 -14
- package/dist/components/Uploader/Uploader.d.ts +3 -3
- package/dist/components/Uploader/index.d.ts +1 -0
- package/dist/components/UploaderFiles/types.d.ts +3 -3
- package/dist/components/index.d.ts +1 -1
- package/package.json +1 -1
@@ -2,10 +2,10 @@ import { jsxs as P, jsx as i } from "react/jsx-runtime";
|
|
2
2
|
import { c as C } from "../../index-DIxK0V-G.js";
|
3
3
|
import { forwardRef as N, useState as w, useEffect as v } from "react";
|
4
4
|
import { FIRST_PAGE_NUMBER as u, DEFAULT_PER_PAGE as A } from "./constants.js";
|
5
|
-
import { useWindowSize as
|
5
|
+
import { useWindowSize as x } from "../../hooks/useWindowSize/index.js";
|
6
6
|
import { MergedButton as h } from "../MergedButton/MergedButton.js";
|
7
|
-
import '../../assets/Pagination.css';const
|
8
|
-
container:
|
7
|
+
import '../../assets/Pagination.css';const E = "_container_grwbf_3", j = "_ellipsis_grwbf_42", b = {
|
8
|
+
container: E,
|
9
9
|
"pagination-button": "_pagination-button_grwbf_18",
|
10
10
|
"is-active": "_is-active_grwbf_39",
|
11
11
|
ellipsis: j
|
@@ -20,7 +20,8 @@ import '../../assets/Pagination.css';const x = "_container_grwbf_3", j = "_ellip
|
|
20
20
|
t !== u && (o(t - 1), n(t - 1));
|
21
21
|
},
|
22
22
|
iconName: "ArrowLeft16px",
|
23
|
-
disabled: t === u
|
23
|
+
disabled: t === u,
|
24
|
+
"data-testid": "back-button"
|
24
25
|
}
|
25
26
|
]
|
26
27
|
}
|
@@ -28,9 +29,9 @@ import '../../assets/Pagination.css';const x = "_container_grwbf_3", j = "_ellip
|
|
28
29
|
currentPageNumber: t,
|
29
30
|
lastPageNumber: n,
|
30
31
|
onClick: o,
|
31
|
-
setCurrentPage:
|
32
|
+
setCurrentPage: a
|
32
33
|
}) => {
|
33
|
-
const
|
34
|
+
const s = t >= n;
|
34
35
|
return /* @__PURE__ */ i(
|
35
36
|
h,
|
36
37
|
{
|
@@ -39,10 +40,11 @@ import '../../assets/Pagination.css';const x = "_container_grwbf_3", j = "_ellip
|
|
39
40
|
isIconButton: !0,
|
40
41
|
variant: "white",
|
41
42
|
onClick: () => {
|
42
|
-
|
43
|
+
s || (a(t + 1), o(t + 1));
|
43
44
|
},
|
44
|
-
disabled:
|
45
|
-
iconName: "ArrowRight16px"
|
45
|
+
disabled: s,
|
46
|
+
iconName: "ArrowRight16px",
|
47
|
+
"data-testid": "next-button"
|
46
48
|
}
|
47
49
|
]
|
48
50
|
}
|
@@ -54,26 +56,27 @@ import '../../assets/Pagination.css';const x = "_container_grwbf_3", j = "_ellip
|
|
54
56
|
{
|
55
57
|
children: "...",
|
56
58
|
variant: "transparent",
|
57
|
-
className: C(
|
59
|
+
className: C(b["pagination-button"], b.ellipsis)
|
58
60
|
}
|
59
61
|
]
|
60
62
|
}
|
61
|
-
),
|
63
|
+
), g = ({
|
62
64
|
currentPageNumber: t,
|
63
65
|
newPageNumber: n,
|
64
66
|
onClick: o,
|
65
|
-
setCurrentPage:
|
67
|
+
setCurrentPage: a
|
66
68
|
}) => {
|
67
|
-
const
|
68
|
-
|
69
|
+
const s = t === n, r = () => {
|
70
|
+
a(n), o(n);
|
69
71
|
}, e = n < 10 ? `0${n}` : n;
|
70
72
|
return /* @__PURE__ */ i(
|
71
73
|
"button",
|
72
74
|
{
|
75
|
+
"data-testid": `pagination-button-${e}`,
|
73
76
|
type: "button",
|
74
77
|
onClick: r,
|
75
|
-
className: C(
|
76
|
-
[
|
78
|
+
className: C(b["pagination-button"], {
|
79
|
+
[b["is-active"]]: s
|
77
80
|
}),
|
78
81
|
children: e
|
79
82
|
}
|
@@ -82,19 +85,19 @@ import '../../assets/Pagination.css';const x = "_container_grwbf_3", j = "_ellip
|
|
82
85
|
start: t,
|
83
86
|
end: n,
|
84
87
|
currentPageNumber: o,
|
85
|
-
onClick:
|
86
|
-
setCurrentPage:
|
88
|
+
onClick: a,
|
89
|
+
setCurrentPage: s
|
87
90
|
}) => {
|
88
91
|
const r = [];
|
89
92
|
for (let e = t; e <= n; e++)
|
90
93
|
r.push(
|
91
94
|
/* @__PURE__ */ i(
|
92
|
-
|
95
|
+
g,
|
93
96
|
{
|
94
97
|
currentPageNumber: o,
|
95
|
-
setCurrentPage:
|
98
|
+
setCurrentPage: s,
|
96
99
|
newPageNumber: e,
|
97
|
-
onClick:
|
100
|
+
onClick: a
|
98
101
|
},
|
99
102
|
e
|
100
103
|
)
|
@@ -104,22 +107,22 @@ import '../../assets/Pagination.css';const x = "_container_grwbf_3", j = "_ellip
|
|
104
107
|
(t, n) => {
|
105
108
|
const {
|
106
109
|
rootClassName: o,
|
107
|
-
total:
|
108
|
-
perPage:
|
110
|
+
total: a,
|
111
|
+
perPage: s = A,
|
109
112
|
currentPageNumber: r = u,
|
110
113
|
onChange: e
|
111
|
-
} = t, [c,
|
112
|
-
let
|
114
|
+
} = t, [c, d] = w(r), l = Math.ceil(a / s), { width: k } = x(), m = k <= 650 ? 2 : 4;
|
115
|
+
let f = 0, p = 0;
|
113
116
|
return v(() => {
|
114
|
-
|
115
|
-
}, [r]), c <=
|
116
|
-
u +
|
117
|
+
d(r);
|
118
|
+
}, [r]), c <= m ? (f = u, p = Math.min(
|
119
|
+
u + m,
|
117
120
|
l
|
118
|
-
)) : c > l -
|
121
|
+
)) : c > l - m ? (f = l - m, p = l) : (f = c - m / 2, p = c + m / 2), a <= s ? null : /* @__PURE__ */ P(
|
119
122
|
"nav",
|
120
123
|
{
|
121
124
|
"aria-label": "Постраничная навигация",
|
122
|
-
className: C(
|
125
|
+
className: C(b.container, o),
|
123
126
|
ref: n,
|
124
127
|
children: [
|
125
128
|
/* @__PURE__ */ i(
|
@@ -127,33 +130,33 @@ import '../../assets/Pagination.css';const x = "_container_grwbf_3", j = "_ellip
|
|
127
130
|
{
|
128
131
|
currentPageNumber: c,
|
129
132
|
onClick: e,
|
130
|
-
setCurrentPage:
|
133
|
+
setCurrentPage: d
|
131
134
|
}
|
132
135
|
),
|
133
|
-
|
134
|
-
|
136
|
+
f > u && /* @__PURE__ */ i(
|
137
|
+
g,
|
135
138
|
{
|
136
139
|
newPageNumber: u,
|
137
140
|
currentPageNumber: c,
|
138
141
|
onClick: e,
|
139
|
-
setCurrentPage:
|
142
|
+
setCurrentPage: d
|
140
143
|
}
|
141
144
|
),
|
142
|
-
|
145
|
+
f > u + 1 && /* @__PURE__ */ i(_, {}),
|
143
146
|
R({
|
144
|
-
start:
|
147
|
+
start: f,
|
145
148
|
end: p,
|
146
149
|
currentPageNumber: c,
|
147
|
-
setCurrentPage:
|
150
|
+
setCurrentPage: d,
|
148
151
|
onClick: e
|
149
152
|
}),
|
150
153
|
p < l - 1 && /* @__PURE__ */ i(_, {}),
|
151
154
|
p < l && /* @__PURE__ */ i(
|
152
|
-
|
155
|
+
g,
|
153
156
|
{
|
154
157
|
newPageNumber: l,
|
155
158
|
currentPageNumber: c,
|
156
|
-
setCurrentPage:
|
159
|
+
setCurrentPage: d,
|
157
160
|
onClick: e
|
158
161
|
}
|
159
162
|
),
|
@@ -161,7 +164,7 @@ import '../../assets/Pagination.css';const x = "_container_grwbf_3", j = "_ellip
|
|
161
164
|
I,
|
162
165
|
{
|
163
166
|
currentPageNumber: c,
|
164
|
-
setCurrentPage:
|
167
|
+
setCurrentPage: d,
|
165
168
|
lastPageNumber: l,
|
166
169
|
onClick: e
|
167
170
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { jsxs as h, jsx as
|
1
|
+
import { jsxs as h, jsx as f, Fragment as j } from "react/jsx-runtime";
|
2
2
|
import { c as B } from "../../index-DIxK0V-G.js";
|
3
3
|
import { forwardRef as D, useState as _, useEffect as C, useMemo as O } from "react";
|
4
4
|
import { imageTypes as y } from "./constants.js";
|
@@ -10,7 +10,7 @@ import { ListPhotos as q } from "../ListPhotos/ListPhotos.js";
|
|
10
10
|
import { Uploader as G } from "../Uploader/Uploader.js";
|
11
11
|
import '../../assets/UploaderPhotos.css';const x = {
|
12
12
|
"upload-file-wrapper": "_upload-file-wrapper_1a115_2"
|
13
|
-
},
|
13
|
+
}, d = (i) => "file" in i && i.file instanceof File ? y.includes(i.file.type) : "type" in i && typeof i.type == "string" ? y.includes(i.type) : !1, te = D(
|
14
14
|
(i, F) => {
|
15
15
|
const {
|
16
16
|
type: a,
|
@@ -19,7 +19,7 @@ import '../../assets/UploaderPhotos.css';const x = {
|
|
19
19
|
maxSize: w,
|
20
20
|
onChange: s,
|
21
21
|
value: r,
|
22
|
-
maxFiles:
|
22
|
+
maxFiles: n,
|
23
23
|
titleUploader: z,
|
24
24
|
buttonText: U = "Выберите файлы",
|
25
25
|
showOnlyUploadButton: m = !1,
|
@@ -30,14 +30,14 @@ import '../../assets/UploaderPhotos.css';const x = {
|
|
30
30
|
onMaxFilesExceeded: S,
|
31
31
|
onMaxSizeExceeded: V,
|
32
32
|
onInvalidFileType: M
|
33
|
-
} = i, [l,
|
33
|
+
} = i, [l, p] = _(
|
34
34
|
r || []
|
35
|
-
), u = l.length >=
|
35
|
+
), u = !!n && l.length >= n;
|
36
36
|
C(() => {
|
37
|
-
r &&
|
37
|
+
r && p(r);
|
38
38
|
}, [r]);
|
39
39
|
const N = (t) => {
|
40
|
-
const o = t.value.map((e) =>
|
40
|
+
const o = t.value.map((e) => d(e.file) ? {
|
41
41
|
id: e.id,
|
42
42
|
url: URL.createObjectURL(e.file),
|
43
43
|
type: e.file.type,
|
@@ -50,11 +50,11 @@ import '../../assets/UploaderPhotos.css';const x = {
|
|
50
50
|
name: e.file.name,
|
51
51
|
type: e.file.type
|
52
52
|
});
|
53
|
-
|
53
|
+
p((e) => [...e, ...o]), s == null || s({ type: "add", data: t.value });
|
54
54
|
}, c = (t) => {
|
55
|
-
|
55
|
+
p((o) => o.filter((e) => e.id !== t)), s == null || s({ type: "delete", data: t });
|
56
56
|
}, { photos: R, files: T } = O(() => {
|
57
|
-
const t = () => l.filter((e) => !
|
57
|
+
const t = () => l.filter((e) => !d(e)), o = () => l.filter(d);
|
58
58
|
return a === "all" ? { files: t(), photos: o() } : a === "files" ? { photos: [], files: t() } : a === "photos" ? { files: [], photos: o() } : { files: [], photos: [] };
|
59
59
|
}, [l, a]);
|
60
60
|
return /* @__PURE__ */ h(
|
@@ -66,7 +66,7 @@ import '../../assets/UploaderPhotos.css';const x = {
|
|
66
66
|
u && x.disabled
|
67
67
|
),
|
68
68
|
children: [
|
69
|
-
/* @__PURE__ */
|
69
|
+
/* @__PURE__ */ f(
|
70
70
|
G,
|
71
71
|
{
|
72
72
|
filesType: v,
|
@@ -74,7 +74,7 @@ import '../../assets/UploaderPhotos.css';const x = {
|
|
74
74
|
maxSize: w,
|
75
75
|
onChangeValue: N,
|
76
76
|
ref: F,
|
77
|
-
maxFiles:
|
77
|
+
maxFiles: n && n - l.length,
|
78
78
|
isDisabled: u,
|
79
79
|
titleUploader: z,
|
80
80
|
showOnlyUploadButton: m,
|
@@ -88,7 +88,7 @@ import '../../assets/UploaderPhotos.css';const x = {
|
|
88
88
|
}
|
89
89
|
),
|
90
90
|
!m && /* @__PURE__ */ h(j, { children: [
|
91
|
-
(a === "files" || a === "all") && /* @__PURE__ */
|
91
|
+
(a === "files" || a === "all") && /* @__PURE__ */ f(
|
92
92
|
A,
|
93
93
|
{
|
94
94
|
value: T,
|
@@ -96,7 +96,7 @@ import '../../assets/UploaderPhotos.css';const x = {
|
|
96
96
|
variant: L
|
97
97
|
}
|
98
98
|
),
|
99
|
-
(a === "photos" || a === "all") && /* @__PURE__ */
|
99
|
+
(a === "photos" || a === "all") && /* @__PURE__ */ f(
|
100
100
|
q,
|
101
101
|
{
|
102
102
|
value: R,
|
@@ -12,7 +12,7 @@ export type TUploader = {
|
|
12
12
|
/**
|
13
13
|
* Наименование передаваемого массива файлов
|
14
14
|
*/
|
15
|
-
arrayName
|
15
|
+
arrayName?: string;
|
16
16
|
/**
|
17
17
|
* Функция - callback, которая вызывается при изменении значения и передает имя и новое значение
|
18
18
|
*/
|
@@ -20,11 +20,11 @@ export type TUploader = {
|
|
20
20
|
/**
|
21
21
|
* Максимальный размер файлов.
|
22
22
|
*/
|
23
|
-
maxSize
|
23
|
+
maxSize?: number;
|
24
24
|
/**
|
25
25
|
* Максимальное количество файлов.
|
26
26
|
*/
|
27
|
-
maxFiles
|
27
|
+
maxFiles?: number;
|
28
28
|
/**
|
29
29
|
* Выключен ли Uploader или нет
|
30
30
|
*/
|
@@ -16,7 +16,7 @@ export type TUploaderFiles = {
|
|
16
16
|
/**
|
17
17
|
* Наименование передаваемого массива файлов
|
18
18
|
*/
|
19
|
-
arrayName
|
19
|
+
arrayName?: string;
|
20
20
|
/**
|
21
21
|
* Блок взаимодействия
|
22
22
|
*/
|
@@ -24,7 +24,7 @@ export type TUploaderFiles = {
|
|
24
24
|
/**
|
25
25
|
* Максимальный размер файлов.
|
26
26
|
*/
|
27
|
-
maxSize
|
27
|
+
maxSize?: number;
|
28
28
|
/**
|
29
29
|
* Функция обратного вызова, передает параметры type и data,
|
30
30
|
* type 'add' в data передает массив файлов,
|
@@ -38,7 +38,7 @@ export type TUploaderFiles = {
|
|
38
38
|
/**
|
39
39
|
* Максимальное количество файлов.
|
40
40
|
*/
|
41
|
-
maxFiles
|
41
|
+
maxFiles?: number;
|
42
42
|
/**
|
43
43
|
* Текст внутри кнопки загрузки файла
|
44
44
|
*/
|
@@ -39,7 +39,7 @@ export type { TUploaderPhotos, TOnChangePhotosUpdate } from './UploaderPhotos';
|
|
39
39
|
export { UploaderFiles, EUploaderFilesVariant } from './UploaderFiles';
|
40
40
|
export type { TUploaderFiles, TOnChangeFilesUpdate } from './UploaderFiles/types';
|
41
41
|
export { Uploader } from './Uploader';
|
42
|
-
export type { TUploadValue, TFileItem } from './Uploader';
|
42
|
+
export type { TUploadValue, TFileItem, imageTypesArr } from './Uploader';
|
43
43
|
export { ELinkSize, ELinkVariant, Link } from './AnchorLink';
|
44
44
|
export { NotificationBadge } from './NotificationBadge';
|
45
45
|
export type { TNotificationBadgeProps } from './NotificationBadge';
|