@forgedevstack/bear 1.3.1 → 1.3.2

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 (269) hide show
  1. package/README.md +26 -0
  2. package/dist/components/Accordion/components/AccordionItem/AccordionItem.cjs +1 -1
  3. package/dist/components/Accordion/components/AccordionItem/AccordionItem.js +1 -1
  4. package/dist/components/Alert/Alert.cjs +1 -1
  5. package/dist/components/Alert/Alert.js +1 -1
  6. package/dist/components/Avatar/Avatar.cjs +1 -1
  7. package/dist/components/Avatar/Avatar.js +1 -1
  8. package/dist/components/BackTop/BackTop.cjs +1 -1
  9. package/dist/components/BackTop/BackTop.js +1 -1
  10. package/dist/components/Banner/Banner.const.cjs +1 -1
  11. package/dist/components/Banner/Banner.const.js +1 -1
  12. package/dist/components/Blockquote/Blockquote.cjs +1 -1
  13. package/dist/components/Blockquote/Blockquote.js +1 -1
  14. package/dist/components/BottomSheet/BottomSheet.cjs +1 -1
  15. package/dist/components/BottomSheet/BottomSheet.js +1 -1
  16. package/dist/components/Breadcrumbs/Breadcrumbs.cjs +1 -1
  17. package/dist/components/Breadcrumbs/Breadcrumbs.js +1 -1
  18. package/dist/components/Calendar/Calendar.cjs +1 -1
  19. package/dist/components/Calendar/Calendar.js +1 -1
  20. package/dist/components/Chart/BarChart.cjs +1 -1
  21. package/dist/components/Chart/BarChart.d.ts +1 -2
  22. package/dist/components/Chart/BarChart.js +81 -61
  23. package/dist/components/Chart/Chart.cjs +1 -1
  24. package/dist/components/Chart/Chart.const.cjs +1 -1
  25. package/dist/components/Chart/Chart.const.d.ts +24 -3
  26. package/dist/components/Chart/Chart.const.js +39 -16
  27. package/dist/components/Chart/Chart.d.ts +1 -5
  28. package/dist/components/Chart/Chart.js +19 -23
  29. package/dist/components/Chart/Chart.types.d.ts +11 -19
  30. package/dist/components/Chart/Chart.utils.cjs +1 -1
  31. package/dist/components/Chart/Chart.utils.d.ts +8 -18
  32. package/dist/components/Chart/Chart.utils.js +39 -3
  33. package/dist/components/Chart/FunnelChart.cjs +1 -0
  34. package/dist/components/Chart/FunnelChart.d.ts +2 -0
  35. package/dist/components/Chart/FunnelChart.js +59 -0
  36. package/dist/components/Chart/LineChart.cjs +1 -1
  37. package/dist/components/Chart/LineChart.d.ts +1 -2
  38. package/dist/components/Chart/LineChart.js +51 -55
  39. package/dist/components/Chart/PieChart.cjs +1 -1
  40. package/dist/components/Chart/PieChart.d.ts +1 -2
  41. package/dist/components/Chart/PieChart.js +121 -106
  42. package/dist/components/Chart/PieChart.types.d.ts +8 -0
  43. package/dist/components/Chart/RadarChart.cjs +1 -0
  44. package/dist/components/Chart/RadarChart.d.ts +2 -0
  45. package/dist/components/Chart/RadarChart.js +100 -0
  46. package/dist/components/Chart/index.d.ts +3 -1
  47. package/dist/components/Chat/Chat.cjs +1 -1
  48. package/dist/components/Chat/Chat.js +1 -1
  49. package/dist/components/CurrencyInput/CurrencyInput.cjs +1 -1
  50. package/dist/components/CurrencyInput/CurrencyInput.js +1 -1
  51. package/dist/components/DatePicker/DatePicker.cjs +1 -1
  52. package/dist/components/DatePicker/DatePicker.js +1 -1
  53. package/dist/components/DateRangePicker/DateRangePicker.cjs +1 -1
  54. package/dist/components/DateRangePicker/DateRangePicker.js +1 -1
  55. package/dist/components/Drawer/Drawer.cjs +1 -1
  56. package/dist/components/Drawer/Drawer.const.cjs +1 -1
  57. package/dist/components/Drawer/Drawer.const.d.ts +2 -11
  58. package/dist/components/Drawer/Drawer.const.js +6 -55
  59. package/dist/components/Drawer/Drawer.d.ts +1 -2
  60. package/dist/components/Drawer/Drawer.js +87 -131
  61. package/dist/components/Drawer/Drawer.types.d.ts +16 -3
  62. package/dist/components/Drawer/Drawer.utils.d.ts +0 -4
  63. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.cjs +1 -0
  64. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.d.ts +2 -0
  65. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.js +26 -0
  66. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.types.d.ts +20 -0
  67. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.cjs +1 -0
  68. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.d.ts +2 -0
  69. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.js +17 -0
  70. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.cjs +1 -0
  71. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.d.ts +2 -0
  72. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.js +9 -0
  73. package/dist/components/Drawer/components/DrawerHeader/index.d.ts +2 -0
  74. package/dist/components/Drawer/components/index.d.ts +1 -0
  75. package/dist/components/Drawer/helpers/DrawerOptionalHeader.cjs +1 -0
  76. package/dist/components/Drawer/helpers/DrawerOptionalHeader.d.ts +2 -0
  77. package/dist/components/Drawer/helpers/DrawerOptionalHeader.js +9 -0
  78. package/dist/components/Drawer/helpers/index.d.ts +1 -0
  79. package/dist/components/Drawer/hooks/index.d.ts +1 -0
  80. package/dist/components/Drawer/hooks/useDrawer.cjs +1 -0
  81. package/dist/components/Drawer/hooks/useDrawer.d.ts +2 -0
  82. package/dist/components/Drawer/hooks/useDrawer.js +51 -0
  83. package/dist/components/Editable/Editable.cjs +1 -1
  84. package/dist/components/Editable/Editable.js +1 -1
  85. package/dist/components/FileTree/FileTree.cjs +1 -1
  86. package/dist/components/FileTree/FileTree.js +1 -1
  87. package/dist/components/FloatingChat/FloatingChat.cjs +1 -1
  88. package/dist/components/FloatingChat/FloatingChat.js +1 -1
  89. package/dist/components/Gauge/Gauge.cjs +1 -1
  90. package/dist/components/Gauge/Gauge.const.cjs +1 -1
  91. package/dist/components/Gauge/Gauge.const.d.ts +5 -0
  92. package/dist/components/Gauge/Gauge.const.js +11 -6
  93. package/dist/components/Gauge/Gauge.d.ts +1 -2
  94. package/dist/components/Gauge/Gauge.js +69 -45
  95. package/dist/components/Gauge/Gauge.types.d.ts +11 -2
  96. package/dist/components/Gauge/helpers/GaugeLinearBar.cjs +1 -0
  97. package/dist/components/Gauge/helpers/GaugeLinearBar.d.ts +2 -0
  98. package/dist/components/Gauge/helpers/GaugeLinearBar.js +40 -0
  99. package/dist/components/Heatmap/Heatmap.cjs +1 -1
  100. package/dist/components/Heatmap/Heatmap.const.cjs +1 -1
  101. package/dist/components/Heatmap/Heatmap.const.d.ts +2 -0
  102. package/dist/components/Heatmap/Heatmap.const.js +8 -6
  103. package/dist/components/Heatmap/Heatmap.js +51 -47
  104. package/dist/components/Heatmap/Heatmap.types.d.ts +1 -1
  105. package/dist/components/Icon/Icon.d.ts +2 -39
  106. package/dist/components/Icon/Icon.types.d.ts +1 -17
  107. package/dist/components/Icon/icons/action.d.ts +1 -85
  108. package/dist/components/Icon/icons/bear.d.ts +1 -12
  109. package/dist/components/Icon/icons/charts.d.ts +1 -0
  110. package/dist/components/Icon/icons/commerce.d.ts +1 -25
  111. package/dist/components/Icon/icons/communication.d.ts +1 -48
  112. package/dist/components/Icon/icons/content.d.ts +1 -53
  113. package/dist/components/Icon/icons/device.d.ts +1 -27
  114. package/dist/components/Icon/icons/editor.d.ts +1 -54
  115. package/dist/components/Icon/icons/file.d.ts +1 -25
  116. package/dist/components/Icon/icons/index.d.ts +1 -9
  117. package/dist/components/Icon/icons/media.d.ts +1 -64
  118. package/dist/components/Icon/icons/misc.d.ts +1 -96
  119. package/dist/components/Icon/icons/navigation.d.ts +1 -56
  120. package/dist/components/Icon/icons/social.d.ts +1 -24
  121. package/dist/components/Icon/icons/status.d.ts +1 -61
  122. package/dist/components/Icon/index.d.ts +2 -605
  123. package/dist/components/ImageAnnotation/ImageAnnotation.cjs +1 -1
  124. package/dist/components/ImageAnnotation/ImageAnnotation.js +1 -1
  125. package/dist/components/JsonViewer/JsonViewer.cjs +1 -1
  126. package/dist/components/JsonViewer/JsonViewer.js +1 -1
  127. package/dist/components/MediaPlayer/MediaPlayer.cjs +1 -1
  128. package/dist/components/MediaPlayer/MediaPlayer.js +1 -1
  129. package/dist/components/Modal/Modal.cjs +1 -1
  130. package/dist/components/Modal/Modal.js +1 -1
  131. package/dist/components/PageNav/PageNav.cjs +1 -1
  132. package/dist/components/PageNav/PageNav.js +1 -1
  133. package/dist/components/PasswordInput/PasswordInput.cjs +1 -1
  134. package/dist/components/PasswordInput/PasswordInput.js +5 -5
  135. package/dist/components/PropsPlayground/PropsPlayground.cjs +1 -1
  136. package/dist/components/PropsPlayground/PropsPlayground.js +1 -1
  137. package/dist/components/Rating/components/StarIcon/StarIcon.cjs +1 -1
  138. package/dist/components/Rating/components/StarIcon/StarIcon.js +1 -1
  139. package/dist/components/Result/Result.utils.cjs +1 -1
  140. package/dist/components/Result/Result.utils.js +1 -1
  141. package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.cjs +1 -1
  142. package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.js +1 -1
  143. package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.cjs +1 -1
  144. package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.js +1 -1
  145. package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.cjs +1 -1
  146. package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.js +1 -1
  147. package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.cjs +1 -1
  148. package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.js +1 -1
  149. package/dist/components/RichEditor/helpers/IconRender.cjs +1 -1
  150. package/dist/components/RichEditor/helpers/IconRender.js +16 -16
  151. package/dist/components/RichEditor/helpers/toolbarItemRender.cjs +1 -1
  152. package/dist/components/RichEditor/helpers/toolbarItemRender.js +23 -23
  153. package/dist/components/RingProgress/RingProgress.cjs +1 -1
  154. package/dist/components/RingProgress/RingProgress.const.cjs +1 -1
  155. package/dist/components/RingProgress/RingProgress.const.d.ts +3 -0
  156. package/dist/components/RingProgress/RingProgress.const.js +7 -4
  157. package/dist/components/RingProgress/RingProgress.js +38 -37
  158. package/dist/components/RingProgress/RingProgress.types.d.ts +1 -0
  159. package/dist/components/Select/Select.cjs +1 -1
  160. package/dist/components/Select/Select.js +1 -1
  161. package/dist/components/Sidebar/Sidebar.cjs +1 -1
  162. package/dist/components/Sidebar/Sidebar.js +16 -15
  163. package/dist/components/Sidebar/Sidebar.types.d.ts +1 -1
  164. package/dist/components/Sidebar/Sidebar.utils.cjs +1 -0
  165. package/dist/components/Sidebar/Sidebar.utils.d.ts +2 -0
  166. package/dist/components/Sidebar/Sidebar.utils.js +11 -0
  167. package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.cjs +1 -1
  168. package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.js +1 -1
  169. package/dist/components/Sidebar/components/SidebarItem/SidebarItem.cjs +1 -1
  170. package/dist/components/Sidebar/components/SidebarItem/SidebarItem.js +55 -51
  171. package/dist/components/Sidebar/index.d.ts +1 -0
  172. package/dist/components/SliderRange/SliderRange.cjs +1 -1
  173. package/dist/components/SliderRange/SliderRange.js +19 -19
  174. package/dist/components/Sparkline/Sparkline.cjs +1 -1
  175. package/dist/components/Sparkline/Sparkline.const.cjs +1 -1
  176. package/dist/components/Sparkline/Sparkline.const.d.ts +5 -0
  177. package/dist/components/Sparkline/Sparkline.const.js +9 -4
  178. package/dist/components/Sparkline/Sparkline.d.ts +1 -2
  179. package/dist/components/Sparkline/Sparkline.js +75 -53
  180. package/dist/components/Sparkline/Sparkline.types.d.ts +2 -0
  181. package/dist/components/Sparkline/Sparkline.utils.cjs +1 -1
  182. package/dist/components/Sparkline/Sparkline.utils.d.ts +7 -12
  183. package/dist/components/Sparkline/Sparkline.utils.js +33 -20
  184. package/dist/components/Sparkline/index.d.ts +2 -2
  185. package/dist/components/Stepper/Stepper.cjs +1 -1
  186. package/dist/components/Stepper/Stepper.js +1 -1
  187. package/dist/components/Tabs/TabList.cjs +1 -1
  188. package/dist/components/Tabs/TabList.js +1 -1
  189. package/dist/components/TimePicker/TimePicker.cjs +1 -1
  190. package/dist/components/TimePicker/TimePicker.js +1 -1
  191. package/dist/components/TimelineChart/TimelineChart.cjs +1 -1
  192. package/dist/components/TimelineChart/TimelineChart.const.cjs +1 -1
  193. package/dist/components/TimelineChart/TimelineChart.const.d.ts +3 -0
  194. package/dist/components/TimelineChart/TimelineChart.const.js +7 -4
  195. package/dist/components/TimelineChart/TimelineChart.js +56 -42
  196. package/dist/components/TimelineChart/TimelineChart.types.d.ts +1 -1
  197. package/dist/components/TreeSelect/TreeSelect.cjs +1 -1
  198. package/dist/components/TreeSelect/TreeSelect.js +1 -1
  199. package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.cjs +1 -1
  200. package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.js +1 -1
  201. package/dist/components/TreeView/TreeView.cjs +1 -1
  202. package/dist/components/TreeView/TreeView.js +3 -2
  203. package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.cjs +1 -1
  204. package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.js +1 -1
  205. package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.cjs +1 -1
  206. package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.js +1 -1
  207. package/dist/components/index.cjs +1 -1
  208. package/dist/components/index.d.ts +2 -2
  209. package/dist/components/index.js +409 -406
  210. package/dist/constants/generals.const.cjs +1 -1
  211. package/dist/constants/generals.const.d.ts +4 -0
  212. package/dist/constants/generals.const.js +50 -47
  213. package/dist/icons.cjs +1 -1
  214. package/dist/icons.d.ts +2 -2
  215. package/dist/icons.js +1 -6
  216. package/dist/index.cjs +1 -1
  217. package/dist/index.js +551 -548
  218. package/dist/node_modules/@forgedevstack/bear-icons/dist/Icon.cjs +1 -0
  219. package/dist/node_modules/@forgedevstack/bear-icons/dist/Icon.const.cjs +1 -0
  220. package/dist/node_modules/@forgedevstack/bear-icons/dist/Icon.const.js +14 -0
  221. package/dist/node_modules/@forgedevstack/bear-icons/dist/Icon.js +35 -0
  222. package/dist/node_modules/@forgedevstack/bear-icons/dist/action.cjs +1 -0
  223. package/dist/node_modules/@forgedevstack/bear-icons/dist/action.js +26 -0
  224. package/dist/node_modules/@forgedevstack/bear-icons/dist/cn.utils.cjs +1 -0
  225. package/dist/node_modules/@forgedevstack/bear-icons/dist/cn.utils.js +4 -0
  226. package/dist/node_modules/@forgedevstack/bear-icons/dist/editor.cjs +1 -0
  227. package/dist/node_modules/@forgedevstack/bear-icons/dist/editor.js +130 -0
  228. package/dist/node_modules/@forgedevstack/bear-icons/dist/misc.cjs +1 -0
  229. package/dist/node_modules/@forgedevstack/bear-icons/dist/misc.js +12 -0
  230. package/dist/node_modules/@forgedevstack/bear-icons/dist/navigation.cjs +1 -0
  231. package/dist/node_modules/@forgedevstack/bear-icons/dist/navigation.js +18 -0
  232. package/dist/node_modules/@forgedevstack/bear-icons/dist/status.cjs +1 -0
  233. package/dist/node_modules/@forgedevstack/bear-icons/dist/status.js +6 -0
  234. package/dist/styles/_drawer.css +213 -0
  235. package/dist/styles/_overlays.css +0 -1
  236. package/dist/styles/main.css +1 -0
  237. package/dist/styles.css +226 -25
  238. package/package.json +5 -1
  239. package/dist/components/Icon/Icon.cjs +0 -1
  240. package/dist/components/Icon/Icon.const.d.ts +0 -1
  241. package/dist/components/Icon/Icon.js +0 -45
  242. package/dist/components/Icon/icons/action.cjs +0 -1
  243. package/dist/components/Icon/icons/action.js +0 -351
  244. package/dist/components/Icon/icons/bear.cjs +0 -1
  245. package/dist/components/Icon/icons/bear.js +0 -47
  246. package/dist/components/Icon/icons/commerce.cjs +0 -1
  247. package/dist/components/Icon/icons/commerce.js +0 -124
  248. package/dist/components/Icon/icons/communication.cjs +0 -1
  249. package/dist/components/Icon/icons/communication.js +0 -184
  250. package/dist/components/Icon/icons/content.cjs +0 -1
  251. package/dist/components/Icon/icons/content.js +0 -231
  252. package/dist/components/Icon/icons/device.cjs +0 -1
  253. package/dist/components/Icon/icons/device.js +0 -122
  254. package/dist/components/Icon/icons/editor.cjs +0 -1
  255. package/dist/components/Icon/icons/editor.js +0 -285
  256. package/dist/components/Icon/icons/file.cjs +0 -1
  257. package/dist/components/Icon/icons/file.js +0 -120
  258. package/dist/components/Icon/icons/media.cjs +0 -1
  259. package/dist/components/Icon/icons/media.js +0 -306
  260. package/dist/components/Icon/icons/misc.cjs +0 -1
  261. package/dist/components/Icon/icons/misc.js +0 -450
  262. package/dist/components/Icon/icons/navigation.cjs +0 -1
  263. package/dist/components/Icon/icons/navigation.js +0 -215
  264. package/dist/components/Icon/icons/social.cjs +0 -1
  265. package/dist/components/Icon/icons/social.js +0 -89
  266. package/dist/components/Icon/icons/status.cjs +0 -1
  267. package/dist/components/Icon/icons/status.js +0 -271
  268. package/dist/components/Icon/index.cjs +0 -1
  269. package/dist/components/Icon/index.js +0 -79
package/dist/styles.css CHANGED
@@ -170008,7 +170008,6 @@
170008
170008
  }
170009
170009
 
170010
170010
  .Bear-Modal__container,
170011
- .Bear-Drawer__panel,
170012
170011
  .Bear-AlertDialog__container {
170013
170012
  position: relative;
170014
170013
  z-index: 1;
@@ -170349,6 +170348,220 @@
170349
170348
  font-weight: 600;
170350
170349
  }
170351
170350
 
170351
+ .Bear-Drawer {
170352
+ position: fixed;
170353
+ inset: 0;
170354
+ z-index: var(--bear-z-overlay, 11000);
170355
+ isolation: isolate;
170356
+ }
170357
+
170358
+ .Bear-Drawer__panel {
170359
+ position: absolute;
170360
+ z-index: 1;
170361
+ display: flex;
170362
+ flex-direction: column;
170363
+ overflow: hidden;
170364
+ background: var(--bear-bg-primary, #fff);
170365
+ box-shadow: 0 25px 50px -12px rgb(15 23 42 / 0.25);
170366
+ opacity: 1;
170367
+ transition:
170368
+ transform var(--bear-drawer-duration, 300ms) ease,
170369
+ opacity var(--bear-drawer-duration, 300ms) ease;
170370
+ }
170371
+
170372
+ .bear-dark .Bear-Drawer__panel,
170373
+ .dark .Bear-Drawer__panel {
170374
+ background: var(--bear-bg-secondary, #171717);
170375
+ }
170376
+
170377
+ .Bear-Drawer__panel--left {
170378
+ left: 0;
170379
+ top: 0;
170380
+ height: 100%;
170381
+ border-right: 1px solid var(--bear-border, #e5e5e5);
170382
+ transform: translateX(-100%);
170383
+ }
170384
+
170385
+ .Bear-Drawer__panel--right {
170386
+ right: 0;
170387
+ top: 0;
170388
+ height: 100%;
170389
+ border-left: 1px solid var(--bear-border, #e5e5e5);
170390
+ transform: translateX(100%);
170391
+ }
170392
+
170393
+ .Bear-Drawer__panel--top {
170394
+ top: 0;
170395
+ left: 0;
170396
+ width: 100%;
170397
+ border-bottom: 1px solid var(--bear-border, #e5e5e5);
170398
+ transform: translateY(-100%);
170399
+ }
170400
+
170401
+ .Bear-Drawer__panel--bottom {
170402
+ bottom: 0;
170403
+ left: 0;
170404
+ width: 100%;
170405
+ border-top: 1px solid var(--bear-border, #e5e5e5);
170406
+ transform: translateY(100%);
170407
+ }
170408
+
170409
+ .Bear-Drawer__panel--open.Bear-Drawer__panel--left,
170410
+ .Bear-Drawer__panel--open.Bear-Drawer__panel--right {
170411
+ transform: translateX(0);
170412
+ }
170413
+
170414
+ .Bear-Drawer__panel--open.Bear-Drawer__panel--top,
170415
+ .Bear-Drawer__panel--open.Bear-Drawer__panel--bottom {
170416
+ transform: translateY(0);
170417
+ }
170418
+
170419
+ .Bear-Drawer__panel--effect-none {
170420
+ transition: none;
170421
+ }
170422
+
170423
+ .Bear-Drawer__panel--left.Bear-Drawer__panel--effect-none,
170424
+ .Bear-Drawer__panel--right.Bear-Drawer__panel--effect-none,
170425
+ .Bear-Drawer__panel--top.Bear-Drawer__panel--effect-none,
170426
+ .Bear-Drawer__panel--bottom.Bear-Drawer__panel--effect-none {
170427
+ transform: none;
170428
+ opacity: 1;
170429
+ }
170430
+
170431
+ .Bear-Drawer__panel--left.Bear-Drawer__panel--effect-fade,
170432
+ .Bear-Drawer__panel--right.Bear-Drawer__panel--effect-fade,
170433
+ .Bear-Drawer__panel--top.Bear-Drawer__panel--effect-fade,
170434
+ .Bear-Drawer__panel--bottom.Bear-Drawer__panel--effect-fade {
170435
+ transform: none;
170436
+ opacity: 0;
170437
+ }
170438
+
170439
+ .Bear-Drawer__panel--effect-fade.Bear-Drawer__panel--open {
170440
+ opacity: 1;
170441
+ }
170442
+
170443
+ .Bear-Drawer__panel--left.Bear-Drawer__panel--effect-scale {
170444
+ transform: scale(0.96);
170445
+ transform-origin: left center;
170446
+ opacity: 0;
170447
+ }
170448
+
170449
+ .Bear-Drawer__panel--right.Bear-Drawer__panel--effect-scale {
170450
+ transform: scale(0.96);
170451
+ transform-origin: right center;
170452
+ opacity: 0;
170453
+ }
170454
+
170455
+ .Bear-Drawer__panel--top.Bear-Drawer__panel--effect-scale {
170456
+ transform: scale(0.96);
170457
+ transform-origin: top center;
170458
+ opacity: 0;
170459
+ }
170460
+
170461
+ .Bear-Drawer__panel--bottom.Bear-Drawer__panel--effect-scale {
170462
+ transform: scale(0.96);
170463
+ transform-origin: bottom center;
170464
+ opacity: 0;
170465
+ }
170466
+
170467
+ .Bear-Drawer__panel--effect-scale.Bear-Drawer__panel--open {
170468
+ transform: scale(1);
170469
+ opacity: 1;
170470
+ }
170471
+
170472
+ .Bear-Drawer__header {
170473
+ display: flex;
170474
+ align-items: center;
170475
+ justify-content: space-between;
170476
+ flex-shrink: 0;
170477
+ padding: 0.75rem 1rem;
170478
+ border-bottom: 1px solid var(--bear-border, #e5e5e5);
170479
+ }
170480
+
170481
+ .Bear-Drawer__title {
170482
+ margin: 0;
170483
+ font-size: 1.125rem;
170484
+ font-weight: 600;
170485
+ color: var(--bear-text-primary, #171717);
170486
+ }
170487
+
170488
+ .Bear-Drawer__header--close-start {
170489
+ flex-direction: row-reverse;
170490
+ }
170491
+
170492
+ .Bear-Drawer__close {
170493
+ padding: 0.25rem;
170494
+ border: 0;
170495
+ border-radius: 0.5rem;
170496
+ background: transparent;
170497
+ color: var(--bear-text-secondary, #737373);
170498
+ cursor: pointer;
170499
+ }
170500
+
170501
+ .Bear-Drawer__close:hover {
170502
+ color: var(--bear-text-primary, #171717);
170503
+ background: var(--bear-bg-tertiary, #f5f5f5);
170504
+ }
170505
+
170506
+ .Bear-Drawer__body {
170507
+ flex: 1 1 auto;
170508
+ min-height: 0;
170509
+ overflow-y: auto;
170510
+ overscroll-behavior: contain;
170511
+ padding: 1rem;
170512
+ }
170513
+
170514
+ .Bear-Drawer__panel--sm.Bear-Drawer__panel--left,
170515
+ .Bear-Drawer__panel--sm.Bear-Drawer__panel--right {
170516
+ width: 16rem;
170517
+ max-width: 100%;
170518
+ }
170519
+
170520
+ .Bear-Drawer__panel--md.Bear-Drawer__panel--left,
170521
+ .Bear-Drawer__panel--md.Bear-Drawer__panel--right {
170522
+ width: 20rem;
170523
+ max-width: 100%;
170524
+ }
170525
+
170526
+ .Bear-Drawer__panel--lg.Bear-Drawer__panel--left,
170527
+ .Bear-Drawer__panel--lg.Bear-Drawer__panel--right {
170528
+ width: 24rem;
170529
+ max-width: 100%;
170530
+ }
170531
+
170532
+ .Bear-Drawer__panel--xl.Bear-Drawer__panel--left,
170533
+ .Bear-Drawer__panel--xl.Bear-Drawer__panel--right {
170534
+ width: 32rem;
170535
+ max-width: 100%;
170536
+ }
170537
+
170538
+ .Bear-Drawer__panel--sm.Bear-Drawer__panel--top,
170539
+ .Bear-Drawer__panel--sm.Bear-Drawer__panel--bottom {
170540
+ height: 8rem;
170541
+ }
170542
+
170543
+ .Bear-Drawer__panel--md.Bear-Drawer__panel--top,
170544
+ .Bear-Drawer__panel--md.Bear-Drawer__panel--bottom {
170545
+ height: 12rem;
170546
+ }
170547
+
170548
+ .Bear-Drawer__panel--lg.Bear-Drawer__panel--top,
170549
+ .Bear-Drawer__panel--lg.Bear-Drawer__panel--bottom {
170550
+ height: 16rem;
170551
+ }
170552
+
170553
+ .Bear-Drawer__panel--xl.Bear-Drawer__panel--top,
170554
+ .Bear-Drawer__panel--xl.Bear-Drawer__panel--bottom {
170555
+ height: 24rem;
170556
+ }
170557
+
170558
+ @media (max-width: 640px) {
170559
+ .Bear-Drawer__panel--left,
170560
+ .Bear-Drawer__panel--right {
170561
+ width: 100%;
170562
+ }
170563
+ }
170564
+
170352
170565
  .dark .dark\:bear-bg-zinc-900, .bear-dark .dark\:bear-bg-zinc-900 {
170353
170566
  background-color: #18181b;
170354
170567
  }
@@ -171122,30 +171335,6 @@
171122
171335
  background-color: rgba(127, 29, 29, 0.3);
171123
171336
  }
171124
171337
 
171125
- .dark .dark\:bear-bg-neutral-900, .bear-dark .dark\:bear-bg-neutral-900 {
171126
- background-color: #171717;
171127
- }
171128
-
171129
- .dark .dark\:bear-text-neutral-400, .bear-dark .dark\:bear-text-neutral-400 {
171130
- color: #a3a3a3;
171131
- }
171132
-
171133
- .hover\:bear-text-neutral-900:hover {
171134
- color: #171717;
171135
- }
171136
-
171137
- .hover\:bear-bg-neutral-100:hover {
171138
- background-color: #f5f5f5;
171139
- }
171140
-
171141
- .dark .dark\:hover\:bear-bg-neutral-700:hover, .bear-dark .dark\:hover\:bear-bg-neutral-700:hover {
171142
- background-color: #404040;
171143
- }
171144
-
171145
- .dark .dark\:bear-text-neutral-300, .bear-dark .dark\:bear-text-neutral-300 {
171146
- color: #d4d4d4;
171147
- }
171148
-
171149
171338
  .dark .dark\:bear-border-gray-700\/50, .bear-dark .dark\:bear-border-gray-700\/50 {
171150
171339
  border-color: rgba(55, 65, 81, 0.5);
171151
171340
  }
@@ -171251,6 +171440,10 @@
171251
171440
  color: #94a3b8;
171252
171441
  }
171253
171442
 
171443
+ .dark .dark\:bear-text-slate-300, .bear-dark .dark\:bear-text-slate-300 {
171444
+ color: #cbd5e1;
171445
+ }
171446
+
171254
171447
  .last\:bear-border-r-0:last-child {
171255
171448
  border-right-width: 0px;
171256
171449
  border-style: solid;
@@ -171292,6 +171485,14 @@
171292
171485
  background-color: #374151;
171293
171486
  }
171294
171487
 
171488
+ .dark .dark\:bear-bg-neutral-900, .bear-dark .dark\:bear-bg-neutral-900 {
171489
+ background-color: #171717;
171490
+ }
171491
+
171492
+ .dark .dark\:bear-text-neutral-300, .bear-dark .dark\:bear-text-neutral-300 {
171493
+ color: #d4d4d4;
171494
+ }
171495
+
171295
171496
  .dark .dark\:bear-bg-zinc-900\/80, .bear-dark .dark\:bear-bg-zinc-900\/80 {
171296
171497
  background-color: rgba(24, 24, 27, 0.8);
171297
171498
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forgedevstack/bear",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Strong, reliable React UI components. AeroCraft-powered, zero config required. The protective force of ForgeStack.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -76,6 +76,7 @@
76
76
  "react-dom": ">=18.0.0"
77
77
  },
78
78
  "devDependencies": {
79
+ "@forgedevstack/bear-icons": "^1.0.1",
79
80
  "@forgedevstack/aerocraft": "^1.0.4",
80
81
  "@types/node": "^22.10.7",
81
82
  "@types/react": "^18.3.18",
@@ -100,6 +101,9 @@
100
101
  "dependencies": {
101
102
  "@forgedevstack/anvil": "^1.0.0"
102
103
  },
104
+ "optionalDependencies": {
105
+ "@forgedevstack/bear-icons": "^1.0.1"
106
+ },
103
107
  "keywords": [
104
108
  "react",
105
109
  "ui",
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("react/jsx-runtime"),u=require("../../utils/cn.cjs");require("react");const d={xs:12,sm:16,md:20,lg:24,xl:32},m=({size:e="md",color:r="currentColor",strokeWidth:t=2,spin:o=!1,className:s,children:i,testId:a,...c})=>{const n=typeof e=="number"?e:d[e];return l.jsx("svg",{width:n,height:n,viewBox:"0 0 24 24",fill:"none",stroke:r,strokeWidth:t,strokeLinecap:"round",strokeLinejoin:"round",className:u.cn("bear-inline-block bear-shrink-0",o&&"bear-animate-spin",s),"data-testid":a,...c,children:i})};exports.Icon=m;
@@ -1 +0,0 @@
1
- export declare const I_C_O_N_ROOT_CLASS = "Bear-Icon";
@@ -1,45 +0,0 @@
1
- import { jsx as l } from "react/jsx-runtime";
2
- import { cn as c } from "../../utils/cn.js";
3
- import "react";
4
- const p = {
5
- xs: 12,
6
- sm: 16,
7
- md: 20,
8
- lg: 24,
9
- xl: 32
10
- }, f = ({
11
- size: e = "md",
12
- color: r = "currentColor",
13
- strokeWidth: n = 2,
14
- spin: t = !1,
15
- className: i,
16
- children: s,
17
- testId: a,
18
- ...m
19
- }) => {
20
- const o = typeof e == "number" ? e : p[e];
21
- return /* @__PURE__ */ l(
22
- "svg",
23
- {
24
- width: o,
25
- height: o,
26
- viewBox: "0 0 24 24",
27
- fill: "none",
28
- stroke: r,
29
- strokeWidth: n,
30
- strokeLinecap: "round",
31
- strokeLinejoin: "round",
32
- className: c(
33
- "bear-inline-block bear-shrink-0",
34
- t && "bear-animate-spin",
35
- i
36
- ),
37
- "data-testid": a,
38
- ...m,
39
- children: s
40
- }
41
- );
42
- };
43
- export {
44
- f as Icon
45
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("react/jsx-runtime"),o=require("../Icon.cjs"),s=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),n.jsx("line",{x1:"5",y1:"12",x2:"19",y2:"12"})]}),x=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"16"}),n.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"})]}),e=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"16"}),n.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"})]}),l=c=>n.jsx(o.Icon,{...c,children:n.jsx("line",{x1:"5",y1:"12",x2:"19",y2:"12"})}),i=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"})]}),j=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"3 6 5 6 21 6"}),n.jsx("path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"})]}),t=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"3 6 5 6 21 6"}),n.jsx("path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}),n.jsx("line",{x1:"10",y1:"11",x2:"10",y2:"17"}),n.jsx("line",{x1:"14",y1:"11",x2:"14",y2:"17"})]}),r=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"11",cy:"11",r:"8"}),n.jsx("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"})]}),a=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"11",cy:"11",r:"8"}),n.jsx("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),n.jsx("line",{x1:"4",y1:"4",x2:"20",y2:"20"})]}),I=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"11",cy:"11",r:"8"}),n.jsx("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),n.jsx("path",{d:"M11 8v6l4 2"})]}),y=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"3"}),n.jsx("path",{d:"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"})]}),h=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"4",y1:"21",x2:"4",y2:"14"}),n.jsx("line",{x1:"4",y1:"10",x2:"4",y2:"3"}),n.jsx("line",{x1:"12",y1:"21",x2:"12",y2:"12"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"3"}),n.jsx("line",{x1:"20",y1:"21",x2:"20",y2:"16"}),n.jsx("line",{x1:"20",y1:"12",x2:"20",y2:"3"}),n.jsx("line",{x1:"1",y1:"14",x2:"7",y2:"14"}),n.jsx("line",{x1:"9",y1:"8",x2:"15",y2:"8"}),n.jsx("line",{x1:"17",y1:"16",x2:"23",y2:"16"})]}),d=c=>n.jsx(o.Icon,{...c,children:n.jsx("polygon",{points:"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"})}),p=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),n.jsx("line",{x1:"6",y1:"12",x2:"18",y2:"12"}),n.jsx("line",{x1:"9",y1:"18",x2:"15",y2:"18"})]}),M=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),n.jsx("line",{x1:"3",y1:"12",x2:"15",y2:"12"}),n.jsx("line",{x1:"3",y1:"18",x2:"9",y2:"18"})]}),v=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),n.jsx("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]}),L=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M12 20h9"}),n.jsx("path",{d:"M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"})]}),H=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M12 20h9"}),n.jsx("path",{d:"M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"})]}),u=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"}),n.jsx("polyline",{points:"17 21 17 13 7 13 7 21"}),n.jsx("polyline",{points:"7 3 7 8 15 8"})]}),g=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),n.jsx("polyline",{points:"7 10 12 15 17 10"}),n.jsx("line",{x1:"12",y1:"15",x2:"12",y2:"3"})]}),C=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),n.jsx("polyline",{points:"7 10 12 15 17 10"}),n.jsx("line",{x1:"12",y1:"15",x2:"12",y2:"3"})]}),S=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),n.jsx("polyline",{points:"17 8 12 3 7 8"}),n.jsx("line",{x1:"12",y1:"3",x2:"12",y2:"15"})]}),f=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"8 17 12 21 16 17"}),n.jsx("line",{x1:"12",y1:"12",x2:"12",y2:"21"}),n.jsx("path",{d:"M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"})]}),m=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"16 16 12 12 8 16"}),n.jsx("line",{x1:"12",y1:"12",x2:"12",y2:"21"}),n.jsx("path",{d:"M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"})]}),A=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),n.jsx("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"})]}),V=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),n.jsx("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"})]}),k=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}),n.jsx("rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"})]}),O=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"6",cy:"6",r:"3"}),n.jsx("circle",{cx:"6",cy:"18",r:"3"}),n.jsx("line",{x1:"20",y1:"4",x2:"8.12",y2:"15.88"}),n.jsx("line",{x1:"14.47",y1:"14.48",x2:"20",y2:"20"}),n.jsx("line",{x1:"8.12",y1:"8.12",x2:"12",y2:"12"})]}),F=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"1 4 1 10 7 10"}),n.jsx("path",{d:"M3.51 15a9 9 0 1 0 2.13-9.36L1 10"})]}),w=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"23 4 23 10 17 10"}),n.jsx("path",{d:"M20.49 15a9 9 0 1 1-2.12-9.36L23 10"})]}),z=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"23 4 23 10 17 10"}),n.jsx("polyline",{points:"1 20 1 14 7 14"}),n.jsx("path",{d:"M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"})]}),B=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"23 4 23 10 17 10"}),n.jsx("polyline",{points:"1 20 1 14 7 14"}),n.jsx("path",{d:"M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"})]}),P=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"23 4 23 10 17 10"}),n.jsx("polyline",{points:"1 20 1 14 7 14"}),n.jsx("path",{d:"M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"})]}),R=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M18.36 6.64a9 9 0 1 1-12.73 0"}),n.jsx("line",{x1:"12",y1:"2",x2:"12",y2:"12"})]}),D=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M18.36 6.64a9 9 0 1 1-12.73 0"}),n.jsx("line",{x1:"12",y1:"2",x2:"12",y2:"12"}),n.jsx("line",{x1:"4",y1:"4",x2:"20",y2:"20"})]}),U=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}),n.jsx("circle",{cx:"12",cy:"12",r:"3"})]}),b=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),E=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}),n.jsx("path",{d:"M7 11V7a5 5 0 0 1 10 0v4"})]}),G=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}),n.jsx("path",{d:"M7 11V7a5 5 0 0 1 9.9-1"})]}),N=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4"})}),Z=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}),n.jsx("circle",{cx:"12",cy:"7",r:"4"})]}),T=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),n.jsx("circle",{cx:"8.5",cy:"7",r:"4"}),n.jsx("line",{x1:"20",y1:"8",x2:"20",y2:"14"}),n.jsx("line",{x1:"23",y1:"11",x2:"17",y2:"11"})]}),q=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),n.jsx("circle",{cx:"8.5",cy:"7",r:"4"}),n.jsx("line",{x1:"23",y1:"11",x2:"17",y2:"11"})]}),K=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),n.jsx("circle",{cx:"9",cy:"7",r:"4"}),n.jsx("path",{d:"M23 21v-2a4 4 0 0 0-3-3.87"}),n.jsx("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"})]}),J=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),n.jsx("circle",{cx:"9",cy:"7",r:"4"}),n.jsx("line",{x1:"23",y1:"11",x2:"17",y2:"11"}),n.jsx("line",{x1:"20",y1:"8",x2:"20",y2:"14"})]}),Q=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"11",cy:"11",r:"8"}),n.jsx("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),n.jsx("line",{x1:"11",y1:"8",x2:"11",y2:"14"}),n.jsx("line",{x1:"8",y1:"11",x2:"14",y2:"11"})]}),W=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"11",cy:"11",r:"8"}),n.jsx("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),n.jsx("line",{x1:"8",y1:"11",x2:"14",y2:"11"})]}),X=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"6 9 6 2 18 2 18 9"}),n.jsx("path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}),n.jsx("rect",{x:"6",y:"14",width:"12",height:"8"})]}),Y=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"})}),_=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"})}),$=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"1"}),n.jsx("circle",{cx:"19",cy:"12",r:"1"}),n.jsx("circle",{cx:"5",cy:"12",r:"1"})]}),n1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"1"}),n.jsx("circle",{cx:"12",cy:"5",r:"1"}),n.jsx("circle",{cx:"12",cy:"19",r:"1"})]}),c1=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"})}),o1=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M4 14h6v6M20 10h-6V4M14 10l7-7M3 21l7-7"})}),s1=c=>n.jsx(o.Icon,{...c,fill:"currentColor",stroke:"none",children:n.jsx("path",{d:"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"})}),x1=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"})}),e1=c=>n.jsx(o.Icon,{...c,fill:"currentColor",stroke:"none",children:n.jsx("polygon",{points:"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"})}),l1=c=>n.jsx(o.Icon,{...c,children:n.jsx("polygon",{points:"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"})}),i1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77V2z",fill:"currentColor"}),n.jsx("path",{d:"M12 2L8.91 8.26 2 9.27l5 4.87-1.18 6.88L12 17.77"})]}),j1=c=>n.jsx(o.Icon,{...c,fill:"currentColor",children:n.jsx("path",{d:"M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"})}),t1=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"})}),r1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"}),n.jsx("line",{x1:"12",y1:"7",x2:"12",y2:"13"}),n.jsx("line",{x1:"9",y1:"10",x2:"15",y2:"10"})]}),a1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"18",cy:"5",r:"3"}),n.jsx("circle",{cx:"6",cy:"12",r:"3"}),n.jsx("circle",{cx:"18",cy:"19",r:"3"}),n.jsx("line",{x1:"8.59",y1:"13.51",x2:"15.42",y2:"17.49"}),n.jsx("line",{x1:"15.41",y1:"6.51",x2:"8.59",y2:"10.49"})]}),I1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),n.jsx("polyline",{points:"15 3 21 3 21 9"}),n.jsx("line",{x1:"10",y1:"14",x2:"21",y2:"3"})]}),y1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),n.jsx("polyline",{points:"15 3 21 3 21 9"}),n.jsx("line",{x1:"10",y1:"14",x2:"21",y2:"3"})]}),h1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}),n.jsx("path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"})]}),d1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}),n.jsx("path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),p1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"21 8 21 21 3 21 3 8"}),n.jsx("rect",{x:"1",y:"3",width:"22",height:"5"}),n.jsx("line",{x1:"10",y1:"12",x2:"14",y2:"12"})]}),M1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"21 8 21 21 3 21 3 8"}),n.jsx("rect",{x:"1",y:"3",width:"22",height:"5"}),n.jsx("polyline",{points:"10 14 12 12 14 14"}),n.jsx("line",{x1:"12",y1:"12",x2:"12",y2:"18"})]}),v1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}),n.jsx("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})]}),L1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}),n.jsx("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})]}),H1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}),n.jsx("polyline",{points:"16 17 21 12 16 7"}),n.jsx("line",{x1:"21",y1:"12",x2:"9",y2:"12"})]}),u1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"}),n.jsx("polyline",{points:"10 17 15 12 10 7"}),n.jsx("line",{x1:"15",y1:"12",x2:"3",y2:"12"})]}),g1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"22",y1:"2",x2:"11",y2:"13"}),n.jsx("polygon",{points:"22 2 15 22 11 13 2 9 22 2"})]}),C1=c=>n.jsx(o.Icon,{...c,children:n.jsx("polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"})}),S1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),f1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"9",cy:"21",r:"1"}),n.jsx("circle",{cx:"20",cy:"21",r:"1"}),n.jsx("path",{d:"M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"})]}),m1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"}),n.jsx("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),n.jsx("path",{d:"M16 10a4 4 0 0 1-8 0"})]}),A1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"9",cy:"21",r:"1"}),n.jsx("circle",{cx:"20",cy:"21",r:"1"}),n.jsx("path",{d:"M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"}),n.jsx("line",{x1:"12",y1:"9",x2:"12",y2:"15"}),n.jsx("line",{x1:"9",y1:"12",x2:"15",y2:"12"})]}),V1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"3",y1:"9",x2:"21",y2:"9"}),n.jsx("line",{x1:"3",y1:"15",x2:"21",y2:"15"})]}),k1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"8",cy:"6",r:"1.5"}),n.jsx("circle",{cx:"16",cy:"6",r:"1.5"}),n.jsx("circle",{cx:"8",cy:"12",r:"1.5"}),n.jsx("circle",{cx:"16",cy:"12",r:"1.5"}),n.jsx("circle",{cx:"8",cy:"18",r:"1.5"}),n.jsx("circle",{cx:"16",cy:"18",r:"1.5"})]});exports.AddBoxIcon=e;exports.AddCircleIcon=x;exports.AddIcon=s;exports.AddShoppingCartIcon=A1;exports.ArchiveIcon=p1;exports.BookmarkAddIcon=r1;exports.BookmarkBorderIcon=t1;exports.BookmarkIcon=j1;exports.BuildIcon=Y;exports.CachedIcon=P;exports.CloudDownloadIcon=f;exports.CloudUploadIcon=m;exports.ContentCopyIcon=V;exports.ContentCutIcon=O;exports.ContentPasteIcon=k;exports.CopyIcon=A;exports.CreateIcon=H;exports.DeleteForeverIcon=t;exports.DeleteIcon=j;exports.DownloadIcon=C;exports.DragHandleIcon=V1;exports.DragIndicatorIcon=k1;exports.EditIcon=v;exports.EditNoteIcon=L;exports.FavoriteBorderIcon=x1;exports.FavoriteIcon=s1;exports.FilterIcon=d;exports.FilterListIcon=p;exports.FindReplaceIcon=I;exports.FlashOffIcon=S1;exports.FlashOnIcon=C1;exports.FullscreenExitIcon=o1;exports.FullscreenIcon=c1;exports.GroupAddIcon=J;exports.GroupIcon=K;exports.HandymanIcon=_;exports.HelpIcon=v1;exports.HelpOutlineIcon=L1;exports.KeyIcon=N;exports.LaunchIcon=y1;exports.LinkIcon=h1;exports.LinkOffIcon=d1;exports.LockIcon=E;exports.LockOpenIcon=G;exports.LoginIcon=u1;exports.LogoutIcon=H1;exports.MoreHorizIcon=$;exports.MoreVertIcon=n1;exports.OpenInNewIcon=I1;exports.PersonAddIcon=T;exports.PersonIcon=Z;exports.PersonRemoveIcon=q;exports.PowerIcon=R;exports.PowerOffIcon=D;exports.PrintIcon=X;exports.RedoIcon=w;exports.RefreshIcon=z;exports.RemoveCircleIcon=i;exports.RemoveIcon=l;exports.SaveAltIcon=g;exports.SaveIcon=u;exports.SearchIcon=r;exports.SearchOffIcon=a;exports.SendIcon=g1;exports.SettingsIcon=y;exports.ShareIcon=a1;exports.ShoppingBagIcon=m1;exports.ShoppingCartIcon=f1;exports.SortIcon=M;exports.StarBorderIcon=l1;exports.StarHalfIcon=i1;exports.StarIcon=e1;exports.SyncIcon=B;exports.TuneIcon=h;exports.UnarchiveIcon=M1;exports.UndoIcon=F;exports.UploadIcon=S;exports.VisibilityIcon=U;exports.VisibilityOffIcon=b;exports.ZoomInIcon=Q;exports.ZoomOutIcon=W;