draft-components 0.75.3 → 1.0.0-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -53
- package/css/draft-components-utilities.css +1575 -0
- package/css/draft-components-utilities.min.css +1 -0
- package/css/draft-components.css +3493 -2
- package/css/draft-components.dark.css +501 -0
- package/css/draft-components.dark.min.css +1 -0
- package/css/draft-components.min.css +1 -0
- package/dist/components/alert/alert.d.ts +10 -0
- package/dist/components/alert/alert.js +16 -0
- package/{components → dist/components}/alert/index.d.ts +0 -0
- package/{components → dist/components}/alert/index.js +0 -0
- package/dist/components/avatar/avatar.d.ts +13 -0
- package/dist/components/avatar/avatar.js +29 -0
- package/{components → dist/components}/avatar/index.d.ts +0 -0
- package/{components → dist/components}/avatar/index.js +0 -0
- package/dist/components/avatar-group/avatar-group.d.ts +7 -0
- package/dist/components/avatar-group/avatar-group.js +9 -0
- package/dist/components/avatar-group/index.d.ts +1 -0
- package/dist/components/avatar-group/index.js +17 -0
- package/dist/components/badge/badge.d.ts +8 -0
- package/dist/components/badge/badge.js +22 -0
- package/dist/components/badge/index.d.ts +1 -0
- package/dist/components/badge/index.js +17 -0
- package/dist/components/breadcrumbs/breadcrumbs-context.d.ts +9 -0
- package/dist/components/breadcrumbs/breadcrumbs-context.js +18 -0
- package/dist/components/breadcrumbs/breadcrumbs-item.d.ts +12 -0
- package/dist/components/breadcrumbs/breadcrumbs-item.js +20 -0
- package/dist/components/breadcrumbs/breadcrumbs.d.ts +7 -0
- package/dist/components/breadcrumbs/breadcrumbs.js +11 -0
- package/dist/components/breadcrumbs/index.d.ts +2 -0
- package/dist/components/breadcrumbs/index.js +18 -0
- package/dist/components/button/button.d.ts +19 -0
- package/dist/components/button/button.js +37 -0
- package/dist/components/button/icon-button.d.ts +6 -0
- package/dist/components/button/icon-button.js +10 -0
- package/dist/components/button/index.d.ts +2 -0
- package/dist/components/button/index.js +18 -0
- package/dist/components/button-group/button-group.d.ts +7 -0
- package/dist/components/button-group/button-group.js +9 -0
- package/dist/components/button-group/index.d.ts +1 -0
- package/dist/components/button-group/index.js +17 -0
- package/dist/components/caption/caption.d.ts +7 -0
- package/dist/components/caption/caption.js +25 -0
- package/dist/components/caption/icons.d.ts +5 -0
- package/dist/components/caption/icons.js +20 -0
- package/dist/components/caption/index.d.ts +1 -0
- package/dist/components/caption/index.js +17 -0
- package/dist/components/checkbox/checkbox.d.ts +10 -0
- package/dist/components/checkbox/checkbox.js +14 -0
- package/{components → dist/components}/checkbox/index.d.ts +0 -0
- package/{components → dist/components}/checkbox/index.js +0 -0
- package/dist/components/color-picker/color-picker-button.d.ts +12 -0
- package/dist/components/color-picker/color-picker-button.js +15 -0
- package/dist/components/color-picker/color-picker.d.ts +13 -0
- package/dist/components/color-picker/color-picker.js +13 -0
- package/dist/components/color-picker/index.d.ts +1 -0
- package/dist/components/color-picker/index.js +17 -0
- package/dist/components/date-picker/calendar-day.d.ts +17 -0
- package/dist/components/date-picker/calendar-day.js +16 -0
- package/dist/components/date-picker/calendar-grid-head.d.ts +7 -0
- package/dist/components/date-picker/calendar-grid-head.js +15 -0
- package/dist/components/date-picker/calendar-grid.d.ts +17 -0
- package/dist/components/date-picker/calendar-grid.js +105 -0
- package/dist/components/date-picker/calendar-header.d.ts +12 -0
- package/dist/components/date-picker/calendar-header.js +46 -0
- package/dist/components/date-picker/calendar.d.ts +11 -0
- package/dist/components/date-picker/calendar.js +23 -0
- package/dist/components/date-picker/date-helpers.d.ts +22 -0
- package/dist/components/date-picker/date-helpers.js +108 -0
- package/dist/components/date-picker/date-picker.d.ts +13 -0
- package/dist/components/date-picker/date-picker.js +19 -0
- package/dist/components/date-picker/date-range-picker.d.ts +14 -0
- package/dist/components/date-picker/date-range-picker.js +60 -0
- package/dist/components/date-picker/date-range.d.ts +13 -0
- package/dist/components/date-picker/date-range.js +27 -0
- package/dist/components/date-picker/icons.d.ts +3 -0
- package/dist/components/date-picker/icons.js +12 -0
- package/dist/components/date-picker/index.d.ts +2 -0
- package/dist/components/date-picker/index.js +18 -0
- package/dist/components/date-picker/parse-min-max-props.d.ts +8 -0
- package/dist/components/date-picker/parse-min-max-props.js +19 -0
- package/dist/components/date-picker-popover/date-picker-popover.d.ts +13 -0
- package/dist/components/date-picker-popover/date-picker-popover.js +20 -0
- package/{components → dist/components}/date-picker-popover/index.d.ts +0 -0
- package/{components → dist/components}/date-picker-popover/index.js +0 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +9 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-footer.js +9 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +10 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-presets.js +34 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover.d.ts +26 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover.js +54 -0
- package/dist/components/date-range-picker-popover/helpers.d.ts +2 -0
- package/dist/components/date-range-picker-popover/helpers.js +15 -0
- package/dist/components/date-range-picker-popover/index.d.ts +2 -0
- package/dist/components/date-range-picker-popover/index.js +18 -0
- package/dist/components/date-range-picker-popover/types.d.ts +10 -0
- package/{components/avatar → dist/components/date-range-picker-popover}/types.js +0 -0
- package/dist/components/date-range-picker-popover/use-is-compact-view.d.ts +1 -0
- package/dist/components/date-range-picker-popover/use-is-compact-view.js +26 -0
- package/dist/components/dialog/dialog-body.d.ts +8 -0
- package/dist/components/dialog/dialog-body.js +51 -0
- package/dist/components/dialog/dialog-context.d.ts +15 -0
- package/dist/components/dialog/dialog-context.js +23 -0
- package/dist/components/dialog/dialog-footer.d.ts +5 -0
- package/dist/components/dialog/dialog-footer.js +9 -0
- package/dist/components/dialog/dialog-header.d.ts +8 -0
- package/dist/components/dialog/dialog-header.js +16 -0
- package/dist/components/dialog/dialog.d.ts +12 -0
- package/dist/components/dialog/dialog.js +46 -0
- package/dist/components/dialog/index.d.ts +4 -0
- package/dist/components/dialog/index.js +20 -0
- package/dist/components/dialog/x-mark-icon.d.ts +2 -0
- package/dist/components/dialog/x-mark-icon.js +8 -0
- package/dist/components/empty-state/empty-state.d.ts +11 -0
- package/dist/components/empty-state/empty-state.js +9 -0
- package/dist/components/empty-state/index.d.ts +1 -0
- package/dist/components/empty-state/index.js +17 -0
- package/dist/components/file-picker/file-picker.d.ts +13 -0
- package/dist/components/file-picker/file-picker.js +44 -0
- package/dist/components/file-picker/index.d.ts +1 -0
- package/dist/components/file-picker/index.js +17 -0
- package/dist/components/filter-buttons/filter-button.d.ts +7 -0
- package/dist/components/filter-buttons/filter-button.js +9 -0
- package/dist/components/filter-buttons/filter-buttons.d.ts +5 -0
- package/dist/components/filter-buttons/filter-buttons.js +26 -0
- package/dist/components/filter-buttons/index.d.ts +2 -0
- package/dist/components/filter-buttons/index.js +18 -0
- package/dist/components/form-field/form-field.d.ts +15 -0
- package/dist/components/form-field/form-field.js +25 -0
- package/{components → dist/components}/form-field/index.d.ts +0 -0
- package/{components → dist/components}/form-field/index.js +0 -0
- package/{components → dist/components}/label/index.d.ts +0 -0
- package/{components → dist/components}/label/index.js +0 -0
- package/dist/components/label/label.d.ts +5 -0
- package/dist/components/label/label.js +11 -0
- package/dist/components/menu/index.d.ts +3 -0
- package/dist/components/menu/index.js +19 -0
- package/dist/components/menu/menu-item.d.ts +11 -0
- package/dist/components/menu/menu-item.js +12 -0
- package/dist/components/menu/menu-separator.d.ts +6 -0
- package/dist/components/menu/menu-separator.js +9 -0
- package/dist/components/menu/menu.d.ts +31 -0
- package/dist/components/menu/menu.js +194 -0
- package/dist/components/nav-list/index.d.ts +3 -0
- package/dist/components/nav-list/index.js +19 -0
- package/dist/components/nav-list/nav-list-item.d.ts +13 -0
- package/dist/components/nav-list/nav-list-item.js +19 -0
- package/dist/components/nav-list/nav-list-title.d.ts +8 -0
- package/dist/components/nav-list/nav-list-title.js +9 -0
- package/dist/components/nav-list/nav-list.d.ts +5 -0
- package/dist/components/nav-list/nav-list.js +9 -0
- package/dist/components/password-input/icons.d.ts +3 -0
- package/dist/components/password-input/icons.js +12 -0
- package/{components → dist/components}/password-input/index.d.ts +0 -0
- package/{components → dist/components}/password-input/index.js +0 -0
- package/dist/components/password-input/password-input.d.ts +10 -0
- package/dist/components/password-input/password-input.js +28 -0
- package/{components → dist/components}/popover/index.d.ts +0 -0
- package/{components → dist/components}/popover/index.js +0 -0
- package/dist/components/popover/popover.d.ts +49 -0
- package/dist/components/popover/popover.js +97 -0
- package/dist/components/popover/use-page-click.d.ts +16 -0
- package/dist/components/popover/use-page-click.js +50 -0
- package/{components → dist/components}/portal/index.d.ts +0 -0
- package/{components → dist/components}/portal/index.js +0 -0
- package/dist/components/portal/portal-context.d.ts +6 -0
- package/dist/components/portal/portal-context.js +26 -0
- package/dist/components/portal/portal.d.ts +5 -0
- package/dist/components/portal/portal.js +10 -0
- package/dist/components/positioner/calc-position.d.ts +32 -0
- package/dist/components/positioner/calc-position.js +117 -0
- package/{components → dist/components}/positioner/index.d.ts +0 -0
- package/{components → dist/components}/positioner/index.js +0 -0
- package/dist/components/positioner/positioner.d.ts +20 -0
- package/dist/components/positioner/positioner.js +63 -0
- package/dist/components/positioner/types.d.ts +14 -0
- package/{components → dist/components}/positioner/types.js +0 -0
- package/dist/components/radio/index.d.ts +1 -0
- package/dist/components/radio/index.js +17 -0
- package/dist/components/radio/radio.d.ts +11 -0
- package/dist/components/radio/radio.js +22 -0
- package/{components → dist/components}/segmented-control/index.d.ts +0 -0
- package/{components → dist/components}/segmented-control/index.js +0 -0
- package/dist/components/segmented-control/segmented-control-button.d.ts +10 -0
- package/dist/components/segmented-control/segmented-control-button.js +14 -0
- package/dist/components/segmented-control/segmented-control.d.ts +15 -0
- package/dist/components/segmented-control/segmented-control.js +47 -0
- package/{components → dist/components}/select/index.d.ts +0 -0
- package/{components → dist/components}/select/index.js +0 -0
- package/dist/components/select/select.d.ts +46 -0
- package/dist/components/select/select.js +25 -0
- package/{components → dist/components}/selection-control/index.d.ts +0 -0
- package/{components → dist/components}/selection-control/index.js +0 -0
- package/dist/components/selection-control/selection-control.d.ts +14 -0
- package/dist/components/selection-control/selection-control.js +17 -0
- package/dist/components/slider/index.d.ts +2 -0
- package/dist/components/slider/index.js +20 -0
- package/dist/components/slider/slider-tick-marks.d.ts +7 -0
- package/dist/components/slider/slider-tick-marks.js +16 -0
- package/dist/components/slider/slider.d.ts +17 -0
- package/dist/components/slider/slider.js +39 -0
- package/dist/components/spinner/index.d.ts +1 -0
- package/dist/components/spinner/index.js +17 -0
- package/dist/components/spinner/spinner.d.ts +7 -0
- package/dist/components/spinner/spinner.js +9 -0
- package/{components → dist/components}/switch/index.d.ts +0 -0
- package/{components → dist/components}/switch/index.js +0 -0
- package/dist/components/switch/switch.d.ts +10 -0
- package/dist/components/switch/switch.js +13 -0
- package/dist/components/table/icons.d.ts +4 -0
- package/dist/components/table/icons.js +16 -0
- package/dist/components/table/index.d.ts +7 -0
- package/dist/components/table/index.js +23 -0
- package/dist/components/table/table-body.d.ts +5 -0
- package/dist/components/table/table-body.js +9 -0
- package/dist/components/table/table-cell.d.ts +5 -0
- package/dist/components/table/table-cell.js +9 -0
- package/dist/components/table/table-container.d.ts +13 -0
- package/dist/components/table/table-container.js +21 -0
- package/dist/components/table/table-head-cell.d.ts +10 -0
- package/dist/components/table/table-head-cell.js +28 -0
- package/dist/components/table/table-head.d.ts +7 -0
- package/dist/components/table/table-head.js +12 -0
- package/dist/components/table/table-row.d.ts +7 -0
- package/dist/components/table/table-row.js +12 -0
- package/dist/components/table/table.d.ts +11 -0
- package/dist/components/table/table.js +14 -0
- package/dist/components/tabs/index.d.ts +4 -0
- package/dist/components/tabs/index.js +20 -0
- package/dist/components/tabs/tab-list.d.ts +3 -0
- package/dist/components/tabs/tab-list.js +66 -0
- package/dist/components/tabs/tab-panel.d.ts +6 -0
- package/dist/components/tabs/tab-panel.js +15 -0
- package/dist/components/tabs/tab.d.ts +7 -0
- package/dist/components/tabs/tab.js +18 -0
- package/dist/components/tabs/tabs-context.d.ts +20 -0
- package/dist/components/tabs/tabs-context.js +30 -0
- package/dist/components/tabs/tabs.d.ts +7 -0
- package/dist/components/tabs/tabs.js +10 -0
- package/dist/components/tabs/types.d.ts +2 -0
- package/dist/components/tabs/types.js +2 -0
- package/{components → dist/components}/tag/index.d.ts +0 -0
- package/{components → dist/components}/tag/index.js +0 -0
- package/dist/components/tag/tag.d.ts +13 -0
- package/dist/components/tag/tag.js +14 -0
- package/{components → dist/components}/text-input/index.d.ts +0 -0
- package/{components → dist/components}/text-input/index.js +0 -0
- package/dist/components/text-input/text-input.d.ts +21 -0
- package/dist/components/text-input/text-input.js +24 -0
- package/{components → dist/components}/textarea/index.d.ts +0 -0
- package/{components → dist/components}/textarea/index.js +0 -0
- package/dist/components/textarea/textarea.d.ts +20 -0
- package/dist/components/textarea/textarea.js +38 -0
- package/dist/components/toast/index.d.ts +2 -0
- package/dist/components/toast/index.js +18 -0
- package/dist/components/toast/toast-button.d.ts +5 -0
- package/dist/components/toast/toast-button.js +9 -0
- package/dist/components/toast/toast.d.ts +11 -0
- package/dist/components/toast/toast.js +10 -0
- package/dist/components/toast/x-mark-icon.d.ts +2 -0
- package/dist/components/toast/x-mark-icon.js +8 -0
- package/{components → dist/components}/toaster/index.d.ts +0 -0
- package/{components → dist/components}/toaster/index.js +0 -0
- package/dist/components/toaster/toaster.d.ts +40 -0
- package/dist/components/toaster/toaster.js +134 -0
- package/{components → dist/components}/tooltip/index.d.ts +0 -0
- package/{components → dist/components}/tooltip/index.js +0 -0
- package/dist/components/tooltip/tooltip.d.ts +25 -0
- package/dist/components/tooltip/tooltip.js +79 -0
- package/dist/hooks/index.d.ts +4 -0
- package/dist/hooks/index.js +20 -0
- package/dist/hooks/use-disable-body-scroll.d.ts +5 -0
- package/dist/hooks/use-disable-body-scroll.js +34 -0
- package/dist/hooks/use-esc-key-down.d.ts +17 -0
- package/dist/hooks/use-esc-key-down.js +53 -0
- package/dist/hooks/use-focus-trap.d.ts +15 -0
- package/dist/hooks/use-focus-trap.js +86 -0
- package/dist/hooks/use-mount-transition.d.ts +32 -0
- package/dist/hooks/use-mount-transition.js +40 -0
- package/dist/index.d.ts +37 -0
- package/dist/index.js +53 -0
- package/dist/shared/keyboard-keys.d.ts +14 -0
- package/dist/shared/keyboard-keys.js +17 -0
- package/dist/shared/react-helpers.d.ts +13 -0
- package/dist/shared/react-helpers.js +49 -0
- package/dist/shared/util.d.ts +2 -0
- package/dist/shared/util.js +21 -0
- package/esm/components/alert/alert.d.ts +10 -0
- package/esm/components/alert/alert.js +12 -0
- package/esm/components/alert/index.d.ts +1 -0
- package/esm/components/alert/index.js +1 -0
- package/esm/components/avatar/avatar.d.ts +13 -0
- package/esm/components/avatar/avatar.js +26 -0
- package/esm/components/avatar/index.d.ts +1 -0
- package/esm/components/avatar/index.js +1 -0
- package/esm/components/avatar-group/avatar-group.d.ts +7 -0
- package/esm/components/avatar-group/avatar-group.js +5 -0
- package/esm/components/avatar-group/index.d.ts +1 -0
- package/esm/components/avatar-group/index.js +1 -0
- package/esm/components/badge/badge.d.ts +8 -0
- package/esm/components/badge/badge.js +18 -0
- package/esm/components/badge/index.d.ts +1 -0
- package/esm/components/badge/index.js +1 -0
- package/esm/components/breadcrumbs/breadcrumbs-context.d.ts +9 -0
- package/esm/components/breadcrumbs/breadcrumbs-context.js +13 -0
- package/esm/components/breadcrumbs/breadcrumbs-item.d.ts +12 -0
- package/esm/components/breadcrumbs/breadcrumbs-item.js +16 -0
- package/esm/components/breadcrumbs/breadcrumbs.d.ts +7 -0
- package/esm/components/breadcrumbs/breadcrumbs.js +7 -0
- package/esm/components/breadcrumbs/index.d.ts +2 -0
- package/esm/components/breadcrumbs/index.js +2 -0
- package/esm/components/button/button.d.ts +19 -0
- package/esm/components/button/button.js +34 -0
- package/esm/components/button/icon-button.d.ts +6 -0
- package/esm/components/button/icon-button.js +7 -0
- package/esm/components/button/index.d.ts +2 -0
- package/esm/components/button/index.js +2 -0
- package/esm/components/button-group/button-group.d.ts +7 -0
- package/esm/components/button-group/button-group.js +5 -0
- package/esm/components/button-group/index.d.ts +1 -0
- package/esm/components/button-group/index.js +1 -0
- package/esm/components/caption/caption.d.ts +7 -0
- package/esm/components/caption/caption.js +22 -0
- package/esm/components/caption/icons.d.ts +5 -0
- package/esm/components/caption/icons.js +13 -0
- package/esm/components/caption/index.d.ts +1 -0
- package/esm/components/caption/index.js +1 -0
- package/esm/components/checkbox/checkbox.d.ts +10 -0
- package/esm/components/checkbox/checkbox.js +11 -0
- package/esm/components/checkbox/index.d.ts +1 -0
- package/esm/components/checkbox/index.js +1 -0
- package/esm/components/color-picker/color-picker-button.d.ts +12 -0
- package/esm/components/color-picker/color-picker-button.js +11 -0
- package/esm/components/color-picker/color-picker.d.ts +13 -0
- package/esm/components/color-picker/color-picker.js +9 -0
- package/esm/components/color-picker/index.d.ts +1 -0
- package/esm/components/color-picker/index.js +1 -0
- package/esm/components/date-picker/calendar-day.d.ts +17 -0
- package/esm/components/date-picker/calendar-day.js +12 -0
- package/esm/components/date-picker/calendar-grid-head.d.ts +7 -0
- package/esm/components/date-picker/calendar-grid-head.js +11 -0
- package/esm/components/date-picker/calendar-grid.d.ts +17 -0
- package/esm/components/date-picker/calendar-grid.js +101 -0
- package/esm/components/date-picker/calendar-header.d.ts +12 -0
- package/esm/components/date-picker/calendar-header.js +42 -0
- package/esm/components/date-picker/calendar.d.ts +11 -0
- package/esm/components/date-picker/calendar.js +19 -0
- package/esm/components/date-picker/date-helpers.d.ts +22 -0
- package/esm/components/date-picker/date-helpers.js +89 -0
- package/esm/components/date-picker/date-picker.d.ts +13 -0
- package/esm/components/date-picker/date-picker.js +15 -0
- package/esm/components/date-picker/date-range-picker.d.ts +14 -0
- package/esm/components/date-picker/date-range-picker.js +56 -0
- package/esm/components/date-picker/date-range.d.ts +13 -0
- package/esm/components/date-picker/date-range.js +23 -0
- package/esm/components/date-picker/icons.d.ts +3 -0
- package/esm/components/date-picker/icons.js +7 -0
- package/esm/components/date-picker/index.d.ts +2 -0
- package/esm/components/date-picker/index.js +2 -0
- package/esm/components/date-picker/parse-min-max-props.d.ts +8 -0
- package/esm/components/date-picker/parse-min-max-props.js +15 -0
- package/esm/components/date-picker-popover/date-picker-popover.d.ts +13 -0
- package/esm/components/date-picker-popover/date-picker-popover.js +16 -0
- package/esm/components/date-picker-popover/index.d.ts +1 -0
- package/esm/components/date-picker-popover/index.js +1 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +9 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.js +5 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +10 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.js +30 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover.d.ts +26 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover.js +50 -0
- package/esm/components/date-range-picker-popover/helpers.d.ts +2 -0
- package/esm/components/date-range-picker-popover/helpers.js +11 -0
- package/esm/components/date-range-picker-popover/index.d.ts +2 -0
- package/esm/components/date-range-picker-popover/index.js +2 -0
- package/esm/components/date-range-picker-popover/types.d.ts +10 -0
- package/esm/components/date-range-picker-popover/types.js +1 -0
- package/esm/components/date-range-picker-popover/use-is-compact-view.d.ts +1 -0
- package/esm/components/date-range-picker-popover/use-is-compact-view.js +22 -0
- package/esm/components/dialog/dialog-body.d.ts +8 -0
- package/esm/components/dialog/dialog-body.js +47 -0
- package/esm/components/dialog/dialog-context.d.ts +15 -0
- package/esm/components/dialog/dialog-context.js +18 -0
- package/esm/components/dialog/dialog-footer.d.ts +5 -0
- package/esm/components/dialog/dialog-footer.js +5 -0
- package/esm/components/dialog/dialog-header.d.ts +8 -0
- package/esm/components/dialog/dialog-header.js +12 -0
- package/esm/components/dialog/dialog.d.ts +12 -0
- package/esm/components/dialog/dialog.js +42 -0
- package/esm/components/dialog/index.d.ts +4 -0
- package/esm/components/dialog/index.js +4 -0
- package/esm/components/dialog/x-mark-icon.d.ts +2 -0
- package/esm/components/dialog/x-mark-icon.js +4 -0
- package/esm/components/empty-state/empty-state.d.ts +11 -0
- package/esm/components/empty-state/empty-state.js +5 -0
- package/esm/components/empty-state/index.d.ts +1 -0
- package/esm/components/empty-state/index.js +1 -0
- package/esm/components/file-picker/file-picker.d.ts +13 -0
- package/esm/components/file-picker/file-picker.js +41 -0
- package/esm/components/file-picker/index.d.ts +1 -0
- package/esm/components/file-picker/index.js +1 -0
- package/esm/components/filter-buttons/filter-button.d.ts +7 -0
- package/esm/components/filter-buttons/filter-button.js +6 -0
- package/esm/components/filter-buttons/filter-buttons.d.ts +5 -0
- package/esm/components/filter-buttons/filter-buttons.js +22 -0
- package/esm/components/filter-buttons/index.d.ts +2 -0
- package/esm/components/filter-buttons/index.js +2 -0
- package/esm/components/form-field/form-field.d.ts +15 -0
- package/esm/components/form-field/form-field.js +21 -0
- package/esm/components/form-field/index.d.ts +1 -0
- package/esm/components/form-field/index.js +1 -0
- package/esm/components/label/index.d.ts +1 -0
- package/esm/components/label/index.js +1 -0
- package/esm/components/label/label.d.ts +5 -0
- package/esm/components/label/label.js +8 -0
- package/esm/components/menu/index.d.ts +3 -0
- package/esm/components/menu/index.js +3 -0
- package/esm/components/menu/menu-item.d.ts +11 -0
- package/esm/components/menu/menu-item.js +9 -0
- package/esm/components/menu/menu-separator.d.ts +6 -0
- package/esm/components/menu/menu-separator.js +5 -0
- package/esm/components/menu/menu.d.ts +31 -0
- package/esm/components/menu/menu.js +190 -0
- package/esm/components/nav-list/index.d.ts +3 -0
- package/esm/components/nav-list/index.js +3 -0
- package/esm/components/nav-list/nav-list-item.d.ts +13 -0
- package/esm/components/nav-list/nav-list-item.js +15 -0
- package/esm/components/nav-list/nav-list-title.d.ts +8 -0
- package/esm/components/nav-list/nav-list-title.js +5 -0
- package/esm/components/nav-list/nav-list.d.ts +5 -0
- package/esm/components/nav-list/nav-list.js +5 -0
- package/esm/components/password-input/icons.d.ts +3 -0
- package/esm/components/password-input/icons.js +7 -0
- package/esm/components/password-input/index.d.ts +1 -0
- package/esm/components/password-input/index.js +1 -0
- package/esm/components/password-input/password-input.d.ts +10 -0
- package/esm/components/password-input/password-input.js +25 -0
- package/esm/components/popover/index.d.ts +1 -0
- package/esm/components/popover/index.js +1 -0
- package/esm/components/popover/popover.d.ts +49 -0
- package/esm/components/popover/popover.js +94 -0
- package/esm/components/popover/use-page-click.d.ts +16 -0
- package/esm/components/popover/use-page-click.js +46 -0
- package/esm/components/portal/index.d.ts +1 -0
- package/esm/components/portal/index.js +1 -0
- package/esm/components/portal/portal-context.d.ts +6 -0
- package/esm/components/portal/portal-context.js +21 -0
- package/esm/components/portal/portal.d.ts +5 -0
- package/esm/components/portal/portal.js +6 -0
- package/esm/components/positioner/calc-position.d.ts +32 -0
- package/esm/components/positioner/calc-position.js +112 -0
- package/esm/components/positioner/index.d.ts +1 -0
- package/esm/components/positioner/index.js +1 -0
- package/esm/components/positioner/positioner.d.ts +20 -0
- package/esm/components/positioner/positioner.js +59 -0
- package/esm/components/positioner/types.d.ts +14 -0
- package/esm/components/positioner/types.js +1 -0
- package/esm/components/radio/index.d.ts +1 -0
- package/esm/components/radio/index.js +1 -0
- package/esm/components/radio/radio.d.ts +11 -0
- package/esm/components/radio/radio.js +19 -0
- package/esm/components/segmented-control/index.d.ts +1 -0
- package/esm/components/segmented-control/index.js +1 -0
- package/esm/components/segmented-control/segmented-control-button.d.ts +10 -0
- package/esm/components/segmented-control/segmented-control-button.js +10 -0
- package/esm/components/segmented-control/segmented-control.d.ts +15 -0
- package/esm/components/segmented-control/segmented-control.js +43 -0
- package/esm/components/select/index.d.ts +1 -0
- package/esm/components/select/index.js +1 -0
- package/esm/components/select/select.d.ts +46 -0
- package/esm/components/select/select.js +22 -0
- package/esm/components/selection-control/index.d.ts +1 -0
- package/esm/components/selection-control/index.js +1 -0
- package/esm/components/selection-control/selection-control.d.ts +14 -0
- package/esm/components/selection-control/selection-control.js +13 -0
- package/esm/components/slider/index.d.ts +2 -0
- package/esm/components/slider/index.js +2 -0
- package/esm/components/slider/slider-tick-marks.d.ts +7 -0
- package/esm/components/slider/slider-tick-marks.js +12 -0
- package/esm/components/slider/slider.d.ts +17 -0
- package/esm/components/slider/slider.js +36 -0
- package/esm/components/spinner/index.d.ts +1 -0
- package/esm/components/spinner/index.js +1 -0
- package/esm/components/spinner/spinner.d.ts +7 -0
- package/esm/components/spinner/spinner.js +6 -0
- package/esm/components/switch/index.d.ts +1 -0
- package/esm/components/switch/index.js +1 -0
- package/esm/components/switch/switch.d.ts +10 -0
- package/esm/components/switch/switch.js +10 -0
- package/esm/components/table/icons.d.ts +4 -0
- package/esm/components/table/icons.js +10 -0
- package/esm/components/table/index.d.ts +7 -0
- package/esm/components/table/index.js +7 -0
- package/esm/components/table/table-body.d.ts +5 -0
- package/esm/components/table/table-body.js +6 -0
- package/esm/components/table/table-cell.d.ts +5 -0
- package/esm/components/table/table-cell.js +6 -0
- package/esm/components/table/table-container.d.ts +13 -0
- package/esm/components/table/table-container.js +18 -0
- package/esm/components/table/table-head-cell.d.ts +10 -0
- package/esm/components/table/table-head-cell.js +25 -0
- package/esm/components/table/table-head.d.ts +7 -0
- package/esm/components/table/table-head.js +9 -0
- package/esm/components/table/table-row.d.ts +7 -0
- package/esm/components/table/table-row.js +9 -0
- package/esm/components/table/table.d.ts +11 -0
- package/esm/components/table/table.js +11 -0
- package/esm/components/tabs/index.d.ts +4 -0
- package/esm/components/tabs/index.js +4 -0
- package/esm/components/tabs/tab-list.d.ts +3 -0
- package/esm/components/tabs/tab-list.js +62 -0
- package/esm/components/tabs/tab-panel.d.ts +6 -0
- package/esm/components/tabs/tab-panel.js +11 -0
- package/esm/components/tabs/tab.d.ts +7 -0
- package/esm/components/tabs/tab.js +14 -0
- package/esm/components/tabs/tabs-context.d.ts +20 -0
- package/esm/components/tabs/tabs-context.js +25 -0
- package/esm/components/tabs/tabs.d.ts +7 -0
- package/esm/components/tabs/tabs.js +6 -0
- package/esm/components/tabs/types.d.ts +2 -0
- package/esm/components/tabs/types.js +1 -0
- package/esm/components/tag/index.d.ts +1 -0
- package/esm/components/tag/index.js +1 -0
- package/esm/components/tag/tag.d.ts +13 -0
- package/esm/components/tag/tag.js +10 -0
- package/esm/components/text-input/index.d.ts +1 -0
- package/esm/components/text-input/index.js +1 -0
- package/esm/components/text-input/text-input.d.ts +21 -0
- package/esm/components/text-input/text-input.js +21 -0
- package/esm/components/textarea/index.d.ts +1 -0
- package/esm/components/textarea/index.js +1 -0
- package/esm/components/textarea/textarea.d.ts +20 -0
- package/esm/components/textarea/textarea.js +35 -0
- package/esm/components/toast/index.d.ts +2 -0
- package/esm/components/toast/index.js +2 -0
- package/esm/components/toast/toast-button.d.ts +5 -0
- package/esm/components/toast/toast-button.js +6 -0
- package/esm/components/toast/toast.d.ts +11 -0
- package/esm/components/toast/toast.js +6 -0
- package/esm/components/toast/x-mark-icon.d.ts +2 -0
- package/esm/components/toast/x-mark-icon.js +4 -0
- package/esm/components/toaster/index.d.ts +1 -0
- package/esm/components/toaster/index.js +1 -0
- package/esm/components/toaster/toaster.d.ts +40 -0
- package/esm/components/toaster/toaster.js +130 -0
- package/esm/components/tooltip/index.d.ts +1 -0
- package/esm/components/tooltip/index.js +1 -0
- package/esm/components/tooltip/tooltip.d.ts +25 -0
- package/esm/components/tooltip/tooltip.js +75 -0
- package/esm/hooks/index.d.ts +4 -0
- package/esm/hooks/index.js +4 -0
- package/esm/hooks/use-disable-body-scroll.d.ts +5 -0
- package/esm/hooks/use-disable-body-scroll.js +30 -0
- package/esm/hooks/use-esc-key-down.d.ts +17 -0
- package/esm/hooks/use-esc-key-down.js +49 -0
- package/esm/hooks/use-focus-trap.d.ts +15 -0
- package/esm/hooks/use-focus-trap.js +82 -0
- package/esm/hooks/use-mount-transition.d.ts +32 -0
- package/esm/hooks/use-mount-transition.js +36 -0
- package/esm/index.d.ts +37 -0
- package/esm/index.js +37 -0
- package/esm/shared/keyboard-keys.d.ts +14 -0
- package/esm/shared/keyboard-keys.js +14 -0
- package/esm/shared/react-helpers.d.ts +13 -0
- package/esm/shared/react-helpers.js +42 -0
- package/esm/shared/util.d.ts +2 -0
- package/esm/shared/util.js +16 -0
- package/package.json +65 -67
- package/bootstrap-icons/123.d.ts +0 -5
- package/bootstrap-icons/123.js +0 -12
- package/bootstrap-icons/activity.d.ts +0 -5
- package/bootstrap-icons/activity.js +0 -12
- package/bootstrap-icons/alarm-fill.d.ts +0 -5
- package/bootstrap-icons/alarm-fill.js +0 -12
- package/bootstrap-icons/alarm.d.ts +0 -5
- package/bootstrap-icons/alarm.js +0 -12
- package/bootstrap-icons/align-bottom.d.ts +0 -5
- package/bootstrap-icons/align-bottom.js +0 -12
- package/bootstrap-icons/align-center.d.ts +0 -5
- package/bootstrap-icons/align-center.js +0 -12
- package/bootstrap-icons/align-end.d.ts +0 -5
- package/bootstrap-icons/align-end.js +0 -12
- package/bootstrap-icons/align-middle.d.ts +0 -5
- package/bootstrap-icons/align-middle.js +0 -12
- package/bootstrap-icons/align-start.d.ts +0 -5
- package/bootstrap-icons/align-start.js +0 -12
- package/bootstrap-icons/align-top.d.ts +0 -5
- package/bootstrap-icons/align-top.js +0 -12
- package/bootstrap-icons/alt.d.ts +0 -5
- package/bootstrap-icons/alt.js +0 -12
- package/bootstrap-icons/app-indicator.d.ts +0 -5
- package/bootstrap-icons/app-indicator.js +0 -12
- package/bootstrap-icons/app.d.ts +0 -5
- package/bootstrap-icons/app.js +0 -12
- package/bootstrap-icons/apple.d.ts +0 -5
- package/bootstrap-icons/apple.js +0 -12
- package/bootstrap-icons/archive-fill.d.ts +0 -5
- package/bootstrap-icons/archive-fill.js +0 -12
- package/bootstrap-icons/archive.d.ts +0 -5
- package/bootstrap-icons/archive.js +0 -12
- package/bootstrap-icons/arrow-90deg-down.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-down.js +0 -12
- package/bootstrap-icons/arrow-90deg-left.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-left.js +0 -12
- package/bootstrap-icons/arrow-90deg-right.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-right.js +0 -12
- package/bootstrap-icons/arrow-90deg-up.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-up.js +0 -12
- package/bootstrap-icons/arrow-bar-down.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-down.js +0 -12
- package/bootstrap-icons/arrow-bar-left.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-left.js +0 -12
- package/bootstrap-icons/arrow-bar-right.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-right.js +0 -12
- package/bootstrap-icons/arrow-bar-up.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-up.js +0 -12
- package/bootstrap-icons/arrow-clockwise.d.ts +0 -5
- package/bootstrap-icons/arrow-clockwise.js +0 -12
- package/bootstrap-icons/arrow-counterclockwise.d.ts +0 -5
- package/bootstrap-icons/arrow-counterclockwise.js +0 -12
- package/bootstrap-icons/arrow-down-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-circle.js +0 -12
- package/bootstrap-icons/arrow-down-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-circle.js +0 -12
- package/bootstrap-icons/arrow-down-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-square.js +0 -12
- package/bootstrap-icons/arrow-down-left.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left.js +0 -12
- package/bootstrap-icons/arrow-down-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-circle.js +0 -12
- package/bootstrap-icons/arrow-down-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-square.js +0 -12
- package/bootstrap-icons/arrow-down-right.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right.js +0 -12
- package/bootstrap-icons/arrow-down-short.d.ts +0 -5
- package/bootstrap-icons/arrow-down-short.js +0 -12
- package/bootstrap-icons/arrow-down-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-square.js +0 -12
- package/bootstrap-icons/arrow-down-up.d.ts +0 -5
- package/bootstrap-icons/arrow-down-up.js +0 -12
- package/bootstrap-icons/arrow-down.d.ts +0 -5
- package/bootstrap-icons/arrow-down.js +0 -12
- package/bootstrap-icons/arrow-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-left-circle.js +0 -12
- package/bootstrap-icons/arrow-left-right.d.ts +0 -5
- package/bootstrap-icons/arrow-left-right.js +0 -12
- package/bootstrap-icons/arrow-left-short.d.ts +0 -5
- package/bootstrap-icons/arrow-left-short.js +0 -12
- package/bootstrap-icons/arrow-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-left-square.js +0 -12
- package/bootstrap-icons/arrow-left.d.ts +0 -5
- package/bootstrap-icons/arrow-left.js +0 -12
- package/bootstrap-icons/arrow-repeat.d.ts +0 -5
- package/bootstrap-icons/arrow-repeat.js +0 -12
- package/bootstrap-icons/arrow-return-left.d.ts +0 -5
- package/bootstrap-icons/arrow-return-left.js +0 -12
- package/bootstrap-icons/arrow-return-right.d.ts +0 -5
- package/bootstrap-icons/arrow-return-right.js +0 -12
- package/bootstrap-icons/arrow-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-right-circle.js +0 -12
- package/bootstrap-icons/arrow-right-short.d.ts +0 -5
- package/bootstrap-icons/arrow-right-short.js +0 -12
- package/bootstrap-icons/arrow-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-right-square.js +0 -12
- package/bootstrap-icons/arrow-right.d.ts +0 -5
- package/bootstrap-icons/arrow-right.js +0 -12
- package/bootstrap-icons/arrow-through-heart-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-through-heart-fill.js +0 -12
- package/bootstrap-icons/arrow-through-heart.d.ts +0 -5
- package/bootstrap-icons/arrow-through-heart.js +0 -12
- package/bootstrap-icons/arrow-up-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-circle.js +0 -12
- package/bootstrap-icons/arrow-up-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-circle.js +0 -12
- package/bootstrap-icons/arrow-up-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-square.js +0 -12
- package/bootstrap-icons/arrow-up-left.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left.js +0 -12
- package/bootstrap-icons/arrow-up-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-circle.js +0 -12
- package/bootstrap-icons/arrow-up-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-square.js +0 -12
- package/bootstrap-icons/arrow-up-right.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right.js +0 -12
- package/bootstrap-icons/arrow-up-short.d.ts +0 -5
- package/bootstrap-icons/arrow-up-short.js +0 -12
- package/bootstrap-icons/arrow-up-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-square.js +0 -12
- package/bootstrap-icons/arrow-up.d.ts +0 -5
- package/bootstrap-icons/arrow-up.js +0 -12
- package/bootstrap-icons/arrows-angle-contract.d.ts +0 -5
- package/bootstrap-icons/arrows-angle-contract.js +0 -12
- package/bootstrap-icons/arrows-angle-expand.d.ts +0 -5
- package/bootstrap-icons/arrows-angle-expand.js +0 -12
- package/bootstrap-icons/arrows-collapse.d.ts +0 -5
- package/bootstrap-icons/arrows-collapse.js +0 -12
- package/bootstrap-icons/arrows-expand.d.ts +0 -5
- package/bootstrap-icons/arrows-expand.js +0 -12
- package/bootstrap-icons/arrows-fullscreen.d.ts +0 -5
- package/bootstrap-icons/arrows-fullscreen.js +0 -12
- package/bootstrap-icons/arrows-move.d.ts +0 -5
- package/bootstrap-icons/arrows-move.js +0 -12
- package/bootstrap-icons/aspect-ratio-fill.d.ts +0 -5
- package/bootstrap-icons/aspect-ratio-fill.js +0 -12
- package/bootstrap-icons/aspect-ratio.d.ts +0 -5
- package/bootstrap-icons/aspect-ratio.js +0 -12
- package/bootstrap-icons/asterisk.d.ts +0 -5
- package/bootstrap-icons/asterisk.js +0 -12
- package/bootstrap-icons/at.d.ts +0 -5
- package/bootstrap-icons/at.js +0 -12
- package/bootstrap-icons/award-fill.d.ts +0 -5
- package/bootstrap-icons/award-fill.js +0 -12
- package/bootstrap-icons/award.d.ts +0 -5
- package/bootstrap-icons/award.js +0 -12
- package/bootstrap-icons/back.d.ts +0 -5
- package/bootstrap-icons/back.js +0 -12
- package/bootstrap-icons/backspace-fill.d.ts +0 -5
- package/bootstrap-icons/backspace-fill.js +0 -12
- package/bootstrap-icons/backspace-reverse-fill.d.ts +0 -5
- package/bootstrap-icons/backspace-reverse-fill.js +0 -12
- package/bootstrap-icons/backspace-reverse.d.ts +0 -5
- package/bootstrap-icons/backspace-reverse.js +0 -12
- package/bootstrap-icons/backspace.d.ts +0 -5
- package/bootstrap-icons/backspace.js +0 -12
- package/bootstrap-icons/badge-3d-fill.d.ts +0 -5
- package/bootstrap-icons/badge-3d-fill.js +0 -12
- package/bootstrap-icons/badge-3d.d.ts +0 -5
- package/bootstrap-icons/badge-3d.js +0 -12
- package/bootstrap-icons/badge-4k-fill.d.ts +0 -5
- package/bootstrap-icons/badge-4k-fill.js +0 -12
- package/bootstrap-icons/badge-4k.d.ts +0 -5
- package/bootstrap-icons/badge-4k.js +0 -12
- package/bootstrap-icons/badge-8k-fill.d.ts +0 -5
- package/bootstrap-icons/badge-8k-fill.js +0 -12
- package/bootstrap-icons/badge-8k.d.ts +0 -5
- package/bootstrap-icons/badge-8k.js +0 -12
- package/bootstrap-icons/badge-ad-fill.d.ts +0 -5
- package/bootstrap-icons/badge-ad-fill.js +0 -12
- package/bootstrap-icons/badge-ad.d.ts +0 -5
- package/bootstrap-icons/badge-ad.js +0 -12
- package/bootstrap-icons/badge-ar-fill.d.ts +0 -5
- package/bootstrap-icons/badge-ar-fill.js +0 -12
- package/bootstrap-icons/badge-ar.d.ts +0 -5
- package/bootstrap-icons/badge-ar.js +0 -12
- package/bootstrap-icons/badge-cc-fill.d.ts +0 -5
- package/bootstrap-icons/badge-cc-fill.js +0 -12
- package/bootstrap-icons/badge-cc.d.ts +0 -5
- package/bootstrap-icons/badge-cc.js +0 -12
- package/bootstrap-icons/badge-hd-fill.d.ts +0 -5
- package/bootstrap-icons/badge-hd-fill.js +0 -12
- package/bootstrap-icons/badge-hd.d.ts +0 -5
- package/bootstrap-icons/badge-hd.js +0 -12
- package/bootstrap-icons/badge-sd-fill.d.ts +0 -5
- package/bootstrap-icons/badge-sd-fill.js +0 -12
- package/bootstrap-icons/badge-sd.d.ts +0 -5
- package/bootstrap-icons/badge-sd.js +0 -12
- package/bootstrap-icons/badge-tm-fill.d.ts +0 -5
- package/bootstrap-icons/badge-tm-fill.js +0 -12
- package/bootstrap-icons/badge-tm.d.ts +0 -5
- package/bootstrap-icons/badge-tm.js +0 -12
- package/bootstrap-icons/badge-vo-fill.d.ts +0 -5
- package/bootstrap-icons/badge-vo-fill.js +0 -12
- package/bootstrap-icons/badge-vo.d.ts +0 -5
- package/bootstrap-icons/badge-vo.js +0 -12
- package/bootstrap-icons/badge-vr-fill.d.ts +0 -5
- package/bootstrap-icons/badge-vr-fill.js +0 -12
- package/bootstrap-icons/badge-vr.d.ts +0 -5
- package/bootstrap-icons/badge-vr.js +0 -12
- package/bootstrap-icons/badge-wc-fill.d.ts +0 -5
- package/bootstrap-icons/badge-wc-fill.js +0 -12
- package/bootstrap-icons/badge-wc.d.ts +0 -5
- package/bootstrap-icons/badge-wc.js +0 -12
- package/bootstrap-icons/bag-check-fill.d.ts +0 -5
- package/bootstrap-icons/bag-check-fill.js +0 -12
- package/bootstrap-icons/bag-check.d.ts +0 -5
- package/bootstrap-icons/bag-check.js +0 -12
- package/bootstrap-icons/bag-dash-fill.d.ts +0 -5
- package/bootstrap-icons/bag-dash-fill.js +0 -12
- package/bootstrap-icons/bag-dash.d.ts +0 -5
- package/bootstrap-icons/bag-dash.js +0 -12
- package/bootstrap-icons/bag-fill.d.ts +0 -5
- package/bootstrap-icons/bag-fill.js +0 -12
- package/bootstrap-icons/bag-heart-fill.d.ts +0 -5
- package/bootstrap-icons/bag-heart-fill.js +0 -12
- package/bootstrap-icons/bag-heart.d.ts +0 -5
- package/bootstrap-icons/bag-heart.js +0 -12
- package/bootstrap-icons/bag-plus-fill.d.ts +0 -5
- package/bootstrap-icons/bag-plus-fill.js +0 -12
- package/bootstrap-icons/bag-plus.d.ts +0 -5
- package/bootstrap-icons/bag-plus.js +0 -12
- package/bootstrap-icons/bag-x-fill.d.ts +0 -5
- package/bootstrap-icons/bag-x-fill.js +0 -12
- package/bootstrap-icons/bag-x.d.ts +0 -5
- package/bootstrap-icons/bag-x.js +0 -12
- package/bootstrap-icons/bag.d.ts +0 -5
- package/bootstrap-icons/bag.js +0 -12
- package/bootstrap-icons/balloon-fill.d.ts +0 -5
- package/bootstrap-icons/balloon-fill.js +0 -12
- package/bootstrap-icons/balloon-heart-fill.d.ts +0 -5
- package/bootstrap-icons/balloon-heart-fill.js +0 -12
- package/bootstrap-icons/balloon-heart.d.ts +0 -5
- package/bootstrap-icons/balloon-heart.js +0 -12
- package/bootstrap-icons/balloon.d.ts +0 -5
- package/bootstrap-icons/balloon.js +0 -12
- package/bootstrap-icons/bandaid-fill.d.ts +0 -5
- package/bootstrap-icons/bandaid-fill.js +0 -12
- package/bootstrap-icons/bandaid.d.ts +0 -5
- package/bootstrap-icons/bandaid.js +0 -12
- package/bootstrap-icons/bank.d.ts +0 -5
- package/bootstrap-icons/bank.js +0 -12
- package/bootstrap-icons/bank2.d.ts +0 -5
- package/bootstrap-icons/bank2.js +0 -12
- package/bootstrap-icons/bar-chart-fill.d.ts +0 -5
- package/bootstrap-icons/bar-chart-fill.js +0 -12
- package/bootstrap-icons/bar-chart-line-fill.d.ts +0 -5
- package/bootstrap-icons/bar-chart-line-fill.js +0 -12
- package/bootstrap-icons/bar-chart-line.d.ts +0 -5
- package/bootstrap-icons/bar-chart-line.js +0 -12
- package/bootstrap-icons/bar-chart-steps.d.ts +0 -5
- package/bootstrap-icons/bar-chart-steps.js +0 -12
- package/bootstrap-icons/bar-chart.d.ts +0 -5
- package/bootstrap-icons/bar-chart.js +0 -12
- package/bootstrap-icons/basket-fill.d.ts +0 -5
- package/bootstrap-icons/basket-fill.js +0 -12
- package/bootstrap-icons/basket.d.ts +0 -5
- package/bootstrap-icons/basket.js +0 -12
- package/bootstrap-icons/basket2-fill.d.ts +0 -5
- package/bootstrap-icons/basket2-fill.js +0 -12
- package/bootstrap-icons/basket2.d.ts +0 -5
- package/bootstrap-icons/basket2.js +0 -12
- package/bootstrap-icons/basket3-fill.d.ts +0 -5
- package/bootstrap-icons/basket3-fill.js +0 -12
- package/bootstrap-icons/basket3.d.ts +0 -5
- package/bootstrap-icons/basket3.js +0 -12
- package/bootstrap-icons/battery-charging.d.ts +0 -5
- package/bootstrap-icons/battery-charging.js +0 -12
- package/bootstrap-icons/battery-full.d.ts +0 -5
- package/bootstrap-icons/battery-full.js +0 -12
- package/bootstrap-icons/battery-half.d.ts +0 -5
- package/bootstrap-icons/battery-half.js +0 -12
- package/bootstrap-icons/battery.d.ts +0 -5
- package/bootstrap-icons/battery.js +0 -12
- package/bootstrap-icons/behance.d.ts +0 -5
- package/bootstrap-icons/behance.js +0 -12
- package/bootstrap-icons/bell-fill.d.ts +0 -5
- package/bootstrap-icons/bell-fill.js +0 -12
- package/bootstrap-icons/bell-slash-fill.d.ts +0 -5
- package/bootstrap-icons/bell-slash-fill.js +0 -12
- package/bootstrap-icons/bell-slash.d.ts +0 -5
- package/bootstrap-icons/bell-slash.js +0 -12
- package/bootstrap-icons/bell.d.ts +0 -5
- package/bootstrap-icons/bell.js +0 -12
- package/bootstrap-icons/bezier.d.ts +0 -5
- package/bootstrap-icons/bezier.js +0 -12
- package/bootstrap-icons/bezier2.d.ts +0 -5
- package/bootstrap-icons/bezier2.js +0 -12
- package/bootstrap-icons/bicycle.d.ts +0 -5
- package/bootstrap-icons/bicycle.js +0 -12
- package/bootstrap-icons/binoculars-fill.d.ts +0 -5
- package/bootstrap-icons/binoculars-fill.js +0 -12
- package/bootstrap-icons/binoculars.d.ts +0 -5
- package/bootstrap-icons/binoculars.js +0 -12
- package/bootstrap-icons/blockquote-left.d.ts +0 -5
- package/bootstrap-icons/blockquote-left.js +0 -12
- package/bootstrap-icons/blockquote-right.d.ts +0 -5
- package/bootstrap-icons/blockquote-right.js +0 -12
- package/bootstrap-icons/bluetooth.d.ts +0 -5
- package/bootstrap-icons/bluetooth.js +0 -12
- package/bootstrap-icons/body-text.d.ts +0 -5
- package/bootstrap-icons/body-text.js +0 -12
- package/bootstrap-icons/book-fill.d.ts +0 -5
- package/bootstrap-icons/book-fill.js +0 -12
- package/bootstrap-icons/book-half.d.ts +0 -5
- package/bootstrap-icons/book-half.js +0 -12
- package/bootstrap-icons/book.d.ts +0 -5
- package/bootstrap-icons/book.js +0 -12
- package/bootstrap-icons/bookmark-check-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-check-fill.js +0 -12
- package/bootstrap-icons/bookmark-check.d.ts +0 -5
- package/bootstrap-icons/bookmark-check.js +0 -12
- package/bootstrap-icons/bookmark-dash-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-dash-fill.js +0 -12
- package/bootstrap-icons/bookmark-dash.d.ts +0 -5
- package/bootstrap-icons/bookmark-dash.js +0 -12
- package/bootstrap-icons/bookmark-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-fill.js +0 -12
- package/bootstrap-icons/bookmark-heart-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-heart-fill.js +0 -12
- package/bootstrap-icons/bookmark-heart.d.ts +0 -5
- package/bootstrap-icons/bookmark-heart.js +0 -12
- package/bootstrap-icons/bookmark-plus-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-plus-fill.js +0 -12
- package/bootstrap-icons/bookmark-plus.d.ts +0 -5
- package/bootstrap-icons/bookmark-plus.js +0 -12
- package/bootstrap-icons/bookmark-star-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-star-fill.js +0 -12
- package/bootstrap-icons/bookmark-star.d.ts +0 -5
- package/bootstrap-icons/bookmark-star.js +0 -12
- package/bootstrap-icons/bookmark-x-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-x-fill.js +0 -12
- package/bootstrap-icons/bookmark-x.d.ts +0 -5
- package/bootstrap-icons/bookmark-x.js +0 -12
- package/bootstrap-icons/bookmark.d.ts +0 -5
- package/bootstrap-icons/bookmark.js +0 -12
- package/bootstrap-icons/bookmarks-fill.d.ts +0 -5
- package/bootstrap-icons/bookmarks-fill.js +0 -12
- package/bootstrap-icons/bookmarks.d.ts +0 -5
- package/bootstrap-icons/bookmarks.js +0 -12
- package/bootstrap-icons/bookshelf.d.ts +0 -5
- package/bootstrap-icons/bookshelf.js +0 -12
- package/bootstrap-icons/boombox-fill.d.ts +0 -5
- package/bootstrap-icons/boombox-fill.js +0 -12
- package/bootstrap-icons/boombox.d.ts +0 -5
- package/bootstrap-icons/boombox.js +0 -12
- package/bootstrap-icons/bootstrap-fill.d.ts +0 -5
- package/bootstrap-icons/bootstrap-fill.js +0 -12
- package/bootstrap-icons/bootstrap-reboot.d.ts +0 -5
- package/bootstrap-icons/bootstrap-reboot.js +0 -12
- package/bootstrap-icons/bootstrap.d.ts +0 -5
- package/bootstrap-icons/bootstrap.js +0 -12
- package/bootstrap-icons/border-all.d.ts +0 -5
- package/bootstrap-icons/border-all.js +0 -12
- package/bootstrap-icons/border-bottom.d.ts +0 -5
- package/bootstrap-icons/border-bottom.js +0 -12
- package/bootstrap-icons/border-center.d.ts +0 -5
- package/bootstrap-icons/border-center.js +0 -12
- package/bootstrap-icons/border-inner.d.ts +0 -5
- package/bootstrap-icons/border-inner.js +0 -12
- package/bootstrap-icons/border-left.d.ts +0 -5
- package/bootstrap-icons/border-left.js +0 -12
- package/bootstrap-icons/border-middle.d.ts +0 -5
- package/bootstrap-icons/border-middle.js +0 -12
- package/bootstrap-icons/border-outer.d.ts +0 -5
- package/bootstrap-icons/border-outer.js +0 -12
- package/bootstrap-icons/border-right.d.ts +0 -5
- package/bootstrap-icons/border-right.js +0 -12
- package/bootstrap-icons/border-style.d.ts +0 -5
- package/bootstrap-icons/border-style.js +0 -12
- package/bootstrap-icons/border-top.d.ts +0 -5
- package/bootstrap-icons/border-top.js +0 -12
- package/bootstrap-icons/border-width.d.ts +0 -5
- package/bootstrap-icons/border-width.js +0 -12
- package/bootstrap-icons/border.d.ts +0 -5
- package/bootstrap-icons/border.js +0 -12
- package/bootstrap-icons/bounding-box-circles.d.ts +0 -5
- package/bootstrap-icons/bounding-box-circles.js +0 -12
- package/bootstrap-icons/bounding-box.d.ts +0 -5
- package/bootstrap-icons/bounding-box.js +0 -12
- package/bootstrap-icons/box-arrow-down-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down-left.js +0 -12
- package/bootstrap-icons/box-arrow-down-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down-right.js +0 -12
- package/bootstrap-icons/box-arrow-down.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down.js +0 -12
- package/bootstrap-icons/box-arrow-in-down-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-down-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-down.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down.js +0 -12
- package/bootstrap-icons/box-arrow-in-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-up-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-up-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-up.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up.js +0 -12
- package/bootstrap-icons/box-arrow-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-left.js +0 -12
- package/bootstrap-icons/box-arrow-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-right.js +0 -12
- package/bootstrap-icons/box-arrow-up-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up-left.js +0 -12
- package/bootstrap-icons/box-arrow-up-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up-right.js +0 -12
- package/bootstrap-icons/box-arrow-up.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up.js +0 -12
- package/bootstrap-icons/box-seam.d.ts +0 -5
- package/bootstrap-icons/box-seam.js +0 -12
- package/bootstrap-icons/box.d.ts +0 -5
- package/bootstrap-icons/box.js +0 -12
- package/bootstrap-icons/box2-fill.d.ts +0 -5
- package/bootstrap-icons/box2-fill.js +0 -12
- package/bootstrap-icons/box2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/box2-heart-fill.js +0 -12
- package/bootstrap-icons/box2-heart.d.ts +0 -5
- package/bootstrap-icons/box2-heart.js +0 -12
- package/bootstrap-icons/box2.d.ts +0 -5
- package/bootstrap-icons/box2.js +0 -12
- package/bootstrap-icons/boxes.d.ts +0 -5
- package/bootstrap-icons/boxes.js +0 -12
- package/bootstrap-icons/braces-asterisk.d.ts +0 -5
- package/bootstrap-icons/braces-asterisk.js +0 -12
- package/bootstrap-icons/braces.d.ts +0 -5
- package/bootstrap-icons/braces.js +0 -12
- package/bootstrap-icons/bricks.d.ts +0 -5
- package/bootstrap-icons/bricks.js +0 -12
- package/bootstrap-icons/briefcase-fill.d.ts +0 -5
- package/bootstrap-icons/briefcase-fill.js +0 -12
- package/bootstrap-icons/briefcase.d.ts +0 -5
- package/bootstrap-icons/briefcase.js +0 -12
- package/bootstrap-icons/brightness-alt-high-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-high-fill.js +0 -12
- package/bootstrap-icons/brightness-alt-high.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-high.js +0 -12
- package/bootstrap-icons/brightness-alt-low-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-low-fill.js +0 -12
- package/bootstrap-icons/brightness-alt-low.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-low.js +0 -12
- package/bootstrap-icons/brightness-high-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-high-fill.js +0 -12
- package/bootstrap-icons/brightness-high.d.ts +0 -5
- package/bootstrap-icons/brightness-high.js +0 -12
- package/bootstrap-icons/brightness-low-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-low-fill.js +0 -12
- package/bootstrap-icons/brightness-low.d.ts +0 -5
- package/bootstrap-icons/brightness-low.js +0 -12
- package/bootstrap-icons/broadcast-pin.d.ts +0 -5
- package/bootstrap-icons/broadcast-pin.js +0 -12
- package/bootstrap-icons/broadcast.d.ts +0 -5
- package/bootstrap-icons/broadcast.js +0 -12
- package/bootstrap-icons/brush-fill.d.ts +0 -5
- package/bootstrap-icons/brush-fill.js +0 -12
- package/bootstrap-icons/brush.d.ts +0 -5
- package/bootstrap-icons/brush.js +0 -12
- package/bootstrap-icons/bucket-fill.d.ts +0 -5
- package/bootstrap-icons/bucket-fill.js +0 -12
- package/bootstrap-icons/bucket.d.ts +0 -5
- package/bootstrap-icons/bucket.js +0 -12
- package/bootstrap-icons/bug-fill.d.ts +0 -5
- package/bootstrap-icons/bug-fill.js +0 -12
- package/bootstrap-icons/bug.d.ts +0 -5
- package/bootstrap-icons/bug.js +0 -12
- package/bootstrap-icons/building.d.ts +0 -5
- package/bootstrap-icons/building.js +0 -12
- package/bootstrap-icons/bullseye.d.ts +0 -5
- package/bootstrap-icons/bullseye.js +0 -12
- package/bootstrap-icons/calculator-fill.d.ts +0 -5
- package/bootstrap-icons/calculator-fill.js +0 -12
- package/bootstrap-icons/calculator.d.ts +0 -5
- package/bootstrap-icons/calculator.js +0 -12
- package/bootstrap-icons/calendar-check-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-check-fill.js +0 -12
- package/bootstrap-icons/calendar-check.d.ts +0 -5
- package/bootstrap-icons/calendar-check.js +0 -12
- package/bootstrap-icons/calendar-date-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-date-fill.js +0 -12
- package/bootstrap-icons/calendar-date.d.ts +0 -5
- package/bootstrap-icons/calendar-date.js +0 -12
- package/bootstrap-icons/calendar-day-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-day-fill.js +0 -12
- package/bootstrap-icons/calendar-day.d.ts +0 -5
- package/bootstrap-icons/calendar-day.js +0 -12
- package/bootstrap-icons/calendar-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-event-fill.js +0 -12
- package/bootstrap-icons/calendar-event.d.ts +0 -5
- package/bootstrap-icons/calendar-event.js +0 -12
- package/bootstrap-icons/calendar-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-fill.js +0 -12
- package/bootstrap-icons/calendar-heart-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-heart-fill.js +0 -12
- package/bootstrap-icons/calendar-heart.d.ts +0 -5
- package/bootstrap-icons/calendar-heart.js +0 -12
- package/bootstrap-icons/calendar-minus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-minus-fill.js +0 -12
- package/bootstrap-icons/calendar-minus.d.ts +0 -5
- package/bootstrap-icons/calendar-minus.js +0 -12
- package/bootstrap-icons/calendar-month-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-month-fill.js +0 -12
- package/bootstrap-icons/calendar-month.d.ts +0 -5
- package/bootstrap-icons/calendar-month.js +0 -12
- package/bootstrap-icons/calendar-plus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-plus-fill.js +0 -12
- package/bootstrap-icons/calendar-plus.d.ts +0 -5
- package/bootstrap-icons/calendar-plus.js +0 -12
- package/bootstrap-icons/calendar-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-range-fill.js +0 -12
- package/bootstrap-icons/calendar-range.d.ts +0 -5
- package/bootstrap-icons/calendar-range.js +0 -12
- package/bootstrap-icons/calendar-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-week-fill.js +0 -12
- package/bootstrap-icons/calendar-week.d.ts +0 -5
- package/bootstrap-icons/calendar-week.js +0 -12
- package/bootstrap-icons/calendar-x-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-x-fill.js +0 -12
- package/bootstrap-icons/calendar-x.d.ts +0 -5
- package/bootstrap-icons/calendar-x.js +0 -12
- package/bootstrap-icons/calendar.d.ts +0 -5
- package/bootstrap-icons/calendar.js +0 -12
- package/bootstrap-icons/calendar2-check-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-check-fill.js +0 -12
- package/bootstrap-icons/calendar2-check.d.ts +0 -5
- package/bootstrap-icons/calendar2-check.js +0 -12
- package/bootstrap-icons/calendar2-date-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-date-fill.js +0 -12
- package/bootstrap-icons/calendar2-date.d.ts +0 -5
- package/bootstrap-icons/calendar2-date.js +0 -12
- package/bootstrap-icons/calendar2-day-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-day-fill.js +0 -12
- package/bootstrap-icons/calendar2-day.d.ts +0 -5
- package/bootstrap-icons/calendar2-day.js +0 -12
- package/bootstrap-icons/calendar2-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-event-fill.js +0 -12
- package/bootstrap-icons/calendar2-event.d.ts +0 -5
- package/bootstrap-icons/calendar2-event.js +0 -12
- package/bootstrap-icons/calendar2-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-fill.js +0 -12
- package/bootstrap-icons/calendar2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-heart-fill.js +0 -12
- package/bootstrap-icons/calendar2-heart.d.ts +0 -5
- package/bootstrap-icons/calendar2-heart.js +0 -12
- package/bootstrap-icons/calendar2-minus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-minus-fill.js +0 -12
- package/bootstrap-icons/calendar2-minus.d.ts +0 -5
- package/bootstrap-icons/calendar2-minus.js +0 -12
- package/bootstrap-icons/calendar2-month-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-month-fill.js +0 -12
- package/bootstrap-icons/calendar2-month.d.ts +0 -5
- package/bootstrap-icons/calendar2-month.js +0 -12
- package/bootstrap-icons/calendar2-plus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-plus-fill.js +0 -12
- package/bootstrap-icons/calendar2-plus.d.ts +0 -5
- package/bootstrap-icons/calendar2-plus.js +0 -12
- package/bootstrap-icons/calendar2-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-range-fill.js +0 -12
- package/bootstrap-icons/calendar2-range.d.ts +0 -5
- package/bootstrap-icons/calendar2-range.js +0 -12
- package/bootstrap-icons/calendar2-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-week-fill.js +0 -12
- package/bootstrap-icons/calendar2-week.d.ts +0 -5
- package/bootstrap-icons/calendar2-week.js +0 -12
- package/bootstrap-icons/calendar2-x-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-x-fill.js +0 -12
- package/bootstrap-icons/calendar2-x.d.ts +0 -5
- package/bootstrap-icons/calendar2-x.js +0 -12
- package/bootstrap-icons/calendar2.d.ts +0 -5
- package/bootstrap-icons/calendar2.js +0 -12
- package/bootstrap-icons/calendar3-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-event-fill.js +0 -12
- package/bootstrap-icons/calendar3-event.d.ts +0 -5
- package/bootstrap-icons/calendar3-event.js +0 -12
- package/bootstrap-icons/calendar3-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-fill.js +0 -12
- package/bootstrap-icons/calendar3-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-range-fill.js +0 -12
- package/bootstrap-icons/calendar3-range.d.ts +0 -5
- package/bootstrap-icons/calendar3-range.js +0 -12
- package/bootstrap-icons/calendar3-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-week-fill.js +0 -12
- package/bootstrap-icons/calendar3-week.d.ts +0 -5
- package/bootstrap-icons/calendar3-week.js +0 -12
- package/bootstrap-icons/calendar3.d.ts +0 -5
- package/bootstrap-icons/calendar3.js +0 -12
- package/bootstrap-icons/calendar4-event.d.ts +0 -5
- package/bootstrap-icons/calendar4-event.js +0 -12
- package/bootstrap-icons/calendar4-range.d.ts +0 -5
- package/bootstrap-icons/calendar4-range.js +0 -12
- package/bootstrap-icons/calendar4-week.d.ts +0 -5
- package/bootstrap-icons/calendar4-week.js +0 -12
- package/bootstrap-icons/calendar4.d.ts +0 -5
- package/bootstrap-icons/calendar4.js +0 -12
- package/bootstrap-icons/camera-fill.d.ts +0 -5
- package/bootstrap-icons/camera-fill.js +0 -12
- package/bootstrap-icons/camera-reels-fill.d.ts +0 -5
- package/bootstrap-icons/camera-reels-fill.js +0 -12
- package/bootstrap-icons/camera-reels.d.ts +0 -5
- package/bootstrap-icons/camera-reels.js +0 -12
- package/bootstrap-icons/camera-video-fill.d.ts +0 -5
- package/bootstrap-icons/camera-video-fill.js +0 -12
- package/bootstrap-icons/camera-video-off-fill.d.ts +0 -5
- package/bootstrap-icons/camera-video-off-fill.js +0 -12
- package/bootstrap-icons/camera-video-off.d.ts +0 -5
- package/bootstrap-icons/camera-video-off.js +0 -12
- package/bootstrap-icons/camera-video.d.ts +0 -5
- package/bootstrap-icons/camera-video.js +0 -12
- package/bootstrap-icons/camera.d.ts +0 -5
- package/bootstrap-icons/camera.js +0 -12
- package/bootstrap-icons/camera2.d.ts +0 -5
- package/bootstrap-icons/camera2.js +0 -12
- package/bootstrap-icons/capslock-fill.d.ts +0 -5
- package/bootstrap-icons/capslock-fill.js +0 -12
- package/bootstrap-icons/capslock.d.ts +0 -5
- package/bootstrap-icons/capslock.js +0 -12
- package/bootstrap-icons/card-checklist.d.ts +0 -5
- package/bootstrap-icons/card-checklist.js +0 -12
- package/bootstrap-icons/card-heading.d.ts +0 -5
- package/bootstrap-icons/card-heading.js +0 -12
- package/bootstrap-icons/card-image.d.ts +0 -5
- package/bootstrap-icons/card-image.js +0 -12
- package/bootstrap-icons/card-list.d.ts +0 -5
- package/bootstrap-icons/card-list.js +0 -12
- package/bootstrap-icons/card-text.d.ts +0 -5
- package/bootstrap-icons/card-text.js +0 -12
- package/bootstrap-icons/caret-down-fill.d.ts +0 -5
- package/bootstrap-icons/caret-down-fill.js +0 -12
- package/bootstrap-icons/caret-down-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-down-square-fill.js +0 -12
- package/bootstrap-icons/caret-down-square.d.ts +0 -5
- package/bootstrap-icons/caret-down-square.js +0 -12
- package/bootstrap-icons/caret-down.d.ts +0 -5
- package/bootstrap-icons/caret-down.js +0 -12
- package/bootstrap-icons/caret-left-fill.d.ts +0 -5
- package/bootstrap-icons/caret-left-fill.js +0 -12
- package/bootstrap-icons/caret-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-left-square-fill.js +0 -12
- package/bootstrap-icons/caret-left-square.d.ts +0 -5
- package/bootstrap-icons/caret-left-square.js +0 -12
- package/bootstrap-icons/caret-left.d.ts +0 -5
- package/bootstrap-icons/caret-left.js +0 -12
- package/bootstrap-icons/caret-right-fill.d.ts +0 -5
- package/bootstrap-icons/caret-right-fill.js +0 -12
- package/bootstrap-icons/caret-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-right-square-fill.js +0 -12
- package/bootstrap-icons/caret-right-square.d.ts +0 -5
- package/bootstrap-icons/caret-right-square.js +0 -12
- package/bootstrap-icons/caret-right.d.ts +0 -5
- package/bootstrap-icons/caret-right.js +0 -12
- package/bootstrap-icons/caret-up-fill.d.ts +0 -5
- package/bootstrap-icons/caret-up-fill.js +0 -12
- package/bootstrap-icons/caret-up-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-up-square-fill.js +0 -12
- package/bootstrap-icons/caret-up-square.d.ts +0 -5
- package/bootstrap-icons/caret-up-square.js +0 -12
- package/bootstrap-icons/caret-up.d.ts +0 -5
- package/bootstrap-icons/caret-up.js +0 -12
- package/bootstrap-icons/cart-check-fill.d.ts +0 -5
- package/bootstrap-icons/cart-check-fill.js +0 -12
- package/bootstrap-icons/cart-check.d.ts +0 -5
- package/bootstrap-icons/cart-check.js +0 -12
- package/bootstrap-icons/cart-dash-fill.d.ts +0 -5
- package/bootstrap-icons/cart-dash-fill.js +0 -12
- package/bootstrap-icons/cart-dash.d.ts +0 -5
- package/bootstrap-icons/cart-dash.js +0 -12
- package/bootstrap-icons/cart-fill.d.ts +0 -5
- package/bootstrap-icons/cart-fill.js +0 -12
- package/bootstrap-icons/cart-plus-fill.d.ts +0 -5
- package/bootstrap-icons/cart-plus-fill.js +0 -12
- package/bootstrap-icons/cart-plus.d.ts +0 -5
- package/bootstrap-icons/cart-plus.js +0 -12
- package/bootstrap-icons/cart-x-fill.d.ts +0 -5
- package/bootstrap-icons/cart-x-fill.js +0 -12
- package/bootstrap-icons/cart-x.d.ts +0 -5
- package/bootstrap-icons/cart-x.js +0 -12
- package/bootstrap-icons/cart.d.ts +0 -5
- package/bootstrap-icons/cart.js +0 -12
- package/bootstrap-icons/cart2.d.ts +0 -5
- package/bootstrap-icons/cart2.js +0 -12
- package/bootstrap-icons/cart3.d.ts +0 -5
- package/bootstrap-icons/cart3.js +0 -12
- package/bootstrap-icons/cart4.d.ts +0 -5
- package/bootstrap-icons/cart4.js +0 -12
- package/bootstrap-icons/cash-coin.d.ts +0 -5
- package/bootstrap-icons/cash-coin.js +0 -12
- package/bootstrap-icons/cash-stack.d.ts +0 -5
- package/bootstrap-icons/cash-stack.js +0 -12
- package/bootstrap-icons/cash.d.ts +0 -5
- package/bootstrap-icons/cash.js +0 -12
- package/bootstrap-icons/cast.d.ts +0 -5
- package/bootstrap-icons/cast.js +0 -12
- package/bootstrap-icons/chat-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-dots-fill.js +0 -12
- package/bootstrap-icons/chat-dots.d.ts +0 -5
- package/bootstrap-icons/chat-dots.js +0 -12
- package/bootstrap-icons/chat-fill.d.ts +0 -5
- package/bootstrap-icons/chat-fill.js +0 -12
- package/bootstrap-icons/chat-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-heart-fill.js +0 -12
- package/bootstrap-icons/chat-heart.d.ts +0 -5
- package/bootstrap-icons/chat-heart.js +0 -12
- package/bootstrap-icons/chat-left-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-dots-fill.js +0 -12
- package/bootstrap-icons/chat-left-dots.d.ts +0 -5
- package/bootstrap-icons/chat-left-dots.js +0 -12
- package/bootstrap-icons/chat-left-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-fill.js +0 -12
- package/bootstrap-icons/chat-left-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-heart-fill.js +0 -12
- package/bootstrap-icons/chat-left-heart.d.ts +0 -5
- package/bootstrap-icons/chat-left-heart.js +0 -12
- package/bootstrap-icons/chat-left-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-quote-fill.js +0 -12
- package/bootstrap-icons/chat-left-quote.d.ts +0 -5
- package/bootstrap-icons/chat-left-quote.js +0 -12
- package/bootstrap-icons/chat-left-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-text-fill.js +0 -12
- package/bootstrap-icons/chat-left-text.d.ts +0 -5
- package/bootstrap-icons/chat-left-text.js +0 -12
- package/bootstrap-icons/chat-left.d.ts +0 -5
- package/bootstrap-icons/chat-left.js +0 -12
- package/bootstrap-icons/chat-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-quote-fill.js +0 -12
- package/bootstrap-icons/chat-quote.d.ts +0 -5
- package/bootstrap-icons/chat-quote.js +0 -12
- package/bootstrap-icons/chat-right-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-dots-fill.js +0 -12
- package/bootstrap-icons/chat-right-dots.d.ts +0 -5
- package/bootstrap-icons/chat-right-dots.js +0 -12
- package/bootstrap-icons/chat-right-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-fill.js +0 -12
- package/bootstrap-icons/chat-right-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-heart-fill.js +0 -12
- package/bootstrap-icons/chat-right-heart.d.ts +0 -5
- package/bootstrap-icons/chat-right-heart.js +0 -12
- package/bootstrap-icons/chat-right-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-quote-fill.js +0 -12
- package/bootstrap-icons/chat-right-quote.d.ts +0 -5
- package/bootstrap-icons/chat-right-quote.js +0 -12
- package/bootstrap-icons/chat-right-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-text-fill.js +0 -12
- package/bootstrap-icons/chat-right-text.d.ts +0 -5
- package/bootstrap-icons/chat-right-text.js +0 -12
- package/bootstrap-icons/chat-right.d.ts +0 -5
- package/bootstrap-icons/chat-right.js +0 -12
- package/bootstrap-icons/chat-square-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-dots-fill.js +0 -12
- package/bootstrap-icons/chat-square-dots.d.ts +0 -5
- package/bootstrap-icons/chat-square-dots.js +0 -12
- package/bootstrap-icons/chat-square-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-fill.js +0 -12
- package/bootstrap-icons/chat-square-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-heart-fill.js +0 -12
- package/bootstrap-icons/chat-square-heart.d.ts +0 -5
- package/bootstrap-icons/chat-square-heart.js +0 -12
- package/bootstrap-icons/chat-square-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-quote-fill.js +0 -12
- package/bootstrap-icons/chat-square-quote.d.ts +0 -5
- package/bootstrap-icons/chat-square-quote.js +0 -12
- package/bootstrap-icons/chat-square-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-text-fill.js +0 -12
- package/bootstrap-icons/chat-square-text.d.ts +0 -5
- package/bootstrap-icons/chat-square-text.js +0 -12
- package/bootstrap-icons/chat-square.d.ts +0 -5
- package/bootstrap-icons/chat-square.js +0 -12
- package/bootstrap-icons/chat-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-text-fill.js +0 -12
- package/bootstrap-icons/chat-text.d.ts +0 -5
- package/bootstrap-icons/chat-text.js +0 -12
- package/bootstrap-icons/chat.d.ts +0 -5
- package/bootstrap-icons/chat.js +0 -12
- package/bootstrap-icons/check-all.d.ts +0 -5
- package/bootstrap-icons/check-all.js +0 -12
- package/bootstrap-icons/check-circle-fill.d.ts +0 -5
- package/bootstrap-icons/check-circle-fill.js +0 -12
- package/bootstrap-icons/check-circle.d.ts +0 -5
- package/bootstrap-icons/check-circle.js +0 -12
- package/bootstrap-icons/check-lg.d.ts +0 -5
- package/bootstrap-icons/check-lg.js +0 -12
- package/bootstrap-icons/check-square-fill.d.ts +0 -5
- package/bootstrap-icons/check-square-fill.js +0 -12
- package/bootstrap-icons/check-square.d.ts +0 -5
- package/bootstrap-icons/check-square.js +0 -12
- package/bootstrap-icons/check.d.ts +0 -5
- package/bootstrap-icons/check.js +0 -12
- package/bootstrap-icons/check2-all.d.ts +0 -5
- package/bootstrap-icons/check2-all.js +0 -12
- package/bootstrap-icons/check2-circle.d.ts +0 -5
- package/bootstrap-icons/check2-circle.js +0 -12
- package/bootstrap-icons/check2-square.d.ts +0 -5
- package/bootstrap-icons/check2-square.js +0 -12
- package/bootstrap-icons/check2.d.ts +0 -5
- package/bootstrap-icons/check2.js +0 -12
- package/bootstrap-icons/chevron-bar-contract.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-contract.js +0 -12
- package/bootstrap-icons/chevron-bar-down.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-down.js +0 -12
- package/bootstrap-icons/chevron-bar-expand.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-expand.js +0 -12
- package/bootstrap-icons/chevron-bar-left.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-left.js +0 -12
- package/bootstrap-icons/chevron-bar-right.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-right.js +0 -12
- package/bootstrap-icons/chevron-bar-up.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-up.js +0 -12
- package/bootstrap-icons/chevron-compact-down.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-down.js +0 -12
- package/bootstrap-icons/chevron-compact-left.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-left.js +0 -12
- package/bootstrap-icons/chevron-compact-right.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-right.js +0 -12
- package/bootstrap-icons/chevron-compact-up.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-up.js +0 -12
- package/bootstrap-icons/chevron-contract.d.ts +0 -5
- package/bootstrap-icons/chevron-contract.js +0 -12
- package/bootstrap-icons/chevron-double-down.d.ts +0 -5
- package/bootstrap-icons/chevron-double-down.js +0 -12
- package/bootstrap-icons/chevron-double-left.d.ts +0 -5
- package/bootstrap-icons/chevron-double-left.js +0 -12
- package/bootstrap-icons/chevron-double-right.d.ts +0 -5
- package/bootstrap-icons/chevron-double-right.js +0 -12
- package/bootstrap-icons/chevron-double-up.d.ts +0 -5
- package/bootstrap-icons/chevron-double-up.js +0 -12
- package/bootstrap-icons/chevron-down.d.ts +0 -5
- package/bootstrap-icons/chevron-down.js +0 -12
- package/bootstrap-icons/chevron-expand.d.ts +0 -5
- package/bootstrap-icons/chevron-expand.js +0 -12
- package/bootstrap-icons/chevron-left.d.ts +0 -5
- package/bootstrap-icons/chevron-left.js +0 -12
- package/bootstrap-icons/chevron-right.d.ts +0 -5
- package/bootstrap-icons/chevron-right.js +0 -12
- package/bootstrap-icons/chevron-up.d.ts +0 -5
- package/bootstrap-icons/chevron-up.js +0 -12
- package/bootstrap-icons/circle-fill.d.ts +0 -5
- package/bootstrap-icons/circle-fill.js +0 -12
- package/bootstrap-icons/circle-half.d.ts +0 -5
- package/bootstrap-icons/circle-half.js +0 -12
- package/bootstrap-icons/circle-square.d.ts +0 -5
- package/bootstrap-icons/circle-square.js +0 -12
- package/bootstrap-icons/circle.d.ts +0 -5
- package/bootstrap-icons/circle.js +0 -12
- package/bootstrap-icons/clipboard-check-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-check-fill.js +0 -12
- package/bootstrap-icons/clipboard-check.d.ts +0 -5
- package/bootstrap-icons/clipboard-check.js +0 -12
- package/bootstrap-icons/clipboard-data-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-data-fill.js +0 -12
- package/bootstrap-icons/clipboard-data.d.ts +0 -5
- package/bootstrap-icons/clipboard-data.js +0 -12
- package/bootstrap-icons/clipboard-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-fill.js +0 -12
- package/bootstrap-icons/clipboard-heart-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-heart-fill.js +0 -12
- package/bootstrap-icons/clipboard-heart.d.ts +0 -5
- package/bootstrap-icons/clipboard-heart.js +0 -12
- package/bootstrap-icons/clipboard-minus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-minus-fill.js +0 -12
- package/bootstrap-icons/clipboard-minus.d.ts +0 -5
- package/bootstrap-icons/clipboard-minus.js +0 -12
- package/bootstrap-icons/clipboard-plus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-plus-fill.js +0 -12
- package/bootstrap-icons/clipboard-plus.d.ts +0 -5
- package/bootstrap-icons/clipboard-plus.js +0 -12
- package/bootstrap-icons/clipboard-pulse.d.ts +0 -5
- package/bootstrap-icons/clipboard-pulse.js +0 -12
- package/bootstrap-icons/clipboard-x-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-x-fill.js +0 -12
- package/bootstrap-icons/clipboard-x.d.ts +0 -5
- package/bootstrap-icons/clipboard-x.js +0 -12
- package/bootstrap-icons/clipboard.d.ts +0 -5
- package/bootstrap-icons/clipboard.js +0 -12
- package/bootstrap-icons/clipboard2-check-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-check-fill.js +0 -12
- package/bootstrap-icons/clipboard2-check.d.ts +0 -5
- package/bootstrap-icons/clipboard2-check.js +0 -12
- package/bootstrap-icons/clipboard2-data-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-data-fill.js +0 -12
- package/bootstrap-icons/clipboard2-data.d.ts +0 -5
- package/bootstrap-icons/clipboard2-data.js +0 -12
- package/bootstrap-icons/clipboard2-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-fill.js +0 -12
- package/bootstrap-icons/clipboard2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-heart-fill.js +0 -12
- package/bootstrap-icons/clipboard2-heart.d.ts +0 -5
- package/bootstrap-icons/clipboard2-heart.js +0 -12
- package/bootstrap-icons/clipboard2-minus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-minus-fill.js +0 -12
- package/bootstrap-icons/clipboard2-minus.d.ts +0 -5
- package/bootstrap-icons/clipboard2-minus.js +0 -12
- package/bootstrap-icons/clipboard2-plus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-plus-fill.js +0 -12
- package/bootstrap-icons/clipboard2-plus.d.ts +0 -5
- package/bootstrap-icons/clipboard2-plus.js +0 -12
- package/bootstrap-icons/clipboard2-pulse-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-pulse-fill.js +0 -12
- package/bootstrap-icons/clipboard2-pulse.d.ts +0 -5
- package/bootstrap-icons/clipboard2-pulse.js +0 -12
- package/bootstrap-icons/clipboard2-x-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-x-fill.js +0 -12
- package/bootstrap-icons/clipboard2-x.d.ts +0 -5
- package/bootstrap-icons/clipboard2-x.js +0 -12
- package/bootstrap-icons/clipboard2.d.ts +0 -5
- package/bootstrap-icons/clipboard2.js +0 -12
- package/bootstrap-icons/clock-fill.d.ts +0 -5
- package/bootstrap-icons/clock-fill.js +0 -12
- package/bootstrap-icons/clock-history.d.ts +0 -5
- package/bootstrap-icons/clock-history.js +0 -12
- package/bootstrap-icons/clock.d.ts +0 -5
- package/bootstrap-icons/clock.js +0 -12
- package/bootstrap-icons/cloud-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-down-fill.js +0 -12
- package/bootstrap-icons/cloud-arrow-down.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-down.js +0 -12
- package/bootstrap-icons/cloud-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-up-fill.js +0 -12
- package/bootstrap-icons/cloud-arrow-up.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-up.js +0 -12
- package/bootstrap-icons/cloud-check-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-check-fill.js +0 -12
- package/bootstrap-icons/cloud-check.d.ts +0 -5
- package/bootstrap-icons/cloud-check.js +0 -12
- package/bootstrap-icons/cloud-download-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-download-fill.js +0 -12
- package/bootstrap-icons/cloud-download.d.ts +0 -5
- package/bootstrap-icons/cloud-download.js +0 -12
- package/bootstrap-icons/cloud-drizzle-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-drizzle-fill.js +0 -12
- package/bootstrap-icons/cloud-drizzle.d.ts +0 -5
- package/bootstrap-icons/cloud-drizzle.js +0 -12
- package/bootstrap-icons/cloud-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fill.js +0 -12
- package/bootstrap-icons/cloud-fog-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fog-fill.js +0 -12
- package/bootstrap-icons/cloud-fog.d.ts +0 -5
- package/bootstrap-icons/cloud-fog.js +0 -12
- package/bootstrap-icons/cloud-fog2-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fog2-fill.js +0 -12
- package/bootstrap-icons/cloud-fog2.d.ts +0 -5
- package/bootstrap-icons/cloud-fog2.js +0 -12
- package/bootstrap-icons/cloud-hail-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-hail-fill.js +0 -12
- package/bootstrap-icons/cloud-hail.d.ts +0 -5
- package/bootstrap-icons/cloud-hail.js +0 -12
- package/bootstrap-icons/cloud-haze-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-haze-fill.js +0 -12
- package/bootstrap-icons/cloud-haze.d.ts +0 -5
- package/bootstrap-icons/cloud-haze.js +0 -12
- package/bootstrap-icons/cloud-haze2-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-haze2-fill.js +0 -12
- package/bootstrap-icons/cloud-haze2.d.ts +0 -5
- package/bootstrap-icons/cloud-haze2.js +0 -12
- package/bootstrap-icons/cloud-lightning-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-fill.js +0 -12
- package/bootstrap-icons/cloud-lightning-rain-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-rain-fill.js +0 -12
- package/bootstrap-icons/cloud-lightning-rain.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-rain.js +0 -12
- package/bootstrap-icons/cloud-lightning.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning.js +0 -12
- package/bootstrap-icons/cloud-minus-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-minus-fill.js +0 -12
- package/bootstrap-icons/cloud-minus.d.ts +0 -5
- package/bootstrap-icons/cloud-minus.js +0 -12
- package/bootstrap-icons/cloud-moon-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-moon-fill.js +0 -12
- package/bootstrap-icons/cloud-moon.d.ts +0 -5
- package/bootstrap-icons/cloud-moon.js +0 -12
- package/bootstrap-icons/cloud-plus-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-plus-fill.js +0 -12
- package/bootstrap-icons/cloud-plus.d.ts +0 -5
- package/bootstrap-icons/cloud-plus.js +0 -12
- package/bootstrap-icons/cloud-rain-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-fill.js +0 -12
- package/bootstrap-icons/cloud-rain-heavy-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-heavy-fill.js +0 -12
- package/bootstrap-icons/cloud-rain-heavy.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-heavy.js +0 -12
- package/bootstrap-icons/cloud-rain.d.ts +0 -5
- package/bootstrap-icons/cloud-rain.js +0 -12
- package/bootstrap-icons/cloud-slash-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-slash-fill.js +0 -12
- package/bootstrap-icons/cloud-slash.d.ts +0 -5
- package/bootstrap-icons/cloud-slash.js +0 -12
- package/bootstrap-icons/cloud-sleet-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-sleet-fill.js +0 -12
- package/bootstrap-icons/cloud-sleet.d.ts +0 -5
- package/bootstrap-icons/cloud-sleet.js +0 -12
- package/bootstrap-icons/cloud-snow-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-snow-fill.js +0 -12
- package/bootstrap-icons/cloud-snow.d.ts +0 -5
- package/bootstrap-icons/cloud-snow.js +0 -12
- package/bootstrap-icons/cloud-sun-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-sun-fill.js +0 -12
- package/bootstrap-icons/cloud-sun.d.ts +0 -5
- package/bootstrap-icons/cloud-sun.js +0 -12
- package/bootstrap-icons/cloud-upload-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-upload-fill.js +0 -12
- package/bootstrap-icons/cloud-upload.d.ts +0 -5
- package/bootstrap-icons/cloud-upload.js +0 -12
- package/bootstrap-icons/cloud.d.ts +0 -5
- package/bootstrap-icons/cloud.js +0 -12
- package/bootstrap-icons/clouds-fill.d.ts +0 -5
- package/bootstrap-icons/clouds-fill.js +0 -12
- package/bootstrap-icons/clouds.d.ts +0 -5
- package/bootstrap-icons/clouds.js +0 -12
- package/bootstrap-icons/cloudy-fill.d.ts +0 -5
- package/bootstrap-icons/cloudy-fill.js +0 -12
- package/bootstrap-icons/cloudy.d.ts +0 -5
- package/bootstrap-icons/cloudy.js +0 -12
- package/bootstrap-icons/code-slash.d.ts +0 -5
- package/bootstrap-icons/code-slash.js +0 -12
- package/bootstrap-icons/code-square.d.ts +0 -5
- package/bootstrap-icons/code-square.js +0 -12
- package/bootstrap-icons/code.d.ts +0 -5
- package/bootstrap-icons/code.js +0 -12
- package/bootstrap-icons/coin.d.ts +0 -5
- package/bootstrap-icons/coin.js +0 -12
- package/bootstrap-icons/collection-fill.d.ts +0 -5
- package/bootstrap-icons/collection-fill.js +0 -12
- package/bootstrap-icons/collection-play-fill.d.ts +0 -5
- package/bootstrap-icons/collection-play-fill.js +0 -12
- package/bootstrap-icons/collection-play.d.ts +0 -5
- package/bootstrap-icons/collection-play.js +0 -12
- package/bootstrap-icons/collection.d.ts +0 -5
- package/bootstrap-icons/collection.js +0 -12
- package/bootstrap-icons/columns-gap.d.ts +0 -5
- package/bootstrap-icons/columns-gap.js +0 -12
- package/bootstrap-icons/columns.d.ts +0 -5
- package/bootstrap-icons/columns.js +0 -12
- package/bootstrap-icons/command.d.ts +0 -5
- package/bootstrap-icons/command.js +0 -12
- package/bootstrap-icons/compass-fill.d.ts +0 -5
- package/bootstrap-icons/compass-fill.js +0 -12
- package/bootstrap-icons/compass.d.ts +0 -5
- package/bootstrap-icons/compass.js +0 -12
- package/bootstrap-icons/cone-striped.d.ts +0 -5
- package/bootstrap-icons/cone-striped.js +0 -12
- package/bootstrap-icons/cone.d.ts +0 -5
- package/bootstrap-icons/cone.js +0 -12
- package/bootstrap-icons/controller.d.ts +0 -5
- package/bootstrap-icons/controller.js +0 -12
- package/bootstrap-icons/cpu-fill.d.ts +0 -5
- package/bootstrap-icons/cpu-fill.js +0 -12
- package/bootstrap-icons/cpu.d.ts +0 -5
- package/bootstrap-icons/cpu.js +0 -12
- package/bootstrap-icons/credit-card-2-back-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-back-fill.js +0 -12
- package/bootstrap-icons/credit-card-2-back.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-back.js +0 -12
- package/bootstrap-icons/credit-card-2-front-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-front-fill.js +0 -12
- package/bootstrap-icons/credit-card-2-front.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-front.js +0 -12
- package/bootstrap-icons/credit-card-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-fill.js +0 -12
- package/bootstrap-icons/credit-card.d.ts +0 -5
- package/bootstrap-icons/credit-card.js +0 -12
- package/bootstrap-icons/crop.d.ts +0 -5
- package/bootstrap-icons/crop.js +0 -12
- package/bootstrap-icons/cup-fill.d.ts +0 -5
- package/bootstrap-icons/cup-fill.js +0 -12
- package/bootstrap-icons/cup-straw.d.ts +0 -5
- package/bootstrap-icons/cup-straw.js +0 -12
- package/bootstrap-icons/cup.d.ts +0 -5
- package/bootstrap-icons/cup.js +0 -12
- package/bootstrap-icons/currency-bitcoin.d.ts +0 -5
- package/bootstrap-icons/currency-bitcoin.js +0 -12
- package/bootstrap-icons/currency-dollar.d.ts +0 -5
- package/bootstrap-icons/currency-dollar.js +0 -12
- package/bootstrap-icons/currency-euro.d.ts +0 -5
- package/bootstrap-icons/currency-euro.js +0 -12
- package/bootstrap-icons/currency-exchange.d.ts +0 -5
- package/bootstrap-icons/currency-exchange.js +0 -12
- package/bootstrap-icons/currency-pound.d.ts +0 -5
- package/bootstrap-icons/currency-pound.js +0 -12
- package/bootstrap-icons/currency-yen.d.ts +0 -5
- package/bootstrap-icons/currency-yen.js +0 -12
- package/bootstrap-icons/cursor-fill.d.ts +0 -5
- package/bootstrap-icons/cursor-fill.js +0 -12
- package/bootstrap-icons/cursor-text.d.ts +0 -5
- package/bootstrap-icons/cursor-text.js +0 -12
- package/bootstrap-icons/cursor.d.ts +0 -5
- package/bootstrap-icons/cursor.js +0 -12
- package/bootstrap-icons/dash-circle-dotted.d.ts +0 -5
- package/bootstrap-icons/dash-circle-dotted.js +0 -12
- package/bootstrap-icons/dash-circle-fill.d.ts +0 -5
- package/bootstrap-icons/dash-circle-fill.js +0 -12
- package/bootstrap-icons/dash-circle.d.ts +0 -5
- package/bootstrap-icons/dash-circle.js +0 -12
- package/bootstrap-icons/dash-lg.d.ts +0 -5
- package/bootstrap-icons/dash-lg.js +0 -12
- package/bootstrap-icons/dash-square-dotted.d.ts +0 -5
- package/bootstrap-icons/dash-square-dotted.js +0 -12
- package/bootstrap-icons/dash-square-fill.d.ts +0 -5
- package/bootstrap-icons/dash-square-fill.js +0 -12
- package/bootstrap-icons/dash-square.d.ts +0 -5
- package/bootstrap-icons/dash-square.js +0 -12
- package/bootstrap-icons/dash.d.ts +0 -5
- package/bootstrap-icons/dash.js +0 -12
- package/bootstrap-icons/device-hdd-fill.d.ts +0 -5
- package/bootstrap-icons/device-hdd-fill.js +0 -12
- package/bootstrap-icons/device-hdd.d.ts +0 -5
- package/bootstrap-icons/device-hdd.js +0 -12
- package/bootstrap-icons/device-ssd-fill.d.ts +0 -5
- package/bootstrap-icons/device-ssd-fill.js +0 -12
- package/bootstrap-icons/device-ssd.d.ts +0 -5
- package/bootstrap-icons/device-ssd.js +0 -12
- package/bootstrap-icons/diagram-2-fill.d.ts +0 -5
- package/bootstrap-icons/diagram-2-fill.js +0 -12
- package/bootstrap-icons/diagram-2.d.ts +0 -5
- package/bootstrap-icons/diagram-2.js +0 -12
- package/bootstrap-icons/diagram-3-fill.d.ts +0 -5
- package/bootstrap-icons/diagram-3-fill.js +0 -12
- package/bootstrap-icons/diagram-3.d.ts +0 -5
- package/bootstrap-icons/diagram-3.js +0 -12
- package/bootstrap-icons/diamond-fill.d.ts +0 -5
- package/bootstrap-icons/diamond-fill.js +0 -12
- package/bootstrap-icons/diamond-half.d.ts +0 -5
- package/bootstrap-icons/diamond-half.js +0 -12
- package/bootstrap-icons/diamond.d.ts +0 -5
- package/bootstrap-icons/diamond.js +0 -12
- package/bootstrap-icons/dice-1-fill.d.ts +0 -5
- package/bootstrap-icons/dice-1-fill.js +0 -12
- package/bootstrap-icons/dice-1.d.ts +0 -5
- package/bootstrap-icons/dice-1.js +0 -12
- package/bootstrap-icons/dice-2-fill.d.ts +0 -5
- package/bootstrap-icons/dice-2-fill.js +0 -12
- package/bootstrap-icons/dice-2.d.ts +0 -5
- package/bootstrap-icons/dice-2.js +0 -12
- package/bootstrap-icons/dice-3-fill.d.ts +0 -5
- package/bootstrap-icons/dice-3-fill.js +0 -12
- package/bootstrap-icons/dice-3.d.ts +0 -5
- package/bootstrap-icons/dice-3.js +0 -12
- package/bootstrap-icons/dice-4-fill.d.ts +0 -5
- package/bootstrap-icons/dice-4-fill.js +0 -12
- package/bootstrap-icons/dice-4.d.ts +0 -5
- package/bootstrap-icons/dice-4.js +0 -12
- package/bootstrap-icons/dice-5-fill.d.ts +0 -5
- package/bootstrap-icons/dice-5-fill.js +0 -12
- package/bootstrap-icons/dice-5.d.ts +0 -5
- package/bootstrap-icons/dice-5.js +0 -12
- package/bootstrap-icons/dice-6-fill.d.ts +0 -5
- package/bootstrap-icons/dice-6-fill.js +0 -12
- package/bootstrap-icons/dice-6.d.ts +0 -5
- package/bootstrap-icons/dice-6.js +0 -12
- package/bootstrap-icons/disc-fill.d.ts +0 -5
- package/bootstrap-icons/disc-fill.js +0 -12
- package/bootstrap-icons/disc.d.ts +0 -5
- package/bootstrap-icons/disc.js +0 -12
- package/bootstrap-icons/discord.d.ts +0 -5
- package/bootstrap-icons/discord.js +0 -12
- package/bootstrap-icons/display-fill.d.ts +0 -5
- package/bootstrap-icons/display-fill.js +0 -12
- package/bootstrap-icons/display.d.ts +0 -5
- package/bootstrap-icons/display.js +0 -12
- package/bootstrap-icons/displayport-fill.d.ts +0 -5
- package/bootstrap-icons/displayport-fill.js +0 -12
- package/bootstrap-icons/displayport.d.ts +0 -5
- package/bootstrap-icons/displayport.js +0 -12
- package/bootstrap-icons/distribute-horizontal.d.ts +0 -5
- package/bootstrap-icons/distribute-horizontal.js +0 -12
- package/bootstrap-icons/distribute-vertical.d.ts +0 -5
- package/bootstrap-icons/distribute-vertical.js +0 -12
- package/bootstrap-icons/door-closed-fill.d.ts +0 -5
- package/bootstrap-icons/door-closed-fill.js +0 -12
- package/bootstrap-icons/door-closed.d.ts +0 -5
- package/bootstrap-icons/door-closed.js +0 -12
- package/bootstrap-icons/door-open-fill.d.ts +0 -5
- package/bootstrap-icons/door-open-fill.js +0 -12
- package/bootstrap-icons/door-open.d.ts +0 -5
- package/bootstrap-icons/door-open.js +0 -12
- package/bootstrap-icons/dot.d.ts +0 -5
- package/bootstrap-icons/dot.js +0 -12
- package/bootstrap-icons/download.d.ts +0 -5
- package/bootstrap-icons/download.js +0 -12
- package/bootstrap-icons/dpad-fill.d.ts +0 -5
- package/bootstrap-icons/dpad-fill.js +0 -12
- package/bootstrap-icons/dpad.d.ts +0 -5
- package/bootstrap-icons/dpad.js +0 -12
- package/bootstrap-icons/dribbble.d.ts +0 -5
- package/bootstrap-icons/dribbble.js +0 -12
- package/bootstrap-icons/droplet-fill.d.ts +0 -5
- package/bootstrap-icons/droplet-fill.js +0 -12
- package/bootstrap-icons/droplet-half.d.ts +0 -5
- package/bootstrap-icons/droplet-half.js +0 -12
- package/bootstrap-icons/droplet.d.ts +0 -5
- package/bootstrap-icons/droplet.js +0 -12
- package/bootstrap-icons/ear-fill.d.ts +0 -5
- package/bootstrap-icons/ear-fill.js +0 -12
- package/bootstrap-icons/ear.d.ts +0 -5
- package/bootstrap-icons/ear.js +0 -12
- package/bootstrap-icons/earbuds.d.ts +0 -5
- package/bootstrap-icons/earbuds.js +0 -12
- package/bootstrap-icons/easel-fill.d.ts +0 -5
- package/bootstrap-icons/easel-fill.js +0 -12
- package/bootstrap-icons/easel.d.ts +0 -5
- package/bootstrap-icons/easel.js +0 -12
- package/bootstrap-icons/easel2-fill.d.ts +0 -5
- package/bootstrap-icons/easel2-fill.js +0 -12
- package/bootstrap-icons/easel2.d.ts +0 -5
- package/bootstrap-icons/easel2.js +0 -12
- package/bootstrap-icons/easel3-fill.d.ts +0 -5
- package/bootstrap-icons/easel3-fill.js +0 -12
- package/bootstrap-icons/easel3.d.ts +0 -5
- package/bootstrap-icons/easel3.js +0 -12
- package/bootstrap-icons/egg-fill.d.ts +0 -5
- package/bootstrap-icons/egg-fill.js +0 -12
- package/bootstrap-icons/egg-fried.d.ts +0 -5
- package/bootstrap-icons/egg-fried.js +0 -12
- package/bootstrap-icons/egg.d.ts +0 -5
- package/bootstrap-icons/egg.js +0 -12
- package/bootstrap-icons/eject-fill.d.ts +0 -5
- package/bootstrap-icons/eject-fill.js +0 -12
- package/bootstrap-icons/eject.d.ts +0 -5
- package/bootstrap-icons/eject.js +0 -12
- package/bootstrap-icons/emoji-angry-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-angry-fill.js +0 -12
- package/bootstrap-icons/emoji-angry.d.ts +0 -5
- package/bootstrap-icons/emoji-angry.js +0 -12
- package/bootstrap-icons/emoji-dizzy-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-dizzy-fill.js +0 -12
- package/bootstrap-icons/emoji-dizzy.d.ts +0 -5
- package/bootstrap-icons/emoji-dizzy.js +0 -12
- package/bootstrap-icons/emoji-expressionless-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-expressionless-fill.js +0 -12
- package/bootstrap-icons/emoji-expressionless.d.ts +0 -5
- package/bootstrap-icons/emoji-expressionless.js +0 -12
- package/bootstrap-icons/emoji-frown-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-frown-fill.js +0 -12
- package/bootstrap-icons/emoji-frown.d.ts +0 -5
- package/bootstrap-icons/emoji-frown.js +0 -12
- package/bootstrap-icons/emoji-heart-eyes-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-heart-eyes-fill.js +0 -12
- package/bootstrap-icons/emoji-heart-eyes.d.ts +0 -5
- package/bootstrap-icons/emoji-heart-eyes.js +0 -12
- package/bootstrap-icons/emoji-kiss-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-kiss-fill.js +0 -12
- package/bootstrap-icons/emoji-kiss.d.ts +0 -5
- package/bootstrap-icons/emoji-kiss.js +0 -12
- package/bootstrap-icons/emoji-laughing-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-laughing-fill.js +0 -12
- package/bootstrap-icons/emoji-laughing.d.ts +0 -5
- package/bootstrap-icons/emoji-laughing.js +0 -12
- package/bootstrap-icons/emoji-neutral-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-neutral-fill.js +0 -12
- package/bootstrap-icons/emoji-neutral.d.ts +0 -5
- package/bootstrap-icons/emoji-neutral.js +0 -12
- package/bootstrap-icons/emoji-smile-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-fill.js +0 -12
- package/bootstrap-icons/emoji-smile-upside-down-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-upside-down-fill.js +0 -12
- package/bootstrap-icons/emoji-smile-upside-down.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-upside-down.js +0 -12
- package/bootstrap-icons/emoji-smile.d.ts +0 -5
- package/bootstrap-icons/emoji-smile.js +0 -12
- package/bootstrap-icons/emoji-sunglasses-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-sunglasses-fill.js +0 -12
- package/bootstrap-icons/emoji-sunglasses.d.ts +0 -5
- package/bootstrap-icons/emoji-sunglasses.js +0 -12
- package/bootstrap-icons/emoji-wink-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-wink-fill.js +0 -12
- package/bootstrap-icons/emoji-wink.d.ts +0 -5
- package/bootstrap-icons/emoji-wink.js +0 -12
- package/bootstrap-icons/envelope-check-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-check-fill.js +0 -12
- package/bootstrap-icons/envelope-check.d.ts +0 -5
- package/bootstrap-icons/envelope-check.js +0 -12
- package/bootstrap-icons/envelope-dash-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-dash-fill.js +0 -12
- package/bootstrap-icons/envelope-dash.d.ts +0 -5
- package/bootstrap-icons/envelope-dash.js +0 -12
- package/bootstrap-icons/envelope-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-exclamation-fill.js +0 -12
- package/bootstrap-icons/envelope-exclamation.d.ts +0 -5
- package/bootstrap-icons/envelope-exclamation.js +0 -12
- package/bootstrap-icons/envelope-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-fill.js +0 -12
- package/bootstrap-icons/envelope-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-heart.js +0 -12
- package/bootstrap-icons/envelope-open-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-open-fill.js +0 -12
- package/bootstrap-icons/envelope-open-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-open-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-open-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-open-heart.js +0 -12
- package/bootstrap-icons/envelope-open.d.ts +0 -5
- package/bootstrap-icons/envelope-open.js +0 -12
- package/bootstrap-icons/envelope-paper-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-fill.js +0 -12
- package/bootstrap-icons/envelope-paper-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-paper-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-heart.js +0 -12
- package/bootstrap-icons/envelope-paper.d.ts +0 -5
- package/bootstrap-icons/envelope-paper.js +0 -12
- package/bootstrap-icons/envelope-plus-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-plus-fill.js +0 -12
- package/bootstrap-icons/envelope-plus.d.ts +0 -5
- package/bootstrap-icons/envelope-plus.js +0 -12
- package/bootstrap-icons/envelope-slash-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-slash-fill.js +0 -12
- package/bootstrap-icons/envelope-slash.d.ts +0 -5
- package/bootstrap-icons/envelope-slash.js +0 -12
- package/bootstrap-icons/envelope-x-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-x-fill.js +0 -12
- package/bootstrap-icons/envelope-x.d.ts +0 -5
- package/bootstrap-icons/envelope-x.js +0 -12
- package/bootstrap-icons/envelope.d.ts +0 -5
- package/bootstrap-icons/envelope.js +0 -12
- package/bootstrap-icons/eraser-fill.d.ts +0 -5
- package/bootstrap-icons/eraser-fill.js +0 -12
- package/bootstrap-icons/eraser.d.ts +0 -5
- package/bootstrap-icons/eraser.js +0 -12
- package/bootstrap-icons/ethernet.d.ts +0 -5
- package/bootstrap-icons/ethernet.js +0 -12
- package/bootstrap-icons/exclamation-circle-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-circle-fill.js +0 -12
- package/bootstrap-icons/exclamation-circle.d.ts +0 -5
- package/bootstrap-icons/exclamation-circle.js +0 -12
- package/bootstrap-icons/exclamation-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-diamond-fill.js +0 -12
- package/bootstrap-icons/exclamation-diamond.d.ts +0 -5
- package/bootstrap-icons/exclamation-diamond.js +0 -12
- package/bootstrap-icons/exclamation-lg.d.ts +0 -5
- package/bootstrap-icons/exclamation-lg.js +0 -12
- package/bootstrap-icons/exclamation-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-octagon-fill.js +0 -12
- package/bootstrap-icons/exclamation-octagon.d.ts +0 -5
- package/bootstrap-icons/exclamation-octagon.js +0 -12
- package/bootstrap-icons/exclamation-square-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-square-fill.js +0 -12
- package/bootstrap-icons/exclamation-square.d.ts +0 -5
- package/bootstrap-icons/exclamation-square.js +0 -12
- package/bootstrap-icons/exclamation-triangle-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-triangle-fill.js +0 -12
- package/bootstrap-icons/exclamation-triangle.d.ts +0 -5
- package/bootstrap-icons/exclamation-triangle.js +0 -12
- package/bootstrap-icons/exclamation.d.ts +0 -5
- package/bootstrap-icons/exclamation.js +0 -12
- package/bootstrap-icons/exclude.d.ts +0 -5
- package/bootstrap-icons/exclude.js +0 -12
- package/bootstrap-icons/explicit-fill.d.ts +0 -5
- package/bootstrap-icons/explicit-fill.js +0 -12
- package/bootstrap-icons/explicit.d.ts +0 -5
- package/bootstrap-icons/explicit.js +0 -12
- package/bootstrap-icons/eye-fill.d.ts +0 -5
- package/bootstrap-icons/eye-fill.js +0 -12
- package/bootstrap-icons/eye-slash-fill.d.ts +0 -5
- package/bootstrap-icons/eye-slash-fill.js +0 -12
- package/bootstrap-icons/eye-slash.d.ts +0 -5
- package/bootstrap-icons/eye-slash.js +0 -12
- package/bootstrap-icons/eye.d.ts +0 -5
- package/bootstrap-icons/eye.js +0 -12
- package/bootstrap-icons/eyedropper.d.ts +0 -5
- package/bootstrap-icons/eyedropper.js +0 -12
- package/bootstrap-icons/eyeglasses.d.ts +0 -5
- package/bootstrap-icons/eyeglasses.js +0 -12
- package/bootstrap-icons/facebook.d.ts +0 -5
- package/bootstrap-icons/facebook.js +0 -12
- package/bootstrap-icons/fan.d.ts +0 -5
- package/bootstrap-icons/fan.js +0 -12
- package/bootstrap-icons/file-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/file-arrow-down-fill.js +0 -12
- package/bootstrap-icons/file-arrow-down.d.ts +0 -5
- package/bootstrap-icons/file-arrow-down.js +0 -12
- package/bootstrap-icons/file-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/file-arrow-up-fill.js +0 -12
- package/bootstrap-icons/file-arrow-up.d.ts +0 -5
- package/bootstrap-icons/file-arrow-up.js +0 -12
- package/bootstrap-icons/file-bar-graph-fill.d.ts +0 -5
- package/bootstrap-icons/file-bar-graph-fill.js +0 -12
- package/bootstrap-icons/file-bar-graph.d.ts +0 -5
- package/bootstrap-icons/file-bar-graph.js +0 -12
- package/bootstrap-icons/file-binary-fill.d.ts +0 -5
- package/bootstrap-icons/file-binary-fill.js +0 -12
- package/bootstrap-icons/file-binary.d.ts +0 -5
- package/bootstrap-icons/file-binary.js +0 -12
- package/bootstrap-icons/file-break-fill.d.ts +0 -5
- package/bootstrap-icons/file-break-fill.js +0 -12
- package/bootstrap-icons/file-break.d.ts +0 -5
- package/bootstrap-icons/file-break.js +0 -12
- package/bootstrap-icons/file-check-fill.d.ts +0 -5
- package/bootstrap-icons/file-check-fill.js +0 -12
- package/bootstrap-icons/file-check.d.ts +0 -5
- package/bootstrap-icons/file-check.js +0 -12
- package/bootstrap-icons/file-code-fill.d.ts +0 -5
- package/bootstrap-icons/file-code-fill.js +0 -12
- package/bootstrap-icons/file-code.d.ts +0 -5
- package/bootstrap-icons/file-code.js +0 -12
- package/bootstrap-icons/file-diff-fill.d.ts +0 -5
- package/bootstrap-icons/file-diff-fill.js +0 -12
- package/bootstrap-icons/file-diff.d.ts +0 -5
- package/bootstrap-icons/file-diff.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-down-fill.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-down.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-down.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-up-fill.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-up.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-up.js +0 -12
- package/bootstrap-icons/file-earmark-bar-graph-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-bar-graph-fill.js +0 -12
- package/bootstrap-icons/file-earmark-bar-graph.d.ts +0 -5
- package/bootstrap-icons/file-earmark-bar-graph.js +0 -12
- package/bootstrap-icons/file-earmark-binary-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-binary-fill.js +0 -12
- package/bootstrap-icons/file-earmark-binary.d.ts +0 -5
- package/bootstrap-icons/file-earmark-binary.js +0 -12
- package/bootstrap-icons/file-earmark-break-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-break-fill.js +0 -12
- package/bootstrap-icons/file-earmark-break.d.ts +0 -5
- package/bootstrap-icons/file-earmark-break.js +0 -12
- package/bootstrap-icons/file-earmark-check-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-check-fill.js +0 -12
- package/bootstrap-icons/file-earmark-check.d.ts +0 -5
- package/bootstrap-icons/file-earmark-check.js +0 -12
- package/bootstrap-icons/file-earmark-code-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-code-fill.js +0 -12
- package/bootstrap-icons/file-earmark-code.d.ts +0 -5
- package/bootstrap-icons/file-earmark-code.js +0 -12
- package/bootstrap-icons/file-earmark-diff-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-diff-fill.js +0 -12
- package/bootstrap-icons/file-earmark-diff.d.ts +0 -5
- package/bootstrap-icons/file-earmark-diff.js +0 -12
- package/bootstrap-icons/file-earmark-easel-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-easel-fill.js +0 -12
- package/bootstrap-icons/file-earmark-easel.d.ts +0 -5
- package/bootstrap-icons/file-earmark-easel.js +0 -12
- package/bootstrap-icons/file-earmark-excel-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-excel-fill.js +0 -12
- package/bootstrap-icons/file-earmark-excel.d.ts +0 -5
- package/bootstrap-icons/file-earmark-excel.js +0 -12
- package/bootstrap-icons/file-earmark-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-fill.js +0 -12
- package/bootstrap-icons/file-earmark-font-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-font-fill.js +0 -12
- package/bootstrap-icons/file-earmark-font.d.ts +0 -5
- package/bootstrap-icons/file-earmark-font.js +0 -12
- package/bootstrap-icons/file-earmark-image-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-image-fill.js +0 -12
- package/bootstrap-icons/file-earmark-image.d.ts +0 -5
- package/bootstrap-icons/file-earmark-image.js +0 -12
- package/bootstrap-icons/file-earmark-lock-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock-fill.js +0 -12
- package/bootstrap-icons/file-earmark-lock.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock.js +0 -12
- package/bootstrap-icons/file-earmark-lock2-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock2-fill.js +0 -12
- package/bootstrap-icons/file-earmark-lock2.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock2.js +0 -12
- package/bootstrap-icons/file-earmark-medical-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-medical-fill.js +0 -12
- package/bootstrap-icons/file-earmark-medical.d.ts +0 -5
- package/bootstrap-icons/file-earmark-medical.js +0 -12
- package/bootstrap-icons/file-earmark-minus-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-minus-fill.js +0 -12
- package/bootstrap-icons/file-earmark-minus.d.ts +0 -5
- package/bootstrap-icons/file-earmark-minus.js +0 -12
- package/bootstrap-icons/file-earmark-music-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-music-fill.js +0 -12
- package/bootstrap-icons/file-earmark-music.d.ts +0 -5
- package/bootstrap-icons/file-earmark-music.js +0 -12
- package/bootstrap-icons/file-earmark-pdf-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-pdf-fill.js +0 -12
- package/bootstrap-icons/file-earmark-pdf.d.ts +0 -5
- package/bootstrap-icons/file-earmark-pdf.js +0 -12
- package/bootstrap-icons/file-earmark-person-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-person-fill.js +0 -12
- package/bootstrap-icons/file-earmark-person.d.ts +0 -5
- package/bootstrap-icons/file-earmark-person.js +0 -12
- package/bootstrap-icons/file-earmark-play-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-play-fill.js +0 -12
- package/bootstrap-icons/file-earmark-play.d.ts +0 -5
- package/bootstrap-icons/file-earmark-play.js +0 -12
- package/bootstrap-icons/file-earmark-plus-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-plus-fill.js +0 -12
- package/bootstrap-icons/file-earmark-plus.d.ts +0 -5
- package/bootstrap-icons/file-earmark-plus.js +0 -12
- package/bootstrap-icons/file-earmark-post-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-post-fill.js +0 -12
- package/bootstrap-icons/file-earmark-post.d.ts +0 -5
- package/bootstrap-icons/file-earmark-post.js +0 -12
- package/bootstrap-icons/file-earmark-ppt-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ppt-fill.js +0 -12
- package/bootstrap-icons/file-earmark-ppt.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ppt.js +0 -12
- package/bootstrap-icons/file-earmark-richtext-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-richtext-fill.js +0 -12
- package/bootstrap-icons/file-earmark-richtext.d.ts +0 -5
- package/bootstrap-icons/file-earmark-richtext.js +0 -12
- package/bootstrap-icons/file-earmark-ruled-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ruled-fill.js +0 -12
- package/bootstrap-icons/file-earmark-ruled.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ruled.js +0 -12
- package/bootstrap-icons/file-earmark-slides-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-slides-fill.js +0 -12
- package/bootstrap-icons/file-earmark-slides.d.ts +0 -5
- package/bootstrap-icons/file-earmark-slides.js +0 -12
- package/bootstrap-icons/file-earmark-spreadsheet-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-spreadsheet-fill.js +0 -12
- package/bootstrap-icons/file-earmark-spreadsheet.d.ts +0 -5
- package/bootstrap-icons/file-earmark-spreadsheet.js +0 -12
- package/bootstrap-icons/file-earmark-text-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-text-fill.js +0 -12
- package/bootstrap-icons/file-earmark-text.d.ts +0 -5
- package/bootstrap-icons/file-earmark-text.js +0 -12
- package/bootstrap-icons/file-earmark-word-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-word-fill.js +0 -12
- package/bootstrap-icons/file-earmark-word.d.ts +0 -5
- package/bootstrap-icons/file-earmark-word.js +0 -12
- package/bootstrap-icons/file-earmark-x-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-x-fill.js +0 -12
- package/bootstrap-icons/file-earmark-x.d.ts +0 -5
- package/bootstrap-icons/file-earmark-x.js +0 -12
- package/bootstrap-icons/file-earmark-zip-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-zip-fill.js +0 -12
- package/bootstrap-icons/file-earmark-zip.d.ts +0 -5
- package/bootstrap-icons/file-earmark-zip.js +0 -12
- package/bootstrap-icons/file-earmark.d.ts +0 -5
- package/bootstrap-icons/file-earmark.js +0 -12
- package/bootstrap-icons/file-easel-fill.d.ts +0 -5
- package/bootstrap-icons/file-easel-fill.js +0 -12
- package/bootstrap-icons/file-easel.d.ts +0 -5
- package/bootstrap-icons/file-easel.js +0 -12
- package/bootstrap-icons/file-excel-fill.d.ts +0 -5
- package/bootstrap-icons/file-excel-fill.js +0 -12
- package/bootstrap-icons/file-excel.d.ts +0 -5
- package/bootstrap-icons/file-excel.js +0 -12
- package/bootstrap-icons/file-fill.d.ts +0 -5
- package/bootstrap-icons/file-fill.js +0 -12
- package/bootstrap-icons/file-font-fill.d.ts +0 -5
- package/bootstrap-icons/file-font-fill.js +0 -12
- package/bootstrap-icons/file-font.d.ts +0 -5
- package/bootstrap-icons/file-font.js +0 -12
- package/bootstrap-icons/file-image-fill.d.ts +0 -5
- package/bootstrap-icons/file-image-fill.js +0 -12
- package/bootstrap-icons/file-image.d.ts +0 -5
- package/bootstrap-icons/file-image.js +0 -12
- package/bootstrap-icons/file-lock-fill.d.ts +0 -5
- package/bootstrap-icons/file-lock-fill.js +0 -12
- package/bootstrap-icons/file-lock.d.ts +0 -5
- package/bootstrap-icons/file-lock.js +0 -12
- package/bootstrap-icons/file-lock2-fill.d.ts +0 -5
- package/bootstrap-icons/file-lock2-fill.js +0 -12
- package/bootstrap-icons/file-lock2.d.ts +0 -5
- package/bootstrap-icons/file-lock2.js +0 -12
- package/bootstrap-icons/file-medical-fill.d.ts +0 -5
- package/bootstrap-icons/file-medical-fill.js +0 -12
- package/bootstrap-icons/file-medical.d.ts +0 -5
- package/bootstrap-icons/file-medical.js +0 -12
- package/bootstrap-icons/file-minus-fill.d.ts +0 -5
- package/bootstrap-icons/file-minus-fill.js +0 -12
- package/bootstrap-icons/file-minus.d.ts +0 -5
- package/bootstrap-icons/file-minus.js +0 -12
- package/bootstrap-icons/file-music-fill.d.ts +0 -5
- package/bootstrap-icons/file-music-fill.js +0 -12
- package/bootstrap-icons/file-music.d.ts +0 -5
- package/bootstrap-icons/file-music.js +0 -12
- package/bootstrap-icons/file-pdf-fill.d.ts +0 -5
- package/bootstrap-icons/file-pdf-fill.js +0 -12
- package/bootstrap-icons/file-pdf.d.ts +0 -5
- package/bootstrap-icons/file-pdf.js +0 -12
- package/bootstrap-icons/file-person-fill.d.ts +0 -5
- package/bootstrap-icons/file-person-fill.js +0 -12
- package/bootstrap-icons/file-person.d.ts +0 -5
- package/bootstrap-icons/file-person.js +0 -12
- package/bootstrap-icons/file-play-fill.d.ts +0 -5
- package/bootstrap-icons/file-play-fill.js +0 -12
- package/bootstrap-icons/file-play.d.ts +0 -5
- package/bootstrap-icons/file-play.js +0 -12
- package/bootstrap-icons/file-plus-fill.d.ts +0 -5
- package/bootstrap-icons/file-plus-fill.js +0 -12
- package/bootstrap-icons/file-plus.d.ts +0 -5
- package/bootstrap-icons/file-plus.js +0 -12
- package/bootstrap-icons/file-post-fill.d.ts +0 -5
- package/bootstrap-icons/file-post-fill.js +0 -12
- package/bootstrap-icons/file-post.d.ts +0 -5
- package/bootstrap-icons/file-post.js +0 -12
- package/bootstrap-icons/file-ppt-fill.d.ts +0 -5
- package/bootstrap-icons/file-ppt-fill.js +0 -12
- package/bootstrap-icons/file-ppt.d.ts +0 -5
- package/bootstrap-icons/file-ppt.js +0 -12
- package/bootstrap-icons/file-richtext-fill.d.ts +0 -5
- package/bootstrap-icons/file-richtext-fill.js +0 -12
- package/bootstrap-icons/file-richtext.d.ts +0 -5
- package/bootstrap-icons/file-richtext.js +0 -12
- package/bootstrap-icons/file-ruled-fill.d.ts +0 -5
- package/bootstrap-icons/file-ruled-fill.js +0 -12
- package/bootstrap-icons/file-ruled.d.ts +0 -5
- package/bootstrap-icons/file-ruled.js +0 -12
- package/bootstrap-icons/file-slides-fill.d.ts +0 -5
- package/bootstrap-icons/file-slides-fill.js +0 -12
- package/bootstrap-icons/file-slides.d.ts +0 -5
- package/bootstrap-icons/file-slides.js +0 -12
- package/bootstrap-icons/file-spreadsheet-fill.d.ts +0 -5
- package/bootstrap-icons/file-spreadsheet-fill.js +0 -12
- package/bootstrap-icons/file-spreadsheet.d.ts +0 -5
- package/bootstrap-icons/file-spreadsheet.js +0 -12
- package/bootstrap-icons/file-text-fill.d.ts +0 -5
- package/bootstrap-icons/file-text-fill.js +0 -12
- package/bootstrap-icons/file-text.d.ts +0 -5
- package/bootstrap-icons/file-text.js +0 -12
- package/bootstrap-icons/file-word-fill.d.ts +0 -5
- package/bootstrap-icons/file-word-fill.js +0 -12
- package/bootstrap-icons/file-word.d.ts +0 -5
- package/bootstrap-icons/file-word.js +0 -12
- package/bootstrap-icons/file-x-fill.d.ts +0 -5
- package/bootstrap-icons/file-x-fill.js +0 -12
- package/bootstrap-icons/file-x.d.ts +0 -5
- package/bootstrap-icons/file-x.js +0 -12
- package/bootstrap-icons/file-zip-fill.d.ts +0 -5
- package/bootstrap-icons/file-zip-fill.js +0 -12
- package/bootstrap-icons/file-zip.d.ts +0 -5
- package/bootstrap-icons/file-zip.js +0 -12
- package/bootstrap-icons/file.d.ts +0 -5
- package/bootstrap-icons/file.js +0 -12
- package/bootstrap-icons/files-alt.d.ts +0 -5
- package/bootstrap-icons/files-alt.js +0 -12
- package/bootstrap-icons/files.d.ts +0 -5
- package/bootstrap-icons/files.js +0 -12
- package/bootstrap-icons/filetype-aac.d.ts +0 -5
- package/bootstrap-icons/filetype-aac.js +0 -12
- package/bootstrap-icons/filetype-ai.d.ts +0 -5
- package/bootstrap-icons/filetype-ai.js +0 -12
- package/bootstrap-icons/filetype-bmp.d.ts +0 -5
- package/bootstrap-icons/filetype-bmp.js +0 -12
- package/bootstrap-icons/filetype-cs.d.ts +0 -5
- package/bootstrap-icons/filetype-cs.js +0 -12
- package/bootstrap-icons/filetype-css.d.ts +0 -5
- package/bootstrap-icons/filetype-css.js +0 -12
- package/bootstrap-icons/filetype-csv.d.ts +0 -5
- package/bootstrap-icons/filetype-csv.js +0 -12
- package/bootstrap-icons/filetype-doc.d.ts +0 -5
- package/bootstrap-icons/filetype-doc.js +0 -12
- package/bootstrap-icons/filetype-docx.d.ts +0 -5
- package/bootstrap-icons/filetype-docx.js +0 -12
- package/bootstrap-icons/filetype-exe.d.ts +0 -5
- package/bootstrap-icons/filetype-exe.js +0 -12
- package/bootstrap-icons/filetype-gif.d.ts +0 -5
- package/bootstrap-icons/filetype-gif.js +0 -12
- package/bootstrap-icons/filetype-heic.d.ts +0 -5
- package/bootstrap-icons/filetype-heic.js +0 -12
- package/bootstrap-icons/filetype-html.d.ts +0 -5
- package/bootstrap-icons/filetype-html.js +0 -12
- package/bootstrap-icons/filetype-java.d.ts +0 -5
- package/bootstrap-icons/filetype-java.js +0 -12
- package/bootstrap-icons/filetype-jpg.d.ts +0 -5
- package/bootstrap-icons/filetype-jpg.js +0 -12
- package/bootstrap-icons/filetype-js.d.ts +0 -5
- package/bootstrap-icons/filetype-js.js +0 -12
- package/bootstrap-icons/filetype-json.d.ts +0 -5
- package/bootstrap-icons/filetype-json.js +0 -12
- package/bootstrap-icons/filetype-jsx.d.ts +0 -5
- package/bootstrap-icons/filetype-jsx.js +0 -12
- package/bootstrap-icons/filetype-key.d.ts +0 -5
- package/bootstrap-icons/filetype-key.js +0 -12
- package/bootstrap-icons/filetype-m4p.d.ts +0 -5
- package/bootstrap-icons/filetype-m4p.js +0 -12
- package/bootstrap-icons/filetype-md.d.ts +0 -5
- package/bootstrap-icons/filetype-md.js +0 -12
- package/bootstrap-icons/filetype-mdx.d.ts +0 -5
- package/bootstrap-icons/filetype-mdx.js +0 -12
- package/bootstrap-icons/filetype-mov.d.ts +0 -5
- package/bootstrap-icons/filetype-mov.js +0 -12
- package/bootstrap-icons/filetype-mp3.d.ts +0 -5
- package/bootstrap-icons/filetype-mp3.js +0 -12
- package/bootstrap-icons/filetype-mp4.d.ts +0 -5
- package/bootstrap-icons/filetype-mp4.js +0 -12
- package/bootstrap-icons/filetype-otf.d.ts +0 -5
- package/bootstrap-icons/filetype-otf.js +0 -12
- package/bootstrap-icons/filetype-pdf.d.ts +0 -5
- package/bootstrap-icons/filetype-pdf.js +0 -12
- package/bootstrap-icons/filetype-php.d.ts +0 -5
- package/bootstrap-icons/filetype-php.js +0 -12
- package/bootstrap-icons/filetype-png.d.ts +0 -5
- package/bootstrap-icons/filetype-png.js +0 -12
- package/bootstrap-icons/filetype-ppt.d.ts +0 -5
- package/bootstrap-icons/filetype-ppt.js +0 -12
- package/bootstrap-icons/filetype-pptx.d.ts +0 -5
- package/bootstrap-icons/filetype-pptx.js +0 -12
- package/bootstrap-icons/filetype-psd.d.ts +0 -5
- package/bootstrap-icons/filetype-psd.js +0 -12
- package/bootstrap-icons/filetype-py.d.ts +0 -5
- package/bootstrap-icons/filetype-py.js +0 -12
- package/bootstrap-icons/filetype-raw.d.ts +0 -5
- package/bootstrap-icons/filetype-raw.js +0 -12
- package/bootstrap-icons/filetype-rb.d.ts +0 -5
- package/bootstrap-icons/filetype-rb.js +0 -12
- package/bootstrap-icons/filetype-sass.d.ts +0 -5
- package/bootstrap-icons/filetype-sass.js +0 -12
- package/bootstrap-icons/filetype-scss.d.ts +0 -5
- package/bootstrap-icons/filetype-scss.js +0 -12
- package/bootstrap-icons/filetype-sh.d.ts +0 -5
- package/bootstrap-icons/filetype-sh.js +0 -12
- package/bootstrap-icons/filetype-svg.d.ts +0 -5
- package/bootstrap-icons/filetype-svg.js +0 -12
- package/bootstrap-icons/filetype-tiff.d.ts +0 -5
- package/bootstrap-icons/filetype-tiff.js +0 -12
- package/bootstrap-icons/filetype-tsx.d.ts +0 -5
- package/bootstrap-icons/filetype-tsx.js +0 -12
- package/bootstrap-icons/filetype-ttf.d.ts +0 -5
- package/bootstrap-icons/filetype-ttf.js +0 -12
- package/bootstrap-icons/filetype-txt.d.ts +0 -5
- package/bootstrap-icons/filetype-txt.js +0 -12
- package/bootstrap-icons/filetype-wav.d.ts +0 -5
- package/bootstrap-icons/filetype-wav.js +0 -12
- package/bootstrap-icons/filetype-woff.d.ts +0 -5
- package/bootstrap-icons/filetype-woff.js +0 -12
- package/bootstrap-icons/filetype-xls.d.ts +0 -5
- package/bootstrap-icons/filetype-xls.js +0 -12
- package/bootstrap-icons/filetype-xlsx.d.ts +0 -5
- package/bootstrap-icons/filetype-xlsx.js +0 -12
- package/bootstrap-icons/filetype-xml.d.ts +0 -5
- package/bootstrap-icons/filetype-xml.js +0 -12
- package/bootstrap-icons/filetype-yml.d.ts +0 -5
- package/bootstrap-icons/filetype-yml.js +0 -12
- package/bootstrap-icons/film.d.ts +0 -5
- package/bootstrap-icons/film.js +0 -12
- package/bootstrap-icons/filter-circle-fill.d.ts +0 -5
- package/bootstrap-icons/filter-circle-fill.js +0 -12
- package/bootstrap-icons/filter-circle.d.ts +0 -5
- package/bootstrap-icons/filter-circle.js +0 -12
- package/bootstrap-icons/filter-left.d.ts +0 -5
- package/bootstrap-icons/filter-left.js +0 -12
- package/bootstrap-icons/filter-right.d.ts +0 -5
- package/bootstrap-icons/filter-right.js +0 -12
- package/bootstrap-icons/filter-square-fill.d.ts +0 -5
- package/bootstrap-icons/filter-square-fill.js +0 -12
- package/bootstrap-icons/filter-square.d.ts +0 -5
- package/bootstrap-icons/filter-square.js +0 -12
- package/bootstrap-icons/filter.d.ts +0 -5
- package/bootstrap-icons/filter.js +0 -12
- package/bootstrap-icons/fingerprint.d.ts +0 -5
- package/bootstrap-icons/fingerprint.js +0 -12
- package/bootstrap-icons/flag-fill.d.ts +0 -5
- package/bootstrap-icons/flag-fill.js +0 -12
- package/bootstrap-icons/flag.d.ts +0 -5
- package/bootstrap-icons/flag.js +0 -12
- package/bootstrap-icons/flower1.d.ts +0 -5
- package/bootstrap-icons/flower1.js +0 -12
- package/bootstrap-icons/flower2.d.ts +0 -5
- package/bootstrap-icons/flower2.js +0 -12
- package/bootstrap-icons/flower3.d.ts +0 -5
- package/bootstrap-icons/flower3.js +0 -12
- package/bootstrap-icons/folder-check.d.ts +0 -5
- package/bootstrap-icons/folder-check.js +0 -12
- package/bootstrap-icons/folder-fill.d.ts +0 -5
- package/bootstrap-icons/folder-fill.js +0 -12
- package/bootstrap-icons/folder-minus.d.ts +0 -5
- package/bootstrap-icons/folder-minus.js +0 -12
- package/bootstrap-icons/folder-plus.d.ts +0 -5
- package/bootstrap-icons/folder-plus.js +0 -12
- package/bootstrap-icons/folder-symlink-fill.d.ts +0 -5
- package/bootstrap-icons/folder-symlink-fill.js +0 -12
- package/bootstrap-icons/folder-symlink.d.ts +0 -5
- package/bootstrap-icons/folder-symlink.js +0 -12
- package/bootstrap-icons/folder-x.d.ts +0 -5
- package/bootstrap-icons/folder-x.js +0 -12
- package/bootstrap-icons/folder.d.ts +0 -5
- package/bootstrap-icons/folder.js +0 -12
- package/bootstrap-icons/folder2-open.d.ts +0 -5
- package/bootstrap-icons/folder2-open.js +0 -12
- package/bootstrap-icons/folder2.d.ts +0 -5
- package/bootstrap-icons/folder2.js +0 -12
- package/bootstrap-icons/fonts.d.ts +0 -5
- package/bootstrap-icons/fonts.js +0 -12
- package/bootstrap-icons/forward-fill.d.ts +0 -5
- package/bootstrap-icons/forward-fill.js +0 -12
- package/bootstrap-icons/forward.d.ts +0 -5
- package/bootstrap-icons/forward.js +0 -12
- package/bootstrap-icons/front.d.ts +0 -5
- package/bootstrap-icons/front.js +0 -12
- package/bootstrap-icons/fullscreen-exit.d.ts +0 -5
- package/bootstrap-icons/fullscreen-exit.js +0 -12
- package/bootstrap-icons/fullscreen.d.ts +0 -5
- package/bootstrap-icons/fullscreen.js +0 -12
- package/bootstrap-icons/funnel-fill.d.ts +0 -5
- package/bootstrap-icons/funnel-fill.js +0 -12
- package/bootstrap-icons/funnel.d.ts +0 -5
- package/bootstrap-icons/funnel.js +0 -12
- package/bootstrap-icons/gear-fill.d.ts +0 -5
- package/bootstrap-icons/gear-fill.js +0 -12
- package/bootstrap-icons/gear-wide-connected.d.ts +0 -5
- package/bootstrap-icons/gear-wide-connected.js +0 -12
- package/bootstrap-icons/gear-wide.d.ts +0 -5
- package/bootstrap-icons/gear-wide.js +0 -12
- package/bootstrap-icons/gear.d.ts +0 -5
- package/bootstrap-icons/gear.js +0 -12
- package/bootstrap-icons/gem.d.ts +0 -5
- package/bootstrap-icons/gem.js +0 -12
- package/bootstrap-icons/gender-ambiguous.d.ts +0 -5
- package/bootstrap-icons/gender-ambiguous.js +0 -12
- package/bootstrap-icons/gender-female.d.ts +0 -5
- package/bootstrap-icons/gender-female.js +0 -12
- package/bootstrap-icons/gender-male.d.ts +0 -5
- package/bootstrap-icons/gender-male.js +0 -12
- package/bootstrap-icons/gender-trans.d.ts +0 -5
- package/bootstrap-icons/gender-trans.js +0 -12
- package/bootstrap-icons/geo-alt-fill.d.ts +0 -5
- package/bootstrap-icons/geo-alt-fill.js +0 -12
- package/bootstrap-icons/geo-alt.d.ts +0 -5
- package/bootstrap-icons/geo-alt.js +0 -12
- package/bootstrap-icons/geo-fill.d.ts +0 -5
- package/bootstrap-icons/geo-fill.js +0 -12
- package/bootstrap-icons/geo.d.ts +0 -5
- package/bootstrap-icons/geo.js +0 -12
- package/bootstrap-icons/gift-fill.d.ts +0 -5
- package/bootstrap-icons/gift-fill.js +0 -12
- package/bootstrap-icons/gift.d.ts +0 -5
- package/bootstrap-icons/gift.js +0 -12
- package/bootstrap-icons/git.d.ts +0 -5
- package/bootstrap-icons/git.js +0 -12
- package/bootstrap-icons/github.d.ts +0 -5
- package/bootstrap-icons/github.js +0 -12
- package/bootstrap-icons/globe.d.ts +0 -5
- package/bootstrap-icons/globe.js +0 -12
- package/bootstrap-icons/globe2.d.ts +0 -5
- package/bootstrap-icons/globe2.js +0 -12
- package/bootstrap-icons/google.d.ts +0 -5
- package/bootstrap-icons/google.js +0 -12
- package/bootstrap-icons/gpu-card.d.ts +0 -5
- package/bootstrap-icons/gpu-card.js +0 -12
- package/bootstrap-icons/graph-down-arrow.d.ts +0 -5
- package/bootstrap-icons/graph-down-arrow.js +0 -12
- package/bootstrap-icons/graph-down.d.ts +0 -5
- package/bootstrap-icons/graph-down.js +0 -12
- package/bootstrap-icons/graph-up-arrow.d.ts +0 -5
- package/bootstrap-icons/graph-up-arrow.js +0 -12
- package/bootstrap-icons/graph-up.d.ts +0 -5
- package/bootstrap-icons/graph-up.js +0 -12
- package/bootstrap-icons/grid-1x2-fill.d.ts +0 -5
- package/bootstrap-icons/grid-1x2-fill.js +0 -12
- package/bootstrap-icons/grid-1x2.d.ts +0 -5
- package/bootstrap-icons/grid-1x2.js +0 -12
- package/bootstrap-icons/grid-3x2-gap-fill.d.ts +0 -5
- package/bootstrap-icons/grid-3x2-gap-fill.js +0 -12
- package/bootstrap-icons/grid-3x2-gap.d.ts +0 -5
- package/bootstrap-icons/grid-3x2-gap.js +0 -12
- package/bootstrap-icons/grid-3x2.d.ts +0 -5
- package/bootstrap-icons/grid-3x2.js +0 -12
- package/bootstrap-icons/grid-3x3-gap-fill.d.ts +0 -5
- package/bootstrap-icons/grid-3x3-gap-fill.js +0 -12
- package/bootstrap-icons/grid-3x3-gap.d.ts +0 -5
- package/bootstrap-icons/grid-3x3-gap.js +0 -12
- package/bootstrap-icons/grid-3x3.d.ts +0 -5
- package/bootstrap-icons/grid-3x3.js +0 -12
- package/bootstrap-icons/grid-fill.d.ts +0 -5
- package/bootstrap-icons/grid-fill.js +0 -12
- package/bootstrap-icons/grid.d.ts +0 -5
- package/bootstrap-icons/grid.js +0 -12
- package/bootstrap-icons/grip-horizontal.d.ts +0 -5
- package/bootstrap-icons/grip-horizontal.js +0 -12
- package/bootstrap-icons/grip-vertical.d.ts +0 -5
- package/bootstrap-icons/grip-vertical.js +0 -12
- package/bootstrap-icons/hammer.d.ts +0 -5
- package/bootstrap-icons/hammer.js +0 -12
- package/bootstrap-icons/hand-index-fill.d.ts +0 -5
- package/bootstrap-icons/hand-index-fill.js +0 -12
- package/bootstrap-icons/hand-index-thumb-fill.d.ts +0 -5
- package/bootstrap-icons/hand-index-thumb-fill.js +0 -12
- package/bootstrap-icons/hand-index-thumb.d.ts +0 -5
- package/bootstrap-icons/hand-index-thumb.js +0 -12
- package/bootstrap-icons/hand-index.d.ts +0 -5
- package/bootstrap-icons/hand-index.js +0 -12
- package/bootstrap-icons/hand-thumbs-down-fill.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-down-fill.js +0 -12
- package/bootstrap-icons/hand-thumbs-down.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-down.js +0 -12
- package/bootstrap-icons/hand-thumbs-up-fill.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-up-fill.js +0 -12
- package/bootstrap-icons/hand-thumbs-up.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-up.js +0 -12
- package/bootstrap-icons/handbag-fill.d.ts +0 -5
- package/bootstrap-icons/handbag-fill.js +0 -12
- package/bootstrap-icons/handbag.d.ts +0 -5
- package/bootstrap-icons/handbag.js +0 -12
- package/bootstrap-icons/hash.d.ts +0 -5
- package/bootstrap-icons/hash.js +0 -12
- package/bootstrap-icons/hdd-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-fill.js +0 -12
- package/bootstrap-icons/hdd-network-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-network-fill.js +0 -12
- package/bootstrap-icons/hdd-network.d.ts +0 -5
- package/bootstrap-icons/hdd-network.js +0 -12
- package/bootstrap-icons/hdd-rack-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-rack-fill.js +0 -12
- package/bootstrap-icons/hdd-rack.d.ts +0 -5
- package/bootstrap-icons/hdd-rack.js +0 -12
- package/bootstrap-icons/hdd-stack-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-stack-fill.js +0 -12
- package/bootstrap-icons/hdd-stack.d.ts +0 -5
- package/bootstrap-icons/hdd-stack.js +0 -12
- package/bootstrap-icons/hdd.d.ts +0 -5
- package/bootstrap-icons/hdd.js +0 -12
- package/bootstrap-icons/hdmi-fill.d.ts +0 -5
- package/bootstrap-icons/hdmi-fill.js +0 -12
- package/bootstrap-icons/hdmi.d.ts +0 -5
- package/bootstrap-icons/hdmi.js +0 -12
- package/bootstrap-icons/headphones.d.ts +0 -5
- package/bootstrap-icons/headphones.js +0 -12
- package/bootstrap-icons/headset-vr.d.ts +0 -5
- package/bootstrap-icons/headset-vr.js +0 -12
- package/bootstrap-icons/headset.d.ts +0 -5
- package/bootstrap-icons/headset.js +0 -12
- package/bootstrap-icons/heart-arrow.d.ts +0 -5
- package/bootstrap-icons/heart-arrow.js +0 -12
- package/bootstrap-icons/heart-fill.d.ts +0 -5
- package/bootstrap-icons/heart-fill.js +0 -12
- package/bootstrap-icons/heart-half.d.ts +0 -5
- package/bootstrap-icons/heart-half.js +0 -12
- package/bootstrap-icons/heart-pulse-fill.d.ts +0 -5
- package/bootstrap-icons/heart-pulse-fill.js +0 -12
- package/bootstrap-icons/heart-pulse.d.ts +0 -5
- package/bootstrap-icons/heart-pulse.js +0 -12
- package/bootstrap-icons/heart.d.ts +0 -5
- package/bootstrap-icons/heart.js +0 -12
- package/bootstrap-icons/heartbreak-fill.d.ts +0 -5
- package/bootstrap-icons/heartbreak-fill.js +0 -12
- package/bootstrap-icons/heartbreak.d.ts +0 -5
- package/bootstrap-icons/heartbreak.js +0 -12
- package/bootstrap-icons/hearts.d.ts +0 -5
- package/bootstrap-icons/hearts.js +0 -12
- package/bootstrap-icons/heptagon-fill.d.ts +0 -5
- package/bootstrap-icons/heptagon-fill.js +0 -12
- package/bootstrap-icons/heptagon-half.d.ts +0 -5
- package/bootstrap-icons/heptagon-half.js +0 -12
- package/bootstrap-icons/heptagon.d.ts +0 -5
- package/bootstrap-icons/heptagon.js +0 -12
- package/bootstrap-icons/hexagon-fill.d.ts +0 -5
- package/bootstrap-icons/hexagon-fill.js +0 -12
- package/bootstrap-icons/hexagon-half.d.ts +0 -5
- package/bootstrap-icons/hexagon-half.js +0 -12
- package/bootstrap-icons/hexagon.d.ts +0 -5
- package/bootstrap-icons/hexagon.js +0 -12
- package/bootstrap-icons/hospital-fill.d.ts +0 -5
- package/bootstrap-icons/hospital-fill.js +0 -12
- package/bootstrap-icons/hospital.d.ts +0 -5
- package/bootstrap-icons/hospital.js +0 -12
- package/bootstrap-icons/hourglass-bottom.d.ts +0 -5
- package/bootstrap-icons/hourglass-bottom.js +0 -12
- package/bootstrap-icons/hourglass-split.d.ts +0 -5
- package/bootstrap-icons/hourglass-split.js +0 -12
- package/bootstrap-icons/hourglass-top.d.ts +0 -5
- package/bootstrap-icons/hourglass-top.js +0 -12
- package/bootstrap-icons/hourglass.d.ts +0 -5
- package/bootstrap-icons/hourglass.js +0 -12
- package/bootstrap-icons/house-door-fill.d.ts +0 -5
- package/bootstrap-icons/house-door-fill.js +0 -12
- package/bootstrap-icons/house-door.d.ts +0 -5
- package/bootstrap-icons/house-door.js +0 -12
- package/bootstrap-icons/house-fill.d.ts +0 -5
- package/bootstrap-icons/house-fill.js +0 -12
- package/bootstrap-icons/house-heart-fill.d.ts +0 -5
- package/bootstrap-icons/house-heart-fill.js +0 -12
- package/bootstrap-icons/house-heart.d.ts +0 -5
- package/bootstrap-icons/house-heart.js +0 -12
- package/bootstrap-icons/house.d.ts +0 -5
- package/bootstrap-icons/house.js +0 -12
- package/bootstrap-icons/hr.d.ts +0 -5
- package/bootstrap-icons/hr.js +0 -12
- package/bootstrap-icons/hurricane.d.ts +0 -5
- package/bootstrap-icons/hurricane.js +0 -12
- package/bootstrap-icons/hypnotize.d.ts +0 -5
- package/bootstrap-icons/hypnotize.js +0 -12
- package/bootstrap-icons/image-alt.d.ts +0 -5
- package/bootstrap-icons/image-alt.js +0 -12
- package/bootstrap-icons/image-fill.d.ts +0 -5
- package/bootstrap-icons/image-fill.js +0 -12
- package/bootstrap-icons/image.d.ts +0 -5
- package/bootstrap-icons/image.js +0 -12
- package/bootstrap-icons/images.d.ts +0 -5
- package/bootstrap-icons/images.js +0 -12
- package/bootstrap-icons/inbox-fill.d.ts +0 -5
- package/bootstrap-icons/inbox-fill.js +0 -12
- package/bootstrap-icons/inbox.d.ts +0 -5
- package/bootstrap-icons/inbox.js +0 -12
- package/bootstrap-icons/inboxes-fill.d.ts +0 -5
- package/bootstrap-icons/inboxes-fill.js +0 -12
- package/bootstrap-icons/inboxes.d.ts +0 -5
- package/bootstrap-icons/inboxes.js +0 -12
- package/bootstrap-icons/incognito.d.ts +0 -5
- package/bootstrap-icons/incognito.js +0 -12
- package/bootstrap-icons/index.d.ts +0 -1671
- package/bootstrap-icons/index.js +0 -1687
- package/bootstrap-icons/infinity.d.ts +0 -5
- package/bootstrap-icons/infinity.js +0 -12
- package/bootstrap-icons/info-circle-fill.d.ts +0 -5
- package/bootstrap-icons/info-circle-fill.js +0 -12
- package/bootstrap-icons/info-circle.d.ts +0 -5
- package/bootstrap-icons/info-circle.js +0 -12
- package/bootstrap-icons/info-lg.d.ts +0 -5
- package/bootstrap-icons/info-lg.js +0 -12
- package/bootstrap-icons/info-square-fill.d.ts +0 -5
- package/bootstrap-icons/info-square-fill.js +0 -12
- package/bootstrap-icons/info-square.d.ts +0 -5
- package/bootstrap-icons/info-square.js +0 -12
- package/bootstrap-icons/info.d.ts +0 -5
- package/bootstrap-icons/info.js +0 -12
- package/bootstrap-icons/input-cursor-text.d.ts +0 -5
- package/bootstrap-icons/input-cursor-text.js +0 -12
- package/bootstrap-icons/input-cursor.d.ts +0 -5
- package/bootstrap-icons/input-cursor.js +0 -12
- package/bootstrap-icons/instagram.d.ts +0 -5
- package/bootstrap-icons/instagram.js +0 -12
- package/bootstrap-icons/intersect.d.ts +0 -5
- package/bootstrap-icons/intersect.js +0 -12
- package/bootstrap-icons/journal-album.d.ts +0 -5
- package/bootstrap-icons/journal-album.js +0 -12
- package/bootstrap-icons/journal-arrow-down.d.ts +0 -5
- package/bootstrap-icons/journal-arrow-down.js +0 -12
- package/bootstrap-icons/journal-arrow-up.d.ts +0 -5
- package/bootstrap-icons/journal-arrow-up.js +0 -12
- package/bootstrap-icons/journal-bookmark-fill.d.ts +0 -5
- package/bootstrap-icons/journal-bookmark-fill.js +0 -12
- package/bootstrap-icons/journal-bookmark.d.ts +0 -5
- package/bootstrap-icons/journal-bookmark.js +0 -12
- package/bootstrap-icons/journal-check.d.ts +0 -5
- package/bootstrap-icons/journal-check.js +0 -12
- package/bootstrap-icons/journal-code.d.ts +0 -5
- package/bootstrap-icons/journal-code.js +0 -12
- package/bootstrap-icons/journal-medical.d.ts +0 -5
- package/bootstrap-icons/journal-medical.js +0 -12
- package/bootstrap-icons/journal-minus.d.ts +0 -5
- package/bootstrap-icons/journal-minus.js +0 -12
- package/bootstrap-icons/journal-plus.d.ts +0 -5
- package/bootstrap-icons/journal-plus.js +0 -12
- package/bootstrap-icons/journal-richtext.d.ts +0 -5
- package/bootstrap-icons/journal-richtext.js +0 -12
- package/bootstrap-icons/journal-text.d.ts +0 -5
- package/bootstrap-icons/journal-text.js +0 -12
- package/bootstrap-icons/journal-x.d.ts +0 -5
- package/bootstrap-icons/journal-x.js +0 -12
- package/bootstrap-icons/journal.d.ts +0 -5
- package/bootstrap-icons/journal.js +0 -12
- package/bootstrap-icons/journals.d.ts +0 -5
- package/bootstrap-icons/journals.js +0 -12
- package/bootstrap-icons/joystick.d.ts +0 -5
- package/bootstrap-icons/joystick.js +0 -12
- package/bootstrap-icons/justify-left.d.ts +0 -5
- package/bootstrap-icons/justify-left.js +0 -12
- package/bootstrap-icons/justify-right.d.ts +0 -5
- package/bootstrap-icons/justify-right.js +0 -12
- package/bootstrap-icons/justify.d.ts +0 -5
- package/bootstrap-icons/justify.js +0 -12
- package/bootstrap-icons/kanban-fill.d.ts +0 -5
- package/bootstrap-icons/kanban-fill.js +0 -12
- package/bootstrap-icons/kanban.d.ts +0 -5
- package/bootstrap-icons/kanban.js +0 -12
- package/bootstrap-icons/key-fill.d.ts +0 -5
- package/bootstrap-icons/key-fill.js +0 -12
- package/bootstrap-icons/key.d.ts +0 -5
- package/bootstrap-icons/key.js +0 -12
- package/bootstrap-icons/keyboard-fill.d.ts +0 -5
- package/bootstrap-icons/keyboard-fill.js +0 -12
- package/bootstrap-icons/keyboard.d.ts +0 -5
- package/bootstrap-icons/keyboard.js +0 -12
- package/bootstrap-icons/ladder.d.ts +0 -5
- package/bootstrap-icons/ladder.js +0 -12
- package/bootstrap-icons/lamp-fill.d.ts +0 -5
- package/bootstrap-icons/lamp-fill.js +0 -12
- package/bootstrap-icons/lamp.d.ts +0 -5
- package/bootstrap-icons/lamp.js +0 -12
- package/bootstrap-icons/laptop-fill.d.ts +0 -5
- package/bootstrap-icons/laptop-fill.js +0 -12
- package/bootstrap-icons/laptop.d.ts +0 -5
- package/bootstrap-icons/laptop.js +0 -12
- package/bootstrap-icons/layer-backward.d.ts +0 -5
- package/bootstrap-icons/layer-backward.js +0 -12
- package/bootstrap-icons/layer-forward.d.ts +0 -5
- package/bootstrap-icons/layer-forward.js +0 -12
- package/bootstrap-icons/layers-fill.d.ts +0 -5
- package/bootstrap-icons/layers-fill.js +0 -12
- package/bootstrap-icons/layers-half.d.ts +0 -5
- package/bootstrap-icons/layers-half.js +0 -12
- package/bootstrap-icons/layers.d.ts +0 -5
- package/bootstrap-icons/layers.js +0 -12
- package/bootstrap-icons/layout-sidebar-inset-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-inset-reverse.js +0 -12
- package/bootstrap-icons/layout-sidebar-inset.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-inset.js +0 -12
- package/bootstrap-icons/layout-sidebar-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-reverse.js +0 -12
- package/bootstrap-icons/layout-sidebar.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar.js +0 -12
- package/bootstrap-icons/layout-split.d.ts +0 -5
- package/bootstrap-icons/layout-split.js +0 -12
- package/bootstrap-icons/layout-text-sidebar-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-text-sidebar-reverse.js +0 -12
- package/bootstrap-icons/layout-text-sidebar.d.ts +0 -5
- package/bootstrap-icons/layout-text-sidebar.js +0 -12
- package/bootstrap-icons/layout-text-window-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-text-window-reverse.js +0 -12
- package/bootstrap-icons/layout-text-window.d.ts +0 -5
- package/bootstrap-icons/layout-text-window.js +0 -12
- package/bootstrap-icons/layout-three-columns.d.ts +0 -5
- package/bootstrap-icons/layout-three-columns.js +0 -12
- package/bootstrap-icons/layout-wtf.d.ts +0 -5
- package/bootstrap-icons/layout-wtf.js +0 -12
- package/bootstrap-icons/life-preserver.d.ts +0 -5
- package/bootstrap-icons/life-preserver.js +0 -12
- package/bootstrap-icons/lightbulb-fill.d.ts +0 -5
- package/bootstrap-icons/lightbulb-fill.js +0 -12
- package/bootstrap-icons/lightbulb-off-fill.d.ts +0 -5
- package/bootstrap-icons/lightbulb-off-fill.js +0 -12
- package/bootstrap-icons/lightbulb-off.d.ts +0 -5
- package/bootstrap-icons/lightbulb-off.js +0 -12
- package/bootstrap-icons/lightbulb.d.ts +0 -5
- package/bootstrap-icons/lightbulb.js +0 -12
- package/bootstrap-icons/lightning-charge-fill.d.ts +0 -5
- package/bootstrap-icons/lightning-charge-fill.js +0 -12
- package/bootstrap-icons/lightning-charge.d.ts +0 -5
- package/bootstrap-icons/lightning-charge.js +0 -12
- package/bootstrap-icons/lightning-fill.d.ts +0 -5
- package/bootstrap-icons/lightning-fill.js +0 -12
- package/bootstrap-icons/lightning.d.ts +0 -5
- package/bootstrap-icons/lightning.js +0 -12
- package/bootstrap-icons/line.d.ts +0 -5
- package/bootstrap-icons/line.js +0 -12
- package/bootstrap-icons/link-45deg.d.ts +0 -5
- package/bootstrap-icons/link-45deg.js +0 -12
- package/bootstrap-icons/link.d.ts +0 -5
- package/bootstrap-icons/link.js +0 -12
- package/bootstrap-icons/linkedin.d.ts +0 -5
- package/bootstrap-icons/linkedin.js +0 -12
- package/bootstrap-icons/list-check.d.ts +0 -5
- package/bootstrap-icons/list-check.js +0 -12
- package/bootstrap-icons/list-columns-reverse.d.ts +0 -5
- package/bootstrap-icons/list-columns-reverse.js +0 -12
- package/bootstrap-icons/list-columns.d.ts +0 -5
- package/bootstrap-icons/list-columns.js +0 -12
- package/bootstrap-icons/list-nested.d.ts +0 -5
- package/bootstrap-icons/list-nested.js +0 -12
- package/bootstrap-icons/list-ol.d.ts +0 -5
- package/bootstrap-icons/list-ol.js +0 -12
- package/bootstrap-icons/list-stars.d.ts +0 -5
- package/bootstrap-icons/list-stars.js +0 -12
- package/bootstrap-icons/list-task.d.ts +0 -5
- package/bootstrap-icons/list-task.js +0 -12
- package/bootstrap-icons/list-ul.d.ts +0 -5
- package/bootstrap-icons/list-ul.js +0 -12
- package/bootstrap-icons/list.d.ts +0 -5
- package/bootstrap-icons/list.js +0 -12
- package/bootstrap-icons/lock-fill.d.ts +0 -5
- package/bootstrap-icons/lock-fill.js +0 -12
- package/bootstrap-icons/lock.d.ts +0 -5
- package/bootstrap-icons/lock.js +0 -12
- package/bootstrap-icons/magic.d.ts +0 -5
- package/bootstrap-icons/magic.js +0 -12
- package/bootstrap-icons/magnet-fill.d.ts +0 -5
- package/bootstrap-icons/magnet-fill.js +0 -12
- package/bootstrap-icons/magnet.d.ts +0 -5
- package/bootstrap-icons/magnet.js +0 -12
- package/bootstrap-icons/mailbox.d.ts +0 -5
- package/bootstrap-icons/mailbox.js +0 -12
- package/bootstrap-icons/mailbox2.d.ts +0 -5
- package/bootstrap-icons/mailbox2.js +0 -12
- package/bootstrap-icons/map-fill.d.ts +0 -5
- package/bootstrap-icons/map-fill.js +0 -12
- package/bootstrap-icons/map.d.ts +0 -5
- package/bootstrap-icons/map.js +0 -12
- package/bootstrap-icons/markdown-fill.d.ts +0 -5
- package/bootstrap-icons/markdown-fill.js +0 -12
- package/bootstrap-icons/markdown.d.ts +0 -5
- package/bootstrap-icons/markdown.js +0 -12
- package/bootstrap-icons/mask.d.ts +0 -5
- package/bootstrap-icons/mask.js +0 -12
- package/bootstrap-icons/mastodon.d.ts +0 -5
- package/bootstrap-icons/mastodon.js +0 -12
- package/bootstrap-icons/medium.d.ts +0 -5
- package/bootstrap-icons/medium.js +0 -12
- package/bootstrap-icons/megaphone-fill.d.ts +0 -5
- package/bootstrap-icons/megaphone-fill.js +0 -12
- package/bootstrap-icons/megaphone.d.ts +0 -5
- package/bootstrap-icons/megaphone.js +0 -12
- package/bootstrap-icons/memory.d.ts +0 -5
- package/bootstrap-icons/memory.js +0 -12
- package/bootstrap-icons/menu-app-fill.d.ts +0 -5
- package/bootstrap-icons/menu-app-fill.js +0 -12
- package/bootstrap-icons/menu-app.d.ts +0 -5
- package/bootstrap-icons/menu-app.js +0 -12
- package/bootstrap-icons/menu-button-fill.d.ts +0 -5
- package/bootstrap-icons/menu-button-fill.js +0 -12
- package/bootstrap-icons/menu-button-wide-fill.d.ts +0 -5
- package/bootstrap-icons/menu-button-wide-fill.js +0 -12
- package/bootstrap-icons/menu-button-wide.d.ts +0 -5
- package/bootstrap-icons/menu-button-wide.js +0 -12
- package/bootstrap-icons/menu-button.d.ts +0 -5
- package/bootstrap-icons/menu-button.js +0 -12
- package/bootstrap-icons/menu-down.d.ts +0 -5
- package/bootstrap-icons/menu-down.js +0 -12
- package/bootstrap-icons/menu-up.d.ts +0 -5
- package/bootstrap-icons/menu-up.js +0 -12
- package/bootstrap-icons/messenger.d.ts +0 -5
- package/bootstrap-icons/messenger.js +0 -12
- package/bootstrap-icons/meta.d.ts +0 -5
- package/bootstrap-icons/meta.js +0 -12
- package/bootstrap-icons/mic-fill.d.ts +0 -5
- package/bootstrap-icons/mic-fill.js +0 -12
- package/bootstrap-icons/mic-mute-fill.d.ts +0 -5
- package/bootstrap-icons/mic-mute-fill.js +0 -12
- package/bootstrap-icons/mic-mute.d.ts +0 -5
- package/bootstrap-icons/mic-mute.js +0 -12
- package/bootstrap-icons/mic.d.ts +0 -5
- package/bootstrap-icons/mic.js +0 -12
- package/bootstrap-icons/microsoft.d.ts +0 -5
- package/bootstrap-icons/microsoft.js +0 -12
- package/bootstrap-icons/minecart-loaded.d.ts +0 -5
- package/bootstrap-icons/minecart-loaded.js +0 -12
- package/bootstrap-icons/minecart.d.ts +0 -5
- package/bootstrap-icons/minecart.js +0 -12
- package/bootstrap-icons/modem-fill.d.ts +0 -5
- package/bootstrap-icons/modem-fill.js +0 -12
- package/bootstrap-icons/modem.d.ts +0 -5
- package/bootstrap-icons/modem.js +0 -12
- package/bootstrap-icons/moisture.d.ts +0 -5
- package/bootstrap-icons/moisture.js +0 -12
- package/bootstrap-icons/moon-fill.d.ts +0 -5
- package/bootstrap-icons/moon-fill.js +0 -12
- package/bootstrap-icons/moon-stars-fill.d.ts +0 -5
- package/bootstrap-icons/moon-stars-fill.js +0 -12
- package/bootstrap-icons/moon-stars.d.ts +0 -5
- package/bootstrap-icons/moon-stars.js +0 -12
- package/bootstrap-icons/moon.d.ts +0 -5
- package/bootstrap-icons/moon.js +0 -12
- package/bootstrap-icons/mortarboard-fill.d.ts +0 -5
- package/bootstrap-icons/mortarboard-fill.js +0 -12
- package/bootstrap-icons/mortarboard.d.ts +0 -5
- package/bootstrap-icons/mortarboard.js +0 -12
- package/bootstrap-icons/motherboard-fill.d.ts +0 -5
- package/bootstrap-icons/motherboard-fill.js +0 -12
- package/bootstrap-icons/motherboard.d.ts +0 -5
- package/bootstrap-icons/motherboard.js +0 -12
- package/bootstrap-icons/mouse-fill.d.ts +0 -5
- package/bootstrap-icons/mouse-fill.js +0 -12
- package/bootstrap-icons/mouse.d.ts +0 -5
- package/bootstrap-icons/mouse.js +0 -12
- package/bootstrap-icons/mouse2-fill.d.ts +0 -5
- package/bootstrap-icons/mouse2-fill.js +0 -12
- package/bootstrap-icons/mouse2.d.ts +0 -5
- package/bootstrap-icons/mouse2.js +0 -12
- package/bootstrap-icons/mouse3-fill.d.ts +0 -5
- package/bootstrap-icons/mouse3-fill.js +0 -12
- package/bootstrap-icons/mouse3.d.ts +0 -5
- package/bootstrap-icons/mouse3.js +0 -12
- package/bootstrap-icons/music-note-beamed.d.ts +0 -5
- package/bootstrap-icons/music-note-beamed.js +0 -12
- package/bootstrap-icons/music-note-list.d.ts +0 -5
- package/bootstrap-icons/music-note-list.js +0 -12
- package/bootstrap-icons/music-note.d.ts +0 -5
- package/bootstrap-icons/music-note.js +0 -12
- package/bootstrap-icons/music-player-fill.d.ts +0 -5
- package/bootstrap-icons/music-player-fill.js +0 -12
- package/bootstrap-icons/music-player.d.ts +0 -5
- package/bootstrap-icons/music-player.js +0 -12
- package/bootstrap-icons/newspaper.d.ts +0 -5
- package/bootstrap-icons/newspaper.js +0 -12
- package/bootstrap-icons/nintendo-switch.d.ts +0 -5
- package/bootstrap-icons/nintendo-switch.js +0 -12
- package/bootstrap-icons/node-minus-fill.d.ts +0 -5
- package/bootstrap-icons/node-minus-fill.js +0 -12
- package/bootstrap-icons/node-minus.d.ts +0 -5
- package/bootstrap-icons/node-minus.js +0 -12
- package/bootstrap-icons/node-plus-fill.d.ts +0 -5
- package/bootstrap-icons/node-plus-fill.js +0 -12
- package/bootstrap-icons/node-plus.d.ts +0 -5
- package/bootstrap-icons/node-plus.js +0 -12
- package/bootstrap-icons/nut-fill.d.ts +0 -5
- package/bootstrap-icons/nut-fill.js +0 -12
- package/bootstrap-icons/nut.d.ts +0 -5
- package/bootstrap-icons/nut.js +0 -12
- package/bootstrap-icons/octagon-fill.d.ts +0 -5
- package/bootstrap-icons/octagon-fill.js +0 -12
- package/bootstrap-icons/octagon-half.d.ts +0 -5
- package/bootstrap-icons/octagon-half.js +0 -12
- package/bootstrap-icons/octagon.d.ts +0 -5
- package/bootstrap-icons/octagon.js +0 -12
- package/bootstrap-icons/optical-audio-fill.d.ts +0 -5
- package/bootstrap-icons/optical-audio-fill.js +0 -12
- package/bootstrap-icons/optical-audio.d.ts +0 -5
- package/bootstrap-icons/optical-audio.js +0 -12
- package/bootstrap-icons/option.d.ts +0 -5
- package/bootstrap-icons/option.js +0 -12
- package/bootstrap-icons/outlet.d.ts +0 -5
- package/bootstrap-icons/outlet.js +0 -12
- package/bootstrap-icons/paint-bucket.d.ts +0 -5
- package/bootstrap-icons/paint-bucket.js +0 -12
- package/bootstrap-icons/palette-fill.d.ts +0 -5
- package/bootstrap-icons/palette-fill.js +0 -12
- package/bootstrap-icons/palette.d.ts +0 -5
- package/bootstrap-icons/palette.js +0 -12
- package/bootstrap-icons/palette2.d.ts +0 -5
- package/bootstrap-icons/palette2.js +0 -12
- package/bootstrap-icons/paperclip.d.ts +0 -5
- package/bootstrap-icons/paperclip.js +0 -12
- package/bootstrap-icons/paragraph.d.ts +0 -5
- package/bootstrap-icons/paragraph.js +0 -12
- package/bootstrap-icons/patch-check-fill.d.ts +0 -5
- package/bootstrap-icons/patch-check-fill.js +0 -12
- package/bootstrap-icons/patch-check.d.ts +0 -5
- package/bootstrap-icons/patch-check.js +0 -12
- package/bootstrap-icons/patch-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/patch-exclamation-fill.js +0 -12
- package/bootstrap-icons/patch-exclamation.d.ts +0 -5
- package/bootstrap-icons/patch-exclamation.js +0 -12
- package/bootstrap-icons/patch-minus-fill.d.ts +0 -5
- package/bootstrap-icons/patch-minus-fill.js +0 -12
- package/bootstrap-icons/patch-minus.d.ts +0 -5
- package/bootstrap-icons/patch-minus.js +0 -12
- package/bootstrap-icons/patch-plus-fill.d.ts +0 -5
- package/bootstrap-icons/patch-plus-fill.js +0 -12
- package/bootstrap-icons/patch-plus.d.ts +0 -5
- package/bootstrap-icons/patch-plus.js +0 -12
- package/bootstrap-icons/patch-question-fill.d.ts +0 -5
- package/bootstrap-icons/patch-question-fill.js +0 -12
- package/bootstrap-icons/patch-question.d.ts +0 -5
- package/bootstrap-icons/patch-question.js +0 -12
- package/bootstrap-icons/pause-btn-fill.d.ts +0 -5
- package/bootstrap-icons/pause-btn-fill.js +0 -12
- package/bootstrap-icons/pause-btn.d.ts +0 -5
- package/bootstrap-icons/pause-btn.js +0 -12
- package/bootstrap-icons/pause-circle-fill.d.ts +0 -5
- package/bootstrap-icons/pause-circle-fill.js +0 -12
- package/bootstrap-icons/pause-circle.d.ts +0 -5
- package/bootstrap-icons/pause-circle.js +0 -12
- package/bootstrap-icons/pause-fill.d.ts +0 -5
- package/bootstrap-icons/pause-fill.js +0 -12
- package/bootstrap-icons/pause.d.ts +0 -5
- package/bootstrap-icons/pause.js +0 -12
- package/bootstrap-icons/paypal.d.ts +0 -5
- package/bootstrap-icons/paypal.js +0 -12
- package/bootstrap-icons/pc-display-horizontal.d.ts +0 -5
- package/bootstrap-icons/pc-display-horizontal.js +0 -12
- package/bootstrap-icons/pc-display.d.ts +0 -5
- package/bootstrap-icons/pc-display.js +0 -12
- package/bootstrap-icons/pc-horizontal.d.ts +0 -5
- package/bootstrap-icons/pc-horizontal.js +0 -12
- package/bootstrap-icons/pc.d.ts +0 -5
- package/bootstrap-icons/pc.js +0 -12
- package/bootstrap-icons/pci-card.d.ts +0 -5
- package/bootstrap-icons/pci-card.js +0 -12
- package/bootstrap-icons/peace-fill.d.ts +0 -5
- package/bootstrap-icons/peace-fill.js +0 -12
- package/bootstrap-icons/peace.d.ts +0 -5
- package/bootstrap-icons/peace.js +0 -12
- package/bootstrap-icons/pen-fill.d.ts +0 -5
- package/bootstrap-icons/pen-fill.js +0 -12
- package/bootstrap-icons/pen.d.ts +0 -5
- package/bootstrap-icons/pen.js +0 -12
- package/bootstrap-icons/pencil-fill.d.ts +0 -5
- package/bootstrap-icons/pencil-fill.js +0 -12
- package/bootstrap-icons/pencil-square.d.ts +0 -5
- package/bootstrap-icons/pencil-square.js +0 -12
- package/bootstrap-icons/pencil.d.ts +0 -5
- package/bootstrap-icons/pencil.js +0 -12
- package/bootstrap-icons/pentagon-fill.d.ts +0 -5
- package/bootstrap-icons/pentagon-fill.js +0 -12
- package/bootstrap-icons/pentagon-half.d.ts +0 -5
- package/bootstrap-icons/pentagon-half.js +0 -12
- package/bootstrap-icons/pentagon.d.ts +0 -5
- package/bootstrap-icons/pentagon.js +0 -12
- package/bootstrap-icons/people-fill.d.ts +0 -5
- package/bootstrap-icons/people-fill.js +0 -12
- package/bootstrap-icons/people.d.ts +0 -5
- package/bootstrap-icons/people.js +0 -12
- package/bootstrap-icons/percent.d.ts +0 -5
- package/bootstrap-icons/percent.js +0 -12
- package/bootstrap-icons/person-badge-fill.d.ts +0 -5
- package/bootstrap-icons/person-badge-fill.js +0 -12
- package/bootstrap-icons/person-badge.d.ts +0 -5
- package/bootstrap-icons/person-badge.js +0 -12
- package/bootstrap-icons/person-bounding-box.d.ts +0 -5
- package/bootstrap-icons/person-bounding-box.js +0 -12
- package/bootstrap-icons/person-check-fill.d.ts +0 -5
- package/bootstrap-icons/person-check-fill.js +0 -12
- package/bootstrap-icons/person-check.d.ts +0 -5
- package/bootstrap-icons/person-check.js +0 -12
- package/bootstrap-icons/person-circle.d.ts +0 -5
- package/bootstrap-icons/person-circle.js +0 -12
- package/bootstrap-icons/person-dash-fill.d.ts +0 -5
- package/bootstrap-icons/person-dash-fill.js +0 -12
- package/bootstrap-icons/person-dash.d.ts +0 -5
- package/bootstrap-icons/person-dash.js +0 -12
- package/bootstrap-icons/person-fill.d.ts +0 -5
- package/bootstrap-icons/person-fill.js +0 -12
- package/bootstrap-icons/person-heart.d.ts +0 -5
- package/bootstrap-icons/person-heart.js +0 -12
- package/bootstrap-icons/person-hearts.d.ts +0 -5
- package/bootstrap-icons/person-hearts.js +0 -12
- package/bootstrap-icons/person-lines-fill.d.ts +0 -5
- package/bootstrap-icons/person-lines-fill.js +0 -12
- package/bootstrap-icons/person-plus-fill.d.ts +0 -5
- package/bootstrap-icons/person-plus-fill.js +0 -12
- package/bootstrap-icons/person-plus.d.ts +0 -5
- package/bootstrap-icons/person-plus.js +0 -12
- package/bootstrap-icons/person-rolodex.d.ts +0 -5
- package/bootstrap-icons/person-rolodex.js +0 -12
- package/bootstrap-icons/person-square.d.ts +0 -5
- package/bootstrap-icons/person-square.js +0 -12
- package/bootstrap-icons/person-video.d.ts +0 -5
- package/bootstrap-icons/person-video.js +0 -12
- package/bootstrap-icons/person-video2.d.ts +0 -5
- package/bootstrap-icons/person-video2.js +0 -12
- package/bootstrap-icons/person-video3.d.ts +0 -5
- package/bootstrap-icons/person-video3.js +0 -12
- package/bootstrap-icons/person-workspace.d.ts +0 -5
- package/bootstrap-icons/person-workspace.js +0 -12
- package/bootstrap-icons/person-x-fill.d.ts +0 -5
- package/bootstrap-icons/person-x-fill.js +0 -12
- package/bootstrap-icons/person-x.d.ts +0 -5
- package/bootstrap-icons/person-x.js +0 -12
- package/bootstrap-icons/person.d.ts +0 -5
- package/bootstrap-icons/person.js +0 -12
- package/bootstrap-icons/phone-fill.d.ts +0 -5
- package/bootstrap-icons/phone-fill.js +0 -12
- package/bootstrap-icons/phone-flip.d.ts +0 -5
- package/bootstrap-icons/phone-flip.js +0 -12
- package/bootstrap-icons/phone-landscape-fill.d.ts +0 -5
- package/bootstrap-icons/phone-landscape-fill.js +0 -12
- package/bootstrap-icons/phone-landscape.d.ts +0 -5
- package/bootstrap-icons/phone-landscape.js +0 -12
- package/bootstrap-icons/phone-vibrate-fill.d.ts +0 -5
- package/bootstrap-icons/phone-vibrate-fill.js +0 -12
- package/bootstrap-icons/phone-vibrate.d.ts +0 -5
- package/bootstrap-icons/phone-vibrate.js +0 -12
- package/bootstrap-icons/phone.d.ts +0 -5
- package/bootstrap-icons/phone.js +0 -12
- package/bootstrap-icons/pie-chart-fill.d.ts +0 -5
- package/bootstrap-icons/pie-chart-fill.js +0 -12
- package/bootstrap-icons/pie-chart.d.ts +0 -5
- package/bootstrap-icons/pie-chart.js +0 -12
- package/bootstrap-icons/piggy-bank-fill.d.ts +0 -5
- package/bootstrap-icons/piggy-bank-fill.js +0 -12
- package/bootstrap-icons/piggy-bank.d.ts +0 -5
- package/bootstrap-icons/piggy-bank.js +0 -12
- package/bootstrap-icons/pin-angle-fill.d.ts +0 -5
- package/bootstrap-icons/pin-angle-fill.js +0 -12
- package/bootstrap-icons/pin-angle.d.ts +0 -5
- package/bootstrap-icons/pin-angle.js +0 -12
- package/bootstrap-icons/pin-fill.d.ts +0 -5
- package/bootstrap-icons/pin-fill.js +0 -12
- package/bootstrap-icons/pin-map-fill.d.ts +0 -5
- package/bootstrap-icons/pin-map-fill.js +0 -12
- package/bootstrap-icons/pin-map.d.ts +0 -5
- package/bootstrap-icons/pin-map.js +0 -12
- package/bootstrap-icons/pin.d.ts +0 -5
- package/bootstrap-icons/pin.js +0 -12
- package/bootstrap-icons/pinterest.d.ts +0 -5
- package/bootstrap-icons/pinterest.js +0 -12
- package/bootstrap-icons/pip-fill.d.ts +0 -5
- package/bootstrap-icons/pip-fill.js +0 -12
- package/bootstrap-icons/pip.d.ts +0 -5
- package/bootstrap-icons/pip.js +0 -12
- package/bootstrap-icons/play-btn-fill.d.ts +0 -5
- package/bootstrap-icons/play-btn-fill.js +0 -12
- package/bootstrap-icons/play-btn.d.ts +0 -5
- package/bootstrap-icons/play-btn.js +0 -12
- package/bootstrap-icons/play-circle-fill.d.ts +0 -5
- package/bootstrap-icons/play-circle-fill.js +0 -12
- package/bootstrap-icons/play-circle.d.ts +0 -5
- package/bootstrap-icons/play-circle.js +0 -12
- package/bootstrap-icons/play-fill.d.ts +0 -5
- package/bootstrap-icons/play-fill.js +0 -12
- package/bootstrap-icons/play.d.ts +0 -5
- package/bootstrap-icons/play.js +0 -12
- package/bootstrap-icons/playstation.d.ts +0 -5
- package/bootstrap-icons/playstation.js +0 -12
- package/bootstrap-icons/plug-fill.d.ts +0 -5
- package/bootstrap-icons/plug-fill.js +0 -12
- package/bootstrap-icons/plug.d.ts +0 -5
- package/bootstrap-icons/plug.js +0 -12
- package/bootstrap-icons/plugin.d.ts +0 -5
- package/bootstrap-icons/plugin.js +0 -12
- package/bootstrap-icons/plus-circle-dotted.d.ts +0 -5
- package/bootstrap-icons/plus-circle-dotted.js +0 -12
- package/bootstrap-icons/plus-circle-fill.d.ts +0 -5
- package/bootstrap-icons/plus-circle-fill.js +0 -12
- package/bootstrap-icons/plus-circle.d.ts +0 -5
- package/bootstrap-icons/plus-circle.js +0 -12
- package/bootstrap-icons/plus-lg.d.ts +0 -5
- package/bootstrap-icons/plus-lg.js +0 -12
- package/bootstrap-icons/plus-slash-minus.d.ts +0 -5
- package/bootstrap-icons/plus-slash-minus.js +0 -12
- package/bootstrap-icons/plus-square-dotted.d.ts +0 -5
- package/bootstrap-icons/plus-square-dotted.js +0 -12
- package/bootstrap-icons/plus-square-fill.d.ts +0 -5
- package/bootstrap-icons/plus-square-fill.js +0 -12
- package/bootstrap-icons/plus-square.d.ts +0 -5
- package/bootstrap-icons/plus-square.js +0 -12
- package/bootstrap-icons/plus.d.ts +0 -5
- package/bootstrap-icons/plus.js +0 -12
- package/bootstrap-icons/postage-fill.d.ts +0 -5
- package/bootstrap-icons/postage-fill.js +0 -12
- package/bootstrap-icons/postage-heart-fill.d.ts +0 -5
- package/bootstrap-icons/postage-heart-fill.js +0 -12
- package/bootstrap-icons/postage-heart.d.ts +0 -5
- package/bootstrap-icons/postage-heart.js +0 -12
- package/bootstrap-icons/postage.d.ts +0 -5
- package/bootstrap-icons/postage.js +0 -12
- package/bootstrap-icons/postcard-fill.d.ts +0 -5
- package/bootstrap-icons/postcard-fill.js +0 -12
- package/bootstrap-icons/postcard-heart-fill.d.ts +0 -5
- package/bootstrap-icons/postcard-heart-fill.js +0 -12
- package/bootstrap-icons/postcard-heart.d.ts +0 -5
- package/bootstrap-icons/postcard-heart.js +0 -12
- package/bootstrap-icons/postcard.d.ts +0 -5
- package/bootstrap-icons/postcard.js +0 -12
- package/bootstrap-icons/power.d.ts +0 -5
- package/bootstrap-icons/power.js +0 -12
- package/bootstrap-icons/printer-fill.d.ts +0 -5
- package/bootstrap-icons/printer-fill.js +0 -12
- package/bootstrap-icons/printer.d.ts +0 -5
- package/bootstrap-icons/printer.js +0 -12
- package/bootstrap-icons/projector-fill.d.ts +0 -5
- package/bootstrap-icons/projector-fill.js +0 -12
- package/bootstrap-icons/projector.d.ts +0 -5
- package/bootstrap-icons/projector.js +0 -12
- package/bootstrap-icons/puzzle-fill.d.ts +0 -5
- package/bootstrap-icons/puzzle-fill.js +0 -12
- package/bootstrap-icons/puzzle.d.ts +0 -5
- package/bootstrap-icons/puzzle.js +0 -12
- package/bootstrap-icons/qr-code-scan.d.ts +0 -5
- package/bootstrap-icons/qr-code-scan.js +0 -12
- package/bootstrap-icons/qr-code.d.ts +0 -5
- package/bootstrap-icons/qr-code.js +0 -12
- package/bootstrap-icons/question-circle-fill.d.ts +0 -5
- package/bootstrap-icons/question-circle-fill.js +0 -12
- package/bootstrap-icons/question-circle.d.ts +0 -5
- package/bootstrap-icons/question-circle.js +0 -12
- package/bootstrap-icons/question-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/question-diamond-fill.js +0 -12
- package/bootstrap-icons/question-diamond.d.ts +0 -5
- package/bootstrap-icons/question-diamond.js +0 -12
- package/bootstrap-icons/question-lg.d.ts +0 -5
- package/bootstrap-icons/question-lg.js +0 -12
- package/bootstrap-icons/question-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/question-octagon-fill.js +0 -12
- package/bootstrap-icons/question-octagon.d.ts +0 -5
- package/bootstrap-icons/question-octagon.js +0 -12
- package/bootstrap-icons/question-square-fill.d.ts +0 -5
- package/bootstrap-icons/question-square-fill.js +0 -12
- package/bootstrap-icons/question-square.d.ts +0 -5
- package/bootstrap-icons/question-square.js +0 -12
- package/bootstrap-icons/question.d.ts +0 -5
- package/bootstrap-icons/question.js +0 -12
- package/bootstrap-icons/quora.d.ts +0 -5
- package/bootstrap-icons/quora.js +0 -12
- package/bootstrap-icons/quote.d.ts +0 -5
- package/bootstrap-icons/quote.js +0 -12
- package/bootstrap-icons/radioactive.d.ts +0 -5
- package/bootstrap-icons/radioactive.js +0 -12
- package/bootstrap-icons/rainbow.d.ts +0 -5
- package/bootstrap-icons/rainbow.js +0 -12
- package/bootstrap-icons/receipt-cutoff.d.ts +0 -5
- package/bootstrap-icons/receipt-cutoff.js +0 -12
- package/bootstrap-icons/receipt.d.ts +0 -5
- package/bootstrap-icons/receipt.js +0 -12
- package/bootstrap-icons/reception-0.d.ts +0 -5
- package/bootstrap-icons/reception-0.js +0 -12
- package/bootstrap-icons/reception-1.d.ts +0 -5
- package/bootstrap-icons/reception-1.js +0 -12
- package/bootstrap-icons/reception-2.d.ts +0 -5
- package/bootstrap-icons/reception-2.js +0 -12
- package/bootstrap-icons/reception-3.d.ts +0 -5
- package/bootstrap-icons/reception-3.js +0 -12
- package/bootstrap-icons/reception-4.d.ts +0 -5
- package/bootstrap-icons/reception-4.js +0 -12
- package/bootstrap-icons/record-btn-fill.d.ts +0 -5
- package/bootstrap-icons/record-btn-fill.js +0 -12
- package/bootstrap-icons/record-btn.d.ts +0 -5
- package/bootstrap-icons/record-btn.js +0 -12
- package/bootstrap-icons/record-circle-fill.d.ts +0 -5
- package/bootstrap-icons/record-circle-fill.js +0 -12
- package/bootstrap-icons/record-circle.d.ts +0 -5
- package/bootstrap-icons/record-circle.js +0 -12
- package/bootstrap-icons/record-fill.d.ts +0 -5
- package/bootstrap-icons/record-fill.js +0 -12
- package/bootstrap-icons/record.d.ts +0 -5
- package/bootstrap-icons/record.js +0 -12
- package/bootstrap-icons/record2-fill.d.ts +0 -5
- package/bootstrap-icons/record2-fill.js +0 -12
- package/bootstrap-icons/record2.d.ts +0 -5
- package/bootstrap-icons/record2.js +0 -12
- package/bootstrap-icons/recycle.d.ts +0 -5
- package/bootstrap-icons/recycle.js +0 -12
- package/bootstrap-icons/reddit.d.ts +0 -5
- package/bootstrap-icons/reddit.js +0 -12
- package/bootstrap-icons/reply-all-fill.d.ts +0 -5
- package/bootstrap-icons/reply-all-fill.js +0 -12
- package/bootstrap-icons/reply-all.d.ts +0 -5
- package/bootstrap-icons/reply-all.js +0 -12
- package/bootstrap-icons/reply-fill.d.ts +0 -5
- package/bootstrap-icons/reply-fill.js +0 -12
- package/bootstrap-icons/reply.d.ts +0 -5
- package/bootstrap-icons/reply.js +0 -12
- package/bootstrap-icons/robot.d.ts +0 -5
- package/bootstrap-icons/robot.js +0 -12
- package/bootstrap-icons/router-fill.d.ts +0 -5
- package/bootstrap-icons/router-fill.js +0 -12
- package/bootstrap-icons/router.d.ts +0 -5
- package/bootstrap-icons/router.js +0 -12
- package/bootstrap-icons/rss-fill.d.ts +0 -5
- package/bootstrap-icons/rss-fill.js +0 -12
- package/bootstrap-icons/rss.d.ts +0 -5
- package/bootstrap-icons/rss.js +0 -12
- package/bootstrap-icons/rulers.d.ts +0 -5
- package/bootstrap-icons/rulers.js +0 -12
- package/bootstrap-icons/safe-fill.d.ts +0 -5
- package/bootstrap-icons/safe-fill.js +0 -12
- package/bootstrap-icons/safe.d.ts +0 -5
- package/bootstrap-icons/safe.js +0 -12
- package/bootstrap-icons/safe2-fill.d.ts +0 -5
- package/bootstrap-icons/safe2-fill.js +0 -12
- package/bootstrap-icons/safe2.d.ts +0 -5
- package/bootstrap-icons/safe2.js +0 -12
- package/bootstrap-icons/save-fill.d.ts +0 -5
- package/bootstrap-icons/save-fill.js +0 -12
- package/bootstrap-icons/save.d.ts +0 -5
- package/bootstrap-icons/save.js +0 -12
- package/bootstrap-icons/save2-fill.d.ts +0 -5
- package/bootstrap-icons/save2-fill.js +0 -12
- package/bootstrap-icons/save2.d.ts +0 -5
- package/bootstrap-icons/save2.js +0 -12
- package/bootstrap-icons/scissors.d.ts +0 -5
- package/bootstrap-icons/scissors.js +0 -12
- package/bootstrap-icons/screwdriver.d.ts +0 -5
- package/bootstrap-icons/screwdriver.js +0 -12
- package/bootstrap-icons/sd-card-fill.d.ts +0 -5
- package/bootstrap-icons/sd-card-fill.js +0 -12
- package/bootstrap-icons/sd-card.d.ts +0 -5
- package/bootstrap-icons/sd-card.js +0 -12
- package/bootstrap-icons/search-heart-fill.d.ts +0 -5
- package/bootstrap-icons/search-heart-fill.js +0 -12
- package/bootstrap-icons/search-heart.d.ts +0 -5
- package/bootstrap-icons/search-heart.js +0 -12
- package/bootstrap-icons/search.d.ts +0 -5
- package/bootstrap-icons/search.js +0 -12
- package/bootstrap-icons/segmented-nav.d.ts +0 -5
- package/bootstrap-icons/segmented-nav.js +0 -12
- package/bootstrap-icons/send-check-fill.d.ts +0 -5
- package/bootstrap-icons/send-check-fill.js +0 -12
- package/bootstrap-icons/send-check.d.ts +0 -5
- package/bootstrap-icons/send-check.js +0 -12
- package/bootstrap-icons/send-dash-fill.d.ts +0 -5
- package/bootstrap-icons/send-dash-fill.js +0 -12
- package/bootstrap-icons/send-dash.d.ts +0 -5
- package/bootstrap-icons/send-dash.js +0 -12
- package/bootstrap-icons/send-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/send-exclamation-fill.js +0 -12
- package/bootstrap-icons/send-exclamation.d.ts +0 -5
- package/bootstrap-icons/send-exclamation.js +0 -12
- package/bootstrap-icons/send-fill.d.ts +0 -5
- package/bootstrap-icons/send-fill.js +0 -12
- package/bootstrap-icons/send-plus-fill.d.ts +0 -5
- package/bootstrap-icons/send-plus-fill.js +0 -12
- package/bootstrap-icons/send-plus.d.ts +0 -5
- package/bootstrap-icons/send-plus.js +0 -12
- package/bootstrap-icons/send-slash-fill.d.ts +0 -5
- package/bootstrap-icons/send-slash-fill.js +0 -12
- package/bootstrap-icons/send-slash.d.ts +0 -5
- package/bootstrap-icons/send-slash.js +0 -12
- package/bootstrap-icons/send-x-fill.d.ts +0 -5
- package/bootstrap-icons/send-x-fill.js +0 -12
- package/bootstrap-icons/send-x.d.ts +0 -5
- package/bootstrap-icons/send-x.js +0 -12
- package/bootstrap-icons/send.d.ts +0 -5
- package/bootstrap-icons/send.js +0 -12
- package/bootstrap-icons/server.d.ts +0 -5
- package/bootstrap-icons/server.js +0 -12
- package/bootstrap-icons/share-fill.d.ts +0 -5
- package/bootstrap-icons/share-fill.js +0 -12
- package/bootstrap-icons/share.d.ts +0 -5
- package/bootstrap-icons/share.js +0 -12
- package/bootstrap-icons/shield-check.d.ts +0 -5
- package/bootstrap-icons/shield-check.js +0 -12
- package/bootstrap-icons/shield-exclamation.d.ts +0 -5
- package/bootstrap-icons/shield-exclamation.js +0 -12
- package/bootstrap-icons/shield-fill-check.d.ts +0 -5
- package/bootstrap-icons/shield-fill-check.js +0 -12
- package/bootstrap-icons/shield-fill-exclamation.d.ts +0 -5
- package/bootstrap-icons/shield-fill-exclamation.js +0 -12
- package/bootstrap-icons/shield-fill-minus.d.ts +0 -5
- package/bootstrap-icons/shield-fill-minus.js +0 -12
- package/bootstrap-icons/shield-fill-plus.d.ts +0 -5
- package/bootstrap-icons/shield-fill-plus.js +0 -12
- package/bootstrap-icons/shield-fill-x.d.ts +0 -5
- package/bootstrap-icons/shield-fill-x.js +0 -12
- package/bootstrap-icons/shield-fill.d.ts +0 -5
- package/bootstrap-icons/shield-fill.js +0 -12
- package/bootstrap-icons/shield-lock-fill.d.ts +0 -5
- package/bootstrap-icons/shield-lock-fill.js +0 -12
- package/bootstrap-icons/shield-lock.d.ts +0 -5
- package/bootstrap-icons/shield-lock.js +0 -12
- package/bootstrap-icons/shield-minus.d.ts +0 -5
- package/bootstrap-icons/shield-minus.js +0 -12
- package/bootstrap-icons/shield-plus.d.ts +0 -5
- package/bootstrap-icons/shield-plus.js +0 -12
- package/bootstrap-icons/shield-shaded.d.ts +0 -5
- package/bootstrap-icons/shield-shaded.js +0 -12
- package/bootstrap-icons/shield-slash-fill.d.ts +0 -5
- package/bootstrap-icons/shield-slash-fill.js +0 -12
- package/bootstrap-icons/shield-slash.d.ts +0 -5
- package/bootstrap-icons/shield-slash.js +0 -12
- package/bootstrap-icons/shield-x.d.ts +0 -5
- package/bootstrap-icons/shield-x.js +0 -12
- package/bootstrap-icons/shield.d.ts +0 -5
- package/bootstrap-icons/shield.js +0 -12
- package/bootstrap-icons/shift-fill.d.ts +0 -5
- package/bootstrap-icons/shift-fill.js +0 -12
- package/bootstrap-icons/shift.d.ts +0 -5
- package/bootstrap-icons/shift.js +0 -12
- package/bootstrap-icons/shop-window.d.ts +0 -5
- package/bootstrap-icons/shop-window.js +0 -12
- package/bootstrap-icons/shop.d.ts +0 -5
- package/bootstrap-icons/shop.js +0 -12
- package/bootstrap-icons/shuffle.d.ts +0 -5
- package/bootstrap-icons/shuffle.js +0 -12
- package/bootstrap-icons/signal.d.ts +0 -5
- package/bootstrap-icons/signal.js +0 -12
- package/bootstrap-icons/signpost-2-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-2-fill.js +0 -12
- package/bootstrap-icons/signpost-2.d.ts +0 -5
- package/bootstrap-icons/signpost-2.js +0 -12
- package/bootstrap-icons/signpost-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-fill.js +0 -12
- package/bootstrap-icons/signpost-split-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-split-fill.js +0 -12
- package/bootstrap-icons/signpost-split.d.ts +0 -5
- package/bootstrap-icons/signpost-split.js +0 -12
- package/bootstrap-icons/signpost.d.ts +0 -5
- package/bootstrap-icons/signpost.js +0 -12
- package/bootstrap-icons/sim-fill.d.ts +0 -5
- package/bootstrap-icons/sim-fill.js +0 -12
- package/bootstrap-icons/sim.d.ts +0 -5
- package/bootstrap-icons/sim.js +0 -12
- package/bootstrap-icons/skip-backward-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-btn-fill.js +0 -12
- package/bootstrap-icons/skip-backward-btn.d.ts +0 -5
- package/bootstrap-icons/skip-backward-btn.js +0 -12
- package/bootstrap-icons/skip-backward-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-circle-fill.js +0 -12
- package/bootstrap-icons/skip-backward-circle.d.ts +0 -5
- package/bootstrap-icons/skip-backward-circle.js +0 -12
- package/bootstrap-icons/skip-backward-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-fill.js +0 -12
- package/bootstrap-icons/skip-backward.d.ts +0 -5
- package/bootstrap-icons/skip-backward.js +0 -12
- package/bootstrap-icons/skip-end-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-btn-fill.js +0 -12
- package/bootstrap-icons/skip-end-btn.d.ts +0 -5
- package/bootstrap-icons/skip-end-btn.js +0 -12
- package/bootstrap-icons/skip-end-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-circle-fill.js +0 -12
- package/bootstrap-icons/skip-end-circle.d.ts +0 -5
- package/bootstrap-icons/skip-end-circle.js +0 -12
- package/bootstrap-icons/skip-end-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-fill.js +0 -12
- package/bootstrap-icons/skip-end.d.ts +0 -5
- package/bootstrap-icons/skip-end.js +0 -12
- package/bootstrap-icons/skip-forward-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-btn-fill.js +0 -12
- package/bootstrap-icons/skip-forward-btn.d.ts +0 -5
- package/bootstrap-icons/skip-forward-btn.js +0 -12
- package/bootstrap-icons/skip-forward-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-circle-fill.js +0 -12
- package/bootstrap-icons/skip-forward-circle.d.ts +0 -5
- package/bootstrap-icons/skip-forward-circle.js +0 -12
- package/bootstrap-icons/skip-forward-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-fill.js +0 -12
- package/bootstrap-icons/skip-forward.d.ts +0 -5
- package/bootstrap-icons/skip-forward.js +0 -12
- package/bootstrap-icons/skip-start-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-btn-fill.js +0 -12
- package/bootstrap-icons/skip-start-btn.d.ts +0 -5
- package/bootstrap-icons/skip-start-btn.js +0 -12
- package/bootstrap-icons/skip-start-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-circle-fill.js +0 -12
- package/bootstrap-icons/skip-start-circle.d.ts +0 -5
- package/bootstrap-icons/skip-start-circle.js +0 -12
- package/bootstrap-icons/skip-start-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-fill.js +0 -12
- package/bootstrap-icons/skip-start.d.ts +0 -5
- package/bootstrap-icons/skip-start.js +0 -12
- package/bootstrap-icons/skype.d.ts +0 -5
- package/bootstrap-icons/skype.js +0 -12
- package/bootstrap-icons/slack.d.ts +0 -5
- package/bootstrap-icons/slack.js +0 -12
- package/bootstrap-icons/slash-circle-fill.d.ts +0 -5
- package/bootstrap-icons/slash-circle-fill.js +0 -12
- package/bootstrap-icons/slash-circle.d.ts +0 -5
- package/bootstrap-icons/slash-circle.js +0 -12
- package/bootstrap-icons/slash-lg.d.ts +0 -5
- package/bootstrap-icons/slash-lg.js +0 -12
- package/bootstrap-icons/slash-square-fill.d.ts +0 -5
- package/bootstrap-icons/slash-square-fill.js +0 -12
- package/bootstrap-icons/slash-square.d.ts +0 -5
- package/bootstrap-icons/slash-square.js +0 -12
- package/bootstrap-icons/slash.d.ts +0 -5
- package/bootstrap-icons/slash.js +0 -12
- package/bootstrap-icons/sliders.d.ts +0 -5
- package/bootstrap-icons/sliders.js +0 -12
- package/bootstrap-icons/sliders2-vertical.d.ts +0 -5
- package/bootstrap-icons/sliders2-vertical.js +0 -12
- package/bootstrap-icons/sliders2.d.ts +0 -5
- package/bootstrap-icons/sliders2.js +0 -12
- package/bootstrap-icons/smartwatch.d.ts +0 -5
- package/bootstrap-icons/smartwatch.js +0 -12
- package/bootstrap-icons/snapchat.d.ts +0 -5
- package/bootstrap-icons/snapchat.js +0 -12
- package/bootstrap-icons/snow.d.ts +0 -5
- package/bootstrap-icons/snow.js +0 -12
- package/bootstrap-icons/snow2.d.ts +0 -5
- package/bootstrap-icons/snow2.js +0 -12
- package/bootstrap-icons/snow3.d.ts +0 -5
- package/bootstrap-icons/snow3.js +0 -12
- package/bootstrap-icons/sort-alpha-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-down-alt.js +0 -12
- package/bootstrap-icons/sort-alpha-down.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-down.js +0 -12
- package/bootstrap-icons/sort-alpha-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-up-alt.js +0 -12
- package/bootstrap-icons/sort-alpha-up.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-up.js +0 -12
- package/bootstrap-icons/sort-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-down-alt.js +0 -12
- package/bootstrap-icons/sort-down.d.ts +0 -5
- package/bootstrap-icons/sort-down.js +0 -12
- package/bootstrap-icons/sort-numeric-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-down-alt.js +0 -12
- package/bootstrap-icons/sort-numeric-down.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-down.js +0 -12
- package/bootstrap-icons/sort-numeric-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-up-alt.js +0 -12
- package/bootstrap-icons/sort-numeric-up.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-up.js +0 -12
- package/bootstrap-icons/sort-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-up-alt.js +0 -12
- package/bootstrap-icons/sort-up.d.ts +0 -5
- package/bootstrap-icons/sort-up.js +0 -12
- package/bootstrap-icons/soundwave.d.ts +0 -5
- package/bootstrap-icons/soundwave.js +0 -12
- package/bootstrap-icons/speaker-fill.d.ts +0 -5
- package/bootstrap-icons/speaker-fill.js +0 -12
- package/bootstrap-icons/speaker.d.ts +0 -5
- package/bootstrap-icons/speaker.js +0 -12
- package/bootstrap-icons/speedometer.d.ts +0 -5
- package/bootstrap-icons/speedometer.js +0 -12
- package/bootstrap-icons/speedometer2.d.ts +0 -5
- package/bootstrap-icons/speedometer2.js +0 -12
- package/bootstrap-icons/spellcheck.d.ts +0 -5
- package/bootstrap-icons/spellcheck.js +0 -12
- package/bootstrap-icons/spotify.d.ts +0 -5
- package/bootstrap-icons/spotify.js +0 -12
- package/bootstrap-icons/square-fill.d.ts +0 -5
- package/bootstrap-icons/square-fill.js +0 -12
- package/bootstrap-icons/square-half.d.ts +0 -5
- package/bootstrap-icons/square-half.js +0 -12
- package/bootstrap-icons/square.d.ts +0 -5
- package/bootstrap-icons/square.js +0 -12
- package/bootstrap-icons/stack-overflow.d.ts +0 -5
- package/bootstrap-icons/stack-overflow.js +0 -12
- package/bootstrap-icons/stack.d.ts +0 -5
- package/bootstrap-icons/stack.js +0 -12
- package/bootstrap-icons/star-fill.d.ts +0 -5
- package/bootstrap-icons/star-fill.js +0 -12
- package/bootstrap-icons/star-half.d.ts +0 -5
- package/bootstrap-icons/star-half.js +0 -12
- package/bootstrap-icons/star.d.ts +0 -5
- package/bootstrap-icons/star.js +0 -12
- package/bootstrap-icons/stars.d.ts +0 -5
- package/bootstrap-icons/stars.js +0 -12
- package/bootstrap-icons/steam.d.ts +0 -5
- package/bootstrap-icons/steam.js +0 -12
- package/bootstrap-icons/stickies-fill.d.ts +0 -5
- package/bootstrap-icons/stickies-fill.js +0 -12
- package/bootstrap-icons/stickies.d.ts +0 -5
- package/bootstrap-icons/stickies.js +0 -12
- package/bootstrap-icons/sticky-fill.d.ts +0 -5
- package/bootstrap-icons/sticky-fill.js +0 -12
- package/bootstrap-icons/sticky.d.ts +0 -5
- package/bootstrap-icons/sticky.js +0 -12
- package/bootstrap-icons/stop-btn-fill.d.ts +0 -5
- package/bootstrap-icons/stop-btn-fill.js +0 -12
- package/bootstrap-icons/stop-btn.d.ts +0 -5
- package/bootstrap-icons/stop-btn.js +0 -12
- package/bootstrap-icons/stop-circle-fill.d.ts +0 -5
- package/bootstrap-icons/stop-circle-fill.js +0 -12
- package/bootstrap-icons/stop-circle.d.ts +0 -5
- package/bootstrap-icons/stop-circle.js +0 -12
- package/bootstrap-icons/stop-fill.d.ts +0 -5
- package/bootstrap-icons/stop-fill.js +0 -12
- package/bootstrap-icons/stop.d.ts +0 -5
- package/bootstrap-icons/stop.js +0 -12
- package/bootstrap-icons/stoplights-fill.d.ts +0 -5
- package/bootstrap-icons/stoplights-fill.js +0 -12
- package/bootstrap-icons/stoplights.d.ts +0 -5
- package/bootstrap-icons/stoplights.js +0 -12
- package/bootstrap-icons/stopwatch-fill.d.ts +0 -5
- package/bootstrap-icons/stopwatch-fill.js +0 -12
- package/bootstrap-icons/stopwatch.d.ts +0 -5
- package/bootstrap-icons/stopwatch.js +0 -12
- package/bootstrap-icons/strava.d.ts +0 -5
- package/bootstrap-icons/strava.js +0 -12
- package/bootstrap-icons/subtract.d.ts +0 -5
- package/bootstrap-icons/subtract.js +0 -12
- package/bootstrap-icons/suit-club-fill.d.ts +0 -5
- package/bootstrap-icons/suit-club-fill.js +0 -12
- package/bootstrap-icons/suit-club.d.ts +0 -5
- package/bootstrap-icons/suit-club.js +0 -12
- package/bootstrap-icons/suit-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/suit-diamond-fill.js +0 -12
- package/bootstrap-icons/suit-diamond.d.ts +0 -5
- package/bootstrap-icons/suit-diamond.js +0 -12
- package/bootstrap-icons/suit-heart-fill.d.ts +0 -5
- package/bootstrap-icons/suit-heart-fill.js +0 -12
- package/bootstrap-icons/suit-heart.d.ts +0 -5
- package/bootstrap-icons/suit-heart.js +0 -12
- package/bootstrap-icons/suit-spade-fill.d.ts +0 -5
- package/bootstrap-icons/suit-spade-fill.js +0 -12
- package/bootstrap-icons/suit-spade.d.ts +0 -5
- package/bootstrap-icons/suit-spade.js +0 -12
- package/bootstrap-icons/sun-fill.d.ts +0 -5
- package/bootstrap-icons/sun-fill.js +0 -12
- package/bootstrap-icons/sun.d.ts +0 -5
- package/bootstrap-icons/sun.js +0 -12
- package/bootstrap-icons/sunglasses.d.ts +0 -5
- package/bootstrap-icons/sunglasses.js +0 -12
- package/bootstrap-icons/sunrise-fill.d.ts +0 -5
- package/bootstrap-icons/sunrise-fill.js +0 -12
- package/bootstrap-icons/sunrise.d.ts +0 -5
- package/bootstrap-icons/sunrise.js +0 -12
- package/bootstrap-icons/sunset-fill.d.ts +0 -5
- package/bootstrap-icons/sunset-fill.js +0 -12
- package/bootstrap-icons/sunset.d.ts +0 -5
- package/bootstrap-icons/sunset.js +0 -12
- package/bootstrap-icons/symmetry-horizontal.d.ts +0 -5
- package/bootstrap-icons/symmetry-horizontal.js +0 -12
- package/bootstrap-icons/symmetry-vertical.d.ts +0 -5
- package/bootstrap-icons/symmetry-vertical.js +0 -12
- package/bootstrap-icons/table.d.ts +0 -5
- package/bootstrap-icons/table.js +0 -12
- package/bootstrap-icons/tablet-fill.d.ts +0 -5
- package/bootstrap-icons/tablet-fill.js +0 -12
- package/bootstrap-icons/tablet-landscape-fill.d.ts +0 -5
- package/bootstrap-icons/tablet-landscape-fill.js +0 -12
- package/bootstrap-icons/tablet-landscape.d.ts +0 -5
- package/bootstrap-icons/tablet-landscape.js +0 -12
- package/bootstrap-icons/tablet.d.ts +0 -5
- package/bootstrap-icons/tablet.js +0 -12
- package/bootstrap-icons/tag-fill.d.ts +0 -5
- package/bootstrap-icons/tag-fill.js +0 -12
- package/bootstrap-icons/tag.d.ts +0 -5
- package/bootstrap-icons/tag.js +0 -12
- package/bootstrap-icons/tags-fill.d.ts +0 -5
- package/bootstrap-icons/tags-fill.js +0 -12
- package/bootstrap-icons/tags.d.ts +0 -5
- package/bootstrap-icons/tags.js +0 -12
- package/bootstrap-icons/telegram.d.ts +0 -5
- package/bootstrap-icons/telegram.js +0 -12
- package/bootstrap-icons/telephone-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-fill.js +0 -12
- package/bootstrap-icons/telephone-forward-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-forward-fill.js +0 -12
- package/bootstrap-icons/telephone-forward.d.ts +0 -5
- package/bootstrap-icons/telephone-forward.js +0 -12
- package/bootstrap-icons/telephone-inbound-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-inbound-fill.js +0 -12
- package/bootstrap-icons/telephone-inbound.d.ts +0 -5
- package/bootstrap-icons/telephone-inbound.js +0 -12
- package/bootstrap-icons/telephone-minus-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-minus-fill.js +0 -12
- package/bootstrap-icons/telephone-minus.d.ts +0 -5
- package/bootstrap-icons/telephone-minus.js +0 -12
- package/bootstrap-icons/telephone-outbound-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-outbound-fill.js +0 -12
- package/bootstrap-icons/telephone-outbound.d.ts +0 -5
- package/bootstrap-icons/telephone-outbound.js +0 -12
- package/bootstrap-icons/telephone-plus-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-plus-fill.js +0 -12
- package/bootstrap-icons/telephone-plus.d.ts +0 -5
- package/bootstrap-icons/telephone-plus.js +0 -12
- package/bootstrap-icons/telephone-x-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-x-fill.js +0 -12
- package/bootstrap-icons/telephone-x.d.ts +0 -5
- package/bootstrap-icons/telephone-x.js +0 -12
- package/bootstrap-icons/telephone.d.ts +0 -5
- package/bootstrap-icons/telephone.js +0 -12
- package/bootstrap-icons/terminal-dash.d.ts +0 -5
- package/bootstrap-icons/terminal-dash.js +0 -12
- package/bootstrap-icons/terminal-fill.d.ts +0 -5
- package/bootstrap-icons/terminal-fill.js +0 -12
- package/bootstrap-icons/terminal-plus.d.ts +0 -5
- package/bootstrap-icons/terminal-plus.js +0 -12
- package/bootstrap-icons/terminal-split.d.ts +0 -5
- package/bootstrap-icons/terminal-split.js +0 -12
- package/bootstrap-icons/terminal-x.d.ts +0 -5
- package/bootstrap-icons/terminal-x.js +0 -12
- package/bootstrap-icons/terminal.d.ts +0 -5
- package/bootstrap-icons/terminal.js +0 -12
- package/bootstrap-icons/text-center.d.ts +0 -5
- package/bootstrap-icons/text-center.js +0 -12
- package/bootstrap-icons/text-indent-left.d.ts +0 -5
- package/bootstrap-icons/text-indent-left.js +0 -12
- package/bootstrap-icons/text-indent-right.d.ts +0 -5
- package/bootstrap-icons/text-indent-right.js +0 -12
- package/bootstrap-icons/text-left.d.ts +0 -5
- package/bootstrap-icons/text-left.js +0 -12
- package/bootstrap-icons/text-paragraph.d.ts +0 -5
- package/bootstrap-icons/text-paragraph.js +0 -12
- package/bootstrap-icons/text-right.d.ts +0 -5
- package/bootstrap-icons/text-right.js +0 -12
- package/bootstrap-icons/textarea-resize.d.ts +0 -5
- package/bootstrap-icons/textarea-resize.js +0 -12
- package/bootstrap-icons/textarea-t.d.ts +0 -5
- package/bootstrap-icons/textarea-t.js +0 -12
- package/bootstrap-icons/textarea.d.ts +0 -5
- package/bootstrap-icons/textarea.js +0 -12
- package/bootstrap-icons/thermometer-half.d.ts +0 -5
- package/bootstrap-icons/thermometer-half.js +0 -12
- package/bootstrap-icons/thermometer-high.d.ts +0 -5
- package/bootstrap-icons/thermometer-high.js +0 -12
- package/bootstrap-icons/thermometer-low.d.ts +0 -5
- package/bootstrap-icons/thermometer-low.js +0 -12
- package/bootstrap-icons/thermometer-snow.d.ts +0 -5
- package/bootstrap-icons/thermometer-snow.js +0 -12
- package/bootstrap-icons/thermometer-sun.d.ts +0 -5
- package/bootstrap-icons/thermometer-sun.js +0 -12
- package/bootstrap-icons/thermometer.d.ts +0 -5
- package/bootstrap-icons/thermometer.js +0 -12
- package/bootstrap-icons/three-dots-vertical.d.ts +0 -5
- package/bootstrap-icons/three-dots-vertical.js +0 -12
- package/bootstrap-icons/three-dots.d.ts +0 -5
- package/bootstrap-icons/three-dots.js +0 -12
- package/bootstrap-icons/thunderbolt-fill.d.ts +0 -5
- package/bootstrap-icons/thunderbolt-fill.js +0 -12
- package/bootstrap-icons/thunderbolt.d.ts +0 -5
- package/bootstrap-icons/thunderbolt.js +0 -12
- package/bootstrap-icons/ticket-detailed-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-detailed-fill.js +0 -12
- package/bootstrap-icons/ticket-detailed.d.ts +0 -5
- package/bootstrap-icons/ticket-detailed.js +0 -12
- package/bootstrap-icons/ticket-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-fill.js +0 -12
- package/bootstrap-icons/ticket-perforated-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-perforated-fill.js +0 -12
- package/bootstrap-icons/ticket-perforated.d.ts +0 -5
- package/bootstrap-icons/ticket-perforated.js +0 -12
- package/bootstrap-icons/ticket.d.ts +0 -5
- package/bootstrap-icons/ticket.js +0 -12
- package/bootstrap-icons/tiktok.d.ts +0 -5
- package/bootstrap-icons/tiktok.js +0 -12
- package/bootstrap-icons/toggle-off.d.ts +0 -5
- package/bootstrap-icons/toggle-off.js +0 -12
- package/bootstrap-icons/toggle-on.d.ts +0 -5
- package/bootstrap-icons/toggle-on.js +0 -12
- package/bootstrap-icons/toggle2-off.d.ts +0 -5
- package/bootstrap-icons/toggle2-off.js +0 -12
- package/bootstrap-icons/toggle2-on.d.ts +0 -5
- package/bootstrap-icons/toggle2-on.js +0 -12
- package/bootstrap-icons/toggles.d.ts +0 -5
- package/bootstrap-icons/toggles.js +0 -12
- package/bootstrap-icons/toggles2.d.ts +0 -5
- package/bootstrap-icons/toggles2.js +0 -12
- package/bootstrap-icons/tools.d.ts +0 -5
- package/bootstrap-icons/tools.js +0 -12
- package/bootstrap-icons/tornado.d.ts +0 -5
- package/bootstrap-icons/tornado.js +0 -12
- package/bootstrap-icons/translate.d.ts +0 -5
- package/bootstrap-icons/translate.js +0 -12
- package/bootstrap-icons/trash-fill.d.ts +0 -5
- package/bootstrap-icons/trash-fill.js +0 -12
- package/bootstrap-icons/trash.d.ts +0 -5
- package/bootstrap-icons/trash.js +0 -12
- package/bootstrap-icons/trash2-fill.d.ts +0 -5
- package/bootstrap-icons/trash2-fill.js +0 -12
- package/bootstrap-icons/trash2.d.ts +0 -5
- package/bootstrap-icons/trash2.js +0 -12
- package/bootstrap-icons/trash3-fill.d.ts +0 -5
- package/bootstrap-icons/trash3-fill.js +0 -12
- package/bootstrap-icons/trash3.d.ts +0 -5
- package/bootstrap-icons/trash3.js +0 -12
- package/bootstrap-icons/tree-fill.d.ts +0 -5
- package/bootstrap-icons/tree-fill.js +0 -12
- package/bootstrap-icons/tree.d.ts +0 -5
- package/bootstrap-icons/tree.js +0 -12
- package/bootstrap-icons/triangle-fill.d.ts +0 -5
- package/bootstrap-icons/triangle-fill.js +0 -12
- package/bootstrap-icons/triangle-half.d.ts +0 -5
- package/bootstrap-icons/triangle-half.js +0 -12
- package/bootstrap-icons/triangle.d.ts +0 -5
- package/bootstrap-icons/triangle.js +0 -12
- package/bootstrap-icons/trophy-fill.d.ts +0 -5
- package/bootstrap-icons/trophy-fill.js +0 -12
- package/bootstrap-icons/trophy.d.ts +0 -5
- package/bootstrap-icons/trophy.js +0 -12
- package/bootstrap-icons/tropical-storm.d.ts +0 -5
- package/bootstrap-icons/tropical-storm.js +0 -12
- package/bootstrap-icons/truck-flatbed.d.ts +0 -5
- package/bootstrap-icons/truck-flatbed.js +0 -12
- package/bootstrap-icons/truck.d.ts +0 -5
- package/bootstrap-icons/truck.js +0 -12
- package/bootstrap-icons/tsunami.d.ts +0 -5
- package/bootstrap-icons/tsunami.js +0 -12
- package/bootstrap-icons/tv-fill.d.ts +0 -5
- package/bootstrap-icons/tv-fill.js +0 -12
- package/bootstrap-icons/tv.d.ts +0 -5
- package/bootstrap-icons/tv.js +0 -12
- package/bootstrap-icons/twitch.d.ts +0 -5
- package/bootstrap-icons/twitch.js +0 -12
- package/bootstrap-icons/twitter.d.ts +0 -5
- package/bootstrap-icons/twitter.js +0 -12
- package/bootstrap-icons/type-bold.d.ts +0 -5
- package/bootstrap-icons/type-bold.js +0 -12
- package/bootstrap-icons/type-h1.d.ts +0 -5
- package/bootstrap-icons/type-h1.js +0 -12
- package/bootstrap-icons/type-h2.d.ts +0 -5
- package/bootstrap-icons/type-h2.js +0 -12
- package/bootstrap-icons/type-h3.d.ts +0 -5
- package/bootstrap-icons/type-h3.js +0 -12
- package/bootstrap-icons/type-italic.d.ts +0 -5
- package/bootstrap-icons/type-italic.js +0 -12
- package/bootstrap-icons/type-strikethrough.d.ts +0 -5
- package/bootstrap-icons/type-strikethrough.js +0 -12
- package/bootstrap-icons/type-underline.d.ts +0 -5
- package/bootstrap-icons/type-underline.js +0 -12
- package/bootstrap-icons/type.d.ts +0 -5
- package/bootstrap-icons/type.js +0 -12
- package/bootstrap-icons/ui-checks-grid.d.ts +0 -5
- package/bootstrap-icons/ui-checks-grid.js +0 -12
- package/bootstrap-icons/ui-checks.d.ts +0 -5
- package/bootstrap-icons/ui-checks.js +0 -12
- package/bootstrap-icons/ui-radios-grid.d.ts +0 -5
- package/bootstrap-icons/ui-radios-grid.js +0 -12
- package/bootstrap-icons/ui-radios.d.ts +0 -5
- package/bootstrap-icons/ui-radios.js +0 -12
- package/bootstrap-icons/umbrella-fill.d.ts +0 -5
- package/bootstrap-icons/umbrella-fill.js +0 -12
- package/bootstrap-icons/umbrella.d.ts +0 -5
- package/bootstrap-icons/umbrella.js +0 -12
- package/bootstrap-icons/union.d.ts +0 -5
- package/bootstrap-icons/union.js +0 -12
- package/bootstrap-icons/unlock-fill.d.ts +0 -5
- package/bootstrap-icons/unlock-fill.js +0 -12
- package/bootstrap-icons/unlock.d.ts +0 -5
- package/bootstrap-icons/unlock.js +0 -12
- package/bootstrap-icons/upc-scan.d.ts +0 -5
- package/bootstrap-icons/upc-scan.js +0 -12
- package/bootstrap-icons/upc.d.ts +0 -5
- package/bootstrap-icons/upc.js +0 -12
- package/bootstrap-icons/upload.d.ts +0 -5
- package/bootstrap-icons/upload.js +0 -12
- package/bootstrap-icons/usb-c-fill.d.ts +0 -5
- package/bootstrap-icons/usb-c-fill.js +0 -12
- package/bootstrap-icons/usb-c.d.ts +0 -5
- package/bootstrap-icons/usb-c.js +0 -12
- package/bootstrap-icons/usb-drive-fill.d.ts +0 -5
- package/bootstrap-icons/usb-drive-fill.js +0 -12
- package/bootstrap-icons/usb-drive.d.ts +0 -5
- package/bootstrap-icons/usb-drive.js +0 -12
- package/bootstrap-icons/usb-fill.d.ts +0 -5
- package/bootstrap-icons/usb-fill.js +0 -12
- package/bootstrap-icons/usb-micro-fill.d.ts +0 -5
- package/bootstrap-icons/usb-micro-fill.js +0 -12
- package/bootstrap-icons/usb-micro.d.ts +0 -5
- package/bootstrap-icons/usb-micro.js +0 -12
- package/bootstrap-icons/usb-mini-fill.d.ts +0 -5
- package/bootstrap-icons/usb-mini-fill.js +0 -12
- package/bootstrap-icons/usb-mini.d.ts +0 -5
- package/bootstrap-icons/usb-mini.js +0 -12
- package/bootstrap-icons/usb-plug-fill.d.ts +0 -5
- package/bootstrap-icons/usb-plug-fill.js +0 -12
- package/bootstrap-icons/usb-plug.d.ts +0 -5
- package/bootstrap-icons/usb-plug.js +0 -12
- package/bootstrap-icons/usb-symbol.d.ts +0 -5
- package/bootstrap-icons/usb-symbol.js +0 -12
- package/bootstrap-icons/usb.d.ts +0 -5
- package/bootstrap-icons/usb.js +0 -12
- package/bootstrap-icons/valentine.d.ts +0 -5
- package/bootstrap-icons/valentine.js +0 -12
- package/bootstrap-icons/valentine2.d.ts +0 -5
- package/bootstrap-icons/valentine2.js +0 -12
- package/bootstrap-icons/vector-pen.d.ts +0 -5
- package/bootstrap-icons/vector-pen.js +0 -12
- package/bootstrap-icons/view-list.d.ts +0 -5
- package/bootstrap-icons/view-list.js +0 -12
- package/bootstrap-icons/view-stacked.d.ts +0 -5
- package/bootstrap-icons/view-stacked.js +0 -12
- package/bootstrap-icons/vimeo.d.ts +0 -5
- package/bootstrap-icons/vimeo.js +0 -12
- package/bootstrap-icons/vinyl-fill.d.ts +0 -5
- package/bootstrap-icons/vinyl-fill.js +0 -12
- package/bootstrap-icons/vinyl.d.ts +0 -5
- package/bootstrap-icons/vinyl.js +0 -12
- package/bootstrap-icons/voicemail.d.ts +0 -5
- package/bootstrap-icons/voicemail.js +0 -12
- package/bootstrap-icons/volume-down-fill.d.ts +0 -5
- package/bootstrap-icons/volume-down-fill.js +0 -12
- package/bootstrap-icons/volume-down.d.ts +0 -5
- package/bootstrap-icons/volume-down.js +0 -12
- package/bootstrap-icons/volume-mute-fill.d.ts +0 -5
- package/bootstrap-icons/volume-mute-fill.js +0 -12
- package/bootstrap-icons/volume-mute.d.ts +0 -5
- package/bootstrap-icons/volume-mute.js +0 -12
- package/bootstrap-icons/volume-off-fill.d.ts +0 -5
- package/bootstrap-icons/volume-off-fill.js +0 -12
- package/bootstrap-icons/volume-off.d.ts +0 -5
- package/bootstrap-icons/volume-off.js +0 -12
- package/bootstrap-icons/volume-up-fill.d.ts +0 -5
- package/bootstrap-icons/volume-up-fill.js +0 -12
- package/bootstrap-icons/volume-up.d.ts +0 -5
- package/bootstrap-icons/volume-up.js +0 -12
- package/bootstrap-icons/vr.d.ts +0 -5
- package/bootstrap-icons/vr.js +0 -12
- package/bootstrap-icons/wallet-fill.d.ts +0 -5
- package/bootstrap-icons/wallet-fill.js +0 -12
- package/bootstrap-icons/wallet.d.ts +0 -5
- package/bootstrap-icons/wallet.js +0 -12
- package/bootstrap-icons/wallet2.d.ts +0 -5
- package/bootstrap-icons/wallet2.js +0 -12
- package/bootstrap-icons/watch.d.ts +0 -5
- package/bootstrap-icons/watch.js +0 -12
- package/bootstrap-icons/water.d.ts +0 -5
- package/bootstrap-icons/water.js +0 -12
- package/bootstrap-icons/webcam-fill.d.ts +0 -5
- package/bootstrap-icons/webcam-fill.js +0 -12
- package/bootstrap-icons/webcam.d.ts +0 -5
- package/bootstrap-icons/webcam.js +0 -12
- package/bootstrap-icons/whatsapp.d.ts +0 -5
- package/bootstrap-icons/whatsapp.js +0 -12
- package/bootstrap-icons/wifi-1.d.ts +0 -5
- package/bootstrap-icons/wifi-1.js +0 -12
- package/bootstrap-icons/wifi-2.d.ts +0 -5
- package/bootstrap-icons/wifi-2.js +0 -12
- package/bootstrap-icons/wifi-off.d.ts +0 -5
- package/bootstrap-icons/wifi-off.js +0 -12
- package/bootstrap-icons/wifi.d.ts +0 -5
- package/bootstrap-icons/wifi.js +0 -12
- package/bootstrap-icons/wind.d.ts +0 -5
- package/bootstrap-icons/wind.js +0 -12
- package/bootstrap-icons/window-dash.d.ts +0 -5
- package/bootstrap-icons/window-dash.js +0 -12
- package/bootstrap-icons/window-desktop.d.ts +0 -5
- package/bootstrap-icons/window-desktop.js +0 -12
- package/bootstrap-icons/window-dock.d.ts +0 -5
- package/bootstrap-icons/window-dock.js +0 -12
- package/bootstrap-icons/window-fullscreen.d.ts +0 -5
- package/bootstrap-icons/window-fullscreen.js +0 -12
- package/bootstrap-icons/window-plus.d.ts +0 -5
- package/bootstrap-icons/window-plus.js +0 -12
- package/bootstrap-icons/window-sidebar.d.ts +0 -5
- package/bootstrap-icons/window-sidebar.js +0 -12
- package/bootstrap-icons/window-split.d.ts +0 -5
- package/bootstrap-icons/window-split.js +0 -12
- package/bootstrap-icons/window-stack.d.ts +0 -5
- package/bootstrap-icons/window-stack.js +0 -12
- package/bootstrap-icons/window-x.d.ts +0 -5
- package/bootstrap-icons/window-x.js +0 -12
- package/bootstrap-icons/window.d.ts +0 -5
- package/bootstrap-icons/window.js +0 -12
- package/bootstrap-icons/windows.d.ts +0 -5
- package/bootstrap-icons/windows.js +0 -12
- package/bootstrap-icons/wordpress.d.ts +0 -5
- package/bootstrap-icons/wordpress.js +0 -12
- package/bootstrap-icons/wrench-adjustable-circle-fill.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable-circle-fill.js +0 -12
- package/bootstrap-icons/wrench-adjustable-circle.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable-circle.js +0 -12
- package/bootstrap-icons/wrench-adjustable.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable.js +0 -12
- package/bootstrap-icons/wrench.d.ts +0 -5
- package/bootstrap-icons/wrench.js +0 -12
- package/bootstrap-icons/x-circle-fill.d.ts +0 -5
- package/bootstrap-icons/x-circle-fill.js +0 -12
- package/bootstrap-icons/x-circle.d.ts +0 -5
- package/bootstrap-icons/x-circle.js +0 -12
- package/bootstrap-icons/x-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/x-diamond-fill.js +0 -12
- package/bootstrap-icons/x-diamond.d.ts +0 -5
- package/bootstrap-icons/x-diamond.js +0 -12
- package/bootstrap-icons/x-lg.d.ts +0 -5
- package/bootstrap-icons/x-lg.js +0 -12
- package/bootstrap-icons/x-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/x-octagon-fill.js +0 -12
- package/bootstrap-icons/x-octagon.d.ts +0 -5
- package/bootstrap-icons/x-octagon.js +0 -12
- package/bootstrap-icons/x-square-fill.d.ts +0 -5
- package/bootstrap-icons/x-square-fill.js +0 -12
- package/bootstrap-icons/x-square.d.ts +0 -5
- package/bootstrap-icons/x-square.js +0 -12
- package/bootstrap-icons/x.d.ts +0 -5
- package/bootstrap-icons/x.js +0 -12
- package/bootstrap-icons/xbox.d.ts +0 -5
- package/bootstrap-icons/xbox.js +0 -12
- package/bootstrap-icons/yin-yang.d.ts +0 -5
- package/bootstrap-icons/yin-yang.js +0 -12
- package/bootstrap-icons/youtube.d.ts +0 -5
- package/bootstrap-icons/youtube.js +0 -12
- package/bootstrap-icons/zoom-in.d.ts +0 -5
- package/bootstrap-icons/zoom-in.js +0 -12
- package/bootstrap-icons/zoom-out.d.ts +0 -5
- package/bootstrap-icons/zoom-out.js +0 -12
- package/components/actions-group/action-button.d.ts +0 -8
- package/components/actions-group/action-button.js +0 -10
- package/components/actions-group/actions-group.d.ts +0 -7
- package/components/actions-group/actions-group.js +0 -11
- package/components/actions-group/index.d.ts +0 -1
- package/components/actions-group/index.js +0 -17
- package/components/alert/alert.d.ts +0 -7
- package/components/alert/alert.js +0 -24
- package/components/avatar/avatar-group.d.ts +0 -14
- package/components/avatar/avatar-group.js +0 -40
- package/components/avatar/avatar-shape.d.ts +0 -9
- package/components/avatar/avatar-shape.js +0 -49
- package/components/avatar/avatar.d.ts +0 -18
- package/components/avatar/avatar.js +0 -43
- package/components/avatar/get-avatar-size-in-pixels.d.ts +0 -3
- package/components/avatar/get-avatar-size-in-pixels.js +0 -17
- package/components/avatar/make-avatar-shape-path.d.ts +0 -9
- package/components/avatar/make-avatar-shape-path.js +0 -40
- package/components/avatar/make-initials.d.ts +0 -1
- package/components/avatar/make-initials.js +0 -17
- package/components/avatar/types.d.ts +0 -2
- package/components/box/box.d.ts +0 -28
- package/components/box/box.js +0 -9
- package/components/box/index.d.ts +0 -1
- package/components/box/index.js +0 -17
- package/components/breadcrumb/breadcrumb-link.d.ts +0 -15
- package/components/breadcrumb/breadcrumb-link.js +0 -21
- package/components/breadcrumb/breadcrumb.d.ts +0 -6
- package/components/breadcrumb/breadcrumb.js +0 -12
- package/components/breadcrumb/index.d.ts +0 -2
- package/components/breadcrumb/index.js +0 -18
- package/components/button/button.d.ts +0 -18
- package/components/button/button.js +0 -24
- package/components/button/index.d.ts +0 -1
- package/components/button/index.js +0 -17
- package/components/buttons-group/buttons-group.d.ts +0 -3
- package/components/buttons-group/buttons-group.js +0 -9
- package/components/buttons-group/index.d.ts +0 -1
- package/components/buttons-group/index.js +0 -17
- package/components/calendar/calendar-day.d.ts +0 -19
- package/components/calendar/calendar-day.js +0 -10
- package/components/calendar/calendar-header.d.ts +0 -14
- package/components/calendar/calendar-header.js +0 -13
- package/components/calendar/calendar-row.d.ts +0 -7
- package/components/calendar/calendar-row.js +0 -9
- package/components/calendar/calendar.d.ts +0 -16
- package/components/calendar/calendar.js +0 -82
- package/components/calendar/index.d.ts +0 -1
- package/components/calendar/index.js +0 -17
- package/components/checkbox/checkbox.d.ts +0 -8
- package/components/checkbox/checkbox.js +0 -17
- package/components/date-picker/date-picker.d.ts +0 -15
- package/components/date-picker/date-picker.js +0 -55
- package/components/date-picker/index.d.ts +0 -2
- package/components/date-picker/index.js +0 -18
- package/components/date-picker-popover/date-picker-popover.d.ts +0 -13
- package/components/date-picker-popover/date-picker-popover.js +0 -17
- package/components/date-preset-picker-popover/date-preset-picker-popover.d.ts +0 -34
- package/components/date-preset-picker-popover/date-preset-picker-popover.js +0 -94
- package/components/date-preset-picker-popover/date-preset-picker.d.ts +0 -23
- package/components/date-preset-picker-popover/date-preset-picker.js +0 -26
- package/components/date-preset-picker-popover/date-preset-select.d.ts +0 -16
- package/components/date-preset-picker-popover/date-preset-select.js +0 -10
- package/components/date-preset-picker-popover/index.d.ts +0 -1
- package/components/date-preset-picker-popover/index.js +0 -17
- package/components/date-range-picker/date-range-picker.d.ts +0 -13
- package/components/date-range-picker/date-range-picker.js +0 -103
- package/components/date-range-picker/index.d.ts +0 -1
- package/components/date-range-picker/index.js +0 -17
- package/components/datetime-input/date-component-input.d.ts +0 -14
- package/components/datetime-input/date-component-input.js +0 -9
- package/components/datetime-input/date-components.d.ts +0 -28
- package/components/datetime-input/date-components.js +0 -103
- package/components/datetime-input/datetime-input.d.ts +0 -22
- package/components/datetime-input/datetime-input.js +0 -173
- package/components/datetime-input/index.d.ts +0 -2
- package/components/datetime-input/index.js +0 -18
- package/components/dialog/dialog.d.ts +0 -19
- package/components/dialog/dialog.js +0 -62
- package/components/dialog/index.d.ts +0 -1
- package/components/dialog/index.js +0 -17
- package/components/file-input/file-input-button.d.ts +0 -3
- package/components/file-input/file-input-button.js +0 -10
- package/components/file-input/file-input-context.d.ts +0 -12
- package/components/file-input/file-input-context.js +0 -20
- package/components/file-input/file-input.d.ts +0 -16
- package/components/file-input/file-input.js +0 -54
- package/components/file-input/index.d.ts +0 -2
- package/components/file-input/index.js +0 -18
- package/components/form-field/form-field.d.ts +0 -17
- package/components/form-field/form-field.js +0 -31
- package/components/formatted-content/formatted-content.d.ts +0 -55
- package/components/formatted-content/formatted-content.js +0 -67
- package/components/formatted-content/index.d.ts +0 -1
- package/components/formatted-content/index.js +0 -17
- package/components/index.d.ts +0 -46
- package/components/index.js +0 -62
- package/components/inline-message/index.d.ts +0 -1
- package/components/inline-message/index.js +0 -17
- package/components/inline-message/inline-message.d.ts +0 -6
- package/components/inline-message/inline-message.js +0 -23
- package/components/label/label.d.ts +0 -5
- package/components/label/label.js +0 -10
- package/components/loading-view/index.d.ts +0 -1
- package/components/loading-view/index.js +0 -17
- package/components/loading-view/loading-view.d.ts +0 -8
- package/components/loading-view/loading-view.js +0 -10
- package/components/menu/index.d.ts +0 -3
- package/components/menu/index.js +0 -19
- package/components/menu/menu-button.d.ts +0 -7
- package/components/menu/menu-button.js +0 -9
- package/components/menu/menu-divider.d.ts +0 -2
- package/components/menu/menu-divider.js +0 -9
- package/components/menu/menu.d.ts +0 -25
- package/components/menu/menu.js +0 -123
- package/components/non-ideal-state-view/index.d.ts +0 -1
- package/components/non-ideal-state-view/index.js +0 -17
- package/components/non-ideal-state-view/non-ideal-state-view.d.ts +0 -9
- package/components/non-ideal-state-view/non-ideal-state-view.js +0 -40
- package/components/number-input/index.d.ts +0 -1
- package/components/number-input/index.js +0 -17
- package/components/number-input/number-input.d.ts +0 -13
- package/components/number-input/number-input.js +0 -94
- package/components/password-input/password-input.d.ts +0 -9
- package/components/password-input/password-input.js +0 -22
- package/components/popover/popover.d.ts +0 -53
- package/components/popover/popover.js +0 -99
- package/components/popover/use-body-click.d.ts +0 -12
- package/components/popover/use-body-click.js +0 -49
- package/components/portal/portal.d.ts +0 -5
- package/components/portal/portal.js +0 -15
- package/components/positioner/get-position.d.ts +0 -32
- package/components/positioner/get-position.js +0 -117
- package/components/positioner/positioner.d.ts +0 -16
- package/components/positioner/positioner.js +0 -65
- package/components/positioner/types.d.ts +0 -14
- package/components/radio-button/index.d.ts +0 -1
- package/components/radio-button/index.js +0 -17
- package/components/radio-button/radio-button.d.ts +0 -7
- package/components/radio-button/radio-button.js +0 -14
- package/components/radio-group/index.d.ts +0 -2
- package/components/radio-group/index.js +0 -18
- package/components/radio-group/radio-group-item.d.ts +0 -7
- package/components/radio-group/radio-group-item.js +0 -11
- package/components/radio-group/radio-group.d.ts +0 -15
- package/components/radio-group/radio-group.js +0 -22
- package/components/scope-buttons/index.d.ts +0 -1
- package/components/scope-buttons/index.js +0 -17
- package/components/scope-buttons/scope-button.d.ts +0 -6
- package/components/scope-buttons/scope-button.js +0 -10
- package/components/scope-buttons/scope-buttons.d.ts +0 -6
- package/components/scope-buttons/scope-buttons.js +0 -26
- package/components/search-input/index.d.ts +0 -1
- package/components/search-input/index.js +0 -17
- package/components/search-input/search-input.d.ts +0 -4
- package/components/search-input/search-input.js +0 -17
- package/components/secret/index.d.ts +0 -1
- package/components/secret/index.js +0 -17
- package/components/secret/secret.d.ts +0 -8
- package/components/secret/secret.js +0 -18
- package/components/segmented-control/segmented-control.d.ts +0 -15
- package/components/segmented-control/segmented-control.js +0 -60
- package/components/select/select.d.ts +0 -8
- package/components/select/select.js +0 -17
- package/components/selection-control/selection-control.d.ts +0 -11
- package/components/selection-control/selection-control.js +0 -11
- package/components/slider/index.d.ts +0 -1
- package/components/slider/index.js +0 -17
- package/components/slider/slider.d.ts +0 -12
- package/components/slider/slider.js +0 -34
- package/components/spinner/index.d.ts +0 -2
- package/components/spinner/index.js +0 -6
- package/components/spinner/spinner.d.ts +0 -6
- package/components/spinner/spinner.js +0 -9
- package/components/svg-icon/index.d.ts +0 -1
- package/components/svg-icon/index.js +0 -17
- package/components/svg-icon/svg-icon.d.ts +0 -18
- package/components/svg-icon/svg-icon.js +0 -49
- package/components/switch/switch.d.ts +0 -3
- package/components/switch/switch.js +0 -14
- package/components/table/index.d.ts +0 -7
- package/components/table/index.js +0 -23
- package/components/table/table-body.d.ts +0 -5
- package/components/table/table-body.js +0 -9
- package/components/table/table-cell.d.ts +0 -5
- package/components/table/table-cell.js +0 -9
- package/components/table/table-container.d.ts +0 -5
- package/components/table/table-container.js +0 -25
- package/components/table/table-head.d.ts +0 -5
- package/components/table/table-head.js +0 -9
- package/components/table/table-header-cell.d.ts +0 -9
- package/components/table/table-header-cell.js +0 -15
- package/components/table/table-row.d.ts +0 -5
- package/components/table/table-row.js +0 -9
- package/components/table/table-sort-button.d.ts +0 -10
- package/components/table/table-sort-button.js +0 -52
- package/components/table/table.d.ts +0 -10
- package/components/table/table.js +0 -16
- package/components/tabs/index.d.ts +0 -1
- package/components/tabs/index.js +0 -17
- package/components/tabs/tab-list.d.ts +0 -3
- package/components/tabs/tab-list.js +0 -50
- package/components/tabs/tab-panel.d.ts +0 -6
- package/components/tabs/tab-panel.js +0 -14
- package/components/tabs/tab.d.ts +0 -7
- package/components/tabs/tab.js +0 -21
- package/components/tabs/tabs-state.d.ts +0 -20
- package/components/tabs/tabs-state.js +0 -63
- package/components/tabs/tabs.d.ts +0 -14
- package/components/tabs/tabs.js +0 -16
- package/components/tag/tag.d.ts +0 -12
- package/components/tag/tag.js +0 -20
- package/components/text-input/text-input.d.ts +0 -12
- package/components/text-input/text-input.js +0 -39
- package/components/textarea/textarea.d.ts +0 -8
- package/components/textarea/textarea.js +0 -17
- package/components/toast/index.d.ts +0 -1
- package/components/toast/index.js +0 -17
- package/components/toast/toast-button.d.ts +0 -5
- package/components/toast/toast-button.js +0 -9
- package/components/toast/toast.d.ts +0 -17
- package/components/toast/toast.js +0 -28
- package/components/toaster/toaster.d.ts +0 -17
- package/components/toaster/toaster.js +0 -77
- package/components/toaster/use-toasts.d.ts +0 -22
- package/components/toaster/use-toasts.js +0 -41
- package/components/tooltip/tooltip.d.ts +0 -17
- package/components/tooltip/tooltip.js +0 -60
- package/components/vertical-navigation/index.d.ts +0 -2
- package/components/vertical-navigation/index.js +0 -18
- package/components/vertical-navigation/vertical-navigation-item.d.ts +0 -16
- package/components/vertical-navigation/vertical-navigation-item.js +0 -20
- package/components/vertical-navigation/vertical-navigation.d.ts +0 -10
- package/components/vertical-navigation/vertical-navigation.js +0 -14
- package/css/draft-components-utils.css +0 -1
- package/hooks/index.d.ts +0 -6
- package/hooks/index.js +0 -22
- package/hooks/use-close-animation.d.ts +0 -13
- package/hooks/use-close-animation.js +0 -42
- package/hooks/use-disable-body-scroll.d.ts +0 -1
- package/hooks/use-disable-body-scroll.js +0 -34
- package/hooks/use-esc-key-down.d.ts +0 -3
- package/hooks/use-esc-key-down.js +0 -38
- package/hooks/use-focus-trap.d.ts +0 -2
- package/hooks/use-focus-trap.js +0 -76
- package/hooks/use-is-first-render.d.ts +0 -1
- package/hooks/use-is-first-render.js +0 -13
- package/hooks/use-is-mounted.d.ts +0 -2
- package/hooks/use-is-mounted.js +0 -15
- package/lib/guards.d.ts +0 -2
- package/lib/guards.js +0 -12
- package/lib/index.d.ts +0 -7
- package/lib/index.js +0 -36
- package/lib/keyboard-helpers.d.ts +0 -22
- package/lib/keyboard-helpers.js +0 -26
- package/lib/plain-date-range.d.ts +0 -15
- package/lib/plain-date-range.js +0 -35
- package/lib/plain-date.d.ts +0 -38
- package/lib/plain-date.js +0 -103
- package/lib/react-helpers.d.ts +0 -9
- package/lib/react-helpers.js +0 -42
- package/lib/stack.d.ts +0 -11
- package/lib/stack.js +0 -34
- package/lib/util.d.ts +0 -5
- package/lib/util.js +0 -41
- package/scss/abstracts/_functions.scss +0 -82
- package/scss/abstracts/_index.scss +0 -3
- package/scss/abstracts/_mixins.scss +0 -23
- package/scss/abstracts/_variables.scss +0 -229
- package/scss/base/_animations.scss +0 -8
- package/scss/base/_index.scss +0 -2
- package/scss/base/_normalize.scss +0 -351
- package/scss/components/_actions-group.scss +0 -20
- package/scss/components/_alert.scss +0 -95
- package/scss/components/_avatar.scss +0 -124
- package/scss/components/_box.scss +0 -277
- package/scss/components/_breadcrumb.scss +0 -55
- package/scss/components/_button.scss +0 -200
- package/scss/components/_buttons-group.scss +0 -25
- package/scss/components/_calendar.scss +0 -185
- package/scss/components/_checkbox.scss +0 -55
- package/scss/components/_date-picker.scss +0 -11
- package/scss/components/_date-preset-picker-popover.scss +0 -78
- package/scss/components/_datetime-input.scss +0 -94
- package/scss/components/_dialog.scss +0 -114
- package/scss/components/_file-input.scss +0 -94
- package/scss/components/_form-field.scss +0 -21
- package/scss/components/_formatted-content.scss +0 -171
- package/scss/components/_index.scss +0 -45
- package/scss/components/_inline-message.scss +0 -30
- package/scss/components/_input.scss +0 -74
- package/scss/components/_label.scss +0 -14
- package/scss/components/_loading-view.scss +0 -58
- package/scss/components/_menu.scss +0 -43
- package/scss/components/_non-ideal-state-view.scss +0 -93
- package/scss/components/_number-input.scss +0 -19
- package/scss/components/_password-input.scss +0 -9
- package/scss/components/_popover.scss +0 -70
- package/scss/components/_portal.scss +0 -3
- package/scss/components/_radio-button.scss +0 -58
- package/scss/components/_radio-group.scss +0 -96
- package/scss/components/_scope-buttons.scss +0 -49
- package/scss/components/_secret.scss +0 -32
- package/scss/components/_segmented-control.scss +0 -33
- package/scss/components/_select.scss +0 -36
- package/scss/components/_selection-control.scss +0 -39
- package/scss/components/_slider.scss +0 -130
- package/scss/components/_spinner.scss +0 -6
- package/scss/components/_svg-icon.scss +0 -8
- package/scss/components/_switch.scss +0 -58
- package/scss/components/_table.scss +0 -180
- package/scss/components/_tabs.scss +0 -80
- package/scss/components/_tag.scss +0 -117
- package/scss/components/_text-input.scss +0 -58
- package/scss/components/_textarea.scss +0 -10
- package/scss/components/_toast.scss +0 -104
- package/scss/components/_toaster.scss +0 -87
- package/scss/components/_tooltip.scss +0 -29
- package/scss/components/_vertical-navigation.scss +0 -73
- package/scss/draft-components-utils.scss +0 -8
- package/scss/draft-components.scss +0 -3
- package/scss/themes/_default-theme.scss +0 -294
- package/scss/utils/_border.scss +0 -85
- package/scss/utils/_box-model.scss +0 -36
- package/scss/utils/_color.scss +0 -601
- package/scss/utils/_flexbox.scss +0 -169
- package/scss/utils/_gap.scss +0 -23
- package/scss/utils/_margin.scss +0 -50
- package/scss/utils/_padding.scss +0 -49
- package/scss/utils/_typography.scss +0 -120
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./date-preset-picker-popover"), exports);
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { ISODateRange } from '../../lib/plain-date-range';
|
|
3
|
-
export interface DateRangePickerProps {
|
|
4
|
-
locale?: string;
|
|
5
|
-
nextYearButtonLabel?: string;
|
|
6
|
-
nextMonthButtonLabel?: string;
|
|
7
|
-
prevYearButtonLabel?: string;
|
|
8
|
-
prevMonthButtonLabel?: string;
|
|
9
|
-
footer?: ReactNode;
|
|
10
|
-
value: ISODateRange | null;
|
|
11
|
-
onChangeValue(isoDateRange: ISODateRange): void;
|
|
12
|
-
}
|
|
13
|
-
export declare function DateRangePicker({ locale, nextYearButtonLabel, nextMonthButtonLabel, prevYearButtonLabel, prevMonthButtonLabel, footer, value, onChangeValue, }: DateRangePickerProps): JSX.Element;
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DateRangePicker = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const react_1 = require("react");
|
|
6
|
-
const calendar_1 = require("../calendar/calendar");
|
|
7
|
-
const calendar_row_1 = require("../calendar/calendar-row");
|
|
8
|
-
const calendar_day_1 = require("../calendar/calendar-day");
|
|
9
|
-
const plain_date_1 = require("../../lib/plain-date");
|
|
10
|
-
const plain_date_range_1 = require("../../lib/plain-date-range");
|
|
11
|
-
function DateRangePicker({ locale, nextYearButtonLabel, nextMonthButtonLabel, prevYearButtonLabel, prevMonthButtonLabel, footer, value, onChangeValue, }) {
|
|
12
|
-
const selectedRange = value ? plain_date_range_1.PlainDateRange.fromISODateRange(value) : null;
|
|
13
|
-
const [start, setStart] = (0, react_1.useState)(null);
|
|
14
|
-
const [end, setEnd] = (0, react_1.useState)(null);
|
|
15
|
-
const newRange = start && end ? new plain_date_range_1.PlainDateRange(start, end) : null;
|
|
16
|
-
const currentDate = plain_date_1.PlainDate.now();
|
|
17
|
-
const [focusDate, setFocusDate] = (0, react_1.useState)(selectedRange ? selectedRange.start : currentDate.startOfMonth);
|
|
18
|
-
const firstDate = focusDate.startOfMonth;
|
|
19
|
-
const lastDate = focusDate.endOfMonth;
|
|
20
|
-
const firstWeekday = firstDate.weekday;
|
|
21
|
-
const lastWeekday = lastDate.weekday;
|
|
22
|
-
const weeksCount = Math.ceil((firstWeekday + focusDate.lastDay) / plain_date_1.PlainDate.DAYS_IN_WEEK);
|
|
23
|
-
const handleDayPick = (day) => {
|
|
24
|
-
setFocusDate(day);
|
|
25
|
-
if (start) {
|
|
26
|
-
onChangeValue(new plain_date_range_1.PlainDateRange(start, day).toISODateRange());
|
|
27
|
-
setStart(null);
|
|
28
|
-
setEnd(null);
|
|
29
|
-
}
|
|
30
|
-
else {
|
|
31
|
-
onChangeValue(new plain_date_range_1.PlainDateRange(day, day).toISODateRange());
|
|
32
|
-
setStart(day);
|
|
33
|
-
}
|
|
34
|
-
};
|
|
35
|
-
const handleDayHover = (day) => {
|
|
36
|
-
if (start) {
|
|
37
|
-
setEnd(day);
|
|
38
|
-
}
|
|
39
|
-
};
|
|
40
|
-
let date = firstDate;
|
|
41
|
-
const renderedWeeks = [];
|
|
42
|
-
for (let w = 0; w < weeksCount; w += 1) {
|
|
43
|
-
const renderedDays = [];
|
|
44
|
-
let d;
|
|
45
|
-
if (w === 0) {
|
|
46
|
-
d = firstWeekday;
|
|
47
|
-
}
|
|
48
|
-
else if (w === weeksCount - 1) {
|
|
49
|
-
d = plain_date_1.PlainDate.LAST_WEEKDAY - lastWeekday;
|
|
50
|
-
}
|
|
51
|
-
else {
|
|
52
|
-
d = 0;
|
|
53
|
-
}
|
|
54
|
-
for (; d < plain_date_1.PlainDate.DAYS_IN_WEEK; d += 1) {
|
|
55
|
-
let isSelected = false;
|
|
56
|
-
if (start) {
|
|
57
|
-
isSelected = date.equals(start);
|
|
58
|
-
}
|
|
59
|
-
else if (selectedRange) {
|
|
60
|
-
isSelected =
|
|
61
|
-
date.equals(selectedRange.start) || date.equals(selectedRange.end);
|
|
62
|
-
}
|
|
63
|
-
let isInRange = false;
|
|
64
|
-
let isRangeStart = false;
|
|
65
|
-
let isRangeEnd = false;
|
|
66
|
-
let isInRangePreview = false;
|
|
67
|
-
let isRangePreviewStart = false;
|
|
68
|
-
let isRangePreviewEnd = false;
|
|
69
|
-
if (newRange) {
|
|
70
|
-
isInRangePreview = newRange.contains(date);
|
|
71
|
-
isRangePreviewStart = date.equals(newRange.start);
|
|
72
|
-
isRangePreviewEnd = date.equals(newRange.end);
|
|
73
|
-
}
|
|
74
|
-
else if (start) {
|
|
75
|
-
isInRangePreview = date.equals(start);
|
|
76
|
-
isRangePreviewStart = isInRangePreview;
|
|
77
|
-
isRangePreviewEnd = isInRangePreview;
|
|
78
|
-
}
|
|
79
|
-
else if (selectedRange) {
|
|
80
|
-
isInRange = selectedRange.contains(date);
|
|
81
|
-
isRangeStart = date.equals(selectedRange.start);
|
|
82
|
-
isRangeEnd = date.equals(selectedRange.end);
|
|
83
|
-
}
|
|
84
|
-
renderedDays.push((0, jsx_runtime_1.jsx)(calendar_day_1.CalendarDay, { date: date, isCurrent: date.equals(currentDate), isFocusable: date.equals(focusDate), isSelected: isSelected, isInRange: isInRange, isRangeStart: isRangeStart, isRangeEnd: isRangeEnd, isInRangePreview: isInRangePreview, isRangePreviewStart: isRangePreviewStart, isRangePreviewEnd: isRangePreviewEnd, onPick: handleDayPick, onHover: handleDayHover }, `day-${date.toISOString()}`));
|
|
85
|
-
date = date.addDays(1);
|
|
86
|
-
}
|
|
87
|
-
renderedWeeks.push((0, jsx_runtime_1.jsx)(calendar_row_1.CalendarRow, { children: renderedDays }, `week-${w}`));
|
|
88
|
-
}
|
|
89
|
-
(0, react_1.useEffect)(() => {
|
|
90
|
-
if (value === null || value === void 0 ? void 0 : value.start) {
|
|
91
|
-
setFocusDate((focusDate) => focusDate.toISOString() !== value.start
|
|
92
|
-
? plain_date_1.PlainDate.fromISODate(value.start)
|
|
93
|
-
: focusDate);
|
|
94
|
-
}
|
|
95
|
-
}, [value === null || value === void 0 ? void 0 : value.start]);
|
|
96
|
-
return ((0, jsx_runtime_1.jsxs)("div", { className: "dc-date-picker", children: [(0, jsx_runtime_1.jsx)(calendar_1.Calendar, { locale: locale, nextYearButtonLabel: nextYearButtonLabel, nextMonthButtonLabel: nextMonthButtonLabel, prevYearButtonLabel: prevYearButtonLabel, prevMonthButtonLabel: prevMonthButtonLabel, focusDate: focusDate, onChangeFocusDate: (focusDate) => {
|
|
97
|
-
setFocusDate(focusDate);
|
|
98
|
-
if (start) {
|
|
99
|
-
setEnd(focusDate);
|
|
100
|
-
}
|
|
101
|
-
}, children: renderedWeeks }), footer && (0, jsx_runtime_1.jsx)("div", { className: "dc-date-picker__footer", children: footer })] }));
|
|
102
|
-
}
|
|
103
|
-
exports.DateRangePicker = DateRangePicker;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './date-range-picker';
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./date-range-picker"), exports);
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ChangeEventHandler, CSSProperties } from 'react';
|
|
2
|
-
export interface DatePartInputProps {
|
|
3
|
-
id?: string;
|
|
4
|
-
style?: CSSProperties;
|
|
5
|
-
className?: string;
|
|
6
|
-
disabled?: boolean;
|
|
7
|
-
readOnly?: boolean;
|
|
8
|
-
label?: string;
|
|
9
|
-
placeholder?: string;
|
|
10
|
-
name: string;
|
|
11
|
-
value: string;
|
|
12
|
-
onChange: ChangeEventHandler<HTMLInputElement>;
|
|
13
|
-
}
|
|
14
|
-
export declare function DateComponentInput({ id, style, className, disabled, readOnly, label, placeholder, name, value, onChange, }: DatePartInputProps): JSX.Element;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DateComponentInput = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const react_helpers_1 = require("../../lib/react-helpers");
|
|
6
|
-
function DateComponentInput({ id, style, className, disabled, readOnly, label, placeholder, name, value, onChange, }) {
|
|
7
|
-
return ((0, jsx_runtime_1.jsxs)("div", { style: style, className: (0, react_helpers_1.classNames)(className, 'dc-date-component-input'), children: [(0, jsx_runtime_1.jsx)("span", { "aria-hidden": true, children: value || placeholder }), (0, jsx_runtime_1.jsx)("input", { id: id, type: "text", "aria-label": label, placeholder: placeholder, autoComplete: "off", disabled: disabled, readOnly: readOnly, value: value, name: name, onChange: onChange })] }));
|
|
8
|
-
}
|
|
9
|
-
exports.DateComponentInput = DateComponentInput;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
export declare type DateComponent = 'year' | 'month' | 'day' | 'hour' | 'minute';
|
|
2
|
-
export declare type DateComponentOptions = {
|
|
3
|
-
min: number;
|
|
4
|
-
max: number;
|
|
5
|
-
digits: number;
|
|
6
|
-
};
|
|
7
|
-
export declare type DateComponentsValues = {
|
|
8
|
-
[component in DateComponent]?: string | number | null;
|
|
9
|
-
};
|
|
10
|
-
export declare class DateComponents {
|
|
11
|
-
year?: number;
|
|
12
|
-
month?: number;
|
|
13
|
-
day?: number;
|
|
14
|
-
hour?: number;
|
|
15
|
-
minute?: number;
|
|
16
|
-
constructor(values?: DateComponentsValues);
|
|
17
|
-
static options: Record<DateComponent, DateComponentOptions>;
|
|
18
|
-
static makeFormDatetimeISO(dateString?: string | null): DateComponents;
|
|
19
|
-
static toDateComponentValue(value: string | number | null | undefined): number | undefined;
|
|
20
|
-
getDisplayedValue(component: DateComponent): string;
|
|
21
|
-
updatingValue(value: string | number | null | undefined, component: DateComponent): DateComponents;
|
|
22
|
-
isValidDatetime(): boolean;
|
|
23
|
-
isValidDate(): boolean;
|
|
24
|
-
isValidTime(): boolean;
|
|
25
|
-
toDatetimeISO(): string;
|
|
26
|
-
toDateISO(): string;
|
|
27
|
-
toTimeISO(): string;
|
|
28
|
-
}
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DateComponents = void 0;
|
|
4
|
-
class DateComponents {
|
|
5
|
-
constructor(values) {
|
|
6
|
-
if (values) {
|
|
7
|
-
for (const [key, value] of Object.entries(values)) {
|
|
8
|
-
this[key] = DateComponents.toDateComponentValue(value);
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
static makeFormDatetimeISO(dateString) {
|
|
13
|
-
const dateTimeRegex = /^\d{4}-\d{2}-\d{2}[ T]\d{2}:\d{2}$/;
|
|
14
|
-
const dateRegex = /^\d{4}-\d{2}-\d{2}$/;
|
|
15
|
-
const timeRegex = /^\d{2}:\d{2}$/;
|
|
16
|
-
let year = '';
|
|
17
|
-
let month = '';
|
|
18
|
-
let day = '';
|
|
19
|
-
let hour = '';
|
|
20
|
-
let minute = '';
|
|
21
|
-
if (dateString) {
|
|
22
|
-
if (dateString.match(dateTimeRegex)) {
|
|
23
|
-
const [dateISO, timeISO] = dateString.split(/[ T]/);
|
|
24
|
-
[year, month, day] = dateISO.split('-');
|
|
25
|
-
[hour, minute] = timeISO.split(':');
|
|
26
|
-
}
|
|
27
|
-
else if (dateString.match(dateRegex)) {
|
|
28
|
-
[year, month, day] = dateString.split('-');
|
|
29
|
-
}
|
|
30
|
-
else if (dateString.match(timeRegex)) {
|
|
31
|
-
[hour, minute] = dateString.split(':');
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
return new DateComponents({ year, month, day, hour, minute });
|
|
35
|
-
}
|
|
36
|
-
static toDateComponentValue(value) {
|
|
37
|
-
if (value == null || value === '') {
|
|
38
|
-
return undefined;
|
|
39
|
-
}
|
|
40
|
-
const numericValue = Number(value);
|
|
41
|
-
return Number.isNaN(numericValue) ? undefined : numericValue >> 0;
|
|
42
|
-
}
|
|
43
|
-
getDisplayedValue(component) {
|
|
44
|
-
const value = this[component];
|
|
45
|
-
const options = DateComponents.options[component];
|
|
46
|
-
return value != null ? String(value).padStart(options.digits, '0') : '';
|
|
47
|
-
}
|
|
48
|
-
updatingValue(value, component) {
|
|
49
|
-
return new DateComponents({ ...this, [component]: value });
|
|
50
|
-
}
|
|
51
|
-
isValidDatetime() {
|
|
52
|
-
return this.isValidDate() && this.isValidTime();
|
|
53
|
-
}
|
|
54
|
-
isValidDate() {
|
|
55
|
-
if (this.year == null || this.month == null || this.day == null) {
|
|
56
|
-
return false;
|
|
57
|
-
}
|
|
58
|
-
const isYearValid = this.year >= DateComponents.options.year.min &&
|
|
59
|
-
this.year <= DateComponents.options.year.max;
|
|
60
|
-
const isMonthValid = this.month >= DateComponents.options.month.min &&
|
|
61
|
-
this.month <= DateComponents.options.month.max;
|
|
62
|
-
const isDayValid = this.day >= DateComponents.options.day.min &&
|
|
63
|
-
this.day <= new Date(this.year, this.month, 0).getUTCDate();
|
|
64
|
-
return isYearValid && isMonthValid && isDayValid;
|
|
65
|
-
}
|
|
66
|
-
isValidTime() {
|
|
67
|
-
if (this.hour == null || this.minute == null) {
|
|
68
|
-
return false;
|
|
69
|
-
}
|
|
70
|
-
const isHourValid = this.hour >= DateComponents.options.hour.min &&
|
|
71
|
-
this.hour <= DateComponents.options.hour.max;
|
|
72
|
-
const isMinuteValid = this.minute >= DateComponents.options.minute.min &&
|
|
73
|
-
this.minute <= DateComponents.options.minute.max;
|
|
74
|
-
return isHourValid && isMinuteValid;
|
|
75
|
-
}
|
|
76
|
-
toDatetimeISO() {
|
|
77
|
-
const dateISO = this.toDateISO();
|
|
78
|
-
const timeISO = this.toTimeISO();
|
|
79
|
-
return dateISO && timeISO ? dateISO + 'T' + timeISO : '';
|
|
80
|
-
}
|
|
81
|
-
toDateISO() {
|
|
82
|
-
return this.isValidDate()
|
|
83
|
-
? this.getDisplayedValue('year') +
|
|
84
|
-
'-' +
|
|
85
|
-
this.getDisplayedValue('month') +
|
|
86
|
-
'-' +
|
|
87
|
-
this.getDisplayedValue('day')
|
|
88
|
-
: '';
|
|
89
|
-
}
|
|
90
|
-
toTimeISO() {
|
|
91
|
-
return this.isValidTime()
|
|
92
|
-
? this.getDisplayedValue('hour') + ':' + this.getDisplayedValue('minute')
|
|
93
|
-
: '';
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
exports.DateComponents = DateComponents;
|
|
97
|
-
DateComponents.options = {
|
|
98
|
-
year: { min: 1, max: 9999, digits: 4 },
|
|
99
|
-
month: { min: 1, max: 12, digits: 2 },
|
|
100
|
-
day: { min: 1, max: 31, digits: 2 },
|
|
101
|
-
hour: { min: 0, max: 23, digits: 2 },
|
|
102
|
-
minute: { min: 0, max: 59, digits: 2 },
|
|
103
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithRef } from 'react';
|
|
2
|
-
import { TextInputProps } from '../text-input';
|
|
3
|
-
import { DateComponent, DateComponents } from './date-components';
|
|
4
|
-
export interface DatetimeInputProps extends ComponentPropsWithRef<'div'> {
|
|
5
|
-
size?: TextInputProps['size'];
|
|
6
|
-
type?: 'date' | 'time' | 'datetime';
|
|
7
|
-
invalid?: boolean;
|
|
8
|
-
disabled?: boolean;
|
|
9
|
-
readOnly?: boolean;
|
|
10
|
-
ids?: {
|
|
11
|
-
[component in DateComponent]?: string;
|
|
12
|
-
};
|
|
13
|
-
ariaLabels?: {
|
|
14
|
-
[component in DateComponent]?: string;
|
|
15
|
-
};
|
|
16
|
-
placeholders?: {
|
|
17
|
-
[component in DateComponent]?: string;
|
|
18
|
-
};
|
|
19
|
-
value: DateComponents;
|
|
20
|
-
onChangeValue(value: DateComponents): void;
|
|
21
|
-
}
|
|
22
|
-
export declare const DatetimeInput: import("react").ForwardRefExoticComponent<Pick<DatetimeInputProps, "slot" | "style" | "title" | "className" | "color" | "id" | "lang" | "type" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "size" | "hidden" | "disabled" | "translate" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "invalid" | "readOnly" | "onChangeValue" | "ids" | "ariaLabels" | "placeholders"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -1,173 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DatetimeInput = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const react_1 = require("react");
|
|
6
|
-
const guards_1 = require("../../lib/guards");
|
|
7
|
-
const react_helpers_1 = require("../../lib/react-helpers");
|
|
8
|
-
const keyboard_helpers_1 = require("../../lib/keyboard-helpers");
|
|
9
|
-
const date_components_1 = require("./date-components");
|
|
10
|
-
const date_component_input_1 = require("./date-component-input");
|
|
11
|
-
const defaultAriaLabels = {
|
|
12
|
-
year: 'year',
|
|
13
|
-
month: 'month',
|
|
14
|
-
day: 'day',
|
|
15
|
-
hour: 'hour',
|
|
16
|
-
minute: 'minute',
|
|
17
|
-
};
|
|
18
|
-
const defaultPlaceholders = {
|
|
19
|
-
year: 'Year',
|
|
20
|
-
month: 'Month',
|
|
21
|
-
day: 'Day',
|
|
22
|
-
hour: '--',
|
|
23
|
-
minute: '--',
|
|
24
|
-
};
|
|
25
|
-
exports.DatetimeInput = (0, react_1.forwardRef)(function DatetimeInput({ size = 'md', type = 'datetime', invalid, disabled, readOnly, ids, ariaLabels = defaultAriaLabels, placeholders = defaultPlaceholders, value: dateComponents, onChangeValue: onChangeDateComponents, className, ...props }, ref) {
|
|
26
|
-
const containerRef = (0, react_1.useRef)(null);
|
|
27
|
-
const inputsRef = (0, react_1.useRef)([]);
|
|
28
|
-
const cancelBlur = (0, react_1.useRef)();
|
|
29
|
-
const [focused, setFocused] = (0, react_1.useState)(false);
|
|
30
|
-
(0, react_1.useEffect)(() => {
|
|
31
|
-
if (containerRef.current) {
|
|
32
|
-
inputsRef.current = Array.from(containerRef.current.getElementsByTagName('input'));
|
|
33
|
-
}
|
|
34
|
-
}, [type]);
|
|
35
|
-
function updateDateComponents(value, component) {
|
|
36
|
-
onChangeDateComponents(dateComponents.updatingValue(value, component));
|
|
37
|
-
}
|
|
38
|
-
function getInputSiblings(input) {
|
|
39
|
-
const inputs = inputsRef.current;
|
|
40
|
-
const index = inputs.findIndex((el) => el === input);
|
|
41
|
-
if (index < 0) {
|
|
42
|
-
return { next: input, prev: input };
|
|
43
|
-
}
|
|
44
|
-
const lastIndex = inputs.length - 1;
|
|
45
|
-
return {
|
|
46
|
-
prev: inputs[index > 0 ? index - 1 : 0],
|
|
47
|
-
next: inputs[index < lastIndex ? index + 1 : lastIndex],
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
function handleFocus(event) {
|
|
51
|
-
event.target.select();
|
|
52
|
-
if ((0, guards_1.isFunction)(cancelBlur.current)) {
|
|
53
|
-
cancelBlur.current();
|
|
54
|
-
}
|
|
55
|
-
else {
|
|
56
|
-
setFocused(true);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
function handleBlur(event) {
|
|
60
|
-
const dateComponent = event.target.name;
|
|
61
|
-
const dateComponentOptions = date_components_1.DateComponents.options[dateComponent];
|
|
62
|
-
const dateComponentValue = dateComponents[dateComponent];
|
|
63
|
-
if (dateComponentValue != null) {
|
|
64
|
-
if (dateComponentValue < dateComponentOptions.min) {
|
|
65
|
-
updateDateComponents(dateComponentOptions.min, dateComponent);
|
|
66
|
-
}
|
|
67
|
-
else if (dateComponentValue > dateComponentOptions.max) {
|
|
68
|
-
updateDateComponents(dateComponentOptions.max, dateComponent);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
cancelBlur.current = defer(() => {
|
|
72
|
-
setFocused(false);
|
|
73
|
-
cancelBlur.current = undefined;
|
|
74
|
-
});
|
|
75
|
-
}
|
|
76
|
-
function handleKeyDown(event) {
|
|
77
|
-
const code = event.code;
|
|
78
|
-
const input = event.target;
|
|
79
|
-
const dateComponent = input.name;
|
|
80
|
-
const dateComponentOptions = date_components_1.DateComponents.options[dateComponent];
|
|
81
|
-
const dateComponentValue = dateComponents[dateComponent];
|
|
82
|
-
if (code === keyboard_helpers_1.KeyCode.arrowLeft || code === keyboard_helpers_1.KeyCode.arrowRight) {
|
|
83
|
-
event.preventDefault();
|
|
84
|
-
const siblings = getInputSiblings(input);
|
|
85
|
-
const nextFocus = code === keyboard_helpers_1.KeyCode.arrowLeft ? siblings.prev : siblings.next;
|
|
86
|
-
nextFocus.focus();
|
|
87
|
-
}
|
|
88
|
-
else if (readOnly) {
|
|
89
|
-
return;
|
|
90
|
-
}
|
|
91
|
-
else if (code === keyboard_helpers_1.KeyCode.arrowUp ||
|
|
92
|
-
code === keyboard_helpers_1.KeyCode.arrowDown ||
|
|
93
|
-
code === keyboard_helpers_1.KeyCode.backspace ||
|
|
94
|
-
code === keyboard_helpers_1.KeyCode.delete) {
|
|
95
|
-
event.preventDefault();
|
|
96
|
-
if (code === keyboard_helpers_1.KeyCode.backspace || code === keyboard_helpers_1.KeyCode.delete) {
|
|
97
|
-
updateDateComponents('', dateComponent);
|
|
98
|
-
}
|
|
99
|
-
else {
|
|
100
|
-
let dateComponentNewValue;
|
|
101
|
-
if (dateComponentValue == null) {
|
|
102
|
-
dateComponentNewValue = getDefaultValue(dateComponent);
|
|
103
|
-
}
|
|
104
|
-
else {
|
|
105
|
-
const step = code === keyboard_helpers_1.KeyCode.arrowUp ? 1 : -1;
|
|
106
|
-
dateComponentNewValue = dateComponentValue + step;
|
|
107
|
-
if (dateComponentNewValue > dateComponentOptions.max) {
|
|
108
|
-
dateComponentNewValue = dateComponentOptions.min;
|
|
109
|
-
}
|
|
110
|
-
else if (dateComponentNewValue < dateComponentOptions.min) {
|
|
111
|
-
dateComponentNewValue = dateComponentOptions.max;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
updateDateComponents(dateComponentNewValue, dateComponent);
|
|
115
|
-
defer(() => input.select());
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
function handleChange(event) {
|
|
120
|
-
const target = event.target;
|
|
121
|
-
if (!target.value.match(/^\d+$/)) {
|
|
122
|
-
return;
|
|
123
|
-
}
|
|
124
|
-
const dateComponent = target.name;
|
|
125
|
-
const dateComponentOptions = date_components_1.DateComponents.options[dateComponent];
|
|
126
|
-
const dateComponentNewValue = Number(target.value);
|
|
127
|
-
updateDateComponents(dateComponentNewValue, dateComponent);
|
|
128
|
-
const dateComponentNextMinValue = dateComponentNewValue * 10;
|
|
129
|
-
if (dateComponentNextMinValue > dateComponentOptions.max) {
|
|
130
|
-
const siblings = getInputSiblings(target);
|
|
131
|
-
defer(() => siblings.next.focus());
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
function renderInputsGroup(components, separator) {
|
|
135
|
-
const children = [];
|
|
136
|
-
components.forEach((dateComponent, index) => {
|
|
137
|
-
if (index) {
|
|
138
|
-
children.push((0, jsx_runtime_1.jsx)("span", { className: "dc-datetime-input__separator", children: separator }, `separator-${index}`));
|
|
139
|
-
}
|
|
140
|
-
children.push((0, jsx_runtime_1.jsx)(date_component_input_1.DateComponentInput, { id: ids === null || ids === void 0 ? void 0 : ids[dateComponent], label: (ariaLabels === null || ariaLabels === void 0 ? void 0 : ariaLabels[dateComponent]) || dateComponent, placeholder: placeholders === null || placeholders === void 0 ? void 0 : placeholders[dateComponent], disabled: disabled, readOnly: readOnly, name: dateComponent, value: dateComponents.getDisplayedValue(dateComponent), onChange: handleChange }, dateComponent));
|
|
141
|
-
});
|
|
142
|
-
return (0, jsx_runtime_1.jsx)("div", { className: "dc-datetime-input__group", children: children });
|
|
143
|
-
}
|
|
144
|
-
return ((0, jsx_runtime_1.jsx)("div", { className: (0, react_helpers_1.classNames)(className, 'dc-datetime-input'), ref: (0, react_helpers_1.mergeRefs)(ref, containerRef), role: "group", ...props, children: (0, jsx_runtime_1.jsxs)("div", { "data-testid": "inputs-container", className: (0, react_helpers_1.classNames)('dc-input', 'dc-datetime-input__body', {
|
|
145
|
-
'dc-input_focused': focused,
|
|
146
|
-
'dc-input_disabled': disabled,
|
|
147
|
-
'dc-input_invalid': invalid,
|
|
148
|
-
[`dc-input_size_${size}`]: size,
|
|
149
|
-
}), onKeyDown: handleKeyDown, onFocus: handleFocus, onBlur: handleBlur, children: [(type === 'date' || type === 'datetime') &&
|
|
150
|
-
renderInputsGroup(['day', 'month', 'year'], '/'), (type === 'time' || type === 'datetime') &&
|
|
151
|
-
renderInputsGroup(['hour', 'minute'], ':')] }) }));
|
|
152
|
-
});
|
|
153
|
-
function defer(callback) {
|
|
154
|
-
const timeout = window.setTimeout(callback, 1);
|
|
155
|
-
return () => {
|
|
156
|
-
window.clearTimeout(timeout);
|
|
157
|
-
};
|
|
158
|
-
}
|
|
159
|
-
function getDefaultValue(component) {
|
|
160
|
-
const now = new Date();
|
|
161
|
-
switch (component) {
|
|
162
|
-
case 'year':
|
|
163
|
-
return now.getFullYear();
|
|
164
|
-
case 'month':
|
|
165
|
-
return now.getMonth() + 1;
|
|
166
|
-
case 'day':
|
|
167
|
-
return now.getDate();
|
|
168
|
-
case 'hour':
|
|
169
|
-
return now.getHours();
|
|
170
|
-
case 'minute':
|
|
171
|
-
return now.getMinutes();
|
|
172
|
-
}
|
|
173
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./datetime-input"), exports);
|
|
18
|
-
__exportStar(require("./date-components"), exports);
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef, ReactNode, RefObject } from 'react';
|
|
2
|
-
export declare type DialogProps = {
|
|
3
|
-
/**
|
|
4
|
-
* A ref to an element that should receive focus after open.
|
|
5
|
-
*/
|
|
6
|
-
focusAfterOpen?: RefObject<HTMLElement>;
|
|
7
|
-
/**
|
|
8
|
-
* A ref to an element that should receive focus after close.
|
|
9
|
-
*/
|
|
10
|
-
focusAfterClose?: RefObject<HTMLElement>;
|
|
11
|
-
isOpen?: boolean;
|
|
12
|
-
showCloseButton?: boolean;
|
|
13
|
-
width?: 'sm' | 'md' | 'lg' | number;
|
|
14
|
-
heading?: ReactNode;
|
|
15
|
-
description?: ReactNode;
|
|
16
|
-
footerButtons?: ReactNode;
|
|
17
|
-
onClose?(): void;
|
|
18
|
-
} & ComponentPropsWithoutRef<'div'>;
|
|
19
|
-
export declare function Dialog({ style, className, isOpen, showCloseButton, focusAfterOpen, focusAfterClose, width, heading, description, footerButtons, children, onClose, ...props }: DialogProps): JSX.Element | null;
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Dialog = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const react_1 = require("react");
|
|
6
|
-
const guards_1 = require("../../lib/guards");
|
|
7
|
-
const react_helpers_1 = require("../../lib/react-helpers");
|
|
8
|
-
const use_disable_body_scroll_1 = require("../../hooks/use-disable-body-scroll");
|
|
9
|
-
const use_esc_key_down_1 = require("../../hooks/use-esc-key-down");
|
|
10
|
-
const use_focus_trap_1 = require("../../hooks/use-focus-trap");
|
|
11
|
-
const portal_1 = require("../portal");
|
|
12
|
-
const box_1 = require("../box");
|
|
13
|
-
const button_1 = require("../button");
|
|
14
|
-
const formatted_content_1 = require("../formatted-content");
|
|
15
|
-
const svg_icon_1 = require("../svg-icon");
|
|
16
|
-
const x_1 = require("../../bootstrap-icons/x");
|
|
17
|
-
const hooks_1 = require("../../hooks");
|
|
18
|
-
const DIALOG_WIDTH = {
|
|
19
|
-
sm: 320,
|
|
20
|
-
md: 640,
|
|
21
|
-
lg: 960,
|
|
22
|
-
};
|
|
23
|
-
function Dialog({ style, className, isOpen = false, showCloseButton = true, focusAfterOpen, focusAfterClose, width = 'md', heading, description, footerButtons, children, onClose, ...props }) {
|
|
24
|
-
const dialogRef = (0, react_1.useRef)(null);
|
|
25
|
-
const { shouldRender, animationClassName } = (0, hooks_1.useCloseAnimation)({
|
|
26
|
-
isOpen,
|
|
27
|
-
closeDurationMs: 200,
|
|
28
|
-
className: 'dc-dialog-container_with-animation',
|
|
29
|
-
openClassName: 'dc-dialog-container_open',
|
|
30
|
-
closingClassName: 'dc-dialog-container_closing',
|
|
31
|
-
});
|
|
32
|
-
(0, use_disable_body_scroll_1.useDisableBodyScroll)(isOpen);
|
|
33
|
-
(0, use_esc_key_down_1.useEscKeyDown)(() => (0, guards_1.isFunction)(onClose) && onClose(), isOpen);
|
|
34
|
-
(0, use_focus_trap_1.useFocusTrap)(dialogRef, isOpen);
|
|
35
|
-
(0, react_1.useEffect)(() => {
|
|
36
|
-
if (!shouldRender) {
|
|
37
|
-
return;
|
|
38
|
-
}
|
|
39
|
-
const focusAfterOpenEl = focusAfterOpen === null || focusAfterOpen === void 0 ? void 0 : focusAfterOpen.current;
|
|
40
|
-
const focusAfterCloseEl = focusAfterClose === null || focusAfterClose === void 0 ? void 0 : focusAfterClose.current;
|
|
41
|
-
if (focusAfterOpenEl) {
|
|
42
|
-
focusAfterOpenEl.focus();
|
|
43
|
-
}
|
|
44
|
-
return () => {
|
|
45
|
-
if (focusAfterCloseEl) {
|
|
46
|
-
focusAfterCloseEl.focus();
|
|
47
|
-
}
|
|
48
|
-
};
|
|
49
|
-
}, [shouldRender, focusAfterOpen, focusAfterClose]);
|
|
50
|
-
if (!shouldRender) {
|
|
51
|
-
return null;
|
|
52
|
-
}
|
|
53
|
-
let widthPx;
|
|
54
|
-
if (typeof width === 'string') {
|
|
55
|
-
widthPx = DIALOG_WIDTH[width] || DIALOG_WIDTH.md;
|
|
56
|
-
}
|
|
57
|
-
else {
|
|
58
|
-
widthPx = width || DIALOG_WIDTH.md;
|
|
59
|
-
}
|
|
60
|
-
return ((0, jsx_runtime_1.jsx)(portal_1.Portal, { children: (0, jsx_runtime_1.jsx)("div", { "data-testid": "dialog-container", className: (0, react_helpers_1.classNames)('dc-dialog-container', animationClassName), children: (0, jsx_runtime_1.jsxs)(box_1.Box, { ...props, ref: dialogRef, style: { ...style, width: widthPx }, className: (0, react_helpers_1.classNames)(className, 'dc-dialog'), "aria-modal": true, role: "dialog", padding: "none", elevation: "lg", borderRadius: "lg", children: [(0, jsx_runtime_1.jsxs)("div", { className: "dc-dialog__header", children: [Boolean(heading || description) && ((0, jsx_runtime_1.jsxs)("div", { className: "dc-dialog__header-content", children: [heading && (0, jsx_runtime_1.jsx)(formatted_content_1.Headline, { as: "h2", children: heading }), description && ((0, jsx_runtime_1.jsx)(formatted_content_1.Subheadline, { as: "div", className: "dc-dialog__description", children: description }))] })), showCloseButton && ((0, jsx_runtime_1.jsx)(button_1.Button, { className: "dc-dialog__close-btn", size: "sm", noPadding: true, appearance: "minimal", "data-testid": "dialog-close-button", leadingIcon: (0, jsx_runtime_1.jsx)(svg_icon_1.SvgIcon, { size: "2x", icon: x_1.x }), onClick: onClose }))] }), (0, jsx_runtime_1.jsx)("div", { className: "dc-dialog__content", children: children }), footerButtons && ((0, jsx_runtime_1.jsx)("div", { className: "dc-dialog__actions", children: footerButtons }))] }) }) }));
|
|
61
|
-
}
|
|
62
|
-
exports.Dialog = Dialog;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './dialog';
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./dialog"), exports);
|