@alphakits/ui 2.0.0 → 2.0.1
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/calendar/component.js +1 -1
- package/dist/calendar/component.js.map +1 -1
- package/dist/calendar/components/days-table/component.d.ts +1 -1
- package/dist/calendar/components/days-table/component.js +40 -44
- package/dist/calendar/components/days-table/component.js.map +1 -1
- package/dist/calendar/components/months-table//321/201omponent.d.ts +1 -1
- package/dist/calendar/components/months-table//321/201omponent.js +1 -1
- package/dist/calendar/components/months-table//321/201omponent.js.map +1 -1
- package/dist/calendar/components/years-table//321/201omponent.js +1 -1
- package/dist/calendar/components/years-table//321/201omponent.js.map +1 -1
- package/dist/calendar/use-calendar.js +1 -1
- package/dist/calendar/use-calendar.js.map +1 -1
- package/dist/calendar/utils.d.ts +2 -2
- package/dist/calendar/utils.js +54 -54
- package/dist/calendar/utils.js.map +1 -1
- package/dist/calendar-input/component.js +2 -3
- package/dist/calendar-input/component.js.map +1 -1
- package/dist/calendar-input/utils.js +5 -5
- package/dist/calendar-input/utils.js.map +1 -1
- package/dist/date-switcher/component.js +1 -1
- package/dist/date-switcher/component.js.map +1 -1
- package/dist/form/component.js +79 -92
- package/dist/form/component.js.map +1 -1
- package/dist/formik/index.d.ts +5 -0
- package/dist/formik/index.js +15 -0
- package/dist/formik/index.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +321 -270
- package/dist/index.js.map +1 -1
- package/dist/utils/date/index.d.ts +73 -0
- package/dist/utils/date/index.js +224 -0
- package/dist/utils/date/index.js.map +1 -0
- package/dist/utils/format-date/index.d.ts +16 -16
- package/dist/utils/format-date/index.js +36 -42
- package/dist/utils/format-date/index.js.map +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +51 -12
- package/dist/utils/index.js.map +1 -1
- package/package.json +1 -3
package/dist/index.js
CHANGED
|
@@ -1,279 +1,330 @@
|
|
|
1
|
-
import { Amount as
|
|
2
|
-
import { AmountInput as
|
|
3
|
-
import { Avatar as
|
|
4
|
-
import { BackButton as
|
|
5
|
-
import { Badge as
|
|
6
|
-
import { BaseCard as
|
|
7
|
-
import { BottomSheet as
|
|
8
|
-
import { Box as
|
|
9
|
-
import { Button as
|
|
10
|
-
import { ButtonArrow as
|
|
11
|
-
import { Calendar as
|
|
12
|
-
import { usePeriod as
|
|
13
|
-
import { useCalendar as
|
|
14
|
-
import { DAYS_IN_WEEK as L, MONTHS_IN_YEAR as
|
|
15
|
-
import { CalendarInput as
|
|
16
|
-
import { DATE_FORMAT as
|
|
17
|
-
import { Card as
|
|
18
|
-
import { Cell as
|
|
19
|
-
import { Checkbox as
|
|
20
|
-
import { CheckboxGroup as
|
|
21
|
-
import { CheckboxGroups as
|
|
22
|
-
import { CollapsableRow as
|
|
23
|
-
import { Collapse as
|
|
24
|
-
import { CopyButton as
|
|
25
|
-
import { FormattedDate as
|
|
26
|
-
import { DateSwitcher as
|
|
27
|
-
import { DecoratedItem as
|
|
1
|
+
import { Amount as m } from "./amount/component.js";
|
|
2
|
+
import { AmountInput as a } from "./amount-input/component.js";
|
|
3
|
+
import { Avatar as s } from "./avatar/component.js";
|
|
4
|
+
import { BackButton as n } from "./back-button/component.js";
|
|
5
|
+
import { Badge as l } from "./badge/component.js";
|
|
6
|
+
import { BaseCard as S } from "./base-card/component.js";
|
|
7
|
+
import { BottomSheet as T } from "./bottom-sheet/component.js";
|
|
8
|
+
import { Box as I, Radiuses as h, Spaces as A } from "./box/component.js";
|
|
9
|
+
import { Button as k } from "./button/component.js";
|
|
10
|
+
import { ButtonArrow as E } from "./button-arrow/component.js";
|
|
11
|
+
import { Calendar as _ } from "./calendar/component.js";
|
|
12
|
+
import { usePeriod as P } from "./calendar/use-period.js";
|
|
13
|
+
import { useCalendar as B } from "./calendar/use-calendar.js";
|
|
14
|
+
import { DAYS_IN_WEEK as L, MONTHS_IN_YEAR as y, SUNDAY_INDEX as W, dateInLimits as b, limitDate as N, monthName as Y, russianWeekDay as v } from "./calendar/utils.js";
|
|
15
|
+
import { CalendarInput as H } from "./calendar-input/component.js";
|
|
16
|
+
import { DATE_FORMAT as U, DATE_MASK as q, IS_BROWSER as K, NATIVE_DATE_FORMAT as V, SUPPORTS_INPUT_TYPE_DATE as z, isCompleteDateInput as j, isInputDateSupported as J, parseDateString as X } from "./calendar-input/utils.js";
|
|
17
|
+
import { Card as Z } from "./card/component.js";
|
|
18
|
+
import { Cell as oo } from "./cell/component.js";
|
|
19
|
+
import { Checkbox as eo } from "./checkbox/component.js";
|
|
20
|
+
import { CheckboxGroup as po } from "./checkbox-group/component.js";
|
|
21
|
+
import { CheckboxGroups as fo } from "./checkbox-lists/component.js";
|
|
22
|
+
import { CollapsableRow as xo } from "./collapsable-row/component.js";
|
|
23
|
+
import { Collapse as io } from "./collapse/component.js";
|
|
24
|
+
import { CopyButton as uo } from "./copy-button/component.js";
|
|
25
|
+
import { FormattedDate as So } from "./date/component.js";
|
|
26
|
+
import { DateSwitcher as To } from "./date-switcher/component.js";
|
|
27
|
+
import { DecoratedItem as Io } from "./decorated-item/component.js";
|
|
28
28
|
import { Divider as Ao } from "./divider/component.js";
|
|
29
|
-
import { Dot as
|
|
30
|
-
import { EmptyPage as
|
|
31
|
-
import { Flex as
|
|
32
|
-
import { FlexColumns as
|
|
33
|
-
import { Footer as
|
|
29
|
+
import { Dot as ko } from "./dot/component.js";
|
|
30
|
+
import { EmptyPage as Eo } from "./empty-page/component.js";
|
|
31
|
+
import { Flex as _o } from "./flex/component.js";
|
|
32
|
+
import { FlexColumns as Po } from "./flex-columns/component.js";
|
|
33
|
+
import { Footer as Bo } from "./footer/component.js";
|
|
34
34
|
import { FiltersForm as Lo } from "./form/templates/filters-form/index.js";
|
|
35
|
-
import { FormControl as
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
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 {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
35
|
+
import { FormControl as Wo } from "./form-control/component.js";
|
|
36
|
+
import { ErrorMessage as No, FastField as Yo, FieldArray as vo, Form as Go, Formik as Ho, connect as wo, useField as Uo, useFormik as qo, useFormikContext as Ko, withFormik as Vo } from "formik";
|
|
37
|
+
import { Grid as jo } from "./grid/component.js";
|
|
38
|
+
import { HeaderSearch as Xo } from "./header-search/component.js";
|
|
39
|
+
import { useClickOutside as Zo } from "./hooks/useClickOutside/index.js";
|
|
40
|
+
import { useFocus as or } from "./hooks/useFocus/index.js";
|
|
41
|
+
import { usePrevious as er } from "./hooks/usePrevious/index.js";
|
|
42
|
+
import { useCrudFormRequests as pr } from "./hooks/use-crud-form-requests/index.js";
|
|
43
|
+
import { useGetOne as fr } from "./hooks/use-get-one/index.js";
|
|
44
|
+
import { IconButton as xr } from "./icon-button/component.js";
|
|
45
|
+
import { Image as ir } from "./image/component.js";
|
|
46
|
+
import { textSizes as ur } from "./image/types.js";
|
|
47
|
+
import { ImageGallery as dr } from "./image-gallery/component.js";
|
|
48
|
+
import { ImageUploader as Or } from "./image-uploader/component.js";
|
|
49
|
+
import { InfoBlockHeader as cr } from "./info-block-header/component.js";
|
|
50
|
+
import { InfoBlockItem as hr } from "./info-block-item/component.js";
|
|
51
|
+
import { InfoBlockWrapper as Dr } from "./info-block-wrapper/component.js";
|
|
52
|
+
import { Input as Cr } from "./input/component.js";
|
|
53
|
+
import { InputAutocomplete as Mr } from "./input-autocomplete/component.js";
|
|
54
|
+
import { InputGhost as gr } from "./input-ghost/component.js";
|
|
55
|
+
import { Link as Rr } from "./link/component.js";
|
|
56
|
+
import { ListAllert as Fr } from "./list-allert/component.js";
|
|
57
|
+
import { Loader as yr } from "./loader/component.js";
|
|
58
|
+
import { MaskedInput as br, PLACEHOLDER_CHAR as Nr } from "./masked-input/component.js";
|
|
59
|
+
import { Menu as vr } from "./menu/component.js";
|
|
60
|
+
import { Message as Hr } from "./message/component.js";
|
|
61
|
+
import { ModalContext as Ur, ModalProvider as qr } from "./modal/context.js";
|
|
62
|
+
import { Mq as Vr } from "./mq/component.js";
|
|
63
|
+
import { useMatchMedia as jr } from "./mq/use-match-media.js";
|
|
64
|
+
import { Notification as Xr } from "./notification/component.js";
|
|
65
|
+
import { Padding as Zr } from "./padding/component.js";
|
|
66
|
+
import { PageContainer as oe } from "./page-container/component.js";
|
|
67
|
+
import { PageLoading as ee } from "./page-loading/component.js";
|
|
68
|
+
import { PageWithControls as pe } from "./page-with-controls/component.js";
|
|
69
|
+
import { PickerButton as fe } from "./picker-button/component.js";
|
|
70
|
+
import { LabeledButton as xe } from "./picker-button/common/labeled-button/index.js";
|
|
71
|
+
import { Popover as ie } from "./popover/component.js";
|
|
72
|
+
import { Portal as ue } from "./portal/component.js";
|
|
73
|
+
import { ProgressBar as de } from "./progress-bar/component.js";
|
|
74
|
+
import { ProgressIndex as Oe } from "./progress-index/component.js";
|
|
75
|
+
import { Radio as ce } from "./radio/component.js";
|
|
76
|
+
import { RadioGroup as he } from "./radio-group/component.js";
|
|
77
|
+
import { RadioGroups as De } from "./radio-groups/component.js";
|
|
78
|
+
import { SectionWrapper as Ce } from "./section-wrapper/component.js";
|
|
79
|
+
import { Select as Me } from "./select/component.js";
|
|
80
|
+
import { Arrow as ge } from "./select/components/arrow/component.js";
|
|
81
|
+
import { BaseSelect as Re } from "./select/components/base-select/component.js";
|
|
82
|
+
import "react/jsx-runtime";
|
|
83
|
+
import "react";
|
|
84
|
+
import "classnames";
|
|
85
|
+
import { convertToOptions as Fe, isGroup as Le, isOptionShape as ye, joinOptions as We, lastIndexOf as be, processOptions as Ne, useVisibleOptions as Ye } from "./select/utils.js";
|
|
86
|
+
import { Optgroup as Ge } from "./select/components/optgroup/component.js";
|
|
87
|
+
import { Option as we } from "./select/components/option/component.js";
|
|
88
|
+
import { OptionsList as qe } from "./select/components/options-list/component.js";
|
|
89
|
+
import { VirtualOptionsList as Ve } from "./select/components/virtual-options-list/component.js";
|
|
90
|
+
import { useSelectWithLoading as je } from "./select/presets/use-select-with-loading/hook.js";
|
|
91
|
+
import { useLazyLoading as Xe } from "./select/presets/use-lazy-loading/index.js";
|
|
92
|
+
import { Sidepanel as Ze } from "./sidepanel/component.js";
|
|
93
|
+
import { SidepanelHeader as ot } from "./sidepanel-header/component.js";
|
|
94
|
+
import { Skeleton as et } from "./skeleton/component.js";
|
|
95
|
+
import { Space as pt } from "./space/component.js";
|
|
96
|
+
import { Spinner as ft } from "./spinner/component.js";
|
|
97
|
+
import { StackingContext as xt, stackingOrder as st } from "./stack/context.js";
|
|
98
|
+
import { Stack as nt } from "./stack/component.js";
|
|
99
|
+
import { Status as lt } from "./status/component.js";
|
|
100
|
+
import { SteppedProgressBar as St, useSteps as Ot } from "./stepped-progress-bar/index.js";
|
|
101
|
+
import { Sticker as ct } from "./sticker/component.js";
|
|
102
|
+
import { SuffixInput as ht } from "./suffix-input/component.js";
|
|
103
|
+
import { SuperListHeader as Dt } from "./super-list-header/component.js";
|
|
104
|
+
import { SuperListItem as Ct } from "./super-list-item/component.js";
|
|
105
|
+
import { Switch as Mt } from "./switch/component.js";
|
|
106
|
+
import { Table as gt } from "./table/component.js";
|
|
107
|
+
import { TableCell as Rt } from "./table/components/cell/component.js";
|
|
108
|
+
import { TableStatus as Ft } from "./table-status/component.js";
|
|
109
|
+
import { Tag as yt } from "./tag/component.js";
|
|
110
|
+
import { TagsList as bt } from "./tags-list/component.js";
|
|
111
|
+
import { Textarea as Yt } from "./textarea/component.js";
|
|
112
|
+
import { LOACAL_STORAGE_THEME_KEY as Gt, STYLE_TAG_ID as Ht, THEME as wt, THEME_DATA_ATTR as Ut, ThemeProvider as qt, useTheme as Kt } from "./theme-provider/component.js";
|
|
113
|
+
import { defaultThemes as zt } from "./theme-provider/default-themes.js";
|
|
114
|
+
import { Toast as Jt } from "./toast/component.js";
|
|
115
|
+
import { ToastNotifier as Qt } from "./toast-notifier/component.js";
|
|
116
|
+
import { ToastPlate as $t } from "./toast-plate/component.js";
|
|
117
|
+
import { Tooltip as rp } from "./tooltip/component.js";
|
|
118
|
+
import { Typography as tp } from "./typography/component.js";
|
|
119
|
+
import { add as mp, addDays as fp, addMonths as ap, addYears as xp, eachDayOfInterval as sp, eachMonthOfInterval as ip, eachYearOfInterval as np, endOfDay as up, endOfISOWeek as lp, endOfWeek as dp, endOfYear as Sp, format as Op, isAfter as Tp, isBefore as cp, isEqual as Ip, isLastDayOfMonth as hp, isSameDay as Ap, isSameMonth as Dp, isSameYear as kp, isThisMonth as Cp, isThisYear as Ep, isToday as Mp, isWithinInterval as _p, lastDayOfMonth as gp, max as Pp, min as Rp, parse as Bp, parseISO as Fp, startOfDay as Lp, startOfISOWeek as yp, startOfMonth as Wp, startOfWeek as bp, startOfYear as Np, subDays as Yp, subMonths as vp, subWeeks as Gp, subYears as Hp, weekDaysShort as wp } from "./utils/date/index.js";
|
|
120
|
+
import { AMOUNT_MAJOR_MINOR_PARTS_SEPARATOR as qp, THINSP as Kp, formatAmount as Vp } from "./utils/format-amount/util.js";
|
|
121
|
+
import { showError as jp, showSuccess as Jp } from "./utils/show-toast/index.js";
|
|
122
|
+
import { splitAmount as Qp } from "./utils/split-amount/util.js";
|
|
123
|
+
import { formatDate as $p, locales as om } from "./utils/format-date/index.js";
|
|
124
|
+
import { WelcomeContainer as em } from "./welcome-layout/component.js";
|
|
125
|
+
import { withSuffix as pm } from "./with-suffix/component.js";
|
|
122
126
|
export {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
127
|
+
qp as AMOUNT_MAJOR_MINOR_PARTS_SEPARATOR,
|
|
128
|
+
m as Amount,
|
|
129
|
+
a as AmountInput,
|
|
130
|
+
ge as Arrow,
|
|
131
|
+
s as Avatar,
|
|
132
|
+
n as BackButton,
|
|
133
|
+
l as Badge,
|
|
134
|
+
S as BaseCard,
|
|
135
|
+
Re as BaseSelect,
|
|
136
|
+
T as BottomSheet,
|
|
137
|
+
I as Box,
|
|
138
|
+
k as Button,
|
|
139
|
+
E as ButtonArrow,
|
|
140
|
+
_ as Calendar,
|
|
141
|
+
H as CalendarInput,
|
|
142
|
+
Z as Card,
|
|
143
|
+
oo as Cell,
|
|
144
|
+
eo as Checkbox,
|
|
145
|
+
po as CheckboxGroup,
|
|
146
|
+
fo as CheckboxGroups,
|
|
147
|
+
xo as CollapsableRow,
|
|
148
|
+
io as Collapse,
|
|
149
|
+
uo as CopyButton,
|
|
150
|
+
U as DATE_FORMAT,
|
|
151
|
+
q as DATE_MASK,
|
|
148
152
|
L as DAYS_IN_WEEK,
|
|
149
|
-
|
|
150
|
-
|
|
153
|
+
To as DateSwitcher,
|
|
154
|
+
Io as DecoratedItem,
|
|
151
155
|
Ao as Divider,
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
156
|
+
ko as Dot,
|
|
157
|
+
Eo as EmptyPage,
|
|
158
|
+
No as ErrorMessage,
|
|
159
|
+
Yo as FastField,
|
|
160
|
+
vo as FieldArray,
|
|
155
161
|
Lo as FiltersForm,
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
Ho as
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
162
|
+
_o as Flex,
|
|
163
|
+
Po as FlexColumns,
|
|
164
|
+
Bo as Footer,
|
|
165
|
+
Go as Form,
|
|
166
|
+
Wo as FormControl,
|
|
167
|
+
So as FormattedDate,
|
|
168
|
+
Ho as Formik,
|
|
169
|
+
jo as Grid,
|
|
170
|
+
Xo as HeaderSearch,
|
|
171
|
+
K as IS_BROWSER,
|
|
172
|
+
xr as IconButton,
|
|
173
|
+
ir as Image,
|
|
174
|
+
dr as ImageGallery,
|
|
175
|
+
Or as ImageUploader,
|
|
176
|
+
cr as InfoBlockHeader,
|
|
177
|
+
hr as InfoBlockItem,
|
|
178
|
+
Dr as InfoBlockWrapper,
|
|
179
|
+
Cr as Input,
|
|
180
|
+
Mr as InputAutocomplete,
|
|
181
|
+
gr as InputGhost,
|
|
182
|
+
Gt as LOACAL_STORAGE_THEME_KEY,
|
|
183
|
+
xe as LabeledButton,
|
|
184
|
+
Rr as Link,
|
|
185
|
+
Fr as ListAllert,
|
|
186
|
+
yr as Loader,
|
|
187
|
+
y as MONTHS_IN_YEAR,
|
|
188
|
+
br as MaskedInput,
|
|
189
|
+
vr as Menu,
|
|
190
|
+
Hr as Message,
|
|
191
|
+
Ur as ModalContext,
|
|
192
|
+
qr as ModalProvider,
|
|
193
|
+
Vr as Mq,
|
|
194
|
+
V as NATIVE_DATE_FORMAT,
|
|
195
|
+
Xr as Notification,
|
|
196
|
+
Ge as Optgroup,
|
|
197
|
+
we as Option,
|
|
198
|
+
qe as OptionsList,
|
|
199
|
+
Nr as PLACEHOLDER_CHAR,
|
|
200
|
+
Zr as Padding,
|
|
201
|
+
oe as PageContainer,
|
|
202
|
+
ee as PageLoading,
|
|
203
|
+
pe as PageWithControls,
|
|
204
|
+
fe as PickerButton,
|
|
205
|
+
ie as Popover,
|
|
206
|
+
ue as Portal,
|
|
207
|
+
de as ProgressBar,
|
|
208
|
+
Oe as ProgressIndex,
|
|
209
|
+
ce as Radio,
|
|
210
|
+
he as RadioGroup,
|
|
211
|
+
De as RadioGroups,
|
|
212
|
+
h as Radiuses,
|
|
213
|
+
Ht as STYLE_TAG_ID,
|
|
214
|
+
W as SUNDAY_INDEX,
|
|
215
|
+
z as SUPPORTS_INPUT_TYPE_DATE,
|
|
216
|
+
Ce as SectionWrapper,
|
|
217
|
+
Me as Select,
|
|
218
|
+
Ze as Sidepanel,
|
|
219
|
+
ot as SidepanelHeader,
|
|
220
|
+
et as Skeleton,
|
|
221
|
+
pt as Space,
|
|
214
222
|
A as Spaces,
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
223
|
+
ft as Spinner,
|
|
224
|
+
nt as Stack,
|
|
225
|
+
xt as StackingContext,
|
|
226
|
+
lt as Status,
|
|
227
|
+
St as SteppedProgressBar,
|
|
228
|
+
ct as Sticker,
|
|
229
|
+
ht as SuffixInput,
|
|
230
|
+
Dt as SuperListHeader,
|
|
231
|
+
Ct as SuperListItem,
|
|
232
|
+
Mt as Switch,
|
|
233
|
+
wt as THEME,
|
|
234
|
+
Ut as THEME_DATA_ATTR,
|
|
235
|
+
Kp as THINSP,
|
|
236
|
+
gt as Table,
|
|
237
|
+
Rt as TableCell,
|
|
238
|
+
Ft as TableStatus,
|
|
239
|
+
yt as Tag,
|
|
240
|
+
bt as TagsList,
|
|
241
|
+
Yt as Textarea,
|
|
242
|
+
qt as ThemeProvider,
|
|
243
|
+
Jt as Toast,
|
|
244
|
+
Qt as ToastNotifier,
|
|
245
|
+
$t as ToastPlate,
|
|
246
|
+
rp as Tooltip,
|
|
247
|
+
tp as Typography,
|
|
248
|
+
Ve as VirtualOptionsList,
|
|
249
|
+
em as WelcomeContainer,
|
|
250
|
+
mp as add,
|
|
251
|
+
fp as addDays,
|
|
252
|
+
ap as addMonths,
|
|
253
|
+
xp as addYears,
|
|
254
|
+
wo as connect,
|
|
255
|
+
Fe as convertToOptions,
|
|
256
|
+
b as dateInLimits,
|
|
257
|
+
zt as defaultThemes,
|
|
258
|
+
sp as eachDayOfInterval,
|
|
259
|
+
ip as eachMonthOfInterval,
|
|
260
|
+
np as eachYearOfInterval,
|
|
261
|
+
up as endOfDay,
|
|
262
|
+
lp as endOfISOWeek,
|
|
263
|
+
dp as endOfWeek,
|
|
264
|
+
Sp as endOfYear,
|
|
265
|
+
Op as format,
|
|
266
|
+
Vp as formatAmount,
|
|
267
|
+
$p as formatDate,
|
|
268
|
+
Tp as isAfter,
|
|
269
|
+
cp as isBefore,
|
|
270
|
+
j as isCompleteDateInput,
|
|
271
|
+
Ip as isEqual,
|
|
272
|
+
Le as isGroup,
|
|
273
|
+
J as isInputDateSupported,
|
|
274
|
+
hp as isLastDayOfMonth,
|
|
275
|
+
ye as isOptionShape,
|
|
276
|
+
Ap as isSameDay,
|
|
277
|
+
Dp as isSameMonth,
|
|
278
|
+
kp as isSameYear,
|
|
279
|
+
Cp as isThisMonth,
|
|
280
|
+
Ep as isThisYear,
|
|
281
|
+
Mp as isToday,
|
|
282
|
+
_p as isWithinInterval,
|
|
283
|
+
We as joinOptions,
|
|
284
|
+
gp as lastDayOfMonth,
|
|
285
|
+
be as lastIndexOf,
|
|
286
|
+
N as limitDate,
|
|
287
|
+
om as locales,
|
|
288
|
+
Pp as max,
|
|
289
|
+
Rp as min,
|
|
290
|
+
Y as monthName,
|
|
291
|
+
Bp as parse,
|
|
292
|
+
X as parseDateString,
|
|
293
|
+
Fp as parseISO,
|
|
294
|
+
Ne as processOptions,
|
|
295
|
+
v as russianWeekDay,
|
|
296
|
+
jp as showError,
|
|
297
|
+
Jp as showSuccess,
|
|
298
|
+
Qp as splitAmount,
|
|
299
|
+
st as stackingOrder,
|
|
300
|
+
Lp as startOfDay,
|
|
301
|
+
yp as startOfISOWeek,
|
|
302
|
+
Wp as startOfMonth,
|
|
303
|
+
bp as startOfWeek,
|
|
304
|
+
Np as startOfYear,
|
|
305
|
+
Yp as subDays,
|
|
306
|
+
vp as subMonths,
|
|
307
|
+
Gp as subWeeks,
|
|
308
|
+
Hp as subYears,
|
|
309
|
+
ur as textSizes,
|
|
310
|
+
B as useCalendar,
|
|
311
|
+
Zo as useClickOutside,
|
|
312
|
+
pr as useCrudFormRequests,
|
|
313
|
+
Uo as useField,
|
|
314
|
+
or as useFocus,
|
|
315
|
+
qo as useFormik,
|
|
316
|
+
Ko as useFormikContext,
|
|
317
|
+
fr as useGetOne,
|
|
318
|
+
Xe as useLazyLoading,
|
|
319
|
+
jr as useMatchMedia,
|
|
320
|
+
P as usePeriod,
|
|
321
|
+
er as usePrevious,
|
|
322
|
+
je as useSelectWithLoading,
|
|
323
|
+
Ot as useSteps,
|
|
324
|
+
Kt as useTheme,
|
|
325
|
+
Ye as useVisibleOptions,
|
|
326
|
+
wp as weekDaysShort,
|
|
327
|
+
Vo as withFormik,
|
|
328
|
+
pm as withSuffix
|
|
278
329
|
};
|
|
279
330
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|