@inventreedb/ui 0.2.3 → 0.3.0
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/CHANGELOG.md +52 -2
- package/dist/.vite/manifest.json +2004 -1
- package/dist/_virtual/jsx-runtime.js +6 -0
- package/dist/_virtual/jsx-runtime.js.map +1 -0
- package/dist/_virtual/jsx-runtime2.js +5 -0
- package/dist/_virtual/jsx-runtime2.js.map +1 -0
- package/dist/_virtual/react-jsx-runtime.development.js +5 -0
- package/dist/_virtual/react-jsx-runtime.development.js.map +1 -0
- package/dist/_virtual/react-jsx-runtime.production.min.js +5 -0
- package/dist/_virtual/react-jsx-runtime.production.min.js.map +1 -0
- package/dist/components/ActionButton.d.ts +19 -0
- package/dist/components/ActionButton.js +15 -0
- package/dist/components/ActionButton.js.map +1 -0
- package/dist/components/ButtonMenu.d.ts +10 -0
- package/dist/components/ButtonMenu.js +22 -0
- package/dist/components/ButtonMenu.js.map +1 -0
- package/dist/components/ProgressBar.d.ts +13 -0
- package/dist/components/ProgressBar.js +31 -0
- package/dist/components/ProgressBar.js.map +1 -0
- package/dist/components/RowActions.d.ts +18 -0
- package/dist/components/RowActions.js +118 -0
- package/dist/components/RowActions.js.map +1 -0
- package/dist/components/SearchInput.d.ts +9 -0
- package/dist/components/SearchInput.js +32 -0
- package/dist/components/SearchInput.js.map +1 -0
- package/dist/components/YesNoButton.d.ts +11 -0
- package/dist/components/YesNoButton.js +46 -0
- package/dist/components/YesNoButton.js.map +1 -0
- package/dist/enums/ApiEndpoints.d.ts +4 -1
- package/dist/enums/ApiEndpoints.js +3 -0
- package/dist/enums/ApiEndpoints.js.map +1 -1
- package/dist/enums/ModelInformation.js +2 -0
- package/dist/enums/ModelInformation.js.map +1 -1
- package/dist/functions/Conversion.d.ts +3 -0
- package/dist/functions/Conversion.js +19 -0
- package/dist/functions/Conversion.js.map +1 -0
- package/dist/functions/Formatting.d.ts +15 -0
- package/dist/functions/Formatting.js +47 -0
- package/dist/functions/Formatting.js.map +1 -0
- package/dist/functions/Navigation.d.ts +6 -0
- package/dist/functions/Navigation.js +5 -1
- package/dist/functions/Navigation.js.map +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.js +22 -0
- package/dist/index.js.map +1 -1
- package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +769 -0
- package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js.map +1 -0
- package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +578 -0
- package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js.map +1 -0
- package/dist/node_modules/@floating-ui/react/dist/floating-ui.react.js +1235 -0
- package/dist/node_modules/@floating-ui/react/dist/floating-ui.react.js.map +1 -0
- package/dist/node_modules/@floating-ui/react/dist/floating-ui.react.utils.js +122 -0
- package/dist/node_modules/@floating-ui/react/dist/floating-ui.react.utils.js.map +1 -0
- package/dist/node_modules/@floating-ui/react/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +78 -0
- package/dist/node_modules/@floating-ui/react/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js.map +1 -0
- package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +295 -0
- package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js.map +1 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +155 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js.map +1 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +152 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/ActionIcon/ActionIcon.js +99 -0
- package/dist/node_modules/@mantine/core/esm/components/ActionIcon/ActionIcon.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/ActionIcon/ActionIcon.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/ActionIcon/ActionIcon.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/ActionIcon/ActionIcon.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/ActionIcon/ActionIcon.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/ActionIcon/ActionIconGroup/ActionIconGroup.js +61 -0
- package/dist/node_modules/@mantine/core/esm/components/ActionIcon/ActionIconGroup/ActionIconGroup.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/ActionIcon/ActionIconGroupSection/ActionIconGroupSection.js +68 -0
- package/dist/node_modules/@mantine/core/esm/components/ActionIcon/ActionIconGroupSection/ActionIconGroupSection.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Badge/Badge.js +98 -0
- package/dist/node_modules/@mantine/core/esm/components/Badge/Badge.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Badge/Badge.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/Badge/Badge.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Badge/Badge.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/Badge/Badge.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/CloseButton/CloseButton.js +76 -0
- package/dist/node_modules/@mantine/core/esm/components/CloseButton/CloseButton.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/CloseButton/CloseButton.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/CloseButton/CloseButton.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/CloseButton/CloseButton.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/CloseButton/CloseButton.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/CloseButton/CloseIcon.js +29 -0
- package/dist/node_modules/@mantine/core/esm/components/CloseButton/CloseIcon.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Floating/FloatingArrow/FloatingArrow.js +48 -0
- package/dist/node_modules/@mantine/core/esm/components/Floating/FloatingArrow/FloatingArrow.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Floating/FloatingArrow/get-arrow-position-styles.js +95 -0
- package/dist/node_modules/@mantine/core/esm/components/Floating/FloatingArrow/get-arrow-position-styles.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Floating/get-floating-position/get-floating-position.js +12 -0
- package/dist/node_modules/@mantine/core/esm/components/Floating/get-floating-position/get-floating-position.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Floating/use-delayed-hover.js +31 -0
- package/dist/node_modules/@mantine/core/esm/components/Floating/use-delayed-hover.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Floating/use-floating-auto-update.js +37 -0
- package/dist/node_modules/@mantine/core/esm/components/Floating/use-floating-auto-update.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/FocusTrap/FocusTrap.js +30 -0
- package/dist/node_modules/@mantine/core/esm/components/FocusTrap/FocusTrap.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Group/Group.js +86 -0
- package/dist/node_modules/@mantine/core/esm/components/Group/Group.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Group/Group.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/Group/Group.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Group/Group.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/Group/Group.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Group/filter-falsy-children/filter-falsy-children.js +8 -0
- package/dist/node_modules/@mantine/core/esm/components/Group/filter-falsy-children/filter-falsy-children.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/Input.context.js +11 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/Input.context.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/Input.js +177 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/Input.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/Input.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/Input.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/Input.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/Input.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputClearButton/InputClearButton.js +35 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputClearButton/InputClearButton.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputDescription/InputDescription.js +65 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputDescription/InputDescription.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputError/InputError.js +65 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputError/InputError.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputLabel/InputLabel.js +84 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputLabel/InputLabel.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputPlaceholder/InputPlaceholder.js +52 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputPlaceholder/InputPlaceholder.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputWrapper/InputWrapper.js +170 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputWrapper/InputWrapper.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputWrapper/get-input-offsets/get-input-offsets.js +12 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputWrapper/get-input-offsets/get-input-offsets.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputWrapper.context.js +16 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/InputWrapper.context.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/use-input-props.js +81 -0
- package/dist/node_modules/@mantine/core/esm/components/Input/use-input-props.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/InputBase/InputBase.js +19 -0
- package/dist/node_modules/@mantine/core/esm/components/InputBase/InputBase.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/Loader.js +80 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/Loader.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/Loader.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/Loader.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/Loader.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/Loader.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/loaders/Bars.js +15 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/loaders/Bars.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/loaders/Dots.js +15 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/loaders/Dots.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/loaders/Oval.js +11 -0
- package/dist/node_modules/@mantine/core/esm/components/Loader/loaders/Oval.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/Menu.context.js +11 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/Menu.context.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/Menu.js +145 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/Menu.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/Menu.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/Menu.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/Menu.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/Menu.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/MenuDivider/MenuDivider.js +30 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/MenuDivider/MenuDivider.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/MenuDropdown/MenuDropdown.js +72 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/MenuDropdown/MenuDropdown.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/MenuItem/MenuItem.js +98 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/MenuItem/MenuItem.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/MenuLabel/MenuLabel.js +30 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/MenuLabel/MenuLabel.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/MenuTarget/MenuTarget.js +52 -0
- package/dist/node_modules/@mantine/core/esm/components/Menu/MenuTarget/MenuTarget.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Overlay/Overlay.js +66 -0
- package/dist/node_modules/@mantine/core/esm/components/Overlay/Overlay.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Overlay/Overlay.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/Overlay/Overlay.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Overlay/Overlay.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/Overlay/Overlay.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/Popover.context.js +11 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/Popover.context.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/Popover.js +237 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/Popover.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/Popover.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/Popover.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/Popover.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/Popover.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/PopoverDropdown/PopoverDropdown.js +118 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/PopoverDropdown/PopoverDropdown.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/PopoverTarget/PopoverTarget.js +51 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/PopoverTarget/PopoverTarget.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/use-popover.js +121 -0
- package/dist/node_modules/@mantine/core/esm/components/Popover/use-popover.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Portal/OptionalPortal.js +13 -0
- package/dist/node_modules/@mantine/core/esm/components/Portal/OptionalPortal.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Portal/Portal.js +42 -0
- package/dist/node_modules/@mantine/core/esm/components/Portal/Portal.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/Progress.context.js +11 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/Progress.context.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/Progress.js +58 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/Progress.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/Progress.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/Progress.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/Progress.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/Progress.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/ProgressLabel/ProgressLabel.js +30 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/ProgressLabel/ProgressLabel.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/ProgressRoot/ProgressRoot.js +53 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/ProgressRoot/ProgressRoot.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/ProgressSection/ProgressSection.js +60 -0
- package/dist/node_modules/@mantine/core/esm/components/Progress/ProgressSection/ProgressSection.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Stack/Stack.js +56 -0
- package/dist/node_modules/@mantine/core/esm/components/Stack/Stack.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Stack/Stack.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/Stack/Stack.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Stack/Stack.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/Stack/Stack.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Text/Text.js +94 -0
- package/dist/node_modules/@mantine/core/esm/components/Text/Text.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Text/Text.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/Text/Text.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Text/Text.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/Text/Text.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/TextInput/TextInput.js +16 -0
- package/dist/node_modules/@mantine/core/esm/components/TextInput/TextInput.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/Tooltip.js +204 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/Tooltip.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/Tooltip.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/Tooltip.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/Tooltip.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/Tooltip.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/TooltipFloating/TooltipFloating.js +129 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/TooltipFloating/TooltipFloating.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/TooltipFloating/use-floating-tooltip.js +65 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/TooltipFloating/use-floating-tooltip.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/TooltipGroup/TooltipGroup.context.js +9 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/TooltipGroup/TooltipGroup.context.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/TooltipGroup/TooltipGroup.js +19 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/TooltipGroup/TooltipGroup.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/use-tooltip.js +118 -0
- package/dist/node_modules/@mantine/core/esm/components/Tooltip/use-tooltip.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Transition/Transition.js +47 -0
- package/dist/node_modules/@mantine/core/esm/components/Transition/Transition.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Transition/get-transition-props/get-transition-props.js +11 -0
- package/dist/node_modules/@mantine/core/esm/components/Transition/get-transition-props/get-transition-props.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Transition/get-transition-styles/get-transition-styles.js +41 -0
- package/dist/node_modules/@mantine/core/esm/components/Transition/get-transition-styles/get-transition-styles.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Transition/transitions.js +122 -0
- package/dist/node_modules/@mantine/core/esm/components/Transition/transitions.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/Transition/use-transition.js +86 -0
- package/dist/node_modules/@mantine/core/esm/components/Transition/use-transition.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/UnstyledButton/UnstyledButton.js +51 -0
- package/dist/node_modules/@mantine/core/esm/components/UnstyledButton/UnstyledButton.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/UnstyledButton/UnstyledButton.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/UnstyledButton/UnstyledButton.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/UnstyledButton/UnstyledButton.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/UnstyledButton/UnstyledButton.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/VisuallyHidden/VisuallyHidden.js +29 -0
- package/dist/node_modules/@mantine/core/esm/components/VisuallyHidden/VisuallyHidden.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/VisuallyHidden/VisuallyHidden.module.css.js +6 -0
- package/dist/node_modules/@mantine/core/esm/components/VisuallyHidden/VisuallyHidden.module.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/components/VisuallyHidden/VisuallyHidden.module.css.mjs.vanilla.css.js +2 -0
- package/dist/node_modules/@mantine/core/esm/components/VisuallyHidden/VisuallyHidden.module.css.mjs.vanilla.css.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/Box.js +83 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/Box.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/get-box-mod/get-box-mod.js +33 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/get-box-mod/get-box-mod.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/get-box-style/get-box-style.js +29 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/get-box-style/get-box-style.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/get-style-object/get-style-object.js +19 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/get-style-object/get-style-object.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/extract-style-props/extract-style-props.js +123 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/extract-style-props/extract-style-props.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/parse-style-props/parse-style-props.js +88 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/parse-style-props/parse-style-props.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/parse-style-props/sort-media-queries.js +15 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/parse-style-props/sort-media-queries.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/border-resolver/border-resolver.js +21 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/border-resolver/border-resolver.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/color-resolver/color-resolver.js +25 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/color-resolver/color-resolver.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/font-family-resolver/font-family-resolver.js +17 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/font-family-resolver/font-family-resolver.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/font-size-resolver/font-size-resolver.js +23 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/font-size-resolver/font-size-resolver.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/identity-resolver/identity-resolver.js +7 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/identity-resolver/identity-resolver.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/index.js +23 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/index.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/line-height-resolver/line-height-resolver.js +14 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/line-height-resolver/line-height-resolver.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/size-resolver/size-resolver.js +13 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/size-resolver/size-resolver.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/spacing-resolver/spacing-resolver.js +21 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/resolvers/spacing-resolver/spacing-resolver.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/style-props-data.js +55 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/style-props/style-props-data.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/use-random-classname/use-random-classname.js +9 -0
- package/dist/node_modules/@mantine/core/esm/core/Box/use-random-classname/use-random-classname.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/DirectionProvider/DirectionProvider.js +17 -0
- package/dist/node_modules/@mantine/core/esm/core/DirectionProvider/DirectionProvider.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/InlineStyles/InlineStyles.js +19 -0
- package/dist/node_modules/@mantine/core/esm/core/InlineStyles/InlineStyles.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/InlineStyles/css-object-to-string/css-object-to-string.js +14 -0
- package/dist/node_modules/@mantine/core/esm/core/InlineStyles/css-object-to-string/css-object-to-string.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/InlineStyles/styles-to-string/styles-to-string.js +13 -0
- package/dist/node_modules/@mantine/core/esm/core/InlineStyles/styles-to-string/styles-to-string.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/Mantine.context.js +40 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/Mantine.context.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/MantineThemeProvider/MantineThemeProvider.js +17 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/MantineThemeProvider/MantineThemeProvider.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-auto-contrast-value/get-auto-contrast-value.js +7 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-auto-contrast-value/get-auto-contrast-value.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-contrast-color/get-contrast-color.js +13 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-contrast-color/get-contrast-color.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-gradient/get-gradient.js +15 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-gradient/get-gradient.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-primary-shade/get-primary-shade.js +13 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-primary-shade/get-primary-shade.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-theme-color/get-theme-color.js +9 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-theme-color/get-theme-color.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/luminance/luminance.js +32 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/luminance/luminance.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/parse-theme-color/parse-theme-color.js +78 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/parse-theme-color/parse-theme-color.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/rgba/rgba.js +22 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/rgba/rgba.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/to-rgba/to-rgba.js +116 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/to-rgba/to-rgba.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/use-props/use-props.js +15 -0
- package/dist/node_modules/@mantine/core/esm/core/MantineProvider/use-props/use-props.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/factory/create-polymorphic-component.js +7 -0
- package/dist/node_modules/@mantine/core/esm/core/factory/create-polymorphic-component.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/factory/factory.js +21 -0
- package/dist/node_modules/@mantine/core/esm/core/factory/factory.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/factory/polymorphic-factory.js +18 -0
- package/dist/node_modules/@mantine/core/esm/core/factory/polymorphic-factory.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/create-vars-resolver/create-vars-resolver.js +7 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/create-vars-resolver/create-vars-resolver.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-resolved-styles-api/use-resolved-styles-api.js +31 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-resolved-styles-api/use-resolved-styles-api.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-class-name.js +48 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-class-name.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-global-class-names/get-global-class-names.js +17 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-global-class-names/get-global-class-names.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-options-class-names/get-options-class-names.js +19 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-options-class-names/get-options-class-names.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-resolved-class-names/get-resolved-class-names.js +14 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-resolved-class-names/get-resolved-class-names.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-root-class-name/get-root-class-name.js +7 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-root-class-name/get-root-class-name.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-selector-class-name/get-selector-class-name.js +7 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-selector-class-name/get-selector-class-name.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-static-class-names/get-static-class-names.js +15 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-static-class-names/get-static-class-names.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-theme-class-names/get-theme-class-names.js +24 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-theme-class-names/get-theme-class-names.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-variant-class-name/get-variant-class-name.js +12 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/get-variant-class-name/get-variant-class-name.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/resolve-class-names/resolve-class-names.js +26 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-class-name/resolve-class-names/resolve-class-names.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/get-style.js +32 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/get-style.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/get-theme-styles/get-theme-styles.js +24 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/get-theme-styles/get-theme-styles.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/resolve-style/resolve-style.js +19 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/resolve-style/resolve-style.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/resolve-styles/resolve-styles.js +13 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/resolve-styles/resolve-styles.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/resolve-vars/merge-vars.js +17 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/resolve-vars/merge-vars.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/resolve-vars/resolve-vars.js +25 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/get-style/resolve-vars/resolve-vars.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/use-styles.js +70 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/use-styles.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/use-transformed-styles.js +34 -0
- package/dist/node_modules/@mantine/core/esm/core/styles-api/use-styles/use-transformed-styles.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/camel-to-kebab-case/camel-to-kebab-case.js +7 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/camel-to-kebab-case/camel-to-kebab-case.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/close-on-escape/close-on-escape.js +17 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/close-on-escape/close-on-escape.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/create-event-handler/create-event-handler.js +10 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/create-event-handler/create-event-handler.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/create-optional-context/create-optional-context.js +12 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/create-optional-context/create-optional-context.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/create-safe-context/create-safe-context.js +18 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/create-safe-context/create-safe-context.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/create-scoped-keydown-handler/create-scoped-keydown-handler.js +99 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/create-scoped-keydown-handler/create-scoped-keydown-handler.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/filter-props/filter-props.js +12 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/filter-props/filter-props.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/find-element-ancestor/find-element-ancestor.js +10 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/find-element-ancestor/find-element-ancestor.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/get-context-item-index/get-context-item-index.js +14 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/get-context-item-index/get-context-item-index.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/get-default-z-index/get-default-z-index.js +14 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/get-default-z-index/get-default-z-index.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/get-ref-prop/get-ref-prop.js +16 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/get-ref-prop/get-ref-prop.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/get-size/get-size.js +38 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/get-size/get-size.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/is-element/is-element.js +17 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/is-element/is-element.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/is-number-like/is-number-like.js +18 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/is-number-like/is-number-like.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/keys/keys.js +7 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/keys/keys.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/noop/noop.js +6 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/noop/noop.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/units-converters/rem.js +47 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/units-converters/rem.js.map +1 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/use-hovered/use-hovered.js +10 -0
- package/dist/node_modules/@mantine/core/esm/core/utils/use-hovered/use-hovered.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-click-outside/use-click-outside.js +26 -0
- package/dist/node_modules/@mantine/hooks/esm/use-click-outside/use-click-outside.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-debounced-value/use-debounced-value.js +31 -0
- package/dist/node_modules/@mantine/hooks/esm/use-debounced-value/use-debounced-value.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-did-update/use-did-update.js +21 -0
- package/dist/node_modules/@mantine/hooks/esm/use-did-update/use-did-update.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-focus-return/use-focus-return.js +34 -0
- package/dist/node_modules/@mantine/hooks/esm/use-focus-return/use-focus-return.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-focus-trap/scope-tab.js +31 -0
- package/dist/node_modules/@mantine/hooks/esm/use-focus-trap/scope-tab.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-focus-trap/tabbable.js +56 -0
- package/dist/node_modules/@mantine/hooks/esm/use-focus-trap/tabbable.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-focus-trap/use-focus-trap.js +68 -0
- package/dist/node_modules/@mantine/hooks/esm/use-focus-trap/use-focus-trap.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-id/use-id.js +22 -0
- package/dist/node_modules/@mantine/hooks/esm/use-id/use-id.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-id/use-react-id.js +10 -0
- package/dist/node_modules/@mantine/hooks/esm/use-id/use-react-id.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-isomorphic-effect/use-isomorphic-effect.js +6 -0
- package/dist/node_modules/@mantine/hooks/esm/use-isomorphic-effect/use-isomorphic-effect.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-media-query/use-media-query.js +37 -0
- package/dist/node_modules/@mantine/hooks/esm/use-media-query/use-media-query.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-merged-ref/use-merged-ref.js +41 -0
- package/dist/node_modules/@mantine/hooks/esm/use-merged-ref/use-merged-ref.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-reduced-motion/use-reduced-motion.js +8 -0
- package/dist/node_modules/@mantine/hooks/esm/use-reduced-motion/use-reduced-motion.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/use-uncontrolled/use-uncontrolled.js +24 -0
- package/dist/node_modules/@mantine/hooks/esm/use-uncontrolled/use-uncontrolled.js.map +1 -0
- package/dist/node_modules/@mantine/hooks/esm/utils/random-id/random-id.js +7 -0
- package/dist/node_modules/@mantine/hooks/esm/utils/random-id/random-id.js.map +1 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/createReactComponent.js +38 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/createReactComponent.js.map +1 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/defaultAttributes.js +31 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/defaultAttributes.js.map +1 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconArrowRight.js +12 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconArrowRight.js.map +1 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconCircleX.js +12 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconCircleX.js.map +1 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconCopy.js +12 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconCopy.js.map +1 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconDots.js +12 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconDots.js.map +1 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconEdit.js +12 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconEdit.js.map +1 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconSearch.js +12 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconSearch.js.map +1 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconTrash.js +12 -0
- package/dist/node_modules/@tabler/icons-react/dist/esm/icons/IconTrash.js.map +1 -0
- package/dist/node_modules/clsx/dist/clsx.js +18 -0
- package/dist/node_modules/clsx/dist/clsx.js.map +1 -0
- package/dist/node_modules/react/cjs/react-jsx-runtime.development.js +891 -0
- package/dist/node_modules/react/cjs/react-jsx-runtime.development.js.map +1 -0
- package/dist/node_modules/react/cjs/react-jsx-runtime.production.min.js +34 -0
- package/dist/node_modules/react/cjs/react-jsx-runtime.production.min.js.map +1 -0
- package/dist/node_modules/react/jsx-runtime.js +18 -0
- package/dist/node_modules/react/jsx-runtime.js.map +1 -0
- package/dist/types/Plugins.d.ts +3 -0
- package/dist/types/Plugins.js +1 -1
- package/dist/types/Plugins.js.map +1 -1
- package/dist/types/Rendering.d.ts +18 -0
- package/dist/types/Settings.d.ts +1 -0
- package/dist/types/Tables.d.ts +141 -7
- package/dist/types/User.d.ts +2 -0
- package/lib/components/ActionButton.tsx +61 -0
- package/lib/components/ButtonMenu.tsx +33 -0
- package/lib/components/ProgressBar.tsx +46 -0
- package/lib/components/RowActions.tsx +157 -0
- package/lib/components/SearchInput.tsx +49 -0
- package/lib/components/YesNoButton.tsx +42 -0
- package/lib/enums/ApiEndpoints.tsx +4 -1
- package/lib/enums/ModelInformation.tsx +2 -0
- package/lib/functions/Conversion.tsx +42 -0
- package/lib/functions/Formatting.tsx +88 -0
- package/lib/functions/Navigation.tsx +12 -1
- package/lib/index.ts +22 -0
- package/lib/types/Plugins.tsx +3 -0
- package/lib/types/Rendering.tsx +24 -0
- package/lib/types/Settings.tsx +1 -0
- package/lib/types/Tables.tsx +150 -7
- package/lib/types/User.tsx +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,578 @@
|
|
|
1
|
+
import { offset as offset$1, shift as shift$1, limitShift as limitShift$1, flip as flip$1, inline as inline$1, size as size$1, arrow as arrow$1, computePosition as computePosition$1 } from "../../core/dist/floating-ui.core.js";
|
|
2
|
+
import { createCoords, rectToClientRect, round, max, min, floor } from "../../utils/dist/floating-ui.utils.js";
|
|
3
|
+
import { getOverflowAncestors, isElement, getDocumentElement, getWindow, getFrameElement, getComputedStyle, isHTMLElement, isTopLayer, getParentNode, isLastTraversableNode, isTableElement, isContainingBlock, getContainingBlock, getNodeName, isOverflowElement, getNodeScroll, isWebKit } from "../../utils/dist/floating-ui.utils.dom.js";
|
|
4
|
+
function getCssDimensions(element) {
|
|
5
|
+
const css = getComputedStyle(element);
|
|
6
|
+
let width = parseFloat(css.width) || 0;
|
|
7
|
+
let height = parseFloat(css.height) || 0;
|
|
8
|
+
const hasOffset = isHTMLElement(element);
|
|
9
|
+
const offsetWidth = hasOffset ? element.offsetWidth : width;
|
|
10
|
+
const offsetHeight = hasOffset ? element.offsetHeight : height;
|
|
11
|
+
const shouldFallback = round(width) !== offsetWidth || round(height) !== offsetHeight;
|
|
12
|
+
if (shouldFallback) {
|
|
13
|
+
width = offsetWidth;
|
|
14
|
+
height = offsetHeight;
|
|
15
|
+
}
|
|
16
|
+
return {
|
|
17
|
+
width,
|
|
18
|
+
height,
|
|
19
|
+
$: shouldFallback
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
function unwrapElement(element) {
|
|
23
|
+
return !isElement(element) ? element.contextElement : element;
|
|
24
|
+
}
|
|
25
|
+
function getScale(element) {
|
|
26
|
+
const domElement = unwrapElement(element);
|
|
27
|
+
if (!isHTMLElement(domElement)) {
|
|
28
|
+
return createCoords(1);
|
|
29
|
+
}
|
|
30
|
+
const rect = domElement.getBoundingClientRect();
|
|
31
|
+
const {
|
|
32
|
+
width,
|
|
33
|
+
height,
|
|
34
|
+
$
|
|
35
|
+
} = getCssDimensions(domElement);
|
|
36
|
+
let x = ($ ? round(rect.width) : rect.width) / width;
|
|
37
|
+
let y = ($ ? round(rect.height) : rect.height) / height;
|
|
38
|
+
if (!x || !Number.isFinite(x)) {
|
|
39
|
+
x = 1;
|
|
40
|
+
}
|
|
41
|
+
if (!y || !Number.isFinite(y)) {
|
|
42
|
+
y = 1;
|
|
43
|
+
}
|
|
44
|
+
return {
|
|
45
|
+
x,
|
|
46
|
+
y
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
const noOffsets = /* @__PURE__ */ createCoords(0);
|
|
50
|
+
function getVisualOffsets(element) {
|
|
51
|
+
const win = getWindow(element);
|
|
52
|
+
if (!isWebKit() || !win.visualViewport) {
|
|
53
|
+
return noOffsets;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
x: win.visualViewport.offsetLeft,
|
|
57
|
+
y: win.visualViewport.offsetTop
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
function shouldAddVisualOffsets(element, isFixed, floatingOffsetParent) {
|
|
61
|
+
if (isFixed === void 0) {
|
|
62
|
+
isFixed = false;
|
|
63
|
+
}
|
|
64
|
+
if (!floatingOffsetParent || isFixed && floatingOffsetParent !== getWindow(element)) {
|
|
65
|
+
return false;
|
|
66
|
+
}
|
|
67
|
+
return isFixed;
|
|
68
|
+
}
|
|
69
|
+
function getBoundingClientRect(element, includeScale, isFixedStrategy, offsetParent) {
|
|
70
|
+
if (includeScale === void 0) {
|
|
71
|
+
includeScale = false;
|
|
72
|
+
}
|
|
73
|
+
if (isFixedStrategy === void 0) {
|
|
74
|
+
isFixedStrategy = false;
|
|
75
|
+
}
|
|
76
|
+
const clientRect = element.getBoundingClientRect();
|
|
77
|
+
const domElement = unwrapElement(element);
|
|
78
|
+
let scale = createCoords(1);
|
|
79
|
+
if (includeScale) {
|
|
80
|
+
if (offsetParent) {
|
|
81
|
+
if (isElement(offsetParent)) {
|
|
82
|
+
scale = getScale(offsetParent);
|
|
83
|
+
}
|
|
84
|
+
} else {
|
|
85
|
+
scale = getScale(element);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
const visualOffsets = shouldAddVisualOffsets(domElement, isFixedStrategy, offsetParent) ? getVisualOffsets(domElement) : createCoords(0);
|
|
89
|
+
let x = (clientRect.left + visualOffsets.x) / scale.x;
|
|
90
|
+
let y = (clientRect.top + visualOffsets.y) / scale.y;
|
|
91
|
+
let width = clientRect.width / scale.x;
|
|
92
|
+
let height = clientRect.height / scale.y;
|
|
93
|
+
if (domElement) {
|
|
94
|
+
const win = getWindow(domElement);
|
|
95
|
+
const offsetWin = offsetParent && isElement(offsetParent) ? getWindow(offsetParent) : offsetParent;
|
|
96
|
+
let currentWin = win;
|
|
97
|
+
let currentIFrame = getFrameElement(currentWin);
|
|
98
|
+
while (currentIFrame && offsetParent && offsetWin !== currentWin) {
|
|
99
|
+
const iframeScale = getScale(currentIFrame);
|
|
100
|
+
const iframeRect = currentIFrame.getBoundingClientRect();
|
|
101
|
+
const css = getComputedStyle(currentIFrame);
|
|
102
|
+
const left = iframeRect.left + (currentIFrame.clientLeft + parseFloat(css.paddingLeft)) * iframeScale.x;
|
|
103
|
+
const top = iframeRect.top + (currentIFrame.clientTop + parseFloat(css.paddingTop)) * iframeScale.y;
|
|
104
|
+
x *= iframeScale.x;
|
|
105
|
+
y *= iframeScale.y;
|
|
106
|
+
width *= iframeScale.x;
|
|
107
|
+
height *= iframeScale.y;
|
|
108
|
+
x += left;
|
|
109
|
+
y += top;
|
|
110
|
+
currentWin = getWindow(currentIFrame);
|
|
111
|
+
currentIFrame = getFrameElement(currentWin);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
return rectToClientRect({
|
|
115
|
+
width,
|
|
116
|
+
height,
|
|
117
|
+
x,
|
|
118
|
+
y
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
function convertOffsetParentRelativeRectToViewportRelativeRect(_ref) {
|
|
122
|
+
let {
|
|
123
|
+
elements,
|
|
124
|
+
rect,
|
|
125
|
+
offsetParent,
|
|
126
|
+
strategy
|
|
127
|
+
} = _ref;
|
|
128
|
+
const isFixed = strategy === "fixed";
|
|
129
|
+
const documentElement = getDocumentElement(offsetParent);
|
|
130
|
+
const topLayer = elements ? isTopLayer(elements.floating) : false;
|
|
131
|
+
if (offsetParent === documentElement || topLayer && isFixed) {
|
|
132
|
+
return rect;
|
|
133
|
+
}
|
|
134
|
+
let scroll = {
|
|
135
|
+
scrollLeft: 0,
|
|
136
|
+
scrollTop: 0
|
|
137
|
+
};
|
|
138
|
+
let scale = createCoords(1);
|
|
139
|
+
const offsets = createCoords(0);
|
|
140
|
+
const isOffsetParentAnElement = isHTMLElement(offsetParent);
|
|
141
|
+
if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {
|
|
142
|
+
if (getNodeName(offsetParent) !== "body" || isOverflowElement(documentElement)) {
|
|
143
|
+
scroll = getNodeScroll(offsetParent);
|
|
144
|
+
}
|
|
145
|
+
if (isHTMLElement(offsetParent)) {
|
|
146
|
+
const offsetRect = getBoundingClientRect(offsetParent);
|
|
147
|
+
scale = getScale(offsetParent);
|
|
148
|
+
offsets.x = offsetRect.x + offsetParent.clientLeft;
|
|
149
|
+
offsets.y = offsetRect.y + offsetParent.clientTop;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
return {
|
|
153
|
+
width: rect.width * scale.x,
|
|
154
|
+
height: rect.height * scale.y,
|
|
155
|
+
x: rect.x * scale.x - scroll.scrollLeft * scale.x + offsets.x,
|
|
156
|
+
y: rect.y * scale.y - scroll.scrollTop * scale.y + offsets.y
|
|
157
|
+
};
|
|
158
|
+
}
|
|
159
|
+
function getClientRects(element) {
|
|
160
|
+
return Array.from(element.getClientRects());
|
|
161
|
+
}
|
|
162
|
+
function getWindowScrollBarX(element) {
|
|
163
|
+
return getBoundingClientRect(getDocumentElement(element)).left + getNodeScroll(element).scrollLeft;
|
|
164
|
+
}
|
|
165
|
+
function getDocumentRect(element) {
|
|
166
|
+
const html = getDocumentElement(element);
|
|
167
|
+
const scroll = getNodeScroll(element);
|
|
168
|
+
const body = element.ownerDocument.body;
|
|
169
|
+
const width = max(html.scrollWidth, html.clientWidth, body.scrollWidth, body.clientWidth);
|
|
170
|
+
const height = max(html.scrollHeight, html.clientHeight, body.scrollHeight, body.clientHeight);
|
|
171
|
+
let x = -scroll.scrollLeft + getWindowScrollBarX(element);
|
|
172
|
+
const y = -scroll.scrollTop;
|
|
173
|
+
if (getComputedStyle(body).direction === "rtl") {
|
|
174
|
+
x += max(html.clientWidth, body.clientWidth) - width;
|
|
175
|
+
}
|
|
176
|
+
return {
|
|
177
|
+
width,
|
|
178
|
+
height,
|
|
179
|
+
x,
|
|
180
|
+
y
|
|
181
|
+
};
|
|
182
|
+
}
|
|
183
|
+
function getViewportRect(element, strategy) {
|
|
184
|
+
const win = getWindow(element);
|
|
185
|
+
const html = getDocumentElement(element);
|
|
186
|
+
const visualViewport = win.visualViewport;
|
|
187
|
+
let width = html.clientWidth;
|
|
188
|
+
let height = html.clientHeight;
|
|
189
|
+
let x = 0;
|
|
190
|
+
let y = 0;
|
|
191
|
+
if (visualViewport) {
|
|
192
|
+
width = visualViewport.width;
|
|
193
|
+
height = visualViewport.height;
|
|
194
|
+
const visualViewportBased = isWebKit();
|
|
195
|
+
if (!visualViewportBased || visualViewportBased && strategy === "fixed") {
|
|
196
|
+
x = visualViewport.offsetLeft;
|
|
197
|
+
y = visualViewport.offsetTop;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
return {
|
|
201
|
+
width,
|
|
202
|
+
height,
|
|
203
|
+
x,
|
|
204
|
+
y
|
|
205
|
+
};
|
|
206
|
+
}
|
|
207
|
+
function getInnerBoundingClientRect(element, strategy) {
|
|
208
|
+
const clientRect = getBoundingClientRect(element, true, strategy === "fixed");
|
|
209
|
+
const top = clientRect.top + element.clientTop;
|
|
210
|
+
const left = clientRect.left + element.clientLeft;
|
|
211
|
+
const scale = isHTMLElement(element) ? getScale(element) : createCoords(1);
|
|
212
|
+
const width = element.clientWidth * scale.x;
|
|
213
|
+
const height = element.clientHeight * scale.y;
|
|
214
|
+
const x = left * scale.x;
|
|
215
|
+
const y = top * scale.y;
|
|
216
|
+
return {
|
|
217
|
+
width,
|
|
218
|
+
height,
|
|
219
|
+
x,
|
|
220
|
+
y
|
|
221
|
+
};
|
|
222
|
+
}
|
|
223
|
+
function getClientRectFromClippingAncestor(element, clippingAncestor, strategy) {
|
|
224
|
+
let rect;
|
|
225
|
+
if (clippingAncestor === "viewport") {
|
|
226
|
+
rect = getViewportRect(element, strategy);
|
|
227
|
+
} else if (clippingAncestor === "document") {
|
|
228
|
+
rect = getDocumentRect(getDocumentElement(element));
|
|
229
|
+
} else if (isElement(clippingAncestor)) {
|
|
230
|
+
rect = getInnerBoundingClientRect(clippingAncestor, strategy);
|
|
231
|
+
} else {
|
|
232
|
+
const visualOffsets = getVisualOffsets(element);
|
|
233
|
+
rect = {
|
|
234
|
+
...clippingAncestor,
|
|
235
|
+
x: clippingAncestor.x - visualOffsets.x,
|
|
236
|
+
y: clippingAncestor.y - visualOffsets.y
|
|
237
|
+
};
|
|
238
|
+
}
|
|
239
|
+
return rectToClientRect(rect);
|
|
240
|
+
}
|
|
241
|
+
function hasFixedPositionAncestor(element, stopNode) {
|
|
242
|
+
const parentNode = getParentNode(element);
|
|
243
|
+
if (parentNode === stopNode || !isElement(parentNode) || isLastTraversableNode(parentNode)) {
|
|
244
|
+
return false;
|
|
245
|
+
}
|
|
246
|
+
return getComputedStyle(parentNode).position === "fixed" || hasFixedPositionAncestor(parentNode, stopNode);
|
|
247
|
+
}
|
|
248
|
+
function getClippingElementAncestors(element, cache) {
|
|
249
|
+
const cachedResult = cache.get(element);
|
|
250
|
+
if (cachedResult) {
|
|
251
|
+
return cachedResult;
|
|
252
|
+
}
|
|
253
|
+
let result = getOverflowAncestors(element, [], false).filter((el) => isElement(el) && getNodeName(el) !== "body");
|
|
254
|
+
let currentContainingBlockComputedStyle = null;
|
|
255
|
+
const elementIsFixed = getComputedStyle(element).position === "fixed";
|
|
256
|
+
let currentNode = elementIsFixed ? getParentNode(element) : element;
|
|
257
|
+
while (isElement(currentNode) && !isLastTraversableNode(currentNode)) {
|
|
258
|
+
const computedStyle = getComputedStyle(currentNode);
|
|
259
|
+
const currentNodeIsContaining = isContainingBlock(currentNode);
|
|
260
|
+
if (!currentNodeIsContaining && computedStyle.position === "fixed") {
|
|
261
|
+
currentContainingBlockComputedStyle = null;
|
|
262
|
+
}
|
|
263
|
+
const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === "static" && !!currentContainingBlockComputedStyle && ["absolute", "fixed"].includes(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);
|
|
264
|
+
if (shouldDropCurrentNode) {
|
|
265
|
+
result = result.filter((ancestor) => ancestor !== currentNode);
|
|
266
|
+
} else {
|
|
267
|
+
currentContainingBlockComputedStyle = computedStyle;
|
|
268
|
+
}
|
|
269
|
+
currentNode = getParentNode(currentNode);
|
|
270
|
+
}
|
|
271
|
+
cache.set(element, result);
|
|
272
|
+
return result;
|
|
273
|
+
}
|
|
274
|
+
function getClippingRect(_ref) {
|
|
275
|
+
let {
|
|
276
|
+
element,
|
|
277
|
+
boundary,
|
|
278
|
+
rootBoundary,
|
|
279
|
+
strategy
|
|
280
|
+
} = _ref;
|
|
281
|
+
const elementClippingAncestors = boundary === "clippingAncestors" ? isTopLayer(element) ? [] : getClippingElementAncestors(element, this._c) : [].concat(boundary);
|
|
282
|
+
const clippingAncestors = [...elementClippingAncestors, rootBoundary];
|
|
283
|
+
const firstClippingAncestor = clippingAncestors[0];
|
|
284
|
+
const clippingRect = clippingAncestors.reduce((accRect, clippingAncestor) => {
|
|
285
|
+
const rect = getClientRectFromClippingAncestor(element, clippingAncestor, strategy);
|
|
286
|
+
accRect.top = max(rect.top, accRect.top);
|
|
287
|
+
accRect.right = min(rect.right, accRect.right);
|
|
288
|
+
accRect.bottom = min(rect.bottom, accRect.bottom);
|
|
289
|
+
accRect.left = max(rect.left, accRect.left);
|
|
290
|
+
return accRect;
|
|
291
|
+
}, getClientRectFromClippingAncestor(element, firstClippingAncestor, strategy));
|
|
292
|
+
return {
|
|
293
|
+
width: clippingRect.right - clippingRect.left,
|
|
294
|
+
height: clippingRect.bottom - clippingRect.top,
|
|
295
|
+
x: clippingRect.left,
|
|
296
|
+
y: clippingRect.top
|
|
297
|
+
};
|
|
298
|
+
}
|
|
299
|
+
function getDimensions(element) {
|
|
300
|
+
const {
|
|
301
|
+
width,
|
|
302
|
+
height
|
|
303
|
+
} = getCssDimensions(element);
|
|
304
|
+
return {
|
|
305
|
+
width,
|
|
306
|
+
height
|
|
307
|
+
};
|
|
308
|
+
}
|
|
309
|
+
function getRectRelativeToOffsetParent(element, offsetParent, strategy) {
|
|
310
|
+
const isOffsetParentAnElement = isHTMLElement(offsetParent);
|
|
311
|
+
const documentElement = getDocumentElement(offsetParent);
|
|
312
|
+
const isFixed = strategy === "fixed";
|
|
313
|
+
const rect = getBoundingClientRect(element, true, isFixed, offsetParent);
|
|
314
|
+
let scroll = {
|
|
315
|
+
scrollLeft: 0,
|
|
316
|
+
scrollTop: 0
|
|
317
|
+
};
|
|
318
|
+
const offsets = createCoords(0);
|
|
319
|
+
if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {
|
|
320
|
+
if (getNodeName(offsetParent) !== "body" || isOverflowElement(documentElement)) {
|
|
321
|
+
scroll = getNodeScroll(offsetParent);
|
|
322
|
+
}
|
|
323
|
+
if (isOffsetParentAnElement) {
|
|
324
|
+
const offsetRect = getBoundingClientRect(offsetParent, true, isFixed, offsetParent);
|
|
325
|
+
offsets.x = offsetRect.x + offsetParent.clientLeft;
|
|
326
|
+
offsets.y = offsetRect.y + offsetParent.clientTop;
|
|
327
|
+
} else if (documentElement) {
|
|
328
|
+
offsets.x = getWindowScrollBarX(documentElement);
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
const x = rect.left + scroll.scrollLeft - offsets.x;
|
|
332
|
+
const y = rect.top + scroll.scrollTop - offsets.y;
|
|
333
|
+
return {
|
|
334
|
+
x,
|
|
335
|
+
y,
|
|
336
|
+
width: rect.width,
|
|
337
|
+
height: rect.height
|
|
338
|
+
};
|
|
339
|
+
}
|
|
340
|
+
function isStaticPositioned(element) {
|
|
341
|
+
return getComputedStyle(element).position === "static";
|
|
342
|
+
}
|
|
343
|
+
function getTrueOffsetParent(element, polyfill) {
|
|
344
|
+
if (!isHTMLElement(element) || getComputedStyle(element).position === "fixed") {
|
|
345
|
+
return null;
|
|
346
|
+
}
|
|
347
|
+
if (polyfill) {
|
|
348
|
+
return polyfill(element);
|
|
349
|
+
}
|
|
350
|
+
return element.offsetParent;
|
|
351
|
+
}
|
|
352
|
+
function getOffsetParent(element, polyfill) {
|
|
353
|
+
const win = getWindow(element);
|
|
354
|
+
if (isTopLayer(element)) {
|
|
355
|
+
return win;
|
|
356
|
+
}
|
|
357
|
+
if (!isHTMLElement(element)) {
|
|
358
|
+
let svgOffsetParent = getParentNode(element);
|
|
359
|
+
while (svgOffsetParent && !isLastTraversableNode(svgOffsetParent)) {
|
|
360
|
+
if (isElement(svgOffsetParent) && !isStaticPositioned(svgOffsetParent)) {
|
|
361
|
+
return svgOffsetParent;
|
|
362
|
+
}
|
|
363
|
+
svgOffsetParent = getParentNode(svgOffsetParent);
|
|
364
|
+
}
|
|
365
|
+
return win;
|
|
366
|
+
}
|
|
367
|
+
let offsetParent = getTrueOffsetParent(element, polyfill);
|
|
368
|
+
while (offsetParent && isTableElement(offsetParent) && isStaticPositioned(offsetParent)) {
|
|
369
|
+
offsetParent = getTrueOffsetParent(offsetParent, polyfill);
|
|
370
|
+
}
|
|
371
|
+
if (offsetParent && isLastTraversableNode(offsetParent) && isStaticPositioned(offsetParent) && !isContainingBlock(offsetParent)) {
|
|
372
|
+
return win;
|
|
373
|
+
}
|
|
374
|
+
return offsetParent || getContainingBlock(element) || win;
|
|
375
|
+
}
|
|
376
|
+
const getElementRects = async function(data) {
|
|
377
|
+
const getOffsetParentFn = this.getOffsetParent || getOffsetParent;
|
|
378
|
+
const getDimensionsFn = this.getDimensions;
|
|
379
|
+
const floatingDimensions = await getDimensionsFn(data.floating);
|
|
380
|
+
return {
|
|
381
|
+
reference: getRectRelativeToOffsetParent(data.reference, await getOffsetParentFn(data.floating), data.strategy),
|
|
382
|
+
floating: {
|
|
383
|
+
x: 0,
|
|
384
|
+
y: 0,
|
|
385
|
+
width: floatingDimensions.width,
|
|
386
|
+
height: floatingDimensions.height
|
|
387
|
+
}
|
|
388
|
+
};
|
|
389
|
+
};
|
|
390
|
+
function isRTL(element) {
|
|
391
|
+
return getComputedStyle(element).direction === "rtl";
|
|
392
|
+
}
|
|
393
|
+
const platform = {
|
|
394
|
+
convertOffsetParentRelativeRectToViewportRelativeRect,
|
|
395
|
+
getDocumentElement,
|
|
396
|
+
getClippingRect,
|
|
397
|
+
getOffsetParent,
|
|
398
|
+
getElementRects,
|
|
399
|
+
getClientRects,
|
|
400
|
+
getDimensions,
|
|
401
|
+
getScale,
|
|
402
|
+
isElement,
|
|
403
|
+
isRTL
|
|
404
|
+
};
|
|
405
|
+
function observeMove(element, onMove) {
|
|
406
|
+
let io = null;
|
|
407
|
+
let timeoutId;
|
|
408
|
+
const root = getDocumentElement(element);
|
|
409
|
+
function cleanup() {
|
|
410
|
+
var _io;
|
|
411
|
+
clearTimeout(timeoutId);
|
|
412
|
+
(_io = io) == null || _io.disconnect();
|
|
413
|
+
io = null;
|
|
414
|
+
}
|
|
415
|
+
function refresh(skip, threshold) {
|
|
416
|
+
if (skip === void 0) {
|
|
417
|
+
skip = false;
|
|
418
|
+
}
|
|
419
|
+
if (threshold === void 0) {
|
|
420
|
+
threshold = 1;
|
|
421
|
+
}
|
|
422
|
+
cleanup();
|
|
423
|
+
const {
|
|
424
|
+
left,
|
|
425
|
+
top,
|
|
426
|
+
width,
|
|
427
|
+
height
|
|
428
|
+
} = element.getBoundingClientRect();
|
|
429
|
+
if (!skip) {
|
|
430
|
+
onMove();
|
|
431
|
+
}
|
|
432
|
+
if (!width || !height) {
|
|
433
|
+
return;
|
|
434
|
+
}
|
|
435
|
+
const insetTop = floor(top);
|
|
436
|
+
const insetRight = floor(root.clientWidth - (left + width));
|
|
437
|
+
const insetBottom = floor(root.clientHeight - (top + height));
|
|
438
|
+
const insetLeft = floor(left);
|
|
439
|
+
const rootMargin = -insetTop + "px " + -insetRight + "px " + -insetBottom + "px " + -insetLeft + "px";
|
|
440
|
+
const options = {
|
|
441
|
+
rootMargin,
|
|
442
|
+
threshold: max(0, min(1, threshold)) || 1
|
|
443
|
+
};
|
|
444
|
+
let isFirstUpdate = true;
|
|
445
|
+
function handleObserve(entries) {
|
|
446
|
+
const ratio = entries[0].intersectionRatio;
|
|
447
|
+
if (ratio !== threshold) {
|
|
448
|
+
if (!isFirstUpdate) {
|
|
449
|
+
return refresh();
|
|
450
|
+
}
|
|
451
|
+
if (!ratio) {
|
|
452
|
+
timeoutId = setTimeout(() => {
|
|
453
|
+
refresh(false, 1e-7);
|
|
454
|
+
}, 1e3);
|
|
455
|
+
} else {
|
|
456
|
+
refresh(false, ratio);
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
isFirstUpdate = false;
|
|
460
|
+
}
|
|
461
|
+
try {
|
|
462
|
+
io = new IntersectionObserver(handleObserve, {
|
|
463
|
+
...options,
|
|
464
|
+
// Handle <iframe>s
|
|
465
|
+
root: root.ownerDocument
|
|
466
|
+
});
|
|
467
|
+
} catch (e) {
|
|
468
|
+
io = new IntersectionObserver(handleObserve, options);
|
|
469
|
+
}
|
|
470
|
+
io.observe(element);
|
|
471
|
+
}
|
|
472
|
+
refresh(true);
|
|
473
|
+
return cleanup;
|
|
474
|
+
}
|
|
475
|
+
function autoUpdate(reference, floating, update, options) {
|
|
476
|
+
if (options === void 0) {
|
|
477
|
+
options = {};
|
|
478
|
+
}
|
|
479
|
+
const {
|
|
480
|
+
ancestorScroll = true,
|
|
481
|
+
ancestorResize = true,
|
|
482
|
+
elementResize = typeof ResizeObserver === "function",
|
|
483
|
+
layoutShift = typeof IntersectionObserver === "function",
|
|
484
|
+
animationFrame = false
|
|
485
|
+
} = options;
|
|
486
|
+
const referenceEl = unwrapElement(reference);
|
|
487
|
+
const ancestors = ancestorScroll || ancestorResize ? [...referenceEl ? getOverflowAncestors(referenceEl) : [], ...getOverflowAncestors(floating)] : [];
|
|
488
|
+
ancestors.forEach((ancestor) => {
|
|
489
|
+
ancestorScroll && ancestor.addEventListener("scroll", update, {
|
|
490
|
+
passive: true
|
|
491
|
+
});
|
|
492
|
+
ancestorResize && ancestor.addEventListener("resize", update);
|
|
493
|
+
});
|
|
494
|
+
const cleanupIo = referenceEl && layoutShift ? observeMove(referenceEl, update) : null;
|
|
495
|
+
let reobserveFrame = -1;
|
|
496
|
+
let resizeObserver = null;
|
|
497
|
+
if (elementResize) {
|
|
498
|
+
resizeObserver = new ResizeObserver((_ref) => {
|
|
499
|
+
let [firstEntry] = _ref;
|
|
500
|
+
if (firstEntry && firstEntry.target === referenceEl && resizeObserver) {
|
|
501
|
+
resizeObserver.unobserve(floating);
|
|
502
|
+
cancelAnimationFrame(reobserveFrame);
|
|
503
|
+
reobserveFrame = requestAnimationFrame(() => {
|
|
504
|
+
var _resizeObserver;
|
|
505
|
+
(_resizeObserver = resizeObserver) == null || _resizeObserver.observe(floating);
|
|
506
|
+
});
|
|
507
|
+
}
|
|
508
|
+
update();
|
|
509
|
+
});
|
|
510
|
+
if (referenceEl && !animationFrame) {
|
|
511
|
+
resizeObserver.observe(referenceEl);
|
|
512
|
+
}
|
|
513
|
+
resizeObserver.observe(floating);
|
|
514
|
+
}
|
|
515
|
+
let frameId;
|
|
516
|
+
let prevRefRect = animationFrame ? getBoundingClientRect(reference) : null;
|
|
517
|
+
if (animationFrame) {
|
|
518
|
+
frameLoop();
|
|
519
|
+
}
|
|
520
|
+
function frameLoop() {
|
|
521
|
+
const nextRefRect = getBoundingClientRect(reference);
|
|
522
|
+
if (prevRefRect && (nextRefRect.x !== prevRefRect.x || nextRefRect.y !== prevRefRect.y || nextRefRect.width !== prevRefRect.width || nextRefRect.height !== prevRefRect.height)) {
|
|
523
|
+
update();
|
|
524
|
+
}
|
|
525
|
+
prevRefRect = nextRefRect;
|
|
526
|
+
frameId = requestAnimationFrame(frameLoop);
|
|
527
|
+
}
|
|
528
|
+
update();
|
|
529
|
+
return () => {
|
|
530
|
+
var _resizeObserver2;
|
|
531
|
+
ancestors.forEach((ancestor) => {
|
|
532
|
+
ancestorScroll && ancestor.removeEventListener("scroll", update);
|
|
533
|
+
ancestorResize && ancestor.removeEventListener("resize", update);
|
|
534
|
+
});
|
|
535
|
+
cleanupIo == null || cleanupIo();
|
|
536
|
+
(_resizeObserver2 = resizeObserver) == null || _resizeObserver2.disconnect();
|
|
537
|
+
resizeObserver = null;
|
|
538
|
+
if (animationFrame) {
|
|
539
|
+
cancelAnimationFrame(frameId);
|
|
540
|
+
}
|
|
541
|
+
};
|
|
542
|
+
}
|
|
543
|
+
const offset = offset$1;
|
|
544
|
+
const shift = shift$1;
|
|
545
|
+
const flip = flip$1;
|
|
546
|
+
const size = size$1;
|
|
547
|
+
const arrow = arrow$1;
|
|
548
|
+
const inline = inline$1;
|
|
549
|
+
const limitShift = limitShift$1;
|
|
550
|
+
const computePosition = (reference, floating, options) => {
|
|
551
|
+
const cache = /* @__PURE__ */ new Map();
|
|
552
|
+
const mergedOptions = {
|
|
553
|
+
platform,
|
|
554
|
+
...options
|
|
555
|
+
};
|
|
556
|
+
const platformWithCache = {
|
|
557
|
+
...mergedOptions.platform,
|
|
558
|
+
_c: cache
|
|
559
|
+
};
|
|
560
|
+
return computePosition$1(reference, floating, {
|
|
561
|
+
...mergedOptions,
|
|
562
|
+
platform: platformWithCache
|
|
563
|
+
});
|
|
564
|
+
};
|
|
565
|
+
export {
|
|
566
|
+
arrow,
|
|
567
|
+
autoUpdate,
|
|
568
|
+
computePosition,
|
|
569
|
+
flip,
|
|
570
|
+
getOverflowAncestors,
|
|
571
|
+
inline,
|
|
572
|
+
limitShift,
|
|
573
|
+
offset,
|
|
574
|
+
platform,
|
|
575
|
+
shift,
|
|
576
|
+
size
|
|
577
|
+
};
|
|
578
|
+
//# sourceMappingURL=floating-ui.dom.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"floating-ui.dom.js","sources":["../../../../../node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs"],"sourcesContent":["import { rectToClientRect, detectOverflow as detectOverflow$1, offset as offset$1, autoPlacement as autoPlacement$1, shift as shift$1, flip as flip$1, size as size$1, hide as hide$1, arrow as arrow$1, inline as inline$1, limitShift as limitShift$1, computePosition as computePosition$1 } from '@floating-ui/core';\nimport { round, createCoords, max, min, floor } from '@floating-ui/utils';\nimport { getComputedStyle, isHTMLElement, isElement, getWindow, isWebKit, getFrameElement, getDocumentElement, isTopLayer, getNodeName, isOverflowElement, getNodeScroll, getOverflowAncestors, getParentNode, isLastTraversableNode, isContainingBlock, isTableElement, getContainingBlock } from '@floating-ui/utils/dom';\nexport { getOverflowAncestors } from '@floating-ui/utils/dom';\n\nfunction getCssDimensions(element) {\n const css = getComputedStyle(element);\n // In testing environments, the `width` and `height` properties are empty\n // strings for SVG elements, returning NaN. Fallback to `0` in this case.\n let width = parseFloat(css.width) || 0;\n let height = parseFloat(css.height) || 0;\n const hasOffset = isHTMLElement(element);\n const offsetWidth = hasOffset ? element.offsetWidth : width;\n const offsetHeight = hasOffset ? element.offsetHeight : height;\n const shouldFallback = round(width) !== offsetWidth || round(height) !== offsetHeight;\n if (shouldFallback) {\n width = offsetWidth;\n height = offsetHeight;\n }\n return {\n width,\n height,\n $: shouldFallback\n };\n}\n\nfunction unwrapElement(element) {\n return !isElement(element) ? element.contextElement : element;\n}\n\nfunction getScale(element) {\n const domElement = unwrapElement(element);\n if (!isHTMLElement(domElement)) {\n return createCoords(1);\n }\n const rect = domElement.getBoundingClientRect();\n const {\n width,\n height,\n $\n } = getCssDimensions(domElement);\n let x = ($ ? round(rect.width) : rect.width) / width;\n let y = ($ ? round(rect.height) : rect.height) / height;\n\n // 0, NaN, or Infinity should always fallback to 1.\n\n if (!x || !Number.isFinite(x)) {\n x = 1;\n }\n if (!y || !Number.isFinite(y)) {\n y = 1;\n }\n return {\n x,\n y\n };\n}\n\nconst noOffsets = /*#__PURE__*/createCoords(0);\nfunction getVisualOffsets(element) {\n const win = getWindow(element);\n if (!isWebKit() || !win.visualViewport) {\n return noOffsets;\n }\n return {\n x: win.visualViewport.offsetLeft,\n y: win.visualViewport.offsetTop\n };\n}\nfunction shouldAddVisualOffsets(element, isFixed, floatingOffsetParent) {\n if (isFixed === void 0) {\n isFixed = false;\n }\n if (!floatingOffsetParent || isFixed && floatingOffsetParent !== getWindow(element)) {\n return false;\n }\n return isFixed;\n}\n\nfunction getBoundingClientRect(element, includeScale, isFixedStrategy, offsetParent) {\n if (includeScale === void 0) {\n includeScale = false;\n }\n if (isFixedStrategy === void 0) {\n isFixedStrategy = false;\n }\n const clientRect = element.getBoundingClientRect();\n const domElement = unwrapElement(element);\n let scale = createCoords(1);\n if (includeScale) {\n if (offsetParent) {\n if (isElement(offsetParent)) {\n scale = getScale(offsetParent);\n }\n } else {\n scale = getScale(element);\n }\n }\n const visualOffsets = shouldAddVisualOffsets(domElement, isFixedStrategy, offsetParent) ? getVisualOffsets(domElement) : createCoords(0);\n let x = (clientRect.left + visualOffsets.x) / scale.x;\n let y = (clientRect.top + visualOffsets.y) / scale.y;\n let width = clientRect.width / scale.x;\n let height = clientRect.height / scale.y;\n if (domElement) {\n const win = getWindow(domElement);\n const offsetWin = offsetParent && isElement(offsetParent) ? getWindow(offsetParent) : offsetParent;\n let currentWin = win;\n let currentIFrame = getFrameElement(currentWin);\n while (currentIFrame && offsetParent && offsetWin !== currentWin) {\n const iframeScale = getScale(currentIFrame);\n const iframeRect = currentIFrame.getBoundingClientRect();\n const css = getComputedStyle(currentIFrame);\n const left = iframeRect.left + (currentIFrame.clientLeft + parseFloat(css.paddingLeft)) * iframeScale.x;\n const top = iframeRect.top + (currentIFrame.clientTop + parseFloat(css.paddingTop)) * iframeScale.y;\n x *= iframeScale.x;\n y *= iframeScale.y;\n width *= iframeScale.x;\n height *= iframeScale.y;\n x += left;\n y += top;\n currentWin = getWindow(currentIFrame);\n currentIFrame = getFrameElement(currentWin);\n }\n }\n return rectToClientRect({\n width,\n height,\n x,\n y\n });\n}\n\nfunction convertOffsetParentRelativeRectToViewportRelativeRect(_ref) {\n let {\n elements,\n rect,\n offsetParent,\n strategy\n } = _ref;\n const isFixed = strategy === 'fixed';\n const documentElement = getDocumentElement(offsetParent);\n const topLayer = elements ? isTopLayer(elements.floating) : false;\n if (offsetParent === documentElement || topLayer && isFixed) {\n return rect;\n }\n let scroll = {\n scrollLeft: 0,\n scrollTop: 0\n };\n let scale = createCoords(1);\n const offsets = createCoords(0);\n const isOffsetParentAnElement = isHTMLElement(offsetParent);\n if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {\n if (getNodeName(offsetParent) !== 'body' || isOverflowElement(documentElement)) {\n scroll = getNodeScroll(offsetParent);\n }\n if (isHTMLElement(offsetParent)) {\n const offsetRect = getBoundingClientRect(offsetParent);\n scale = getScale(offsetParent);\n offsets.x = offsetRect.x + offsetParent.clientLeft;\n offsets.y = offsetRect.y + offsetParent.clientTop;\n }\n }\n return {\n width: rect.width * scale.x,\n height: rect.height * scale.y,\n x: rect.x * scale.x - scroll.scrollLeft * scale.x + offsets.x,\n y: rect.y * scale.y - scroll.scrollTop * scale.y + offsets.y\n };\n}\n\nfunction getClientRects(element) {\n return Array.from(element.getClientRects());\n}\n\nfunction getWindowScrollBarX(element) {\n // If <html> has a CSS width greater than the viewport, then this will be\n // incorrect for RTL.\n return getBoundingClientRect(getDocumentElement(element)).left + getNodeScroll(element).scrollLeft;\n}\n\n// Gets the entire size of the scrollable document area, even extending outside\n// of the `<html>` and `<body>` rect bounds if horizontally scrollable.\nfunction getDocumentRect(element) {\n const html = getDocumentElement(element);\n const scroll = getNodeScroll(element);\n const body = element.ownerDocument.body;\n const width = max(html.scrollWidth, html.clientWidth, body.scrollWidth, body.clientWidth);\n const height = max(html.scrollHeight, html.clientHeight, body.scrollHeight, body.clientHeight);\n let x = -scroll.scrollLeft + getWindowScrollBarX(element);\n const y = -scroll.scrollTop;\n if (getComputedStyle(body).direction === 'rtl') {\n x += max(html.clientWidth, body.clientWidth) - width;\n }\n return {\n width,\n height,\n x,\n y\n };\n}\n\nfunction getViewportRect(element, strategy) {\n const win = getWindow(element);\n const html = getDocumentElement(element);\n const visualViewport = win.visualViewport;\n let width = html.clientWidth;\n let height = html.clientHeight;\n let x = 0;\n let y = 0;\n if (visualViewport) {\n width = visualViewport.width;\n height = visualViewport.height;\n const visualViewportBased = isWebKit();\n if (!visualViewportBased || visualViewportBased && strategy === 'fixed') {\n x = visualViewport.offsetLeft;\n y = visualViewport.offsetTop;\n }\n }\n return {\n width,\n height,\n x,\n y\n };\n}\n\n// Returns the inner client rect, subtracting scrollbars if present.\nfunction getInnerBoundingClientRect(element, strategy) {\n const clientRect = getBoundingClientRect(element, true, strategy === 'fixed');\n const top = clientRect.top + element.clientTop;\n const left = clientRect.left + element.clientLeft;\n const scale = isHTMLElement(element) ? getScale(element) : createCoords(1);\n const width = element.clientWidth * scale.x;\n const height = element.clientHeight * scale.y;\n const x = left * scale.x;\n const y = top * scale.y;\n return {\n width,\n height,\n x,\n y\n };\n}\nfunction getClientRectFromClippingAncestor(element, clippingAncestor, strategy) {\n let rect;\n if (clippingAncestor === 'viewport') {\n rect = getViewportRect(element, strategy);\n } else if (clippingAncestor === 'document') {\n rect = getDocumentRect(getDocumentElement(element));\n } else if (isElement(clippingAncestor)) {\n rect = getInnerBoundingClientRect(clippingAncestor, strategy);\n } else {\n const visualOffsets = getVisualOffsets(element);\n rect = {\n ...clippingAncestor,\n x: clippingAncestor.x - visualOffsets.x,\n y: clippingAncestor.y - visualOffsets.y\n };\n }\n return rectToClientRect(rect);\n}\nfunction hasFixedPositionAncestor(element, stopNode) {\n const parentNode = getParentNode(element);\n if (parentNode === stopNode || !isElement(parentNode) || isLastTraversableNode(parentNode)) {\n return false;\n }\n return getComputedStyle(parentNode).position === 'fixed' || hasFixedPositionAncestor(parentNode, stopNode);\n}\n\n// A \"clipping ancestor\" is an `overflow` element with the characteristic of\n// clipping (or hiding) child elements. This returns all clipping ancestors\n// of the given element up the tree.\nfunction getClippingElementAncestors(element, cache) {\n const cachedResult = cache.get(element);\n if (cachedResult) {\n return cachedResult;\n }\n let result = getOverflowAncestors(element, [], false).filter(el => isElement(el) && getNodeName(el) !== 'body');\n let currentContainingBlockComputedStyle = null;\n const elementIsFixed = getComputedStyle(element).position === 'fixed';\n let currentNode = elementIsFixed ? getParentNode(element) : element;\n\n // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n while (isElement(currentNode) && !isLastTraversableNode(currentNode)) {\n const computedStyle = getComputedStyle(currentNode);\n const currentNodeIsContaining = isContainingBlock(currentNode);\n if (!currentNodeIsContaining && computedStyle.position === 'fixed') {\n currentContainingBlockComputedStyle = null;\n }\n const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === 'static' && !!currentContainingBlockComputedStyle && ['absolute', 'fixed'].includes(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);\n if (shouldDropCurrentNode) {\n // Drop non-containing blocks.\n result = result.filter(ancestor => ancestor !== currentNode);\n } else {\n // Record last containing block for next iteration.\n currentContainingBlockComputedStyle = computedStyle;\n }\n currentNode = getParentNode(currentNode);\n }\n cache.set(element, result);\n return result;\n}\n\n// Gets the maximum area that the element is visible in due to any number of\n// clipping ancestors.\nfunction getClippingRect(_ref) {\n let {\n element,\n boundary,\n rootBoundary,\n strategy\n } = _ref;\n const elementClippingAncestors = boundary === 'clippingAncestors' ? isTopLayer(element) ? [] : getClippingElementAncestors(element, this._c) : [].concat(boundary);\n const clippingAncestors = [...elementClippingAncestors, rootBoundary];\n const firstClippingAncestor = clippingAncestors[0];\n const clippingRect = clippingAncestors.reduce((accRect, clippingAncestor) => {\n const rect = getClientRectFromClippingAncestor(element, clippingAncestor, strategy);\n accRect.top = max(rect.top, accRect.top);\n accRect.right = min(rect.right, accRect.right);\n accRect.bottom = min(rect.bottom, accRect.bottom);\n accRect.left = max(rect.left, accRect.left);\n return accRect;\n }, getClientRectFromClippingAncestor(element, firstClippingAncestor, strategy));\n return {\n width: clippingRect.right - clippingRect.left,\n height: clippingRect.bottom - clippingRect.top,\n x: clippingRect.left,\n y: clippingRect.top\n };\n}\n\nfunction getDimensions(element) {\n const {\n width,\n height\n } = getCssDimensions(element);\n return {\n width,\n height\n };\n}\n\nfunction getRectRelativeToOffsetParent(element, offsetParent, strategy) {\n const isOffsetParentAnElement = isHTMLElement(offsetParent);\n const documentElement = getDocumentElement(offsetParent);\n const isFixed = strategy === 'fixed';\n const rect = getBoundingClientRect(element, true, isFixed, offsetParent);\n let scroll = {\n scrollLeft: 0,\n scrollTop: 0\n };\n const offsets = createCoords(0);\n if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {\n if (getNodeName(offsetParent) !== 'body' || isOverflowElement(documentElement)) {\n scroll = getNodeScroll(offsetParent);\n }\n if (isOffsetParentAnElement) {\n const offsetRect = getBoundingClientRect(offsetParent, true, isFixed, offsetParent);\n offsets.x = offsetRect.x + offsetParent.clientLeft;\n offsets.y = offsetRect.y + offsetParent.clientTop;\n } else if (documentElement) {\n offsets.x = getWindowScrollBarX(documentElement);\n }\n }\n const x = rect.left + scroll.scrollLeft - offsets.x;\n const y = rect.top + scroll.scrollTop - offsets.y;\n return {\n x,\n y,\n width: rect.width,\n height: rect.height\n };\n}\n\nfunction isStaticPositioned(element) {\n return getComputedStyle(element).position === 'static';\n}\n\nfunction getTrueOffsetParent(element, polyfill) {\n if (!isHTMLElement(element) || getComputedStyle(element).position === 'fixed') {\n return null;\n }\n if (polyfill) {\n return polyfill(element);\n }\n return element.offsetParent;\n}\n\n// Gets the closest ancestor positioned element. Handles some edge cases,\n// such as table ancestors and cross browser bugs.\nfunction getOffsetParent(element, polyfill) {\n const win = getWindow(element);\n if (isTopLayer(element)) {\n return win;\n }\n if (!isHTMLElement(element)) {\n let svgOffsetParent = getParentNode(element);\n while (svgOffsetParent && !isLastTraversableNode(svgOffsetParent)) {\n if (isElement(svgOffsetParent) && !isStaticPositioned(svgOffsetParent)) {\n return svgOffsetParent;\n }\n svgOffsetParent = getParentNode(svgOffsetParent);\n }\n return win;\n }\n let offsetParent = getTrueOffsetParent(element, polyfill);\n while (offsetParent && isTableElement(offsetParent) && isStaticPositioned(offsetParent)) {\n offsetParent = getTrueOffsetParent(offsetParent, polyfill);\n }\n if (offsetParent && isLastTraversableNode(offsetParent) && isStaticPositioned(offsetParent) && !isContainingBlock(offsetParent)) {\n return win;\n }\n return offsetParent || getContainingBlock(element) || win;\n}\n\nconst getElementRects = async function (data) {\n const getOffsetParentFn = this.getOffsetParent || getOffsetParent;\n const getDimensionsFn = this.getDimensions;\n const floatingDimensions = await getDimensionsFn(data.floating);\n return {\n reference: getRectRelativeToOffsetParent(data.reference, await getOffsetParentFn(data.floating), data.strategy),\n floating: {\n x: 0,\n y: 0,\n width: floatingDimensions.width,\n height: floatingDimensions.height\n }\n };\n};\n\nfunction isRTL(element) {\n return getComputedStyle(element).direction === 'rtl';\n}\n\nconst platform = {\n convertOffsetParentRelativeRectToViewportRelativeRect,\n getDocumentElement,\n getClippingRect,\n getOffsetParent,\n getElementRects,\n getClientRects,\n getDimensions,\n getScale,\n isElement,\n isRTL\n};\n\n// https://samthor.au/2021/observing-dom/\nfunction observeMove(element, onMove) {\n let io = null;\n let timeoutId;\n const root = getDocumentElement(element);\n function cleanup() {\n var _io;\n clearTimeout(timeoutId);\n (_io = io) == null || _io.disconnect();\n io = null;\n }\n function refresh(skip, threshold) {\n if (skip === void 0) {\n skip = false;\n }\n if (threshold === void 0) {\n threshold = 1;\n }\n cleanup();\n const {\n left,\n top,\n width,\n height\n } = element.getBoundingClientRect();\n if (!skip) {\n onMove();\n }\n if (!width || !height) {\n return;\n }\n const insetTop = floor(top);\n const insetRight = floor(root.clientWidth - (left + width));\n const insetBottom = floor(root.clientHeight - (top + height));\n const insetLeft = floor(left);\n const rootMargin = -insetTop + \"px \" + -insetRight + \"px \" + -insetBottom + \"px \" + -insetLeft + \"px\";\n const options = {\n rootMargin,\n threshold: max(0, min(1, threshold)) || 1\n };\n let isFirstUpdate = true;\n function handleObserve(entries) {\n const ratio = entries[0].intersectionRatio;\n if (ratio !== threshold) {\n if (!isFirstUpdate) {\n return refresh();\n }\n if (!ratio) {\n // If the reference is clipped, the ratio is 0. Throttle the refresh\n // to prevent an infinite loop of updates.\n timeoutId = setTimeout(() => {\n refresh(false, 1e-7);\n }, 1000);\n } else {\n refresh(false, ratio);\n }\n }\n isFirstUpdate = false;\n }\n\n // Older browsers don't support a `document` as the root and will throw an\n // error.\n try {\n io = new IntersectionObserver(handleObserve, {\n ...options,\n // Handle <iframe>s\n root: root.ownerDocument\n });\n } catch (e) {\n io = new IntersectionObserver(handleObserve, options);\n }\n io.observe(element);\n }\n refresh(true);\n return cleanup;\n}\n\n/**\n * Automatically updates the position of the floating element when necessary.\n * Should only be called when the floating element is mounted on the DOM or\n * visible on the screen.\n * @returns cleanup function that should be invoked when the floating element is\n * removed from the DOM or hidden from the screen.\n * @see https://floating-ui.com/docs/autoUpdate\n */\nfunction autoUpdate(reference, floating, update, options) {\n if (options === void 0) {\n options = {};\n }\n const {\n ancestorScroll = true,\n ancestorResize = true,\n elementResize = typeof ResizeObserver === 'function',\n layoutShift = typeof IntersectionObserver === 'function',\n animationFrame = false\n } = options;\n const referenceEl = unwrapElement(reference);\n const ancestors = ancestorScroll || ancestorResize ? [...(referenceEl ? getOverflowAncestors(referenceEl) : []), ...getOverflowAncestors(floating)] : [];\n ancestors.forEach(ancestor => {\n ancestorScroll && ancestor.addEventListener('scroll', update, {\n passive: true\n });\n ancestorResize && ancestor.addEventListener('resize', update);\n });\n const cleanupIo = referenceEl && layoutShift ? observeMove(referenceEl, update) : null;\n let reobserveFrame = -1;\n let resizeObserver = null;\n if (elementResize) {\n resizeObserver = new ResizeObserver(_ref => {\n let [firstEntry] = _ref;\n if (firstEntry && firstEntry.target === referenceEl && resizeObserver) {\n // Prevent update loops when using the `size` middleware.\n // https://github.com/floating-ui/floating-ui/issues/1740\n resizeObserver.unobserve(floating);\n cancelAnimationFrame(reobserveFrame);\n reobserveFrame = requestAnimationFrame(() => {\n var _resizeObserver;\n (_resizeObserver = resizeObserver) == null || _resizeObserver.observe(floating);\n });\n }\n update();\n });\n if (referenceEl && !animationFrame) {\n resizeObserver.observe(referenceEl);\n }\n resizeObserver.observe(floating);\n }\n let frameId;\n let prevRefRect = animationFrame ? getBoundingClientRect(reference) : null;\n if (animationFrame) {\n frameLoop();\n }\n function frameLoop() {\n const nextRefRect = getBoundingClientRect(reference);\n if (prevRefRect && (nextRefRect.x !== prevRefRect.x || nextRefRect.y !== prevRefRect.y || nextRefRect.width !== prevRefRect.width || nextRefRect.height !== prevRefRect.height)) {\n update();\n }\n prevRefRect = nextRefRect;\n frameId = requestAnimationFrame(frameLoop);\n }\n update();\n return () => {\n var _resizeObserver2;\n ancestors.forEach(ancestor => {\n ancestorScroll && ancestor.removeEventListener('scroll', update);\n ancestorResize && ancestor.removeEventListener('resize', update);\n });\n cleanupIo == null || cleanupIo();\n (_resizeObserver2 = resizeObserver) == null || _resizeObserver2.disconnect();\n resizeObserver = null;\n if (animationFrame) {\n cancelAnimationFrame(frameId);\n }\n };\n}\n\n/**\n * Resolves with an object of overflow side offsets that determine how much the\n * element is overflowing a given clipping boundary on each side.\n * - positive = overflowing the boundary by that number of pixels\n * - negative = how many pixels left before it will overflow\n * - 0 = lies flush with the boundary\n * @see https://floating-ui.com/docs/detectOverflow\n */\nconst detectOverflow = detectOverflow$1;\n\n/**\n * Modifies the placement by translating the floating element along the\n * specified axes.\n * A number (shorthand for `mainAxis` or distance), or an axes configuration\n * object may be passed.\n * @see https://floating-ui.com/docs/offset\n */\nconst offset = offset$1;\n\n/**\n * Optimizes the visibility of the floating element by choosing the placement\n * that has the most space available automatically, without needing to specify a\n * preferred placement. Alternative to `flip`.\n * @see https://floating-ui.com/docs/autoPlacement\n */\nconst autoPlacement = autoPlacement$1;\n\n/**\n * Optimizes the visibility of the floating element by shifting it in order to\n * keep it in view when it will overflow the clipping boundary.\n * @see https://floating-ui.com/docs/shift\n */\nconst shift = shift$1;\n\n/**\n * Optimizes the visibility of the floating element by flipping the `placement`\n * in order to keep it in view when the preferred placement(s) will overflow the\n * clipping boundary. Alternative to `autoPlacement`.\n * @see https://floating-ui.com/docs/flip\n */\nconst flip = flip$1;\n\n/**\n * Provides data that allows you to change the size of the floating element —\n * for instance, prevent it from overflowing the clipping boundary or match the\n * width of the reference element.\n * @see https://floating-ui.com/docs/size\n */\nconst size = size$1;\n\n/**\n * Provides data to hide the floating element in applicable situations, such as\n * when it is not in the same clipping context as the reference element.\n * @see https://floating-ui.com/docs/hide\n */\nconst hide = hide$1;\n\n/**\n * Provides data to position an inner element of the floating element so that it\n * appears centered to the reference element.\n * @see https://floating-ui.com/docs/arrow\n */\nconst arrow = arrow$1;\n\n/**\n * Provides improved positioning for inline reference elements that can span\n * over multiple lines, such as hyperlinks or range selections.\n * @see https://floating-ui.com/docs/inline\n */\nconst inline = inline$1;\n\n/**\n * Built-in `limiter` that will stop `shift()` at a certain point.\n */\nconst limitShift = limitShift$1;\n\n/**\n * Computes the `x` and `y` coordinates that will place the floating element\n * next to a given reference element.\n */\nconst computePosition = (reference, floating, options) => {\n // This caches the expensive `getClippingElementAncestors` function so that\n // multiple lifecycle resets re-use the same result. It only lives for a\n // single call. If other functions become expensive, we can add them as well.\n const cache = new Map();\n const mergedOptions = {\n platform,\n ...options\n };\n const platformWithCache = {\n ...mergedOptions.platform,\n _c: cache\n };\n return computePosition$1(reference, floating, {\n ...mergedOptions,\n platform: platformWithCache\n });\n};\n\nexport { arrow, autoPlacement, autoUpdate, computePosition, detectOverflow, flip, hide, inline, limitShift, offset, platform, shift, size };\n"],"names":[],"mappings":"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","x_google_ignoreList":[0]}
|