draft-components 0.75.3 → 1.0.0-beta

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 (4236) hide show
  1. package/README.md +1 -53
  2. package/css/draft-components-utilities.css +1575 -0
  3. package/css/draft-components-utilities.min.css +1 -0
  4. package/css/draft-components.css +3493 -2
  5. package/css/draft-components.dark.css +501 -0
  6. package/css/draft-components.dark.min.css +1 -0
  7. package/css/draft-components.min.css +1 -0
  8. package/dist/components/alert/alert.d.ts +10 -0
  9. package/dist/components/alert/alert.js +16 -0
  10. package/{components → dist/components}/alert/index.d.ts +0 -0
  11. package/{components → dist/components}/alert/index.js +0 -0
  12. package/dist/components/avatar/avatar.d.ts +13 -0
  13. package/dist/components/avatar/avatar.js +29 -0
  14. package/{components → dist/components}/avatar/index.d.ts +0 -0
  15. package/{components → dist/components}/avatar/index.js +0 -0
  16. package/dist/components/avatar-group/avatar-group.d.ts +7 -0
  17. package/dist/components/avatar-group/avatar-group.js +9 -0
  18. package/dist/components/avatar-group/index.d.ts +1 -0
  19. package/dist/components/avatar-group/index.js +17 -0
  20. package/dist/components/badge/badge.d.ts +8 -0
  21. package/dist/components/badge/badge.js +22 -0
  22. package/dist/components/badge/index.d.ts +1 -0
  23. package/dist/components/badge/index.js +17 -0
  24. package/dist/components/breadcrumbs/breadcrumbs-context.d.ts +9 -0
  25. package/dist/components/breadcrumbs/breadcrumbs-context.js +18 -0
  26. package/dist/components/breadcrumbs/breadcrumbs-item.d.ts +12 -0
  27. package/dist/components/breadcrumbs/breadcrumbs-item.js +20 -0
  28. package/dist/components/breadcrumbs/breadcrumbs.d.ts +7 -0
  29. package/dist/components/breadcrumbs/breadcrumbs.js +11 -0
  30. package/dist/components/breadcrumbs/index.d.ts +2 -0
  31. package/dist/components/breadcrumbs/index.js +18 -0
  32. package/dist/components/button/button.d.ts +19 -0
  33. package/dist/components/button/button.js +37 -0
  34. package/dist/components/button/icon-button.d.ts +6 -0
  35. package/dist/components/button/icon-button.js +10 -0
  36. package/dist/components/button/index.d.ts +2 -0
  37. package/dist/components/button/index.js +18 -0
  38. package/dist/components/button-group/button-group.d.ts +7 -0
  39. package/dist/components/button-group/button-group.js +9 -0
  40. package/dist/components/button-group/index.d.ts +1 -0
  41. package/dist/components/button-group/index.js +17 -0
  42. package/dist/components/caption/caption.d.ts +7 -0
  43. package/dist/components/caption/caption.js +25 -0
  44. package/dist/components/caption/icons.d.ts +5 -0
  45. package/dist/components/caption/icons.js +20 -0
  46. package/dist/components/caption/index.d.ts +1 -0
  47. package/dist/components/caption/index.js +17 -0
  48. package/dist/components/checkbox/checkbox.d.ts +10 -0
  49. package/dist/components/checkbox/checkbox.js +14 -0
  50. package/{components → dist/components}/checkbox/index.d.ts +0 -0
  51. package/{components → dist/components}/checkbox/index.js +0 -0
  52. package/dist/components/color-picker/color-picker-button.d.ts +12 -0
  53. package/dist/components/color-picker/color-picker-button.js +15 -0
  54. package/dist/components/color-picker/color-picker.d.ts +13 -0
  55. package/dist/components/color-picker/color-picker.js +13 -0
  56. package/dist/components/color-picker/index.d.ts +1 -0
  57. package/dist/components/color-picker/index.js +17 -0
  58. package/dist/components/date-picker/calendar-day.d.ts +17 -0
  59. package/dist/components/date-picker/calendar-day.js +16 -0
  60. package/dist/components/date-picker/calendar-grid-head.d.ts +7 -0
  61. package/dist/components/date-picker/calendar-grid-head.js +15 -0
  62. package/dist/components/date-picker/calendar-grid.d.ts +17 -0
  63. package/dist/components/date-picker/calendar-grid.js +105 -0
  64. package/dist/components/date-picker/calendar-header.d.ts +12 -0
  65. package/dist/components/date-picker/calendar-header.js +46 -0
  66. package/dist/components/date-picker/calendar.d.ts +11 -0
  67. package/dist/components/date-picker/calendar.js +23 -0
  68. package/dist/components/date-picker/date-helpers.d.ts +22 -0
  69. package/dist/components/date-picker/date-helpers.js +108 -0
  70. package/dist/components/date-picker/date-picker.d.ts +13 -0
  71. package/dist/components/date-picker/date-picker.js +19 -0
  72. package/dist/components/date-picker/date-range-picker.d.ts +14 -0
  73. package/dist/components/date-picker/date-range-picker.js +60 -0
  74. package/dist/components/date-picker/date-range.d.ts +13 -0
  75. package/dist/components/date-picker/date-range.js +27 -0
  76. package/dist/components/date-picker/icons.d.ts +3 -0
  77. package/dist/components/date-picker/icons.js +12 -0
  78. package/dist/components/date-picker/index.d.ts +2 -0
  79. package/dist/components/date-picker/index.js +18 -0
  80. package/dist/components/date-picker/parse-min-max-props.d.ts +8 -0
  81. package/dist/components/date-picker/parse-min-max-props.js +19 -0
  82. package/dist/components/date-picker-popover/date-picker-popover.d.ts +13 -0
  83. package/dist/components/date-picker-popover/date-picker-popover.js +20 -0
  84. package/{components → dist/components}/date-picker-popover/index.d.ts +0 -0
  85. package/{components → dist/components}/date-picker-popover/index.js +0 -0
  86. package/dist/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +9 -0
  87. package/dist/components/date-range-picker-popover/date-range-picker-popover-footer.js +9 -0
  88. package/dist/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +10 -0
  89. package/dist/components/date-range-picker-popover/date-range-picker-popover-presets.js +34 -0
  90. package/dist/components/date-range-picker-popover/date-range-picker-popover.d.ts +26 -0
  91. package/dist/components/date-range-picker-popover/date-range-picker-popover.js +54 -0
  92. package/dist/components/date-range-picker-popover/helpers.d.ts +2 -0
  93. package/dist/components/date-range-picker-popover/helpers.js +15 -0
  94. package/dist/components/date-range-picker-popover/index.d.ts +2 -0
  95. package/dist/components/date-range-picker-popover/index.js +18 -0
  96. package/dist/components/date-range-picker-popover/types.d.ts +10 -0
  97. package/{components/avatar → dist/components/date-range-picker-popover}/types.js +0 -0
  98. package/dist/components/date-range-picker-popover/use-is-compact-view.d.ts +1 -0
  99. package/dist/components/date-range-picker-popover/use-is-compact-view.js +26 -0
  100. package/dist/components/dialog/dialog-body.d.ts +8 -0
  101. package/dist/components/dialog/dialog-body.js +51 -0
  102. package/dist/components/dialog/dialog-context.d.ts +15 -0
  103. package/dist/components/dialog/dialog-context.js +23 -0
  104. package/dist/components/dialog/dialog-footer.d.ts +5 -0
  105. package/dist/components/dialog/dialog-footer.js +9 -0
  106. package/dist/components/dialog/dialog-header.d.ts +8 -0
  107. package/dist/components/dialog/dialog-header.js +16 -0
  108. package/dist/components/dialog/dialog.d.ts +12 -0
  109. package/dist/components/dialog/dialog.js +46 -0
  110. package/dist/components/dialog/index.d.ts +4 -0
  111. package/dist/components/dialog/index.js +20 -0
  112. package/dist/components/dialog/x-mark-icon.d.ts +2 -0
  113. package/dist/components/dialog/x-mark-icon.js +8 -0
  114. package/dist/components/empty-state/empty-state.d.ts +11 -0
  115. package/dist/components/empty-state/empty-state.js +9 -0
  116. package/dist/components/empty-state/index.d.ts +1 -0
  117. package/dist/components/empty-state/index.js +17 -0
  118. package/dist/components/file-picker/file-picker.d.ts +13 -0
  119. package/dist/components/file-picker/file-picker.js +44 -0
  120. package/dist/components/file-picker/index.d.ts +1 -0
  121. package/dist/components/file-picker/index.js +17 -0
  122. package/dist/components/filter-buttons/filter-button.d.ts +7 -0
  123. package/dist/components/filter-buttons/filter-button.js +9 -0
  124. package/dist/components/filter-buttons/filter-buttons.d.ts +5 -0
  125. package/dist/components/filter-buttons/filter-buttons.js +26 -0
  126. package/dist/components/filter-buttons/index.d.ts +2 -0
  127. package/dist/components/filter-buttons/index.js +18 -0
  128. package/dist/components/form-field/form-field.d.ts +15 -0
  129. package/dist/components/form-field/form-field.js +25 -0
  130. package/{components → dist/components}/form-field/index.d.ts +0 -0
  131. package/{components → dist/components}/form-field/index.js +0 -0
  132. package/{components → dist/components}/label/index.d.ts +0 -0
  133. package/{components → dist/components}/label/index.js +0 -0
  134. package/dist/components/label/label.d.ts +5 -0
  135. package/dist/components/label/label.js +11 -0
  136. package/dist/components/menu/index.d.ts +3 -0
  137. package/dist/components/menu/index.js +19 -0
  138. package/dist/components/menu/menu-item.d.ts +11 -0
  139. package/dist/components/menu/menu-item.js +12 -0
  140. package/dist/components/menu/menu-separator.d.ts +6 -0
  141. package/dist/components/menu/menu-separator.js +9 -0
  142. package/dist/components/menu/menu.d.ts +31 -0
  143. package/dist/components/menu/menu.js +194 -0
  144. package/dist/components/nav-list/index.d.ts +3 -0
  145. package/dist/components/nav-list/index.js +19 -0
  146. package/dist/components/nav-list/nav-list-item.d.ts +13 -0
  147. package/dist/components/nav-list/nav-list-item.js +19 -0
  148. package/dist/components/nav-list/nav-list-title.d.ts +8 -0
  149. package/dist/components/nav-list/nav-list-title.js +9 -0
  150. package/dist/components/nav-list/nav-list.d.ts +5 -0
  151. package/dist/components/nav-list/nav-list.js +9 -0
  152. package/dist/components/password-input/icons.d.ts +3 -0
  153. package/dist/components/password-input/icons.js +12 -0
  154. package/{components → dist/components}/password-input/index.d.ts +0 -0
  155. package/{components → dist/components}/password-input/index.js +0 -0
  156. package/dist/components/password-input/password-input.d.ts +10 -0
  157. package/dist/components/password-input/password-input.js +28 -0
  158. package/{components → dist/components}/popover/index.d.ts +0 -0
  159. package/{components → dist/components}/popover/index.js +0 -0
  160. package/dist/components/popover/popover.d.ts +49 -0
  161. package/dist/components/popover/popover.js +97 -0
  162. package/dist/components/popover/use-page-click.d.ts +16 -0
  163. package/dist/components/popover/use-page-click.js +50 -0
  164. package/{components → dist/components}/portal/index.d.ts +0 -0
  165. package/{components → dist/components}/portal/index.js +0 -0
  166. package/dist/components/portal/portal-context.d.ts +6 -0
  167. package/dist/components/portal/portal-context.js +26 -0
  168. package/dist/components/portal/portal.d.ts +5 -0
  169. package/dist/components/portal/portal.js +10 -0
  170. package/dist/components/positioner/calc-position.d.ts +32 -0
  171. package/dist/components/positioner/calc-position.js +117 -0
  172. package/{components → dist/components}/positioner/index.d.ts +0 -0
  173. package/{components → dist/components}/positioner/index.js +0 -0
  174. package/dist/components/positioner/positioner.d.ts +20 -0
  175. package/dist/components/positioner/positioner.js +63 -0
  176. package/dist/components/positioner/types.d.ts +14 -0
  177. package/{components → dist/components}/positioner/types.js +0 -0
  178. package/dist/components/radio/index.d.ts +1 -0
  179. package/dist/components/radio/index.js +17 -0
  180. package/dist/components/radio/radio.d.ts +11 -0
  181. package/dist/components/radio/radio.js +22 -0
  182. package/{components → dist/components}/segmented-control/index.d.ts +0 -0
  183. package/{components → dist/components}/segmented-control/index.js +0 -0
  184. package/dist/components/segmented-control/segmented-control-button.d.ts +10 -0
  185. package/dist/components/segmented-control/segmented-control-button.js +14 -0
  186. package/dist/components/segmented-control/segmented-control.d.ts +15 -0
  187. package/dist/components/segmented-control/segmented-control.js +47 -0
  188. package/{components → dist/components}/select/index.d.ts +0 -0
  189. package/{components → dist/components}/select/index.js +0 -0
  190. package/dist/components/select/select.d.ts +46 -0
  191. package/dist/components/select/select.js +25 -0
  192. package/{components → dist/components}/selection-control/index.d.ts +0 -0
  193. package/{components → dist/components}/selection-control/index.js +0 -0
  194. package/dist/components/selection-control/selection-control.d.ts +14 -0
  195. package/dist/components/selection-control/selection-control.js +17 -0
  196. package/dist/components/slider/index.d.ts +2 -0
  197. package/dist/components/slider/index.js +20 -0
  198. package/dist/components/slider/slider-tick-marks.d.ts +7 -0
  199. package/dist/components/slider/slider-tick-marks.js +16 -0
  200. package/dist/components/slider/slider.d.ts +17 -0
  201. package/dist/components/slider/slider.js +39 -0
  202. package/dist/components/spinner/index.d.ts +1 -0
  203. package/dist/components/spinner/index.js +17 -0
  204. package/dist/components/spinner/spinner.d.ts +7 -0
  205. package/dist/components/spinner/spinner.js +9 -0
  206. package/{components → dist/components}/switch/index.d.ts +0 -0
  207. package/{components → dist/components}/switch/index.js +0 -0
  208. package/dist/components/switch/switch.d.ts +10 -0
  209. package/dist/components/switch/switch.js +13 -0
  210. package/dist/components/table/icons.d.ts +4 -0
  211. package/dist/components/table/icons.js +16 -0
  212. package/dist/components/table/index.d.ts +7 -0
  213. package/dist/components/table/index.js +23 -0
  214. package/dist/components/table/table-body.d.ts +5 -0
  215. package/dist/components/table/table-body.js +9 -0
  216. package/dist/components/table/table-cell.d.ts +5 -0
  217. package/dist/components/table/table-cell.js +9 -0
  218. package/dist/components/table/table-container.d.ts +13 -0
  219. package/dist/components/table/table-container.js +21 -0
  220. package/dist/components/table/table-head-cell.d.ts +10 -0
  221. package/dist/components/table/table-head-cell.js +28 -0
  222. package/dist/components/table/table-head.d.ts +7 -0
  223. package/dist/components/table/table-head.js +12 -0
  224. package/dist/components/table/table-row.d.ts +7 -0
  225. package/dist/components/table/table-row.js +12 -0
  226. package/dist/components/table/table.d.ts +11 -0
  227. package/dist/components/table/table.js +14 -0
  228. package/dist/components/tabs/index.d.ts +4 -0
  229. package/dist/components/tabs/index.js +20 -0
  230. package/dist/components/tabs/tab-list.d.ts +3 -0
  231. package/dist/components/tabs/tab-list.js +66 -0
  232. package/dist/components/tabs/tab-panel.d.ts +6 -0
  233. package/dist/components/tabs/tab-panel.js +15 -0
  234. package/dist/components/tabs/tab.d.ts +7 -0
  235. package/dist/components/tabs/tab.js +18 -0
  236. package/dist/components/tabs/tabs-context.d.ts +20 -0
  237. package/dist/components/tabs/tabs-context.js +30 -0
  238. package/dist/components/tabs/tabs.d.ts +7 -0
  239. package/dist/components/tabs/tabs.js +10 -0
  240. package/dist/components/tabs/types.d.ts +2 -0
  241. package/dist/components/tabs/types.js +2 -0
  242. package/{components → dist/components}/tag/index.d.ts +0 -0
  243. package/{components → dist/components}/tag/index.js +0 -0
  244. package/dist/components/tag/tag.d.ts +13 -0
  245. package/dist/components/tag/tag.js +14 -0
  246. package/{components → dist/components}/text-input/index.d.ts +0 -0
  247. package/{components → dist/components}/text-input/index.js +0 -0
  248. package/dist/components/text-input/text-input.d.ts +21 -0
  249. package/dist/components/text-input/text-input.js +24 -0
  250. package/{components → dist/components}/textarea/index.d.ts +0 -0
  251. package/{components → dist/components}/textarea/index.js +0 -0
  252. package/dist/components/textarea/textarea.d.ts +20 -0
  253. package/dist/components/textarea/textarea.js +38 -0
  254. package/dist/components/toast/index.d.ts +2 -0
  255. package/dist/components/toast/index.js +18 -0
  256. package/dist/components/toast/toast-button.d.ts +5 -0
  257. package/dist/components/toast/toast-button.js +9 -0
  258. package/dist/components/toast/toast.d.ts +11 -0
  259. package/dist/components/toast/toast.js +10 -0
  260. package/dist/components/toast/x-mark-icon.d.ts +2 -0
  261. package/dist/components/toast/x-mark-icon.js +8 -0
  262. package/{components → dist/components}/toaster/index.d.ts +0 -0
  263. package/{components → dist/components}/toaster/index.js +0 -0
  264. package/dist/components/toaster/toaster.d.ts +40 -0
  265. package/dist/components/toaster/toaster.js +134 -0
  266. package/{components → dist/components}/tooltip/index.d.ts +0 -0
  267. package/{components → dist/components}/tooltip/index.js +0 -0
  268. package/dist/components/tooltip/tooltip.d.ts +25 -0
  269. package/dist/components/tooltip/tooltip.js +79 -0
  270. package/dist/hooks/index.d.ts +4 -0
  271. package/dist/hooks/index.js +20 -0
  272. package/dist/hooks/use-disable-body-scroll.d.ts +5 -0
  273. package/dist/hooks/use-disable-body-scroll.js +34 -0
  274. package/dist/hooks/use-esc-key-down.d.ts +17 -0
  275. package/dist/hooks/use-esc-key-down.js +53 -0
  276. package/dist/hooks/use-focus-trap.d.ts +15 -0
  277. package/dist/hooks/use-focus-trap.js +86 -0
  278. package/dist/hooks/use-mount-transition.d.ts +32 -0
  279. package/dist/hooks/use-mount-transition.js +40 -0
  280. package/dist/index.d.ts +37 -0
  281. package/dist/index.js +53 -0
  282. package/dist/shared/keyboard-keys.d.ts +14 -0
  283. package/dist/shared/keyboard-keys.js +17 -0
  284. package/dist/shared/react-helpers.d.ts +13 -0
  285. package/dist/shared/react-helpers.js +49 -0
  286. package/dist/shared/util.d.ts +2 -0
  287. package/dist/shared/util.js +21 -0
  288. package/esm/components/alert/alert.d.ts +10 -0
  289. package/esm/components/alert/alert.js +12 -0
  290. package/esm/components/alert/index.d.ts +1 -0
  291. package/esm/components/alert/index.js +1 -0
  292. package/esm/components/avatar/avatar.d.ts +13 -0
  293. package/esm/components/avatar/avatar.js +26 -0
  294. package/esm/components/avatar/index.d.ts +1 -0
  295. package/esm/components/avatar/index.js +1 -0
  296. package/esm/components/avatar-group/avatar-group.d.ts +7 -0
  297. package/esm/components/avatar-group/avatar-group.js +5 -0
  298. package/esm/components/avatar-group/index.d.ts +1 -0
  299. package/esm/components/avatar-group/index.js +1 -0
  300. package/esm/components/badge/badge.d.ts +8 -0
  301. package/esm/components/badge/badge.js +18 -0
  302. package/esm/components/badge/index.d.ts +1 -0
  303. package/esm/components/badge/index.js +1 -0
  304. package/esm/components/breadcrumbs/breadcrumbs-context.d.ts +9 -0
  305. package/esm/components/breadcrumbs/breadcrumbs-context.js +13 -0
  306. package/esm/components/breadcrumbs/breadcrumbs-item.d.ts +12 -0
  307. package/esm/components/breadcrumbs/breadcrumbs-item.js +16 -0
  308. package/esm/components/breadcrumbs/breadcrumbs.d.ts +7 -0
  309. package/esm/components/breadcrumbs/breadcrumbs.js +7 -0
  310. package/esm/components/breadcrumbs/index.d.ts +2 -0
  311. package/esm/components/breadcrumbs/index.js +2 -0
  312. package/esm/components/button/button.d.ts +19 -0
  313. package/esm/components/button/button.js +34 -0
  314. package/esm/components/button/icon-button.d.ts +6 -0
  315. package/esm/components/button/icon-button.js +7 -0
  316. package/esm/components/button/index.d.ts +2 -0
  317. package/esm/components/button/index.js +2 -0
  318. package/esm/components/button-group/button-group.d.ts +7 -0
  319. package/esm/components/button-group/button-group.js +5 -0
  320. package/esm/components/button-group/index.d.ts +1 -0
  321. package/esm/components/button-group/index.js +1 -0
  322. package/esm/components/caption/caption.d.ts +7 -0
  323. package/esm/components/caption/caption.js +22 -0
  324. package/esm/components/caption/icons.d.ts +5 -0
  325. package/esm/components/caption/icons.js +13 -0
  326. package/esm/components/caption/index.d.ts +1 -0
  327. package/esm/components/caption/index.js +1 -0
  328. package/esm/components/checkbox/checkbox.d.ts +10 -0
  329. package/esm/components/checkbox/checkbox.js +11 -0
  330. package/esm/components/checkbox/index.d.ts +1 -0
  331. package/esm/components/checkbox/index.js +1 -0
  332. package/esm/components/color-picker/color-picker-button.d.ts +12 -0
  333. package/esm/components/color-picker/color-picker-button.js +11 -0
  334. package/esm/components/color-picker/color-picker.d.ts +13 -0
  335. package/esm/components/color-picker/color-picker.js +9 -0
  336. package/esm/components/color-picker/index.d.ts +1 -0
  337. package/esm/components/color-picker/index.js +1 -0
  338. package/esm/components/date-picker/calendar-day.d.ts +17 -0
  339. package/esm/components/date-picker/calendar-day.js +12 -0
  340. package/esm/components/date-picker/calendar-grid-head.d.ts +7 -0
  341. package/esm/components/date-picker/calendar-grid-head.js +11 -0
  342. package/esm/components/date-picker/calendar-grid.d.ts +17 -0
  343. package/esm/components/date-picker/calendar-grid.js +101 -0
  344. package/esm/components/date-picker/calendar-header.d.ts +12 -0
  345. package/esm/components/date-picker/calendar-header.js +42 -0
  346. package/esm/components/date-picker/calendar.d.ts +11 -0
  347. package/esm/components/date-picker/calendar.js +19 -0
  348. package/esm/components/date-picker/date-helpers.d.ts +22 -0
  349. package/esm/components/date-picker/date-helpers.js +89 -0
  350. package/esm/components/date-picker/date-picker.d.ts +13 -0
  351. package/esm/components/date-picker/date-picker.js +15 -0
  352. package/esm/components/date-picker/date-range-picker.d.ts +14 -0
  353. package/esm/components/date-picker/date-range-picker.js +56 -0
  354. package/esm/components/date-picker/date-range.d.ts +13 -0
  355. package/esm/components/date-picker/date-range.js +23 -0
  356. package/esm/components/date-picker/icons.d.ts +3 -0
  357. package/esm/components/date-picker/icons.js +7 -0
  358. package/esm/components/date-picker/index.d.ts +2 -0
  359. package/esm/components/date-picker/index.js +2 -0
  360. package/esm/components/date-picker/parse-min-max-props.d.ts +8 -0
  361. package/esm/components/date-picker/parse-min-max-props.js +15 -0
  362. package/esm/components/date-picker-popover/date-picker-popover.d.ts +13 -0
  363. package/esm/components/date-picker-popover/date-picker-popover.js +16 -0
  364. package/esm/components/date-picker-popover/index.d.ts +1 -0
  365. package/esm/components/date-picker-popover/index.js +1 -0
  366. package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +9 -0
  367. package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.js +5 -0
  368. package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +10 -0
  369. package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.js +30 -0
  370. package/esm/components/date-range-picker-popover/date-range-picker-popover.d.ts +26 -0
  371. package/esm/components/date-range-picker-popover/date-range-picker-popover.js +50 -0
  372. package/esm/components/date-range-picker-popover/helpers.d.ts +2 -0
  373. package/esm/components/date-range-picker-popover/helpers.js +11 -0
  374. package/esm/components/date-range-picker-popover/index.d.ts +2 -0
  375. package/esm/components/date-range-picker-popover/index.js +2 -0
  376. package/esm/components/date-range-picker-popover/types.d.ts +10 -0
  377. package/esm/components/date-range-picker-popover/types.js +1 -0
  378. package/esm/components/date-range-picker-popover/use-is-compact-view.d.ts +1 -0
  379. package/esm/components/date-range-picker-popover/use-is-compact-view.js +22 -0
  380. package/esm/components/dialog/dialog-body.d.ts +8 -0
  381. package/esm/components/dialog/dialog-body.js +47 -0
  382. package/esm/components/dialog/dialog-context.d.ts +15 -0
  383. package/esm/components/dialog/dialog-context.js +18 -0
  384. package/esm/components/dialog/dialog-footer.d.ts +5 -0
  385. package/esm/components/dialog/dialog-footer.js +5 -0
  386. package/esm/components/dialog/dialog-header.d.ts +8 -0
  387. package/esm/components/dialog/dialog-header.js +12 -0
  388. package/esm/components/dialog/dialog.d.ts +12 -0
  389. package/esm/components/dialog/dialog.js +42 -0
  390. package/esm/components/dialog/index.d.ts +4 -0
  391. package/esm/components/dialog/index.js +4 -0
  392. package/esm/components/dialog/x-mark-icon.d.ts +2 -0
  393. package/esm/components/dialog/x-mark-icon.js +4 -0
  394. package/esm/components/empty-state/empty-state.d.ts +11 -0
  395. package/esm/components/empty-state/empty-state.js +5 -0
  396. package/esm/components/empty-state/index.d.ts +1 -0
  397. package/esm/components/empty-state/index.js +1 -0
  398. package/esm/components/file-picker/file-picker.d.ts +13 -0
  399. package/esm/components/file-picker/file-picker.js +41 -0
  400. package/esm/components/file-picker/index.d.ts +1 -0
  401. package/esm/components/file-picker/index.js +1 -0
  402. package/esm/components/filter-buttons/filter-button.d.ts +7 -0
  403. package/esm/components/filter-buttons/filter-button.js +6 -0
  404. package/esm/components/filter-buttons/filter-buttons.d.ts +5 -0
  405. package/esm/components/filter-buttons/filter-buttons.js +22 -0
  406. package/esm/components/filter-buttons/index.d.ts +2 -0
  407. package/esm/components/filter-buttons/index.js +2 -0
  408. package/esm/components/form-field/form-field.d.ts +15 -0
  409. package/esm/components/form-field/form-field.js +21 -0
  410. package/esm/components/form-field/index.d.ts +1 -0
  411. package/esm/components/form-field/index.js +1 -0
  412. package/esm/components/label/index.d.ts +1 -0
  413. package/esm/components/label/index.js +1 -0
  414. package/esm/components/label/label.d.ts +5 -0
  415. package/esm/components/label/label.js +8 -0
  416. package/esm/components/menu/index.d.ts +3 -0
  417. package/esm/components/menu/index.js +3 -0
  418. package/esm/components/menu/menu-item.d.ts +11 -0
  419. package/esm/components/menu/menu-item.js +9 -0
  420. package/esm/components/menu/menu-separator.d.ts +6 -0
  421. package/esm/components/menu/menu-separator.js +5 -0
  422. package/esm/components/menu/menu.d.ts +31 -0
  423. package/esm/components/menu/menu.js +190 -0
  424. package/esm/components/nav-list/index.d.ts +3 -0
  425. package/esm/components/nav-list/index.js +3 -0
  426. package/esm/components/nav-list/nav-list-item.d.ts +13 -0
  427. package/esm/components/nav-list/nav-list-item.js +15 -0
  428. package/esm/components/nav-list/nav-list-title.d.ts +8 -0
  429. package/esm/components/nav-list/nav-list-title.js +5 -0
  430. package/esm/components/nav-list/nav-list.d.ts +5 -0
  431. package/esm/components/nav-list/nav-list.js +5 -0
  432. package/esm/components/password-input/icons.d.ts +3 -0
  433. package/esm/components/password-input/icons.js +7 -0
  434. package/esm/components/password-input/index.d.ts +1 -0
  435. package/esm/components/password-input/index.js +1 -0
  436. package/esm/components/password-input/password-input.d.ts +10 -0
  437. package/esm/components/password-input/password-input.js +25 -0
  438. package/esm/components/popover/index.d.ts +1 -0
  439. package/esm/components/popover/index.js +1 -0
  440. package/esm/components/popover/popover.d.ts +49 -0
  441. package/esm/components/popover/popover.js +94 -0
  442. package/esm/components/popover/use-page-click.d.ts +16 -0
  443. package/esm/components/popover/use-page-click.js +46 -0
  444. package/esm/components/portal/index.d.ts +1 -0
  445. package/esm/components/portal/index.js +1 -0
  446. package/esm/components/portal/portal-context.d.ts +6 -0
  447. package/esm/components/portal/portal-context.js +21 -0
  448. package/esm/components/portal/portal.d.ts +5 -0
  449. package/esm/components/portal/portal.js +6 -0
  450. package/esm/components/positioner/calc-position.d.ts +32 -0
  451. package/esm/components/positioner/calc-position.js +112 -0
  452. package/esm/components/positioner/index.d.ts +1 -0
  453. package/esm/components/positioner/index.js +1 -0
  454. package/esm/components/positioner/positioner.d.ts +20 -0
  455. package/esm/components/positioner/positioner.js +59 -0
  456. package/esm/components/positioner/types.d.ts +14 -0
  457. package/esm/components/positioner/types.js +1 -0
  458. package/esm/components/radio/index.d.ts +1 -0
  459. package/esm/components/radio/index.js +1 -0
  460. package/esm/components/radio/radio.d.ts +11 -0
  461. package/esm/components/radio/radio.js +19 -0
  462. package/esm/components/segmented-control/index.d.ts +1 -0
  463. package/esm/components/segmented-control/index.js +1 -0
  464. package/esm/components/segmented-control/segmented-control-button.d.ts +10 -0
  465. package/esm/components/segmented-control/segmented-control-button.js +10 -0
  466. package/esm/components/segmented-control/segmented-control.d.ts +15 -0
  467. package/esm/components/segmented-control/segmented-control.js +43 -0
  468. package/esm/components/select/index.d.ts +1 -0
  469. package/esm/components/select/index.js +1 -0
  470. package/esm/components/select/select.d.ts +46 -0
  471. package/esm/components/select/select.js +22 -0
  472. package/esm/components/selection-control/index.d.ts +1 -0
  473. package/esm/components/selection-control/index.js +1 -0
  474. package/esm/components/selection-control/selection-control.d.ts +14 -0
  475. package/esm/components/selection-control/selection-control.js +13 -0
  476. package/esm/components/slider/index.d.ts +2 -0
  477. package/esm/components/slider/index.js +2 -0
  478. package/esm/components/slider/slider-tick-marks.d.ts +7 -0
  479. package/esm/components/slider/slider-tick-marks.js +12 -0
  480. package/esm/components/slider/slider.d.ts +17 -0
  481. package/esm/components/slider/slider.js +36 -0
  482. package/esm/components/spinner/index.d.ts +1 -0
  483. package/esm/components/spinner/index.js +1 -0
  484. package/esm/components/spinner/spinner.d.ts +7 -0
  485. package/esm/components/spinner/spinner.js +6 -0
  486. package/esm/components/switch/index.d.ts +1 -0
  487. package/esm/components/switch/index.js +1 -0
  488. package/esm/components/switch/switch.d.ts +10 -0
  489. package/esm/components/switch/switch.js +10 -0
  490. package/esm/components/table/icons.d.ts +4 -0
  491. package/esm/components/table/icons.js +10 -0
  492. package/esm/components/table/index.d.ts +7 -0
  493. package/esm/components/table/index.js +7 -0
  494. package/esm/components/table/table-body.d.ts +5 -0
  495. package/esm/components/table/table-body.js +6 -0
  496. package/esm/components/table/table-cell.d.ts +5 -0
  497. package/esm/components/table/table-cell.js +6 -0
  498. package/esm/components/table/table-container.d.ts +13 -0
  499. package/esm/components/table/table-container.js +18 -0
  500. package/esm/components/table/table-head-cell.d.ts +10 -0
  501. package/esm/components/table/table-head-cell.js +25 -0
  502. package/esm/components/table/table-head.d.ts +7 -0
  503. package/esm/components/table/table-head.js +9 -0
  504. package/esm/components/table/table-row.d.ts +7 -0
  505. package/esm/components/table/table-row.js +9 -0
  506. package/esm/components/table/table.d.ts +11 -0
  507. package/esm/components/table/table.js +11 -0
  508. package/esm/components/tabs/index.d.ts +4 -0
  509. package/esm/components/tabs/index.js +4 -0
  510. package/esm/components/tabs/tab-list.d.ts +3 -0
  511. package/esm/components/tabs/tab-list.js +62 -0
  512. package/esm/components/tabs/tab-panel.d.ts +6 -0
  513. package/esm/components/tabs/tab-panel.js +11 -0
  514. package/esm/components/tabs/tab.d.ts +7 -0
  515. package/esm/components/tabs/tab.js +14 -0
  516. package/esm/components/tabs/tabs-context.d.ts +20 -0
  517. package/esm/components/tabs/tabs-context.js +25 -0
  518. package/esm/components/tabs/tabs.d.ts +7 -0
  519. package/esm/components/tabs/tabs.js +6 -0
  520. package/esm/components/tabs/types.d.ts +2 -0
  521. package/esm/components/tabs/types.js +1 -0
  522. package/esm/components/tag/index.d.ts +1 -0
  523. package/esm/components/tag/index.js +1 -0
  524. package/esm/components/tag/tag.d.ts +13 -0
  525. package/esm/components/tag/tag.js +10 -0
  526. package/esm/components/text-input/index.d.ts +1 -0
  527. package/esm/components/text-input/index.js +1 -0
  528. package/esm/components/text-input/text-input.d.ts +21 -0
  529. package/esm/components/text-input/text-input.js +21 -0
  530. package/esm/components/textarea/index.d.ts +1 -0
  531. package/esm/components/textarea/index.js +1 -0
  532. package/esm/components/textarea/textarea.d.ts +20 -0
  533. package/esm/components/textarea/textarea.js +35 -0
  534. package/esm/components/toast/index.d.ts +2 -0
  535. package/esm/components/toast/index.js +2 -0
  536. package/esm/components/toast/toast-button.d.ts +5 -0
  537. package/esm/components/toast/toast-button.js +6 -0
  538. package/esm/components/toast/toast.d.ts +11 -0
  539. package/esm/components/toast/toast.js +6 -0
  540. package/esm/components/toast/x-mark-icon.d.ts +2 -0
  541. package/esm/components/toast/x-mark-icon.js +4 -0
  542. package/esm/components/toaster/index.d.ts +1 -0
  543. package/esm/components/toaster/index.js +1 -0
  544. package/esm/components/toaster/toaster.d.ts +40 -0
  545. package/esm/components/toaster/toaster.js +130 -0
  546. package/esm/components/tooltip/index.d.ts +1 -0
  547. package/esm/components/tooltip/index.js +1 -0
  548. package/esm/components/tooltip/tooltip.d.ts +25 -0
  549. package/esm/components/tooltip/tooltip.js +75 -0
  550. package/esm/hooks/index.d.ts +4 -0
  551. package/esm/hooks/index.js +4 -0
  552. package/esm/hooks/use-disable-body-scroll.d.ts +5 -0
  553. package/esm/hooks/use-disable-body-scroll.js +30 -0
  554. package/esm/hooks/use-esc-key-down.d.ts +17 -0
  555. package/esm/hooks/use-esc-key-down.js +49 -0
  556. package/esm/hooks/use-focus-trap.d.ts +15 -0
  557. package/esm/hooks/use-focus-trap.js +82 -0
  558. package/esm/hooks/use-mount-transition.d.ts +32 -0
  559. package/esm/hooks/use-mount-transition.js +36 -0
  560. package/esm/index.d.ts +37 -0
  561. package/esm/index.js +37 -0
  562. package/esm/shared/keyboard-keys.d.ts +14 -0
  563. package/esm/shared/keyboard-keys.js +14 -0
  564. package/esm/shared/react-helpers.d.ts +13 -0
  565. package/esm/shared/react-helpers.js +42 -0
  566. package/esm/shared/util.d.ts +2 -0
  567. package/esm/shared/util.js +16 -0
  568. package/package.json +65 -67
  569. package/bootstrap-icons/123.d.ts +0 -5
  570. package/bootstrap-icons/123.js +0 -12
  571. package/bootstrap-icons/activity.d.ts +0 -5
  572. package/bootstrap-icons/activity.js +0 -12
  573. package/bootstrap-icons/alarm-fill.d.ts +0 -5
  574. package/bootstrap-icons/alarm-fill.js +0 -12
  575. package/bootstrap-icons/alarm.d.ts +0 -5
  576. package/bootstrap-icons/alarm.js +0 -12
  577. package/bootstrap-icons/align-bottom.d.ts +0 -5
  578. package/bootstrap-icons/align-bottom.js +0 -12
  579. package/bootstrap-icons/align-center.d.ts +0 -5
  580. package/bootstrap-icons/align-center.js +0 -12
  581. package/bootstrap-icons/align-end.d.ts +0 -5
  582. package/bootstrap-icons/align-end.js +0 -12
  583. package/bootstrap-icons/align-middle.d.ts +0 -5
  584. package/bootstrap-icons/align-middle.js +0 -12
  585. package/bootstrap-icons/align-start.d.ts +0 -5
  586. package/bootstrap-icons/align-start.js +0 -12
  587. package/bootstrap-icons/align-top.d.ts +0 -5
  588. package/bootstrap-icons/align-top.js +0 -12
  589. package/bootstrap-icons/alt.d.ts +0 -5
  590. package/bootstrap-icons/alt.js +0 -12
  591. package/bootstrap-icons/app-indicator.d.ts +0 -5
  592. package/bootstrap-icons/app-indicator.js +0 -12
  593. package/bootstrap-icons/app.d.ts +0 -5
  594. package/bootstrap-icons/app.js +0 -12
  595. package/bootstrap-icons/apple.d.ts +0 -5
  596. package/bootstrap-icons/apple.js +0 -12
  597. package/bootstrap-icons/archive-fill.d.ts +0 -5
  598. package/bootstrap-icons/archive-fill.js +0 -12
  599. package/bootstrap-icons/archive.d.ts +0 -5
  600. package/bootstrap-icons/archive.js +0 -12
  601. package/bootstrap-icons/arrow-90deg-down.d.ts +0 -5
  602. package/bootstrap-icons/arrow-90deg-down.js +0 -12
  603. package/bootstrap-icons/arrow-90deg-left.d.ts +0 -5
  604. package/bootstrap-icons/arrow-90deg-left.js +0 -12
  605. package/bootstrap-icons/arrow-90deg-right.d.ts +0 -5
  606. package/bootstrap-icons/arrow-90deg-right.js +0 -12
  607. package/bootstrap-icons/arrow-90deg-up.d.ts +0 -5
  608. package/bootstrap-icons/arrow-90deg-up.js +0 -12
  609. package/bootstrap-icons/arrow-bar-down.d.ts +0 -5
  610. package/bootstrap-icons/arrow-bar-down.js +0 -12
  611. package/bootstrap-icons/arrow-bar-left.d.ts +0 -5
  612. package/bootstrap-icons/arrow-bar-left.js +0 -12
  613. package/bootstrap-icons/arrow-bar-right.d.ts +0 -5
  614. package/bootstrap-icons/arrow-bar-right.js +0 -12
  615. package/bootstrap-icons/arrow-bar-up.d.ts +0 -5
  616. package/bootstrap-icons/arrow-bar-up.js +0 -12
  617. package/bootstrap-icons/arrow-clockwise.d.ts +0 -5
  618. package/bootstrap-icons/arrow-clockwise.js +0 -12
  619. package/bootstrap-icons/arrow-counterclockwise.d.ts +0 -5
  620. package/bootstrap-icons/arrow-counterclockwise.js +0 -12
  621. package/bootstrap-icons/arrow-down-circle-fill.d.ts +0 -5
  622. package/bootstrap-icons/arrow-down-circle-fill.js +0 -12
  623. package/bootstrap-icons/arrow-down-circle.d.ts +0 -5
  624. package/bootstrap-icons/arrow-down-circle.js +0 -12
  625. package/bootstrap-icons/arrow-down-left-circle-fill.d.ts +0 -5
  626. package/bootstrap-icons/arrow-down-left-circle-fill.js +0 -12
  627. package/bootstrap-icons/arrow-down-left-circle.d.ts +0 -5
  628. package/bootstrap-icons/arrow-down-left-circle.js +0 -12
  629. package/bootstrap-icons/arrow-down-left-square-fill.d.ts +0 -5
  630. package/bootstrap-icons/arrow-down-left-square-fill.js +0 -12
  631. package/bootstrap-icons/arrow-down-left-square.d.ts +0 -5
  632. package/bootstrap-icons/arrow-down-left-square.js +0 -12
  633. package/bootstrap-icons/arrow-down-left.d.ts +0 -5
  634. package/bootstrap-icons/arrow-down-left.js +0 -12
  635. package/bootstrap-icons/arrow-down-right-circle-fill.d.ts +0 -5
  636. package/bootstrap-icons/arrow-down-right-circle-fill.js +0 -12
  637. package/bootstrap-icons/arrow-down-right-circle.d.ts +0 -5
  638. package/bootstrap-icons/arrow-down-right-circle.js +0 -12
  639. package/bootstrap-icons/arrow-down-right-square-fill.d.ts +0 -5
  640. package/bootstrap-icons/arrow-down-right-square-fill.js +0 -12
  641. package/bootstrap-icons/arrow-down-right-square.d.ts +0 -5
  642. package/bootstrap-icons/arrow-down-right-square.js +0 -12
  643. package/bootstrap-icons/arrow-down-right.d.ts +0 -5
  644. package/bootstrap-icons/arrow-down-right.js +0 -12
  645. package/bootstrap-icons/arrow-down-short.d.ts +0 -5
  646. package/bootstrap-icons/arrow-down-short.js +0 -12
  647. package/bootstrap-icons/arrow-down-square-fill.d.ts +0 -5
  648. package/bootstrap-icons/arrow-down-square-fill.js +0 -12
  649. package/bootstrap-icons/arrow-down-square.d.ts +0 -5
  650. package/bootstrap-icons/arrow-down-square.js +0 -12
  651. package/bootstrap-icons/arrow-down-up.d.ts +0 -5
  652. package/bootstrap-icons/arrow-down-up.js +0 -12
  653. package/bootstrap-icons/arrow-down.d.ts +0 -5
  654. package/bootstrap-icons/arrow-down.js +0 -12
  655. package/bootstrap-icons/arrow-left-circle-fill.d.ts +0 -5
  656. package/bootstrap-icons/arrow-left-circle-fill.js +0 -12
  657. package/bootstrap-icons/arrow-left-circle.d.ts +0 -5
  658. package/bootstrap-icons/arrow-left-circle.js +0 -12
  659. package/bootstrap-icons/arrow-left-right.d.ts +0 -5
  660. package/bootstrap-icons/arrow-left-right.js +0 -12
  661. package/bootstrap-icons/arrow-left-short.d.ts +0 -5
  662. package/bootstrap-icons/arrow-left-short.js +0 -12
  663. package/bootstrap-icons/arrow-left-square-fill.d.ts +0 -5
  664. package/bootstrap-icons/arrow-left-square-fill.js +0 -12
  665. package/bootstrap-icons/arrow-left-square.d.ts +0 -5
  666. package/bootstrap-icons/arrow-left-square.js +0 -12
  667. package/bootstrap-icons/arrow-left.d.ts +0 -5
  668. package/bootstrap-icons/arrow-left.js +0 -12
  669. package/bootstrap-icons/arrow-repeat.d.ts +0 -5
  670. package/bootstrap-icons/arrow-repeat.js +0 -12
  671. package/bootstrap-icons/arrow-return-left.d.ts +0 -5
  672. package/bootstrap-icons/arrow-return-left.js +0 -12
  673. package/bootstrap-icons/arrow-return-right.d.ts +0 -5
  674. package/bootstrap-icons/arrow-return-right.js +0 -12
  675. package/bootstrap-icons/arrow-right-circle-fill.d.ts +0 -5
  676. package/bootstrap-icons/arrow-right-circle-fill.js +0 -12
  677. package/bootstrap-icons/arrow-right-circle.d.ts +0 -5
  678. package/bootstrap-icons/arrow-right-circle.js +0 -12
  679. package/bootstrap-icons/arrow-right-short.d.ts +0 -5
  680. package/bootstrap-icons/arrow-right-short.js +0 -12
  681. package/bootstrap-icons/arrow-right-square-fill.d.ts +0 -5
  682. package/bootstrap-icons/arrow-right-square-fill.js +0 -12
  683. package/bootstrap-icons/arrow-right-square.d.ts +0 -5
  684. package/bootstrap-icons/arrow-right-square.js +0 -12
  685. package/bootstrap-icons/arrow-right.d.ts +0 -5
  686. package/bootstrap-icons/arrow-right.js +0 -12
  687. package/bootstrap-icons/arrow-through-heart-fill.d.ts +0 -5
  688. package/bootstrap-icons/arrow-through-heart-fill.js +0 -12
  689. package/bootstrap-icons/arrow-through-heart.d.ts +0 -5
  690. package/bootstrap-icons/arrow-through-heart.js +0 -12
  691. package/bootstrap-icons/arrow-up-circle-fill.d.ts +0 -5
  692. package/bootstrap-icons/arrow-up-circle-fill.js +0 -12
  693. package/bootstrap-icons/arrow-up-circle.d.ts +0 -5
  694. package/bootstrap-icons/arrow-up-circle.js +0 -12
  695. package/bootstrap-icons/arrow-up-left-circle-fill.d.ts +0 -5
  696. package/bootstrap-icons/arrow-up-left-circle-fill.js +0 -12
  697. package/bootstrap-icons/arrow-up-left-circle.d.ts +0 -5
  698. package/bootstrap-icons/arrow-up-left-circle.js +0 -12
  699. package/bootstrap-icons/arrow-up-left-square-fill.d.ts +0 -5
  700. package/bootstrap-icons/arrow-up-left-square-fill.js +0 -12
  701. package/bootstrap-icons/arrow-up-left-square.d.ts +0 -5
  702. package/bootstrap-icons/arrow-up-left-square.js +0 -12
  703. package/bootstrap-icons/arrow-up-left.d.ts +0 -5
  704. package/bootstrap-icons/arrow-up-left.js +0 -12
  705. package/bootstrap-icons/arrow-up-right-circle-fill.d.ts +0 -5
  706. package/bootstrap-icons/arrow-up-right-circle-fill.js +0 -12
  707. package/bootstrap-icons/arrow-up-right-circle.d.ts +0 -5
  708. package/bootstrap-icons/arrow-up-right-circle.js +0 -12
  709. package/bootstrap-icons/arrow-up-right-square-fill.d.ts +0 -5
  710. package/bootstrap-icons/arrow-up-right-square-fill.js +0 -12
  711. package/bootstrap-icons/arrow-up-right-square.d.ts +0 -5
  712. package/bootstrap-icons/arrow-up-right-square.js +0 -12
  713. package/bootstrap-icons/arrow-up-right.d.ts +0 -5
  714. package/bootstrap-icons/arrow-up-right.js +0 -12
  715. package/bootstrap-icons/arrow-up-short.d.ts +0 -5
  716. package/bootstrap-icons/arrow-up-short.js +0 -12
  717. package/bootstrap-icons/arrow-up-square-fill.d.ts +0 -5
  718. package/bootstrap-icons/arrow-up-square-fill.js +0 -12
  719. package/bootstrap-icons/arrow-up-square.d.ts +0 -5
  720. package/bootstrap-icons/arrow-up-square.js +0 -12
  721. package/bootstrap-icons/arrow-up.d.ts +0 -5
  722. package/bootstrap-icons/arrow-up.js +0 -12
  723. package/bootstrap-icons/arrows-angle-contract.d.ts +0 -5
  724. package/bootstrap-icons/arrows-angle-contract.js +0 -12
  725. package/bootstrap-icons/arrows-angle-expand.d.ts +0 -5
  726. package/bootstrap-icons/arrows-angle-expand.js +0 -12
  727. package/bootstrap-icons/arrows-collapse.d.ts +0 -5
  728. package/bootstrap-icons/arrows-collapse.js +0 -12
  729. package/bootstrap-icons/arrows-expand.d.ts +0 -5
  730. package/bootstrap-icons/arrows-expand.js +0 -12
  731. package/bootstrap-icons/arrows-fullscreen.d.ts +0 -5
  732. package/bootstrap-icons/arrows-fullscreen.js +0 -12
  733. package/bootstrap-icons/arrows-move.d.ts +0 -5
  734. package/bootstrap-icons/arrows-move.js +0 -12
  735. package/bootstrap-icons/aspect-ratio-fill.d.ts +0 -5
  736. package/bootstrap-icons/aspect-ratio-fill.js +0 -12
  737. package/bootstrap-icons/aspect-ratio.d.ts +0 -5
  738. package/bootstrap-icons/aspect-ratio.js +0 -12
  739. package/bootstrap-icons/asterisk.d.ts +0 -5
  740. package/bootstrap-icons/asterisk.js +0 -12
  741. package/bootstrap-icons/at.d.ts +0 -5
  742. package/bootstrap-icons/at.js +0 -12
  743. package/bootstrap-icons/award-fill.d.ts +0 -5
  744. package/bootstrap-icons/award-fill.js +0 -12
  745. package/bootstrap-icons/award.d.ts +0 -5
  746. package/bootstrap-icons/award.js +0 -12
  747. package/bootstrap-icons/back.d.ts +0 -5
  748. package/bootstrap-icons/back.js +0 -12
  749. package/bootstrap-icons/backspace-fill.d.ts +0 -5
  750. package/bootstrap-icons/backspace-fill.js +0 -12
  751. package/bootstrap-icons/backspace-reverse-fill.d.ts +0 -5
  752. package/bootstrap-icons/backspace-reverse-fill.js +0 -12
  753. package/bootstrap-icons/backspace-reverse.d.ts +0 -5
  754. package/bootstrap-icons/backspace-reverse.js +0 -12
  755. package/bootstrap-icons/backspace.d.ts +0 -5
  756. package/bootstrap-icons/backspace.js +0 -12
  757. package/bootstrap-icons/badge-3d-fill.d.ts +0 -5
  758. package/bootstrap-icons/badge-3d-fill.js +0 -12
  759. package/bootstrap-icons/badge-3d.d.ts +0 -5
  760. package/bootstrap-icons/badge-3d.js +0 -12
  761. package/bootstrap-icons/badge-4k-fill.d.ts +0 -5
  762. package/bootstrap-icons/badge-4k-fill.js +0 -12
  763. package/bootstrap-icons/badge-4k.d.ts +0 -5
  764. package/bootstrap-icons/badge-4k.js +0 -12
  765. package/bootstrap-icons/badge-8k-fill.d.ts +0 -5
  766. package/bootstrap-icons/badge-8k-fill.js +0 -12
  767. package/bootstrap-icons/badge-8k.d.ts +0 -5
  768. package/bootstrap-icons/badge-8k.js +0 -12
  769. package/bootstrap-icons/badge-ad-fill.d.ts +0 -5
  770. package/bootstrap-icons/badge-ad-fill.js +0 -12
  771. package/bootstrap-icons/badge-ad.d.ts +0 -5
  772. package/bootstrap-icons/badge-ad.js +0 -12
  773. package/bootstrap-icons/badge-ar-fill.d.ts +0 -5
  774. package/bootstrap-icons/badge-ar-fill.js +0 -12
  775. package/bootstrap-icons/badge-ar.d.ts +0 -5
  776. package/bootstrap-icons/badge-ar.js +0 -12
  777. package/bootstrap-icons/badge-cc-fill.d.ts +0 -5
  778. package/bootstrap-icons/badge-cc-fill.js +0 -12
  779. package/bootstrap-icons/badge-cc.d.ts +0 -5
  780. package/bootstrap-icons/badge-cc.js +0 -12
  781. package/bootstrap-icons/badge-hd-fill.d.ts +0 -5
  782. package/bootstrap-icons/badge-hd-fill.js +0 -12
  783. package/bootstrap-icons/badge-hd.d.ts +0 -5
  784. package/bootstrap-icons/badge-hd.js +0 -12
  785. package/bootstrap-icons/badge-sd-fill.d.ts +0 -5
  786. package/bootstrap-icons/badge-sd-fill.js +0 -12
  787. package/bootstrap-icons/badge-sd.d.ts +0 -5
  788. package/bootstrap-icons/badge-sd.js +0 -12
  789. package/bootstrap-icons/badge-tm-fill.d.ts +0 -5
  790. package/bootstrap-icons/badge-tm-fill.js +0 -12
  791. package/bootstrap-icons/badge-tm.d.ts +0 -5
  792. package/bootstrap-icons/badge-tm.js +0 -12
  793. package/bootstrap-icons/badge-vo-fill.d.ts +0 -5
  794. package/bootstrap-icons/badge-vo-fill.js +0 -12
  795. package/bootstrap-icons/badge-vo.d.ts +0 -5
  796. package/bootstrap-icons/badge-vo.js +0 -12
  797. package/bootstrap-icons/badge-vr-fill.d.ts +0 -5
  798. package/bootstrap-icons/badge-vr-fill.js +0 -12
  799. package/bootstrap-icons/badge-vr.d.ts +0 -5
  800. package/bootstrap-icons/badge-vr.js +0 -12
  801. package/bootstrap-icons/badge-wc-fill.d.ts +0 -5
  802. package/bootstrap-icons/badge-wc-fill.js +0 -12
  803. package/bootstrap-icons/badge-wc.d.ts +0 -5
  804. package/bootstrap-icons/badge-wc.js +0 -12
  805. package/bootstrap-icons/bag-check-fill.d.ts +0 -5
  806. package/bootstrap-icons/bag-check-fill.js +0 -12
  807. package/bootstrap-icons/bag-check.d.ts +0 -5
  808. package/bootstrap-icons/bag-check.js +0 -12
  809. package/bootstrap-icons/bag-dash-fill.d.ts +0 -5
  810. package/bootstrap-icons/bag-dash-fill.js +0 -12
  811. package/bootstrap-icons/bag-dash.d.ts +0 -5
  812. package/bootstrap-icons/bag-dash.js +0 -12
  813. package/bootstrap-icons/bag-fill.d.ts +0 -5
  814. package/bootstrap-icons/bag-fill.js +0 -12
  815. package/bootstrap-icons/bag-heart-fill.d.ts +0 -5
  816. package/bootstrap-icons/bag-heart-fill.js +0 -12
  817. package/bootstrap-icons/bag-heart.d.ts +0 -5
  818. package/bootstrap-icons/bag-heart.js +0 -12
  819. package/bootstrap-icons/bag-plus-fill.d.ts +0 -5
  820. package/bootstrap-icons/bag-plus-fill.js +0 -12
  821. package/bootstrap-icons/bag-plus.d.ts +0 -5
  822. package/bootstrap-icons/bag-plus.js +0 -12
  823. package/bootstrap-icons/bag-x-fill.d.ts +0 -5
  824. package/bootstrap-icons/bag-x-fill.js +0 -12
  825. package/bootstrap-icons/bag-x.d.ts +0 -5
  826. package/bootstrap-icons/bag-x.js +0 -12
  827. package/bootstrap-icons/bag.d.ts +0 -5
  828. package/bootstrap-icons/bag.js +0 -12
  829. package/bootstrap-icons/balloon-fill.d.ts +0 -5
  830. package/bootstrap-icons/balloon-fill.js +0 -12
  831. package/bootstrap-icons/balloon-heart-fill.d.ts +0 -5
  832. package/bootstrap-icons/balloon-heart-fill.js +0 -12
  833. package/bootstrap-icons/balloon-heart.d.ts +0 -5
  834. package/bootstrap-icons/balloon-heart.js +0 -12
  835. package/bootstrap-icons/balloon.d.ts +0 -5
  836. package/bootstrap-icons/balloon.js +0 -12
  837. package/bootstrap-icons/bandaid-fill.d.ts +0 -5
  838. package/bootstrap-icons/bandaid-fill.js +0 -12
  839. package/bootstrap-icons/bandaid.d.ts +0 -5
  840. package/bootstrap-icons/bandaid.js +0 -12
  841. package/bootstrap-icons/bank.d.ts +0 -5
  842. package/bootstrap-icons/bank.js +0 -12
  843. package/bootstrap-icons/bank2.d.ts +0 -5
  844. package/bootstrap-icons/bank2.js +0 -12
  845. package/bootstrap-icons/bar-chart-fill.d.ts +0 -5
  846. package/bootstrap-icons/bar-chart-fill.js +0 -12
  847. package/bootstrap-icons/bar-chart-line-fill.d.ts +0 -5
  848. package/bootstrap-icons/bar-chart-line-fill.js +0 -12
  849. package/bootstrap-icons/bar-chart-line.d.ts +0 -5
  850. package/bootstrap-icons/bar-chart-line.js +0 -12
  851. package/bootstrap-icons/bar-chart-steps.d.ts +0 -5
  852. package/bootstrap-icons/bar-chart-steps.js +0 -12
  853. package/bootstrap-icons/bar-chart.d.ts +0 -5
  854. package/bootstrap-icons/bar-chart.js +0 -12
  855. package/bootstrap-icons/basket-fill.d.ts +0 -5
  856. package/bootstrap-icons/basket-fill.js +0 -12
  857. package/bootstrap-icons/basket.d.ts +0 -5
  858. package/bootstrap-icons/basket.js +0 -12
  859. package/bootstrap-icons/basket2-fill.d.ts +0 -5
  860. package/bootstrap-icons/basket2-fill.js +0 -12
  861. package/bootstrap-icons/basket2.d.ts +0 -5
  862. package/bootstrap-icons/basket2.js +0 -12
  863. package/bootstrap-icons/basket3-fill.d.ts +0 -5
  864. package/bootstrap-icons/basket3-fill.js +0 -12
  865. package/bootstrap-icons/basket3.d.ts +0 -5
  866. package/bootstrap-icons/basket3.js +0 -12
  867. package/bootstrap-icons/battery-charging.d.ts +0 -5
  868. package/bootstrap-icons/battery-charging.js +0 -12
  869. package/bootstrap-icons/battery-full.d.ts +0 -5
  870. package/bootstrap-icons/battery-full.js +0 -12
  871. package/bootstrap-icons/battery-half.d.ts +0 -5
  872. package/bootstrap-icons/battery-half.js +0 -12
  873. package/bootstrap-icons/battery.d.ts +0 -5
  874. package/bootstrap-icons/battery.js +0 -12
  875. package/bootstrap-icons/behance.d.ts +0 -5
  876. package/bootstrap-icons/behance.js +0 -12
  877. package/bootstrap-icons/bell-fill.d.ts +0 -5
  878. package/bootstrap-icons/bell-fill.js +0 -12
  879. package/bootstrap-icons/bell-slash-fill.d.ts +0 -5
  880. package/bootstrap-icons/bell-slash-fill.js +0 -12
  881. package/bootstrap-icons/bell-slash.d.ts +0 -5
  882. package/bootstrap-icons/bell-slash.js +0 -12
  883. package/bootstrap-icons/bell.d.ts +0 -5
  884. package/bootstrap-icons/bell.js +0 -12
  885. package/bootstrap-icons/bezier.d.ts +0 -5
  886. package/bootstrap-icons/bezier.js +0 -12
  887. package/bootstrap-icons/bezier2.d.ts +0 -5
  888. package/bootstrap-icons/bezier2.js +0 -12
  889. package/bootstrap-icons/bicycle.d.ts +0 -5
  890. package/bootstrap-icons/bicycle.js +0 -12
  891. package/bootstrap-icons/binoculars-fill.d.ts +0 -5
  892. package/bootstrap-icons/binoculars-fill.js +0 -12
  893. package/bootstrap-icons/binoculars.d.ts +0 -5
  894. package/bootstrap-icons/binoculars.js +0 -12
  895. package/bootstrap-icons/blockquote-left.d.ts +0 -5
  896. package/bootstrap-icons/blockquote-left.js +0 -12
  897. package/bootstrap-icons/blockquote-right.d.ts +0 -5
  898. package/bootstrap-icons/blockquote-right.js +0 -12
  899. package/bootstrap-icons/bluetooth.d.ts +0 -5
  900. package/bootstrap-icons/bluetooth.js +0 -12
  901. package/bootstrap-icons/body-text.d.ts +0 -5
  902. package/bootstrap-icons/body-text.js +0 -12
  903. package/bootstrap-icons/book-fill.d.ts +0 -5
  904. package/bootstrap-icons/book-fill.js +0 -12
  905. package/bootstrap-icons/book-half.d.ts +0 -5
  906. package/bootstrap-icons/book-half.js +0 -12
  907. package/bootstrap-icons/book.d.ts +0 -5
  908. package/bootstrap-icons/book.js +0 -12
  909. package/bootstrap-icons/bookmark-check-fill.d.ts +0 -5
  910. package/bootstrap-icons/bookmark-check-fill.js +0 -12
  911. package/bootstrap-icons/bookmark-check.d.ts +0 -5
  912. package/bootstrap-icons/bookmark-check.js +0 -12
  913. package/bootstrap-icons/bookmark-dash-fill.d.ts +0 -5
  914. package/bootstrap-icons/bookmark-dash-fill.js +0 -12
  915. package/bootstrap-icons/bookmark-dash.d.ts +0 -5
  916. package/bootstrap-icons/bookmark-dash.js +0 -12
  917. package/bootstrap-icons/bookmark-fill.d.ts +0 -5
  918. package/bootstrap-icons/bookmark-fill.js +0 -12
  919. package/bootstrap-icons/bookmark-heart-fill.d.ts +0 -5
  920. package/bootstrap-icons/bookmark-heart-fill.js +0 -12
  921. package/bootstrap-icons/bookmark-heart.d.ts +0 -5
  922. package/bootstrap-icons/bookmark-heart.js +0 -12
  923. package/bootstrap-icons/bookmark-plus-fill.d.ts +0 -5
  924. package/bootstrap-icons/bookmark-plus-fill.js +0 -12
  925. package/bootstrap-icons/bookmark-plus.d.ts +0 -5
  926. package/bootstrap-icons/bookmark-plus.js +0 -12
  927. package/bootstrap-icons/bookmark-star-fill.d.ts +0 -5
  928. package/bootstrap-icons/bookmark-star-fill.js +0 -12
  929. package/bootstrap-icons/bookmark-star.d.ts +0 -5
  930. package/bootstrap-icons/bookmark-star.js +0 -12
  931. package/bootstrap-icons/bookmark-x-fill.d.ts +0 -5
  932. package/bootstrap-icons/bookmark-x-fill.js +0 -12
  933. package/bootstrap-icons/bookmark-x.d.ts +0 -5
  934. package/bootstrap-icons/bookmark-x.js +0 -12
  935. package/bootstrap-icons/bookmark.d.ts +0 -5
  936. package/bootstrap-icons/bookmark.js +0 -12
  937. package/bootstrap-icons/bookmarks-fill.d.ts +0 -5
  938. package/bootstrap-icons/bookmarks-fill.js +0 -12
  939. package/bootstrap-icons/bookmarks.d.ts +0 -5
  940. package/bootstrap-icons/bookmarks.js +0 -12
  941. package/bootstrap-icons/bookshelf.d.ts +0 -5
  942. package/bootstrap-icons/bookshelf.js +0 -12
  943. package/bootstrap-icons/boombox-fill.d.ts +0 -5
  944. package/bootstrap-icons/boombox-fill.js +0 -12
  945. package/bootstrap-icons/boombox.d.ts +0 -5
  946. package/bootstrap-icons/boombox.js +0 -12
  947. package/bootstrap-icons/bootstrap-fill.d.ts +0 -5
  948. package/bootstrap-icons/bootstrap-fill.js +0 -12
  949. package/bootstrap-icons/bootstrap-reboot.d.ts +0 -5
  950. package/bootstrap-icons/bootstrap-reboot.js +0 -12
  951. package/bootstrap-icons/bootstrap.d.ts +0 -5
  952. package/bootstrap-icons/bootstrap.js +0 -12
  953. package/bootstrap-icons/border-all.d.ts +0 -5
  954. package/bootstrap-icons/border-all.js +0 -12
  955. package/bootstrap-icons/border-bottom.d.ts +0 -5
  956. package/bootstrap-icons/border-bottom.js +0 -12
  957. package/bootstrap-icons/border-center.d.ts +0 -5
  958. package/bootstrap-icons/border-center.js +0 -12
  959. package/bootstrap-icons/border-inner.d.ts +0 -5
  960. package/bootstrap-icons/border-inner.js +0 -12
  961. package/bootstrap-icons/border-left.d.ts +0 -5
  962. package/bootstrap-icons/border-left.js +0 -12
  963. package/bootstrap-icons/border-middle.d.ts +0 -5
  964. package/bootstrap-icons/border-middle.js +0 -12
  965. package/bootstrap-icons/border-outer.d.ts +0 -5
  966. package/bootstrap-icons/border-outer.js +0 -12
  967. package/bootstrap-icons/border-right.d.ts +0 -5
  968. package/bootstrap-icons/border-right.js +0 -12
  969. package/bootstrap-icons/border-style.d.ts +0 -5
  970. package/bootstrap-icons/border-style.js +0 -12
  971. package/bootstrap-icons/border-top.d.ts +0 -5
  972. package/bootstrap-icons/border-top.js +0 -12
  973. package/bootstrap-icons/border-width.d.ts +0 -5
  974. package/bootstrap-icons/border-width.js +0 -12
  975. package/bootstrap-icons/border.d.ts +0 -5
  976. package/bootstrap-icons/border.js +0 -12
  977. package/bootstrap-icons/bounding-box-circles.d.ts +0 -5
  978. package/bootstrap-icons/bounding-box-circles.js +0 -12
  979. package/bootstrap-icons/bounding-box.d.ts +0 -5
  980. package/bootstrap-icons/bounding-box.js +0 -12
  981. package/bootstrap-icons/box-arrow-down-left.d.ts +0 -5
  982. package/bootstrap-icons/box-arrow-down-left.js +0 -12
  983. package/bootstrap-icons/box-arrow-down-right.d.ts +0 -5
  984. package/bootstrap-icons/box-arrow-down-right.js +0 -12
  985. package/bootstrap-icons/box-arrow-down.d.ts +0 -5
  986. package/bootstrap-icons/box-arrow-down.js +0 -12
  987. package/bootstrap-icons/box-arrow-in-down-left.d.ts +0 -5
  988. package/bootstrap-icons/box-arrow-in-down-left.js +0 -12
  989. package/bootstrap-icons/box-arrow-in-down-right.d.ts +0 -5
  990. package/bootstrap-icons/box-arrow-in-down-right.js +0 -12
  991. package/bootstrap-icons/box-arrow-in-down.d.ts +0 -5
  992. package/bootstrap-icons/box-arrow-in-down.js +0 -12
  993. package/bootstrap-icons/box-arrow-in-left.d.ts +0 -5
  994. package/bootstrap-icons/box-arrow-in-left.js +0 -12
  995. package/bootstrap-icons/box-arrow-in-right.d.ts +0 -5
  996. package/bootstrap-icons/box-arrow-in-right.js +0 -12
  997. package/bootstrap-icons/box-arrow-in-up-left.d.ts +0 -5
  998. package/bootstrap-icons/box-arrow-in-up-left.js +0 -12
  999. package/bootstrap-icons/box-arrow-in-up-right.d.ts +0 -5
  1000. package/bootstrap-icons/box-arrow-in-up-right.js +0 -12
  1001. package/bootstrap-icons/box-arrow-in-up.d.ts +0 -5
  1002. package/bootstrap-icons/box-arrow-in-up.js +0 -12
  1003. package/bootstrap-icons/box-arrow-left.d.ts +0 -5
  1004. package/bootstrap-icons/box-arrow-left.js +0 -12
  1005. package/bootstrap-icons/box-arrow-right.d.ts +0 -5
  1006. package/bootstrap-icons/box-arrow-right.js +0 -12
  1007. package/bootstrap-icons/box-arrow-up-left.d.ts +0 -5
  1008. package/bootstrap-icons/box-arrow-up-left.js +0 -12
  1009. package/bootstrap-icons/box-arrow-up-right.d.ts +0 -5
  1010. package/bootstrap-icons/box-arrow-up-right.js +0 -12
  1011. package/bootstrap-icons/box-arrow-up.d.ts +0 -5
  1012. package/bootstrap-icons/box-arrow-up.js +0 -12
  1013. package/bootstrap-icons/box-seam.d.ts +0 -5
  1014. package/bootstrap-icons/box-seam.js +0 -12
  1015. package/bootstrap-icons/box.d.ts +0 -5
  1016. package/bootstrap-icons/box.js +0 -12
  1017. package/bootstrap-icons/box2-fill.d.ts +0 -5
  1018. package/bootstrap-icons/box2-fill.js +0 -12
  1019. package/bootstrap-icons/box2-heart-fill.d.ts +0 -5
  1020. package/bootstrap-icons/box2-heart-fill.js +0 -12
  1021. package/bootstrap-icons/box2-heart.d.ts +0 -5
  1022. package/bootstrap-icons/box2-heart.js +0 -12
  1023. package/bootstrap-icons/box2.d.ts +0 -5
  1024. package/bootstrap-icons/box2.js +0 -12
  1025. package/bootstrap-icons/boxes.d.ts +0 -5
  1026. package/bootstrap-icons/boxes.js +0 -12
  1027. package/bootstrap-icons/braces-asterisk.d.ts +0 -5
  1028. package/bootstrap-icons/braces-asterisk.js +0 -12
  1029. package/bootstrap-icons/braces.d.ts +0 -5
  1030. package/bootstrap-icons/braces.js +0 -12
  1031. package/bootstrap-icons/bricks.d.ts +0 -5
  1032. package/bootstrap-icons/bricks.js +0 -12
  1033. package/bootstrap-icons/briefcase-fill.d.ts +0 -5
  1034. package/bootstrap-icons/briefcase-fill.js +0 -12
  1035. package/bootstrap-icons/briefcase.d.ts +0 -5
  1036. package/bootstrap-icons/briefcase.js +0 -12
  1037. package/bootstrap-icons/brightness-alt-high-fill.d.ts +0 -5
  1038. package/bootstrap-icons/brightness-alt-high-fill.js +0 -12
  1039. package/bootstrap-icons/brightness-alt-high.d.ts +0 -5
  1040. package/bootstrap-icons/brightness-alt-high.js +0 -12
  1041. package/bootstrap-icons/brightness-alt-low-fill.d.ts +0 -5
  1042. package/bootstrap-icons/brightness-alt-low-fill.js +0 -12
  1043. package/bootstrap-icons/brightness-alt-low.d.ts +0 -5
  1044. package/bootstrap-icons/brightness-alt-low.js +0 -12
  1045. package/bootstrap-icons/brightness-high-fill.d.ts +0 -5
  1046. package/bootstrap-icons/brightness-high-fill.js +0 -12
  1047. package/bootstrap-icons/brightness-high.d.ts +0 -5
  1048. package/bootstrap-icons/brightness-high.js +0 -12
  1049. package/bootstrap-icons/brightness-low-fill.d.ts +0 -5
  1050. package/bootstrap-icons/brightness-low-fill.js +0 -12
  1051. package/bootstrap-icons/brightness-low.d.ts +0 -5
  1052. package/bootstrap-icons/brightness-low.js +0 -12
  1053. package/bootstrap-icons/broadcast-pin.d.ts +0 -5
  1054. package/bootstrap-icons/broadcast-pin.js +0 -12
  1055. package/bootstrap-icons/broadcast.d.ts +0 -5
  1056. package/bootstrap-icons/broadcast.js +0 -12
  1057. package/bootstrap-icons/brush-fill.d.ts +0 -5
  1058. package/bootstrap-icons/brush-fill.js +0 -12
  1059. package/bootstrap-icons/brush.d.ts +0 -5
  1060. package/bootstrap-icons/brush.js +0 -12
  1061. package/bootstrap-icons/bucket-fill.d.ts +0 -5
  1062. package/bootstrap-icons/bucket-fill.js +0 -12
  1063. package/bootstrap-icons/bucket.d.ts +0 -5
  1064. package/bootstrap-icons/bucket.js +0 -12
  1065. package/bootstrap-icons/bug-fill.d.ts +0 -5
  1066. package/bootstrap-icons/bug-fill.js +0 -12
  1067. package/bootstrap-icons/bug.d.ts +0 -5
  1068. package/bootstrap-icons/bug.js +0 -12
  1069. package/bootstrap-icons/building.d.ts +0 -5
  1070. package/bootstrap-icons/building.js +0 -12
  1071. package/bootstrap-icons/bullseye.d.ts +0 -5
  1072. package/bootstrap-icons/bullseye.js +0 -12
  1073. package/bootstrap-icons/calculator-fill.d.ts +0 -5
  1074. package/bootstrap-icons/calculator-fill.js +0 -12
  1075. package/bootstrap-icons/calculator.d.ts +0 -5
  1076. package/bootstrap-icons/calculator.js +0 -12
  1077. package/bootstrap-icons/calendar-check-fill.d.ts +0 -5
  1078. package/bootstrap-icons/calendar-check-fill.js +0 -12
  1079. package/bootstrap-icons/calendar-check.d.ts +0 -5
  1080. package/bootstrap-icons/calendar-check.js +0 -12
  1081. package/bootstrap-icons/calendar-date-fill.d.ts +0 -5
  1082. package/bootstrap-icons/calendar-date-fill.js +0 -12
  1083. package/bootstrap-icons/calendar-date.d.ts +0 -5
  1084. package/bootstrap-icons/calendar-date.js +0 -12
  1085. package/bootstrap-icons/calendar-day-fill.d.ts +0 -5
  1086. package/bootstrap-icons/calendar-day-fill.js +0 -12
  1087. package/bootstrap-icons/calendar-day.d.ts +0 -5
  1088. package/bootstrap-icons/calendar-day.js +0 -12
  1089. package/bootstrap-icons/calendar-event-fill.d.ts +0 -5
  1090. package/bootstrap-icons/calendar-event-fill.js +0 -12
  1091. package/bootstrap-icons/calendar-event.d.ts +0 -5
  1092. package/bootstrap-icons/calendar-event.js +0 -12
  1093. package/bootstrap-icons/calendar-fill.d.ts +0 -5
  1094. package/bootstrap-icons/calendar-fill.js +0 -12
  1095. package/bootstrap-icons/calendar-heart-fill.d.ts +0 -5
  1096. package/bootstrap-icons/calendar-heart-fill.js +0 -12
  1097. package/bootstrap-icons/calendar-heart.d.ts +0 -5
  1098. package/bootstrap-icons/calendar-heart.js +0 -12
  1099. package/bootstrap-icons/calendar-minus-fill.d.ts +0 -5
  1100. package/bootstrap-icons/calendar-minus-fill.js +0 -12
  1101. package/bootstrap-icons/calendar-minus.d.ts +0 -5
  1102. package/bootstrap-icons/calendar-minus.js +0 -12
  1103. package/bootstrap-icons/calendar-month-fill.d.ts +0 -5
  1104. package/bootstrap-icons/calendar-month-fill.js +0 -12
  1105. package/bootstrap-icons/calendar-month.d.ts +0 -5
  1106. package/bootstrap-icons/calendar-month.js +0 -12
  1107. package/bootstrap-icons/calendar-plus-fill.d.ts +0 -5
  1108. package/bootstrap-icons/calendar-plus-fill.js +0 -12
  1109. package/bootstrap-icons/calendar-plus.d.ts +0 -5
  1110. package/bootstrap-icons/calendar-plus.js +0 -12
  1111. package/bootstrap-icons/calendar-range-fill.d.ts +0 -5
  1112. package/bootstrap-icons/calendar-range-fill.js +0 -12
  1113. package/bootstrap-icons/calendar-range.d.ts +0 -5
  1114. package/bootstrap-icons/calendar-range.js +0 -12
  1115. package/bootstrap-icons/calendar-week-fill.d.ts +0 -5
  1116. package/bootstrap-icons/calendar-week-fill.js +0 -12
  1117. package/bootstrap-icons/calendar-week.d.ts +0 -5
  1118. package/bootstrap-icons/calendar-week.js +0 -12
  1119. package/bootstrap-icons/calendar-x-fill.d.ts +0 -5
  1120. package/bootstrap-icons/calendar-x-fill.js +0 -12
  1121. package/bootstrap-icons/calendar-x.d.ts +0 -5
  1122. package/bootstrap-icons/calendar-x.js +0 -12
  1123. package/bootstrap-icons/calendar.d.ts +0 -5
  1124. package/bootstrap-icons/calendar.js +0 -12
  1125. package/bootstrap-icons/calendar2-check-fill.d.ts +0 -5
  1126. package/bootstrap-icons/calendar2-check-fill.js +0 -12
  1127. package/bootstrap-icons/calendar2-check.d.ts +0 -5
  1128. package/bootstrap-icons/calendar2-check.js +0 -12
  1129. package/bootstrap-icons/calendar2-date-fill.d.ts +0 -5
  1130. package/bootstrap-icons/calendar2-date-fill.js +0 -12
  1131. package/bootstrap-icons/calendar2-date.d.ts +0 -5
  1132. package/bootstrap-icons/calendar2-date.js +0 -12
  1133. package/bootstrap-icons/calendar2-day-fill.d.ts +0 -5
  1134. package/bootstrap-icons/calendar2-day-fill.js +0 -12
  1135. package/bootstrap-icons/calendar2-day.d.ts +0 -5
  1136. package/bootstrap-icons/calendar2-day.js +0 -12
  1137. package/bootstrap-icons/calendar2-event-fill.d.ts +0 -5
  1138. package/bootstrap-icons/calendar2-event-fill.js +0 -12
  1139. package/bootstrap-icons/calendar2-event.d.ts +0 -5
  1140. package/bootstrap-icons/calendar2-event.js +0 -12
  1141. package/bootstrap-icons/calendar2-fill.d.ts +0 -5
  1142. package/bootstrap-icons/calendar2-fill.js +0 -12
  1143. package/bootstrap-icons/calendar2-heart-fill.d.ts +0 -5
  1144. package/bootstrap-icons/calendar2-heart-fill.js +0 -12
  1145. package/bootstrap-icons/calendar2-heart.d.ts +0 -5
  1146. package/bootstrap-icons/calendar2-heart.js +0 -12
  1147. package/bootstrap-icons/calendar2-minus-fill.d.ts +0 -5
  1148. package/bootstrap-icons/calendar2-minus-fill.js +0 -12
  1149. package/bootstrap-icons/calendar2-minus.d.ts +0 -5
  1150. package/bootstrap-icons/calendar2-minus.js +0 -12
  1151. package/bootstrap-icons/calendar2-month-fill.d.ts +0 -5
  1152. package/bootstrap-icons/calendar2-month-fill.js +0 -12
  1153. package/bootstrap-icons/calendar2-month.d.ts +0 -5
  1154. package/bootstrap-icons/calendar2-month.js +0 -12
  1155. package/bootstrap-icons/calendar2-plus-fill.d.ts +0 -5
  1156. package/bootstrap-icons/calendar2-plus-fill.js +0 -12
  1157. package/bootstrap-icons/calendar2-plus.d.ts +0 -5
  1158. package/bootstrap-icons/calendar2-plus.js +0 -12
  1159. package/bootstrap-icons/calendar2-range-fill.d.ts +0 -5
  1160. package/bootstrap-icons/calendar2-range-fill.js +0 -12
  1161. package/bootstrap-icons/calendar2-range.d.ts +0 -5
  1162. package/bootstrap-icons/calendar2-range.js +0 -12
  1163. package/bootstrap-icons/calendar2-week-fill.d.ts +0 -5
  1164. package/bootstrap-icons/calendar2-week-fill.js +0 -12
  1165. package/bootstrap-icons/calendar2-week.d.ts +0 -5
  1166. package/bootstrap-icons/calendar2-week.js +0 -12
  1167. package/bootstrap-icons/calendar2-x-fill.d.ts +0 -5
  1168. package/bootstrap-icons/calendar2-x-fill.js +0 -12
  1169. package/bootstrap-icons/calendar2-x.d.ts +0 -5
  1170. package/bootstrap-icons/calendar2-x.js +0 -12
  1171. package/bootstrap-icons/calendar2.d.ts +0 -5
  1172. package/bootstrap-icons/calendar2.js +0 -12
  1173. package/bootstrap-icons/calendar3-event-fill.d.ts +0 -5
  1174. package/bootstrap-icons/calendar3-event-fill.js +0 -12
  1175. package/bootstrap-icons/calendar3-event.d.ts +0 -5
  1176. package/bootstrap-icons/calendar3-event.js +0 -12
  1177. package/bootstrap-icons/calendar3-fill.d.ts +0 -5
  1178. package/bootstrap-icons/calendar3-fill.js +0 -12
  1179. package/bootstrap-icons/calendar3-range-fill.d.ts +0 -5
  1180. package/bootstrap-icons/calendar3-range-fill.js +0 -12
  1181. package/bootstrap-icons/calendar3-range.d.ts +0 -5
  1182. package/bootstrap-icons/calendar3-range.js +0 -12
  1183. package/bootstrap-icons/calendar3-week-fill.d.ts +0 -5
  1184. package/bootstrap-icons/calendar3-week-fill.js +0 -12
  1185. package/bootstrap-icons/calendar3-week.d.ts +0 -5
  1186. package/bootstrap-icons/calendar3-week.js +0 -12
  1187. package/bootstrap-icons/calendar3.d.ts +0 -5
  1188. package/bootstrap-icons/calendar3.js +0 -12
  1189. package/bootstrap-icons/calendar4-event.d.ts +0 -5
  1190. package/bootstrap-icons/calendar4-event.js +0 -12
  1191. package/bootstrap-icons/calendar4-range.d.ts +0 -5
  1192. package/bootstrap-icons/calendar4-range.js +0 -12
  1193. package/bootstrap-icons/calendar4-week.d.ts +0 -5
  1194. package/bootstrap-icons/calendar4-week.js +0 -12
  1195. package/bootstrap-icons/calendar4.d.ts +0 -5
  1196. package/bootstrap-icons/calendar4.js +0 -12
  1197. package/bootstrap-icons/camera-fill.d.ts +0 -5
  1198. package/bootstrap-icons/camera-fill.js +0 -12
  1199. package/bootstrap-icons/camera-reels-fill.d.ts +0 -5
  1200. package/bootstrap-icons/camera-reels-fill.js +0 -12
  1201. package/bootstrap-icons/camera-reels.d.ts +0 -5
  1202. package/bootstrap-icons/camera-reels.js +0 -12
  1203. package/bootstrap-icons/camera-video-fill.d.ts +0 -5
  1204. package/bootstrap-icons/camera-video-fill.js +0 -12
  1205. package/bootstrap-icons/camera-video-off-fill.d.ts +0 -5
  1206. package/bootstrap-icons/camera-video-off-fill.js +0 -12
  1207. package/bootstrap-icons/camera-video-off.d.ts +0 -5
  1208. package/bootstrap-icons/camera-video-off.js +0 -12
  1209. package/bootstrap-icons/camera-video.d.ts +0 -5
  1210. package/bootstrap-icons/camera-video.js +0 -12
  1211. package/bootstrap-icons/camera.d.ts +0 -5
  1212. package/bootstrap-icons/camera.js +0 -12
  1213. package/bootstrap-icons/camera2.d.ts +0 -5
  1214. package/bootstrap-icons/camera2.js +0 -12
  1215. package/bootstrap-icons/capslock-fill.d.ts +0 -5
  1216. package/bootstrap-icons/capslock-fill.js +0 -12
  1217. package/bootstrap-icons/capslock.d.ts +0 -5
  1218. package/bootstrap-icons/capslock.js +0 -12
  1219. package/bootstrap-icons/card-checklist.d.ts +0 -5
  1220. package/bootstrap-icons/card-checklist.js +0 -12
  1221. package/bootstrap-icons/card-heading.d.ts +0 -5
  1222. package/bootstrap-icons/card-heading.js +0 -12
  1223. package/bootstrap-icons/card-image.d.ts +0 -5
  1224. package/bootstrap-icons/card-image.js +0 -12
  1225. package/bootstrap-icons/card-list.d.ts +0 -5
  1226. package/bootstrap-icons/card-list.js +0 -12
  1227. package/bootstrap-icons/card-text.d.ts +0 -5
  1228. package/bootstrap-icons/card-text.js +0 -12
  1229. package/bootstrap-icons/caret-down-fill.d.ts +0 -5
  1230. package/bootstrap-icons/caret-down-fill.js +0 -12
  1231. package/bootstrap-icons/caret-down-square-fill.d.ts +0 -5
  1232. package/bootstrap-icons/caret-down-square-fill.js +0 -12
  1233. package/bootstrap-icons/caret-down-square.d.ts +0 -5
  1234. package/bootstrap-icons/caret-down-square.js +0 -12
  1235. package/bootstrap-icons/caret-down.d.ts +0 -5
  1236. package/bootstrap-icons/caret-down.js +0 -12
  1237. package/bootstrap-icons/caret-left-fill.d.ts +0 -5
  1238. package/bootstrap-icons/caret-left-fill.js +0 -12
  1239. package/bootstrap-icons/caret-left-square-fill.d.ts +0 -5
  1240. package/bootstrap-icons/caret-left-square-fill.js +0 -12
  1241. package/bootstrap-icons/caret-left-square.d.ts +0 -5
  1242. package/bootstrap-icons/caret-left-square.js +0 -12
  1243. package/bootstrap-icons/caret-left.d.ts +0 -5
  1244. package/bootstrap-icons/caret-left.js +0 -12
  1245. package/bootstrap-icons/caret-right-fill.d.ts +0 -5
  1246. package/bootstrap-icons/caret-right-fill.js +0 -12
  1247. package/bootstrap-icons/caret-right-square-fill.d.ts +0 -5
  1248. package/bootstrap-icons/caret-right-square-fill.js +0 -12
  1249. package/bootstrap-icons/caret-right-square.d.ts +0 -5
  1250. package/bootstrap-icons/caret-right-square.js +0 -12
  1251. package/bootstrap-icons/caret-right.d.ts +0 -5
  1252. package/bootstrap-icons/caret-right.js +0 -12
  1253. package/bootstrap-icons/caret-up-fill.d.ts +0 -5
  1254. package/bootstrap-icons/caret-up-fill.js +0 -12
  1255. package/bootstrap-icons/caret-up-square-fill.d.ts +0 -5
  1256. package/bootstrap-icons/caret-up-square-fill.js +0 -12
  1257. package/bootstrap-icons/caret-up-square.d.ts +0 -5
  1258. package/bootstrap-icons/caret-up-square.js +0 -12
  1259. package/bootstrap-icons/caret-up.d.ts +0 -5
  1260. package/bootstrap-icons/caret-up.js +0 -12
  1261. package/bootstrap-icons/cart-check-fill.d.ts +0 -5
  1262. package/bootstrap-icons/cart-check-fill.js +0 -12
  1263. package/bootstrap-icons/cart-check.d.ts +0 -5
  1264. package/bootstrap-icons/cart-check.js +0 -12
  1265. package/bootstrap-icons/cart-dash-fill.d.ts +0 -5
  1266. package/bootstrap-icons/cart-dash-fill.js +0 -12
  1267. package/bootstrap-icons/cart-dash.d.ts +0 -5
  1268. package/bootstrap-icons/cart-dash.js +0 -12
  1269. package/bootstrap-icons/cart-fill.d.ts +0 -5
  1270. package/bootstrap-icons/cart-fill.js +0 -12
  1271. package/bootstrap-icons/cart-plus-fill.d.ts +0 -5
  1272. package/bootstrap-icons/cart-plus-fill.js +0 -12
  1273. package/bootstrap-icons/cart-plus.d.ts +0 -5
  1274. package/bootstrap-icons/cart-plus.js +0 -12
  1275. package/bootstrap-icons/cart-x-fill.d.ts +0 -5
  1276. package/bootstrap-icons/cart-x-fill.js +0 -12
  1277. package/bootstrap-icons/cart-x.d.ts +0 -5
  1278. package/bootstrap-icons/cart-x.js +0 -12
  1279. package/bootstrap-icons/cart.d.ts +0 -5
  1280. package/bootstrap-icons/cart.js +0 -12
  1281. package/bootstrap-icons/cart2.d.ts +0 -5
  1282. package/bootstrap-icons/cart2.js +0 -12
  1283. package/bootstrap-icons/cart3.d.ts +0 -5
  1284. package/bootstrap-icons/cart3.js +0 -12
  1285. package/bootstrap-icons/cart4.d.ts +0 -5
  1286. package/bootstrap-icons/cart4.js +0 -12
  1287. package/bootstrap-icons/cash-coin.d.ts +0 -5
  1288. package/bootstrap-icons/cash-coin.js +0 -12
  1289. package/bootstrap-icons/cash-stack.d.ts +0 -5
  1290. package/bootstrap-icons/cash-stack.js +0 -12
  1291. package/bootstrap-icons/cash.d.ts +0 -5
  1292. package/bootstrap-icons/cash.js +0 -12
  1293. package/bootstrap-icons/cast.d.ts +0 -5
  1294. package/bootstrap-icons/cast.js +0 -12
  1295. package/bootstrap-icons/chat-dots-fill.d.ts +0 -5
  1296. package/bootstrap-icons/chat-dots-fill.js +0 -12
  1297. package/bootstrap-icons/chat-dots.d.ts +0 -5
  1298. package/bootstrap-icons/chat-dots.js +0 -12
  1299. package/bootstrap-icons/chat-fill.d.ts +0 -5
  1300. package/bootstrap-icons/chat-fill.js +0 -12
  1301. package/bootstrap-icons/chat-heart-fill.d.ts +0 -5
  1302. package/bootstrap-icons/chat-heart-fill.js +0 -12
  1303. package/bootstrap-icons/chat-heart.d.ts +0 -5
  1304. package/bootstrap-icons/chat-heart.js +0 -12
  1305. package/bootstrap-icons/chat-left-dots-fill.d.ts +0 -5
  1306. package/bootstrap-icons/chat-left-dots-fill.js +0 -12
  1307. package/bootstrap-icons/chat-left-dots.d.ts +0 -5
  1308. package/bootstrap-icons/chat-left-dots.js +0 -12
  1309. package/bootstrap-icons/chat-left-fill.d.ts +0 -5
  1310. package/bootstrap-icons/chat-left-fill.js +0 -12
  1311. package/bootstrap-icons/chat-left-heart-fill.d.ts +0 -5
  1312. package/bootstrap-icons/chat-left-heart-fill.js +0 -12
  1313. package/bootstrap-icons/chat-left-heart.d.ts +0 -5
  1314. package/bootstrap-icons/chat-left-heart.js +0 -12
  1315. package/bootstrap-icons/chat-left-quote-fill.d.ts +0 -5
  1316. package/bootstrap-icons/chat-left-quote-fill.js +0 -12
  1317. package/bootstrap-icons/chat-left-quote.d.ts +0 -5
  1318. package/bootstrap-icons/chat-left-quote.js +0 -12
  1319. package/bootstrap-icons/chat-left-text-fill.d.ts +0 -5
  1320. package/bootstrap-icons/chat-left-text-fill.js +0 -12
  1321. package/bootstrap-icons/chat-left-text.d.ts +0 -5
  1322. package/bootstrap-icons/chat-left-text.js +0 -12
  1323. package/bootstrap-icons/chat-left.d.ts +0 -5
  1324. package/bootstrap-icons/chat-left.js +0 -12
  1325. package/bootstrap-icons/chat-quote-fill.d.ts +0 -5
  1326. package/bootstrap-icons/chat-quote-fill.js +0 -12
  1327. package/bootstrap-icons/chat-quote.d.ts +0 -5
  1328. package/bootstrap-icons/chat-quote.js +0 -12
  1329. package/bootstrap-icons/chat-right-dots-fill.d.ts +0 -5
  1330. package/bootstrap-icons/chat-right-dots-fill.js +0 -12
  1331. package/bootstrap-icons/chat-right-dots.d.ts +0 -5
  1332. package/bootstrap-icons/chat-right-dots.js +0 -12
  1333. package/bootstrap-icons/chat-right-fill.d.ts +0 -5
  1334. package/bootstrap-icons/chat-right-fill.js +0 -12
  1335. package/bootstrap-icons/chat-right-heart-fill.d.ts +0 -5
  1336. package/bootstrap-icons/chat-right-heart-fill.js +0 -12
  1337. package/bootstrap-icons/chat-right-heart.d.ts +0 -5
  1338. package/bootstrap-icons/chat-right-heart.js +0 -12
  1339. package/bootstrap-icons/chat-right-quote-fill.d.ts +0 -5
  1340. package/bootstrap-icons/chat-right-quote-fill.js +0 -12
  1341. package/bootstrap-icons/chat-right-quote.d.ts +0 -5
  1342. package/bootstrap-icons/chat-right-quote.js +0 -12
  1343. package/bootstrap-icons/chat-right-text-fill.d.ts +0 -5
  1344. package/bootstrap-icons/chat-right-text-fill.js +0 -12
  1345. package/bootstrap-icons/chat-right-text.d.ts +0 -5
  1346. package/bootstrap-icons/chat-right-text.js +0 -12
  1347. package/bootstrap-icons/chat-right.d.ts +0 -5
  1348. package/bootstrap-icons/chat-right.js +0 -12
  1349. package/bootstrap-icons/chat-square-dots-fill.d.ts +0 -5
  1350. package/bootstrap-icons/chat-square-dots-fill.js +0 -12
  1351. package/bootstrap-icons/chat-square-dots.d.ts +0 -5
  1352. package/bootstrap-icons/chat-square-dots.js +0 -12
  1353. package/bootstrap-icons/chat-square-fill.d.ts +0 -5
  1354. package/bootstrap-icons/chat-square-fill.js +0 -12
  1355. package/bootstrap-icons/chat-square-heart-fill.d.ts +0 -5
  1356. package/bootstrap-icons/chat-square-heart-fill.js +0 -12
  1357. package/bootstrap-icons/chat-square-heart.d.ts +0 -5
  1358. package/bootstrap-icons/chat-square-heart.js +0 -12
  1359. package/bootstrap-icons/chat-square-quote-fill.d.ts +0 -5
  1360. package/bootstrap-icons/chat-square-quote-fill.js +0 -12
  1361. package/bootstrap-icons/chat-square-quote.d.ts +0 -5
  1362. package/bootstrap-icons/chat-square-quote.js +0 -12
  1363. package/bootstrap-icons/chat-square-text-fill.d.ts +0 -5
  1364. package/bootstrap-icons/chat-square-text-fill.js +0 -12
  1365. package/bootstrap-icons/chat-square-text.d.ts +0 -5
  1366. package/bootstrap-icons/chat-square-text.js +0 -12
  1367. package/bootstrap-icons/chat-square.d.ts +0 -5
  1368. package/bootstrap-icons/chat-square.js +0 -12
  1369. package/bootstrap-icons/chat-text-fill.d.ts +0 -5
  1370. package/bootstrap-icons/chat-text-fill.js +0 -12
  1371. package/bootstrap-icons/chat-text.d.ts +0 -5
  1372. package/bootstrap-icons/chat-text.js +0 -12
  1373. package/bootstrap-icons/chat.d.ts +0 -5
  1374. package/bootstrap-icons/chat.js +0 -12
  1375. package/bootstrap-icons/check-all.d.ts +0 -5
  1376. package/bootstrap-icons/check-all.js +0 -12
  1377. package/bootstrap-icons/check-circle-fill.d.ts +0 -5
  1378. package/bootstrap-icons/check-circle-fill.js +0 -12
  1379. package/bootstrap-icons/check-circle.d.ts +0 -5
  1380. package/bootstrap-icons/check-circle.js +0 -12
  1381. package/bootstrap-icons/check-lg.d.ts +0 -5
  1382. package/bootstrap-icons/check-lg.js +0 -12
  1383. package/bootstrap-icons/check-square-fill.d.ts +0 -5
  1384. package/bootstrap-icons/check-square-fill.js +0 -12
  1385. package/bootstrap-icons/check-square.d.ts +0 -5
  1386. package/bootstrap-icons/check-square.js +0 -12
  1387. package/bootstrap-icons/check.d.ts +0 -5
  1388. package/bootstrap-icons/check.js +0 -12
  1389. package/bootstrap-icons/check2-all.d.ts +0 -5
  1390. package/bootstrap-icons/check2-all.js +0 -12
  1391. package/bootstrap-icons/check2-circle.d.ts +0 -5
  1392. package/bootstrap-icons/check2-circle.js +0 -12
  1393. package/bootstrap-icons/check2-square.d.ts +0 -5
  1394. package/bootstrap-icons/check2-square.js +0 -12
  1395. package/bootstrap-icons/check2.d.ts +0 -5
  1396. package/bootstrap-icons/check2.js +0 -12
  1397. package/bootstrap-icons/chevron-bar-contract.d.ts +0 -5
  1398. package/bootstrap-icons/chevron-bar-contract.js +0 -12
  1399. package/bootstrap-icons/chevron-bar-down.d.ts +0 -5
  1400. package/bootstrap-icons/chevron-bar-down.js +0 -12
  1401. package/bootstrap-icons/chevron-bar-expand.d.ts +0 -5
  1402. package/bootstrap-icons/chevron-bar-expand.js +0 -12
  1403. package/bootstrap-icons/chevron-bar-left.d.ts +0 -5
  1404. package/bootstrap-icons/chevron-bar-left.js +0 -12
  1405. package/bootstrap-icons/chevron-bar-right.d.ts +0 -5
  1406. package/bootstrap-icons/chevron-bar-right.js +0 -12
  1407. package/bootstrap-icons/chevron-bar-up.d.ts +0 -5
  1408. package/bootstrap-icons/chevron-bar-up.js +0 -12
  1409. package/bootstrap-icons/chevron-compact-down.d.ts +0 -5
  1410. package/bootstrap-icons/chevron-compact-down.js +0 -12
  1411. package/bootstrap-icons/chevron-compact-left.d.ts +0 -5
  1412. package/bootstrap-icons/chevron-compact-left.js +0 -12
  1413. package/bootstrap-icons/chevron-compact-right.d.ts +0 -5
  1414. package/bootstrap-icons/chevron-compact-right.js +0 -12
  1415. package/bootstrap-icons/chevron-compact-up.d.ts +0 -5
  1416. package/bootstrap-icons/chevron-compact-up.js +0 -12
  1417. package/bootstrap-icons/chevron-contract.d.ts +0 -5
  1418. package/bootstrap-icons/chevron-contract.js +0 -12
  1419. package/bootstrap-icons/chevron-double-down.d.ts +0 -5
  1420. package/bootstrap-icons/chevron-double-down.js +0 -12
  1421. package/bootstrap-icons/chevron-double-left.d.ts +0 -5
  1422. package/bootstrap-icons/chevron-double-left.js +0 -12
  1423. package/bootstrap-icons/chevron-double-right.d.ts +0 -5
  1424. package/bootstrap-icons/chevron-double-right.js +0 -12
  1425. package/bootstrap-icons/chevron-double-up.d.ts +0 -5
  1426. package/bootstrap-icons/chevron-double-up.js +0 -12
  1427. package/bootstrap-icons/chevron-down.d.ts +0 -5
  1428. package/bootstrap-icons/chevron-down.js +0 -12
  1429. package/bootstrap-icons/chevron-expand.d.ts +0 -5
  1430. package/bootstrap-icons/chevron-expand.js +0 -12
  1431. package/bootstrap-icons/chevron-left.d.ts +0 -5
  1432. package/bootstrap-icons/chevron-left.js +0 -12
  1433. package/bootstrap-icons/chevron-right.d.ts +0 -5
  1434. package/bootstrap-icons/chevron-right.js +0 -12
  1435. package/bootstrap-icons/chevron-up.d.ts +0 -5
  1436. package/bootstrap-icons/chevron-up.js +0 -12
  1437. package/bootstrap-icons/circle-fill.d.ts +0 -5
  1438. package/bootstrap-icons/circle-fill.js +0 -12
  1439. package/bootstrap-icons/circle-half.d.ts +0 -5
  1440. package/bootstrap-icons/circle-half.js +0 -12
  1441. package/bootstrap-icons/circle-square.d.ts +0 -5
  1442. package/bootstrap-icons/circle-square.js +0 -12
  1443. package/bootstrap-icons/circle.d.ts +0 -5
  1444. package/bootstrap-icons/circle.js +0 -12
  1445. package/bootstrap-icons/clipboard-check-fill.d.ts +0 -5
  1446. package/bootstrap-icons/clipboard-check-fill.js +0 -12
  1447. package/bootstrap-icons/clipboard-check.d.ts +0 -5
  1448. package/bootstrap-icons/clipboard-check.js +0 -12
  1449. package/bootstrap-icons/clipboard-data-fill.d.ts +0 -5
  1450. package/bootstrap-icons/clipboard-data-fill.js +0 -12
  1451. package/bootstrap-icons/clipboard-data.d.ts +0 -5
  1452. package/bootstrap-icons/clipboard-data.js +0 -12
  1453. package/bootstrap-icons/clipboard-fill.d.ts +0 -5
  1454. package/bootstrap-icons/clipboard-fill.js +0 -12
  1455. package/bootstrap-icons/clipboard-heart-fill.d.ts +0 -5
  1456. package/bootstrap-icons/clipboard-heart-fill.js +0 -12
  1457. package/bootstrap-icons/clipboard-heart.d.ts +0 -5
  1458. package/bootstrap-icons/clipboard-heart.js +0 -12
  1459. package/bootstrap-icons/clipboard-minus-fill.d.ts +0 -5
  1460. package/bootstrap-icons/clipboard-minus-fill.js +0 -12
  1461. package/bootstrap-icons/clipboard-minus.d.ts +0 -5
  1462. package/bootstrap-icons/clipboard-minus.js +0 -12
  1463. package/bootstrap-icons/clipboard-plus-fill.d.ts +0 -5
  1464. package/bootstrap-icons/clipboard-plus-fill.js +0 -12
  1465. package/bootstrap-icons/clipboard-plus.d.ts +0 -5
  1466. package/bootstrap-icons/clipboard-plus.js +0 -12
  1467. package/bootstrap-icons/clipboard-pulse.d.ts +0 -5
  1468. package/bootstrap-icons/clipboard-pulse.js +0 -12
  1469. package/bootstrap-icons/clipboard-x-fill.d.ts +0 -5
  1470. package/bootstrap-icons/clipboard-x-fill.js +0 -12
  1471. package/bootstrap-icons/clipboard-x.d.ts +0 -5
  1472. package/bootstrap-icons/clipboard-x.js +0 -12
  1473. package/bootstrap-icons/clipboard.d.ts +0 -5
  1474. package/bootstrap-icons/clipboard.js +0 -12
  1475. package/bootstrap-icons/clipboard2-check-fill.d.ts +0 -5
  1476. package/bootstrap-icons/clipboard2-check-fill.js +0 -12
  1477. package/bootstrap-icons/clipboard2-check.d.ts +0 -5
  1478. package/bootstrap-icons/clipboard2-check.js +0 -12
  1479. package/bootstrap-icons/clipboard2-data-fill.d.ts +0 -5
  1480. package/bootstrap-icons/clipboard2-data-fill.js +0 -12
  1481. package/bootstrap-icons/clipboard2-data.d.ts +0 -5
  1482. package/bootstrap-icons/clipboard2-data.js +0 -12
  1483. package/bootstrap-icons/clipboard2-fill.d.ts +0 -5
  1484. package/bootstrap-icons/clipboard2-fill.js +0 -12
  1485. package/bootstrap-icons/clipboard2-heart-fill.d.ts +0 -5
  1486. package/bootstrap-icons/clipboard2-heart-fill.js +0 -12
  1487. package/bootstrap-icons/clipboard2-heart.d.ts +0 -5
  1488. package/bootstrap-icons/clipboard2-heart.js +0 -12
  1489. package/bootstrap-icons/clipboard2-minus-fill.d.ts +0 -5
  1490. package/bootstrap-icons/clipboard2-minus-fill.js +0 -12
  1491. package/bootstrap-icons/clipboard2-minus.d.ts +0 -5
  1492. package/bootstrap-icons/clipboard2-minus.js +0 -12
  1493. package/bootstrap-icons/clipboard2-plus-fill.d.ts +0 -5
  1494. package/bootstrap-icons/clipboard2-plus-fill.js +0 -12
  1495. package/bootstrap-icons/clipboard2-plus.d.ts +0 -5
  1496. package/bootstrap-icons/clipboard2-plus.js +0 -12
  1497. package/bootstrap-icons/clipboard2-pulse-fill.d.ts +0 -5
  1498. package/bootstrap-icons/clipboard2-pulse-fill.js +0 -12
  1499. package/bootstrap-icons/clipboard2-pulse.d.ts +0 -5
  1500. package/bootstrap-icons/clipboard2-pulse.js +0 -12
  1501. package/bootstrap-icons/clipboard2-x-fill.d.ts +0 -5
  1502. package/bootstrap-icons/clipboard2-x-fill.js +0 -12
  1503. package/bootstrap-icons/clipboard2-x.d.ts +0 -5
  1504. package/bootstrap-icons/clipboard2-x.js +0 -12
  1505. package/bootstrap-icons/clipboard2.d.ts +0 -5
  1506. package/bootstrap-icons/clipboard2.js +0 -12
  1507. package/bootstrap-icons/clock-fill.d.ts +0 -5
  1508. package/bootstrap-icons/clock-fill.js +0 -12
  1509. package/bootstrap-icons/clock-history.d.ts +0 -5
  1510. package/bootstrap-icons/clock-history.js +0 -12
  1511. package/bootstrap-icons/clock.d.ts +0 -5
  1512. package/bootstrap-icons/clock.js +0 -12
  1513. package/bootstrap-icons/cloud-arrow-down-fill.d.ts +0 -5
  1514. package/bootstrap-icons/cloud-arrow-down-fill.js +0 -12
  1515. package/bootstrap-icons/cloud-arrow-down.d.ts +0 -5
  1516. package/bootstrap-icons/cloud-arrow-down.js +0 -12
  1517. package/bootstrap-icons/cloud-arrow-up-fill.d.ts +0 -5
  1518. package/bootstrap-icons/cloud-arrow-up-fill.js +0 -12
  1519. package/bootstrap-icons/cloud-arrow-up.d.ts +0 -5
  1520. package/bootstrap-icons/cloud-arrow-up.js +0 -12
  1521. package/bootstrap-icons/cloud-check-fill.d.ts +0 -5
  1522. package/bootstrap-icons/cloud-check-fill.js +0 -12
  1523. package/bootstrap-icons/cloud-check.d.ts +0 -5
  1524. package/bootstrap-icons/cloud-check.js +0 -12
  1525. package/bootstrap-icons/cloud-download-fill.d.ts +0 -5
  1526. package/bootstrap-icons/cloud-download-fill.js +0 -12
  1527. package/bootstrap-icons/cloud-download.d.ts +0 -5
  1528. package/bootstrap-icons/cloud-download.js +0 -12
  1529. package/bootstrap-icons/cloud-drizzle-fill.d.ts +0 -5
  1530. package/bootstrap-icons/cloud-drizzle-fill.js +0 -12
  1531. package/bootstrap-icons/cloud-drizzle.d.ts +0 -5
  1532. package/bootstrap-icons/cloud-drizzle.js +0 -12
  1533. package/bootstrap-icons/cloud-fill.d.ts +0 -5
  1534. package/bootstrap-icons/cloud-fill.js +0 -12
  1535. package/bootstrap-icons/cloud-fog-fill.d.ts +0 -5
  1536. package/bootstrap-icons/cloud-fog-fill.js +0 -12
  1537. package/bootstrap-icons/cloud-fog.d.ts +0 -5
  1538. package/bootstrap-icons/cloud-fog.js +0 -12
  1539. package/bootstrap-icons/cloud-fog2-fill.d.ts +0 -5
  1540. package/bootstrap-icons/cloud-fog2-fill.js +0 -12
  1541. package/bootstrap-icons/cloud-fog2.d.ts +0 -5
  1542. package/bootstrap-icons/cloud-fog2.js +0 -12
  1543. package/bootstrap-icons/cloud-hail-fill.d.ts +0 -5
  1544. package/bootstrap-icons/cloud-hail-fill.js +0 -12
  1545. package/bootstrap-icons/cloud-hail.d.ts +0 -5
  1546. package/bootstrap-icons/cloud-hail.js +0 -12
  1547. package/bootstrap-icons/cloud-haze-fill.d.ts +0 -5
  1548. package/bootstrap-icons/cloud-haze-fill.js +0 -12
  1549. package/bootstrap-icons/cloud-haze.d.ts +0 -5
  1550. package/bootstrap-icons/cloud-haze.js +0 -12
  1551. package/bootstrap-icons/cloud-haze2-fill.d.ts +0 -5
  1552. package/bootstrap-icons/cloud-haze2-fill.js +0 -12
  1553. package/bootstrap-icons/cloud-haze2.d.ts +0 -5
  1554. package/bootstrap-icons/cloud-haze2.js +0 -12
  1555. package/bootstrap-icons/cloud-lightning-fill.d.ts +0 -5
  1556. package/bootstrap-icons/cloud-lightning-fill.js +0 -12
  1557. package/bootstrap-icons/cloud-lightning-rain-fill.d.ts +0 -5
  1558. package/bootstrap-icons/cloud-lightning-rain-fill.js +0 -12
  1559. package/bootstrap-icons/cloud-lightning-rain.d.ts +0 -5
  1560. package/bootstrap-icons/cloud-lightning-rain.js +0 -12
  1561. package/bootstrap-icons/cloud-lightning.d.ts +0 -5
  1562. package/bootstrap-icons/cloud-lightning.js +0 -12
  1563. package/bootstrap-icons/cloud-minus-fill.d.ts +0 -5
  1564. package/bootstrap-icons/cloud-minus-fill.js +0 -12
  1565. package/bootstrap-icons/cloud-minus.d.ts +0 -5
  1566. package/bootstrap-icons/cloud-minus.js +0 -12
  1567. package/bootstrap-icons/cloud-moon-fill.d.ts +0 -5
  1568. package/bootstrap-icons/cloud-moon-fill.js +0 -12
  1569. package/bootstrap-icons/cloud-moon.d.ts +0 -5
  1570. package/bootstrap-icons/cloud-moon.js +0 -12
  1571. package/bootstrap-icons/cloud-plus-fill.d.ts +0 -5
  1572. package/bootstrap-icons/cloud-plus-fill.js +0 -12
  1573. package/bootstrap-icons/cloud-plus.d.ts +0 -5
  1574. package/bootstrap-icons/cloud-plus.js +0 -12
  1575. package/bootstrap-icons/cloud-rain-fill.d.ts +0 -5
  1576. package/bootstrap-icons/cloud-rain-fill.js +0 -12
  1577. package/bootstrap-icons/cloud-rain-heavy-fill.d.ts +0 -5
  1578. package/bootstrap-icons/cloud-rain-heavy-fill.js +0 -12
  1579. package/bootstrap-icons/cloud-rain-heavy.d.ts +0 -5
  1580. package/bootstrap-icons/cloud-rain-heavy.js +0 -12
  1581. package/bootstrap-icons/cloud-rain.d.ts +0 -5
  1582. package/bootstrap-icons/cloud-rain.js +0 -12
  1583. package/bootstrap-icons/cloud-slash-fill.d.ts +0 -5
  1584. package/bootstrap-icons/cloud-slash-fill.js +0 -12
  1585. package/bootstrap-icons/cloud-slash.d.ts +0 -5
  1586. package/bootstrap-icons/cloud-slash.js +0 -12
  1587. package/bootstrap-icons/cloud-sleet-fill.d.ts +0 -5
  1588. package/bootstrap-icons/cloud-sleet-fill.js +0 -12
  1589. package/bootstrap-icons/cloud-sleet.d.ts +0 -5
  1590. package/bootstrap-icons/cloud-sleet.js +0 -12
  1591. package/bootstrap-icons/cloud-snow-fill.d.ts +0 -5
  1592. package/bootstrap-icons/cloud-snow-fill.js +0 -12
  1593. package/bootstrap-icons/cloud-snow.d.ts +0 -5
  1594. package/bootstrap-icons/cloud-snow.js +0 -12
  1595. package/bootstrap-icons/cloud-sun-fill.d.ts +0 -5
  1596. package/bootstrap-icons/cloud-sun-fill.js +0 -12
  1597. package/bootstrap-icons/cloud-sun.d.ts +0 -5
  1598. package/bootstrap-icons/cloud-sun.js +0 -12
  1599. package/bootstrap-icons/cloud-upload-fill.d.ts +0 -5
  1600. package/bootstrap-icons/cloud-upload-fill.js +0 -12
  1601. package/bootstrap-icons/cloud-upload.d.ts +0 -5
  1602. package/bootstrap-icons/cloud-upload.js +0 -12
  1603. package/bootstrap-icons/cloud.d.ts +0 -5
  1604. package/bootstrap-icons/cloud.js +0 -12
  1605. package/bootstrap-icons/clouds-fill.d.ts +0 -5
  1606. package/bootstrap-icons/clouds-fill.js +0 -12
  1607. package/bootstrap-icons/clouds.d.ts +0 -5
  1608. package/bootstrap-icons/clouds.js +0 -12
  1609. package/bootstrap-icons/cloudy-fill.d.ts +0 -5
  1610. package/bootstrap-icons/cloudy-fill.js +0 -12
  1611. package/bootstrap-icons/cloudy.d.ts +0 -5
  1612. package/bootstrap-icons/cloudy.js +0 -12
  1613. package/bootstrap-icons/code-slash.d.ts +0 -5
  1614. package/bootstrap-icons/code-slash.js +0 -12
  1615. package/bootstrap-icons/code-square.d.ts +0 -5
  1616. package/bootstrap-icons/code-square.js +0 -12
  1617. package/bootstrap-icons/code.d.ts +0 -5
  1618. package/bootstrap-icons/code.js +0 -12
  1619. package/bootstrap-icons/coin.d.ts +0 -5
  1620. package/bootstrap-icons/coin.js +0 -12
  1621. package/bootstrap-icons/collection-fill.d.ts +0 -5
  1622. package/bootstrap-icons/collection-fill.js +0 -12
  1623. package/bootstrap-icons/collection-play-fill.d.ts +0 -5
  1624. package/bootstrap-icons/collection-play-fill.js +0 -12
  1625. package/bootstrap-icons/collection-play.d.ts +0 -5
  1626. package/bootstrap-icons/collection-play.js +0 -12
  1627. package/bootstrap-icons/collection.d.ts +0 -5
  1628. package/bootstrap-icons/collection.js +0 -12
  1629. package/bootstrap-icons/columns-gap.d.ts +0 -5
  1630. package/bootstrap-icons/columns-gap.js +0 -12
  1631. package/bootstrap-icons/columns.d.ts +0 -5
  1632. package/bootstrap-icons/columns.js +0 -12
  1633. package/bootstrap-icons/command.d.ts +0 -5
  1634. package/bootstrap-icons/command.js +0 -12
  1635. package/bootstrap-icons/compass-fill.d.ts +0 -5
  1636. package/bootstrap-icons/compass-fill.js +0 -12
  1637. package/bootstrap-icons/compass.d.ts +0 -5
  1638. package/bootstrap-icons/compass.js +0 -12
  1639. package/bootstrap-icons/cone-striped.d.ts +0 -5
  1640. package/bootstrap-icons/cone-striped.js +0 -12
  1641. package/bootstrap-icons/cone.d.ts +0 -5
  1642. package/bootstrap-icons/cone.js +0 -12
  1643. package/bootstrap-icons/controller.d.ts +0 -5
  1644. package/bootstrap-icons/controller.js +0 -12
  1645. package/bootstrap-icons/cpu-fill.d.ts +0 -5
  1646. package/bootstrap-icons/cpu-fill.js +0 -12
  1647. package/bootstrap-icons/cpu.d.ts +0 -5
  1648. package/bootstrap-icons/cpu.js +0 -12
  1649. package/bootstrap-icons/credit-card-2-back-fill.d.ts +0 -5
  1650. package/bootstrap-icons/credit-card-2-back-fill.js +0 -12
  1651. package/bootstrap-icons/credit-card-2-back.d.ts +0 -5
  1652. package/bootstrap-icons/credit-card-2-back.js +0 -12
  1653. package/bootstrap-icons/credit-card-2-front-fill.d.ts +0 -5
  1654. package/bootstrap-icons/credit-card-2-front-fill.js +0 -12
  1655. package/bootstrap-icons/credit-card-2-front.d.ts +0 -5
  1656. package/bootstrap-icons/credit-card-2-front.js +0 -12
  1657. package/bootstrap-icons/credit-card-fill.d.ts +0 -5
  1658. package/bootstrap-icons/credit-card-fill.js +0 -12
  1659. package/bootstrap-icons/credit-card.d.ts +0 -5
  1660. package/bootstrap-icons/credit-card.js +0 -12
  1661. package/bootstrap-icons/crop.d.ts +0 -5
  1662. package/bootstrap-icons/crop.js +0 -12
  1663. package/bootstrap-icons/cup-fill.d.ts +0 -5
  1664. package/bootstrap-icons/cup-fill.js +0 -12
  1665. package/bootstrap-icons/cup-straw.d.ts +0 -5
  1666. package/bootstrap-icons/cup-straw.js +0 -12
  1667. package/bootstrap-icons/cup.d.ts +0 -5
  1668. package/bootstrap-icons/cup.js +0 -12
  1669. package/bootstrap-icons/currency-bitcoin.d.ts +0 -5
  1670. package/bootstrap-icons/currency-bitcoin.js +0 -12
  1671. package/bootstrap-icons/currency-dollar.d.ts +0 -5
  1672. package/bootstrap-icons/currency-dollar.js +0 -12
  1673. package/bootstrap-icons/currency-euro.d.ts +0 -5
  1674. package/bootstrap-icons/currency-euro.js +0 -12
  1675. package/bootstrap-icons/currency-exchange.d.ts +0 -5
  1676. package/bootstrap-icons/currency-exchange.js +0 -12
  1677. package/bootstrap-icons/currency-pound.d.ts +0 -5
  1678. package/bootstrap-icons/currency-pound.js +0 -12
  1679. package/bootstrap-icons/currency-yen.d.ts +0 -5
  1680. package/bootstrap-icons/currency-yen.js +0 -12
  1681. package/bootstrap-icons/cursor-fill.d.ts +0 -5
  1682. package/bootstrap-icons/cursor-fill.js +0 -12
  1683. package/bootstrap-icons/cursor-text.d.ts +0 -5
  1684. package/bootstrap-icons/cursor-text.js +0 -12
  1685. package/bootstrap-icons/cursor.d.ts +0 -5
  1686. package/bootstrap-icons/cursor.js +0 -12
  1687. package/bootstrap-icons/dash-circle-dotted.d.ts +0 -5
  1688. package/bootstrap-icons/dash-circle-dotted.js +0 -12
  1689. package/bootstrap-icons/dash-circle-fill.d.ts +0 -5
  1690. package/bootstrap-icons/dash-circle-fill.js +0 -12
  1691. package/bootstrap-icons/dash-circle.d.ts +0 -5
  1692. package/bootstrap-icons/dash-circle.js +0 -12
  1693. package/bootstrap-icons/dash-lg.d.ts +0 -5
  1694. package/bootstrap-icons/dash-lg.js +0 -12
  1695. package/bootstrap-icons/dash-square-dotted.d.ts +0 -5
  1696. package/bootstrap-icons/dash-square-dotted.js +0 -12
  1697. package/bootstrap-icons/dash-square-fill.d.ts +0 -5
  1698. package/bootstrap-icons/dash-square-fill.js +0 -12
  1699. package/bootstrap-icons/dash-square.d.ts +0 -5
  1700. package/bootstrap-icons/dash-square.js +0 -12
  1701. package/bootstrap-icons/dash.d.ts +0 -5
  1702. package/bootstrap-icons/dash.js +0 -12
  1703. package/bootstrap-icons/device-hdd-fill.d.ts +0 -5
  1704. package/bootstrap-icons/device-hdd-fill.js +0 -12
  1705. package/bootstrap-icons/device-hdd.d.ts +0 -5
  1706. package/bootstrap-icons/device-hdd.js +0 -12
  1707. package/bootstrap-icons/device-ssd-fill.d.ts +0 -5
  1708. package/bootstrap-icons/device-ssd-fill.js +0 -12
  1709. package/bootstrap-icons/device-ssd.d.ts +0 -5
  1710. package/bootstrap-icons/device-ssd.js +0 -12
  1711. package/bootstrap-icons/diagram-2-fill.d.ts +0 -5
  1712. package/bootstrap-icons/diagram-2-fill.js +0 -12
  1713. package/bootstrap-icons/diagram-2.d.ts +0 -5
  1714. package/bootstrap-icons/diagram-2.js +0 -12
  1715. package/bootstrap-icons/diagram-3-fill.d.ts +0 -5
  1716. package/bootstrap-icons/diagram-3-fill.js +0 -12
  1717. package/bootstrap-icons/diagram-3.d.ts +0 -5
  1718. package/bootstrap-icons/diagram-3.js +0 -12
  1719. package/bootstrap-icons/diamond-fill.d.ts +0 -5
  1720. package/bootstrap-icons/diamond-fill.js +0 -12
  1721. package/bootstrap-icons/diamond-half.d.ts +0 -5
  1722. package/bootstrap-icons/diamond-half.js +0 -12
  1723. package/bootstrap-icons/diamond.d.ts +0 -5
  1724. package/bootstrap-icons/diamond.js +0 -12
  1725. package/bootstrap-icons/dice-1-fill.d.ts +0 -5
  1726. package/bootstrap-icons/dice-1-fill.js +0 -12
  1727. package/bootstrap-icons/dice-1.d.ts +0 -5
  1728. package/bootstrap-icons/dice-1.js +0 -12
  1729. package/bootstrap-icons/dice-2-fill.d.ts +0 -5
  1730. package/bootstrap-icons/dice-2-fill.js +0 -12
  1731. package/bootstrap-icons/dice-2.d.ts +0 -5
  1732. package/bootstrap-icons/dice-2.js +0 -12
  1733. package/bootstrap-icons/dice-3-fill.d.ts +0 -5
  1734. package/bootstrap-icons/dice-3-fill.js +0 -12
  1735. package/bootstrap-icons/dice-3.d.ts +0 -5
  1736. package/bootstrap-icons/dice-3.js +0 -12
  1737. package/bootstrap-icons/dice-4-fill.d.ts +0 -5
  1738. package/bootstrap-icons/dice-4-fill.js +0 -12
  1739. package/bootstrap-icons/dice-4.d.ts +0 -5
  1740. package/bootstrap-icons/dice-4.js +0 -12
  1741. package/bootstrap-icons/dice-5-fill.d.ts +0 -5
  1742. package/bootstrap-icons/dice-5-fill.js +0 -12
  1743. package/bootstrap-icons/dice-5.d.ts +0 -5
  1744. package/bootstrap-icons/dice-5.js +0 -12
  1745. package/bootstrap-icons/dice-6-fill.d.ts +0 -5
  1746. package/bootstrap-icons/dice-6-fill.js +0 -12
  1747. package/bootstrap-icons/dice-6.d.ts +0 -5
  1748. package/bootstrap-icons/dice-6.js +0 -12
  1749. package/bootstrap-icons/disc-fill.d.ts +0 -5
  1750. package/bootstrap-icons/disc-fill.js +0 -12
  1751. package/bootstrap-icons/disc.d.ts +0 -5
  1752. package/bootstrap-icons/disc.js +0 -12
  1753. package/bootstrap-icons/discord.d.ts +0 -5
  1754. package/bootstrap-icons/discord.js +0 -12
  1755. package/bootstrap-icons/display-fill.d.ts +0 -5
  1756. package/bootstrap-icons/display-fill.js +0 -12
  1757. package/bootstrap-icons/display.d.ts +0 -5
  1758. package/bootstrap-icons/display.js +0 -12
  1759. package/bootstrap-icons/displayport-fill.d.ts +0 -5
  1760. package/bootstrap-icons/displayport-fill.js +0 -12
  1761. package/bootstrap-icons/displayport.d.ts +0 -5
  1762. package/bootstrap-icons/displayport.js +0 -12
  1763. package/bootstrap-icons/distribute-horizontal.d.ts +0 -5
  1764. package/bootstrap-icons/distribute-horizontal.js +0 -12
  1765. package/bootstrap-icons/distribute-vertical.d.ts +0 -5
  1766. package/bootstrap-icons/distribute-vertical.js +0 -12
  1767. package/bootstrap-icons/door-closed-fill.d.ts +0 -5
  1768. package/bootstrap-icons/door-closed-fill.js +0 -12
  1769. package/bootstrap-icons/door-closed.d.ts +0 -5
  1770. package/bootstrap-icons/door-closed.js +0 -12
  1771. package/bootstrap-icons/door-open-fill.d.ts +0 -5
  1772. package/bootstrap-icons/door-open-fill.js +0 -12
  1773. package/bootstrap-icons/door-open.d.ts +0 -5
  1774. package/bootstrap-icons/door-open.js +0 -12
  1775. package/bootstrap-icons/dot.d.ts +0 -5
  1776. package/bootstrap-icons/dot.js +0 -12
  1777. package/bootstrap-icons/download.d.ts +0 -5
  1778. package/bootstrap-icons/download.js +0 -12
  1779. package/bootstrap-icons/dpad-fill.d.ts +0 -5
  1780. package/bootstrap-icons/dpad-fill.js +0 -12
  1781. package/bootstrap-icons/dpad.d.ts +0 -5
  1782. package/bootstrap-icons/dpad.js +0 -12
  1783. package/bootstrap-icons/dribbble.d.ts +0 -5
  1784. package/bootstrap-icons/dribbble.js +0 -12
  1785. package/bootstrap-icons/droplet-fill.d.ts +0 -5
  1786. package/bootstrap-icons/droplet-fill.js +0 -12
  1787. package/bootstrap-icons/droplet-half.d.ts +0 -5
  1788. package/bootstrap-icons/droplet-half.js +0 -12
  1789. package/bootstrap-icons/droplet.d.ts +0 -5
  1790. package/bootstrap-icons/droplet.js +0 -12
  1791. package/bootstrap-icons/ear-fill.d.ts +0 -5
  1792. package/bootstrap-icons/ear-fill.js +0 -12
  1793. package/bootstrap-icons/ear.d.ts +0 -5
  1794. package/bootstrap-icons/ear.js +0 -12
  1795. package/bootstrap-icons/earbuds.d.ts +0 -5
  1796. package/bootstrap-icons/earbuds.js +0 -12
  1797. package/bootstrap-icons/easel-fill.d.ts +0 -5
  1798. package/bootstrap-icons/easel-fill.js +0 -12
  1799. package/bootstrap-icons/easel.d.ts +0 -5
  1800. package/bootstrap-icons/easel.js +0 -12
  1801. package/bootstrap-icons/easel2-fill.d.ts +0 -5
  1802. package/bootstrap-icons/easel2-fill.js +0 -12
  1803. package/bootstrap-icons/easel2.d.ts +0 -5
  1804. package/bootstrap-icons/easel2.js +0 -12
  1805. package/bootstrap-icons/easel3-fill.d.ts +0 -5
  1806. package/bootstrap-icons/easel3-fill.js +0 -12
  1807. package/bootstrap-icons/easel3.d.ts +0 -5
  1808. package/bootstrap-icons/easel3.js +0 -12
  1809. package/bootstrap-icons/egg-fill.d.ts +0 -5
  1810. package/bootstrap-icons/egg-fill.js +0 -12
  1811. package/bootstrap-icons/egg-fried.d.ts +0 -5
  1812. package/bootstrap-icons/egg-fried.js +0 -12
  1813. package/bootstrap-icons/egg.d.ts +0 -5
  1814. package/bootstrap-icons/egg.js +0 -12
  1815. package/bootstrap-icons/eject-fill.d.ts +0 -5
  1816. package/bootstrap-icons/eject-fill.js +0 -12
  1817. package/bootstrap-icons/eject.d.ts +0 -5
  1818. package/bootstrap-icons/eject.js +0 -12
  1819. package/bootstrap-icons/emoji-angry-fill.d.ts +0 -5
  1820. package/bootstrap-icons/emoji-angry-fill.js +0 -12
  1821. package/bootstrap-icons/emoji-angry.d.ts +0 -5
  1822. package/bootstrap-icons/emoji-angry.js +0 -12
  1823. package/bootstrap-icons/emoji-dizzy-fill.d.ts +0 -5
  1824. package/bootstrap-icons/emoji-dizzy-fill.js +0 -12
  1825. package/bootstrap-icons/emoji-dizzy.d.ts +0 -5
  1826. package/bootstrap-icons/emoji-dizzy.js +0 -12
  1827. package/bootstrap-icons/emoji-expressionless-fill.d.ts +0 -5
  1828. package/bootstrap-icons/emoji-expressionless-fill.js +0 -12
  1829. package/bootstrap-icons/emoji-expressionless.d.ts +0 -5
  1830. package/bootstrap-icons/emoji-expressionless.js +0 -12
  1831. package/bootstrap-icons/emoji-frown-fill.d.ts +0 -5
  1832. package/bootstrap-icons/emoji-frown-fill.js +0 -12
  1833. package/bootstrap-icons/emoji-frown.d.ts +0 -5
  1834. package/bootstrap-icons/emoji-frown.js +0 -12
  1835. package/bootstrap-icons/emoji-heart-eyes-fill.d.ts +0 -5
  1836. package/bootstrap-icons/emoji-heart-eyes-fill.js +0 -12
  1837. package/bootstrap-icons/emoji-heart-eyes.d.ts +0 -5
  1838. package/bootstrap-icons/emoji-heart-eyes.js +0 -12
  1839. package/bootstrap-icons/emoji-kiss-fill.d.ts +0 -5
  1840. package/bootstrap-icons/emoji-kiss-fill.js +0 -12
  1841. package/bootstrap-icons/emoji-kiss.d.ts +0 -5
  1842. package/bootstrap-icons/emoji-kiss.js +0 -12
  1843. package/bootstrap-icons/emoji-laughing-fill.d.ts +0 -5
  1844. package/bootstrap-icons/emoji-laughing-fill.js +0 -12
  1845. package/bootstrap-icons/emoji-laughing.d.ts +0 -5
  1846. package/bootstrap-icons/emoji-laughing.js +0 -12
  1847. package/bootstrap-icons/emoji-neutral-fill.d.ts +0 -5
  1848. package/bootstrap-icons/emoji-neutral-fill.js +0 -12
  1849. package/bootstrap-icons/emoji-neutral.d.ts +0 -5
  1850. package/bootstrap-icons/emoji-neutral.js +0 -12
  1851. package/bootstrap-icons/emoji-smile-fill.d.ts +0 -5
  1852. package/bootstrap-icons/emoji-smile-fill.js +0 -12
  1853. package/bootstrap-icons/emoji-smile-upside-down-fill.d.ts +0 -5
  1854. package/bootstrap-icons/emoji-smile-upside-down-fill.js +0 -12
  1855. package/bootstrap-icons/emoji-smile-upside-down.d.ts +0 -5
  1856. package/bootstrap-icons/emoji-smile-upside-down.js +0 -12
  1857. package/bootstrap-icons/emoji-smile.d.ts +0 -5
  1858. package/bootstrap-icons/emoji-smile.js +0 -12
  1859. package/bootstrap-icons/emoji-sunglasses-fill.d.ts +0 -5
  1860. package/bootstrap-icons/emoji-sunglasses-fill.js +0 -12
  1861. package/bootstrap-icons/emoji-sunglasses.d.ts +0 -5
  1862. package/bootstrap-icons/emoji-sunglasses.js +0 -12
  1863. package/bootstrap-icons/emoji-wink-fill.d.ts +0 -5
  1864. package/bootstrap-icons/emoji-wink-fill.js +0 -12
  1865. package/bootstrap-icons/emoji-wink.d.ts +0 -5
  1866. package/bootstrap-icons/emoji-wink.js +0 -12
  1867. package/bootstrap-icons/envelope-check-fill.d.ts +0 -5
  1868. package/bootstrap-icons/envelope-check-fill.js +0 -12
  1869. package/bootstrap-icons/envelope-check.d.ts +0 -5
  1870. package/bootstrap-icons/envelope-check.js +0 -12
  1871. package/bootstrap-icons/envelope-dash-fill.d.ts +0 -5
  1872. package/bootstrap-icons/envelope-dash-fill.js +0 -12
  1873. package/bootstrap-icons/envelope-dash.d.ts +0 -5
  1874. package/bootstrap-icons/envelope-dash.js +0 -12
  1875. package/bootstrap-icons/envelope-exclamation-fill.d.ts +0 -5
  1876. package/bootstrap-icons/envelope-exclamation-fill.js +0 -12
  1877. package/bootstrap-icons/envelope-exclamation.d.ts +0 -5
  1878. package/bootstrap-icons/envelope-exclamation.js +0 -12
  1879. package/bootstrap-icons/envelope-fill.d.ts +0 -5
  1880. package/bootstrap-icons/envelope-fill.js +0 -12
  1881. package/bootstrap-icons/envelope-heart-fill.d.ts +0 -5
  1882. package/bootstrap-icons/envelope-heart-fill.js +0 -12
  1883. package/bootstrap-icons/envelope-heart.d.ts +0 -5
  1884. package/bootstrap-icons/envelope-heart.js +0 -12
  1885. package/bootstrap-icons/envelope-open-fill.d.ts +0 -5
  1886. package/bootstrap-icons/envelope-open-fill.js +0 -12
  1887. package/bootstrap-icons/envelope-open-heart-fill.d.ts +0 -5
  1888. package/bootstrap-icons/envelope-open-heart-fill.js +0 -12
  1889. package/bootstrap-icons/envelope-open-heart.d.ts +0 -5
  1890. package/bootstrap-icons/envelope-open-heart.js +0 -12
  1891. package/bootstrap-icons/envelope-open.d.ts +0 -5
  1892. package/bootstrap-icons/envelope-open.js +0 -12
  1893. package/bootstrap-icons/envelope-paper-fill.d.ts +0 -5
  1894. package/bootstrap-icons/envelope-paper-fill.js +0 -12
  1895. package/bootstrap-icons/envelope-paper-heart-fill.d.ts +0 -5
  1896. package/bootstrap-icons/envelope-paper-heart-fill.js +0 -12
  1897. package/bootstrap-icons/envelope-paper-heart.d.ts +0 -5
  1898. package/bootstrap-icons/envelope-paper-heart.js +0 -12
  1899. package/bootstrap-icons/envelope-paper.d.ts +0 -5
  1900. package/bootstrap-icons/envelope-paper.js +0 -12
  1901. package/bootstrap-icons/envelope-plus-fill.d.ts +0 -5
  1902. package/bootstrap-icons/envelope-plus-fill.js +0 -12
  1903. package/bootstrap-icons/envelope-plus.d.ts +0 -5
  1904. package/bootstrap-icons/envelope-plus.js +0 -12
  1905. package/bootstrap-icons/envelope-slash-fill.d.ts +0 -5
  1906. package/bootstrap-icons/envelope-slash-fill.js +0 -12
  1907. package/bootstrap-icons/envelope-slash.d.ts +0 -5
  1908. package/bootstrap-icons/envelope-slash.js +0 -12
  1909. package/bootstrap-icons/envelope-x-fill.d.ts +0 -5
  1910. package/bootstrap-icons/envelope-x-fill.js +0 -12
  1911. package/bootstrap-icons/envelope-x.d.ts +0 -5
  1912. package/bootstrap-icons/envelope-x.js +0 -12
  1913. package/bootstrap-icons/envelope.d.ts +0 -5
  1914. package/bootstrap-icons/envelope.js +0 -12
  1915. package/bootstrap-icons/eraser-fill.d.ts +0 -5
  1916. package/bootstrap-icons/eraser-fill.js +0 -12
  1917. package/bootstrap-icons/eraser.d.ts +0 -5
  1918. package/bootstrap-icons/eraser.js +0 -12
  1919. package/bootstrap-icons/ethernet.d.ts +0 -5
  1920. package/bootstrap-icons/ethernet.js +0 -12
  1921. package/bootstrap-icons/exclamation-circle-fill.d.ts +0 -5
  1922. package/bootstrap-icons/exclamation-circle-fill.js +0 -12
  1923. package/bootstrap-icons/exclamation-circle.d.ts +0 -5
  1924. package/bootstrap-icons/exclamation-circle.js +0 -12
  1925. package/bootstrap-icons/exclamation-diamond-fill.d.ts +0 -5
  1926. package/bootstrap-icons/exclamation-diamond-fill.js +0 -12
  1927. package/bootstrap-icons/exclamation-diamond.d.ts +0 -5
  1928. package/bootstrap-icons/exclamation-diamond.js +0 -12
  1929. package/bootstrap-icons/exclamation-lg.d.ts +0 -5
  1930. package/bootstrap-icons/exclamation-lg.js +0 -12
  1931. package/bootstrap-icons/exclamation-octagon-fill.d.ts +0 -5
  1932. package/bootstrap-icons/exclamation-octagon-fill.js +0 -12
  1933. package/bootstrap-icons/exclamation-octagon.d.ts +0 -5
  1934. package/bootstrap-icons/exclamation-octagon.js +0 -12
  1935. package/bootstrap-icons/exclamation-square-fill.d.ts +0 -5
  1936. package/bootstrap-icons/exclamation-square-fill.js +0 -12
  1937. package/bootstrap-icons/exclamation-square.d.ts +0 -5
  1938. package/bootstrap-icons/exclamation-square.js +0 -12
  1939. package/bootstrap-icons/exclamation-triangle-fill.d.ts +0 -5
  1940. package/bootstrap-icons/exclamation-triangle-fill.js +0 -12
  1941. package/bootstrap-icons/exclamation-triangle.d.ts +0 -5
  1942. package/bootstrap-icons/exclamation-triangle.js +0 -12
  1943. package/bootstrap-icons/exclamation.d.ts +0 -5
  1944. package/bootstrap-icons/exclamation.js +0 -12
  1945. package/bootstrap-icons/exclude.d.ts +0 -5
  1946. package/bootstrap-icons/exclude.js +0 -12
  1947. package/bootstrap-icons/explicit-fill.d.ts +0 -5
  1948. package/bootstrap-icons/explicit-fill.js +0 -12
  1949. package/bootstrap-icons/explicit.d.ts +0 -5
  1950. package/bootstrap-icons/explicit.js +0 -12
  1951. package/bootstrap-icons/eye-fill.d.ts +0 -5
  1952. package/bootstrap-icons/eye-fill.js +0 -12
  1953. package/bootstrap-icons/eye-slash-fill.d.ts +0 -5
  1954. package/bootstrap-icons/eye-slash-fill.js +0 -12
  1955. package/bootstrap-icons/eye-slash.d.ts +0 -5
  1956. package/bootstrap-icons/eye-slash.js +0 -12
  1957. package/bootstrap-icons/eye.d.ts +0 -5
  1958. package/bootstrap-icons/eye.js +0 -12
  1959. package/bootstrap-icons/eyedropper.d.ts +0 -5
  1960. package/bootstrap-icons/eyedropper.js +0 -12
  1961. package/bootstrap-icons/eyeglasses.d.ts +0 -5
  1962. package/bootstrap-icons/eyeglasses.js +0 -12
  1963. package/bootstrap-icons/facebook.d.ts +0 -5
  1964. package/bootstrap-icons/facebook.js +0 -12
  1965. package/bootstrap-icons/fan.d.ts +0 -5
  1966. package/bootstrap-icons/fan.js +0 -12
  1967. package/bootstrap-icons/file-arrow-down-fill.d.ts +0 -5
  1968. package/bootstrap-icons/file-arrow-down-fill.js +0 -12
  1969. package/bootstrap-icons/file-arrow-down.d.ts +0 -5
  1970. package/bootstrap-icons/file-arrow-down.js +0 -12
  1971. package/bootstrap-icons/file-arrow-up-fill.d.ts +0 -5
  1972. package/bootstrap-icons/file-arrow-up-fill.js +0 -12
  1973. package/bootstrap-icons/file-arrow-up.d.ts +0 -5
  1974. package/bootstrap-icons/file-arrow-up.js +0 -12
  1975. package/bootstrap-icons/file-bar-graph-fill.d.ts +0 -5
  1976. package/bootstrap-icons/file-bar-graph-fill.js +0 -12
  1977. package/bootstrap-icons/file-bar-graph.d.ts +0 -5
  1978. package/bootstrap-icons/file-bar-graph.js +0 -12
  1979. package/bootstrap-icons/file-binary-fill.d.ts +0 -5
  1980. package/bootstrap-icons/file-binary-fill.js +0 -12
  1981. package/bootstrap-icons/file-binary.d.ts +0 -5
  1982. package/bootstrap-icons/file-binary.js +0 -12
  1983. package/bootstrap-icons/file-break-fill.d.ts +0 -5
  1984. package/bootstrap-icons/file-break-fill.js +0 -12
  1985. package/bootstrap-icons/file-break.d.ts +0 -5
  1986. package/bootstrap-icons/file-break.js +0 -12
  1987. package/bootstrap-icons/file-check-fill.d.ts +0 -5
  1988. package/bootstrap-icons/file-check-fill.js +0 -12
  1989. package/bootstrap-icons/file-check.d.ts +0 -5
  1990. package/bootstrap-icons/file-check.js +0 -12
  1991. package/bootstrap-icons/file-code-fill.d.ts +0 -5
  1992. package/bootstrap-icons/file-code-fill.js +0 -12
  1993. package/bootstrap-icons/file-code.d.ts +0 -5
  1994. package/bootstrap-icons/file-code.js +0 -12
  1995. package/bootstrap-icons/file-diff-fill.d.ts +0 -5
  1996. package/bootstrap-icons/file-diff-fill.js +0 -12
  1997. package/bootstrap-icons/file-diff.d.ts +0 -5
  1998. package/bootstrap-icons/file-diff.js +0 -12
  1999. package/bootstrap-icons/file-earmark-arrow-down-fill.d.ts +0 -5
  2000. package/bootstrap-icons/file-earmark-arrow-down-fill.js +0 -12
  2001. package/bootstrap-icons/file-earmark-arrow-down.d.ts +0 -5
  2002. package/bootstrap-icons/file-earmark-arrow-down.js +0 -12
  2003. package/bootstrap-icons/file-earmark-arrow-up-fill.d.ts +0 -5
  2004. package/bootstrap-icons/file-earmark-arrow-up-fill.js +0 -12
  2005. package/bootstrap-icons/file-earmark-arrow-up.d.ts +0 -5
  2006. package/bootstrap-icons/file-earmark-arrow-up.js +0 -12
  2007. package/bootstrap-icons/file-earmark-bar-graph-fill.d.ts +0 -5
  2008. package/bootstrap-icons/file-earmark-bar-graph-fill.js +0 -12
  2009. package/bootstrap-icons/file-earmark-bar-graph.d.ts +0 -5
  2010. package/bootstrap-icons/file-earmark-bar-graph.js +0 -12
  2011. package/bootstrap-icons/file-earmark-binary-fill.d.ts +0 -5
  2012. package/bootstrap-icons/file-earmark-binary-fill.js +0 -12
  2013. package/bootstrap-icons/file-earmark-binary.d.ts +0 -5
  2014. package/bootstrap-icons/file-earmark-binary.js +0 -12
  2015. package/bootstrap-icons/file-earmark-break-fill.d.ts +0 -5
  2016. package/bootstrap-icons/file-earmark-break-fill.js +0 -12
  2017. package/bootstrap-icons/file-earmark-break.d.ts +0 -5
  2018. package/bootstrap-icons/file-earmark-break.js +0 -12
  2019. package/bootstrap-icons/file-earmark-check-fill.d.ts +0 -5
  2020. package/bootstrap-icons/file-earmark-check-fill.js +0 -12
  2021. package/bootstrap-icons/file-earmark-check.d.ts +0 -5
  2022. package/bootstrap-icons/file-earmark-check.js +0 -12
  2023. package/bootstrap-icons/file-earmark-code-fill.d.ts +0 -5
  2024. package/bootstrap-icons/file-earmark-code-fill.js +0 -12
  2025. package/bootstrap-icons/file-earmark-code.d.ts +0 -5
  2026. package/bootstrap-icons/file-earmark-code.js +0 -12
  2027. package/bootstrap-icons/file-earmark-diff-fill.d.ts +0 -5
  2028. package/bootstrap-icons/file-earmark-diff-fill.js +0 -12
  2029. package/bootstrap-icons/file-earmark-diff.d.ts +0 -5
  2030. package/bootstrap-icons/file-earmark-diff.js +0 -12
  2031. package/bootstrap-icons/file-earmark-easel-fill.d.ts +0 -5
  2032. package/bootstrap-icons/file-earmark-easel-fill.js +0 -12
  2033. package/bootstrap-icons/file-earmark-easel.d.ts +0 -5
  2034. package/bootstrap-icons/file-earmark-easel.js +0 -12
  2035. package/bootstrap-icons/file-earmark-excel-fill.d.ts +0 -5
  2036. package/bootstrap-icons/file-earmark-excel-fill.js +0 -12
  2037. package/bootstrap-icons/file-earmark-excel.d.ts +0 -5
  2038. package/bootstrap-icons/file-earmark-excel.js +0 -12
  2039. package/bootstrap-icons/file-earmark-fill.d.ts +0 -5
  2040. package/bootstrap-icons/file-earmark-fill.js +0 -12
  2041. package/bootstrap-icons/file-earmark-font-fill.d.ts +0 -5
  2042. package/bootstrap-icons/file-earmark-font-fill.js +0 -12
  2043. package/bootstrap-icons/file-earmark-font.d.ts +0 -5
  2044. package/bootstrap-icons/file-earmark-font.js +0 -12
  2045. package/bootstrap-icons/file-earmark-image-fill.d.ts +0 -5
  2046. package/bootstrap-icons/file-earmark-image-fill.js +0 -12
  2047. package/bootstrap-icons/file-earmark-image.d.ts +0 -5
  2048. package/bootstrap-icons/file-earmark-image.js +0 -12
  2049. package/bootstrap-icons/file-earmark-lock-fill.d.ts +0 -5
  2050. package/bootstrap-icons/file-earmark-lock-fill.js +0 -12
  2051. package/bootstrap-icons/file-earmark-lock.d.ts +0 -5
  2052. package/bootstrap-icons/file-earmark-lock.js +0 -12
  2053. package/bootstrap-icons/file-earmark-lock2-fill.d.ts +0 -5
  2054. package/bootstrap-icons/file-earmark-lock2-fill.js +0 -12
  2055. package/bootstrap-icons/file-earmark-lock2.d.ts +0 -5
  2056. package/bootstrap-icons/file-earmark-lock2.js +0 -12
  2057. package/bootstrap-icons/file-earmark-medical-fill.d.ts +0 -5
  2058. package/bootstrap-icons/file-earmark-medical-fill.js +0 -12
  2059. package/bootstrap-icons/file-earmark-medical.d.ts +0 -5
  2060. package/bootstrap-icons/file-earmark-medical.js +0 -12
  2061. package/bootstrap-icons/file-earmark-minus-fill.d.ts +0 -5
  2062. package/bootstrap-icons/file-earmark-minus-fill.js +0 -12
  2063. package/bootstrap-icons/file-earmark-minus.d.ts +0 -5
  2064. package/bootstrap-icons/file-earmark-minus.js +0 -12
  2065. package/bootstrap-icons/file-earmark-music-fill.d.ts +0 -5
  2066. package/bootstrap-icons/file-earmark-music-fill.js +0 -12
  2067. package/bootstrap-icons/file-earmark-music.d.ts +0 -5
  2068. package/bootstrap-icons/file-earmark-music.js +0 -12
  2069. package/bootstrap-icons/file-earmark-pdf-fill.d.ts +0 -5
  2070. package/bootstrap-icons/file-earmark-pdf-fill.js +0 -12
  2071. package/bootstrap-icons/file-earmark-pdf.d.ts +0 -5
  2072. package/bootstrap-icons/file-earmark-pdf.js +0 -12
  2073. package/bootstrap-icons/file-earmark-person-fill.d.ts +0 -5
  2074. package/bootstrap-icons/file-earmark-person-fill.js +0 -12
  2075. package/bootstrap-icons/file-earmark-person.d.ts +0 -5
  2076. package/bootstrap-icons/file-earmark-person.js +0 -12
  2077. package/bootstrap-icons/file-earmark-play-fill.d.ts +0 -5
  2078. package/bootstrap-icons/file-earmark-play-fill.js +0 -12
  2079. package/bootstrap-icons/file-earmark-play.d.ts +0 -5
  2080. package/bootstrap-icons/file-earmark-play.js +0 -12
  2081. package/bootstrap-icons/file-earmark-plus-fill.d.ts +0 -5
  2082. package/bootstrap-icons/file-earmark-plus-fill.js +0 -12
  2083. package/bootstrap-icons/file-earmark-plus.d.ts +0 -5
  2084. package/bootstrap-icons/file-earmark-plus.js +0 -12
  2085. package/bootstrap-icons/file-earmark-post-fill.d.ts +0 -5
  2086. package/bootstrap-icons/file-earmark-post-fill.js +0 -12
  2087. package/bootstrap-icons/file-earmark-post.d.ts +0 -5
  2088. package/bootstrap-icons/file-earmark-post.js +0 -12
  2089. package/bootstrap-icons/file-earmark-ppt-fill.d.ts +0 -5
  2090. package/bootstrap-icons/file-earmark-ppt-fill.js +0 -12
  2091. package/bootstrap-icons/file-earmark-ppt.d.ts +0 -5
  2092. package/bootstrap-icons/file-earmark-ppt.js +0 -12
  2093. package/bootstrap-icons/file-earmark-richtext-fill.d.ts +0 -5
  2094. package/bootstrap-icons/file-earmark-richtext-fill.js +0 -12
  2095. package/bootstrap-icons/file-earmark-richtext.d.ts +0 -5
  2096. package/bootstrap-icons/file-earmark-richtext.js +0 -12
  2097. package/bootstrap-icons/file-earmark-ruled-fill.d.ts +0 -5
  2098. package/bootstrap-icons/file-earmark-ruled-fill.js +0 -12
  2099. package/bootstrap-icons/file-earmark-ruled.d.ts +0 -5
  2100. package/bootstrap-icons/file-earmark-ruled.js +0 -12
  2101. package/bootstrap-icons/file-earmark-slides-fill.d.ts +0 -5
  2102. package/bootstrap-icons/file-earmark-slides-fill.js +0 -12
  2103. package/bootstrap-icons/file-earmark-slides.d.ts +0 -5
  2104. package/bootstrap-icons/file-earmark-slides.js +0 -12
  2105. package/bootstrap-icons/file-earmark-spreadsheet-fill.d.ts +0 -5
  2106. package/bootstrap-icons/file-earmark-spreadsheet-fill.js +0 -12
  2107. package/bootstrap-icons/file-earmark-spreadsheet.d.ts +0 -5
  2108. package/bootstrap-icons/file-earmark-spreadsheet.js +0 -12
  2109. package/bootstrap-icons/file-earmark-text-fill.d.ts +0 -5
  2110. package/bootstrap-icons/file-earmark-text-fill.js +0 -12
  2111. package/bootstrap-icons/file-earmark-text.d.ts +0 -5
  2112. package/bootstrap-icons/file-earmark-text.js +0 -12
  2113. package/bootstrap-icons/file-earmark-word-fill.d.ts +0 -5
  2114. package/bootstrap-icons/file-earmark-word-fill.js +0 -12
  2115. package/bootstrap-icons/file-earmark-word.d.ts +0 -5
  2116. package/bootstrap-icons/file-earmark-word.js +0 -12
  2117. package/bootstrap-icons/file-earmark-x-fill.d.ts +0 -5
  2118. package/bootstrap-icons/file-earmark-x-fill.js +0 -12
  2119. package/bootstrap-icons/file-earmark-x.d.ts +0 -5
  2120. package/bootstrap-icons/file-earmark-x.js +0 -12
  2121. package/bootstrap-icons/file-earmark-zip-fill.d.ts +0 -5
  2122. package/bootstrap-icons/file-earmark-zip-fill.js +0 -12
  2123. package/bootstrap-icons/file-earmark-zip.d.ts +0 -5
  2124. package/bootstrap-icons/file-earmark-zip.js +0 -12
  2125. package/bootstrap-icons/file-earmark.d.ts +0 -5
  2126. package/bootstrap-icons/file-earmark.js +0 -12
  2127. package/bootstrap-icons/file-easel-fill.d.ts +0 -5
  2128. package/bootstrap-icons/file-easel-fill.js +0 -12
  2129. package/bootstrap-icons/file-easel.d.ts +0 -5
  2130. package/bootstrap-icons/file-easel.js +0 -12
  2131. package/bootstrap-icons/file-excel-fill.d.ts +0 -5
  2132. package/bootstrap-icons/file-excel-fill.js +0 -12
  2133. package/bootstrap-icons/file-excel.d.ts +0 -5
  2134. package/bootstrap-icons/file-excel.js +0 -12
  2135. package/bootstrap-icons/file-fill.d.ts +0 -5
  2136. package/bootstrap-icons/file-fill.js +0 -12
  2137. package/bootstrap-icons/file-font-fill.d.ts +0 -5
  2138. package/bootstrap-icons/file-font-fill.js +0 -12
  2139. package/bootstrap-icons/file-font.d.ts +0 -5
  2140. package/bootstrap-icons/file-font.js +0 -12
  2141. package/bootstrap-icons/file-image-fill.d.ts +0 -5
  2142. package/bootstrap-icons/file-image-fill.js +0 -12
  2143. package/bootstrap-icons/file-image.d.ts +0 -5
  2144. package/bootstrap-icons/file-image.js +0 -12
  2145. package/bootstrap-icons/file-lock-fill.d.ts +0 -5
  2146. package/bootstrap-icons/file-lock-fill.js +0 -12
  2147. package/bootstrap-icons/file-lock.d.ts +0 -5
  2148. package/bootstrap-icons/file-lock.js +0 -12
  2149. package/bootstrap-icons/file-lock2-fill.d.ts +0 -5
  2150. package/bootstrap-icons/file-lock2-fill.js +0 -12
  2151. package/bootstrap-icons/file-lock2.d.ts +0 -5
  2152. package/bootstrap-icons/file-lock2.js +0 -12
  2153. package/bootstrap-icons/file-medical-fill.d.ts +0 -5
  2154. package/bootstrap-icons/file-medical-fill.js +0 -12
  2155. package/bootstrap-icons/file-medical.d.ts +0 -5
  2156. package/bootstrap-icons/file-medical.js +0 -12
  2157. package/bootstrap-icons/file-minus-fill.d.ts +0 -5
  2158. package/bootstrap-icons/file-minus-fill.js +0 -12
  2159. package/bootstrap-icons/file-minus.d.ts +0 -5
  2160. package/bootstrap-icons/file-minus.js +0 -12
  2161. package/bootstrap-icons/file-music-fill.d.ts +0 -5
  2162. package/bootstrap-icons/file-music-fill.js +0 -12
  2163. package/bootstrap-icons/file-music.d.ts +0 -5
  2164. package/bootstrap-icons/file-music.js +0 -12
  2165. package/bootstrap-icons/file-pdf-fill.d.ts +0 -5
  2166. package/bootstrap-icons/file-pdf-fill.js +0 -12
  2167. package/bootstrap-icons/file-pdf.d.ts +0 -5
  2168. package/bootstrap-icons/file-pdf.js +0 -12
  2169. package/bootstrap-icons/file-person-fill.d.ts +0 -5
  2170. package/bootstrap-icons/file-person-fill.js +0 -12
  2171. package/bootstrap-icons/file-person.d.ts +0 -5
  2172. package/bootstrap-icons/file-person.js +0 -12
  2173. package/bootstrap-icons/file-play-fill.d.ts +0 -5
  2174. package/bootstrap-icons/file-play-fill.js +0 -12
  2175. package/bootstrap-icons/file-play.d.ts +0 -5
  2176. package/bootstrap-icons/file-play.js +0 -12
  2177. package/bootstrap-icons/file-plus-fill.d.ts +0 -5
  2178. package/bootstrap-icons/file-plus-fill.js +0 -12
  2179. package/bootstrap-icons/file-plus.d.ts +0 -5
  2180. package/bootstrap-icons/file-plus.js +0 -12
  2181. package/bootstrap-icons/file-post-fill.d.ts +0 -5
  2182. package/bootstrap-icons/file-post-fill.js +0 -12
  2183. package/bootstrap-icons/file-post.d.ts +0 -5
  2184. package/bootstrap-icons/file-post.js +0 -12
  2185. package/bootstrap-icons/file-ppt-fill.d.ts +0 -5
  2186. package/bootstrap-icons/file-ppt-fill.js +0 -12
  2187. package/bootstrap-icons/file-ppt.d.ts +0 -5
  2188. package/bootstrap-icons/file-ppt.js +0 -12
  2189. package/bootstrap-icons/file-richtext-fill.d.ts +0 -5
  2190. package/bootstrap-icons/file-richtext-fill.js +0 -12
  2191. package/bootstrap-icons/file-richtext.d.ts +0 -5
  2192. package/bootstrap-icons/file-richtext.js +0 -12
  2193. package/bootstrap-icons/file-ruled-fill.d.ts +0 -5
  2194. package/bootstrap-icons/file-ruled-fill.js +0 -12
  2195. package/bootstrap-icons/file-ruled.d.ts +0 -5
  2196. package/bootstrap-icons/file-ruled.js +0 -12
  2197. package/bootstrap-icons/file-slides-fill.d.ts +0 -5
  2198. package/bootstrap-icons/file-slides-fill.js +0 -12
  2199. package/bootstrap-icons/file-slides.d.ts +0 -5
  2200. package/bootstrap-icons/file-slides.js +0 -12
  2201. package/bootstrap-icons/file-spreadsheet-fill.d.ts +0 -5
  2202. package/bootstrap-icons/file-spreadsheet-fill.js +0 -12
  2203. package/bootstrap-icons/file-spreadsheet.d.ts +0 -5
  2204. package/bootstrap-icons/file-spreadsheet.js +0 -12
  2205. package/bootstrap-icons/file-text-fill.d.ts +0 -5
  2206. package/bootstrap-icons/file-text-fill.js +0 -12
  2207. package/bootstrap-icons/file-text.d.ts +0 -5
  2208. package/bootstrap-icons/file-text.js +0 -12
  2209. package/bootstrap-icons/file-word-fill.d.ts +0 -5
  2210. package/bootstrap-icons/file-word-fill.js +0 -12
  2211. package/bootstrap-icons/file-word.d.ts +0 -5
  2212. package/bootstrap-icons/file-word.js +0 -12
  2213. package/bootstrap-icons/file-x-fill.d.ts +0 -5
  2214. package/bootstrap-icons/file-x-fill.js +0 -12
  2215. package/bootstrap-icons/file-x.d.ts +0 -5
  2216. package/bootstrap-icons/file-x.js +0 -12
  2217. package/bootstrap-icons/file-zip-fill.d.ts +0 -5
  2218. package/bootstrap-icons/file-zip-fill.js +0 -12
  2219. package/bootstrap-icons/file-zip.d.ts +0 -5
  2220. package/bootstrap-icons/file-zip.js +0 -12
  2221. package/bootstrap-icons/file.d.ts +0 -5
  2222. package/bootstrap-icons/file.js +0 -12
  2223. package/bootstrap-icons/files-alt.d.ts +0 -5
  2224. package/bootstrap-icons/files-alt.js +0 -12
  2225. package/bootstrap-icons/files.d.ts +0 -5
  2226. package/bootstrap-icons/files.js +0 -12
  2227. package/bootstrap-icons/filetype-aac.d.ts +0 -5
  2228. package/bootstrap-icons/filetype-aac.js +0 -12
  2229. package/bootstrap-icons/filetype-ai.d.ts +0 -5
  2230. package/bootstrap-icons/filetype-ai.js +0 -12
  2231. package/bootstrap-icons/filetype-bmp.d.ts +0 -5
  2232. package/bootstrap-icons/filetype-bmp.js +0 -12
  2233. package/bootstrap-icons/filetype-cs.d.ts +0 -5
  2234. package/bootstrap-icons/filetype-cs.js +0 -12
  2235. package/bootstrap-icons/filetype-css.d.ts +0 -5
  2236. package/bootstrap-icons/filetype-css.js +0 -12
  2237. package/bootstrap-icons/filetype-csv.d.ts +0 -5
  2238. package/bootstrap-icons/filetype-csv.js +0 -12
  2239. package/bootstrap-icons/filetype-doc.d.ts +0 -5
  2240. package/bootstrap-icons/filetype-doc.js +0 -12
  2241. package/bootstrap-icons/filetype-docx.d.ts +0 -5
  2242. package/bootstrap-icons/filetype-docx.js +0 -12
  2243. package/bootstrap-icons/filetype-exe.d.ts +0 -5
  2244. package/bootstrap-icons/filetype-exe.js +0 -12
  2245. package/bootstrap-icons/filetype-gif.d.ts +0 -5
  2246. package/bootstrap-icons/filetype-gif.js +0 -12
  2247. package/bootstrap-icons/filetype-heic.d.ts +0 -5
  2248. package/bootstrap-icons/filetype-heic.js +0 -12
  2249. package/bootstrap-icons/filetype-html.d.ts +0 -5
  2250. package/bootstrap-icons/filetype-html.js +0 -12
  2251. package/bootstrap-icons/filetype-java.d.ts +0 -5
  2252. package/bootstrap-icons/filetype-java.js +0 -12
  2253. package/bootstrap-icons/filetype-jpg.d.ts +0 -5
  2254. package/bootstrap-icons/filetype-jpg.js +0 -12
  2255. package/bootstrap-icons/filetype-js.d.ts +0 -5
  2256. package/bootstrap-icons/filetype-js.js +0 -12
  2257. package/bootstrap-icons/filetype-json.d.ts +0 -5
  2258. package/bootstrap-icons/filetype-json.js +0 -12
  2259. package/bootstrap-icons/filetype-jsx.d.ts +0 -5
  2260. package/bootstrap-icons/filetype-jsx.js +0 -12
  2261. package/bootstrap-icons/filetype-key.d.ts +0 -5
  2262. package/bootstrap-icons/filetype-key.js +0 -12
  2263. package/bootstrap-icons/filetype-m4p.d.ts +0 -5
  2264. package/bootstrap-icons/filetype-m4p.js +0 -12
  2265. package/bootstrap-icons/filetype-md.d.ts +0 -5
  2266. package/bootstrap-icons/filetype-md.js +0 -12
  2267. package/bootstrap-icons/filetype-mdx.d.ts +0 -5
  2268. package/bootstrap-icons/filetype-mdx.js +0 -12
  2269. package/bootstrap-icons/filetype-mov.d.ts +0 -5
  2270. package/bootstrap-icons/filetype-mov.js +0 -12
  2271. package/bootstrap-icons/filetype-mp3.d.ts +0 -5
  2272. package/bootstrap-icons/filetype-mp3.js +0 -12
  2273. package/bootstrap-icons/filetype-mp4.d.ts +0 -5
  2274. package/bootstrap-icons/filetype-mp4.js +0 -12
  2275. package/bootstrap-icons/filetype-otf.d.ts +0 -5
  2276. package/bootstrap-icons/filetype-otf.js +0 -12
  2277. package/bootstrap-icons/filetype-pdf.d.ts +0 -5
  2278. package/bootstrap-icons/filetype-pdf.js +0 -12
  2279. package/bootstrap-icons/filetype-php.d.ts +0 -5
  2280. package/bootstrap-icons/filetype-php.js +0 -12
  2281. package/bootstrap-icons/filetype-png.d.ts +0 -5
  2282. package/bootstrap-icons/filetype-png.js +0 -12
  2283. package/bootstrap-icons/filetype-ppt.d.ts +0 -5
  2284. package/bootstrap-icons/filetype-ppt.js +0 -12
  2285. package/bootstrap-icons/filetype-pptx.d.ts +0 -5
  2286. package/bootstrap-icons/filetype-pptx.js +0 -12
  2287. package/bootstrap-icons/filetype-psd.d.ts +0 -5
  2288. package/bootstrap-icons/filetype-psd.js +0 -12
  2289. package/bootstrap-icons/filetype-py.d.ts +0 -5
  2290. package/bootstrap-icons/filetype-py.js +0 -12
  2291. package/bootstrap-icons/filetype-raw.d.ts +0 -5
  2292. package/bootstrap-icons/filetype-raw.js +0 -12
  2293. package/bootstrap-icons/filetype-rb.d.ts +0 -5
  2294. package/bootstrap-icons/filetype-rb.js +0 -12
  2295. package/bootstrap-icons/filetype-sass.d.ts +0 -5
  2296. package/bootstrap-icons/filetype-sass.js +0 -12
  2297. package/bootstrap-icons/filetype-scss.d.ts +0 -5
  2298. package/bootstrap-icons/filetype-scss.js +0 -12
  2299. package/bootstrap-icons/filetype-sh.d.ts +0 -5
  2300. package/bootstrap-icons/filetype-sh.js +0 -12
  2301. package/bootstrap-icons/filetype-svg.d.ts +0 -5
  2302. package/bootstrap-icons/filetype-svg.js +0 -12
  2303. package/bootstrap-icons/filetype-tiff.d.ts +0 -5
  2304. package/bootstrap-icons/filetype-tiff.js +0 -12
  2305. package/bootstrap-icons/filetype-tsx.d.ts +0 -5
  2306. package/bootstrap-icons/filetype-tsx.js +0 -12
  2307. package/bootstrap-icons/filetype-ttf.d.ts +0 -5
  2308. package/bootstrap-icons/filetype-ttf.js +0 -12
  2309. package/bootstrap-icons/filetype-txt.d.ts +0 -5
  2310. package/bootstrap-icons/filetype-txt.js +0 -12
  2311. package/bootstrap-icons/filetype-wav.d.ts +0 -5
  2312. package/bootstrap-icons/filetype-wav.js +0 -12
  2313. package/bootstrap-icons/filetype-woff.d.ts +0 -5
  2314. package/bootstrap-icons/filetype-woff.js +0 -12
  2315. package/bootstrap-icons/filetype-xls.d.ts +0 -5
  2316. package/bootstrap-icons/filetype-xls.js +0 -12
  2317. package/bootstrap-icons/filetype-xlsx.d.ts +0 -5
  2318. package/bootstrap-icons/filetype-xlsx.js +0 -12
  2319. package/bootstrap-icons/filetype-xml.d.ts +0 -5
  2320. package/bootstrap-icons/filetype-xml.js +0 -12
  2321. package/bootstrap-icons/filetype-yml.d.ts +0 -5
  2322. package/bootstrap-icons/filetype-yml.js +0 -12
  2323. package/bootstrap-icons/film.d.ts +0 -5
  2324. package/bootstrap-icons/film.js +0 -12
  2325. package/bootstrap-icons/filter-circle-fill.d.ts +0 -5
  2326. package/bootstrap-icons/filter-circle-fill.js +0 -12
  2327. package/bootstrap-icons/filter-circle.d.ts +0 -5
  2328. package/bootstrap-icons/filter-circle.js +0 -12
  2329. package/bootstrap-icons/filter-left.d.ts +0 -5
  2330. package/bootstrap-icons/filter-left.js +0 -12
  2331. package/bootstrap-icons/filter-right.d.ts +0 -5
  2332. package/bootstrap-icons/filter-right.js +0 -12
  2333. package/bootstrap-icons/filter-square-fill.d.ts +0 -5
  2334. package/bootstrap-icons/filter-square-fill.js +0 -12
  2335. package/bootstrap-icons/filter-square.d.ts +0 -5
  2336. package/bootstrap-icons/filter-square.js +0 -12
  2337. package/bootstrap-icons/filter.d.ts +0 -5
  2338. package/bootstrap-icons/filter.js +0 -12
  2339. package/bootstrap-icons/fingerprint.d.ts +0 -5
  2340. package/bootstrap-icons/fingerprint.js +0 -12
  2341. package/bootstrap-icons/flag-fill.d.ts +0 -5
  2342. package/bootstrap-icons/flag-fill.js +0 -12
  2343. package/bootstrap-icons/flag.d.ts +0 -5
  2344. package/bootstrap-icons/flag.js +0 -12
  2345. package/bootstrap-icons/flower1.d.ts +0 -5
  2346. package/bootstrap-icons/flower1.js +0 -12
  2347. package/bootstrap-icons/flower2.d.ts +0 -5
  2348. package/bootstrap-icons/flower2.js +0 -12
  2349. package/bootstrap-icons/flower3.d.ts +0 -5
  2350. package/bootstrap-icons/flower3.js +0 -12
  2351. package/bootstrap-icons/folder-check.d.ts +0 -5
  2352. package/bootstrap-icons/folder-check.js +0 -12
  2353. package/bootstrap-icons/folder-fill.d.ts +0 -5
  2354. package/bootstrap-icons/folder-fill.js +0 -12
  2355. package/bootstrap-icons/folder-minus.d.ts +0 -5
  2356. package/bootstrap-icons/folder-minus.js +0 -12
  2357. package/bootstrap-icons/folder-plus.d.ts +0 -5
  2358. package/bootstrap-icons/folder-plus.js +0 -12
  2359. package/bootstrap-icons/folder-symlink-fill.d.ts +0 -5
  2360. package/bootstrap-icons/folder-symlink-fill.js +0 -12
  2361. package/bootstrap-icons/folder-symlink.d.ts +0 -5
  2362. package/bootstrap-icons/folder-symlink.js +0 -12
  2363. package/bootstrap-icons/folder-x.d.ts +0 -5
  2364. package/bootstrap-icons/folder-x.js +0 -12
  2365. package/bootstrap-icons/folder.d.ts +0 -5
  2366. package/bootstrap-icons/folder.js +0 -12
  2367. package/bootstrap-icons/folder2-open.d.ts +0 -5
  2368. package/bootstrap-icons/folder2-open.js +0 -12
  2369. package/bootstrap-icons/folder2.d.ts +0 -5
  2370. package/bootstrap-icons/folder2.js +0 -12
  2371. package/bootstrap-icons/fonts.d.ts +0 -5
  2372. package/bootstrap-icons/fonts.js +0 -12
  2373. package/bootstrap-icons/forward-fill.d.ts +0 -5
  2374. package/bootstrap-icons/forward-fill.js +0 -12
  2375. package/bootstrap-icons/forward.d.ts +0 -5
  2376. package/bootstrap-icons/forward.js +0 -12
  2377. package/bootstrap-icons/front.d.ts +0 -5
  2378. package/bootstrap-icons/front.js +0 -12
  2379. package/bootstrap-icons/fullscreen-exit.d.ts +0 -5
  2380. package/bootstrap-icons/fullscreen-exit.js +0 -12
  2381. package/bootstrap-icons/fullscreen.d.ts +0 -5
  2382. package/bootstrap-icons/fullscreen.js +0 -12
  2383. package/bootstrap-icons/funnel-fill.d.ts +0 -5
  2384. package/bootstrap-icons/funnel-fill.js +0 -12
  2385. package/bootstrap-icons/funnel.d.ts +0 -5
  2386. package/bootstrap-icons/funnel.js +0 -12
  2387. package/bootstrap-icons/gear-fill.d.ts +0 -5
  2388. package/bootstrap-icons/gear-fill.js +0 -12
  2389. package/bootstrap-icons/gear-wide-connected.d.ts +0 -5
  2390. package/bootstrap-icons/gear-wide-connected.js +0 -12
  2391. package/bootstrap-icons/gear-wide.d.ts +0 -5
  2392. package/bootstrap-icons/gear-wide.js +0 -12
  2393. package/bootstrap-icons/gear.d.ts +0 -5
  2394. package/bootstrap-icons/gear.js +0 -12
  2395. package/bootstrap-icons/gem.d.ts +0 -5
  2396. package/bootstrap-icons/gem.js +0 -12
  2397. package/bootstrap-icons/gender-ambiguous.d.ts +0 -5
  2398. package/bootstrap-icons/gender-ambiguous.js +0 -12
  2399. package/bootstrap-icons/gender-female.d.ts +0 -5
  2400. package/bootstrap-icons/gender-female.js +0 -12
  2401. package/bootstrap-icons/gender-male.d.ts +0 -5
  2402. package/bootstrap-icons/gender-male.js +0 -12
  2403. package/bootstrap-icons/gender-trans.d.ts +0 -5
  2404. package/bootstrap-icons/gender-trans.js +0 -12
  2405. package/bootstrap-icons/geo-alt-fill.d.ts +0 -5
  2406. package/bootstrap-icons/geo-alt-fill.js +0 -12
  2407. package/bootstrap-icons/geo-alt.d.ts +0 -5
  2408. package/bootstrap-icons/geo-alt.js +0 -12
  2409. package/bootstrap-icons/geo-fill.d.ts +0 -5
  2410. package/bootstrap-icons/geo-fill.js +0 -12
  2411. package/bootstrap-icons/geo.d.ts +0 -5
  2412. package/bootstrap-icons/geo.js +0 -12
  2413. package/bootstrap-icons/gift-fill.d.ts +0 -5
  2414. package/bootstrap-icons/gift-fill.js +0 -12
  2415. package/bootstrap-icons/gift.d.ts +0 -5
  2416. package/bootstrap-icons/gift.js +0 -12
  2417. package/bootstrap-icons/git.d.ts +0 -5
  2418. package/bootstrap-icons/git.js +0 -12
  2419. package/bootstrap-icons/github.d.ts +0 -5
  2420. package/bootstrap-icons/github.js +0 -12
  2421. package/bootstrap-icons/globe.d.ts +0 -5
  2422. package/bootstrap-icons/globe.js +0 -12
  2423. package/bootstrap-icons/globe2.d.ts +0 -5
  2424. package/bootstrap-icons/globe2.js +0 -12
  2425. package/bootstrap-icons/google.d.ts +0 -5
  2426. package/bootstrap-icons/google.js +0 -12
  2427. package/bootstrap-icons/gpu-card.d.ts +0 -5
  2428. package/bootstrap-icons/gpu-card.js +0 -12
  2429. package/bootstrap-icons/graph-down-arrow.d.ts +0 -5
  2430. package/bootstrap-icons/graph-down-arrow.js +0 -12
  2431. package/bootstrap-icons/graph-down.d.ts +0 -5
  2432. package/bootstrap-icons/graph-down.js +0 -12
  2433. package/bootstrap-icons/graph-up-arrow.d.ts +0 -5
  2434. package/bootstrap-icons/graph-up-arrow.js +0 -12
  2435. package/bootstrap-icons/graph-up.d.ts +0 -5
  2436. package/bootstrap-icons/graph-up.js +0 -12
  2437. package/bootstrap-icons/grid-1x2-fill.d.ts +0 -5
  2438. package/bootstrap-icons/grid-1x2-fill.js +0 -12
  2439. package/bootstrap-icons/grid-1x2.d.ts +0 -5
  2440. package/bootstrap-icons/grid-1x2.js +0 -12
  2441. package/bootstrap-icons/grid-3x2-gap-fill.d.ts +0 -5
  2442. package/bootstrap-icons/grid-3x2-gap-fill.js +0 -12
  2443. package/bootstrap-icons/grid-3x2-gap.d.ts +0 -5
  2444. package/bootstrap-icons/grid-3x2-gap.js +0 -12
  2445. package/bootstrap-icons/grid-3x2.d.ts +0 -5
  2446. package/bootstrap-icons/grid-3x2.js +0 -12
  2447. package/bootstrap-icons/grid-3x3-gap-fill.d.ts +0 -5
  2448. package/bootstrap-icons/grid-3x3-gap-fill.js +0 -12
  2449. package/bootstrap-icons/grid-3x3-gap.d.ts +0 -5
  2450. package/bootstrap-icons/grid-3x3-gap.js +0 -12
  2451. package/bootstrap-icons/grid-3x3.d.ts +0 -5
  2452. package/bootstrap-icons/grid-3x3.js +0 -12
  2453. package/bootstrap-icons/grid-fill.d.ts +0 -5
  2454. package/bootstrap-icons/grid-fill.js +0 -12
  2455. package/bootstrap-icons/grid.d.ts +0 -5
  2456. package/bootstrap-icons/grid.js +0 -12
  2457. package/bootstrap-icons/grip-horizontal.d.ts +0 -5
  2458. package/bootstrap-icons/grip-horizontal.js +0 -12
  2459. package/bootstrap-icons/grip-vertical.d.ts +0 -5
  2460. package/bootstrap-icons/grip-vertical.js +0 -12
  2461. package/bootstrap-icons/hammer.d.ts +0 -5
  2462. package/bootstrap-icons/hammer.js +0 -12
  2463. package/bootstrap-icons/hand-index-fill.d.ts +0 -5
  2464. package/bootstrap-icons/hand-index-fill.js +0 -12
  2465. package/bootstrap-icons/hand-index-thumb-fill.d.ts +0 -5
  2466. package/bootstrap-icons/hand-index-thumb-fill.js +0 -12
  2467. package/bootstrap-icons/hand-index-thumb.d.ts +0 -5
  2468. package/bootstrap-icons/hand-index-thumb.js +0 -12
  2469. package/bootstrap-icons/hand-index.d.ts +0 -5
  2470. package/bootstrap-icons/hand-index.js +0 -12
  2471. package/bootstrap-icons/hand-thumbs-down-fill.d.ts +0 -5
  2472. package/bootstrap-icons/hand-thumbs-down-fill.js +0 -12
  2473. package/bootstrap-icons/hand-thumbs-down.d.ts +0 -5
  2474. package/bootstrap-icons/hand-thumbs-down.js +0 -12
  2475. package/bootstrap-icons/hand-thumbs-up-fill.d.ts +0 -5
  2476. package/bootstrap-icons/hand-thumbs-up-fill.js +0 -12
  2477. package/bootstrap-icons/hand-thumbs-up.d.ts +0 -5
  2478. package/bootstrap-icons/hand-thumbs-up.js +0 -12
  2479. package/bootstrap-icons/handbag-fill.d.ts +0 -5
  2480. package/bootstrap-icons/handbag-fill.js +0 -12
  2481. package/bootstrap-icons/handbag.d.ts +0 -5
  2482. package/bootstrap-icons/handbag.js +0 -12
  2483. package/bootstrap-icons/hash.d.ts +0 -5
  2484. package/bootstrap-icons/hash.js +0 -12
  2485. package/bootstrap-icons/hdd-fill.d.ts +0 -5
  2486. package/bootstrap-icons/hdd-fill.js +0 -12
  2487. package/bootstrap-icons/hdd-network-fill.d.ts +0 -5
  2488. package/bootstrap-icons/hdd-network-fill.js +0 -12
  2489. package/bootstrap-icons/hdd-network.d.ts +0 -5
  2490. package/bootstrap-icons/hdd-network.js +0 -12
  2491. package/bootstrap-icons/hdd-rack-fill.d.ts +0 -5
  2492. package/bootstrap-icons/hdd-rack-fill.js +0 -12
  2493. package/bootstrap-icons/hdd-rack.d.ts +0 -5
  2494. package/bootstrap-icons/hdd-rack.js +0 -12
  2495. package/bootstrap-icons/hdd-stack-fill.d.ts +0 -5
  2496. package/bootstrap-icons/hdd-stack-fill.js +0 -12
  2497. package/bootstrap-icons/hdd-stack.d.ts +0 -5
  2498. package/bootstrap-icons/hdd-stack.js +0 -12
  2499. package/bootstrap-icons/hdd.d.ts +0 -5
  2500. package/bootstrap-icons/hdd.js +0 -12
  2501. package/bootstrap-icons/hdmi-fill.d.ts +0 -5
  2502. package/bootstrap-icons/hdmi-fill.js +0 -12
  2503. package/bootstrap-icons/hdmi.d.ts +0 -5
  2504. package/bootstrap-icons/hdmi.js +0 -12
  2505. package/bootstrap-icons/headphones.d.ts +0 -5
  2506. package/bootstrap-icons/headphones.js +0 -12
  2507. package/bootstrap-icons/headset-vr.d.ts +0 -5
  2508. package/bootstrap-icons/headset-vr.js +0 -12
  2509. package/bootstrap-icons/headset.d.ts +0 -5
  2510. package/bootstrap-icons/headset.js +0 -12
  2511. package/bootstrap-icons/heart-arrow.d.ts +0 -5
  2512. package/bootstrap-icons/heart-arrow.js +0 -12
  2513. package/bootstrap-icons/heart-fill.d.ts +0 -5
  2514. package/bootstrap-icons/heart-fill.js +0 -12
  2515. package/bootstrap-icons/heart-half.d.ts +0 -5
  2516. package/bootstrap-icons/heart-half.js +0 -12
  2517. package/bootstrap-icons/heart-pulse-fill.d.ts +0 -5
  2518. package/bootstrap-icons/heart-pulse-fill.js +0 -12
  2519. package/bootstrap-icons/heart-pulse.d.ts +0 -5
  2520. package/bootstrap-icons/heart-pulse.js +0 -12
  2521. package/bootstrap-icons/heart.d.ts +0 -5
  2522. package/bootstrap-icons/heart.js +0 -12
  2523. package/bootstrap-icons/heartbreak-fill.d.ts +0 -5
  2524. package/bootstrap-icons/heartbreak-fill.js +0 -12
  2525. package/bootstrap-icons/heartbreak.d.ts +0 -5
  2526. package/bootstrap-icons/heartbreak.js +0 -12
  2527. package/bootstrap-icons/hearts.d.ts +0 -5
  2528. package/bootstrap-icons/hearts.js +0 -12
  2529. package/bootstrap-icons/heptagon-fill.d.ts +0 -5
  2530. package/bootstrap-icons/heptagon-fill.js +0 -12
  2531. package/bootstrap-icons/heptagon-half.d.ts +0 -5
  2532. package/bootstrap-icons/heptagon-half.js +0 -12
  2533. package/bootstrap-icons/heptagon.d.ts +0 -5
  2534. package/bootstrap-icons/heptagon.js +0 -12
  2535. package/bootstrap-icons/hexagon-fill.d.ts +0 -5
  2536. package/bootstrap-icons/hexagon-fill.js +0 -12
  2537. package/bootstrap-icons/hexagon-half.d.ts +0 -5
  2538. package/bootstrap-icons/hexagon-half.js +0 -12
  2539. package/bootstrap-icons/hexagon.d.ts +0 -5
  2540. package/bootstrap-icons/hexagon.js +0 -12
  2541. package/bootstrap-icons/hospital-fill.d.ts +0 -5
  2542. package/bootstrap-icons/hospital-fill.js +0 -12
  2543. package/bootstrap-icons/hospital.d.ts +0 -5
  2544. package/bootstrap-icons/hospital.js +0 -12
  2545. package/bootstrap-icons/hourglass-bottom.d.ts +0 -5
  2546. package/bootstrap-icons/hourglass-bottom.js +0 -12
  2547. package/bootstrap-icons/hourglass-split.d.ts +0 -5
  2548. package/bootstrap-icons/hourglass-split.js +0 -12
  2549. package/bootstrap-icons/hourglass-top.d.ts +0 -5
  2550. package/bootstrap-icons/hourglass-top.js +0 -12
  2551. package/bootstrap-icons/hourglass.d.ts +0 -5
  2552. package/bootstrap-icons/hourglass.js +0 -12
  2553. package/bootstrap-icons/house-door-fill.d.ts +0 -5
  2554. package/bootstrap-icons/house-door-fill.js +0 -12
  2555. package/bootstrap-icons/house-door.d.ts +0 -5
  2556. package/bootstrap-icons/house-door.js +0 -12
  2557. package/bootstrap-icons/house-fill.d.ts +0 -5
  2558. package/bootstrap-icons/house-fill.js +0 -12
  2559. package/bootstrap-icons/house-heart-fill.d.ts +0 -5
  2560. package/bootstrap-icons/house-heart-fill.js +0 -12
  2561. package/bootstrap-icons/house-heart.d.ts +0 -5
  2562. package/bootstrap-icons/house-heart.js +0 -12
  2563. package/bootstrap-icons/house.d.ts +0 -5
  2564. package/bootstrap-icons/house.js +0 -12
  2565. package/bootstrap-icons/hr.d.ts +0 -5
  2566. package/bootstrap-icons/hr.js +0 -12
  2567. package/bootstrap-icons/hurricane.d.ts +0 -5
  2568. package/bootstrap-icons/hurricane.js +0 -12
  2569. package/bootstrap-icons/hypnotize.d.ts +0 -5
  2570. package/bootstrap-icons/hypnotize.js +0 -12
  2571. package/bootstrap-icons/image-alt.d.ts +0 -5
  2572. package/bootstrap-icons/image-alt.js +0 -12
  2573. package/bootstrap-icons/image-fill.d.ts +0 -5
  2574. package/bootstrap-icons/image-fill.js +0 -12
  2575. package/bootstrap-icons/image.d.ts +0 -5
  2576. package/bootstrap-icons/image.js +0 -12
  2577. package/bootstrap-icons/images.d.ts +0 -5
  2578. package/bootstrap-icons/images.js +0 -12
  2579. package/bootstrap-icons/inbox-fill.d.ts +0 -5
  2580. package/bootstrap-icons/inbox-fill.js +0 -12
  2581. package/bootstrap-icons/inbox.d.ts +0 -5
  2582. package/bootstrap-icons/inbox.js +0 -12
  2583. package/bootstrap-icons/inboxes-fill.d.ts +0 -5
  2584. package/bootstrap-icons/inboxes-fill.js +0 -12
  2585. package/bootstrap-icons/inboxes.d.ts +0 -5
  2586. package/bootstrap-icons/inboxes.js +0 -12
  2587. package/bootstrap-icons/incognito.d.ts +0 -5
  2588. package/bootstrap-icons/incognito.js +0 -12
  2589. package/bootstrap-icons/index.d.ts +0 -1671
  2590. package/bootstrap-icons/index.js +0 -1687
  2591. package/bootstrap-icons/infinity.d.ts +0 -5
  2592. package/bootstrap-icons/infinity.js +0 -12
  2593. package/bootstrap-icons/info-circle-fill.d.ts +0 -5
  2594. package/bootstrap-icons/info-circle-fill.js +0 -12
  2595. package/bootstrap-icons/info-circle.d.ts +0 -5
  2596. package/bootstrap-icons/info-circle.js +0 -12
  2597. package/bootstrap-icons/info-lg.d.ts +0 -5
  2598. package/bootstrap-icons/info-lg.js +0 -12
  2599. package/bootstrap-icons/info-square-fill.d.ts +0 -5
  2600. package/bootstrap-icons/info-square-fill.js +0 -12
  2601. package/bootstrap-icons/info-square.d.ts +0 -5
  2602. package/bootstrap-icons/info-square.js +0 -12
  2603. package/bootstrap-icons/info.d.ts +0 -5
  2604. package/bootstrap-icons/info.js +0 -12
  2605. package/bootstrap-icons/input-cursor-text.d.ts +0 -5
  2606. package/bootstrap-icons/input-cursor-text.js +0 -12
  2607. package/bootstrap-icons/input-cursor.d.ts +0 -5
  2608. package/bootstrap-icons/input-cursor.js +0 -12
  2609. package/bootstrap-icons/instagram.d.ts +0 -5
  2610. package/bootstrap-icons/instagram.js +0 -12
  2611. package/bootstrap-icons/intersect.d.ts +0 -5
  2612. package/bootstrap-icons/intersect.js +0 -12
  2613. package/bootstrap-icons/journal-album.d.ts +0 -5
  2614. package/bootstrap-icons/journal-album.js +0 -12
  2615. package/bootstrap-icons/journal-arrow-down.d.ts +0 -5
  2616. package/bootstrap-icons/journal-arrow-down.js +0 -12
  2617. package/bootstrap-icons/journal-arrow-up.d.ts +0 -5
  2618. package/bootstrap-icons/journal-arrow-up.js +0 -12
  2619. package/bootstrap-icons/journal-bookmark-fill.d.ts +0 -5
  2620. package/bootstrap-icons/journal-bookmark-fill.js +0 -12
  2621. package/bootstrap-icons/journal-bookmark.d.ts +0 -5
  2622. package/bootstrap-icons/journal-bookmark.js +0 -12
  2623. package/bootstrap-icons/journal-check.d.ts +0 -5
  2624. package/bootstrap-icons/journal-check.js +0 -12
  2625. package/bootstrap-icons/journal-code.d.ts +0 -5
  2626. package/bootstrap-icons/journal-code.js +0 -12
  2627. package/bootstrap-icons/journal-medical.d.ts +0 -5
  2628. package/bootstrap-icons/journal-medical.js +0 -12
  2629. package/bootstrap-icons/journal-minus.d.ts +0 -5
  2630. package/bootstrap-icons/journal-minus.js +0 -12
  2631. package/bootstrap-icons/journal-plus.d.ts +0 -5
  2632. package/bootstrap-icons/journal-plus.js +0 -12
  2633. package/bootstrap-icons/journal-richtext.d.ts +0 -5
  2634. package/bootstrap-icons/journal-richtext.js +0 -12
  2635. package/bootstrap-icons/journal-text.d.ts +0 -5
  2636. package/bootstrap-icons/journal-text.js +0 -12
  2637. package/bootstrap-icons/journal-x.d.ts +0 -5
  2638. package/bootstrap-icons/journal-x.js +0 -12
  2639. package/bootstrap-icons/journal.d.ts +0 -5
  2640. package/bootstrap-icons/journal.js +0 -12
  2641. package/bootstrap-icons/journals.d.ts +0 -5
  2642. package/bootstrap-icons/journals.js +0 -12
  2643. package/bootstrap-icons/joystick.d.ts +0 -5
  2644. package/bootstrap-icons/joystick.js +0 -12
  2645. package/bootstrap-icons/justify-left.d.ts +0 -5
  2646. package/bootstrap-icons/justify-left.js +0 -12
  2647. package/bootstrap-icons/justify-right.d.ts +0 -5
  2648. package/bootstrap-icons/justify-right.js +0 -12
  2649. package/bootstrap-icons/justify.d.ts +0 -5
  2650. package/bootstrap-icons/justify.js +0 -12
  2651. package/bootstrap-icons/kanban-fill.d.ts +0 -5
  2652. package/bootstrap-icons/kanban-fill.js +0 -12
  2653. package/bootstrap-icons/kanban.d.ts +0 -5
  2654. package/bootstrap-icons/kanban.js +0 -12
  2655. package/bootstrap-icons/key-fill.d.ts +0 -5
  2656. package/bootstrap-icons/key-fill.js +0 -12
  2657. package/bootstrap-icons/key.d.ts +0 -5
  2658. package/bootstrap-icons/key.js +0 -12
  2659. package/bootstrap-icons/keyboard-fill.d.ts +0 -5
  2660. package/bootstrap-icons/keyboard-fill.js +0 -12
  2661. package/bootstrap-icons/keyboard.d.ts +0 -5
  2662. package/bootstrap-icons/keyboard.js +0 -12
  2663. package/bootstrap-icons/ladder.d.ts +0 -5
  2664. package/bootstrap-icons/ladder.js +0 -12
  2665. package/bootstrap-icons/lamp-fill.d.ts +0 -5
  2666. package/bootstrap-icons/lamp-fill.js +0 -12
  2667. package/bootstrap-icons/lamp.d.ts +0 -5
  2668. package/bootstrap-icons/lamp.js +0 -12
  2669. package/bootstrap-icons/laptop-fill.d.ts +0 -5
  2670. package/bootstrap-icons/laptop-fill.js +0 -12
  2671. package/bootstrap-icons/laptop.d.ts +0 -5
  2672. package/bootstrap-icons/laptop.js +0 -12
  2673. package/bootstrap-icons/layer-backward.d.ts +0 -5
  2674. package/bootstrap-icons/layer-backward.js +0 -12
  2675. package/bootstrap-icons/layer-forward.d.ts +0 -5
  2676. package/bootstrap-icons/layer-forward.js +0 -12
  2677. package/bootstrap-icons/layers-fill.d.ts +0 -5
  2678. package/bootstrap-icons/layers-fill.js +0 -12
  2679. package/bootstrap-icons/layers-half.d.ts +0 -5
  2680. package/bootstrap-icons/layers-half.js +0 -12
  2681. package/bootstrap-icons/layers.d.ts +0 -5
  2682. package/bootstrap-icons/layers.js +0 -12
  2683. package/bootstrap-icons/layout-sidebar-inset-reverse.d.ts +0 -5
  2684. package/bootstrap-icons/layout-sidebar-inset-reverse.js +0 -12
  2685. package/bootstrap-icons/layout-sidebar-inset.d.ts +0 -5
  2686. package/bootstrap-icons/layout-sidebar-inset.js +0 -12
  2687. package/bootstrap-icons/layout-sidebar-reverse.d.ts +0 -5
  2688. package/bootstrap-icons/layout-sidebar-reverse.js +0 -12
  2689. package/bootstrap-icons/layout-sidebar.d.ts +0 -5
  2690. package/bootstrap-icons/layout-sidebar.js +0 -12
  2691. package/bootstrap-icons/layout-split.d.ts +0 -5
  2692. package/bootstrap-icons/layout-split.js +0 -12
  2693. package/bootstrap-icons/layout-text-sidebar-reverse.d.ts +0 -5
  2694. package/bootstrap-icons/layout-text-sidebar-reverse.js +0 -12
  2695. package/bootstrap-icons/layout-text-sidebar.d.ts +0 -5
  2696. package/bootstrap-icons/layout-text-sidebar.js +0 -12
  2697. package/bootstrap-icons/layout-text-window-reverse.d.ts +0 -5
  2698. package/bootstrap-icons/layout-text-window-reverse.js +0 -12
  2699. package/bootstrap-icons/layout-text-window.d.ts +0 -5
  2700. package/bootstrap-icons/layout-text-window.js +0 -12
  2701. package/bootstrap-icons/layout-three-columns.d.ts +0 -5
  2702. package/bootstrap-icons/layout-three-columns.js +0 -12
  2703. package/bootstrap-icons/layout-wtf.d.ts +0 -5
  2704. package/bootstrap-icons/layout-wtf.js +0 -12
  2705. package/bootstrap-icons/life-preserver.d.ts +0 -5
  2706. package/bootstrap-icons/life-preserver.js +0 -12
  2707. package/bootstrap-icons/lightbulb-fill.d.ts +0 -5
  2708. package/bootstrap-icons/lightbulb-fill.js +0 -12
  2709. package/bootstrap-icons/lightbulb-off-fill.d.ts +0 -5
  2710. package/bootstrap-icons/lightbulb-off-fill.js +0 -12
  2711. package/bootstrap-icons/lightbulb-off.d.ts +0 -5
  2712. package/bootstrap-icons/lightbulb-off.js +0 -12
  2713. package/bootstrap-icons/lightbulb.d.ts +0 -5
  2714. package/bootstrap-icons/lightbulb.js +0 -12
  2715. package/bootstrap-icons/lightning-charge-fill.d.ts +0 -5
  2716. package/bootstrap-icons/lightning-charge-fill.js +0 -12
  2717. package/bootstrap-icons/lightning-charge.d.ts +0 -5
  2718. package/bootstrap-icons/lightning-charge.js +0 -12
  2719. package/bootstrap-icons/lightning-fill.d.ts +0 -5
  2720. package/bootstrap-icons/lightning-fill.js +0 -12
  2721. package/bootstrap-icons/lightning.d.ts +0 -5
  2722. package/bootstrap-icons/lightning.js +0 -12
  2723. package/bootstrap-icons/line.d.ts +0 -5
  2724. package/bootstrap-icons/line.js +0 -12
  2725. package/bootstrap-icons/link-45deg.d.ts +0 -5
  2726. package/bootstrap-icons/link-45deg.js +0 -12
  2727. package/bootstrap-icons/link.d.ts +0 -5
  2728. package/bootstrap-icons/link.js +0 -12
  2729. package/bootstrap-icons/linkedin.d.ts +0 -5
  2730. package/bootstrap-icons/linkedin.js +0 -12
  2731. package/bootstrap-icons/list-check.d.ts +0 -5
  2732. package/bootstrap-icons/list-check.js +0 -12
  2733. package/bootstrap-icons/list-columns-reverse.d.ts +0 -5
  2734. package/bootstrap-icons/list-columns-reverse.js +0 -12
  2735. package/bootstrap-icons/list-columns.d.ts +0 -5
  2736. package/bootstrap-icons/list-columns.js +0 -12
  2737. package/bootstrap-icons/list-nested.d.ts +0 -5
  2738. package/bootstrap-icons/list-nested.js +0 -12
  2739. package/bootstrap-icons/list-ol.d.ts +0 -5
  2740. package/bootstrap-icons/list-ol.js +0 -12
  2741. package/bootstrap-icons/list-stars.d.ts +0 -5
  2742. package/bootstrap-icons/list-stars.js +0 -12
  2743. package/bootstrap-icons/list-task.d.ts +0 -5
  2744. package/bootstrap-icons/list-task.js +0 -12
  2745. package/bootstrap-icons/list-ul.d.ts +0 -5
  2746. package/bootstrap-icons/list-ul.js +0 -12
  2747. package/bootstrap-icons/list.d.ts +0 -5
  2748. package/bootstrap-icons/list.js +0 -12
  2749. package/bootstrap-icons/lock-fill.d.ts +0 -5
  2750. package/bootstrap-icons/lock-fill.js +0 -12
  2751. package/bootstrap-icons/lock.d.ts +0 -5
  2752. package/bootstrap-icons/lock.js +0 -12
  2753. package/bootstrap-icons/magic.d.ts +0 -5
  2754. package/bootstrap-icons/magic.js +0 -12
  2755. package/bootstrap-icons/magnet-fill.d.ts +0 -5
  2756. package/bootstrap-icons/magnet-fill.js +0 -12
  2757. package/bootstrap-icons/magnet.d.ts +0 -5
  2758. package/bootstrap-icons/magnet.js +0 -12
  2759. package/bootstrap-icons/mailbox.d.ts +0 -5
  2760. package/bootstrap-icons/mailbox.js +0 -12
  2761. package/bootstrap-icons/mailbox2.d.ts +0 -5
  2762. package/bootstrap-icons/mailbox2.js +0 -12
  2763. package/bootstrap-icons/map-fill.d.ts +0 -5
  2764. package/bootstrap-icons/map-fill.js +0 -12
  2765. package/bootstrap-icons/map.d.ts +0 -5
  2766. package/bootstrap-icons/map.js +0 -12
  2767. package/bootstrap-icons/markdown-fill.d.ts +0 -5
  2768. package/bootstrap-icons/markdown-fill.js +0 -12
  2769. package/bootstrap-icons/markdown.d.ts +0 -5
  2770. package/bootstrap-icons/markdown.js +0 -12
  2771. package/bootstrap-icons/mask.d.ts +0 -5
  2772. package/bootstrap-icons/mask.js +0 -12
  2773. package/bootstrap-icons/mastodon.d.ts +0 -5
  2774. package/bootstrap-icons/mastodon.js +0 -12
  2775. package/bootstrap-icons/medium.d.ts +0 -5
  2776. package/bootstrap-icons/medium.js +0 -12
  2777. package/bootstrap-icons/megaphone-fill.d.ts +0 -5
  2778. package/bootstrap-icons/megaphone-fill.js +0 -12
  2779. package/bootstrap-icons/megaphone.d.ts +0 -5
  2780. package/bootstrap-icons/megaphone.js +0 -12
  2781. package/bootstrap-icons/memory.d.ts +0 -5
  2782. package/bootstrap-icons/memory.js +0 -12
  2783. package/bootstrap-icons/menu-app-fill.d.ts +0 -5
  2784. package/bootstrap-icons/menu-app-fill.js +0 -12
  2785. package/bootstrap-icons/menu-app.d.ts +0 -5
  2786. package/bootstrap-icons/menu-app.js +0 -12
  2787. package/bootstrap-icons/menu-button-fill.d.ts +0 -5
  2788. package/bootstrap-icons/menu-button-fill.js +0 -12
  2789. package/bootstrap-icons/menu-button-wide-fill.d.ts +0 -5
  2790. package/bootstrap-icons/menu-button-wide-fill.js +0 -12
  2791. package/bootstrap-icons/menu-button-wide.d.ts +0 -5
  2792. package/bootstrap-icons/menu-button-wide.js +0 -12
  2793. package/bootstrap-icons/menu-button.d.ts +0 -5
  2794. package/bootstrap-icons/menu-button.js +0 -12
  2795. package/bootstrap-icons/menu-down.d.ts +0 -5
  2796. package/bootstrap-icons/menu-down.js +0 -12
  2797. package/bootstrap-icons/menu-up.d.ts +0 -5
  2798. package/bootstrap-icons/menu-up.js +0 -12
  2799. package/bootstrap-icons/messenger.d.ts +0 -5
  2800. package/bootstrap-icons/messenger.js +0 -12
  2801. package/bootstrap-icons/meta.d.ts +0 -5
  2802. package/bootstrap-icons/meta.js +0 -12
  2803. package/bootstrap-icons/mic-fill.d.ts +0 -5
  2804. package/bootstrap-icons/mic-fill.js +0 -12
  2805. package/bootstrap-icons/mic-mute-fill.d.ts +0 -5
  2806. package/bootstrap-icons/mic-mute-fill.js +0 -12
  2807. package/bootstrap-icons/mic-mute.d.ts +0 -5
  2808. package/bootstrap-icons/mic-mute.js +0 -12
  2809. package/bootstrap-icons/mic.d.ts +0 -5
  2810. package/bootstrap-icons/mic.js +0 -12
  2811. package/bootstrap-icons/microsoft.d.ts +0 -5
  2812. package/bootstrap-icons/microsoft.js +0 -12
  2813. package/bootstrap-icons/minecart-loaded.d.ts +0 -5
  2814. package/bootstrap-icons/minecart-loaded.js +0 -12
  2815. package/bootstrap-icons/minecart.d.ts +0 -5
  2816. package/bootstrap-icons/minecart.js +0 -12
  2817. package/bootstrap-icons/modem-fill.d.ts +0 -5
  2818. package/bootstrap-icons/modem-fill.js +0 -12
  2819. package/bootstrap-icons/modem.d.ts +0 -5
  2820. package/bootstrap-icons/modem.js +0 -12
  2821. package/bootstrap-icons/moisture.d.ts +0 -5
  2822. package/bootstrap-icons/moisture.js +0 -12
  2823. package/bootstrap-icons/moon-fill.d.ts +0 -5
  2824. package/bootstrap-icons/moon-fill.js +0 -12
  2825. package/bootstrap-icons/moon-stars-fill.d.ts +0 -5
  2826. package/bootstrap-icons/moon-stars-fill.js +0 -12
  2827. package/bootstrap-icons/moon-stars.d.ts +0 -5
  2828. package/bootstrap-icons/moon-stars.js +0 -12
  2829. package/bootstrap-icons/moon.d.ts +0 -5
  2830. package/bootstrap-icons/moon.js +0 -12
  2831. package/bootstrap-icons/mortarboard-fill.d.ts +0 -5
  2832. package/bootstrap-icons/mortarboard-fill.js +0 -12
  2833. package/bootstrap-icons/mortarboard.d.ts +0 -5
  2834. package/bootstrap-icons/mortarboard.js +0 -12
  2835. package/bootstrap-icons/motherboard-fill.d.ts +0 -5
  2836. package/bootstrap-icons/motherboard-fill.js +0 -12
  2837. package/bootstrap-icons/motherboard.d.ts +0 -5
  2838. package/bootstrap-icons/motherboard.js +0 -12
  2839. package/bootstrap-icons/mouse-fill.d.ts +0 -5
  2840. package/bootstrap-icons/mouse-fill.js +0 -12
  2841. package/bootstrap-icons/mouse.d.ts +0 -5
  2842. package/bootstrap-icons/mouse.js +0 -12
  2843. package/bootstrap-icons/mouse2-fill.d.ts +0 -5
  2844. package/bootstrap-icons/mouse2-fill.js +0 -12
  2845. package/bootstrap-icons/mouse2.d.ts +0 -5
  2846. package/bootstrap-icons/mouse2.js +0 -12
  2847. package/bootstrap-icons/mouse3-fill.d.ts +0 -5
  2848. package/bootstrap-icons/mouse3-fill.js +0 -12
  2849. package/bootstrap-icons/mouse3.d.ts +0 -5
  2850. package/bootstrap-icons/mouse3.js +0 -12
  2851. package/bootstrap-icons/music-note-beamed.d.ts +0 -5
  2852. package/bootstrap-icons/music-note-beamed.js +0 -12
  2853. package/bootstrap-icons/music-note-list.d.ts +0 -5
  2854. package/bootstrap-icons/music-note-list.js +0 -12
  2855. package/bootstrap-icons/music-note.d.ts +0 -5
  2856. package/bootstrap-icons/music-note.js +0 -12
  2857. package/bootstrap-icons/music-player-fill.d.ts +0 -5
  2858. package/bootstrap-icons/music-player-fill.js +0 -12
  2859. package/bootstrap-icons/music-player.d.ts +0 -5
  2860. package/bootstrap-icons/music-player.js +0 -12
  2861. package/bootstrap-icons/newspaper.d.ts +0 -5
  2862. package/bootstrap-icons/newspaper.js +0 -12
  2863. package/bootstrap-icons/nintendo-switch.d.ts +0 -5
  2864. package/bootstrap-icons/nintendo-switch.js +0 -12
  2865. package/bootstrap-icons/node-minus-fill.d.ts +0 -5
  2866. package/bootstrap-icons/node-minus-fill.js +0 -12
  2867. package/bootstrap-icons/node-minus.d.ts +0 -5
  2868. package/bootstrap-icons/node-minus.js +0 -12
  2869. package/bootstrap-icons/node-plus-fill.d.ts +0 -5
  2870. package/bootstrap-icons/node-plus-fill.js +0 -12
  2871. package/bootstrap-icons/node-plus.d.ts +0 -5
  2872. package/bootstrap-icons/node-plus.js +0 -12
  2873. package/bootstrap-icons/nut-fill.d.ts +0 -5
  2874. package/bootstrap-icons/nut-fill.js +0 -12
  2875. package/bootstrap-icons/nut.d.ts +0 -5
  2876. package/bootstrap-icons/nut.js +0 -12
  2877. package/bootstrap-icons/octagon-fill.d.ts +0 -5
  2878. package/bootstrap-icons/octagon-fill.js +0 -12
  2879. package/bootstrap-icons/octagon-half.d.ts +0 -5
  2880. package/bootstrap-icons/octagon-half.js +0 -12
  2881. package/bootstrap-icons/octagon.d.ts +0 -5
  2882. package/bootstrap-icons/octagon.js +0 -12
  2883. package/bootstrap-icons/optical-audio-fill.d.ts +0 -5
  2884. package/bootstrap-icons/optical-audio-fill.js +0 -12
  2885. package/bootstrap-icons/optical-audio.d.ts +0 -5
  2886. package/bootstrap-icons/optical-audio.js +0 -12
  2887. package/bootstrap-icons/option.d.ts +0 -5
  2888. package/bootstrap-icons/option.js +0 -12
  2889. package/bootstrap-icons/outlet.d.ts +0 -5
  2890. package/bootstrap-icons/outlet.js +0 -12
  2891. package/bootstrap-icons/paint-bucket.d.ts +0 -5
  2892. package/bootstrap-icons/paint-bucket.js +0 -12
  2893. package/bootstrap-icons/palette-fill.d.ts +0 -5
  2894. package/bootstrap-icons/palette-fill.js +0 -12
  2895. package/bootstrap-icons/palette.d.ts +0 -5
  2896. package/bootstrap-icons/palette.js +0 -12
  2897. package/bootstrap-icons/palette2.d.ts +0 -5
  2898. package/bootstrap-icons/palette2.js +0 -12
  2899. package/bootstrap-icons/paperclip.d.ts +0 -5
  2900. package/bootstrap-icons/paperclip.js +0 -12
  2901. package/bootstrap-icons/paragraph.d.ts +0 -5
  2902. package/bootstrap-icons/paragraph.js +0 -12
  2903. package/bootstrap-icons/patch-check-fill.d.ts +0 -5
  2904. package/bootstrap-icons/patch-check-fill.js +0 -12
  2905. package/bootstrap-icons/patch-check.d.ts +0 -5
  2906. package/bootstrap-icons/patch-check.js +0 -12
  2907. package/bootstrap-icons/patch-exclamation-fill.d.ts +0 -5
  2908. package/bootstrap-icons/patch-exclamation-fill.js +0 -12
  2909. package/bootstrap-icons/patch-exclamation.d.ts +0 -5
  2910. package/bootstrap-icons/patch-exclamation.js +0 -12
  2911. package/bootstrap-icons/patch-minus-fill.d.ts +0 -5
  2912. package/bootstrap-icons/patch-minus-fill.js +0 -12
  2913. package/bootstrap-icons/patch-minus.d.ts +0 -5
  2914. package/bootstrap-icons/patch-minus.js +0 -12
  2915. package/bootstrap-icons/patch-plus-fill.d.ts +0 -5
  2916. package/bootstrap-icons/patch-plus-fill.js +0 -12
  2917. package/bootstrap-icons/patch-plus.d.ts +0 -5
  2918. package/bootstrap-icons/patch-plus.js +0 -12
  2919. package/bootstrap-icons/patch-question-fill.d.ts +0 -5
  2920. package/bootstrap-icons/patch-question-fill.js +0 -12
  2921. package/bootstrap-icons/patch-question.d.ts +0 -5
  2922. package/bootstrap-icons/patch-question.js +0 -12
  2923. package/bootstrap-icons/pause-btn-fill.d.ts +0 -5
  2924. package/bootstrap-icons/pause-btn-fill.js +0 -12
  2925. package/bootstrap-icons/pause-btn.d.ts +0 -5
  2926. package/bootstrap-icons/pause-btn.js +0 -12
  2927. package/bootstrap-icons/pause-circle-fill.d.ts +0 -5
  2928. package/bootstrap-icons/pause-circle-fill.js +0 -12
  2929. package/bootstrap-icons/pause-circle.d.ts +0 -5
  2930. package/bootstrap-icons/pause-circle.js +0 -12
  2931. package/bootstrap-icons/pause-fill.d.ts +0 -5
  2932. package/bootstrap-icons/pause-fill.js +0 -12
  2933. package/bootstrap-icons/pause.d.ts +0 -5
  2934. package/bootstrap-icons/pause.js +0 -12
  2935. package/bootstrap-icons/paypal.d.ts +0 -5
  2936. package/bootstrap-icons/paypal.js +0 -12
  2937. package/bootstrap-icons/pc-display-horizontal.d.ts +0 -5
  2938. package/bootstrap-icons/pc-display-horizontal.js +0 -12
  2939. package/bootstrap-icons/pc-display.d.ts +0 -5
  2940. package/bootstrap-icons/pc-display.js +0 -12
  2941. package/bootstrap-icons/pc-horizontal.d.ts +0 -5
  2942. package/bootstrap-icons/pc-horizontal.js +0 -12
  2943. package/bootstrap-icons/pc.d.ts +0 -5
  2944. package/bootstrap-icons/pc.js +0 -12
  2945. package/bootstrap-icons/pci-card.d.ts +0 -5
  2946. package/bootstrap-icons/pci-card.js +0 -12
  2947. package/bootstrap-icons/peace-fill.d.ts +0 -5
  2948. package/bootstrap-icons/peace-fill.js +0 -12
  2949. package/bootstrap-icons/peace.d.ts +0 -5
  2950. package/bootstrap-icons/peace.js +0 -12
  2951. package/bootstrap-icons/pen-fill.d.ts +0 -5
  2952. package/bootstrap-icons/pen-fill.js +0 -12
  2953. package/bootstrap-icons/pen.d.ts +0 -5
  2954. package/bootstrap-icons/pen.js +0 -12
  2955. package/bootstrap-icons/pencil-fill.d.ts +0 -5
  2956. package/bootstrap-icons/pencil-fill.js +0 -12
  2957. package/bootstrap-icons/pencil-square.d.ts +0 -5
  2958. package/bootstrap-icons/pencil-square.js +0 -12
  2959. package/bootstrap-icons/pencil.d.ts +0 -5
  2960. package/bootstrap-icons/pencil.js +0 -12
  2961. package/bootstrap-icons/pentagon-fill.d.ts +0 -5
  2962. package/bootstrap-icons/pentagon-fill.js +0 -12
  2963. package/bootstrap-icons/pentagon-half.d.ts +0 -5
  2964. package/bootstrap-icons/pentagon-half.js +0 -12
  2965. package/bootstrap-icons/pentagon.d.ts +0 -5
  2966. package/bootstrap-icons/pentagon.js +0 -12
  2967. package/bootstrap-icons/people-fill.d.ts +0 -5
  2968. package/bootstrap-icons/people-fill.js +0 -12
  2969. package/bootstrap-icons/people.d.ts +0 -5
  2970. package/bootstrap-icons/people.js +0 -12
  2971. package/bootstrap-icons/percent.d.ts +0 -5
  2972. package/bootstrap-icons/percent.js +0 -12
  2973. package/bootstrap-icons/person-badge-fill.d.ts +0 -5
  2974. package/bootstrap-icons/person-badge-fill.js +0 -12
  2975. package/bootstrap-icons/person-badge.d.ts +0 -5
  2976. package/bootstrap-icons/person-badge.js +0 -12
  2977. package/bootstrap-icons/person-bounding-box.d.ts +0 -5
  2978. package/bootstrap-icons/person-bounding-box.js +0 -12
  2979. package/bootstrap-icons/person-check-fill.d.ts +0 -5
  2980. package/bootstrap-icons/person-check-fill.js +0 -12
  2981. package/bootstrap-icons/person-check.d.ts +0 -5
  2982. package/bootstrap-icons/person-check.js +0 -12
  2983. package/bootstrap-icons/person-circle.d.ts +0 -5
  2984. package/bootstrap-icons/person-circle.js +0 -12
  2985. package/bootstrap-icons/person-dash-fill.d.ts +0 -5
  2986. package/bootstrap-icons/person-dash-fill.js +0 -12
  2987. package/bootstrap-icons/person-dash.d.ts +0 -5
  2988. package/bootstrap-icons/person-dash.js +0 -12
  2989. package/bootstrap-icons/person-fill.d.ts +0 -5
  2990. package/bootstrap-icons/person-fill.js +0 -12
  2991. package/bootstrap-icons/person-heart.d.ts +0 -5
  2992. package/bootstrap-icons/person-heart.js +0 -12
  2993. package/bootstrap-icons/person-hearts.d.ts +0 -5
  2994. package/bootstrap-icons/person-hearts.js +0 -12
  2995. package/bootstrap-icons/person-lines-fill.d.ts +0 -5
  2996. package/bootstrap-icons/person-lines-fill.js +0 -12
  2997. package/bootstrap-icons/person-plus-fill.d.ts +0 -5
  2998. package/bootstrap-icons/person-plus-fill.js +0 -12
  2999. package/bootstrap-icons/person-plus.d.ts +0 -5
  3000. package/bootstrap-icons/person-plus.js +0 -12
  3001. package/bootstrap-icons/person-rolodex.d.ts +0 -5
  3002. package/bootstrap-icons/person-rolodex.js +0 -12
  3003. package/bootstrap-icons/person-square.d.ts +0 -5
  3004. package/bootstrap-icons/person-square.js +0 -12
  3005. package/bootstrap-icons/person-video.d.ts +0 -5
  3006. package/bootstrap-icons/person-video.js +0 -12
  3007. package/bootstrap-icons/person-video2.d.ts +0 -5
  3008. package/bootstrap-icons/person-video2.js +0 -12
  3009. package/bootstrap-icons/person-video3.d.ts +0 -5
  3010. package/bootstrap-icons/person-video3.js +0 -12
  3011. package/bootstrap-icons/person-workspace.d.ts +0 -5
  3012. package/bootstrap-icons/person-workspace.js +0 -12
  3013. package/bootstrap-icons/person-x-fill.d.ts +0 -5
  3014. package/bootstrap-icons/person-x-fill.js +0 -12
  3015. package/bootstrap-icons/person-x.d.ts +0 -5
  3016. package/bootstrap-icons/person-x.js +0 -12
  3017. package/bootstrap-icons/person.d.ts +0 -5
  3018. package/bootstrap-icons/person.js +0 -12
  3019. package/bootstrap-icons/phone-fill.d.ts +0 -5
  3020. package/bootstrap-icons/phone-fill.js +0 -12
  3021. package/bootstrap-icons/phone-flip.d.ts +0 -5
  3022. package/bootstrap-icons/phone-flip.js +0 -12
  3023. package/bootstrap-icons/phone-landscape-fill.d.ts +0 -5
  3024. package/bootstrap-icons/phone-landscape-fill.js +0 -12
  3025. package/bootstrap-icons/phone-landscape.d.ts +0 -5
  3026. package/bootstrap-icons/phone-landscape.js +0 -12
  3027. package/bootstrap-icons/phone-vibrate-fill.d.ts +0 -5
  3028. package/bootstrap-icons/phone-vibrate-fill.js +0 -12
  3029. package/bootstrap-icons/phone-vibrate.d.ts +0 -5
  3030. package/bootstrap-icons/phone-vibrate.js +0 -12
  3031. package/bootstrap-icons/phone.d.ts +0 -5
  3032. package/bootstrap-icons/phone.js +0 -12
  3033. package/bootstrap-icons/pie-chart-fill.d.ts +0 -5
  3034. package/bootstrap-icons/pie-chart-fill.js +0 -12
  3035. package/bootstrap-icons/pie-chart.d.ts +0 -5
  3036. package/bootstrap-icons/pie-chart.js +0 -12
  3037. package/bootstrap-icons/piggy-bank-fill.d.ts +0 -5
  3038. package/bootstrap-icons/piggy-bank-fill.js +0 -12
  3039. package/bootstrap-icons/piggy-bank.d.ts +0 -5
  3040. package/bootstrap-icons/piggy-bank.js +0 -12
  3041. package/bootstrap-icons/pin-angle-fill.d.ts +0 -5
  3042. package/bootstrap-icons/pin-angle-fill.js +0 -12
  3043. package/bootstrap-icons/pin-angle.d.ts +0 -5
  3044. package/bootstrap-icons/pin-angle.js +0 -12
  3045. package/bootstrap-icons/pin-fill.d.ts +0 -5
  3046. package/bootstrap-icons/pin-fill.js +0 -12
  3047. package/bootstrap-icons/pin-map-fill.d.ts +0 -5
  3048. package/bootstrap-icons/pin-map-fill.js +0 -12
  3049. package/bootstrap-icons/pin-map.d.ts +0 -5
  3050. package/bootstrap-icons/pin-map.js +0 -12
  3051. package/bootstrap-icons/pin.d.ts +0 -5
  3052. package/bootstrap-icons/pin.js +0 -12
  3053. package/bootstrap-icons/pinterest.d.ts +0 -5
  3054. package/bootstrap-icons/pinterest.js +0 -12
  3055. package/bootstrap-icons/pip-fill.d.ts +0 -5
  3056. package/bootstrap-icons/pip-fill.js +0 -12
  3057. package/bootstrap-icons/pip.d.ts +0 -5
  3058. package/bootstrap-icons/pip.js +0 -12
  3059. package/bootstrap-icons/play-btn-fill.d.ts +0 -5
  3060. package/bootstrap-icons/play-btn-fill.js +0 -12
  3061. package/bootstrap-icons/play-btn.d.ts +0 -5
  3062. package/bootstrap-icons/play-btn.js +0 -12
  3063. package/bootstrap-icons/play-circle-fill.d.ts +0 -5
  3064. package/bootstrap-icons/play-circle-fill.js +0 -12
  3065. package/bootstrap-icons/play-circle.d.ts +0 -5
  3066. package/bootstrap-icons/play-circle.js +0 -12
  3067. package/bootstrap-icons/play-fill.d.ts +0 -5
  3068. package/bootstrap-icons/play-fill.js +0 -12
  3069. package/bootstrap-icons/play.d.ts +0 -5
  3070. package/bootstrap-icons/play.js +0 -12
  3071. package/bootstrap-icons/playstation.d.ts +0 -5
  3072. package/bootstrap-icons/playstation.js +0 -12
  3073. package/bootstrap-icons/plug-fill.d.ts +0 -5
  3074. package/bootstrap-icons/plug-fill.js +0 -12
  3075. package/bootstrap-icons/plug.d.ts +0 -5
  3076. package/bootstrap-icons/plug.js +0 -12
  3077. package/bootstrap-icons/plugin.d.ts +0 -5
  3078. package/bootstrap-icons/plugin.js +0 -12
  3079. package/bootstrap-icons/plus-circle-dotted.d.ts +0 -5
  3080. package/bootstrap-icons/plus-circle-dotted.js +0 -12
  3081. package/bootstrap-icons/plus-circle-fill.d.ts +0 -5
  3082. package/bootstrap-icons/plus-circle-fill.js +0 -12
  3083. package/bootstrap-icons/plus-circle.d.ts +0 -5
  3084. package/bootstrap-icons/plus-circle.js +0 -12
  3085. package/bootstrap-icons/plus-lg.d.ts +0 -5
  3086. package/bootstrap-icons/plus-lg.js +0 -12
  3087. package/bootstrap-icons/plus-slash-minus.d.ts +0 -5
  3088. package/bootstrap-icons/plus-slash-minus.js +0 -12
  3089. package/bootstrap-icons/plus-square-dotted.d.ts +0 -5
  3090. package/bootstrap-icons/plus-square-dotted.js +0 -12
  3091. package/bootstrap-icons/plus-square-fill.d.ts +0 -5
  3092. package/bootstrap-icons/plus-square-fill.js +0 -12
  3093. package/bootstrap-icons/plus-square.d.ts +0 -5
  3094. package/bootstrap-icons/plus-square.js +0 -12
  3095. package/bootstrap-icons/plus.d.ts +0 -5
  3096. package/bootstrap-icons/plus.js +0 -12
  3097. package/bootstrap-icons/postage-fill.d.ts +0 -5
  3098. package/bootstrap-icons/postage-fill.js +0 -12
  3099. package/bootstrap-icons/postage-heart-fill.d.ts +0 -5
  3100. package/bootstrap-icons/postage-heart-fill.js +0 -12
  3101. package/bootstrap-icons/postage-heart.d.ts +0 -5
  3102. package/bootstrap-icons/postage-heart.js +0 -12
  3103. package/bootstrap-icons/postage.d.ts +0 -5
  3104. package/bootstrap-icons/postage.js +0 -12
  3105. package/bootstrap-icons/postcard-fill.d.ts +0 -5
  3106. package/bootstrap-icons/postcard-fill.js +0 -12
  3107. package/bootstrap-icons/postcard-heart-fill.d.ts +0 -5
  3108. package/bootstrap-icons/postcard-heart-fill.js +0 -12
  3109. package/bootstrap-icons/postcard-heart.d.ts +0 -5
  3110. package/bootstrap-icons/postcard-heart.js +0 -12
  3111. package/bootstrap-icons/postcard.d.ts +0 -5
  3112. package/bootstrap-icons/postcard.js +0 -12
  3113. package/bootstrap-icons/power.d.ts +0 -5
  3114. package/bootstrap-icons/power.js +0 -12
  3115. package/bootstrap-icons/printer-fill.d.ts +0 -5
  3116. package/bootstrap-icons/printer-fill.js +0 -12
  3117. package/bootstrap-icons/printer.d.ts +0 -5
  3118. package/bootstrap-icons/printer.js +0 -12
  3119. package/bootstrap-icons/projector-fill.d.ts +0 -5
  3120. package/bootstrap-icons/projector-fill.js +0 -12
  3121. package/bootstrap-icons/projector.d.ts +0 -5
  3122. package/bootstrap-icons/projector.js +0 -12
  3123. package/bootstrap-icons/puzzle-fill.d.ts +0 -5
  3124. package/bootstrap-icons/puzzle-fill.js +0 -12
  3125. package/bootstrap-icons/puzzle.d.ts +0 -5
  3126. package/bootstrap-icons/puzzle.js +0 -12
  3127. package/bootstrap-icons/qr-code-scan.d.ts +0 -5
  3128. package/bootstrap-icons/qr-code-scan.js +0 -12
  3129. package/bootstrap-icons/qr-code.d.ts +0 -5
  3130. package/bootstrap-icons/qr-code.js +0 -12
  3131. package/bootstrap-icons/question-circle-fill.d.ts +0 -5
  3132. package/bootstrap-icons/question-circle-fill.js +0 -12
  3133. package/bootstrap-icons/question-circle.d.ts +0 -5
  3134. package/bootstrap-icons/question-circle.js +0 -12
  3135. package/bootstrap-icons/question-diamond-fill.d.ts +0 -5
  3136. package/bootstrap-icons/question-diamond-fill.js +0 -12
  3137. package/bootstrap-icons/question-diamond.d.ts +0 -5
  3138. package/bootstrap-icons/question-diamond.js +0 -12
  3139. package/bootstrap-icons/question-lg.d.ts +0 -5
  3140. package/bootstrap-icons/question-lg.js +0 -12
  3141. package/bootstrap-icons/question-octagon-fill.d.ts +0 -5
  3142. package/bootstrap-icons/question-octagon-fill.js +0 -12
  3143. package/bootstrap-icons/question-octagon.d.ts +0 -5
  3144. package/bootstrap-icons/question-octagon.js +0 -12
  3145. package/bootstrap-icons/question-square-fill.d.ts +0 -5
  3146. package/bootstrap-icons/question-square-fill.js +0 -12
  3147. package/bootstrap-icons/question-square.d.ts +0 -5
  3148. package/bootstrap-icons/question-square.js +0 -12
  3149. package/bootstrap-icons/question.d.ts +0 -5
  3150. package/bootstrap-icons/question.js +0 -12
  3151. package/bootstrap-icons/quora.d.ts +0 -5
  3152. package/bootstrap-icons/quora.js +0 -12
  3153. package/bootstrap-icons/quote.d.ts +0 -5
  3154. package/bootstrap-icons/quote.js +0 -12
  3155. package/bootstrap-icons/radioactive.d.ts +0 -5
  3156. package/bootstrap-icons/radioactive.js +0 -12
  3157. package/bootstrap-icons/rainbow.d.ts +0 -5
  3158. package/bootstrap-icons/rainbow.js +0 -12
  3159. package/bootstrap-icons/receipt-cutoff.d.ts +0 -5
  3160. package/bootstrap-icons/receipt-cutoff.js +0 -12
  3161. package/bootstrap-icons/receipt.d.ts +0 -5
  3162. package/bootstrap-icons/receipt.js +0 -12
  3163. package/bootstrap-icons/reception-0.d.ts +0 -5
  3164. package/bootstrap-icons/reception-0.js +0 -12
  3165. package/bootstrap-icons/reception-1.d.ts +0 -5
  3166. package/bootstrap-icons/reception-1.js +0 -12
  3167. package/bootstrap-icons/reception-2.d.ts +0 -5
  3168. package/bootstrap-icons/reception-2.js +0 -12
  3169. package/bootstrap-icons/reception-3.d.ts +0 -5
  3170. package/bootstrap-icons/reception-3.js +0 -12
  3171. package/bootstrap-icons/reception-4.d.ts +0 -5
  3172. package/bootstrap-icons/reception-4.js +0 -12
  3173. package/bootstrap-icons/record-btn-fill.d.ts +0 -5
  3174. package/bootstrap-icons/record-btn-fill.js +0 -12
  3175. package/bootstrap-icons/record-btn.d.ts +0 -5
  3176. package/bootstrap-icons/record-btn.js +0 -12
  3177. package/bootstrap-icons/record-circle-fill.d.ts +0 -5
  3178. package/bootstrap-icons/record-circle-fill.js +0 -12
  3179. package/bootstrap-icons/record-circle.d.ts +0 -5
  3180. package/bootstrap-icons/record-circle.js +0 -12
  3181. package/bootstrap-icons/record-fill.d.ts +0 -5
  3182. package/bootstrap-icons/record-fill.js +0 -12
  3183. package/bootstrap-icons/record.d.ts +0 -5
  3184. package/bootstrap-icons/record.js +0 -12
  3185. package/bootstrap-icons/record2-fill.d.ts +0 -5
  3186. package/bootstrap-icons/record2-fill.js +0 -12
  3187. package/bootstrap-icons/record2.d.ts +0 -5
  3188. package/bootstrap-icons/record2.js +0 -12
  3189. package/bootstrap-icons/recycle.d.ts +0 -5
  3190. package/bootstrap-icons/recycle.js +0 -12
  3191. package/bootstrap-icons/reddit.d.ts +0 -5
  3192. package/bootstrap-icons/reddit.js +0 -12
  3193. package/bootstrap-icons/reply-all-fill.d.ts +0 -5
  3194. package/bootstrap-icons/reply-all-fill.js +0 -12
  3195. package/bootstrap-icons/reply-all.d.ts +0 -5
  3196. package/bootstrap-icons/reply-all.js +0 -12
  3197. package/bootstrap-icons/reply-fill.d.ts +0 -5
  3198. package/bootstrap-icons/reply-fill.js +0 -12
  3199. package/bootstrap-icons/reply.d.ts +0 -5
  3200. package/bootstrap-icons/reply.js +0 -12
  3201. package/bootstrap-icons/robot.d.ts +0 -5
  3202. package/bootstrap-icons/robot.js +0 -12
  3203. package/bootstrap-icons/router-fill.d.ts +0 -5
  3204. package/bootstrap-icons/router-fill.js +0 -12
  3205. package/bootstrap-icons/router.d.ts +0 -5
  3206. package/bootstrap-icons/router.js +0 -12
  3207. package/bootstrap-icons/rss-fill.d.ts +0 -5
  3208. package/bootstrap-icons/rss-fill.js +0 -12
  3209. package/bootstrap-icons/rss.d.ts +0 -5
  3210. package/bootstrap-icons/rss.js +0 -12
  3211. package/bootstrap-icons/rulers.d.ts +0 -5
  3212. package/bootstrap-icons/rulers.js +0 -12
  3213. package/bootstrap-icons/safe-fill.d.ts +0 -5
  3214. package/bootstrap-icons/safe-fill.js +0 -12
  3215. package/bootstrap-icons/safe.d.ts +0 -5
  3216. package/bootstrap-icons/safe.js +0 -12
  3217. package/bootstrap-icons/safe2-fill.d.ts +0 -5
  3218. package/bootstrap-icons/safe2-fill.js +0 -12
  3219. package/bootstrap-icons/safe2.d.ts +0 -5
  3220. package/bootstrap-icons/safe2.js +0 -12
  3221. package/bootstrap-icons/save-fill.d.ts +0 -5
  3222. package/bootstrap-icons/save-fill.js +0 -12
  3223. package/bootstrap-icons/save.d.ts +0 -5
  3224. package/bootstrap-icons/save.js +0 -12
  3225. package/bootstrap-icons/save2-fill.d.ts +0 -5
  3226. package/bootstrap-icons/save2-fill.js +0 -12
  3227. package/bootstrap-icons/save2.d.ts +0 -5
  3228. package/bootstrap-icons/save2.js +0 -12
  3229. package/bootstrap-icons/scissors.d.ts +0 -5
  3230. package/bootstrap-icons/scissors.js +0 -12
  3231. package/bootstrap-icons/screwdriver.d.ts +0 -5
  3232. package/bootstrap-icons/screwdriver.js +0 -12
  3233. package/bootstrap-icons/sd-card-fill.d.ts +0 -5
  3234. package/bootstrap-icons/sd-card-fill.js +0 -12
  3235. package/bootstrap-icons/sd-card.d.ts +0 -5
  3236. package/bootstrap-icons/sd-card.js +0 -12
  3237. package/bootstrap-icons/search-heart-fill.d.ts +0 -5
  3238. package/bootstrap-icons/search-heart-fill.js +0 -12
  3239. package/bootstrap-icons/search-heart.d.ts +0 -5
  3240. package/bootstrap-icons/search-heart.js +0 -12
  3241. package/bootstrap-icons/search.d.ts +0 -5
  3242. package/bootstrap-icons/search.js +0 -12
  3243. package/bootstrap-icons/segmented-nav.d.ts +0 -5
  3244. package/bootstrap-icons/segmented-nav.js +0 -12
  3245. package/bootstrap-icons/send-check-fill.d.ts +0 -5
  3246. package/bootstrap-icons/send-check-fill.js +0 -12
  3247. package/bootstrap-icons/send-check.d.ts +0 -5
  3248. package/bootstrap-icons/send-check.js +0 -12
  3249. package/bootstrap-icons/send-dash-fill.d.ts +0 -5
  3250. package/bootstrap-icons/send-dash-fill.js +0 -12
  3251. package/bootstrap-icons/send-dash.d.ts +0 -5
  3252. package/bootstrap-icons/send-dash.js +0 -12
  3253. package/bootstrap-icons/send-exclamation-fill.d.ts +0 -5
  3254. package/bootstrap-icons/send-exclamation-fill.js +0 -12
  3255. package/bootstrap-icons/send-exclamation.d.ts +0 -5
  3256. package/bootstrap-icons/send-exclamation.js +0 -12
  3257. package/bootstrap-icons/send-fill.d.ts +0 -5
  3258. package/bootstrap-icons/send-fill.js +0 -12
  3259. package/bootstrap-icons/send-plus-fill.d.ts +0 -5
  3260. package/bootstrap-icons/send-plus-fill.js +0 -12
  3261. package/bootstrap-icons/send-plus.d.ts +0 -5
  3262. package/bootstrap-icons/send-plus.js +0 -12
  3263. package/bootstrap-icons/send-slash-fill.d.ts +0 -5
  3264. package/bootstrap-icons/send-slash-fill.js +0 -12
  3265. package/bootstrap-icons/send-slash.d.ts +0 -5
  3266. package/bootstrap-icons/send-slash.js +0 -12
  3267. package/bootstrap-icons/send-x-fill.d.ts +0 -5
  3268. package/bootstrap-icons/send-x-fill.js +0 -12
  3269. package/bootstrap-icons/send-x.d.ts +0 -5
  3270. package/bootstrap-icons/send-x.js +0 -12
  3271. package/bootstrap-icons/send.d.ts +0 -5
  3272. package/bootstrap-icons/send.js +0 -12
  3273. package/bootstrap-icons/server.d.ts +0 -5
  3274. package/bootstrap-icons/server.js +0 -12
  3275. package/bootstrap-icons/share-fill.d.ts +0 -5
  3276. package/bootstrap-icons/share-fill.js +0 -12
  3277. package/bootstrap-icons/share.d.ts +0 -5
  3278. package/bootstrap-icons/share.js +0 -12
  3279. package/bootstrap-icons/shield-check.d.ts +0 -5
  3280. package/bootstrap-icons/shield-check.js +0 -12
  3281. package/bootstrap-icons/shield-exclamation.d.ts +0 -5
  3282. package/bootstrap-icons/shield-exclamation.js +0 -12
  3283. package/bootstrap-icons/shield-fill-check.d.ts +0 -5
  3284. package/bootstrap-icons/shield-fill-check.js +0 -12
  3285. package/bootstrap-icons/shield-fill-exclamation.d.ts +0 -5
  3286. package/bootstrap-icons/shield-fill-exclamation.js +0 -12
  3287. package/bootstrap-icons/shield-fill-minus.d.ts +0 -5
  3288. package/bootstrap-icons/shield-fill-minus.js +0 -12
  3289. package/bootstrap-icons/shield-fill-plus.d.ts +0 -5
  3290. package/bootstrap-icons/shield-fill-plus.js +0 -12
  3291. package/bootstrap-icons/shield-fill-x.d.ts +0 -5
  3292. package/bootstrap-icons/shield-fill-x.js +0 -12
  3293. package/bootstrap-icons/shield-fill.d.ts +0 -5
  3294. package/bootstrap-icons/shield-fill.js +0 -12
  3295. package/bootstrap-icons/shield-lock-fill.d.ts +0 -5
  3296. package/bootstrap-icons/shield-lock-fill.js +0 -12
  3297. package/bootstrap-icons/shield-lock.d.ts +0 -5
  3298. package/bootstrap-icons/shield-lock.js +0 -12
  3299. package/bootstrap-icons/shield-minus.d.ts +0 -5
  3300. package/bootstrap-icons/shield-minus.js +0 -12
  3301. package/bootstrap-icons/shield-plus.d.ts +0 -5
  3302. package/bootstrap-icons/shield-plus.js +0 -12
  3303. package/bootstrap-icons/shield-shaded.d.ts +0 -5
  3304. package/bootstrap-icons/shield-shaded.js +0 -12
  3305. package/bootstrap-icons/shield-slash-fill.d.ts +0 -5
  3306. package/bootstrap-icons/shield-slash-fill.js +0 -12
  3307. package/bootstrap-icons/shield-slash.d.ts +0 -5
  3308. package/bootstrap-icons/shield-slash.js +0 -12
  3309. package/bootstrap-icons/shield-x.d.ts +0 -5
  3310. package/bootstrap-icons/shield-x.js +0 -12
  3311. package/bootstrap-icons/shield.d.ts +0 -5
  3312. package/bootstrap-icons/shield.js +0 -12
  3313. package/bootstrap-icons/shift-fill.d.ts +0 -5
  3314. package/bootstrap-icons/shift-fill.js +0 -12
  3315. package/bootstrap-icons/shift.d.ts +0 -5
  3316. package/bootstrap-icons/shift.js +0 -12
  3317. package/bootstrap-icons/shop-window.d.ts +0 -5
  3318. package/bootstrap-icons/shop-window.js +0 -12
  3319. package/bootstrap-icons/shop.d.ts +0 -5
  3320. package/bootstrap-icons/shop.js +0 -12
  3321. package/bootstrap-icons/shuffle.d.ts +0 -5
  3322. package/bootstrap-icons/shuffle.js +0 -12
  3323. package/bootstrap-icons/signal.d.ts +0 -5
  3324. package/bootstrap-icons/signal.js +0 -12
  3325. package/bootstrap-icons/signpost-2-fill.d.ts +0 -5
  3326. package/bootstrap-icons/signpost-2-fill.js +0 -12
  3327. package/bootstrap-icons/signpost-2.d.ts +0 -5
  3328. package/bootstrap-icons/signpost-2.js +0 -12
  3329. package/bootstrap-icons/signpost-fill.d.ts +0 -5
  3330. package/bootstrap-icons/signpost-fill.js +0 -12
  3331. package/bootstrap-icons/signpost-split-fill.d.ts +0 -5
  3332. package/bootstrap-icons/signpost-split-fill.js +0 -12
  3333. package/bootstrap-icons/signpost-split.d.ts +0 -5
  3334. package/bootstrap-icons/signpost-split.js +0 -12
  3335. package/bootstrap-icons/signpost.d.ts +0 -5
  3336. package/bootstrap-icons/signpost.js +0 -12
  3337. package/bootstrap-icons/sim-fill.d.ts +0 -5
  3338. package/bootstrap-icons/sim-fill.js +0 -12
  3339. package/bootstrap-icons/sim.d.ts +0 -5
  3340. package/bootstrap-icons/sim.js +0 -12
  3341. package/bootstrap-icons/skip-backward-btn-fill.d.ts +0 -5
  3342. package/bootstrap-icons/skip-backward-btn-fill.js +0 -12
  3343. package/bootstrap-icons/skip-backward-btn.d.ts +0 -5
  3344. package/bootstrap-icons/skip-backward-btn.js +0 -12
  3345. package/bootstrap-icons/skip-backward-circle-fill.d.ts +0 -5
  3346. package/bootstrap-icons/skip-backward-circle-fill.js +0 -12
  3347. package/bootstrap-icons/skip-backward-circle.d.ts +0 -5
  3348. package/bootstrap-icons/skip-backward-circle.js +0 -12
  3349. package/bootstrap-icons/skip-backward-fill.d.ts +0 -5
  3350. package/bootstrap-icons/skip-backward-fill.js +0 -12
  3351. package/bootstrap-icons/skip-backward.d.ts +0 -5
  3352. package/bootstrap-icons/skip-backward.js +0 -12
  3353. package/bootstrap-icons/skip-end-btn-fill.d.ts +0 -5
  3354. package/bootstrap-icons/skip-end-btn-fill.js +0 -12
  3355. package/bootstrap-icons/skip-end-btn.d.ts +0 -5
  3356. package/bootstrap-icons/skip-end-btn.js +0 -12
  3357. package/bootstrap-icons/skip-end-circle-fill.d.ts +0 -5
  3358. package/bootstrap-icons/skip-end-circle-fill.js +0 -12
  3359. package/bootstrap-icons/skip-end-circle.d.ts +0 -5
  3360. package/bootstrap-icons/skip-end-circle.js +0 -12
  3361. package/bootstrap-icons/skip-end-fill.d.ts +0 -5
  3362. package/bootstrap-icons/skip-end-fill.js +0 -12
  3363. package/bootstrap-icons/skip-end.d.ts +0 -5
  3364. package/bootstrap-icons/skip-end.js +0 -12
  3365. package/bootstrap-icons/skip-forward-btn-fill.d.ts +0 -5
  3366. package/bootstrap-icons/skip-forward-btn-fill.js +0 -12
  3367. package/bootstrap-icons/skip-forward-btn.d.ts +0 -5
  3368. package/bootstrap-icons/skip-forward-btn.js +0 -12
  3369. package/bootstrap-icons/skip-forward-circle-fill.d.ts +0 -5
  3370. package/bootstrap-icons/skip-forward-circle-fill.js +0 -12
  3371. package/bootstrap-icons/skip-forward-circle.d.ts +0 -5
  3372. package/bootstrap-icons/skip-forward-circle.js +0 -12
  3373. package/bootstrap-icons/skip-forward-fill.d.ts +0 -5
  3374. package/bootstrap-icons/skip-forward-fill.js +0 -12
  3375. package/bootstrap-icons/skip-forward.d.ts +0 -5
  3376. package/bootstrap-icons/skip-forward.js +0 -12
  3377. package/bootstrap-icons/skip-start-btn-fill.d.ts +0 -5
  3378. package/bootstrap-icons/skip-start-btn-fill.js +0 -12
  3379. package/bootstrap-icons/skip-start-btn.d.ts +0 -5
  3380. package/bootstrap-icons/skip-start-btn.js +0 -12
  3381. package/bootstrap-icons/skip-start-circle-fill.d.ts +0 -5
  3382. package/bootstrap-icons/skip-start-circle-fill.js +0 -12
  3383. package/bootstrap-icons/skip-start-circle.d.ts +0 -5
  3384. package/bootstrap-icons/skip-start-circle.js +0 -12
  3385. package/bootstrap-icons/skip-start-fill.d.ts +0 -5
  3386. package/bootstrap-icons/skip-start-fill.js +0 -12
  3387. package/bootstrap-icons/skip-start.d.ts +0 -5
  3388. package/bootstrap-icons/skip-start.js +0 -12
  3389. package/bootstrap-icons/skype.d.ts +0 -5
  3390. package/bootstrap-icons/skype.js +0 -12
  3391. package/bootstrap-icons/slack.d.ts +0 -5
  3392. package/bootstrap-icons/slack.js +0 -12
  3393. package/bootstrap-icons/slash-circle-fill.d.ts +0 -5
  3394. package/bootstrap-icons/slash-circle-fill.js +0 -12
  3395. package/bootstrap-icons/slash-circle.d.ts +0 -5
  3396. package/bootstrap-icons/slash-circle.js +0 -12
  3397. package/bootstrap-icons/slash-lg.d.ts +0 -5
  3398. package/bootstrap-icons/slash-lg.js +0 -12
  3399. package/bootstrap-icons/slash-square-fill.d.ts +0 -5
  3400. package/bootstrap-icons/slash-square-fill.js +0 -12
  3401. package/bootstrap-icons/slash-square.d.ts +0 -5
  3402. package/bootstrap-icons/slash-square.js +0 -12
  3403. package/bootstrap-icons/slash.d.ts +0 -5
  3404. package/bootstrap-icons/slash.js +0 -12
  3405. package/bootstrap-icons/sliders.d.ts +0 -5
  3406. package/bootstrap-icons/sliders.js +0 -12
  3407. package/bootstrap-icons/sliders2-vertical.d.ts +0 -5
  3408. package/bootstrap-icons/sliders2-vertical.js +0 -12
  3409. package/bootstrap-icons/sliders2.d.ts +0 -5
  3410. package/bootstrap-icons/sliders2.js +0 -12
  3411. package/bootstrap-icons/smartwatch.d.ts +0 -5
  3412. package/bootstrap-icons/smartwatch.js +0 -12
  3413. package/bootstrap-icons/snapchat.d.ts +0 -5
  3414. package/bootstrap-icons/snapchat.js +0 -12
  3415. package/bootstrap-icons/snow.d.ts +0 -5
  3416. package/bootstrap-icons/snow.js +0 -12
  3417. package/bootstrap-icons/snow2.d.ts +0 -5
  3418. package/bootstrap-icons/snow2.js +0 -12
  3419. package/bootstrap-icons/snow3.d.ts +0 -5
  3420. package/bootstrap-icons/snow3.js +0 -12
  3421. package/bootstrap-icons/sort-alpha-down-alt.d.ts +0 -5
  3422. package/bootstrap-icons/sort-alpha-down-alt.js +0 -12
  3423. package/bootstrap-icons/sort-alpha-down.d.ts +0 -5
  3424. package/bootstrap-icons/sort-alpha-down.js +0 -12
  3425. package/bootstrap-icons/sort-alpha-up-alt.d.ts +0 -5
  3426. package/bootstrap-icons/sort-alpha-up-alt.js +0 -12
  3427. package/bootstrap-icons/sort-alpha-up.d.ts +0 -5
  3428. package/bootstrap-icons/sort-alpha-up.js +0 -12
  3429. package/bootstrap-icons/sort-down-alt.d.ts +0 -5
  3430. package/bootstrap-icons/sort-down-alt.js +0 -12
  3431. package/bootstrap-icons/sort-down.d.ts +0 -5
  3432. package/bootstrap-icons/sort-down.js +0 -12
  3433. package/bootstrap-icons/sort-numeric-down-alt.d.ts +0 -5
  3434. package/bootstrap-icons/sort-numeric-down-alt.js +0 -12
  3435. package/bootstrap-icons/sort-numeric-down.d.ts +0 -5
  3436. package/bootstrap-icons/sort-numeric-down.js +0 -12
  3437. package/bootstrap-icons/sort-numeric-up-alt.d.ts +0 -5
  3438. package/bootstrap-icons/sort-numeric-up-alt.js +0 -12
  3439. package/bootstrap-icons/sort-numeric-up.d.ts +0 -5
  3440. package/bootstrap-icons/sort-numeric-up.js +0 -12
  3441. package/bootstrap-icons/sort-up-alt.d.ts +0 -5
  3442. package/bootstrap-icons/sort-up-alt.js +0 -12
  3443. package/bootstrap-icons/sort-up.d.ts +0 -5
  3444. package/bootstrap-icons/sort-up.js +0 -12
  3445. package/bootstrap-icons/soundwave.d.ts +0 -5
  3446. package/bootstrap-icons/soundwave.js +0 -12
  3447. package/bootstrap-icons/speaker-fill.d.ts +0 -5
  3448. package/bootstrap-icons/speaker-fill.js +0 -12
  3449. package/bootstrap-icons/speaker.d.ts +0 -5
  3450. package/bootstrap-icons/speaker.js +0 -12
  3451. package/bootstrap-icons/speedometer.d.ts +0 -5
  3452. package/bootstrap-icons/speedometer.js +0 -12
  3453. package/bootstrap-icons/speedometer2.d.ts +0 -5
  3454. package/bootstrap-icons/speedometer2.js +0 -12
  3455. package/bootstrap-icons/spellcheck.d.ts +0 -5
  3456. package/bootstrap-icons/spellcheck.js +0 -12
  3457. package/bootstrap-icons/spotify.d.ts +0 -5
  3458. package/bootstrap-icons/spotify.js +0 -12
  3459. package/bootstrap-icons/square-fill.d.ts +0 -5
  3460. package/bootstrap-icons/square-fill.js +0 -12
  3461. package/bootstrap-icons/square-half.d.ts +0 -5
  3462. package/bootstrap-icons/square-half.js +0 -12
  3463. package/bootstrap-icons/square.d.ts +0 -5
  3464. package/bootstrap-icons/square.js +0 -12
  3465. package/bootstrap-icons/stack-overflow.d.ts +0 -5
  3466. package/bootstrap-icons/stack-overflow.js +0 -12
  3467. package/bootstrap-icons/stack.d.ts +0 -5
  3468. package/bootstrap-icons/stack.js +0 -12
  3469. package/bootstrap-icons/star-fill.d.ts +0 -5
  3470. package/bootstrap-icons/star-fill.js +0 -12
  3471. package/bootstrap-icons/star-half.d.ts +0 -5
  3472. package/bootstrap-icons/star-half.js +0 -12
  3473. package/bootstrap-icons/star.d.ts +0 -5
  3474. package/bootstrap-icons/star.js +0 -12
  3475. package/bootstrap-icons/stars.d.ts +0 -5
  3476. package/bootstrap-icons/stars.js +0 -12
  3477. package/bootstrap-icons/steam.d.ts +0 -5
  3478. package/bootstrap-icons/steam.js +0 -12
  3479. package/bootstrap-icons/stickies-fill.d.ts +0 -5
  3480. package/bootstrap-icons/stickies-fill.js +0 -12
  3481. package/bootstrap-icons/stickies.d.ts +0 -5
  3482. package/bootstrap-icons/stickies.js +0 -12
  3483. package/bootstrap-icons/sticky-fill.d.ts +0 -5
  3484. package/bootstrap-icons/sticky-fill.js +0 -12
  3485. package/bootstrap-icons/sticky.d.ts +0 -5
  3486. package/bootstrap-icons/sticky.js +0 -12
  3487. package/bootstrap-icons/stop-btn-fill.d.ts +0 -5
  3488. package/bootstrap-icons/stop-btn-fill.js +0 -12
  3489. package/bootstrap-icons/stop-btn.d.ts +0 -5
  3490. package/bootstrap-icons/stop-btn.js +0 -12
  3491. package/bootstrap-icons/stop-circle-fill.d.ts +0 -5
  3492. package/bootstrap-icons/stop-circle-fill.js +0 -12
  3493. package/bootstrap-icons/stop-circle.d.ts +0 -5
  3494. package/bootstrap-icons/stop-circle.js +0 -12
  3495. package/bootstrap-icons/stop-fill.d.ts +0 -5
  3496. package/bootstrap-icons/stop-fill.js +0 -12
  3497. package/bootstrap-icons/stop.d.ts +0 -5
  3498. package/bootstrap-icons/stop.js +0 -12
  3499. package/bootstrap-icons/stoplights-fill.d.ts +0 -5
  3500. package/bootstrap-icons/stoplights-fill.js +0 -12
  3501. package/bootstrap-icons/stoplights.d.ts +0 -5
  3502. package/bootstrap-icons/stoplights.js +0 -12
  3503. package/bootstrap-icons/stopwatch-fill.d.ts +0 -5
  3504. package/bootstrap-icons/stopwatch-fill.js +0 -12
  3505. package/bootstrap-icons/stopwatch.d.ts +0 -5
  3506. package/bootstrap-icons/stopwatch.js +0 -12
  3507. package/bootstrap-icons/strava.d.ts +0 -5
  3508. package/bootstrap-icons/strava.js +0 -12
  3509. package/bootstrap-icons/subtract.d.ts +0 -5
  3510. package/bootstrap-icons/subtract.js +0 -12
  3511. package/bootstrap-icons/suit-club-fill.d.ts +0 -5
  3512. package/bootstrap-icons/suit-club-fill.js +0 -12
  3513. package/bootstrap-icons/suit-club.d.ts +0 -5
  3514. package/bootstrap-icons/suit-club.js +0 -12
  3515. package/bootstrap-icons/suit-diamond-fill.d.ts +0 -5
  3516. package/bootstrap-icons/suit-diamond-fill.js +0 -12
  3517. package/bootstrap-icons/suit-diamond.d.ts +0 -5
  3518. package/bootstrap-icons/suit-diamond.js +0 -12
  3519. package/bootstrap-icons/suit-heart-fill.d.ts +0 -5
  3520. package/bootstrap-icons/suit-heart-fill.js +0 -12
  3521. package/bootstrap-icons/suit-heart.d.ts +0 -5
  3522. package/bootstrap-icons/suit-heart.js +0 -12
  3523. package/bootstrap-icons/suit-spade-fill.d.ts +0 -5
  3524. package/bootstrap-icons/suit-spade-fill.js +0 -12
  3525. package/bootstrap-icons/suit-spade.d.ts +0 -5
  3526. package/bootstrap-icons/suit-spade.js +0 -12
  3527. package/bootstrap-icons/sun-fill.d.ts +0 -5
  3528. package/bootstrap-icons/sun-fill.js +0 -12
  3529. package/bootstrap-icons/sun.d.ts +0 -5
  3530. package/bootstrap-icons/sun.js +0 -12
  3531. package/bootstrap-icons/sunglasses.d.ts +0 -5
  3532. package/bootstrap-icons/sunglasses.js +0 -12
  3533. package/bootstrap-icons/sunrise-fill.d.ts +0 -5
  3534. package/bootstrap-icons/sunrise-fill.js +0 -12
  3535. package/bootstrap-icons/sunrise.d.ts +0 -5
  3536. package/bootstrap-icons/sunrise.js +0 -12
  3537. package/bootstrap-icons/sunset-fill.d.ts +0 -5
  3538. package/bootstrap-icons/sunset-fill.js +0 -12
  3539. package/bootstrap-icons/sunset.d.ts +0 -5
  3540. package/bootstrap-icons/sunset.js +0 -12
  3541. package/bootstrap-icons/symmetry-horizontal.d.ts +0 -5
  3542. package/bootstrap-icons/symmetry-horizontal.js +0 -12
  3543. package/bootstrap-icons/symmetry-vertical.d.ts +0 -5
  3544. package/bootstrap-icons/symmetry-vertical.js +0 -12
  3545. package/bootstrap-icons/table.d.ts +0 -5
  3546. package/bootstrap-icons/table.js +0 -12
  3547. package/bootstrap-icons/tablet-fill.d.ts +0 -5
  3548. package/bootstrap-icons/tablet-fill.js +0 -12
  3549. package/bootstrap-icons/tablet-landscape-fill.d.ts +0 -5
  3550. package/bootstrap-icons/tablet-landscape-fill.js +0 -12
  3551. package/bootstrap-icons/tablet-landscape.d.ts +0 -5
  3552. package/bootstrap-icons/tablet-landscape.js +0 -12
  3553. package/bootstrap-icons/tablet.d.ts +0 -5
  3554. package/bootstrap-icons/tablet.js +0 -12
  3555. package/bootstrap-icons/tag-fill.d.ts +0 -5
  3556. package/bootstrap-icons/tag-fill.js +0 -12
  3557. package/bootstrap-icons/tag.d.ts +0 -5
  3558. package/bootstrap-icons/tag.js +0 -12
  3559. package/bootstrap-icons/tags-fill.d.ts +0 -5
  3560. package/bootstrap-icons/tags-fill.js +0 -12
  3561. package/bootstrap-icons/tags.d.ts +0 -5
  3562. package/bootstrap-icons/tags.js +0 -12
  3563. package/bootstrap-icons/telegram.d.ts +0 -5
  3564. package/bootstrap-icons/telegram.js +0 -12
  3565. package/bootstrap-icons/telephone-fill.d.ts +0 -5
  3566. package/bootstrap-icons/telephone-fill.js +0 -12
  3567. package/bootstrap-icons/telephone-forward-fill.d.ts +0 -5
  3568. package/bootstrap-icons/telephone-forward-fill.js +0 -12
  3569. package/bootstrap-icons/telephone-forward.d.ts +0 -5
  3570. package/bootstrap-icons/telephone-forward.js +0 -12
  3571. package/bootstrap-icons/telephone-inbound-fill.d.ts +0 -5
  3572. package/bootstrap-icons/telephone-inbound-fill.js +0 -12
  3573. package/bootstrap-icons/telephone-inbound.d.ts +0 -5
  3574. package/bootstrap-icons/telephone-inbound.js +0 -12
  3575. package/bootstrap-icons/telephone-minus-fill.d.ts +0 -5
  3576. package/bootstrap-icons/telephone-minus-fill.js +0 -12
  3577. package/bootstrap-icons/telephone-minus.d.ts +0 -5
  3578. package/bootstrap-icons/telephone-minus.js +0 -12
  3579. package/bootstrap-icons/telephone-outbound-fill.d.ts +0 -5
  3580. package/bootstrap-icons/telephone-outbound-fill.js +0 -12
  3581. package/bootstrap-icons/telephone-outbound.d.ts +0 -5
  3582. package/bootstrap-icons/telephone-outbound.js +0 -12
  3583. package/bootstrap-icons/telephone-plus-fill.d.ts +0 -5
  3584. package/bootstrap-icons/telephone-plus-fill.js +0 -12
  3585. package/bootstrap-icons/telephone-plus.d.ts +0 -5
  3586. package/bootstrap-icons/telephone-plus.js +0 -12
  3587. package/bootstrap-icons/telephone-x-fill.d.ts +0 -5
  3588. package/bootstrap-icons/telephone-x-fill.js +0 -12
  3589. package/bootstrap-icons/telephone-x.d.ts +0 -5
  3590. package/bootstrap-icons/telephone-x.js +0 -12
  3591. package/bootstrap-icons/telephone.d.ts +0 -5
  3592. package/bootstrap-icons/telephone.js +0 -12
  3593. package/bootstrap-icons/terminal-dash.d.ts +0 -5
  3594. package/bootstrap-icons/terminal-dash.js +0 -12
  3595. package/bootstrap-icons/terminal-fill.d.ts +0 -5
  3596. package/bootstrap-icons/terminal-fill.js +0 -12
  3597. package/bootstrap-icons/terminal-plus.d.ts +0 -5
  3598. package/bootstrap-icons/terminal-plus.js +0 -12
  3599. package/bootstrap-icons/terminal-split.d.ts +0 -5
  3600. package/bootstrap-icons/terminal-split.js +0 -12
  3601. package/bootstrap-icons/terminal-x.d.ts +0 -5
  3602. package/bootstrap-icons/terminal-x.js +0 -12
  3603. package/bootstrap-icons/terminal.d.ts +0 -5
  3604. package/bootstrap-icons/terminal.js +0 -12
  3605. package/bootstrap-icons/text-center.d.ts +0 -5
  3606. package/bootstrap-icons/text-center.js +0 -12
  3607. package/bootstrap-icons/text-indent-left.d.ts +0 -5
  3608. package/bootstrap-icons/text-indent-left.js +0 -12
  3609. package/bootstrap-icons/text-indent-right.d.ts +0 -5
  3610. package/bootstrap-icons/text-indent-right.js +0 -12
  3611. package/bootstrap-icons/text-left.d.ts +0 -5
  3612. package/bootstrap-icons/text-left.js +0 -12
  3613. package/bootstrap-icons/text-paragraph.d.ts +0 -5
  3614. package/bootstrap-icons/text-paragraph.js +0 -12
  3615. package/bootstrap-icons/text-right.d.ts +0 -5
  3616. package/bootstrap-icons/text-right.js +0 -12
  3617. package/bootstrap-icons/textarea-resize.d.ts +0 -5
  3618. package/bootstrap-icons/textarea-resize.js +0 -12
  3619. package/bootstrap-icons/textarea-t.d.ts +0 -5
  3620. package/bootstrap-icons/textarea-t.js +0 -12
  3621. package/bootstrap-icons/textarea.d.ts +0 -5
  3622. package/bootstrap-icons/textarea.js +0 -12
  3623. package/bootstrap-icons/thermometer-half.d.ts +0 -5
  3624. package/bootstrap-icons/thermometer-half.js +0 -12
  3625. package/bootstrap-icons/thermometer-high.d.ts +0 -5
  3626. package/bootstrap-icons/thermometer-high.js +0 -12
  3627. package/bootstrap-icons/thermometer-low.d.ts +0 -5
  3628. package/bootstrap-icons/thermometer-low.js +0 -12
  3629. package/bootstrap-icons/thermometer-snow.d.ts +0 -5
  3630. package/bootstrap-icons/thermometer-snow.js +0 -12
  3631. package/bootstrap-icons/thermometer-sun.d.ts +0 -5
  3632. package/bootstrap-icons/thermometer-sun.js +0 -12
  3633. package/bootstrap-icons/thermometer.d.ts +0 -5
  3634. package/bootstrap-icons/thermometer.js +0 -12
  3635. package/bootstrap-icons/three-dots-vertical.d.ts +0 -5
  3636. package/bootstrap-icons/three-dots-vertical.js +0 -12
  3637. package/bootstrap-icons/three-dots.d.ts +0 -5
  3638. package/bootstrap-icons/three-dots.js +0 -12
  3639. package/bootstrap-icons/thunderbolt-fill.d.ts +0 -5
  3640. package/bootstrap-icons/thunderbolt-fill.js +0 -12
  3641. package/bootstrap-icons/thunderbolt.d.ts +0 -5
  3642. package/bootstrap-icons/thunderbolt.js +0 -12
  3643. package/bootstrap-icons/ticket-detailed-fill.d.ts +0 -5
  3644. package/bootstrap-icons/ticket-detailed-fill.js +0 -12
  3645. package/bootstrap-icons/ticket-detailed.d.ts +0 -5
  3646. package/bootstrap-icons/ticket-detailed.js +0 -12
  3647. package/bootstrap-icons/ticket-fill.d.ts +0 -5
  3648. package/bootstrap-icons/ticket-fill.js +0 -12
  3649. package/bootstrap-icons/ticket-perforated-fill.d.ts +0 -5
  3650. package/bootstrap-icons/ticket-perforated-fill.js +0 -12
  3651. package/bootstrap-icons/ticket-perforated.d.ts +0 -5
  3652. package/bootstrap-icons/ticket-perforated.js +0 -12
  3653. package/bootstrap-icons/ticket.d.ts +0 -5
  3654. package/bootstrap-icons/ticket.js +0 -12
  3655. package/bootstrap-icons/tiktok.d.ts +0 -5
  3656. package/bootstrap-icons/tiktok.js +0 -12
  3657. package/bootstrap-icons/toggle-off.d.ts +0 -5
  3658. package/bootstrap-icons/toggle-off.js +0 -12
  3659. package/bootstrap-icons/toggle-on.d.ts +0 -5
  3660. package/bootstrap-icons/toggle-on.js +0 -12
  3661. package/bootstrap-icons/toggle2-off.d.ts +0 -5
  3662. package/bootstrap-icons/toggle2-off.js +0 -12
  3663. package/bootstrap-icons/toggle2-on.d.ts +0 -5
  3664. package/bootstrap-icons/toggle2-on.js +0 -12
  3665. package/bootstrap-icons/toggles.d.ts +0 -5
  3666. package/bootstrap-icons/toggles.js +0 -12
  3667. package/bootstrap-icons/toggles2.d.ts +0 -5
  3668. package/bootstrap-icons/toggles2.js +0 -12
  3669. package/bootstrap-icons/tools.d.ts +0 -5
  3670. package/bootstrap-icons/tools.js +0 -12
  3671. package/bootstrap-icons/tornado.d.ts +0 -5
  3672. package/bootstrap-icons/tornado.js +0 -12
  3673. package/bootstrap-icons/translate.d.ts +0 -5
  3674. package/bootstrap-icons/translate.js +0 -12
  3675. package/bootstrap-icons/trash-fill.d.ts +0 -5
  3676. package/bootstrap-icons/trash-fill.js +0 -12
  3677. package/bootstrap-icons/trash.d.ts +0 -5
  3678. package/bootstrap-icons/trash.js +0 -12
  3679. package/bootstrap-icons/trash2-fill.d.ts +0 -5
  3680. package/bootstrap-icons/trash2-fill.js +0 -12
  3681. package/bootstrap-icons/trash2.d.ts +0 -5
  3682. package/bootstrap-icons/trash2.js +0 -12
  3683. package/bootstrap-icons/trash3-fill.d.ts +0 -5
  3684. package/bootstrap-icons/trash3-fill.js +0 -12
  3685. package/bootstrap-icons/trash3.d.ts +0 -5
  3686. package/bootstrap-icons/trash3.js +0 -12
  3687. package/bootstrap-icons/tree-fill.d.ts +0 -5
  3688. package/bootstrap-icons/tree-fill.js +0 -12
  3689. package/bootstrap-icons/tree.d.ts +0 -5
  3690. package/bootstrap-icons/tree.js +0 -12
  3691. package/bootstrap-icons/triangle-fill.d.ts +0 -5
  3692. package/bootstrap-icons/triangle-fill.js +0 -12
  3693. package/bootstrap-icons/triangle-half.d.ts +0 -5
  3694. package/bootstrap-icons/triangle-half.js +0 -12
  3695. package/bootstrap-icons/triangle.d.ts +0 -5
  3696. package/bootstrap-icons/triangle.js +0 -12
  3697. package/bootstrap-icons/trophy-fill.d.ts +0 -5
  3698. package/bootstrap-icons/trophy-fill.js +0 -12
  3699. package/bootstrap-icons/trophy.d.ts +0 -5
  3700. package/bootstrap-icons/trophy.js +0 -12
  3701. package/bootstrap-icons/tropical-storm.d.ts +0 -5
  3702. package/bootstrap-icons/tropical-storm.js +0 -12
  3703. package/bootstrap-icons/truck-flatbed.d.ts +0 -5
  3704. package/bootstrap-icons/truck-flatbed.js +0 -12
  3705. package/bootstrap-icons/truck.d.ts +0 -5
  3706. package/bootstrap-icons/truck.js +0 -12
  3707. package/bootstrap-icons/tsunami.d.ts +0 -5
  3708. package/bootstrap-icons/tsunami.js +0 -12
  3709. package/bootstrap-icons/tv-fill.d.ts +0 -5
  3710. package/bootstrap-icons/tv-fill.js +0 -12
  3711. package/bootstrap-icons/tv.d.ts +0 -5
  3712. package/bootstrap-icons/tv.js +0 -12
  3713. package/bootstrap-icons/twitch.d.ts +0 -5
  3714. package/bootstrap-icons/twitch.js +0 -12
  3715. package/bootstrap-icons/twitter.d.ts +0 -5
  3716. package/bootstrap-icons/twitter.js +0 -12
  3717. package/bootstrap-icons/type-bold.d.ts +0 -5
  3718. package/bootstrap-icons/type-bold.js +0 -12
  3719. package/bootstrap-icons/type-h1.d.ts +0 -5
  3720. package/bootstrap-icons/type-h1.js +0 -12
  3721. package/bootstrap-icons/type-h2.d.ts +0 -5
  3722. package/bootstrap-icons/type-h2.js +0 -12
  3723. package/bootstrap-icons/type-h3.d.ts +0 -5
  3724. package/bootstrap-icons/type-h3.js +0 -12
  3725. package/bootstrap-icons/type-italic.d.ts +0 -5
  3726. package/bootstrap-icons/type-italic.js +0 -12
  3727. package/bootstrap-icons/type-strikethrough.d.ts +0 -5
  3728. package/bootstrap-icons/type-strikethrough.js +0 -12
  3729. package/bootstrap-icons/type-underline.d.ts +0 -5
  3730. package/bootstrap-icons/type-underline.js +0 -12
  3731. package/bootstrap-icons/type.d.ts +0 -5
  3732. package/bootstrap-icons/type.js +0 -12
  3733. package/bootstrap-icons/ui-checks-grid.d.ts +0 -5
  3734. package/bootstrap-icons/ui-checks-grid.js +0 -12
  3735. package/bootstrap-icons/ui-checks.d.ts +0 -5
  3736. package/bootstrap-icons/ui-checks.js +0 -12
  3737. package/bootstrap-icons/ui-radios-grid.d.ts +0 -5
  3738. package/bootstrap-icons/ui-radios-grid.js +0 -12
  3739. package/bootstrap-icons/ui-radios.d.ts +0 -5
  3740. package/bootstrap-icons/ui-radios.js +0 -12
  3741. package/bootstrap-icons/umbrella-fill.d.ts +0 -5
  3742. package/bootstrap-icons/umbrella-fill.js +0 -12
  3743. package/bootstrap-icons/umbrella.d.ts +0 -5
  3744. package/bootstrap-icons/umbrella.js +0 -12
  3745. package/bootstrap-icons/union.d.ts +0 -5
  3746. package/bootstrap-icons/union.js +0 -12
  3747. package/bootstrap-icons/unlock-fill.d.ts +0 -5
  3748. package/bootstrap-icons/unlock-fill.js +0 -12
  3749. package/bootstrap-icons/unlock.d.ts +0 -5
  3750. package/bootstrap-icons/unlock.js +0 -12
  3751. package/bootstrap-icons/upc-scan.d.ts +0 -5
  3752. package/bootstrap-icons/upc-scan.js +0 -12
  3753. package/bootstrap-icons/upc.d.ts +0 -5
  3754. package/bootstrap-icons/upc.js +0 -12
  3755. package/bootstrap-icons/upload.d.ts +0 -5
  3756. package/bootstrap-icons/upload.js +0 -12
  3757. package/bootstrap-icons/usb-c-fill.d.ts +0 -5
  3758. package/bootstrap-icons/usb-c-fill.js +0 -12
  3759. package/bootstrap-icons/usb-c.d.ts +0 -5
  3760. package/bootstrap-icons/usb-c.js +0 -12
  3761. package/bootstrap-icons/usb-drive-fill.d.ts +0 -5
  3762. package/bootstrap-icons/usb-drive-fill.js +0 -12
  3763. package/bootstrap-icons/usb-drive.d.ts +0 -5
  3764. package/bootstrap-icons/usb-drive.js +0 -12
  3765. package/bootstrap-icons/usb-fill.d.ts +0 -5
  3766. package/bootstrap-icons/usb-fill.js +0 -12
  3767. package/bootstrap-icons/usb-micro-fill.d.ts +0 -5
  3768. package/bootstrap-icons/usb-micro-fill.js +0 -12
  3769. package/bootstrap-icons/usb-micro.d.ts +0 -5
  3770. package/bootstrap-icons/usb-micro.js +0 -12
  3771. package/bootstrap-icons/usb-mini-fill.d.ts +0 -5
  3772. package/bootstrap-icons/usb-mini-fill.js +0 -12
  3773. package/bootstrap-icons/usb-mini.d.ts +0 -5
  3774. package/bootstrap-icons/usb-mini.js +0 -12
  3775. package/bootstrap-icons/usb-plug-fill.d.ts +0 -5
  3776. package/bootstrap-icons/usb-plug-fill.js +0 -12
  3777. package/bootstrap-icons/usb-plug.d.ts +0 -5
  3778. package/bootstrap-icons/usb-plug.js +0 -12
  3779. package/bootstrap-icons/usb-symbol.d.ts +0 -5
  3780. package/bootstrap-icons/usb-symbol.js +0 -12
  3781. package/bootstrap-icons/usb.d.ts +0 -5
  3782. package/bootstrap-icons/usb.js +0 -12
  3783. package/bootstrap-icons/valentine.d.ts +0 -5
  3784. package/bootstrap-icons/valentine.js +0 -12
  3785. package/bootstrap-icons/valentine2.d.ts +0 -5
  3786. package/bootstrap-icons/valentine2.js +0 -12
  3787. package/bootstrap-icons/vector-pen.d.ts +0 -5
  3788. package/bootstrap-icons/vector-pen.js +0 -12
  3789. package/bootstrap-icons/view-list.d.ts +0 -5
  3790. package/bootstrap-icons/view-list.js +0 -12
  3791. package/bootstrap-icons/view-stacked.d.ts +0 -5
  3792. package/bootstrap-icons/view-stacked.js +0 -12
  3793. package/bootstrap-icons/vimeo.d.ts +0 -5
  3794. package/bootstrap-icons/vimeo.js +0 -12
  3795. package/bootstrap-icons/vinyl-fill.d.ts +0 -5
  3796. package/bootstrap-icons/vinyl-fill.js +0 -12
  3797. package/bootstrap-icons/vinyl.d.ts +0 -5
  3798. package/bootstrap-icons/vinyl.js +0 -12
  3799. package/bootstrap-icons/voicemail.d.ts +0 -5
  3800. package/bootstrap-icons/voicemail.js +0 -12
  3801. package/bootstrap-icons/volume-down-fill.d.ts +0 -5
  3802. package/bootstrap-icons/volume-down-fill.js +0 -12
  3803. package/bootstrap-icons/volume-down.d.ts +0 -5
  3804. package/bootstrap-icons/volume-down.js +0 -12
  3805. package/bootstrap-icons/volume-mute-fill.d.ts +0 -5
  3806. package/bootstrap-icons/volume-mute-fill.js +0 -12
  3807. package/bootstrap-icons/volume-mute.d.ts +0 -5
  3808. package/bootstrap-icons/volume-mute.js +0 -12
  3809. package/bootstrap-icons/volume-off-fill.d.ts +0 -5
  3810. package/bootstrap-icons/volume-off-fill.js +0 -12
  3811. package/bootstrap-icons/volume-off.d.ts +0 -5
  3812. package/bootstrap-icons/volume-off.js +0 -12
  3813. package/bootstrap-icons/volume-up-fill.d.ts +0 -5
  3814. package/bootstrap-icons/volume-up-fill.js +0 -12
  3815. package/bootstrap-icons/volume-up.d.ts +0 -5
  3816. package/bootstrap-icons/volume-up.js +0 -12
  3817. package/bootstrap-icons/vr.d.ts +0 -5
  3818. package/bootstrap-icons/vr.js +0 -12
  3819. package/bootstrap-icons/wallet-fill.d.ts +0 -5
  3820. package/bootstrap-icons/wallet-fill.js +0 -12
  3821. package/bootstrap-icons/wallet.d.ts +0 -5
  3822. package/bootstrap-icons/wallet.js +0 -12
  3823. package/bootstrap-icons/wallet2.d.ts +0 -5
  3824. package/bootstrap-icons/wallet2.js +0 -12
  3825. package/bootstrap-icons/watch.d.ts +0 -5
  3826. package/bootstrap-icons/watch.js +0 -12
  3827. package/bootstrap-icons/water.d.ts +0 -5
  3828. package/bootstrap-icons/water.js +0 -12
  3829. package/bootstrap-icons/webcam-fill.d.ts +0 -5
  3830. package/bootstrap-icons/webcam-fill.js +0 -12
  3831. package/bootstrap-icons/webcam.d.ts +0 -5
  3832. package/bootstrap-icons/webcam.js +0 -12
  3833. package/bootstrap-icons/whatsapp.d.ts +0 -5
  3834. package/bootstrap-icons/whatsapp.js +0 -12
  3835. package/bootstrap-icons/wifi-1.d.ts +0 -5
  3836. package/bootstrap-icons/wifi-1.js +0 -12
  3837. package/bootstrap-icons/wifi-2.d.ts +0 -5
  3838. package/bootstrap-icons/wifi-2.js +0 -12
  3839. package/bootstrap-icons/wifi-off.d.ts +0 -5
  3840. package/bootstrap-icons/wifi-off.js +0 -12
  3841. package/bootstrap-icons/wifi.d.ts +0 -5
  3842. package/bootstrap-icons/wifi.js +0 -12
  3843. package/bootstrap-icons/wind.d.ts +0 -5
  3844. package/bootstrap-icons/wind.js +0 -12
  3845. package/bootstrap-icons/window-dash.d.ts +0 -5
  3846. package/bootstrap-icons/window-dash.js +0 -12
  3847. package/bootstrap-icons/window-desktop.d.ts +0 -5
  3848. package/bootstrap-icons/window-desktop.js +0 -12
  3849. package/bootstrap-icons/window-dock.d.ts +0 -5
  3850. package/bootstrap-icons/window-dock.js +0 -12
  3851. package/bootstrap-icons/window-fullscreen.d.ts +0 -5
  3852. package/bootstrap-icons/window-fullscreen.js +0 -12
  3853. package/bootstrap-icons/window-plus.d.ts +0 -5
  3854. package/bootstrap-icons/window-plus.js +0 -12
  3855. package/bootstrap-icons/window-sidebar.d.ts +0 -5
  3856. package/bootstrap-icons/window-sidebar.js +0 -12
  3857. package/bootstrap-icons/window-split.d.ts +0 -5
  3858. package/bootstrap-icons/window-split.js +0 -12
  3859. package/bootstrap-icons/window-stack.d.ts +0 -5
  3860. package/bootstrap-icons/window-stack.js +0 -12
  3861. package/bootstrap-icons/window-x.d.ts +0 -5
  3862. package/bootstrap-icons/window-x.js +0 -12
  3863. package/bootstrap-icons/window.d.ts +0 -5
  3864. package/bootstrap-icons/window.js +0 -12
  3865. package/bootstrap-icons/windows.d.ts +0 -5
  3866. package/bootstrap-icons/windows.js +0 -12
  3867. package/bootstrap-icons/wordpress.d.ts +0 -5
  3868. package/bootstrap-icons/wordpress.js +0 -12
  3869. package/bootstrap-icons/wrench-adjustable-circle-fill.d.ts +0 -5
  3870. package/bootstrap-icons/wrench-adjustable-circle-fill.js +0 -12
  3871. package/bootstrap-icons/wrench-adjustable-circle.d.ts +0 -5
  3872. package/bootstrap-icons/wrench-adjustable-circle.js +0 -12
  3873. package/bootstrap-icons/wrench-adjustable.d.ts +0 -5
  3874. package/bootstrap-icons/wrench-adjustable.js +0 -12
  3875. package/bootstrap-icons/wrench.d.ts +0 -5
  3876. package/bootstrap-icons/wrench.js +0 -12
  3877. package/bootstrap-icons/x-circle-fill.d.ts +0 -5
  3878. package/bootstrap-icons/x-circle-fill.js +0 -12
  3879. package/bootstrap-icons/x-circle.d.ts +0 -5
  3880. package/bootstrap-icons/x-circle.js +0 -12
  3881. package/bootstrap-icons/x-diamond-fill.d.ts +0 -5
  3882. package/bootstrap-icons/x-diamond-fill.js +0 -12
  3883. package/bootstrap-icons/x-diamond.d.ts +0 -5
  3884. package/bootstrap-icons/x-diamond.js +0 -12
  3885. package/bootstrap-icons/x-lg.d.ts +0 -5
  3886. package/bootstrap-icons/x-lg.js +0 -12
  3887. package/bootstrap-icons/x-octagon-fill.d.ts +0 -5
  3888. package/bootstrap-icons/x-octagon-fill.js +0 -12
  3889. package/bootstrap-icons/x-octagon.d.ts +0 -5
  3890. package/bootstrap-icons/x-octagon.js +0 -12
  3891. package/bootstrap-icons/x-square-fill.d.ts +0 -5
  3892. package/bootstrap-icons/x-square-fill.js +0 -12
  3893. package/bootstrap-icons/x-square.d.ts +0 -5
  3894. package/bootstrap-icons/x-square.js +0 -12
  3895. package/bootstrap-icons/x.d.ts +0 -5
  3896. package/bootstrap-icons/x.js +0 -12
  3897. package/bootstrap-icons/xbox.d.ts +0 -5
  3898. package/bootstrap-icons/xbox.js +0 -12
  3899. package/bootstrap-icons/yin-yang.d.ts +0 -5
  3900. package/bootstrap-icons/yin-yang.js +0 -12
  3901. package/bootstrap-icons/youtube.d.ts +0 -5
  3902. package/bootstrap-icons/youtube.js +0 -12
  3903. package/bootstrap-icons/zoom-in.d.ts +0 -5
  3904. package/bootstrap-icons/zoom-in.js +0 -12
  3905. package/bootstrap-icons/zoom-out.d.ts +0 -5
  3906. package/bootstrap-icons/zoom-out.js +0 -12
  3907. package/components/actions-group/action-button.d.ts +0 -8
  3908. package/components/actions-group/action-button.js +0 -10
  3909. package/components/actions-group/actions-group.d.ts +0 -7
  3910. package/components/actions-group/actions-group.js +0 -11
  3911. package/components/actions-group/index.d.ts +0 -1
  3912. package/components/actions-group/index.js +0 -17
  3913. package/components/alert/alert.d.ts +0 -7
  3914. package/components/alert/alert.js +0 -24
  3915. package/components/avatar/avatar-group.d.ts +0 -14
  3916. package/components/avatar/avatar-group.js +0 -40
  3917. package/components/avatar/avatar-shape.d.ts +0 -9
  3918. package/components/avatar/avatar-shape.js +0 -49
  3919. package/components/avatar/avatar.d.ts +0 -18
  3920. package/components/avatar/avatar.js +0 -43
  3921. package/components/avatar/get-avatar-size-in-pixels.d.ts +0 -3
  3922. package/components/avatar/get-avatar-size-in-pixels.js +0 -17
  3923. package/components/avatar/make-avatar-shape-path.d.ts +0 -9
  3924. package/components/avatar/make-avatar-shape-path.js +0 -40
  3925. package/components/avatar/make-initials.d.ts +0 -1
  3926. package/components/avatar/make-initials.js +0 -17
  3927. package/components/avatar/types.d.ts +0 -2
  3928. package/components/box/box.d.ts +0 -28
  3929. package/components/box/box.js +0 -9
  3930. package/components/box/index.d.ts +0 -1
  3931. package/components/box/index.js +0 -17
  3932. package/components/breadcrumb/breadcrumb-link.d.ts +0 -15
  3933. package/components/breadcrumb/breadcrumb-link.js +0 -21
  3934. package/components/breadcrumb/breadcrumb.d.ts +0 -6
  3935. package/components/breadcrumb/breadcrumb.js +0 -12
  3936. package/components/breadcrumb/index.d.ts +0 -2
  3937. package/components/breadcrumb/index.js +0 -18
  3938. package/components/button/button.d.ts +0 -18
  3939. package/components/button/button.js +0 -24
  3940. package/components/button/index.d.ts +0 -1
  3941. package/components/button/index.js +0 -17
  3942. package/components/buttons-group/buttons-group.d.ts +0 -3
  3943. package/components/buttons-group/buttons-group.js +0 -9
  3944. package/components/buttons-group/index.d.ts +0 -1
  3945. package/components/buttons-group/index.js +0 -17
  3946. package/components/calendar/calendar-day.d.ts +0 -19
  3947. package/components/calendar/calendar-day.js +0 -10
  3948. package/components/calendar/calendar-header.d.ts +0 -14
  3949. package/components/calendar/calendar-header.js +0 -13
  3950. package/components/calendar/calendar-row.d.ts +0 -7
  3951. package/components/calendar/calendar-row.js +0 -9
  3952. package/components/calendar/calendar.d.ts +0 -16
  3953. package/components/calendar/calendar.js +0 -82
  3954. package/components/calendar/index.d.ts +0 -1
  3955. package/components/calendar/index.js +0 -17
  3956. package/components/checkbox/checkbox.d.ts +0 -8
  3957. package/components/checkbox/checkbox.js +0 -17
  3958. package/components/date-picker/date-picker.d.ts +0 -15
  3959. package/components/date-picker/date-picker.js +0 -55
  3960. package/components/date-picker/index.d.ts +0 -2
  3961. package/components/date-picker/index.js +0 -18
  3962. package/components/date-picker-popover/date-picker-popover.d.ts +0 -13
  3963. package/components/date-picker-popover/date-picker-popover.js +0 -17
  3964. package/components/date-preset-picker-popover/date-preset-picker-popover.d.ts +0 -34
  3965. package/components/date-preset-picker-popover/date-preset-picker-popover.js +0 -94
  3966. package/components/date-preset-picker-popover/date-preset-picker.d.ts +0 -23
  3967. package/components/date-preset-picker-popover/date-preset-picker.js +0 -26
  3968. package/components/date-preset-picker-popover/date-preset-select.d.ts +0 -16
  3969. package/components/date-preset-picker-popover/date-preset-select.js +0 -10
  3970. package/components/date-preset-picker-popover/index.d.ts +0 -1
  3971. package/components/date-preset-picker-popover/index.js +0 -17
  3972. package/components/date-range-picker/date-range-picker.d.ts +0 -13
  3973. package/components/date-range-picker/date-range-picker.js +0 -103
  3974. package/components/date-range-picker/index.d.ts +0 -1
  3975. package/components/date-range-picker/index.js +0 -17
  3976. package/components/datetime-input/date-component-input.d.ts +0 -14
  3977. package/components/datetime-input/date-component-input.js +0 -9
  3978. package/components/datetime-input/date-components.d.ts +0 -28
  3979. package/components/datetime-input/date-components.js +0 -103
  3980. package/components/datetime-input/datetime-input.d.ts +0 -22
  3981. package/components/datetime-input/datetime-input.js +0 -173
  3982. package/components/datetime-input/index.d.ts +0 -2
  3983. package/components/datetime-input/index.js +0 -18
  3984. package/components/dialog/dialog.d.ts +0 -19
  3985. package/components/dialog/dialog.js +0 -62
  3986. package/components/dialog/index.d.ts +0 -1
  3987. package/components/dialog/index.js +0 -17
  3988. package/components/file-input/file-input-button.d.ts +0 -3
  3989. package/components/file-input/file-input-button.js +0 -10
  3990. package/components/file-input/file-input-context.d.ts +0 -12
  3991. package/components/file-input/file-input-context.js +0 -20
  3992. package/components/file-input/file-input.d.ts +0 -16
  3993. package/components/file-input/file-input.js +0 -54
  3994. package/components/file-input/index.d.ts +0 -2
  3995. package/components/file-input/index.js +0 -18
  3996. package/components/form-field/form-field.d.ts +0 -17
  3997. package/components/form-field/form-field.js +0 -31
  3998. package/components/formatted-content/formatted-content.d.ts +0 -55
  3999. package/components/formatted-content/formatted-content.js +0 -67
  4000. package/components/formatted-content/index.d.ts +0 -1
  4001. package/components/formatted-content/index.js +0 -17
  4002. package/components/index.d.ts +0 -46
  4003. package/components/index.js +0 -62
  4004. package/components/inline-message/index.d.ts +0 -1
  4005. package/components/inline-message/index.js +0 -17
  4006. package/components/inline-message/inline-message.d.ts +0 -6
  4007. package/components/inline-message/inline-message.js +0 -23
  4008. package/components/label/label.d.ts +0 -5
  4009. package/components/label/label.js +0 -10
  4010. package/components/loading-view/index.d.ts +0 -1
  4011. package/components/loading-view/index.js +0 -17
  4012. package/components/loading-view/loading-view.d.ts +0 -8
  4013. package/components/loading-view/loading-view.js +0 -10
  4014. package/components/menu/index.d.ts +0 -3
  4015. package/components/menu/index.js +0 -19
  4016. package/components/menu/menu-button.d.ts +0 -7
  4017. package/components/menu/menu-button.js +0 -9
  4018. package/components/menu/menu-divider.d.ts +0 -2
  4019. package/components/menu/menu-divider.js +0 -9
  4020. package/components/menu/menu.d.ts +0 -25
  4021. package/components/menu/menu.js +0 -123
  4022. package/components/non-ideal-state-view/index.d.ts +0 -1
  4023. package/components/non-ideal-state-view/index.js +0 -17
  4024. package/components/non-ideal-state-view/non-ideal-state-view.d.ts +0 -9
  4025. package/components/non-ideal-state-view/non-ideal-state-view.js +0 -40
  4026. package/components/number-input/index.d.ts +0 -1
  4027. package/components/number-input/index.js +0 -17
  4028. package/components/number-input/number-input.d.ts +0 -13
  4029. package/components/number-input/number-input.js +0 -94
  4030. package/components/password-input/password-input.d.ts +0 -9
  4031. package/components/password-input/password-input.js +0 -22
  4032. package/components/popover/popover.d.ts +0 -53
  4033. package/components/popover/popover.js +0 -99
  4034. package/components/popover/use-body-click.d.ts +0 -12
  4035. package/components/popover/use-body-click.js +0 -49
  4036. package/components/portal/portal.d.ts +0 -5
  4037. package/components/portal/portal.js +0 -15
  4038. package/components/positioner/get-position.d.ts +0 -32
  4039. package/components/positioner/get-position.js +0 -117
  4040. package/components/positioner/positioner.d.ts +0 -16
  4041. package/components/positioner/positioner.js +0 -65
  4042. package/components/positioner/types.d.ts +0 -14
  4043. package/components/radio-button/index.d.ts +0 -1
  4044. package/components/radio-button/index.js +0 -17
  4045. package/components/radio-button/radio-button.d.ts +0 -7
  4046. package/components/radio-button/radio-button.js +0 -14
  4047. package/components/radio-group/index.d.ts +0 -2
  4048. package/components/radio-group/index.js +0 -18
  4049. package/components/radio-group/radio-group-item.d.ts +0 -7
  4050. package/components/radio-group/radio-group-item.js +0 -11
  4051. package/components/radio-group/radio-group.d.ts +0 -15
  4052. package/components/radio-group/radio-group.js +0 -22
  4053. package/components/scope-buttons/index.d.ts +0 -1
  4054. package/components/scope-buttons/index.js +0 -17
  4055. package/components/scope-buttons/scope-button.d.ts +0 -6
  4056. package/components/scope-buttons/scope-button.js +0 -10
  4057. package/components/scope-buttons/scope-buttons.d.ts +0 -6
  4058. package/components/scope-buttons/scope-buttons.js +0 -26
  4059. package/components/search-input/index.d.ts +0 -1
  4060. package/components/search-input/index.js +0 -17
  4061. package/components/search-input/search-input.d.ts +0 -4
  4062. package/components/search-input/search-input.js +0 -17
  4063. package/components/secret/index.d.ts +0 -1
  4064. package/components/secret/index.js +0 -17
  4065. package/components/secret/secret.d.ts +0 -8
  4066. package/components/secret/secret.js +0 -18
  4067. package/components/segmented-control/segmented-control.d.ts +0 -15
  4068. package/components/segmented-control/segmented-control.js +0 -60
  4069. package/components/select/select.d.ts +0 -8
  4070. package/components/select/select.js +0 -17
  4071. package/components/selection-control/selection-control.d.ts +0 -11
  4072. package/components/selection-control/selection-control.js +0 -11
  4073. package/components/slider/index.d.ts +0 -1
  4074. package/components/slider/index.js +0 -17
  4075. package/components/slider/slider.d.ts +0 -12
  4076. package/components/slider/slider.js +0 -34
  4077. package/components/spinner/index.d.ts +0 -2
  4078. package/components/spinner/index.js +0 -6
  4079. package/components/spinner/spinner.d.ts +0 -6
  4080. package/components/spinner/spinner.js +0 -9
  4081. package/components/svg-icon/index.d.ts +0 -1
  4082. package/components/svg-icon/index.js +0 -17
  4083. package/components/svg-icon/svg-icon.d.ts +0 -18
  4084. package/components/svg-icon/svg-icon.js +0 -49
  4085. package/components/switch/switch.d.ts +0 -3
  4086. package/components/switch/switch.js +0 -14
  4087. package/components/table/index.d.ts +0 -7
  4088. package/components/table/index.js +0 -23
  4089. package/components/table/table-body.d.ts +0 -5
  4090. package/components/table/table-body.js +0 -9
  4091. package/components/table/table-cell.d.ts +0 -5
  4092. package/components/table/table-cell.js +0 -9
  4093. package/components/table/table-container.d.ts +0 -5
  4094. package/components/table/table-container.js +0 -25
  4095. package/components/table/table-head.d.ts +0 -5
  4096. package/components/table/table-head.js +0 -9
  4097. package/components/table/table-header-cell.d.ts +0 -9
  4098. package/components/table/table-header-cell.js +0 -15
  4099. package/components/table/table-row.d.ts +0 -5
  4100. package/components/table/table-row.js +0 -9
  4101. package/components/table/table-sort-button.d.ts +0 -10
  4102. package/components/table/table-sort-button.js +0 -52
  4103. package/components/table/table.d.ts +0 -10
  4104. package/components/table/table.js +0 -16
  4105. package/components/tabs/index.d.ts +0 -1
  4106. package/components/tabs/index.js +0 -17
  4107. package/components/tabs/tab-list.d.ts +0 -3
  4108. package/components/tabs/tab-list.js +0 -50
  4109. package/components/tabs/tab-panel.d.ts +0 -6
  4110. package/components/tabs/tab-panel.js +0 -14
  4111. package/components/tabs/tab.d.ts +0 -7
  4112. package/components/tabs/tab.js +0 -21
  4113. package/components/tabs/tabs-state.d.ts +0 -20
  4114. package/components/tabs/tabs-state.js +0 -63
  4115. package/components/tabs/tabs.d.ts +0 -14
  4116. package/components/tabs/tabs.js +0 -16
  4117. package/components/tag/tag.d.ts +0 -12
  4118. package/components/tag/tag.js +0 -20
  4119. package/components/text-input/text-input.d.ts +0 -12
  4120. package/components/text-input/text-input.js +0 -39
  4121. package/components/textarea/textarea.d.ts +0 -8
  4122. package/components/textarea/textarea.js +0 -17
  4123. package/components/toast/index.d.ts +0 -1
  4124. package/components/toast/index.js +0 -17
  4125. package/components/toast/toast-button.d.ts +0 -5
  4126. package/components/toast/toast-button.js +0 -9
  4127. package/components/toast/toast.d.ts +0 -17
  4128. package/components/toast/toast.js +0 -28
  4129. package/components/toaster/toaster.d.ts +0 -17
  4130. package/components/toaster/toaster.js +0 -77
  4131. package/components/toaster/use-toasts.d.ts +0 -22
  4132. package/components/toaster/use-toasts.js +0 -41
  4133. package/components/tooltip/tooltip.d.ts +0 -17
  4134. package/components/tooltip/tooltip.js +0 -60
  4135. package/components/vertical-navigation/index.d.ts +0 -2
  4136. package/components/vertical-navigation/index.js +0 -18
  4137. package/components/vertical-navigation/vertical-navigation-item.d.ts +0 -16
  4138. package/components/vertical-navigation/vertical-navigation-item.js +0 -20
  4139. package/components/vertical-navigation/vertical-navigation.d.ts +0 -10
  4140. package/components/vertical-navigation/vertical-navigation.js +0 -14
  4141. package/css/draft-components-utils.css +0 -1
  4142. package/hooks/index.d.ts +0 -6
  4143. package/hooks/index.js +0 -22
  4144. package/hooks/use-close-animation.d.ts +0 -13
  4145. package/hooks/use-close-animation.js +0 -42
  4146. package/hooks/use-disable-body-scroll.d.ts +0 -1
  4147. package/hooks/use-disable-body-scroll.js +0 -34
  4148. package/hooks/use-esc-key-down.d.ts +0 -3
  4149. package/hooks/use-esc-key-down.js +0 -38
  4150. package/hooks/use-focus-trap.d.ts +0 -2
  4151. package/hooks/use-focus-trap.js +0 -76
  4152. package/hooks/use-is-first-render.d.ts +0 -1
  4153. package/hooks/use-is-first-render.js +0 -13
  4154. package/hooks/use-is-mounted.d.ts +0 -2
  4155. package/hooks/use-is-mounted.js +0 -15
  4156. package/lib/guards.d.ts +0 -2
  4157. package/lib/guards.js +0 -12
  4158. package/lib/index.d.ts +0 -7
  4159. package/lib/index.js +0 -36
  4160. package/lib/keyboard-helpers.d.ts +0 -22
  4161. package/lib/keyboard-helpers.js +0 -26
  4162. package/lib/plain-date-range.d.ts +0 -15
  4163. package/lib/plain-date-range.js +0 -35
  4164. package/lib/plain-date.d.ts +0 -38
  4165. package/lib/plain-date.js +0 -103
  4166. package/lib/react-helpers.d.ts +0 -9
  4167. package/lib/react-helpers.js +0 -42
  4168. package/lib/stack.d.ts +0 -11
  4169. package/lib/stack.js +0 -34
  4170. package/lib/util.d.ts +0 -5
  4171. package/lib/util.js +0 -41
  4172. package/scss/abstracts/_functions.scss +0 -82
  4173. package/scss/abstracts/_index.scss +0 -3
  4174. package/scss/abstracts/_mixins.scss +0 -23
  4175. package/scss/abstracts/_variables.scss +0 -229
  4176. package/scss/base/_animations.scss +0 -8
  4177. package/scss/base/_index.scss +0 -2
  4178. package/scss/base/_normalize.scss +0 -351
  4179. package/scss/components/_actions-group.scss +0 -20
  4180. package/scss/components/_alert.scss +0 -95
  4181. package/scss/components/_avatar.scss +0 -124
  4182. package/scss/components/_box.scss +0 -277
  4183. package/scss/components/_breadcrumb.scss +0 -55
  4184. package/scss/components/_button.scss +0 -200
  4185. package/scss/components/_buttons-group.scss +0 -25
  4186. package/scss/components/_calendar.scss +0 -185
  4187. package/scss/components/_checkbox.scss +0 -55
  4188. package/scss/components/_date-picker.scss +0 -11
  4189. package/scss/components/_date-preset-picker-popover.scss +0 -78
  4190. package/scss/components/_datetime-input.scss +0 -94
  4191. package/scss/components/_dialog.scss +0 -114
  4192. package/scss/components/_file-input.scss +0 -94
  4193. package/scss/components/_form-field.scss +0 -21
  4194. package/scss/components/_formatted-content.scss +0 -171
  4195. package/scss/components/_index.scss +0 -45
  4196. package/scss/components/_inline-message.scss +0 -30
  4197. package/scss/components/_input.scss +0 -74
  4198. package/scss/components/_label.scss +0 -14
  4199. package/scss/components/_loading-view.scss +0 -58
  4200. package/scss/components/_menu.scss +0 -43
  4201. package/scss/components/_non-ideal-state-view.scss +0 -93
  4202. package/scss/components/_number-input.scss +0 -19
  4203. package/scss/components/_password-input.scss +0 -9
  4204. package/scss/components/_popover.scss +0 -70
  4205. package/scss/components/_portal.scss +0 -3
  4206. package/scss/components/_radio-button.scss +0 -58
  4207. package/scss/components/_radio-group.scss +0 -96
  4208. package/scss/components/_scope-buttons.scss +0 -49
  4209. package/scss/components/_secret.scss +0 -32
  4210. package/scss/components/_segmented-control.scss +0 -33
  4211. package/scss/components/_select.scss +0 -36
  4212. package/scss/components/_selection-control.scss +0 -39
  4213. package/scss/components/_slider.scss +0 -130
  4214. package/scss/components/_spinner.scss +0 -6
  4215. package/scss/components/_svg-icon.scss +0 -8
  4216. package/scss/components/_switch.scss +0 -58
  4217. package/scss/components/_table.scss +0 -180
  4218. package/scss/components/_tabs.scss +0 -80
  4219. package/scss/components/_tag.scss +0 -117
  4220. package/scss/components/_text-input.scss +0 -58
  4221. package/scss/components/_textarea.scss +0 -10
  4222. package/scss/components/_toast.scss +0 -104
  4223. package/scss/components/_toaster.scss +0 -87
  4224. package/scss/components/_tooltip.scss +0 -29
  4225. package/scss/components/_vertical-navigation.scss +0 -73
  4226. package/scss/draft-components-utils.scss +0 -8
  4227. package/scss/draft-components.scss +0 -3
  4228. package/scss/themes/_default-theme.scss +0 -294
  4229. package/scss/utils/_border.scss +0 -85
  4230. package/scss/utils/_box-model.scss +0 -36
  4231. package/scss/utils/_color.scss +0 -601
  4232. package/scss/utils/_flexbox.scss +0 -169
  4233. package/scss/utils/_gap.scss +0 -23
  4234. package/scss/utils/_margin.scss +0 -50
  4235. package/scss/utils/_padding.scss +0 -49
  4236. package/scss/utils/_typography.scss +0 -120
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.signpostSplit = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/signpost-split.svg
6
- exports.signpostSplit = {
7
- name: 'signpost-split',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M7 7V1.414a1 1 0 0 1 2 0V2h5a1 1 0 0 1 .8.4l.975 1.3a.5.5 0 0 1 0 .6L14.8 5.6a1 1 0 0 1-.8.4H9v10H7v-5H2a1 1 0 0 1-.8-.4L.225 9.3a.5.5 0 0 1 0-.6L1.2 7.4A1 1 0 0 1 2 7h5zm1 3V8H2l-.75 1L2 10h6zm0-5h6l.75-1L14 3H8v2z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const signpost: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.signpost = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/signpost.svg
6
- exports.signpost = {
7
- name: 'signpost',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M7 1.414V4H2a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5v6h2v-6h3.532a1 1 0 0 0 .768-.36l1.933-2.32a.5.5 0 0 0 0-.64L13.3 4.36a1 1 0 0 0-.768-.36H9V1.414a1 1 0 0 0-2 0zM12.532 5l1.666 2-1.666 2H2V5h10.532z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const simFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.simFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/sim-fill.svg
6
- exports.simFill = {
7
- name: 'sim-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M5 4.5a.5.5 0 0 1 .5-.5h2v2H5V4.5zM8.5 6V4h2a.5.5 0 0 1 .5.5V6H8.5zM5 7h6v2H5V7zm3.5 3H11v1.5a.5.5 0 0 1-.5.5h-2v-2zm-1 0v2h-2a.5.5 0 0 1-.5-.5V10h2.5z" }), (0, jsx_runtime_1.jsx)("path", { d: "M3.5 0A1.5 1.5 0 0 0 2 1.5v13A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5V3.414a1.5 1.5 0 0 0-.44-1.06L11.647.439A1.5 1.5 0 0 0 10.586 0H3.5zm2 3h5A1.5 1.5 0 0 1 12 4.5v7a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 11.5v-7A1.5 1.5 0 0 1 5.5 3z" })] })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const sim: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.sim = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/sim.svg
6
- exports.sim = {
7
- name: 'sim',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M2 1.5A1.5 1.5 0 0 1 3.5 0h7.086a1.5 1.5 0 0 1 1.06.44l1.915 1.914A1.5 1.5 0 0 1 14 3.414V14.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 14.5v-13zM3.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5V3.414a.5.5 0 0 0-.146-.353l-1.915-1.915A.5.5 0 0 0 10.586 1H3.5z" }), (0, jsx_runtime_1.jsx)("path", { d: "M5.5 4a.5.5 0 0 0-.5.5V6h2.5V4h-2zm3 0v2H11V4.5a.5.5 0 0 0-.5-.5h-2zM11 7H5v2h6V7zm0 3H8.5v2h2a.5.5 0 0 0 .5-.5V10zm-3.5 2v-2H5v1.5a.5.5 0 0 0 .5.5h2zM4 4.5A1.5 1.5 0 0 1 5.5 3h5A1.5 1.5 0 0 1 12 4.5v7a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 11.5v-7z" })] })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipBackwardBtnFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipBackwardBtnFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-backward-btn-fill.svg
6
- exports.skipBackwardBtnFill = {
7
- name: 'skip-backward-btn-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm11.21-6.907L8.5 7.028V5.5a.5.5 0 0 0-.79-.407L5 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407V8.972l2.71 1.935A.5.5 0 0 0 12 10.5v-5a.5.5 0 0 0-.79-.407z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipBackwardBtn: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipBackwardBtn = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-backward-btn.svg
6
- exports.skipBackwardBtn = {
7
- name: 'skip-backward-btn',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M11.21 5.093A.5.5 0 0 1 12 5.5v5a.5.5 0 0 1-.79.407L8.5 8.972V10.5a.5.5 0 0 1-.79.407L5 8.972V10.5a.5.5 0 0 1-1 0v-5a.5.5 0 0 1 1 0v1.528l2.71-1.935a.5.5 0 0 1 .79.407v1.528l2.71-1.935z" }), (0, jsx_runtime_1.jsx)("path", { d: "M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z" })] })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipBackwardCircleFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipBackwardCircleFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-backward-circle-fill.svg
6
- exports.skipBackwardCircleFill = {
7
- name: 'skip-backward-circle-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-4.79-2.907L8.5 7.028V5.5a.5.5 0 0 0-.79-.407L5 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407V8.972l2.71 1.935A.5.5 0 0 0 12 10.5v-5a.5.5 0 0 0-.79-.407z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipBackwardCircle: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipBackwardCircle = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-backward-circle.svg
6
- exports.skipBackwardCircle = {
7
- name: 'skip-backward-circle',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" }), (0, jsx_runtime_1.jsx)("path", { d: "M11.729 5.055a.5.5 0 0 0-.52.038L8.5 7.028V5.5a.5.5 0 0 0-.79-.407L5 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407V8.972l2.71 1.935A.5.5 0 0 0 12 10.5v-5a.5.5 0 0 0-.271-.445z" })] })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipBackwardFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipBackwardFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-backward-fill.svg
6
- exports.skipBackwardFill = {
7
- name: 'skip-backward-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M.5 3.5A.5.5 0 0 0 0 4v8a.5.5 0 0 0 1 0V8.753l6.267 3.636c.54.313 1.233-.066 1.233-.697v-2.94l6.267 3.636c.54.314 1.233-.065 1.233-.696V4.308c0-.63-.693-1.01-1.233-.696L8.5 7.248v-2.94c0-.63-.692-1.01-1.233-.696L1 7.248V4a.5.5 0 0 0-.5-.5z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipBackward: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipBackward = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-backward.svg
6
- exports.skipBackward = {
7
- name: 'skip-backward',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M.5 3.5A.5.5 0 0 1 1 4v3.248l6.267-3.636c.52-.302 1.233.043 1.233.696v2.94l6.267-3.636c.52-.302 1.233.043 1.233.696v7.384c0 .653-.713.998-1.233.696L8.5 8.752v2.94c0 .653-.713.998-1.233.696L1 8.752V12a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5zm7 1.133L1.696 8 7.5 11.367V4.633zm7.5 0L9.196 8 15 11.367V4.633z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipEndBtnFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipEndBtnFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-end-btn-fill.svg
6
- exports.skipEndBtnFill = {
7
- name: 'skip-end-btn-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm6.79-6.907A.5.5 0 0 0 6 5.5v5a.5.5 0 0 0 .79.407L9.5 8.972V10.5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v1.528L6.79 5.093z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipEndBtn: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipEndBtn = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-end-btn.svg
6
- exports.skipEndBtn = {
7
- name: 'skip-end-btn',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M6.79 5.093 9.5 7.028V5.5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0V8.972l-2.71 1.935A.5.5 0 0 1 6 10.5v-5a.5.5 0 0 1 .79-.407z" }), (0, jsx_runtime_1.jsx)("path", { d: "M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z" })] })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipEndCircleFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipEndCircleFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-end-circle-fill.svg
6
- exports.skipEndCircleFill = {
7
- name: 'skip-end-circle-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM6.79 5.093A.5.5 0 0 0 6 5.5v5a.5.5 0 0 0 .79.407L9.5 8.972V10.5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v1.528L6.79 5.093z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipEndCircle: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipEndCircle = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-end-circle.svg
6
- exports.skipEndCircle = {
7
- name: 'skip-end-circle',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" }), (0, jsx_runtime_1.jsx)("path", { d: "M6.271 5.055a.5.5 0 0 1 .52.038L9.5 7.028V5.5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0V8.972l-2.71 1.935A.5.5 0 0 1 6 10.5v-5a.5.5 0 0 1 .271-.445z" })] })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipEndFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipEndFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-end-fill.svg
6
- exports.skipEndFill = {
7
- name: 'skip-end-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M12.5 4a.5.5 0 0 0-1 0v3.248L5.233 3.612C4.693 3.3 4 3.678 4 4.308v7.384c0 .63.692 1.01 1.233.697L11.5 8.753V12a.5.5 0 0 0 1 0V4z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipEnd: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipEnd = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-end.svg
6
- exports.skipEnd = {
7
- name: 'skip-end',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M12.5 4a.5.5 0 0 0-1 0v3.248L5.233 3.612C4.713 3.31 4 3.655 4 4.308v7.384c0 .653.713.998 1.233.696L11.5 8.752V12a.5.5 0 0 0 1 0V4zM5 4.633 10.804 8 5 11.367V4.633z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipForwardBtnFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipForwardBtnFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-forward-btn-fill.svg
6
- exports.skipForwardBtnFill = {
7
- name: 'skip-forward-btn-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2Zm4.79-6.907A.5.5 0 0 0 4 5.5v5a.5.5 0 0 0 .79.407L7.5 8.972V10.5a.5.5 0 0 0 .79.407L11 8.972V10.5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v1.528L8.29 5.093a.5.5 0 0 0-.79.407v1.528L4.79 5.093Z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipForwardBtn: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipForwardBtn = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-forward-btn.svg
6
- exports.skipForwardBtn = {
7
- name: 'skip-forward-btn',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M4.79 5.093A.5.5 0 0 0 4 5.5v5a.5.5 0 0 0 .79.407L7.5 8.972V10.5a.5.5 0 0 0 .79.407L11 8.972V10.5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v1.528L8.29 5.093a.5.5 0 0 0-.79.407v1.528L4.79 5.093z" }), (0, jsx_runtime_1.jsx)("path", { d: "M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z" })] })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipForwardCircleFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipForwardCircleFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-forward-circle-fill.svg
6
- exports.skipForwardCircleFill = {
7
- name: 'skip-forward-circle-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.79 5.093A.5.5 0 0 0 4 5.5v5a.5.5 0 0 0 .79.407L7.5 8.972V10.5a.5.5 0 0 0 .79.407L11 8.972V10.5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v1.528L8.29 5.093a.5.5 0 0 0-.79.407v1.528L4.79 5.093z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipForwardCircle: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipForwardCircle = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-forward-circle.svg
6
- exports.skipForwardCircle = {
7
- name: 'skip-forward-circle',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" }), (0, jsx_runtime_1.jsx)("path", { d: "M4.271 5.055a.5.5 0 0 1 .52.038L7.5 7.028V5.5a.5.5 0 0 1 .79-.407L11 7.028V5.5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0V8.972l-2.71 1.935a.5.5 0 0 1-.79-.407V8.972l-2.71 1.935A.5.5 0 0 1 4 10.5v-5a.5.5 0 0 1 .271-.445z" })] })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipForwardFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipForwardFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-forward-fill.svg
6
- exports.skipForwardFill = {
7
- name: 'skip-forward-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M15.5 3.5a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V8.753l-6.267 3.636c-.54.313-1.233-.066-1.233-.697v-2.94l-6.267 3.636C.693 12.703 0 12.324 0 11.693V4.308c0-.63.693-1.01 1.233-.696L7.5 7.248v-2.94c0-.63.693-1.01 1.233-.696L15 7.248V4a.5.5 0 0 1 .5-.5z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipForward: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipForward = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-forward.svg
6
- exports.skipForward = {
7
- name: 'skip-forward',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M15.5 3.5a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V8.752l-6.267 3.636c-.52.302-1.233-.043-1.233-.696v-2.94l-6.267 3.636C.713 12.69 0 12.345 0 11.692V4.308c0-.653.713-.998 1.233-.696L7.5 7.248v-2.94c0-.653.713-.998 1.233-.696L15 7.248V4a.5.5 0 0 1 .5-.5zM1 4.633v6.734L6.804 8 1 4.633zm7.5 0v6.734L14.304 8 8.5 4.633z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipStartBtnFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipStartBtnFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-start-btn-fill.svg
6
- exports.skipStartBtnFill = {
7
- name: 'skip-start-btn-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm9.71-6.907L7 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407v-5a.5.5 0 0 0-.79-.407z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipStartBtn: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipStartBtn = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-start-btn.svg
6
- exports.skipStartBtn = {
7
- name: 'skip-start-btn',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M9.71 5.093a.5.5 0 0 1 .79.407v5a.5.5 0 0 1-.79.407L7 8.972V10.5a.5.5 0 0 1-1 0v-5a.5.5 0 0 1 1 0v1.528l2.71-1.935z" }), (0, jsx_runtime_1.jsx)("path", { d: "M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z" })] })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipStartCircleFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipStartCircleFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-start-circle-fill.svg
6
- exports.skipStartCircleFill = {
7
- name: 'skip-start-circle-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM9.71 5.093 7 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407v-5a.5.5 0 0 0-.79-.407z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipStartCircle: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipStartCircle = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-start-circle.svg
6
- exports.skipStartCircle = {
7
- name: 'skip-start-circle',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" }), (0, jsx_runtime_1.jsx)("path", { d: "M10.229 5.055a.5.5 0 0 0-.52.038L7 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407v-5a.5.5 0 0 0-.271-.445z" })] })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipStartFill: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipStartFill = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-start-fill.svg
6
- exports.skipStartFill = {
7
- name: 'skip-start-fill',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M4 4a.5.5 0 0 1 1 0v3.248l6.267-3.636c.54-.313 1.232.066 1.232.696v7.384c0 .63-.692 1.01-1.232.697L5 8.753V12a.5.5 0 0 1-1 0V4z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skipStart: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skipStart = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skip-start.svg
6
- exports.skipStart = {
7
- name: 'skip-start',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M4 4a.5.5 0 0 1 1 0v3.248l6.267-3.636c.52-.302 1.233.043 1.233.696v7.384c0 .653-.713.998-1.233.696L5 8.752V12a.5.5 0 0 1-1 0V4zm7.5.633L5.696 8l5.804 3.367V4.633z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const skype: Icon;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.skype = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- // https://github.com/twbs/icons/blob/main/icons/skype.svg
6
- exports.skype = {
7
- name: 'skype',
8
- width: 16,
9
- height: 16,
10
- viewBox: '0 0 16 16',
11
- children: ((0, jsx_runtime_1.jsx)("path", { d: "M4.671 0c.88 0 1.733.247 2.468.702a7.423 7.423 0 0 1 6.02 2.118 7.372 7.372 0 0 1 2.167 5.215c0 .344-.024.687-.072 1.026a4.662 4.662 0 0 1 .6 2.281 4.645 4.645 0 0 1-1.37 3.294A4.673 4.673 0 0 1 11.18 16c-.84 0-1.658-.226-2.37-.644a7.423 7.423 0 0 1-6.114-2.107A7.374 7.374 0 0 1 .529 8.035c0-.363.026-.724.08-1.081a4.644 4.644 0 0 1 .76-5.59A4.68 4.68 0 0 1 4.67 0zm.447 7.01c.18.309.43.572.729.769a7.07 7.07 0 0 0 1.257.653c.492.205.873.38 1.145.523.229.112.437.264.615.448.135.142.21.331.21.528a.872.872 0 0 1-.335.723c-.291.196-.64.289-.99.264a2.618 2.618 0 0 1-1.048-.206 11.44 11.44 0 0 1-.532-.253 1.284 1.284 0 0 0-.587-.15.717.717 0 0 0-.501.176.63.63 0 0 0-.195.491.796.796 0 0 0 .148.482 1.2 1.2 0 0 0 .456.354 5.113 5.113 0 0 0 2.212.419 4.554 4.554 0 0 0 1.624-.265 2.296 2.296 0 0 0 1.08-.801c.267-.39.402-.855.386-1.327a2.09 2.09 0 0 0-.279-1.101 2.53 2.53 0 0 0-.772-.792A7.198 7.198 0 0 0 8.486 7.3a1.05 1.05 0 0 0-.145-.058 18.182 18.182 0 0 1-1.013-.447 1.827 1.827 0 0 1-.54-.387.727.727 0 0 1-.2-.508.805.805 0 0 1 .385-.723 1.76 1.76 0 0 1 .968-.247c.26-.003.52.03.772.096.274.079.542.177.802.293.105.049.22.075.336.076a.6.6 0 0 0 .453-.19.69.69 0 0 0 .18-.496.717.717 0 0 0-.17-.476 1.374 1.374 0 0 0-.556-.354 3.69 3.69 0 0 0-.708-.183 5.963 5.963 0 0 0-1.022-.078 4.53 4.53 0 0 0-1.536.258 2.71 2.71 0 0 0-1.174.784 1.91 1.91 0 0 0-.45 1.287c-.01.37.076.736.25 1.063z" })),
12
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * This file auto-generated with the `scripts/bootstrap-icons.js` script.
3
- */
4
- import { Icon } from '../components/svg-icon';
5
- export declare const slack: Icon;