@alphakits/ui 2.0.7 → 2.0.8

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.
Files changed (49) hide show
  1. package/dist/badge/component.d.ts +1 -1
  2. package/dist/badge/component.js +19 -19
  3. package/dist/badge/component.js.map +1 -1
  4. package/dist/badge/index.module.css +1 -1
  5. package/dist/badge/index.module.css.js +46 -32
  6. package/dist/badge/index.module.css.js.map +1 -1
  7. package/dist/cell/base/component.d.ts +6 -0
  8. package/dist/cell/base/component.js +69 -37
  9. package/dist/cell/base/component.js.map +1 -1
  10. package/dist/cell/base/index.module.css +1 -1
  11. package/dist/cell/base/index.module.css.js +12 -8
  12. package/dist/cell/base/index.module.css.js.map +1 -1
  13. package/dist/cell/pure/component.d.ts +2 -0
  14. package/dist/cell/pure/component.js +16 -14
  15. package/dist/cell/pure/component.js.map +1 -1
  16. package/dist/cell/pure/index.module.css +1 -1
  17. package/dist/cell/pure/index.module.css.js +16 -14
  18. package/dist/cell/pure/index.module.css.js.map +1 -1
  19. package/dist/filter-tag/component.d.ts +12 -0
  20. package/dist/filter-tag/component.js +38 -0
  21. package/dist/filter-tag/component.js.map +1 -0
  22. package/dist/filter-tag/index.d.ts +1 -0
  23. package/dist/filter-tag/index.js +5 -0
  24. package/dist/filter-tag/index.js.map +1 -0
  25. package/dist/filter-tag/index.module.css +1 -0
  26. package/dist/filter-tag/index.module.css.js +29 -0
  27. package/dist/filter-tag/index.module.css.js.map +1 -0
  28. package/dist/index.d.ts +1 -0
  29. package/dist/index.js +268 -266
  30. package/dist/index.js.map +1 -1
  31. package/dist/table/columns.js +2 -4
  32. package/dist/table/columns.js.map +1 -1
  33. package/dist/table/components/cell/component.d.ts +1 -0
  34. package/dist/table/components/cell/component.js +42 -35
  35. package/dist/table/components/cell/component.js.map +1 -1
  36. package/dist/table/components/cell/index.module.css +1 -1
  37. package/dist/table/components/cell/index.module.css.js +12 -8
  38. package/dist/table/components/cell/index.module.css.js.map +1 -1
  39. package/dist/table/components/cells/index.module.css +1 -1
  40. package/dist/table/components/table-header/index.module.css +1 -1
  41. package/dist/table/index.module.css.js +9 -6
  42. package/dist/table/index.module.css.js.map +1 -1
  43. package/dist/table/table.d.ts +2 -1
  44. package/dist/table/table.js +107 -101
  45. package/dist/table/table.js.map +1 -1
  46. package/dist/table/utils/prepare-rows.d.ts +2 -1
  47. package/dist/table/utils/prepare-rows.js +60 -27
  48. package/dist/table/utils/prepare-rows.js.map +1 -1
  49. package/package.json +1 -1
@@ -0,0 +1 @@
1
+ .component_1UiS{--filter-tag-tone: var(--color-graphic-accent);--filter-tag-bg: var(--color-bg-primary);--filter-tag-border: color-mix(in srgb, var(--color-border-secondary), transparent 45%);--filter-tag-badge-bg: color-mix(in srgb, var(--filter-tag-tone) 18%, transparent);display:inline-flex;align-items:center;gap:var(--gap-xs);height:36px;padding:0 var(--gap-s);border-radius:var(--radius-s);border:1px solid var(--filter-tag-border);background:var(--filter-tag-bg);color:var(--filter-tag-tone);white-space:nowrap;cursor:pointer;box-sizing:border-box;transition:border-color .15s ease-in-out,background-color .15s ease-in-out,box-shadow .15s ease-in-out}.component_1UiS:hover{background:color-mix(in srgb,var(--filter-tag-bg),var(--filter-tag-tone) 3%)}.label_v7es{font-size:14px;line-height:20px;font-weight:500;letter-spacing:0}.badge_OoFI{background:var(--filter-tag-badge-bg)!important;color:var(--filter-tag-tone)!important;font-weight:600}.active_psQR{--filter-tag-bg: color-mix(in srgb, var(--filter-tag-tone) 13%, var(--color-bg-primary));--filter-tag-border: color-mix(in srgb, var(--filter-tag-tone) 62%, transparent);--filter-tag-badge-bg: color-mix(in srgb, var(--filter-tag-tone) 23%, transparent);box-shadow:0 0 0 1px color-mix(in srgb,var(--filter-tag-tone) 22%,transparent)}.green_PTzr{--filter-tag-tone: var(--color-graphic-positive)}.orange_UyUe{--filter-tag-tone: var(--color-graphic-attention)}.red_Vd6j{--filter-tag-tone: var(--color-graphic-negative)}.blue_L0Zl{--filter-tag-tone: var(--color-graphic-accent)}.grey_23r0{--filter-tag-tone: var(--color-graphic-secondary)}.teal_nwCD{--filter-tag-tone: var(--color-status-teal)}.purple_LawE{--filter-tag-tone: var(--color-status-purple)}
@@ -0,0 +1,29 @@
1
+ import './index.module.css';
2
+ const e = "component_1UiS", n = "label_v7es", t = "badge_OoFI", o = "active_psQR", a = "green_PTzr", c = "orange_UyUe", l = "red_Vd6j", r = "blue_L0Zl", s = "grey_23r0", g = "teal_nwCD", p = "purple_LawE", _ = {
3
+ component: e,
4
+ label: n,
5
+ badge: t,
6
+ active: o,
7
+ green: a,
8
+ orange: c,
9
+ red: l,
10
+ blue: r,
11
+ grey: s,
12
+ teal: g,
13
+ purple: p
14
+ };
15
+ export {
16
+ o as active,
17
+ t as badge,
18
+ r as blue,
19
+ e as component,
20
+ _ as default,
21
+ a as green,
22
+ s as grey,
23
+ n as label,
24
+ c as orange,
25
+ p as purple,
26
+ l as red,
27
+ g as teal
28
+ };
29
+ //# sourceMappingURL=index.module.css.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.module.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
package/dist/index.d.ts CHANGED
@@ -24,6 +24,7 @@ export * from './decorated-item';
24
24
  export * from './divider';
25
25
  export * from './dot';
26
26
  export * from './empty-page';
27
+ export * from './filter-tag';
27
28
  export * from './flex';
28
29
  export * from './flex-columns';
29
30
  export * from './footer';
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import { BackButton as x } from "./back-button/component.js";
5
5
  import { Badge as i } from "./badge/component.js";
6
6
  import { BaseCard as u } from "./base-card/component.js";
7
7
  import { BottomSheet as d } from "./bottom-sheet/component.js";
8
- import { Box as c, Radiuses as O, Spaces as T } from "./box/component.js";
8
+ import { Box as T, Radiuses as c, Spaces as O } from "./box/component.js";
9
9
  import { Button as h } from "./button/component.js";
10
10
  import { ButtonArrow as D } from "./button-arrow/component.js";
11
11
  import { Calendar as C } from "./calendar/component.js";
@@ -24,118 +24,119 @@ import { Collapse as ao } from "./collapse/component.js";
24
24
  import { CopyButton as so } from "./copy-button/component.js";
25
25
  import { FormattedDate as no } from "./date/component.js";
26
26
  import { DateSwitcher as lo } from "./date-switcher/component.js";
27
- import { DecoratedItem as co } from "./decorated-item/component.js";
28
- import { Divider as To } from "./divider/component.js";
27
+ import { DecoratedItem as To } from "./decorated-item/component.js";
28
+ import { Divider as Oo } from "./divider/component.js";
29
29
  import { Dot as ho } from "./dot/component.js";
30
30
  import { EmptyPage as Do } from "./empty-page/component.js";
31
- import { Flex as Co } from "./flex/component.js";
32
- import { FlexColumns as Mo } from "./flex-columns/component.js";
33
- import { Footer as _o } from "./footer/component.js";
34
- import { FiltersForm as Fo } from "./form/templates/filters-form/index.js";
35
- import { FormControl as Bo } from "./form-control/component.js";
36
- import { ErrorMessage as yo, FastField as bo, Field as Wo, FieldArray as No, Form as Yo, Formik as vo, connect as Go, useField as Ho, useFormik as wo, useFormikContext as Uo, withFormik as qo } from "formik";
37
- import { Grid as Ko } from "./grid/component.js";
38
- import { HeaderSearch as jo } from "./header-search/component.js";
39
- import { useClickOutside as Xo } from "./hooks/useClickOutside/index.js";
40
- import { useFocus as Zo } from "./hooks/useFocus/index.js";
41
- import { usePrevious as or } from "./hooks/usePrevious/index.js";
42
- import { useCrudFormRequests as er } from "./hooks/use-crud-form-requests/index.js";
43
- import { useGetOne as pr } from "./hooks/use-get-one/index.js";
44
- import { IconButton as fr } from "./icon-button/component.js";
45
- import { Image as xr } from "./image/component.js";
46
- import { textSizes as ir } from "./image/types.js";
47
- import { ImageGallery as ur } from "./image-gallery/component.js";
48
- import { ImageUploader as dr } from "./image-uploader/component.js";
49
- import { InfoBlockHeader as cr } from "./info-block-header/component.js";
50
- import { InfoBlockItem as Tr } from "./info-block-item/component.js";
51
- import { InfoBlockWrapper as hr } from "./info-block-wrapper/component.js";
52
- import { Input as Dr } from "./input/component.js";
53
- import { InputAutocomplete as Cr } from "./input-autocomplete/component.js";
54
- import { InputGhost as Mr } from "./input-ghost/component.js";
55
- import { Link as _r } from "./link/component.js";
56
- import { ListAllert as Fr } from "./list-allert/component.js";
57
- import { Loader as Br } from "./loader/component.js";
58
- import { MaskedInput as yr, PLACEHOLDER_CHAR as br } from "./masked-input/component.js";
59
- import { Menu as Nr } from "./menu/component.js";
60
- import { Message as vr } from "./message/component.js";
61
- import { ModalContext as Hr, ModalProvider as wr } from "./modal/context.js";
62
- import { Mq as qr } from "./mq/component.js";
63
- import { useMatchMedia as Kr } from "./mq/use-match-media.js";
64
- import { Notification as jr } from "./notification/component.js";
65
- import { Padding as Xr } from "./padding/component.js";
66
- import { PageContainer as Zr } from "./page-container/component.js";
67
- import { PageLoading as oe } from "./page-loading/component.js";
68
- import { PageWithControls as ee } from "./page-with-controls/component.js";
69
- import { PickerButton as pe } from "./picker-button/component.js";
70
- import { LabeledButton as fe } from "./picker-button/common/labeled-button/index.js";
71
- import { Popover as xe } from "./popover/component.js";
72
- import { Portal as ie } from "./portal/component.js";
73
- import { ProgressBar as ue } from "./progress-bar/component.js";
74
- import { ProgressIndex as de } from "./progress-index/component.js";
75
- import { Radio as ce } from "./radio/component.js";
76
- import { RadioGroup as Te } from "./radio-group/component.js";
77
- import { RadioGroups as he } from "./radio-groups/component.js";
78
- import { SectionWrapper as De } from "./section-wrapper/component.js";
79
- import { Select as Ce } from "./select/component.js";
80
- import { Arrow as Me } from "./select/components/arrow/component.js";
81
- import { BaseSelect as _e } from "./select/components/base-select/component.js";
82
- import { SelectField as Fe } from "./select/components/field/component.js";
83
- import { Optgroup as Be } from "./select/components/optgroup/component.js";
84
- import { Option as ye } from "./select/components/option/component.js";
85
- import { OptionsList as We } from "./select/components/options-list/component.js";
86
- import { VirtualOptionsList as Ye } from "./select/components/virtual-options-list/component.js";
87
- import { useSelectWithLoading as Ge } from "./select/presets/use-select-with-loading/hook.js";
88
- import { useLazyLoading as we } from "./select/presets/use-lazy-loading/index.js";
89
- import { convertToOptions as qe, isGroup as ze, isOptionShape as Ke, joinOptions as Ve, lastIndexOf as je, processOptions as Je, useVisibleOptions as Xe } from "./select/utils.js";
90
- import { Sidepanel as Ze } from "./sidepanel/component.js";
91
- import { SidepanelHeader as ot } from "./sidepanel-header/component.js";
92
- import { Skeleton as et } from "./skeleton/component.js";
93
- import { Space as pt } from "./space/component.js";
94
- import { Spinner as ft } from "./spinner/component.js";
95
- import { StackingContext as xt, stackingOrder as st } from "./stack/context.js";
96
- import { Stack as nt } from "./stack/component.js";
97
- import { Status as lt } from "./status/component.js";
98
- import { SteppedProgressBar as St, useSteps as ct } from "./stepped-progress-bar/index.js";
99
- import { Sticker as Tt } from "./sticker/component.js";
100
- import { SuffixInput as ht } from "./suffix-input/component.js";
101
- import { SuperListHeader as Dt } from "./super-list-header/component.js";
102
- import { SuperListItem as Ct } from "./super-list-item/component.js";
103
- import { Switch as Mt } from "./switch/component.js";
104
- import { Table as _t } from "./table/component.js";
105
- import { TableCell as Ft } from "./table/components/cell/component.js";
106
- import { TableStatus as Bt } from "./table-status/component.js";
107
- import { Tag as yt } from "./tag/component.js";
108
- import { TagsList as Wt } from "./tags-list/component.js";
109
- import { Textarea as Yt } from "./textarea/component.js";
110
- 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 zt } from "./theme-provider/component.js";
111
- import { defaultThemes as Vt } from "./theme-provider/default-themes.js";
112
- import { Toast as Jt } from "./toast/component.js";
113
- import { ToastNotifier as Qt } from "./toast-notifier/component.js";
114
- import { ToastPlate as $t } from "./toast-plate/component.js";
115
- import { Tooltip as rp } from "./tooltip/component.js";
116
- import { Typography as tp } from "./typography/component.js";
117
- 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 cp, isAfter as Op, isBefore as Tp, 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 gp, lastDayOfMonth as _p, max as Pp, min as Fp, parse as Rp, parseISO as Bp, startOfDay as Lp, startOfISOWeek as yp, startOfMonth as bp, startOfWeek as Wp, startOfYear as Np, subDays as Yp, subMonths as vp, subWeeks as Gp, subYears as Hp, weekDaysShort as wp } from "./utils/date/index.js";
118
- import { debounce as qp } from "./utils/debounce.js";
119
- import { safeStringify as Kp } from "./utils/safe-stringify.js";
120
- import { AMOUNT_MAJOR_MINOR_PARTS_SEPARATOR as jp, THINSP as Jp, formatAmount as Xp } from "./utils/format-amount/util.js";
121
- import { showError as Zp, showSuccess as $p } from "./utils/show-toast/index.js";
122
- import { splitAmount as rm } from "./utils/split-amount/util.js";
123
- import { formatDate as tm, locales as pm } from "./utils/format-date/index.js";
124
- import { capitalize as fm } from "./utils/string.js";
125
- import { WelcomeContainer as xm } from "./welcome-layout/component.js";
126
- import { withSuffix as im } from "./with-suffix/component.js";
31
+ import { FilterTag as Co } from "./filter-tag/component.js";
32
+ import { Flex as Mo } from "./flex/component.js";
33
+ import { FlexColumns as _o } from "./flex-columns/component.js";
34
+ import { Footer as Fo } from "./footer/component.js";
35
+ import { FiltersForm as Bo } from "./form/templates/filters-form/index.js";
36
+ import { FormControl as yo } from "./form-control/component.js";
37
+ import { ErrorMessage as Wo, FastField as No, Field as Yo, FieldArray as vo, Form as Go, Formik as Ho, connect as wo, useField as Uo, useFormik as qo, useFormikContext as zo, withFormik as Ko } from "formik";
38
+ import { Grid as jo } from "./grid/component.js";
39
+ import { HeaderSearch as Xo } from "./header-search/component.js";
40
+ import { useClickOutside as Zo } from "./hooks/useClickOutside/index.js";
41
+ import { useFocus as or } from "./hooks/useFocus/index.js";
42
+ import { usePrevious as er } from "./hooks/usePrevious/index.js";
43
+ import { useCrudFormRequests as pr } from "./hooks/use-crud-form-requests/index.js";
44
+ import { useGetOne as fr } from "./hooks/use-get-one/index.js";
45
+ import { IconButton as xr } from "./icon-button/component.js";
46
+ import { Image as ir } from "./image/component.js";
47
+ import { textSizes as ur } from "./image/types.js";
48
+ import { ImageGallery as dr } from "./image-gallery/component.js";
49
+ import { ImageUploader as Tr } from "./image-uploader/component.js";
50
+ import { InfoBlockHeader as Or } from "./info-block-header/component.js";
51
+ import { InfoBlockItem as hr } from "./info-block-item/component.js";
52
+ import { InfoBlockWrapper as Dr } from "./info-block-wrapper/component.js";
53
+ import { Input as Cr } from "./input/component.js";
54
+ import { InputAutocomplete as Mr } from "./input-autocomplete/component.js";
55
+ import { InputGhost as _r } from "./input-ghost/component.js";
56
+ import { Link as Fr } from "./link/component.js";
57
+ import { ListAllert as Br } from "./list-allert/component.js";
58
+ import { Loader as yr } from "./loader/component.js";
59
+ import { MaskedInput as Wr, PLACEHOLDER_CHAR as Nr } from "./masked-input/component.js";
60
+ import { Menu as vr } from "./menu/component.js";
61
+ import { Message as Hr } from "./message/component.js";
62
+ import { ModalContext as Ur, ModalProvider as qr } from "./modal/context.js";
63
+ import { Mq as Kr } from "./mq/component.js";
64
+ import { useMatchMedia as jr } from "./mq/use-match-media.js";
65
+ import { Notification as Xr } from "./notification/component.js";
66
+ import { Padding as Zr } from "./padding/component.js";
67
+ import { PageContainer as oe } from "./page-container/component.js";
68
+ import { PageLoading as ee } from "./page-loading/component.js";
69
+ import { PageWithControls as pe } from "./page-with-controls/component.js";
70
+ import { PickerButton as fe } from "./picker-button/component.js";
71
+ import { LabeledButton as xe } from "./picker-button/common/labeled-button/index.js";
72
+ import { Popover as ie } from "./popover/component.js";
73
+ import { Portal as ue } from "./portal/component.js";
74
+ import { ProgressBar as de } from "./progress-bar/component.js";
75
+ import { ProgressIndex as Te } from "./progress-index/component.js";
76
+ import { Radio as Oe } from "./radio/component.js";
77
+ import { RadioGroup as he } from "./radio-group/component.js";
78
+ import { RadioGroups as De } from "./radio-groups/component.js";
79
+ import { SectionWrapper as Ce } from "./section-wrapper/component.js";
80
+ import { Select as Me } from "./select/component.js";
81
+ import { Arrow as _e } from "./select/components/arrow/component.js";
82
+ import { BaseSelect as Fe } from "./select/components/base-select/component.js";
83
+ import { SelectField as Be } from "./select/components/field/component.js";
84
+ import { Optgroup as ye } from "./select/components/optgroup/component.js";
85
+ import { Option as We } from "./select/components/option/component.js";
86
+ import { OptionsList as Ye } from "./select/components/options-list/component.js";
87
+ import { VirtualOptionsList as Ge } from "./select/components/virtual-options-list/component.js";
88
+ import { useSelectWithLoading as we } from "./select/presets/use-select-with-loading/hook.js";
89
+ import { useLazyLoading as qe } from "./select/presets/use-lazy-loading/index.js";
90
+ import { convertToOptions as Ke, isGroup as Ve, isOptionShape as je, joinOptions as Je, lastIndexOf as Xe, processOptions as Qe, useVisibleOptions as Ze } from "./select/utils.js";
91
+ import { Sidepanel as ot } from "./sidepanel/component.js";
92
+ import { SidepanelHeader as et } from "./sidepanel-header/component.js";
93
+ import { Skeleton as pt } from "./skeleton/component.js";
94
+ import { Space as ft } from "./space/component.js";
95
+ import { Spinner as xt } from "./spinner/component.js";
96
+ import { StackingContext as it, stackingOrder as nt } from "./stack/context.js";
97
+ import { Stack as lt } from "./stack/component.js";
98
+ import { Status as St } from "./status/component.js";
99
+ import { SteppedProgressBar as ct, useSteps as Ot } from "./stepped-progress-bar/index.js";
100
+ import { Sticker as ht } from "./sticker/component.js";
101
+ import { SuffixInput as Dt } from "./suffix-input/component.js";
102
+ import { SuperListHeader as Ct } from "./super-list-header/component.js";
103
+ import { SuperListItem as Mt } from "./super-list-item/component.js";
104
+ import { Switch as _t } from "./switch/component.js";
105
+ import { Table as Ft } from "./table/component.js";
106
+ import { TableCell as Bt } from "./table/components/cell/component.js";
107
+ import { TableStatus as yt } from "./table-status/component.js";
108
+ import { Tag as Wt } from "./tag/component.js";
109
+ import { TagsList as Yt } from "./tags-list/component.js";
110
+ import { Textarea as Gt } from "./textarea/component.js";
111
+ import { LOACAL_STORAGE_THEME_KEY as wt, STYLE_TAG_ID as Ut, THEME as qt, THEME_DATA_ATTR as zt, ThemeProvider as Kt, useTheme as Vt } from "./theme-provider/component.js";
112
+ import { defaultThemes as Jt } from "./theme-provider/default-themes.js";
113
+ import { Toast as Qt } from "./toast/component.js";
114
+ import { ToastNotifier as $t } from "./toast-notifier/component.js";
115
+ import { ToastPlate as rp } from "./toast-plate/component.js";
116
+ import { Tooltip as tp } from "./tooltip/component.js";
117
+ import { Typography as mp } from "./typography/component.js";
118
+ import { add as ap, addDays as xp, addMonths as sp, addYears as ip, eachDayOfInterval as np, eachMonthOfInterval as up, eachYearOfInterval as lp, endOfDay as dp, endOfISOWeek as Sp, endOfWeek as Tp, endOfYear as cp, format as Op, isAfter as Ip, isBefore as hp, isEqual as Ap, isLastDayOfMonth as Dp, isSameDay as kp, isSameMonth as Cp, isSameYear as Ep, isThisMonth as Mp, isThisYear as gp, isToday as _p, isWithinInterval as Pp, lastDayOfMonth as Fp, max as Rp, min as Bp, parse as Lp, parseISO as yp, startOfDay as bp, startOfISOWeek as Wp, startOfMonth as Np, startOfWeek as Yp, startOfYear as vp, subDays as Gp, subMonths as Hp, subWeeks as wp, subYears as Up, weekDaysShort as qp } from "./utils/date/index.js";
119
+ import { debounce as Kp } from "./utils/debounce.js";
120
+ import { safeStringify as jp } from "./utils/safe-stringify.js";
121
+ import { AMOUNT_MAJOR_MINOR_PARTS_SEPARATOR as Xp, THINSP as Qp, formatAmount as Zp } from "./utils/format-amount/util.js";
122
+ import { showError as om, showSuccess as rm } from "./utils/show-toast/index.js";
123
+ import { splitAmount as tm } from "./utils/split-amount/util.js";
124
+ import { formatDate as mm, locales as fm } from "./utils/format-date/index.js";
125
+ import { capitalize as xm } from "./utils/string.js";
126
+ import { WelcomeContainer as im } from "./welcome-layout/component.js";
127
+ import { withSuffix as um } from "./with-suffix/component.js";
127
128
  export {
128
- jp as AMOUNT_MAJOR_MINOR_PARTS_SEPARATOR,
129
+ Xp as AMOUNT_MAJOR_MINOR_PARTS_SEPARATOR,
129
130
  e as Amount,
130
131
  p as AmountInput,
131
- Me as Arrow,
132
+ _e as Arrow,
132
133
  f as Avatar,
133
134
  x as BackButton,
134
135
  i as Badge,
135
136
  u as BaseCard,
136
- _e as BaseSelect,
137
+ Fe as BaseSelect,
137
138
  d as BottomSheet,
138
- c as Box,
139
+ T as Box,
139
140
  h as Button,
140
141
  D as ButtonArrow,
141
142
  C as Calendar,
@@ -152,185 +153,186 @@ export {
152
153
  H as DATE_MASK,
153
154
  F as DAYS_IN_WEEK,
154
155
  lo as DateSwitcher,
155
- co as DecoratedItem,
156
- To as Divider,
156
+ To as DecoratedItem,
157
+ Oo as Divider,
157
158
  ho as Dot,
158
159
  Do as EmptyPage,
159
- yo as ErrorMessage,
160
- bo as FastField,
161
- Wo as Field,
162
- No as FieldArray,
163
- Fo as FiltersForm,
164
- Co as Flex,
165
- Mo as FlexColumns,
166
- _o as Footer,
167
- Yo as Form,
168
- Bo as FormControl,
160
+ Wo as ErrorMessage,
161
+ No as FastField,
162
+ Yo as Field,
163
+ vo as FieldArray,
164
+ Co as FilterTag,
165
+ Bo as FiltersForm,
166
+ Mo as Flex,
167
+ _o as FlexColumns,
168
+ Fo as Footer,
169
+ Go as Form,
170
+ yo as FormControl,
169
171
  no as FormattedDate,
170
- vo as Formik,
171
- Ko as Grid,
172
- jo as HeaderSearch,
172
+ Ho as Formik,
173
+ jo as Grid,
174
+ Xo as HeaderSearch,
173
175
  w as IS_BROWSER,
174
- fr as IconButton,
175
- xr as Image,
176
- ur as ImageGallery,
177
- dr as ImageUploader,
178
- cr as InfoBlockHeader,
179
- Tr as InfoBlockItem,
180
- hr as InfoBlockWrapper,
181
- Dr as Input,
182
- Cr as InputAutocomplete,
183
- Mr as InputGhost,
184
- Gt as LOACAL_STORAGE_THEME_KEY,
185
- fe as LabeledButton,
186
- _r as Link,
187
- Fr as ListAllert,
188
- Br as Loader,
176
+ xr as IconButton,
177
+ ir as Image,
178
+ dr as ImageGallery,
179
+ Tr as ImageUploader,
180
+ Or as InfoBlockHeader,
181
+ hr as InfoBlockItem,
182
+ Dr as InfoBlockWrapper,
183
+ Cr as Input,
184
+ Mr as InputAutocomplete,
185
+ _r as InputGhost,
186
+ wt as LOACAL_STORAGE_THEME_KEY,
187
+ xe as LabeledButton,
188
+ Fr as Link,
189
+ Br as ListAllert,
190
+ yr as Loader,
189
191
  R as MONTHS_IN_YEAR,
190
- yr as MaskedInput,
191
- Nr as Menu,
192
- vr as Message,
193
- Hr as ModalContext,
194
- wr as ModalProvider,
195
- qr as Mq,
192
+ Wr as MaskedInput,
193
+ vr as Menu,
194
+ Hr as Message,
195
+ Ur as ModalContext,
196
+ qr as ModalProvider,
197
+ Kr as Mq,
196
198
  U as NATIVE_DATE_FORMAT,
197
- jr as Notification,
198
- Be as Optgroup,
199
- ye as Option,
200
- We as OptionsList,
201
- br as PLACEHOLDER_CHAR,
202
- Xr as Padding,
203
- Zr as PageContainer,
204
- oe as PageLoading,
205
- ee as PageWithControls,
206
- pe as PickerButton,
207
- xe as Popover,
208
- ie as Portal,
209
- ue as ProgressBar,
210
- de as ProgressIndex,
211
- ce as Radio,
212
- Te as RadioGroup,
213
- he as RadioGroups,
214
- O as Radiuses,
215
- Ht as STYLE_TAG_ID,
199
+ Xr as Notification,
200
+ ye as Optgroup,
201
+ We as Option,
202
+ Ye as OptionsList,
203
+ Nr as PLACEHOLDER_CHAR,
204
+ Zr as Padding,
205
+ oe as PageContainer,
206
+ ee as PageLoading,
207
+ pe as PageWithControls,
208
+ fe as PickerButton,
209
+ ie as Popover,
210
+ ue as Portal,
211
+ de as ProgressBar,
212
+ Te as ProgressIndex,
213
+ Oe as Radio,
214
+ he as RadioGroup,
215
+ De as RadioGroups,
216
+ c as Radiuses,
217
+ Ut as STYLE_TAG_ID,
216
218
  B as SUNDAY_INDEX,
217
219
  q as SUPPORTS_INPUT_TYPE_DATE,
218
- De as SectionWrapper,
219
- Ce as Select,
220
- Fe as SelectField,
221
- Ze as Sidepanel,
222
- ot as SidepanelHeader,
223
- et as Skeleton,
224
- pt as Space,
225
- T as Spaces,
226
- ft as Spinner,
227
- nt as Stack,
228
- xt as StackingContext,
229
- lt as Status,
230
- St as SteppedProgressBar,
231
- Tt as Sticker,
232
- ht as SuffixInput,
233
- Dt as SuperListHeader,
234
- Ct as SuperListItem,
235
- Mt as Switch,
236
- wt as THEME,
237
- Ut as THEME_DATA_ATTR,
238
- Jp as THINSP,
239
- _t as Table,
240
- Ft as TableCell,
241
- Bt as TableStatus,
242
- yt as Tag,
243
- Wt as TagsList,
244
- Yt as Textarea,
245
- qt as ThemeProvider,
246
- Jt as Toast,
247
- Qt as ToastNotifier,
248
- $t as ToastPlate,
249
- rp as Tooltip,
250
- tp as Typography,
251
- Ye as VirtualOptionsList,
252
- xm as WelcomeContainer,
253
- mp as add,
254
- fp as addDays,
255
- ap as addMonths,
256
- xp as addYears,
257
- fm as capitalize,
258
- Go as connect,
259
- qe as convertToOptions,
220
+ Ce as SectionWrapper,
221
+ Me as Select,
222
+ Be as SelectField,
223
+ ot as Sidepanel,
224
+ et as SidepanelHeader,
225
+ pt as Skeleton,
226
+ ft as Space,
227
+ O as Spaces,
228
+ xt as Spinner,
229
+ lt as Stack,
230
+ it as StackingContext,
231
+ St as Status,
232
+ ct as SteppedProgressBar,
233
+ ht as Sticker,
234
+ Dt as SuffixInput,
235
+ Ct as SuperListHeader,
236
+ Mt as SuperListItem,
237
+ _t as Switch,
238
+ qt as THEME,
239
+ zt as THEME_DATA_ATTR,
240
+ Qp as THINSP,
241
+ Ft as Table,
242
+ Bt as TableCell,
243
+ yt as TableStatus,
244
+ Wt as Tag,
245
+ Yt as TagsList,
246
+ Gt as Textarea,
247
+ Kt as ThemeProvider,
248
+ Qt as Toast,
249
+ $t as ToastNotifier,
250
+ rp as ToastPlate,
251
+ tp as Tooltip,
252
+ mp as Typography,
253
+ Ge as VirtualOptionsList,
254
+ im as WelcomeContainer,
255
+ ap as add,
256
+ xp as addDays,
257
+ sp as addMonths,
258
+ ip as addYears,
259
+ xm as capitalize,
260
+ wo as connect,
261
+ Ke as convertToOptions,
260
262
  L as dateInLimits,
261
- qp as debounce,
262
- Vt as defaultThemes,
263
- sp as eachDayOfInterval,
264
- ip as eachMonthOfInterval,
265
- np as eachYearOfInterval,
266
- up as endOfDay,
267
- lp as endOfISOWeek,
268
- dp as endOfWeek,
269
- Sp as endOfYear,
270
- cp as format,
271
- Xp as formatAmount,
272
- tm as formatDate,
273
- Op as isAfter,
274
- Tp as isBefore,
263
+ Kp as debounce,
264
+ Jt as defaultThemes,
265
+ np as eachDayOfInterval,
266
+ up as eachMonthOfInterval,
267
+ lp as eachYearOfInterval,
268
+ dp as endOfDay,
269
+ Sp as endOfISOWeek,
270
+ Tp as endOfWeek,
271
+ cp as endOfYear,
272
+ Op as format,
273
+ Zp as formatAmount,
274
+ mm as formatDate,
275
+ Ip as isAfter,
276
+ hp as isBefore,
275
277
  z as isCompleteDateInput,
276
- Ip as isEqual,
277
- ze as isGroup,
278
+ Ap as isEqual,
279
+ Ve as isGroup,
278
280
  K as isInputDateSupported,
279
- hp as isLastDayOfMonth,
280
- Ke as isOptionShape,
281
- Ap as isSameDay,
282
- Dp as isSameMonth,
283
- kp as isSameYear,
284
- Cp as isThisMonth,
285
- Ep as isThisYear,
286
- Mp as isToday,
287
- gp as isWithinInterval,
288
- Ve as joinOptions,
289
- _p as lastDayOfMonth,
290
- je as lastIndexOf,
281
+ Dp as isLastDayOfMonth,
282
+ je as isOptionShape,
283
+ kp as isSameDay,
284
+ Cp as isSameMonth,
285
+ Ep as isSameYear,
286
+ Mp as isThisMonth,
287
+ gp as isThisYear,
288
+ _p as isToday,
289
+ Pp as isWithinInterval,
290
+ Je as joinOptions,
291
+ Fp as lastDayOfMonth,
292
+ Xe as lastIndexOf,
291
293
  y as limitDate,
292
- pm as locales,
293
- Pp as max,
294
- Fp as min,
294
+ fm as locales,
295
+ Rp as max,
296
+ Bp as min,
295
297
  b as monthName,
296
- Rp as parse,
298
+ Lp as parse,
297
299
  V as parseDateString,
298
- Bp as parseISO,
299
- Je as processOptions,
300
+ yp as parseISO,
301
+ Qe as processOptions,
300
302
  W as russianWeekDay,
301
- Kp as safeStringify,
302
- Zp as showError,
303
- $p as showSuccess,
304
- rm as splitAmount,
305
- st as stackingOrder,
306
- Lp as startOfDay,
307
- yp as startOfISOWeek,
308
- bp as startOfMonth,
309
- Wp as startOfWeek,
310
- Np as startOfYear,
311
- Yp as subDays,
312
- vp as subMonths,
313
- Gp as subWeeks,
314
- Hp as subYears,
315
- ir as textSizes,
303
+ jp as safeStringify,
304
+ om as showError,
305
+ rm as showSuccess,
306
+ tm as splitAmount,
307
+ nt as stackingOrder,
308
+ bp as startOfDay,
309
+ Wp as startOfISOWeek,
310
+ Np as startOfMonth,
311
+ Yp as startOfWeek,
312
+ vp as startOfYear,
313
+ Gp as subDays,
314
+ Hp as subMonths,
315
+ wp as subWeeks,
316
+ Up as subYears,
317
+ ur as textSizes,
316
318
  _ as useCalendar,
317
- Xo as useClickOutside,
318
- er as useCrudFormRequests,
319
- Ho as useField,
320
- Zo as useFocus,
321
- wo as useFormik,
322
- Uo as useFormikContext,
323
- pr as useGetOne,
324
- we as useLazyLoading,
325
- Kr as useMatchMedia,
319
+ Zo as useClickOutside,
320
+ pr as useCrudFormRequests,
321
+ Uo as useField,
322
+ or as useFocus,
323
+ qo as useFormik,
324
+ zo as useFormikContext,
325
+ fr as useGetOne,
326
+ qe as useLazyLoading,
327
+ jr as useMatchMedia,
326
328
  M as usePeriod,
327
- or as usePrevious,
328
- Ge as useSelectWithLoading,
329
- ct as useSteps,
330
- zt as useTheme,
331
- Xe as useVisibleOptions,
332
- wp as weekDaysShort,
333
- qo as withFormik,
334
- im as withSuffix
329
+ er as usePrevious,
330
+ we as useSelectWithLoading,
331
+ Ot as useSteps,
332
+ Vt as useTheme,
333
+ Ze as useVisibleOptions,
334
+ qp as weekDaysShort,
335
+ Ko as withFormik,
336
+ um as withSuffix
335
337
  };
336
338
  //# sourceMappingURL=index.js.map