draft-components 0.75.3 → 1.0.0-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 -55
- 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 -58
- 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 -39
- 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 -58
- 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
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { useEffect } from 'react';
|
|
2
|
+
import { focusElement } from '../shared/react-helpers';
|
|
3
|
+
import { KeyboardKeys } from '../shared/keyboard-keys';
|
|
4
|
+
const modals = [];
|
|
5
|
+
const focusableElementsSelector = [
|
|
6
|
+
'a[href]',
|
|
7
|
+
'area[href]',
|
|
8
|
+
'input:not([disabled])',
|
|
9
|
+
'select:not([disabled])',
|
|
10
|
+
'textarea:not([disabled])',
|
|
11
|
+
'button:not([disabled])',
|
|
12
|
+
'iframe',
|
|
13
|
+
'[tabindex]',
|
|
14
|
+
'[contentEditable=true]',
|
|
15
|
+
]
|
|
16
|
+
.map((selector) => `${selector}:not([tabindex='-1'])`)
|
|
17
|
+
.join(', ');
|
|
18
|
+
/**
|
|
19
|
+
* Prevents focus move outside a modal element.
|
|
20
|
+
*
|
|
21
|
+
* @param {ModalRef} modalRef - The modal element ref object.
|
|
22
|
+
* @param {Object} options - An object with hook options.
|
|
23
|
+
* @param {boolean} options.isEnabled - A flag that determines whether
|
|
24
|
+
* to trap focus or not.
|
|
25
|
+
*/
|
|
26
|
+
export function useFocusTrap(modalRef, options) {
|
|
27
|
+
const isEnabled = options.isEnabled;
|
|
28
|
+
useEffect(() => {
|
|
29
|
+
if (!isEnabled) {
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
modals.push(modalRef);
|
|
33
|
+
const handleBodyKeyDown = (event) => {
|
|
34
|
+
if (event.key !== KeyboardKeys.Tab) {
|
|
35
|
+
return;
|
|
36
|
+
}
|
|
37
|
+
const activeModalRef = modals[modals.length - 1];
|
|
38
|
+
if (activeModalRef == null) {
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
const activeModal = activeModalRef.current;
|
|
42
|
+
if (activeModal == null) {
|
|
43
|
+
return;
|
|
44
|
+
}
|
|
45
|
+
const focusableEls = Array.from(activeModal.querySelectorAll(focusableElementsSelector));
|
|
46
|
+
if (focusableEls.length === 0) {
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
const firstFocusableEl = focusableEls[0];
|
|
50
|
+
const lastFocusableEl = focusableEls[focusableEls.length - 1];
|
|
51
|
+
if (!activeModal.contains(document.activeElement)) {
|
|
52
|
+
event.preventDefault();
|
|
53
|
+
focusElement(firstFocusableEl);
|
|
54
|
+
}
|
|
55
|
+
else if (event.shiftKey) {
|
|
56
|
+
if (document.activeElement === firstFocusableEl) {
|
|
57
|
+
event.preventDefault();
|
|
58
|
+
focusElement(lastFocusableEl);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
else if (document.activeElement === lastFocusableEl) {
|
|
62
|
+
event.preventDefault();
|
|
63
|
+
focusElement(firstFocusableEl);
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
// Add only one global `body` key down handler.
|
|
67
|
+
if (modals.length === 1) {
|
|
68
|
+
document.body.addEventListener('keydown', handleBodyKeyDown);
|
|
69
|
+
}
|
|
70
|
+
return () => {
|
|
71
|
+
const index = modals.indexOf(modalRef);
|
|
72
|
+
if (index >= 0) {
|
|
73
|
+
modals.splice(index, 1);
|
|
74
|
+
}
|
|
75
|
+
// Remove the global `body` key down handler
|
|
76
|
+
// if there are no active modals.
|
|
77
|
+
if (modals.length === 0) {
|
|
78
|
+
document.body.removeEventListener('keydown', handleBodyKeyDown);
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
}, [isEnabled, modalRef]);
|
|
82
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export type TransitionParams = {
|
|
2
|
+
animateFirstMount?: boolean;
|
|
3
|
+
isShown: boolean;
|
|
4
|
+
durationMs: number;
|
|
5
|
+
/**
|
|
6
|
+
* CSS class for the initial state of element.
|
|
7
|
+
* This class defines the starting values of transition styles and
|
|
8
|
+
* the transition duration and timing function.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* .hidden {
|
|
12
|
+
* opacity: 0;
|
|
13
|
+
* transition: opacity 0.15s ease;
|
|
14
|
+
* }
|
|
15
|
+
*/
|
|
16
|
+
enterFrom: string;
|
|
17
|
+
/**
|
|
18
|
+
* CSS class for the target state of element.
|
|
19
|
+
* This class defines the ending values of transition styles.
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* .visible {
|
|
23
|
+
* opacity: 1;
|
|
24
|
+
* }
|
|
25
|
+
*/
|
|
26
|
+
enterTo: string;
|
|
27
|
+
};
|
|
28
|
+
export type TransitionState = {
|
|
29
|
+
isMounted: boolean;
|
|
30
|
+
className: string;
|
|
31
|
+
};
|
|
32
|
+
export declare function useMountTransition({ animateFirstMount, isShown, durationMs, enterFrom, enterTo, }: TransitionParams): TransitionState;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { useEffect, useMemo, useRef, useState } from 'react';
|
|
2
|
+
import { classNames } from '../shared/react-helpers';
|
|
3
|
+
export function useMountTransition({ animateFirstMount = false, isShown, durationMs, enterFrom, enterTo, }) {
|
|
4
|
+
const [isMounted, setIsMounted] = useState(isShown);
|
|
5
|
+
const [hasEnterToClass, setHasEnterToClass] = useState(false);
|
|
6
|
+
const firstMount = useRef(true);
|
|
7
|
+
const prefersReducedMotion = useMemo(() => window.matchMedia('(prefers-reduced-motion: reduce)'), []);
|
|
8
|
+
const disableTransition = (prefersReducedMotion.matches ||
|
|
9
|
+
(!animateFirstMount && firstMount.current));
|
|
10
|
+
if (disableTransition) {
|
|
11
|
+
durationMs = 0;
|
|
12
|
+
}
|
|
13
|
+
useEffect(() => {
|
|
14
|
+
if (!isShown) {
|
|
15
|
+
firstMount.current = false;
|
|
16
|
+
}
|
|
17
|
+
}, [isShown]);
|
|
18
|
+
useEffect(() => {
|
|
19
|
+
let timeout;
|
|
20
|
+
if (isShown) {
|
|
21
|
+
setIsMounted(true);
|
|
22
|
+
timeout = window.setTimeout(() => setHasEnterToClass(true));
|
|
23
|
+
}
|
|
24
|
+
else {
|
|
25
|
+
setHasEnterToClass(false);
|
|
26
|
+
timeout = window.setTimeout(() => setIsMounted(false), durationMs);
|
|
27
|
+
}
|
|
28
|
+
return () => window.clearTimeout(timeout);
|
|
29
|
+
}, [isShown, durationMs]);
|
|
30
|
+
return {
|
|
31
|
+
isMounted,
|
|
32
|
+
className: disableTransition
|
|
33
|
+
? ''
|
|
34
|
+
: classNames(enterFrom, hasEnterToClass && enterTo),
|
|
35
|
+
};
|
|
36
|
+
}
|
package/esm/index.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export * from './components/alert';
|
|
2
|
+
export * from './components/avatar';
|
|
3
|
+
export * from './components/avatar-group';
|
|
4
|
+
export * from './components/badge';
|
|
5
|
+
export * from './components/breadcrumbs';
|
|
6
|
+
export * from './components/button';
|
|
7
|
+
export * from './components/button-group';
|
|
8
|
+
export * from './components/caption';
|
|
9
|
+
export * from './components/checkbox';
|
|
10
|
+
export * from './components/date-picker';
|
|
11
|
+
export * from './components/date-picker-popover';
|
|
12
|
+
export * from './components/date-range-picker-popover';
|
|
13
|
+
export * from './components/dialog';
|
|
14
|
+
export * from './components/empty-state';
|
|
15
|
+
export * from './components/file-picker';
|
|
16
|
+
export * from './components/filter-buttons';
|
|
17
|
+
export * from './components/form-field';
|
|
18
|
+
export * from './components/label';
|
|
19
|
+
export * from './components/menu';
|
|
20
|
+
export * from './components/nav-list';
|
|
21
|
+
export * from './components/password-input';
|
|
22
|
+
export * from './components/popover';
|
|
23
|
+
export * from './components/portal';
|
|
24
|
+
export * from './components/radio';
|
|
25
|
+
export * from './components/segmented-control';
|
|
26
|
+
export * from './components/select';
|
|
27
|
+
export * from './components/slider';
|
|
28
|
+
export * from './components/spinner';
|
|
29
|
+
export * from './components/switch';
|
|
30
|
+
export * from './components/table';
|
|
31
|
+
export * from './components/tabs';
|
|
32
|
+
export * from './components/tag';
|
|
33
|
+
export * from './components/text-input';
|
|
34
|
+
export * from './components/textarea';
|
|
35
|
+
export * from './components/toast';
|
|
36
|
+
export * from './components/toaster';
|
|
37
|
+
export * from './components/tooltip';
|
package/esm/index.js
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export * from './components/alert';
|
|
2
|
+
export * from './components/avatar';
|
|
3
|
+
export * from './components/avatar-group';
|
|
4
|
+
export * from './components/badge';
|
|
5
|
+
export * from './components/breadcrumbs';
|
|
6
|
+
export * from './components/button';
|
|
7
|
+
export * from './components/button-group';
|
|
8
|
+
export * from './components/caption';
|
|
9
|
+
export * from './components/checkbox';
|
|
10
|
+
export * from './components/date-picker';
|
|
11
|
+
export * from './components/date-picker-popover';
|
|
12
|
+
export * from './components/date-range-picker-popover';
|
|
13
|
+
export * from './components/dialog';
|
|
14
|
+
export * from './components/empty-state';
|
|
15
|
+
export * from './components/file-picker';
|
|
16
|
+
export * from './components/filter-buttons';
|
|
17
|
+
export * from './components/form-field';
|
|
18
|
+
export * from './components/label';
|
|
19
|
+
export * from './components/menu';
|
|
20
|
+
export * from './components/nav-list';
|
|
21
|
+
export * from './components/password-input';
|
|
22
|
+
export * from './components/popover';
|
|
23
|
+
export * from './components/portal';
|
|
24
|
+
export * from './components/radio';
|
|
25
|
+
export * from './components/segmented-control';
|
|
26
|
+
export * from './components/select';
|
|
27
|
+
export * from './components/slider';
|
|
28
|
+
export * from './components/spinner';
|
|
29
|
+
export * from './components/switch';
|
|
30
|
+
export * from './components/table';
|
|
31
|
+
export * from './components/tabs';
|
|
32
|
+
export * from './components/tag';
|
|
33
|
+
export * from './components/text-input';
|
|
34
|
+
export * from './components/textarea';
|
|
35
|
+
export * from './components/toast';
|
|
36
|
+
export * from './components/toaster';
|
|
37
|
+
export * from './components/tooltip';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const KeyboardKeys: {
|
|
2
|
+
ArrowUp: string;
|
|
3
|
+
ArrowRight: string;
|
|
4
|
+
ArrowDown: string;
|
|
5
|
+
ArrowLeft: string;
|
|
6
|
+
Tab: string;
|
|
7
|
+
Home: string;
|
|
8
|
+
End: string;
|
|
9
|
+
PageUp: string;
|
|
10
|
+
PageDown: string;
|
|
11
|
+
Enter: string;
|
|
12
|
+
Escape: string;
|
|
13
|
+
Space: string;
|
|
14
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export const KeyboardKeys = {
|
|
2
|
+
ArrowUp: 'ArrowUp',
|
|
3
|
+
ArrowRight: 'ArrowRight',
|
|
4
|
+
ArrowDown: 'ArrowDown',
|
|
5
|
+
ArrowLeft: 'ArrowLeft',
|
|
6
|
+
Tab: 'Tab',
|
|
7
|
+
Home: 'Home',
|
|
8
|
+
End: 'End',
|
|
9
|
+
PageUp: 'PageUp',
|
|
10
|
+
PageDown: 'PageDown',
|
|
11
|
+
Enter: 'Enter',
|
|
12
|
+
Escape: 'Escape',
|
|
13
|
+
Space: ' ',
|
|
14
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { type MutableRefObject, type ReactElement, type Ref, type RefCallback } from 'react';
|
|
2
|
+
export type ClassNamesObject = {
|
|
3
|
+
[className: string]: unknown;
|
|
4
|
+
};
|
|
5
|
+
export type ClassName = string | number | boolean | undefined | null | ClassNamesObject;
|
|
6
|
+
export declare function classNames(...classes: ClassName[]): string;
|
|
7
|
+
export type RefParameter<T> = MutableRefObject<T> | Ref<T> | undefined;
|
|
8
|
+
export declare function mergeRefs<T>(...refs: RefParameter<T>[]): RefCallback<T>;
|
|
9
|
+
export type ReactElementWithRef = ReactElement & {
|
|
10
|
+
ref: Ref<unknown>;
|
|
11
|
+
};
|
|
12
|
+
export declare function isReactElementWithRef(element: unknown): element is ReactElementWithRef;
|
|
13
|
+
export declare function focusElement(element: EventTarget | null | undefined): void;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { isValidElement, } from 'react';
|
|
2
|
+
export function classNames(...classes) {
|
|
3
|
+
let resultString = '';
|
|
4
|
+
for (const className of classes) {
|
|
5
|
+
if (!className) {
|
|
6
|
+
continue;
|
|
7
|
+
}
|
|
8
|
+
if (typeof className === 'object') {
|
|
9
|
+
for (const key of Object.keys(className)) {
|
|
10
|
+
if (className[key]) {
|
|
11
|
+
resultString += key + ' ';
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
else {
|
|
16
|
+
resultString += className + ' ';
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
return resultString.trimEnd();
|
|
20
|
+
}
|
|
21
|
+
export function mergeRefs(...refs) {
|
|
22
|
+
return (instance) => {
|
|
23
|
+
for (const ref of refs) {
|
|
24
|
+
if (ref != null) {
|
|
25
|
+
if (typeof ref === 'function') {
|
|
26
|
+
ref(instance);
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
Object.assign(ref, { current: instance });
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
export function isReactElementWithRef(element) {
|
|
36
|
+
return isValidElement(element) && 'ref' in element;
|
|
37
|
+
}
|
|
38
|
+
export function focusElement(element) {
|
|
39
|
+
if (element != null && element instanceof HTMLElement) {
|
|
40
|
+
element.focus();
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export function once(fn) {
|
|
2
|
+
let called = false;
|
|
3
|
+
let result;
|
|
4
|
+
return (...args) => {
|
|
5
|
+
if (!called) {
|
|
6
|
+
called = true;
|
|
7
|
+
result = fn(...args);
|
|
8
|
+
}
|
|
9
|
+
return result;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
export function assertIfNullable(value, message = 'value is null or undefined') {
|
|
13
|
+
if (value == null) {
|
|
14
|
+
throw Error(message);
|
|
15
|
+
}
|
|
16
|
+
}
|
package/package.json
CHANGED
|
@@ -1,27 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "draft-components",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "The
|
|
5
|
-
"
|
|
3
|
+
"version": "1.0.0-beta",
|
|
4
|
+
"description": "The React based UI components library.",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"import": "./esm/index.js",
|
|
8
|
+
"require": "./dist/index.js"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"main": "dist/index.js",
|
|
12
|
+
"module": "esm/index.js",
|
|
6
13
|
"files": [
|
|
7
|
-
"css
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"hooks/**/*",
|
|
11
|
-
"bootstrap-icons/**/*",
|
|
12
|
-
"lib/**/*"
|
|
14
|
+
"css",
|
|
15
|
+
"dist",
|
|
16
|
+
"esm"
|
|
13
17
|
],
|
|
14
18
|
"scripts": {
|
|
15
19
|
"test": "jest",
|
|
16
20
|
"test-coverage": "npm run test -- --coverage --no-cache",
|
|
17
|
-
"lint": "eslint
|
|
18
|
-
"
|
|
19
|
-
"check
|
|
20
|
-
"styleguide": "styleguidist server",
|
|
21
|
-
"styleguide-build": "styleguidist build",
|
|
22
|
-
"bootstrap-icons": "node scripts/bootstrap-icons.js",
|
|
21
|
+
"lint": "eslint '**/*.{js,ts,tsx}'",
|
|
22
|
+
"stylelint": "stylelint 'src/**/*.css'",
|
|
23
|
+
"type-check": "tsc --noEmit",
|
|
23
24
|
"build": "gulp",
|
|
24
|
-
"
|
|
25
|
+
"prebuild": "npm run test && npm run lint && npm run stylelint",
|
|
26
|
+
"preversion": "npm run build",
|
|
27
|
+
"storybook": "start-storybook --port 6060 --no-open",
|
|
28
|
+
"build-storybook": "build-storybook"
|
|
25
29
|
},
|
|
26
30
|
"repository": {
|
|
27
31
|
"type": "git",
|
|
@@ -39,55 +43,54 @@
|
|
|
39
43
|
},
|
|
40
44
|
"homepage": "https://alexzimakov.github.io/draft-components",
|
|
41
45
|
"peerDependencies": {
|
|
42
|
-
"react": "
|
|
43
|
-
"react-dom": "
|
|
46
|
+
"react": ">= 18",
|
|
47
|
+
"react-dom": ">= 18"
|
|
44
48
|
},
|
|
45
49
|
"devDependencies": {
|
|
46
|
-
"@babel/core": "7.
|
|
47
|
-
"@babel/
|
|
48
|
-
"@babel/preset-
|
|
49
|
-
"@babel/preset-
|
|
50
|
-
"@
|
|
51
|
-
"@
|
|
52
|
-
"@
|
|
53
|
-
"@
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
58
|
-
"@
|
|
59
|
-
"@
|
|
60
|
-
"@
|
|
61
|
-
"@
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"cssnano": "5.1.
|
|
68
|
-
"eslint": "8.
|
|
69
|
-
"eslint-plugin-jsx-a11y": "6.
|
|
70
|
-
"eslint-plugin-react": "7.
|
|
71
|
-
"eslint-plugin-react-hooks": "4.
|
|
72
|
-
"eslint-plugin-
|
|
73
|
-
"
|
|
50
|
+
"@babel/core": "7.20.12",
|
|
51
|
+
"@babel/preset-env": "7.20.2",
|
|
52
|
+
"@babel/preset-react": "7.18.6",
|
|
53
|
+
"@babel/preset-typescript": "7.18.6",
|
|
54
|
+
"@heroicons/react": "2.0.13",
|
|
55
|
+
"@storybook/addon-actions": "6.5.15",
|
|
56
|
+
"@storybook/addon-essentials": "6.5.15",
|
|
57
|
+
"@storybook/addon-links": "6.5.15",
|
|
58
|
+
"@storybook/builder-vite": "0.2.6",
|
|
59
|
+
"@storybook/react": "6.5.15",
|
|
60
|
+
"@testing-library/dom": "8.19.1",
|
|
61
|
+
"@testing-library/jest-dom": "5.16.5",
|
|
62
|
+
"@testing-library/react": "13.4.0",
|
|
63
|
+
"@testing-library/user-event": "14.4.3",
|
|
64
|
+
"@types/jest": "29.2.5",
|
|
65
|
+
"@types/node": "18.11.18",
|
|
66
|
+
"@types/react": "18.0.26",
|
|
67
|
+
"@types/react-dom": "18.0.10",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "5.48.0",
|
|
69
|
+
"@typescript-eslint/parser": "5.48.0",
|
|
70
|
+
"autoprefixer": "10.4.13",
|
|
71
|
+
"cssnano": "5.1.14",
|
|
72
|
+
"eslint": "8.31.0",
|
|
73
|
+
"eslint-plugin-jsx-a11y": "6.6.1",
|
|
74
|
+
"eslint-plugin-react": "7.31.11",
|
|
75
|
+
"eslint-plugin-react-hooks": "4.6.0",
|
|
76
|
+
"eslint-plugin-storybook": "0.6.8",
|
|
77
|
+
"eslint-plugin-testing-library": "5.9.1",
|
|
74
78
|
"gulp": "4.0.2",
|
|
75
79
|
"gulp-postcss": "9.0.1",
|
|
76
|
-
"gulp-
|
|
80
|
+
"gulp-rename": "2.0.0",
|
|
77
81
|
"husky": "4.3.8",
|
|
78
|
-
"jest": "
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"react": "
|
|
83
|
-
"react-dom": "
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"typescript": "4.
|
|
89
|
-
"
|
|
90
|
-
"xml2js": "0.4.23"
|
|
82
|
+
"jest": "29.3.1",
|
|
83
|
+
"jest-environment-jsdom": "29.3.1",
|
|
84
|
+
"lint-staged": "13.1.0",
|
|
85
|
+
"postcss-import": "15.1.0",
|
|
86
|
+
"react": "18.2.0",
|
|
87
|
+
"react-dom": "18.2.0",
|
|
88
|
+
"storybook": "6.5.15",
|
|
89
|
+
"stylelint": "14.16.1",
|
|
90
|
+
"stylelint-config-standard": "29.0.0",
|
|
91
|
+
"stylelint-order": "5.0.0",
|
|
92
|
+
"typescript": "4.9.4",
|
|
93
|
+
"vite": "4.0.4"
|
|
91
94
|
},
|
|
92
95
|
"husky": {
|
|
93
96
|
"hooks": {
|
|
@@ -95,11 +98,6 @@
|
|
|
95
98
|
}
|
|
96
99
|
},
|
|
97
100
|
"lint-staged": {
|
|
98
|
-
"src/**/*.ts?(x)": "
|
|
99
|
-
}
|
|
100
|
-
"browserslist": [
|
|
101
|
-
"> 0.2%",
|
|
102
|
-
"not dead",
|
|
103
|
-
"not op_mini all"
|
|
104
|
-
]
|
|
101
|
+
"src/**/*.ts?(x)": "npm run lint"
|
|
102
|
+
}
|
|
105
103
|
}
|
package/bootstrap-icons/123.d.ts
DELETED
package/bootstrap-icons/123.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.icon123 = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/123.svg
|
|
6
|
-
exports.icon123 = {
|
|
7
|
-
name: '123',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M2.873 11.297V4.142H1.699L0 5.379v1.137l1.64-1.18h.06v5.961h1.174Zm3.213-5.09v-.063c0-.618.44-1.169 1.196-1.169.676 0 1.174.44 1.174 1.106 0 .624-.42 1.101-.807 1.526L4.99 10.553v.744h4.78v-.99H6.643v-.069L8.41 8.252c.65-.724 1.237-1.332 1.237-2.27C9.646 4.849 8.723 4 7.308 4c-1.573 0-2.36 1.064-2.36 2.15v.057h1.138Zm6.559 1.883h.786c.823 0 1.374.481 1.379 1.179.01.707-.55 1.216-1.421 1.21-.77-.005-1.326-.419-1.379-.953h-1.095c.042 1.053.938 1.918 2.464 1.918 1.478 0 2.642-.839 2.62-2.144-.02-1.143-.922-1.651-1.551-1.714v-.063c.535-.09 1.347-.66 1.326-1.678-.026-1.053-.933-1.855-2.359-1.845-1.5.005-2.317.88-2.348 1.898h1.116c.032-.498.498-.944 1.206-.944.703 0 1.206.435 1.206 1.07.005.64-.504 1.106-1.2 1.106h-.75v.96Z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.activity = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/activity.svg
|
|
6
|
-
exports.activity = {
|
|
7
|
-
name: 'activity',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", d: "M6 2a.5.5 0 0 1 .47.33L10 12.036l1.53-4.208A.5.5 0 0 1 12 7.5h3.5a.5.5 0 0 1 0 1h-3.15l-1.88 5.17a.5.5 0 0 1-.94 0L6 3.964 4.47 8.171A.5.5 0 0 1 4 8.5H.5a.5.5 0 0 1 0-1h3.15l1.88-5.17A.5.5 0 0 1 6 2Z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.alarmFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/alarm-fill.svg
|
|
6
|
-
exports.alarmFill = {
|
|
7
|
-
name: 'alarm-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M6 .5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H9v1.07a7.001 7.001 0 0 1 3.274 12.474l.601.602a.5.5 0 0 1-.707.708l-.746-.746A6.97 6.97 0 0 1 8 16a6.97 6.97 0 0 1-3.422-.892l-.746.746a.5.5 0 0 1-.707-.708l.602-.602A7.001 7.001 0 0 1 7 2.07V1h-.5A.5.5 0 0 1 6 .5zm2.5 5a.5.5 0 0 0-1 0v3.362l-1.429 2.38a.5.5 0 1 0 .858.515l1.5-2.5A.5.5 0 0 0 8.5 9V5.5zM.86 5.387A2.5 2.5 0 1 1 4.387 1.86 8.035 8.035 0 0 0 .86 5.387zM11.613 1.86a2.5 2.5 0 1 1 3.527 3.527 8.035 8.035 0 0 0-3.527-3.527z" })),
|
|
12
|
-
};
|
package/bootstrap-icons/alarm.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.alarm = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/alarm.svg
|
|
6
|
-
exports.alarm = {
|
|
7
|
-
name: 'alarm',
|
|
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.5 5.5a.5.5 0 0 0-1 0v3.362l-1.429 2.38a.5.5 0 1 0 .858.515l1.5-2.5A.5.5 0 0 0 8.5 9V5.5z" }), (0, jsx_runtime_1.jsx)("path", { d: "M6.5 0a.5.5 0 0 0 0 1H7v1.07a7.001 7.001 0 0 0-3.273 12.474l-.602.602a.5.5 0 0 0 .707.708l.746-.746A6.97 6.97 0 0 0 8 16a6.97 6.97 0 0 0 3.422-.892l.746.746a.5.5 0 0 0 .707-.708l-.601-.602A7.001 7.001 0 0 0 9 2.07V1h.5a.5.5 0 0 0 0-1h-3zm1.038 3.018a6.093 6.093 0 0 1 .924 0 6 6 0 1 1-.924 0zM0 3.5c0 .753.333 1.429.86 1.887A8.035 8.035 0 0 1 4.387 1.86 2.5 2.5 0 0 0 0 3.5zM13.5 1c-.753 0-1.429.333-1.887.86a8.035 8.035 0 0 1 3.527 3.527A2.5 2.5 0 0 0 13.5 1z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.alignBottom = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/align-bottom.svg
|
|
6
|
-
exports.alignBottom = {
|
|
7
|
-
name: 'align-bottom',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: (0, jsx_runtime_1.jsx)("rect", { width: "4", height: "12", x: "6", y: "1", rx: "1" }),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.alignCenter = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/align-center.svg
|
|
6
|
-
exports.alignCenter = {
|
|
7
|
-
name: 'align-center',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M8 1a.5.5 0 0 1 .5.5V6h-1V1.5A.5.5 0 0 1 8 1zm0 14a.5.5 0 0 1-.5-.5V10h1v4.5a.5.5 0 0 1-.5.5zM2 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V7z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.alignEnd = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/align-end.svg
|
|
6
|
-
exports.alignEnd = {
|
|
7
|
-
name: 'align-end',
|
|
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", { fillRule: "evenodd", d: "M14.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5z" }), (0, jsx_runtime_1.jsx)("path", { d: "M13 7a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V7z" })] })),
|
|
12
|
-
};
|