draft-components 0.75.2 → 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.
- package/README.md +1 -53
- package/css/draft-components-utilities.css +1575 -0
- package/css/draft-components-utilities.min.css +1 -0
- package/css/draft-components.css +3493 -2
- package/css/draft-components.dark.css +501 -0
- package/css/draft-components.dark.min.css +1 -0
- package/css/draft-components.min.css +1 -0
- package/dist/components/alert/alert.d.ts +10 -0
- package/dist/components/alert/alert.js +16 -0
- package/{components → dist/components}/alert/index.d.ts +0 -0
- package/{components → dist/components}/alert/index.js +0 -0
- package/dist/components/avatar/avatar.d.ts +13 -0
- package/dist/components/avatar/avatar.js +29 -0
- package/{components → dist/components}/avatar/index.d.ts +0 -0
- package/{components → dist/components}/avatar/index.js +0 -0
- package/dist/components/avatar-group/avatar-group.d.ts +7 -0
- package/dist/components/avatar-group/avatar-group.js +9 -0
- package/dist/components/avatar-group/index.d.ts +1 -0
- package/dist/components/avatar-group/index.js +17 -0
- package/dist/components/badge/badge.d.ts +8 -0
- package/dist/components/badge/badge.js +22 -0
- package/dist/components/badge/index.d.ts +1 -0
- package/dist/components/badge/index.js +17 -0
- package/dist/components/breadcrumbs/breadcrumbs-context.d.ts +9 -0
- package/dist/components/breadcrumbs/breadcrumbs-context.js +18 -0
- package/dist/components/breadcrumbs/breadcrumbs-item.d.ts +12 -0
- package/dist/components/breadcrumbs/breadcrumbs-item.js +20 -0
- package/dist/components/breadcrumbs/breadcrumbs.d.ts +7 -0
- package/dist/components/breadcrumbs/breadcrumbs.js +11 -0
- package/dist/components/breadcrumbs/index.d.ts +2 -0
- package/dist/components/breadcrumbs/index.js +18 -0
- package/dist/components/button/button.d.ts +19 -0
- package/dist/components/button/button.js +37 -0
- package/dist/components/button/icon-button.d.ts +6 -0
- package/dist/components/button/icon-button.js +10 -0
- package/dist/components/button/index.d.ts +2 -0
- package/dist/components/button/index.js +18 -0
- package/dist/components/button-group/button-group.d.ts +7 -0
- package/dist/components/button-group/button-group.js +9 -0
- package/dist/components/button-group/index.d.ts +1 -0
- package/dist/components/button-group/index.js +17 -0
- package/dist/components/caption/caption.d.ts +7 -0
- package/dist/components/caption/caption.js +25 -0
- package/dist/components/caption/icons.d.ts +5 -0
- package/dist/components/caption/icons.js +20 -0
- package/dist/components/caption/index.d.ts +1 -0
- package/dist/components/caption/index.js +17 -0
- package/dist/components/checkbox/checkbox.d.ts +10 -0
- package/dist/components/checkbox/checkbox.js +14 -0
- package/{components → dist/components}/checkbox/index.d.ts +0 -0
- package/{components → dist/components}/checkbox/index.js +0 -0
- package/dist/components/color-picker/color-picker-button.d.ts +12 -0
- package/dist/components/color-picker/color-picker-button.js +15 -0
- package/dist/components/color-picker/color-picker.d.ts +13 -0
- package/dist/components/color-picker/color-picker.js +13 -0
- package/dist/components/color-picker/index.d.ts +1 -0
- package/dist/components/color-picker/index.js +17 -0
- package/dist/components/date-picker/calendar-day.d.ts +17 -0
- package/dist/components/date-picker/calendar-day.js +16 -0
- package/dist/components/date-picker/calendar-grid-head.d.ts +7 -0
- package/dist/components/date-picker/calendar-grid-head.js +15 -0
- package/dist/components/date-picker/calendar-grid.d.ts +17 -0
- package/dist/components/date-picker/calendar-grid.js +105 -0
- package/dist/components/date-picker/calendar-header.d.ts +12 -0
- package/dist/components/date-picker/calendar-header.js +46 -0
- package/dist/components/date-picker/calendar.d.ts +11 -0
- package/dist/components/date-picker/calendar.js +23 -0
- package/dist/components/date-picker/date-helpers.d.ts +22 -0
- package/dist/components/date-picker/date-helpers.js +108 -0
- package/dist/components/date-picker/date-picker.d.ts +13 -0
- package/dist/components/date-picker/date-picker.js +19 -0
- package/dist/components/date-picker/date-range-picker.d.ts +14 -0
- package/dist/components/date-picker/date-range-picker.js +60 -0
- package/dist/components/date-picker/date-range.d.ts +13 -0
- package/dist/components/date-picker/date-range.js +27 -0
- package/dist/components/date-picker/icons.d.ts +3 -0
- package/dist/components/date-picker/icons.js +12 -0
- package/dist/components/date-picker/index.d.ts +2 -0
- package/dist/components/date-picker/index.js +18 -0
- package/dist/components/date-picker/parse-min-max-props.d.ts +8 -0
- package/dist/components/date-picker/parse-min-max-props.js +19 -0
- package/dist/components/date-picker-popover/date-picker-popover.d.ts +13 -0
- package/dist/components/date-picker-popover/date-picker-popover.js +20 -0
- package/{components → dist/components}/date-picker-popover/index.d.ts +0 -0
- package/{components → dist/components}/date-picker-popover/index.js +0 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +9 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-footer.js +9 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +10 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-presets.js +34 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover.d.ts +26 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover.js +54 -0
- package/dist/components/date-range-picker-popover/helpers.d.ts +2 -0
- package/dist/components/date-range-picker-popover/helpers.js +15 -0
- package/dist/components/date-range-picker-popover/index.d.ts +2 -0
- package/dist/components/date-range-picker-popover/index.js +18 -0
- package/dist/components/date-range-picker-popover/types.d.ts +10 -0
- package/{components/avatar → dist/components/date-range-picker-popover}/types.js +0 -0
- package/dist/components/date-range-picker-popover/use-is-compact-view.d.ts +1 -0
- package/dist/components/date-range-picker-popover/use-is-compact-view.js +26 -0
- package/dist/components/dialog/dialog-body.d.ts +8 -0
- package/dist/components/dialog/dialog-body.js +51 -0
- package/dist/components/dialog/dialog-context.d.ts +15 -0
- package/dist/components/dialog/dialog-context.js +23 -0
- package/dist/components/dialog/dialog-footer.d.ts +5 -0
- package/dist/components/dialog/dialog-footer.js +9 -0
- package/dist/components/dialog/dialog-header.d.ts +8 -0
- package/dist/components/dialog/dialog-header.js +16 -0
- package/dist/components/dialog/dialog.d.ts +12 -0
- package/dist/components/dialog/dialog.js +46 -0
- package/dist/components/dialog/index.d.ts +4 -0
- package/dist/components/dialog/index.js +20 -0
- package/dist/components/dialog/x-mark-icon.d.ts +2 -0
- package/dist/components/dialog/x-mark-icon.js +8 -0
- package/dist/components/empty-state/empty-state.d.ts +11 -0
- package/dist/components/empty-state/empty-state.js +9 -0
- package/dist/components/empty-state/index.d.ts +1 -0
- package/dist/components/empty-state/index.js +17 -0
- package/dist/components/file-picker/file-picker.d.ts +13 -0
- package/dist/components/file-picker/file-picker.js +44 -0
- package/dist/components/file-picker/index.d.ts +1 -0
- package/dist/components/file-picker/index.js +17 -0
- package/dist/components/filter-buttons/filter-button.d.ts +7 -0
- package/dist/components/filter-buttons/filter-button.js +9 -0
- package/dist/components/filter-buttons/filter-buttons.d.ts +5 -0
- package/dist/components/filter-buttons/filter-buttons.js +26 -0
- package/dist/components/filter-buttons/index.d.ts +2 -0
- package/dist/components/filter-buttons/index.js +18 -0
- package/dist/components/form-field/form-field.d.ts +15 -0
- package/dist/components/form-field/form-field.js +25 -0
- package/{components → dist/components}/form-field/index.d.ts +0 -0
- package/{components → dist/components}/form-field/index.js +0 -0
- package/{components → dist/components}/label/index.d.ts +0 -0
- package/{components → dist/components}/label/index.js +0 -0
- package/dist/components/label/label.d.ts +5 -0
- package/dist/components/label/label.js +11 -0
- package/dist/components/menu/index.d.ts +3 -0
- package/dist/components/menu/index.js +19 -0
- package/dist/components/menu/menu-item.d.ts +11 -0
- package/dist/components/menu/menu-item.js +12 -0
- package/dist/components/menu/menu-separator.d.ts +6 -0
- package/dist/components/menu/menu-separator.js +9 -0
- package/dist/components/menu/menu.d.ts +31 -0
- package/dist/components/menu/menu.js +194 -0
- package/dist/components/nav-list/index.d.ts +3 -0
- package/dist/components/nav-list/index.js +19 -0
- package/dist/components/nav-list/nav-list-item.d.ts +13 -0
- package/dist/components/nav-list/nav-list-item.js +19 -0
- package/dist/components/nav-list/nav-list-title.d.ts +8 -0
- package/dist/components/nav-list/nav-list-title.js +9 -0
- package/dist/components/nav-list/nav-list.d.ts +5 -0
- package/dist/components/nav-list/nav-list.js +9 -0
- package/dist/components/password-input/icons.d.ts +3 -0
- package/dist/components/password-input/icons.js +12 -0
- package/{components → dist/components}/password-input/index.d.ts +0 -0
- package/{components → dist/components}/password-input/index.js +0 -0
- package/dist/components/password-input/password-input.d.ts +10 -0
- package/dist/components/password-input/password-input.js +28 -0
- package/{components → dist/components}/popover/index.d.ts +0 -0
- package/{components → dist/components}/popover/index.js +0 -0
- package/dist/components/popover/popover.d.ts +49 -0
- package/dist/components/popover/popover.js +97 -0
- package/dist/components/popover/use-page-click.d.ts +16 -0
- package/dist/components/popover/use-page-click.js +50 -0
- package/{components → dist/components}/portal/index.d.ts +0 -0
- package/{components → dist/components}/portal/index.js +0 -0
- package/dist/components/portal/portal-context.d.ts +6 -0
- package/dist/components/portal/portal-context.js +26 -0
- package/dist/components/portal/portal.d.ts +5 -0
- package/dist/components/portal/portal.js +10 -0
- package/dist/components/positioner/calc-position.d.ts +32 -0
- package/dist/components/positioner/calc-position.js +117 -0
- package/{components → dist/components}/positioner/index.d.ts +0 -0
- package/{components → dist/components}/positioner/index.js +0 -0
- package/dist/components/positioner/positioner.d.ts +20 -0
- package/dist/components/positioner/positioner.js +63 -0
- package/dist/components/positioner/types.d.ts +14 -0
- package/{components → dist/components}/positioner/types.js +0 -0
- package/dist/components/radio/index.d.ts +1 -0
- package/dist/components/radio/index.js +17 -0
- package/dist/components/radio/radio.d.ts +11 -0
- package/dist/components/radio/radio.js +22 -0
- package/{components → dist/components}/segmented-control/index.d.ts +0 -0
- package/{components → dist/components}/segmented-control/index.js +0 -0
- package/dist/components/segmented-control/segmented-control-button.d.ts +10 -0
- package/dist/components/segmented-control/segmented-control-button.js +14 -0
- package/dist/components/segmented-control/segmented-control.d.ts +15 -0
- package/dist/components/segmented-control/segmented-control.js +47 -0
- package/{components → dist/components}/select/index.d.ts +0 -0
- package/{components → dist/components}/select/index.js +0 -0
- package/dist/components/select/select.d.ts +46 -0
- package/dist/components/select/select.js +25 -0
- package/{components → dist/components}/selection-control/index.d.ts +0 -0
- package/{components → dist/components}/selection-control/index.js +0 -0
- package/dist/components/selection-control/selection-control.d.ts +14 -0
- package/dist/components/selection-control/selection-control.js +17 -0
- package/dist/components/slider/index.d.ts +2 -0
- package/dist/components/slider/index.js +20 -0
- package/dist/components/slider/slider-tick-marks.d.ts +7 -0
- package/dist/components/slider/slider-tick-marks.js +16 -0
- package/dist/components/slider/slider.d.ts +17 -0
- package/dist/components/slider/slider.js +39 -0
- package/dist/components/spinner/index.d.ts +1 -0
- package/dist/components/spinner/index.js +17 -0
- package/dist/components/spinner/spinner.d.ts +7 -0
- package/dist/components/spinner/spinner.js +9 -0
- package/{components → dist/components}/switch/index.d.ts +0 -0
- package/{components → dist/components}/switch/index.js +0 -0
- package/dist/components/switch/switch.d.ts +10 -0
- package/dist/components/switch/switch.js +13 -0
- package/dist/components/table/icons.d.ts +4 -0
- package/dist/components/table/icons.js +16 -0
- package/dist/components/table/index.d.ts +7 -0
- package/dist/components/table/index.js +23 -0
- package/dist/components/table/table-body.d.ts +5 -0
- package/dist/components/table/table-body.js +9 -0
- package/dist/components/table/table-cell.d.ts +5 -0
- package/dist/components/table/table-cell.js +9 -0
- package/dist/components/table/table-container.d.ts +13 -0
- package/dist/components/table/table-container.js +21 -0
- package/dist/components/table/table-head-cell.d.ts +10 -0
- package/dist/components/table/table-head-cell.js +28 -0
- package/dist/components/table/table-head.d.ts +7 -0
- package/dist/components/table/table-head.js +12 -0
- package/dist/components/table/table-row.d.ts +7 -0
- package/dist/components/table/table-row.js +12 -0
- package/dist/components/table/table.d.ts +11 -0
- package/dist/components/table/table.js +14 -0
- package/dist/components/tabs/index.d.ts +4 -0
- package/dist/components/tabs/index.js +20 -0
- package/dist/components/tabs/tab-list.d.ts +3 -0
- package/dist/components/tabs/tab-list.js +66 -0
- package/dist/components/tabs/tab-panel.d.ts +6 -0
- package/dist/components/tabs/tab-panel.js +15 -0
- package/dist/components/tabs/tab.d.ts +7 -0
- package/dist/components/tabs/tab.js +18 -0
- package/dist/components/tabs/tabs-context.d.ts +20 -0
- package/dist/components/tabs/tabs-context.js +30 -0
- package/dist/components/tabs/tabs.d.ts +7 -0
- package/dist/components/tabs/tabs.js +10 -0
- package/dist/components/tabs/types.d.ts +2 -0
- package/dist/components/tabs/types.js +2 -0
- package/{components → dist/components}/tag/index.d.ts +0 -0
- package/{components → dist/components}/tag/index.js +0 -0
- package/dist/components/tag/tag.d.ts +13 -0
- package/dist/components/tag/tag.js +14 -0
- package/{components → dist/components}/text-input/index.d.ts +0 -0
- package/{components → dist/components}/text-input/index.js +0 -0
- package/dist/components/text-input/text-input.d.ts +21 -0
- package/dist/components/text-input/text-input.js +24 -0
- package/{components → dist/components}/textarea/index.d.ts +0 -0
- package/{components → dist/components}/textarea/index.js +0 -0
- package/dist/components/textarea/textarea.d.ts +20 -0
- package/dist/components/textarea/textarea.js +38 -0
- package/dist/components/toast/index.d.ts +2 -0
- package/dist/components/toast/index.js +18 -0
- package/dist/components/toast/toast-button.d.ts +5 -0
- package/dist/components/toast/toast-button.js +9 -0
- package/dist/components/toast/toast.d.ts +11 -0
- package/dist/components/toast/toast.js +10 -0
- package/dist/components/toast/x-mark-icon.d.ts +2 -0
- package/dist/components/toast/x-mark-icon.js +8 -0
- package/{components → dist/components}/toaster/index.d.ts +0 -0
- package/{components → dist/components}/toaster/index.js +0 -0
- package/dist/components/toaster/toaster.d.ts +40 -0
- package/dist/components/toaster/toaster.js +134 -0
- package/{components → dist/components}/tooltip/index.d.ts +0 -0
- package/{components → dist/components}/tooltip/index.js +0 -0
- package/dist/components/tooltip/tooltip.d.ts +25 -0
- package/dist/components/tooltip/tooltip.js +79 -0
- package/dist/hooks/index.d.ts +4 -0
- package/dist/hooks/index.js +20 -0
- package/dist/hooks/use-disable-body-scroll.d.ts +5 -0
- package/dist/hooks/use-disable-body-scroll.js +34 -0
- package/dist/hooks/use-esc-key-down.d.ts +17 -0
- package/dist/hooks/use-esc-key-down.js +53 -0
- package/dist/hooks/use-focus-trap.d.ts +15 -0
- package/dist/hooks/use-focus-trap.js +86 -0
- package/dist/hooks/use-mount-transition.d.ts +32 -0
- package/dist/hooks/use-mount-transition.js +40 -0
- package/dist/index.d.ts +37 -0
- package/dist/index.js +53 -0
- package/dist/shared/keyboard-keys.d.ts +14 -0
- package/dist/shared/keyboard-keys.js +17 -0
- package/dist/shared/react-helpers.d.ts +13 -0
- package/dist/shared/react-helpers.js +49 -0
- package/dist/shared/util.d.ts +2 -0
- package/dist/shared/util.js +21 -0
- package/esm/components/alert/alert.d.ts +10 -0
- package/esm/components/alert/alert.js +12 -0
- package/esm/components/alert/index.d.ts +1 -0
- package/esm/components/alert/index.js +1 -0
- package/esm/components/avatar/avatar.d.ts +13 -0
- package/esm/components/avatar/avatar.js +26 -0
- package/esm/components/avatar/index.d.ts +1 -0
- package/esm/components/avatar/index.js +1 -0
- package/esm/components/avatar-group/avatar-group.d.ts +7 -0
- package/esm/components/avatar-group/avatar-group.js +5 -0
- package/esm/components/avatar-group/index.d.ts +1 -0
- package/esm/components/avatar-group/index.js +1 -0
- package/esm/components/badge/badge.d.ts +8 -0
- package/esm/components/badge/badge.js +18 -0
- package/esm/components/badge/index.d.ts +1 -0
- package/esm/components/badge/index.js +1 -0
- package/esm/components/breadcrumbs/breadcrumbs-context.d.ts +9 -0
- package/esm/components/breadcrumbs/breadcrumbs-context.js +13 -0
- package/esm/components/breadcrumbs/breadcrumbs-item.d.ts +12 -0
- package/esm/components/breadcrumbs/breadcrumbs-item.js +16 -0
- package/esm/components/breadcrumbs/breadcrumbs.d.ts +7 -0
- package/esm/components/breadcrumbs/breadcrumbs.js +7 -0
- package/esm/components/breadcrumbs/index.d.ts +2 -0
- package/esm/components/breadcrumbs/index.js +2 -0
- package/esm/components/button/button.d.ts +19 -0
- package/esm/components/button/button.js +34 -0
- package/esm/components/button/icon-button.d.ts +6 -0
- package/esm/components/button/icon-button.js +7 -0
- package/esm/components/button/index.d.ts +2 -0
- package/esm/components/button/index.js +2 -0
- package/esm/components/button-group/button-group.d.ts +7 -0
- package/esm/components/button-group/button-group.js +5 -0
- package/esm/components/button-group/index.d.ts +1 -0
- package/esm/components/button-group/index.js +1 -0
- package/esm/components/caption/caption.d.ts +7 -0
- package/esm/components/caption/caption.js +22 -0
- package/esm/components/caption/icons.d.ts +5 -0
- package/esm/components/caption/icons.js +13 -0
- package/esm/components/caption/index.d.ts +1 -0
- package/esm/components/caption/index.js +1 -0
- package/esm/components/checkbox/checkbox.d.ts +10 -0
- package/esm/components/checkbox/checkbox.js +11 -0
- package/esm/components/checkbox/index.d.ts +1 -0
- package/esm/components/checkbox/index.js +1 -0
- package/esm/components/color-picker/color-picker-button.d.ts +12 -0
- package/esm/components/color-picker/color-picker-button.js +11 -0
- package/esm/components/color-picker/color-picker.d.ts +13 -0
- package/esm/components/color-picker/color-picker.js +9 -0
- package/esm/components/color-picker/index.d.ts +1 -0
- package/esm/components/color-picker/index.js +1 -0
- package/esm/components/date-picker/calendar-day.d.ts +17 -0
- package/esm/components/date-picker/calendar-day.js +12 -0
- package/esm/components/date-picker/calendar-grid-head.d.ts +7 -0
- package/esm/components/date-picker/calendar-grid-head.js +11 -0
- package/esm/components/date-picker/calendar-grid.d.ts +17 -0
- package/esm/components/date-picker/calendar-grid.js +101 -0
- package/esm/components/date-picker/calendar-header.d.ts +12 -0
- package/esm/components/date-picker/calendar-header.js +42 -0
- package/esm/components/date-picker/calendar.d.ts +11 -0
- package/esm/components/date-picker/calendar.js +19 -0
- package/esm/components/date-picker/date-helpers.d.ts +22 -0
- package/esm/components/date-picker/date-helpers.js +89 -0
- package/esm/components/date-picker/date-picker.d.ts +13 -0
- package/esm/components/date-picker/date-picker.js +15 -0
- package/esm/components/date-picker/date-range-picker.d.ts +14 -0
- package/esm/components/date-picker/date-range-picker.js +56 -0
- package/esm/components/date-picker/date-range.d.ts +13 -0
- package/esm/components/date-picker/date-range.js +23 -0
- package/esm/components/date-picker/icons.d.ts +3 -0
- package/esm/components/date-picker/icons.js +7 -0
- package/esm/components/date-picker/index.d.ts +2 -0
- package/esm/components/date-picker/index.js +2 -0
- package/esm/components/date-picker/parse-min-max-props.d.ts +8 -0
- package/esm/components/date-picker/parse-min-max-props.js +15 -0
- package/esm/components/date-picker-popover/date-picker-popover.d.ts +13 -0
- package/esm/components/date-picker-popover/date-picker-popover.js +16 -0
- package/esm/components/date-picker-popover/index.d.ts +1 -0
- package/esm/components/date-picker-popover/index.js +1 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +9 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.js +5 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +10 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.js +30 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover.d.ts +26 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover.js +50 -0
- package/esm/components/date-range-picker-popover/helpers.d.ts +2 -0
- package/esm/components/date-range-picker-popover/helpers.js +11 -0
- package/esm/components/date-range-picker-popover/index.d.ts +2 -0
- package/esm/components/date-range-picker-popover/index.js +2 -0
- package/esm/components/date-range-picker-popover/types.d.ts +10 -0
- package/esm/components/date-range-picker-popover/types.js +1 -0
- package/esm/components/date-range-picker-popover/use-is-compact-view.d.ts +1 -0
- package/esm/components/date-range-picker-popover/use-is-compact-view.js +22 -0
- package/esm/components/dialog/dialog-body.d.ts +8 -0
- package/esm/components/dialog/dialog-body.js +47 -0
- package/esm/components/dialog/dialog-context.d.ts +15 -0
- package/esm/components/dialog/dialog-context.js +18 -0
- package/esm/components/dialog/dialog-footer.d.ts +5 -0
- package/esm/components/dialog/dialog-footer.js +5 -0
- package/esm/components/dialog/dialog-header.d.ts +8 -0
- package/esm/components/dialog/dialog-header.js +12 -0
- package/esm/components/dialog/dialog.d.ts +12 -0
- package/esm/components/dialog/dialog.js +42 -0
- package/esm/components/dialog/index.d.ts +4 -0
- package/esm/components/dialog/index.js +4 -0
- package/esm/components/dialog/x-mark-icon.d.ts +2 -0
- package/esm/components/dialog/x-mark-icon.js +4 -0
- package/esm/components/empty-state/empty-state.d.ts +11 -0
- package/esm/components/empty-state/empty-state.js +5 -0
- package/esm/components/empty-state/index.d.ts +1 -0
- package/esm/components/empty-state/index.js +1 -0
- package/esm/components/file-picker/file-picker.d.ts +13 -0
- package/esm/components/file-picker/file-picker.js +41 -0
- package/esm/components/file-picker/index.d.ts +1 -0
- package/esm/components/file-picker/index.js +1 -0
- package/esm/components/filter-buttons/filter-button.d.ts +7 -0
- package/esm/components/filter-buttons/filter-button.js +6 -0
- package/esm/components/filter-buttons/filter-buttons.d.ts +5 -0
- package/esm/components/filter-buttons/filter-buttons.js +22 -0
- package/esm/components/filter-buttons/index.d.ts +2 -0
- package/esm/components/filter-buttons/index.js +2 -0
- package/esm/components/form-field/form-field.d.ts +15 -0
- package/esm/components/form-field/form-field.js +21 -0
- package/esm/components/form-field/index.d.ts +1 -0
- package/esm/components/form-field/index.js +1 -0
- package/esm/components/label/index.d.ts +1 -0
- package/esm/components/label/index.js +1 -0
- package/esm/components/label/label.d.ts +5 -0
- package/esm/components/label/label.js +8 -0
- package/esm/components/menu/index.d.ts +3 -0
- package/esm/components/menu/index.js +3 -0
- package/esm/components/menu/menu-item.d.ts +11 -0
- package/esm/components/menu/menu-item.js +9 -0
- package/esm/components/menu/menu-separator.d.ts +6 -0
- package/esm/components/menu/menu-separator.js +5 -0
- package/esm/components/menu/menu.d.ts +31 -0
- package/esm/components/menu/menu.js +190 -0
- package/esm/components/nav-list/index.d.ts +3 -0
- package/esm/components/nav-list/index.js +3 -0
- package/esm/components/nav-list/nav-list-item.d.ts +13 -0
- package/esm/components/nav-list/nav-list-item.js +15 -0
- package/esm/components/nav-list/nav-list-title.d.ts +8 -0
- package/esm/components/nav-list/nav-list-title.js +5 -0
- package/esm/components/nav-list/nav-list.d.ts +5 -0
- package/esm/components/nav-list/nav-list.js +5 -0
- package/esm/components/password-input/icons.d.ts +3 -0
- package/esm/components/password-input/icons.js +7 -0
- package/esm/components/password-input/index.d.ts +1 -0
- package/esm/components/password-input/index.js +1 -0
- package/esm/components/password-input/password-input.d.ts +10 -0
- package/esm/components/password-input/password-input.js +25 -0
- package/esm/components/popover/index.d.ts +1 -0
- package/esm/components/popover/index.js +1 -0
- package/esm/components/popover/popover.d.ts +49 -0
- package/esm/components/popover/popover.js +94 -0
- package/esm/components/popover/use-page-click.d.ts +16 -0
- package/esm/components/popover/use-page-click.js +46 -0
- package/esm/components/portal/index.d.ts +1 -0
- package/esm/components/portal/index.js +1 -0
- package/esm/components/portal/portal-context.d.ts +6 -0
- package/esm/components/portal/portal-context.js +21 -0
- package/esm/components/portal/portal.d.ts +5 -0
- package/esm/components/portal/portal.js +6 -0
- package/esm/components/positioner/calc-position.d.ts +32 -0
- package/esm/components/positioner/calc-position.js +112 -0
- package/esm/components/positioner/index.d.ts +1 -0
- package/esm/components/positioner/index.js +1 -0
- package/esm/components/positioner/positioner.d.ts +20 -0
- package/esm/components/positioner/positioner.js +59 -0
- package/esm/components/positioner/types.d.ts +14 -0
- package/esm/components/positioner/types.js +1 -0
- package/esm/components/radio/index.d.ts +1 -0
- package/esm/components/radio/index.js +1 -0
- package/esm/components/radio/radio.d.ts +11 -0
- package/esm/components/radio/radio.js +19 -0
- package/esm/components/segmented-control/index.d.ts +1 -0
- package/esm/components/segmented-control/index.js +1 -0
- package/esm/components/segmented-control/segmented-control-button.d.ts +10 -0
- package/esm/components/segmented-control/segmented-control-button.js +10 -0
- package/esm/components/segmented-control/segmented-control.d.ts +15 -0
- package/esm/components/segmented-control/segmented-control.js +43 -0
- package/esm/components/select/index.d.ts +1 -0
- package/esm/components/select/index.js +1 -0
- package/esm/components/select/select.d.ts +46 -0
- package/esm/components/select/select.js +22 -0
- package/esm/components/selection-control/index.d.ts +1 -0
- package/esm/components/selection-control/index.js +1 -0
- package/esm/components/selection-control/selection-control.d.ts +14 -0
- package/esm/components/selection-control/selection-control.js +13 -0
- package/esm/components/slider/index.d.ts +2 -0
- package/esm/components/slider/index.js +2 -0
- package/esm/components/slider/slider-tick-marks.d.ts +7 -0
- package/esm/components/slider/slider-tick-marks.js +12 -0
- package/esm/components/slider/slider.d.ts +17 -0
- package/esm/components/slider/slider.js +36 -0
- package/esm/components/spinner/index.d.ts +1 -0
- package/esm/components/spinner/index.js +1 -0
- package/esm/components/spinner/spinner.d.ts +7 -0
- package/esm/components/spinner/spinner.js +6 -0
- package/esm/components/switch/index.d.ts +1 -0
- package/esm/components/switch/index.js +1 -0
- package/esm/components/switch/switch.d.ts +10 -0
- package/esm/components/switch/switch.js +10 -0
- package/esm/components/table/icons.d.ts +4 -0
- package/esm/components/table/icons.js +10 -0
- package/esm/components/table/index.d.ts +7 -0
- package/esm/components/table/index.js +7 -0
- package/esm/components/table/table-body.d.ts +5 -0
- package/esm/components/table/table-body.js +6 -0
- package/esm/components/table/table-cell.d.ts +5 -0
- package/esm/components/table/table-cell.js +6 -0
- package/esm/components/table/table-container.d.ts +13 -0
- package/esm/components/table/table-container.js +18 -0
- package/esm/components/table/table-head-cell.d.ts +10 -0
- package/esm/components/table/table-head-cell.js +25 -0
- package/esm/components/table/table-head.d.ts +7 -0
- package/esm/components/table/table-head.js +9 -0
- package/esm/components/table/table-row.d.ts +7 -0
- package/esm/components/table/table-row.js +9 -0
- package/esm/components/table/table.d.ts +11 -0
- package/esm/components/table/table.js +11 -0
- package/esm/components/tabs/index.d.ts +4 -0
- package/esm/components/tabs/index.js +4 -0
- package/esm/components/tabs/tab-list.d.ts +3 -0
- package/esm/components/tabs/tab-list.js +62 -0
- package/esm/components/tabs/tab-panel.d.ts +6 -0
- package/esm/components/tabs/tab-panel.js +11 -0
- package/esm/components/tabs/tab.d.ts +7 -0
- package/esm/components/tabs/tab.js +14 -0
- package/esm/components/tabs/tabs-context.d.ts +20 -0
- package/esm/components/tabs/tabs-context.js +25 -0
- package/esm/components/tabs/tabs.d.ts +7 -0
- package/esm/components/tabs/tabs.js +6 -0
- package/esm/components/tabs/types.d.ts +2 -0
- package/esm/components/tabs/types.js +1 -0
- package/esm/components/tag/index.d.ts +1 -0
- package/esm/components/tag/index.js +1 -0
- package/esm/components/tag/tag.d.ts +13 -0
- package/esm/components/tag/tag.js +10 -0
- package/esm/components/text-input/index.d.ts +1 -0
- package/esm/components/text-input/index.js +1 -0
- package/esm/components/text-input/text-input.d.ts +21 -0
- package/esm/components/text-input/text-input.js +21 -0
- package/esm/components/textarea/index.d.ts +1 -0
- package/esm/components/textarea/index.js +1 -0
- package/esm/components/textarea/textarea.d.ts +20 -0
- package/esm/components/textarea/textarea.js +35 -0
- package/esm/components/toast/index.d.ts +2 -0
- package/esm/components/toast/index.js +2 -0
- package/esm/components/toast/toast-button.d.ts +5 -0
- package/esm/components/toast/toast-button.js +6 -0
- package/esm/components/toast/toast.d.ts +11 -0
- package/esm/components/toast/toast.js +6 -0
- package/esm/components/toast/x-mark-icon.d.ts +2 -0
- package/esm/components/toast/x-mark-icon.js +4 -0
- package/esm/components/toaster/index.d.ts +1 -0
- package/esm/components/toaster/index.js +1 -0
- package/esm/components/toaster/toaster.d.ts +40 -0
- package/esm/components/toaster/toaster.js +130 -0
- package/esm/components/tooltip/index.d.ts +1 -0
- package/esm/components/tooltip/index.js +1 -0
- package/esm/components/tooltip/tooltip.d.ts +25 -0
- package/esm/components/tooltip/tooltip.js +75 -0
- package/esm/hooks/index.d.ts +4 -0
- package/esm/hooks/index.js +4 -0
- package/esm/hooks/use-disable-body-scroll.d.ts +5 -0
- package/esm/hooks/use-disable-body-scroll.js +30 -0
- package/esm/hooks/use-esc-key-down.d.ts +17 -0
- package/esm/hooks/use-esc-key-down.js +49 -0
- package/esm/hooks/use-focus-trap.d.ts +15 -0
- package/esm/hooks/use-focus-trap.js +82 -0
- package/esm/hooks/use-mount-transition.d.ts +32 -0
- package/esm/hooks/use-mount-transition.js +36 -0
- package/esm/index.d.ts +37 -0
- package/esm/index.js +37 -0
- package/esm/shared/keyboard-keys.d.ts +14 -0
- package/esm/shared/keyboard-keys.js +14 -0
- package/esm/shared/react-helpers.d.ts +13 -0
- package/esm/shared/react-helpers.js +42 -0
- package/esm/shared/util.d.ts +2 -0
- package/esm/shared/util.js +16 -0
- package/package.json +65 -67
- package/bootstrap-icons/123.d.ts +0 -5
- package/bootstrap-icons/123.js +0 -12
- package/bootstrap-icons/activity.d.ts +0 -5
- package/bootstrap-icons/activity.js +0 -12
- package/bootstrap-icons/alarm-fill.d.ts +0 -5
- package/bootstrap-icons/alarm-fill.js +0 -12
- package/bootstrap-icons/alarm.d.ts +0 -5
- package/bootstrap-icons/alarm.js +0 -12
- package/bootstrap-icons/align-bottom.d.ts +0 -5
- package/bootstrap-icons/align-bottom.js +0 -12
- package/bootstrap-icons/align-center.d.ts +0 -5
- package/bootstrap-icons/align-center.js +0 -12
- package/bootstrap-icons/align-end.d.ts +0 -5
- package/bootstrap-icons/align-end.js +0 -12
- package/bootstrap-icons/align-middle.d.ts +0 -5
- package/bootstrap-icons/align-middle.js +0 -12
- package/bootstrap-icons/align-start.d.ts +0 -5
- package/bootstrap-icons/align-start.js +0 -12
- package/bootstrap-icons/align-top.d.ts +0 -5
- package/bootstrap-icons/align-top.js +0 -12
- package/bootstrap-icons/alt.d.ts +0 -5
- package/bootstrap-icons/alt.js +0 -12
- package/bootstrap-icons/app-indicator.d.ts +0 -5
- package/bootstrap-icons/app-indicator.js +0 -12
- package/bootstrap-icons/app.d.ts +0 -5
- package/bootstrap-icons/app.js +0 -12
- package/bootstrap-icons/apple.d.ts +0 -5
- package/bootstrap-icons/apple.js +0 -12
- package/bootstrap-icons/archive-fill.d.ts +0 -5
- package/bootstrap-icons/archive-fill.js +0 -12
- package/bootstrap-icons/archive.d.ts +0 -5
- package/bootstrap-icons/archive.js +0 -12
- package/bootstrap-icons/arrow-90deg-down.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-down.js +0 -12
- package/bootstrap-icons/arrow-90deg-left.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-left.js +0 -12
- package/bootstrap-icons/arrow-90deg-right.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-right.js +0 -12
- package/bootstrap-icons/arrow-90deg-up.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-up.js +0 -12
- package/bootstrap-icons/arrow-bar-down.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-down.js +0 -12
- package/bootstrap-icons/arrow-bar-left.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-left.js +0 -12
- package/bootstrap-icons/arrow-bar-right.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-right.js +0 -12
- package/bootstrap-icons/arrow-bar-up.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-up.js +0 -12
- package/bootstrap-icons/arrow-clockwise.d.ts +0 -5
- package/bootstrap-icons/arrow-clockwise.js +0 -12
- package/bootstrap-icons/arrow-counterclockwise.d.ts +0 -5
- package/bootstrap-icons/arrow-counterclockwise.js +0 -12
- package/bootstrap-icons/arrow-down-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-circle.js +0 -12
- package/bootstrap-icons/arrow-down-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-circle.js +0 -12
- package/bootstrap-icons/arrow-down-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-square.js +0 -12
- package/bootstrap-icons/arrow-down-left.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left.js +0 -12
- package/bootstrap-icons/arrow-down-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-circle.js +0 -12
- package/bootstrap-icons/arrow-down-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-square.js +0 -12
- package/bootstrap-icons/arrow-down-right.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right.js +0 -12
- package/bootstrap-icons/arrow-down-short.d.ts +0 -5
- package/bootstrap-icons/arrow-down-short.js +0 -12
- package/bootstrap-icons/arrow-down-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-square.js +0 -12
- package/bootstrap-icons/arrow-down-up.d.ts +0 -5
- package/bootstrap-icons/arrow-down-up.js +0 -12
- package/bootstrap-icons/arrow-down.d.ts +0 -5
- package/bootstrap-icons/arrow-down.js +0 -12
- package/bootstrap-icons/arrow-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-left-circle.js +0 -12
- package/bootstrap-icons/arrow-left-right.d.ts +0 -5
- package/bootstrap-icons/arrow-left-right.js +0 -12
- package/bootstrap-icons/arrow-left-short.d.ts +0 -5
- package/bootstrap-icons/arrow-left-short.js +0 -12
- package/bootstrap-icons/arrow-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-left-square.js +0 -12
- package/bootstrap-icons/arrow-left.d.ts +0 -5
- package/bootstrap-icons/arrow-left.js +0 -12
- package/bootstrap-icons/arrow-repeat.d.ts +0 -5
- package/bootstrap-icons/arrow-repeat.js +0 -12
- package/bootstrap-icons/arrow-return-left.d.ts +0 -5
- package/bootstrap-icons/arrow-return-left.js +0 -12
- package/bootstrap-icons/arrow-return-right.d.ts +0 -5
- package/bootstrap-icons/arrow-return-right.js +0 -12
- package/bootstrap-icons/arrow-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-right-circle.js +0 -12
- package/bootstrap-icons/arrow-right-short.d.ts +0 -5
- package/bootstrap-icons/arrow-right-short.js +0 -12
- package/bootstrap-icons/arrow-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-right-square.js +0 -12
- package/bootstrap-icons/arrow-right.d.ts +0 -5
- package/bootstrap-icons/arrow-right.js +0 -12
- package/bootstrap-icons/arrow-through-heart-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-through-heart-fill.js +0 -12
- package/bootstrap-icons/arrow-through-heart.d.ts +0 -5
- package/bootstrap-icons/arrow-through-heart.js +0 -12
- package/bootstrap-icons/arrow-up-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-circle.js +0 -12
- package/bootstrap-icons/arrow-up-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-circle.js +0 -12
- package/bootstrap-icons/arrow-up-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-square.js +0 -12
- package/bootstrap-icons/arrow-up-left.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left.js +0 -12
- package/bootstrap-icons/arrow-up-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-circle.js +0 -12
- package/bootstrap-icons/arrow-up-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-square.js +0 -12
- package/bootstrap-icons/arrow-up-right.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right.js +0 -12
- package/bootstrap-icons/arrow-up-short.d.ts +0 -5
- package/bootstrap-icons/arrow-up-short.js +0 -12
- package/bootstrap-icons/arrow-up-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-square.js +0 -12
- package/bootstrap-icons/arrow-up.d.ts +0 -5
- package/bootstrap-icons/arrow-up.js +0 -12
- package/bootstrap-icons/arrows-angle-contract.d.ts +0 -5
- package/bootstrap-icons/arrows-angle-contract.js +0 -12
- package/bootstrap-icons/arrows-angle-expand.d.ts +0 -5
- package/bootstrap-icons/arrows-angle-expand.js +0 -12
- package/bootstrap-icons/arrows-collapse.d.ts +0 -5
- package/bootstrap-icons/arrows-collapse.js +0 -12
- package/bootstrap-icons/arrows-expand.d.ts +0 -5
- package/bootstrap-icons/arrows-expand.js +0 -12
- package/bootstrap-icons/arrows-fullscreen.d.ts +0 -5
- package/bootstrap-icons/arrows-fullscreen.js +0 -12
- package/bootstrap-icons/arrows-move.d.ts +0 -5
- package/bootstrap-icons/arrows-move.js +0 -12
- package/bootstrap-icons/aspect-ratio-fill.d.ts +0 -5
- package/bootstrap-icons/aspect-ratio-fill.js +0 -12
- package/bootstrap-icons/aspect-ratio.d.ts +0 -5
- package/bootstrap-icons/aspect-ratio.js +0 -12
- package/bootstrap-icons/asterisk.d.ts +0 -5
- package/bootstrap-icons/asterisk.js +0 -12
- package/bootstrap-icons/at.d.ts +0 -5
- package/bootstrap-icons/at.js +0 -12
- package/bootstrap-icons/award-fill.d.ts +0 -5
- package/bootstrap-icons/award-fill.js +0 -12
- package/bootstrap-icons/award.d.ts +0 -5
- package/bootstrap-icons/award.js +0 -12
- package/bootstrap-icons/back.d.ts +0 -5
- package/bootstrap-icons/back.js +0 -12
- package/bootstrap-icons/backspace-fill.d.ts +0 -5
- package/bootstrap-icons/backspace-fill.js +0 -12
- package/bootstrap-icons/backspace-reverse-fill.d.ts +0 -5
- package/bootstrap-icons/backspace-reverse-fill.js +0 -12
- package/bootstrap-icons/backspace-reverse.d.ts +0 -5
- package/bootstrap-icons/backspace-reverse.js +0 -12
- package/bootstrap-icons/backspace.d.ts +0 -5
- package/bootstrap-icons/backspace.js +0 -12
- package/bootstrap-icons/badge-3d-fill.d.ts +0 -5
- package/bootstrap-icons/badge-3d-fill.js +0 -12
- package/bootstrap-icons/badge-3d.d.ts +0 -5
- package/bootstrap-icons/badge-3d.js +0 -12
- package/bootstrap-icons/badge-4k-fill.d.ts +0 -5
- package/bootstrap-icons/badge-4k-fill.js +0 -12
- package/bootstrap-icons/badge-4k.d.ts +0 -5
- package/bootstrap-icons/badge-4k.js +0 -12
- package/bootstrap-icons/badge-8k-fill.d.ts +0 -5
- package/bootstrap-icons/badge-8k-fill.js +0 -12
- package/bootstrap-icons/badge-8k.d.ts +0 -5
- package/bootstrap-icons/badge-8k.js +0 -12
- package/bootstrap-icons/badge-ad-fill.d.ts +0 -5
- package/bootstrap-icons/badge-ad-fill.js +0 -12
- package/bootstrap-icons/badge-ad.d.ts +0 -5
- package/bootstrap-icons/badge-ad.js +0 -12
- package/bootstrap-icons/badge-ar-fill.d.ts +0 -5
- package/bootstrap-icons/badge-ar-fill.js +0 -12
- package/bootstrap-icons/badge-ar.d.ts +0 -5
- package/bootstrap-icons/badge-ar.js +0 -12
- package/bootstrap-icons/badge-cc-fill.d.ts +0 -5
- package/bootstrap-icons/badge-cc-fill.js +0 -12
- package/bootstrap-icons/badge-cc.d.ts +0 -5
- package/bootstrap-icons/badge-cc.js +0 -12
- package/bootstrap-icons/badge-hd-fill.d.ts +0 -5
- package/bootstrap-icons/badge-hd-fill.js +0 -12
- package/bootstrap-icons/badge-hd.d.ts +0 -5
- package/bootstrap-icons/badge-hd.js +0 -12
- package/bootstrap-icons/badge-sd-fill.d.ts +0 -5
- package/bootstrap-icons/badge-sd-fill.js +0 -12
- package/bootstrap-icons/badge-sd.d.ts +0 -5
- package/bootstrap-icons/badge-sd.js +0 -12
- package/bootstrap-icons/badge-tm-fill.d.ts +0 -5
- package/bootstrap-icons/badge-tm-fill.js +0 -12
- package/bootstrap-icons/badge-tm.d.ts +0 -5
- package/bootstrap-icons/badge-tm.js +0 -12
- package/bootstrap-icons/badge-vo-fill.d.ts +0 -5
- package/bootstrap-icons/badge-vo-fill.js +0 -12
- package/bootstrap-icons/badge-vo.d.ts +0 -5
- package/bootstrap-icons/badge-vo.js +0 -12
- package/bootstrap-icons/badge-vr-fill.d.ts +0 -5
- package/bootstrap-icons/badge-vr-fill.js +0 -12
- package/bootstrap-icons/badge-vr.d.ts +0 -5
- package/bootstrap-icons/badge-vr.js +0 -12
- package/bootstrap-icons/badge-wc-fill.d.ts +0 -5
- package/bootstrap-icons/badge-wc-fill.js +0 -12
- package/bootstrap-icons/badge-wc.d.ts +0 -5
- package/bootstrap-icons/badge-wc.js +0 -12
- package/bootstrap-icons/bag-check-fill.d.ts +0 -5
- package/bootstrap-icons/bag-check-fill.js +0 -12
- package/bootstrap-icons/bag-check.d.ts +0 -5
- package/bootstrap-icons/bag-check.js +0 -12
- package/bootstrap-icons/bag-dash-fill.d.ts +0 -5
- package/bootstrap-icons/bag-dash-fill.js +0 -12
- package/bootstrap-icons/bag-dash.d.ts +0 -5
- package/bootstrap-icons/bag-dash.js +0 -12
- package/bootstrap-icons/bag-fill.d.ts +0 -5
- package/bootstrap-icons/bag-fill.js +0 -12
- package/bootstrap-icons/bag-heart-fill.d.ts +0 -5
- package/bootstrap-icons/bag-heart-fill.js +0 -12
- package/bootstrap-icons/bag-heart.d.ts +0 -5
- package/bootstrap-icons/bag-heart.js +0 -12
- package/bootstrap-icons/bag-plus-fill.d.ts +0 -5
- package/bootstrap-icons/bag-plus-fill.js +0 -12
- package/bootstrap-icons/bag-plus.d.ts +0 -5
- package/bootstrap-icons/bag-plus.js +0 -12
- package/bootstrap-icons/bag-x-fill.d.ts +0 -5
- package/bootstrap-icons/bag-x-fill.js +0 -12
- package/bootstrap-icons/bag-x.d.ts +0 -5
- package/bootstrap-icons/bag-x.js +0 -12
- package/bootstrap-icons/bag.d.ts +0 -5
- package/bootstrap-icons/bag.js +0 -12
- package/bootstrap-icons/balloon-fill.d.ts +0 -5
- package/bootstrap-icons/balloon-fill.js +0 -12
- package/bootstrap-icons/balloon-heart-fill.d.ts +0 -5
- package/bootstrap-icons/balloon-heart-fill.js +0 -12
- package/bootstrap-icons/balloon-heart.d.ts +0 -5
- package/bootstrap-icons/balloon-heart.js +0 -12
- package/bootstrap-icons/balloon.d.ts +0 -5
- package/bootstrap-icons/balloon.js +0 -12
- package/bootstrap-icons/bandaid-fill.d.ts +0 -5
- package/bootstrap-icons/bandaid-fill.js +0 -12
- package/bootstrap-icons/bandaid.d.ts +0 -5
- package/bootstrap-icons/bandaid.js +0 -12
- package/bootstrap-icons/bank.d.ts +0 -5
- package/bootstrap-icons/bank.js +0 -12
- package/bootstrap-icons/bank2.d.ts +0 -5
- package/bootstrap-icons/bank2.js +0 -12
- package/bootstrap-icons/bar-chart-fill.d.ts +0 -5
- package/bootstrap-icons/bar-chart-fill.js +0 -12
- package/bootstrap-icons/bar-chart-line-fill.d.ts +0 -5
- package/bootstrap-icons/bar-chart-line-fill.js +0 -12
- package/bootstrap-icons/bar-chart-line.d.ts +0 -5
- package/bootstrap-icons/bar-chart-line.js +0 -12
- package/bootstrap-icons/bar-chart-steps.d.ts +0 -5
- package/bootstrap-icons/bar-chart-steps.js +0 -12
- package/bootstrap-icons/bar-chart.d.ts +0 -5
- package/bootstrap-icons/bar-chart.js +0 -12
- package/bootstrap-icons/basket-fill.d.ts +0 -5
- package/bootstrap-icons/basket-fill.js +0 -12
- package/bootstrap-icons/basket.d.ts +0 -5
- package/bootstrap-icons/basket.js +0 -12
- package/bootstrap-icons/basket2-fill.d.ts +0 -5
- package/bootstrap-icons/basket2-fill.js +0 -12
- package/bootstrap-icons/basket2.d.ts +0 -5
- package/bootstrap-icons/basket2.js +0 -12
- package/bootstrap-icons/basket3-fill.d.ts +0 -5
- package/bootstrap-icons/basket3-fill.js +0 -12
- package/bootstrap-icons/basket3.d.ts +0 -5
- package/bootstrap-icons/basket3.js +0 -12
- package/bootstrap-icons/battery-charging.d.ts +0 -5
- package/bootstrap-icons/battery-charging.js +0 -12
- package/bootstrap-icons/battery-full.d.ts +0 -5
- package/bootstrap-icons/battery-full.js +0 -12
- package/bootstrap-icons/battery-half.d.ts +0 -5
- package/bootstrap-icons/battery-half.js +0 -12
- package/bootstrap-icons/battery.d.ts +0 -5
- package/bootstrap-icons/battery.js +0 -12
- package/bootstrap-icons/behance.d.ts +0 -5
- package/bootstrap-icons/behance.js +0 -12
- package/bootstrap-icons/bell-fill.d.ts +0 -5
- package/bootstrap-icons/bell-fill.js +0 -12
- package/bootstrap-icons/bell-slash-fill.d.ts +0 -5
- package/bootstrap-icons/bell-slash-fill.js +0 -12
- package/bootstrap-icons/bell-slash.d.ts +0 -5
- package/bootstrap-icons/bell-slash.js +0 -12
- package/bootstrap-icons/bell.d.ts +0 -5
- package/bootstrap-icons/bell.js +0 -12
- package/bootstrap-icons/bezier.d.ts +0 -5
- package/bootstrap-icons/bezier.js +0 -12
- package/bootstrap-icons/bezier2.d.ts +0 -5
- package/bootstrap-icons/bezier2.js +0 -12
- package/bootstrap-icons/bicycle.d.ts +0 -5
- package/bootstrap-icons/bicycle.js +0 -12
- package/bootstrap-icons/binoculars-fill.d.ts +0 -5
- package/bootstrap-icons/binoculars-fill.js +0 -12
- package/bootstrap-icons/binoculars.d.ts +0 -5
- package/bootstrap-icons/binoculars.js +0 -12
- package/bootstrap-icons/blockquote-left.d.ts +0 -5
- package/bootstrap-icons/blockquote-left.js +0 -12
- package/bootstrap-icons/blockquote-right.d.ts +0 -5
- package/bootstrap-icons/blockquote-right.js +0 -12
- package/bootstrap-icons/bluetooth.d.ts +0 -5
- package/bootstrap-icons/bluetooth.js +0 -12
- package/bootstrap-icons/body-text.d.ts +0 -5
- package/bootstrap-icons/body-text.js +0 -12
- package/bootstrap-icons/book-fill.d.ts +0 -5
- package/bootstrap-icons/book-fill.js +0 -12
- package/bootstrap-icons/book-half.d.ts +0 -5
- package/bootstrap-icons/book-half.js +0 -12
- package/bootstrap-icons/book.d.ts +0 -5
- package/bootstrap-icons/book.js +0 -12
- package/bootstrap-icons/bookmark-check-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-check-fill.js +0 -12
- package/bootstrap-icons/bookmark-check.d.ts +0 -5
- package/bootstrap-icons/bookmark-check.js +0 -12
- package/bootstrap-icons/bookmark-dash-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-dash-fill.js +0 -12
- package/bootstrap-icons/bookmark-dash.d.ts +0 -5
- package/bootstrap-icons/bookmark-dash.js +0 -12
- package/bootstrap-icons/bookmark-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-fill.js +0 -12
- package/bootstrap-icons/bookmark-heart-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-heart-fill.js +0 -12
- package/bootstrap-icons/bookmark-heart.d.ts +0 -5
- package/bootstrap-icons/bookmark-heart.js +0 -12
- package/bootstrap-icons/bookmark-plus-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-plus-fill.js +0 -12
- package/bootstrap-icons/bookmark-plus.d.ts +0 -5
- package/bootstrap-icons/bookmark-plus.js +0 -12
- package/bootstrap-icons/bookmark-star-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-star-fill.js +0 -12
- package/bootstrap-icons/bookmark-star.d.ts +0 -5
- package/bootstrap-icons/bookmark-star.js +0 -12
- package/bootstrap-icons/bookmark-x-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-x-fill.js +0 -12
- package/bootstrap-icons/bookmark-x.d.ts +0 -5
- package/bootstrap-icons/bookmark-x.js +0 -12
- package/bootstrap-icons/bookmark.d.ts +0 -5
- package/bootstrap-icons/bookmark.js +0 -12
- package/bootstrap-icons/bookmarks-fill.d.ts +0 -5
- package/bootstrap-icons/bookmarks-fill.js +0 -12
- package/bootstrap-icons/bookmarks.d.ts +0 -5
- package/bootstrap-icons/bookmarks.js +0 -12
- package/bootstrap-icons/bookshelf.d.ts +0 -5
- package/bootstrap-icons/bookshelf.js +0 -12
- package/bootstrap-icons/boombox-fill.d.ts +0 -5
- package/bootstrap-icons/boombox-fill.js +0 -12
- package/bootstrap-icons/boombox.d.ts +0 -5
- package/bootstrap-icons/boombox.js +0 -12
- package/bootstrap-icons/bootstrap-fill.d.ts +0 -5
- package/bootstrap-icons/bootstrap-fill.js +0 -12
- package/bootstrap-icons/bootstrap-reboot.d.ts +0 -5
- package/bootstrap-icons/bootstrap-reboot.js +0 -12
- package/bootstrap-icons/bootstrap.d.ts +0 -5
- package/bootstrap-icons/bootstrap.js +0 -12
- package/bootstrap-icons/border-all.d.ts +0 -5
- package/bootstrap-icons/border-all.js +0 -12
- package/bootstrap-icons/border-bottom.d.ts +0 -5
- package/bootstrap-icons/border-bottom.js +0 -12
- package/bootstrap-icons/border-center.d.ts +0 -5
- package/bootstrap-icons/border-center.js +0 -12
- package/bootstrap-icons/border-inner.d.ts +0 -5
- package/bootstrap-icons/border-inner.js +0 -12
- package/bootstrap-icons/border-left.d.ts +0 -5
- package/bootstrap-icons/border-left.js +0 -12
- package/bootstrap-icons/border-middle.d.ts +0 -5
- package/bootstrap-icons/border-middle.js +0 -12
- package/bootstrap-icons/border-outer.d.ts +0 -5
- package/bootstrap-icons/border-outer.js +0 -12
- package/bootstrap-icons/border-right.d.ts +0 -5
- package/bootstrap-icons/border-right.js +0 -12
- package/bootstrap-icons/border-style.d.ts +0 -5
- package/bootstrap-icons/border-style.js +0 -12
- package/bootstrap-icons/border-top.d.ts +0 -5
- package/bootstrap-icons/border-top.js +0 -12
- package/bootstrap-icons/border-width.d.ts +0 -5
- package/bootstrap-icons/border-width.js +0 -12
- package/bootstrap-icons/border.d.ts +0 -5
- package/bootstrap-icons/border.js +0 -12
- package/bootstrap-icons/bounding-box-circles.d.ts +0 -5
- package/bootstrap-icons/bounding-box-circles.js +0 -12
- package/bootstrap-icons/bounding-box.d.ts +0 -5
- package/bootstrap-icons/bounding-box.js +0 -12
- package/bootstrap-icons/box-arrow-down-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down-left.js +0 -12
- package/bootstrap-icons/box-arrow-down-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down-right.js +0 -12
- package/bootstrap-icons/box-arrow-down.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down.js +0 -12
- package/bootstrap-icons/box-arrow-in-down-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-down-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-down.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down.js +0 -12
- package/bootstrap-icons/box-arrow-in-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-up-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-up-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-up.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up.js +0 -12
- package/bootstrap-icons/box-arrow-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-left.js +0 -12
- package/bootstrap-icons/box-arrow-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-right.js +0 -12
- package/bootstrap-icons/box-arrow-up-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up-left.js +0 -12
- package/bootstrap-icons/box-arrow-up-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up-right.js +0 -12
- package/bootstrap-icons/box-arrow-up.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up.js +0 -12
- package/bootstrap-icons/box-seam.d.ts +0 -5
- package/bootstrap-icons/box-seam.js +0 -12
- package/bootstrap-icons/box.d.ts +0 -5
- package/bootstrap-icons/box.js +0 -12
- package/bootstrap-icons/box2-fill.d.ts +0 -5
- package/bootstrap-icons/box2-fill.js +0 -12
- package/bootstrap-icons/box2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/box2-heart-fill.js +0 -12
- package/bootstrap-icons/box2-heart.d.ts +0 -5
- package/bootstrap-icons/box2-heart.js +0 -12
- package/bootstrap-icons/box2.d.ts +0 -5
- package/bootstrap-icons/box2.js +0 -12
- package/bootstrap-icons/boxes.d.ts +0 -5
- package/bootstrap-icons/boxes.js +0 -12
- package/bootstrap-icons/braces-asterisk.d.ts +0 -5
- package/bootstrap-icons/braces-asterisk.js +0 -12
- package/bootstrap-icons/braces.d.ts +0 -5
- package/bootstrap-icons/braces.js +0 -12
- package/bootstrap-icons/bricks.d.ts +0 -5
- package/bootstrap-icons/bricks.js +0 -12
- package/bootstrap-icons/briefcase-fill.d.ts +0 -5
- package/bootstrap-icons/briefcase-fill.js +0 -12
- package/bootstrap-icons/briefcase.d.ts +0 -5
- package/bootstrap-icons/briefcase.js +0 -12
- package/bootstrap-icons/brightness-alt-high-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-high-fill.js +0 -12
- package/bootstrap-icons/brightness-alt-high.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-high.js +0 -12
- package/bootstrap-icons/brightness-alt-low-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-low-fill.js +0 -12
- package/bootstrap-icons/brightness-alt-low.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-low.js +0 -12
- package/bootstrap-icons/brightness-high-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-high-fill.js +0 -12
- package/bootstrap-icons/brightness-high.d.ts +0 -5
- package/bootstrap-icons/brightness-high.js +0 -12
- package/bootstrap-icons/brightness-low-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-low-fill.js +0 -12
- package/bootstrap-icons/brightness-low.d.ts +0 -5
- package/bootstrap-icons/brightness-low.js +0 -12
- package/bootstrap-icons/broadcast-pin.d.ts +0 -5
- package/bootstrap-icons/broadcast-pin.js +0 -12
- package/bootstrap-icons/broadcast.d.ts +0 -5
- package/bootstrap-icons/broadcast.js +0 -12
- package/bootstrap-icons/brush-fill.d.ts +0 -5
- package/bootstrap-icons/brush-fill.js +0 -12
- package/bootstrap-icons/brush.d.ts +0 -5
- package/bootstrap-icons/brush.js +0 -12
- package/bootstrap-icons/bucket-fill.d.ts +0 -5
- package/bootstrap-icons/bucket-fill.js +0 -12
- package/bootstrap-icons/bucket.d.ts +0 -5
- package/bootstrap-icons/bucket.js +0 -12
- package/bootstrap-icons/bug-fill.d.ts +0 -5
- package/bootstrap-icons/bug-fill.js +0 -12
- package/bootstrap-icons/bug.d.ts +0 -5
- package/bootstrap-icons/bug.js +0 -12
- package/bootstrap-icons/building.d.ts +0 -5
- package/bootstrap-icons/building.js +0 -12
- package/bootstrap-icons/bullseye.d.ts +0 -5
- package/bootstrap-icons/bullseye.js +0 -12
- package/bootstrap-icons/calculator-fill.d.ts +0 -5
- package/bootstrap-icons/calculator-fill.js +0 -12
- package/bootstrap-icons/calculator.d.ts +0 -5
- package/bootstrap-icons/calculator.js +0 -12
- package/bootstrap-icons/calendar-check-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-check-fill.js +0 -12
- package/bootstrap-icons/calendar-check.d.ts +0 -5
- package/bootstrap-icons/calendar-check.js +0 -12
- package/bootstrap-icons/calendar-date-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-date-fill.js +0 -12
- package/bootstrap-icons/calendar-date.d.ts +0 -5
- package/bootstrap-icons/calendar-date.js +0 -12
- package/bootstrap-icons/calendar-day-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-day-fill.js +0 -12
- package/bootstrap-icons/calendar-day.d.ts +0 -5
- package/bootstrap-icons/calendar-day.js +0 -12
- package/bootstrap-icons/calendar-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-event-fill.js +0 -12
- package/bootstrap-icons/calendar-event.d.ts +0 -5
- package/bootstrap-icons/calendar-event.js +0 -12
- package/bootstrap-icons/calendar-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-fill.js +0 -12
- package/bootstrap-icons/calendar-heart-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-heart-fill.js +0 -12
- package/bootstrap-icons/calendar-heart.d.ts +0 -5
- package/bootstrap-icons/calendar-heart.js +0 -12
- package/bootstrap-icons/calendar-minus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-minus-fill.js +0 -12
- package/bootstrap-icons/calendar-minus.d.ts +0 -5
- package/bootstrap-icons/calendar-minus.js +0 -12
- package/bootstrap-icons/calendar-month-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-month-fill.js +0 -12
- package/bootstrap-icons/calendar-month.d.ts +0 -5
- package/bootstrap-icons/calendar-month.js +0 -12
- package/bootstrap-icons/calendar-plus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-plus-fill.js +0 -12
- package/bootstrap-icons/calendar-plus.d.ts +0 -5
- package/bootstrap-icons/calendar-plus.js +0 -12
- package/bootstrap-icons/calendar-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-range-fill.js +0 -12
- package/bootstrap-icons/calendar-range.d.ts +0 -5
- package/bootstrap-icons/calendar-range.js +0 -12
- package/bootstrap-icons/calendar-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-week-fill.js +0 -12
- package/bootstrap-icons/calendar-week.d.ts +0 -5
- package/bootstrap-icons/calendar-week.js +0 -12
- package/bootstrap-icons/calendar-x-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-x-fill.js +0 -12
- package/bootstrap-icons/calendar-x.d.ts +0 -5
- package/bootstrap-icons/calendar-x.js +0 -12
- package/bootstrap-icons/calendar.d.ts +0 -5
- package/bootstrap-icons/calendar.js +0 -12
- package/bootstrap-icons/calendar2-check-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-check-fill.js +0 -12
- package/bootstrap-icons/calendar2-check.d.ts +0 -5
- package/bootstrap-icons/calendar2-check.js +0 -12
- package/bootstrap-icons/calendar2-date-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-date-fill.js +0 -12
- package/bootstrap-icons/calendar2-date.d.ts +0 -5
- package/bootstrap-icons/calendar2-date.js +0 -12
- package/bootstrap-icons/calendar2-day-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-day-fill.js +0 -12
- package/bootstrap-icons/calendar2-day.d.ts +0 -5
- package/bootstrap-icons/calendar2-day.js +0 -12
- package/bootstrap-icons/calendar2-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-event-fill.js +0 -12
- package/bootstrap-icons/calendar2-event.d.ts +0 -5
- package/bootstrap-icons/calendar2-event.js +0 -12
- package/bootstrap-icons/calendar2-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-fill.js +0 -12
- package/bootstrap-icons/calendar2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-heart-fill.js +0 -12
- package/bootstrap-icons/calendar2-heart.d.ts +0 -5
- package/bootstrap-icons/calendar2-heart.js +0 -12
- package/bootstrap-icons/calendar2-minus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-minus-fill.js +0 -12
- package/bootstrap-icons/calendar2-minus.d.ts +0 -5
- package/bootstrap-icons/calendar2-minus.js +0 -12
- package/bootstrap-icons/calendar2-month-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-month-fill.js +0 -12
- package/bootstrap-icons/calendar2-month.d.ts +0 -5
- package/bootstrap-icons/calendar2-month.js +0 -12
- package/bootstrap-icons/calendar2-plus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-plus-fill.js +0 -12
- package/bootstrap-icons/calendar2-plus.d.ts +0 -5
- package/bootstrap-icons/calendar2-plus.js +0 -12
- package/bootstrap-icons/calendar2-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-range-fill.js +0 -12
- package/bootstrap-icons/calendar2-range.d.ts +0 -5
- package/bootstrap-icons/calendar2-range.js +0 -12
- package/bootstrap-icons/calendar2-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-week-fill.js +0 -12
- package/bootstrap-icons/calendar2-week.d.ts +0 -5
- package/bootstrap-icons/calendar2-week.js +0 -12
- package/bootstrap-icons/calendar2-x-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-x-fill.js +0 -12
- package/bootstrap-icons/calendar2-x.d.ts +0 -5
- package/bootstrap-icons/calendar2-x.js +0 -12
- package/bootstrap-icons/calendar2.d.ts +0 -5
- package/bootstrap-icons/calendar2.js +0 -12
- package/bootstrap-icons/calendar3-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-event-fill.js +0 -12
- package/bootstrap-icons/calendar3-event.d.ts +0 -5
- package/bootstrap-icons/calendar3-event.js +0 -12
- package/bootstrap-icons/calendar3-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-fill.js +0 -12
- package/bootstrap-icons/calendar3-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-range-fill.js +0 -12
- package/bootstrap-icons/calendar3-range.d.ts +0 -5
- package/bootstrap-icons/calendar3-range.js +0 -12
- package/bootstrap-icons/calendar3-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-week-fill.js +0 -12
- package/bootstrap-icons/calendar3-week.d.ts +0 -5
- package/bootstrap-icons/calendar3-week.js +0 -12
- package/bootstrap-icons/calendar3.d.ts +0 -5
- package/bootstrap-icons/calendar3.js +0 -12
- package/bootstrap-icons/calendar4-event.d.ts +0 -5
- package/bootstrap-icons/calendar4-event.js +0 -12
- package/bootstrap-icons/calendar4-range.d.ts +0 -5
- package/bootstrap-icons/calendar4-range.js +0 -12
- package/bootstrap-icons/calendar4-week.d.ts +0 -5
- package/bootstrap-icons/calendar4-week.js +0 -12
- package/bootstrap-icons/calendar4.d.ts +0 -5
- package/bootstrap-icons/calendar4.js +0 -12
- package/bootstrap-icons/camera-fill.d.ts +0 -5
- package/bootstrap-icons/camera-fill.js +0 -12
- package/bootstrap-icons/camera-reels-fill.d.ts +0 -5
- package/bootstrap-icons/camera-reels-fill.js +0 -12
- package/bootstrap-icons/camera-reels.d.ts +0 -5
- package/bootstrap-icons/camera-reels.js +0 -12
- package/bootstrap-icons/camera-video-fill.d.ts +0 -5
- package/bootstrap-icons/camera-video-fill.js +0 -12
- package/bootstrap-icons/camera-video-off-fill.d.ts +0 -5
- package/bootstrap-icons/camera-video-off-fill.js +0 -12
- package/bootstrap-icons/camera-video-off.d.ts +0 -5
- package/bootstrap-icons/camera-video-off.js +0 -12
- package/bootstrap-icons/camera-video.d.ts +0 -5
- package/bootstrap-icons/camera-video.js +0 -12
- package/bootstrap-icons/camera.d.ts +0 -5
- package/bootstrap-icons/camera.js +0 -12
- package/bootstrap-icons/camera2.d.ts +0 -5
- package/bootstrap-icons/camera2.js +0 -12
- package/bootstrap-icons/capslock-fill.d.ts +0 -5
- package/bootstrap-icons/capslock-fill.js +0 -12
- package/bootstrap-icons/capslock.d.ts +0 -5
- package/bootstrap-icons/capslock.js +0 -12
- package/bootstrap-icons/card-checklist.d.ts +0 -5
- package/bootstrap-icons/card-checklist.js +0 -12
- package/bootstrap-icons/card-heading.d.ts +0 -5
- package/bootstrap-icons/card-heading.js +0 -12
- package/bootstrap-icons/card-image.d.ts +0 -5
- package/bootstrap-icons/card-image.js +0 -12
- package/bootstrap-icons/card-list.d.ts +0 -5
- package/bootstrap-icons/card-list.js +0 -12
- package/bootstrap-icons/card-text.d.ts +0 -5
- package/bootstrap-icons/card-text.js +0 -12
- package/bootstrap-icons/caret-down-fill.d.ts +0 -5
- package/bootstrap-icons/caret-down-fill.js +0 -12
- package/bootstrap-icons/caret-down-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-down-square-fill.js +0 -12
- package/bootstrap-icons/caret-down-square.d.ts +0 -5
- package/bootstrap-icons/caret-down-square.js +0 -12
- package/bootstrap-icons/caret-down.d.ts +0 -5
- package/bootstrap-icons/caret-down.js +0 -12
- package/bootstrap-icons/caret-left-fill.d.ts +0 -5
- package/bootstrap-icons/caret-left-fill.js +0 -12
- package/bootstrap-icons/caret-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-left-square-fill.js +0 -12
- package/bootstrap-icons/caret-left-square.d.ts +0 -5
- package/bootstrap-icons/caret-left-square.js +0 -12
- package/bootstrap-icons/caret-left.d.ts +0 -5
- package/bootstrap-icons/caret-left.js +0 -12
- package/bootstrap-icons/caret-right-fill.d.ts +0 -5
- package/bootstrap-icons/caret-right-fill.js +0 -12
- package/bootstrap-icons/caret-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-right-square-fill.js +0 -12
- package/bootstrap-icons/caret-right-square.d.ts +0 -5
- package/bootstrap-icons/caret-right-square.js +0 -12
- package/bootstrap-icons/caret-right.d.ts +0 -5
- package/bootstrap-icons/caret-right.js +0 -12
- package/bootstrap-icons/caret-up-fill.d.ts +0 -5
- package/bootstrap-icons/caret-up-fill.js +0 -12
- package/bootstrap-icons/caret-up-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-up-square-fill.js +0 -12
- package/bootstrap-icons/caret-up-square.d.ts +0 -5
- package/bootstrap-icons/caret-up-square.js +0 -12
- package/bootstrap-icons/caret-up.d.ts +0 -5
- package/bootstrap-icons/caret-up.js +0 -12
- package/bootstrap-icons/cart-check-fill.d.ts +0 -5
- package/bootstrap-icons/cart-check-fill.js +0 -12
- package/bootstrap-icons/cart-check.d.ts +0 -5
- package/bootstrap-icons/cart-check.js +0 -12
- package/bootstrap-icons/cart-dash-fill.d.ts +0 -5
- package/bootstrap-icons/cart-dash-fill.js +0 -12
- package/bootstrap-icons/cart-dash.d.ts +0 -5
- package/bootstrap-icons/cart-dash.js +0 -12
- package/bootstrap-icons/cart-fill.d.ts +0 -5
- package/bootstrap-icons/cart-fill.js +0 -12
- package/bootstrap-icons/cart-plus-fill.d.ts +0 -5
- package/bootstrap-icons/cart-plus-fill.js +0 -12
- package/bootstrap-icons/cart-plus.d.ts +0 -5
- package/bootstrap-icons/cart-plus.js +0 -12
- package/bootstrap-icons/cart-x-fill.d.ts +0 -5
- package/bootstrap-icons/cart-x-fill.js +0 -12
- package/bootstrap-icons/cart-x.d.ts +0 -5
- package/bootstrap-icons/cart-x.js +0 -12
- package/bootstrap-icons/cart.d.ts +0 -5
- package/bootstrap-icons/cart.js +0 -12
- package/bootstrap-icons/cart2.d.ts +0 -5
- package/bootstrap-icons/cart2.js +0 -12
- package/bootstrap-icons/cart3.d.ts +0 -5
- package/bootstrap-icons/cart3.js +0 -12
- package/bootstrap-icons/cart4.d.ts +0 -5
- package/bootstrap-icons/cart4.js +0 -12
- package/bootstrap-icons/cash-coin.d.ts +0 -5
- package/bootstrap-icons/cash-coin.js +0 -12
- package/bootstrap-icons/cash-stack.d.ts +0 -5
- package/bootstrap-icons/cash-stack.js +0 -12
- package/bootstrap-icons/cash.d.ts +0 -5
- package/bootstrap-icons/cash.js +0 -12
- package/bootstrap-icons/cast.d.ts +0 -5
- package/bootstrap-icons/cast.js +0 -12
- package/bootstrap-icons/chat-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-dots-fill.js +0 -12
- package/bootstrap-icons/chat-dots.d.ts +0 -5
- package/bootstrap-icons/chat-dots.js +0 -12
- package/bootstrap-icons/chat-fill.d.ts +0 -5
- package/bootstrap-icons/chat-fill.js +0 -12
- package/bootstrap-icons/chat-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-heart-fill.js +0 -12
- package/bootstrap-icons/chat-heart.d.ts +0 -5
- package/bootstrap-icons/chat-heart.js +0 -12
- package/bootstrap-icons/chat-left-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-dots-fill.js +0 -12
- package/bootstrap-icons/chat-left-dots.d.ts +0 -5
- package/bootstrap-icons/chat-left-dots.js +0 -12
- package/bootstrap-icons/chat-left-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-fill.js +0 -12
- package/bootstrap-icons/chat-left-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-heart-fill.js +0 -12
- package/bootstrap-icons/chat-left-heart.d.ts +0 -5
- package/bootstrap-icons/chat-left-heart.js +0 -12
- package/bootstrap-icons/chat-left-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-quote-fill.js +0 -12
- package/bootstrap-icons/chat-left-quote.d.ts +0 -5
- package/bootstrap-icons/chat-left-quote.js +0 -12
- package/bootstrap-icons/chat-left-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-text-fill.js +0 -12
- package/bootstrap-icons/chat-left-text.d.ts +0 -5
- package/bootstrap-icons/chat-left-text.js +0 -12
- package/bootstrap-icons/chat-left.d.ts +0 -5
- package/bootstrap-icons/chat-left.js +0 -12
- package/bootstrap-icons/chat-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-quote-fill.js +0 -12
- package/bootstrap-icons/chat-quote.d.ts +0 -5
- package/bootstrap-icons/chat-quote.js +0 -12
- package/bootstrap-icons/chat-right-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-dots-fill.js +0 -12
- package/bootstrap-icons/chat-right-dots.d.ts +0 -5
- package/bootstrap-icons/chat-right-dots.js +0 -12
- package/bootstrap-icons/chat-right-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-fill.js +0 -12
- package/bootstrap-icons/chat-right-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-heart-fill.js +0 -12
- package/bootstrap-icons/chat-right-heart.d.ts +0 -5
- package/bootstrap-icons/chat-right-heart.js +0 -12
- package/bootstrap-icons/chat-right-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-quote-fill.js +0 -12
- package/bootstrap-icons/chat-right-quote.d.ts +0 -5
- package/bootstrap-icons/chat-right-quote.js +0 -12
- package/bootstrap-icons/chat-right-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-text-fill.js +0 -12
- package/bootstrap-icons/chat-right-text.d.ts +0 -5
- package/bootstrap-icons/chat-right-text.js +0 -12
- package/bootstrap-icons/chat-right.d.ts +0 -5
- package/bootstrap-icons/chat-right.js +0 -12
- package/bootstrap-icons/chat-square-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-dots-fill.js +0 -12
- package/bootstrap-icons/chat-square-dots.d.ts +0 -5
- package/bootstrap-icons/chat-square-dots.js +0 -12
- package/bootstrap-icons/chat-square-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-fill.js +0 -12
- package/bootstrap-icons/chat-square-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-heart-fill.js +0 -12
- package/bootstrap-icons/chat-square-heart.d.ts +0 -5
- package/bootstrap-icons/chat-square-heart.js +0 -12
- package/bootstrap-icons/chat-square-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-quote-fill.js +0 -12
- package/bootstrap-icons/chat-square-quote.d.ts +0 -5
- package/bootstrap-icons/chat-square-quote.js +0 -12
- package/bootstrap-icons/chat-square-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-text-fill.js +0 -12
- package/bootstrap-icons/chat-square-text.d.ts +0 -5
- package/bootstrap-icons/chat-square-text.js +0 -12
- package/bootstrap-icons/chat-square.d.ts +0 -5
- package/bootstrap-icons/chat-square.js +0 -12
- package/bootstrap-icons/chat-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-text-fill.js +0 -12
- package/bootstrap-icons/chat-text.d.ts +0 -5
- package/bootstrap-icons/chat-text.js +0 -12
- package/bootstrap-icons/chat.d.ts +0 -5
- package/bootstrap-icons/chat.js +0 -12
- package/bootstrap-icons/check-all.d.ts +0 -5
- package/bootstrap-icons/check-all.js +0 -12
- package/bootstrap-icons/check-circle-fill.d.ts +0 -5
- package/bootstrap-icons/check-circle-fill.js +0 -12
- package/bootstrap-icons/check-circle.d.ts +0 -5
- package/bootstrap-icons/check-circle.js +0 -12
- package/bootstrap-icons/check-lg.d.ts +0 -5
- package/bootstrap-icons/check-lg.js +0 -12
- package/bootstrap-icons/check-square-fill.d.ts +0 -5
- package/bootstrap-icons/check-square-fill.js +0 -12
- package/bootstrap-icons/check-square.d.ts +0 -5
- package/bootstrap-icons/check-square.js +0 -12
- package/bootstrap-icons/check.d.ts +0 -5
- package/bootstrap-icons/check.js +0 -12
- package/bootstrap-icons/check2-all.d.ts +0 -5
- package/bootstrap-icons/check2-all.js +0 -12
- package/bootstrap-icons/check2-circle.d.ts +0 -5
- package/bootstrap-icons/check2-circle.js +0 -12
- package/bootstrap-icons/check2-square.d.ts +0 -5
- package/bootstrap-icons/check2-square.js +0 -12
- package/bootstrap-icons/check2.d.ts +0 -5
- package/bootstrap-icons/check2.js +0 -12
- package/bootstrap-icons/chevron-bar-contract.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-contract.js +0 -12
- package/bootstrap-icons/chevron-bar-down.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-down.js +0 -12
- package/bootstrap-icons/chevron-bar-expand.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-expand.js +0 -12
- package/bootstrap-icons/chevron-bar-left.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-left.js +0 -12
- package/bootstrap-icons/chevron-bar-right.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-right.js +0 -12
- package/bootstrap-icons/chevron-bar-up.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-up.js +0 -12
- package/bootstrap-icons/chevron-compact-down.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-down.js +0 -12
- package/bootstrap-icons/chevron-compact-left.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-left.js +0 -12
- package/bootstrap-icons/chevron-compact-right.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-right.js +0 -12
- package/bootstrap-icons/chevron-compact-up.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-up.js +0 -12
- package/bootstrap-icons/chevron-contract.d.ts +0 -5
- package/bootstrap-icons/chevron-contract.js +0 -12
- package/bootstrap-icons/chevron-double-down.d.ts +0 -5
- package/bootstrap-icons/chevron-double-down.js +0 -12
- package/bootstrap-icons/chevron-double-left.d.ts +0 -5
- package/bootstrap-icons/chevron-double-left.js +0 -12
- package/bootstrap-icons/chevron-double-right.d.ts +0 -5
- package/bootstrap-icons/chevron-double-right.js +0 -12
- package/bootstrap-icons/chevron-double-up.d.ts +0 -5
- package/bootstrap-icons/chevron-double-up.js +0 -12
- package/bootstrap-icons/chevron-down.d.ts +0 -5
- package/bootstrap-icons/chevron-down.js +0 -12
- package/bootstrap-icons/chevron-expand.d.ts +0 -5
- package/bootstrap-icons/chevron-expand.js +0 -12
- package/bootstrap-icons/chevron-left.d.ts +0 -5
- package/bootstrap-icons/chevron-left.js +0 -12
- package/bootstrap-icons/chevron-right.d.ts +0 -5
- package/bootstrap-icons/chevron-right.js +0 -12
- package/bootstrap-icons/chevron-up.d.ts +0 -5
- package/bootstrap-icons/chevron-up.js +0 -12
- package/bootstrap-icons/circle-fill.d.ts +0 -5
- package/bootstrap-icons/circle-fill.js +0 -12
- package/bootstrap-icons/circle-half.d.ts +0 -5
- package/bootstrap-icons/circle-half.js +0 -12
- package/bootstrap-icons/circle-square.d.ts +0 -5
- package/bootstrap-icons/circle-square.js +0 -12
- package/bootstrap-icons/circle.d.ts +0 -5
- package/bootstrap-icons/circle.js +0 -12
- package/bootstrap-icons/clipboard-check-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-check-fill.js +0 -12
- package/bootstrap-icons/clipboard-check.d.ts +0 -5
- package/bootstrap-icons/clipboard-check.js +0 -12
- package/bootstrap-icons/clipboard-data-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-data-fill.js +0 -12
- package/bootstrap-icons/clipboard-data.d.ts +0 -5
- package/bootstrap-icons/clipboard-data.js +0 -12
- package/bootstrap-icons/clipboard-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-fill.js +0 -12
- package/bootstrap-icons/clipboard-heart-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-heart-fill.js +0 -12
- package/bootstrap-icons/clipboard-heart.d.ts +0 -5
- package/bootstrap-icons/clipboard-heart.js +0 -12
- package/bootstrap-icons/clipboard-minus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-minus-fill.js +0 -12
- package/bootstrap-icons/clipboard-minus.d.ts +0 -5
- package/bootstrap-icons/clipboard-minus.js +0 -12
- package/bootstrap-icons/clipboard-plus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-plus-fill.js +0 -12
- package/bootstrap-icons/clipboard-plus.d.ts +0 -5
- package/bootstrap-icons/clipboard-plus.js +0 -12
- package/bootstrap-icons/clipboard-pulse.d.ts +0 -5
- package/bootstrap-icons/clipboard-pulse.js +0 -12
- package/bootstrap-icons/clipboard-x-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-x-fill.js +0 -12
- package/bootstrap-icons/clipboard-x.d.ts +0 -5
- package/bootstrap-icons/clipboard-x.js +0 -12
- package/bootstrap-icons/clipboard.d.ts +0 -5
- package/bootstrap-icons/clipboard.js +0 -12
- package/bootstrap-icons/clipboard2-check-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-check-fill.js +0 -12
- package/bootstrap-icons/clipboard2-check.d.ts +0 -5
- package/bootstrap-icons/clipboard2-check.js +0 -12
- package/bootstrap-icons/clipboard2-data-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-data-fill.js +0 -12
- package/bootstrap-icons/clipboard2-data.d.ts +0 -5
- package/bootstrap-icons/clipboard2-data.js +0 -12
- package/bootstrap-icons/clipboard2-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-fill.js +0 -12
- package/bootstrap-icons/clipboard2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-heart-fill.js +0 -12
- package/bootstrap-icons/clipboard2-heart.d.ts +0 -5
- package/bootstrap-icons/clipboard2-heart.js +0 -12
- package/bootstrap-icons/clipboard2-minus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-minus-fill.js +0 -12
- package/bootstrap-icons/clipboard2-minus.d.ts +0 -5
- package/bootstrap-icons/clipboard2-minus.js +0 -12
- package/bootstrap-icons/clipboard2-plus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-plus-fill.js +0 -12
- package/bootstrap-icons/clipboard2-plus.d.ts +0 -5
- package/bootstrap-icons/clipboard2-plus.js +0 -12
- package/bootstrap-icons/clipboard2-pulse-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-pulse-fill.js +0 -12
- package/bootstrap-icons/clipboard2-pulse.d.ts +0 -5
- package/bootstrap-icons/clipboard2-pulse.js +0 -12
- package/bootstrap-icons/clipboard2-x-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-x-fill.js +0 -12
- package/bootstrap-icons/clipboard2-x.d.ts +0 -5
- package/bootstrap-icons/clipboard2-x.js +0 -12
- package/bootstrap-icons/clipboard2.d.ts +0 -5
- package/bootstrap-icons/clipboard2.js +0 -12
- package/bootstrap-icons/clock-fill.d.ts +0 -5
- package/bootstrap-icons/clock-fill.js +0 -12
- package/bootstrap-icons/clock-history.d.ts +0 -5
- package/bootstrap-icons/clock-history.js +0 -12
- package/bootstrap-icons/clock.d.ts +0 -5
- package/bootstrap-icons/clock.js +0 -12
- package/bootstrap-icons/cloud-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-down-fill.js +0 -12
- package/bootstrap-icons/cloud-arrow-down.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-down.js +0 -12
- package/bootstrap-icons/cloud-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-up-fill.js +0 -12
- package/bootstrap-icons/cloud-arrow-up.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-up.js +0 -12
- package/bootstrap-icons/cloud-check-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-check-fill.js +0 -12
- package/bootstrap-icons/cloud-check.d.ts +0 -5
- package/bootstrap-icons/cloud-check.js +0 -12
- package/bootstrap-icons/cloud-download-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-download-fill.js +0 -12
- package/bootstrap-icons/cloud-download.d.ts +0 -5
- package/bootstrap-icons/cloud-download.js +0 -12
- package/bootstrap-icons/cloud-drizzle-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-drizzle-fill.js +0 -12
- package/bootstrap-icons/cloud-drizzle.d.ts +0 -5
- package/bootstrap-icons/cloud-drizzle.js +0 -12
- package/bootstrap-icons/cloud-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fill.js +0 -12
- package/bootstrap-icons/cloud-fog-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fog-fill.js +0 -12
- package/bootstrap-icons/cloud-fog.d.ts +0 -5
- package/bootstrap-icons/cloud-fog.js +0 -12
- package/bootstrap-icons/cloud-fog2-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fog2-fill.js +0 -12
- package/bootstrap-icons/cloud-fog2.d.ts +0 -5
- package/bootstrap-icons/cloud-fog2.js +0 -12
- package/bootstrap-icons/cloud-hail-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-hail-fill.js +0 -12
- package/bootstrap-icons/cloud-hail.d.ts +0 -5
- package/bootstrap-icons/cloud-hail.js +0 -12
- package/bootstrap-icons/cloud-haze-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-haze-fill.js +0 -12
- package/bootstrap-icons/cloud-haze.d.ts +0 -5
- package/bootstrap-icons/cloud-haze.js +0 -12
- package/bootstrap-icons/cloud-haze2-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-haze2-fill.js +0 -12
- package/bootstrap-icons/cloud-haze2.d.ts +0 -5
- package/bootstrap-icons/cloud-haze2.js +0 -12
- package/bootstrap-icons/cloud-lightning-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-fill.js +0 -12
- package/bootstrap-icons/cloud-lightning-rain-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-rain-fill.js +0 -12
- package/bootstrap-icons/cloud-lightning-rain.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-rain.js +0 -12
- package/bootstrap-icons/cloud-lightning.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning.js +0 -12
- package/bootstrap-icons/cloud-minus-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-minus-fill.js +0 -12
- package/bootstrap-icons/cloud-minus.d.ts +0 -5
- package/bootstrap-icons/cloud-minus.js +0 -12
- package/bootstrap-icons/cloud-moon-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-moon-fill.js +0 -12
- package/bootstrap-icons/cloud-moon.d.ts +0 -5
- package/bootstrap-icons/cloud-moon.js +0 -12
- package/bootstrap-icons/cloud-plus-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-plus-fill.js +0 -12
- package/bootstrap-icons/cloud-plus.d.ts +0 -5
- package/bootstrap-icons/cloud-plus.js +0 -12
- package/bootstrap-icons/cloud-rain-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-fill.js +0 -12
- package/bootstrap-icons/cloud-rain-heavy-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-heavy-fill.js +0 -12
- package/bootstrap-icons/cloud-rain-heavy.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-heavy.js +0 -12
- package/bootstrap-icons/cloud-rain.d.ts +0 -5
- package/bootstrap-icons/cloud-rain.js +0 -12
- package/bootstrap-icons/cloud-slash-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-slash-fill.js +0 -12
- package/bootstrap-icons/cloud-slash.d.ts +0 -5
- package/bootstrap-icons/cloud-slash.js +0 -12
- package/bootstrap-icons/cloud-sleet-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-sleet-fill.js +0 -12
- package/bootstrap-icons/cloud-sleet.d.ts +0 -5
- package/bootstrap-icons/cloud-sleet.js +0 -12
- package/bootstrap-icons/cloud-snow-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-snow-fill.js +0 -12
- package/bootstrap-icons/cloud-snow.d.ts +0 -5
- package/bootstrap-icons/cloud-snow.js +0 -12
- package/bootstrap-icons/cloud-sun-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-sun-fill.js +0 -12
- package/bootstrap-icons/cloud-sun.d.ts +0 -5
- package/bootstrap-icons/cloud-sun.js +0 -12
- package/bootstrap-icons/cloud-upload-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-upload-fill.js +0 -12
- package/bootstrap-icons/cloud-upload.d.ts +0 -5
- package/bootstrap-icons/cloud-upload.js +0 -12
- package/bootstrap-icons/cloud.d.ts +0 -5
- package/bootstrap-icons/cloud.js +0 -12
- package/bootstrap-icons/clouds-fill.d.ts +0 -5
- package/bootstrap-icons/clouds-fill.js +0 -12
- package/bootstrap-icons/clouds.d.ts +0 -5
- package/bootstrap-icons/clouds.js +0 -12
- package/bootstrap-icons/cloudy-fill.d.ts +0 -5
- package/bootstrap-icons/cloudy-fill.js +0 -12
- package/bootstrap-icons/cloudy.d.ts +0 -5
- package/bootstrap-icons/cloudy.js +0 -12
- package/bootstrap-icons/code-slash.d.ts +0 -5
- package/bootstrap-icons/code-slash.js +0 -12
- package/bootstrap-icons/code-square.d.ts +0 -5
- package/bootstrap-icons/code-square.js +0 -12
- package/bootstrap-icons/code.d.ts +0 -5
- package/bootstrap-icons/code.js +0 -12
- package/bootstrap-icons/coin.d.ts +0 -5
- package/bootstrap-icons/coin.js +0 -12
- package/bootstrap-icons/collection-fill.d.ts +0 -5
- package/bootstrap-icons/collection-fill.js +0 -12
- package/bootstrap-icons/collection-play-fill.d.ts +0 -5
- package/bootstrap-icons/collection-play-fill.js +0 -12
- package/bootstrap-icons/collection-play.d.ts +0 -5
- package/bootstrap-icons/collection-play.js +0 -12
- package/bootstrap-icons/collection.d.ts +0 -5
- package/bootstrap-icons/collection.js +0 -12
- package/bootstrap-icons/columns-gap.d.ts +0 -5
- package/bootstrap-icons/columns-gap.js +0 -12
- package/bootstrap-icons/columns.d.ts +0 -5
- package/bootstrap-icons/columns.js +0 -12
- package/bootstrap-icons/command.d.ts +0 -5
- package/bootstrap-icons/command.js +0 -12
- package/bootstrap-icons/compass-fill.d.ts +0 -5
- package/bootstrap-icons/compass-fill.js +0 -12
- package/bootstrap-icons/compass.d.ts +0 -5
- package/bootstrap-icons/compass.js +0 -12
- package/bootstrap-icons/cone-striped.d.ts +0 -5
- package/bootstrap-icons/cone-striped.js +0 -12
- package/bootstrap-icons/cone.d.ts +0 -5
- package/bootstrap-icons/cone.js +0 -12
- package/bootstrap-icons/controller.d.ts +0 -5
- package/bootstrap-icons/controller.js +0 -12
- package/bootstrap-icons/cpu-fill.d.ts +0 -5
- package/bootstrap-icons/cpu-fill.js +0 -12
- package/bootstrap-icons/cpu.d.ts +0 -5
- package/bootstrap-icons/cpu.js +0 -12
- package/bootstrap-icons/credit-card-2-back-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-back-fill.js +0 -12
- package/bootstrap-icons/credit-card-2-back.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-back.js +0 -12
- package/bootstrap-icons/credit-card-2-front-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-front-fill.js +0 -12
- package/bootstrap-icons/credit-card-2-front.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-front.js +0 -12
- package/bootstrap-icons/credit-card-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-fill.js +0 -12
- package/bootstrap-icons/credit-card.d.ts +0 -5
- package/bootstrap-icons/credit-card.js +0 -12
- package/bootstrap-icons/crop.d.ts +0 -5
- package/bootstrap-icons/crop.js +0 -12
- package/bootstrap-icons/cup-fill.d.ts +0 -5
- package/bootstrap-icons/cup-fill.js +0 -12
- package/bootstrap-icons/cup-straw.d.ts +0 -5
- package/bootstrap-icons/cup-straw.js +0 -12
- package/bootstrap-icons/cup.d.ts +0 -5
- package/bootstrap-icons/cup.js +0 -12
- package/bootstrap-icons/currency-bitcoin.d.ts +0 -5
- package/bootstrap-icons/currency-bitcoin.js +0 -12
- package/bootstrap-icons/currency-dollar.d.ts +0 -5
- package/bootstrap-icons/currency-dollar.js +0 -12
- package/bootstrap-icons/currency-euro.d.ts +0 -5
- package/bootstrap-icons/currency-euro.js +0 -12
- package/bootstrap-icons/currency-exchange.d.ts +0 -5
- package/bootstrap-icons/currency-exchange.js +0 -12
- package/bootstrap-icons/currency-pound.d.ts +0 -5
- package/bootstrap-icons/currency-pound.js +0 -12
- package/bootstrap-icons/currency-yen.d.ts +0 -5
- package/bootstrap-icons/currency-yen.js +0 -12
- package/bootstrap-icons/cursor-fill.d.ts +0 -5
- package/bootstrap-icons/cursor-fill.js +0 -12
- package/bootstrap-icons/cursor-text.d.ts +0 -5
- package/bootstrap-icons/cursor-text.js +0 -12
- package/bootstrap-icons/cursor.d.ts +0 -5
- package/bootstrap-icons/cursor.js +0 -12
- package/bootstrap-icons/dash-circle-dotted.d.ts +0 -5
- package/bootstrap-icons/dash-circle-dotted.js +0 -12
- package/bootstrap-icons/dash-circle-fill.d.ts +0 -5
- package/bootstrap-icons/dash-circle-fill.js +0 -12
- package/bootstrap-icons/dash-circle.d.ts +0 -5
- package/bootstrap-icons/dash-circle.js +0 -12
- package/bootstrap-icons/dash-lg.d.ts +0 -5
- package/bootstrap-icons/dash-lg.js +0 -12
- package/bootstrap-icons/dash-square-dotted.d.ts +0 -5
- package/bootstrap-icons/dash-square-dotted.js +0 -12
- package/bootstrap-icons/dash-square-fill.d.ts +0 -5
- package/bootstrap-icons/dash-square-fill.js +0 -12
- package/bootstrap-icons/dash-square.d.ts +0 -5
- package/bootstrap-icons/dash-square.js +0 -12
- package/bootstrap-icons/dash.d.ts +0 -5
- package/bootstrap-icons/dash.js +0 -12
- package/bootstrap-icons/device-hdd-fill.d.ts +0 -5
- package/bootstrap-icons/device-hdd-fill.js +0 -12
- package/bootstrap-icons/device-hdd.d.ts +0 -5
- package/bootstrap-icons/device-hdd.js +0 -12
- package/bootstrap-icons/device-ssd-fill.d.ts +0 -5
- package/bootstrap-icons/device-ssd-fill.js +0 -12
- package/bootstrap-icons/device-ssd.d.ts +0 -5
- package/bootstrap-icons/device-ssd.js +0 -12
- package/bootstrap-icons/diagram-2-fill.d.ts +0 -5
- package/bootstrap-icons/diagram-2-fill.js +0 -12
- package/bootstrap-icons/diagram-2.d.ts +0 -5
- package/bootstrap-icons/diagram-2.js +0 -12
- package/bootstrap-icons/diagram-3-fill.d.ts +0 -5
- package/bootstrap-icons/diagram-3-fill.js +0 -12
- package/bootstrap-icons/diagram-3.d.ts +0 -5
- package/bootstrap-icons/diagram-3.js +0 -12
- package/bootstrap-icons/diamond-fill.d.ts +0 -5
- package/bootstrap-icons/diamond-fill.js +0 -12
- package/bootstrap-icons/diamond-half.d.ts +0 -5
- package/bootstrap-icons/diamond-half.js +0 -12
- package/bootstrap-icons/diamond.d.ts +0 -5
- package/bootstrap-icons/diamond.js +0 -12
- package/bootstrap-icons/dice-1-fill.d.ts +0 -5
- package/bootstrap-icons/dice-1-fill.js +0 -12
- package/bootstrap-icons/dice-1.d.ts +0 -5
- package/bootstrap-icons/dice-1.js +0 -12
- package/bootstrap-icons/dice-2-fill.d.ts +0 -5
- package/bootstrap-icons/dice-2-fill.js +0 -12
- package/bootstrap-icons/dice-2.d.ts +0 -5
- package/bootstrap-icons/dice-2.js +0 -12
- package/bootstrap-icons/dice-3-fill.d.ts +0 -5
- package/bootstrap-icons/dice-3-fill.js +0 -12
- package/bootstrap-icons/dice-3.d.ts +0 -5
- package/bootstrap-icons/dice-3.js +0 -12
- package/bootstrap-icons/dice-4-fill.d.ts +0 -5
- package/bootstrap-icons/dice-4-fill.js +0 -12
- package/bootstrap-icons/dice-4.d.ts +0 -5
- package/bootstrap-icons/dice-4.js +0 -12
- package/bootstrap-icons/dice-5-fill.d.ts +0 -5
- package/bootstrap-icons/dice-5-fill.js +0 -12
- package/bootstrap-icons/dice-5.d.ts +0 -5
- package/bootstrap-icons/dice-5.js +0 -12
- package/bootstrap-icons/dice-6-fill.d.ts +0 -5
- package/bootstrap-icons/dice-6-fill.js +0 -12
- package/bootstrap-icons/dice-6.d.ts +0 -5
- package/bootstrap-icons/dice-6.js +0 -12
- package/bootstrap-icons/disc-fill.d.ts +0 -5
- package/bootstrap-icons/disc-fill.js +0 -12
- package/bootstrap-icons/disc.d.ts +0 -5
- package/bootstrap-icons/disc.js +0 -12
- package/bootstrap-icons/discord.d.ts +0 -5
- package/bootstrap-icons/discord.js +0 -12
- package/bootstrap-icons/display-fill.d.ts +0 -5
- package/bootstrap-icons/display-fill.js +0 -12
- package/bootstrap-icons/display.d.ts +0 -5
- package/bootstrap-icons/display.js +0 -12
- package/bootstrap-icons/displayport-fill.d.ts +0 -5
- package/bootstrap-icons/displayport-fill.js +0 -12
- package/bootstrap-icons/displayport.d.ts +0 -5
- package/bootstrap-icons/displayport.js +0 -12
- package/bootstrap-icons/distribute-horizontal.d.ts +0 -5
- package/bootstrap-icons/distribute-horizontal.js +0 -12
- package/bootstrap-icons/distribute-vertical.d.ts +0 -5
- package/bootstrap-icons/distribute-vertical.js +0 -12
- package/bootstrap-icons/door-closed-fill.d.ts +0 -5
- package/bootstrap-icons/door-closed-fill.js +0 -12
- package/bootstrap-icons/door-closed.d.ts +0 -5
- package/bootstrap-icons/door-closed.js +0 -12
- package/bootstrap-icons/door-open-fill.d.ts +0 -5
- package/bootstrap-icons/door-open-fill.js +0 -12
- package/bootstrap-icons/door-open.d.ts +0 -5
- package/bootstrap-icons/door-open.js +0 -12
- package/bootstrap-icons/dot.d.ts +0 -5
- package/bootstrap-icons/dot.js +0 -12
- package/bootstrap-icons/download.d.ts +0 -5
- package/bootstrap-icons/download.js +0 -12
- package/bootstrap-icons/dpad-fill.d.ts +0 -5
- package/bootstrap-icons/dpad-fill.js +0 -12
- package/bootstrap-icons/dpad.d.ts +0 -5
- package/bootstrap-icons/dpad.js +0 -12
- package/bootstrap-icons/dribbble.d.ts +0 -5
- package/bootstrap-icons/dribbble.js +0 -12
- package/bootstrap-icons/droplet-fill.d.ts +0 -5
- package/bootstrap-icons/droplet-fill.js +0 -12
- package/bootstrap-icons/droplet-half.d.ts +0 -5
- package/bootstrap-icons/droplet-half.js +0 -12
- package/bootstrap-icons/droplet.d.ts +0 -5
- package/bootstrap-icons/droplet.js +0 -12
- package/bootstrap-icons/ear-fill.d.ts +0 -5
- package/bootstrap-icons/ear-fill.js +0 -12
- package/bootstrap-icons/ear.d.ts +0 -5
- package/bootstrap-icons/ear.js +0 -12
- package/bootstrap-icons/earbuds.d.ts +0 -5
- package/bootstrap-icons/earbuds.js +0 -12
- package/bootstrap-icons/easel-fill.d.ts +0 -5
- package/bootstrap-icons/easel-fill.js +0 -12
- package/bootstrap-icons/easel.d.ts +0 -5
- package/bootstrap-icons/easel.js +0 -12
- package/bootstrap-icons/easel2-fill.d.ts +0 -5
- package/bootstrap-icons/easel2-fill.js +0 -12
- package/bootstrap-icons/easel2.d.ts +0 -5
- package/bootstrap-icons/easel2.js +0 -12
- package/bootstrap-icons/easel3-fill.d.ts +0 -5
- package/bootstrap-icons/easel3-fill.js +0 -12
- package/bootstrap-icons/easel3.d.ts +0 -5
- package/bootstrap-icons/easel3.js +0 -12
- package/bootstrap-icons/egg-fill.d.ts +0 -5
- package/bootstrap-icons/egg-fill.js +0 -12
- package/bootstrap-icons/egg-fried.d.ts +0 -5
- package/bootstrap-icons/egg-fried.js +0 -12
- package/bootstrap-icons/egg.d.ts +0 -5
- package/bootstrap-icons/egg.js +0 -12
- package/bootstrap-icons/eject-fill.d.ts +0 -5
- package/bootstrap-icons/eject-fill.js +0 -12
- package/bootstrap-icons/eject.d.ts +0 -5
- package/bootstrap-icons/eject.js +0 -12
- package/bootstrap-icons/emoji-angry-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-angry-fill.js +0 -12
- package/bootstrap-icons/emoji-angry.d.ts +0 -5
- package/bootstrap-icons/emoji-angry.js +0 -12
- package/bootstrap-icons/emoji-dizzy-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-dizzy-fill.js +0 -12
- package/bootstrap-icons/emoji-dizzy.d.ts +0 -5
- package/bootstrap-icons/emoji-dizzy.js +0 -12
- package/bootstrap-icons/emoji-expressionless-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-expressionless-fill.js +0 -12
- package/bootstrap-icons/emoji-expressionless.d.ts +0 -5
- package/bootstrap-icons/emoji-expressionless.js +0 -12
- package/bootstrap-icons/emoji-frown-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-frown-fill.js +0 -12
- package/bootstrap-icons/emoji-frown.d.ts +0 -5
- package/bootstrap-icons/emoji-frown.js +0 -12
- package/bootstrap-icons/emoji-heart-eyes-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-heart-eyes-fill.js +0 -12
- package/bootstrap-icons/emoji-heart-eyes.d.ts +0 -5
- package/bootstrap-icons/emoji-heart-eyes.js +0 -12
- package/bootstrap-icons/emoji-kiss-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-kiss-fill.js +0 -12
- package/bootstrap-icons/emoji-kiss.d.ts +0 -5
- package/bootstrap-icons/emoji-kiss.js +0 -12
- package/bootstrap-icons/emoji-laughing-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-laughing-fill.js +0 -12
- package/bootstrap-icons/emoji-laughing.d.ts +0 -5
- package/bootstrap-icons/emoji-laughing.js +0 -12
- package/bootstrap-icons/emoji-neutral-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-neutral-fill.js +0 -12
- package/bootstrap-icons/emoji-neutral.d.ts +0 -5
- package/bootstrap-icons/emoji-neutral.js +0 -12
- package/bootstrap-icons/emoji-smile-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-fill.js +0 -12
- package/bootstrap-icons/emoji-smile-upside-down-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-upside-down-fill.js +0 -12
- package/bootstrap-icons/emoji-smile-upside-down.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-upside-down.js +0 -12
- package/bootstrap-icons/emoji-smile.d.ts +0 -5
- package/bootstrap-icons/emoji-smile.js +0 -12
- package/bootstrap-icons/emoji-sunglasses-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-sunglasses-fill.js +0 -12
- package/bootstrap-icons/emoji-sunglasses.d.ts +0 -5
- package/bootstrap-icons/emoji-sunglasses.js +0 -12
- package/bootstrap-icons/emoji-wink-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-wink-fill.js +0 -12
- package/bootstrap-icons/emoji-wink.d.ts +0 -5
- package/bootstrap-icons/emoji-wink.js +0 -12
- package/bootstrap-icons/envelope-check-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-check-fill.js +0 -12
- package/bootstrap-icons/envelope-check.d.ts +0 -5
- package/bootstrap-icons/envelope-check.js +0 -12
- package/bootstrap-icons/envelope-dash-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-dash-fill.js +0 -12
- package/bootstrap-icons/envelope-dash.d.ts +0 -5
- package/bootstrap-icons/envelope-dash.js +0 -12
- package/bootstrap-icons/envelope-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-exclamation-fill.js +0 -12
- package/bootstrap-icons/envelope-exclamation.d.ts +0 -5
- package/bootstrap-icons/envelope-exclamation.js +0 -12
- package/bootstrap-icons/envelope-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-fill.js +0 -12
- package/bootstrap-icons/envelope-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-heart.js +0 -12
- package/bootstrap-icons/envelope-open-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-open-fill.js +0 -12
- package/bootstrap-icons/envelope-open-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-open-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-open-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-open-heart.js +0 -12
- package/bootstrap-icons/envelope-open.d.ts +0 -5
- package/bootstrap-icons/envelope-open.js +0 -12
- package/bootstrap-icons/envelope-paper-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-fill.js +0 -12
- package/bootstrap-icons/envelope-paper-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-paper-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-heart.js +0 -12
- package/bootstrap-icons/envelope-paper.d.ts +0 -5
- package/bootstrap-icons/envelope-paper.js +0 -12
- package/bootstrap-icons/envelope-plus-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-plus-fill.js +0 -12
- package/bootstrap-icons/envelope-plus.d.ts +0 -5
- package/bootstrap-icons/envelope-plus.js +0 -12
- package/bootstrap-icons/envelope-slash-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-slash-fill.js +0 -12
- package/bootstrap-icons/envelope-slash.d.ts +0 -5
- package/bootstrap-icons/envelope-slash.js +0 -12
- package/bootstrap-icons/envelope-x-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-x-fill.js +0 -12
- package/bootstrap-icons/envelope-x.d.ts +0 -5
- package/bootstrap-icons/envelope-x.js +0 -12
- package/bootstrap-icons/envelope.d.ts +0 -5
- package/bootstrap-icons/envelope.js +0 -12
- package/bootstrap-icons/eraser-fill.d.ts +0 -5
- package/bootstrap-icons/eraser-fill.js +0 -12
- package/bootstrap-icons/eraser.d.ts +0 -5
- package/bootstrap-icons/eraser.js +0 -12
- package/bootstrap-icons/ethernet.d.ts +0 -5
- package/bootstrap-icons/ethernet.js +0 -12
- package/bootstrap-icons/exclamation-circle-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-circle-fill.js +0 -12
- package/bootstrap-icons/exclamation-circle.d.ts +0 -5
- package/bootstrap-icons/exclamation-circle.js +0 -12
- package/bootstrap-icons/exclamation-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-diamond-fill.js +0 -12
- package/bootstrap-icons/exclamation-diamond.d.ts +0 -5
- package/bootstrap-icons/exclamation-diamond.js +0 -12
- package/bootstrap-icons/exclamation-lg.d.ts +0 -5
- package/bootstrap-icons/exclamation-lg.js +0 -12
- package/bootstrap-icons/exclamation-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-octagon-fill.js +0 -12
- package/bootstrap-icons/exclamation-octagon.d.ts +0 -5
- package/bootstrap-icons/exclamation-octagon.js +0 -12
- package/bootstrap-icons/exclamation-square-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-square-fill.js +0 -12
- package/bootstrap-icons/exclamation-square.d.ts +0 -5
- package/bootstrap-icons/exclamation-square.js +0 -12
- package/bootstrap-icons/exclamation-triangle-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-triangle-fill.js +0 -12
- package/bootstrap-icons/exclamation-triangle.d.ts +0 -5
- package/bootstrap-icons/exclamation-triangle.js +0 -12
- package/bootstrap-icons/exclamation.d.ts +0 -5
- package/bootstrap-icons/exclamation.js +0 -12
- package/bootstrap-icons/exclude.d.ts +0 -5
- package/bootstrap-icons/exclude.js +0 -12
- package/bootstrap-icons/explicit-fill.d.ts +0 -5
- package/bootstrap-icons/explicit-fill.js +0 -12
- package/bootstrap-icons/explicit.d.ts +0 -5
- package/bootstrap-icons/explicit.js +0 -12
- package/bootstrap-icons/eye-fill.d.ts +0 -5
- package/bootstrap-icons/eye-fill.js +0 -12
- package/bootstrap-icons/eye-slash-fill.d.ts +0 -5
- package/bootstrap-icons/eye-slash-fill.js +0 -12
- package/bootstrap-icons/eye-slash.d.ts +0 -5
- package/bootstrap-icons/eye-slash.js +0 -12
- package/bootstrap-icons/eye.d.ts +0 -5
- package/bootstrap-icons/eye.js +0 -12
- package/bootstrap-icons/eyedropper.d.ts +0 -5
- package/bootstrap-icons/eyedropper.js +0 -12
- package/bootstrap-icons/eyeglasses.d.ts +0 -5
- package/bootstrap-icons/eyeglasses.js +0 -12
- package/bootstrap-icons/facebook.d.ts +0 -5
- package/bootstrap-icons/facebook.js +0 -12
- package/bootstrap-icons/fan.d.ts +0 -5
- package/bootstrap-icons/fan.js +0 -12
- package/bootstrap-icons/file-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/file-arrow-down-fill.js +0 -12
- package/bootstrap-icons/file-arrow-down.d.ts +0 -5
- package/bootstrap-icons/file-arrow-down.js +0 -12
- package/bootstrap-icons/file-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/file-arrow-up-fill.js +0 -12
- package/bootstrap-icons/file-arrow-up.d.ts +0 -5
- package/bootstrap-icons/file-arrow-up.js +0 -12
- package/bootstrap-icons/file-bar-graph-fill.d.ts +0 -5
- package/bootstrap-icons/file-bar-graph-fill.js +0 -12
- package/bootstrap-icons/file-bar-graph.d.ts +0 -5
- package/bootstrap-icons/file-bar-graph.js +0 -12
- package/bootstrap-icons/file-binary-fill.d.ts +0 -5
- package/bootstrap-icons/file-binary-fill.js +0 -12
- package/bootstrap-icons/file-binary.d.ts +0 -5
- package/bootstrap-icons/file-binary.js +0 -12
- package/bootstrap-icons/file-break-fill.d.ts +0 -5
- package/bootstrap-icons/file-break-fill.js +0 -12
- package/bootstrap-icons/file-break.d.ts +0 -5
- package/bootstrap-icons/file-break.js +0 -12
- package/bootstrap-icons/file-check-fill.d.ts +0 -5
- package/bootstrap-icons/file-check-fill.js +0 -12
- package/bootstrap-icons/file-check.d.ts +0 -5
- package/bootstrap-icons/file-check.js +0 -12
- package/bootstrap-icons/file-code-fill.d.ts +0 -5
- package/bootstrap-icons/file-code-fill.js +0 -12
- package/bootstrap-icons/file-code.d.ts +0 -5
- package/bootstrap-icons/file-code.js +0 -12
- package/bootstrap-icons/file-diff-fill.d.ts +0 -5
- package/bootstrap-icons/file-diff-fill.js +0 -12
- package/bootstrap-icons/file-diff.d.ts +0 -5
- package/bootstrap-icons/file-diff.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-down-fill.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-down.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-down.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-up-fill.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-up.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-up.js +0 -12
- package/bootstrap-icons/file-earmark-bar-graph-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-bar-graph-fill.js +0 -12
- package/bootstrap-icons/file-earmark-bar-graph.d.ts +0 -5
- package/bootstrap-icons/file-earmark-bar-graph.js +0 -12
- package/bootstrap-icons/file-earmark-binary-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-binary-fill.js +0 -12
- package/bootstrap-icons/file-earmark-binary.d.ts +0 -5
- package/bootstrap-icons/file-earmark-binary.js +0 -12
- package/bootstrap-icons/file-earmark-break-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-break-fill.js +0 -12
- package/bootstrap-icons/file-earmark-break.d.ts +0 -5
- package/bootstrap-icons/file-earmark-break.js +0 -12
- package/bootstrap-icons/file-earmark-check-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-check-fill.js +0 -12
- package/bootstrap-icons/file-earmark-check.d.ts +0 -5
- package/bootstrap-icons/file-earmark-check.js +0 -12
- package/bootstrap-icons/file-earmark-code-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-code-fill.js +0 -12
- package/bootstrap-icons/file-earmark-code.d.ts +0 -5
- package/bootstrap-icons/file-earmark-code.js +0 -12
- package/bootstrap-icons/file-earmark-diff-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-diff-fill.js +0 -12
- package/bootstrap-icons/file-earmark-diff.d.ts +0 -5
- package/bootstrap-icons/file-earmark-diff.js +0 -12
- package/bootstrap-icons/file-earmark-easel-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-easel-fill.js +0 -12
- package/bootstrap-icons/file-earmark-easel.d.ts +0 -5
- package/bootstrap-icons/file-earmark-easel.js +0 -12
- package/bootstrap-icons/file-earmark-excel-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-excel-fill.js +0 -12
- package/bootstrap-icons/file-earmark-excel.d.ts +0 -5
- package/bootstrap-icons/file-earmark-excel.js +0 -12
- package/bootstrap-icons/file-earmark-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-fill.js +0 -12
- package/bootstrap-icons/file-earmark-font-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-font-fill.js +0 -12
- package/bootstrap-icons/file-earmark-font.d.ts +0 -5
- package/bootstrap-icons/file-earmark-font.js +0 -12
- package/bootstrap-icons/file-earmark-image-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-image-fill.js +0 -12
- package/bootstrap-icons/file-earmark-image.d.ts +0 -5
- package/bootstrap-icons/file-earmark-image.js +0 -12
- package/bootstrap-icons/file-earmark-lock-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock-fill.js +0 -12
- package/bootstrap-icons/file-earmark-lock.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock.js +0 -12
- package/bootstrap-icons/file-earmark-lock2-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock2-fill.js +0 -12
- package/bootstrap-icons/file-earmark-lock2.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock2.js +0 -12
- package/bootstrap-icons/file-earmark-medical-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-medical-fill.js +0 -12
- package/bootstrap-icons/file-earmark-medical.d.ts +0 -5
- package/bootstrap-icons/file-earmark-medical.js +0 -12
- package/bootstrap-icons/file-earmark-minus-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-minus-fill.js +0 -12
- package/bootstrap-icons/file-earmark-minus.d.ts +0 -5
- package/bootstrap-icons/file-earmark-minus.js +0 -12
- package/bootstrap-icons/file-earmark-music-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-music-fill.js +0 -12
- package/bootstrap-icons/file-earmark-music.d.ts +0 -5
- package/bootstrap-icons/file-earmark-music.js +0 -12
- package/bootstrap-icons/file-earmark-pdf-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-pdf-fill.js +0 -12
- package/bootstrap-icons/file-earmark-pdf.d.ts +0 -5
- package/bootstrap-icons/file-earmark-pdf.js +0 -12
- package/bootstrap-icons/file-earmark-person-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-person-fill.js +0 -12
- package/bootstrap-icons/file-earmark-person.d.ts +0 -5
- package/bootstrap-icons/file-earmark-person.js +0 -12
- package/bootstrap-icons/file-earmark-play-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-play-fill.js +0 -12
- package/bootstrap-icons/file-earmark-play.d.ts +0 -5
- package/bootstrap-icons/file-earmark-play.js +0 -12
- package/bootstrap-icons/file-earmark-plus-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-plus-fill.js +0 -12
- package/bootstrap-icons/file-earmark-plus.d.ts +0 -5
- package/bootstrap-icons/file-earmark-plus.js +0 -12
- package/bootstrap-icons/file-earmark-post-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-post-fill.js +0 -12
- package/bootstrap-icons/file-earmark-post.d.ts +0 -5
- package/bootstrap-icons/file-earmark-post.js +0 -12
- package/bootstrap-icons/file-earmark-ppt-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ppt-fill.js +0 -12
- package/bootstrap-icons/file-earmark-ppt.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ppt.js +0 -12
- package/bootstrap-icons/file-earmark-richtext-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-richtext-fill.js +0 -12
- package/bootstrap-icons/file-earmark-richtext.d.ts +0 -5
- package/bootstrap-icons/file-earmark-richtext.js +0 -12
- package/bootstrap-icons/file-earmark-ruled-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ruled-fill.js +0 -12
- package/bootstrap-icons/file-earmark-ruled.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ruled.js +0 -12
- package/bootstrap-icons/file-earmark-slides-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-slides-fill.js +0 -12
- package/bootstrap-icons/file-earmark-slides.d.ts +0 -5
- package/bootstrap-icons/file-earmark-slides.js +0 -12
- package/bootstrap-icons/file-earmark-spreadsheet-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-spreadsheet-fill.js +0 -12
- package/bootstrap-icons/file-earmark-spreadsheet.d.ts +0 -5
- package/bootstrap-icons/file-earmark-spreadsheet.js +0 -12
- package/bootstrap-icons/file-earmark-text-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-text-fill.js +0 -12
- package/bootstrap-icons/file-earmark-text.d.ts +0 -5
- package/bootstrap-icons/file-earmark-text.js +0 -12
- package/bootstrap-icons/file-earmark-word-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-word-fill.js +0 -12
- package/bootstrap-icons/file-earmark-word.d.ts +0 -5
- package/bootstrap-icons/file-earmark-word.js +0 -12
- package/bootstrap-icons/file-earmark-x-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-x-fill.js +0 -12
- package/bootstrap-icons/file-earmark-x.d.ts +0 -5
- package/bootstrap-icons/file-earmark-x.js +0 -12
- package/bootstrap-icons/file-earmark-zip-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-zip-fill.js +0 -12
- package/bootstrap-icons/file-earmark-zip.d.ts +0 -5
- package/bootstrap-icons/file-earmark-zip.js +0 -12
- package/bootstrap-icons/file-earmark.d.ts +0 -5
- package/bootstrap-icons/file-earmark.js +0 -12
- package/bootstrap-icons/file-easel-fill.d.ts +0 -5
- package/bootstrap-icons/file-easel-fill.js +0 -12
- package/bootstrap-icons/file-easel.d.ts +0 -5
- package/bootstrap-icons/file-easel.js +0 -12
- package/bootstrap-icons/file-excel-fill.d.ts +0 -5
- package/bootstrap-icons/file-excel-fill.js +0 -12
- package/bootstrap-icons/file-excel.d.ts +0 -5
- package/bootstrap-icons/file-excel.js +0 -12
- package/bootstrap-icons/file-fill.d.ts +0 -5
- package/bootstrap-icons/file-fill.js +0 -12
- package/bootstrap-icons/file-font-fill.d.ts +0 -5
- package/bootstrap-icons/file-font-fill.js +0 -12
- package/bootstrap-icons/file-font.d.ts +0 -5
- package/bootstrap-icons/file-font.js +0 -12
- package/bootstrap-icons/file-image-fill.d.ts +0 -5
- package/bootstrap-icons/file-image-fill.js +0 -12
- package/bootstrap-icons/file-image.d.ts +0 -5
- package/bootstrap-icons/file-image.js +0 -12
- package/bootstrap-icons/file-lock-fill.d.ts +0 -5
- package/bootstrap-icons/file-lock-fill.js +0 -12
- package/bootstrap-icons/file-lock.d.ts +0 -5
- package/bootstrap-icons/file-lock.js +0 -12
- package/bootstrap-icons/file-lock2-fill.d.ts +0 -5
- package/bootstrap-icons/file-lock2-fill.js +0 -12
- package/bootstrap-icons/file-lock2.d.ts +0 -5
- package/bootstrap-icons/file-lock2.js +0 -12
- package/bootstrap-icons/file-medical-fill.d.ts +0 -5
- package/bootstrap-icons/file-medical-fill.js +0 -12
- package/bootstrap-icons/file-medical.d.ts +0 -5
- package/bootstrap-icons/file-medical.js +0 -12
- package/bootstrap-icons/file-minus-fill.d.ts +0 -5
- package/bootstrap-icons/file-minus-fill.js +0 -12
- package/bootstrap-icons/file-minus.d.ts +0 -5
- package/bootstrap-icons/file-minus.js +0 -12
- package/bootstrap-icons/file-music-fill.d.ts +0 -5
- package/bootstrap-icons/file-music-fill.js +0 -12
- package/bootstrap-icons/file-music.d.ts +0 -5
- package/bootstrap-icons/file-music.js +0 -12
- package/bootstrap-icons/file-pdf-fill.d.ts +0 -5
- package/bootstrap-icons/file-pdf-fill.js +0 -12
- package/bootstrap-icons/file-pdf.d.ts +0 -5
- package/bootstrap-icons/file-pdf.js +0 -12
- package/bootstrap-icons/file-person-fill.d.ts +0 -5
- package/bootstrap-icons/file-person-fill.js +0 -12
- package/bootstrap-icons/file-person.d.ts +0 -5
- package/bootstrap-icons/file-person.js +0 -12
- package/bootstrap-icons/file-play-fill.d.ts +0 -5
- package/bootstrap-icons/file-play-fill.js +0 -12
- package/bootstrap-icons/file-play.d.ts +0 -5
- package/bootstrap-icons/file-play.js +0 -12
- package/bootstrap-icons/file-plus-fill.d.ts +0 -5
- package/bootstrap-icons/file-plus-fill.js +0 -12
- package/bootstrap-icons/file-plus.d.ts +0 -5
- package/bootstrap-icons/file-plus.js +0 -12
- package/bootstrap-icons/file-post-fill.d.ts +0 -5
- package/bootstrap-icons/file-post-fill.js +0 -12
- package/bootstrap-icons/file-post.d.ts +0 -5
- package/bootstrap-icons/file-post.js +0 -12
- package/bootstrap-icons/file-ppt-fill.d.ts +0 -5
- package/bootstrap-icons/file-ppt-fill.js +0 -12
- package/bootstrap-icons/file-ppt.d.ts +0 -5
- package/bootstrap-icons/file-ppt.js +0 -12
- package/bootstrap-icons/file-richtext-fill.d.ts +0 -5
- package/bootstrap-icons/file-richtext-fill.js +0 -12
- package/bootstrap-icons/file-richtext.d.ts +0 -5
- package/bootstrap-icons/file-richtext.js +0 -12
- package/bootstrap-icons/file-ruled-fill.d.ts +0 -5
- package/bootstrap-icons/file-ruled-fill.js +0 -12
- package/bootstrap-icons/file-ruled.d.ts +0 -5
- package/bootstrap-icons/file-ruled.js +0 -12
- package/bootstrap-icons/file-slides-fill.d.ts +0 -5
- package/bootstrap-icons/file-slides-fill.js +0 -12
- package/bootstrap-icons/file-slides.d.ts +0 -5
- package/bootstrap-icons/file-slides.js +0 -12
- package/bootstrap-icons/file-spreadsheet-fill.d.ts +0 -5
- package/bootstrap-icons/file-spreadsheet-fill.js +0 -12
- package/bootstrap-icons/file-spreadsheet.d.ts +0 -5
- package/bootstrap-icons/file-spreadsheet.js +0 -12
- package/bootstrap-icons/file-text-fill.d.ts +0 -5
- package/bootstrap-icons/file-text-fill.js +0 -12
- package/bootstrap-icons/file-text.d.ts +0 -5
- package/bootstrap-icons/file-text.js +0 -12
- package/bootstrap-icons/file-word-fill.d.ts +0 -5
- package/bootstrap-icons/file-word-fill.js +0 -12
- package/bootstrap-icons/file-word.d.ts +0 -5
- package/bootstrap-icons/file-word.js +0 -12
- package/bootstrap-icons/file-x-fill.d.ts +0 -5
- package/bootstrap-icons/file-x-fill.js +0 -12
- package/bootstrap-icons/file-x.d.ts +0 -5
- package/bootstrap-icons/file-x.js +0 -12
- package/bootstrap-icons/file-zip-fill.d.ts +0 -5
- package/bootstrap-icons/file-zip-fill.js +0 -12
- package/bootstrap-icons/file-zip.d.ts +0 -5
- package/bootstrap-icons/file-zip.js +0 -12
- package/bootstrap-icons/file.d.ts +0 -5
- package/bootstrap-icons/file.js +0 -12
- package/bootstrap-icons/files-alt.d.ts +0 -5
- package/bootstrap-icons/files-alt.js +0 -12
- package/bootstrap-icons/files.d.ts +0 -5
- package/bootstrap-icons/files.js +0 -12
- package/bootstrap-icons/filetype-aac.d.ts +0 -5
- package/bootstrap-icons/filetype-aac.js +0 -12
- package/bootstrap-icons/filetype-ai.d.ts +0 -5
- package/bootstrap-icons/filetype-ai.js +0 -12
- package/bootstrap-icons/filetype-bmp.d.ts +0 -5
- package/bootstrap-icons/filetype-bmp.js +0 -12
- package/bootstrap-icons/filetype-cs.d.ts +0 -5
- package/bootstrap-icons/filetype-cs.js +0 -12
- package/bootstrap-icons/filetype-css.d.ts +0 -5
- package/bootstrap-icons/filetype-css.js +0 -12
- package/bootstrap-icons/filetype-csv.d.ts +0 -5
- package/bootstrap-icons/filetype-csv.js +0 -12
- package/bootstrap-icons/filetype-doc.d.ts +0 -5
- package/bootstrap-icons/filetype-doc.js +0 -12
- package/bootstrap-icons/filetype-docx.d.ts +0 -5
- package/bootstrap-icons/filetype-docx.js +0 -12
- package/bootstrap-icons/filetype-exe.d.ts +0 -5
- package/bootstrap-icons/filetype-exe.js +0 -12
- package/bootstrap-icons/filetype-gif.d.ts +0 -5
- package/bootstrap-icons/filetype-gif.js +0 -12
- package/bootstrap-icons/filetype-heic.d.ts +0 -5
- package/bootstrap-icons/filetype-heic.js +0 -12
- package/bootstrap-icons/filetype-html.d.ts +0 -5
- package/bootstrap-icons/filetype-html.js +0 -12
- package/bootstrap-icons/filetype-java.d.ts +0 -5
- package/bootstrap-icons/filetype-java.js +0 -12
- package/bootstrap-icons/filetype-jpg.d.ts +0 -5
- package/bootstrap-icons/filetype-jpg.js +0 -12
- package/bootstrap-icons/filetype-js.d.ts +0 -5
- package/bootstrap-icons/filetype-js.js +0 -12
- package/bootstrap-icons/filetype-json.d.ts +0 -5
- package/bootstrap-icons/filetype-json.js +0 -12
- package/bootstrap-icons/filetype-jsx.d.ts +0 -5
- package/bootstrap-icons/filetype-jsx.js +0 -12
- package/bootstrap-icons/filetype-key.d.ts +0 -5
- package/bootstrap-icons/filetype-key.js +0 -12
- package/bootstrap-icons/filetype-m4p.d.ts +0 -5
- package/bootstrap-icons/filetype-m4p.js +0 -12
- package/bootstrap-icons/filetype-md.d.ts +0 -5
- package/bootstrap-icons/filetype-md.js +0 -12
- package/bootstrap-icons/filetype-mdx.d.ts +0 -5
- package/bootstrap-icons/filetype-mdx.js +0 -12
- package/bootstrap-icons/filetype-mov.d.ts +0 -5
- package/bootstrap-icons/filetype-mov.js +0 -12
- package/bootstrap-icons/filetype-mp3.d.ts +0 -5
- package/bootstrap-icons/filetype-mp3.js +0 -12
- package/bootstrap-icons/filetype-mp4.d.ts +0 -5
- package/bootstrap-icons/filetype-mp4.js +0 -12
- package/bootstrap-icons/filetype-otf.d.ts +0 -5
- package/bootstrap-icons/filetype-otf.js +0 -12
- package/bootstrap-icons/filetype-pdf.d.ts +0 -5
- package/bootstrap-icons/filetype-pdf.js +0 -12
- package/bootstrap-icons/filetype-php.d.ts +0 -5
- package/bootstrap-icons/filetype-php.js +0 -12
- package/bootstrap-icons/filetype-png.d.ts +0 -5
- package/bootstrap-icons/filetype-png.js +0 -12
- package/bootstrap-icons/filetype-ppt.d.ts +0 -5
- package/bootstrap-icons/filetype-ppt.js +0 -12
- package/bootstrap-icons/filetype-pptx.d.ts +0 -5
- package/bootstrap-icons/filetype-pptx.js +0 -12
- package/bootstrap-icons/filetype-psd.d.ts +0 -5
- package/bootstrap-icons/filetype-psd.js +0 -12
- package/bootstrap-icons/filetype-py.d.ts +0 -5
- package/bootstrap-icons/filetype-py.js +0 -12
- package/bootstrap-icons/filetype-raw.d.ts +0 -5
- package/bootstrap-icons/filetype-raw.js +0 -12
- package/bootstrap-icons/filetype-rb.d.ts +0 -5
- package/bootstrap-icons/filetype-rb.js +0 -12
- package/bootstrap-icons/filetype-sass.d.ts +0 -5
- package/bootstrap-icons/filetype-sass.js +0 -12
- package/bootstrap-icons/filetype-scss.d.ts +0 -5
- package/bootstrap-icons/filetype-scss.js +0 -12
- package/bootstrap-icons/filetype-sh.d.ts +0 -5
- package/bootstrap-icons/filetype-sh.js +0 -12
- package/bootstrap-icons/filetype-svg.d.ts +0 -5
- package/bootstrap-icons/filetype-svg.js +0 -12
- package/bootstrap-icons/filetype-tiff.d.ts +0 -5
- package/bootstrap-icons/filetype-tiff.js +0 -12
- package/bootstrap-icons/filetype-tsx.d.ts +0 -5
- package/bootstrap-icons/filetype-tsx.js +0 -12
- package/bootstrap-icons/filetype-ttf.d.ts +0 -5
- package/bootstrap-icons/filetype-ttf.js +0 -12
- package/bootstrap-icons/filetype-txt.d.ts +0 -5
- package/bootstrap-icons/filetype-txt.js +0 -12
- package/bootstrap-icons/filetype-wav.d.ts +0 -5
- package/bootstrap-icons/filetype-wav.js +0 -12
- package/bootstrap-icons/filetype-woff.d.ts +0 -5
- package/bootstrap-icons/filetype-woff.js +0 -12
- package/bootstrap-icons/filetype-xls.d.ts +0 -5
- package/bootstrap-icons/filetype-xls.js +0 -12
- package/bootstrap-icons/filetype-xlsx.d.ts +0 -5
- package/bootstrap-icons/filetype-xlsx.js +0 -12
- package/bootstrap-icons/filetype-xml.d.ts +0 -5
- package/bootstrap-icons/filetype-xml.js +0 -12
- package/bootstrap-icons/filetype-yml.d.ts +0 -5
- package/bootstrap-icons/filetype-yml.js +0 -12
- package/bootstrap-icons/film.d.ts +0 -5
- package/bootstrap-icons/film.js +0 -12
- package/bootstrap-icons/filter-circle-fill.d.ts +0 -5
- package/bootstrap-icons/filter-circle-fill.js +0 -12
- package/bootstrap-icons/filter-circle.d.ts +0 -5
- package/bootstrap-icons/filter-circle.js +0 -12
- package/bootstrap-icons/filter-left.d.ts +0 -5
- package/bootstrap-icons/filter-left.js +0 -12
- package/bootstrap-icons/filter-right.d.ts +0 -5
- package/bootstrap-icons/filter-right.js +0 -12
- package/bootstrap-icons/filter-square-fill.d.ts +0 -5
- package/bootstrap-icons/filter-square-fill.js +0 -12
- package/bootstrap-icons/filter-square.d.ts +0 -5
- package/bootstrap-icons/filter-square.js +0 -12
- package/bootstrap-icons/filter.d.ts +0 -5
- package/bootstrap-icons/filter.js +0 -12
- package/bootstrap-icons/fingerprint.d.ts +0 -5
- package/bootstrap-icons/fingerprint.js +0 -12
- package/bootstrap-icons/flag-fill.d.ts +0 -5
- package/bootstrap-icons/flag-fill.js +0 -12
- package/bootstrap-icons/flag.d.ts +0 -5
- package/bootstrap-icons/flag.js +0 -12
- package/bootstrap-icons/flower1.d.ts +0 -5
- package/bootstrap-icons/flower1.js +0 -12
- package/bootstrap-icons/flower2.d.ts +0 -5
- package/bootstrap-icons/flower2.js +0 -12
- package/bootstrap-icons/flower3.d.ts +0 -5
- package/bootstrap-icons/flower3.js +0 -12
- package/bootstrap-icons/folder-check.d.ts +0 -5
- package/bootstrap-icons/folder-check.js +0 -12
- package/bootstrap-icons/folder-fill.d.ts +0 -5
- package/bootstrap-icons/folder-fill.js +0 -12
- package/bootstrap-icons/folder-minus.d.ts +0 -5
- package/bootstrap-icons/folder-minus.js +0 -12
- package/bootstrap-icons/folder-plus.d.ts +0 -5
- package/bootstrap-icons/folder-plus.js +0 -12
- package/bootstrap-icons/folder-symlink-fill.d.ts +0 -5
- package/bootstrap-icons/folder-symlink-fill.js +0 -12
- package/bootstrap-icons/folder-symlink.d.ts +0 -5
- package/bootstrap-icons/folder-symlink.js +0 -12
- package/bootstrap-icons/folder-x.d.ts +0 -5
- package/bootstrap-icons/folder-x.js +0 -12
- package/bootstrap-icons/folder.d.ts +0 -5
- package/bootstrap-icons/folder.js +0 -12
- package/bootstrap-icons/folder2-open.d.ts +0 -5
- package/bootstrap-icons/folder2-open.js +0 -12
- package/bootstrap-icons/folder2.d.ts +0 -5
- package/bootstrap-icons/folder2.js +0 -12
- package/bootstrap-icons/fonts.d.ts +0 -5
- package/bootstrap-icons/fonts.js +0 -12
- package/bootstrap-icons/forward-fill.d.ts +0 -5
- package/bootstrap-icons/forward-fill.js +0 -12
- package/bootstrap-icons/forward.d.ts +0 -5
- package/bootstrap-icons/forward.js +0 -12
- package/bootstrap-icons/front.d.ts +0 -5
- package/bootstrap-icons/front.js +0 -12
- package/bootstrap-icons/fullscreen-exit.d.ts +0 -5
- package/bootstrap-icons/fullscreen-exit.js +0 -12
- package/bootstrap-icons/fullscreen.d.ts +0 -5
- package/bootstrap-icons/fullscreen.js +0 -12
- package/bootstrap-icons/funnel-fill.d.ts +0 -5
- package/bootstrap-icons/funnel-fill.js +0 -12
- package/bootstrap-icons/funnel.d.ts +0 -5
- package/bootstrap-icons/funnel.js +0 -12
- package/bootstrap-icons/gear-fill.d.ts +0 -5
- package/bootstrap-icons/gear-fill.js +0 -12
- package/bootstrap-icons/gear-wide-connected.d.ts +0 -5
- package/bootstrap-icons/gear-wide-connected.js +0 -12
- package/bootstrap-icons/gear-wide.d.ts +0 -5
- package/bootstrap-icons/gear-wide.js +0 -12
- package/bootstrap-icons/gear.d.ts +0 -5
- package/bootstrap-icons/gear.js +0 -12
- package/bootstrap-icons/gem.d.ts +0 -5
- package/bootstrap-icons/gem.js +0 -12
- package/bootstrap-icons/gender-ambiguous.d.ts +0 -5
- package/bootstrap-icons/gender-ambiguous.js +0 -12
- package/bootstrap-icons/gender-female.d.ts +0 -5
- package/bootstrap-icons/gender-female.js +0 -12
- package/bootstrap-icons/gender-male.d.ts +0 -5
- package/bootstrap-icons/gender-male.js +0 -12
- package/bootstrap-icons/gender-trans.d.ts +0 -5
- package/bootstrap-icons/gender-trans.js +0 -12
- package/bootstrap-icons/geo-alt-fill.d.ts +0 -5
- package/bootstrap-icons/geo-alt-fill.js +0 -12
- package/bootstrap-icons/geo-alt.d.ts +0 -5
- package/bootstrap-icons/geo-alt.js +0 -12
- package/bootstrap-icons/geo-fill.d.ts +0 -5
- package/bootstrap-icons/geo-fill.js +0 -12
- package/bootstrap-icons/geo.d.ts +0 -5
- package/bootstrap-icons/geo.js +0 -12
- package/bootstrap-icons/gift-fill.d.ts +0 -5
- package/bootstrap-icons/gift-fill.js +0 -12
- package/bootstrap-icons/gift.d.ts +0 -5
- package/bootstrap-icons/gift.js +0 -12
- package/bootstrap-icons/git.d.ts +0 -5
- package/bootstrap-icons/git.js +0 -12
- package/bootstrap-icons/github.d.ts +0 -5
- package/bootstrap-icons/github.js +0 -12
- package/bootstrap-icons/globe.d.ts +0 -5
- package/bootstrap-icons/globe.js +0 -12
- package/bootstrap-icons/globe2.d.ts +0 -5
- package/bootstrap-icons/globe2.js +0 -12
- package/bootstrap-icons/google.d.ts +0 -5
- package/bootstrap-icons/google.js +0 -12
- package/bootstrap-icons/gpu-card.d.ts +0 -5
- package/bootstrap-icons/gpu-card.js +0 -12
- package/bootstrap-icons/graph-down-arrow.d.ts +0 -5
- package/bootstrap-icons/graph-down-arrow.js +0 -12
- package/bootstrap-icons/graph-down.d.ts +0 -5
- package/bootstrap-icons/graph-down.js +0 -12
- package/bootstrap-icons/graph-up-arrow.d.ts +0 -5
- package/bootstrap-icons/graph-up-arrow.js +0 -12
- package/bootstrap-icons/graph-up.d.ts +0 -5
- package/bootstrap-icons/graph-up.js +0 -12
- package/bootstrap-icons/grid-1x2-fill.d.ts +0 -5
- package/bootstrap-icons/grid-1x2-fill.js +0 -12
- package/bootstrap-icons/grid-1x2.d.ts +0 -5
- package/bootstrap-icons/grid-1x2.js +0 -12
- package/bootstrap-icons/grid-3x2-gap-fill.d.ts +0 -5
- package/bootstrap-icons/grid-3x2-gap-fill.js +0 -12
- package/bootstrap-icons/grid-3x2-gap.d.ts +0 -5
- package/bootstrap-icons/grid-3x2-gap.js +0 -12
- package/bootstrap-icons/grid-3x2.d.ts +0 -5
- package/bootstrap-icons/grid-3x2.js +0 -12
- package/bootstrap-icons/grid-3x3-gap-fill.d.ts +0 -5
- package/bootstrap-icons/grid-3x3-gap-fill.js +0 -12
- package/bootstrap-icons/grid-3x3-gap.d.ts +0 -5
- package/bootstrap-icons/grid-3x3-gap.js +0 -12
- package/bootstrap-icons/grid-3x3.d.ts +0 -5
- package/bootstrap-icons/grid-3x3.js +0 -12
- package/bootstrap-icons/grid-fill.d.ts +0 -5
- package/bootstrap-icons/grid-fill.js +0 -12
- package/bootstrap-icons/grid.d.ts +0 -5
- package/bootstrap-icons/grid.js +0 -12
- package/bootstrap-icons/grip-horizontal.d.ts +0 -5
- package/bootstrap-icons/grip-horizontal.js +0 -12
- package/bootstrap-icons/grip-vertical.d.ts +0 -5
- package/bootstrap-icons/grip-vertical.js +0 -12
- package/bootstrap-icons/hammer.d.ts +0 -5
- package/bootstrap-icons/hammer.js +0 -12
- package/bootstrap-icons/hand-index-fill.d.ts +0 -5
- package/bootstrap-icons/hand-index-fill.js +0 -12
- package/bootstrap-icons/hand-index-thumb-fill.d.ts +0 -5
- package/bootstrap-icons/hand-index-thumb-fill.js +0 -12
- package/bootstrap-icons/hand-index-thumb.d.ts +0 -5
- package/bootstrap-icons/hand-index-thumb.js +0 -12
- package/bootstrap-icons/hand-index.d.ts +0 -5
- package/bootstrap-icons/hand-index.js +0 -12
- package/bootstrap-icons/hand-thumbs-down-fill.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-down-fill.js +0 -12
- package/bootstrap-icons/hand-thumbs-down.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-down.js +0 -12
- package/bootstrap-icons/hand-thumbs-up-fill.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-up-fill.js +0 -12
- package/bootstrap-icons/hand-thumbs-up.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-up.js +0 -12
- package/bootstrap-icons/handbag-fill.d.ts +0 -5
- package/bootstrap-icons/handbag-fill.js +0 -12
- package/bootstrap-icons/handbag.d.ts +0 -5
- package/bootstrap-icons/handbag.js +0 -12
- package/bootstrap-icons/hash.d.ts +0 -5
- package/bootstrap-icons/hash.js +0 -12
- package/bootstrap-icons/hdd-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-fill.js +0 -12
- package/bootstrap-icons/hdd-network-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-network-fill.js +0 -12
- package/bootstrap-icons/hdd-network.d.ts +0 -5
- package/bootstrap-icons/hdd-network.js +0 -12
- package/bootstrap-icons/hdd-rack-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-rack-fill.js +0 -12
- package/bootstrap-icons/hdd-rack.d.ts +0 -5
- package/bootstrap-icons/hdd-rack.js +0 -12
- package/bootstrap-icons/hdd-stack-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-stack-fill.js +0 -12
- package/bootstrap-icons/hdd-stack.d.ts +0 -5
- package/bootstrap-icons/hdd-stack.js +0 -12
- package/bootstrap-icons/hdd.d.ts +0 -5
- package/bootstrap-icons/hdd.js +0 -12
- package/bootstrap-icons/hdmi-fill.d.ts +0 -5
- package/bootstrap-icons/hdmi-fill.js +0 -12
- package/bootstrap-icons/hdmi.d.ts +0 -5
- package/bootstrap-icons/hdmi.js +0 -12
- package/bootstrap-icons/headphones.d.ts +0 -5
- package/bootstrap-icons/headphones.js +0 -12
- package/bootstrap-icons/headset-vr.d.ts +0 -5
- package/bootstrap-icons/headset-vr.js +0 -12
- package/bootstrap-icons/headset.d.ts +0 -5
- package/bootstrap-icons/headset.js +0 -12
- package/bootstrap-icons/heart-arrow.d.ts +0 -5
- package/bootstrap-icons/heart-arrow.js +0 -12
- package/bootstrap-icons/heart-fill.d.ts +0 -5
- package/bootstrap-icons/heart-fill.js +0 -12
- package/bootstrap-icons/heart-half.d.ts +0 -5
- package/bootstrap-icons/heart-half.js +0 -12
- package/bootstrap-icons/heart-pulse-fill.d.ts +0 -5
- package/bootstrap-icons/heart-pulse-fill.js +0 -12
- package/bootstrap-icons/heart-pulse.d.ts +0 -5
- package/bootstrap-icons/heart-pulse.js +0 -12
- package/bootstrap-icons/heart.d.ts +0 -5
- package/bootstrap-icons/heart.js +0 -12
- package/bootstrap-icons/heartbreak-fill.d.ts +0 -5
- package/bootstrap-icons/heartbreak-fill.js +0 -12
- package/bootstrap-icons/heartbreak.d.ts +0 -5
- package/bootstrap-icons/heartbreak.js +0 -12
- package/bootstrap-icons/hearts.d.ts +0 -5
- package/bootstrap-icons/hearts.js +0 -12
- package/bootstrap-icons/heptagon-fill.d.ts +0 -5
- package/bootstrap-icons/heptagon-fill.js +0 -12
- package/bootstrap-icons/heptagon-half.d.ts +0 -5
- package/bootstrap-icons/heptagon-half.js +0 -12
- package/bootstrap-icons/heptagon.d.ts +0 -5
- package/bootstrap-icons/heptagon.js +0 -12
- package/bootstrap-icons/hexagon-fill.d.ts +0 -5
- package/bootstrap-icons/hexagon-fill.js +0 -12
- package/bootstrap-icons/hexagon-half.d.ts +0 -5
- package/bootstrap-icons/hexagon-half.js +0 -12
- package/bootstrap-icons/hexagon.d.ts +0 -5
- package/bootstrap-icons/hexagon.js +0 -12
- package/bootstrap-icons/hospital-fill.d.ts +0 -5
- package/bootstrap-icons/hospital-fill.js +0 -12
- package/bootstrap-icons/hospital.d.ts +0 -5
- package/bootstrap-icons/hospital.js +0 -12
- package/bootstrap-icons/hourglass-bottom.d.ts +0 -5
- package/bootstrap-icons/hourglass-bottom.js +0 -12
- package/bootstrap-icons/hourglass-split.d.ts +0 -5
- package/bootstrap-icons/hourglass-split.js +0 -12
- package/bootstrap-icons/hourglass-top.d.ts +0 -5
- package/bootstrap-icons/hourglass-top.js +0 -12
- package/bootstrap-icons/hourglass.d.ts +0 -5
- package/bootstrap-icons/hourglass.js +0 -12
- package/bootstrap-icons/house-door-fill.d.ts +0 -5
- package/bootstrap-icons/house-door-fill.js +0 -12
- package/bootstrap-icons/house-door.d.ts +0 -5
- package/bootstrap-icons/house-door.js +0 -12
- package/bootstrap-icons/house-fill.d.ts +0 -5
- package/bootstrap-icons/house-fill.js +0 -12
- package/bootstrap-icons/house-heart-fill.d.ts +0 -5
- package/bootstrap-icons/house-heart-fill.js +0 -12
- package/bootstrap-icons/house-heart.d.ts +0 -5
- package/bootstrap-icons/house-heart.js +0 -12
- package/bootstrap-icons/house.d.ts +0 -5
- package/bootstrap-icons/house.js +0 -12
- package/bootstrap-icons/hr.d.ts +0 -5
- package/bootstrap-icons/hr.js +0 -12
- package/bootstrap-icons/hurricane.d.ts +0 -5
- package/bootstrap-icons/hurricane.js +0 -12
- package/bootstrap-icons/hypnotize.d.ts +0 -5
- package/bootstrap-icons/hypnotize.js +0 -12
- package/bootstrap-icons/image-alt.d.ts +0 -5
- package/bootstrap-icons/image-alt.js +0 -12
- package/bootstrap-icons/image-fill.d.ts +0 -5
- package/bootstrap-icons/image-fill.js +0 -12
- package/bootstrap-icons/image.d.ts +0 -5
- package/bootstrap-icons/image.js +0 -12
- package/bootstrap-icons/images.d.ts +0 -5
- package/bootstrap-icons/images.js +0 -12
- package/bootstrap-icons/inbox-fill.d.ts +0 -5
- package/bootstrap-icons/inbox-fill.js +0 -12
- package/bootstrap-icons/inbox.d.ts +0 -5
- package/bootstrap-icons/inbox.js +0 -12
- package/bootstrap-icons/inboxes-fill.d.ts +0 -5
- package/bootstrap-icons/inboxes-fill.js +0 -12
- package/bootstrap-icons/inboxes.d.ts +0 -5
- package/bootstrap-icons/inboxes.js +0 -12
- package/bootstrap-icons/incognito.d.ts +0 -5
- package/bootstrap-icons/incognito.js +0 -12
- package/bootstrap-icons/index.d.ts +0 -1671
- package/bootstrap-icons/index.js +0 -1687
- package/bootstrap-icons/infinity.d.ts +0 -5
- package/bootstrap-icons/infinity.js +0 -12
- package/bootstrap-icons/info-circle-fill.d.ts +0 -5
- package/bootstrap-icons/info-circle-fill.js +0 -12
- package/bootstrap-icons/info-circle.d.ts +0 -5
- package/bootstrap-icons/info-circle.js +0 -12
- package/bootstrap-icons/info-lg.d.ts +0 -5
- package/bootstrap-icons/info-lg.js +0 -12
- package/bootstrap-icons/info-square-fill.d.ts +0 -5
- package/bootstrap-icons/info-square-fill.js +0 -12
- package/bootstrap-icons/info-square.d.ts +0 -5
- package/bootstrap-icons/info-square.js +0 -12
- package/bootstrap-icons/info.d.ts +0 -5
- package/bootstrap-icons/info.js +0 -12
- package/bootstrap-icons/input-cursor-text.d.ts +0 -5
- package/bootstrap-icons/input-cursor-text.js +0 -12
- package/bootstrap-icons/input-cursor.d.ts +0 -5
- package/bootstrap-icons/input-cursor.js +0 -12
- package/bootstrap-icons/instagram.d.ts +0 -5
- package/bootstrap-icons/instagram.js +0 -12
- package/bootstrap-icons/intersect.d.ts +0 -5
- package/bootstrap-icons/intersect.js +0 -12
- package/bootstrap-icons/journal-album.d.ts +0 -5
- package/bootstrap-icons/journal-album.js +0 -12
- package/bootstrap-icons/journal-arrow-down.d.ts +0 -5
- package/bootstrap-icons/journal-arrow-down.js +0 -12
- package/bootstrap-icons/journal-arrow-up.d.ts +0 -5
- package/bootstrap-icons/journal-arrow-up.js +0 -12
- package/bootstrap-icons/journal-bookmark-fill.d.ts +0 -5
- package/bootstrap-icons/journal-bookmark-fill.js +0 -12
- package/bootstrap-icons/journal-bookmark.d.ts +0 -5
- package/bootstrap-icons/journal-bookmark.js +0 -12
- package/bootstrap-icons/journal-check.d.ts +0 -5
- package/bootstrap-icons/journal-check.js +0 -12
- package/bootstrap-icons/journal-code.d.ts +0 -5
- package/bootstrap-icons/journal-code.js +0 -12
- package/bootstrap-icons/journal-medical.d.ts +0 -5
- package/bootstrap-icons/journal-medical.js +0 -12
- package/bootstrap-icons/journal-minus.d.ts +0 -5
- package/bootstrap-icons/journal-minus.js +0 -12
- package/bootstrap-icons/journal-plus.d.ts +0 -5
- package/bootstrap-icons/journal-plus.js +0 -12
- package/bootstrap-icons/journal-richtext.d.ts +0 -5
- package/bootstrap-icons/journal-richtext.js +0 -12
- package/bootstrap-icons/journal-text.d.ts +0 -5
- package/bootstrap-icons/journal-text.js +0 -12
- package/bootstrap-icons/journal-x.d.ts +0 -5
- package/bootstrap-icons/journal-x.js +0 -12
- package/bootstrap-icons/journal.d.ts +0 -5
- package/bootstrap-icons/journal.js +0 -12
- package/bootstrap-icons/journals.d.ts +0 -5
- package/bootstrap-icons/journals.js +0 -12
- package/bootstrap-icons/joystick.d.ts +0 -5
- package/bootstrap-icons/joystick.js +0 -12
- package/bootstrap-icons/justify-left.d.ts +0 -5
- package/bootstrap-icons/justify-left.js +0 -12
- package/bootstrap-icons/justify-right.d.ts +0 -5
- package/bootstrap-icons/justify-right.js +0 -12
- package/bootstrap-icons/justify.d.ts +0 -5
- package/bootstrap-icons/justify.js +0 -12
- package/bootstrap-icons/kanban-fill.d.ts +0 -5
- package/bootstrap-icons/kanban-fill.js +0 -12
- package/bootstrap-icons/kanban.d.ts +0 -5
- package/bootstrap-icons/kanban.js +0 -12
- package/bootstrap-icons/key-fill.d.ts +0 -5
- package/bootstrap-icons/key-fill.js +0 -12
- package/bootstrap-icons/key.d.ts +0 -5
- package/bootstrap-icons/key.js +0 -12
- package/bootstrap-icons/keyboard-fill.d.ts +0 -5
- package/bootstrap-icons/keyboard-fill.js +0 -12
- package/bootstrap-icons/keyboard.d.ts +0 -5
- package/bootstrap-icons/keyboard.js +0 -12
- package/bootstrap-icons/ladder.d.ts +0 -5
- package/bootstrap-icons/ladder.js +0 -12
- package/bootstrap-icons/lamp-fill.d.ts +0 -5
- package/bootstrap-icons/lamp-fill.js +0 -12
- package/bootstrap-icons/lamp.d.ts +0 -5
- package/bootstrap-icons/lamp.js +0 -12
- package/bootstrap-icons/laptop-fill.d.ts +0 -5
- package/bootstrap-icons/laptop-fill.js +0 -12
- package/bootstrap-icons/laptop.d.ts +0 -5
- package/bootstrap-icons/laptop.js +0 -12
- package/bootstrap-icons/layer-backward.d.ts +0 -5
- package/bootstrap-icons/layer-backward.js +0 -12
- package/bootstrap-icons/layer-forward.d.ts +0 -5
- package/bootstrap-icons/layer-forward.js +0 -12
- package/bootstrap-icons/layers-fill.d.ts +0 -5
- package/bootstrap-icons/layers-fill.js +0 -12
- package/bootstrap-icons/layers-half.d.ts +0 -5
- package/bootstrap-icons/layers-half.js +0 -12
- package/bootstrap-icons/layers.d.ts +0 -5
- package/bootstrap-icons/layers.js +0 -12
- package/bootstrap-icons/layout-sidebar-inset-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-inset-reverse.js +0 -12
- package/bootstrap-icons/layout-sidebar-inset.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-inset.js +0 -12
- package/bootstrap-icons/layout-sidebar-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-reverse.js +0 -12
- package/bootstrap-icons/layout-sidebar.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar.js +0 -12
- package/bootstrap-icons/layout-split.d.ts +0 -5
- package/bootstrap-icons/layout-split.js +0 -12
- package/bootstrap-icons/layout-text-sidebar-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-text-sidebar-reverse.js +0 -12
- package/bootstrap-icons/layout-text-sidebar.d.ts +0 -5
- package/bootstrap-icons/layout-text-sidebar.js +0 -12
- package/bootstrap-icons/layout-text-window-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-text-window-reverse.js +0 -12
- package/bootstrap-icons/layout-text-window.d.ts +0 -5
- package/bootstrap-icons/layout-text-window.js +0 -12
- package/bootstrap-icons/layout-three-columns.d.ts +0 -5
- package/bootstrap-icons/layout-three-columns.js +0 -12
- package/bootstrap-icons/layout-wtf.d.ts +0 -5
- package/bootstrap-icons/layout-wtf.js +0 -12
- package/bootstrap-icons/life-preserver.d.ts +0 -5
- package/bootstrap-icons/life-preserver.js +0 -12
- package/bootstrap-icons/lightbulb-fill.d.ts +0 -5
- package/bootstrap-icons/lightbulb-fill.js +0 -12
- package/bootstrap-icons/lightbulb-off-fill.d.ts +0 -5
- package/bootstrap-icons/lightbulb-off-fill.js +0 -12
- package/bootstrap-icons/lightbulb-off.d.ts +0 -5
- package/bootstrap-icons/lightbulb-off.js +0 -12
- package/bootstrap-icons/lightbulb.d.ts +0 -5
- package/bootstrap-icons/lightbulb.js +0 -12
- package/bootstrap-icons/lightning-charge-fill.d.ts +0 -5
- package/bootstrap-icons/lightning-charge-fill.js +0 -12
- package/bootstrap-icons/lightning-charge.d.ts +0 -5
- package/bootstrap-icons/lightning-charge.js +0 -12
- package/bootstrap-icons/lightning-fill.d.ts +0 -5
- package/bootstrap-icons/lightning-fill.js +0 -12
- package/bootstrap-icons/lightning.d.ts +0 -5
- package/bootstrap-icons/lightning.js +0 -12
- package/bootstrap-icons/line.d.ts +0 -5
- package/bootstrap-icons/line.js +0 -12
- package/bootstrap-icons/link-45deg.d.ts +0 -5
- package/bootstrap-icons/link-45deg.js +0 -12
- package/bootstrap-icons/link.d.ts +0 -5
- package/bootstrap-icons/link.js +0 -12
- package/bootstrap-icons/linkedin.d.ts +0 -5
- package/bootstrap-icons/linkedin.js +0 -12
- package/bootstrap-icons/list-check.d.ts +0 -5
- package/bootstrap-icons/list-check.js +0 -12
- package/bootstrap-icons/list-columns-reverse.d.ts +0 -5
- package/bootstrap-icons/list-columns-reverse.js +0 -12
- package/bootstrap-icons/list-columns.d.ts +0 -5
- package/bootstrap-icons/list-columns.js +0 -12
- package/bootstrap-icons/list-nested.d.ts +0 -5
- package/bootstrap-icons/list-nested.js +0 -12
- package/bootstrap-icons/list-ol.d.ts +0 -5
- package/bootstrap-icons/list-ol.js +0 -12
- package/bootstrap-icons/list-stars.d.ts +0 -5
- package/bootstrap-icons/list-stars.js +0 -12
- package/bootstrap-icons/list-task.d.ts +0 -5
- package/bootstrap-icons/list-task.js +0 -12
- package/bootstrap-icons/list-ul.d.ts +0 -5
- package/bootstrap-icons/list-ul.js +0 -12
- package/bootstrap-icons/list.d.ts +0 -5
- package/bootstrap-icons/list.js +0 -12
- package/bootstrap-icons/lock-fill.d.ts +0 -5
- package/bootstrap-icons/lock-fill.js +0 -12
- package/bootstrap-icons/lock.d.ts +0 -5
- package/bootstrap-icons/lock.js +0 -12
- package/bootstrap-icons/magic.d.ts +0 -5
- package/bootstrap-icons/magic.js +0 -12
- package/bootstrap-icons/magnet-fill.d.ts +0 -5
- package/bootstrap-icons/magnet-fill.js +0 -12
- package/bootstrap-icons/magnet.d.ts +0 -5
- package/bootstrap-icons/magnet.js +0 -12
- package/bootstrap-icons/mailbox.d.ts +0 -5
- package/bootstrap-icons/mailbox.js +0 -12
- package/bootstrap-icons/mailbox2.d.ts +0 -5
- package/bootstrap-icons/mailbox2.js +0 -12
- package/bootstrap-icons/map-fill.d.ts +0 -5
- package/bootstrap-icons/map-fill.js +0 -12
- package/bootstrap-icons/map.d.ts +0 -5
- package/bootstrap-icons/map.js +0 -12
- package/bootstrap-icons/markdown-fill.d.ts +0 -5
- package/bootstrap-icons/markdown-fill.js +0 -12
- package/bootstrap-icons/markdown.d.ts +0 -5
- package/bootstrap-icons/markdown.js +0 -12
- package/bootstrap-icons/mask.d.ts +0 -5
- package/bootstrap-icons/mask.js +0 -12
- package/bootstrap-icons/mastodon.d.ts +0 -5
- package/bootstrap-icons/mastodon.js +0 -12
- package/bootstrap-icons/medium.d.ts +0 -5
- package/bootstrap-icons/medium.js +0 -12
- package/bootstrap-icons/megaphone-fill.d.ts +0 -5
- package/bootstrap-icons/megaphone-fill.js +0 -12
- package/bootstrap-icons/megaphone.d.ts +0 -5
- package/bootstrap-icons/megaphone.js +0 -12
- package/bootstrap-icons/memory.d.ts +0 -5
- package/bootstrap-icons/memory.js +0 -12
- package/bootstrap-icons/menu-app-fill.d.ts +0 -5
- package/bootstrap-icons/menu-app-fill.js +0 -12
- package/bootstrap-icons/menu-app.d.ts +0 -5
- package/bootstrap-icons/menu-app.js +0 -12
- package/bootstrap-icons/menu-button-fill.d.ts +0 -5
- package/bootstrap-icons/menu-button-fill.js +0 -12
- package/bootstrap-icons/menu-button-wide-fill.d.ts +0 -5
- package/bootstrap-icons/menu-button-wide-fill.js +0 -12
- package/bootstrap-icons/menu-button-wide.d.ts +0 -5
- package/bootstrap-icons/menu-button-wide.js +0 -12
- package/bootstrap-icons/menu-button.d.ts +0 -5
- package/bootstrap-icons/menu-button.js +0 -12
- package/bootstrap-icons/menu-down.d.ts +0 -5
- package/bootstrap-icons/menu-down.js +0 -12
- package/bootstrap-icons/menu-up.d.ts +0 -5
- package/bootstrap-icons/menu-up.js +0 -12
- package/bootstrap-icons/messenger.d.ts +0 -5
- package/bootstrap-icons/messenger.js +0 -12
- package/bootstrap-icons/meta.d.ts +0 -5
- package/bootstrap-icons/meta.js +0 -12
- package/bootstrap-icons/mic-fill.d.ts +0 -5
- package/bootstrap-icons/mic-fill.js +0 -12
- package/bootstrap-icons/mic-mute-fill.d.ts +0 -5
- package/bootstrap-icons/mic-mute-fill.js +0 -12
- package/bootstrap-icons/mic-mute.d.ts +0 -5
- package/bootstrap-icons/mic-mute.js +0 -12
- package/bootstrap-icons/mic.d.ts +0 -5
- package/bootstrap-icons/mic.js +0 -12
- package/bootstrap-icons/microsoft.d.ts +0 -5
- package/bootstrap-icons/microsoft.js +0 -12
- package/bootstrap-icons/minecart-loaded.d.ts +0 -5
- package/bootstrap-icons/minecart-loaded.js +0 -12
- package/bootstrap-icons/minecart.d.ts +0 -5
- package/bootstrap-icons/minecart.js +0 -12
- package/bootstrap-icons/modem-fill.d.ts +0 -5
- package/bootstrap-icons/modem-fill.js +0 -12
- package/bootstrap-icons/modem.d.ts +0 -5
- package/bootstrap-icons/modem.js +0 -12
- package/bootstrap-icons/moisture.d.ts +0 -5
- package/bootstrap-icons/moisture.js +0 -12
- package/bootstrap-icons/moon-fill.d.ts +0 -5
- package/bootstrap-icons/moon-fill.js +0 -12
- package/bootstrap-icons/moon-stars-fill.d.ts +0 -5
- package/bootstrap-icons/moon-stars-fill.js +0 -12
- package/bootstrap-icons/moon-stars.d.ts +0 -5
- package/bootstrap-icons/moon-stars.js +0 -12
- package/bootstrap-icons/moon.d.ts +0 -5
- package/bootstrap-icons/moon.js +0 -12
- package/bootstrap-icons/mortarboard-fill.d.ts +0 -5
- package/bootstrap-icons/mortarboard-fill.js +0 -12
- package/bootstrap-icons/mortarboard.d.ts +0 -5
- package/bootstrap-icons/mortarboard.js +0 -12
- package/bootstrap-icons/motherboard-fill.d.ts +0 -5
- package/bootstrap-icons/motherboard-fill.js +0 -12
- package/bootstrap-icons/motherboard.d.ts +0 -5
- package/bootstrap-icons/motherboard.js +0 -12
- package/bootstrap-icons/mouse-fill.d.ts +0 -5
- package/bootstrap-icons/mouse-fill.js +0 -12
- package/bootstrap-icons/mouse.d.ts +0 -5
- package/bootstrap-icons/mouse.js +0 -12
- package/bootstrap-icons/mouse2-fill.d.ts +0 -5
- package/bootstrap-icons/mouse2-fill.js +0 -12
- package/bootstrap-icons/mouse2.d.ts +0 -5
- package/bootstrap-icons/mouse2.js +0 -12
- package/bootstrap-icons/mouse3-fill.d.ts +0 -5
- package/bootstrap-icons/mouse3-fill.js +0 -12
- package/bootstrap-icons/mouse3.d.ts +0 -5
- package/bootstrap-icons/mouse3.js +0 -12
- package/bootstrap-icons/music-note-beamed.d.ts +0 -5
- package/bootstrap-icons/music-note-beamed.js +0 -12
- package/bootstrap-icons/music-note-list.d.ts +0 -5
- package/bootstrap-icons/music-note-list.js +0 -12
- package/bootstrap-icons/music-note.d.ts +0 -5
- package/bootstrap-icons/music-note.js +0 -12
- package/bootstrap-icons/music-player-fill.d.ts +0 -5
- package/bootstrap-icons/music-player-fill.js +0 -12
- package/bootstrap-icons/music-player.d.ts +0 -5
- package/bootstrap-icons/music-player.js +0 -12
- package/bootstrap-icons/newspaper.d.ts +0 -5
- package/bootstrap-icons/newspaper.js +0 -12
- package/bootstrap-icons/nintendo-switch.d.ts +0 -5
- package/bootstrap-icons/nintendo-switch.js +0 -12
- package/bootstrap-icons/node-minus-fill.d.ts +0 -5
- package/bootstrap-icons/node-minus-fill.js +0 -12
- package/bootstrap-icons/node-minus.d.ts +0 -5
- package/bootstrap-icons/node-minus.js +0 -12
- package/bootstrap-icons/node-plus-fill.d.ts +0 -5
- package/bootstrap-icons/node-plus-fill.js +0 -12
- package/bootstrap-icons/node-plus.d.ts +0 -5
- package/bootstrap-icons/node-plus.js +0 -12
- package/bootstrap-icons/nut-fill.d.ts +0 -5
- package/bootstrap-icons/nut-fill.js +0 -12
- package/bootstrap-icons/nut.d.ts +0 -5
- package/bootstrap-icons/nut.js +0 -12
- package/bootstrap-icons/octagon-fill.d.ts +0 -5
- package/bootstrap-icons/octagon-fill.js +0 -12
- package/bootstrap-icons/octagon-half.d.ts +0 -5
- package/bootstrap-icons/octagon-half.js +0 -12
- package/bootstrap-icons/octagon.d.ts +0 -5
- package/bootstrap-icons/octagon.js +0 -12
- package/bootstrap-icons/optical-audio-fill.d.ts +0 -5
- package/bootstrap-icons/optical-audio-fill.js +0 -12
- package/bootstrap-icons/optical-audio.d.ts +0 -5
- package/bootstrap-icons/optical-audio.js +0 -12
- package/bootstrap-icons/option.d.ts +0 -5
- package/bootstrap-icons/option.js +0 -12
- package/bootstrap-icons/outlet.d.ts +0 -5
- package/bootstrap-icons/outlet.js +0 -12
- package/bootstrap-icons/paint-bucket.d.ts +0 -5
- package/bootstrap-icons/paint-bucket.js +0 -12
- package/bootstrap-icons/palette-fill.d.ts +0 -5
- package/bootstrap-icons/palette-fill.js +0 -12
- package/bootstrap-icons/palette.d.ts +0 -5
- package/bootstrap-icons/palette.js +0 -12
- package/bootstrap-icons/palette2.d.ts +0 -5
- package/bootstrap-icons/palette2.js +0 -12
- package/bootstrap-icons/paperclip.d.ts +0 -5
- package/bootstrap-icons/paperclip.js +0 -12
- package/bootstrap-icons/paragraph.d.ts +0 -5
- package/bootstrap-icons/paragraph.js +0 -12
- package/bootstrap-icons/patch-check-fill.d.ts +0 -5
- package/bootstrap-icons/patch-check-fill.js +0 -12
- package/bootstrap-icons/patch-check.d.ts +0 -5
- package/bootstrap-icons/patch-check.js +0 -12
- package/bootstrap-icons/patch-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/patch-exclamation-fill.js +0 -12
- package/bootstrap-icons/patch-exclamation.d.ts +0 -5
- package/bootstrap-icons/patch-exclamation.js +0 -12
- package/bootstrap-icons/patch-minus-fill.d.ts +0 -5
- package/bootstrap-icons/patch-minus-fill.js +0 -12
- package/bootstrap-icons/patch-minus.d.ts +0 -5
- package/bootstrap-icons/patch-minus.js +0 -12
- package/bootstrap-icons/patch-plus-fill.d.ts +0 -5
- package/bootstrap-icons/patch-plus-fill.js +0 -12
- package/bootstrap-icons/patch-plus.d.ts +0 -5
- package/bootstrap-icons/patch-plus.js +0 -12
- package/bootstrap-icons/patch-question-fill.d.ts +0 -5
- package/bootstrap-icons/patch-question-fill.js +0 -12
- package/bootstrap-icons/patch-question.d.ts +0 -5
- package/bootstrap-icons/patch-question.js +0 -12
- package/bootstrap-icons/pause-btn-fill.d.ts +0 -5
- package/bootstrap-icons/pause-btn-fill.js +0 -12
- package/bootstrap-icons/pause-btn.d.ts +0 -5
- package/bootstrap-icons/pause-btn.js +0 -12
- package/bootstrap-icons/pause-circle-fill.d.ts +0 -5
- package/bootstrap-icons/pause-circle-fill.js +0 -12
- package/bootstrap-icons/pause-circle.d.ts +0 -5
- package/bootstrap-icons/pause-circle.js +0 -12
- package/bootstrap-icons/pause-fill.d.ts +0 -5
- package/bootstrap-icons/pause-fill.js +0 -12
- package/bootstrap-icons/pause.d.ts +0 -5
- package/bootstrap-icons/pause.js +0 -12
- package/bootstrap-icons/paypal.d.ts +0 -5
- package/bootstrap-icons/paypal.js +0 -12
- package/bootstrap-icons/pc-display-horizontal.d.ts +0 -5
- package/bootstrap-icons/pc-display-horizontal.js +0 -12
- package/bootstrap-icons/pc-display.d.ts +0 -5
- package/bootstrap-icons/pc-display.js +0 -12
- package/bootstrap-icons/pc-horizontal.d.ts +0 -5
- package/bootstrap-icons/pc-horizontal.js +0 -12
- package/bootstrap-icons/pc.d.ts +0 -5
- package/bootstrap-icons/pc.js +0 -12
- package/bootstrap-icons/pci-card.d.ts +0 -5
- package/bootstrap-icons/pci-card.js +0 -12
- package/bootstrap-icons/peace-fill.d.ts +0 -5
- package/bootstrap-icons/peace-fill.js +0 -12
- package/bootstrap-icons/peace.d.ts +0 -5
- package/bootstrap-icons/peace.js +0 -12
- package/bootstrap-icons/pen-fill.d.ts +0 -5
- package/bootstrap-icons/pen-fill.js +0 -12
- package/bootstrap-icons/pen.d.ts +0 -5
- package/bootstrap-icons/pen.js +0 -12
- package/bootstrap-icons/pencil-fill.d.ts +0 -5
- package/bootstrap-icons/pencil-fill.js +0 -12
- package/bootstrap-icons/pencil-square.d.ts +0 -5
- package/bootstrap-icons/pencil-square.js +0 -12
- package/bootstrap-icons/pencil.d.ts +0 -5
- package/bootstrap-icons/pencil.js +0 -12
- package/bootstrap-icons/pentagon-fill.d.ts +0 -5
- package/bootstrap-icons/pentagon-fill.js +0 -12
- package/bootstrap-icons/pentagon-half.d.ts +0 -5
- package/bootstrap-icons/pentagon-half.js +0 -12
- package/bootstrap-icons/pentagon.d.ts +0 -5
- package/bootstrap-icons/pentagon.js +0 -12
- package/bootstrap-icons/people-fill.d.ts +0 -5
- package/bootstrap-icons/people-fill.js +0 -12
- package/bootstrap-icons/people.d.ts +0 -5
- package/bootstrap-icons/people.js +0 -12
- package/bootstrap-icons/percent.d.ts +0 -5
- package/bootstrap-icons/percent.js +0 -12
- package/bootstrap-icons/person-badge-fill.d.ts +0 -5
- package/bootstrap-icons/person-badge-fill.js +0 -12
- package/bootstrap-icons/person-badge.d.ts +0 -5
- package/bootstrap-icons/person-badge.js +0 -12
- package/bootstrap-icons/person-bounding-box.d.ts +0 -5
- package/bootstrap-icons/person-bounding-box.js +0 -12
- package/bootstrap-icons/person-check-fill.d.ts +0 -5
- package/bootstrap-icons/person-check-fill.js +0 -12
- package/bootstrap-icons/person-check.d.ts +0 -5
- package/bootstrap-icons/person-check.js +0 -12
- package/bootstrap-icons/person-circle.d.ts +0 -5
- package/bootstrap-icons/person-circle.js +0 -12
- package/bootstrap-icons/person-dash-fill.d.ts +0 -5
- package/bootstrap-icons/person-dash-fill.js +0 -12
- package/bootstrap-icons/person-dash.d.ts +0 -5
- package/bootstrap-icons/person-dash.js +0 -12
- package/bootstrap-icons/person-fill.d.ts +0 -5
- package/bootstrap-icons/person-fill.js +0 -12
- package/bootstrap-icons/person-heart.d.ts +0 -5
- package/bootstrap-icons/person-heart.js +0 -12
- package/bootstrap-icons/person-hearts.d.ts +0 -5
- package/bootstrap-icons/person-hearts.js +0 -12
- package/bootstrap-icons/person-lines-fill.d.ts +0 -5
- package/bootstrap-icons/person-lines-fill.js +0 -12
- package/bootstrap-icons/person-plus-fill.d.ts +0 -5
- package/bootstrap-icons/person-plus-fill.js +0 -12
- package/bootstrap-icons/person-plus.d.ts +0 -5
- package/bootstrap-icons/person-plus.js +0 -12
- package/bootstrap-icons/person-rolodex.d.ts +0 -5
- package/bootstrap-icons/person-rolodex.js +0 -12
- package/bootstrap-icons/person-square.d.ts +0 -5
- package/bootstrap-icons/person-square.js +0 -12
- package/bootstrap-icons/person-video.d.ts +0 -5
- package/bootstrap-icons/person-video.js +0 -12
- package/bootstrap-icons/person-video2.d.ts +0 -5
- package/bootstrap-icons/person-video2.js +0 -12
- package/bootstrap-icons/person-video3.d.ts +0 -5
- package/bootstrap-icons/person-video3.js +0 -12
- package/bootstrap-icons/person-workspace.d.ts +0 -5
- package/bootstrap-icons/person-workspace.js +0 -12
- package/bootstrap-icons/person-x-fill.d.ts +0 -5
- package/bootstrap-icons/person-x-fill.js +0 -12
- package/bootstrap-icons/person-x.d.ts +0 -5
- package/bootstrap-icons/person-x.js +0 -12
- package/bootstrap-icons/person.d.ts +0 -5
- package/bootstrap-icons/person.js +0 -12
- package/bootstrap-icons/phone-fill.d.ts +0 -5
- package/bootstrap-icons/phone-fill.js +0 -12
- package/bootstrap-icons/phone-flip.d.ts +0 -5
- package/bootstrap-icons/phone-flip.js +0 -12
- package/bootstrap-icons/phone-landscape-fill.d.ts +0 -5
- package/bootstrap-icons/phone-landscape-fill.js +0 -12
- package/bootstrap-icons/phone-landscape.d.ts +0 -5
- package/bootstrap-icons/phone-landscape.js +0 -12
- package/bootstrap-icons/phone-vibrate-fill.d.ts +0 -5
- package/bootstrap-icons/phone-vibrate-fill.js +0 -12
- package/bootstrap-icons/phone-vibrate.d.ts +0 -5
- package/bootstrap-icons/phone-vibrate.js +0 -12
- package/bootstrap-icons/phone.d.ts +0 -5
- package/bootstrap-icons/phone.js +0 -12
- package/bootstrap-icons/pie-chart-fill.d.ts +0 -5
- package/bootstrap-icons/pie-chart-fill.js +0 -12
- package/bootstrap-icons/pie-chart.d.ts +0 -5
- package/bootstrap-icons/pie-chart.js +0 -12
- package/bootstrap-icons/piggy-bank-fill.d.ts +0 -5
- package/bootstrap-icons/piggy-bank-fill.js +0 -12
- package/bootstrap-icons/piggy-bank.d.ts +0 -5
- package/bootstrap-icons/piggy-bank.js +0 -12
- package/bootstrap-icons/pin-angle-fill.d.ts +0 -5
- package/bootstrap-icons/pin-angle-fill.js +0 -12
- package/bootstrap-icons/pin-angle.d.ts +0 -5
- package/bootstrap-icons/pin-angle.js +0 -12
- package/bootstrap-icons/pin-fill.d.ts +0 -5
- package/bootstrap-icons/pin-fill.js +0 -12
- package/bootstrap-icons/pin-map-fill.d.ts +0 -5
- package/bootstrap-icons/pin-map-fill.js +0 -12
- package/bootstrap-icons/pin-map.d.ts +0 -5
- package/bootstrap-icons/pin-map.js +0 -12
- package/bootstrap-icons/pin.d.ts +0 -5
- package/bootstrap-icons/pin.js +0 -12
- package/bootstrap-icons/pinterest.d.ts +0 -5
- package/bootstrap-icons/pinterest.js +0 -12
- package/bootstrap-icons/pip-fill.d.ts +0 -5
- package/bootstrap-icons/pip-fill.js +0 -12
- package/bootstrap-icons/pip.d.ts +0 -5
- package/bootstrap-icons/pip.js +0 -12
- package/bootstrap-icons/play-btn-fill.d.ts +0 -5
- package/bootstrap-icons/play-btn-fill.js +0 -12
- package/bootstrap-icons/play-btn.d.ts +0 -5
- package/bootstrap-icons/play-btn.js +0 -12
- package/bootstrap-icons/play-circle-fill.d.ts +0 -5
- package/bootstrap-icons/play-circle-fill.js +0 -12
- package/bootstrap-icons/play-circle.d.ts +0 -5
- package/bootstrap-icons/play-circle.js +0 -12
- package/bootstrap-icons/play-fill.d.ts +0 -5
- package/bootstrap-icons/play-fill.js +0 -12
- package/bootstrap-icons/play.d.ts +0 -5
- package/bootstrap-icons/play.js +0 -12
- package/bootstrap-icons/playstation.d.ts +0 -5
- package/bootstrap-icons/playstation.js +0 -12
- package/bootstrap-icons/plug-fill.d.ts +0 -5
- package/bootstrap-icons/plug-fill.js +0 -12
- package/bootstrap-icons/plug.d.ts +0 -5
- package/bootstrap-icons/plug.js +0 -12
- package/bootstrap-icons/plugin.d.ts +0 -5
- package/bootstrap-icons/plugin.js +0 -12
- package/bootstrap-icons/plus-circle-dotted.d.ts +0 -5
- package/bootstrap-icons/plus-circle-dotted.js +0 -12
- package/bootstrap-icons/plus-circle-fill.d.ts +0 -5
- package/bootstrap-icons/plus-circle-fill.js +0 -12
- package/bootstrap-icons/plus-circle.d.ts +0 -5
- package/bootstrap-icons/plus-circle.js +0 -12
- package/bootstrap-icons/plus-lg.d.ts +0 -5
- package/bootstrap-icons/plus-lg.js +0 -12
- package/bootstrap-icons/plus-slash-minus.d.ts +0 -5
- package/bootstrap-icons/plus-slash-minus.js +0 -12
- package/bootstrap-icons/plus-square-dotted.d.ts +0 -5
- package/bootstrap-icons/plus-square-dotted.js +0 -12
- package/bootstrap-icons/plus-square-fill.d.ts +0 -5
- package/bootstrap-icons/plus-square-fill.js +0 -12
- package/bootstrap-icons/plus-square.d.ts +0 -5
- package/bootstrap-icons/plus-square.js +0 -12
- package/bootstrap-icons/plus.d.ts +0 -5
- package/bootstrap-icons/plus.js +0 -12
- package/bootstrap-icons/postage-fill.d.ts +0 -5
- package/bootstrap-icons/postage-fill.js +0 -12
- package/bootstrap-icons/postage-heart-fill.d.ts +0 -5
- package/bootstrap-icons/postage-heart-fill.js +0 -12
- package/bootstrap-icons/postage-heart.d.ts +0 -5
- package/bootstrap-icons/postage-heart.js +0 -12
- package/bootstrap-icons/postage.d.ts +0 -5
- package/bootstrap-icons/postage.js +0 -12
- package/bootstrap-icons/postcard-fill.d.ts +0 -5
- package/bootstrap-icons/postcard-fill.js +0 -12
- package/bootstrap-icons/postcard-heart-fill.d.ts +0 -5
- package/bootstrap-icons/postcard-heart-fill.js +0 -12
- package/bootstrap-icons/postcard-heart.d.ts +0 -5
- package/bootstrap-icons/postcard-heart.js +0 -12
- package/bootstrap-icons/postcard.d.ts +0 -5
- package/bootstrap-icons/postcard.js +0 -12
- package/bootstrap-icons/power.d.ts +0 -5
- package/bootstrap-icons/power.js +0 -12
- package/bootstrap-icons/printer-fill.d.ts +0 -5
- package/bootstrap-icons/printer-fill.js +0 -12
- package/bootstrap-icons/printer.d.ts +0 -5
- package/bootstrap-icons/printer.js +0 -12
- package/bootstrap-icons/projector-fill.d.ts +0 -5
- package/bootstrap-icons/projector-fill.js +0 -12
- package/bootstrap-icons/projector.d.ts +0 -5
- package/bootstrap-icons/projector.js +0 -12
- package/bootstrap-icons/puzzle-fill.d.ts +0 -5
- package/bootstrap-icons/puzzle-fill.js +0 -12
- package/bootstrap-icons/puzzle.d.ts +0 -5
- package/bootstrap-icons/puzzle.js +0 -12
- package/bootstrap-icons/qr-code-scan.d.ts +0 -5
- package/bootstrap-icons/qr-code-scan.js +0 -12
- package/bootstrap-icons/qr-code.d.ts +0 -5
- package/bootstrap-icons/qr-code.js +0 -12
- package/bootstrap-icons/question-circle-fill.d.ts +0 -5
- package/bootstrap-icons/question-circle-fill.js +0 -12
- package/bootstrap-icons/question-circle.d.ts +0 -5
- package/bootstrap-icons/question-circle.js +0 -12
- package/bootstrap-icons/question-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/question-diamond-fill.js +0 -12
- package/bootstrap-icons/question-diamond.d.ts +0 -5
- package/bootstrap-icons/question-diamond.js +0 -12
- package/bootstrap-icons/question-lg.d.ts +0 -5
- package/bootstrap-icons/question-lg.js +0 -12
- package/bootstrap-icons/question-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/question-octagon-fill.js +0 -12
- package/bootstrap-icons/question-octagon.d.ts +0 -5
- package/bootstrap-icons/question-octagon.js +0 -12
- package/bootstrap-icons/question-square-fill.d.ts +0 -5
- package/bootstrap-icons/question-square-fill.js +0 -12
- package/bootstrap-icons/question-square.d.ts +0 -5
- package/bootstrap-icons/question-square.js +0 -12
- package/bootstrap-icons/question.d.ts +0 -5
- package/bootstrap-icons/question.js +0 -12
- package/bootstrap-icons/quora.d.ts +0 -5
- package/bootstrap-icons/quora.js +0 -12
- package/bootstrap-icons/quote.d.ts +0 -5
- package/bootstrap-icons/quote.js +0 -12
- package/bootstrap-icons/radioactive.d.ts +0 -5
- package/bootstrap-icons/radioactive.js +0 -12
- package/bootstrap-icons/rainbow.d.ts +0 -5
- package/bootstrap-icons/rainbow.js +0 -12
- package/bootstrap-icons/receipt-cutoff.d.ts +0 -5
- package/bootstrap-icons/receipt-cutoff.js +0 -12
- package/bootstrap-icons/receipt.d.ts +0 -5
- package/bootstrap-icons/receipt.js +0 -12
- package/bootstrap-icons/reception-0.d.ts +0 -5
- package/bootstrap-icons/reception-0.js +0 -12
- package/bootstrap-icons/reception-1.d.ts +0 -5
- package/bootstrap-icons/reception-1.js +0 -12
- package/bootstrap-icons/reception-2.d.ts +0 -5
- package/bootstrap-icons/reception-2.js +0 -12
- package/bootstrap-icons/reception-3.d.ts +0 -5
- package/bootstrap-icons/reception-3.js +0 -12
- package/bootstrap-icons/reception-4.d.ts +0 -5
- package/bootstrap-icons/reception-4.js +0 -12
- package/bootstrap-icons/record-btn-fill.d.ts +0 -5
- package/bootstrap-icons/record-btn-fill.js +0 -12
- package/bootstrap-icons/record-btn.d.ts +0 -5
- package/bootstrap-icons/record-btn.js +0 -12
- package/bootstrap-icons/record-circle-fill.d.ts +0 -5
- package/bootstrap-icons/record-circle-fill.js +0 -12
- package/bootstrap-icons/record-circle.d.ts +0 -5
- package/bootstrap-icons/record-circle.js +0 -12
- package/bootstrap-icons/record-fill.d.ts +0 -5
- package/bootstrap-icons/record-fill.js +0 -12
- package/bootstrap-icons/record.d.ts +0 -5
- package/bootstrap-icons/record.js +0 -12
- package/bootstrap-icons/record2-fill.d.ts +0 -5
- package/bootstrap-icons/record2-fill.js +0 -12
- package/bootstrap-icons/record2.d.ts +0 -5
- package/bootstrap-icons/record2.js +0 -12
- package/bootstrap-icons/recycle.d.ts +0 -5
- package/bootstrap-icons/recycle.js +0 -12
- package/bootstrap-icons/reddit.d.ts +0 -5
- package/bootstrap-icons/reddit.js +0 -12
- package/bootstrap-icons/reply-all-fill.d.ts +0 -5
- package/bootstrap-icons/reply-all-fill.js +0 -12
- package/bootstrap-icons/reply-all.d.ts +0 -5
- package/bootstrap-icons/reply-all.js +0 -12
- package/bootstrap-icons/reply-fill.d.ts +0 -5
- package/bootstrap-icons/reply-fill.js +0 -12
- package/bootstrap-icons/reply.d.ts +0 -5
- package/bootstrap-icons/reply.js +0 -12
- package/bootstrap-icons/robot.d.ts +0 -5
- package/bootstrap-icons/robot.js +0 -12
- package/bootstrap-icons/router-fill.d.ts +0 -5
- package/bootstrap-icons/router-fill.js +0 -12
- package/bootstrap-icons/router.d.ts +0 -5
- package/bootstrap-icons/router.js +0 -12
- package/bootstrap-icons/rss-fill.d.ts +0 -5
- package/bootstrap-icons/rss-fill.js +0 -12
- package/bootstrap-icons/rss.d.ts +0 -5
- package/bootstrap-icons/rss.js +0 -12
- package/bootstrap-icons/rulers.d.ts +0 -5
- package/bootstrap-icons/rulers.js +0 -12
- package/bootstrap-icons/safe-fill.d.ts +0 -5
- package/bootstrap-icons/safe-fill.js +0 -12
- package/bootstrap-icons/safe.d.ts +0 -5
- package/bootstrap-icons/safe.js +0 -12
- package/bootstrap-icons/safe2-fill.d.ts +0 -5
- package/bootstrap-icons/safe2-fill.js +0 -12
- package/bootstrap-icons/safe2.d.ts +0 -5
- package/bootstrap-icons/safe2.js +0 -12
- package/bootstrap-icons/save-fill.d.ts +0 -5
- package/bootstrap-icons/save-fill.js +0 -12
- package/bootstrap-icons/save.d.ts +0 -5
- package/bootstrap-icons/save.js +0 -12
- package/bootstrap-icons/save2-fill.d.ts +0 -5
- package/bootstrap-icons/save2-fill.js +0 -12
- package/bootstrap-icons/save2.d.ts +0 -5
- package/bootstrap-icons/save2.js +0 -12
- package/bootstrap-icons/scissors.d.ts +0 -5
- package/bootstrap-icons/scissors.js +0 -12
- package/bootstrap-icons/screwdriver.d.ts +0 -5
- package/bootstrap-icons/screwdriver.js +0 -12
- package/bootstrap-icons/sd-card-fill.d.ts +0 -5
- package/bootstrap-icons/sd-card-fill.js +0 -12
- package/bootstrap-icons/sd-card.d.ts +0 -5
- package/bootstrap-icons/sd-card.js +0 -12
- package/bootstrap-icons/search-heart-fill.d.ts +0 -5
- package/bootstrap-icons/search-heart-fill.js +0 -12
- package/bootstrap-icons/search-heart.d.ts +0 -5
- package/bootstrap-icons/search-heart.js +0 -12
- package/bootstrap-icons/search.d.ts +0 -5
- package/bootstrap-icons/search.js +0 -12
- package/bootstrap-icons/segmented-nav.d.ts +0 -5
- package/bootstrap-icons/segmented-nav.js +0 -12
- package/bootstrap-icons/send-check-fill.d.ts +0 -5
- package/bootstrap-icons/send-check-fill.js +0 -12
- package/bootstrap-icons/send-check.d.ts +0 -5
- package/bootstrap-icons/send-check.js +0 -12
- package/bootstrap-icons/send-dash-fill.d.ts +0 -5
- package/bootstrap-icons/send-dash-fill.js +0 -12
- package/bootstrap-icons/send-dash.d.ts +0 -5
- package/bootstrap-icons/send-dash.js +0 -12
- package/bootstrap-icons/send-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/send-exclamation-fill.js +0 -12
- package/bootstrap-icons/send-exclamation.d.ts +0 -5
- package/bootstrap-icons/send-exclamation.js +0 -12
- package/bootstrap-icons/send-fill.d.ts +0 -5
- package/bootstrap-icons/send-fill.js +0 -12
- package/bootstrap-icons/send-plus-fill.d.ts +0 -5
- package/bootstrap-icons/send-plus-fill.js +0 -12
- package/bootstrap-icons/send-plus.d.ts +0 -5
- package/bootstrap-icons/send-plus.js +0 -12
- package/bootstrap-icons/send-slash-fill.d.ts +0 -5
- package/bootstrap-icons/send-slash-fill.js +0 -12
- package/bootstrap-icons/send-slash.d.ts +0 -5
- package/bootstrap-icons/send-slash.js +0 -12
- package/bootstrap-icons/send-x-fill.d.ts +0 -5
- package/bootstrap-icons/send-x-fill.js +0 -12
- package/bootstrap-icons/send-x.d.ts +0 -5
- package/bootstrap-icons/send-x.js +0 -12
- package/bootstrap-icons/send.d.ts +0 -5
- package/bootstrap-icons/send.js +0 -12
- package/bootstrap-icons/server.d.ts +0 -5
- package/bootstrap-icons/server.js +0 -12
- package/bootstrap-icons/share-fill.d.ts +0 -5
- package/bootstrap-icons/share-fill.js +0 -12
- package/bootstrap-icons/share.d.ts +0 -5
- package/bootstrap-icons/share.js +0 -12
- package/bootstrap-icons/shield-check.d.ts +0 -5
- package/bootstrap-icons/shield-check.js +0 -12
- package/bootstrap-icons/shield-exclamation.d.ts +0 -5
- package/bootstrap-icons/shield-exclamation.js +0 -12
- package/bootstrap-icons/shield-fill-check.d.ts +0 -5
- package/bootstrap-icons/shield-fill-check.js +0 -12
- package/bootstrap-icons/shield-fill-exclamation.d.ts +0 -5
- package/bootstrap-icons/shield-fill-exclamation.js +0 -12
- package/bootstrap-icons/shield-fill-minus.d.ts +0 -5
- package/bootstrap-icons/shield-fill-minus.js +0 -12
- package/bootstrap-icons/shield-fill-plus.d.ts +0 -5
- package/bootstrap-icons/shield-fill-plus.js +0 -12
- package/bootstrap-icons/shield-fill-x.d.ts +0 -5
- package/bootstrap-icons/shield-fill-x.js +0 -12
- package/bootstrap-icons/shield-fill.d.ts +0 -5
- package/bootstrap-icons/shield-fill.js +0 -12
- package/bootstrap-icons/shield-lock-fill.d.ts +0 -5
- package/bootstrap-icons/shield-lock-fill.js +0 -12
- package/bootstrap-icons/shield-lock.d.ts +0 -5
- package/bootstrap-icons/shield-lock.js +0 -12
- package/bootstrap-icons/shield-minus.d.ts +0 -5
- package/bootstrap-icons/shield-minus.js +0 -12
- package/bootstrap-icons/shield-plus.d.ts +0 -5
- package/bootstrap-icons/shield-plus.js +0 -12
- package/bootstrap-icons/shield-shaded.d.ts +0 -5
- package/bootstrap-icons/shield-shaded.js +0 -12
- package/bootstrap-icons/shield-slash-fill.d.ts +0 -5
- package/bootstrap-icons/shield-slash-fill.js +0 -12
- package/bootstrap-icons/shield-slash.d.ts +0 -5
- package/bootstrap-icons/shield-slash.js +0 -12
- package/bootstrap-icons/shield-x.d.ts +0 -5
- package/bootstrap-icons/shield-x.js +0 -12
- package/bootstrap-icons/shield.d.ts +0 -5
- package/bootstrap-icons/shield.js +0 -12
- package/bootstrap-icons/shift-fill.d.ts +0 -5
- package/bootstrap-icons/shift-fill.js +0 -12
- package/bootstrap-icons/shift.d.ts +0 -5
- package/bootstrap-icons/shift.js +0 -12
- package/bootstrap-icons/shop-window.d.ts +0 -5
- package/bootstrap-icons/shop-window.js +0 -12
- package/bootstrap-icons/shop.d.ts +0 -5
- package/bootstrap-icons/shop.js +0 -12
- package/bootstrap-icons/shuffle.d.ts +0 -5
- package/bootstrap-icons/shuffle.js +0 -12
- package/bootstrap-icons/signal.d.ts +0 -5
- package/bootstrap-icons/signal.js +0 -12
- package/bootstrap-icons/signpost-2-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-2-fill.js +0 -12
- package/bootstrap-icons/signpost-2.d.ts +0 -5
- package/bootstrap-icons/signpost-2.js +0 -12
- package/bootstrap-icons/signpost-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-fill.js +0 -12
- package/bootstrap-icons/signpost-split-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-split-fill.js +0 -12
- package/bootstrap-icons/signpost-split.d.ts +0 -5
- package/bootstrap-icons/signpost-split.js +0 -12
- package/bootstrap-icons/signpost.d.ts +0 -5
- package/bootstrap-icons/signpost.js +0 -12
- package/bootstrap-icons/sim-fill.d.ts +0 -5
- package/bootstrap-icons/sim-fill.js +0 -12
- package/bootstrap-icons/sim.d.ts +0 -5
- package/bootstrap-icons/sim.js +0 -12
- package/bootstrap-icons/skip-backward-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-btn-fill.js +0 -12
- package/bootstrap-icons/skip-backward-btn.d.ts +0 -5
- package/bootstrap-icons/skip-backward-btn.js +0 -12
- package/bootstrap-icons/skip-backward-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-circle-fill.js +0 -12
- package/bootstrap-icons/skip-backward-circle.d.ts +0 -5
- package/bootstrap-icons/skip-backward-circle.js +0 -12
- package/bootstrap-icons/skip-backward-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-fill.js +0 -12
- package/bootstrap-icons/skip-backward.d.ts +0 -5
- package/bootstrap-icons/skip-backward.js +0 -12
- package/bootstrap-icons/skip-end-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-btn-fill.js +0 -12
- package/bootstrap-icons/skip-end-btn.d.ts +0 -5
- package/bootstrap-icons/skip-end-btn.js +0 -12
- package/bootstrap-icons/skip-end-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-circle-fill.js +0 -12
- package/bootstrap-icons/skip-end-circle.d.ts +0 -5
- package/bootstrap-icons/skip-end-circle.js +0 -12
- package/bootstrap-icons/skip-end-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-fill.js +0 -12
- package/bootstrap-icons/skip-end.d.ts +0 -5
- package/bootstrap-icons/skip-end.js +0 -12
- package/bootstrap-icons/skip-forward-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-btn-fill.js +0 -12
- package/bootstrap-icons/skip-forward-btn.d.ts +0 -5
- package/bootstrap-icons/skip-forward-btn.js +0 -12
- package/bootstrap-icons/skip-forward-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-circle-fill.js +0 -12
- package/bootstrap-icons/skip-forward-circle.d.ts +0 -5
- package/bootstrap-icons/skip-forward-circle.js +0 -12
- package/bootstrap-icons/skip-forward-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-fill.js +0 -12
- package/bootstrap-icons/skip-forward.d.ts +0 -5
- package/bootstrap-icons/skip-forward.js +0 -12
- package/bootstrap-icons/skip-start-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-btn-fill.js +0 -12
- package/bootstrap-icons/skip-start-btn.d.ts +0 -5
- package/bootstrap-icons/skip-start-btn.js +0 -12
- package/bootstrap-icons/skip-start-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-circle-fill.js +0 -12
- package/bootstrap-icons/skip-start-circle.d.ts +0 -5
- package/bootstrap-icons/skip-start-circle.js +0 -12
- package/bootstrap-icons/skip-start-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-fill.js +0 -12
- package/bootstrap-icons/skip-start.d.ts +0 -5
- package/bootstrap-icons/skip-start.js +0 -12
- package/bootstrap-icons/skype.d.ts +0 -5
- package/bootstrap-icons/skype.js +0 -12
- package/bootstrap-icons/slack.d.ts +0 -5
- package/bootstrap-icons/slack.js +0 -12
- package/bootstrap-icons/slash-circle-fill.d.ts +0 -5
- package/bootstrap-icons/slash-circle-fill.js +0 -12
- package/bootstrap-icons/slash-circle.d.ts +0 -5
- package/bootstrap-icons/slash-circle.js +0 -12
- package/bootstrap-icons/slash-lg.d.ts +0 -5
- package/bootstrap-icons/slash-lg.js +0 -12
- package/bootstrap-icons/slash-square-fill.d.ts +0 -5
- package/bootstrap-icons/slash-square-fill.js +0 -12
- package/bootstrap-icons/slash-square.d.ts +0 -5
- package/bootstrap-icons/slash-square.js +0 -12
- package/bootstrap-icons/slash.d.ts +0 -5
- package/bootstrap-icons/slash.js +0 -12
- package/bootstrap-icons/sliders.d.ts +0 -5
- package/bootstrap-icons/sliders.js +0 -12
- package/bootstrap-icons/sliders2-vertical.d.ts +0 -5
- package/bootstrap-icons/sliders2-vertical.js +0 -12
- package/bootstrap-icons/sliders2.d.ts +0 -5
- package/bootstrap-icons/sliders2.js +0 -12
- package/bootstrap-icons/smartwatch.d.ts +0 -5
- package/bootstrap-icons/smartwatch.js +0 -12
- package/bootstrap-icons/snapchat.d.ts +0 -5
- package/bootstrap-icons/snapchat.js +0 -12
- package/bootstrap-icons/snow.d.ts +0 -5
- package/bootstrap-icons/snow.js +0 -12
- package/bootstrap-icons/snow2.d.ts +0 -5
- package/bootstrap-icons/snow2.js +0 -12
- package/bootstrap-icons/snow3.d.ts +0 -5
- package/bootstrap-icons/snow3.js +0 -12
- package/bootstrap-icons/sort-alpha-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-down-alt.js +0 -12
- package/bootstrap-icons/sort-alpha-down.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-down.js +0 -12
- package/bootstrap-icons/sort-alpha-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-up-alt.js +0 -12
- package/bootstrap-icons/sort-alpha-up.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-up.js +0 -12
- package/bootstrap-icons/sort-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-down-alt.js +0 -12
- package/bootstrap-icons/sort-down.d.ts +0 -5
- package/bootstrap-icons/sort-down.js +0 -12
- package/bootstrap-icons/sort-numeric-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-down-alt.js +0 -12
- package/bootstrap-icons/sort-numeric-down.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-down.js +0 -12
- package/bootstrap-icons/sort-numeric-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-up-alt.js +0 -12
- package/bootstrap-icons/sort-numeric-up.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-up.js +0 -12
- package/bootstrap-icons/sort-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-up-alt.js +0 -12
- package/bootstrap-icons/sort-up.d.ts +0 -5
- package/bootstrap-icons/sort-up.js +0 -12
- package/bootstrap-icons/soundwave.d.ts +0 -5
- package/bootstrap-icons/soundwave.js +0 -12
- package/bootstrap-icons/speaker-fill.d.ts +0 -5
- package/bootstrap-icons/speaker-fill.js +0 -12
- package/bootstrap-icons/speaker.d.ts +0 -5
- package/bootstrap-icons/speaker.js +0 -12
- package/bootstrap-icons/speedometer.d.ts +0 -5
- package/bootstrap-icons/speedometer.js +0 -12
- package/bootstrap-icons/speedometer2.d.ts +0 -5
- package/bootstrap-icons/speedometer2.js +0 -12
- package/bootstrap-icons/spellcheck.d.ts +0 -5
- package/bootstrap-icons/spellcheck.js +0 -12
- package/bootstrap-icons/spotify.d.ts +0 -5
- package/bootstrap-icons/spotify.js +0 -12
- package/bootstrap-icons/square-fill.d.ts +0 -5
- package/bootstrap-icons/square-fill.js +0 -12
- package/bootstrap-icons/square-half.d.ts +0 -5
- package/bootstrap-icons/square-half.js +0 -12
- package/bootstrap-icons/square.d.ts +0 -5
- package/bootstrap-icons/square.js +0 -12
- package/bootstrap-icons/stack-overflow.d.ts +0 -5
- package/bootstrap-icons/stack-overflow.js +0 -12
- package/bootstrap-icons/stack.d.ts +0 -5
- package/bootstrap-icons/stack.js +0 -12
- package/bootstrap-icons/star-fill.d.ts +0 -5
- package/bootstrap-icons/star-fill.js +0 -12
- package/bootstrap-icons/star-half.d.ts +0 -5
- package/bootstrap-icons/star-half.js +0 -12
- package/bootstrap-icons/star.d.ts +0 -5
- package/bootstrap-icons/star.js +0 -12
- package/bootstrap-icons/stars.d.ts +0 -5
- package/bootstrap-icons/stars.js +0 -12
- package/bootstrap-icons/steam.d.ts +0 -5
- package/bootstrap-icons/steam.js +0 -12
- package/bootstrap-icons/stickies-fill.d.ts +0 -5
- package/bootstrap-icons/stickies-fill.js +0 -12
- package/bootstrap-icons/stickies.d.ts +0 -5
- package/bootstrap-icons/stickies.js +0 -12
- package/bootstrap-icons/sticky-fill.d.ts +0 -5
- package/bootstrap-icons/sticky-fill.js +0 -12
- package/bootstrap-icons/sticky.d.ts +0 -5
- package/bootstrap-icons/sticky.js +0 -12
- package/bootstrap-icons/stop-btn-fill.d.ts +0 -5
- package/bootstrap-icons/stop-btn-fill.js +0 -12
- package/bootstrap-icons/stop-btn.d.ts +0 -5
- package/bootstrap-icons/stop-btn.js +0 -12
- package/bootstrap-icons/stop-circle-fill.d.ts +0 -5
- package/bootstrap-icons/stop-circle-fill.js +0 -12
- package/bootstrap-icons/stop-circle.d.ts +0 -5
- package/bootstrap-icons/stop-circle.js +0 -12
- package/bootstrap-icons/stop-fill.d.ts +0 -5
- package/bootstrap-icons/stop-fill.js +0 -12
- package/bootstrap-icons/stop.d.ts +0 -5
- package/bootstrap-icons/stop.js +0 -12
- package/bootstrap-icons/stoplights-fill.d.ts +0 -5
- package/bootstrap-icons/stoplights-fill.js +0 -12
- package/bootstrap-icons/stoplights.d.ts +0 -5
- package/bootstrap-icons/stoplights.js +0 -12
- package/bootstrap-icons/stopwatch-fill.d.ts +0 -5
- package/bootstrap-icons/stopwatch-fill.js +0 -12
- package/bootstrap-icons/stopwatch.d.ts +0 -5
- package/bootstrap-icons/stopwatch.js +0 -12
- package/bootstrap-icons/strava.d.ts +0 -5
- package/bootstrap-icons/strava.js +0 -12
- package/bootstrap-icons/subtract.d.ts +0 -5
- package/bootstrap-icons/subtract.js +0 -12
- package/bootstrap-icons/suit-club-fill.d.ts +0 -5
- package/bootstrap-icons/suit-club-fill.js +0 -12
- package/bootstrap-icons/suit-club.d.ts +0 -5
- package/bootstrap-icons/suit-club.js +0 -12
- package/bootstrap-icons/suit-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/suit-diamond-fill.js +0 -12
- package/bootstrap-icons/suit-diamond.d.ts +0 -5
- package/bootstrap-icons/suit-diamond.js +0 -12
- package/bootstrap-icons/suit-heart-fill.d.ts +0 -5
- package/bootstrap-icons/suit-heart-fill.js +0 -12
- package/bootstrap-icons/suit-heart.d.ts +0 -5
- package/bootstrap-icons/suit-heart.js +0 -12
- package/bootstrap-icons/suit-spade-fill.d.ts +0 -5
- package/bootstrap-icons/suit-spade-fill.js +0 -12
- package/bootstrap-icons/suit-spade.d.ts +0 -5
- package/bootstrap-icons/suit-spade.js +0 -12
- package/bootstrap-icons/sun-fill.d.ts +0 -5
- package/bootstrap-icons/sun-fill.js +0 -12
- package/bootstrap-icons/sun.d.ts +0 -5
- package/bootstrap-icons/sun.js +0 -12
- package/bootstrap-icons/sunglasses.d.ts +0 -5
- package/bootstrap-icons/sunglasses.js +0 -12
- package/bootstrap-icons/sunrise-fill.d.ts +0 -5
- package/bootstrap-icons/sunrise-fill.js +0 -12
- package/bootstrap-icons/sunrise.d.ts +0 -5
- package/bootstrap-icons/sunrise.js +0 -12
- package/bootstrap-icons/sunset-fill.d.ts +0 -5
- package/bootstrap-icons/sunset-fill.js +0 -12
- package/bootstrap-icons/sunset.d.ts +0 -5
- package/bootstrap-icons/sunset.js +0 -12
- package/bootstrap-icons/symmetry-horizontal.d.ts +0 -5
- package/bootstrap-icons/symmetry-horizontal.js +0 -12
- package/bootstrap-icons/symmetry-vertical.d.ts +0 -5
- package/bootstrap-icons/symmetry-vertical.js +0 -12
- package/bootstrap-icons/table.d.ts +0 -5
- package/bootstrap-icons/table.js +0 -12
- package/bootstrap-icons/tablet-fill.d.ts +0 -5
- package/bootstrap-icons/tablet-fill.js +0 -12
- package/bootstrap-icons/tablet-landscape-fill.d.ts +0 -5
- package/bootstrap-icons/tablet-landscape-fill.js +0 -12
- package/bootstrap-icons/tablet-landscape.d.ts +0 -5
- package/bootstrap-icons/tablet-landscape.js +0 -12
- package/bootstrap-icons/tablet.d.ts +0 -5
- package/bootstrap-icons/tablet.js +0 -12
- package/bootstrap-icons/tag-fill.d.ts +0 -5
- package/bootstrap-icons/tag-fill.js +0 -12
- package/bootstrap-icons/tag.d.ts +0 -5
- package/bootstrap-icons/tag.js +0 -12
- package/bootstrap-icons/tags-fill.d.ts +0 -5
- package/bootstrap-icons/tags-fill.js +0 -12
- package/bootstrap-icons/tags.d.ts +0 -5
- package/bootstrap-icons/tags.js +0 -12
- package/bootstrap-icons/telegram.d.ts +0 -5
- package/bootstrap-icons/telegram.js +0 -12
- package/bootstrap-icons/telephone-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-fill.js +0 -12
- package/bootstrap-icons/telephone-forward-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-forward-fill.js +0 -12
- package/bootstrap-icons/telephone-forward.d.ts +0 -5
- package/bootstrap-icons/telephone-forward.js +0 -12
- package/bootstrap-icons/telephone-inbound-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-inbound-fill.js +0 -12
- package/bootstrap-icons/telephone-inbound.d.ts +0 -5
- package/bootstrap-icons/telephone-inbound.js +0 -12
- package/bootstrap-icons/telephone-minus-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-minus-fill.js +0 -12
- package/bootstrap-icons/telephone-minus.d.ts +0 -5
- package/bootstrap-icons/telephone-minus.js +0 -12
- package/bootstrap-icons/telephone-outbound-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-outbound-fill.js +0 -12
- package/bootstrap-icons/telephone-outbound.d.ts +0 -5
- package/bootstrap-icons/telephone-outbound.js +0 -12
- package/bootstrap-icons/telephone-plus-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-plus-fill.js +0 -12
- package/bootstrap-icons/telephone-plus.d.ts +0 -5
- package/bootstrap-icons/telephone-plus.js +0 -12
- package/bootstrap-icons/telephone-x-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-x-fill.js +0 -12
- package/bootstrap-icons/telephone-x.d.ts +0 -5
- package/bootstrap-icons/telephone-x.js +0 -12
- package/bootstrap-icons/telephone.d.ts +0 -5
- package/bootstrap-icons/telephone.js +0 -12
- package/bootstrap-icons/terminal-dash.d.ts +0 -5
- package/bootstrap-icons/terminal-dash.js +0 -12
- package/bootstrap-icons/terminal-fill.d.ts +0 -5
- package/bootstrap-icons/terminal-fill.js +0 -12
- package/bootstrap-icons/terminal-plus.d.ts +0 -5
- package/bootstrap-icons/terminal-plus.js +0 -12
- package/bootstrap-icons/terminal-split.d.ts +0 -5
- package/bootstrap-icons/terminal-split.js +0 -12
- package/bootstrap-icons/terminal-x.d.ts +0 -5
- package/bootstrap-icons/terminal-x.js +0 -12
- package/bootstrap-icons/terminal.d.ts +0 -5
- package/bootstrap-icons/terminal.js +0 -12
- package/bootstrap-icons/text-center.d.ts +0 -5
- package/bootstrap-icons/text-center.js +0 -12
- package/bootstrap-icons/text-indent-left.d.ts +0 -5
- package/bootstrap-icons/text-indent-left.js +0 -12
- package/bootstrap-icons/text-indent-right.d.ts +0 -5
- package/bootstrap-icons/text-indent-right.js +0 -12
- package/bootstrap-icons/text-left.d.ts +0 -5
- package/bootstrap-icons/text-left.js +0 -12
- package/bootstrap-icons/text-paragraph.d.ts +0 -5
- package/bootstrap-icons/text-paragraph.js +0 -12
- package/bootstrap-icons/text-right.d.ts +0 -5
- package/bootstrap-icons/text-right.js +0 -12
- package/bootstrap-icons/textarea-resize.d.ts +0 -5
- package/bootstrap-icons/textarea-resize.js +0 -12
- package/bootstrap-icons/textarea-t.d.ts +0 -5
- package/bootstrap-icons/textarea-t.js +0 -12
- package/bootstrap-icons/textarea.d.ts +0 -5
- package/bootstrap-icons/textarea.js +0 -12
- package/bootstrap-icons/thermometer-half.d.ts +0 -5
- package/bootstrap-icons/thermometer-half.js +0 -12
- package/bootstrap-icons/thermometer-high.d.ts +0 -5
- package/bootstrap-icons/thermometer-high.js +0 -12
- package/bootstrap-icons/thermometer-low.d.ts +0 -5
- package/bootstrap-icons/thermometer-low.js +0 -12
- package/bootstrap-icons/thermometer-snow.d.ts +0 -5
- package/bootstrap-icons/thermometer-snow.js +0 -12
- package/bootstrap-icons/thermometer-sun.d.ts +0 -5
- package/bootstrap-icons/thermometer-sun.js +0 -12
- package/bootstrap-icons/thermometer.d.ts +0 -5
- package/bootstrap-icons/thermometer.js +0 -12
- package/bootstrap-icons/three-dots-vertical.d.ts +0 -5
- package/bootstrap-icons/three-dots-vertical.js +0 -12
- package/bootstrap-icons/three-dots.d.ts +0 -5
- package/bootstrap-icons/three-dots.js +0 -12
- package/bootstrap-icons/thunderbolt-fill.d.ts +0 -5
- package/bootstrap-icons/thunderbolt-fill.js +0 -12
- package/bootstrap-icons/thunderbolt.d.ts +0 -5
- package/bootstrap-icons/thunderbolt.js +0 -12
- package/bootstrap-icons/ticket-detailed-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-detailed-fill.js +0 -12
- package/bootstrap-icons/ticket-detailed.d.ts +0 -5
- package/bootstrap-icons/ticket-detailed.js +0 -12
- package/bootstrap-icons/ticket-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-fill.js +0 -12
- package/bootstrap-icons/ticket-perforated-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-perforated-fill.js +0 -12
- package/bootstrap-icons/ticket-perforated.d.ts +0 -5
- package/bootstrap-icons/ticket-perforated.js +0 -12
- package/bootstrap-icons/ticket.d.ts +0 -5
- package/bootstrap-icons/ticket.js +0 -12
- package/bootstrap-icons/tiktok.d.ts +0 -5
- package/bootstrap-icons/tiktok.js +0 -12
- package/bootstrap-icons/toggle-off.d.ts +0 -5
- package/bootstrap-icons/toggle-off.js +0 -12
- package/bootstrap-icons/toggle-on.d.ts +0 -5
- package/bootstrap-icons/toggle-on.js +0 -12
- package/bootstrap-icons/toggle2-off.d.ts +0 -5
- package/bootstrap-icons/toggle2-off.js +0 -12
- package/bootstrap-icons/toggle2-on.d.ts +0 -5
- package/bootstrap-icons/toggle2-on.js +0 -12
- package/bootstrap-icons/toggles.d.ts +0 -5
- package/bootstrap-icons/toggles.js +0 -12
- package/bootstrap-icons/toggles2.d.ts +0 -5
- package/bootstrap-icons/toggles2.js +0 -12
- package/bootstrap-icons/tools.d.ts +0 -5
- package/bootstrap-icons/tools.js +0 -12
- package/bootstrap-icons/tornado.d.ts +0 -5
- package/bootstrap-icons/tornado.js +0 -12
- package/bootstrap-icons/translate.d.ts +0 -5
- package/bootstrap-icons/translate.js +0 -12
- package/bootstrap-icons/trash-fill.d.ts +0 -5
- package/bootstrap-icons/trash-fill.js +0 -12
- package/bootstrap-icons/trash.d.ts +0 -5
- package/bootstrap-icons/trash.js +0 -12
- package/bootstrap-icons/trash2-fill.d.ts +0 -5
- package/bootstrap-icons/trash2-fill.js +0 -12
- package/bootstrap-icons/trash2.d.ts +0 -5
- package/bootstrap-icons/trash2.js +0 -12
- package/bootstrap-icons/trash3-fill.d.ts +0 -5
- package/bootstrap-icons/trash3-fill.js +0 -12
- package/bootstrap-icons/trash3.d.ts +0 -5
- package/bootstrap-icons/trash3.js +0 -12
- package/bootstrap-icons/tree-fill.d.ts +0 -5
- package/bootstrap-icons/tree-fill.js +0 -12
- package/bootstrap-icons/tree.d.ts +0 -5
- package/bootstrap-icons/tree.js +0 -12
- package/bootstrap-icons/triangle-fill.d.ts +0 -5
- package/bootstrap-icons/triangle-fill.js +0 -12
- package/bootstrap-icons/triangle-half.d.ts +0 -5
- package/bootstrap-icons/triangle-half.js +0 -12
- package/bootstrap-icons/triangle.d.ts +0 -5
- package/bootstrap-icons/triangle.js +0 -12
- package/bootstrap-icons/trophy-fill.d.ts +0 -5
- package/bootstrap-icons/trophy-fill.js +0 -12
- package/bootstrap-icons/trophy.d.ts +0 -5
- package/bootstrap-icons/trophy.js +0 -12
- package/bootstrap-icons/tropical-storm.d.ts +0 -5
- package/bootstrap-icons/tropical-storm.js +0 -12
- package/bootstrap-icons/truck-flatbed.d.ts +0 -5
- package/bootstrap-icons/truck-flatbed.js +0 -12
- package/bootstrap-icons/truck.d.ts +0 -5
- package/bootstrap-icons/truck.js +0 -12
- package/bootstrap-icons/tsunami.d.ts +0 -5
- package/bootstrap-icons/tsunami.js +0 -12
- package/bootstrap-icons/tv-fill.d.ts +0 -5
- package/bootstrap-icons/tv-fill.js +0 -12
- package/bootstrap-icons/tv.d.ts +0 -5
- package/bootstrap-icons/tv.js +0 -12
- package/bootstrap-icons/twitch.d.ts +0 -5
- package/bootstrap-icons/twitch.js +0 -12
- package/bootstrap-icons/twitter.d.ts +0 -5
- package/bootstrap-icons/twitter.js +0 -12
- package/bootstrap-icons/type-bold.d.ts +0 -5
- package/bootstrap-icons/type-bold.js +0 -12
- package/bootstrap-icons/type-h1.d.ts +0 -5
- package/bootstrap-icons/type-h1.js +0 -12
- package/bootstrap-icons/type-h2.d.ts +0 -5
- package/bootstrap-icons/type-h2.js +0 -12
- package/bootstrap-icons/type-h3.d.ts +0 -5
- package/bootstrap-icons/type-h3.js +0 -12
- package/bootstrap-icons/type-italic.d.ts +0 -5
- package/bootstrap-icons/type-italic.js +0 -12
- package/bootstrap-icons/type-strikethrough.d.ts +0 -5
- package/bootstrap-icons/type-strikethrough.js +0 -12
- package/bootstrap-icons/type-underline.d.ts +0 -5
- package/bootstrap-icons/type-underline.js +0 -12
- package/bootstrap-icons/type.d.ts +0 -5
- package/bootstrap-icons/type.js +0 -12
- package/bootstrap-icons/ui-checks-grid.d.ts +0 -5
- package/bootstrap-icons/ui-checks-grid.js +0 -12
- package/bootstrap-icons/ui-checks.d.ts +0 -5
- package/bootstrap-icons/ui-checks.js +0 -12
- package/bootstrap-icons/ui-radios-grid.d.ts +0 -5
- package/bootstrap-icons/ui-radios-grid.js +0 -12
- package/bootstrap-icons/ui-radios.d.ts +0 -5
- package/bootstrap-icons/ui-radios.js +0 -12
- package/bootstrap-icons/umbrella-fill.d.ts +0 -5
- package/bootstrap-icons/umbrella-fill.js +0 -12
- package/bootstrap-icons/umbrella.d.ts +0 -5
- package/bootstrap-icons/umbrella.js +0 -12
- package/bootstrap-icons/union.d.ts +0 -5
- package/bootstrap-icons/union.js +0 -12
- package/bootstrap-icons/unlock-fill.d.ts +0 -5
- package/bootstrap-icons/unlock-fill.js +0 -12
- package/bootstrap-icons/unlock.d.ts +0 -5
- package/bootstrap-icons/unlock.js +0 -12
- package/bootstrap-icons/upc-scan.d.ts +0 -5
- package/bootstrap-icons/upc-scan.js +0 -12
- package/bootstrap-icons/upc.d.ts +0 -5
- package/bootstrap-icons/upc.js +0 -12
- package/bootstrap-icons/upload.d.ts +0 -5
- package/bootstrap-icons/upload.js +0 -12
- package/bootstrap-icons/usb-c-fill.d.ts +0 -5
- package/bootstrap-icons/usb-c-fill.js +0 -12
- package/bootstrap-icons/usb-c.d.ts +0 -5
- package/bootstrap-icons/usb-c.js +0 -12
- package/bootstrap-icons/usb-drive-fill.d.ts +0 -5
- package/bootstrap-icons/usb-drive-fill.js +0 -12
- package/bootstrap-icons/usb-drive.d.ts +0 -5
- package/bootstrap-icons/usb-drive.js +0 -12
- package/bootstrap-icons/usb-fill.d.ts +0 -5
- package/bootstrap-icons/usb-fill.js +0 -12
- package/bootstrap-icons/usb-micro-fill.d.ts +0 -5
- package/bootstrap-icons/usb-micro-fill.js +0 -12
- package/bootstrap-icons/usb-micro.d.ts +0 -5
- package/bootstrap-icons/usb-micro.js +0 -12
- package/bootstrap-icons/usb-mini-fill.d.ts +0 -5
- package/bootstrap-icons/usb-mini-fill.js +0 -12
- package/bootstrap-icons/usb-mini.d.ts +0 -5
- package/bootstrap-icons/usb-mini.js +0 -12
- package/bootstrap-icons/usb-plug-fill.d.ts +0 -5
- package/bootstrap-icons/usb-plug-fill.js +0 -12
- package/bootstrap-icons/usb-plug.d.ts +0 -5
- package/bootstrap-icons/usb-plug.js +0 -12
- package/bootstrap-icons/usb-symbol.d.ts +0 -5
- package/bootstrap-icons/usb-symbol.js +0 -12
- package/bootstrap-icons/usb.d.ts +0 -5
- package/bootstrap-icons/usb.js +0 -12
- package/bootstrap-icons/valentine.d.ts +0 -5
- package/bootstrap-icons/valentine.js +0 -12
- package/bootstrap-icons/valentine2.d.ts +0 -5
- package/bootstrap-icons/valentine2.js +0 -12
- package/bootstrap-icons/vector-pen.d.ts +0 -5
- package/bootstrap-icons/vector-pen.js +0 -12
- package/bootstrap-icons/view-list.d.ts +0 -5
- package/bootstrap-icons/view-list.js +0 -12
- package/bootstrap-icons/view-stacked.d.ts +0 -5
- package/bootstrap-icons/view-stacked.js +0 -12
- package/bootstrap-icons/vimeo.d.ts +0 -5
- package/bootstrap-icons/vimeo.js +0 -12
- package/bootstrap-icons/vinyl-fill.d.ts +0 -5
- package/bootstrap-icons/vinyl-fill.js +0 -12
- package/bootstrap-icons/vinyl.d.ts +0 -5
- package/bootstrap-icons/vinyl.js +0 -12
- package/bootstrap-icons/voicemail.d.ts +0 -5
- package/bootstrap-icons/voicemail.js +0 -12
- package/bootstrap-icons/volume-down-fill.d.ts +0 -5
- package/bootstrap-icons/volume-down-fill.js +0 -12
- package/bootstrap-icons/volume-down.d.ts +0 -5
- package/bootstrap-icons/volume-down.js +0 -12
- package/bootstrap-icons/volume-mute-fill.d.ts +0 -5
- package/bootstrap-icons/volume-mute-fill.js +0 -12
- package/bootstrap-icons/volume-mute.d.ts +0 -5
- package/bootstrap-icons/volume-mute.js +0 -12
- package/bootstrap-icons/volume-off-fill.d.ts +0 -5
- package/bootstrap-icons/volume-off-fill.js +0 -12
- package/bootstrap-icons/volume-off.d.ts +0 -5
- package/bootstrap-icons/volume-off.js +0 -12
- package/bootstrap-icons/volume-up-fill.d.ts +0 -5
- package/bootstrap-icons/volume-up-fill.js +0 -12
- package/bootstrap-icons/volume-up.d.ts +0 -5
- package/bootstrap-icons/volume-up.js +0 -12
- package/bootstrap-icons/vr.d.ts +0 -5
- package/bootstrap-icons/vr.js +0 -12
- package/bootstrap-icons/wallet-fill.d.ts +0 -5
- package/bootstrap-icons/wallet-fill.js +0 -12
- package/bootstrap-icons/wallet.d.ts +0 -5
- package/bootstrap-icons/wallet.js +0 -12
- package/bootstrap-icons/wallet2.d.ts +0 -5
- package/bootstrap-icons/wallet2.js +0 -12
- package/bootstrap-icons/watch.d.ts +0 -5
- package/bootstrap-icons/watch.js +0 -12
- package/bootstrap-icons/water.d.ts +0 -5
- package/bootstrap-icons/water.js +0 -12
- package/bootstrap-icons/webcam-fill.d.ts +0 -5
- package/bootstrap-icons/webcam-fill.js +0 -12
- package/bootstrap-icons/webcam.d.ts +0 -5
- package/bootstrap-icons/webcam.js +0 -12
- package/bootstrap-icons/whatsapp.d.ts +0 -5
- package/bootstrap-icons/whatsapp.js +0 -12
- package/bootstrap-icons/wifi-1.d.ts +0 -5
- package/bootstrap-icons/wifi-1.js +0 -12
- package/bootstrap-icons/wifi-2.d.ts +0 -5
- package/bootstrap-icons/wifi-2.js +0 -12
- package/bootstrap-icons/wifi-off.d.ts +0 -5
- package/bootstrap-icons/wifi-off.js +0 -12
- package/bootstrap-icons/wifi.d.ts +0 -5
- package/bootstrap-icons/wifi.js +0 -12
- package/bootstrap-icons/wind.d.ts +0 -5
- package/bootstrap-icons/wind.js +0 -12
- package/bootstrap-icons/window-dash.d.ts +0 -5
- package/bootstrap-icons/window-dash.js +0 -12
- package/bootstrap-icons/window-desktop.d.ts +0 -5
- package/bootstrap-icons/window-desktop.js +0 -12
- package/bootstrap-icons/window-dock.d.ts +0 -5
- package/bootstrap-icons/window-dock.js +0 -12
- package/bootstrap-icons/window-fullscreen.d.ts +0 -5
- package/bootstrap-icons/window-fullscreen.js +0 -12
- package/bootstrap-icons/window-plus.d.ts +0 -5
- package/bootstrap-icons/window-plus.js +0 -12
- package/bootstrap-icons/window-sidebar.d.ts +0 -5
- package/bootstrap-icons/window-sidebar.js +0 -12
- package/bootstrap-icons/window-split.d.ts +0 -5
- package/bootstrap-icons/window-split.js +0 -12
- package/bootstrap-icons/window-stack.d.ts +0 -5
- package/bootstrap-icons/window-stack.js +0 -12
- package/bootstrap-icons/window-x.d.ts +0 -5
- package/bootstrap-icons/window-x.js +0 -12
- package/bootstrap-icons/window.d.ts +0 -5
- package/bootstrap-icons/window.js +0 -12
- package/bootstrap-icons/windows.d.ts +0 -5
- package/bootstrap-icons/windows.js +0 -12
- package/bootstrap-icons/wordpress.d.ts +0 -5
- package/bootstrap-icons/wordpress.js +0 -12
- package/bootstrap-icons/wrench-adjustable-circle-fill.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable-circle-fill.js +0 -12
- package/bootstrap-icons/wrench-adjustable-circle.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable-circle.js +0 -12
- package/bootstrap-icons/wrench-adjustable.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable.js +0 -12
- package/bootstrap-icons/wrench.d.ts +0 -5
- package/bootstrap-icons/wrench.js +0 -12
- package/bootstrap-icons/x-circle-fill.d.ts +0 -5
- package/bootstrap-icons/x-circle-fill.js +0 -12
- package/bootstrap-icons/x-circle.d.ts +0 -5
- package/bootstrap-icons/x-circle.js +0 -12
- package/bootstrap-icons/x-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/x-diamond-fill.js +0 -12
- package/bootstrap-icons/x-diamond.d.ts +0 -5
- package/bootstrap-icons/x-diamond.js +0 -12
- package/bootstrap-icons/x-lg.d.ts +0 -5
- package/bootstrap-icons/x-lg.js +0 -12
- package/bootstrap-icons/x-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/x-octagon-fill.js +0 -12
- package/bootstrap-icons/x-octagon.d.ts +0 -5
- package/bootstrap-icons/x-octagon.js +0 -12
- package/bootstrap-icons/x-square-fill.d.ts +0 -5
- package/bootstrap-icons/x-square-fill.js +0 -12
- package/bootstrap-icons/x-square.d.ts +0 -5
- package/bootstrap-icons/x-square.js +0 -12
- package/bootstrap-icons/x.d.ts +0 -5
- package/bootstrap-icons/x.js +0 -12
- package/bootstrap-icons/xbox.d.ts +0 -5
- package/bootstrap-icons/xbox.js +0 -12
- package/bootstrap-icons/yin-yang.d.ts +0 -5
- package/bootstrap-icons/yin-yang.js +0 -12
- package/bootstrap-icons/youtube.d.ts +0 -5
- package/bootstrap-icons/youtube.js +0 -12
- package/bootstrap-icons/zoom-in.d.ts +0 -5
- package/bootstrap-icons/zoom-in.js +0 -12
- package/bootstrap-icons/zoom-out.d.ts +0 -5
- package/bootstrap-icons/zoom-out.js +0 -12
- package/components/actions-group/action-button.d.ts +0 -8
- package/components/actions-group/action-button.js +0 -10
- package/components/actions-group/actions-group.d.ts +0 -7
- package/components/actions-group/actions-group.js +0 -11
- package/components/actions-group/index.d.ts +0 -1
- package/components/actions-group/index.js +0 -17
- package/components/alert/alert.d.ts +0 -7
- package/components/alert/alert.js +0 -24
- package/components/avatar/avatar-group.d.ts +0 -14
- package/components/avatar/avatar-group.js +0 -40
- package/components/avatar/avatar-shape.d.ts +0 -9
- package/components/avatar/avatar-shape.js +0 -49
- package/components/avatar/avatar.d.ts +0 -18
- package/components/avatar/avatar.js +0 -43
- package/components/avatar/get-avatar-size-in-pixels.d.ts +0 -3
- package/components/avatar/get-avatar-size-in-pixels.js +0 -17
- package/components/avatar/make-avatar-shape-path.d.ts +0 -9
- package/components/avatar/make-avatar-shape-path.js +0 -40
- package/components/avatar/make-initials.d.ts +0 -1
- package/components/avatar/make-initials.js +0 -17
- package/components/avatar/types.d.ts +0 -2
- package/components/box/box.d.ts +0 -28
- package/components/box/box.js +0 -9
- package/components/box/index.d.ts +0 -1
- package/components/box/index.js +0 -17
- package/components/breadcrumb/breadcrumb-link.d.ts +0 -15
- package/components/breadcrumb/breadcrumb-link.js +0 -21
- package/components/breadcrumb/breadcrumb.d.ts +0 -6
- package/components/breadcrumb/breadcrumb.js +0 -12
- package/components/breadcrumb/index.d.ts +0 -2
- package/components/breadcrumb/index.js +0 -18
- package/components/button/button.d.ts +0 -18
- package/components/button/button.js +0 -24
- package/components/button/index.d.ts +0 -1
- package/components/button/index.js +0 -17
- package/components/buttons-group/buttons-group.d.ts +0 -3
- package/components/buttons-group/buttons-group.js +0 -9
- package/components/buttons-group/index.d.ts +0 -1
- package/components/buttons-group/index.js +0 -17
- package/components/calendar/calendar-day.d.ts +0 -19
- package/components/calendar/calendar-day.js +0 -10
- package/components/calendar/calendar-header.d.ts +0 -14
- package/components/calendar/calendar-header.js +0 -13
- package/components/calendar/calendar-row.d.ts +0 -7
- package/components/calendar/calendar-row.js +0 -9
- package/components/calendar/calendar.d.ts +0 -16
- package/components/calendar/calendar.js +0 -82
- package/components/calendar/index.d.ts +0 -1
- package/components/calendar/index.js +0 -17
- package/components/checkbox/checkbox.d.ts +0 -8
- package/components/checkbox/checkbox.js +0 -17
- package/components/date-picker/date-picker.d.ts +0 -15
- package/components/date-picker/date-picker.js +0 -55
- package/components/date-picker/index.d.ts +0 -2
- package/components/date-picker/index.js +0 -18
- package/components/date-picker-popover/date-picker-popover.d.ts +0 -13
- package/components/date-picker-popover/date-picker-popover.js +0 -17
- package/components/date-preset-picker-popover/date-preset-picker-popover.d.ts +0 -34
- package/components/date-preset-picker-popover/date-preset-picker-popover.js +0 -94
- package/components/date-preset-picker-popover/date-preset-picker.d.ts +0 -23
- package/components/date-preset-picker-popover/date-preset-picker.js +0 -26
- package/components/date-preset-picker-popover/date-preset-select.d.ts +0 -16
- package/components/date-preset-picker-popover/date-preset-select.js +0 -10
- package/components/date-preset-picker-popover/index.d.ts +0 -1
- package/components/date-preset-picker-popover/index.js +0 -17
- package/components/date-range-picker/date-range-picker.d.ts +0 -13
- package/components/date-range-picker/date-range-picker.js +0 -103
- package/components/date-range-picker/index.d.ts +0 -1
- package/components/date-range-picker/index.js +0 -17
- package/components/datetime-input/date-component-input.d.ts +0 -14
- package/components/datetime-input/date-component-input.js +0 -9
- package/components/datetime-input/date-components.d.ts +0 -28
- package/components/datetime-input/date-components.js +0 -103
- package/components/datetime-input/datetime-input.d.ts +0 -22
- package/components/datetime-input/datetime-input.js +0 -173
- package/components/datetime-input/index.d.ts +0 -2
- package/components/datetime-input/index.js +0 -18
- package/components/dialog/dialog.d.ts +0 -19
- package/components/dialog/dialog.js +0 -62
- package/components/dialog/index.d.ts +0 -1
- package/components/dialog/index.js +0 -17
- package/components/file-input/file-input-button.d.ts +0 -3
- package/components/file-input/file-input-button.js +0 -10
- package/components/file-input/file-input-context.d.ts +0 -12
- package/components/file-input/file-input-context.js +0 -20
- package/components/file-input/file-input.d.ts +0 -16
- package/components/file-input/file-input.js +0 -54
- package/components/file-input/index.d.ts +0 -2
- package/components/file-input/index.js +0 -18
- package/components/form-field/form-field.d.ts +0 -17
- package/components/form-field/form-field.js +0 -31
- package/components/formatted-content/formatted-content.d.ts +0 -55
- package/components/formatted-content/formatted-content.js +0 -67
- package/components/formatted-content/index.d.ts +0 -1
- package/components/formatted-content/index.js +0 -17
- package/components/index.d.ts +0 -46
- package/components/index.js +0 -62
- package/components/inline-message/index.d.ts +0 -1
- package/components/inline-message/index.js +0 -17
- package/components/inline-message/inline-message.d.ts +0 -6
- package/components/inline-message/inline-message.js +0 -23
- package/components/label/label.d.ts +0 -5
- package/components/label/label.js +0 -10
- package/components/loading-view/index.d.ts +0 -1
- package/components/loading-view/index.js +0 -17
- package/components/loading-view/loading-view.d.ts +0 -8
- package/components/loading-view/loading-view.js +0 -10
- package/components/menu/index.d.ts +0 -3
- package/components/menu/index.js +0 -19
- package/components/menu/menu-button.d.ts +0 -7
- package/components/menu/menu-button.js +0 -9
- package/components/menu/menu-divider.d.ts +0 -2
- package/components/menu/menu-divider.js +0 -9
- package/components/menu/menu.d.ts +0 -25
- package/components/menu/menu.js +0 -123
- package/components/non-ideal-state-view/index.d.ts +0 -1
- package/components/non-ideal-state-view/index.js +0 -17
- package/components/non-ideal-state-view/non-ideal-state-view.d.ts +0 -9
- package/components/non-ideal-state-view/non-ideal-state-view.js +0 -40
- package/components/number-input/index.d.ts +0 -1
- package/components/number-input/index.js +0 -17
- package/components/number-input/number-input.d.ts +0 -13
- package/components/number-input/number-input.js +0 -94
- package/components/password-input/password-input.d.ts +0 -9
- package/components/password-input/password-input.js +0 -22
- package/components/popover/popover.d.ts +0 -53
- package/components/popover/popover.js +0 -99
- package/components/popover/use-body-click.d.ts +0 -12
- package/components/popover/use-body-click.js +0 -49
- package/components/portal/portal.d.ts +0 -5
- package/components/portal/portal.js +0 -15
- package/components/positioner/get-position.d.ts +0 -32
- package/components/positioner/get-position.js +0 -117
- package/components/positioner/positioner.d.ts +0 -16
- package/components/positioner/positioner.js +0 -65
- package/components/positioner/types.d.ts +0 -14
- package/components/radio-button/index.d.ts +0 -1
- package/components/radio-button/index.js +0 -17
- package/components/radio-button/radio-button.d.ts +0 -7
- package/components/radio-button/radio-button.js +0 -14
- package/components/radio-group/index.d.ts +0 -2
- package/components/radio-group/index.js +0 -18
- package/components/radio-group/radio-group-item.d.ts +0 -7
- package/components/radio-group/radio-group-item.js +0 -11
- package/components/radio-group/radio-group.d.ts +0 -15
- package/components/radio-group/radio-group.js +0 -22
- package/components/scope-buttons/index.d.ts +0 -1
- package/components/scope-buttons/index.js +0 -17
- package/components/scope-buttons/scope-button.d.ts +0 -6
- package/components/scope-buttons/scope-button.js +0 -10
- package/components/scope-buttons/scope-buttons.d.ts +0 -6
- package/components/scope-buttons/scope-buttons.js +0 -26
- package/components/search-input/index.d.ts +0 -1
- package/components/search-input/index.js +0 -17
- package/components/search-input/search-input.d.ts +0 -4
- package/components/search-input/search-input.js +0 -17
- package/components/secret/index.d.ts +0 -1
- package/components/secret/index.js +0 -17
- package/components/secret/secret.d.ts +0 -8
- package/components/secret/secret.js +0 -18
- package/components/segmented-control/segmented-control.d.ts +0 -15
- package/components/segmented-control/segmented-control.js +0 -60
- package/components/select/select.d.ts +0 -8
- package/components/select/select.js +0 -17
- package/components/selection-control/selection-control.d.ts +0 -11
- package/components/selection-control/selection-control.js +0 -11
- package/components/slider/index.d.ts +0 -1
- package/components/slider/index.js +0 -17
- package/components/slider/slider.d.ts +0 -12
- package/components/slider/slider.js +0 -34
- package/components/spinner/index.d.ts +0 -2
- package/components/spinner/index.js +0 -6
- package/components/spinner/spinner.d.ts +0 -6
- package/components/spinner/spinner.js +0 -9
- package/components/svg-icon/index.d.ts +0 -1
- package/components/svg-icon/index.js +0 -17
- package/components/svg-icon/svg-icon.d.ts +0 -18
- package/components/svg-icon/svg-icon.js +0 -49
- package/components/switch/switch.d.ts +0 -3
- package/components/switch/switch.js +0 -14
- package/components/table/index.d.ts +0 -7
- package/components/table/index.js +0 -23
- package/components/table/table-body.d.ts +0 -5
- package/components/table/table-body.js +0 -9
- package/components/table/table-cell.d.ts +0 -5
- package/components/table/table-cell.js +0 -9
- package/components/table/table-container.d.ts +0 -5
- package/components/table/table-container.js +0 -25
- package/components/table/table-head.d.ts +0 -5
- package/components/table/table-head.js +0 -9
- package/components/table/table-header-cell.d.ts +0 -9
- package/components/table/table-header-cell.js +0 -15
- package/components/table/table-row.d.ts +0 -5
- package/components/table/table-row.js +0 -9
- package/components/table/table-sort-button.d.ts +0 -10
- package/components/table/table-sort-button.js +0 -52
- package/components/table/table.d.ts +0 -10
- package/components/table/table.js +0 -16
- package/components/tabs/index.d.ts +0 -1
- package/components/tabs/index.js +0 -17
- package/components/tabs/tab-list.d.ts +0 -3
- package/components/tabs/tab-list.js +0 -50
- package/components/tabs/tab-panel.d.ts +0 -6
- package/components/tabs/tab-panel.js +0 -14
- package/components/tabs/tab.d.ts +0 -7
- package/components/tabs/tab.js +0 -21
- package/components/tabs/tabs-state.d.ts +0 -20
- package/components/tabs/tabs-state.js +0 -63
- package/components/tabs/tabs.d.ts +0 -14
- package/components/tabs/tabs.js +0 -16
- package/components/tag/tag.d.ts +0 -12
- package/components/tag/tag.js +0 -20
- package/components/text-input/text-input.d.ts +0 -12
- package/components/text-input/text-input.js +0 -39
- package/components/textarea/textarea.d.ts +0 -8
- package/components/textarea/textarea.js +0 -17
- package/components/toast/index.d.ts +0 -1
- package/components/toast/index.js +0 -17
- package/components/toast/toast-button.d.ts +0 -5
- package/components/toast/toast-button.js +0 -9
- package/components/toast/toast.d.ts +0 -17
- package/components/toast/toast.js +0 -28
- package/components/toaster/toaster.d.ts +0 -17
- package/components/toaster/toaster.js +0 -77
- package/components/toaster/use-toasts.d.ts +0 -22
- package/components/toaster/use-toasts.js +0 -41
- package/components/tooltip/tooltip.d.ts +0 -17
- package/components/tooltip/tooltip.js +0 -60
- package/components/vertical-navigation/index.d.ts +0 -2
- package/components/vertical-navigation/index.js +0 -18
- package/components/vertical-navigation/vertical-navigation-item.d.ts +0 -16
- package/components/vertical-navigation/vertical-navigation-item.js +0 -20
- package/components/vertical-navigation/vertical-navigation.d.ts +0 -10
- package/components/vertical-navigation/vertical-navigation.js +0 -14
- package/css/draft-components-utils.css +0 -1
- package/hooks/index.d.ts +0 -6
- package/hooks/index.js +0 -22
- package/hooks/use-close-animation.d.ts +0 -13
- package/hooks/use-close-animation.js +0 -42
- package/hooks/use-disable-body-scroll.d.ts +0 -1
- package/hooks/use-disable-body-scroll.js +0 -34
- package/hooks/use-esc-key-down.d.ts +0 -3
- package/hooks/use-esc-key-down.js +0 -38
- package/hooks/use-focus-trap.d.ts +0 -2
- package/hooks/use-focus-trap.js +0 -76
- package/hooks/use-is-first-render.d.ts +0 -1
- package/hooks/use-is-first-render.js +0 -13
- package/hooks/use-is-mounted.d.ts +0 -2
- package/hooks/use-is-mounted.js +0 -15
- package/lib/guards.d.ts +0 -2
- package/lib/guards.js +0 -12
- package/lib/index.d.ts +0 -7
- package/lib/index.js +0 -36
- package/lib/keyboard-helpers.d.ts +0 -22
- package/lib/keyboard-helpers.js +0 -26
- package/lib/plain-date-range.d.ts +0 -15
- package/lib/plain-date-range.js +0 -35
- package/lib/plain-date.d.ts +0 -38
- package/lib/plain-date.js +0 -103
- package/lib/react-helpers.d.ts +0 -9
- package/lib/react-helpers.js +0 -42
- package/lib/stack.d.ts +0 -11
- package/lib/stack.js +0 -34
- package/lib/util.d.ts +0 -5
- package/lib/util.js +0 -41
- package/scss/abstracts/_functions.scss +0 -82
- package/scss/abstracts/_index.scss +0 -3
- package/scss/abstracts/_mixins.scss +0 -23
- package/scss/abstracts/_variables.scss +0 -229
- package/scss/base/_animations.scss +0 -8
- package/scss/base/_index.scss +0 -2
- package/scss/base/_normalize.scss +0 -351
- package/scss/components/_actions-group.scss +0 -20
- package/scss/components/_alert.scss +0 -95
- package/scss/components/_avatar.scss +0 -124
- package/scss/components/_box.scss +0 -277
- package/scss/components/_breadcrumb.scss +0 -55
- package/scss/components/_button.scss +0 -200
- package/scss/components/_buttons-group.scss +0 -25
- package/scss/components/_calendar.scss +0 -185
- package/scss/components/_checkbox.scss +0 -59
- package/scss/components/_date-picker.scss +0 -11
- package/scss/components/_date-preset-picker-popover.scss +0 -78
- package/scss/components/_datetime-input.scss +0 -94
- package/scss/components/_dialog.scss +0 -114
- package/scss/components/_file-input.scss +0 -94
- package/scss/components/_form-field.scss +0 -21
- package/scss/components/_formatted-content.scss +0 -171
- package/scss/components/_index.scss +0 -45
- package/scss/components/_inline-message.scss +0 -30
- package/scss/components/_input.scss +0 -74
- package/scss/components/_label.scss +0 -14
- package/scss/components/_loading-view.scss +0 -58
- package/scss/components/_menu.scss +0 -43
- package/scss/components/_non-ideal-state-view.scss +0 -93
- package/scss/components/_number-input.scss +0 -19
- package/scss/components/_password-input.scss +0 -9
- package/scss/components/_popover.scss +0 -70
- package/scss/components/_portal.scss +0 -3
- package/scss/components/_radio-button.scss +0 -62
- package/scss/components/_radio-group.scss +0 -96
- package/scss/components/_scope-buttons.scss +0 -49
- package/scss/components/_secret.scss +0 -32
- package/scss/components/_segmented-control.scss +0 -33
- package/scss/components/_select.scss +0 -36
- package/scss/components/_selection-control.scss +0 -46
- package/scss/components/_slider.scss +0 -130
- package/scss/components/_spinner.scss +0 -6
- package/scss/components/_svg-icon.scss +0 -8
- package/scss/components/_switch.scss +0 -62
- package/scss/components/_table.scss +0 -180
- package/scss/components/_tabs.scss +0 -80
- package/scss/components/_tag.scss +0 -117
- package/scss/components/_text-input.scss +0 -58
- package/scss/components/_textarea.scss +0 -10
- package/scss/components/_toast.scss +0 -104
- package/scss/components/_toaster.scss +0 -87
- package/scss/components/_tooltip.scss +0 -29
- package/scss/components/_vertical-navigation.scss +0 -73
- package/scss/draft-components-utils.scss +0 -8
- package/scss/draft-components.scss +0 -3
- package/scss/themes/_default-theme.scss +0 -294
- package/scss/utils/_border.scss +0 -85
- package/scss/utils/_box-model.scss +0 -36
- package/scss/utils/_color.scss +0 -601
- package/scss/utils/_flexbox.scss +0 -169
- package/scss/utils/_gap.scss +0 -23
- package/scss/utils/_margin.scss +0 -50
- package/scss/utils/_padding.scss +0 -49
- package/scss/utils/_typography.scss +0 -120
package/bootstrap-icons/code.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.code = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/code.svg
|
|
6
|
-
exports.code = {
|
|
7
|
-
name: 'code',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M5.854 4.854a.5.5 0 1 0-.708-.708l-3.5 3.5a.5.5 0 0 0 0 .708l3.5 3.5a.5.5 0 0 0 .708-.708L2.707 8l3.147-3.146zm4.292 0a.5.5 0 0 1 .708-.708l3.5 3.5a.5.5 0 0 1 0 .708l-3.5 3.5a.5.5 0 0 1-.708-.708L13.293 8l-3.147-3.146z" })),
|
|
12
|
-
};
|
package/bootstrap-icons/coin.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.coin = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/coin.svg
|
|
6
|
-
exports.coin = {
|
|
7
|
-
name: 'coin',
|
|
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.5 9.511c.076.954.83 1.697 2.182 1.785V12h.6v-.709c1.4-.098 2.218-.846 2.218-1.932 0-.987-.626-1.496-1.745-1.76l-.473-.112V5.57c.6.068.982.396 1.074.85h1.052c-.076-.919-.864-1.638-2.126-1.716V4h-.6v.719c-1.195.117-2.01.836-2.01 1.853 0 .9.606 1.472 1.613 1.707l.397.098v2.034c-.615-.093-1.022-.43-1.114-.9H5.5zm2.177-2.166c-.59-.137-.91-.416-.91-.836 0-.47.345-.822.915-.925v1.76h-.005zm.692 1.193c.717.166 1.048.435 1.048.91 0 .542-.412.914-1.135.982V8.518l.087.02z" }), (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: "M8 13.5a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11zm0 .5A6 6 0 1 0 8 2a6 6 0 0 0 0 12z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.collectionFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/collection-fill.svg
|
|
6
|
-
exports.collectionFill = {
|
|
7
|
-
name: 'collection-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M0 13a1.5 1.5 0 0 0 1.5 1.5h13A1.5 1.5 0 0 0 16 13V6a1.5 1.5 0 0 0-1.5-1.5h-13A1.5 1.5 0 0 0 0 6v7zM2 3a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 0-1h-11A.5.5 0 0 0 2 3zm2-2a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7A.5.5 0 0 0 4 1z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.collectionPlayFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/collection-play-fill.svg
|
|
6
|
-
exports.collectionPlayFill = {
|
|
7
|
-
name: 'collection-play-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M2.5 3.5a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1h-11zm2-2a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1h-7zM0 13a1.5 1.5 0 0 0 1.5 1.5h13A1.5 1.5 0 0 0 16 13V6a1.5 1.5 0 0 0-1.5-1.5h-13A1.5 1.5 0 0 0 0 6v7zm6.258-6.437a.5.5 0 0 1 .507.013l4 2.5a.5.5 0 0 1 0 .848l-4 2.5A.5.5 0 0 1 6 12V7a.5.5 0 0 1 .258-.437z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.collectionPlay = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/collection-play.svg
|
|
6
|
-
exports.collectionPlay = {
|
|
7
|
-
name: 'collection-play',
|
|
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 3a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 0-1h-11A.5.5 0 0 0 2 3zm2-2a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7A.5.5 0 0 0 4 1zm2.765 5.576A.5.5 0 0 0 6 7v5a.5.5 0 0 0 .765.424l4-2.5a.5.5 0 0 0 0-.848l-4-2.5z" }), (0, jsx_runtime_1.jsx)("path", { d: "M1.5 14.5A1.5 1.5 0 0 1 0 13V6a1.5 1.5 0 0 1 1.5-1.5h13A1.5 1.5 0 0 1 16 6v7a1.5 1.5 0 0 1-1.5 1.5h-13zm13-1a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5h-13A.5.5 0 0 0 1 6v7a.5.5 0 0 0 .5.5h13z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.collection = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/collection.svg
|
|
6
|
-
exports.collection = {
|
|
7
|
-
name: 'collection',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M2.5 3.5a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1h-11zm2-2a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1h-7zM0 13a1.5 1.5 0 0 0 1.5 1.5h13A1.5 1.5 0 0 0 16 13V6a1.5 1.5 0 0 0-1.5-1.5h-13A1.5 1.5 0 0 0 0 6v7zm1.5.5A.5.5 0 0 1 1 13V6a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-13z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.columnsGap = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/columns-gap.svg
|
|
6
|
-
exports.columnsGap = {
|
|
7
|
-
name: 'columns-gap',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M6 1v3H1V1h5zM1 0a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1H1zm14 12v3h-5v-3h5zm-5-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-5zM6 8v7H1V8h5zM1 7a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H1zm14-6v7h-5V1h5zm-5-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1h-5z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.columns = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/columns.svg
|
|
6
|
-
exports.columns = {
|
|
7
|
-
name: 'columns',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V2zm8.5 0v8H15V2H8.5zm0 9v3H15v-3H8.5zm-1-9H1v3h6.5V2zM1 14h6.5V6H1v8z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.command = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/command.svg
|
|
6
|
-
exports.command = {
|
|
7
|
-
name: 'command',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M3.5 2A1.5 1.5 0 0 1 5 3.5V5H3.5a1.5 1.5 0 1 1 0-3zM6 5V3.5A2.5 2.5 0 1 0 3.5 6H5v4H3.5A2.5 2.5 0 1 0 6 12.5V11h4v1.5a2.5 2.5 0 1 0 2.5-2.5H11V6h1.5A2.5 2.5 0 1 0 10 3.5V5H6zm4 1v4H6V6h4zm1-1V3.5A1.5 1.5 0 1 1 12.5 5H11zm0 6h1.5a1.5 1.5 0 1 1-1.5 1.5V11zm-6 0v1.5A1.5 1.5 0 1 1 3.5 11H5z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.compassFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/compass-fill.svg
|
|
6
|
-
exports.compassFill = {
|
|
7
|
-
name: 'compass-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M15.5 8.516a7.5 7.5 0 1 1-9.462-7.24A1 1 0 0 1 7 0h2a1 1 0 0 1 .962 1.276 7.503 7.503 0 0 1 5.538 7.24zm-3.61-3.905L6.94 7.439 4.11 12.39l4.95-2.828 2.828-4.95z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.compass = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/compass.svg
|
|
6
|
-
exports.compass = {
|
|
7
|
-
name: 'compass',
|
|
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 16.016a7.5 7.5 0 0 0 1.962-14.74A1 1 0 0 0 9 0H7a1 1 0 0 0-.962 1.276A7.5 7.5 0 0 0 8 16.016zm6.5-7.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0z" }), (0, jsx_runtime_1.jsx)("path", { d: "m6.94 7.44 4.95-2.83-2.83 4.95-4.949 2.83 2.828-4.95z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.coneStriped = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/cone-striped.svg
|
|
6
|
-
exports.coneStriped = {
|
|
7
|
-
name: 'cone-striped',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "m9.97 4.88.953 3.811C10.159 8.878 9.14 9 8 9c-1.14 0-2.158-.122-2.923-.309L6.03 4.88C6.635 4.957 7.3 5 8 5s1.365-.043 1.97-.12zm-.245-.978L8.97.88C8.718-.13 7.282-.13 7.03.88L6.275 3.9C6.8 3.965 7.382 4 8 4c.618 0 1.2-.036 1.725-.098zm4.396 8.613a.5.5 0 0 1 .037.96l-6 2a.5.5 0 0 1-.316 0l-6-2a.5.5 0 0 1 .037-.96l2.391-.598.565-2.257c.862.212 1.964.339 3.165.339s2.303-.127 3.165-.339l.565 2.257 2.391.598z" })),
|
|
12
|
-
};
|
package/bootstrap-icons/cone.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.cone = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/cone.svg
|
|
6
|
-
exports.cone = {
|
|
7
|
-
name: 'cone',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M7.03 1.88c.252-1.01 1.688-1.01 1.94 0l2.905 11.62H14a.5.5 0 0 1 0 1H2a.5.5 0 0 1 0-1h2.125L7.03 1.88z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.controller = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/controller.svg
|
|
6
|
-
exports.controller = {
|
|
7
|
-
name: 'controller',
|
|
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.5 6.027a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm-1.5 1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm-1.5 1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zm-6.5-3h1v1h1v1h-1v1h-1v-1h-1v-1h1v-1z" }), (0, jsx_runtime_1.jsx)("path", { d: "M3.051 3.26a.5.5 0 0 1 .354-.613l1.932-.518a.5.5 0 0 1 .62.39c.655-.079 1.35-.117 2.043-.117.72 0 1.443.041 2.12.126a.5.5 0 0 1 .622-.399l1.932.518a.5.5 0 0 1 .306.729c.14.09.266.19.373.297.408.408.78 1.05 1.095 1.772.32.733.599 1.591.805 2.466.206.875.34 1.78.364 2.606.024.816-.059 1.602-.328 2.21a1.42 1.42 0 0 1-1.445.83c-.636-.067-1.115-.394-1.513-.773-.245-.232-.496-.526-.739-.808-.126-.148-.25-.292-.368-.423-.728-.804-1.597-1.527-3.224-1.527-1.627 0-2.496.723-3.224 1.527-.119.131-.242.275-.368.423-.243.282-.494.575-.739.808-.398.38-.877.706-1.513.773a1.42 1.42 0 0 1-1.445-.83c-.27-.608-.352-1.395-.329-2.21.024-.826.16-1.73.365-2.606.206-.875.486-1.733.805-2.466.315-.722.687-1.364 1.094-1.772a2.34 2.34 0 0 1 .433-.335.504.504 0 0 1-.028-.079zm2.036.412c-.877.185-1.469.443-1.733.708-.276.276-.587.783-.885 1.465a13.748 13.748 0 0 0-.748 2.295 12.351 12.351 0 0 0-.339 2.406c-.022.755.062 1.368.243 1.776a.42.42 0 0 0 .426.24c.327-.034.61-.199.929-.502.212-.202.4-.423.615-.674.133-.156.276-.323.44-.504C4.861 9.969 5.978 9.027 8 9.027s3.139.942 3.965 1.855c.164.181.307.348.44.504.214.251.403.472.615.674.318.303.601.468.929.503a.42.42 0 0 0 .426-.241c.18-.408.265-1.02.243-1.776a12.354 12.354 0 0 0-.339-2.406 13.753 13.753 0 0 0-.748-2.295c-.298-.682-.61-1.19-.885-1.465-.264-.265-.856-.523-1.733-.708-.85-.179-1.877-.27-2.913-.27-1.036 0-2.063.091-2.913.27z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.cpuFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/cpu-fill.svg
|
|
6
|
-
exports.cpuFill = {
|
|
7
|
-
name: 'cpu-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: "M6.5 6a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3z" }), (0, jsx_runtime_1.jsx)("path", { d: "M5.5.5a.5.5 0 0 0-1 0V2A2.5 2.5 0 0 0 2 4.5H.5a.5.5 0 0 0 0 1H2v1H.5a.5.5 0 0 0 0 1H2v1H.5a.5.5 0 0 0 0 1H2v1H.5a.5.5 0 0 0 0 1H2A2.5 2.5 0 0 0 4.5 14v1.5a.5.5 0 0 0 1 0V14h1v1.5a.5.5 0 0 0 1 0V14h1v1.5a.5.5 0 0 0 1 0V14h1v1.5a.5.5 0 0 0 1 0V14a2.5 2.5 0 0 0 2.5-2.5h1.5a.5.5 0 0 0 0-1H14v-1h1.5a.5.5 0 0 0 0-1H14v-1h1.5a.5.5 0 0 0 0-1H14v-1h1.5a.5.5 0 0 0 0-1H14A2.5 2.5 0 0 0 11.5 2V.5a.5.5 0 0 0-1 0V2h-1V.5a.5.5 0 0 0-1 0V2h-1V.5a.5.5 0 0 0-1 0V2h-1V.5zm1 4.5h3A1.5 1.5 0 0 1 11 6.5v3A1.5 1.5 0 0 1 9.5 11h-3A1.5 1.5 0 0 1 5 9.5v-3A1.5 1.5 0 0 1 6.5 5z" })] })),
|
|
12
|
-
};
|
package/bootstrap-icons/cpu.d.ts
DELETED
package/bootstrap-icons/cpu.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.cpu = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/cpu.svg
|
|
6
|
-
exports.cpu = {
|
|
7
|
-
name: 'cpu',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M5 0a.5.5 0 0 1 .5.5V2h1V.5a.5.5 0 0 1 1 0V2h1V.5a.5.5 0 0 1 1 0V2h1V.5a.5.5 0 0 1 1 0V2A2.5 2.5 0 0 1 14 4.5h1.5a.5.5 0 0 1 0 1H14v1h1.5a.5.5 0 0 1 0 1H14v1h1.5a.5.5 0 0 1 0 1H14v1h1.5a.5.5 0 0 1 0 1H14a2.5 2.5 0 0 1-2.5 2.5v1.5a.5.5 0 0 1-1 0V14h-1v1.5a.5.5 0 0 1-1 0V14h-1v1.5a.5.5 0 0 1-1 0V14h-1v1.5a.5.5 0 0 1-1 0V14A2.5 2.5 0 0 1 2 11.5H.5a.5.5 0 0 1 0-1H2v-1H.5a.5.5 0 0 1 0-1H2v-1H.5a.5.5 0 0 1 0-1H2v-1H.5a.5.5 0 0 1 0-1H2A2.5 2.5 0 0 1 4.5 2V.5A.5.5 0 0 1 5 0zm-.5 3A1.5 1.5 0 0 0 3 4.5v7A1.5 1.5 0 0 0 4.5 13h7a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 11.5 3h-7zM5 6.5A1.5 1.5 0 0 1 6.5 5h3A1.5 1.5 0 0 1 11 6.5v3A1.5 1.5 0 0 1 9.5 11h-3A1.5 1.5 0 0 1 5 9.5v-3zM6.5 6a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.creditCard2BackFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/credit-card-2-back-fill.svg
|
|
6
|
-
exports.creditCard2BackFill = {
|
|
7
|
-
name: 'credit-card-2-back-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5H0V4zm11.5 1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-2zM0 11v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-1H0z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.creditCard2Back = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/credit-card-2-back.svg
|
|
6
|
-
exports.creditCard2Back = {
|
|
7
|
-
name: 'credit-card-2-back',
|
|
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 5.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1z" }), (0, jsx_runtime_1.jsx)("path", { d: "M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2zm13 2v5H1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1zm-1 9H2a1 1 0 0 1-1-1v-1h14v1a1 1 0 0 1-1 1z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.creditCard2FrontFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/credit-card-2-front-fill.svg
|
|
6
|
-
exports.creditCard2FrontFill = {
|
|
7
|
-
name: 'credit-card-2-front-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((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-2V4zm2.5 1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-2zm0 3a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.creditCard2Front = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/credit-card-2-front.svg
|
|
6
|
-
exports.creditCard2Front = {
|
|
7
|
-
name: 'credit-card-2-front',
|
|
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: "M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z" }), (0, jsx_runtime_1.jsx)("path", { d: "M2 5.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1zm0 3a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.creditCardFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/credit-card-fill.svg
|
|
6
|
-
exports.creditCardFill = {
|
|
7
|
-
name: 'credit-card-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1H0V4zm0 3v5a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7H0zm3 2h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.creditCard = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/credit-card.svg
|
|
6
|
-
exports.creditCard = {
|
|
7
|
-
name: 'credit-card',
|
|
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: "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-2V4zm2-1a1 1 0 0 0-1 1v1h14V4a1 1 0 0 0-1-1H2zm13 4H1v5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V7z" }), (0, jsx_runtime_1.jsx)("path", { d: "M2 10a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-1z" })] })),
|
|
12
|
-
};
|
package/bootstrap-icons/crop.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.crop = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/crop.svg
|
|
6
|
-
exports.crop = {
|
|
7
|
-
name: 'crop',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M3.5.5A.5.5 0 0 1 4 1v13h13a.5.5 0 0 1 0 1h-2v2a.5.5 0 0 1-1 0v-2H3.5a.5.5 0 0 1-.5-.5V4H1a.5.5 0 0 1 0-1h2V1a.5.5 0 0 1 .5-.5zm2.5 3a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V4H6.5a.5.5 0 0 1-.5-.5z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.cupFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/cup-fill.svg
|
|
6
|
-
exports.cupFill = {
|
|
7
|
-
name: 'cup-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M1 2a1 1 0 0 1 1-1h11a1 1 0 0 1 1 1v1h.5A1.5 1.5 0 0 1 16 4.5v7a1.5 1.5 0 0 1-1.5 1.5h-.55a2.5 2.5 0 0 1-2.45 2h-8A2.5 2.5 0 0 1 1 12.5V2zm13 10h.5a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5H14v8z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.cupStraw = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/cup-straw.svg
|
|
6
|
-
exports.cupStraw = {
|
|
7
|
-
name: 'cup-straw',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M13.902.334a.5.5 0 0 1-.28.65l-2.254.902-.4 1.927c.376.095.715.215.972.367.228.135.56.396.56.82 0 .046-.004.09-.011.132l-.962 9.068a1.28 1.28 0 0 1-.524.93c-.488.34-1.494.87-3.01.87-1.516 0-2.522-.53-3.01-.87a1.28 1.28 0 0 1-.524-.93L3.51 5.132A.78.78 0 0 1 3.5 5c0-.424.332-.685.56-.82.262-.154.607-.276.99-.372C5.824 3.614 6.867 3.5 8 3.5c.712 0 1.389.045 1.985.127l.464-2.215a.5.5 0 0 1 .303-.356l2.5-1a.5.5 0 0 1 .65.278zM9.768 4.607A13.991 13.991 0 0 0 8 4.5c-1.076 0-2.033.11-2.707.278A3.284 3.284 0 0 0 4.645 5c.146.073.362.15.648.222C5.967 5.39 6.924 5.5 8 5.5c.571 0 1.109-.03 1.588-.085l.18-.808zm.292 1.756C9.445 6.45 8.742 6.5 8 6.5c-1.133 0-2.176-.114-2.95-.308a5.514 5.514 0 0 1-.435-.127l.838 8.03c.013.121.06.186.102.215.357.249 1.168.69 2.438.69 1.27 0 2.081-.441 2.438-.69.042-.029.09-.094.102-.215l.852-8.03a5.517 5.517 0 0 1-.435.127 8.88 8.88 0 0 1-.89.17zM4.467 4.884s.003.002.005.006l-.005-.006zm7.066 0-.005.006c.002-.004.005-.006.005-.006zM11.354 5a3.174 3.174 0 0 0-.604-.21l-.099.445.055-.013c.286-.072.502-.149.648-.222z" })),
|
|
12
|
-
};
|
package/bootstrap-icons/cup.d.ts
DELETED
package/bootstrap-icons/cup.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.cup = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/cup.svg
|
|
6
|
-
exports.cup = {
|
|
7
|
-
name: 'cup',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M1 2a1 1 0 0 1 1-1h11a1 1 0 0 1 1 1v1h.5A1.5 1.5 0 0 1 16 4.5v7a1.5 1.5 0 0 1-1.5 1.5h-.55a2.5 2.5 0 0 1-2.45 2h-8A2.5 2.5 0 0 1 1 12.5V2zm13 10h.5a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5H14v8zM13 2H2v10.5A1.5 1.5 0 0 0 3.5 14h8a1.5 1.5 0 0 0 1.5-1.5V2z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.currencyBitcoin = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/currency-bitcoin.svg
|
|
6
|
-
exports.currencyBitcoin = {
|
|
7
|
-
name: 'currency-bitcoin',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M5.5 13v1.25c0 .138.112.25.25.25h1a.25.25 0 0 0 .25-.25V13h.5v1.25c0 .138.112.25.25.25h1a.25.25 0 0 0 .25-.25V13h.084c1.992 0 3.416-1.033 3.416-2.82 0-1.502-1.007-2.323-2.186-2.44v-.088c.97-.242 1.683-.974 1.683-2.19C11.997 3.93 10.847 3 9.092 3H9V1.75a.25.25 0 0 0-.25-.25h-1a.25.25 0 0 0-.25.25V3h-.573V1.75a.25.25 0 0 0-.25-.25H5.75a.25.25 0 0 0-.25.25V3l-1.998.011a.25.25 0 0 0-.25.25v.989c0 .137.11.25.248.25l.755-.005a.75.75 0 0 1 .745.75v5.505a.75.75 0 0 1-.75.75l-.748.011a.25.25 0 0 0-.25.25v1c0 .138.112.25.25.25L5.5 13zm1.427-8.513h1.719c.906 0 1.438.498 1.438 1.312 0 .871-.575 1.362-1.877 1.362h-1.28V4.487zm0 4.051h1.84c1.137 0 1.756.58 1.756 1.524 0 .953-.626 1.45-2.158 1.45H6.927V8.539z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.currencyDollar = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/currency-dollar.svg
|
|
6
|
-
exports.currencyDollar = {
|
|
7
|
-
name: 'currency-dollar',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M4 10.781c.148 1.667 1.513 2.85 3.591 3.003V15h1.043v-1.216c2.27-.179 3.678-1.438 3.678-3.3 0-1.59-.947-2.51-2.956-3.028l-.722-.187V3.467c1.122.11 1.879.714 2.07 1.616h1.47c-.166-1.6-1.54-2.748-3.54-2.875V1H7.591v1.233c-1.939.23-3.27 1.472-3.27 3.156 0 1.454.966 2.483 2.661 2.917l.61.162v4.031c-1.149-.17-1.94-.8-2.131-1.718H4zm3.391-3.836c-1.043-.263-1.6-.825-1.6-1.616 0-.944.704-1.641 1.8-1.828v3.495l-.2-.05zm1.591 1.872c1.287.323 1.852.859 1.852 1.769 0 1.097-.826 1.828-2.2 1.939V8.73l.348.086z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.currencyEuro = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/currency-euro.svg
|
|
6
|
-
exports.currencyEuro = {
|
|
7
|
-
name: 'currency-euro',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M4 9.42h1.063C5.4 12.323 7.317 14 10.34 14c.622 0 1.167-.068 1.659-.185v-1.3c-.484.119-1.045.17-1.659.17-2.1 0-3.455-1.198-3.775-3.264h4.017v-.928H6.497v-.936c0-.11 0-.219.008-.329h4.078v-.927H6.618c.388-1.898 1.719-2.985 3.723-2.985.614 0 1.175.05 1.659.177V2.194A6.617 6.617 0 0 0 10.341 2c-2.928 0-4.82 1.569-5.244 4.3H4v.928h1.01v1.265H4v.928z" })),
|
|
12
|
-
};
|