@yuno-payments/dashboard-design-system 0.0.170 → 0.0.172
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/atoms/access-denied-alert/access-denied-alert.d.ts +16 -0
- package/dist/components/atoms/accordion/accordion.d.ts +66 -0
- package/dist/components/atoms/alert/alert.d.ts +26 -1
- package/dist/components/atoms/alert/alert.js +9 -8
- package/dist/components/atoms/avatar/avatar-group.d.ts +28 -0
- package/dist/components/atoms/avatar/avatar.d.ts +25 -0
- package/dist/components/atoms/avatar/avatar.js +9 -9
- package/dist/components/atoms/badge/badge.d.ts +30 -2
- package/dist/components/atoms/badge/badge.js +27 -11
- package/dist/components/atoms/button/button.d.ts +44 -0
- package/dist/components/atoms/card/card.d.ts +137 -3
- package/dist/components/atoms/card/card.js +56 -28
- package/dist/components/atoms/checkbox/checkbox.d.ts +38 -2
- package/dist/components/atoms/checkbox/checkbox.js +61 -27
- package/dist/components/atoms/combobox/combobox.d.ts +18 -0
- package/dist/components/atoms/combobox/combobox.js +41 -41
- package/dist/components/atoms/combobox/types.d.ts +90 -1
- package/dist/components/atoms/currency-field/currency-field.d.ts +38 -0
- package/dist/components/atoms/currency-field/currency-field.js +22 -19
- package/dist/components/atoms/date-picker/date-picker.d.ts +15 -0
- package/dist/components/atoms/date-range-picker/date-range-picker.d.ts +15 -0
- package/dist/components/atoms/dots-menu/dots-menu.d.ts +16 -0
- package/dist/components/atoms/dots-menu/dots-menu.js +8 -8
- package/dist/components/atoms/dots-menu/dots-menu.types.d.ts +52 -0
- package/dist/components/atoms/dropdown-menu/dropdown-menu.d.ts +50 -0
- package/dist/components/atoms/field/field.d.ts +55 -0
- package/dist/components/atoms/field/field.js +53 -46
- package/dist/components/atoms/filter/filter-date-range.d.ts +12 -2
- package/dist/components/atoms/filter/filter-date-range.js +203 -168
- package/dist/components/atoms/filter/filter.d.ts +6 -0
- package/dist/components/atoms/filter/filter.js +91 -76
- package/dist/components/atoms/filter/index.d.ts +1 -1
- package/dist/components/atoms/filter-dropdown/filter-dropdown.d.ts +208 -2
- package/dist/components/atoms/filter-dropdown/filter-dropdown.js +214 -160
- package/dist/components/atoms/icon/aida-logo.d.ts +3 -0
- package/dist/components/atoms/icon/aida-logo.js +64 -0
- package/dist/components/atoms/icon/icon-list.d.ts +5 -0
- package/dist/components/atoms/icon/icon-list.js +394 -384
- package/dist/components/atoms/icon/icon.d.ts +29 -0
- package/dist/components/atoms/index.d.ts +3 -2
- package/dist/components/atoms/label/index.d.ts +1 -1
- package/dist/components/atoms/label/label.d.ts +11 -0
- package/dist/components/atoms/label/label.js +28 -0
- package/dist/components/atoms/link/link.d.ts +20 -0
- package/dist/components/atoms/loading/index.d.ts +1 -0
- package/dist/components/atoms/loading/loading.d.ts +39 -0
- package/dist/components/atoms/loading/loading.js +37 -0
- package/dist/components/atoms/multi-select/multi-select.d.ts +1 -1
- package/dist/components/atoms/multi-select/multi-select.js +6 -6
- package/dist/components/atoms/multi-values-field/multi-values-field.d.ts +16 -0
- package/dist/components/atoms/multi-values-field/multi-values-field.js +109 -87
- package/dist/components/atoms/multi-values-field/multi-values-field.types.d.ts +81 -0
- package/dist/components/atoms/otp-field/otp-field.d.ts +32 -0
- package/dist/components/atoms/password-field/password-field.d.ts +23 -0
- package/dist/components/atoms/password-field/password-field.js +1 -1
- package/dist/components/atoms/progress/progress.d.ts +15 -0
- package/dist/components/atoms/protected-field/protected-field.d.ts +10 -0
- package/dist/components/atoms/protected-field/protected-field.types.d.ts +14 -0
- package/dist/components/atoms/radio-group/radio-group-option.js +11 -11
- package/dist/components/atoms/radio-group/radio-group.d.ts +50 -1
- package/dist/components/atoms/radio-group/radio-group.js +13 -12
- package/dist/components/atoms/search-field/search-field.d.ts +14 -0
- package/dist/components/atoms/search-field/search-field.js +17 -17
- package/dist/components/atoms/search-field/search-field.types.d.ts +57 -0
- package/dist/components/atoms/select/index.d.ts +2 -0
- package/dist/components/atoms/select/search-select.d.ts +22 -0
- package/dist/components/atoms/select/search-select.js +201 -0
- package/dist/components/atoms/select/select.d.ts +83 -1
- package/dist/components/atoms/select/select.js +21 -21
- package/dist/components/atoms/separator/separator.d.ts +17 -0
- package/dist/components/atoms/skeleton/index.d.ts +9 -0
- package/dist/components/atoms/switch/switch.d.ts +56 -2
- package/dist/components/atoms/switch/switch.js +64 -32
- package/dist/components/atoms/tabs/index.d.ts +16 -0
- package/dist/components/atoms/textarea/textarea.d.ts +32 -0
- package/dist/components/atoms/textarea/textarea.js +1 -1
- package/dist/components/atoms/time-picker/time-picker.d.ts +73 -2
- package/dist/components/atoms/time-picker/time-picker.js +218 -3
- package/dist/components/atoms/toaster/index.d.ts +15 -0
- package/dist/components/atoms/toggle-group/toggle-group.d.ts +26 -1
- package/dist/components/atoms/toggle-group/toggle-group.js +15 -14
- package/dist/components/atoms/tooltip/tooltip.d.ts +53 -2
- package/dist/components/atoms/typography/typography.d.ts +18 -0
- package/dist/components/molecules/breadcrumb/breadcrumb.d.ts +50 -0
- package/dist/components/molecules/breadcrumb/breadcrumb.js +17 -17
- package/dist/components/molecules/dialog-content/dialog-content.d.ts +16 -0
- package/dist/components/molecules/dialog-footer/dialog-footer.d.ts +20 -0
- package/dist/components/molecules/dialog-header/dialog-header.d.ts +31 -0
- package/dist/components/molecules/empty/empty-icon.js +6 -6
- package/dist/components/molecules/empty/empty.d.ts +16 -1
- package/dist/components/molecules/empty/empty.js +37 -34
- package/dist/components/molecules/highlight-banner/highlight-banner.d.ts +17 -0
- package/dist/components/molecules/pagination/pagination.d.ts +49 -0
- package/dist/components/organisms/data-table/components/cells/data-table-list-cell.d.ts +41 -0
- package/dist/components/organisms/data-table/components/column-header/data-table-column-header-content.js +1 -1
- package/dist/components/organisms/data-table/components/column-header/data-table-column-header-menu.js +18 -18
- package/dist/components/organisms/data-table/components/column-header/data-table-column-header.d.ts +18 -0
- package/dist/components/organisms/data-table/components/column-header/data-table-column-header.js +10 -10
- package/dist/components/organisms/data-table/components/data-table-body.d.ts +18 -0
- package/dist/components/organisms/data-table/components/data-table-header.d.ts +12 -0
- package/dist/components/organisms/data-table/components/data-table-header.js +7 -7
- package/dist/components/organisms/data-table/components/states/data-table-loading.d.ts +24 -0
- package/dist/components/organisms/data-table/components/states/data-table-loading.js +6 -6
- package/dist/components/organisms/data-table/data-table.d.ts +133 -4
- package/dist/components/organisms/data-table/data-table.js +132 -100
- package/dist/components/organisms/data-table/data-table.types.d.ts +35 -26
- package/dist/components/organisms/data-table/hooks/use-data-table-columns.js +57 -41
- package/dist/components/organisms/data-table/hooks/use-data-table-state.d.ts +8 -2
- package/dist/components/organisms/data-table/hooks/use-data-table-state.js +82 -47
- package/dist/components/organisms/data-table/utils/data-table-constants.d.ts +8 -2
- package/dist/components/organisms/data-table/utils/data-table-constants.js +16 -10
- package/dist/components/organisms/data-table/utils/data-table-styles.d.ts +1652 -0
- package/dist/components/organisms/data-table/utils/data-table-styles.js +29 -14
- package/dist/components/organisms/dialog/dialog.d.ts +67 -1
- package/dist/components/organisms/dialog/dialog.js +78 -61
- package/dist/components/organisms/index.d.ts +2 -0
- package/dist/components/organisms/sheet/sheet.d.ts +69 -0
- package/dist/components/organisms/sheet/sheet.js +34 -33
- package/dist/components/organisms/tutorial/index.d.ts +2 -0
- package/dist/components/organisms/tutorial/tutorial.d.ts +16 -0
- package/dist/components/organisms/tutorial/tutorial.js +114 -0
- package/dist/components/organisms/tutorial/tutorial.types.d.ts +15 -0
- package/dist/hooks/index.d.ts +3 -0
- package/dist/hooks/use-body-scroll-lock.d.ts +13 -0
- package/dist/hooks/use-escape-key.d.ts +14 -0
- package/dist/hooks/use-media-query.d.ts +20 -0
- package/dist/hooks/use-media-query.js +21 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +173 -162
- package/dist/lib/notification-alert.d.ts +42 -0
- package/dist/lib/notification-alert.js +75 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/File.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/Microphone.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/Stop.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/Table.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/File.es.js +30 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/Microphone.es.js +36 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/Stop.es.js +36 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/Table.es.js +30 -0
- package/dist/vendor/shadcn/avatar.js +19 -19
- package/dist/vendor/shadcn/badge.js +15 -15
- package/dist/vendor/shadcn/card.js +7 -7
- package/dist/vendor/shadcn/date-picker.d.ts +2 -2
- package/dist/vendor/shadcn/date-picker.js +1 -1
- package/dist/vendor/shadcn/date-range-picker.d.ts +2 -2
- package/dist/vendor/shadcn/date-range-picker.js +1 -1
- package/dist/vendor/shadcn/dialog.js +2 -2
- package/dist/vendor/shadcn/input-group.js +17 -17
- package/dist/vendor/shadcn/input.js +7 -7
- package/dist/vendor/shadcn/popover.js +1 -1
- package/dist/vendor/shadcn/select.js +2 -2
- package/dist/vendor/shadcn/sonner.d.ts +26 -1
- package/dist/vendor/shadcn/sonner.js +12 -8
- package/dist/vendor/shadcn/table.js +30 -30
- package/dist/vendor/shadcn/textarea.js +9 -9
- package/dist/vendor/shadcn/time-picker.d.ts +1 -2
- package/dist/vendor/shadcn/time-picker.js +17 -23
- package/dist/vendor/shadcn/toggle.js +13 -13
- package/dist/vendor/shadcn/tooltip.js +25 -15
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,170 +1,181 @@
|
|
|
1
1
|
/* empty css */
|
|
2
2
|
import { cn as t, normalizeDimension as p } from "./lib/utils.js";
|
|
3
3
|
import { toast as i } from "sonner";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
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 {
|
|
4
|
+
import { showNotificationAlert as m } from "./lib/notification-alert.js";
|
|
5
|
+
import { Alert as f } from "./components/atoms/alert/alert.js";
|
|
6
|
+
import { Accordion as d, AccordionContent as u, AccordionItem as c, AccordionTrigger as g } from "./components/atoms/accordion/accordion.js";
|
|
7
|
+
import { AccessDeniedAlert as s } from "./components/atoms/access-denied-alert/access-denied-alert.js";
|
|
8
|
+
import { Avatar as C } from "./components/atoms/avatar/avatar.js";
|
|
9
|
+
import { Badge as M } from "./components/atoms/badge/badge.js";
|
|
10
|
+
import { Button as w } from "./components/atoms/button/button.js";
|
|
11
|
+
import { Card as b, CardContent as R, CardDescription as h, CardFooter as k, CardHeader as I, CardTitle as A } from "./components/atoms/card/card.js";
|
|
12
|
+
import { Checkbox as v } from "./components/atoms/checkbox/checkbox.js";
|
|
13
|
+
import { CurrencyField as B } from "./components/atoms/currency-field/currency-field.js";
|
|
14
|
+
import { DatePicker as O } from "./components/atoms/date-picker/date-picker.js";
|
|
15
|
+
import { DateRangePicker as H } from "./components/atoms/date-range-picker/date-range-picker.js";
|
|
16
|
+
import { TimePicker as V } from "./components/atoms/time-picker/time-picker.js";
|
|
17
|
+
import { FilterButton as K, FilterCheckboxOption as Q, FilterContent as j, FilterRadioOption as q, FilterSection as J, FilterTag as U } from "./components/atoms/filter/filter.js";
|
|
18
|
+
import { FilterDateRange as X, FilterDateRangeOption as Y, FilterDateRangeValue as Z } from "./components/atoms/filter/filter-date-range.js";
|
|
19
|
+
import { FilterDropdown as $, FilterMenu as oo, FilterMenuItem as ro } from "./components/atoms/filter-dropdown/filter-dropdown.js";
|
|
20
|
+
import { DropdownMenu as to, DropdownMenuCheckboxItem as po, DropdownMenuContent as no, DropdownMenuGroup as io, DropdownMenuItem as ao, DropdownMenuLabel as mo, DropdownMenuPortal as xo, DropdownMenuRadioGroup as fo, DropdownMenuRadioItem as lo, DropdownMenuSeparator as uo, DropdownMenuShortcut as co, DropdownMenuSub as go, DropdownMenuSubContent as Do, DropdownMenuSubTrigger as so, DropdownMenuTrigger as Po } from "./components/atoms/dropdown-menu/dropdown-menu.js";
|
|
21
|
+
import { DotsMenu as Fo } from "./components/atoms/dots-menu/dots-menu.js";
|
|
22
|
+
import { ToggleGroup as To, ToggleGroupItem as wo } from "./components/atoms/toggle-group/toggle-group.js";
|
|
23
|
+
import { Tooltip as bo } from "./components/atoms/tooltip/tooltip.js";
|
|
24
|
+
import { TooltipProvider as ho } from "./vendor/shadcn/tooltip.js";
|
|
25
|
+
import { Field as Io } from "./components/atoms/field/field.js";
|
|
26
|
+
import { NavLink as Go } from "./components/atoms/nav-link/nav-link.js";
|
|
27
|
+
import { Select as yo } from "./components/atoms/select/select.js";
|
|
28
|
+
import { SearchSelect as Lo } from "./components/atoms/select/search-select.js";
|
|
29
|
+
import { Combobox as Eo } from "./components/atoms/combobox/combobox.js";
|
|
30
|
+
import { Link as No } from "./components/atoms/link/link.js";
|
|
31
|
+
import { MultiValuesField as zo } from "./components/atoms/multi-values-field/multi-values-field.js";
|
|
32
|
+
import { MultiSelect as Qo } from "./components/atoms/multi-select/multi-select.js";
|
|
33
|
+
import { Popover as qo, PopoverContent as Jo, PopoverTrigger as Uo } from "./components/atoms/popover/popover.js";
|
|
34
|
+
import { RadioGroup as Xo } from "./components/atoms/radio-group/radio-group.js";
|
|
35
|
+
import { RadioGroup as Zo, RadioGroupItem as _o } from "./vendor/shadcn/radio-group.js";
|
|
36
|
+
import { RadioGroupOption as or } from "./components/atoms/radio-group/radio-group-option.js";
|
|
37
|
+
import { SearchField as er } from "./components/atoms/search-field/search-field.js";
|
|
38
|
+
import { Skeleton as pr } from "./vendor/shadcn/skeleton.js";
|
|
39
|
+
import { Separator as ir } from "./components/atoms/separator/separator.js";
|
|
40
|
+
import { Switch as mr } from "./components/atoms/switch/switch.js";
|
|
41
|
+
import { Textarea as fr } from "./components/atoms/textarea/textarea.js";
|
|
42
|
+
import { Typography as dr } from "./components/atoms/typography/typography.js";
|
|
43
|
+
import { Icon as cr } from "./components/atoms/icon/icon.js";
|
|
44
|
+
import { Loading as Dr } from "./components/atoms/loading/loading.js";
|
|
45
|
+
import { OTPField as Pr } from "./components/atoms/otp-field/otp-field.js";
|
|
46
|
+
import { PasswordField as Fr } from "./components/atoms/password-field/password-field.js";
|
|
47
|
+
import { ProtectedField as Tr } from "./components/atoms/protected-field/protected-field.js";
|
|
48
|
+
import { Progress as Sr } from "./components/atoms/progress/progress.js";
|
|
49
|
+
import { Toaster as Rr } from "./vendor/shadcn/sonner.js";
|
|
50
|
+
import { Breadcrumb as kr } from "./components/molecules/breadcrumb/breadcrumb.js";
|
|
51
|
+
import { Pagination as Ar, Pagination as Gr } from "./components/molecules/pagination/pagination.js";
|
|
52
|
+
import { PaginationContent as yr, PaginationEllipsis as Br, PaginationItem as Lr, PaginationLink as Or, PaginationNext as Er, PaginationPrevious as Hr } from "./vendor/shadcn/pagination.js";
|
|
53
|
+
import { NavTabs as Vr } from "./components/molecules/nav-tabs/nav-tabs.js";
|
|
54
|
+
import { HighlightBanner as Kr } from "./components/molecules/highlight-banner/highlight-banner.js";
|
|
55
|
+
import { Empty as jr } from "./components/molecules/empty/empty.js";
|
|
56
|
+
import { EmptyIcon as Jr } from "./components/molecules/empty/empty-icon.js";
|
|
57
|
+
import { DialogHeader as Wr } from "./components/molecules/dialog-header/dialog-header.js";
|
|
58
|
+
import { DialogContent as Yr } from "./components/molecules/dialog-content/dialog-content.js";
|
|
59
|
+
import { DialogFooter as _r } from "./components/molecules/dialog-footer/dialog-footer.js";
|
|
60
|
+
import { Dialog as oe } from "./components/organisms/dialog/dialog.js";
|
|
61
|
+
import { Sheet as ee } from "./components/organisms/sheet/sheet.js";
|
|
62
|
+
import { Tutorial as pe } from "./components/organisms/tutorial/tutorial.js";
|
|
63
|
+
import { DataTable as ie } from "./components/organisms/data-table/data-table.js";
|
|
64
|
+
import { DataTableColumnHeader as me } from "./components/organisms/data-table/components/column-header/data-table-column-header.js";
|
|
65
|
+
import { DataTableSortIndicator as fe } from "./components/organisms/data-table/components/column-header/data-table-sort-indicator.js";
|
|
66
|
+
import { DataTableListCell as de } from "./components/organisms/data-table/components/cells/data-table-list-cell.js";
|
|
67
|
+
import { useBodyScrollLock as ce } from "./hooks/use-body-scroll-lock.js";
|
|
68
|
+
import { useEscapeKey as De } from "./hooks/use-escape-key.js";
|
|
69
|
+
import { useMediaQuery as Pe } from "./hooks/use-media-query.js";
|
|
65
70
|
export {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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
|
-
q as
|
|
124
|
-
J as
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
71
|
+
s as AccessDeniedAlert,
|
|
72
|
+
d as Accordion,
|
|
73
|
+
u as AccordionContent,
|
|
74
|
+
c as AccordionItem,
|
|
75
|
+
g as AccordionTrigger,
|
|
76
|
+
f as Alert,
|
|
77
|
+
C as Avatar,
|
|
78
|
+
M as Badge,
|
|
79
|
+
kr as Breadcrumb,
|
|
80
|
+
w as Button,
|
|
81
|
+
b as Card,
|
|
82
|
+
R as CardContent,
|
|
83
|
+
h as CardDescription,
|
|
84
|
+
k as CardFooter,
|
|
85
|
+
I as CardHeader,
|
|
86
|
+
A as CardTitle,
|
|
87
|
+
v as Checkbox,
|
|
88
|
+
Eo as Combobox,
|
|
89
|
+
B as CurrencyField,
|
|
90
|
+
ie as DataTable,
|
|
91
|
+
me as DataTableColumnHeader,
|
|
92
|
+
de as DataTableListCell,
|
|
93
|
+
fe as DataTableSortIndicator,
|
|
94
|
+
O as DatePicker,
|
|
95
|
+
H as DateRangePicker,
|
|
96
|
+
oe as Dialog,
|
|
97
|
+
Yr as DialogContent,
|
|
98
|
+
_r as DialogFooter,
|
|
99
|
+
Wr as DialogHeader,
|
|
100
|
+
Fo as DotsMenu,
|
|
101
|
+
to as DropdownMenu,
|
|
102
|
+
po as DropdownMenuCheckboxItem,
|
|
103
|
+
no as DropdownMenuContent,
|
|
104
|
+
io as DropdownMenuGroup,
|
|
105
|
+
ao as DropdownMenuItem,
|
|
106
|
+
mo as DropdownMenuLabel,
|
|
107
|
+
xo as DropdownMenuPortal,
|
|
108
|
+
fo as DropdownMenuRadioGroup,
|
|
109
|
+
lo as DropdownMenuRadioItem,
|
|
110
|
+
uo as DropdownMenuSeparator,
|
|
111
|
+
co as DropdownMenuShortcut,
|
|
112
|
+
go as DropdownMenuSub,
|
|
113
|
+
Do as DropdownMenuSubContent,
|
|
114
|
+
so as DropdownMenuSubTrigger,
|
|
115
|
+
Po as DropdownMenuTrigger,
|
|
116
|
+
jr as Empty,
|
|
117
|
+
Jr as EmptyIcon,
|
|
118
|
+
Io as Field,
|
|
119
|
+
K as FilterButton,
|
|
120
|
+
Q as FilterCheckboxOption,
|
|
121
|
+
j as FilterContent,
|
|
122
|
+
X as FilterDateRange,
|
|
123
|
+
Y as FilterDateRangeOption,
|
|
124
|
+
Z as FilterDateRangeValue,
|
|
125
|
+
$ as FilterDropdown,
|
|
126
|
+
oo as FilterMenu,
|
|
127
|
+
ro as FilterMenuItem,
|
|
128
|
+
q as FilterRadioOption,
|
|
129
|
+
J as FilterSection,
|
|
130
|
+
U as FilterTag,
|
|
131
|
+
Kr as HighlightBanner,
|
|
132
|
+
cr as Icon,
|
|
133
|
+
No as Link,
|
|
134
|
+
Dr as Loading,
|
|
135
|
+
Qo as MultiSelect,
|
|
136
|
+
zo as MultiValuesField,
|
|
137
|
+
Go as NavLink,
|
|
138
|
+
Vr as NavTabs,
|
|
139
|
+
Pr as OTPField,
|
|
140
|
+
Ar as Pagination,
|
|
141
|
+
yr as PaginationContent,
|
|
142
|
+
Br as PaginationEllipsis,
|
|
143
|
+
Lr as PaginationItem,
|
|
144
|
+
Or as PaginationLink,
|
|
145
|
+
Er as PaginationNext,
|
|
146
|
+
Hr as PaginationPrevious,
|
|
147
|
+
Gr as PaginationRoot,
|
|
148
|
+
Fr as PasswordField,
|
|
149
|
+
qo as Popover,
|
|
150
|
+
Jo as PopoverContent,
|
|
151
|
+
Uo as PopoverTrigger,
|
|
152
|
+
Sr as Progress,
|
|
153
|
+
Tr as ProtectedField,
|
|
154
|
+
Xo as RadioGroup,
|
|
155
|
+
Zo as RadioGroupBase,
|
|
156
|
+
_o as RadioGroupItem,
|
|
157
|
+
or as RadioGroupOption,
|
|
158
|
+
er as SearchField,
|
|
159
|
+
Lo as SearchSelect,
|
|
160
|
+
yo as Select,
|
|
161
|
+
ir as Separator,
|
|
162
|
+
ee as Sheet,
|
|
163
|
+
pr as Skeleton,
|
|
164
|
+
mr as Switch,
|
|
165
|
+
fr as Textarea,
|
|
166
|
+
V as TimePicker,
|
|
167
|
+
Rr as Toaster,
|
|
168
|
+
To as ToggleGroup,
|
|
169
|
+
wo as ToggleGroupItem,
|
|
170
|
+
bo as Tooltip,
|
|
171
|
+
ho as TooltipProvider,
|
|
172
|
+
pe as Tutorial,
|
|
173
|
+
dr as Typography,
|
|
165
174
|
t as cn,
|
|
166
175
|
p as normalizeDimension,
|
|
176
|
+
m as showNotificationAlert,
|
|
167
177
|
i as toast,
|
|
168
|
-
|
|
169
|
-
|
|
178
|
+
ce as useBodyScrollLock,
|
|
179
|
+
De as useEscapeKey,
|
|
180
|
+
Pe as useMediaQuery
|
|
170
181
|
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export type NotificationMode = "success" | "error" | "warning" | "info";
|
|
2
|
+
export interface NotificationAlertOptions {
|
|
3
|
+
mode: NotificationMode;
|
|
4
|
+
title?: string;
|
|
5
|
+
message: string;
|
|
6
|
+
primaryActionLabel?: string;
|
|
7
|
+
onAction?: () => void;
|
|
8
|
+
timeToLive?: number;
|
|
9
|
+
withCloseButton?: boolean;
|
|
10
|
+
withProgress?: boolean;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Shows a notification alert toast with NotificationAlert structure.
|
|
14
|
+
* IMPORTANT: Requires <Toaster /> component to be mounted in your app.
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* ```tsx
|
|
18
|
+
* // In your root component:
|
|
19
|
+
* import { Toaster } from '@yuno-payments/dashboard-design-system';
|
|
20
|
+
* <Toaster position="top-right" />
|
|
21
|
+
*
|
|
22
|
+
* // Anywhere in your app:
|
|
23
|
+
* import { showNotificationAlert } from '@yuno-payments/dashboard-design-system';
|
|
24
|
+
*
|
|
25
|
+
* // Simple message
|
|
26
|
+
* showNotificationAlert({
|
|
27
|
+
* mode: 'success',
|
|
28
|
+
* message: 'Operation completed successfully',
|
|
29
|
+
* });
|
|
30
|
+
*
|
|
31
|
+
* // With title and action
|
|
32
|
+
* showNotificationAlert({
|
|
33
|
+
* mode: 'error',
|
|
34
|
+
* title: 'Error saving',
|
|
35
|
+
* message: 'Could not save changes. Please try again.',
|
|
36
|
+
* primaryActionLabel: 'Retry',
|
|
37
|
+
* onAction: () => retryOperation(),
|
|
38
|
+
* timeToLive: 8000,
|
|
39
|
+
* });
|
|
40
|
+
* ```
|
|
41
|
+
*/
|
|
42
|
+
export declare const showNotificationAlert: ({ mode, title, message, primaryActionLabel, onAction, timeToLive, withCloseButton, withProgress, }: NotificationAlertOptions) => string | number;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { j as s } from "../_virtual/jsx-runtime.js";
|
|
2
|
+
import { toast as t } from "sonner";
|
|
3
|
+
import { Icon as N } from "../components/atoms/icon/icon.js";
|
|
4
|
+
import { Button as g } from "../components/atoms/button/button.js";
|
|
5
|
+
const j = {
|
|
6
|
+
success: "CheckCircle",
|
|
7
|
+
error: "WarningCircle",
|
|
8
|
+
warning: "Warning",
|
|
9
|
+
info: "Info"
|
|
10
|
+
}, p = {
|
|
11
|
+
success: "hsl(142, 76%, 36%)",
|
|
12
|
+
error: "hsl(var(--destructive))",
|
|
13
|
+
warning: "hsl(48, 96%, 53%)",
|
|
14
|
+
info: "hsl(199, 89%, 48%)"
|
|
15
|
+
}, v = {
|
|
16
|
+
success: "default",
|
|
17
|
+
error: "destructive",
|
|
18
|
+
warning: "default",
|
|
19
|
+
info: "default"
|
|
20
|
+
}, w = () => /* @__PURE__ */ s.jsx("div", { className: "w-full h-1 bg-border rounded-full overflow-hidden mt-3", children: /* @__PURE__ */ s.jsx("div", { className: "h-full bg-primary animate-progress-indeterminate" }) }), O = ({
|
|
21
|
+
mode: e,
|
|
22
|
+
title: o,
|
|
23
|
+
message: c,
|
|
24
|
+
primaryActionLabel: a,
|
|
25
|
+
onAction: l,
|
|
26
|
+
timeToLive: m = 5e3,
|
|
27
|
+
withCloseButton: f = !0,
|
|
28
|
+
withProgress: d = !1
|
|
29
|
+
}) => {
|
|
30
|
+
const u = j[e], n = !!o, h = !!(a && l), x = /* @__PURE__ */ s.jsx(
|
|
31
|
+
N,
|
|
32
|
+
{
|
|
33
|
+
name: u,
|
|
34
|
+
className: "size-4",
|
|
35
|
+
weight: "fill",
|
|
36
|
+
style: { color: p[e] }
|
|
37
|
+
}
|
|
38
|
+
), r = /* @__PURE__ */ s.jsxs("div", { className: "flex flex-col gap-0 w-full", children: [
|
|
39
|
+
/* @__PURE__ */ s.jsx("div", { className: "flex items-start gap-2", children: /* @__PURE__ */ s.jsx("div", { className: "flex-1 min-w-0", children: /* @__PURE__ */ s.jsx("p", { className: n ? "text-sm font-semibold" : "text-sm", children: n ? o : c }) }) }),
|
|
40
|
+
n && /* @__PURE__ */ s.jsx("div", { className: "mt-1", children: /* @__PURE__ */ s.jsx("p", { className: "text-sm text-muted-foreground", children: c }) }),
|
|
41
|
+
d && /* @__PURE__ */ s.jsx(w, {}),
|
|
42
|
+
h && /* @__PURE__ */ s.jsx("div", { className: "mt-3", children: /* @__PURE__ */ s.jsx(
|
|
43
|
+
g,
|
|
44
|
+
{
|
|
45
|
+
variant: v[e],
|
|
46
|
+
size: "sm",
|
|
47
|
+
onClick: () => {
|
|
48
|
+
l(), t.dismiss();
|
|
49
|
+
},
|
|
50
|
+
children: a
|
|
51
|
+
}
|
|
52
|
+
) })
|
|
53
|
+
] }), i = {
|
|
54
|
+
duration: m,
|
|
55
|
+
closeButton: f,
|
|
56
|
+
icon: x,
|
|
57
|
+
position: "top-right",
|
|
58
|
+
classNames: {
|
|
59
|
+
toast: `notification-alert-toast notification-alert-${e}`
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
switch (e) {
|
|
63
|
+
case "success":
|
|
64
|
+
return t.success(r, i);
|
|
65
|
+
case "error":
|
|
66
|
+
return t.error(r, i);
|
|
67
|
+
case "warning":
|
|
68
|
+
return t.warning(r, i);
|
|
69
|
+
case "info":
|
|
70
|
+
return t.info(r, i);
|
|
71
|
+
}
|
|
72
|
+
};
|
|
73
|
+
export {
|
|
74
|
+
O as showNotificationAlert
|
|
75
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as o from "react";
|
|
2
|
+
import a from "../lib/IconBase.es.js";
|
|
3
|
+
import m from "../defs/File.es.js";
|
|
4
|
+
const t = o.forwardRef((e, r) => /* @__PURE__ */ o.createElement(a, { ref: r, ...e, weights: m }));
|
|
5
|
+
t.displayName = "FileIcon";
|
|
6
|
+
export {
|
|
7
|
+
t as FileIcon
|
|
8
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as o from "react";
|
|
2
|
+
import m from "../lib/IconBase.es.js";
|
|
3
|
+
import p from "../defs/Microphone.es.js";
|
|
4
|
+
const t = o.forwardRef((e, r) => /* @__PURE__ */ o.createElement(m, { ref: r, ...e, weights: p }));
|
|
5
|
+
t.displayName = "MicrophoneIcon";
|
|
6
|
+
export {
|
|
7
|
+
t as MicrophoneIcon
|
|
8
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as o from "react";
|
|
2
|
+
import e from "../lib/IconBase.es.js";
|
|
3
|
+
import a from "../defs/Stop.es.js";
|
|
4
|
+
const m = o.forwardRef((r, t) => /* @__PURE__ */ o.createElement(e, { ref: t, ...r, weights: a }));
|
|
5
|
+
m.displayName = "StopIcon";
|
|
6
|
+
export {
|
|
7
|
+
m as StopIcon
|
|
8
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as o from "react";
|
|
2
|
+
import a from "../lib/IconBase.es.js";
|
|
3
|
+
import m from "../defs/Table.es.js";
|
|
4
|
+
const t = o.forwardRef((e, r) => /* @__PURE__ */ o.createElement(a, { ref: r, ...e, weights: m }));
|
|
5
|
+
t.displayName = "TableIcon";
|
|
6
|
+
export {
|
|
7
|
+
t as TableIcon
|
|
8
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = /* @__PURE__ */ new Map([
|
|
3
|
+
[
|
|
4
|
+
"bold",
|
|
5
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("path", { d: "M216.49,79.52l-56-56A12,12,0,0,0,152,20H56A20,20,0,0,0,36,40V216a20,20,0,0,0,20,20H200a20,20,0,0,0,20-20V88A12,12,0,0,0,216.49,79.52ZM160,57l23,23H160ZM60,212V44h76V92a12,12,0,0,0,12,12h48V212Z" }))
|
|
6
|
+
],
|
|
7
|
+
[
|
|
8
|
+
"duotone",
|
|
9
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("path", { d: "M208,88H152V32Z", opacity: "0.2" }), /* @__PURE__ */ e.createElement("path", { d: "M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40V216a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V88A8,8,0,0,0,213.66,82.34ZM160,51.31,188.69,80H160ZM200,216H56V40h88V88a8,8,0,0,0,8,8h48V216Z" }))
|
|
10
|
+
],
|
|
11
|
+
[
|
|
12
|
+
"fill",
|
|
13
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("path", { d: "M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40V216a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V88A8,8,0,0,0,213.66,82.34ZM152,88V44l44,44Z" }))
|
|
14
|
+
],
|
|
15
|
+
[
|
|
16
|
+
"light",
|
|
17
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("path", { d: "M212.24,83.76l-56-56A6,6,0,0,0,152,26H56A14,14,0,0,0,42,40V216a14,14,0,0,0,14,14H200a14,14,0,0,0,14-14V88A6,6,0,0,0,212.24,83.76ZM158,46.48,193.52,82H158ZM200,218H56a2,2,0,0,1-2-2V40a2,2,0,0,1,2-2h90V88a6,6,0,0,0,6,6h50V216A2,2,0,0,1,200,218Z" }))
|
|
18
|
+
],
|
|
19
|
+
[
|
|
20
|
+
"regular",
|
|
21
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("path", { d: "M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40V216a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V88A8,8,0,0,0,213.66,82.34ZM160,51.31,188.69,80H160ZM200,216H56V40h88V88a8,8,0,0,0,8,8h48V216Z" }))
|
|
22
|
+
],
|
|
23
|
+
[
|
|
24
|
+
"thin",
|
|
25
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("path", { d: "M210.83,85.17l-56-56A4,4,0,0,0,152,28H56A12,12,0,0,0,44,40V216a12,12,0,0,0,12,12H200a12,12,0,0,0,12-12V88A4,4,0,0,0,210.83,85.17ZM156,41.65,198.34,84H156ZM200,220H56a4,4,0,0,1-4-4V40a4,4,0,0,1,4-4h92V88a4,4,0,0,0,4,4h52V216A4,4,0,0,1,200,220Z" }))
|
|
26
|
+
]
|
|
27
|
+
]);
|
|
28
|
+
export {
|
|
29
|
+
a as default
|
|
30
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as a from "react";
|
|
2
|
+
const e = /* @__PURE__ */ new Map([
|
|
3
|
+
[
|
|
4
|
+
"bold",
|
|
5
|
+
/* @__PURE__ */ a.createElement(a.Fragment, null, /* @__PURE__ */ a.createElement("path", { d: "M128,180a52.06,52.06,0,0,0,52-52V64A52,52,0,0,0,76,64v64A52.06,52.06,0,0,0,128,180ZM100,64a28,28,0,0,1,56,0v64a28,28,0,0,1-56,0Zm40,155.22V240a12,12,0,0,1-24,0V219.22A92.14,92.14,0,0,1,36,128a12,12,0,0,1,24,0,68,68,0,0,0,136,0,12,12,0,0,1,24,0A92.14,92.14,0,0,1,140,219.22Z" }))
|
|
6
|
+
],
|
|
7
|
+
[
|
|
8
|
+
"duotone",
|
|
9
|
+
/* @__PURE__ */ a.createElement(a.Fragment, null, /* @__PURE__ */ a.createElement(
|
|
10
|
+
"path",
|
|
11
|
+
{
|
|
12
|
+
d: "M168,64v64a40,40,0,0,1-40,40h0a40,40,0,0,1-40-40V64a40,40,0,0,1,40-40h0A40,40,0,0,1,168,64Z",
|
|
13
|
+
opacity: "0.2"
|
|
14
|
+
}
|
|
15
|
+
), /* @__PURE__ */ a.createElement("path", { d: "M128,176a48.05,48.05,0,0,0,48-48V64a48,48,0,0,0-96,0v64A48.05,48.05,0,0,0,128,176ZM96,64a32,32,0,0,1,64,0v64a32,32,0,0,1-64,0Zm40,143.6V240a8,8,0,0,1-16,0V207.6A80.11,80.11,0,0,1,48,128a8,8,0,0,1,16,0,64,64,0,0,0,128,0,8,8,0,0,1,16,0A80.11,80.11,0,0,1,136,207.6Z" }))
|
|
16
|
+
],
|
|
17
|
+
[
|
|
18
|
+
"fill",
|
|
19
|
+
/* @__PURE__ */ a.createElement(a.Fragment, null, /* @__PURE__ */ a.createElement("path", { d: "M80,128V64a48,48,0,0,1,96,0v64a48,48,0,0,1-96,0Zm128,0a8,8,0,0,0-16,0,64,64,0,0,1-128,0,8,8,0,0,0-16,0,80.11,80.11,0,0,0,72,79.6V240a8,8,0,0,0,16,0V207.6A80.11,80.11,0,0,0,208,128Z" }))
|
|
20
|
+
],
|
|
21
|
+
[
|
|
22
|
+
"light",
|
|
23
|
+
/* @__PURE__ */ a.createElement(a.Fragment, null, /* @__PURE__ */ a.createElement("path", { d: "M128,174a46.06,46.06,0,0,0,46-46V64a46,46,0,0,0-92,0v64A46.06,46.06,0,0,0,128,174ZM94,64a34,34,0,0,1,68,0v64a34,34,0,0,1-68,0Zm40,141.75V240a6,6,0,0,1-12,0V205.75A78.09,78.09,0,0,1,50,128a6,6,0,0,1,12,0,66,66,0,0,0,132,0,6,6,0,0,1,12,0A78.09,78.09,0,0,1,134,205.75Z" }))
|
|
24
|
+
],
|
|
25
|
+
[
|
|
26
|
+
"regular",
|
|
27
|
+
/* @__PURE__ */ a.createElement(a.Fragment, null, /* @__PURE__ */ a.createElement("path", { d: "M128,176a48.05,48.05,0,0,0,48-48V64a48,48,0,0,0-96,0v64A48.05,48.05,0,0,0,128,176ZM96,64a32,32,0,0,1,64,0v64a32,32,0,0,1-64,0Zm40,143.6V240a8,8,0,0,1-16,0V207.6A80.11,80.11,0,0,1,48,128a8,8,0,0,1,16,0,64,64,0,0,0,128,0,8,8,0,0,1,16,0A80.11,80.11,0,0,1,136,207.6Z" }))
|
|
28
|
+
],
|
|
29
|
+
[
|
|
30
|
+
"thin",
|
|
31
|
+
/* @__PURE__ */ a.createElement(a.Fragment, null, /* @__PURE__ */ a.createElement("path", { d: "M128,172a44.05,44.05,0,0,0,44-44V64a44,44,0,0,0-88,0v64A44.05,44.05,0,0,0,128,172ZM92,64a36,36,0,0,1,72,0v64a36,36,0,0,1-72,0Zm40,139.89V240a4,4,0,0,1-8,0V203.89A76.09,76.09,0,0,1,52,128a4,4,0,0,1,8,0,68,68,0,0,0,136,0,4,4,0,0,1,8,0A76.09,76.09,0,0,1,132,203.89Z" }))
|
|
32
|
+
]
|
|
33
|
+
]);
|
|
34
|
+
export {
|
|
35
|
+
e as default
|
|
36
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = /* @__PURE__ */ new Map([
|
|
3
|
+
[
|
|
4
|
+
"bold",
|
|
5
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("path", { d: "M200,36H56A20,20,0,0,0,36,56V200a20,20,0,0,0,20,20H200a20,20,0,0,0,20-20V56A20,20,0,0,0,200,36Zm-4,160H60V60H196Z" }))
|
|
6
|
+
],
|
|
7
|
+
[
|
|
8
|
+
"duotone",
|
|
9
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement(
|
|
10
|
+
"path",
|
|
11
|
+
{
|
|
12
|
+
d: "M208,56V200a8,8,0,0,1-8,8H56a8,8,0,0,1-8-8V56a8,8,0,0,1,8-8H200A8,8,0,0,1,208,56Z",
|
|
13
|
+
opacity: "0.2"
|
|
14
|
+
}
|
|
15
|
+
), /* @__PURE__ */ e.createElement("path", { d: "M200,40H56A16,16,0,0,0,40,56V200a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V56A16,16,0,0,0,200,40Zm0,160H56V56H200V200Z" }))
|
|
16
|
+
],
|
|
17
|
+
[
|
|
18
|
+
"fill",
|
|
19
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("path", { d: "M216,56V200a16,16,0,0,1-16,16H56a16,16,0,0,1-16-16V56A16,16,0,0,1,56,40H200A16,16,0,0,1,216,56Z" }))
|
|
20
|
+
],
|
|
21
|
+
[
|
|
22
|
+
"light",
|
|
23
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("path", { d: "M200,42H56A14,14,0,0,0,42,56V200a14,14,0,0,0,14,14H200a14,14,0,0,0,14-14V56A14,14,0,0,0,200,42Zm2,158a2,2,0,0,1-2,2H56a2,2,0,0,1-2-2V56a2,2,0,0,1,2-2H200a2,2,0,0,1,2,2Z" }))
|
|
24
|
+
],
|
|
25
|
+
[
|
|
26
|
+
"regular",
|
|
27
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("path", { d: "M200,40H56A16,16,0,0,0,40,56V200a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V56A16,16,0,0,0,200,40Zm0,160H56V56H200V200Z" }))
|
|
28
|
+
],
|
|
29
|
+
[
|
|
30
|
+
"thin",
|
|
31
|
+
/* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("path", { d: "M200,44H56A12,12,0,0,0,44,56V200a12,12,0,0,0,12,12H200a12,12,0,0,0,12-12V56A12,12,0,0,0,200,44Zm4,156a4,4,0,0,1-4,4H56a4,4,0,0,1-4-4V56a4,4,0,0,1,4-4H200a4,4,0,0,1,4,4Z" }))
|
|
32
|
+
]
|
|
33
|
+
]);
|
|
34
|
+
export {
|
|
35
|
+
a as default
|
|
36
|
+
};
|