mimir-ui-kit 1.38.43 → 1.39.0
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/assets/stories.css +1 -0
- package/dist/assets/styles2.css +1 -0
- package/dist/combobox-Dv6-ANkb.js +508 -0
- package/dist/components/Dropdown/Dropdown.js +176 -176
- package/dist/components/MultiSelectSearch/MultiSelectSearch.js +1 -1
- package/dist/components/SelectSearch/SelectSearch.js +1 -1
- package/dist/components/Table/ColumnOrderSettings.d.ts +18 -0
- package/dist/components/Table/ColumnOrderSettings.js +177 -0
- package/dist/components/Table/Table.d.ts +3 -0
- package/dist/components/Table/Table.js +204 -0
- package/dist/components/Table/TableBody.d.ts +5 -0
- package/dist/components/Table/TableBody.js +109 -0
- package/dist/components/Table/TableCard.d.ts +5 -0
- package/dist/components/Table/TableCard.js +45 -0
- package/dist/components/Table/TableCardsView.d.ts +5 -0
- package/dist/components/Table/TableCardsView.js +84 -0
- package/dist/components/Table/TableFilters.d.ts +12 -0
- package/dist/components/Table/TableFilters.js +165 -0
- package/dist/components/Table/TableHeader.d.ts +3 -0
- package/dist/components/Table/TableHeader.js +70 -0
- package/dist/components/Table/TableRow.d.ts +5 -0
- package/dist/components/Table/TableRow.js +76 -0
- package/dist/components/Table/TableScrollButtons.d.ts +11 -0
- package/dist/components/Table/TableScrollButtons.js +35 -0
- package/dist/components/Table/constants.d.ts +128 -0
- package/dist/components/Table/constants.js +434 -0
- package/dist/components/Table/hooks/index.d.ts +4 -0
- package/dist/components/Table/hooks/index.js +10 -0
- package/dist/components/Table/hooks/useTableInstance.d.ts +3 -0
- package/dist/components/Table/hooks/useTableInstance.js +68 -0
- package/dist/components/Table/hooks/useTableScroll.d.ts +8 -0
- package/dist/components/Table/hooks/useTableScroll.js +54 -0
- package/dist/components/Table/hooks/useTableState.d.ts +13 -0
- package/dist/components/Table/hooks/useTableState.js +56 -0
- package/dist/components/Table/hooks/useTableVirtualization.d.ts +13 -0
- package/dist/components/Table/hooks/useTableVirtualization.js +97 -0
- package/dist/components/Table/index.d.ts +3 -0
- package/dist/components/Table/index.js +10 -0
- package/dist/components/Table/types.d.ts +150 -0
- package/dist/components/Table/utils.d.ts +4 -0
- package/dist/components/Table/utils.js +25 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +72 -64
- package/dist/index-CVk4sixt.js +1862 -0
- package/dist/index-D5H8gPPn.js +546 -0
- package/dist/index.js +106 -98
- package/dist/{portal-D3A00sie.js → portal-C_u5auU1.js} +179 -183
- package/dist/stories.module-fud786VB.js +29 -0
- package/dist/styles.module--QBQYoA9.js +36 -0
- package/package.json +3 -1
- package/dist/combobox-BD-GHvMy.js +0 -980
package/dist/index.js
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
import { Button as e } from "./components/Button/Button.js";
|
2
2
|
import { EButtonForm as p, EButtonSize as a, EButtonVariantBorderless as m, EButtonVariantDefault as i, EButtonVariantOutline as f, EButtonVariantRound as x } from "./components/Button/constants.js";
|
3
|
-
import { I as
|
4
|
-
import { EInputSize as
|
3
|
+
import { I as l } from "./Input-DAmc_HxO.js";
|
4
|
+
import { EInputSize as E, EInputStatus as u, EInputVariant as S } from "./components/Input/constants.js";
|
5
5
|
import { TextArea as c } from "./components/TextArea/TextArea.js";
|
6
|
-
import { ETextAreaInputSize as
|
7
|
-
import { InputPassword as
|
8
|
-
import { InputPhoneNumber as
|
9
|
-
import { getMaskedInputPhoneValue as
|
10
|
-
import { OtpInput as
|
11
|
-
import { RadioGroup as
|
12
|
-
import { DatePicker as
|
13
|
-
import { MergedButton as
|
14
|
-
import { EMergedButtonVariantRound as
|
6
|
+
import { ETextAreaInputSize as I } from "./components/TextArea/constants.js";
|
7
|
+
import { InputPassword as V } from "./components/InputPassword/InputPassword.js";
|
8
|
+
import { InputPhoneNumber as B } from "./components/InputPhoneNumber/InputPhoneNumber.js";
|
9
|
+
import { getMaskedInputPhoneValue as k, getUnmaskedInputValue as M } from "./components/InputPhoneNumber/utils.js";
|
10
|
+
import { OtpInput as b } from "./components/OtpInput/OtpInput.js";
|
11
|
+
import { RadioGroup as L } from "./components/RadioGroup/RadioGroup.js";
|
12
|
+
import { DatePicker as A } from "./components/DatePicker/DatePicker.js";
|
13
|
+
import { MergedButton as D } from "./components/MergedButton/MergedButton.js";
|
14
|
+
import { EMergedButtonVariantRound as w } from "./components/MergedButton/constants.js";
|
15
15
|
import { AppImage as F } from "./components/Image/Image.js";
|
16
16
|
import { Loader as N } from "./components/Loader/Loader.js";
|
17
17
|
import { ELoaderSize as Q } from "./components/Loader/constants.js";
|
@@ -25,19 +25,19 @@ import { Vote as to } from "./components/Vote/Vote.js";
|
|
25
25
|
import { EVoteSize as ao } from "./components/Vote/constants.js";
|
26
26
|
import { SelectSearch as io } from "./components/SelectSearch/SelectSearch.js";
|
27
27
|
import { ESelectSearchSize as xo } from "./components/SelectSearch/constants.js";
|
28
|
-
import { CheckboxMimir as
|
29
|
-
import { Tag as
|
28
|
+
import { CheckboxMimir as lo } from "./components/CheckboxMimir/CheckboxMimir.js";
|
29
|
+
import { Tag as Eo } from "./components/Tag/Tag.js";
|
30
30
|
import { ETagSize as So, ETagType as co } from "./components/Tag/constants.js";
|
31
|
-
import { Timer as
|
32
|
-
import { Accordion as
|
33
|
-
import { EAccordionSize as
|
34
|
-
import { AccordionItem as
|
35
|
-
import { TabTrail as
|
36
|
-
import { ETabTrailSize as
|
37
|
-
import { Pagination as
|
38
|
-
import { ToastProvider as
|
39
|
-
import { useToast as
|
40
|
-
import { EToastPosition as
|
31
|
+
import { Timer as Io } from "./components/Timer/Timer.js";
|
32
|
+
import { Accordion as Vo } from "./components/Accordion/Accordion.js";
|
33
|
+
import { EAccordionSize as Bo } from "./components/Accordion/constants.js";
|
34
|
+
import { AccordionItem as ko } from "./components/Accordion/AccordionItem/AccordionItem.js";
|
35
|
+
import { TabTrail as Po } from "./components/TabTrail/TabTrail.js";
|
36
|
+
import { ETabTrailSize as yo } from "./components/TabTrail/constants.js";
|
37
|
+
import { Pagination as Ro } from "./components/Pagination/Pagination.js";
|
38
|
+
import { ToastProvider as Co } from "./components/Toasts/ToastsProvider.js";
|
39
|
+
import { useToast as Uo } from "./components/Toasts/hooks.js";
|
40
|
+
import { EToastPosition as vo, EToastVariant as Fo } from "./components/Toasts/constants.js";
|
41
41
|
import { UploaderPhotos as No } from "./components/UploaderPhotos/UploaderPhotos.js";
|
42
42
|
import { UploaderFiles as Qo } from "./components/UploaderFiles/UploaderFiles.js";
|
43
43
|
import { EUploaderFilesVariant as jo } from "./components/UploaderFiles/constants.js";
|
@@ -50,18 +50,18 @@ import { Chip as tr } from "./components/Chip/Chip.js";
|
|
50
50
|
import { EChipSize as ar, EChipVariant as mr } from "./components/Chip/constants.js";
|
51
51
|
import { UniversalUploader as fr } from "./components/UniversalUploader/UniversalUploader.js";
|
52
52
|
import { EUploaderType as nr } from "./components/UniversalUploader/constants.js";
|
53
|
-
import { InputRangeSlider as
|
54
|
-
import { EInputRangeSliderBorderState as
|
53
|
+
import { InputRangeSlider as sr } from "./components/InputRangeSlider/InputRangeSlider.js";
|
54
|
+
import { EInputRangeSliderBorderState as ur, EInputRangeSliderPositions as Sr } from "./components/InputRangeSlider/constants.js";
|
55
55
|
import { GosZnak as cr } from "./components/GosZnak/GosZnak.js";
|
56
|
-
import { EGosZnakSize as
|
57
|
-
import { Switcher as
|
58
|
-
import { ELabelPositions as
|
59
|
-
import { TwinSwitcher as
|
60
|
-
import { SkeletonBrick as
|
61
|
-
import { SkeletonText as
|
62
|
-
import { SkeletonCircle as
|
63
|
-
import { ESkeletonVariant as
|
64
|
-
import { Avatar as
|
56
|
+
import { EGosZnakSize as Ir, EGosZnakType as gr } from "./components/GosZnak/constants.js";
|
57
|
+
import { Switcher as zr } from "./components/Switcher/Switcher.js";
|
58
|
+
import { ELabelPositions as hr } from "./components/Switcher/constants.js";
|
59
|
+
import { TwinSwitcher as Mr } from "./components/TwinSwitcher/TwinSwitcher.js";
|
60
|
+
import { SkeletonBrick as br } from "./components/Skeleton/SkeletonBrick/SkeletonBrick.js";
|
61
|
+
import { SkeletonText as Lr } from "./components/Skeleton/SkeletonText/SkeletonText.js";
|
62
|
+
import { SkeletonCircle as Ar } from "./components/Skeleton/SkeletonCircle/SkeletonCircle.js";
|
63
|
+
import { ESkeletonVariant as Dr } from "./components/Skeleton/constants.js";
|
64
|
+
import { Avatar as wr } from "./components/Avatar/Avatar.js";
|
65
65
|
import { EAvatarSize as Fr } from "./components/Avatar/constants.js";
|
66
66
|
import { MultiSelectSearch as Nr } from "./components/MultiSelectSearch/MultiSelectSearch.js";
|
67
67
|
import { EMultiSelectSearchSize as Qr } from "./components/MultiSelectSearch/constants.js";
|
@@ -70,30 +70,32 @@ import { EFileItemVariant as Hr } from "./components/ListFiles/constants.js";
|
|
70
70
|
import { ListPhotos as Kr } from "./components/ListPhotos/ListPhotos.js";
|
71
71
|
import { MessageShortReply as Xr } from "./components/MessageShortReply/MessageShortReply.js";
|
72
72
|
import { EMessageShortReplyVariant as _r } from "./components/MessageShortReply/constants.js";
|
73
|
-
import {
|
74
|
-
import {
|
75
|
-
import {
|
76
|
-
import {
|
77
|
-
import {
|
78
|
-
import {
|
79
|
-
import {
|
80
|
-
import {
|
81
|
-
import {
|
82
|
-
import {
|
83
|
-
import {
|
84
|
-
import {
|
85
|
-
import {
|
73
|
+
import { Table as oe } from "./components/Table/Table.js";
|
74
|
+
import { ESortDirection as ee, ETableDisplayMode as te, ETableScrollButtonVariant as pe, ETableScrollIconName as ae, ETableVariant as me } from "./components/Table/constants.js";
|
75
|
+
import { useMediaQuery as fe } from "./hooks/useMediaQuery/useMediaQuery.js";
|
76
|
+
import { EMediaQuery as ne, EMinMediaQuery as le } from "./hooks/useMediaQuery/constants.js";
|
77
|
+
import { useLockBodyScroll as Ee } from "./hooks/useLockBodyScroll/useLockBodyScroll.js";
|
78
|
+
import { useInterval as Se } from "./hooks/useInterval/useInterval.js";
|
79
|
+
import { useTimer as ce } from "./hooks/useTimer/index.js";
|
80
|
+
import { useCopyToClipboard as Ie } from "./hooks/useCopyToClipboard/useCopyToClipboard.js";
|
81
|
+
import { useMergeRefs as Ve } from "./hooks/useMergeRefs/useMergeRefs.js";
|
82
|
+
import { useResizeObserver as Be } from "./hooks/useResizeObserver/useResizeObserver.js";
|
83
|
+
import { Icon as ke } from "./icons/Icon.js";
|
84
|
+
import { formating as Pe } from "./utils/index.js";
|
85
|
+
import { default as ye } from "./components/Slider/Slider.js";
|
86
|
+
import { EProgressBarPosition as Re } from "./components/Slider/constants.js";
|
87
|
+
import { parseDate as Ce } from "./utils/formating/Date.js";
|
86
88
|
import './assets/index.css';export {
|
87
|
-
|
88
|
-
|
89
|
-
|
89
|
+
Vo as Accordion,
|
90
|
+
ko as AccordionItem,
|
91
|
+
wr as Avatar,
|
90
92
|
e as Button,
|
91
|
-
|
93
|
+
lo as CheckboxMimir,
|
92
94
|
tr as Chip,
|
93
|
-
|
95
|
+
A as DatePicker,
|
94
96
|
H as Drawer,
|
95
97
|
X as Dropdown,
|
96
|
-
|
98
|
+
Bo as EAccordionSize,
|
97
99
|
Fr as EAvatarSize,
|
98
100
|
p as EButtonForm,
|
99
101
|
a as EButtonSize,
|
@@ -105,84 +107,90 @@ import './assets/index.css';export {
|
|
105
107
|
mr as EChipVariant,
|
106
108
|
K as EDrawerPosition,
|
107
109
|
Hr as EFileItemVariant,
|
108
|
-
|
109
|
-
|
110
|
-
|
110
|
+
Ir as EGosZnakSize,
|
111
|
+
gr as EGosZnakType,
|
112
|
+
ur as EInputRangeSliderBorderState,
|
111
113
|
Sr as EInputRangeSliderPositions,
|
112
|
-
|
113
|
-
|
114
|
+
E as EInputSize,
|
115
|
+
u as EInputStatus,
|
114
116
|
S as EInputVariant,
|
115
|
-
|
117
|
+
hr as ELabelPositions,
|
116
118
|
Xo as ELinkSize,
|
117
119
|
Yo as ELinkVariant,
|
118
120
|
Q as ELoaderSize,
|
119
|
-
|
120
|
-
|
121
|
+
ne as EMediaQuery,
|
122
|
+
w as EMergedButtonVariantRound,
|
121
123
|
_r as EMessageShortReplyVariant,
|
122
|
-
|
124
|
+
le as EMinMediaQuery,
|
123
125
|
Qr as EMultiSelectSearchSize,
|
124
126
|
rr as ENotificationBadgeSize,
|
125
|
-
|
127
|
+
Re as EProgressBarPosition,
|
126
128
|
xo as ESelectSearchSize,
|
127
|
-
|
129
|
+
Dr as ESkeletonVariant,
|
130
|
+
ee as ESortDirection,
|
128
131
|
oo as EStepColor,
|
129
132
|
ro as EStepsSize,
|
130
|
-
|
133
|
+
yo as ETabTrailSize,
|
134
|
+
te as ETableDisplayMode,
|
135
|
+
pe as ETableScrollButtonVariant,
|
136
|
+
ae as ETableScrollIconName,
|
137
|
+
me as ETableVariant,
|
131
138
|
So as ETagSize,
|
132
139
|
co as ETagType,
|
133
|
-
|
134
|
-
|
140
|
+
I as ETextAreaInputSize,
|
141
|
+
vo as EToastPosition,
|
135
142
|
Fo as EToastVariant,
|
136
143
|
jo as EUploaderFilesVariant,
|
137
144
|
nr as EUploaderType,
|
138
145
|
ao as EVoteSize,
|
139
146
|
cr as GosZnak,
|
140
|
-
|
147
|
+
ke as Icon,
|
141
148
|
F as Image,
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
149
|
+
l as Input,
|
150
|
+
V as InputPassword,
|
151
|
+
B as InputPhoneNumber,
|
152
|
+
sr as InputRangeSlider,
|
146
153
|
Ko as Link,
|
147
154
|
jr as ListFiles,
|
148
155
|
Kr as ListPhotos,
|
149
156
|
N as Loader,
|
150
|
-
|
157
|
+
D as MergedButton,
|
151
158
|
Xr as MessageShortReply,
|
152
159
|
Nr as MultiSelectSearch,
|
153
160
|
$o as NotificationBadge,
|
154
|
-
|
155
|
-
|
156
|
-
|
161
|
+
b as OtpInput,
|
162
|
+
Ro as Pagination,
|
163
|
+
L as RadioGroup,
|
157
164
|
io as SelectSearch,
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
165
|
+
br as SkeletonBrick,
|
166
|
+
Ar as SkeletonCircle,
|
167
|
+
Lr as SkeletonText,
|
168
|
+
ye as Slider,
|
162
169
|
j as SliderLazy,
|
163
170
|
_ as Steps,
|
164
|
-
|
165
|
-
|
166
|
-
|
171
|
+
zr as Switcher,
|
172
|
+
Po as TabTrail,
|
173
|
+
oe as Table,
|
174
|
+
Eo as Tag,
|
167
175
|
c as TextArea,
|
168
|
-
|
169
|
-
|
170
|
-
|
176
|
+
Io as Timer,
|
177
|
+
Co as ToastProvider,
|
178
|
+
Mr as TwinSwitcher,
|
171
179
|
fr as UniversalUploader,
|
172
180
|
Ho as Uploader,
|
173
181
|
Qo as UploaderFiles,
|
174
182
|
No as UploaderPhotos,
|
175
183
|
to as Vote,
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
184
|
+
Pe as formating,
|
185
|
+
k as getMaskedInputPhoneValue,
|
186
|
+
M as getUnmaskedInputValue,
|
187
|
+
Ce as parseDate,
|
188
|
+
Ie as useCopyToClipboard,
|
189
|
+
Se as useInterval,
|
190
|
+
Ee as useLockBodyScroll,
|
191
|
+
fe as useMediaQuery,
|
192
|
+
Ve as useMergeRefs,
|
193
|
+
Be as useResizeObserver,
|
194
|
+
ce as useTimer,
|
195
|
+
Uo as useToast
|
188
196
|
};
|