@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.
Files changed (161) hide show
  1. package/dist/components/atoms/access-denied-alert/access-denied-alert.d.ts +16 -0
  2. package/dist/components/atoms/accordion/accordion.d.ts +66 -0
  3. package/dist/components/atoms/alert/alert.d.ts +26 -1
  4. package/dist/components/atoms/alert/alert.js +9 -8
  5. package/dist/components/atoms/avatar/avatar-group.d.ts +28 -0
  6. package/dist/components/atoms/avatar/avatar.d.ts +25 -0
  7. package/dist/components/atoms/avatar/avatar.js +9 -9
  8. package/dist/components/atoms/badge/badge.d.ts +30 -2
  9. package/dist/components/atoms/badge/badge.js +27 -11
  10. package/dist/components/atoms/button/button.d.ts +44 -0
  11. package/dist/components/atoms/card/card.d.ts +137 -3
  12. package/dist/components/atoms/card/card.js +56 -28
  13. package/dist/components/atoms/checkbox/checkbox.d.ts +38 -2
  14. package/dist/components/atoms/checkbox/checkbox.js +61 -27
  15. package/dist/components/atoms/combobox/combobox.d.ts +18 -0
  16. package/dist/components/atoms/combobox/combobox.js +41 -41
  17. package/dist/components/atoms/combobox/types.d.ts +90 -1
  18. package/dist/components/atoms/currency-field/currency-field.d.ts +38 -0
  19. package/dist/components/atoms/currency-field/currency-field.js +22 -19
  20. package/dist/components/atoms/date-picker/date-picker.d.ts +15 -0
  21. package/dist/components/atoms/date-range-picker/date-range-picker.d.ts +15 -0
  22. package/dist/components/atoms/dots-menu/dots-menu.d.ts +16 -0
  23. package/dist/components/atoms/dots-menu/dots-menu.js +8 -8
  24. package/dist/components/atoms/dots-menu/dots-menu.types.d.ts +52 -0
  25. package/dist/components/atoms/dropdown-menu/dropdown-menu.d.ts +50 -0
  26. package/dist/components/atoms/field/field.d.ts +55 -0
  27. package/dist/components/atoms/field/field.js +53 -46
  28. package/dist/components/atoms/filter/filter-date-range.d.ts +12 -2
  29. package/dist/components/atoms/filter/filter-date-range.js +203 -168
  30. package/dist/components/atoms/filter/filter.d.ts +6 -0
  31. package/dist/components/atoms/filter/filter.js +91 -76
  32. package/dist/components/atoms/filter/index.d.ts +1 -1
  33. package/dist/components/atoms/filter-dropdown/filter-dropdown.d.ts +208 -2
  34. package/dist/components/atoms/filter-dropdown/filter-dropdown.js +214 -160
  35. package/dist/components/atoms/icon/aida-logo.d.ts +3 -0
  36. package/dist/components/atoms/icon/aida-logo.js +64 -0
  37. package/dist/components/atoms/icon/icon-list.d.ts +5 -0
  38. package/dist/components/atoms/icon/icon-list.js +394 -384
  39. package/dist/components/atoms/icon/icon.d.ts +29 -0
  40. package/dist/components/atoms/index.d.ts +3 -2
  41. package/dist/components/atoms/label/index.d.ts +1 -1
  42. package/dist/components/atoms/label/label.d.ts +11 -0
  43. package/dist/components/atoms/label/label.js +28 -0
  44. package/dist/components/atoms/link/link.d.ts +20 -0
  45. package/dist/components/atoms/loading/index.d.ts +1 -0
  46. package/dist/components/atoms/loading/loading.d.ts +39 -0
  47. package/dist/components/atoms/loading/loading.js +37 -0
  48. package/dist/components/atoms/multi-select/multi-select.d.ts +1 -1
  49. package/dist/components/atoms/multi-select/multi-select.js +6 -6
  50. package/dist/components/atoms/multi-values-field/multi-values-field.d.ts +16 -0
  51. package/dist/components/atoms/multi-values-field/multi-values-field.js +109 -87
  52. package/dist/components/atoms/multi-values-field/multi-values-field.types.d.ts +81 -0
  53. package/dist/components/atoms/otp-field/otp-field.d.ts +32 -0
  54. package/dist/components/atoms/password-field/password-field.d.ts +23 -0
  55. package/dist/components/atoms/password-field/password-field.js +1 -1
  56. package/dist/components/atoms/progress/progress.d.ts +15 -0
  57. package/dist/components/atoms/protected-field/protected-field.d.ts +10 -0
  58. package/dist/components/atoms/protected-field/protected-field.types.d.ts +14 -0
  59. package/dist/components/atoms/radio-group/radio-group-option.js +11 -11
  60. package/dist/components/atoms/radio-group/radio-group.d.ts +50 -1
  61. package/dist/components/atoms/radio-group/radio-group.js +13 -12
  62. package/dist/components/atoms/search-field/search-field.d.ts +14 -0
  63. package/dist/components/atoms/search-field/search-field.js +17 -17
  64. package/dist/components/atoms/search-field/search-field.types.d.ts +57 -0
  65. package/dist/components/atoms/select/index.d.ts +2 -0
  66. package/dist/components/atoms/select/search-select.d.ts +22 -0
  67. package/dist/components/atoms/select/search-select.js +201 -0
  68. package/dist/components/atoms/select/select.d.ts +83 -1
  69. package/dist/components/atoms/select/select.js +21 -21
  70. package/dist/components/atoms/separator/separator.d.ts +17 -0
  71. package/dist/components/atoms/skeleton/index.d.ts +9 -0
  72. package/dist/components/atoms/switch/switch.d.ts +56 -2
  73. package/dist/components/atoms/switch/switch.js +64 -32
  74. package/dist/components/atoms/tabs/index.d.ts +16 -0
  75. package/dist/components/atoms/textarea/textarea.d.ts +32 -0
  76. package/dist/components/atoms/textarea/textarea.js +1 -1
  77. package/dist/components/atoms/time-picker/time-picker.d.ts +73 -2
  78. package/dist/components/atoms/time-picker/time-picker.js +218 -3
  79. package/dist/components/atoms/toaster/index.d.ts +15 -0
  80. package/dist/components/atoms/toggle-group/toggle-group.d.ts +26 -1
  81. package/dist/components/atoms/toggle-group/toggle-group.js +15 -14
  82. package/dist/components/atoms/tooltip/tooltip.d.ts +53 -2
  83. package/dist/components/atoms/typography/typography.d.ts +18 -0
  84. package/dist/components/molecules/breadcrumb/breadcrumb.d.ts +50 -0
  85. package/dist/components/molecules/breadcrumb/breadcrumb.js +17 -17
  86. package/dist/components/molecules/dialog-content/dialog-content.d.ts +16 -0
  87. package/dist/components/molecules/dialog-footer/dialog-footer.d.ts +20 -0
  88. package/dist/components/molecules/dialog-header/dialog-header.d.ts +31 -0
  89. package/dist/components/molecules/empty/empty-icon.js +6 -6
  90. package/dist/components/molecules/empty/empty.d.ts +16 -1
  91. package/dist/components/molecules/empty/empty.js +37 -34
  92. package/dist/components/molecules/highlight-banner/highlight-banner.d.ts +17 -0
  93. package/dist/components/molecules/pagination/pagination.d.ts +49 -0
  94. package/dist/components/organisms/data-table/components/cells/data-table-list-cell.d.ts +41 -0
  95. package/dist/components/organisms/data-table/components/column-header/data-table-column-header-content.js +1 -1
  96. package/dist/components/organisms/data-table/components/column-header/data-table-column-header-menu.js +18 -18
  97. package/dist/components/organisms/data-table/components/column-header/data-table-column-header.d.ts +18 -0
  98. package/dist/components/organisms/data-table/components/column-header/data-table-column-header.js +10 -10
  99. package/dist/components/organisms/data-table/components/data-table-body.d.ts +18 -0
  100. package/dist/components/organisms/data-table/components/data-table-header.d.ts +12 -0
  101. package/dist/components/organisms/data-table/components/data-table-header.js +7 -7
  102. package/dist/components/organisms/data-table/components/states/data-table-loading.d.ts +24 -0
  103. package/dist/components/organisms/data-table/components/states/data-table-loading.js +6 -6
  104. package/dist/components/organisms/data-table/data-table.d.ts +133 -4
  105. package/dist/components/organisms/data-table/data-table.js +132 -100
  106. package/dist/components/organisms/data-table/data-table.types.d.ts +35 -26
  107. package/dist/components/organisms/data-table/hooks/use-data-table-columns.js +57 -41
  108. package/dist/components/organisms/data-table/hooks/use-data-table-state.d.ts +8 -2
  109. package/dist/components/organisms/data-table/hooks/use-data-table-state.js +82 -47
  110. package/dist/components/organisms/data-table/utils/data-table-constants.d.ts +8 -2
  111. package/dist/components/organisms/data-table/utils/data-table-constants.js +16 -10
  112. package/dist/components/organisms/data-table/utils/data-table-styles.d.ts +1652 -0
  113. package/dist/components/organisms/data-table/utils/data-table-styles.js +29 -14
  114. package/dist/components/organisms/dialog/dialog.d.ts +67 -1
  115. package/dist/components/organisms/dialog/dialog.js +78 -61
  116. package/dist/components/organisms/index.d.ts +2 -0
  117. package/dist/components/organisms/sheet/sheet.d.ts +69 -0
  118. package/dist/components/organisms/sheet/sheet.js +34 -33
  119. package/dist/components/organisms/tutorial/index.d.ts +2 -0
  120. package/dist/components/organisms/tutorial/tutorial.d.ts +16 -0
  121. package/dist/components/organisms/tutorial/tutorial.js +114 -0
  122. package/dist/components/organisms/tutorial/tutorial.types.d.ts +15 -0
  123. package/dist/hooks/index.d.ts +3 -0
  124. package/dist/hooks/use-body-scroll-lock.d.ts +13 -0
  125. package/dist/hooks/use-escape-key.d.ts +14 -0
  126. package/dist/hooks/use-media-query.d.ts +20 -0
  127. package/dist/hooks/use-media-query.js +21 -0
  128. package/dist/index.css +1 -1
  129. package/dist/index.d.ts +2 -0
  130. package/dist/index.js +173 -162
  131. package/dist/lib/notification-alert.d.ts +42 -0
  132. package/dist/lib/notification-alert.js +75 -0
  133. package/dist/node_modules/@phosphor-icons/react/dist/csr/File.es.js +8 -0
  134. package/dist/node_modules/@phosphor-icons/react/dist/csr/Microphone.es.js +8 -0
  135. package/dist/node_modules/@phosphor-icons/react/dist/csr/Stop.es.js +8 -0
  136. package/dist/node_modules/@phosphor-icons/react/dist/csr/Table.es.js +8 -0
  137. package/dist/node_modules/@phosphor-icons/react/dist/defs/File.es.js +30 -0
  138. package/dist/node_modules/@phosphor-icons/react/dist/defs/Microphone.es.js +36 -0
  139. package/dist/node_modules/@phosphor-icons/react/dist/defs/Stop.es.js +36 -0
  140. package/dist/node_modules/@phosphor-icons/react/dist/defs/Table.es.js +30 -0
  141. package/dist/vendor/shadcn/avatar.js +19 -19
  142. package/dist/vendor/shadcn/badge.js +15 -15
  143. package/dist/vendor/shadcn/card.js +7 -7
  144. package/dist/vendor/shadcn/date-picker.d.ts +2 -2
  145. package/dist/vendor/shadcn/date-picker.js +1 -1
  146. package/dist/vendor/shadcn/date-range-picker.d.ts +2 -2
  147. package/dist/vendor/shadcn/date-range-picker.js +1 -1
  148. package/dist/vendor/shadcn/dialog.js +2 -2
  149. package/dist/vendor/shadcn/input-group.js +17 -17
  150. package/dist/vendor/shadcn/input.js +7 -7
  151. package/dist/vendor/shadcn/popover.js +1 -1
  152. package/dist/vendor/shadcn/select.js +2 -2
  153. package/dist/vendor/shadcn/sonner.d.ts +26 -1
  154. package/dist/vendor/shadcn/sonner.js +12 -8
  155. package/dist/vendor/shadcn/table.js +30 -30
  156. package/dist/vendor/shadcn/textarea.js +9 -9
  157. package/dist/vendor/shadcn/time-picker.d.ts +1 -2
  158. package/dist/vendor/shadcn/time-picker.js +17 -23
  159. package/dist/vendor/shadcn/toggle.js +13 -13
  160. package/dist/vendor/shadcn/tooltip.js +25 -15
  161. 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 { Alert as m } from "./components/atoms/alert/alert.js";
5
- import { Accordion as f, AccordionContent as d, AccordionItem as l, AccordionTrigger as u } from "./components/atoms/accordion/accordion.js";
6
- import { AccessDeniedAlert as c } from "./components/atoms/access-denied-alert/access-denied-alert.js";
7
- import { Avatar as s } from "./components/atoms/avatar/avatar.js";
8
- import { Badge as C } from "./components/atoms/badge/badge.js";
9
- import { Button as M } from "./components/atoms/button/button.js";
10
- import { Card as w, CardContent as b, CardDescription as S, CardFooter as R, CardHeader as k, CardTitle as I } from "./components/atoms/card/card.js";
11
- import { Checkbox as G } from "./components/atoms/checkbox/checkbox.js";
12
- import { CurrencyField as A } from "./components/atoms/currency-field/currency-field.js";
13
- import { DatePicker as B } from "./components/atoms/date-picker/date-picker.js";
14
- import { DateRangePicker as O } from "./components/atoms/date-range-picker/date-range-picker.js";
15
- import { TimePicker as H } from "./components/atoms/time-picker/time-picker.js";
16
- import { FilterButton as z, FilterCheckboxOption as K, FilterContent as V, FilterRadioOption as j, FilterSection as q, FilterTag as J } from "./components/atoms/filter/filter.js";
17
- import { FilterDateRange as U, FilterDateRangeOption as W } from "./components/atoms/filter/filter-date-range.js";
18
- import { FilterDropdown as Y, FilterMenu as Z, FilterMenuItem as _ } from "./components/atoms/filter-dropdown/filter-dropdown.js";
19
- import { DropdownMenu as oo, DropdownMenuCheckboxItem as ro, DropdownMenuContent as eo, DropdownMenuGroup as to, DropdownMenuItem as po, DropdownMenuLabel as no, DropdownMenuPortal as io, DropdownMenuRadioGroup as ao, DropdownMenuRadioItem as mo, DropdownMenuSeparator as xo, DropdownMenuShortcut as fo, DropdownMenuSub as lo, DropdownMenuSubContent as uo, DropdownMenuSubTrigger as go, DropdownMenuTrigger as co } from "./components/atoms/dropdown-menu/dropdown-menu.js";
20
- import { DotsMenu as so } from "./components/atoms/dots-menu/dots-menu.js";
21
- import { ToggleGroup as Co, ToggleGroupItem as Fo } from "./components/atoms/toggle-group/toggle-group.js";
22
- import { Tooltip as To } from "./components/atoms/tooltip/tooltip.js";
23
- import { TooltipProvider as bo } from "./vendor/shadcn/tooltip.js";
24
- import { Field as Ro } from "./components/atoms/field/field.js";
25
- import { NavLink as Io } from "./components/atoms/nav-link/nav-link.js";
26
- import { Select as Go } from "./components/atoms/select/select.js";
27
- import { Combobox as Ao } from "./components/atoms/combobox/combobox.js";
28
- import { Link as Bo } from "./components/atoms/link/link.js";
29
- import { MultiValuesField as Oo } from "./components/atoms/multi-values-field/multi-values-field.js";
30
- import { MultiSelect as Ho } from "./components/atoms/multi-select/multi-select.js";
31
- import { Popover as zo, PopoverContent as Ko, PopoverTrigger as Vo } from "./components/atoms/popover/popover.js";
32
- import { RadioGroup as qo } from "./components/atoms/radio-group/radio-group.js";
33
- import { RadioGroup as Qo, RadioGroupItem as Uo } from "./vendor/shadcn/radio-group.js";
34
- import { RadioGroupOption as Xo } from "./components/atoms/radio-group/radio-group-option.js";
35
- import { SearchField as Zo } from "./components/atoms/search-field/search-field.js";
36
- import { Skeleton as $o } from "./vendor/shadcn/skeleton.js";
37
- import { Separator as rr } from "./components/atoms/separator/separator.js";
38
- import { Switch as tr } from "./components/atoms/switch/switch.js";
39
- import { Textarea as nr } from "./components/atoms/textarea/textarea.js";
40
- import { Typography as ar } from "./components/atoms/typography/typography.js";
41
- import { Icon as xr } from "./components/atoms/icon/icon.js";
42
- import { OTPField as dr } from "./components/atoms/otp-field/otp-field.js";
43
- import { PasswordField as ur } from "./components/atoms/password-field/password-field.js";
44
- import { ProtectedField as cr } from "./components/atoms/protected-field/protected-field.js";
45
- import { Progress as sr } from "./components/atoms/progress/progress.js";
46
- import { Toaster as Cr } from "./vendor/shadcn/sonner.js";
47
- import { Breadcrumb as Mr } from "./components/molecules/breadcrumb/breadcrumb.js";
48
- import { Pagination as wr, Pagination as br } from "./components/molecules/pagination/pagination.js";
49
- import { PaginationContent as Rr, PaginationEllipsis as kr, PaginationItem as Ir, PaginationLink as hr, PaginationNext as Gr, PaginationPrevious as vr } from "./vendor/shadcn/pagination.js";
50
- import { NavTabs as yr } from "./components/molecules/nav-tabs/nav-tabs.js";
51
- import { HighlightBanner as Lr } from "./components/molecules/highlight-banner/highlight-banner.js";
52
- import { Empty as Er } from "./components/molecules/empty/empty.js";
53
- import { EmptyIcon as Nr } from "./components/molecules/empty/empty-icon.js";
54
- import { DialogHeader as Kr } from "./components/molecules/dialog-header/dialog-header.js";
55
- import { DialogContent as jr } from "./components/molecules/dialog-content/dialog-content.js";
56
- import { DialogFooter as Jr } from "./components/molecules/dialog-footer/dialog-footer.js";
57
- import { Dialog as Ur } from "./components/organisms/dialog/dialog.js";
58
- import { Sheet as Xr } from "./components/organisms/sheet/sheet.js";
59
- import { DataTable as Zr } from "./components/organisms/data-table/data-table.js";
60
- import { DataTableColumnHeader as $r } from "./components/organisms/data-table/components/column-header/data-table-column-header.js";
61
- import { DataTableSortIndicator as re } from "./components/organisms/data-table/components/column-header/data-table-sort-indicator.js";
62
- import { DataTableListCell as te } from "./components/organisms/data-table/components/cells/data-table-list-cell.js";
63
- import { useBodyScrollLock as ne } from "./hooks/use-body-scroll-lock.js";
64
- import { useEscapeKey as ae } from "./hooks/use-escape-key.js";
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
- c as AccessDeniedAlert,
67
- f as Accordion,
68
- d as AccordionContent,
69
- l as AccordionItem,
70
- u as AccordionTrigger,
71
- m as Alert,
72
- s as Avatar,
73
- C as Badge,
74
- Mr as Breadcrumb,
75
- M as Button,
76
- w as Card,
77
- b as CardContent,
78
- S as CardDescription,
79
- R as CardFooter,
80
- k as CardHeader,
81
- I as CardTitle,
82
- G as Checkbox,
83
- Ao as Combobox,
84
- A as CurrencyField,
85
- Zr as DataTable,
86
- $r as DataTableColumnHeader,
87
- te as DataTableListCell,
88
- re as DataTableSortIndicator,
89
- B as DatePicker,
90
- O as DateRangePicker,
91
- Ur as Dialog,
92
- jr as DialogContent,
93
- Jr as DialogFooter,
94
- Kr as DialogHeader,
95
- so as DotsMenu,
96
- oo as DropdownMenu,
97
- ro as DropdownMenuCheckboxItem,
98
- eo as DropdownMenuContent,
99
- to as DropdownMenuGroup,
100
- po as DropdownMenuItem,
101
- no as DropdownMenuLabel,
102
- io as DropdownMenuPortal,
103
- ao as DropdownMenuRadioGroup,
104
- mo as DropdownMenuRadioItem,
105
- xo as DropdownMenuSeparator,
106
- fo as DropdownMenuShortcut,
107
- lo as DropdownMenuSub,
108
- uo as DropdownMenuSubContent,
109
- go as DropdownMenuSubTrigger,
110
- co as DropdownMenuTrigger,
111
- Er as Empty,
112
- Nr as EmptyIcon,
113
- Ro as Field,
114
- z as FilterButton,
115
- K as FilterCheckboxOption,
116
- V as FilterContent,
117
- U as FilterDateRange,
118
- W as FilterDateRangeOption,
119
- Y as FilterDropdown,
120
- Z as FilterMenu,
121
- _ as FilterMenuItem,
122
- j as FilterRadioOption,
123
- q as FilterSection,
124
- J as FilterTag,
125
- Lr as HighlightBanner,
126
- xr as Icon,
127
- Bo as Link,
128
- Ho as MultiSelect,
129
- Oo as MultiValuesField,
130
- Io as NavLink,
131
- yr as NavTabs,
132
- dr as OTPField,
133
- wr as Pagination,
134
- Rr as PaginationContent,
135
- kr as PaginationEllipsis,
136
- Ir as PaginationItem,
137
- hr as PaginationLink,
138
- Gr as PaginationNext,
139
- vr as PaginationPrevious,
140
- br as PaginationRoot,
141
- ur as PasswordField,
142
- zo as Popover,
143
- Ko as PopoverContent,
144
- Vo as PopoverTrigger,
145
- sr as Progress,
146
- cr as ProtectedField,
147
- qo as RadioGroup,
148
- Qo as RadioGroupBase,
149
- Uo as RadioGroupItem,
150
- Xo as RadioGroupOption,
151
- Zo as SearchField,
152
- Go as Select,
153
- rr as Separator,
154
- Xr as Sheet,
155
- $o as Skeleton,
156
- tr as Switch,
157
- nr as Textarea,
158
- H as TimePicker,
159
- Cr as Toaster,
160
- Co as ToggleGroup,
161
- Fo as ToggleGroupItem,
162
- To as Tooltip,
163
- bo as TooltipProvider,
164
- ar as Typography,
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
- ne as useBodyScrollLock,
169
- ae as useEscapeKey
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
+ };