draft-components 0.75.2 → 1.0.0-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -53
- package/css/draft-components-utilities.css +1575 -0
- package/css/draft-components-utilities.min.css +1 -0
- package/css/draft-components.css +3493 -2
- package/css/draft-components.dark.css +501 -0
- package/css/draft-components.dark.min.css +1 -0
- package/css/draft-components.min.css +1 -0
- package/dist/components/alert/alert.d.ts +10 -0
- package/dist/components/alert/alert.js +16 -0
- package/{components → dist/components}/alert/index.d.ts +0 -0
- package/{components → dist/components}/alert/index.js +0 -0
- package/dist/components/avatar/avatar.d.ts +13 -0
- package/dist/components/avatar/avatar.js +29 -0
- package/{components → dist/components}/avatar/index.d.ts +0 -0
- package/{components → dist/components}/avatar/index.js +0 -0
- package/dist/components/avatar-group/avatar-group.d.ts +7 -0
- package/dist/components/avatar-group/avatar-group.js +9 -0
- package/dist/components/avatar-group/index.d.ts +1 -0
- package/dist/components/avatar-group/index.js +17 -0
- package/dist/components/badge/badge.d.ts +8 -0
- package/dist/components/badge/badge.js +22 -0
- package/dist/components/badge/index.d.ts +1 -0
- package/dist/components/badge/index.js +17 -0
- package/dist/components/breadcrumbs/breadcrumbs-context.d.ts +9 -0
- package/dist/components/breadcrumbs/breadcrumbs-context.js +18 -0
- package/dist/components/breadcrumbs/breadcrumbs-item.d.ts +12 -0
- package/dist/components/breadcrumbs/breadcrumbs-item.js +20 -0
- package/dist/components/breadcrumbs/breadcrumbs.d.ts +7 -0
- package/dist/components/breadcrumbs/breadcrumbs.js +11 -0
- package/dist/components/breadcrumbs/index.d.ts +2 -0
- package/dist/components/breadcrumbs/index.js +18 -0
- package/dist/components/button/button.d.ts +19 -0
- package/dist/components/button/button.js +37 -0
- package/dist/components/button/icon-button.d.ts +6 -0
- package/dist/components/button/icon-button.js +10 -0
- package/dist/components/button/index.d.ts +2 -0
- package/dist/components/button/index.js +18 -0
- package/dist/components/button-group/button-group.d.ts +7 -0
- package/dist/components/button-group/button-group.js +9 -0
- package/dist/components/button-group/index.d.ts +1 -0
- package/dist/components/button-group/index.js +17 -0
- package/dist/components/caption/caption.d.ts +7 -0
- package/dist/components/caption/caption.js +25 -0
- package/dist/components/caption/icons.d.ts +5 -0
- package/dist/components/caption/icons.js +20 -0
- package/dist/components/caption/index.d.ts +1 -0
- package/dist/components/caption/index.js +17 -0
- package/dist/components/checkbox/checkbox.d.ts +10 -0
- package/dist/components/checkbox/checkbox.js +14 -0
- package/{components → dist/components}/checkbox/index.d.ts +0 -0
- package/{components → dist/components}/checkbox/index.js +0 -0
- package/dist/components/color-picker/color-picker-button.d.ts +12 -0
- package/dist/components/color-picker/color-picker-button.js +15 -0
- package/dist/components/color-picker/color-picker.d.ts +13 -0
- package/dist/components/color-picker/color-picker.js +13 -0
- package/dist/components/color-picker/index.d.ts +1 -0
- package/dist/components/color-picker/index.js +17 -0
- package/dist/components/date-picker/calendar-day.d.ts +17 -0
- package/dist/components/date-picker/calendar-day.js +16 -0
- package/dist/components/date-picker/calendar-grid-head.d.ts +7 -0
- package/dist/components/date-picker/calendar-grid-head.js +15 -0
- package/dist/components/date-picker/calendar-grid.d.ts +17 -0
- package/dist/components/date-picker/calendar-grid.js +105 -0
- package/dist/components/date-picker/calendar-header.d.ts +12 -0
- package/dist/components/date-picker/calendar-header.js +46 -0
- package/dist/components/date-picker/calendar.d.ts +11 -0
- package/dist/components/date-picker/calendar.js +23 -0
- package/dist/components/date-picker/date-helpers.d.ts +22 -0
- package/dist/components/date-picker/date-helpers.js +108 -0
- package/dist/components/date-picker/date-picker.d.ts +13 -0
- package/dist/components/date-picker/date-picker.js +19 -0
- package/dist/components/date-picker/date-range-picker.d.ts +14 -0
- package/dist/components/date-picker/date-range-picker.js +60 -0
- package/dist/components/date-picker/date-range.d.ts +13 -0
- package/dist/components/date-picker/date-range.js +27 -0
- package/dist/components/date-picker/icons.d.ts +3 -0
- package/dist/components/date-picker/icons.js +12 -0
- package/dist/components/date-picker/index.d.ts +2 -0
- package/dist/components/date-picker/index.js +18 -0
- package/dist/components/date-picker/parse-min-max-props.d.ts +8 -0
- package/dist/components/date-picker/parse-min-max-props.js +19 -0
- package/dist/components/date-picker-popover/date-picker-popover.d.ts +13 -0
- package/dist/components/date-picker-popover/date-picker-popover.js +20 -0
- package/{components → dist/components}/date-picker-popover/index.d.ts +0 -0
- package/{components → dist/components}/date-picker-popover/index.js +0 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +9 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-footer.js +9 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +10 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-presets.js +34 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover.d.ts +26 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover.js +54 -0
- package/dist/components/date-range-picker-popover/helpers.d.ts +2 -0
- package/dist/components/date-range-picker-popover/helpers.js +15 -0
- package/dist/components/date-range-picker-popover/index.d.ts +2 -0
- package/dist/components/date-range-picker-popover/index.js +18 -0
- package/dist/components/date-range-picker-popover/types.d.ts +10 -0
- package/{components/avatar → dist/components/date-range-picker-popover}/types.js +0 -0
- package/dist/components/date-range-picker-popover/use-is-compact-view.d.ts +1 -0
- package/dist/components/date-range-picker-popover/use-is-compact-view.js +26 -0
- package/dist/components/dialog/dialog-body.d.ts +8 -0
- package/dist/components/dialog/dialog-body.js +51 -0
- package/dist/components/dialog/dialog-context.d.ts +15 -0
- package/dist/components/dialog/dialog-context.js +23 -0
- package/dist/components/dialog/dialog-footer.d.ts +5 -0
- package/dist/components/dialog/dialog-footer.js +9 -0
- package/dist/components/dialog/dialog-header.d.ts +8 -0
- package/dist/components/dialog/dialog-header.js +16 -0
- package/dist/components/dialog/dialog.d.ts +12 -0
- package/dist/components/dialog/dialog.js +46 -0
- package/dist/components/dialog/index.d.ts +4 -0
- package/dist/components/dialog/index.js +20 -0
- package/dist/components/dialog/x-mark-icon.d.ts +2 -0
- package/dist/components/dialog/x-mark-icon.js +8 -0
- package/dist/components/empty-state/empty-state.d.ts +11 -0
- package/dist/components/empty-state/empty-state.js +9 -0
- package/dist/components/empty-state/index.d.ts +1 -0
- package/dist/components/empty-state/index.js +17 -0
- package/dist/components/file-picker/file-picker.d.ts +13 -0
- package/dist/components/file-picker/file-picker.js +44 -0
- package/dist/components/file-picker/index.d.ts +1 -0
- package/dist/components/file-picker/index.js +17 -0
- package/dist/components/filter-buttons/filter-button.d.ts +7 -0
- package/dist/components/filter-buttons/filter-button.js +9 -0
- package/dist/components/filter-buttons/filter-buttons.d.ts +5 -0
- package/dist/components/filter-buttons/filter-buttons.js +26 -0
- package/dist/components/filter-buttons/index.d.ts +2 -0
- package/dist/components/filter-buttons/index.js +18 -0
- package/dist/components/form-field/form-field.d.ts +15 -0
- package/dist/components/form-field/form-field.js +25 -0
- package/{components → dist/components}/form-field/index.d.ts +0 -0
- package/{components → dist/components}/form-field/index.js +0 -0
- package/{components → dist/components}/label/index.d.ts +0 -0
- package/{components → dist/components}/label/index.js +0 -0
- package/dist/components/label/label.d.ts +5 -0
- package/dist/components/label/label.js +11 -0
- package/dist/components/menu/index.d.ts +3 -0
- package/dist/components/menu/index.js +19 -0
- package/dist/components/menu/menu-item.d.ts +11 -0
- package/dist/components/menu/menu-item.js +12 -0
- package/dist/components/menu/menu-separator.d.ts +6 -0
- package/dist/components/menu/menu-separator.js +9 -0
- package/dist/components/menu/menu.d.ts +31 -0
- package/dist/components/menu/menu.js +194 -0
- package/dist/components/nav-list/index.d.ts +3 -0
- package/dist/components/nav-list/index.js +19 -0
- package/dist/components/nav-list/nav-list-item.d.ts +13 -0
- package/dist/components/nav-list/nav-list-item.js +19 -0
- package/dist/components/nav-list/nav-list-title.d.ts +8 -0
- package/dist/components/nav-list/nav-list-title.js +9 -0
- package/dist/components/nav-list/nav-list.d.ts +5 -0
- package/dist/components/nav-list/nav-list.js +9 -0
- package/dist/components/password-input/icons.d.ts +3 -0
- package/dist/components/password-input/icons.js +12 -0
- package/{components → dist/components}/password-input/index.d.ts +0 -0
- package/{components → dist/components}/password-input/index.js +0 -0
- package/dist/components/password-input/password-input.d.ts +10 -0
- package/dist/components/password-input/password-input.js +28 -0
- package/{components → dist/components}/popover/index.d.ts +0 -0
- package/{components → dist/components}/popover/index.js +0 -0
- package/dist/components/popover/popover.d.ts +49 -0
- package/dist/components/popover/popover.js +97 -0
- package/dist/components/popover/use-page-click.d.ts +16 -0
- package/dist/components/popover/use-page-click.js +50 -0
- package/{components → dist/components}/portal/index.d.ts +0 -0
- package/{components → dist/components}/portal/index.js +0 -0
- package/dist/components/portal/portal-context.d.ts +6 -0
- package/dist/components/portal/portal-context.js +26 -0
- package/dist/components/portal/portal.d.ts +5 -0
- package/dist/components/portal/portal.js +10 -0
- package/dist/components/positioner/calc-position.d.ts +32 -0
- package/dist/components/positioner/calc-position.js +117 -0
- package/{components → dist/components}/positioner/index.d.ts +0 -0
- package/{components → dist/components}/positioner/index.js +0 -0
- package/dist/components/positioner/positioner.d.ts +20 -0
- package/dist/components/positioner/positioner.js +63 -0
- package/dist/components/positioner/types.d.ts +14 -0
- package/{components → dist/components}/positioner/types.js +0 -0
- package/dist/components/radio/index.d.ts +1 -0
- package/dist/components/radio/index.js +17 -0
- package/dist/components/radio/radio.d.ts +11 -0
- package/dist/components/radio/radio.js +22 -0
- package/{components → dist/components}/segmented-control/index.d.ts +0 -0
- package/{components → dist/components}/segmented-control/index.js +0 -0
- package/dist/components/segmented-control/segmented-control-button.d.ts +10 -0
- package/dist/components/segmented-control/segmented-control-button.js +14 -0
- package/dist/components/segmented-control/segmented-control.d.ts +15 -0
- package/dist/components/segmented-control/segmented-control.js +47 -0
- package/{components → dist/components}/select/index.d.ts +0 -0
- package/{components → dist/components}/select/index.js +0 -0
- package/dist/components/select/select.d.ts +46 -0
- package/dist/components/select/select.js +25 -0
- package/{components → dist/components}/selection-control/index.d.ts +0 -0
- package/{components → dist/components}/selection-control/index.js +0 -0
- package/dist/components/selection-control/selection-control.d.ts +14 -0
- package/dist/components/selection-control/selection-control.js +17 -0
- package/dist/components/slider/index.d.ts +2 -0
- package/dist/components/slider/index.js +20 -0
- package/dist/components/slider/slider-tick-marks.d.ts +7 -0
- package/dist/components/slider/slider-tick-marks.js +16 -0
- package/dist/components/slider/slider.d.ts +17 -0
- package/dist/components/slider/slider.js +39 -0
- package/dist/components/spinner/index.d.ts +1 -0
- package/dist/components/spinner/index.js +17 -0
- package/dist/components/spinner/spinner.d.ts +7 -0
- package/dist/components/spinner/spinner.js +9 -0
- package/{components → dist/components}/switch/index.d.ts +0 -0
- package/{components → dist/components}/switch/index.js +0 -0
- package/dist/components/switch/switch.d.ts +10 -0
- package/dist/components/switch/switch.js +13 -0
- package/dist/components/table/icons.d.ts +4 -0
- package/dist/components/table/icons.js +16 -0
- package/dist/components/table/index.d.ts +7 -0
- package/dist/components/table/index.js +23 -0
- package/dist/components/table/table-body.d.ts +5 -0
- package/dist/components/table/table-body.js +9 -0
- package/dist/components/table/table-cell.d.ts +5 -0
- package/dist/components/table/table-cell.js +9 -0
- package/dist/components/table/table-container.d.ts +13 -0
- package/dist/components/table/table-container.js +21 -0
- package/dist/components/table/table-head-cell.d.ts +10 -0
- package/dist/components/table/table-head-cell.js +28 -0
- package/dist/components/table/table-head.d.ts +7 -0
- package/dist/components/table/table-head.js +12 -0
- package/dist/components/table/table-row.d.ts +7 -0
- package/dist/components/table/table-row.js +12 -0
- package/dist/components/table/table.d.ts +11 -0
- package/dist/components/table/table.js +14 -0
- package/dist/components/tabs/index.d.ts +4 -0
- package/dist/components/tabs/index.js +20 -0
- package/dist/components/tabs/tab-list.d.ts +3 -0
- package/dist/components/tabs/tab-list.js +66 -0
- package/dist/components/tabs/tab-panel.d.ts +6 -0
- package/dist/components/tabs/tab-panel.js +15 -0
- package/dist/components/tabs/tab.d.ts +7 -0
- package/dist/components/tabs/tab.js +18 -0
- package/dist/components/tabs/tabs-context.d.ts +20 -0
- package/dist/components/tabs/tabs-context.js +30 -0
- package/dist/components/tabs/tabs.d.ts +7 -0
- package/dist/components/tabs/tabs.js +10 -0
- package/dist/components/tabs/types.d.ts +2 -0
- package/dist/components/tabs/types.js +2 -0
- package/{components → dist/components}/tag/index.d.ts +0 -0
- package/{components → dist/components}/tag/index.js +0 -0
- package/dist/components/tag/tag.d.ts +13 -0
- package/dist/components/tag/tag.js +14 -0
- package/{components → dist/components}/text-input/index.d.ts +0 -0
- package/{components → dist/components}/text-input/index.js +0 -0
- package/dist/components/text-input/text-input.d.ts +21 -0
- package/dist/components/text-input/text-input.js +24 -0
- package/{components → dist/components}/textarea/index.d.ts +0 -0
- package/{components → dist/components}/textarea/index.js +0 -0
- package/dist/components/textarea/textarea.d.ts +20 -0
- package/dist/components/textarea/textarea.js +38 -0
- package/dist/components/toast/index.d.ts +2 -0
- package/dist/components/toast/index.js +18 -0
- package/dist/components/toast/toast-button.d.ts +5 -0
- package/dist/components/toast/toast-button.js +9 -0
- package/dist/components/toast/toast.d.ts +11 -0
- package/dist/components/toast/toast.js +10 -0
- package/dist/components/toast/x-mark-icon.d.ts +2 -0
- package/dist/components/toast/x-mark-icon.js +8 -0
- package/{components → dist/components}/toaster/index.d.ts +0 -0
- package/{components → dist/components}/toaster/index.js +0 -0
- package/dist/components/toaster/toaster.d.ts +40 -0
- package/dist/components/toaster/toaster.js +134 -0
- package/{components → dist/components}/tooltip/index.d.ts +0 -0
- package/{components → dist/components}/tooltip/index.js +0 -0
- package/dist/components/tooltip/tooltip.d.ts +25 -0
- package/dist/components/tooltip/tooltip.js +79 -0
- package/dist/hooks/index.d.ts +4 -0
- package/dist/hooks/index.js +20 -0
- package/dist/hooks/use-disable-body-scroll.d.ts +5 -0
- package/dist/hooks/use-disable-body-scroll.js +34 -0
- package/dist/hooks/use-esc-key-down.d.ts +17 -0
- package/dist/hooks/use-esc-key-down.js +53 -0
- package/dist/hooks/use-focus-trap.d.ts +15 -0
- package/dist/hooks/use-focus-trap.js +86 -0
- package/dist/hooks/use-mount-transition.d.ts +32 -0
- package/dist/hooks/use-mount-transition.js +40 -0
- package/dist/index.d.ts +37 -0
- package/dist/index.js +53 -0
- package/dist/shared/keyboard-keys.d.ts +14 -0
- package/dist/shared/keyboard-keys.js +17 -0
- package/dist/shared/react-helpers.d.ts +13 -0
- package/dist/shared/react-helpers.js +49 -0
- package/dist/shared/util.d.ts +2 -0
- package/dist/shared/util.js +21 -0
- package/esm/components/alert/alert.d.ts +10 -0
- package/esm/components/alert/alert.js +12 -0
- package/esm/components/alert/index.d.ts +1 -0
- package/esm/components/alert/index.js +1 -0
- package/esm/components/avatar/avatar.d.ts +13 -0
- package/esm/components/avatar/avatar.js +26 -0
- package/esm/components/avatar/index.d.ts +1 -0
- package/esm/components/avatar/index.js +1 -0
- package/esm/components/avatar-group/avatar-group.d.ts +7 -0
- package/esm/components/avatar-group/avatar-group.js +5 -0
- package/esm/components/avatar-group/index.d.ts +1 -0
- package/esm/components/avatar-group/index.js +1 -0
- package/esm/components/badge/badge.d.ts +8 -0
- package/esm/components/badge/badge.js +18 -0
- package/esm/components/badge/index.d.ts +1 -0
- package/esm/components/badge/index.js +1 -0
- package/esm/components/breadcrumbs/breadcrumbs-context.d.ts +9 -0
- package/esm/components/breadcrumbs/breadcrumbs-context.js +13 -0
- package/esm/components/breadcrumbs/breadcrumbs-item.d.ts +12 -0
- package/esm/components/breadcrumbs/breadcrumbs-item.js +16 -0
- package/esm/components/breadcrumbs/breadcrumbs.d.ts +7 -0
- package/esm/components/breadcrumbs/breadcrumbs.js +7 -0
- package/esm/components/breadcrumbs/index.d.ts +2 -0
- package/esm/components/breadcrumbs/index.js +2 -0
- package/esm/components/button/button.d.ts +19 -0
- package/esm/components/button/button.js +34 -0
- package/esm/components/button/icon-button.d.ts +6 -0
- package/esm/components/button/icon-button.js +7 -0
- package/esm/components/button/index.d.ts +2 -0
- package/esm/components/button/index.js +2 -0
- package/esm/components/button-group/button-group.d.ts +7 -0
- package/esm/components/button-group/button-group.js +5 -0
- package/esm/components/button-group/index.d.ts +1 -0
- package/esm/components/button-group/index.js +1 -0
- package/esm/components/caption/caption.d.ts +7 -0
- package/esm/components/caption/caption.js +22 -0
- package/esm/components/caption/icons.d.ts +5 -0
- package/esm/components/caption/icons.js +13 -0
- package/esm/components/caption/index.d.ts +1 -0
- package/esm/components/caption/index.js +1 -0
- package/esm/components/checkbox/checkbox.d.ts +10 -0
- package/esm/components/checkbox/checkbox.js +11 -0
- package/esm/components/checkbox/index.d.ts +1 -0
- package/esm/components/checkbox/index.js +1 -0
- package/esm/components/color-picker/color-picker-button.d.ts +12 -0
- package/esm/components/color-picker/color-picker-button.js +11 -0
- package/esm/components/color-picker/color-picker.d.ts +13 -0
- package/esm/components/color-picker/color-picker.js +9 -0
- package/esm/components/color-picker/index.d.ts +1 -0
- package/esm/components/color-picker/index.js +1 -0
- package/esm/components/date-picker/calendar-day.d.ts +17 -0
- package/esm/components/date-picker/calendar-day.js +12 -0
- package/esm/components/date-picker/calendar-grid-head.d.ts +7 -0
- package/esm/components/date-picker/calendar-grid-head.js +11 -0
- package/esm/components/date-picker/calendar-grid.d.ts +17 -0
- package/esm/components/date-picker/calendar-grid.js +101 -0
- package/esm/components/date-picker/calendar-header.d.ts +12 -0
- package/esm/components/date-picker/calendar-header.js +42 -0
- package/esm/components/date-picker/calendar.d.ts +11 -0
- package/esm/components/date-picker/calendar.js +19 -0
- package/esm/components/date-picker/date-helpers.d.ts +22 -0
- package/esm/components/date-picker/date-helpers.js +89 -0
- package/esm/components/date-picker/date-picker.d.ts +13 -0
- package/esm/components/date-picker/date-picker.js +15 -0
- package/esm/components/date-picker/date-range-picker.d.ts +14 -0
- package/esm/components/date-picker/date-range-picker.js +56 -0
- package/esm/components/date-picker/date-range.d.ts +13 -0
- package/esm/components/date-picker/date-range.js +23 -0
- package/esm/components/date-picker/icons.d.ts +3 -0
- package/esm/components/date-picker/icons.js +7 -0
- package/esm/components/date-picker/index.d.ts +2 -0
- package/esm/components/date-picker/index.js +2 -0
- package/esm/components/date-picker/parse-min-max-props.d.ts +8 -0
- package/esm/components/date-picker/parse-min-max-props.js +15 -0
- package/esm/components/date-picker-popover/date-picker-popover.d.ts +13 -0
- package/esm/components/date-picker-popover/date-picker-popover.js +16 -0
- package/esm/components/date-picker-popover/index.d.ts +1 -0
- package/esm/components/date-picker-popover/index.js +1 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +9 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.js +5 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +10 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.js +30 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover.d.ts +26 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover.js +50 -0
- package/esm/components/date-range-picker-popover/helpers.d.ts +2 -0
- package/esm/components/date-range-picker-popover/helpers.js +11 -0
- package/esm/components/date-range-picker-popover/index.d.ts +2 -0
- package/esm/components/date-range-picker-popover/index.js +2 -0
- package/esm/components/date-range-picker-popover/types.d.ts +10 -0
- package/esm/components/date-range-picker-popover/types.js +1 -0
- package/esm/components/date-range-picker-popover/use-is-compact-view.d.ts +1 -0
- package/esm/components/date-range-picker-popover/use-is-compact-view.js +22 -0
- package/esm/components/dialog/dialog-body.d.ts +8 -0
- package/esm/components/dialog/dialog-body.js +47 -0
- package/esm/components/dialog/dialog-context.d.ts +15 -0
- package/esm/components/dialog/dialog-context.js +18 -0
- package/esm/components/dialog/dialog-footer.d.ts +5 -0
- package/esm/components/dialog/dialog-footer.js +5 -0
- package/esm/components/dialog/dialog-header.d.ts +8 -0
- package/esm/components/dialog/dialog-header.js +12 -0
- package/esm/components/dialog/dialog.d.ts +12 -0
- package/esm/components/dialog/dialog.js +42 -0
- package/esm/components/dialog/index.d.ts +4 -0
- package/esm/components/dialog/index.js +4 -0
- package/esm/components/dialog/x-mark-icon.d.ts +2 -0
- package/esm/components/dialog/x-mark-icon.js +4 -0
- package/esm/components/empty-state/empty-state.d.ts +11 -0
- package/esm/components/empty-state/empty-state.js +5 -0
- package/esm/components/empty-state/index.d.ts +1 -0
- package/esm/components/empty-state/index.js +1 -0
- package/esm/components/file-picker/file-picker.d.ts +13 -0
- package/esm/components/file-picker/file-picker.js +41 -0
- package/esm/components/file-picker/index.d.ts +1 -0
- package/esm/components/file-picker/index.js +1 -0
- package/esm/components/filter-buttons/filter-button.d.ts +7 -0
- package/esm/components/filter-buttons/filter-button.js +6 -0
- package/esm/components/filter-buttons/filter-buttons.d.ts +5 -0
- package/esm/components/filter-buttons/filter-buttons.js +22 -0
- package/esm/components/filter-buttons/index.d.ts +2 -0
- package/esm/components/filter-buttons/index.js +2 -0
- package/esm/components/form-field/form-field.d.ts +15 -0
- package/esm/components/form-field/form-field.js +21 -0
- package/esm/components/form-field/index.d.ts +1 -0
- package/esm/components/form-field/index.js +1 -0
- package/esm/components/label/index.d.ts +1 -0
- package/esm/components/label/index.js +1 -0
- package/esm/components/label/label.d.ts +5 -0
- package/esm/components/label/label.js +8 -0
- package/esm/components/menu/index.d.ts +3 -0
- package/esm/components/menu/index.js +3 -0
- package/esm/components/menu/menu-item.d.ts +11 -0
- package/esm/components/menu/menu-item.js +9 -0
- package/esm/components/menu/menu-separator.d.ts +6 -0
- package/esm/components/menu/menu-separator.js +5 -0
- package/esm/components/menu/menu.d.ts +31 -0
- package/esm/components/menu/menu.js +190 -0
- package/esm/components/nav-list/index.d.ts +3 -0
- package/esm/components/nav-list/index.js +3 -0
- package/esm/components/nav-list/nav-list-item.d.ts +13 -0
- package/esm/components/nav-list/nav-list-item.js +15 -0
- package/esm/components/nav-list/nav-list-title.d.ts +8 -0
- package/esm/components/nav-list/nav-list-title.js +5 -0
- package/esm/components/nav-list/nav-list.d.ts +5 -0
- package/esm/components/nav-list/nav-list.js +5 -0
- package/esm/components/password-input/icons.d.ts +3 -0
- package/esm/components/password-input/icons.js +7 -0
- package/esm/components/password-input/index.d.ts +1 -0
- package/esm/components/password-input/index.js +1 -0
- package/esm/components/password-input/password-input.d.ts +10 -0
- package/esm/components/password-input/password-input.js +25 -0
- package/esm/components/popover/index.d.ts +1 -0
- package/esm/components/popover/index.js +1 -0
- package/esm/components/popover/popover.d.ts +49 -0
- package/esm/components/popover/popover.js +94 -0
- package/esm/components/popover/use-page-click.d.ts +16 -0
- package/esm/components/popover/use-page-click.js +46 -0
- package/esm/components/portal/index.d.ts +1 -0
- package/esm/components/portal/index.js +1 -0
- package/esm/components/portal/portal-context.d.ts +6 -0
- package/esm/components/portal/portal-context.js +21 -0
- package/esm/components/portal/portal.d.ts +5 -0
- package/esm/components/portal/portal.js +6 -0
- package/esm/components/positioner/calc-position.d.ts +32 -0
- package/esm/components/positioner/calc-position.js +112 -0
- package/esm/components/positioner/index.d.ts +1 -0
- package/esm/components/positioner/index.js +1 -0
- package/esm/components/positioner/positioner.d.ts +20 -0
- package/esm/components/positioner/positioner.js +59 -0
- package/esm/components/positioner/types.d.ts +14 -0
- package/esm/components/positioner/types.js +1 -0
- package/esm/components/radio/index.d.ts +1 -0
- package/esm/components/radio/index.js +1 -0
- package/esm/components/radio/radio.d.ts +11 -0
- package/esm/components/radio/radio.js +19 -0
- package/esm/components/segmented-control/index.d.ts +1 -0
- package/esm/components/segmented-control/index.js +1 -0
- package/esm/components/segmented-control/segmented-control-button.d.ts +10 -0
- package/esm/components/segmented-control/segmented-control-button.js +10 -0
- package/esm/components/segmented-control/segmented-control.d.ts +15 -0
- package/esm/components/segmented-control/segmented-control.js +43 -0
- package/esm/components/select/index.d.ts +1 -0
- package/esm/components/select/index.js +1 -0
- package/esm/components/select/select.d.ts +46 -0
- package/esm/components/select/select.js +22 -0
- package/esm/components/selection-control/index.d.ts +1 -0
- package/esm/components/selection-control/index.js +1 -0
- package/esm/components/selection-control/selection-control.d.ts +14 -0
- package/esm/components/selection-control/selection-control.js +13 -0
- package/esm/components/slider/index.d.ts +2 -0
- package/esm/components/slider/index.js +2 -0
- package/esm/components/slider/slider-tick-marks.d.ts +7 -0
- package/esm/components/slider/slider-tick-marks.js +12 -0
- package/esm/components/slider/slider.d.ts +17 -0
- package/esm/components/slider/slider.js +36 -0
- package/esm/components/spinner/index.d.ts +1 -0
- package/esm/components/spinner/index.js +1 -0
- package/esm/components/spinner/spinner.d.ts +7 -0
- package/esm/components/spinner/spinner.js +6 -0
- package/esm/components/switch/index.d.ts +1 -0
- package/esm/components/switch/index.js +1 -0
- package/esm/components/switch/switch.d.ts +10 -0
- package/esm/components/switch/switch.js +10 -0
- package/esm/components/table/icons.d.ts +4 -0
- package/esm/components/table/icons.js +10 -0
- package/esm/components/table/index.d.ts +7 -0
- package/esm/components/table/index.js +7 -0
- package/esm/components/table/table-body.d.ts +5 -0
- package/esm/components/table/table-body.js +6 -0
- package/esm/components/table/table-cell.d.ts +5 -0
- package/esm/components/table/table-cell.js +6 -0
- package/esm/components/table/table-container.d.ts +13 -0
- package/esm/components/table/table-container.js +18 -0
- package/esm/components/table/table-head-cell.d.ts +10 -0
- package/esm/components/table/table-head-cell.js +25 -0
- package/esm/components/table/table-head.d.ts +7 -0
- package/esm/components/table/table-head.js +9 -0
- package/esm/components/table/table-row.d.ts +7 -0
- package/esm/components/table/table-row.js +9 -0
- package/esm/components/table/table.d.ts +11 -0
- package/esm/components/table/table.js +11 -0
- package/esm/components/tabs/index.d.ts +4 -0
- package/esm/components/tabs/index.js +4 -0
- package/esm/components/tabs/tab-list.d.ts +3 -0
- package/esm/components/tabs/tab-list.js +62 -0
- package/esm/components/tabs/tab-panel.d.ts +6 -0
- package/esm/components/tabs/tab-panel.js +11 -0
- package/esm/components/tabs/tab.d.ts +7 -0
- package/esm/components/tabs/tab.js +14 -0
- package/esm/components/tabs/tabs-context.d.ts +20 -0
- package/esm/components/tabs/tabs-context.js +25 -0
- package/esm/components/tabs/tabs.d.ts +7 -0
- package/esm/components/tabs/tabs.js +6 -0
- package/esm/components/tabs/types.d.ts +2 -0
- package/esm/components/tabs/types.js +1 -0
- package/esm/components/tag/index.d.ts +1 -0
- package/esm/components/tag/index.js +1 -0
- package/esm/components/tag/tag.d.ts +13 -0
- package/esm/components/tag/tag.js +10 -0
- package/esm/components/text-input/index.d.ts +1 -0
- package/esm/components/text-input/index.js +1 -0
- package/esm/components/text-input/text-input.d.ts +21 -0
- package/esm/components/text-input/text-input.js +21 -0
- package/esm/components/textarea/index.d.ts +1 -0
- package/esm/components/textarea/index.js +1 -0
- package/esm/components/textarea/textarea.d.ts +20 -0
- package/esm/components/textarea/textarea.js +35 -0
- package/esm/components/toast/index.d.ts +2 -0
- package/esm/components/toast/index.js +2 -0
- package/esm/components/toast/toast-button.d.ts +5 -0
- package/esm/components/toast/toast-button.js +6 -0
- package/esm/components/toast/toast.d.ts +11 -0
- package/esm/components/toast/toast.js +6 -0
- package/esm/components/toast/x-mark-icon.d.ts +2 -0
- package/esm/components/toast/x-mark-icon.js +4 -0
- package/esm/components/toaster/index.d.ts +1 -0
- package/esm/components/toaster/index.js +1 -0
- package/esm/components/toaster/toaster.d.ts +40 -0
- package/esm/components/toaster/toaster.js +130 -0
- package/esm/components/tooltip/index.d.ts +1 -0
- package/esm/components/tooltip/index.js +1 -0
- package/esm/components/tooltip/tooltip.d.ts +25 -0
- package/esm/components/tooltip/tooltip.js +75 -0
- package/esm/hooks/index.d.ts +4 -0
- package/esm/hooks/index.js +4 -0
- package/esm/hooks/use-disable-body-scroll.d.ts +5 -0
- package/esm/hooks/use-disable-body-scroll.js +30 -0
- package/esm/hooks/use-esc-key-down.d.ts +17 -0
- package/esm/hooks/use-esc-key-down.js +49 -0
- package/esm/hooks/use-focus-trap.d.ts +15 -0
- package/esm/hooks/use-focus-trap.js +82 -0
- package/esm/hooks/use-mount-transition.d.ts +32 -0
- package/esm/hooks/use-mount-transition.js +36 -0
- package/esm/index.d.ts +37 -0
- package/esm/index.js +37 -0
- package/esm/shared/keyboard-keys.d.ts +14 -0
- package/esm/shared/keyboard-keys.js +14 -0
- package/esm/shared/react-helpers.d.ts +13 -0
- package/esm/shared/react-helpers.js +42 -0
- package/esm/shared/util.d.ts +2 -0
- package/esm/shared/util.js +16 -0
- package/package.json +65 -67
- package/bootstrap-icons/123.d.ts +0 -5
- package/bootstrap-icons/123.js +0 -12
- package/bootstrap-icons/activity.d.ts +0 -5
- package/bootstrap-icons/activity.js +0 -12
- package/bootstrap-icons/alarm-fill.d.ts +0 -5
- package/bootstrap-icons/alarm-fill.js +0 -12
- package/bootstrap-icons/alarm.d.ts +0 -5
- package/bootstrap-icons/alarm.js +0 -12
- package/bootstrap-icons/align-bottom.d.ts +0 -5
- package/bootstrap-icons/align-bottom.js +0 -12
- package/bootstrap-icons/align-center.d.ts +0 -5
- package/bootstrap-icons/align-center.js +0 -12
- package/bootstrap-icons/align-end.d.ts +0 -5
- package/bootstrap-icons/align-end.js +0 -12
- package/bootstrap-icons/align-middle.d.ts +0 -5
- package/bootstrap-icons/align-middle.js +0 -12
- package/bootstrap-icons/align-start.d.ts +0 -5
- package/bootstrap-icons/align-start.js +0 -12
- package/bootstrap-icons/align-top.d.ts +0 -5
- package/bootstrap-icons/align-top.js +0 -12
- package/bootstrap-icons/alt.d.ts +0 -5
- package/bootstrap-icons/alt.js +0 -12
- package/bootstrap-icons/app-indicator.d.ts +0 -5
- package/bootstrap-icons/app-indicator.js +0 -12
- package/bootstrap-icons/app.d.ts +0 -5
- package/bootstrap-icons/app.js +0 -12
- package/bootstrap-icons/apple.d.ts +0 -5
- package/bootstrap-icons/apple.js +0 -12
- package/bootstrap-icons/archive-fill.d.ts +0 -5
- package/bootstrap-icons/archive-fill.js +0 -12
- package/bootstrap-icons/archive.d.ts +0 -5
- package/bootstrap-icons/archive.js +0 -12
- package/bootstrap-icons/arrow-90deg-down.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-down.js +0 -12
- package/bootstrap-icons/arrow-90deg-left.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-left.js +0 -12
- package/bootstrap-icons/arrow-90deg-right.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-right.js +0 -12
- package/bootstrap-icons/arrow-90deg-up.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-up.js +0 -12
- package/bootstrap-icons/arrow-bar-down.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-down.js +0 -12
- package/bootstrap-icons/arrow-bar-left.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-left.js +0 -12
- package/bootstrap-icons/arrow-bar-right.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-right.js +0 -12
- package/bootstrap-icons/arrow-bar-up.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-up.js +0 -12
- package/bootstrap-icons/arrow-clockwise.d.ts +0 -5
- package/bootstrap-icons/arrow-clockwise.js +0 -12
- package/bootstrap-icons/arrow-counterclockwise.d.ts +0 -5
- package/bootstrap-icons/arrow-counterclockwise.js +0 -12
- package/bootstrap-icons/arrow-down-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-circle.js +0 -12
- package/bootstrap-icons/arrow-down-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-circle.js +0 -12
- package/bootstrap-icons/arrow-down-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-square.js +0 -12
- package/bootstrap-icons/arrow-down-left.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left.js +0 -12
- package/bootstrap-icons/arrow-down-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-circle.js +0 -12
- package/bootstrap-icons/arrow-down-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-square.js +0 -12
- package/bootstrap-icons/arrow-down-right.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right.js +0 -12
- package/bootstrap-icons/arrow-down-short.d.ts +0 -5
- package/bootstrap-icons/arrow-down-short.js +0 -12
- package/bootstrap-icons/arrow-down-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-square.js +0 -12
- package/bootstrap-icons/arrow-down-up.d.ts +0 -5
- package/bootstrap-icons/arrow-down-up.js +0 -12
- package/bootstrap-icons/arrow-down.d.ts +0 -5
- package/bootstrap-icons/arrow-down.js +0 -12
- package/bootstrap-icons/arrow-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-left-circle.js +0 -12
- package/bootstrap-icons/arrow-left-right.d.ts +0 -5
- package/bootstrap-icons/arrow-left-right.js +0 -12
- package/bootstrap-icons/arrow-left-short.d.ts +0 -5
- package/bootstrap-icons/arrow-left-short.js +0 -12
- package/bootstrap-icons/arrow-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-left-square.js +0 -12
- package/bootstrap-icons/arrow-left.d.ts +0 -5
- package/bootstrap-icons/arrow-left.js +0 -12
- package/bootstrap-icons/arrow-repeat.d.ts +0 -5
- package/bootstrap-icons/arrow-repeat.js +0 -12
- package/bootstrap-icons/arrow-return-left.d.ts +0 -5
- package/bootstrap-icons/arrow-return-left.js +0 -12
- package/bootstrap-icons/arrow-return-right.d.ts +0 -5
- package/bootstrap-icons/arrow-return-right.js +0 -12
- package/bootstrap-icons/arrow-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-right-circle.js +0 -12
- package/bootstrap-icons/arrow-right-short.d.ts +0 -5
- package/bootstrap-icons/arrow-right-short.js +0 -12
- package/bootstrap-icons/arrow-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-right-square.js +0 -12
- package/bootstrap-icons/arrow-right.d.ts +0 -5
- package/bootstrap-icons/arrow-right.js +0 -12
- package/bootstrap-icons/arrow-through-heart-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-through-heart-fill.js +0 -12
- package/bootstrap-icons/arrow-through-heart.d.ts +0 -5
- package/bootstrap-icons/arrow-through-heart.js +0 -12
- package/bootstrap-icons/arrow-up-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-circle.js +0 -12
- package/bootstrap-icons/arrow-up-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-circle.js +0 -12
- package/bootstrap-icons/arrow-up-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-square.js +0 -12
- package/bootstrap-icons/arrow-up-left.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left.js +0 -12
- package/bootstrap-icons/arrow-up-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-circle.js +0 -12
- package/bootstrap-icons/arrow-up-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-square.js +0 -12
- package/bootstrap-icons/arrow-up-right.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right.js +0 -12
- package/bootstrap-icons/arrow-up-short.d.ts +0 -5
- package/bootstrap-icons/arrow-up-short.js +0 -12
- package/bootstrap-icons/arrow-up-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-square.js +0 -12
- package/bootstrap-icons/arrow-up.d.ts +0 -5
- package/bootstrap-icons/arrow-up.js +0 -12
- package/bootstrap-icons/arrows-angle-contract.d.ts +0 -5
- package/bootstrap-icons/arrows-angle-contract.js +0 -12
- package/bootstrap-icons/arrows-angle-expand.d.ts +0 -5
- package/bootstrap-icons/arrows-angle-expand.js +0 -12
- package/bootstrap-icons/arrows-collapse.d.ts +0 -5
- package/bootstrap-icons/arrows-collapse.js +0 -12
- package/bootstrap-icons/arrows-expand.d.ts +0 -5
- package/bootstrap-icons/arrows-expand.js +0 -12
- package/bootstrap-icons/arrows-fullscreen.d.ts +0 -5
- package/bootstrap-icons/arrows-fullscreen.js +0 -12
- package/bootstrap-icons/arrows-move.d.ts +0 -5
- package/bootstrap-icons/arrows-move.js +0 -12
- package/bootstrap-icons/aspect-ratio-fill.d.ts +0 -5
- package/bootstrap-icons/aspect-ratio-fill.js +0 -12
- package/bootstrap-icons/aspect-ratio.d.ts +0 -5
- package/bootstrap-icons/aspect-ratio.js +0 -12
- package/bootstrap-icons/asterisk.d.ts +0 -5
- package/bootstrap-icons/asterisk.js +0 -12
- package/bootstrap-icons/at.d.ts +0 -5
- package/bootstrap-icons/at.js +0 -12
- package/bootstrap-icons/award-fill.d.ts +0 -5
- package/bootstrap-icons/award-fill.js +0 -12
- package/bootstrap-icons/award.d.ts +0 -5
- package/bootstrap-icons/award.js +0 -12
- package/bootstrap-icons/back.d.ts +0 -5
- package/bootstrap-icons/back.js +0 -12
- package/bootstrap-icons/backspace-fill.d.ts +0 -5
- package/bootstrap-icons/backspace-fill.js +0 -12
- package/bootstrap-icons/backspace-reverse-fill.d.ts +0 -5
- package/bootstrap-icons/backspace-reverse-fill.js +0 -12
- package/bootstrap-icons/backspace-reverse.d.ts +0 -5
- package/bootstrap-icons/backspace-reverse.js +0 -12
- package/bootstrap-icons/backspace.d.ts +0 -5
- package/bootstrap-icons/backspace.js +0 -12
- package/bootstrap-icons/badge-3d-fill.d.ts +0 -5
- package/bootstrap-icons/badge-3d-fill.js +0 -12
- package/bootstrap-icons/badge-3d.d.ts +0 -5
- package/bootstrap-icons/badge-3d.js +0 -12
- package/bootstrap-icons/badge-4k-fill.d.ts +0 -5
- package/bootstrap-icons/badge-4k-fill.js +0 -12
- package/bootstrap-icons/badge-4k.d.ts +0 -5
- package/bootstrap-icons/badge-4k.js +0 -12
- package/bootstrap-icons/badge-8k-fill.d.ts +0 -5
- package/bootstrap-icons/badge-8k-fill.js +0 -12
- package/bootstrap-icons/badge-8k.d.ts +0 -5
- package/bootstrap-icons/badge-8k.js +0 -12
- package/bootstrap-icons/badge-ad-fill.d.ts +0 -5
- package/bootstrap-icons/badge-ad-fill.js +0 -12
- package/bootstrap-icons/badge-ad.d.ts +0 -5
- package/bootstrap-icons/badge-ad.js +0 -12
- package/bootstrap-icons/badge-ar-fill.d.ts +0 -5
- package/bootstrap-icons/badge-ar-fill.js +0 -12
- package/bootstrap-icons/badge-ar.d.ts +0 -5
- package/bootstrap-icons/badge-ar.js +0 -12
- package/bootstrap-icons/badge-cc-fill.d.ts +0 -5
- package/bootstrap-icons/badge-cc-fill.js +0 -12
- package/bootstrap-icons/badge-cc.d.ts +0 -5
- package/bootstrap-icons/badge-cc.js +0 -12
- package/bootstrap-icons/badge-hd-fill.d.ts +0 -5
- package/bootstrap-icons/badge-hd-fill.js +0 -12
- package/bootstrap-icons/badge-hd.d.ts +0 -5
- package/bootstrap-icons/badge-hd.js +0 -12
- package/bootstrap-icons/badge-sd-fill.d.ts +0 -5
- package/bootstrap-icons/badge-sd-fill.js +0 -12
- package/bootstrap-icons/badge-sd.d.ts +0 -5
- package/bootstrap-icons/badge-sd.js +0 -12
- package/bootstrap-icons/badge-tm-fill.d.ts +0 -5
- package/bootstrap-icons/badge-tm-fill.js +0 -12
- package/bootstrap-icons/badge-tm.d.ts +0 -5
- package/bootstrap-icons/badge-tm.js +0 -12
- package/bootstrap-icons/badge-vo-fill.d.ts +0 -5
- package/bootstrap-icons/badge-vo-fill.js +0 -12
- package/bootstrap-icons/badge-vo.d.ts +0 -5
- package/bootstrap-icons/badge-vo.js +0 -12
- package/bootstrap-icons/badge-vr-fill.d.ts +0 -5
- package/bootstrap-icons/badge-vr-fill.js +0 -12
- package/bootstrap-icons/badge-vr.d.ts +0 -5
- package/bootstrap-icons/badge-vr.js +0 -12
- package/bootstrap-icons/badge-wc-fill.d.ts +0 -5
- package/bootstrap-icons/badge-wc-fill.js +0 -12
- package/bootstrap-icons/badge-wc.d.ts +0 -5
- package/bootstrap-icons/badge-wc.js +0 -12
- package/bootstrap-icons/bag-check-fill.d.ts +0 -5
- package/bootstrap-icons/bag-check-fill.js +0 -12
- package/bootstrap-icons/bag-check.d.ts +0 -5
- package/bootstrap-icons/bag-check.js +0 -12
- package/bootstrap-icons/bag-dash-fill.d.ts +0 -5
- package/bootstrap-icons/bag-dash-fill.js +0 -12
- package/bootstrap-icons/bag-dash.d.ts +0 -5
- package/bootstrap-icons/bag-dash.js +0 -12
- package/bootstrap-icons/bag-fill.d.ts +0 -5
- package/bootstrap-icons/bag-fill.js +0 -12
- package/bootstrap-icons/bag-heart-fill.d.ts +0 -5
- package/bootstrap-icons/bag-heart-fill.js +0 -12
- package/bootstrap-icons/bag-heart.d.ts +0 -5
- package/bootstrap-icons/bag-heart.js +0 -12
- package/bootstrap-icons/bag-plus-fill.d.ts +0 -5
- package/bootstrap-icons/bag-plus-fill.js +0 -12
- package/bootstrap-icons/bag-plus.d.ts +0 -5
- package/bootstrap-icons/bag-plus.js +0 -12
- package/bootstrap-icons/bag-x-fill.d.ts +0 -5
- package/bootstrap-icons/bag-x-fill.js +0 -12
- package/bootstrap-icons/bag-x.d.ts +0 -5
- package/bootstrap-icons/bag-x.js +0 -12
- package/bootstrap-icons/bag.d.ts +0 -5
- package/bootstrap-icons/bag.js +0 -12
- package/bootstrap-icons/balloon-fill.d.ts +0 -5
- package/bootstrap-icons/balloon-fill.js +0 -12
- package/bootstrap-icons/balloon-heart-fill.d.ts +0 -5
- package/bootstrap-icons/balloon-heart-fill.js +0 -12
- package/bootstrap-icons/balloon-heart.d.ts +0 -5
- package/bootstrap-icons/balloon-heart.js +0 -12
- package/bootstrap-icons/balloon.d.ts +0 -5
- package/bootstrap-icons/balloon.js +0 -12
- package/bootstrap-icons/bandaid-fill.d.ts +0 -5
- package/bootstrap-icons/bandaid-fill.js +0 -12
- package/bootstrap-icons/bandaid.d.ts +0 -5
- package/bootstrap-icons/bandaid.js +0 -12
- package/bootstrap-icons/bank.d.ts +0 -5
- package/bootstrap-icons/bank.js +0 -12
- package/bootstrap-icons/bank2.d.ts +0 -5
- package/bootstrap-icons/bank2.js +0 -12
- package/bootstrap-icons/bar-chart-fill.d.ts +0 -5
- package/bootstrap-icons/bar-chart-fill.js +0 -12
- package/bootstrap-icons/bar-chart-line-fill.d.ts +0 -5
- package/bootstrap-icons/bar-chart-line-fill.js +0 -12
- package/bootstrap-icons/bar-chart-line.d.ts +0 -5
- package/bootstrap-icons/bar-chart-line.js +0 -12
- package/bootstrap-icons/bar-chart-steps.d.ts +0 -5
- package/bootstrap-icons/bar-chart-steps.js +0 -12
- package/bootstrap-icons/bar-chart.d.ts +0 -5
- package/bootstrap-icons/bar-chart.js +0 -12
- package/bootstrap-icons/basket-fill.d.ts +0 -5
- package/bootstrap-icons/basket-fill.js +0 -12
- package/bootstrap-icons/basket.d.ts +0 -5
- package/bootstrap-icons/basket.js +0 -12
- package/bootstrap-icons/basket2-fill.d.ts +0 -5
- package/bootstrap-icons/basket2-fill.js +0 -12
- package/bootstrap-icons/basket2.d.ts +0 -5
- package/bootstrap-icons/basket2.js +0 -12
- package/bootstrap-icons/basket3-fill.d.ts +0 -5
- package/bootstrap-icons/basket3-fill.js +0 -12
- package/bootstrap-icons/basket3.d.ts +0 -5
- package/bootstrap-icons/basket3.js +0 -12
- package/bootstrap-icons/battery-charging.d.ts +0 -5
- package/bootstrap-icons/battery-charging.js +0 -12
- package/bootstrap-icons/battery-full.d.ts +0 -5
- package/bootstrap-icons/battery-full.js +0 -12
- package/bootstrap-icons/battery-half.d.ts +0 -5
- package/bootstrap-icons/battery-half.js +0 -12
- package/bootstrap-icons/battery.d.ts +0 -5
- package/bootstrap-icons/battery.js +0 -12
- package/bootstrap-icons/behance.d.ts +0 -5
- package/bootstrap-icons/behance.js +0 -12
- package/bootstrap-icons/bell-fill.d.ts +0 -5
- package/bootstrap-icons/bell-fill.js +0 -12
- package/bootstrap-icons/bell-slash-fill.d.ts +0 -5
- package/bootstrap-icons/bell-slash-fill.js +0 -12
- package/bootstrap-icons/bell-slash.d.ts +0 -5
- package/bootstrap-icons/bell-slash.js +0 -12
- package/bootstrap-icons/bell.d.ts +0 -5
- package/bootstrap-icons/bell.js +0 -12
- package/bootstrap-icons/bezier.d.ts +0 -5
- package/bootstrap-icons/bezier.js +0 -12
- package/bootstrap-icons/bezier2.d.ts +0 -5
- package/bootstrap-icons/bezier2.js +0 -12
- package/bootstrap-icons/bicycle.d.ts +0 -5
- package/bootstrap-icons/bicycle.js +0 -12
- package/bootstrap-icons/binoculars-fill.d.ts +0 -5
- package/bootstrap-icons/binoculars-fill.js +0 -12
- package/bootstrap-icons/binoculars.d.ts +0 -5
- package/bootstrap-icons/binoculars.js +0 -12
- package/bootstrap-icons/blockquote-left.d.ts +0 -5
- package/bootstrap-icons/blockquote-left.js +0 -12
- package/bootstrap-icons/blockquote-right.d.ts +0 -5
- package/bootstrap-icons/blockquote-right.js +0 -12
- package/bootstrap-icons/bluetooth.d.ts +0 -5
- package/bootstrap-icons/bluetooth.js +0 -12
- package/bootstrap-icons/body-text.d.ts +0 -5
- package/bootstrap-icons/body-text.js +0 -12
- package/bootstrap-icons/book-fill.d.ts +0 -5
- package/bootstrap-icons/book-fill.js +0 -12
- package/bootstrap-icons/book-half.d.ts +0 -5
- package/bootstrap-icons/book-half.js +0 -12
- package/bootstrap-icons/book.d.ts +0 -5
- package/bootstrap-icons/book.js +0 -12
- package/bootstrap-icons/bookmark-check-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-check-fill.js +0 -12
- package/bootstrap-icons/bookmark-check.d.ts +0 -5
- package/bootstrap-icons/bookmark-check.js +0 -12
- package/bootstrap-icons/bookmark-dash-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-dash-fill.js +0 -12
- package/bootstrap-icons/bookmark-dash.d.ts +0 -5
- package/bootstrap-icons/bookmark-dash.js +0 -12
- package/bootstrap-icons/bookmark-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-fill.js +0 -12
- package/bootstrap-icons/bookmark-heart-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-heart-fill.js +0 -12
- package/bootstrap-icons/bookmark-heart.d.ts +0 -5
- package/bootstrap-icons/bookmark-heart.js +0 -12
- package/bootstrap-icons/bookmark-plus-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-plus-fill.js +0 -12
- package/bootstrap-icons/bookmark-plus.d.ts +0 -5
- package/bootstrap-icons/bookmark-plus.js +0 -12
- package/bootstrap-icons/bookmark-star-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-star-fill.js +0 -12
- package/bootstrap-icons/bookmark-star.d.ts +0 -5
- package/bootstrap-icons/bookmark-star.js +0 -12
- package/bootstrap-icons/bookmark-x-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-x-fill.js +0 -12
- package/bootstrap-icons/bookmark-x.d.ts +0 -5
- package/bootstrap-icons/bookmark-x.js +0 -12
- package/bootstrap-icons/bookmark.d.ts +0 -5
- package/bootstrap-icons/bookmark.js +0 -12
- package/bootstrap-icons/bookmarks-fill.d.ts +0 -5
- package/bootstrap-icons/bookmarks-fill.js +0 -12
- package/bootstrap-icons/bookmarks.d.ts +0 -5
- package/bootstrap-icons/bookmarks.js +0 -12
- package/bootstrap-icons/bookshelf.d.ts +0 -5
- package/bootstrap-icons/bookshelf.js +0 -12
- package/bootstrap-icons/boombox-fill.d.ts +0 -5
- package/bootstrap-icons/boombox-fill.js +0 -12
- package/bootstrap-icons/boombox.d.ts +0 -5
- package/bootstrap-icons/boombox.js +0 -12
- package/bootstrap-icons/bootstrap-fill.d.ts +0 -5
- package/bootstrap-icons/bootstrap-fill.js +0 -12
- package/bootstrap-icons/bootstrap-reboot.d.ts +0 -5
- package/bootstrap-icons/bootstrap-reboot.js +0 -12
- package/bootstrap-icons/bootstrap.d.ts +0 -5
- package/bootstrap-icons/bootstrap.js +0 -12
- package/bootstrap-icons/border-all.d.ts +0 -5
- package/bootstrap-icons/border-all.js +0 -12
- package/bootstrap-icons/border-bottom.d.ts +0 -5
- package/bootstrap-icons/border-bottom.js +0 -12
- package/bootstrap-icons/border-center.d.ts +0 -5
- package/bootstrap-icons/border-center.js +0 -12
- package/bootstrap-icons/border-inner.d.ts +0 -5
- package/bootstrap-icons/border-inner.js +0 -12
- package/bootstrap-icons/border-left.d.ts +0 -5
- package/bootstrap-icons/border-left.js +0 -12
- package/bootstrap-icons/border-middle.d.ts +0 -5
- package/bootstrap-icons/border-middle.js +0 -12
- package/bootstrap-icons/border-outer.d.ts +0 -5
- package/bootstrap-icons/border-outer.js +0 -12
- package/bootstrap-icons/border-right.d.ts +0 -5
- package/bootstrap-icons/border-right.js +0 -12
- package/bootstrap-icons/border-style.d.ts +0 -5
- package/bootstrap-icons/border-style.js +0 -12
- package/bootstrap-icons/border-top.d.ts +0 -5
- package/bootstrap-icons/border-top.js +0 -12
- package/bootstrap-icons/border-width.d.ts +0 -5
- package/bootstrap-icons/border-width.js +0 -12
- package/bootstrap-icons/border.d.ts +0 -5
- package/bootstrap-icons/border.js +0 -12
- package/bootstrap-icons/bounding-box-circles.d.ts +0 -5
- package/bootstrap-icons/bounding-box-circles.js +0 -12
- package/bootstrap-icons/bounding-box.d.ts +0 -5
- package/bootstrap-icons/bounding-box.js +0 -12
- package/bootstrap-icons/box-arrow-down-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down-left.js +0 -12
- package/bootstrap-icons/box-arrow-down-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down-right.js +0 -12
- package/bootstrap-icons/box-arrow-down.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down.js +0 -12
- package/bootstrap-icons/box-arrow-in-down-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-down-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-down.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down.js +0 -12
- package/bootstrap-icons/box-arrow-in-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-up-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-up-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-up.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up.js +0 -12
- package/bootstrap-icons/box-arrow-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-left.js +0 -12
- package/bootstrap-icons/box-arrow-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-right.js +0 -12
- package/bootstrap-icons/box-arrow-up-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up-left.js +0 -12
- package/bootstrap-icons/box-arrow-up-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up-right.js +0 -12
- package/bootstrap-icons/box-arrow-up.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up.js +0 -12
- package/bootstrap-icons/box-seam.d.ts +0 -5
- package/bootstrap-icons/box-seam.js +0 -12
- package/bootstrap-icons/box.d.ts +0 -5
- package/bootstrap-icons/box.js +0 -12
- package/bootstrap-icons/box2-fill.d.ts +0 -5
- package/bootstrap-icons/box2-fill.js +0 -12
- package/bootstrap-icons/box2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/box2-heart-fill.js +0 -12
- package/bootstrap-icons/box2-heart.d.ts +0 -5
- package/bootstrap-icons/box2-heart.js +0 -12
- package/bootstrap-icons/box2.d.ts +0 -5
- package/bootstrap-icons/box2.js +0 -12
- package/bootstrap-icons/boxes.d.ts +0 -5
- package/bootstrap-icons/boxes.js +0 -12
- package/bootstrap-icons/braces-asterisk.d.ts +0 -5
- package/bootstrap-icons/braces-asterisk.js +0 -12
- package/bootstrap-icons/braces.d.ts +0 -5
- package/bootstrap-icons/braces.js +0 -12
- package/bootstrap-icons/bricks.d.ts +0 -5
- package/bootstrap-icons/bricks.js +0 -12
- package/bootstrap-icons/briefcase-fill.d.ts +0 -5
- package/bootstrap-icons/briefcase-fill.js +0 -12
- package/bootstrap-icons/briefcase.d.ts +0 -5
- package/bootstrap-icons/briefcase.js +0 -12
- package/bootstrap-icons/brightness-alt-high-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-high-fill.js +0 -12
- package/bootstrap-icons/brightness-alt-high.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-high.js +0 -12
- package/bootstrap-icons/brightness-alt-low-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-low-fill.js +0 -12
- package/bootstrap-icons/brightness-alt-low.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-low.js +0 -12
- package/bootstrap-icons/brightness-high-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-high-fill.js +0 -12
- package/bootstrap-icons/brightness-high.d.ts +0 -5
- package/bootstrap-icons/brightness-high.js +0 -12
- package/bootstrap-icons/brightness-low-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-low-fill.js +0 -12
- package/bootstrap-icons/brightness-low.d.ts +0 -5
- package/bootstrap-icons/brightness-low.js +0 -12
- package/bootstrap-icons/broadcast-pin.d.ts +0 -5
- package/bootstrap-icons/broadcast-pin.js +0 -12
- package/bootstrap-icons/broadcast.d.ts +0 -5
- package/bootstrap-icons/broadcast.js +0 -12
- package/bootstrap-icons/brush-fill.d.ts +0 -5
- package/bootstrap-icons/brush-fill.js +0 -12
- package/bootstrap-icons/brush.d.ts +0 -5
- package/bootstrap-icons/brush.js +0 -12
- package/bootstrap-icons/bucket-fill.d.ts +0 -5
- package/bootstrap-icons/bucket-fill.js +0 -12
- package/bootstrap-icons/bucket.d.ts +0 -5
- package/bootstrap-icons/bucket.js +0 -12
- package/bootstrap-icons/bug-fill.d.ts +0 -5
- package/bootstrap-icons/bug-fill.js +0 -12
- package/bootstrap-icons/bug.d.ts +0 -5
- package/bootstrap-icons/bug.js +0 -12
- package/bootstrap-icons/building.d.ts +0 -5
- package/bootstrap-icons/building.js +0 -12
- package/bootstrap-icons/bullseye.d.ts +0 -5
- package/bootstrap-icons/bullseye.js +0 -12
- package/bootstrap-icons/calculator-fill.d.ts +0 -5
- package/bootstrap-icons/calculator-fill.js +0 -12
- package/bootstrap-icons/calculator.d.ts +0 -5
- package/bootstrap-icons/calculator.js +0 -12
- package/bootstrap-icons/calendar-check-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-check-fill.js +0 -12
- package/bootstrap-icons/calendar-check.d.ts +0 -5
- package/bootstrap-icons/calendar-check.js +0 -12
- package/bootstrap-icons/calendar-date-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-date-fill.js +0 -12
- package/bootstrap-icons/calendar-date.d.ts +0 -5
- package/bootstrap-icons/calendar-date.js +0 -12
- package/bootstrap-icons/calendar-day-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-day-fill.js +0 -12
- package/bootstrap-icons/calendar-day.d.ts +0 -5
- package/bootstrap-icons/calendar-day.js +0 -12
- package/bootstrap-icons/calendar-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-event-fill.js +0 -12
- package/bootstrap-icons/calendar-event.d.ts +0 -5
- package/bootstrap-icons/calendar-event.js +0 -12
- package/bootstrap-icons/calendar-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-fill.js +0 -12
- package/bootstrap-icons/calendar-heart-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-heart-fill.js +0 -12
- package/bootstrap-icons/calendar-heart.d.ts +0 -5
- package/bootstrap-icons/calendar-heart.js +0 -12
- package/bootstrap-icons/calendar-minus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-minus-fill.js +0 -12
- package/bootstrap-icons/calendar-minus.d.ts +0 -5
- package/bootstrap-icons/calendar-minus.js +0 -12
- package/bootstrap-icons/calendar-month-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-month-fill.js +0 -12
- package/bootstrap-icons/calendar-month.d.ts +0 -5
- package/bootstrap-icons/calendar-month.js +0 -12
- package/bootstrap-icons/calendar-plus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-plus-fill.js +0 -12
- package/bootstrap-icons/calendar-plus.d.ts +0 -5
- package/bootstrap-icons/calendar-plus.js +0 -12
- package/bootstrap-icons/calendar-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-range-fill.js +0 -12
- package/bootstrap-icons/calendar-range.d.ts +0 -5
- package/bootstrap-icons/calendar-range.js +0 -12
- package/bootstrap-icons/calendar-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-week-fill.js +0 -12
- package/bootstrap-icons/calendar-week.d.ts +0 -5
- package/bootstrap-icons/calendar-week.js +0 -12
- package/bootstrap-icons/calendar-x-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-x-fill.js +0 -12
- package/bootstrap-icons/calendar-x.d.ts +0 -5
- package/bootstrap-icons/calendar-x.js +0 -12
- package/bootstrap-icons/calendar.d.ts +0 -5
- package/bootstrap-icons/calendar.js +0 -12
- package/bootstrap-icons/calendar2-check-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-check-fill.js +0 -12
- package/bootstrap-icons/calendar2-check.d.ts +0 -5
- package/bootstrap-icons/calendar2-check.js +0 -12
- package/bootstrap-icons/calendar2-date-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-date-fill.js +0 -12
- package/bootstrap-icons/calendar2-date.d.ts +0 -5
- package/bootstrap-icons/calendar2-date.js +0 -12
- package/bootstrap-icons/calendar2-day-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-day-fill.js +0 -12
- package/bootstrap-icons/calendar2-day.d.ts +0 -5
- package/bootstrap-icons/calendar2-day.js +0 -12
- package/bootstrap-icons/calendar2-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-event-fill.js +0 -12
- package/bootstrap-icons/calendar2-event.d.ts +0 -5
- package/bootstrap-icons/calendar2-event.js +0 -12
- package/bootstrap-icons/calendar2-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-fill.js +0 -12
- package/bootstrap-icons/calendar2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-heart-fill.js +0 -12
- package/bootstrap-icons/calendar2-heart.d.ts +0 -5
- package/bootstrap-icons/calendar2-heart.js +0 -12
- package/bootstrap-icons/calendar2-minus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-minus-fill.js +0 -12
- package/bootstrap-icons/calendar2-minus.d.ts +0 -5
- package/bootstrap-icons/calendar2-minus.js +0 -12
- package/bootstrap-icons/calendar2-month-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-month-fill.js +0 -12
- package/bootstrap-icons/calendar2-month.d.ts +0 -5
- package/bootstrap-icons/calendar2-month.js +0 -12
- package/bootstrap-icons/calendar2-plus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-plus-fill.js +0 -12
- package/bootstrap-icons/calendar2-plus.d.ts +0 -5
- package/bootstrap-icons/calendar2-plus.js +0 -12
- package/bootstrap-icons/calendar2-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-range-fill.js +0 -12
- package/bootstrap-icons/calendar2-range.d.ts +0 -5
- package/bootstrap-icons/calendar2-range.js +0 -12
- package/bootstrap-icons/calendar2-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-week-fill.js +0 -12
- package/bootstrap-icons/calendar2-week.d.ts +0 -5
- package/bootstrap-icons/calendar2-week.js +0 -12
- package/bootstrap-icons/calendar2-x-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-x-fill.js +0 -12
- package/bootstrap-icons/calendar2-x.d.ts +0 -5
- package/bootstrap-icons/calendar2-x.js +0 -12
- package/bootstrap-icons/calendar2.d.ts +0 -5
- package/bootstrap-icons/calendar2.js +0 -12
- package/bootstrap-icons/calendar3-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-event-fill.js +0 -12
- package/bootstrap-icons/calendar3-event.d.ts +0 -5
- package/bootstrap-icons/calendar3-event.js +0 -12
- package/bootstrap-icons/calendar3-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-fill.js +0 -12
- package/bootstrap-icons/calendar3-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-range-fill.js +0 -12
- package/bootstrap-icons/calendar3-range.d.ts +0 -5
- package/bootstrap-icons/calendar3-range.js +0 -12
- package/bootstrap-icons/calendar3-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-week-fill.js +0 -12
- package/bootstrap-icons/calendar3-week.d.ts +0 -5
- package/bootstrap-icons/calendar3-week.js +0 -12
- package/bootstrap-icons/calendar3.d.ts +0 -5
- package/bootstrap-icons/calendar3.js +0 -12
- package/bootstrap-icons/calendar4-event.d.ts +0 -5
- package/bootstrap-icons/calendar4-event.js +0 -12
- package/bootstrap-icons/calendar4-range.d.ts +0 -5
- package/bootstrap-icons/calendar4-range.js +0 -12
- package/bootstrap-icons/calendar4-week.d.ts +0 -5
- package/bootstrap-icons/calendar4-week.js +0 -12
- package/bootstrap-icons/calendar4.d.ts +0 -5
- package/bootstrap-icons/calendar4.js +0 -12
- package/bootstrap-icons/camera-fill.d.ts +0 -5
- package/bootstrap-icons/camera-fill.js +0 -12
- package/bootstrap-icons/camera-reels-fill.d.ts +0 -5
- package/bootstrap-icons/camera-reels-fill.js +0 -12
- package/bootstrap-icons/camera-reels.d.ts +0 -5
- package/bootstrap-icons/camera-reels.js +0 -12
- package/bootstrap-icons/camera-video-fill.d.ts +0 -5
- package/bootstrap-icons/camera-video-fill.js +0 -12
- package/bootstrap-icons/camera-video-off-fill.d.ts +0 -5
- package/bootstrap-icons/camera-video-off-fill.js +0 -12
- package/bootstrap-icons/camera-video-off.d.ts +0 -5
- package/bootstrap-icons/camera-video-off.js +0 -12
- package/bootstrap-icons/camera-video.d.ts +0 -5
- package/bootstrap-icons/camera-video.js +0 -12
- package/bootstrap-icons/camera.d.ts +0 -5
- package/bootstrap-icons/camera.js +0 -12
- package/bootstrap-icons/camera2.d.ts +0 -5
- package/bootstrap-icons/camera2.js +0 -12
- package/bootstrap-icons/capslock-fill.d.ts +0 -5
- package/bootstrap-icons/capslock-fill.js +0 -12
- package/bootstrap-icons/capslock.d.ts +0 -5
- package/bootstrap-icons/capslock.js +0 -12
- package/bootstrap-icons/card-checklist.d.ts +0 -5
- package/bootstrap-icons/card-checklist.js +0 -12
- package/bootstrap-icons/card-heading.d.ts +0 -5
- package/bootstrap-icons/card-heading.js +0 -12
- package/bootstrap-icons/card-image.d.ts +0 -5
- package/bootstrap-icons/card-image.js +0 -12
- package/bootstrap-icons/card-list.d.ts +0 -5
- package/bootstrap-icons/card-list.js +0 -12
- package/bootstrap-icons/card-text.d.ts +0 -5
- package/bootstrap-icons/card-text.js +0 -12
- package/bootstrap-icons/caret-down-fill.d.ts +0 -5
- package/bootstrap-icons/caret-down-fill.js +0 -12
- package/bootstrap-icons/caret-down-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-down-square-fill.js +0 -12
- package/bootstrap-icons/caret-down-square.d.ts +0 -5
- package/bootstrap-icons/caret-down-square.js +0 -12
- package/bootstrap-icons/caret-down.d.ts +0 -5
- package/bootstrap-icons/caret-down.js +0 -12
- package/bootstrap-icons/caret-left-fill.d.ts +0 -5
- package/bootstrap-icons/caret-left-fill.js +0 -12
- package/bootstrap-icons/caret-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-left-square-fill.js +0 -12
- package/bootstrap-icons/caret-left-square.d.ts +0 -5
- package/bootstrap-icons/caret-left-square.js +0 -12
- package/bootstrap-icons/caret-left.d.ts +0 -5
- package/bootstrap-icons/caret-left.js +0 -12
- package/bootstrap-icons/caret-right-fill.d.ts +0 -5
- package/bootstrap-icons/caret-right-fill.js +0 -12
- package/bootstrap-icons/caret-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-right-square-fill.js +0 -12
- package/bootstrap-icons/caret-right-square.d.ts +0 -5
- package/bootstrap-icons/caret-right-square.js +0 -12
- package/bootstrap-icons/caret-right.d.ts +0 -5
- package/bootstrap-icons/caret-right.js +0 -12
- package/bootstrap-icons/caret-up-fill.d.ts +0 -5
- package/bootstrap-icons/caret-up-fill.js +0 -12
- package/bootstrap-icons/caret-up-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-up-square-fill.js +0 -12
- package/bootstrap-icons/caret-up-square.d.ts +0 -5
- package/bootstrap-icons/caret-up-square.js +0 -12
- package/bootstrap-icons/caret-up.d.ts +0 -5
- package/bootstrap-icons/caret-up.js +0 -12
- package/bootstrap-icons/cart-check-fill.d.ts +0 -5
- package/bootstrap-icons/cart-check-fill.js +0 -12
- package/bootstrap-icons/cart-check.d.ts +0 -5
- package/bootstrap-icons/cart-check.js +0 -12
- package/bootstrap-icons/cart-dash-fill.d.ts +0 -5
- package/bootstrap-icons/cart-dash-fill.js +0 -12
- package/bootstrap-icons/cart-dash.d.ts +0 -5
- package/bootstrap-icons/cart-dash.js +0 -12
- package/bootstrap-icons/cart-fill.d.ts +0 -5
- package/bootstrap-icons/cart-fill.js +0 -12
- package/bootstrap-icons/cart-plus-fill.d.ts +0 -5
- package/bootstrap-icons/cart-plus-fill.js +0 -12
- package/bootstrap-icons/cart-plus.d.ts +0 -5
- package/bootstrap-icons/cart-plus.js +0 -12
- package/bootstrap-icons/cart-x-fill.d.ts +0 -5
- package/bootstrap-icons/cart-x-fill.js +0 -12
- package/bootstrap-icons/cart-x.d.ts +0 -5
- package/bootstrap-icons/cart-x.js +0 -12
- package/bootstrap-icons/cart.d.ts +0 -5
- package/bootstrap-icons/cart.js +0 -12
- package/bootstrap-icons/cart2.d.ts +0 -5
- package/bootstrap-icons/cart2.js +0 -12
- package/bootstrap-icons/cart3.d.ts +0 -5
- package/bootstrap-icons/cart3.js +0 -12
- package/bootstrap-icons/cart4.d.ts +0 -5
- package/bootstrap-icons/cart4.js +0 -12
- package/bootstrap-icons/cash-coin.d.ts +0 -5
- package/bootstrap-icons/cash-coin.js +0 -12
- package/bootstrap-icons/cash-stack.d.ts +0 -5
- package/bootstrap-icons/cash-stack.js +0 -12
- package/bootstrap-icons/cash.d.ts +0 -5
- package/bootstrap-icons/cash.js +0 -12
- package/bootstrap-icons/cast.d.ts +0 -5
- package/bootstrap-icons/cast.js +0 -12
- package/bootstrap-icons/chat-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-dots-fill.js +0 -12
- package/bootstrap-icons/chat-dots.d.ts +0 -5
- package/bootstrap-icons/chat-dots.js +0 -12
- package/bootstrap-icons/chat-fill.d.ts +0 -5
- package/bootstrap-icons/chat-fill.js +0 -12
- package/bootstrap-icons/chat-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-heart-fill.js +0 -12
- package/bootstrap-icons/chat-heart.d.ts +0 -5
- package/bootstrap-icons/chat-heart.js +0 -12
- package/bootstrap-icons/chat-left-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-dots-fill.js +0 -12
- package/bootstrap-icons/chat-left-dots.d.ts +0 -5
- package/bootstrap-icons/chat-left-dots.js +0 -12
- package/bootstrap-icons/chat-left-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-fill.js +0 -12
- package/bootstrap-icons/chat-left-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-heart-fill.js +0 -12
- package/bootstrap-icons/chat-left-heart.d.ts +0 -5
- package/bootstrap-icons/chat-left-heart.js +0 -12
- package/bootstrap-icons/chat-left-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-quote-fill.js +0 -12
- package/bootstrap-icons/chat-left-quote.d.ts +0 -5
- package/bootstrap-icons/chat-left-quote.js +0 -12
- package/bootstrap-icons/chat-left-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-text-fill.js +0 -12
- package/bootstrap-icons/chat-left-text.d.ts +0 -5
- package/bootstrap-icons/chat-left-text.js +0 -12
- package/bootstrap-icons/chat-left.d.ts +0 -5
- package/bootstrap-icons/chat-left.js +0 -12
- package/bootstrap-icons/chat-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-quote-fill.js +0 -12
- package/bootstrap-icons/chat-quote.d.ts +0 -5
- package/bootstrap-icons/chat-quote.js +0 -12
- package/bootstrap-icons/chat-right-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-dots-fill.js +0 -12
- package/bootstrap-icons/chat-right-dots.d.ts +0 -5
- package/bootstrap-icons/chat-right-dots.js +0 -12
- package/bootstrap-icons/chat-right-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-fill.js +0 -12
- package/bootstrap-icons/chat-right-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-heart-fill.js +0 -12
- package/bootstrap-icons/chat-right-heart.d.ts +0 -5
- package/bootstrap-icons/chat-right-heart.js +0 -12
- package/bootstrap-icons/chat-right-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-quote-fill.js +0 -12
- package/bootstrap-icons/chat-right-quote.d.ts +0 -5
- package/bootstrap-icons/chat-right-quote.js +0 -12
- package/bootstrap-icons/chat-right-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-text-fill.js +0 -12
- package/bootstrap-icons/chat-right-text.d.ts +0 -5
- package/bootstrap-icons/chat-right-text.js +0 -12
- package/bootstrap-icons/chat-right.d.ts +0 -5
- package/bootstrap-icons/chat-right.js +0 -12
- package/bootstrap-icons/chat-square-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-dots-fill.js +0 -12
- package/bootstrap-icons/chat-square-dots.d.ts +0 -5
- package/bootstrap-icons/chat-square-dots.js +0 -12
- package/bootstrap-icons/chat-square-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-fill.js +0 -12
- package/bootstrap-icons/chat-square-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-heart-fill.js +0 -12
- package/bootstrap-icons/chat-square-heart.d.ts +0 -5
- package/bootstrap-icons/chat-square-heart.js +0 -12
- package/bootstrap-icons/chat-square-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-quote-fill.js +0 -12
- package/bootstrap-icons/chat-square-quote.d.ts +0 -5
- package/bootstrap-icons/chat-square-quote.js +0 -12
- package/bootstrap-icons/chat-square-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-text-fill.js +0 -12
- package/bootstrap-icons/chat-square-text.d.ts +0 -5
- package/bootstrap-icons/chat-square-text.js +0 -12
- package/bootstrap-icons/chat-square.d.ts +0 -5
- package/bootstrap-icons/chat-square.js +0 -12
- package/bootstrap-icons/chat-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-text-fill.js +0 -12
- package/bootstrap-icons/chat-text.d.ts +0 -5
- package/bootstrap-icons/chat-text.js +0 -12
- package/bootstrap-icons/chat.d.ts +0 -5
- package/bootstrap-icons/chat.js +0 -12
- package/bootstrap-icons/check-all.d.ts +0 -5
- package/bootstrap-icons/check-all.js +0 -12
- package/bootstrap-icons/check-circle-fill.d.ts +0 -5
- package/bootstrap-icons/check-circle-fill.js +0 -12
- package/bootstrap-icons/check-circle.d.ts +0 -5
- package/bootstrap-icons/check-circle.js +0 -12
- package/bootstrap-icons/check-lg.d.ts +0 -5
- package/bootstrap-icons/check-lg.js +0 -12
- package/bootstrap-icons/check-square-fill.d.ts +0 -5
- package/bootstrap-icons/check-square-fill.js +0 -12
- package/bootstrap-icons/check-square.d.ts +0 -5
- package/bootstrap-icons/check-square.js +0 -12
- package/bootstrap-icons/check.d.ts +0 -5
- package/bootstrap-icons/check.js +0 -12
- package/bootstrap-icons/check2-all.d.ts +0 -5
- package/bootstrap-icons/check2-all.js +0 -12
- package/bootstrap-icons/check2-circle.d.ts +0 -5
- package/bootstrap-icons/check2-circle.js +0 -12
- package/bootstrap-icons/check2-square.d.ts +0 -5
- package/bootstrap-icons/check2-square.js +0 -12
- package/bootstrap-icons/check2.d.ts +0 -5
- package/bootstrap-icons/check2.js +0 -12
- package/bootstrap-icons/chevron-bar-contract.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-contract.js +0 -12
- package/bootstrap-icons/chevron-bar-down.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-down.js +0 -12
- package/bootstrap-icons/chevron-bar-expand.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-expand.js +0 -12
- package/bootstrap-icons/chevron-bar-left.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-left.js +0 -12
- package/bootstrap-icons/chevron-bar-right.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-right.js +0 -12
- package/bootstrap-icons/chevron-bar-up.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-up.js +0 -12
- package/bootstrap-icons/chevron-compact-down.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-down.js +0 -12
- package/bootstrap-icons/chevron-compact-left.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-left.js +0 -12
- package/bootstrap-icons/chevron-compact-right.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-right.js +0 -12
- package/bootstrap-icons/chevron-compact-up.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-up.js +0 -12
- package/bootstrap-icons/chevron-contract.d.ts +0 -5
- package/bootstrap-icons/chevron-contract.js +0 -12
- package/bootstrap-icons/chevron-double-down.d.ts +0 -5
- package/bootstrap-icons/chevron-double-down.js +0 -12
- package/bootstrap-icons/chevron-double-left.d.ts +0 -5
- package/bootstrap-icons/chevron-double-left.js +0 -12
- package/bootstrap-icons/chevron-double-right.d.ts +0 -5
- package/bootstrap-icons/chevron-double-right.js +0 -12
- package/bootstrap-icons/chevron-double-up.d.ts +0 -5
- package/bootstrap-icons/chevron-double-up.js +0 -12
- package/bootstrap-icons/chevron-down.d.ts +0 -5
- package/bootstrap-icons/chevron-down.js +0 -12
- package/bootstrap-icons/chevron-expand.d.ts +0 -5
- package/bootstrap-icons/chevron-expand.js +0 -12
- package/bootstrap-icons/chevron-left.d.ts +0 -5
- package/bootstrap-icons/chevron-left.js +0 -12
- package/bootstrap-icons/chevron-right.d.ts +0 -5
- package/bootstrap-icons/chevron-right.js +0 -12
- package/bootstrap-icons/chevron-up.d.ts +0 -5
- package/bootstrap-icons/chevron-up.js +0 -12
- package/bootstrap-icons/circle-fill.d.ts +0 -5
- package/bootstrap-icons/circle-fill.js +0 -12
- package/bootstrap-icons/circle-half.d.ts +0 -5
- package/bootstrap-icons/circle-half.js +0 -12
- package/bootstrap-icons/circle-square.d.ts +0 -5
- package/bootstrap-icons/circle-square.js +0 -12
- package/bootstrap-icons/circle.d.ts +0 -5
- package/bootstrap-icons/circle.js +0 -12
- package/bootstrap-icons/clipboard-check-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-check-fill.js +0 -12
- package/bootstrap-icons/clipboard-check.d.ts +0 -5
- package/bootstrap-icons/clipboard-check.js +0 -12
- package/bootstrap-icons/clipboard-data-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-data-fill.js +0 -12
- package/bootstrap-icons/clipboard-data.d.ts +0 -5
- package/bootstrap-icons/clipboard-data.js +0 -12
- package/bootstrap-icons/clipboard-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-fill.js +0 -12
- package/bootstrap-icons/clipboard-heart-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-heart-fill.js +0 -12
- package/bootstrap-icons/clipboard-heart.d.ts +0 -5
- package/bootstrap-icons/clipboard-heart.js +0 -12
- package/bootstrap-icons/clipboard-minus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-minus-fill.js +0 -12
- package/bootstrap-icons/clipboard-minus.d.ts +0 -5
- package/bootstrap-icons/clipboard-minus.js +0 -12
- package/bootstrap-icons/clipboard-plus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-plus-fill.js +0 -12
- package/bootstrap-icons/clipboard-plus.d.ts +0 -5
- package/bootstrap-icons/clipboard-plus.js +0 -12
- package/bootstrap-icons/clipboard-pulse.d.ts +0 -5
- package/bootstrap-icons/clipboard-pulse.js +0 -12
- package/bootstrap-icons/clipboard-x-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-x-fill.js +0 -12
- package/bootstrap-icons/clipboard-x.d.ts +0 -5
- package/bootstrap-icons/clipboard-x.js +0 -12
- package/bootstrap-icons/clipboard.d.ts +0 -5
- package/bootstrap-icons/clipboard.js +0 -12
- package/bootstrap-icons/clipboard2-check-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-check-fill.js +0 -12
- package/bootstrap-icons/clipboard2-check.d.ts +0 -5
- package/bootstrap-icons/clipboard2-check.js +0 -12
- package/bootstrap-icons/clipboard2-data-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-data-fill.js +0 -12
- package/bootstrap-icons/clipboard2-data.d.ts +0 -5
- package/bootstrap-icons/clipboard2-data.js +0 -12
- package/bootstrap-icons/clipboard2-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-fill.js +0 -12
- package/bootstrap-icons/clipboard2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-heart-fill.js +0 -12
- package/bootstrap-icons/clipboard2-heart.d.ts +0 -5
- package/bootstrap-icons/clipboard2-heart.js +0 -12
- package/bootstrap-icons/clipboard2-minus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-minus-fill.js +0 -12
- package/bootstrap-icons/clipboard2-minus.d.ts +0 -5
- package/bootstrap-icons/clipboard2-minus.js +0 -12
- package/bootstrap-icons/clipboard2-plus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-plus-fill.js +0 -12
- package/bootstrap-icons/clipboard2-plus.d.ts +0 -5
- package/bootstrap-icons/clipboard2-plus.js +0 -12
- package/bootstrap-icons/clipboard2-pulse-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-pulse-fill.js +0 -12
- package/bootstrap-icons/clipboard2-pulse.d.ts +0 -5
- package/bootstrap-icons/clipboard2-pulse.js +0 -12
- package/bootstrap-icons/clipboard2-x-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-x-fill.js +0 -12
- package/bootstrap-icons/clipboard2-x.d.ts +0 -5
- package/bootstrap-icons/clipboard2-x.js +0 -12
- package/bootstrap-icons/clipboard2.d.ts +0 -5
- package/bootstrap-icons/clipboard2.js +0 -12
- package/bootstrap-icons/clock-fill.d.ts +0 -5
- package/bootstrap-icons/clock-fill.js +0 -12
- package/bootstrap-icons/clock-history.d.ts +0 -5
- package/bootstrap-icons/clock-history.js +0 -12
- package/bootstrap-icons/clock.d.ts +0 -5
- package/bootstrap-icons/clock.js +0 -12
- package/bootstrap-icons/cloud-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-down-fill.js +0 -12
- package/bootstrap-icons/cloud-arrow-down.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-down.js +0 -12
- package/bootstrap-icons/cloud-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-up-fill.js +0 -12
- package/bootstrap-icons/cloud-arrow-up.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-up.js +0 -12
- package/bootstrap-icons/cloud-check-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-check-fill.js +0 -12
- package/bootstrap-icons/cloud-check.d.ts +0 -5
- package/bootstrap-icons/cloud-check.js +0 -12
- package/bootstrap-icons/cloud-download-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-download-fill.js +0 -12
- package/bootstrap-icons/cloud-download.d.ts +0 -5
- package/bootstrap-icons/cloud-download.js +0 -12
- package/bootstrap-icons/cloud-drizzle-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-drizzle-fill.js +0 -12
- package/bootstrap-icons/cloud-drizzle.d.ts +0 -5
- package/bootstrap-icons/cloud-drizzle.js +0 -12
- package/bootstrap-icons/cloud-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fill.js +0 -12
- package/bootstrap-icons/cloud-fog-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fog-fill.js +0 -12
- package/bootstrap-icons/cloud-fog.d.ts +0 -5
- package/bootstrap-icons/cloud-fog.js +0 -12
- package/bootstrap-icons/cloud-fog2-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fog2-fill.js +0 -12
- package/bootstrap-icons/cloud-fog2.d.ts +0 -5
- package/bootstrap-icons/cloud-fog2.js +0 -12
- package/bootstrap-icons/cloud-hail-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-hail-fill.js +0 -12
- package/bootstrap-icons/cloud-hail.d.ts +0 -5
- package/bootstrap-icons/cloud-hail.js +0 -12
- package/bootstrap-icons/cloud-haze-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-haze-fill.js +0 -12
- package/bootstrap-icons/cloud-haze.d.ts +0 -5
- package/bootstrap-icons/cloud-haze.js +0 -12
- package/bootstrap-icons/cloud-haze2-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-haze2-fill.js +0 -12
- package/bootstrap-icons/cloud-haze2.d.ts +0 -5
- package/bootstrap-icons/cloud-haze2.js +0 -12
- package/bootstrap-icons/cloud-lightning-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-fill.js +0 -12
- package/bootstrap-icons/cloud-lightning-rain-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-rain-fill.js +0 -12
- package/bootstrap-icons/cloud-lightning-rain.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-rain.js +0 -12
- package/bootstrap-icons/cloud-lightning.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning.js +0 -12
- package/bootstrap-icons/cloud-minus-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-minus-fill.js +0 -12
- package/bootstrap-icons/cloud-minus.d.ts +0 -5
- package/bootstrap-icons/cloud-minus.js +0 -12
- package/bootstrap-icons/cloud-moon-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-moon-fill.js +0 -12
- package/bootstrap-icons/cloud-moon.d.ts +0 -5
- package/bootstrap-icons/cloud-moon.js +0 -12
- package/bootstrap-icons/cloud-plus-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-plus-fill.js +0 -12
- package/bootstrap-icons/cloud-plus.d.ts +0 -5
- package/bootstrap-icons/cloud-plus.js +0 -12
- package/bootstrap-icons/cloud-rain-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-fill.js +0 -12
- package/bootstrap-icons/cloud-rain-heavy-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-heavy-fill.js +0 -12
- package/bootstrap-icons/cloud-rain-heavy.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-heavy.js +0 -12
- package/bootstrap-icons/cloud-rain.d.ts +0 -5
- package/bootstrap-icons/cloud-rain.js +0 -12
- package/bootstrap-icons/cloud-slash-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-slash-fill.js +0 -12
- package/bootstrap-icons/cloud-slash.d.ts +0 -5
- package/bootstrap-icons/cloud-slash.js +0 -12
- package/bootstrap-icons/cloud-sleet-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-sleet-fill.js +0 -12
- package/bootstrap-icons/cloud-sleet.d.ts +0 -5
- package/bootstrap-icons/cloud-sleet.js +0 -12
- package/bootstrap-icons/cloud-snow-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-snow-fill.js +0 -12
- package/bootstrap-icons/cloud-snow.d.ts +0 -5
- package/bootstrap-icons/cloud-snow.js +0 -12
- package/bootstrap-icons/cloud-sun-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-sun-fill.js +0 -12
- package/bootstrap-icons/cloud-sun.d.ts +0 -5
- package/bootstrap-icons/cloud-sun.js +0 -12
- package/bootstrap-icons/cloud-upload-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-upload-fill.js +0 -12
- package/bootstrap-icons/cloud-upload.d.ts +0 -5
- package/bootstrap-icons/cloud-upload.js +0 -12
- package/bootstrap-icons/cloud.d.ts +0 -5
- package/bootstrap-icons/cloud.js +0 -12
- package/bootstrap-icons/clouds-fill.d.ts +0 -5
- package/bootstrap-icons/clouds-fill.js +0 -12
- package/bootstrap-icons/clouds.d.ts +0 -5
- package/bootstrap-icons/clouds.js +0 -12
- package/bootstrap-icons/cloudy-fill.d.ts +0 -5
- package/bootstrap-icons/cloudy-fill.js +0 -12
- package/bootstrap-icons/cloudy.d.ts +0 -5
- package/bootstrap-icons/cloudy.js +0 -12
- package/bootstrap-icons/code-slash.d.ts +0 -5
- package/bootstrap-icons/code-slash.js +0 -12
- package/bootstrap-icons/code-square.d.ts +0 -5
- package/bootstrap-icons/code-square.js +0 -12
- package/bootstrap-icons/code.d.ts +0 -5
- package/bootstrap-icons/code.js +0 -12
- package/bootstrap-icons/coin.d.ts +0 -5
- package/bootstrap-icons/coin.js +0 -12
- package/bootstrap-icons/collection-fill.d.ts +0 -5
- package/bootstrap-icons/collection-fill.js +0 -12
- package/bootstrap-icons/collection-play-fill.d.ts +0 -5
- package/bootstrap-icons/collection-play-fill.js +0 -12
- package/bootstrap-icons/collection-play.d.ts +0 -5
- package/bootstrap-icons/collection-play.js +0 -12
- package/bootstrap-icons/collection.d.ts +0 -5
- package/bootstrap-icons/collection.js +0 -12
- package/bootstrap-icons/columns-gap.d.ts +0 -5
- package/bootstrap-icons/columns-gap.js +0 -12
- package/bootstrap-icons/columns.d.ts +0 -5
- package/bootstrap-icons/columns.js +0 -12
- package/bootstrap-icons/command.d.ts +0 -5
- package/bootstrap-icons/command.js +0 -12
- package/bootstrap-icons/compass-fill.d.ts +0 -5
- package/bootstrap-icons/compass-fill.js +0 -12
- package/bootstrap-icons/compass.d.ts +0 -5
- package/bootstrap-icons/compass.js +0 -12
- package/bootstrap-icons/cone-striped.d.ts +0 -5
- package/bootstrap-icons/cone-striped.js +0 -12
- package/bootstrap-icons/cone.d.ts +0 -5
- package/bootstrap-icons/cone.js +0 -12
- package/bootstrap-icons/controller.d.ts +0 -5
- package/bootstrap-icons/controller.js +0 -12
- package/bootstrap-icons/cpu-fill.d.ts +0 -5
- package/bootstrap-icons/cpu-fill.js +0 -12
- package/bootstrap-icons/cpu.d.ts +0 -5
- package/bootstrap-icons/cpu.js +0 -12
- package/bootstrap-icons/credit-card-2-back-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-back-fill.js +0 -12
- package/bootstrap-icons/credit-card-2-back.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-back.js +0 -12
- package/bootstrap-icons/credit-card-2-front-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-front-fill.js +0 -12
- package/bootstrap-icons/credit-card-2-front.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-front.js +0 -12
- package/bootstrap-icons/credit-card-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-fill.js +0 -12
- package/bootstrap-icons/credit-card.d.ts +0 -5
- package/bootstrap-icons/credit-card.js +0 -12
- package/bootstrap-icons/crop.d.ts +0 -5
- package/bootstrap-icons/crop.js +0 -12
- package/bootstrap-icons/cup-fill.d.ts +0 -5
- package/bootstrap-icons/cup-fill.js +0 -12
- package/bootstrap-icons/cup-straw.d.ts +0 -5
- package/bootstrap-icons/cup-straw.js +0 -12
- package/bootstrap-icons/cup.d.ts +0 -5
- package/bootstrap-icons/cup.js +0 -12
- package/bootstrap-icons/currency-bitcoin.d.ts +0 -5
- package/bootstrap-icons/currency-bitcoin.js +0 -12
- package/bootstrap-icons/currency-dollar.d.ts +0 -5
- package/bootstrap-icons/currency-dollar.js +0 -12
- package/bootstrap-icons/currency-euro.d.ts +0 -5
- package/bootstrap-icons/currency-euro.js +0 -12
- package/bootstrap-icons/currency-exchange.d.ts +0 -5
- package/bootstrap-icons/currency-exchange.js +0 -12
- package/bootstrap-icons/currency-pound.d.ts +0 -5
- package/bootstrap-icons/currency-pound.js +0 -12
- package/bootstrap-icons/currency-yen.d.ts +0 -5
- package/bootstrap-icons/currency-yen.js +0 -12
- package/bootstrap-icons/cursor-fill.d.ts +0 -5
- package/bootstrap-icons/cursor-fill.js +0 -12
- package/bootstrap-icons/cursor-text.d.ts +0 -5
- package/bootstrap-icons/cursor-text.js +0 -12
- package/bootstrap-icons/cursor.d.ts +0 -5
- package/bootstrap-icons/cursor.js +0 -12
- package/bootstrap-icons/dash-circle-dotted.d.ts +0 -5
- package/bootstrap-icons/dash-circle-dotted.js +0 -12
- package/bootstrap-icons/dash-circle-fill.d.ts +0 -5
- package/bootstrap-icons/dash-circle-fill.js +0 -12
- package/bootstrap-icons/dash-circle.d.ts +0 -5
- package/bootstrap-icons/dash-circle.js +0 -12
- package/bootstrap-icons/dash-lg.d.ts +0 -5
- package/bootstrap-icons/dash-lg.js +0 -12
- package/bootstrap-icons/dash-square-dotted.d.ts +0 -5
- package/bootstrap-icons/dash-square-dotted.js +0 -12
- package/bootstrap-icons/dash-square-fill.d.ts +0 -5
- package/bootstrap-icons/dash-square-fill.js +0 -12
- package/bootstrap-icons/dash-square.d.ts +0 -5
- package/bootstrap-icons/dash-square.js +0 -12
- package/bootstrap-icons/dash.d.ts +0 -5
- package/bootstrap-icons/dash.js +0 -12
- package/bootstrap-icons/device-hdd-fill.d.ts +0 -5
- package/bootstrap-icons/device-hdd-fill.js +0 -12
- package/bootstrap-icons/device-hdd.d.ts +0 -5
- package/bootstrap-icons/device-hdd.js +0 -12
- package/bootstrap-icons/device-ssd-fill.d.ts +0 -5
- package/bootstrap-icons/device-ssd-fill.js +0 -12
- package/bootstrap-icons/device-ssd.d.ts +0 -5
- package/bootstrap-icons/device-ssd.js +0 -12
- package/bootstrap-icons/diagram-2-fill.d.ts +0 -5
- package/bootstrap-icons/diagram-2-fill.js +0 -12
- package/bootstrap-icons/diagram-2.d.ts +0 -5
- package/bootstrap-icons/diagram-2.js +0 -12
- package/bootstrap-icons/diagram-3-fill.d.ts +0 -5
- package/bootstrap-icons/diagram-3-fill.js +0 -12
- package/bootstrap-icons/diagram-3.d.ts +0 -5
- package/bootstrap-icons/diagram-3.js +0 -12
- package/bootstrap-icons/diamond-fill.d.ts +0 -5
- package/bootstrap-icons/diamond-fill.js +0 -12
- package/bootstrap-icons/diamond-half.d.ts +0 -5
- package/bootstrap-icons/diamond-half.js +0 -12
- package/bootstrap-icons/diamond.d.ts +0 -5
- package/bootstrap-icons/diamond.js +0 -12
- package/bootstrap-icons/dice-1-fill.d.ts +0 -5
- package/bootstrap-icons/dice-1-fill.js +0 -12
- package/bootstrap-icons/dice-1.d.ts +0 -5
- package/bootstrap-icons/dice-1.js +0 -12
- package/bootstrap-icons/dice-2-fill.d.ts +0 -5
- package/bootstrap-icons/dice-2-fill.js +0 -12
- package/bootstrap-icons/dice-2.d.ts +0 -5
- package/bootstrap-icons/dice-2.js +0 -12
- package/bootstrap-icons/dice-3-fill.d.ts +0 -5
- package/bootstrap-icons/dice-3-fill.js +0 -12
- package/bootstrap-icons/dice-3.d.ts +0 -5
- package/bootstrap-icons/dice-3.js +0 -12
- package/bootstrap-icons/dice-4-fill.d.ts +0 -5
- package/bootstrap-icons/dice-4-fill.js +0 -12
- package/bootstrap-icons/dice-4.d.ts +0 -5
- package/bootstrap-icons/dice-4.js +0 -12
- package/bootstrap-icons/dice-5-fill.d.ts +0 -5
- package/bootstrap-icons/dice-5-fill.js +0 -12
- package/bootstrap-icons/dice-5.d.ts +0 -5
- package/bootstrap-icons/dice-5.js +0 -12
- package/bootstrap-icons/dice-6-fill.d.ts +0 -5
- package/bootstrap-icons/dice-6-fill.js +0 -12
- package/bootstrap-icons/dice-6.d.ts +0 -5
- package/bootstrap-icons/dice-6.js +0 -12
- package/bootstrap-icons/disc-fill.d.ts +0 -5
- package/bootstrap-icons/disc-fill.js +0 -12
- package/bootstrap-icons/disc.d.ts +0 -5
- package/bootstrap-icons/disc.js +0 -12
- package/bootstrap-icons/discord.d.ts +0 -5
- package/bootstrap-icons/discord.js +0 -12
- package/bootstrap-icons/display-fill.d.ts +0 -5
- package/bootstrap-icons/display-fill.js +0 -12
- package/bootstrap-icons/display.d.ts +0 -5
- package/bootstrap-icons/display.js +0 -12
- package/bootstrap-icons/displayport-fill.d.ts +0 -5
- package/bootstrap-icons/displayport-fill.js +0 -12
- package/bootstrap-icons/displayport.d.ts +0 -5
- package/bootstrap-icons/displayport.js +0 -12
- package/bootstrap-icons/distribute-horizontal.d.ts +0 -5
- package/bootstrap-icons/distribute-horizontal.js +0 -12
- package/bootstrap-icons/distribute-vertical.d.ts +0 -5
- package/bootstrap-icons/distribute-vertical.js +0 -12
- package/bootstrap-icons/door-closed-fill.d.ts +0 -5
- package/bootstrap-icons/door-closed-fill.js +0 -12
- package/bootstrap-icons/door-closed.d.ts +0 -5
- package/bootstrap-icons/door-closed.js +0 -12
- package/bootstrap-icons/door-open-fill.d.ts +0 -5
- package/bootstrap-icons/door-open-fill.js +0 -12
- package/bootstrap-icons/door-open.d.ts +0 -5
- package/bootstrap-icons/door-open.js +0 -12
- package/bootstrap-icons/dot.d.ts +0 -5
- package/bootstrap-icons/dot.js +0 -12
- package/bootstrap-icons/download.d.ts +0 -5
- package/bootstrap-icons/download.js +0 -12
- package/bootstrap-icons/dpad-fill.d.ts +0 -5
- package/bootstrap-icons/dpad-fill.js +0 -12
- package/bootstrap-icons/dpad.d.ts +0 -5
- package/bootstrap-icons/dpad.js +0 -12
- package/bootstrap-icons/dribbble.d.ts +0 -5
- package/bootstrap-icons/dribbble.js +0 -12
- package/bootstrap-icons/droplet-fill.d.ts +0 -5
- package/bootstrap-icons/droplet-fill.js +0 -12
- package/bootstrap-icons/droplet-half.d.ts +0 -5
- package/bootstrap-icons/droplet-half.js +0 -12
- package/bootstrap-icons/droplet.d.ts +0 -5
- package/bootstrap-icons/droplet.js +0 -12
- package/bootstrap-icons/ear-fill.d.ts +0 -5
- package/bootstrap-icons/ear-fill.js +0 -12
- package/bootstrap-icons/ear.d.ts +0 -5
- package/bootstrap-icons/ear.js +0 -12
- package/bootstrap-icons/earbuds.d.ts +0 -5
- package/bootstrap-icons/earbuds.js +0 -12
- package/bootstrap-icons/easel-fill.d.ts +0 -5
- package/bootstrap-icons/easel-fill.js +0 -12
- package/bootstrap-icons/easel.d.ts +0 -5
- package/bootstrap-icons/easel.js +0 -12
- package/bootstrap-icons/easel2-fill.d.ts +0 -5
- package/bootstrap-icons/easel2-fill.js +0 -12
- package/bootstrap-icons/easel2.d.ts +0 -5
- package/bootstrap-icons/easel2.js +0 -12
- package/bootstrap-icons/easel3-fill.d.ts +0 -5
- package/bootstrap-icons/easel3-fill.js +0 -12
- package/bootstrap-icons/easel3.d.ts +0 -5
- package/bootstrap-icons/easel3.js +0 -12
- package/bootstrap-icons/egg-fill.d.ts +0 -5
- package/bootstrap-icons/egg-fill.js +0 -12
- package/bootstrap-icons/egg-fried.d.ts +0 -5
- package/bootstrap-icons/egg-fried.js +0 -12
- package/bootstrap-icons/egg.d.ts +0 -5
- package/bootstrap-icons/egg.js +0 -12
- package/bootstrap-icons/eject-fill.d.ts +0 -5
- package/bootstrap-icons/eject-fill.js +0 -12
- package/bootstrap-icons/eject.d.ts +0 -5
- package/bootstrap-icons/eject.js +0 -12
- package/bootstrap-icons/emoji-angry-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-angry-fill.js +0 -12
- package/bootstrap-icons/emoji-angry.d.ts +0 -5
- package/bootstrap-icons/emoji-angry.js +0 -12
- package/bootstrap-icons/emoji-dizzy-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-dizzy-fill.js +0 -12
- package/bootstrap-icons/emoji-dizzy.d.ts +0 -5
- package/bootstrap-icons/emoji-dizzy.js +0 -12
- package/bootstrap-icons/emoji-expressionless-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-expressionless-fill.js +0 -12
- package/bootstrap-icons/emoji-expressionless.d.ts +0 -5
- package/bootstrap-icons/emoji-expressionless.js +0 -12
- package/bootstrap-icons/emoji-frown-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-frown-fill.js +0 -12
- package/bootstrap-icons/emoji-frown.d.ts +0 -5
- package/bootstrap-icons/emoji-frown.js +0 -12
- package/bootstrap-icons/emoji-heart-eyes-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-heart-eyes-fill.js +0 -12
- package/bootstrap-icons/emoji-heart-eyes.d.ts +0 -5
- package/bootstrap-icons/emoji-heart-eyes.js +0 -12
- package/bootstrap-icons/emoji-kiss-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-kiss-fill.js +0 -12
- package/bootstrap-icons/emoji-kiss.d.ts +0 -5
- package/bootstrap-icons/emoji-kiss.js +0 -12
- package/bootstrap-icons/emoji-laughing-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-laughing-fill.js +0 -12
- package/bootstrap-icons/emoji-laughing.d.ts +0 -5
- package/bootstrap-icons/emoji-laughing.js +0 -12
- package/bootstrap-icons/emoji-neutral-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-neutral-fill.js +0 -12
- package/bootstrap-icons/emoji-neutral.d.ts +0 -5
- package/bootstrap-icons/emoji-neutral.js +0 -12
- package/bootstrap-icons/emoji-smile-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-fill.js +0 -12
- package/bootstrap-icons/emoji-smile-upside-down-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-upside-down-fill.js +0 -12
- package/bootstrap-icons/emoji-smile-upside-down.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-upside-down.js +0 -12
- package/bootstrap-icons/emoji-smile.d.ts +0 -5
- package/bootstrap-icons/emoji-smile.js +0 -12
- package/bootstrap-icons/emoji-sunglasses-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-sunglasses-fill.js +0 -12
- package/bootstrap-icons/emoji-sunglasses.d.ts +0 -5
- package/bootstrap-icons/emoji-sunglasses.js +0 -12
- package/bootstrap-icons/emoji-wink-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-wink-fill.js +0 -12
- package/bootstrap-icons/emoji-wink.d.ts +0 -5
- package/bootstrap-icons/emoji-wink.js +0 -12
- package/bootstrap-icons/envelope-check-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-check-fill.js +0 -12
- package/bootstrap-icons/envelope-check.d.ts +0 -5
- package/bootstrap-icons/envelope-check.js +0 -12
- package/bootstrap-icons/envelope-dash-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-dash-fill.js +0 -12
- package/bootstrap-icons/envelope-dash.d.ts +0 -5
- package/bootstrap-icons/envelope-dash.js +0 -12
- package/bootstrap-icons/envelope-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-exclamation-fill.js +0 -12
- package/bootstrap-icons/envelope-exclamation.d.ts +0 -5
- package/bootstrap-icons/envelope-exclamation.js +0 -12
- package/bootstrap-icons/envelope-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-fill.js +0 -12
- package/bootstrap-icons/envelope-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-heart.js +0 -12
- package/bootstrap-icons/envelope-open-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-open-fill.js +0 -12
- package/bootstrap-icons/envelope-open-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-open-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-open-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-open-heart.js +0 -12
- package/bootstrap-icons/envelope-open.d.ts +0 -5
- package/bootstrap-icons/envelope-open.js +0 -12
- package/bootstrap-icons/envelope-paper-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-fill.js +0 -12
- package/bootstrap-icons/envelope-paper-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-paper-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-heart.js +0 -12
- package/bootstrap-icons/envelope-paper.d.ts +0 -5
- package/bootstrap-icons/envelope-paper.js +0 -12
- package/bootstrap-icons/envelope-plus-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-plus-fill.js +0 -12
- package/bootstrap-icons/envelope-plus.d.ts +0 -5
- package/bootstrap-icons/envelope-plus.js +0 -12
- package/bootstrap-icons/envelope-slash-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-slash-fill.js +0 -12
- package/bootstrap-icons/envelope-slash.d.ts +0 -5
- package/bootstrap-icons/envelope-slash.js +0 -12
- package/bootstrap-icons/envelope-x-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-x-fill.js +0 -12
- package/bootstrap-icons/envelope-x.d.ts +0 -5
- package/bootstrap-icons/envelope-x.js +0 -12
- package/bootstrap-icons/envelope.d.ts +0 -5
- package/bootstrap-icons/envelope.js +0 -12
- package/bootstrap-icons/eraser-fill.d.ts +0 -5
- package/bootstrap-icons/eraser-fill.js +0 -12
- package/bootstrap-icons/eraser.d.ts +0 -5
- package/bootstrap-icons/eraser.js +0 -12
- package/bootstrap-icons/ethernet.d.ts +0 -5
- package/bootstrap-icons/ethernet.js +0 -12
- package/bootstrap-icons/exclamation-circle-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-circle-fill.js +0 -12
- package/bootstrap-icons/exclamation-circle.d.ts +0 -5
- package/bootstrap-icons/exclamation-circle.js +0 -12
- package/bootstrap-icons/exclamation-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-diamond-fill.js +0 -12
- package/bootstrap-icons/exclamation-diamond.d.ts +0 -5
- package/bootstrap-icons/exclamation-diamond.js +0 -12
- package/bootstrap-icons/exclamation-lg.d.ts +0 -5
- package/bootstrap-icons/exclamation-lg.js +0 -12
- package/bootstrap-icons/exclamation-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-octagon-fill.js +0 -12
- package/bootstrap-icons/exclamation-octagon.d.ts +0 -5
- package/bootstrap-icons/exclamation-octagon.js +0 -12
- package/bootstrap-icons/exclamation-square-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-square-fill.js +0 -12
- package/bootstrap-icons/exclamation-square.d.ts +0 -5
- package/bootstrap-icons/exclamation-square.js +0 -12
- package/bootstrap-icons/exclamation-triangle-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-triangle-fill.js +0 -12
- package/bootstrap-icons/exclamation-triangle.d.ts +0 -5
- package/bootstrap-icons/exclamation-triangle.js +0 -12
- package/bootstrap-icons/exclamation.d.ts +0 -5
- package/bootstrap-icons/exclamation.js +0 -12
- package/bootstrap-icons/exclude.d.ts +0 -5
- package/bootstrap-icons/exclude.js +0 -12
- package/bootstrap-icons/explicit-fill.d.ts +0 -5
- package/bootstrap-icons/explicit-fill.js +0 -12
- package/bootstrap-icons/explicit.d.ts +0 -5
- package/bootstrap-icons/explicit.js +0 -12
- package/bootstrap-icons/eye-fill.d.ts +0 -5
- package/bootstrap-icons/eye-fill.js +0 -12
- package/bootstrap-icons/eye-slash-fill.d.ts +0 -5
- package/bootstrap-icons/eye-slash-fill.js +0 -12
- package/bootstrap-icons/eye-slash.d.ts +0 -5
- package/bootstrap-icons/eye-slash.js +0 -12
- package/bootstrap-icons/eye.d.ts +0 -5
- package/bootstrap-icons/eye.js +0 -12
- package/bootstrap-icons/eyedropper.d.ts +0 -5
- package/bootstrap-icons/eyedropper.js +0 -12
- package/bootstrap-icons/eyeglasses.d.ts +0 -5
- package/bootstrap-icons/eyeglasses.js +0 -12
- package/bootstrap-icons/facebook.d.ts +0 -5
- package/bootstrap-icons/facebook.js +0 -12
- package/bootstrap-icons/fan.d.ts +0 -5
- package/bootstrap-icons/fan.js +0 -12
- package/bootstrap-icons/file-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/file-arrow-down-fill.js +0 -12
- package/bootstrap-icons/file-arrow-down.d.ts +0 -5
- package/bootstrap-icons/file-arrow-down.js +0 -12
- package/bootstrap-icons/file-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/file-arrow-up-fill.js +0 -12
- package/bootstrap-icons/file-arrow-up.d.ts +0 -5
- package/bootstrap-icons/file-arrow-up.js +0 -12
- package/bootstrap-icons/file-bar-graph-fill.d.ts +0 -5
- package/bootstrap-icons/file-bar-graph-fill.js +0 -12
- package/bootstrap-icons/file-bar-graph.d.ts +0 -5
- package/bootstrap-icons/file-bar-graph.js +0 -12
- package/bootstrap-icons/file-binary-fill.d.ts +0 -5
- package/bootstrap-icons/file-binary-fill.js +0 -12
- package/bootstrap-icons/file-binary.d.ts +0 -5
- package/bootstrap-icons/file-binary.js +0 -12
- package/bootstrap-icons/file-break-fill.d.ts +0 -5
- package/bootstrap-icons/file-break-fill.js +0 -12
- package/bootstrap-icons/file-break.d.ts +0 -5
- package/bootstrap-icons/file-break.js +0 -12
- package/bootstrap-icons/file-check-fill.d.ts +0 -5
- package/bootstrap-icons/file-check-fill.js +0 -12
- package/bootstrap-icons/file-check.d.ts +0 -5
- package/bootstrap-icons/file-check.js +0 -12
- package/bootstrap-icons/file-code-fill.d.ts +0 -5
- package/bootstrap-icons/file-code-fill.js +0 -12
- package/bootstrap-icons/file-code.d.ts +0 -5
- package/bootstrap-icons/file-code.js +0 -12
- package/bootstrap-icons/file-diff-fill.d.ts +0 -5
- package/bootstrap-icons/file-diff-fill.js +0 -12
- package/bootstrap-icons/file-diff.d.ts +0 -5
- package/bootstrap-icons/file-diff.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-down-fill.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-down.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-down.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-up-fill.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-up.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-up.js +0 -12
- package/bootstrap-icons/file-earmark-bar-graph-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-bar-graph-fill.js +0 -12
- package/bootstrap-icons/file-earmark-bar-graph.d.ts +0 -5
- package/bootstrap-icons/file-earmark-bar-graph.js +0 -12
- package/bootstrap-icons/file-earmark-binary-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-binary-fill.js +0 -12
- package/bootstrap-icons/file-earmark-binary.d.ts +0 -5
- package/bootstrap-icons/file-earmark-binary.js +0 -12
- package/bootstrap-icons/file-earmark-break-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-break-fill.js +0 -12
- package/bootstrap-icons/file-earmark-break.d.ts +0 -5
- package/bootstrap-icons/file-earmark-break.js +0 -12
- package/bootstrap-icons/file-earmark-check-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-check-fill.js +0 -12
- package/bootstrap-icons/file-earmark-check.d.ts +0 -5
- package/bootstrap-icons/file-earmark-check.js +0 -12
- package/bootstrap-icons/file-earmark-code-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-code-fill.js +0 -12
- package/bootstrap-icons/file-earmark-code.d.ts +0 -5
- package/bootstrap-icons/file-earmark-code.js +0 -12
- package/bootstrap-icons/file-earmark-diff-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-diff-fill.js +0 -12
- package/bootstrap-icons/file-earmark-diff.d.ts +0 -5
- package/bootstrap-icons/file-earmark-diff.js +0 -12
- package/bootstrap-icons/file-earmark-easel-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-easel-fill.js +0 -12
- package/bootstrap-icons/file-earmark-easel.d.ts +0 -5
- package/bootstrap-icons/file-earmark-easel.js +0 -12
- package/bootstrap-icons/file-earmark-excel-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-excel-fill.js +0 -12
- package/bootstrap-icons/file-earmark-excel.d.ts +0 -5
- package/bootstrap-icons/file-earmark-excel.js +0 -12
- package/bootstrap-icons/file-earmark-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-fill.js +0 -12
- package/bootstrap-icons/file-earmark-font-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-font-fill.js +0 -12
- package/bootstrap-icons/file-earmark-font.d.ts +0 -5
- package/bootstrap-icons/file-earmark-font.js +0 -12
- package/bootstrap-icons/file-earmark-image-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-image-fill.js +0 -12
- package/bootstrap-icons/file-earmark-image.d.ts +0 -5
- package/bootstrap-icons/file-earmark-image.js +0 -12
- package/bootstrap-icons/file-earmark-lock-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock-fill.js +0 -12
- package/bootstrap-icons/file-earmark-lock.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock.js +0 -12
- package/bootstrap-icons/file-earmark-lock2-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock2-fill.js +0 -12
- package/bootstrap-icons/file-earmark-lock2.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock2.js +0 -12
- package/bootstrap-icons/file-earmark-medical-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-medical-fill.js +0 -12
- package/bootstrap-icons/file-earmark-medical.d.ts +0 -5
- package/bootstrap-icons/file-earmark-medical.js +0 -12
- package/bootstrap-icons/file-earmark-minus-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-minus-fill.js +0 -12
- package/bootstrap-icons/file-earmark-minus.d.ts +0 -5
- package/bootstrap-icons/file-earmark-minus.js +0 -12
- package/bootstrap-icons/file-earmark-music-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-music-fill.js +0 -12
- package/bootstrap-icons/file-earmark-music.d.ts +0 -5
- package/bootstrap-icons/file-earmark-music.js +0 -12
- package/bootstrap-icons/file-earmark-pdf-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-pdf-fill.js +0 -12
- package/bootstrap-icons/file-earmark-pdf.d.ts +0 -5
- package/bootstrap-icons/file-earmark-pdf.js +0 -12
- package/bootstrap-icons/file-earmark-person-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-person-fill.js +0 -12
- package/bootstrap-icons/file-earmark-person.d.ts +0 -5
- package/bootstrap-icons/file-earmark-person.js +0 -12
- package/bootstrap-icons/file-earmark-play-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-play-fill.js +0 -12
- package/bootstrap-icons/file-earmark-play.d.ts +0 -5
- package/bootstrap-icons/file-earmark-play.js +0 -12
- package/bootstrap-icons/file-earmark-plus-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-plus-fill.js +0 -12
- package/bootstrap-icons/file-earmark-plus.d.ts +0 -5
- package/bootstrap-icons/file-earmark-plus.js +0 -12
- package/bootstrap-icons/file-earmark-post-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-post-fill.js +0 -12
- package/bootstrap-icons/file-earmark-post.d.ts +0 -5
- package/bootstrap-icons/file-earmark-post.js +0 -12
- package/bootstrap-icons/file-earmark-ppt-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ppt-fill.js +0 -12
- package/bootstrap-icons/file-earmark-ppt.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ppt.js +0 -12
- package/bootstrap-icons/file-earmark-richtext-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-richtext-fill.js +0 -12
- package/bootstrap-icons/file-earmark-richtext.d.ts +0 -5
- package/bootstrap-icons/file-earmark-richtext.js +0 -12
- package/bootstrap-icons/file-earmark-ruled-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ruled-fill.js +0 -12
- package/bootstrap-icons/file-earmark-ruled.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ruled.js +0 -12
- package/bootstrap-icons/file-earmark-slides-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-slides-fill.js +0 -12
- package/bootstrap-icons/file-earmark-slides.d.ts +0 -5
- package/bootstrap-icons/file-earmark-slides.js +0 -12
- package/bootstrap-icons/file-earmark-spreadsheet-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-spreadsheet-fill.js +0 -12
- package/bootstrap-icons/file-earmark-spreadsheet.d.ts +0 -5
- package/bootstrap-icons/file-earmark-spreadsheet.js +0 -12
- package/bootstrap-icons/file-earmark-text-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-text-fill.js +0 -12
- package/bootstrap-icons/file-earmark-text.d.ts +0 -5
- package/bootstrap-icons/file-earmark-text.js +0 -12
- package/bootstrap-icons/file-earmark-word-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-word-fill.js +0 -12
- package/bootstrap-icons/file-earmark-word.d.ts +0 -5
- package/bootstrap-icons/file-earmark-word.js +0 -12
- package/bootstrap-icons/file-earmark-x-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-x-fill.js +0 -12
- package/bootstrap-icons/file-earmark-x.d.ts +0 -5
- package/bootstrap-icons/file-earmark-x.js +0 -12
- package/bootstrap-icons/file-earmark-zip-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-zip-fill.js +0 -12
- package/bootstrap-icons/file-earmark-zip.d.ts +0 -5
- package/bootstrap-icons/file-earmark-zip.js +0 -12
- package/bootstrap-icons/file-earmark.d.ts +0 -5
- package/bootstrap-icons/file-earmark.js +0 -12
- package/bootstrap-icons/file-easel-fill.d.ts +0 -5
- package/bootstrap-icons/file-easel-fill.js +0 -12
- package/bootstrap-icons/file-easel.d.ts +0 -5
- package/bootstrap-icons/file-easel.js +0 -12
- package/bootstrap-icons/file-excel-fill.d.ts +0 -5
- package/bootstrap-icons/file-excel-fill.js +0 -12
- package/bootstrap-icons/file-excel.d.ts +0 -5
- package/bootstrap-icons/file-excel.js +0 -12
- package/bootstrap-icons/file-fill.d.ts +0 -5
- package/bootstrap-icons/file-fill.js +0 -12
- package/bootstrap-icons/file-font-fill.d.ts +0 -5
- package/bootstrap-icons/file-font-fill.js +0 -12
- package/bootstrap-icons/file-font.d.ts +0 -5
- package/bootstrap-icons/file-font.js +0 -12
- package/bootstrap-icons/file-image-fill.d.ts +0 -5
- package/bootstrap-icons/file-image-fill.js +0 -12
- package/bootstrap-icons/file-image.d.ts +0 -5
- package/bootstrap-icons/file-image.js +0 -12
- package/bootstrap-icons/file-lock-fill.d.ts +0 -5
- package/bootstrap-icons/file-lock-fill.js +0 -12
- package/bootstrap-icons/file-lock.d.ts +0 -5
- package/bootstrap-icons/file-lock.js +0 -12
- package/bootstrap-icons/file-lock2-fill.d.ts +0 -5
- package/bootstrap-icons/file-lock2-fill.js +0 -12
- package/bootstrap-icons/file-lock2.d.ts +0 -5
- package/bootstrap-icons/file-lock2.js +0 -12
- package/bootstrap-icons/file-medical-fill.d.ts +0 -5
- package/bootstrap-icons/file-medical-fill.js +0 -12
- package/bootstrap-icons/file-medical.d.ts +0 -5
- package/bootstrap-icons/file-medical.js +0 -12
- package/bootstrap-icons/file-minus-fill.d.ts +0 -5
- package/bootstrap-icons/file-minus-fill.js +0 -12
- package/bootstrap-icons/file-minus.d.ts +0 -5
- package/bootstrap-icons/file-minus.js +0 -12
- package/bootstrap-icons/file-music-fill.d.ts +0 -5
- package/bootstrap-icons/file-music-fill.js +0 -12
- package/bootstrap-icons/file-music.d.ts +0 -5
- package/bootstrap-icons/file-music.js +0 -12
- package/bootstrap-icons/file-pdf-fill.d.ts +0 -5
- package/bootstrap-icons/file-pdf-fill.js +0 -12
- package/bootstrap-icons/file-pdf.d.ts +0 -5
- package/bootstrap-icons/file-pdf.js +0 -12
- package/bootstrap-icons/file-person-fill.d.ts +0 -5
- package/bootstrap-icons/file-person-fill.js +0 -12
- package/bootstrap-icons/file-person.d.ts +0 -5
- package/bootstrap-icons/file-person.js +0 -12
- package/bootstrap-icons/file-play-fill.d.ts +0 -5
- package/bootstrap-icons/file-play-fill.js +0 -12
- package/bootstrap-icons/file-play.d.ts +0 -5
- package/bootstrap-icons/file-play.js +0 -12
- package/bootstrap-icons/file-plus-fill.d.ts +0 -5
- package/bootstrap-icons/file-plus-fill.js +0 -12
- package/bootstrap-icons/file-plus.d.ts +0 -5
- package/bootstrap-icons/file-plus.js +0 -12
- package/bootstrap-icons/file-post-fill.d.ts +0 -5
- package/bootstrap-icons/file-post-fill.js +0 -12
- package/bootstrap-icons/file-post.d.ts +0 -5
- package/bootstrap-icons/file-post.js +0 -12
- package/bootstrap-icons/file-ppt-fill.d.ts +0 -5
- package/bootstrap-icons/file-ppt-fill.js +0 -12
- package/bootstrap-icons/file-ppt.d.ts +0 -5
- package/bootstrap-icons/file-ppt.js +0 -12
- package/bootstrap-icons/file-richtext-fill.d.ts +0 -5
- package/bootstrap-icons/file-richtext-fill.js +0 -12
- package/bootstrap-icons/file-richtext.d.ts +0 -5
- package/bootstrap-icons/file-richtext.js +0 -12
- package/bootstrap-icons/file-ruled-fill.d.ts +0 -5
- package/bootstrap-icons/file-ruled-fill.js +0 -12
- package/bootstrap-icons/file-ruled.d.ts +0 -5
- package/bootstrap-icons/file-ruled.js +0 -12
- package/bootstrap-icons/file-slides-fill.d.ts +0 -5
- package/bootstrap-icons/file-slides-fill.js +0 -12
- package/bootstrap-icons/file-slides.d.ts +0 -5
- package/bootstrap-icons/file-slides.js +0 -12
- package/bootstrap-icons/file-spreadsheet-fill.d.ts +0 -5
- package/bootstrap-icons/file-spreadsheet-fill.js +0 -12
- package/bootstrap-icons/file-spreadsheet.d.ts +0 -5
- package/bootstrap-icons/file-spreadsheet.js +0 -12
- package/bootstrap-icons/file-text-fill.d.ts +0 -5
- package/bootstrap-icons/file-text-fill.js +0 -12
- package/bootstrap-icons/file-text.d.ts +0 -5
- package/bootstrap-icons/file-text.js +0 -12
- package/bootstrap-icons/file-word-fill.d.ts +0 -5
- package/bootstrap-icons/file-word-fill.js +0 -12
- package/bootstrap-icons/file-word.d.ts +0 -5
- package/bootstrap-icons/file-word.js +0 -12
- package/bootstrap-icons/file-x-fill.d.ts +0 -5
- package/bootstrap-icons/file-x-fill.js +0 -12
- package/bootstrap-icons/file-x.d.ts +0 -5
- package/bootstrap-icons/file-x.js +0 -12
- package/bootstrap-icons/file-zip-fill.d.ts +0 -5
- package/bootstrap-icons/file-zip-fill.js +0 -12
- package/bootstrap-icons/file-zip.d.ts +0 -5
- package/bootstrap-icons/file-zip.js +0 -12
- package/bootstrap-icons/file.d.ts +0 -5
- package/bootstrap-icons/file.js +0 -12
- package/bootstrap-icons/files-alt.d.ts +0 -5
- package/bootstrap-icons/files-alt.js +0 -12
- package/bootstrap-icons/files.d.ts +0 -5
- package/bootstrap-icons/files.js +0 -12
- package/bootstrap-icons/filetype-aac.d.ts +0 -5
- package/bootstrap-icons/filetype-aac.js +0 -12
- package/bootstrap-icons/filetype-ai.d.ts +0 -5
- package/bootstrap-icons/filetype-ai.js +0 -12
- package/bootstrap-icons/filetype-bmp.d.ts +0 -5
- package/bootstrap-icons/filetype-bmp.js +0 -12
- package/bootstrap-icons/filetype-cs.d.ts +0 -5
- package/bootstrap-icons/filetype-cs.js +0 -12
- package/bootstrap-icons/filetype-css.d.ts +0 -5
- package/bootstrap-icons/filetype-css.js +0 -12
- package/bootstrap-icons/filetype-csv.d.ts +0 -5
- package/bootstrap-icons/filetype-csv.js +0 -12
- package/bootstrap-icons/filetype-doc.d.ts +0 -5
- package/bootstrap-icons/filetype-doc.js +0 -12
- package/bootstrap-icons/filetype-docx.d.ts +0 -5
- package/bootstrap-icons/filetype-docx.js +0 -12
- package/bootstrap-icons/filetype-exe.d.ts +0 -5
- package/bootstrap-icons/filetype-exe.js +0 -12
- package/bootstrap-icons/filetype-gif.d.ts +0 -5
- package/bootstrap-icons/filetype-gif.js +0 -12
- package/bootstrap-icons/filetype-heic.d.ts +0 -5
- package/bootstrap-icons/filetype-heic.js +0 -12
- package/bootstrap-icons/filetype-html.d.ts +0 -5
- package/bootstrap-icons/filetype-html.js +0 -12
- package/bootstrap-icons/filetype-java.d.ts +0 -5
- package/bootstrap-icons/filetype-java.js +0 -12
- package/bootstrap-icons/filetype-jpg.d.ts +0 -5
- package/bootstrap-icons/filetype-jpg.js +0 -12
- package/bootstrap-icons/filetype-js.d.ts +0 -5
- package/bootstrap-icons/filetype-js.js +0 -12
- package/bootstrap-icons/filetype-json.d.ts +0 -5
- package/bootstrap-icons/filetype-json.js +0 -12
- package/bootstrap-icons/filetype-jsx.d.ts +0 -5
- package/bootstrap-icons/filetype-jsx.js +0 -12
- package/bootstrap-icons/filetype-key.d.ts +0 -5
- package/bootstrap-icons/filetype-key.js +0 -12
- package/bootstrap-icons/filetype-m4p.d.ts +0 -5
- package/bootstrap-icons/filetype-m4p.js +0 -12
- package/bootstrap-icons/filetype-md.d.ts +0 -5
- package/bootstrap-icons/filetype-md.js +0 -12
- package/bootstrap-icons/filetype-mdx.d.ts +0 -5
- package/bootstrap-icons/filetype-mdx.js +0 -12
- package/bootstrap-icons/filetype-mov.d.ts +0 -5
- package/bootstrap-icons/filetype-mov.js +0 -12
- package/bootstrap-icons/filetype-mp3.d.ts +0 -5
- package/bootstrap-icons/filetype-mp3.js +0 -12
- package/bootstrap-icons/filetype-mp4.d.ts +0 -5
- package/bootstrap-icons/filetype-mp4.js +0 -12
- package/bootstrap-icons/filetype-otf.d.ts +0 -5
- package/bootstrap-icons/filetype-otf.js +0 -12
- package/bootstrap-icons/filetype-pdf.d.ts +0 -5
- package/bootstrap-icons/filetype-pdf.js +0 -12
- package/bootstrap-icons/filetype-php.d.ts +0 -5
- package/bootstrap-icons/filetype-php.js +0 -12
- package/bootstrap-icons/filetype-png.d.ts +0 -5
- package/bootstrap-icons/filetype-png.js +0 -12
- package/bootstrap-icons/filetype-ppt.d.ts +0 -5
- package/bootstrap-icons/filetype-ppt.js +0 -12
- package/bootstrap-icons/filetype-pptx.d.ts +0 -5
- package/bootstrap-icons/filetype-pptx.js +0 -12
- package/bootstrap-icons/filetype-psd.d.ts +0 -5
- package/bootstrap-icons/filetype-psd.js +0 -12
- package/bootstrap-icons/filetype-py.d.ts +0 -5
- package/bootstrap-icons/filetype-py.js +0 -12
- package/bootstrap-icons/filetype-raw.d.ts +0 -5
- package/bootstrap-icons/filetype-raw.js +0 -12
- package/bootstrap-icons/filetype-rb.d.ts +0 -5
- package/bootstrap-icons/filetype-rb.js +0 -12
- package/bootstrap-icons/filetype-sass.d.ts +0 -5
- package/bootstrap-icons/filetype-sass.js +0 -12
- package/bootstrap-icons/filetype-scss.d.ts +0 -5
- package/bootstrap-icons/filetype-scss.js +0 -12
- package/bootstrap-icons/filetype-sh.d.ts +0 -5
- package/bootstrap-icons/filetype-sh.js +0 -12
- package/bootstrap-icons/filetype-svg.d.ts +0 -5
- package/bootstrap-icons/filetype-svg.js +0 -12
- package/bootstrap-icons/filetype-tiff.d.ts +0 -5
- package/bootstrap-icons/filetype-tiff.js +0 -12
- package/bootstrap-icons/filetype-tsx.d.ts +0 -5
- package/bootstrap-icons/filetype-tsx.js +0 -12
- package/bootstrap-icons/filetype-ttf.d.ts +0 -5
- package/bootstrap-icons/filetype-ttf.js +0 -12
- package/bootstrap-icons/filetype-txt.d.ts +0 -5
- package/bootstrap-icons/filetype-txt.js +0 -12
- package/bootstrap-icons/filetype-wav.d.ts +0 -5
- package/bootstrap-icons/filetype-wav.js +0 -12
- package/bootstrap-icons/filetype-woff.d.ts +0 -5
- package/bootstrap-icons/filetype-woff.js +0 -12
- package/bootstrap-icons/filetype-xls.d.ts +0 -5
- package/bootstrap-icons/filetype-xls.js +0 -12
- package/bootstrap-icons/filetype-xlsx.d.ts +0 -5
- package/bootstrap-icons/filetype-xlsx.js +0 -12
- package/bootstrap-icons/filetype-xml.d.ts +0 -5
- package/bootstrap-icons/filetype-xml.js +0 -12
- package/bootstrap-icons/filetype-yml.d.ts +0 -5
- package/bootstrap-icons/filetype-yml.js +0 -12
- package/bootstrap-icons/film.d.ts +0 -5
- package/bootstrap-icons/film.js +0 -12
- package/bootstrap-icons/filter-circle-fill.d.ts +0 -5
- package/bootstrap-icons/filter-circle-fill.js +0 -12
- package/bootstrap-icons/filter-circle.d.ts +0 -5
- package/bootstrap-icons/filter-circle.js +0 -12
- package/bootstrap-icons/filter-left.d.ts +0 -5
- package/bootstrap-icons/filter-left.js +0 -12
- package/bootstrap-icons/filter-right.d.ts +0 -5
- package/bootstrap-icons/filter-right.js +0 -12
- package/bootstrap-icons/filter-square-fill.d.ts +0 -5
- package/bootstrap-icons/filter-square-fill.js +0 -12
- package/bootstrap-icons/filter-square.d.ts +0 -5
- package/bootstrap-icons/filter-square.js +0 -12
- package/bootstrap-icons/filter.d.ts +0 -5
- package/bootstrap-icons/filter.js +0 -12
- package/bootstrap-icons/fingerprint.d.ts +0 -5
- package/bootstrap-icons/fingerprint.js +0 -12
- package/bootstrap-icons/flag-fill.d.ts +0 -5
- package/bootstrap-icons/flag-fill.js +0 -12
- package/bootstrap-icons/flag.d.ts +0 -5
- package/bootstrap-icons/flag.js +0 -12
- package/bootstrap-icons/flower1.d.ts +0 -5
- package/bootstrap-icons/flower1.js +0 -12
- package/bootstrap-icons/flower2.d.ts +0 -5
- package/bootstrap-icons/flower2.js +0 -12
- package/bootstrap-icons/flower3.d.ts +0 -5
- package/bootstrap-icons/flower3.js +0 -12
- package/bootstrap-icons/folder-check.d.ts +0 -5
- package/bootstrap-icons/folder-check.js +0 -12
- package/bootstrap-icons/folder-fill.d.ts +0 -5
- package/bootstrap-icons/folder-fill.js +0 -12
- package/bootstrap-icons/folder-minus.d.ts +0 -5
- package/bootstrap-icons/folder-minus.js +0 -12
- package/bootstrap-icons/folder-plus.d.ts +0 -5
- package/bootstrap-icons/folder-plus.js +0 -12
- package/bootstrap-icons/folder-symlink-fill.d.ts +0 -5
- package/bootstrap-icons/folder-symlink-fill.js +0 -12
- package/bootstrap-icons/folder-symlink.d.ts +0 -5
- package/bootstrap-icons/folder-symlink.js +0 -12
- package/bootstrap-icons/folder-x.d.ts +0 -5
- package/bootstrap-icons/folder-x.js +0 -12
- package/bootstrap-icons/folder.d.ts +0 -5
- package/bootstrap-icons/folder.js +0 -12
- package/bootstrap-icons/folder2-open.d.ts +0 -5
- package/bootstrap-icons/folder2-open.js +0 -12
- package/bootstrap-icons/folder2.d.ts +0 -5
- package/bootstrap-icons/folder2.js +0 -12
- package/bootstrap-icons/fonts.d.ts +0 -5
- package/bootstrap-icons/fonts.js +0 -12
- package/bootstrap-icons/forward-fill.d.ts +0 -5
- package/bootstrap-icons/forward-fill.js +0 -12
- package/bootstrap-icons/forward.d.ts +0 -5
- package/bootstrap-icons/forward.js +0 -12
- package/bootstrap-icons/front.d.ts +0 -5
- package/bootstrap-icons/front.js +0 -12
- package/bootstrap-icons/fullscreen-exit.d.ts +0 -5
- package/bootstrap-icons/fullscreen-exit.js +0 -12
- package/bootstrap-icons/fullscreen.d.ts +0 -5
- package/bootstrap-icons/fullscreen.js +0 -12
- package/bootstrap-icons/funnel-fill.d.ts +0 -5
- package/bootstrap-icons/funnel-fill.js +0 -12
- package/bootstrap-icons/funnel.d.ts +0 -5
- package/bootstrap-icons/funnel.js +0 -12
- package/bootstrap-icons/gear-fill.d.ts +0 -5
- package/bootstrap-icons/gear-fill.js +0 -12
- package/bootstrap-icons/gear-wide-connected.d.ts +0 -5
- package/bootstrap-icons/gear-wide-connected.js +0 -12
- package/bootstrap-icons/gear-wide.d.ts +0 -5
- package/bootstrap-icons/gear-wide.js +0 -12
- package/bootstrap-icons/gear.d.ts +0 -5
- package/bootstrap-icons/gear.js +0 -12
- package/bootstrap-icons/gem.d.ts +0 -5
- package/bootstrap-icons/gem.js +0 -12
- package/bootstrap-icons/gender-ambiguous.d.ts +0 -5
- package/bootstrap-icons/gender-ambiguous.js +0 -12
- package/bootstrap-icons/gender-female.d.ts +0 -5
- package/bootstrap-icons/gender-female.js +0 -12
- package/bootstrap-icons/gender-male.d.ts +0 -5
- package/bootstrap-icons/gender-male.js +0 -12
- package/bootstrap-icons/gender-trans.d.ts +0 -5
- package/bootstrap-icons/gender-trans.js +0 -12
- package/bootstrap-icons/geo-alt-fill.d.ts +0 -5
- package/bootstrap-icons/geo-alt-fill.js +0 -12
- package/bootstrap-icons/geo-alt.d.ts +0 -5
- package/bootstrap-icons/geo-alt.js +0 -12
- package/bootstrap-icons/geo-fill.d.ts +0 -5
- package/bootstrap-icons/geo-fill.js +0 -12
- package/bootstrap-icons/geo.d.ts +0 -5
- package/bootstrap-icons/geo.js +0 -12
- package/bootstrap-icons/gift-fill.d.ts +0 -5
- package/bootstrap-icons/gift-fill.js +0 -12
- package/bootstrap-icons/gift.d.ts +0 -5
- package/bootstrap-icons/gift.js +0 -12
- package/bootstrap-icons/git.d.ts +0 -5
- package/bootstrap-icons/git.js +0 -12
- package/bootstrap-icons/github.d.ts +0 -5
- package/bootstrap-icons/github.js +0 -12
- package/bootstrap-icons/globe.d.ts +0 -5
- package/bootstrap-icons/globe.js +0 -12
- package/bootstrap-icons/globe2.d.ts +0 -5
- package/bootstrap-icons/globe2.js +0 -12
- package/bootstrap-icons/google.d.ts +0 -5
- package/bootstrap-icons/google.js +0 -12
- package/bootstrap-icons/gpu-card.d.ts +0 -5
- package/bootstrap-icons/gpu-card.js +0 -12
- package/bootstrap-icons/graph-down-arrow.d.ts +0 -5
- package/bootstrap-icons/graph-down-arrow.js +0 -12
- package/bootstrap-icons/graph-down.d.ts +0 -5
- package/bootstrap-icons/graph-down.js +0 -12
- package/bootstrap-icons/graph-up-arrow.d.ts +0 -5
- package/bootstrap-icons/graph-up-arrow.js +0 -12
- package/bootstrap-icons/graph-up.d.ts +0 -5
- package/bootstrap-icons/graph-up.js +0 -12
- package/bootstrap-icons/grid-1x2-fill.d.ts +0 -5
- package/bootstrap-icons/grid-1x2-fill.js +0 -12
- package/bootstrap-icons/grid-1x2.d.ts +0 -5
- package/bootstrap-icons/grid-1x2.js +0 -12
- package/bootstrap-icons/grid-3x2-gap-fill.d.ts +0 -5
- package/bootstrap-icons/grid-3x2-gap-fill.js +0 -12
- package/bootstrap-icons/grid-3x2-gap.d.ts +0 -5
- package/bootstrap-icons/grid-3x2-gap.js +0 -12
- package/bootstrap-icons/grid-3x2.d.ts +0 -5
- package/bootstrap-icons/grid-3x2.js +0 -12
- package/bootstrap-icons/grid-3x3-gap-fill.d.ts +0 -5
- package/bootstrap-icons/grid-3x3-gap-fill.js +0 -12
- package/bootstrap-icons/grid-3x3-gap.d.ts +0 -5
- package/bootstrap-icons/grid-3x3-gap.js +0 -12
- package/bootstrap-icons/grid-3x3.d.ts +0 -5
- package/bootstrap-icons/grid-3x3.js +0 -12
- package/bootstrap-icons/grid-fill.d.ts +0 -5
- package/bootstrap-icons/grid-fill.js +0 -12
- package/bootstrap-icons/grid.d.ts +0 -5
- package/bootstrap-icons/grid.js +0 -12
- package/bootstrap-icons/grip-horizontal.d.ts +0 -5
- package/bootstrap-icons/grip-horizontal.js +0 -12
- package/bootstrap-icons/grip-vertical.d.ts +0 -5
- package/bootstrap-icons/grip-vertical.js +0 -12
- package/bootstrap-icons/hammer.d.ts +0 -5
- package/bootstrap-icons/hammer.js +0 -12
- package/bootstrap-icons/hand-index-fill.d.ts +0 -5
- package/bootstrap-icons/hand-index-fill.js +0 -12
- package/bootstrap-icons/hand-index-thumb-fill.d.ts +0 -5
- package/bootstrap-icons/hand-index-thumb-fill.js +0 -12
- package/bootstrap-icons/hand-index-thumb.d.ts +0 -5
- package/bootstrap-icons/hand-index-thumb.js +0 -12
- package/bootstrap-icons/hand-index.d.ts +0 -5
- package/bootstrap-icons/hand-index.js +0 -12
- package/bootstrap-icons/hand-thumbs-down-fill.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-down-fill.js +0 -12
- package/bootstrap-icons/hand-thumbs-down.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-down.js +0 -12
- package/bootstrap-icons/hand-thumbs-up-fill.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-up-fill.js +0 -12
- package/bootstrap-icons/hand-thumbs-up.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-up.js +0 -12
- package/bootstrap-icons/handbag-fill.d.ts +0 -5
- package/bootstrap-icons/handbag-fill.js +0 -12
- package/bootstrap-icons/handbag.d.ts +0 -5
- package/bootstrap-icons/handbag.js +0 -12
- package/bootstrap-icons/hash.d.ts +0 -5
- package/bootstrap-icons/hash.js +0 -12
- package/bootstrap-icons/hdd-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-fill.js +0 -12
- package/bootstrap-icons/hdd-network-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-network-fill.js +0 -12
- package/bootstrap-icons/hdd-network.d.ts +0 -5
- package/bootstrap-icons/hdd-network.js +0 -12
- package/bootstrap-icons/hdd-rack-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-rack-fill.js +0 -12
- package/bootstrap-icons/hdd-rack.d.ts +0 -5
- package/bootstrap-icons/hdd-rack.js +0 -12
- package/bootstrap-icons/hdd-stack-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-stack-fill.js +0 -12
- package/bootstrap-icons/hdd-stack.d.ts +0 -5
- package/bootstrap-icons/hdd-stack.js +0 -12
- package/bootstrap-icons/hdd.d.ts +0 -5
- package/bootstrap-icons/hdd.js +0 -12
- package/bootstrap-icons/hdmi-fill.d.ts +0 -5
- package/bootstrap-icons/hdmi-fill.js +0 -12
- package/bootstrap-icons/hdmi.d.ts +0 -5
- package/bootstrap-icons/hdmi.js +0 -12
- package/bootstrap-icons/headphones.d.ts +0 -5
- package/bootstrap-icons/headphones.js +0 -12
- package/bootstrap-icons/headset-vr.d.ts +0 -5
- package/bootstrap-icons/headset-vr.js +0 -12
- package/bootstrap-icons/headset.d.ts +0 -5
- package/bootstrap-icons/headset.js +0 -12
- package/bootstrap-icons/heart-arrow.d.ts +0 -5
- package/bootstrap-icons/heart-arrow.js +0 -12
- package/bootstrap-icons/heart-fill.d.ts +0 -5
- package/bootstrap-icons/heart-fill.js +0 -12
- package/bootstrap-icons/heart-half.d.ts +0 -5
- package/bootstrap-icons/heart-half.js +0 -12
- package/bootstrap-icons/heart-pulse-fill.d.ts +0 -5
- package/bootstrap-icons/heart-pulse-fill.js +0 -12
- package/bootstrap-icons/heart-pulse.d.ts +0 -5
- package/bootstrap-icons/heart-pulse.js +0 -12
- package/bootstrap-icons/heart.d.ts +0 -5
- package/bootstrap-icons/heart.js +0 -12
- package/bootstrap-icons/heartbreak-fill.d.ts +0 -5
- package/bootstrap-icons/heartbreak-fill.js +0 -12
- package/bootstrap-icons/heartbreak.d.ts +0 -5
- package/bootstrap-icons/heartbreak.js +0 -12
- package/bootstrap-icons/hearts.d.ts +0 -5
- package/bootstrap-icons/hearts.js +0 -12
- package/bootstrap-icons/heptagon-fill.d.ts +0 -5
- package/bootstrap-icons/heptagon-fill.js +0 -12
- package/bootstrap-icons/heptagon-half.d.ts +0 -5
- package/bootstrap-icons/heptagon-half.js +0 -12
- package/bootstrap-icons/heptagon.d.ts +0 -5
- package/bootstrap-icons/heptagon.js +0 -12
- package/bootstrap-icons/hexagon-fill.d.ts +0 -5
- package/bootstrap-icons/hexagon-fill.js +0 -12
- package/bootstrap-icons/hexagon-half.d.ts +0 -5
- package/bootstrap-icons/hexagon-half.js +0 -12
- package/bootstrap-icons/hexagon.d.ts +0 -5
- package/bootstrap-icons/hexagon.js +0 -12
- package/bootstrap-icons/hospital-fill.d.ts +0 -5
- package/bootstrap-icons/hospital-fill.js +0 -12
- package/bootstrap-icons/hospital.d.ts +0 -5
- package/bootstrap-icons/hospital.js +0 -12
- package/bootstrap-icons/hourglass-bottom.d.ts +0 -5
- package/bootstrap-icons/hourglass-bottom.js +0 -12
- package/bootstrap-icons/hourglass-split.d.ts +0 -5
- package/bootstrap-icons/hourglass-split.js +0 -12
- package/bootstrap-icons/hourglass-top.d.ts +0 -5
- package/bootstrap-icons/hourglass-top.js +0 -12
- package/bootstrap-icons/hourglass.d.ts +0 -5
- package/bootstrap-icons/hourglass.js +0 -12
- package/bootstrap-icons/house-door-fill.d.ts +0 -5
- package/bootstrap-icons/house-door-fill.js +0 -12
- package/bootstrap-icons/house-door.d.ts +0 -5
- package/bootstrap-icons/house-door.js +0 -12
- package/bootstrap-icons/house-fill.d.ts +0 -5
- package/bootstrap-icons/house-fill.js +0 -12
- package/bootstrap-icons/house-heart-fill.d.ts +0 -5
- package/bootstrap-icons/house-heart-fill.js +0 -12
- package/bootstrap-icons/house-heart.d.ts +0 -5
- package/bootstrap-icons/house-heart.js +0 -12
- package/bootstrap-icons/house.d.ts +0 -5
- package/bootstrap-icons/house.js +0 -12
- package/bootstrap-icons/hr.d.ts +0 -5
- package/bootstrap-icons/hr.js +0 -12
- package/bootstrap-icons/hurricane.d.ts +0 -5
- package/bootstrap-icons/hurricane.js +0 -12
- package/bootstrap-icons/hypnotize.d.ts +0 -5
- package/bootstrap-icons/hypnotize.js +0 -12
- package/bootstrap-icons/image-alt.d.ts +0 -5
- package/bootstrap-icons/image-alt.js +0 -12
- package/bootstrap-icons/image-fill.d.ts +0 -5
- package/bootstrap-icons/image-fill.js +0 -12
- package/bootstrap-icons/image.d.ts +0 -5
- package/bootstrap-icons/image.js +0 -12
- package/bootstrap-icons/images.d.ts +0 -5
- package/bootstrap-icons/images.js +0 -12
- package/bootstrap-icons/inbox-fill.d.ts +0 -5
- package/bootstrap-icons/inbox-fill.js +0 -12
- package/bootstrap-icons/inbox.d.ts +0 -5
- package/bootstrap-icons/inbox.js +0 -12
- package/bootstrap-icons/inboxes-fill.d.ts +0 -5
- package/bootstrap-icons/inboxes-fill.js +0 -12
- package/bootstrap-icons/inboxes.d.ts +0 -5
- package/bootstrap-icons/inboxes.js +0 -12
- package/bootstrap-icons/incognito.d.ts +0 -5
- package/bootstrap-icons/incognito.js +0 -12
- package/bootstrap-icons/index.d.ts +0 -1671
- package/bootstrap-icons/index.js +0 -1687
- package/bootstrap-icons/infinity.d.ts +0 -5
- package/bootstrap-icons/infinity.js +0 -12
- package/bootstrap-icons/info-circle-fill.d.ts +0 -5
- package/bootstrap-icons/info-circle-fill.js +0 -12
- package/bootstrap-icons/info-circle.d.ts +0 -5
- package/bootstrap-icons/info-circle.js +0 -12
- package/bootstrap-icons/info-lg.d.ts +0 -5
- package/bootstrap-icons/info-lg.js +0 -12
- package/bootstrap-icons/info-square-fill.d.ts +0 -5
- package/bootstrap-icons/info-square-fill.js +0 -12
- package/bootstrap-icons/info-square.d.ts +0 -5
- package/bootstrap-icons/info-square.js +0 -12
- package/bootstrap-icons/info.d.ts +0 -5
- package/bootstrap-icons/info.js +0 -12
- package/bootstrap-icons/input-cursor-text.d.ts +0 -5
- package/bootstrap-icons/input-cursor-text.js +0 -12
- package/bootstrap-icons/input-cursor.d.ts +0 -5
- package/bootstrap-icons/input-cursor.js +0 -12
- package/bootstrap-icons/instagram.d.ts +0 -5
- package/bootstrap-icons/instagram.js +0 -12
- package/bootstrap-icons/intersect.d.ts +0 -5
- package/bootstrap-icons/intersect.js +0 -12
- package/bootstrap-icons/journal-album.d.ts +0 -5
- package/bootstrap-icons/journal-album.js +0 -12
- package/bootstrap-icons/journal-arrow-down.d.ts +0 -5
- package/bootstrap-icons/journal-arrow-down.js +0 -12
- package/bootstrap-icons/journal-arrow-up.d.ts +0 -5
- package/bootstrap-icons/journal-arrow-up.js +0 -12
- package/bootstrap-icons/journal-bookmark-fill.d.ts +0 -5
- package/bootstrap-icons/journal-bookmark-fill.js +0 -12
- package/bootstrap-icons/journal-bookmark.d.ts +0 -5
- package/bootstrap-icons/journal-bookmark.js +0 -12
- package/bootstrap-icons/journal-check.d.ts +0 -5
- package/bootstrap-icons/journal-check.js +0 -12
- package/bootstrap-icons/journal-code.d.ts +0 -5
- package/bootstrap-icons/journal-code.js +0 -12
- package/bootstrap-icons/journal-medical.d.ts +0 -5
- package/bootstrap-icons/journal-medical.js +0 -12
- package/bootstrap-icons/journal-minus.d.ts +0 -5
- package/bootstrap-icons/journal-minus.js +0 -12
- package/bootstrap-icons/journal-plus.d.ts +0 -5
- package/bootstrap-icons/journal-plus.js +0 -12
- package/bootstrap-icons/journal-richtext.d.ts +0 -5
- package/bootstrap-icons/journal-richtext.js +0 -12
- package/bootstrap-icons/journal-text.d.ts +0 -5
- package/bootstrap-icons/journal-text.js +0 -12
- package/bootstrap-icons/journal-x.d.ts +0 -5
- package/bootstrap-icons/journal-x.js +0 -12
- package/bootstrap-icons/journal.d.ts +0 -5
- package/bootstrap-icons/journal.js +0 -12
- package/bootstrap-icons/journals.d.ts +0 -5
- package/bootstrap-icons/journals.js +0 -12
- package/bootstrap-icons/joystick.d.ts +0 -5
- package/bootstrap-icons/joystick.js +0 -12
- package/bootstrap-icons/justify-left.d.ts +0 -5
- package/bootstrap-icons/justify-left.js +0 -12
- package/bootstrap-icons/justify-right.d.ts +0 -5
- package/bootstrap-icons/justify-right.js +0 -12
- package/bootstrap-icons/justify.d.ts +0 -5
- package/bootstrap-icons/justify.js +0 -12
- package/bootstrap-icons/kanban-fill.d.ts +0 -5
- package/bootstrap-icons/kanban-fill.js +0 -12
- package/bootstrap-icons/kanban.d.ts +0 -5
- package/bootstrap-icons/kanban.js +0 -12
- package/bootstrap-icons/key-fill.d.ts +0 -5
- package/bootstrap-icons/key-fill.js +0 -12
- package/bootstrap-icons/key.d.ts +0 -5
- package/bootstrap-icons/key.js +0 -12
- package/bootstrap-icons/keyboard-fill.d.ts +0 -5
- package/bootstrap-icons/keyboard-fill.js +0 -12
- package/bootstrap-icons/keyboard.d.ts +0 -5
- package/bootstrap-icons/keyboard.js +0 -12
- package/bootstrap-icons/ladder.d.ts +0 -5
- package/bootstrap-icons/ladder.js +0 -12
- package/bootstrap-icons/lamp-fill.d.ts +0 -5
- package/bootstrap-icons/lamp-fill.js +0 -12
- package/bootstrap-icons/lamp.d.ts +0 -5
- package/bootstrap-icons/lamp.js +0 -12
- package/bootstrap-icons/laptop-fill.d.ts +0 -5
- package/bootstrap-icons/laptop-fill.js +0 -12
- package/bootstrap-icons/laptop.d.ts +0 -5
- package/bootstrap-icons/laptop.js +0 -12
- package/bootstrap-icons/layer-backward.d.ts +0 -5
- package/bootstrap-icons/layer-backward.js +0 -12
- package/bootstrap-icons/layer-forward.d.ts +0 -5
- package/bootstrap-icons/layer-forward.js +0 -12
- package/bootstrap-icons/layers-fill.d.ts +0 -5
- package/bootstrap-icons/layers-fill.js +0 -12
- package/bootstrap-icons/layers-half.d.ts +0 -5
- package/bootstrap-icons/layers-half.js +0 -12
- package/bootstrap-icons/layers.d.ts +0 -5
- package/bootstrap-icons/layers.js +0 -12
- package/bootstrap-icons/layout-sidebar-inset-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-inset-reverse.js +0 -12
- package/bootstrap-icons/layout-sidebar-inset.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-inset.js +0 -12
- package/bootstrap-icons/layout-sidebar-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-reverse.js +0 -12
- package/bootstrap-icons/layout-sidebar.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar.js +0 -12
- package/bootstrap-icons/layout-split.d.ts +0 -5
- package/bootstrap-icons/layout-split.js +0 -12
- package/bootstrap-icons/layout-text-sidebar-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-text-sidebar-reverse.js +0 -12
- package/bootstrap-icons/layout-text-sidebar.d.ts +0 -5
- package/bootstrap-icons/layout-text-sidebar.js +0 -12
- package/bootstrap-icons/layout-text-window-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-text-window-reverse.js +0 -12
- package/bootstrap-icons/layout-text-window.d.ts +0 -5
- package/bootstrap-icons/layout-text-window.js +0 -12
- package/bootstrap-icons/layout-three-columns.d.ts +0 -5
- package/bootstrap-icons/layout-three-columns.js +0 -12
- package/bootstrap-icons/layout-wtf.d.ts +0 -5
- package/bootstrap-icons/layout-wtf.js +0 -12
- package/bootstrap-icons/life-preserver.d.ts +0 -5
- package/bootstrap-icons/life-preserver.js +0 -12
- package/bootstrap-icons/lightbulb-fill.d.ts +0 -5
- package/bootstrap-icons/lightbulb-fill.js +0 -12
- package/bootstrap-icons/lightbulb-off-fill.d.ts +0 -5
- package/bootstrap-icons/lightbulb-off-fill.js +0 -12
- package/bootstrap-icons/lightbulb-off.d.ts +0 -5
- package/bootstrap-icons/lightbulb-off.js +0 -12
- package/bootstrap-icons/lightbulb.d.ts +0 -5
- package/bootstrap-icons/lightbulb.js +0 -12
- package/bootstrap-icons/lightning-charge-fill.d.ts +0 -5
- package/bootstrap-icons/lightning-charge-fill.js +0 -12
- package/bootstrap-icons/lightning-charge.d.ts +0 -5
- package/bootstrap-icons/lightning-charge.js +0 -12
- package/bootstrap-icons/lightning-fill.d.ts +0 -5
- package/bootstrap-icons/lightning-fill.js +0 -12
- package/bootstrap-icons/lightning.d.ts +0 -5
- package/bootstrap-icons/lightning.js +0 -12
- package/bootstrap-icons/line.d.ts +0 -5
- package/bootstrap-icons/line.js +0 -12
- package/bootstrap-icons/link-45deg.d.ts +0 -5
- package/bootstrap-icons/link-45deg.js +0 -12
- package/bootstrap-icons/link.d.ts +0 -5
- package/bootstrap-icons/link.js +0 -12
- package/bootstrap-icons/linkedin.d.ts +0 -5
- package/bootstrap-icons/linkedin.js +0 -12
- package/bootstrap-icons/list-check.d.ts +0 -5
- package/bootstrap-icons/list-check.js +0 -12
- package/bootstrap-icons/list-columns-reverse.d.ts +0 -5
- package/bootstrap-icons/list-columns-reverse.js +0 -12
- package/bootstrap-icons/list-columns.d.ts +0 -5
- package/bootstrap-icons/list-columns.js +0 -12
- package/bootstrap-icons/list-nested.d.ts +0 -5
- package/bootstrap-icons/list-nested.js +0 -12
- package/bootstrap-icons/list-ol.d.ts +0 -5
- package/bootstrap-icons/list-ol.js +0 -12
- package/bootstrap-icons/list-stars.d.ts +0 -5
- package/bootstrap-icons/list-stars.js +0 -12
- package/bootstrap-icons/list-task.d.ts +0 -5
- package/bootstrap-icons/list-task.js +0 -12
- package/bootstrap-icons/list-ul.d.ts +0 -5
- package/bootstrap-icons/list-ul.js +0 -12
- package/bootstrap-icons/list.d.ts +0 -5
- package/bootstrap-icons/list.js +0 -12
- package/bootstrap-icons/lock-fill.d.ts +0 -5
- package/bootstrap-icons/lock-fill.js +0 -12
- package/bootstrap-icons/lock.d.ts +0 -5
- package/bootstrap-icons/lock.js +0 -12
- package/bootstrap-icons/magic.d.ts +0 -5
- package/bootstrap-icons/magic.js +0 -12
- package/bootstrap-icons/magnet-fill.d.ts +0 -5
- package/bootstrap-icons/magnet-fill.js +0 -12
- package/bootstrap-icons/magnet.d.ts +0 -5
- package/bootstrap-icons/magnet.js +0 -12
- package/bootstrap-icons/mailbox.d.ts +0 -5
- package/bootstrap-icons/mailbox.js +0 -12
- package/bootstrap-icons/mailbox2.d.ts +0 -5
- package/bootstrap-icons/mailbox2.js +0 -12
- package/bootstrap-icons/map-fill.d.ts +0 -5
- package/bootstrap-icons/map-fill.js +0 -12
- package/bootstrap-icons/map.d.ts +0 -5
- package/bootstrap-icons/map.js +0 -12
- package/bootstrap-icons/markdown-fill.d.ts +0 -5
- package/bootstrap-icons/markdown-fill.js +0 -12
- package/bootstrap-icons/markdown.d.ts +0 -5
- package/bootstrap-icons/markdown.js +0 -12
- package/bootstrap-icons/mask.d.ts +0 -5
- package/bootstrap-icons/mask.js +0 -12
- package/bootstrap-icons/mastodon.d.ts +0 -5
- package/bootstrap-icons/mastodon.js +0 -12
- package/bootstrap-icons/medium.d.ts +0 -5
- package/bootstrap-icons/medium.js +0 -12
- package/bootstrap-icons/megaphone-fill.d.ts +0 -5
- package/bootstrap-icons/megaphone-fill.js +0 -12
- package/bootstrap-icons/megaphone.d.ts +0 -5
- package/bootstrap-icons/megaphone.js +0 -12
- package/bootstrap-icons/memory.d.ts +0 -5
- package/bootstrap-icons/memory.js +0 -12
- package/bootstrap-icons/menu-app-fill.d.ts +0 -5
- package/bootstrap-icons/menu-app-fill.js +0 -12
- package/bootstrap-icons/menu-app.d.ts +0 -5
- package/bootstrap-icons/menu-app.js +0 -12
- package/bootstrap-icons/menu-button-fill.d.ts +0 -5
- package/bootstrap-icons/menu-button-fill.js +0 -12
- package/bootstrap-icons/menu-button-wide-fill.d.ts +0 -5
- package/bootstrap-icons/menu-button-wide-fill.js +0 -12
- package/bootstrap-icons/menu-button-wide.d.ts +0 -5
- package/bootstrap-icons/menu-button-wide.js +0 -12
- package/bootstrap-icons/menu-button.d.ts +0 -5
- package/bootstrap-icons/menu-button.js +0 -12
- package/bootstrap-icons/menu-down.d.ts +0 -5
- package/bootstrap-icons/menu-down.js +0 -12
- package/bootstrap-icons/menu-up.d.ts +0 -5
- package/bootstrap-icons/menu-up.js +0 -12
- package/bootstrap-icons/messenger.d.ts +0 -5
- package/bootstrap-icons/messenger.js +0 -12
- package/bootstrap-icons/meta.d.ts +0 -5
- package/bootstrap-icons/meta.js +0 -12
- package/bootstrap-icons/mic-fill.d.ts +0 -5
- package/bootstrap-icons/mic-fill.js +0 -12
- package/bootstrap-icons/mic-mute-fill.d.ts +0 -5
- package/bootstrap-icons/mic-mute-fill.js +0 -12
- package/bootstrap-icons/mic-mute.d.ts +0 -5
- package/bootstrap-icons/mic-mute.js +0 -12
- package/bootstrap-icons/mic.d.ts +0 -5
- package/bootstrap-icons/mic.js +0 -12
- package/bootstrap-icons/microsoft.d.ts +0 -5
- package/bootstrap-icons/microsoft.js +0 -12
- package/bootstrap-icons/minecart-loaded.d.ts +0 -5
- package/bootstrap-icons/minecart-loaded.js +0 -12
- package/bootstrap-icons/minecart.d.ts +0 -5
- package/bootstrap-icons/minecart.js +0 -12
- package/bootstrap-icons/modem-fill.d.ts +0 -5
- package/bootstrap-icons/modem-fill.js +0 -12
- package/bootstrap-icons/modem.d.ts +0 -5
- package/bootstrap-icons/modem.js +0 -12
- package/bootstrap-icons/moisture.d.ts +0 -5
- package/bootstrap-icons/moisture.js +0 -12
- package/bootstrap-icons/moon-fill.d.ts +0 -5
- package/bootstrap-icons/moon-fill.js +0 -12
- package/bootstrap-icons/moon-stars-fill.d.ts +0 -5
- package/bootstrap-icons/moon-stars-fill.js +0 -12
- package/bootstrap-icons/moon-stars.d.ts +0 -5
- package/bootstrap-icons/moon-stars.js +0 -12
- package/bootstrap-icons/moon.d.ts +0 -5
- package/bootstrap-icons/moon.js +0 -12
- package/bootstrap-icons/mortarboard-fill.d.ts +0 -5
- package/bootstrap-icons/mortarboard-fill.js +0 -12
- package/bootstrap-icons/mortarboard.d.ts +0 -5
- package/bootstrap-icons/mortarboard.js +0 -12
- package/bootstrap-icons/motherboard-fill.d.ts +0 -5
- package/bootstrap-icons/motherboard-fill.js +0 -12
- package/bootstrap-icons/motherboard.d.ts +0 -5
- package/bootstrap-icons/motherboard.js +0 -12
- package/bootstrap-icons/mouse-fill.d.ts +0 -5
- package/bootstrap-icons/mouse-fill.js +0 -12
- package/bootstrap-icons/mouse.d.ts +0 -5
- package/bootstrap-icons/mouse.js +0 -12
- package/bootstrap-icons/mouse2-fill.d.ts +0 -5
- package/bootstrap-icons/mouse2-fill.js +0 -12
- package/bootstrap-icons/mouse2.d.ts +0 -5
- package/bootstrap-icons/mouse2.js +0 -12
- package/bootstrap-icons/mouse3-fill.d.ts +0 -5
- package/bootstrap-icons/mouse3-fill.js +0 -12
- package/bootstrap-icons/mouse3.d.ts +0 -5
- package/bootstrap-icons/mouse3.js +0 -12
- package/bootstrap-icons/music-note-beamed.d.ts +0 -5
- package/bootstrap-icons/music-note-beamed.js +0 -12
- package/bootstrap-icons/music-note-list.d.ts +0 -5
- package/bootstrap-icons/music-note-list.js +0 -12
- package/bootstrap-icons/music-note.d.ts +0 -5
- package/bootstrap-icons/music-note.js +0 -12
- package/bootstrap-icons/music-player-fill.d.ts +0 -5
- package/bootstrap-icons/music-player-fill.js +0 -12
- package/bootstrap-icons/music-player.d.ts +0 -5
- package/bootstrap-icons/music-player.js +0 -12
- package/bootstrap-icons/newspaper.d.ts +0 -5
- package/bootstrap-icons/newspaper.js +0 -12
- package/bootstrap-icons/nintendo-switch.d.ts +0 -5
- package/bootstrap-icons/nintendo-switch.js +0 -12
- package/bootstrap-icons/node-minus-fill.d.ts +0 -5
- package/bootstrap-icons/node-minus-fill.js +0 -12
- package/bootstrap-icons/node-minus.d.ts +0 -5
- package/bootstrap-icons/node-minus.js +0 -12
- package/bootstrap-icons/node-plus-fill.d.ts +0 -5
- package/bootstrap-icons/node-plus-fill.js +0 -12
- package/bootstrap-icons/node-plus.d.ts +0 -5
- package/bootstrap-icons/node-plus.js +0 -12
- package/bootstrap-icons/nut-fill.d.ts +0 -5
- package/bootstrap-icons/nut-fill.js +0 -12
- package/bootstrap-icons/nut.d.ts +0 -5
- package/bootstrap-icons/nut.js +0 -12
- package/bootstrap-icons/octagon-fill.d.ts +0 -5
- package/bootstrap-icons/octagon-fill.js +0 -12
- package/bootstrap-icons/octagon-half.d.ts +0 -5
- package/bootstrap-icons/octagon-half.js +0 -12
- package/bootstrap-icons/octagon.d.ts +0 -5
- package/bootstrap-icons/octagon.js +0 -12
- package/bootstrap-icons/optical-audio-fill.d.ts +0 -5
- package/bootstrap-icons/optical-audio-fill.js +0 -12
- package/bootstrap-icons/optical-audio.d.ts +0 -5
- package/bootstrap-icons/optical-audio.js +0 -12
- package/bootstrap-icons/option.d.ts +0 -5
- package/bootstrap-icons/option.js +0 -12
- package/bootstrap-icons/outlet.d.ts +0 -5
- package/bootstrap-icons/outlet.js +0 -12
- package/bootstrap-icons/paint-bucket.d.ts +0 -5
- package/bootstrap-icons/paint-bucket.js +0 -12
- package/bootstrap-icons/palette-fill.d.ts +0 -5
- package/bootstrap-icons/palette-fill.js +0 -12
- package/bootstrap-icons/palette.d.ts +0 -5
- package/bootstrap-icons/palette.js +0 -12
- package/bootstrap-icons/palette2.d.ts +0 -5
- package/bootstrap-icons/palette2.js +0 -12
- package/bootstrap-icons/paperclip.d.ts +0 -5
- package/bootstrap-icons/paperclip.js +0 -12
- package/bootstrap-icons/paragraph.d.ts +0 -5
- package/bootstrap-icons/paragraph.js +0 -12
- package/bootstrap-icons/patch-check-fill.d.ts +0 -5
- package/bootstrap-icons/patch-check-fill.js +0 -12
- package/bootstrap-icons/patch-check.d.ts +0 -5
- package/bootstrap-icons/patch-check.js +0 -12
- package/bootstrap-icons/patch-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/patch-exclamation-fill.js +0 -12
- package/bootstrap-icons/patch-exclamation.d.ts +0 -5
- package/bootstrap-icons/patch-exclamation.js +0 -12
- package/bootstrap-icons/patch-minus-fill.d.ts +0 -5
- package/bootstrap-icons/patch-minus-fill.js +0 -12
- package/bootstrap-icons/patch-minus.d.ts +0 -5
- package/bootstrap-icons/patch-minus.js +0 -12
- package/bootstrap-icons/patch-plus-fill.d.ts +0 -5
- package/bootstrap-icons/patch-plus-fill.js +0 -12
- package/bootstrap-icons/patch-plus.d.ts +0 -5
- package/bootstrap-icons/patch-plus.js +0 -12
- package/bootstrap-icons/patch-question-fill.d.ts +0 -5
- package/bootstrap-icons/patch-question-fill.js +0 -12
- package/bootstrap-icons/patch-question.d.ts +0 -5
- package/bootstrap-icons/patch-question.js +0 -12
- package/bootstrap-icons/pause-btn-fill.d.ts +0 -5
- package/bootstrap-icons/pause-btn-fill.js +0 -12
- package/bootstrap-icons/pause-btn.d.ts +0 -5
- package/bootstrap-icons/pause-btn.js +0 -12
- package/bootstrap-icons/pause-circle-fill.d.ts +0 -5
- package/bootstrap-icons/pause-circle-fill.js +0 -12
- package/bootstrap-icons/pause-circle.d.ts +0 -5
- package/bootstrap-icons/pause-circle.js +0 -12
- package/bootstrap-icons/pause-fill.d.ts +0 -5
- package/bootstrap-icons/pause-fill.js +0 -12
- package/bootstrap-icons/pause.d.ts +0 -5
- package/bootstrap-icons/pause.js +0 -12
- package/bootstrap-icons/paypal.d.ts +0 -5
- package/bootstrap-icons/paypal.js +0 -12
- package/bootstrap-icons/pc-display-horizontal.d.ts +0 -5
- package/bootstrap-icons/pc-display-horizontal.js +0 -12
- package/bootstrap-icons/pc-display.d.ts +0 -5
- package/bootstrap-icons/pc-display.js +0 -12
- package/bootstrap-icons/pc-horizontal.d.ts +0 -5
- package/bootstrap-icons/pc-horizontal.js +0 -12
- package/bootstrap-icons/pc.d.ts +0 -5
- package/bootstrap-icons/pc.js +0 -12
- package/bootstrap-icons/pci-card.d.ts +0 -5
- package/bootstrap-icons/pci-card.js +0 -12
- package/bootstrap-icons/peace-fill.d.ts +0 -5
- package/bootstrap-icons/peace-fill.js +0 -12
- package/bootstrap-icons/peace.d.ts +0 -5
- package/bootstrap-icons/peace.js +0 -12
- package/bootstrap-icons/pen-fill.d.ts +0 -5
- package/bootstrap-icons/pen-fill.js +0 -12
- package/bootstrap-icons/pen.d.ts +0 -5
- package/bootstrap-icons/pen.js +0 -12
- package/bootstrap-icons/pencil-fill.d.ts +0 -5
- package/bootstrap-icons/pencil-fill.js +0 -12
- package/bootstrap-icons/pencil-square.d.ts +0 -5
- package/bootstrap-icons/pencil-square.js +0 -12
- package/bootstrap-icons/pencil.d.ts +0 -5
- package/bootstrap-icons/pencil.js +0 -12
- package/bootstrap-icons/pentagon-fill.d.ts +0 -5
- package/bootstrap-icons/pentagon-fill.js +0 -12
- package/bootstrap-icons/pentagon-half.d.ts +0 -5
- package/bootstrap-icons/pentagon-half.js +0 -12
- package/bootstrap-icons/pentagon.d.ts +0 -5
- package/bootstrap-icons/pentagon.js +0 -12
- package/bootstrap-icons/people-fill.d.ts +0 -5
- package/bootstrap-icons/people-fill.js +0 -12
- package/bootstrap-icons/people.d.ts +0 -5
- package/bootstrap-icons/people.js +0 -12
- package/bootstrap-icons/percent.d.ts +0 -5
- package/bootstrap-icons/percent.js +0 -12
- package/bootstrap-icons/person-badge-fill.d.ts +0 -5
- package/bootstrap-icons/person-badge-fill.js +0 -12
- package/bootstrap-icons/person-badge.d.ts +0 -5
- package/bootstrap-icons/person-badge.js +0 -12
- package/bootstrap-icons/person-bounding-box.d.ts +0 -5
- package/bootstrap-icons/person-bounding-box.js +0 -12
- package/bootstrap-icons/person-check-fill.d.ts +0 -5
- package/bootstrap-icons/person-check-fill.js +0 -12
- package/bootstrap-icons/person-check.d.ts +0 -5
- package/bootstrap-icons/person-check.js +0 -12
- package/bootstrap-icons/person-circle.d.ts +0 -5
- package/bootstrap-icons/person-circle.js +0 -12
- package/bootstrap-icons/person-dash-fill.d.ts +0 -5
- package/bootstrap-icons/person-dash-fill.js +0 -12
- package/bootstrap-icons/person-dash.d.ts +0 -5
- package/bootstrap-icons/person-dash.js +0 -12
- package/bootstrap-icons/person-fill.d.ts +0 -5
- package/bootstrap-icons/person-fill.js +0 -12
- package/bootstrap-icons/person-heart.d.ts +0 -5
- package/bootstrap-icons/person-heart.js +0 -12
- package/bootstrap-icons/person-hearts.d.ts +0 -5
- package/bootstrap-icons/person-hearts.js +0 -12
- package/bootstrap-icons/person-lines-fill.d.ts +0 -5
- package/bootstrap-icons/person-lines-fill.js +0 -12
- package/bootstrap-icons/person-plus-fill.d.ts +0 -5
- package/bootstrap-icons/person-plus-fill.js +0 -12
- package/bootstrap-icons/person-plus.d.ts +0 -5
- package/bootstrap-icons/person-plus.js +0 -12
- package/bootstrap-icons/person-rolodex.d.ts +0 -5
- package/bootstrap-icons/person-rolodex.js +0 -12
- package/bootstrap-icons/person-square.d.ts +0 -5
- package/bootstrap-icons/person-square.js +0 -12
- package/bootstrap-icons/person-video.d.ts +0 -5
- package/bootstrap-icons/person-video.js +0 -12
- package/bootstrap-icons/person-video2.d.ts +0 -5
- package/bootstrap-icons/person-video2.js +0 -12
- package/bootstrap-icons/person-video3.d.ts +0 -5
- package/bootstrap-icons/person-video3.js +0 -12
- package/bootstrap-icons/person-workspace.d.ts +0 -5
- package/bootstrap-icons/person-workspace.js +0 -12
- package/bootstrap-icons/person-x-fill.d.ts +0 -5
- package/bootstrap-icons/person-x-fill.js +0 -12
- package/bootstrap-icons/person-x.d.ts +0 -5
- package/bootstrap-icons/person-x.js +0 -12
- package/bootstrap-icons/person.d.ts +0 -5
- package/bootstrap-icons/person.js +0 -12
- package/bootstrap-icons/phone-fill.d.ts +0 -5
- package/bootstrap-icons/phone-fill.js +0 -12
- package/bootstrap-icons/phone-flip.d.ts +0 -5
- package/bootstrap-icons/phone-flip.js +0 -12
- package/bootstrap-icons/phone-landscape-fill.d.ts +0 -5
- package/bootstrap-icons/phone-landscape-fill.js +0 -12
- package/bootstrap-icons/phone-landscape.d.ts +0 -5
- package/bootstrap-icons/phone-landscape.js +0 -12
- package/bootstrap-icons/phone-vibrate-fill.d.ts +0 -5
- package/bootstrap-icons/phone-vibrate-fill.js +0 -12
- package/bootstrap-icons/phone-vibrate.d.ts +0 -5
- package/bootstrap-icons/phone-vibrate.js +0 -12
- package/bootstrap-icons/phone.d.ts +0 -5
- package/bootstrap-icons/phone.js +0 -12
- package/bootstrap-icons/pie-chart-fill.d.ts +0 -5
- package/bootstrap-icons/pie-chart-fill.js +0 -12
- package/bootstrap-icons/pie-chart.d.ts +0 -5
- package/bootstrap-icons/pie-chart.js +0 -12
- package/bootstrap-icons/piggy-bank-fill.d.ts +0 -5
- package/bootstrap-icons/piggy-bank-fill.js +0 -12
- package/bootstrap-icons/piggy-bank.d.ts +0 -5
- package/bootstrap-icons/piggy-bank.js +0 -12
- package/bootstrap-icons/pin-angle-fill.d.ts +0 -5
- package/bootstrap-icons/pin-angle-fill.js +0 -12
- package/bootstrap-icons/pin-angle.d.ts +0 -5
- package/bootstrap-icons/pin-angle.js +0 -12
- package/bootstrap-icons/pin-fill.d.ts +0 -5
- package/bootstrap-icons/pin-fill.js +0 -12
- package/bootstrap-icons/pin-map-fill.d.ts +0 -5
- package/bootstrap-icons/pin-map-fill.js +0 -12
- package/bootstrap-icons/pin-map.d.ts +0 -5
- package/bootstrap-icons/pin-map.js +0 -12
- package/bootstrap-icons/pin.d.ts +0 -5
- package/bootstrap-icons/pin.js +0 -12
- package/bootstrap-icons/pinterest.d.ts +0 -5
- package/bootstrap-icons/pinterest.js +0 -12
- package/bootstrap-icons/pip-fill.d.ts +0 -5
- package/bootstrap-icons/pip-fill.js +0 -12
- package/bootstrap-icons/pip.d.ts +0 -5
- package/bootstrap-icons/pip.js +0 -12
- package/bootstrap-icons/play-btn-fill.d.ts +0 -5
- package/bootstrap-icons/play-btn-fill.js +0 -12
- package/bootstrap-icons/play-btn.d.ts +0 -5
- package/bootstrap-icons/play-btn.js +0 -12
- package/bootstrap-icons/play-circle-fill.d.ts +0 -5
- package/bootstrap-icons/play-circle-fill.js +0 -12
- package/bootstrap-icons/play-circle.d.ts +0 -5
- package/bootstrap-icons/play-circle.js +0 -12
- package/bootstrap-icons/play-fill.d.ts +0 -5
- package/bootstrap-icons/play-fill.js +0 -12
- package/bootstrap-icons/play.d.ts +0 -5
- package/bootstrap-icons/play.js +0 -12
- package/bootstrap-icons/playstation.d.ts +0 -5
- package/bootstrap-icons/playstation.js +0 -12
- package/bootstrap-icons/plug-fill.d.ts +0 -5
- package/bootstrap-icons/plug-fill.js +0 -12
- package/bootstrap-icons/plug.d.ts +0 -5
- package/bootstrap-icons/plug.js +0 -12
- package/bootstrap-icons/plugin.d.ts +0 -5
- package/bootstrap-icons/plugin.js +0 -12
- package/bootstrap-icons/plus-circle-dotted.d.ts +0 -5
- package/bootstrap-icons/plus-circle-dotted.js +0 -12
- package/bootstrap-icons/plus-circle-fill.d.ts +0 -5
- package/bootstrap-icons/plus-circle-fill.js +0 -12
- package/bootstrap-icons/plus-circle.d.ts +0 -5
- package/bootstrap-icons/plus-circle.js +0 -12
- package/bootstrap-icons/plus-lg.d.ts +0 -5
- package/bootstrap-icons/plus-lg.js +0 -12
- package/bootstrap-icons/plus-slash-minus.d.ts +0 -5
- package/bootstrap-icons/plus-slash-minus.js +0 -12
- package/bootstrap-icons/plus-square-dotted.d.ts +0 -5
- package/bootstrap-icons/plus-square-dotted.js +0 -12
- package/bootstrap-icons/plus-square-fill.d.ts +0 -5
- package/bootstrap-icons/plus-square-fill.js +0 -12
- package/bootstrap-icons/plus-square.d.ts +0 -5
- package/bootstrap-icons/plus-square.js +0 -12
- package/bootstrap-icons/plus.d.ts +0 -5
- package/bootstrap-icons/plus.js +0 -12
- package/bootstrap-icons/postage-fill.d.ts +0 -5
- package/bootstrap-icons/postage-fill.js +0 -12
- package/bootstrap-icons/postage-heart-fill.d.ts +0 -5
- package/bootstrap-icons/postage-heart-fill.js +0 -12
- package/bootstrap-icons/postage-heart.d.ts +0 -5
- package/bootstrap-icons/postage-heart.js +0 -12
- package/bootstrap-icons/postage.d.ts +0 -5
- package/bootstrap-icons/postage.js +0 -12
- package/bootstrap-icons/postcard-fill.d.ts +0 -5
- package/bootstrap-icons/postcard-fill.js +0 -12
- package/bootstrap-icons/postcard-heart-fill.d.ts +0 -5
- package/bootstrap-icons/postcard-heart-fill.js +0 -12
- package/bootstrap-icons/postcard-heart.d.ts +0 -5
- package/bootstrap-icons/postcard-heart.js +0 -12
- package/bootstrap-icons/postcard.d.ts +0 -5
- package/bootstrap-icons/postcard.js +0 -12
- package/bootstrap-icons/power.d.ts +0 -5
- package/bootstrap-icons/power.js +0 -12
- package/bootstrap-icons/printer-fill.d.ts +0 -5
- package/bootstrap-icons/printer-fill.js +0 -12
- package/bootstrap-icons/printer.d.ts +0 -5
- package/bootstrap-icons/printer.js +0 -12
- package/bootstrap-icons/projector-fill.d.ts +0 -5
- package/bootstrap-icons/projector-fill.js +0 -12
- package/bootstrap-icons/projector.d.ts +0 -5
- package/bootstrap-icons/projector.js +0 -12
- package/bootstrap-icons/puzzle-fill.d.ts +0 -5
- package/bootstrap-icons/puzzle-fill.js +0 -12
- package/bootstrap-icons/puzzle.d.ts +0 -5
- package/bootstrap-icons/puzzle.js +0 -12
- package/bootstrap-icons/qr-code-scan.d.ts +0 -5
- package/bootstrap-icons/qr-code-scan.js +0 -12
- package/bootstrap-icons/qr-code.d.ts +0 -5
- package/bootstrap-icons/qr-code.js +0 -12
- package/bootstrap-icons/question-circle-fill.d.ts +0 -5
- package/bootstrap-icons/question-circle-fill.js +0 -12
- package/bootstrap-icons/question-circle.d.ts +0 -5
- package/bootstrap-icons/question-circle.js +0 -12
- package/bootstrap-icons/question-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/question-diamond-fill.js +0 -12
- package/bootstrap-icons/question-diamond.d.ts +0 -5
- package/bootstrap-icons/question-diamond.js +0 -12
- package/bootstrap-icons/question-lg.d.ts +0 -5
- package/bootstrap-icons/question-lg.js +0 -12
- package/bootstrap-icons/question-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/question-octagon-fill.js +0 -12
- package/bootstrap-icons/question-octagon.d.ts +0 -5
- package/bootstrap-icons/question-octagon.js +0 -12
- package/bootstrap-icons/question-square-fill.d.ts +0 -5
- package/bootstrap-icons/question-square-fill.js +0 -12
- package/bootstrap-icons/question-square.d.ts +0 -5
- package/bootstrap-icons/question-square.js +0 -12
- package/bootstrap-icons/question.d.ts +0 -5
- package/bootstrap-icons/question.js +0 -12
- package/bootstrap-icons/quora.d.ts +0 -5
- package/bootstrap-icons/quora.js +0 -12
- package/bootstrap-icons/quote.d.ts +0 -5
- package/bootstrap-icons/quote.js +0 -12
- package/bootstrap-icons/radioactive.d.ts +0 -5
- package/bootstrap-icons/radioactive.js +0 -12
- package/bootstrap-icons/rainbow.d.ts +0 -5
- package/bootstrap-icons/rainbow.js +0 -12
- package/bootstrap-icons/receipt-cutoff.d.ts +0 -5
- package/bootstrap-icons/receipt-cutoff.js +0 -12
- package/bootstrap-icons/receipt.d.ts +0 -5
- package/bootstrap-icons/receipt.js +0 -12
- package/bootstrap-icons/reception-0.d.ts +0 -5
- package/bootstrap-icons/reception-0.js +0 -12
- package/bootstrap-icons/reception-1.d.ts +0 -5
- package/bootstrap-icons/reception-1.js +0 -12
- package/bootstrap-icons/reception-2.d.ts +0 -5
- package/bootstrap-icons/reception-2.js +0 -12
- package/bootstrap-icons/reception-3.d.ts +0 -5
- package/bootstrap-icons/reception-3.js +0 -12
- package/bootstrap-icons/reception-4.d.ts +0 -5
- package/bootstrap-icons/reception-4.js +0 -12
- package/bootstrap-icons/record-btn-fill.d.ts +0 -5
- package/bootstrap-icons/record-btn-fill.js +0 -12
- package/bootstrap-icons/record-btn.d.ts +0 -5
- package/bootstrap-icons/record-btn.js +0 -12
- package/bootstrap-icons/record-circle-fill.d.ts +0 -5
- package/bootstrap-icons/record-circle-fill.js +0 -12
- package/bootstrap-icons/record-circle.d.ts +0 -5
- package/bootstrap-icons/record-circle.js +0 -12
- package/bootstrap-icons/record-fill.d.ts +0 -5
- package/bootstrap-icons/record-fill.js +0 -12
- package/bootstrap-icons/record.d.ts +0 -5
- package/bootstrap-icons/record.js +0 -12
- package/bootstrap-icons/record2-fill.d.ts +0 -5
- package/bootstrap-icons/record2-fill.js +0 -12
- package/bootstrap-icons/record2.d.ts +0 -5
- package/bootstrap-icons/record2.js +0 -12
- package/bootstrap-icons/recycle.d.ts +0 -5
- package/bootstrap-icons/recycle.js +0 -12
- package/bootstrap-icons/reddit.d.ts +0 -5
- package/bootstrap-icons/reddit.js +0 -12
- package/bootstrap-icons/reply-all-fill.d.ts +0 -5
- package/bootstrap-icons/reply-all-fill.js +0 -12
- package/bootstrap-icons/reply-all.d.ts +0 -5
- package/bootstrap-icons/reply-all.js +0 -12
- package/bootstrap-icons/reply-fill.d.ts +0 -5
- package/bootstrap-icons/reply-fill.js +0 -12
- package/bootstrap-icons/reply.d.ts +0 -5
- package/bootstrap-icons/reply.js +0 -12
- package/bootstrap-icons/robot.d.ts +0 -5
- package/bootstrap-icons/robot.js +0 -12
- package/bootstrap-icons/router-fill.d.ts +0 -5
- package/bootstrap-icons/router-fill.js +0 -12
- package/bootstrap-icons/router.d.ts +0 -5
- package/bootstrap-icons/router.js +0 -12
- package/bootstrap-icons/rss-fill.d.ts +0 -5
- package/bootstrap-icons/rss-fill.js +0 -12
- package/bootstrap-icons/rss.d.ts +0 -5
- package/bootstrap-icons/rss.js +0 -12
- package/bootstrap-icons/rulers.d.ts +0 -5
- package/bootstrap-icons/rulers.js +0 -12
- package/bootstrap-icons/safe-fill.d.ts +0 -5
- package/bootstrap-icons/safe-fill.js +0 -12
- package/bootstrap-icons/safe.d.ts +0 -5
- package/bootstrap-icons/safe.js +0 -12
- package/bootstrap-icons/safe2-fill.d.ts +0 -5
- package/bootstrap-icons/safe2-fill.js +0 -12
- package/bootstrap-icons/safe2.d.ts +0 -5
- package/bootstrap-icons/safe2.js +0 -12
- package/bootstrap-icons/save-fill.d.ts +0 -5
- package/bootstrap-icons/save-fill.js +0 -12
- package/bootstrap-icons/save.d.ts +0 -5
- package/bootstrap-icons/save.js +0 -12
- package/bootstrap-icons/save2-fill.d.ts +0 -5
- package/bootstrap-icons/save2-fill.js +0 -12
- package/bootstrap-icons/save2.d.ts +0 -5
- package/bootstrap-icons/save2.js +0 -12
- package/bootstrap-icons/scissors.d.ts +0 -5
- package/bootstrap-icons/scissors.js +0 -12
- package/bootstrap-icons/screwdriver.d.ts +0 -5
- package/bootstrap-icons/screwdriver.js +0 -12
- package/bootstrap-icons/sd-card-fill.d.ts +0 -5
- package/bootstrap-icons/sd-card-fill.js +0 -12
- package/bootstrap-icons/sd-card.d.ts +0 -5
- package/bootstrap-icons/sd-card.js +0 -12
- package/bootstrap-icons/search-heart-fill.d.ts +0 -5
- package/bootstrap-icons/search-heart-fill.js +0 -12
- package/bootstrap-icons/search-heart.d.ts +0 -5
- package/bootstrap-icons/search-heart.js +0 -12
- package/bootstrap-icons/search.d.ts +0 -5
- package/bootstrap-icons/search.js +0 -12
- package/bootstrap-icons/segmented-nav.d.ts +0 -5
- package/bootstrap-icons/segmented-nav.js +0 -12
- package/bootstrap-icons/send-check-fill.d.ts +0 -5
- package/bootstrap-icons/send-check-fill.js +0 -12
- package/bootstrap-icons/send-check.d.ts +0 -5
- package/bootstrap-icons/send-check.js +0 -12
- package/bootstrap-icons/send-dash-fill.d.ts +0 -5
- package/bootstrap-icons/send-dash-fill.js +0 -12
- package/bootstrap-icons/send-dash.d.ts +0 -5
- package/bootstrap-icons/send-dash.js +0 -12
- package/bootstrap-icons/send-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/send-exclamation-fill.js +0 -12
- package/bootstrap-icons/send-exclamation.d.ts +0 -5
- package/bootstrap-icons/send-exclamation.js +0 -12
- package/bootstrap-icons/send-fill.d.ts +0 -5
- package/bootstrap-icons/send-fill.js +0 -12
- package/bootstrap-icons/send-plus-fill.d.ts +0 -5
- package/bootstrap-icons/send-plus-fill.js +0 -12
- package/bootstrap-icons/send-plus.d.ts +0 -5
- package/bootstrap-icons/send-plus.js +0 -12
- package/bootstrap-icons/send-slash-fill.d.ts +0 -5
- package/bootstrap-icons/send-slash-fill.js +0 -12
- package/bootstrap-icons/send-slash.d.ts +0 -5
- package/bootstrap-icons/send-slash.js +0 -12
- package/bootstrap-icons/send-x-fill.d.ts +0 -5
- package/bootstrap-icons/send-x-fill.js +0 -12
- package/bootstrap-icons/send-x.d.ts +0 -5
- package/bootstrap-icons/send-x.js +0 -12
- package/bootstrap-icons/send.d.ts +0 -5
- package/bootstrap-icons/send.js +0 -12
- package/bootstrap-icons/server.d.ts +0 -5
- package/bootstrap-icons/server.js +0 -12
- package/bootstrap-icons/share-fill.d.ts +0 -5
- package/bootstrap-icons/share-fill.js +0 -12
- package/bootstrap-icons/share.d.ts +0 -5
- package/bootstrap-icons/share.js +0 -12
- package/bootstrap-icons/shield-check.d.ts +0 -5
- package/bootstrap-icons/shield-check.js +0 -12
- package/bootstrap-icons/shield-exclamation.d.ts +0 -5
- package/bootstrap-icons/shield-exclamation.js +0 -12
- package/bootstrap-icons/shield-fill-check.d.ts +0 -5
- package/bootstrap-icons/shield-fill-check.js +0 -12
- package/bootstrap-icons/shield-fill-exclamation.d.ts +0 -5
- package/bootstrap-icons/shield-fill-exclamation.js +0 -12
- package/bootstrap-icons/shield-fill-minus.d.ts +0 -5
- package/bootstrap-icons/shield-fill-minus.js +0 -12
- package/bootstrap-icons/shield-fill-plus.d.ts +0 -5
- package/bootstrap-icons/shield-fill-plus.js +0 -12
- package/bootstrap-icons/shield-fill-x.d.ts +0 -5
- package/bootstrap-icons/shield-fill-x.js +0 -12
- package/bootstrap-icons/shield-fill.d.ts +0 -5
- package/bootstrap-icons/shield-fill.js +0 -12
- package/bootstrap-icons/shield-lock-fill.d.ts +0 -5
- package/bootstrap-icons/shield-lock-fill.js +0 -12
- package/bootstrap-icons/shield-lock.d.ts +0 -5
- package/bootstrap-icons/shield-lock.js +0 -12
- package/bootstrap-icons/shield-minus.d.ts +0 -5
- package/bootstrap-icons/shield-minus.js +0 -12
- package/bootstrap-icons/shield-plus.d.ts +0 -5
- package/bootstrap-icons/shield-plus.js +0 -12
- package/bootstrap-icons/shield-shaded.d.ts +0 -5
- package/bootstrap-icons/shield-shaded.js +0 -12
- package/bootstrap-icons/shield-slash-fill.d.ts +0 -5
- package/bootstrap-icons/shield-slash-fill.js +0 -12
- package/bootstrap-icons/shield-slash.d.ts +0 -5
- package/bootstrap-icons/shield-slash.js +0 -12
- package/bootstrap-icons/shield-x.d.ts +0 -5
- package/bootstrap-icons/shield-x.js +0 -12
- package/bootstrap-icons/shield.d.ts +0 -5
- package/bootstrap-icons/shield.js +0 -12
- package/bootstrap-icons/shift-fill.d.ts +0 -5
- package/bootstrap-icons/shift-fill.js +0 -12
- package/bootstrap-icons/shift.d.ts +0 -5
- package/bootstrap-icons/shift.js +0 -12
- package/bootstrap-icons/shop-window.d.ts +0 -5
- package/bootstrap-icons/shop-window.js +0 -12
- package/bootstrap-icons/shop.d.ts +0 -5
- package/bootstrap-icons/shop.js +0 -12
- package/bootstrap-icons/shuffle.d.ts +0 -5
- package/bootstrap-icons/shuffle.js +0 -12
- package/bootstrap-icons/signal.d.ts +0 -5
- package/bootstrap-icons/signal.js +0 -12
- package/bootstrap-icons/signpost-2-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-2-fill.js +0 -12
- package/bootstrap-icons/signpost-2.d.ts +0 -5
- package/bootstrap-icons/signpost-2.js +0 -12
- package/bootstrap-icons/signpost-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-fill.js +0 -12
- package/bootstrap-icons/signpost-split-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-split-fill.js +0 -12
- package/bootstrap-icons/signpost-split.d.ts +0 -5
- package/bootstrap-icons/signpost-split.js +0 -12
- package/bootstrap-icons/signpost.d.ts +0 -5
- package/bootstrap-icons/signpost.js +0 -12
- package/bootstrap-icons/sim-fill.d.ts +0 -5
- package/bootstrap-icons/sim-fill.js +0 -12
- package/bootstrap-icons/sim.d.ts +0 -5
- package/bootstrap-icons/sim.js +0 -12
- package/bootstrap-icons/skip-backward-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-btn-fill.js +0 -12
- package/bootstrap-icons/skip-backward-btn.d.ts +0 -5
- package/bootstrap-icons/skip-backward-btn.js +0 -12
- package/bootstrap-icons/skip-backward-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-circle-fill.js +0 -12
- package/bootstrap-icons/skip-backward-circle.d.ts +0 -5
- package/bootstrap-icons/skip-backward-circle.js +0 -12
- package/bootstrap-icons/skip-backward-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-fill.js +0 -12
- package/bootstrap-icons/skip-backward.d.ts +0 -5
- package/bootstrap-icons/skip-backward.js +0 -12
- package/bootstrap-icons/skip-end-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-btn-fill.js +0 -12
- package/bootstrap-icons/skip-end-btn.d.ts +0 -5
- package/bootstrap-icons/skip-end-btn.js +0 -12
- package/bootstrap-icons/skip-end-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-circle-fill.js +0 -12
- package/bootstrap-icons/skip-end-circle.d.ts +0 -5
- package/bootstrap-icons/skip-end-circle.js +0 -12
- package/bootstrap-icons/skip-end-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-fill.js +0 -12
- package/bootstrap-icons/skip-end.d.ts +0 -5
- package/bootstrap-icons/skip-end.js +0 -12
- package/bootstrap-icons/skip-forward-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-btn-fill.js +0 -12
- package/bootstrap-icons/skip-forward-btn.d.ts +0 -5
- package/bootstrap-icons/skip-forward-btn.js +0 -12
- package/bootstrap-icons/skip-forward-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-circle-fill.js +0 -12
- package/bootstrap-icons/skip-forward-circle.d.ts +0 -5
- package/bootstrap-icons/skip-forward-circle.js +0 -12
- package/bootstrap-icons/skip-forward-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-fill.js +0 -12
- package/bootstrap-icons/skip-forward.d.ts +0 -5
- package/bootstrap-icons/skip-forward.js +0 -12
- package/bootstrap-icons/skip-start-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-btn-fill.js +0 -12
- package/bootstrap-icons/skip-start-btn.d.ts +0 -5
- package/bootstrap-icons/skip-start-btn.js +0 -12
- package/bootstrap-icons/skip-start-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-circle-fill.js +0 -12
- package/bootstrap-icons/skip-start-circle.d.ts +0 -5
- package/bootstrap-icons/skip-start-circle.js +0 -12
- package/bootstrap-icons/skip-start-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-fill.js +0 -12
- package/bootstrap-icons/skip-start.d.ts +0 -5
- package/bootstrap-icons/skip-start.js +0 -12
- package/bootstrap-icons/skype.d.ts +0 -5
- package/bootstrap-icons/skype.js +0 -12
- package/bootstrap-icons/slack.d.ts +0 -5
- package/bootstrap-icons/slack.js +0 -12
- package/bootstrap-icons/slash-circle-fill.d.ts +0 -5
- package/bootstrap-icons/slash-circle-fill.js +0 -12
- package/bootstrap-icons/slash-circle.d.ts +0 -5
- package/bootstrap-icons/slash-circle.js +0 -12
- package/bootstrap-icons/slash-lg.d.ts +0 -5
- package/bootstrap-icons/slash-lg.js +0 -12
- package/bootstrap-icons/slash-square-fill.d.ts +0 -5
- package/bootstrap-icons/slash-square-fill.js +0 -12
- package/bootstrap-icons/slash-square.d.ts +0 -5
- package/bootstrap-icons/slash-square.js +0 -12
- package/bootstrap-icons/slash.d.ts +0 -5
- package/bootstrap-icons/slash.js +0 -12
- package/bootstrap-icons/sliders.d.ts +0 -5
- package/bootstrap-icons/sliders.js +0 -12
- package/bootstrap-icons/sliders2-vertical.d.ts +0 -5
- package/bootstrap-icons/sliders2-vertical.js +0 -12
- package/bootstrap-icons/sliders2.d.ts +0 -5
- package/bootstrap-icons/sliders2.js +0 -12
- package/bootstrap-icons/smartwatch.d.ts +0 -5
- package/bootstrap-icons/smartwatch.js +0 -12
- package/bootstrap-icons/snapchat.d.ts +0 -5
- package/bootstrap-icons/snapchat.js +0 -12
- package/bootstrap-icons/snow.d.ts +0 -5
- package/bootstrap-icons/snow.js +0 -12
- package/bootstrap-icons/snow2.d.ts +0 -5
- package/bootstrap-icons/snow2.js +0 -12
- package/bootstrap-icons/snow3.d.ts +0 -5
- package/bootstrap-icons/snow3.js +0 -12
- package/bootstrap-icons/sort-alpha-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-down-alt.js +0 -12
- package/bootstrap-icons/sort-alpha-down.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-down.js +0 -12
- package/bootstrap-icons/sort-alpha-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-up-alt.js +0 -12
- package/bootstrap-icons/sort-alpha-up.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-up.js +0 -12
- package/bootstrap-icons/sort-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-down-alt.js +0 -12
- package/bootstrap-icons/sort-down.d.ts +0 -5
- package/bootstrap-icons/sort-down.js +0 -12
- package/bootstrap-icons/sort-numeric-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-down-alt.js +0 -12
- package/bootstrap-icons/sort-numeric-down.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-down.js +0 -12
- package/bootstrap-icons/sort-numeric-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-up-alt.js +0 -12
- package/bootstrap-icons/sort-numeric-up.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-up.js +0 -12
- package/bootstrap-icons/sort-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-up-alt.js +0 -12
- package/bootstrap-icons/sort-up.d.ts +0 -5
- package/bootstrap-icons/sort-up.js +0 -12
- package/bootstrap-icons/soundwave.d.ts +0 -5
- package/bootstrap-icons/soundwave.js +0 -12
- package/bootstrap-icons/speaker-fill.d.ts +0 -5
- package/bootstrap-icons/speaker-fill.js +0 -12
- package/bootstrap-icons/speaker.d.ts +0 -5
- package/bootstrap-icons/speaker.js +0 -12
- package/bootstrap-icons/speedometer.d.ts +0 -5
- package/bootstrap-icons/speedometer.js +0 -12
- package/bootstrap-icons/speedometer2.d.ts +0 -5
- package/bootstrap-icons/speedometer2.js +0 -12
- package/bootstrap-icons/spellcheck.d.ts +0 -5
- package/bootstrap-icons/spellcheck.js +0 -12
- package/bootstrap-icons/spotify.d.ts +0 -5
- package/bootstrap-icons/spotify.js +0 -12
- package/bootstrap-icons/square-fill.d.ts +0 -5
- package/bootstrap-icons/square-fill.js +0 -12
- package/bootstrap-icons/square-half.d.ts +0 -5
- package/bootstrap-icons/square-half.js +0 -12
- package/bootstrap-icons/square.d.ts +0 -5
- package/bootstrap-icons/square.js +0 -12
- package/bootstrap-icons/stack-overflow.d.ts +0 -5
- package/bootstrap-icons/stack-overflow.js +0 -12
- package/bootstrap-icons/stack.d.ts +0 -5
- package/bootstrap-icons/stack.js +0 -12
- package/bootstrap-icons/star-fill.d.ts +0 -5
- package/bootstrap-icons/star-fill.js +0 -12
- package/bootstrap-icons/star-half.d.ts +0 -5
- package/bootstrap-icons/star-half.js +0 -12
- package/bootstrap-icons/star.d.ts +0 -5
- package/bootstrap-icons/star.js +0 -12
- package/bootstrap-icons/stars.d.ts +0 -5
- package/bootstrap-icons/stars.js +0 -12
- package/bootstrap-icons/steam.d.ts +0 -5
- package/bootstrap-icons/steam.js +0 -12
- package/bootstrap-icons/stickies-fill.d.ts +0 -5
- package/bootstrap-icons/stickies-fill.js +0 -12
- package/bootstrap-icons/stickies.d.ts +0 -5
- package/bootstrap-icons/stickies.js +0 -12
- package/bootstrap-icons/sticky-fill.d.ts +0 -5
- package/bootstrap-icons/sticky-fill.js +0 -12
- package/bootstrap-icons/sticky.d.ts +0 -5
- package/bootstrap-icons/sticky.js +0 -12
- package/bootstrap-icons/stop-btn-fill.d.ts +0 -5
- package/bootstrap-icons/stop-btn-fill.js +0 -12
- package/bootstrap-icons/stop-btn.d.ts +0 -5
- package/bootstrap-icons/stop-btn.js +0 -12
- package/bootstrap-icons/stop-circle-fill.d.ts +0 -5
- package/bootstrap-icons/stop-circle-fill.js +0 -12
- package/bootstrap-icons/stop-circle.d.ts +0 -5
- package/bootstrap-icons/stop-circle.js +0 -12
- package/bootstrap-icons/stop-fill.d.ts +0 -5
- package/bootstrap-icons/stop-fill.js +0 -12
- package/bootstrap-icons/stop.d.ts +0 -5
- package/bootstrap-icons/stop.js +0 -12
- package/bootstrap-icons/stoplights-fill.d.ts +0 -5
- package/bootstrap-icons/stoplights-fill.js +0 -12
- package/bootstrap-icons/stoplights.d.ts +0 -5
- package/bootstrap-icons/stoplights.js +0 -12
- package/bootstrap-icons/stopwatch-fill.d.ts +0 -5
- package/bootstrap-icons/stopwatch-fill.js +0 -12
- package/bootstrap-icons/stopwatch.d.ts +0 -5
- package/bootstrap-icons/stopwatch.js +0 -12
- package/bootstrap-icons/strava.d.ts +0 -5
- package/bootstrap-icons/strava.js +0 -12
- package/bootstrap-icons/subtract.d.ts +0 -5
- package/bootstrap-icons/subtract.js +0 -12
- package/bootstrap-icons/suit-club-fill.d.ts +0 -5
- package/bootstrap-icons/suit-club-fill.js +0 -12
- package/bootstrap-icons/suit-club.d.ts +0 -5
- package/bootstrap-icons/suit-club.js +0 -12
- package/bootstrap-icons/suit-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/suit-diamond-fill.js +0 -12
- package/bootstrap-icons/suit-diamond.d.ts +0 -5
- package/bootstrap-icons/suit-diamond.js +0 -12
- package/bootstrap-icons/suit-heart-fill.d.ts +0 -5
- package/bootstrap-icons/suit-heart-fill.js +0 -12
- package/bootstrap-icons/suit-heart.d.ts +0 -5
- package/bootstrap-icons/suit-heart.js +0 -12
- package/bootstrap-icons/suit-spade-fill.d.ts +0 -5
- package/bootstrap-icons/suit-spade-fill.js +0 -12
- package/bootstrap-icons/suit-spade.d.ts +0 -5
- package/bootstrap-icons/suit-spade.js +0 -12
- package/bootstrap-icons/sun-fill.d.ts +0 -5
- package/bootstrap-icons/sun-fill.js +0 -12
- package/bootstrap-icons/sun.d.ts +0 -5
- package/bootstrap-icons/sun.js +0 -12
- package/bootstrap-icons/sunglasses.d.ts +0 -5
- package/bootstrap-icons/sunglasses.js +0 -12
- package/bootstrap-icons/sunrise-fill.d.ts +0 -5
- package/bootstrap-icons/sunrise-fill.js +0 -12
- package/bootstrap-icons/sunrise.d.ts +0 -5
- package/bootstrap-icons/sunrise.js +0 -12
- package/bootstrap-icons/sunset-fill.d.ts +0 -5
- package/bootstrap-icons/sunset-fill.js +0 -12
- package/bootstrap-icons/sunset.d.ts +0 -5
- package/bootstrap-icons/sunset.js +0 -12
- package/bootstrap-icons/symmetry-horizontal.d.ts +0 -5
- package/bootstrap-icons/symmetry-horizontal.js +0 -12
- package/bootstrap-icons/symmetry-vertical.d.ts +0 -5
- package/bootstrap-icons/symmetry-vertical.js +0 -12
- package/bootstrap-icons/table.d.ts +0 -5
- package/bootstrap-icons/table.js +0 -12
- package/bootstrap-icons/tablet-fill.d.ts +0 -5
- package/bootstrap-icons/tablet-fill.js +0 -12
- package/bootstrap-icons/tablet-landscape-fill.d.ts +0 -5
- package/bootstrap-icons/tablet-landscape-fill.js +0 -12
- package/bootstrap-icons/tablet-landscape.d.ts +0 -5
- package/bootstrap-icons/tablet-landscape.js +0 -12
- package/bootstrap-icons/tablet.d.ts +0 -5
- package/bootstrap-icons/tablet.js +0 -12
- package/bootstrap-icons/tag-fill.d.ts +0 -5
- package/bootstrap-icons/tag-fill.js +0 -12
- package/bootstrap-icons/tag.d.ts +0 -5
- package/bootstrap-icons/tag.js +0 -12
- package/bootstrap-icons/tags-fill.d.ts +0 -5
- package/bootstrap-icons/tags-fill.js +0 -12
- package/bootstrap-icons/tags.d.ts +0 -5
- package/bootstrap-icons/tags.js +0 -12
- package/bootstrap-icons/telegram.d.ts +0 -5
- package/bootstrap-icons/telegram.js +0 -12
- package/bootstrap-icons/telephone-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-fill.js +0 -12
- package/bootstrap-icons/telephone-forward-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-forward-fill.js +0 -12
- package/bootstrap-icons/telephone-forward.d.ts +0 -5
- package/bootstrap-icons/telephone-forward.js +0 -12
- package/bootstrap-icons/telephone-inbound-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-inbound-fill.js +0 -12
- package/bootstrap-icons/telephone-inbound.d.ts +0 -5
- package/bootstrap-icons/telephone-inbound.js +0 -12
- package/bootstrap-icons/telephone-minus-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-minus-fill.js +0 -12
- package/bootstrap-icons/telephone-minus.d.ts +0 -5
- package/bootstrap-icons/telephone-minus.js +0 -12
- package/bootstrap-icons/telephone-outbound-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-outbound-fill.js +0 -12
- package/bootstrap-icons/telephone-outbound.d.ts +0 -5
- package/bootstrap-icons/telephone-outbound.js +0 -12
- package/bootstrap-icons/telephone-plus-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-plus-fill.js +0 -12
- package/bootstrap-icons/telephone-plus.d.ts +0 -5
- package/bootstrap-icons/telephone-plus.js +0 -12
- package/bootstrap-icons/telephone-x-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-x-fill.js +0 -12
- package/bootstrap-icons/telephone-x.d.ts +0 -5
- package/bootstrap-icons/telephone-x.js +0 -12
- package/bootstrap-icons/telephone.d.ts +0 -5
- package/bootstrap-icons/telephone.js +0 -12
- package/bootstrap-icons/terminal-dash.d.ts +0 -5
- package/bootstrap-icons/terminal-dash.js +0 -12
- package/bootstrap-icons/terminal-fill.d.ts +0 -5
- package/bootstrap-icons/terminal-fill.js +0 -12
- package/bootstrap-icons/terminal-plus.d.ts +0 -5
- package/bootstrap-icons/terminal-plus.js +0 -12
- package/bootstrap-icons/terminal-split.d.ts +0 -5
- package/bootstrap-icons/terminal-split.js +0 -12
- package/bootstrap-icons/terminal-x.d.ts +0 -5
- package/bootstrap-icons/terminal-x.js +0 -12
- package/bootstrap-icons/terminal.d.ts +0 -5
- package/bootstrap-icons/terminal.js +0 -12
- package/bootstrap-icons/text-center.d.ts +0 -5
- package/bootstrap-icons/text-center.js +0 -12
- package/bootstrap-icons/text-indent-left.d.ts +0 -5
- package/bootstrap-icons/text-indent-left.js +0 -12
- package/bootstrap-icons/text-indent-right.d.ts +0 -5
- package/bootstrap-icons/text-indent-right.js +0 -12
- package/bootstrap-icons/text-left.d.ts +0 -5
- package/bootstrap-icons/text-left.js +0 -12
- package/bootstrap-icons/text-paragraph.d.ts +0 -5
- package/bootstrap-icons/text-paragraph.js +0 -12
- package/bootstrap-icons/text-right.d.ts +0 -5
- package/bootstrap-icons/text-right.js +0 -12
- package/bootstrap-icons/textarea-resize.d.ts +0 -5
- package/bootstrap-icons/textarea-resize.js +0 -12
- package/bootstrap-icons/textarea-t.d.ts +0 -5
- package/bootstrap-icons/textarea-t.js +0 -12
- package/bootstrap-icons/textarea.d.ts +0 -5
- package/bootstrap-icons/textarea.js +0 -12
- package/bootstrap-icons/thermometer-half.d.ts +0 -5
- package/bootstrap-icons/thermometer-half.js +0 -12
- package/bootstrap-icons/thermometer-high.d.ts +0 -5
- package/bootstrap-icons/thermometer-high.js +0 -12
- package/bootstrap-icons/thermometer-low.d.ts +0 -5
- package/bootstrap-icons/thermometer-low.js +0 -12
- package/bootstrap-icons/thermometer-snow.d.ts +0 -5
- package/bootstrap-icons/thermometer-snow.js +0 -12
- package/bootstrap-icons/thermometer-sun.d.ts +0 -5
- package/bootstrap-icons/thermometer-sun.js +0 -12
- package/bootstrap-icons/thermometer.d.ts +0 -5
- package/bootstrap-icons/thermometer.js +0 -12
- package/bootstrap-icons/three-dots-vertical.d.ts +0 -5
- package/bootstrap-icons/three-dots-vertical.js +0 -12
- package/bootstrap-icons/three-dots.d.ts +0 -5
- package/bootstrap-icons/three-dots.js +0 -12
- package/bootstrap-icons/thunderbolt-fill.d.ts +0 -5
- package/bootstrap-icons/thunderbolt-fill.js +0 -12
- package/bootstrap-icons/thunderbolt.d.ts +0 -5
- package/bootstrap-icons/thunderbolt.js +0 -12
- package/bootstrap-icons/ticket-detailed-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-detailed-fill.js +0 -12
- package/bootstrap-icons/ticket-detailed.d.ts +0 -5
- package/bootstrap-icons/ticket-detailed.js +0 -12
- package/bootstrap-icons/ticket-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-fill.js +0 -12
- package/bootstrap-icons/ticket-perforated-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-perforated-fill.js +0 -12
- package/bootstrap-icons/ticket-perforated.d.ts +0 -5
- package/bootstrap-icons/ticket-perforated.js +0 -12
- package/bootstrap-icons/ticket.d.ts +0 -5
- package/bootstrap-icons/ticket.js +0 -12
- package/bootstrap-icons/tiktok.d.ts +0 -5
- package/bootstrap-icons/tiktok.js +0 -12
- package/bootstrap-icons/toggle-off.d.ts +0 -5
- package/bootstrap-icons/toggle-off.js +0 -12
- package/bootstrap-icons/toggle-on.d.ts +0 -5
- package/bootstrap-icons/toggle-on.js +0 -12
- package/bootstrap-icons/toggle2-off.d.ts +0 -5
- package/bootstrap-icons/toggle2-off.js +0 -12
- package/bootstrap-icons/toggle2-on.d.ts +0 -5
- package/bootstrap-icons/toggle2-on.js +0 -12
- package/bootstrap-icons/toggles.d.ts +0 -5
- package/bootstrap-icons/toggles.js +0 -12
- package/bootstrap-icons/toggles2.d.ts +0 -5
- package/bootstrap-icons/toggles2.js +0 -12
- package/bootstrap-icons/tools.d.ts +0 -5
- package/bootstrap-icons/tools.js +0 -12
- package/bootstrap-icons/tornado.d.ts +0 -5
- package/bootstrap-icons/tornado.js +0 -12
- package/bootstrap-icons/translate.d.ts +0 -5
- package/bootstrap-icons/translate.js +0 -12
- package/bootstrap-icons/trash-fill.d.ts +0 -5
- package/bootstrap-icons/trash-fill.js +0 -12
- package/bootstrap-icons/trash.d.ts +0 -5
- package/bootstrap-icons/trash.js +0 -12
- package/bootstrap-icons/trash2-fill.d.ts +0 -5
- package/bootstrap-icons/trash2-fill.js +0 -12
- package/bootstrap-icons/trash2.d.ts +0 -5
- package/bootstrap-icons/trash2.js +0 -12
- package/bootstrap-icons/trash3-fill.d.ts +0 -5
- package/bootstrap-icons/trash3-fill.js +0 -12
- package/bootstrap-icons/trash3.d.ts +0 -5
- package/bootstrap-icons/trash3.js +0 -12
- package/bootstrap-icons/tree-fill.d.ts +0 -5
- package/bootstrap-icons/tree-fill.js +0 -12
- package/bootstrap-icons/tree.d.ts +0 -5
- package/bootstrap-icons/tree.js +0 -12
- package/bootstrap-icons/triangle-fill.d.ts +0 -5
- package/bootstrap-icons/triangle-fill.js +0 -12
- package/bootstrap-icons/triangle-half.d.ts +0 -5
- package/bootstrap-icons/triangle-half.js +0 -12
- package/bootstrap-icons/triangle.d.ts +0 -5
- package/bootstrap-icons/triangle.js +0 -12
- package/bootstrap-icons/trophy-fill.d.ts +0 -5
- package/bootstrap-icons/trophy-fill.js +0 -12
- package/bootstrap-icons/trophy.d.ts +0 -5
- package/bootstrap-icons/trophy.js +0 -12
- package/bootstrap-icons/tropical-storm.d.ts +0 -5
- package/bootstrap-icons/tropical-storm.js +0 -12
- package/bootstrap-icons/truck-flatbed.d.ts +0 -5
- package/bootstrap-icons/truck-flatbed.js +0 -12
- package/bootstrap-icons/truck.d.ts +0 -5
- package/bootstrap-icons/truck.js +0 -12
- package/bootstrap-icons/tsunami.d.ts +0 -5
- package/bootstrap-icons/tsunami.js +0 -12
- package/bootstrap-icons/tv-fill.d.ts +0 -5
- package/bootstrap-icons/tv-fill.js +0 -12
- package/bootstrap-icons/tv.d.ts +0 -5
- package/bootstrap-icons/tv.js +0 -12
- package/bootstrap-icons/twitch.d.ts +0 -5
- package/bootstrap-icons/twitch.js +0 -12
- package/bootstrap-icons/twitter.d.ts +0 -5
- package/bootstrap-icons/twitter.js +0 -12
- package/bootstrap-icons/type-bold.d.ts +0 -5
- package/bootstrap-icons/type-bold.js +0 -12
- package/bootstrap-icons/type-h1.d.ts +0 -5
- package/bootstrap-icons/type-h1.js +0 -12
- package/bootstrap-icons/type-h2.d.ts +0 -5
- package/bootstrap-icons/type-h2.js +0 -12
- package/bootstrap-icons/type-h3.d.ts +0 -5
- package/bootstrap-icons/type-h3.js +0 -12
- package/bootstrap-icons/type-italic.d.ts +0 -5
- package/bootstrap-icons/type-italic.js +0 -12
- package/bootstrap-icons/type-strikethrough.d.ts +0 -5
- package/bootstrap-icons/type-strikethrough.js +0 -12
- package/bootstrap-icons/type-underline.d.ts +0 -5
- package/bootstrap-icons/type-underline.js +0 -12
- package/bootstrap-icons/type.d.ts +0 -5
- package/bootstrap-icons/type.js +0 -12
- package/bootstrap-icons/ui-checks-grid.d.ts +0 -5
- package/bootstrap-icons/ui-checks-grid.js +0 -12
- package/bootstrap-icons/ui-checks.d.ts +0 -5
- package/bootstrap-icons/ui-checks.js +0 -12
- package/bootstrap-icons/ui-radios-grid.d.ts +0 -5
- package/bootstrap-icons/ui-radios-grid.js +0 -12
- package/bootstrap-icons/ui-radios.d.ts +0 -5
- package/bootstrap-icons/ui-radios.js +0 -12
- package/bootstrap-icons/umbrella-fill.d.ts +0 -5
- package/bootstrap-icons/umbrella-fill.js +0 -12
- package/bootstrap-icons/umbrella.d.ts +0 -5
- package/bootstrap-icons/umbrella.js +0 -12
- package/bootstrap-icons/union.d.ts +0 -5
- package/bootstrap-icons/union.js +0 -12
- package/bootstrap-icons/unlock-fill.d.ts +0 -5
- package/bootstrap-icons/unlock-fill.js +0 -12
- package/bootstrap-icons/unlock.d.ts +0 -5
- package/bootstrap-icons/unlock.js +0 -12
- package/bootstrap-icons/upc-scan.d.ts +0 -5
- package/bootstrap-icons/upc-scan.js +0 -12
- package/bootstrap-icons/upc.d.ts +0 -5
- package/bootstrap-icons/upc.js +0 -12
- package/bootstrap-icons/upload.d.ts +0 -5
- package/bootstrap-icons/upload.js +0 -12
- package/bootstrap-icons/usb-c-fill.d.ts +0 -5
- package/bootstrap-icons/usb-c-fill.js +0 -12
- package/bootstrap-icons/usb-c.d.ts +0 -5
- package/bootstrap-icons/usb-c.js +0 -12
- package/bootstrap-icons/usb-drive-fill.d.ts +0 -5
- package/bootstrap-icons/usb-drive-fill.js +0 -12
- package/bootstrap-icons/usb-drive.d.ts +0 -5
- package/bootstrap-icons/usb-drive.js +0 -12
- package/bootstrap-icons/usb-fill.d.ts +0 -5
- package/bootstrap-icons/usb-fill.js +0 -12
- package/bootstrap-icons/usb-micro-fill.d.ts +0 -5
- package/bootstrap-icons/usb-micro-fill.js +0 -12
- package/bootstrap-icons/usb-micro.d.ts +0 -5
- package/bootstrap-icons/usb-micro.js +0 -12
- package/bootstrap-icons/usb-mini-fill.d.ts +0 -5
- package/bootstrap-icons/usb-mini-fill.js +0 -12
- package/bootstrap-icons/usb-mini.d.ts +0 -5
- package/bootstrap-icons/usb-mini.js +0 -12
- package/bootstrap-icons/usb-plug-fill.d.ts +0 -5
- package/bootstrap-icons/usb-plug-fill.js +0 -12
- package/bootstrap-icons/usb-plug.d.ts +0 -5
- package/bootstrap-icons/usb-plug.js +0 -12
- package/bootstrap-icons/usb-symbol.d.ts +0 -5
- package/bootstrap-icons/usb-symbol.js +0 -12
- package/bootstrap-icons/usb.d.ts +0 -5
- package/bootstrap-icons/usb.js +0 -12
- package/bootstrap-icons/valentine.d.ts +0 -5
- package/bootstrap-icons/valentine.js +0 -12
- package/bootstrap-icons/valentine2.d.ts +0 -5
- package/bootstrap-icons/valentine2.js +0 -12
- package/bootstrap-icons/vector-pen.d.ts +0 -5
- package/bootstrap-icons/vector-pen.js +0 -12
- package/bootstrap-icons/view-list.d.ts +0 -5
- package/bootstrap-icons/view-list.js +0 -12
- package/bootstrap-icons/view-stacked.d.ts +0 -5
- package/bootstrap-icons/view-stacked.js +0 -12
- package/bootstrap-icons/vimeo.d.ts +0 -5
- package/bootstrap-icons/vimeo.js +0 -12
- package/bootstrap-icons/vinyl-fill.d.ts +0 -5
- package/bootstrap-icons/vinyl-fill.js +0 -12
- package/bootstrap-icons/vinyl.d.ts +0 -5
- package/bootstrap-icons/vinyl.js +0 -12
- package/bootstrap-icons/voicemail.d.ts +0 -5
- package/bootstrap-icons/voicemail.js +0 -12
- package/bootstrap-icons/volume-down-fill.d.ts +0 -5
- package/bootstrap-icons/volume-down-fill.js +0 -12
- package/bootstrap-icons/volume-down.d.ts +0 -5
- package/bootstrap-icons/volume-down.js +0 -12
- package/bootstrap-icons/volume-mute-fill.d.ts +0 -5
- package/bootstrap-icons/volume-mute-fill.js +0 -12
- package/bootstrap-icons/volume-mute.d.ts +0 -5
- package/bootstrap-icons/volume-mute.js +0 -12
- package/bootstrap-icons/volume-off-fill.d.ts +0 -5
- package/bootstrap-icons/volume-off-fill.js +0 -12
- package/bootstrap-icons/volume-off.d.ts +0 -5
- package/bootstrap-icons/volume-off.js +0 -12
- package/bootstrap-icons/volume-up-fill.d.ts +0 -5
- package/bootstrap-icons/volume-up-fill.js +0 -12
- package/bootstrap-icons/volume-up.d.ts +0 -5
- package/bootstrap-icons/volume-up.js +0 -12
- package/bootstrap-icons/vr.d.ts +0 -5
- package/bootstrap-icons/vr.js +0 -12
- package/bootstrap-icons/wallet-fill.d.ts +0 -5
- package/bootstrap-icons/wallet-fill.js +0 -12
- package/bootstrap-icons/wallet.d.ts +0 -5
- package/bootstrap-icons/wallet.js +0 -12
- package/bootstrap-icons/wallet2.d.ts +0 -5
- package/bootstrap-icons/wallet2.js +0 -12
- package/bootstrap-icons/watch.d.ts +0 -5
- package/bootstrap-icons/watch.js +0 -12
- package/bootstrap-icons/water.d.ts +0 -5
- package/bootstrap-icons/water.js +0 -12
- package/bootstrap-icons/webcam-fill.d.ts +0 -5
- package/bootstrap-icons/webcam-fill.js +0 -12
- package/bootstrap-icons/webcam.d.ts +0 -5
- package/bootstrap-icons/webcam.js +0 -12
- package/bootstrap-icons/whatsapp.d.ts +0 -5
- package/bootstrap-icons/whatsapp.js +0 -12
- package/bootstrap-icons/wifi-1.d.ts +0 -5
- package/bootstrap-icons/wifi-1.js +0 -12
- package/bootstrap-icons/wifi-2.d.ts +0 -5
- package/bootstrap-icons/wifi-2.js +0 -12
- package/bootstrap-icons/wifi-off.d.ts +0 -5
- package/bootstrap-icons/wifi-off.js +0 -12
- package/bootstrap-icons/wifi.d.ts +0 -5
- package/bootstrap-icons/wifi.js +0 -12
- package/bootstrap-icons/wind.d.ts +0 -5
- package/bootstrap-icons/wind.js +0 -12
- package/bootstrap-icons/window-dash.d.ts +0 -5
- package/bootstrap-icons/window-dash.js +0 -12
- package/bootstrap-icons/window-desktop.d.ts +0 -5
- package/bootstrap-icons/window-desktop.js +0 -12
- package/bootstrap-icons/window-dock.d.ts +0 -5
- package/bootstrap-icons/window-dock.js +0 -12
- package/bootstrap-icons/window-fullscreen.d.ts +0 -5
- package/bootstrap-icons/window-fullscreen.js +0 -12
- package/bootstrap-icons/window-plus.d.ts +0 -5
- package/bootstrap-icons/window-plus.js +0 -12
- package/bootstrap-icons/window-sidebar.d.ts +0 -5
- package/bootstrap-icons/window-sidebar.js +0 -12
- package/bootstrap-icons/window-split.d.ts +0 -5
- package/bootstrap-icons/window-split.js +0 -12
- package/bootstrap-icons/window-stack.d.ts +0 -5
- package/bootstrap-icons/window-stack.js +0 -12
- package/bootstrap-icons/window-x.d.ts +0 -5
- package/bootstrap-icons/window-x.js +0 -12
- package/bootstrap-icons/window.d.ts +0 -5
- package/bootstrap-icons/window.js +0 -12
- package/bootstrap-icons/windows.d.ts +0 -5
- package/bootstrap-icons/windows.js +0 -12
- package/bootstrap-icons/wordpress.d.ts +0 -5
- package/bootstrap-icons/wordpress.js +0 -12
- package/bootstrap-icons/wrench-adjustable-circle-fill.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable-circle-fill.js +0 -12
- package/bootstrap-icons/wrench-adjustable-circle.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable-circle.js +0 -12
- package/bootstrap-icons/wrench-adjustable.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable.js +0 -12
- package/bootstrap-icons/wrench.d.ts +0 -5
- package/bootstrap-icons/wrench.js +0 -12
- package/bootstrap-icons/x-circle-fill.d.ts +0 -5
- package/bootstrap-icons/x-circle-fill.js +0 -12
- package/bootstrap-icons/x-circle.d.ts +0 -5
- package/bootstrap-icons/x-circle.js +0 -12
- package/bootstrap-icons/x-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/x-diamond-fill.js +0 -12
- package/bootstrap-icons/x-diamond.d.ts +0 -5
- package/bootstrap-icons/x-diamond.js +0 -12
- package/bootstrap-icons/x-lg.d.ts +0 -5
- package/bootstrap-icons/x-lg.js +0 -12
- package/bootstrap-icons/x-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/x-octagon-fill.js +0 -12
- package/bootstrap-icons/x-octagon.d.ts +0 -5
- package/bootstrap-icons/x-octagon.js +0 -12
- package/bootstrap-icons/x-square-fill.d.ts +0 -5
- package/bootstrap-icons/x-square-fill.js +0 -12
- package/bootstrap-icons/x-square.d.ts +0 -5
- package/bootstrap-icons/x-square.js +0 -12
- package/bootstrap-icons/x.d.ts +0 -5
- package/bootstrap-icons/x.js +0 -12
- package/bootstrap-icons/xbox.d.ts +0 -5
- package/bootstrap-icons/xbox.js +0 -12
- package/bootstrap-icons/yin-yang.d.ts +0 -5
- package/bootstrap-icons/yin-yang.js +0 -12
- package/bootstrap-icons/youtube.d.ts +0 -5
- package/bootstrap-icons/youtube.js +0 -12
- package/bootstrap-icons/zoom-in.d.ts +0 -5
- package/bootstrap-icons/zoom-in.js +0 -12
- package/bootstrap-icons/zoom-out.d.ts +0 -5
- package/bootstrap-icons/zoom-out.js +0 -12
- package/components/actions-group/action-button.d.ts +0 -8
- package/components/actions-group/action-button.js +0 -10
- package/components/actions-group/actions-group.d.ts +0 -7
- package/components/actions-group/actions-group.js +0 -11
- package/components/actions-group/index.d.ts +0 -1
- package/components/actions-group/index.js +0 -17
- package/components/alert/alert.d.ts +0 -7
- package/components/alert/alert.js +0 -24
- package/components/avatar/avatar-group.d.ts +0 -14
- package/components/avatar/avatar-group.js +0 -40
- package/components/avatar/avatar-shape.d.ts +0 -9
- package/components/avatar/avatar-shape.js +0 -49
- package/components/avatar/avatar.d.ts +0 -18
- package/components/avatar/avatar.js +0 -43
- package/components/avatar/get-avatar-size-in-pixels.d.ts +0 -3
- package/components/avatar/get-avatar-size-in-pixels.js +0 -17
- package/components/avatar/make-avatar-shape-path.d.ts +0 -9
- package/components/avatar/make-avatar-shape-path.js +0 -40
- package/components/avatar/make-initials.d.ts +0 -1
- package/components/avatar/make-initials.js +0 -17
- package/components/avatar/types.d.ts +0 -2
- package/components/box/box.d.ts +0 -28
- package/components/box/box.js +0 -9
- package/components/box/index.d.ts +0 -1
- package/components/box/index.js +0 -17
- package/components/breadcrumb/breadcrumb-link.d.ts +0 -15
- package/components/breadcrumb/breadcrumb-link.js +0 -21
- package/components/breadcrumb/breadcrumb.d.ts +0 -6
- package/components/breadcrumb/breadcrumb.js +0 -12
- package/components/breadcrumb/index.d.ts +0 -2
- package/components/breadcrumb/index.js +0 -18
- package/components/button/button.d.ts +0 -18
- package/components/button/button.js +0 -24
- package/components/button/index.d.ts +0 -1
- package/components/button/index.js +0 -17
- package/components/buttons-group/buttons-group.d.ts +0 -3
- package/components/buttons-group/buttons-group.js +0 -9
- package/components/buttons-group/index.d.ts +0 -1
- package/components/buttons-group/index.js +0 -17
- package/components/calendar/calendar-day.d.ts +0 -19
- package/components/calendar/calendar-day.js +0 -10
- package/components/calendar/calendar-header.d.ts +0 -14
- package/components/calendar/calendar-header.js +0 -13
- package/components/calendar/calendar-row.d.ts +0 -7
- package/components/calendar/calendar-row.js +0 -9
- package/components/calendar/calendar.d.ts +0 -16
- package/components/calendar/calendar.js +0 -82
- package/components/calendar/index.d.ts +0 -1
- package/components/calendar/index.js +0 -17
- package/components/checkbox/checkbox.d.ts +0 -8
- package/components/checkbox/checkbox.js +0 -17
- package/components/date-picker/date-picker.d.ts +0 -15
- package/components/date-picker/date-picker.js +0 -55
- package/components/date-picker/index.d.ts +0 -2
- package/components/date-picker/index.js +0 -18
- package/components/date-picker-popover/date-picker-popover.d.ts +0 -13
- package/components/date-picker-popover/date-picker-popover.js +0 -17
- package/components/date-preset-picker-popover/date-preset-picker-popover.d.ts +0 -34
- package/components/date-preset-picker-popover/date-preset-picker-popover.js +0 -94
- package/components/date-preset-picker-popover/date-preset-picker.d.ts +0 -23
- package/components/date-preset-picker-popover/date-preset-picker.js +0 -26
- package/components/date-preset-picker-popover/date-preset-select.d.ts +0 -16
- package/components/date-preset-picker-popover/date-preset-select.js +0 -10
- package/components/date-preset-picker-popover/index.d.ts +0 -1
- package/components/date-preset-picker-popover/index.js +0 -17
- package/components/date-range-picker/date-range-picker.d.ts +0 -13
- package/components/date-range-picker/date-range-picker.js +0 -103
- package/components/date-range-picker/index.d.ts +0 -1
- package/components/date-range-picker/index.js +0 -17
- package/components/datetime-input/date-component-input.d.ts +0 -14
- package/components/datetime-input/date-component-input.js +0 -9
- package/components/datetime-input/date-components.d.ts +0 -28
- package/components/datetime-input/date-components.js +0 -103
- package/components/datetime-input/datetime-input.d.ts +0 -22
- package/components/datetime-input/datetime-input.js +0 -173
- package/components/datetime-input/index.d.ts +0 -2
- package/components/datetime-input/index.js +0 -18
- package/components/dialog/dialog.d.ts +0 -19
- package/components/dialog/dialog.js +0 -62
- package/components/dialog/index.d.ts +0 -1
- package/components/dialog/index.js +0 -17
- package/components/file-input/file-input-button.d.ts +0 -3
- package/components/file-input/file-input-button.js +0 -10
- package/components/file-input/file-input-context.d.ts +0 -12
- package/components/file-input/file-input-context.js +0 -20
- package/components/file-input/file-input.d.ts +0 -16
- package/components/file-input/file-input.js +0 -54
- package/components/file-input/index.d.ts +0 -2
- package/components/file-input/index.js +0 -18
- package/components/form-field/form-field.d.ts +0 -17
- package/components/form-field/form-field.js +0 -31
- package/components/formatted-content/formatted-content.d.ts +0 -55
- package/components/formatted-content/formatted-content.js +0 -67
- package/components/formatted-content/index.d.ts +0 -1
- package/components/formatted-content/index.js +0 -17
- package/components/index.d.ts +0 -46
- package/components/index.js +0 -62
- package/components/inline-message/index.d.ts +0 -1
- package/components/inline-message/index.js +0 -17
- package/components/inline-message/inline-message.d.ts +0 -6
- package/components/inline-message/inline-message.js +0 -23
- package/components/label/label.d.ts +0 -5
- package/components/label/label.js +0 -10
- package/components/loading-view/index.d.ts +0 -1
- package/components/loading-view/index.js +0 -17
- package/components/loading-view/loading-view.d.ts +0 -8
- package/components/loading-view/loading-view.js +0 -10
- package/components/menu/index.d.ts +0 -3
- package/components/menu/index.js +0 -19
- package/components/menu/menu-button.d.ts +0 -7
- package/components/menu/menu-button.js +0 -9
- package/components/menu/menu-divider.d.ts +0 -2
- package/components/menu/menu-divider.js +0 -9
- package/components/menu/menu.d.ts +0 -25
- package/components/menu/menu.js +0 -123
- package/components/non-ideal-state-view/index.d.ts +0 -1
- package/components/non-ideal-state-view/index.js +0 -17
- package/components/non-ideal-state-view/non-ideal-state-view.d.ts +0 -9
- package/components/non-ideal-state-view/non-ideal-state-view.js +0 -40
- package/components/number-input/index.d.ts +0 -1
- package/components/number-input/index.js +0 -17
- package/components/number-input/number-input.d.ts +0 -13
- package/components/number-input/number-input.js +0 -94
- package/components/password-input/password-input.d.ts +0 -9
- package/components/password-input/password-input.js +0 -22
- package/components/popover/popover.d.ts +0 -53
- package/components/popover/popover.js +0 -99
- package/components/popover/use-body-click.d.ts +0 -12
- package/components/popover/use-body-click.js +0 -49
- package/components/portal/portal.d.ts +0 -5
- package/components/portal/portal.js +0 -15
- package/components/positioner/get-position.d.ts +0 -32
- package/components/positioner/get-position.js +0 -117
- package/components/positioner/positioner.d.ts +0 -16
- package/components/positioner/positioner.js +0 -65
- package/components/positioner/types.d.ts +0 -14
- package/components/radio-button/index.d.ts +0 -1
- package/components/radio-button/index.js +0 -17
- package/components/radio-button/radio-button.d.ts +0 -7
- package/components/radio-button/radio-button.js +0 -14
- package/components/radio-group/index.d.ts +0 -2
- package/components/radio-group/index.js +0 -18
- package/components/radio-group/radio-group-item.d.ts +0 -7
- package/components/radio-group/radio-group-item.js +0 -11
- package/components/radio-group/radio-group.d.ts +0 -15
- package/components/radio-group/radio-group.js +0 -22
- package/components/scope-buttons/index.d.ts +0 -1
- package/components/scope-buttons/index.js +0 -17
- package/components/scope-buttons/scope-button.d.ts +0 -6
- package/components/scope-buttons/scope-button.js +0 -10
- package/components/scope-buttons/scope-buttons.d.ts +0 -6
- package/components/scope-buttons/scope-buttons.js +0 -26
- package/components/search-input/index.d.ts +0 -1
- package/components/search-input/index.js +0 -17
- package/components/search-input/search-input.d.ts +0 -4
- package/components/search-input/search-input.js +0 -17
- package/components/secret/index.d.ts +0 -1
- package/components/secret/index.js +0 -17
- package/components/secret/secret.d.ts +0 -8
- package/components/secret/secret.js +0 -18
- package/components/segmented-control/segmented-control.d.ts +0 -15
- package/components/segmented-control/segmented-control.js +0 -60
- package/components/select/select.d.ts +0 -8
- package/components/select/select.js +0 -17
- package/components/selection-control/selection-control.d.ts +0 -11
- package/components/selection-control/selection-control.js +0 -11
- package/components/slider/index.d.ts +0 -1
- package/components/slider/index.js +0 -17
- package/components/slider/slider.d.ts +0 -12
- package/components/slider/slider.js +0 -34
- package/components/spinner/index.d.ts +0 -2
- package/components/spinner/index.js +0 -6
- package/components/spinner/spinner.d.ts +0 -6
- package/components/spinner/spinner.js +0 -9
- package/components/svg-icon/index.d.ts +0 -1
- package/components/svg-icon/index.js +0 -17
- package/components/svg-icon/svg-icon.d.ts +0 -18
- package/components/svg-icon/svg-icon.js +0 -49
- package/components/switch/switch.d.ts +0 -3
- package/components/switch/switch.js +0 -14
- package/components/table/index.d.ts +0 -7
- package/components/table/index.js +0 -23
- package/components/table/table-body.d.ts +0 -5
- package/components/table/table-body.js +0 -9
- package/components/table/table-cell.d.ts +0 -5
- package/components/table/table-cell.js +0 -9
- package/components/table/table-container.d.ts +0 -5
- package/components/table/table-container.js +0 -25
- package/components/table/table-head.d.ts +0 -5
- package/components/table/table-head.js +0 -9
- package/components/table/table-header-cell.d.ts +0 -9
- package/components/table/table-header-cell.js +0 -15
- package/components/table/table-row.d.ts +0 -5
- package/components/table/table-row.js +0 -9
- package/components/table/table-sort-button.d.ts +0 -10
- package/components/table/table-sort-button.js +0 -52
- package/components/table/table.d.ts +0 -10
- package/components/table/table.js +0 -16
- package/components/tabs/index.d.ts +0 -1
- package/components/tabs/index.js +0 -17
- package/components/tabs/tab-list.d.ts +0 -3
- package/components/tabs/tab-list.js +0 -50
- package/components/tabs/tab-panel.d.ts +0 -6
- package/components/tabs/tab-panel.js +0 -14
- package/components/tabs/tab.d.ts +0 -7
- package/components/tabs/tab.js +0 -21
- package/components/tabs/tabs-state.d.ts +0 -20
- package/components/tabs/tabs-state.js +0 -63
- package/components/tabs/tabs.d.ts +0 -14
- package/components/tabs/tabs.js +0 -16
- package/components/tag/tag.d.ts +0 -12
- package/components/tag/tag.js +0 -20
- package/components/text-input/text-input.d.ts +0 -12
- package/components/text-input/text-input.js +0 -39
- package/components/textarea/textarea.d.ts +0 -8
- package/components/textarea/textarea.js +0 -17
- package/components/toast/index.d.ts +0 -1
- package/components/toast/index.js +0 -17
- package/components/toast/toast-button.d.ts +0 -5
- package/components/toast/toast-button.js +0 -9
- package/components/toast/toast.d.ts +0 -17
- package/components/toast/toast.js +0 -28
- package/components/toaster/toaster.d.ts +0 -17
- package/components/toaster/toaster.js +0 -77
- package/components/toaster/use-toasts.d.ts +0 -22
- package/components/toaster/use-toasts.js +0 -41
- package/components/tooltip/tooltip.d.ts +0 -17
- package/components/tooltip/tooltip.js +0 -60
- package/components/vertical-navigation/index.d.ts +0 -2
- package/components/vertical-navigation/index.js +0 -18
- package/components/vertical-navigation/vertical-navigation-item.d.ts +0 -16
- package/components/vertical-navigation/vertical-navigation-item.js +0 -20
- package/components/vertical-navigation/vertical-navigation.d.ts +0 -10
- package/components/vertical-navigation/vertical-navigation.js +0 -14
- package/css/draft-components-utils.css +0 -1
- package/hooks/index.d.ts +0 -6
- package/hooks/index.js +0 -22
- package/hooks/use-close-animation.d.ts +0 -13
- package/hooks/use-close-animation.js +0 -42
- package/hooks/use-disable-body-scroll.d.ts +0 -1
- package/hooks/use-disable-body-scroll.js +0 -34
- package/hooks/use-esc-key-down.d.ts +0 -3
- package/hooks/use-esc-key-down.js +0 -38
- package/hooks/use-focus-trap.d.ts +0 -2
- package/hooks/use-focus-trap.js +0 -76
- package/hooks/use-is-first-render.d.ts +0 -1
- package/hooks/use-is-first-render.js +0 -13
- package/hooks/use-is-mounted.d.ts +0 -2
- package/hooks/use-is-mounted.js +0 -15
- package/lib/guards.d.ts +0 -2
- package/lib/guards.js +0 -12
- package/lib/index.d.ts +0 -7
- package/lib/index.js +0 -36
- package/lib/keyboard-helpers.d.ts +0 -22
- package/lib/keyboard-helpers.js +0 -26
- package/lib/plain-date-range.d.ts +0 -15
- package/lib/plain-date-range.js +0 -35
- package/lib/plain-date.d.ts +0 -38
- package/lib/plain-date.js +0 -103
- package/lib/react-helpers.d.ts +0 -9
- package/lib/react-helpers.js +0 -42
- package/lib/stack.d.ts +0 -11
- package/lib/stack.js +0 -34
- package/lib/util.d.ts +0 -5
- package/lib/util.js +0 -41
- package/scss/abstracts/_functions.scss +0 -82
- package/scss/abstracts/_index.scss +0 -3
- package/scss/abstracts/_mixins.scss +0 -23
- package/scss/abstracts/_variables.scss +0 -229
- package/scss/base/_animations.scss +0 -8
- package/scss/base/_index.scss +0 -2
- package/scss/base/_normalize.scss +0 -351
- package/scss/components/_actions-group.scss +0 -20
- package/scss/components/_alert.scss +0 -95
- package/scss/components/_avatar.scss +0 -124
- package/scss/components/_box.scss +0 -277
- package/scss/components/_breadcrumb.scss +0 -55
- package/scss/components/_button.scss +0 -200
- package/scss/components/_buttons-group.scss +0 -25
- package/scss/components/_calendar.scss +0 -185
- package/scss/components/_checkbox.scss +0 -59
- package/scss/components/_date-picker.scss +0 -11
- package/scss/components/_date-preset-picker-popover.scss +0 -78
- package/scss/components/_datetime-input.scss +0 -94
- package/scss/components/_dialog.scss +0 -114
- package/scss/components/_file-input.scss +0 -94
- package/scss/components/_form-field.scss +0 -21
- package/scss/components/_formatted-content.scss +0 -171
- package/scss/components/_index.scss +0 -45
- package/scss/components/_inline-message.scss +0 -30
- package/scss/components/_input.scss +0 -74
- package/scss/components/_label.scss +0 -14
- package/scss/components/_loading-view.scss +0 -58
- package/scss/components/_menu.scss +0 -43
- package/scss/components/_non-ideal-state-view.scss +0 -93
- package/scss/components/_number-input.scss +0 -19
- package/scss/components/_password-input.scss +0 -9
- package/scss/components/_popover.scss +0 -70
- package/scss/components/_portal.scss +0 -3
- package/scss/components/_radio-button.scss +0 -62
- package/scss/components/_radio-group.scss +0 -96
- package/scss/components/_scope-buttons.scss +0 -49
- package/scss/components/_secret.scss +0 -32
- package/scss/components/_segmented-control.scss +0 -33
- package/scss/components/_select.scss +0 -36
- package/scss/components/_selection-control.scss +0 -46
- package/scss/components/_slider.scss +0 -130
- package/scss/components/_spinner.scss +0 -6
- package/scss/components/_svg-icon.scss +0 -8
- package/scss/components/_switch.scss +0 -62
- package/scss/components/_table.scss +0 -180
- package/scss/components/_tabs.scss +0 -80
- package/scss/components/_tag.scss +0 -117
- package/scss/components/_text-input.scss +0 -58
- package/scss/components/_textarea.scss +0 -10
- package/scss/components/_toast.scss +0 -104
- package/scss/components/_toaster.scss +0 -87
- package/scss/components/_tooltip.scss +0 -29
- package/scss/components/_vertical-navigation.scss +0 -73
- package/scss/draft-components-utils.scss +0 -8
- package/scss/draft-components.scss +0 -3
- package/scss/themes/_default-theme.scss +0 -294
- package/scss/utils/_border.scss +0 -85
- package/scss/utils/_box-model.scss +0 -36
- package/scss/utils/_color.scss +0 -601
- package/scss/utils/_flexbox.scss +0 -169
- package/scss/utils/_gap.scss +0 -23
- package/scss/utils/_margin.scss +0 -50
- package/scss/utils/_padding.scss +0 -49
- package/scss/utils/_typography.scss +0 -120
|
@@ -1,229 +0,0 @@
|
|
|
1
|
-
/*------------------------------------*\
|
|
2
|
-
#COLORS
|
|
3
|
-
\*------------------------------------*/
|
|
4
|
-
|
|
5
|
-
$gray-50: #fafafa;
|
|
6
|
-
$gray-100: #f4f4f5;
|
|
7
|
-
$gray-200: #e4e4e7;
|
|
8
|
-
$gray-300: #d4d4d8;
|
|
9
|
-
$gray-400: #a1a1aa;
|
|
10
|
-
$gray-500: #71717a;
|
|
11
|
-
$gray-600: #52525b;
|
|
12
|
-
$gray-700: #3f3f46;
|
|
13
|
-
$gray-800: #27272a;
|
|
14
|
-
$gray-900: #18181b;
|
|
15
|
-
|
|
16
|
-
$blue-50: #eff6ff;
|
|
17
|
-
$blue-100: #dbeafe;
|
|
18
|
-
$blue-200: #bfdbfe;
|
|
19
|
-
$blue-300: #93c5fd;
|
|
20
|
-
$blue-400: #60a5fa;
|
|
21
|
-
$blue-500: #3b82f6;
|
|
22
|
-
$blue-600: #2563eb;
|
|
23
|
-
$blue-700: #1d4ed8;
|
|
24
|
-
$blue-800: #1e40af;
|
|
25
|
-
$blue-900: #1e3a8a;
|
|
26
|
-
|
|
27
|
-
$cyan-50: #e3fafc;
|
|
28
|
-
$cyan-100: #c5f6fa;
|
|
29
|
-
$cyan-200: #99e9f2;
|
|
30
|
-
$cyan-300: #66d9e8;
|
|
31
|
-
$cyan-400: #3bc9db;
|
|
32
|
-
$cyan-500: #22b8cf;
|
|
33
|
-
$cyan-600: #15aabf;
|
|
34
|
-
$cyan-700: #1098ad;
|
|
35
|
-
$cyan-800: #0c8599;
|
|
36
|
-
$cyan-900: #0b7285;
|
|
37
|
-
|
|
38
|
-
$red-50: #fff5f5;
|
|
39
|
-
$red-100: #ffe3e3;
|
|
40
|
-
$red-200: #ffc9c9;
|
|
41
|
-
$red-300: #ffa8a8;
|
|
42
|
-
$red-400: #ff8787;
|
|
43
|
-
$red-500: #ff6b6b;
|
|
44
|
-
$red-600: #fa5252;
|
|
45
|
-
$red-700: #f03e3e;
|
|
46
|
-
$red-800: #e03131;
|
|
47
|
-
$red-900: #b52626;
|
|
48
|
-
|
|
49
|
-
$green-50: #f2fcf5;
|
|
50
|
-
$green-100: #e2fbe8;
|
|
51
|
-
$green-200: #c7f5d4;
|
|
52
|
-
$green-300: #9fecb1;
|
|
53
|
-
$green-400: #77d989;
|
|
54
|
-
$green-500: #5ec169;
|
|
55
|
-
$green-600: #4ca054;
|
|
56
|
-
$green-700: #3b7c44;
|
|
57
|
-
$green-800: #306339;
|
|
58
|
-
$green-900: #285131;
|
|
59
|
-
|
|
60
|
-
$lime-50: #f4fce3;
|
|
61
|
-
$lime-100: #e9fac8;
|
|
62
|
-
$lime-200: #d8f5a2;
|
|
63
|
-
$lime-300: #c0eb75;
|
|
64
|
-
$lime-400: #a9e34b;
|
|
65
|
-
$lime-500: #94d82d;
|
|
66
|
-
$lime-600: #82c91e;
|
|
67
|
-
$lime-700: #74b816;
|
|
68
|
-
$lime-800: #66a80f;
|
|
69
|
-
$lime-900: #47730a;
|
|
70
|
-
|
|
71
|
-
$indigo-50: #edf2ff;
|
|
72
|
-
$indigo-100: #dbe4ff;
|
|
73
|
-
$indigo-200: #bac8ff;
|
|
74
|
-
$indigo-300: #91a7ff;
|
|
75
|
-
$indigo-400: #748ffc;
|
|
76
|
-
$indigo-500: #5c7cfa;
|
|
77
|
-
$indigo-600: #4c6ef5;
|
|
78
|
-
$indigo-700: #4263eb;
|
|
79
|
-
$indigo-800: #3b5bdb;
|
|
80
|
-
$indigo-900: #364fc7;
|
|
81
|
-
|
|
82
|
-
$yellow-50: #fffceb;
|
|
83
|
-
$yellow-100: #fff3bf;
|
|
84
|
-
$yellow-200: #ffec99;
|
|
85
|
-
$yellow-300: #ffe066;
|
|
86
|
-
$yellow-400: #ffd43b;
|
|
87
|
-
$yellow-500: #fcc419;
|
|
88
|
-
$yellow-600: #f0a800;
|
|
89
|
-
$yellow-700: #c78100;
|
|
90
|
-
$yellow-800: #ab6700;
|
|
91
|
-
$yellow-900: #995200;
|
|
92
|
-
|
|
93
|
-
$orange-50: #fff4e6;
|
|
94
|
-
$orange-100: #ffe8cc;
|
|
95
|
-
$orange-200: #ffd8a8;
|
|
96
|
-
$orange-300: #ffc078;
|
|
97
|
-
$orange-400: #ffa94d;
|
|
98
|
-
$orange-500: #ff922b;
|
|
99
|
-
$orange-600: #fd7e14;
|
|
100
|
-
$orange-700: #f76707;
|
|
101
|
-
$orange-800: #e8590c;
|
|
102
|
-
$orange-900: #d9480f;
|
|
103
|
-
|
|
104
|
-
/*------------------------------------*\
|
|
105
|
-
#FONT FAMILY
|
|
106
|
-
\*------------------------------------*/
|
|
107
|
-
$font-sans-serif: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
|
|
108
|
-
'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
|
|
109
|
-
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
110
|
-
$font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
111
|
-
$font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
|
|
112
|
-
'Liberation Mono', 'Courier New', monospace;
|
|
113
|
-
|
|
114
|
-
/*------------------------------------*\
|
|
115
|
-
#FONT SIZE
|
|
116
|
-
\*------------------------------------*/
|
|
117
|
-
$font-size-2xs: 0.625rem; // 10px
|
|
118
|
-
$font-size-xs: 0.75rem; // 12px
|
|
119
|
-
$font-size-sm: 0.875rem; // 14px
|
|
120
|
-
$font-size-base: 1rem; // 16px
|
|
121
|
-
$font-size-lg: 1.125rem; // 18px
|
|
122
|
-
$font-size-xl: 1.5rem; // 24px
|
|
123
|
-
$font-size-2xl: 1.75rem; // 28px
|
|
124
|
-
$font-size-3xl: 2rem; // 32px
|
|
125
|
-
|
|
126
|
-
/*------------------------------------*\
|
|
127
|
-
#FONT WEIGHT
|
|
128
|
-
\*------------------------------------*/
|
|
129
|
-
$font-weight-normal: 400;
|
|
130
|
-
$font-weight-medium: 500;
|
|
131
|
-
$font-weight-semi-bold: 600;
|
|
132
|
-
$font-weight-bold: 700;
|
|
133
|
-
$font-weight-extra-bold: 800;
|
|
134
|
-
|
|
135
|
-
/*------------------------------------*\
|
|
136
|
-
#LINE HEIGHT
|
|
137
|
-
\*------------------------------------*/
|
|
138
|
-
$leading-default: 1;
|
|
139
|
-
$leading-tight: 1.25;
|
|
140
|
-
$leading-normal: 1.375;
|
|
141
|
-
$leading-lg: 1.5;
|
|
142
|
-
|
|
143
|
-
/*------------------------------------*\
|
|
144
|
-
#LETTER SPACING
|
|
145
|
-
\*------------------------------------*/
|
|
146
|
-
$tracking-tight: -0.025em;
|
|
147
|
-
$tracking-normal: 0;
|
|
148
|
-
$tracking-wide: 0.025em;
|
|
149
|
-
|
|
150
|
-
/*------------------------------------*\
|
|
151
|
-
#BORDER RADIUS
|
|
152
|
-
\*------------------------------------*/
|
|
153
|
-
$border-radius-2xs: 0.125rem; // 2px
|
|
154
|
-
$border-radius-xs: 0.25rem; // 4px
|
|
155
|
-
$border-radius-sm: 0.3125rem; // 5px
|
|
156
|
-
$border-radius-md: 0.375rem; // 6px
|
|
157
|
-
$border-radius-lg: 0.5rem; // 8px
|
|
158
|
-
$border-radius-xl: 0.625rem; // 10px
|
|
159
|
-
$border-radius-2xl: 0.75rem; // 12px
|
|
160
|
-
|
|
161
|
-
/*------------------------------------*\
|
|
162
|
-
#GAPS
|
|
163
|
-
\*------------------------------------*/
|
|
164
|
-
$gap-base-value: 0.25rem;
|
|
165
|
-
$gap-1x: 1 * $gap-base-value;
|
|
166
|
-
$gap-2x: 2 * $gap-base-value;
|
|
167
|
-
$gap-3x: 3 * $gap-base-value;
|
|
168
|
-
$gap-4x: 4 * $gap-base-value;
|
|
169
|
-
$gap-5x: 5 * $gap-base-value;
|
|
170
|
-
$gap-6x: 6 * $gap-base-value;
|
|
171
|
-
$gap-8x: 8 * $gap-base-value;
|
|
172
|
-
$gap-10x: 10 * $gap-base-value;
|
|
173
|
-
$gap-12x: 12 * $gap-base-value;
|
|
174
|
-
$gap-16x: 16 * $gap-base-value;
|
|
175
|
-
$gap-20x: 20 * $gap-base-value;
|
|
176
|
-
$gap-24x: 24 * $gap-base-value;
|
|
177
|
-
|
|
178
|
-
/*------------------------------------*\
|
|
179
|
-
#OPACITY
|
|
180
|
-
\*------------------------------------*/
|
|
181
|
-
$opacity-0: 0;
|
|
182
|
-
$opacity-5: 0.05;
|
|
183
|
-
$opacity-10: 0.1;
|
|
184
|
-
$opacity-15: 0.15;
|
|
185
|
-
$opacity-20: 0.2;
|
|
186
|
-
$opacity-25: 0.25;
|
|
187
|
-
$opacity-30: 0.3;
|
|
188
|
-
$opacity-35: 0.35;
|
|
189
|
-
$opacity-40: 0.4;
|
|
190
|
-
$opacity-45: 0.45;
|
|
191
|
-
$opacity-50: 0.5;
|
|
192
|
-
$opacity-55: 0.55;
|
|
193
|
-
$opacity-60: 0.6;
|
|
194
|
-
$opacity-65: 0.65;
|
|
195
|
-
$opacity-70: 0.7;
|
|
196
|
-
$opacity-75: 0.75;
|
|
197
|
-
$opacity-80: 0.8;
|
|
198
|
-
$opacity-85: 0.85;
|
|
199
|
-
$opacity-90: 0.9;
|
|
200
|
-
$opacity-95: 0.95;
|
|
201
|
-
$opacity-100: 1;
|
|
202
|
-
|
|
203
|
-
/*------------------------------------*\
|
|
204
|
-
#TRANSITION
|
|
205
|
-
\*------------------------------------*/
|
|
206
|
-
$transition-quick: 100ms ease-in-out;
|
|
207
|
-
$transition-normal: 200ms ease-in-out;
|
|
208
|
-
$transition-slow: 500ms ease-in-out;
|
|
209
|
-
|
|
210
|
-
/*------------------------------------*\
|
|
211
|
-
#SHADOWS
|
|
212
|
-
\*------------------------------------*/
|
|
213
|
-
$shadow-xs: 0 0.0625rem 0.125rem 0 rgba(black, 0.05);
|
|
214
|
-
$shadow-sm: (
|
|
215
|
-
0 0.0625rem 0.1875rem 0 rgba(black, 0.1),
|
|
216
|
-
0 0.0625rem 0.125rem 0 rgba(black, 0.06)
|
|
217
|
-
);
|
|
218
|
-
$shadow-md: (
|
|
219
|
-
0 0.25rem 0.375rem -0.0625rem rgba(black, 0.1),
|
|
220
|
-
0 0.125rem 0.25rem -0.0625rem rgba(black, 0.06)
|
|
221
|
-
);
|
|
222
|
-
$shadow-lg: (
|
|
223
|
-
0 0.625rem 0.9375rem -0.1875rem rgba(black, 0.1),
|
|
224
|
-
0 0.25rem 0.375rem -0.125rem rgba(black, 0.05)
|
|
225
|
-
);
|
|
226
|
-
$shadow-xl: (
|
|
227
|
-
0 1.25rem 1.5625rem -0.3125rem rgba(black, 0.1),
|
|
228
|
-
0 0.625rem 0.625rem -0.3125rem rgba(black, 0.04)
|
|
229
|
-
);
|
package/scss/base/_index.scss
DELETED
|
@@ -1,351 +0,0 @@
|
|
|
1
|
-
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
2
|
-
|
|
3
|
-
/* Document
|
|
4
|
-
========================================================================== */
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* 1. Correct the line height in all browsers.
|
|
8
|
-
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
html {
|
|
12
|
-
line-height: 1.15; /* 1 */
|
|
13
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
/* Sections
|
|
17
|
-
========================================================================== */
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* Remove the margin in all browsers.
|
|
21
|
-
*/
|
|
22
|
-
|
|
23
|
-
body {
|
|
24
|
-
margin: 0;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* Render the `main` element consistently in IE.
|
|
29
|
-
*/
|
|
30
|
-
|
|
31
|
-
main {
|
|
32
|
-
display: block;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* Correct the font size and margin on `h1` elements within `section` and
|
|
37
|
-
* `article` contexts in Chrome, Firefox, and Safari.
|
|
38
|
-
*/
|
|
39
|
-
|
|
40
|
-
h1 {
|
|
41
|
-
font-size: 2em;
|
|
42
|
-
margin: 0.67em 0;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
/* Grouping content
|
|
46
|
-
========================================================================== */
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* 1. Add the correct box sizing in Firefox.
|
|
50
|
-
* 2. Show the overflow in Edge and IE.
|
|
51
|
-
*/
|
|
52
|
-
|
|
53
|
-
hr {
|
|
54
|
-
overflow: visible; /* 2 */
|
|
55
|
-
box-sizing: content-box; /* 1 */
|
|
56
|
-
height: 0; /* 1 */
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
/**
|
|
60
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
61
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
|
62
|
-
*/
|
|
63
|
-
|
|
64
|
-
pre {
|
|
65
|
-
font-family: monospace, monospace; /* 1 */
|
|
66
|
-
font-size: 1em; /* 2 */
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
/* Text-level semantics
|
|
70
|
-
========================================================================== */
|
|
71
|
-
|
|
72
|
-
/**
|
|
73
|
-
* Remove the gray background on active links in IE 10.
|
|
74
|
-
*/
|
|
75
|
-
|
|
76
|
-
a {
|
|
77
|
-
background-color: transparent;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
/**
|
|
81
|
-
* 1. Remove the bottom border in Chrome 57-
|
|
82
|
-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
83
|
-
*/
|
|
84
|
-
|
|
85
|
-
abbr[title] {
|
|
86
|
-
text-decoration: underline; /* 2 */
|
|
87
|
-
text-decoration: underline dotted; /* 2 */
|
|
88
|
-
border-bottom: none; /* 1 */
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
/**
|
|
92
|
-
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
93
|
-
*/
|
|
94
|
-
|
|
95
|
-
b,
|
|
96
|
-
strong {
|
|
97
|
-
font-weight: bolder;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
/**
|
|
101
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
102
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
|
103
|
-
*/
|
|
104
|
-
|
|
105
|
-
code,
|
|
106
|
-
kbd,
|
|
107
|
-
samp {
|
|
108
|
-
font-family: monospace, monospace; /* 1 */
|
|
109
|
-
font-size: 1em; /* 2 */
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
/**
|
|
113
|
-
* Add the correct font size in all browsers.
|
|
114
|
-
*/
|
|
115
|
-
|
|
116
|
-
small {
|
|
117
|
-
font-size: 80%;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
/**
|
|
121
|
-
* Prevent `sub` and `sup` elements from affecting the line height in
|
|
122
|
-
* all browsers.
|
|
123
|
-
*/
|
|
124
|
-
|
|
125
|
-
sub,
|
|
126
|
-
sup {
|
|
127
|
-
font-size: 75%;
|
|
128
|
-
line-height: 0;
|
|
129
|
-
position: relative;
|
|
130
|
-
vertical-align: baseline;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
sub {
|
|
134
|
-
bottom: -0.25em;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
sup {
|
|
138
|
-
top: -0.5em;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
/* Embedded content
|
|
142
|
-
========================================================================== */
|
|
143
|
-
|
|
144
|
-
/**
|
|
145
|
-
* Remove the border on images inside links in IE 10.
|
|
146
|
-
*/
|
|
147
|
-
|
|
148
|
-
img {
|
|
149
|
-
border-style: none;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
/* Forms
|
|
153
|
-
========================================================================== */
|
|
154
|
-
|
|
155
|
-
/**
|
|
156
|
-
* 1. Change the font styles in all browsers.
|
|
157
|
-
* 2. Remove the margin in Firefox and Safari.
|
|
158
|
-
*/
|
|
159
|
-
|
|
160
|
-
button,
|
|
161
|
-
input,
|
|
162
|
-
optgroup,
|
|
163
|
-
select,
|
|
164
|
-
textarea {
|
|
165
|
-
font-family: inherit; /* 1 */
|
|
166
|
-
font-size: 100%; /* 1 */
|
|
167
|
-
line-height: 1.15; /* 1 */
|
|
168
|
-
margin: 0; /* 2 */
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
/**
|
|
172
|
-
* Show the overflow in IE.
|
|
173
|
-
* 1. Show the overflow in Edge.
|
|
174
|
-
*/
|
|
175
|
-
|
|
176
|
-
button,
|
|
177
|
-
input {
|
|
178
|
-
/* 1 */
|
|
179
|
-
overflow: visible;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
/**
|
|
183
|
-
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
|
184
|
-
* 1. Remove the inheritance of text transform in Firefox.
|
|
185
|
-
*/
|
|
186
|
-
|
|
187
|
-
button,
|
|
188
|
-
select {
|
|
189
|
-
/* 1 */
|
|
190
|
-
text-transform: none;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
/**
|
|
194
|
-
* Correct the inability to style clickable types in iOS and Safari.
|
|
195
|
-
*/
|
|
196
|
-
|
|
197
|
-
button,
|
|
198
|
-
[type='button'],
|
|
199
|
-
[type='reset'],
|
|
200
|
-
[type='submit'] {
|
|
201
|
-
-webkit-appearance: button;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
/**
|
|
205
|
-
* Remove the inner border and padding in Firefox.
|
|
206
|
-
*/
|
|
207
|
-
|
|
208
|
-
button::-moz-focus-inner,
|
|
209
|
-
[type='button']::-moz-focus-inner,
|
|
210
|
-
[type='reset']::-moz-focus-inner,
|
|
211
|
-
[type='submit']::-moz-focus-inner {
|
|
212
|
-
padding: 0;
|
|
213
|
-
border-style: none;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
/**
|
|
217
|
-
* Restore the focus styles unset by the previous rule.
|
|
218
|
-
*/
|
|
219
|
-
|
|
220
|
-
button:-moz-focusring,
|
|
221
|
-
[type='button']:-moz-focusring,
|
|
222
|
-
[type='reset']:-moz-focusring,
|
|
223
|
-
[type='submit']:-moz-focusring {
|
|
224
|
-
outline: 1px dotted ButtonText;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
/**
|
|
228
|
-
* Correct the padding in Firefox.
|
|
229
|
-
*/
|
|
230
|
-
|
|
231
|
-
fieldset {
|
|
232
|
-
padding: 0.35em 0.75em 0.625em;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
/**
|
|
236
|
-
* 1. Correct the text wrapping in Edge and IE.
|
|
237
|
-
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
238
|
-
* 3. Remove the padding so developers are not caught out when they zero out
|
|
239
|
-
* `fieldset` elements in all browsers.
|
|
240
|
-
*/
|
|
241
|
-
|
|
242
|
-
legend {
|
|
243
|
-
display: table; /* 1 */
|
|
244
|
-
box-sizing: border-box; /* 1 */
|
|
245
|
-
max-width: 100%; /* 1 */
|
|
246
|
-
padding: 0; /* 3 */
|
|
247
|
-
white-space: normal; /* 1 */
|
|
248
|
-
color: inherit; /* 2 */
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
/**
|
|
252
|
-
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
253
|
-
*/
|
|
254
|
-
|
|
255
|
-
progress {
|
|
256
|
-
vertical-align: baseline;
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
/**
|
|
260
|
-
* Remove the default vertical scrollbar in IE 10+.
|
|
261
|
-
*/
|
|
262
|
-
|
|
263
|
-
textarea {
|
|
264
|
-
overflow: auto;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
/**
|
|
268
|
-
* 1. Add the correct box sizing in IE 10.
|
|
269
|
-
* 2. Remove the padding in IE 10.
|
|
270
|
-
*/
|
|
271
|
-
|
|
272
|
-
[type='checkbox'],
|
|
273
|
-
[type='radio'] {
|
|
274
|
-
box-sizing: border-box; /* 1 */
|
|
275
|
-
padding: 0; /* 2 */
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
/**
|
|
279
|
-
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
280
|
-
*/
|
|
281
|
-
|
|
282
|
-
[type='number']::-webkit-inner-spin-button,
|
|
283
|
-
[type='number']::-webkit-outer-spin-button {
|
|
284
|
-
height: auto;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
/**
|
|
288
|
-
* 1. Correct the odd appearance in Chrome and Safari.
|
|
289
|
-
* 2. Correct the outline style in Safari.
|
|
290
|
-
*/
|
|
291
|
-
|
|
292
|
-
[type='search'] {
|
|
293
|
-
outline-offset: -2px; /* 2 */
|
|
294
|
-
-webkit-appearance: textfield; /* 1 */
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
/**
|
|
298
|
-
* Remove the inner padding in Chrome and Safari on macOS.
|
|
299
|
-
*/
|
|
300
|
-
|
|
301
|
-
[type='search']::-webkit-search-decoration {
|
|
302
|
-
-webkit-appearance: none;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
/**
|
|
306
|
-
* 1. Correct the inability to style clickable types in iOS and Safari.
|
|
307
|
-
* 2. Change font properties to `inherit` in Safari.
|
|
308
|
-
*/
|
|
309
|
-
|
|
310
|
-
::-webkit-file-upload-button {
|
|
311
|
-
font: inherit; /* 2 */
|
|
312
|
-
-webkit-appearance: button; /* 1 */
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
/* Interactive
|
|
316
|
-
========================================================================== */
|
|
317
|
-
|
|
318
|
-
/*
|
|
319
|
-
* Add the correct display in Edge, IE 10+, and Firefox.
|
|
320
|
-
*/
|
|
321
|
-
|
|
322
|
-
details {
|
|
323
|
-
display: block;
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
/*
|
|
327
|
-
* Add the correct display in all browsers.
|
|
328
|
-
*/
|
|
329
|
-
|
|
330
|
-
summary {
|
|
331
|
-
display: list-item;
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
/* Misc
|
|
335
|
-
========================================================================== */
|
|
336
|
-
|
|
337
|
-
/**
|
|
338
|
-
* Add the correct display in IE 10+.
|
|
339
|
-
*/
|
|
340
|
-
|
|
341
|
-
template {
|
|
342
|
-
display: none;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
/**
|
|
346
|
-
* Add the correct display in IE 10.
|
|
347
|
-
*/
|
|
348
|
-
|
|
349
|
-
[hidden] {
|
|
350
|
-
display: none;
|
|
351
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
@use '../abstracts' as dc;
|
|
2
|
-
|
|
3
|
-
.dc-actions-group {
|
|
4
|
-
display: inline-flex;
|
|
5
|
-
align-items: center;
|
|
6
|
-
box-sizing: border-box;
|
|
7
|
-
padding: 0.125rem;
|
|
8
|
-
border: 0.0625rem solid var(--dc-actions-group-border);
|
|
9
|
-
border-radius: dc.$border-radius-md;
|
|
10
|
-
background: var(--dc-actions-group-bg);
|
|
11
|
-
box-shadow: dc.$shadow-xs;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.dc-actions-group > * + * {
|
|
15
|
-
margin-left: dc.$gap-1x;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.dc-actions-group__btn {
|
|
19
|
-
border-radius: inherit;
|
|
20
|
-
}
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
@use '../abstracts' as dc;
|
|
2
|
-
|
|
3
|
-
.dc-alert {
|
|
4
|
-
--dc-alert-bg-color: #{dc.$gray-50};
|
|
5
|
-
--dc-alert-border-color: #{dc.$gray-200};
|
|
6
|
-
--dc-alert-icon-color: #{dc.$gray-400};
|
|
7
|
-
--dc-alert-primary-text-color: #{dc.$gray-800};
|
|
8
|
-
--dc-alert-secondary-text-color: #{dc.$gray-600};
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.dc-alert {
|
|
12
|
-
font-family: var(--dc-font-base);
|
|
13
|
-
font-weight: dc.$font-weight-normal;
|
|
14
|
-
position: relative;
|
|
15
|
-
display: flex;
|
|
16
|
-
box-sizing: border-box;
|
|
17
|
-
padding: dc.$gap-3x dc.$gap-4x;
|
|
18
|
-
border: 0.0625rem solid var(--dc-alert-border-color);
|
|
19
|
-
border-radius: dc.$border-radius-md;
|
|
20
|
-
background: var(--dc-alert-bg-color);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.dc-alert__icon {
|
|
24
|
-
flex-shrink: 0;
|
|
25
|
-
width: 1.125rem;
|
|
26
|
-
height: 1.125rem;
|
|
27
|
-
margin-right: dc.$gap-3x;
|
|
28
|
-
color: var(--dc-alert-icon-color);
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.dc-alert__body {
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.dc-alert__heading {
|
|
35
|
-
font-weight: dc.$font-weight-medium;
|
|
36
|
-
line-height: 1.125rem;
|
|
37
|
-
margin: 0;
|
|
38
|
-
color: var(--dc-alert-primary-text-color);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.dc-alert__description {
|
|
42
|
-
margin: 0;
|
|
43
|
-
color: var(--dc-alert-secondary-text-color);
|
|
44
|
-
|
|
45
|
-
ul,
|
|
46
|
-
ol {
|
|
47
|
-
margin: 0;
|
|
48
|
-
padding: 0 0 0 1em;
|
|
49
|
-
|
|
50
|
-
li + li {
|
|
51
|
-
margin-top: dc.$gap-1x;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
* + & {
|
|
56
|
-
margin-top: dc.$gap-1x;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.dc-alert_bordered {
|
|
61
|
-
border-left: 0.25rem solid var(--dc-alert-icon-color);
|
|
62
|
-
border-radius: 0;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.dc-alert_appearance_warning {
|
|
66
|
-
--dc-alert-bg-color: #{dc.$yellow-50};
|
|
67
|
-
--dc-alert-border-color: #{dc.$yellow-200};
|
|
68
|
-
--dc-alert-icon-color: #{dc.$yellow-600};
|
|
69
|
-
--dc-alert-primary-text-color: #{dc.$yellow-900};
|
|
70
|
-
--dc-alert-secondary-text-color: #{dc.$yellow-800};
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.dc-alert_appearance_error {
|
|
74
|
-
--dc-alert-bg-color: #{dc.$red-50};
|
|
75
|
-
--dc-alert-border-color: #{dc.$red-200};
|
|
76
|
-
--dc-alert-icon-color: #{dc.$red-500};
|
|
77
|
-
--dc-alert-primary-text-color: #{dc.$red-900};
|
|
78
|
-
--dc-alert-secondary-text-color: #{dc.$red-800};
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.dc-alert_appearance_info {
|
|
82
|
-
--dc-alert-bg-color: #{dc.$blue-50};
|
|
83
|
-
--dc-alert-border-color: #{dc.$blue-200};
|
|
84
|
-
--dc-alert-icon-color: #{dc.$blue-500};
|
|
85
|
-
--dc-alert-primary-text-color: #{dc.$blue-800};
|
|
86
|
-
--dc-alert-secondary-text-color: #{dc.$blue-700};
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.dc-alert_appearance_success {
|
|
90
|
-
--dc-alert-bg-color: #{dc.$green-100};
|
|
91
|
-
--dc-alert-border-color: #{dc.$green-300};
|
|
92
|
-
--dc-alert-icon-color: #{dc.$green-500};
|
|
93
|
-
--dc-alert-primary-text-color: #{dc.$green-900};
|
|
94
|
-
--dc-alert-secondary-text-color: #{dc.$green-800};
|
|
95
|
-
}
|