@dnb/eufemia 9.22.0 → 9.23.0-beta.1
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 +15 -0
- package/cjs/components/Accordion.d.ts +3 -14
- package/cjs/components/Autocomplete.d.ts +3 -14
- package/cjs/components/Avatar.d.ts +3 -14
- package/cjs/components/Breadcrumb.d.ts +3 -14
- package/cjs/components/Button.d.ts +3 -14
- package/cjs/components/Checkbox.d.ts +3 -14
- package/cjs/components/DatePicker.d.ts +3 -14
- package/cjs/components/Dialog.d.ts +3 -0
- package/cjs/components/Dialog.js +52 -0
- package/cjs/components/Drawer.d.ts +3 -0
- package/cjs/components/Drawer.js +52 -0
- package/cjs/components/Dropdown.d.ts +3 -14
- package/cjs/components/FormLabel.d.ts +3 -14
- package/cjs/components/FormRow.d.ts +3 -14
- package/cjs/components/FormSet.d.ts +3 -14
- package/cjs/components/FormStatus.d.ts +3 -14
- package/cjs/components/GlobalError.d.ts +3 -14
- package/cjs/components/GlobalStatus.d.ts +3 -14
- package/cjs/components/Heading.d.ts +3 -14
- package/cjs/components/HelpButton.d.ts +3 -14
- package/cjs/components/Icon.d.ts +3 -14
- package/cjs/components/IconPrimary.d.ts +3 -14
- package/cjs/components/InfoCard.d.ts +3 -14
- package/cjs/components/Input.d.ts +3 -14
- package/cjs/components/InputMasked.d.ts +3 -14
- package/cjs/components/Logo.d.ts +3 -14
- package/cjs/components/Modal.d.ts +3 -14
- package/cjs/components/Number.d.ts +2 -8
- package/cjs/components/NumberFormat.d.ts +3 -14
- package/cjs/components/Pagination.d.ts +3 -14
- package/cjs/components/ProgressIndicator.d.ts +3 -14
- package/cjs/components/Radio.d.ts +3 -14
- package/cjs/components/Section.d.ts +3 -14
- package/cjs/components/Skeleton.d.ts +3 -14
- package/cjs/components/Slider.d.ts +3 -14
- package/cjs/components/Space.d.ts +3 -14
- package/cjs/components/StepIndicator.d.ts +3 -14
- package/cjs/components/Switch.d.ts +3 -14
- package/cjs/components/Tabs.d.ts +3 -14
- package/cjs/components/Tag.d.ts +3 -14
- package/cjs/components/Textarea.d.ts +3 -14
- package/cjs/components/Timeline.d.ts +3 -14
- package/cjs/components/ToggleButton.d.ts +3 -14
- package/cjs/components/Tooltip.d.ts +3 -14
- package/cjs/components/VisuallyHidden.d.ts +3 -14
- package/cjs/components/accordion/AccordionContext.d.ts +3 -0
- package/cjs/components/accordion/AccordionPropTypes.d.ts +78 -0
- package/cjs/components/accordion/AccordionProviderContext.d.ts +3 -0
- package/cjs/components/accordion/group/web-component.d.ts +1 -0
- package/cjs/components/accordion/index.d.ts +3 -8
- package/cjs/components/accordion/style/index.d.ts +1 -6
- package/cjs/components/accordion/style/themes/ui.d.ts +1 -0
- package/cjs/components/accordion/style.d.ts +1 -0
- package/cjs/components/accordion/web-component.d.ts +3 -0
- package/cjs/components/autocomplete/index.d.ts +3 -8
- package/cjs/components/autocomplete/style/index.d.ts +1 -6
- package/cjs/components/autocomplete/style/themes/ui.d.ts +1 -0
- package/cjs/components/autocomplete/style.d.ts +1 -0
- package/cjs/components/autocomplete/web-component.d.ts +3 -0
- package/cjs/components/avatar/Avatar.d.ts +65 -0
- package/cjs/components/avatar/AvatarGroup.d.ts +58 -0
- package/cjs/components/avatar/index.d.ts +3 -8
- package/cjs/components/avatar/style/themes/ui.d.ts +1 -0
- package/cjs/components/avatar/style.d.ts +1 -0
- package/cjs/components/breadcrumb/Breadcrumb.d.ts +104 -0
- package/cjs/components/breadcrumb/BreadcrumbItem.d.ts +37 -0
- package/cjs/components/breadcrumb/index.d.ts +3 -8
- package/cjs/components/breadcrumb/style/index.d.ts +1 -6
- package/cjs/components/breadcrumb/style.d.ts +1 -0
- package/cjs/components/button/index.d.ts +3 -8
- package/cjs/components/button/style/index.d.ts +1 -6
- package/cjs/components/button/style/themes/ui.d.ts +1 -0
- package/cjs/components/button/style.d.ts +1 -0
- package/cjs/components/button/web-component.d.ts +3 -0
- package/cjs/components/checkbox/index.d.ts +3 -8
- package/cjs/components/checkbox/style/index.d.ts +1 -6
- package/cjs/components/checkbox/style/themes/ui.d.ts +1 -0
- package/cjs/components/checkbox/style.d.ts +1 -0
- package/cjs/components/checkbox/web-component.d.ts +3 -0
- package/cjs/components/date-picker/DatePickerCalc.d.ts +37 -0
- package/cjs/components/date-picker/DatePickerContext.d.ts +3 -0
- package/cjs/components/date-picker/index.d.ts +3 -8
- package/cjs/components/date-picker/style/index.d.ts +1 -6
- package/cjs/components/date-picker/style/themes/ui.d.ts +1 -0
- package/cjs/components/date-picker/style.d.ts +1 -0
- package/cjs/components/date-picker/web-component.d.ts +3 -0
- package/cjs/components/dialog/Dialog.d.ts +12 -0
- package/cjs/components/dialog/Dialog.js +169 -0
- package/cjs/components/dialog/DialogContent.d.ts +7 -0
- package/cjs/components/dialog/DialogContent.js +146 -0
- package/cjs/components/dialog/index.d.ts +1 -0
- package/cjs/components/dialog/index.js +52 -0
- package/cjs/components/dialog/parts/DialogBody.d.ts +15 -0
- package/cjs/components/dialog/parts/DialogBody.js +42 -0
- package/cjs/components/dialog/parts/DialogHeader.d.ts +8 -0
- package/cjs/components/dialog/parts/DialogHeader.js +45 -0
- package/cjs/components/dialog/parts/DialogNavigation.d.ts +4 -0
- package/cjs/components/dialog/parts/DialogNavigation.js +40 -0
- package/cjs/components/dialog/style/_dialog.scss +188 -0
- package/cjs/components/dialog/style/dnb-dialog.css +429 -0
- package/cjs/components/dialog/style/dnb-dialog.min.css +1 -0
- package/cjs/components/dialog/style/dnb-dialog.scss +15 -0
- package/cjs/components/dialog/style/index.d.ts +1 -0
- package/cjs/components/dialog/style/index.js +3 -0
- package/cjs/components/dialog/style/themes/dnb-dialog-theme-ui.css +17 -0
- package/cjs/components/dialog/style/themes/dnb-dialog-theme-ui.min.css +1 -0
- package/cjs/components/dialog/style/themes/dnb-dialog-theme-ui.scss +17 -0
- package/cjs/components/dialog/style/themes/ui.d.ts +1 -0
- package/cjs/components/dialog/style/themes/ui.js +3 -0
- package/cjs/components/dialog/style.d.ts +1 -0
- package/cjs/components/dialog/style.js +3 -0
- package/cjs/components/dialog/types.d.ts +60 -0
- package/cjs/components/dialog/types.js +1 -0
- package/cjs/components/drawer/Drawer.d.ts +12 -0
- package/cjs/components/drawer/Drawer.js +172 -0
- package/cjs/components/drawer/DrawerContent.d.ts +7 -0
- package/cjs/components/drawer/DrawerContent.js +148 -0
- package/cjs/components/drawer/helpers.d.ts +5 -0
- package/cjs/components/drawer/helpers.js +40 -0
- package/cjs/components/drawer/index.d.ts +3 -0
- package/cjs/components/drawer/index.js +52 -0
- package/cjs/components/drawer/parts/DrawerBody.d.ts +15 -0
- package/cjs/components/drawer/parts/DrawerBody.js +42 -0
- package/cjs/components/drawer/parts/DrawerHeader.d.ts +8 -0
- package/cjs/components/drawer/parts/DrawerHeader.js +45 -0
- package/cjs/components/drawer/parts/DrawerNavigation.d.ts +4 -0
- package/cjs/components/drawer/parts/DrawerNavigation.js +41 -0
- package/cjs/components/drawer/style/_drawer.scss +265 -0
- package/cjs/components/drawer/style/dnb-drawer.css +515 -0
- package/cjs/components/drawer/style/dnb-drawer.min.css +1 -0
- package/cjs/components/drawer/style/dnb-drawer.scss +15 -0
- package/cjs/components/drawer/style/index.d.ts +1 -0
- package/cjs/components/drawer/style/index.js +3 -0
- package/cjs/components/drawer/style/themes/dnb-drawer-theme-ui.css +17 -0
- package/cjs/components/drawer/style/themes/dnb-drawer-theme-ui.min.css +1 -0
- package/cjs/components/drawer/style/themes/dnb-drawer-theme-ui.scss +17 -0
- package/cjs/components/drawer/style/themes/ui.d.ts +1 -0
- package/cjs/components/drawer/style/themes/ui.js +3 -0
- package/cjs/components/drawer/style.d.ts +1 -0
- package/cjs/components/drawer/style.js +3 -0
- package/cjs/components/drawer/types.d.ts +68 -0
- package/cjs/components/drawer/types.js +1 -0
- package/cjs/components/dropdown/index.d.ts +3 -8
- package/cjs/components/dropdown/style/index.d.ts +1 -6
- package/cjs/components/dropdown/style/themes/ui.d.ts +1 -0
- package/cjs/components/dropdown/style.d.ts +1 -0
- package/cjs/components/dropdown/web-component.d.ts +3 -0
- package/cjs/components/form-label/index.d.ts +3 -8
- package/cjs/components/form-label/style/index.d.ts +1 -6
- package/cjs/components/form-label/style/themes/ui.d.ts +1 -0
- package/cjs/components/form-label/style.d.ts +1 -0
- package/cjs/components/form-label/web-component.d.ts +3 -0
- package/cjs/components/form-row/index.d.ts +3 -8
- package/cjs/components/form-row/style/index.d.ts +1 -6
- package/cjs/components/form-row/style/themes/ui.d.ts +1 -0
- package/cjs/components/form-row/style.d.ts +1 -0
- package/cjs/components/form-row/web-component.d.ts +3 -0
- package/cjs/components/form-set/index.d.ts +3 -8
- package/cjs/components/form-set/style/index.d.ts +1 -6
- package/cjs/components/form-set/style/themes/ui.d.ts +1 -0
- package/cjs/components/form-set/style.d.ts +1 -0
- package/cjs/components/form-set/web-component.d.ts +3 -0
- package/cjs/components/form-status/index.d.ts +3 -8
- package/cjs/components/form-status/style/index.d.ts +1 -6
- package/cjs/components/form-status/style/themes/ui.d.ts +1 -0
- package/cjs/components/form-status/style.d.ts +1 -0
- package/cjs/components/form-status/web-component.d.ts +3 -0
- package/cjs/components/global-error/index.d.ts +3 -8
- package/cjs/components/global-error/style/index.d.ts +1 -6
- package/cjs/components/global-error/style/themes/ui.d.ts +1 -0
- package/cjs/components/global-error/style.d.ts +1 -0
- package/cjs/components/global-error/web-component.d.ts +3 -0
- package/cjs/components/global-status/AnimationHelper.d.ts +12 -0
- package/cjs/components/global-status/GlobalStatusProvider.d.ts +34 -0
- package/cjs/components/global-status/GlobalStatusProvider.js +152 -150
- package/cjs/components/global-status/index.d.ts +3 -8
- package/cjs/components/global-status/style/index.d.ts +1 -6
- package/cjs/components/global-status/style/themes/ui.d.ts +1 -0
- package/cjs/components/global-status/style.d.ts +1 -0
- package/cjs/components/global-status/web-component.d.ts +3 -0
- package/cjs/components/heading/HeadingContext.d.ts +5 -0
- package/cjs/components/heading/HeadingCounter.d.ts +42 -0
- package/cjs/components/heading/HeadingHelpers.d.ts +27 -0
- package/cjs/components/heading/index.d.ts +3 -8
- package/cjs/components/heading/style/index.d.ts +1 -6
- package/cjs/components/heading/style.d.ts +1 -0
- package/cjs/components/heading/web-component.d.ts +3 -0
- package/cjs/components/help-button/index.d.ts +3 -8
- package/cjs/components/help-button/style/index.d.ts +1 -6
- package/cjs/components/help-button/style/themes/ui.d.ts +1 -0
- package/cjs/components/help-button/style.d.ts +1 -0
- package/cjs/components/help-button/web-component.d.ts +3 -0
- package/cjs/components/icon/IconPrimary.d.ts +3 -0
- package/cjs/components/icon/index.d.ts +3 -8
- package/cjs/components/icon/lib/SvgComparison.d.ts +2 -0
- package/cjs/components/icon/lib/index.d.ts +1 -5
- package/cjs/components/icon/style/index.d.ts +1 -6
- package/cjs/components/icon/style.d.ts +1 -0
- package/cjs/components/icon/web-component.d.ts +3 -0
- package/cjs/components/icon-primary/index.d.ts +3 -8
- package/cjs/components/icon-primary/style.d.ts +1 -0
- package/cjs/components/icon-primary/web-component.d.ts +3 -0
- package/cjs/components/index.d.ts +43 -96
- package/cjs/components/index.js +16 -0
- package/cjs/components/info-card/InfoCard.d.ts +101 -0
- package/cjs/components/info-card/style.d.ts +1 -0
- package/cjs/components/input/index.d.ts +1 -6
- package/cjs/components/input/style/index.d.ts +1 -6
- package/cjs/components/input/style/themes/ui.d.ts +1 -0
- package/cjs/components/input/style.d.ts +1 -0
- package/cjs/components/input/web-component.d.ts +3 -0
- package/cjs/components/input-masked/InputMaskedContext.d.ts +3 -0
- package/cjs/components/input-masked/InputMaskedElement.d.ts +1 -0
- package/cjs/components/input-masked/InputMaskedHooks.d.ts +32 -0
- package/cjs/components/input-masked/InputMaskedUtils.d.ts +37 -0
- package/cjs/components/input-masked/addons/createNumberMask.d.ts +15 -0
- package/cjs/components/input-masked/addons/emailMask.d.ts +7 -0
- package/cjs/components/input-masked/addons/emailPipe.d.ts +1 -0
- package/cjs/components/input-masked/index.d.ts +3 -8
- package/cjs/components/input-masked/style/index.d.ts +1 -6
- package/cjs/components/input-masked/style.d.ts +1 -0
- package/cjs/components/input-masked/text-mask/adjustCaretPosition.d.ts +11 -0
- package/cjs/components/input-masked/text-mask/conformToMask.d.ts +6 -0
- package/cjs/components/input-masked/text-mask/constants.d.ts +2 -0
- package/cjs/components/input-masked/text-mask/createTextMaskInputElement.d.ts +8 -0
- package/cjs/components/input-masked/text-mask/utilities.d.ts +9 -0
- package/cjs/components/input-masked/web-component.d.ts +3 -0
- package/cjs/components/lib.d.ts +100 -0
- package/cjs/components/lib.js +18 -0
- package/cjs/components/logo/index.d.ts +3 -8
- package/cjs/components/logo/style/index.d.ts +1 -6
- package/cjs/components/logo/style.d.ts +1 -0
- package/cjs/components/logo/web-component.d.ts +3 -0
- package/cjs/components/modal/Modal.d.ts +136 -0
- package/cjs/components/modal/Modal.js +22 -19
- package/cjs/components/modal/ModalContent.d.ts +54 -0
- package/cjs/components/modal/ModalContent.js +48 -60
- package/cjs/components/modal/ModalContext.d.ts +22 -0
- package/cjs/components/modal/ModalContext.js +16 -1
- package/cjs/components/modal/ModalRoot.d.ts +39 -0
- package/cjs/components/modal/bodyScrollLock.d.ts +3 -0
- package/cjs/components/modal/helpers.d.ts +5 -0
- package/cjs/components/modal/helpers.js +11 -0
- package/cjs/components/modal/index.d.ts +3 -8
- package/cjs/components/modal/parts/CloseButton.d.ts +39 -0
- package/cjs/components/modal/{components → parts}/CloseButton.js +0 -0
- package/cjs/components/modal/parts/ModalHeader.d.ts +48 -0
- package/cjs/components/modal/parts/ModalHeader.js +128 -0
- package/cjs/components/modal/parts/ModalHeaderBar.d.ts +50 -0
- package/cjs/components/modal/parts/ModalHeaderBar.js +197 -0
- package/cjs/components/modal/parts/ModalInner.d.ts +32 -0
- package/cjs/components/modal/parts/ModalInner.js +119 -0
- package/cjs/components/modal/style/_modal.scss +25 -342
- package/cjs/components/modal/style/dnb-modal.css +677 -366
- package/cjs/components/modal/style/dnb-modal.min.css +1 -1
- package/cjs/components/modal/style/dnb-modal.scss +2 -0
- package/cjs/components/modal/style/index.d.ts +1 -6
- package/cjs/components/modal/style/themes/dnb-modal-theme-ui.css +0 -4
- package/cjs/components/modal/style/themes/dnb-modal-theme-ui.min.css +1 -1
- package/cjs/components/modal/style/themes/dnb-modal-theme-ui.scss +0 -18
- package/cjs/components/modal/style/themes/ui.d.ts +1 -0
- package/cjs/components/modal/style.d.ts +1 -0
- package/cjs/components/modal/types.d.ts +284 -0
- package/cjs/components/modal/web-component.d.ts +3 -0
- package/cjs/components/number-format/index.d.ts +3 -8
- package/cjs/components/number-format/style/index.d.ts +1 -6
- package/cjs/components/number-format/style.d.ts +1 -0
- package/cjs/components/number-format/web-component.d.ts +3 -0
- package/cjs/components/pagination/InfinityScroller.d.ts +1 -0
- package/cjs/components/pagination/PaginationCalculation.d.ts +6 -0
- package/cjs/components/pagination/PaginationContext.d.ts +5 -0
- package/cjs/components/pagination/index.d.ts +3 -8
- package/cjs/components/pagination/style/index.d.ts +1 -6
- package/cjs/components/pagination/style/themes/ui.d.ts +1 -0
- package/cjs/components/pagination/style.d.ts +1 -0
- package/cjs/components/pagination/web-component.d.ts +3 -0
- package/cjs/components/progress-indicator/index.d.ts +3 -8
- package/cjs/components/progress-indicator/style/index.d.ts +1 -6
- package/cjs/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.css +15 -0
- package/cjs/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.min.css +1 -1
- package/cjs/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.scss +17 -0
- package/cjs/components/progress-indicator/style/themes/ui.d.ts +1 -0
- package/cjs/components/progress-indicator/style.d.ts +1 -0
- package/cjs/components/progress-indicator/web-component.d.ts +3 -0
- package/cjs/components/radio/RadioGroupContext.d.ts +3 -0
- package/cjs/components/radio/group/web-component.d.ts +3 -0
- package/cjs/components/radio/index.d.ts +3 -8
- package/cjs/components/radio/style/index.d.ts +1 -6
- package/cjs/components/radio/style/themes/ui.d.ts +1 -0
- package/cjs/components/radio/style.d.ts +1 -0
- package/cjs/components/radio/web-component.d.ts +3 -0
- package/cjs/components/section/Section.d.ts +0 -5
- package/cjs/components/section/index.d.ts +3 -8
- package/cjs/components/section/style/index.d.ts +1 -6
- package/cjs/components/section/style/themes/ui.d.ts +1 -0
- package/cjs/components/section/style.d.ts +1 -0
- package/cjs/components/section/web-component.d.ts +3 -0
- package/cjs/components/skeleton/figures/index.d.ts +5 -11
- package/cjs/components/skeleton/index.d.ts +3 -8
- package/cjs/components/skeleton/style/index.d.ts +1 -6
- package/cjs/components/skeleton/style/themes/brand.d.ts +1 -0
- package/cjs/components/skeleton/style/themes/norway.d.ts +1 -0
- package/cjs/components/skeleton/style/themes/rainbow.d.ts +1 -0
- package/cjs/components/skeleton/style/themes/ui.d.ts +1 -0
- package/cjs/components/skeleton/style.d.ts +1 -0
- package/cjs/components/skeleton/web-component.d.ts +3 -0
- package/cjs/components/slider/index.d.ts +3 -8
- package/cjs/components/slider/style/index.d.ts +1 -6
- package/cjs/components/slider/style/themes/ui.d.ts +1 -0
- package/cjs/components/slider/style.d.ts +1 -0
- package/cjs/components/slider/web-component.d.ts +3 -0
- package/cjs/components/space/SpacingHelper.d.ts +52 -0
- package/cjs/components/space/index.d.ts +3 -8
- package/cjs/components/space/style/index.d.ts +1 -6
- package/cjs/components/space/style/themes/ui.d.ts +1 -0
- package/cjs/components/space/style.d.ts +1 -0
- package/cjs/components/space/web-component.d.ts +3 -0
- package/cjs/components/step-indicator/StepIndicatorItem-v1.d.ts +3 -0
- package/cjs/components/step-indicator/StepIndicatorList.d.ts +7 -0
- package/cjs/components/step-indicator/StepIndicatorModal.d.ts +9 -0
- package/cjs/components/step-indicator/StepIndicatorProps.d.ts +65 -0
- package/cjs/components/step-indicator/index.d.ts +3 -8
- package/cjs/components/step-indicator/style/index.d.ts +1 -6
- package/cjs/components/step-indicator/style/themes/ui.d.ts +1 -0
- package/cjs/components/step-indicator/style.d.ts +1 -0
- package/cjs/components/step-indicator/web-component.d.ts +3 -0
- package/cjs/components/style/index.d.ts +1 -6
- package/cjs/components/switch/index.d.ts +3 -8
- package/cjs/components/switch/style/index.d.ts +1 -6
- package/cjs/components/switch/style/themes/ui.d.ts +1 -0
- package/cjs/components/switch/style.d.ts +1 -0
- package/cjs/components/switch/web-component.d.ts +3 -0
- package/cjs/components/tabs/index.d.ts +3 -8
- package/cjs/components/tabs/style/index.d.ts +1 -6
- package/cjs/components/tabs/style/themes/ui.d.ts +1 -0
- package/cjs/components/tabs/style.d.ts +1 -0
- package/cjs/components/tabs/web-component.d.ts +3 -0
- package/cjs/components/tag/Tag.d.ts +61 -0
- package/cjs/components/tag/TagContext.d.ts +2 -0
- package/cjs/components/tag/TagGroup.d.ts +26 -0
- package/cjs/components/tag/index.d.ts +3 -8
- package/cjs/components/tag/style/index.d.ts +1 -6
- package/cjs/components/tag/style.d.ts +1 -0
- package/cjs/components/textarea/index.d.ts +1 -6
- package/cjs/components/textarea/style/index.d.ts +1 -6
- package/cjs/components/textarea/style/themes/ui.d.ts +1 -0
- package/cjs/components/textarea/style.d.ts +1 -0
- package/cjs/components/textarea/web-component.d.ts +3 -0
- package/cjs/components/timeline/Timeline.d.ts +38 -0
- package/cjs/components/timeline/TimelineItem.d.ts +39 -0
- package/cjs/components/timeline/index.d.ts +3 -8
- package/cjs/components/timeline/style/index.d.ts +1 -6
- package/cjs/components/timeline/style/themes/ui.d.ts +1 -0
- package/cjs/components/timeline/style.d.ts +1 -0
- package/cjs/components/toggle-button/ToggleButtonGroupContext.d.ts +3 -0
- package/cjs/components/toggle-button/group/web-component.d.ts +3 -0
- package/cjs/components/toggle-button/index.d.ts +3 -8
- package/cjs/components/toggle-button/style/index.d.ts +1 -6
- package/cjs/components/toggle-button/style/themes/ui.d.ts +1 -0
- package/cjs/components/toggle-button/style.d.ts +1 -0
- package/cjs/components/toggle-button/web-component.d.ts +3 -0
- package/cjs/components/tooltip/TooltipHelpers.d.ts +1 -0
- package/cjs/components/tooltip/index.d.ts +3 -8
- package/cjs/components/tooltip/style/index.d.ts +1 -6
- package/cjs/components/tooltip/style/themes/ui.d.ts +1 -0
- package/cjs/components/tooltip/style.d.ts +1 -0
- package/cjs/components/tooltip/web-component.d.ts +3 -0
- package/cjs/components/visually-hidden/VisuallyHidden.d.ts +31 -0
- package/cjs/components/visually-hidden/index.d.ts +3 -8
- package/cjs/components/visually-hidden/style/index.d.ts +1 -6
- package/cjs/components/visually-hidden/style.d.ts +1 -0
- package/cjs/components/vue.d.ts +6 -0
- package/cjs/components/web-components.d.ts +1 -0
- package/cjs/elements/Ingress.d.ts +5 -0
- package/cjs/elements/Link.d.ts +2 -0
- package/cjs/elements/Paragraph.d.ts +5 -0
- package/cjs/elements/index.d.ts +30 -74
- package/cjs/elements/lib.d.ts +71 -0
- package/cjs/esm/dnb-ui-basis.d.ts +1 -0
- package/cjs/esm/dnb-ui-components.d.ts +1 -0
- package/cjs/esm/dnb-ui-elements.d.ts +1 -0
- package/cjs/esm/dnb-ui-extensions.d.ts +1 -0
- package/cjs/esm/dnb-ui-icons-archive.d.ts +1 -0
- package/cjs/esm/dnb-ui-icons.d.ts +2 -0
- package/cjs/esm/dnb-ui-lib.d.ts +2 -0
- package/cjs/esm/dnb-ui-web-components.d.ts +1 -0
- package/cjs/extensions/index.d.ts +2 -16
- package/cjs/extensions/lib.d.ts +6 -0
- package/cjs/extensions/payment-card/icons/index.d.ts +15 -98
- package/cjs/extensions/payment-card/index.d.ts +3 -8
- package/cjs/extensions/payment-card/style/index.d.ts +1 -6
- package/cjs/extensions/payment-card/style/themes/ui.d.ts +1 -0
- package/cjs/extensions/payment-card/style.d.ts +1 -0
- package/cjs/extensions/payment-card/utils/CardDesigns.d.ts +242 -0
- package/cjs/extensions/payment-card/utils/Types.d.ts +91 -0
- package/cjs/extensions/payment-card/utils/cardProducts.d.ts +18 -0
- package/cjs/extensions/payment-card/web-component.d.ts +3 -0
- package/cjs/extensions/style/index.d.ts +1 -6
- package/cjs/extensions/vue.d.ts +6 -0
- package/cjs/extensions/web-components.d.ts +1 -0
- package/cjs/fragments/DrawerList.d.ts +3 -14
- package/cjs/fragments/ScrollView.d.ts +3 -14
- package/cjs/fragments/drawer-list/DrawerListContext.d.ts +3 -0
- package/cjs/fragments/drawer-list/DrawerListHelpers.d.ts +141 -0
- package/cjs/fragments/drawer-list/index.d.ts +3 -8
- package/cjs/fragments/drawer-list/style/index.d.ts +1 -6
- package/cjs/fragments/drawer-list/style/themes/ui.d.ts +1 -0
- package/cjs/fragments/drawer-list/style.d.ts +1 -0
- package/cjs/fragments/drawer-list/web-component.d.ts +3 -0
- package/cjs/fragments/index.d.ts +3 -17
- package/cjs/fragments/lib.d.ts +12 -0
- package/cjs/fragments/scroll-view/ScrollView.d.ts +14 -0
- package/cjs/fragments/scroll-view/index.d.ts +3 -8
- package/cjs/fragments/scroll-view/style/index.d.ts +1 -6
- package/cjs/fragments/scroll-view/style/themes/ui.d.ts +1 -0
- package/cjs/fragments/scroll-view/style.d.ts +1 -0
- package/cjs/fragments/scroll-view/web-component.d.ts +3 -0
- package/cjs/icons/above_the_line.d.ts +2 -0
- package/cjs/icons/above_the_line_medium.d.ts +2 -0
- package/cjs/icons/account.d.ts +2 -0
- package/cjs/icons/account_card.d.ts +2 -0
- package/cjs/icons/account_card_medium.d.ts +2 -0
- package/cjs/icons/account_in.d.ts +2 -0
- package/cjs/icons/account_in_medium.d.ts +2 -0
- package/cjs/icons/account_medium.d.ts +2 -0
- package/cjs/icons/account_out.d.ts +2 -0
- package/cjs/icons/account_out_medium.d.ts +2 -0
- package/cjs/icons/account_percent.d.ts +2 -0
- package/cjs/icons/add.d.ts +2 -0
- package/cjs/icons/add_circled.d.ts +2 -0
- package/cjs/icons/add_circled_medium.d.ts +2 -0
- package/cjs/icons/add_medium.d.ts +2 -0
- package/cjs/icons/ainvoice.d.ts +2 -0
- package/cjs/icons/ainvoice_medium.d.ts +2 -0
- package/cjs/icons/ambulance.d.ts +2 -0
- package/cjs/icons/ambulance_medium.d.ts +2 -0
- package/cjs/icons/animal_print.d.ts +2 -0
- package/cjs/icons/animal_print_medium.d.ts +2 -0
- package/cjs/icons/apple_watch.d.ts +2 -0
- package/cjs/icons/apple_watch_medium.d.ts +2 -0
- package/cjs/icons/arrow_down.d.ts +2 -0
- package/cjs/icons/arrow_down_medium.d.ts +2 -0
- package/cjs/icons/arrow_left.d.ts +2 -0
- package/cjs/icons/arrow_left_medium.d.ts +2 -0
- package/cjs/icons/arrow_right.d.ts +2 -0
- package/cjs/icons/arrow_right_medium.d.ts +2 -0
- package/cjs/icons/arrow_up.d.ts +2 -0
- package/cjs/icons/arrow_up_medium.d.ts +2 -0
- package/cjs/icons/attachment.d.ts +2 -0
- package/cjs/icons/attachment_medium.d.ts +2 -0
- package/cjs/icons/baby.d.ts +2 -0
- package/cjs/icons/baby_medium.d.ts +2 -0
- package/cjs/icons/bandage.d.ts +2 -0
- package/cjs/icons/bandage_medium.d.ts +2 -0
- package/cjs/icons/bank.d.ts +2 -0
- package/cjs/icons/bank_medium.d.ts +2 -0
- package/cjs/icons/bankid.d.ts +2 -0
- package/cjs/icons/bankid_medium.d.ts +2 -0
- package/cjs/icons/bankid_mobile.d.ts +2 -0
- package/cjs/icons/bankid_mobile_medium.d.ts +2 -0
- package/cjs/icons/bankid_qr.d.ts +2 -0
- package/cjs/icons/bankid_qr_medium.d.ts +2 -0
- package/cjs/icons/bell.d.ts +2 -0
- package/cjs/icons/bell_medium.d.ts +2 -0
- package/cjs/icons/bicycle.d.ts +2 -0
- package/cjs/icons/bicycle_medium.d.ts +2 -0
- package/cjs/icons/boat.d.ts +2 -0
- package/cjs/icons/boat_medium.d.ts +2 -0
- package/cjs/icons/bowling.d.ts +2 -0
- package/cjs/icons/bowling_medium.d.ts +2 -0
- package/cjs/icons/brickwall.d.ts +2 -0
- package/cjs/icons/brickwall_medium.d.ts +2 -0
- package/cjs/icons/broken_chain.d.ts +2 -0
- package/cjs/icons/broken_chain_medium.d.ts +2 -0
- package/cjs/icons/brush.d.ts +2 -0
- package/cjs/icons/brush_medium.d.ts +2 -0
- package/cjs/icons/bsu.d.ts +2 -0
- package/cjs/icons/bsu_medium.d.ts +2 -0
- package/cjs/icons/bubble.d.ts +2 -0
- package/cjs/icons/bubble_medium.d.ts +2 -0
- package/cjs/icons/building_construction.d.ts +2 -0
- package/cjs/icons/building_construction_medium.d.ts +2 -0
- package/cjs/icons/calculator.d.ts +2 -0
- package/cjs/icons/calculator_medium.d.ts +2 -0
- package/cjs/icons/calendar.d.ts +2 -0
- package/cjs/icons/calendar_medium.d.ts +2 -0
- package/cjs/icons/camera.d.ts +2 -0
- package/cjs/icons/camera_medium.d.ts +2 -0
- package/cjs/icons/camper_trailer.d.ts +2 -0
- package/cjs/icons/camper_trailer_medium.d.ts +2 -0
- package/cjs/icons/car_1.d.ts +2 -0
- package/cjs/icons/car_1_medium.d.ts +2 -0
- package/cjs/icons/car_2.d.ts +2 -0
- package/cjs/icons/car_2_medium.d.ts +2 -0
- package/cjs/icons/caravan.d.ts +2 -0
- package/cjs/icons/caravan_medium.d.ts +2 -0
- package/cjs/icons/card.d.ts +2 -0
- package/cjs/icons/card_in.d.ts +2 -0
- package/cjs/icons/card_in_medium.d.ts +2 -0
- package/cjs/icons/card_medium.d.ts +2 -0
- package/cjs/icons/card_out.d.ts +2 -0
- package/cjs/icons/card_out_medium.d.ts +2 -0
- package/cjs/icons/card_with_padlock.d.ts +2 -0
- package/cjs/icons/card_with_padlock_medium.d.ts +2 -0
- package/cjs/icons/cat.d.ts +2 -0
- package/cjs/icons/cat_medium.d.ts +2 -0
- package/cjs/icons/chain.d.ts +2 -0
- package/cjs/icons/chain_medium.d.ts +2 -0
- package/cjs/icons/charger.d.ts +2 -0
- package/cjs/icons/charger_medium.d.ts +2 -0
- package/cjs/icons/chat.d.ts +2 -0
- package/cjs/icons/chat_medium.d.ts +2 -0
- package/cjs/icons/chatbot.d.ts +2 -0
- package/cjs/icons/chatbot_medium.d.ts +2 -0
- package/cjs/icons/check.d.ts +2 -0
- package/cjs/icons/check_medium.d.ts +2 -0
- package/cjs/icons/chevron_down.d.ts +2 -0
- package/cjs/icons/chevron_down_medium.d.ts +2 -0
- package/cjs/icons/chevron_left.d.ts +2 -0
- package/cjs/icons/chevron_left_medium.d.ts +2 -0
- package/cjs/icons/chevron_right.d.ts +2 -0
- package/cjs/icons/chevron_right_medium.d.ts +2 -0
- package/cjs/icons/chevron_up.d.ts +2 -0
- package/cjs/icons/chevron_up_medium.d.ts +2 -0
- package/cjs/icons/chip.d.ts +2 -0
- package/cjs/icons/chip_medium.d.ts +2 -0
- package/cjs/icons/clock.d.ts +2 -0
- package/cjs/icons/clock_medium.d.ts +2 -0
- package/cjs/icons/close.d.ts +2 -0
- package/cjs/icons/close_medium.d.ts +2 -0
- package/cjs/icons/cloud.d.ts +2 -0
- package/cjs/icons/cloud_download.d.ts +2 -0
- package/cjs/icons/cloud_download_medium.d.ts +2 -0
- package/cjs/icons/cloud_medium.d.ts +2 -0
- package/cjs/icons/cloud_rain.d.ts +2 -0
- package/cjs/icons/cloud_rain_medium.d.ts +2 -0
- package/cjs/icons/cloud_sync.d.ts +2 -0
- package/cjs/icons/cloud_sync_medium.d.ts +2 -0
- package/cjs/icons/cloud_transfer.d.ts +2 -0
- package/cjs/icons/cloud_transfer_medium.d.ts +2 -0
- package/cjs/icons/cloud_upload.d.ts +2 -0
- package/cjs/icons/cloud_upload_medium.d.ts +2 -0
- package/cjs/icons/cog.d.ts +2 -0
- package/cjs/icons/cog_medium.d.ts +2 -0
- package/cjs/icons/coins_1.d.ts +2 -0
- package/cjs/icons/coins_1_medium.d.ts +2 -0
- package/cjs/icons/coins_2.d.ts +2 -0
- package/cjs/icons/coins_2_medium.d.ts +2 -0
- package/cjs/icons/coins_3.d.ts +2 -0
- package/cjs/icons/coins_3_medium.d.ts +2 -0
- package/cjs/icons/compose.d.ts +2 -0
- package/cjs/icons/compose_medium.d.ts +2 -0
- package/cjs/icons/confetti.d.ts +2 -0
- package/cjs/icons/confetti_medium.d.ts +2 -0
- package/cjs/icons/contacts.d.ts +2 -0
- package/cjs/icons/contacts_medium.d.ts +2 -0
- package/cjs/icons/cookie.d.ts +2 -0
- package/cjs/icons/cookie_medium.d.ts +2 -0
- package/cjs/icons/copy.d.ts +2 -0
- package/cjs/icons/copy_medium.d.ts +2 -0
- package/cjs/icons/credit_note.d.ts +2 -0
- package/cjs/icons/credit_note_medium.d.ts +2 -0
- package/cjs/icons/currency.d.ts +2 -0
- package/cjs/icons/currency_medium.d.ts +2 -0
- package/cjs/icons/customer_service.d.ts +2 -0
- package/cjs/icons/customer_service_medium.d.ts +2 -0
- package/cjs/icons/deleted_invoice.d.ts +2 -0
- package/cjs/icons/deleted_invoice_medium.d.ts +2 -0
- package/cjs/icons/diamond.d.ts +2 -0
- package/cjs/icons/diamond_medium.d.ts +2 -0
- package/cjs/icons/digipass.d.ts +2 -0
- package/cjs/icons/digipass_medium.d.ts +2 -0
- package/cjs/icons/digipost.d.ts +2 -0
- package/cjs/icons/digipost_medium.d.ts +2 -0
- package/cjs/icons/dismiss_keyboard.d.ts +2 -0
- package/cjs/icons/dismiss_keyboard_medium.d.ts +2 -0
- package/cjs/icons/document.d.ts +2 -0
- package/cjs/icons/document_add.d.ts +2 -0
- package/cjs/icons/document_add_medium.d.ts +2 -0
- package/cjs/icons/document_contract.d.ts +2 -0
- package/cjs/icons/document_contract_medium.d.ts +2 -0
- package/cjs/icons/document_csv.d.ts +2 -0
- package/cjs/icons/document_csv_medium.d.ts +2 -0
- package/cjs/icons/document_loupe.d.ts +2 -0
- package/cjs/icons/document_loupe_medium.d.ts +2 -0
- package/cjs/icons/document_medium.d.ts +2 -0
- package/cjs/icons/document_pdf.d.ts +2 -0
- package/cjs/icons/document_pdf_medium.d.ts +2 -0
- package/cjs/icons/document_rejected.d.ts +2 -0
- package/cjs/icons/document_rejected_medium.d.ts +2 -0
- package/cjs/icons/document_signing.d.ts +2 -0
- package/cjs/icons/document_signing_medium.d.ts +2 -0
- package/cjs/icons/document_txt.d.ts +2 -0
- package/cjs/icons/document_txt_medium.d.ts +2 -0
- package/cjs/icons/document_warning.d.ts +2 -0
- package/cjs/icons/document_warning_medium.d.ts +2 -0
- package/cjs/icons/document_word.d.ts +2 -0
- package/cjs/icons/document_word_medium.d.ts +2 -0
- package/cjs/icons/document_xls.d.ts +2 -0
- package/cjs/icons/document_xls_medium.d.ts +2 -0
- package/cjs/icons/dog.d.ts +2 -0
- package/cjs/icons/dog_medium.d.ts +2 -0
- package/cjs/icons/download.d.ts +2 -0
- package/cjs/icons/download_medium.d.ts +2 -0
- package/cjs/icons/edit.d.ts +2 -0
- package/cjs/icons/edit_medium.d.ts +2 -0
- package/cjs/icons/einvoice.d.ts +2 -0
- package/cjs/icons/einvoice_medium.d.ts +2 -0
- package/cjs/icons/email.d.ts +2 -0
- package/cjs/icons/email_medium.d.ts +2 -0
- package/cjs/icons/equities_and_mutual_funds.d.ts +2 -0
- package/cjs/icons/equities_and_mutual_funds_medium.d.ts +2 -0
- package/cjs/icons/exclamation.d.ts +2 -0
- package/cjs/icons/exclamation_circled.d.ts +2 -0
- package/cjs/icons/exclamation_circled_medium.d.ts +2 -0
- package/cjs/icons/exclamation_medium.d.ts +2 -0
- package/cjs/icons/exclamation_triangle.d.ts +2 -0
- package/cjs/icons/exclamation_triangle_medium.d.ts +2 -0
- package/cjs/icons/facebook.d.ts +2 -0
- package/cjs/icons/facebook_medium.d.ts +2 -0
- package/cjs/icons/factory.d.ts +2 -0
- package/cjs/icons/factory_medium.d.ts +2 -0
- package/cjs/icons/file.d.ts +2 -0
- package/cjs/icons/file_add.d.ts +2 -0
- package/cjs/icons/file_add_medium.d.ts +2 -0
- package/cjs/icons/file_contract.d.ts +2 -0
- package/cjs/icons/file_contract_medium.d.ts +2 -0
- package/cjs/icons/file_csv.d.ts +2 -0
- package/cjs/icons/file_csv_medium.d.ts +2 -0
- package/cjs/icons/file_loupe.d.ts +2 -0
- package/cjs/icons/file_loupe_medium.d.ts +2 -0
- package/cjs/icons/file_medium.d.ts +2 -0
- package/cjs/icons/file_pdf.d.ts +2 -0
- package/cjs/icons/file_pdf_medium.d.ts +2 -0
- package/cjs/icons/file_ppt.d.ts +2 -0
- package/cjs/icons/file_ppt_medium.d.ts +2 -0
- package/cjs/icons/file_rejected.d.ts +2 -0
- package/cjs/icons/file_rejected_medium.d.ts +2 -0
- package/cjs/icons/file_signing.d.ts +2 -0
- package/cjs/icons/file_signing_medium.d.ts +2 -0
- package/cjs/icons/file_txt.d.ts +2 -0
- package/cjs/icons/file_txt_medium.d.ts +2 -0
- package/cjs/icons/file_warning.d.ts +2 -0
- package/cjs/icons/file_warning_medium.d.ts +2 -0
- package/cjs/icons/file_word.d.ts +2 -0
- package/cjs/icons/file_word_medium.d.ts +2 -0
- package/cjs/icons/file_xls.d.ts +2 -0
- package/cjs/icons/file_xls_medium.d.ts +2 -0
- package/cjs/icons/file_xml.d.ts +2 -0
- package/cjs/icons/file_xml_medium.d.ts +2 -0
- package/cjs/icons/filter.d.ts +2 -0
- package/cjs/icons/filter_medium.d.ts +2 -0
- package/cjs/icons/first_aid.d.ts +2 -0
- package/cjs/icons/first_aid_medium.d.ts +2 -0
- package/cjs/icons/flying_money.d.ts +2 -0
- package/cjs/icons/flying_money_medium.d.ts +2 -0
- package/cjs/icons/folder.d.ts +2 -0
- package/cjs/icons/folder_medium.d.ts +2 -0
- package/cjs/icons/fridge.d.ts +2 -0
- package/cjs/icons/fridge_medium.d.ts +2 -0
- package/cjs/icons/fullscreen.d.ts +2 -0
- package/cjs/icons/fullscreen_medium.d.ts +2 -0
- package/cjs/icons/fund_in.d.ts +2 -0
- package/cjs/icons/fund_out.d.ts +2 -0
- package/cjs/icons/funds.d.ts +2 -0
- package/cjs/icons/funds_in.d.ts +2 -0
- package/cjs/icons/funds_in_medium.d.ts +2 -0
- package/cjs/icons/funds_medium.d.ts +2 -0
- package/cjs/icons/funds_out.d.ts +2 -0
- package/cjs/icons/funds_out_medium.d.ts +2 -0
- package/cjs/icons/globe.d.ts +2 -0
- package/cjs/icons/globe_medium.d.ts +2 -0
- package/cjs/icons/grabber.d.ts +2 -0
- package/cjs/icons/grabber_medium.d.ts +2 -0
- package/cjs/icons/graph_decrease.d.ts +2 -0
- package/cjs/icons/graph_decrease_medium.d.ts +2 -0
- package/cjs/icons/graph_increase.d.ts +2 -0
- package/cjs/icons/graph_increase_medium.d.ts +2 -0
- package/cjs/icons/hamburger.d.ts +2 -0
- package/cjs/icons/hamburger_medium.d.ts +2 -0
- package/cjs/icons/hand_money.d.ts +2 -0
- package/cjs/icons/hand_money_medium.d.ts +2 -0
- package/cjs/icons/hanger.d.ts +2 -0
- package/cjs/icons/hanger_medium.d.ts +2 -0
- package/cjs/icons/heart.d.ts +2 -0
- package/cjs/icons/heart_medium.d.ts +2 -0
- package/cjs/icons/heart_rate.d.ts +2 -0
- package/cjs/icons/heart_rate_medium.d.ts +2 -0
- package/cjs/icons/hide.d.ts +2 -0
- package/cjs/icons/hide_medium.d.ts +2 -0
- package/cjs/icons/history.d.ts +2 -0
- package/cjs/icons/history_medium.d.ts +2 -0
- package/cjs/icons/home.d.ts +2 -0
- package/cjs/icons/home_medium.d.ts +2 -0
- package/cjs/icons/horse.d.ts +2 -0
- package/cjs/icons/horse_medium.d.ts +2 -0
- package/cjs/icons/hourglass.d.ts +2 -0
- package/cjs/icons/hourglass_medium.d.ts +2 -0
- package/cjs/icons/house_1.d.ts +2 -0
- package/cjs/icons/house_1_medium.d.ts +2 -0
- package/cjs/icons/house_2.d.ts +2 -0
- package/cjs/icons/house_2_medium.d.ts +2 -0
- package/cjs/icons/house_value.d.ts +2 -0
- package/cjs/icons/house_value_medium.d.ts +2 -0
- package/cjs/icons/index.d.ts +501 -1005
- package/cjs/icons/information.d.ts +2 -0
- package/cjs/icons/information_bubble.d.ts +2 -0
- package/cjs/icons/information_bubble_medium.d.ts +2 -0
- package/cjs/icons/information_circled.d.ts +2 -0
- package/cjs/icons/information_circled_medium.d.ts +2 -0
- package/cjs/icons/information_medium.d.ts +2 -0
- package/cjs/icons/instagram.d.ts +2 -0
- package/cjs/icons/instagram_medium.d.ts +2 -0
- package/cjs/icons/insurance.d.ts +2 -0
- package/cjs/icons/insurance_medium.d.ts +2 -0
- package/cjs/icons/kid_number.d.ts +2 -0
- package/cjs/icons/kid_number_medium.d.ts +2 -0
- package/cjs/icons/language.d.ts +2 -0
- package/cjs/icons/language_medium.d.ts +2 -0
- package/cjs/icons/launch.d.ts +2 -0
- package/cjs/icons/launch_medium.d.ts +2 -0
- package/cjs/icons/leaf.d.ts +2 -0
- package/cjs/icons/leaf_medium.d.ts +2 -0
- package/cjs/icons/lightbulb.d.ts +2 -0
- package/cjs/icons/lightbulb_medium.d.ts +2 -0
- package/cjs/icons/linkedin.d.ts +2 -0
- package/cjs/icons/linkedin_medium.d.ts +2 -0
- package/cjs/icons/list.d.ts +2 -0
- package/cjs/icons/list_medium.d.ts +2 -0
- package/cjs/icons/loan.d.ts +2 -0
- package/cjs/icons/loan_in.d.ts +2 -0
- package/cjs/icons/loan_in_medium.d.ts +2 -0
- package/cjs/icons/loan_medium.d.ts +2 -0
- package/cjs/icons/loan_out.d.ts +2 -0
- package/cjs/icons/loan_out_medium.d.ts +2 -0
- package/cjs/icons/location.d.ts +2 -0
- package/cjs/icons/location_medium.d.ts +2 -0
- package/cjs/icons/log_in.d.ts +2 -0
- package/cjs/icons/log_in_medium.d.ts +2 -0
- package/cjs/icons/log_out.d.ts +2 -0
- package/cjs/icons/log_out_medium.d.ts +2 -0
- package/cjs/icons/loupe.d.ts +2 -0
- package/cjs/icons/loupe_medium.d.ts +2 -0
- package/cjs/icons/mastercard.d.ts +2 -0
- package/cjs/icons/mastercard_card.d.ts +2 -0
- package/cjs/icons/mastercard_card_medium.d.ts +2 -0
- package/cjs/icons/mastercard_medium.d.ts +2 -0
- package/cjs/icons/megaphone.d.ts +2 -0
- package/cjs/icons/megaphone_medium.d.ts +2 -0
- package/cjs/icons/microphone.d.ts +2 -0
- package/cjs/icons/microphone_medium.d.ts +2 -0
- package/cjs/icons/minimize.d.ts +2 -0
- package/cjs/icons/minimize_medium.d.ts +2 -0
- package/cjs/icons/mobilephone.d.ts +2 -0
- package/cjs/icons/mobilephone_medium.d.ts +2 -0
- package/cjs/icons/more.d.ts +2 -0
- package/cjs/icons/more_medium.d.ts +2 -0
- package/cjs/icons/more_vertical.d.ts +2 -0
- package/cjs/icons/more_vertical_medium.d.ts +2 -0
- package/cjs/icons/motorcycle.d.ts +2 -0
- package/cjs/icons/motorcycle_medium.d.ts +2 -0
- package/cjs/icons/move.d.ts +2 -0
- package/cjs/icons/move_medium.d.ts +2 -0
- package/cjs/icons/office_buildings.d.ts +2 -0
- package/cjs/icons/office_buildings_medium.d.ts +2 -0
- package/cjs/icons/oil.d.ts +2 -0
- package/cjs/icons/oil_medium.d.ts +2 -0
- package/cjs/icons/owl.d.ts +2 -0
- package/cjs/icons/owl_medium.d.ts +2 -0
- package/cjs/icons/padlock.d.ts +2 -0
- package/cjs/icons/padlock_medium.d.ts +2 -0
- package/cjs/icons/paperclip.d.ts +2 -0
- package/cjs/icons/paperclip_medium.d.ts +2 -0
- package/cjs/icons/paragraph.d.ts +2 -0
- package/cjs/icons/paragraph_medium.d.ts +2 -0
- package/cjs/icons/pause.d.ts +2 -0
- package/cjs/icons/pause_medium.d.ts +2 -0
- package/cjs/icons/pay_from.d.ts +2 -0
- package/cjs/icons/pay_from_medium.d.ts +2 -0
- package/cjs/icons/pension.d.ts +2 -0
- package/cjs/icons/pension_medium.d.ts +2 -0
- package/cjs/icons/people_1.d.ts +2 -0
- package/cjs/icons/people_1_medium.d.ts +2 -0
- package/cjs/icons/people_2.d.ts +2 -0
- package/cjs/icons/people_2_medium.d.ts +2 -0
- package/cjs/icons/person.d.ts +2 -0
- package/cjs/icons/person_medium.d.ts +2 -0
- package/cjs/icons/person_shield.d.ts +2 -0
- package/cjs/icons/person_shield_medium.d.ts +2 -0
- package/cjs/icons/phone.d.ts +2 -0
- package/cjs/icons/phone_medium.d.ts +2 -0
- package/cjs/icons/photo.d.ts +2 -0
- package/cjs/icons/photo_medium.d.ts +2 -0
- package/cjs/icons/pin.d.ts +2 -0
- package/cjs/icons/pin_code.d.ts +2 -0
- package/cjs/icons/pin_code_medium.d.ts +2 -0
- package/cjs/icons/pin_medium.d.ts +2 -0
- package/cjs/icons/plant.d.ts +2 -0
- package/cjs/icons/plant_medium.d.ts +2 -0
- package/cjs/icons/play.d.ts +2 -0
- package/cjs/icons/play_medium.d.ts +2 -0
- package/cjs/icons/primary_icons.d.ts +23 -0
- package/cjs/icons/primary_icons_medium.d.ts +23 -0
- package/cjs/icons/printer.d.ts +2 -0
- package/cjs/icons/printer_medium.d.ts +2 -0
- package/cjs/icons/products_account_percent_medium.d.ts +2 -0
- package/cjs/icons/profile.d.ts +2 -0
- package/cjs/icons/profile_medium.d.ts +2 -0
- package/cjs/icons/progress.d.ts +2 -0
- package/cjs/icons/progress_medium.d.ts +2 -0
- package/cjs/icons/question.d.ts +2 -0
- package/cjs/icons/question_circled.d.ts +2 -0
- package/cjs/icons/question_circled_medium.d.ts +2 -0
- package/cjs/icons/question_medium.d.ts +2 -0
- package/cjs/icons/recurring.d.ts +2 -0
- package/cjs/icons/recurring_medium.d.ts +2 -0
- package/cjs/icons/redo.d.ts +2 -0
- package/cjs/icons/redo_medium.d.ts +2 -0
- package/cjs/icons/ref_number.d.ts +2 -0
- package/cjs/icons/ref_number_medium.d.ts +2 -0
- package/cjs/icons/refresh.d.ts +2 -0
- package/cjs/icons/refresh_medium.d.ts +2 -0
- package/cjs/icons/reply.d.ts +2 -0
- package/cjs/icons/reply_medium.d.ts +2 -0
- package/cjs/icons/reset.d.ts +2 -0
- package/cjs/icons/reset_medium.d.ts +2 -0
- package/cjs/icons/restaurant.d.ts +2 -0
- package/cjs/icons/restaurant_medium.d.ts +2 -0
- package/cjs/icons/return_1.d.ts +2 -0
- package/cjs/icons/return_1_medium.d.ts +2 -0
- package/cjs/icons/save.d.ts +2 -0
- package/cjs/icons/save_medium.d.ts +2 -0
- package/cjs/icons/savings_account.d.ts +2 -0
- package/cjs/icons/savings_account_in.d.ts +2 -0
- package/cjs/icons/savings_account_in_medium.d.ts +2 -0
- package/cjs/icons/savings_account_medium.d.ts +2 -0
- package/cjs/icons/savings_account_out.d.ts +2 -0
- package/cjs/icons/savings_account_out_medium.d.ts +2 -0
- package/cjs/icons/scissors.d.ts +2 -0
- package/cjs/icons/scissors_medium.d.ts +2 -0
- package/cjs/icons/scooter.d.ts +2 -0
- package/cjs/icons/scooter_medium.d.ts +2 -0
- package/cjs/icons/secondary_icons.d.ts +216 -0
- package/cjs/icons/secondary_icons_medium.d.ts +216 -0
- package/cjs/icons/send.d.ts +2 -0
- package/cjs/icons/send_medium.d.ts +2 -0
- package/cjs/icons/share_android.d.ts +2 -0
- package/cjs/icons/share_android_medium.d.ts +2 -0
- package/cjs/icons/share_ios.d.ts +2 -0
- package/cjs/icons/share_ios_medium.d.ts +2 -0
- package/cjs/icons/shield.d.ts +2 -0
- package/cjs/icons/shield_medium.d.ts +2 -0
- package/cjs/icons/shopping_cart.d.ts +2 -0
- package/cjs/icons/shopping_cart_medium.d.ts +2 -0
- package/cjs/icons/snowmobile.d.ts +2 -0
- package/cjs/icons/snowmobile_medium.d.ts +2 -0
- package/cjs/icons/speedometer.d.ts +2 -0
- package/cjs/icons/speedometer_medium.d.ts +2 -0
- package/cjs/icons/split.d.ts +2 -0
- package/cjs/icons/split_medium.d.ts +2 -0
- package/cjs/icons/star.d.ts +2 -0
- package/cjs/icons/star_medium.d.ts +2 -0
- package/cjs/icons/stocks.d.ts +2 -0
- package/cjs/icons/stocks_medium.d.ts +2 -0
- package/cjs/icons/stop.d.ts +2 -0
- package/cjs/icons/stop_medium.d.ts +2 -0
- package/cjs/icons/stopwatch.d.ts +2 -0
- package/cjs/icons/stopwatch_medium.d.ts +2 -0
- package/cjs/icons/subtract.d.ts +2 -0
- package/cjs/icons/subtract_circled.d.ts +2 -0
- package/cjs/icons/subtract_circled_medium.d.ts +2 -0
- package/cjs/icons/subtract_medium.d.ts +2 -0
- package/cjs/icons/support.d.ts +2 -0
- package/cjs/icons/support_medium.d.ts +2 -0
- package/cjs/icons/swap.d.ts +2 -0
- package/cjs/icons/swap_medium.d.ts +2 -0
- package/cjs/icons/tag.d.ts +2 -0
- package/cjs/icons/tag_medium.d.ts +2 -0
- package/cjs/icons/thumbs_down.d.ts +2 -0
- package/cjs/icons/thumbs_down_medium.d.ts +2 -0
- package/cjs/icons/thumbs_up.d.ts +2 -0
- package/cjs/icons/thumbs_up_medium.d.ts +2 -0
- package/cjs/icons/tractor.d.ts +2 -0
- package/cjs/icons/tractor_medium.d.ts +2 -0
- package/cjs/icons/trailer.d.ts +2 -0
- package/cjs/icons/trailer_medium.d.ts +2 -0
- package/cjs/icons/train.d.ts +2 -0
- package/cjs/icons/train_medium.d.ts +2 -0
- package/cjs/icons/transfer.d.ts +2 -0
- package/cjs/icons/transfer_medium.d.ts +2 -0
- package/cjs/icons/transfer_to.d.ts +2 -0
- package/cjs/icons/transfer_to_medium.d.ts +2 -0
- package/cjs/icons/trash.d.ts +2 -0
- package/cjs/icons/trash_medium.d.ts +2 -0
- package/cjs/icons/travel.d.ts +2 -0
- package/cjs/icons/travel_medium.d.ts +2 -0
- package/cjs/icons/undo.d.ts +2 -0
- package/cjs/icons/undo_medium.d.ts +2 -0
- package/cjs/icons/upload.d.ts +2 -0
- package/cjs/icons/upload_medium.d.ts +2 -0
- package/cjs/icons/video.d.ts +2 -0
- package/cjs/icons/video_medium.d.ts +2 -0
- package/cjs/icons/view.d.ts +2 -0
- package/cjs/icons/view_medium.d.ts +2 -0
- package/cjs/icons/vintage_car.d.ts +2 -0
- package/cjs/icons/vintage_car_medium.d.ts +2 -0
- package/cjs/icons/volume_off.d.ts +2 -0
- package/cjs/icons/volume_off_medium.d.ts +2 -0
- package/cjs/icons/volume_on.d.ts +2 -0
- package/cjs/icons/volume_on_medium.d.ts +2 -0
- package/cjs/icons/wallet.d.ts +2 -0
- package/cjs/icons/wallet_medium.d.ts +2 -0
- package/cjs/icons/wearables.d.ts +2 -0
- package/cjs/icons/wearables_medium.d.ts +2 -0
- package/cjs/icons/web.d.ts +2 -0
- package/cjs/icons/web_medium.d.ts +2 -0
- package/cjs/icons/wheelchair.d.ts +2 -0
- package/cjs/icons/wheelchair_medium.d.ts +2 -0
- package/cjs/icons/widget_android.d.ts +2 -0
- package/cjs/icons/widget_android_medium.d.ts +2 -0
- package/cjs/icons/widget_ios.d.ts +2 -0
- package/cjs/icons/widget_ios_medium.d.ts +2 -0
- package/cjs/index.d.ts +74 -156
- package/cjs/index.js +16 -0
- package/cjs/lib.d.ts +3 -0
- package/cjs/shared/AnimateHeight.d.ts +45 -0
- package/cjs/shared/Context.d.ts +38 -0
- package/cjs/shared/Context.js +3 -1
- package/cjs/shared/Eufemia.d.ts +1 -0
- package/cjs/shared/Eufemia.js +1 -1
- package/cjs/shared/EventEmitter.d.ts +27 -0
- package/cjs/shared/MediaQueryUtils.d.ts +66 -0
- package/cjs/shared/SpacingHelper.d.ts +1 -0
- package/cjs/shared/component-helper.d.ts +60 -0
- package/cjs/shared/component-helper.js +10 -0
- package/cjs/shared/custom-element-polyfill.d.ts +25 -0
- package/cjs/shared/custom-element.d.ts +5 -0
- package/cjs/shared/defaults.d.ts +7 -0
- package/cjs/shared/error-helper.d.ts +15 -0
- package/cjs/shared/helpers/Suffix.d.ts +10 -7
- package/cjs/shared/helpers/Suffix.js +1 -11
- package/cjs/shared/helpers/withCamelCaseProps.d.ts +39 -0
- package/cjs/shared/helpers/withCamelCaseProps.js +23 -4
- package/cjs/shared/helpers.d.ts +44 -0
- package/cjs/shared/hooks/index.d.ts +1 -0
- package/cjs/shared/hooks/usePropsWithContext.d.ts +14 -0
- package/cjs/shared/index.d.ts +6 -12
- package/cjs/shared/interfaces.d.ts +10 -0
- package/cjs/shared/libs/HashSum.d.ts +1 -0
- package/cjs/shared/libs/MurmurHash2.d.ts +1 -0
- package/cjs/shared/libs/Shortcuts.d.ts +6 -0
- package/cjs/shared/locales/en-GB.d.ts +119 -0
- package/cjs/shared/locales/en-US.d.ts +120 -0
- package/cjs/shared/locales/index.d.ts +235 -5
- package/cjs/shared/locales/nb-NO.d.ts +119 -0
- package/cjs/shared/stories/translation/en.json +4 -0
- package/cjs/shared/stories/translation/nb.json +4 -0
- package/cjs/shared/useMediaQuery.d.ts +1 -0
- package/cjs/shared/useTranslation.d.ts +34 -0
- package/cjs/style/basis.d.ts +1 -0
- package/cjs/style/body.d.ts +1 -0
- package/cjs/style/components.d.ts +1 -0
- package/cjs/style/core.d.ts +1 -0
- package/cjs/style/dnb-ui-components.css +757 -614
- package/cjs/style/dnb-ui-components.min.css +2 -2
- package/cjs/style/dnb-ui-components.scss +2 -0
- package/cjs/style/elements.d.ts +1 -0
- package/cjs/style/extensions.d.ts +1 -0
- package/cjs/style/index.d.ts +1 -0
- package/cjs/style/properties.d.ts +81 -0
- package/cjs/style/tags.d.ts +1 -0
- package/cjs/style/theme.d.ts +1 -0
- package/cjs/style/themes/index.d.ts +1 -0
- package/cjs/style/themes/open-banking.d.ts +1 -0
- package/cjs/style/themes/theme-open-banking/dnb-theme-open-banking.css +51 -4
- package/cjs/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +2 -2
- package/cjs/style/themes/theme-ui/dnb-theme-ui.css +51 -4
- package/cjs/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
- package/cjs/style/themes/theme-ui/dnb-theme-ui.scss +2 -0
- package/cjs/style/themes/theme-ui/prism/dnb-prism-styles.d.ts +6 -0
- package/cjs/style/themes/theme-ui/prism/dnb-prism-theme.d.ts +29 -0
- package/cjs/style/themes/ui.d.ts +1 -0
- package/cjs/umd/dnb-ui-basis.d.ts +1 -0
- package/cjs/umd/dnb-ui-components.d.ts +1 -0
- package/cjs/umd/dnb-ui-elements.d.ts +1 -0
- package/cjs/umd/dnb-ui-extensions.d.ts +1 -0
- package/cjs/umd/dnb-ui-icons-archive.d.ts +1 -0
- package/cjs/umd/dnb-ui-icons.d.ts +2 -0
- package/cjs/umd/dnb-ui-lib.d.ts +2 -0
- package/cjs/umd/dnb-ui-web-components.d.ts +1 -0
- package/cjs/vue.d.ts +6 -0
- package/cjs/web-components.d.ts +1 -0
- package/components/Accordion.d.ts +3 -14
- package/components/Autocomplete.d.ts +3 -14
- package/components/Avatar.d.ts +3 -14
- package/components/Breadcrumb.d.ts +3 -14
- package/components/Button.d.ts +3 -14
- package/components/Checkbox.d.ts +3 -14
- package/components/DatePicker.d.ts +3 -14
- package/components/Dialog.d.ts +3 -0
- package/components/Dialog.js +3 -0
- package/components/Drawer.d.ts +3 -0
- package/components/Drawer.js +3 -0
- package/components/Dropdown.d.ts +3 -14
- package/components/FormLabel.d.ts +3 -14
- package/components/FormRow.d.ts +3 -14
- package/components/FormSet.d.ts +3 -14
- package/components/FormStatus.d.ts +3 -14
- package/components/GlobalError.d.ts +3 -14
- package/components/GlobalStatus.d.ts +3 -14
- package/components/Heading.d.ts +3 -14
- package/components/HelpButton.d.ts +3 -14
- package/components/Icon.d.ts +3 -14
- package/components/IconPrimary.d.ts +3 -14
- package/components/InfoCard.d.ts +3 -14
- package/components/Input.d.ts +3 -14
- package/components/InputMasked.d.ts +3 -14
- package/components/Logo.d.ts +3 -14
- package/components/Modal.d.ts +3 -14
- package/components/Number.d.ts +2 -8
- package/components/NumberFormat.d.ts +3 -14
- package/components/Pagination.d.ts +3 -14
- package/components/ProgressIndicator.d.ts +3 -14
- package/components/Radio.d.ts +3 -14
- package/components/Section.d.ts +3 -14
- package/components/Skeleton.d.ts +3 -14
- package/components/Slider.d.ts +3 -14
- package/components/Space.d.ts +3 -14
- package/components/StepIndicator.d.ts +3 -14
- package/components/Switch.d.ts +3 -14
- package/components/Tabs.d.ts +3 -14
- package/components/Tag.d.ts +3 -14
- package/components/Textarea.d.ts +3 -14
- package/components/Timeline.d.ts +3 -14
- package/components/ToggleButton.d.ts +3 -14
- package/components/Tooltip.d.ts +3 -14
- package/components/VisuallyHidden.d.ts +3 -14
- package/components/accordion/Accordion.d.ts +132 -226
- package/components/accordion/AccordionContent.d.ts +31 -38
- package/components/accordion/AccordionContext.d.ts +3 -0
- package/components/accordion/AccordionHeader.d.ts +138 -165
- package/components/accordion/AccordionPropTypes.d.ts +78 -0
- package/components/accordion/AccordionProvider.d.ts +105 -84
- package/components/accordion/AccordionProviderContext.d.ts +3 -0
- package/components/accordion/group/web-component.d.ts +1 -0
- package/components/accordion/index.d.ts +3 -8
- package/components/accordion/style/index.d.ts +1 -6
- package/components/accordion/style/themes/ui.d.ts +1 -0
- package/components/accordion/style.d.ts +1 -0
- package/components/accordion/web-component.d.ts +3 -0
- package/components/autocomplete/Autocomplete.d.ts +200 -561
- package/components/autocomplete/index.d.ts +3 -8
- package/components/autocomplete/style/index.d.ts +1 -6
- package/components/autocomplete/style/themes/ui.d.ts +1 -0
- package/components/autocomplete/style.d.ts +1 -0
- package/components/autocomplete/web-component.d.ts +3 -0
- package/components/avatar/Avatar.d.ts +65 -0
- package/components/avatar/AvatarGroup.d.ts +58 -0
- package/components/avatar/index.d.ts +3 -8
- package/components/avatar/style/themes/ui.d.ts +1 -0
- package/components/avatar/style.d.ts +1 -0
- package/components/breadcrumb/Breadcrumb.d.ts +104 -0
- package/components/breadcrumb/BreadcrumbItem.d.ts +37 -0
- package/components/breadcrumb/index.d.ts +3 -8
- package/components/breadcrumb/style/index.d.ts +1 -6
- package/components/breadcrumb/style.d.ts +1 -0
- package/components/button/index.d.ts +3 -8
- package/components/button/style/index.d.ts +1 -6
- package/components/button/style/themes/ui.d.ts +1 -0
- package/components/button/style.d.ts +1 -0
- package/components/button/web-component.d.ts +3 -0
- package/components/checkbox/Checkbox.d.ts +109 -168
- package/components/checkbox/index.d.ts +3 -8
- package/components/checkbox/style/index.d.ts +1 -6
- package/components/checkbox/style/themes/ui.d.ts +1 -0
- package/components/checkbox/style.d.ts +1 -0
- package/components/checkbox/web-component.d.ts +3 -0
- package/components/date-picker/DatePicker.d.ts +193 -383
- package/components/date-picker/DatePickerAddon.d.ts +28 -23
- package/components/date-picker/DatePickerCalc.d.ts +37 -0
- package/components/date-picker/DatePickerCalendar.d.ts +67 -44
- package/components/date-picker/DatePickerContext.d.ts +3 -0
- package/components/date-picker/DatePickerFooter.d.ts +22 -19
- package/components/date-picker/DatePickerInput.d.ts +87 -71
- package/components/date-picker/DatePickerProvider.d.ts +67 -40
- package/components/date-picker/DatePickerRange.d.ts +39 -24
- package/components/date-picker/index.d.ts +3 -8
- package/components/date-picker/style/index.d.ts +1 -6
- package/components/date-picker/style/themes/ui.d.ts +1 -0
- package/components/date-picker/style.d.ts +1 -0
- package/components/date-picker/web-component.d.ts +3 -0
- package/components/dialog/Dialog.d.ts +12 -0
- package/components/dialog/Dialog.js +117 -0
- package/components/dialog/DialogContent.d.ts +7 -0
- package/components/dialog/DialogContent.js +94 -0
- package/components/dialog/index.d.ts +1 -0
- package/components/dialog/index.js +3 -0
- package/components/dialog/parts/DialogBody.d.ts +15 -0
- package/components/dialog/parts/DialogBody.js +17 -0
- package/components/dialog/parts/DialogHeader.d.ts +8 -0
- package/components/dialog/parts/DialogHeader.js +20 -0
- package/components/dialog/parts/DialogNavigation.d.ts +4 -0
- package/components/dialog/parts/DialogNavigation.js +15 -0
- package/components/dialog/style/_dialog.scss +188 -0
- package/components/dialog/style/dnb-dialog.css +429 -0
- package/components/dialog/style/dnb-dialog.min.css +1 -0
- package/components/dialog/style/dnb-dialog.scss +15 -0
- package/components/dialog/style/index.d.ts +1 -0
- package/components/dialog/style/index.js +1 -0
- package/components/dialog/style/themes/dnb-dialog-theme-ui.css +17 -0
- package/components/dialog/style/themes/dnb-dialog-theme-ui.min.css +1 -0
- package/components/dialog/style/themes/dnb-dialog-theme-ui.scss +17 -0
- package/components/dialog/style/themes/ui.d.ts +1 -0
- package/components/dialog/style/themes/ui.js +1 -0
- package/components/dialog/style.d.ts +1 -0
- package/components/dialog/style.js +1 -0
- package/components/dialog/types.d.ts +60 -0
- package/components/dialog/types.js +1 -0
- package/components/drawer/Drawer.d.ts +12 -0
- package/components/drawer/Drawer.js +120 -0
- package/components/drawer/DrawerContent.d.ts +7 -0
- package/components/drawer/DrawerContent.js +96 -0
- package/components/drawer/helpers.d.ts +5 -0
- package/components/drawer/helpers.js +26 -0
- package/components/drawer/index.d.ts +3 -0
- package/components/drawer/index.js +3 -0
- package/components/drawer/parts/DrawerBody.d.ts +15 -0
- package/components/drawer/parts/DrawerBody.js +17 -0
- package/components/drawer/parts/DrawerHeader.d.ts +8 -0
- package/components/drawer/parts/DrawerHeader.js +20 -0
- package/components/drawer/parts/DrawerNavigation.d.ts +4 -0
- package/components/drawer/parts/DrawerNavigation.js +16 -0
- package/components/drawer/style/_drawer.scss +265 -0
- package/components/drawer/style/dnb-drawer.css +515 -0
- package/components/drawer/style/dnb-drawer.min.css +1 -0
- package/components/drawer/style/dnb-drawer.scss +15 -0
- package/components/drawer/style/index.d.ts +1 -0
- package/components/drawer/style/index.js +1 -0
- package/components/drawer/style/themes/dnb-drawer-theme-ui.css +17 -0
- package/components/drawer/style/themes/dnb-drawer-theme-ui.min.css +1 -0
- package/components/drawer/style/themes/dnb-drawer-theme-ui.scss +17 -0
- package/components/drawer/style/themes/ui.d.ts +1 -0
- package/components/drawer/style/themes/ui.js +1 -0
- package/components/drawer/style.d.ts +1 -0
- package/components/drawer/style.js +1 -0
- package/components/drawer/types.d.ts +68 -0
- package/components/drawer/types.js +1 -0
- package/components/dropdown/Dropdown.d.ts +153 -425
- package/components/dropdown/index.d.ts +3 -8
- package/components/dropdown/style/index.d.ts +1 -6
- package/components/dropdown/style/themes/ui.d.ts +1 -0
- package/components/dropdown/style.d.ts +1 -0
- package/components/dropdown/web-component.d.ts +3 -0
- package/components/form-label/FormLabel.d.ts +65 -115
- package/components/form-label/index.d.ts +3 -8
- package/components/form-label/style/index.d.ts +1 -6
- package/components/form-label/style/themes/ui.d.ts +1 -0
- package/components/form-label/style.d.ts +1 -0
- package/components/form-label/web-component.d.ts +3 -0
- package/components/form-row/FormRow.d.ts +167 -179
- package/components/form-row/index.d.ts +3 -8
- package/components/form-row/style/index.d.ts +1 -6
- package/components/form-row/style/themes/ui.d.ts +1 -0
- package/components/form-row/style.d.ts +1 -0
- package/components/form-row/web-component.d.ts +3 -0
- package/components/form-set/FormSet.d.ts +79 -200
- package/components/form-set/index.d.ts +3 -8
- package/components/form-set/style/index.d.ts +1 -6
- package/components/form-set/style/themes/ui.d.ts +1 -0
- package/components/form-set/style.d.ts +1 -0
- package/components/form-set/web-component.d.ts +3 -0
- package/components/form-status/FormStatus.d.ts +142 -202
- package/components/form-status/index.d.ts +3 -8
- package/components/form-status/style/index.d.ts +1 -6
- package/components/form-status/style/themes/ui.d.ts +1 -0
- package/components/form-status/style.d.ts +1 -0
- package/components/form-status/web-component.d.ts +3 -0
- package/components/global-error/GlobalError.d.ts +62 -80
- package/components/global-error/index.d.ts +3 -8
- package/components/global-error/style/index.d.ts +1 -6
- package/components/global-error/style/themes/ui.d.ts +1 -0
- package/components/global-error/style.d.ts +1 -0
- package/components/global-error/web-component.d.ts +3 -0
- package/components/global-status/AnimationHelper.d.ts +12 -0
- package/components/global-status/GlobalStatus.d.ts +143 -204
- package/components/global-status/GlobalStatusController.d.ts +36 -36
- package/components/global-status/GlobalStatusProvider.d.ts +34 -0
- package/components/global-status/GlobalStatusProvider.js +148 -149
- package/components/global-status/index.d.ts +3 -8
- package/components/global-status/style/index.d.ts +1 -6
- package/components/global-status/style/themes/ui.d.ts +1 -0
- package/components/global-status/style.d.ts +1 -0
- package/components/global-status/web-component.d.ts +3 -0
- package/components/heading/Heading.d.ts +87 -151
- package/components/heading/HeadingContext.d.ts +5 -0
- package/components/heading/HeadingCounter.d.ts +42 -0
- package/components/heading/HeadingHelpers.d.ts +27 -0
- package/components/heading/HeadingProvider.d.ts +36 -57
- package/components/heading/index.d.ts +3 -8
- package/components/heading/style/index.d.ts +1 -6
- package/components/heading/style.d.ts +1 -0
- package/components/heading/web-component.d.ts +3 -0
- package/components/help-button/HelpButton.d.ts +32 -236
- package/components/help-button/HelpButtonInstance.d.ts +30 -100
- package/components/help-button/index.d.ts +3 -8
- package/components/help-button/style/index.d.ts +1 -6
- package/components/help-button/style/themes/ui.d.ts +1 -0
- package/components/help-button/style.d.ts +1 -0
- package/components/help-button/web-component.d.ts +3 -0
- package/components/icon/Icon.d.ts +135 -123
- package/components/icon/IconPrimary.d.ts +3 -0
- package/components/icon/index.d.ts +3 -8
- package/components/icon/lib/SvgComparison.d.ts +2 -0
- package/components/icon/lib/index.d.ts +1 -5
- package/components/icon/style/index.d.ts +1 -6
- package/components/icon/style.d.ts +1 -0
- package/components/icon/web-component.d.ts +3 -0
- package/components/icon-primary/index.d.ts +3 -8
- package/components/icon-primary/style.d.ts +1 -0
- package/components/icon-primary/web-component.d.ts +3 -0
- package/components/index.d.ts +43 -96
- package/components/index.js +3 -1
- package/components/info-card/InfoCard.d.ts +101 -0
- package/components/info-card/style.d.ts +1 -0
- package/components/input/Input.d.ts +208 -294
- package/components/input/InputPassword.d.ts +145 -17
- package/components/input/index.d.ts +1 -6
- package/components/input/style/index.d.ts +1 -6
- package/components/input/style/themes/ui.d.ts +1 -0
- package/components/input/style.d.ts +1 -0
- package/components/input/web-component.d.ts +3 -0
- package/components/input-masked/InputMasked.d.ts +2 -370
- package/components/input-masked/InputMaskedContext.d.ts +3 -0
- package/components/input-masked/InputMaskedElement.d.ts +1 -0
- package/components/input-masked/InputMaskedHooks.d.ts +32 -0
- package/components/input-masked/InputMaskedUtils.d.ts +37 -0
- package/components/input-masked/TextMask.d.ts +39 -31
- package/components/input-masked/addons/createNumberMask.d.ts +15 -0
- package/components/input-masked/addons/emailMask.d.ts +7 -0
- package/components/input-masked/addons/emailPipe.d.ts +1 -0
- package/components/input-masked/index.d.ts +3 -8
- package/components/input-masked/style/index.d.ts +1 -6
- package/components/input-masked/style.d.ts +1 -0
- package/components/input-masked/text-mask/adjustCaretPosition.d.ts +11 -0
- package/components/input-masked/text-mask/conformToMask.d.ts +6 -0
- package/components/input-masked/text-mask/constants.d.ts +2 -0
- package/components/input-masked/text-mask/createTextMaskInputElement.d.ts +8 -0
- package/components/input-masked/text-mask/utilities.d.ts +9 -0
- package/components/input-masked/web-component.d.ts +3 -0
- package/components/lib.d.ts +100 -0
- package/components/lib.js +5 -1
- package/components/logo/Logo.d.ts +54 -90
- package/components/logo/index.d.ts +3 -8
- package/components/logo/style/index.d.ts +1 -6
- package/components/logo/style.d.ts +1 -0
- package/components/logo/web-component.d.ts +3 -0
- package/components/modal/Modal.d.ts +136 -0
- package/components/modal/Modal.js +16 -18
- package/components/modal/ModalContent.d.ts +54 -0
- package/components/modal/ModalContent.js +47 -58
- package/components/modal/ModalContext.d.ts +22 -0
- package/components/modal/ModalContext.js +16 -1
- package/components/modal/ModalRoot.d.ts +39 -0
- package/components/modal/bodyScrollLock.d.ts +3 -0
- package/components/modal/helpers.d.ts +5 -0
- package/components/modal/helpers.js +10 -1
- package/components/modal/index.d.ts +3 -8
- package/components/modal/parts/CloseButton.d.ts +39 -0
- package/components/modal/{components → parts}/CloseButton.js +0 -0
- package/components/modal/parts/ModalHeader.d.ts +48 -0
- package/components/modal/parts/ModalHeader.js +74 -0
- package/components/modal/parts/ModalHeaderBar.d.ts +50 -0
- package/components/modal/parts/ModalHeaderBar.js +125 -0
- package/components/modal/parts/ModalInner.d.ts +32 -0
- package/components/modal/parts/ModalInner.js +67 -0
- package/components/modal/style/_modal.scss +25 -342
- package/components/modal/style/dnb-modal.css +677 -366
- package/components/modal/style/dnb-modal.min.css +1 -1
- package/components/modal/style/dnb-modal.scss +2 -0
- package/components/modal/style/index.d.ts +1 -6
- package/components/modal/style/themes/dnb-modal-theme-ui.css +0 -4
- package/components/modal/style/themes/dnb-modal-theme-ui.min.css +1 -1
- package/components/modal/style/themes/dnb-modal-theme-ui.scss +0 -18
- package/components/modal/style/themes/ui.d.ts +1 -0
- package/components/modal/style.d.ts +1 -0
- package/components/modal/types.d.ts +284 -0
- package/components/modal/web-component.d.ts +3 -0
- package/components/number-format/NumberFormat.d.ts +106 -226
- package/components/number-format/index.d.ts +3 -8
- package/components/number-format/style/index.d.ts +1 -6
- package/components/number-format/style.d.ts +1 -0
- package/components/number-format/web-component.d.ts +3 -0
- package/components/pagination/InfinityScroller.d.ts +1 -0
- package/components/pagination/Pagination.d.ts +192 -845
- package/components/pagination/PaginationBar.d.ts +33 -41
- package/components/pagination/PaginationCalculation.d.ts +6 -0
- package/components/pagination/PaginationContext.d.ts +5 -0
- package/components/pagination/PaginationHelpers.d.ts +41 -20
- package/components/pagination/PaginationInfinity.d.ts +70 -44
- package/components/pagination/PaginationProvider.d.ts +74 -86
- package/components/pagination/index.d.ts +3 -8
- package/components/pagination/style/index.d.ts +1 -6
- package/components/pagination/style/themes/ui.d.ts +1 -0
- package/components/pagination/style.d.ts +1 -0
- package/components/pagination/web-component.d.ts +3 -0
- package/components/progress-indicator/ProgressIndicator.d.ts +74 -144
- package/components/progress-indicator/ProgressIndicatorCircular.d.ts +33 -38
- package/components/progress-indicator/ProgressIndicatorLinear.d.ts +24 -37
- package/components/progress-indicator/index.d.ts +3 -8
- package/components/progress-indicator/style/index.d.ts +1 -6
- package/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.css +15 -0
- package/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.min.css +1 -1
- package/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.scss +17 -0
- package/components/progress-indicator/style/themes/ui.d.ts +1 -0
- package/components/progress-indicator/style.d.ts +1 -0
- package/components/progress-indicator/web-component.d.ts +3 -0
- package/components/radio/Radio.d.ts +91 -121
- package/components/radio/RadioGroup.d.ts +102 -120
- package/components/radio/RadioGroupContext.d.ts +3 -0
- package/components/radio/group/web-component.d.ts +3 -0
- package/components/radio/index.d.ts +3 -8
- package/components/radio/style/index.d.ts +1 -6
- package/components/radio/style/themes/ui.d.ts +1 -0
- package/components/radio/style.d.ts +1 -0
- package/components/radio/web-component.d.ts +3 -0
- package/components/section/Section.d.ts +0 -5
- package/components/section/index.d.ts +3 -8
- package/components/section/style/index.d.ts +1 -6
- package/components/section/style/themes/ui.d.ts +1 -0
- package/components/section/style.d.ts +1 -0
- package/components/section/web-component.d.ts +3 -0
- package/components/skeleton/figures/Article.d.ts +31 -20
- package/components/skeleton/figures/Circle.d.ts +31 -19
- package/components/skeleton/figures/Product.d.ts +31 -20
- package/components/skeleton/figures/Table.d.ts +31 -19
- package/components/skeleton/figures/index.d.ts +5 -11
- package/components/skeleton/index.d.ts +3 -8
- package/components/skeleton/style/index.d.ts +1 -6
- package/components/skeleton/style/themes/brand.d.ts +1 -0
- package/components/skeleton/style/themes/norway.d.ts +1 -0
- package/components/skeleton/style/themes/rainbow.d.ts +1 -0
- package/components/skeleton/style/themes/ui.d.ts +1 -0
- package/components/skeleton/style.d.ts +1 -0
- package/components/skeleton/web-component.d.ts +3 -0
- package/components/slider/Slider.d.ts +128 -228
- package/components/slider/index.d.ts +3 -8
- package/components/slider/style/index.d.ts +1 -6
- package/components/slider/style/themes/ui.d.ts +1 -0
- package/components/slider/style.d.ts +1 -0
- package/components/slider/web-component.d.ts +3 -0
- package/components/space/Space.d.ts +64 -80
- package/components/space/SpacingHelper.d.ts +52 -0
- package/components/space/index.d.ts +3 -8
- package/components/space/style/index.d.ts +1 -6
- package/components/space/style/themes/ui.d.ts +1 -0
- package/components/space/style.d.ts +1 -0
- package/components/space/web-component.d.ts +3 -0
- package/components/step-indicator/StepIndicator.d.ts +73 -168
- package/components/step-indicator/StepIndicatorContext.d.ts +56 -18
- package/components/step-indicator/StepIndicatorItem-v1.d.ts +3 -0
- package/components/step-indicator/StepIndicatorItem.d.ts +110 -83
- package/components/step-indicator/StepIndicatorList.d.ts +6 -0
- package/components/step-indicator/StepIndicatorModal.d.ts +8 -0
- package/components/step-indicator/StepIndicatorProps.d.ts +65 -0
- package/components/step-indicator/StepIndicatorSidebar.d.ts +52 -58
- package/components/step-indicator/StepIndicatorTriggerButton.d.ts +19 -20
- package/components/step-indicator/index.d.ts +3 -8
- package/components/step-indicator/style/index.d.ts +1 -6
- package/components/step-indicator/style/themes/ui.d.ts +1 -0
- package/components/step-indicator/style.d.ts +1 -0
- package/components/step-indicator/web-component.d.ts +3 -0
- package/components/style/index.d.ts +1 -6
- package/components/switch/Switch.d.ts +101 -162
- package/components/switch/index.d.ts +3 -8
- package/components/switch/style/index.d.ts +1 -6
- package/components/switch/style/themes/ui.d.ts +1 -0
- package/components/switch/style.d.ts +1 -0
- package/components/switch/web-component.d.ts +3 -0
- package/components/tabs/Tabs.d.ts +169 -208
- package/components/tabs/TabsContentWrapper.d.ts +19 -39
- package/components/tabs/TabsCustomContent.d.ts +34 -87
- package/components/tabs/index.d.ts +3 -8
- package/components/tabs/style/index.d.ts +1 -6
- package/components/tabs/style/themes/ui.d.ts +1 -0
- package/components/tabs/style.d.ts +1 -0
- package/components/tabs/web-component.d.ts +3 -0
- package/components/tag/Tag.d.ts +61 -0
- package/components/tag/TagContext.d.ts +2 -0
- package/components/tag/TagGroup.d.ts +26 -0
- package/components/tag/index.d.ts +3 -8
- package/components/tag/style/index.d.ts +1 -6
- package/components/tag/style.d.ts +1 -0
- package/components/textarea/Textarea.d.ts +126 -220
- package/components/textarea/index.d.ts +1 -6
- package/components/textarea/style/index.d.ts +1 -6
- package/components/textarea/style/themes/ui.d.ts +1 -0
- package/components/textarea/style.d.ts +1 -0
- package/components/textarea/web-component.d.ts +3 -0
- package/components/timeline/Timeline.d.ts +38 -0
- package/components/timeline/TimelineItem.d.ts +39 -0
- package/components/timeline/index.d.ts +3 -8
- package/components/timeline/style/index.d.ts +1 -6
- package/components/timeline/style/themes/ui.d.ts +1 -0
- package/components/timeline/style.d.ts +1 -0
- package/components/toggle-button/ToggleButton.d.ts +97 -185
- package/components/toggle-button/ToggleButtonGroup.d.ts +105 -169
- package/components/toggle-button/ToggleButtonGroupContext.d.ts +3 -0
- package/components/toggle-button/group/web-component.d.ts +3 -0
- package/components/toggle-button/index.d.ts +3 -8
- package/components/toggle-button/style/index.d.ts +1 -6
- package/components/toggle-button/style/themes/ui.d.ts +1 -0
- package/components/toggle-button/style.d.ts +1 -0
- package/components/toggle-button/web-component.d.ts +3 -0
- package/components/tooltip/Tooltip.d.ts +78 -154
- package/components/tooltip/TooltipContainer.d.ts +51 -69
- package/components/tooltip/TooltipHelpers.d.ts +1 -0
- package/components/tooltip/TooltipPortal.d.ts +24 -32
- package/components/tooltip/TooltipWithEvents.d.ts +28 -36
- package/components/tooltip/index.d.ts +3 -8
- package/components/tooltip/style/index.d.ts +1 -6
- package/components/tooltip/style/themes/ui.d.ts +1 -0
- package/components/tooltip/style.d.ts +1 -0
- package/components/tooltip/web-component.d.ts +3 -0
- package/components/visually-hidden/VisuallyHidden.d.ts +31 -0
- package/components/visually-hidden/index.d.ts +3 -8
- package/components/visually-hidden/style/index.d.ts +1 -6
- package/components/visually-hidden/style.d.ts +1 -0
- package/components/vue.d.ts +6 -0
- package/components/web-components.d.ts +1 -0
- package/elements/Anchor.d.ts +2 -101
- package/elements/Blockquote.d.ts +2 -28
- package/elements/Code.d.ts +2 -28
- package/elements/Dd.d.ts +2 -28
- package/elements/Dl.d.ts +20 -27
- package/elements/Dt.d.ts +2 -28
- package/elements/Element.d.ts +2 -42
- package/elements/H.d.ts +29 -42
- package/elements/H1.d.ts +24 -37
- package/elements/H2.d.ts +24 -37
- package/elements/H3.d.ts +24 -37
- package/elements/H4.d.ts +24 -37
- package/elements/H5.d.ts +24 -37
- package/elements/H6.d.ts +24 -37
- package/elements/Hr.d.ts +30 -30
- package/elements/Ingress.d.ts +5 -0
- package/elements/Lead.d.ts +2 -28
- package/elements/Li.d.ts +22 -27
- package/elements/Link.d.ts +2 -0
- package/elements/Ol.d.ts +30 -30
- package/elements/Paragraph.d.ts +5 -0
- package/elements/Span.d.ts +2 -28
- package/elements/Table.d.ts +37 -32
- package/elements/Td.d.ts +20 -27
- package/elements/Th.d.ts +20 -27
- package/elements/Tr.d.ts +20 -27
- package/elements/Ul.d.ts +32 -31
- package/elements/index.d.ts +30 -74
- package/elements/lib.d.ts +395 -0
- package/es/components/Accordion.d.ts +3 -14
- package/es/components/Autocomplete.d.ts +3 -14
- package/es/components/Avatar.d.ts +3 -14
- package/es/components/Breadcrumb.d.ts +3 -14
- package/es/components/Button.d.ts +3 -14
- package/es/components/Checkbox.d.ts +3 -14
- package/es/components/DatePicker.d.ts +3 -14
- package/es/components/Dialog.d.ts +3 -0
- package/es/components/Dialog.js +3 -0
- package/es/components/Drawer.d.ts +3 -0
- package/es/components/Drawer.js +3 -0
- package/es/components/Dropdown.d.ts +3 -14
- package/es/components/FormLabel.d.ts +3 -14
- package/es/components/FormRow.d.ts +3 -14
- package/es/components/FormSet.d.ts +3 -14
- package/es/components/FormStatus.d.ts +3 -14
- package/es/components/GlobalError.d.ts +3 -14
- package/es/components/GlobalStatus.d.ts +3 -14
- package/es/components/Heading.d.ts +3 -14
- package/es/components/HelpButton.d.ts +3 -14
- package/es/components/Icon.d.ts +3 -14
- package/es/components/IconPrimary.d.ts +3 -14
- package/es/components/InfoCard.d.ts +3 -14
- package/es/components/Input.d.ts +3 -14
- package/es/components/InputMasked.d.ts +3 -14
- package/es/components/Logo.d.ts +3 -14
- package/es/components/Modal.d.ts +3 -14
- package/es/components/Number.d.ts +2 -8
- package/es/components/NumberFormat.d.ts +3 -14
- package/es/components/Pagination.d.ts +3 -14
- package/es/components/ProgressIndicator.d.ts +3 -14
- package/es/components/Radio.d.ts +3 -14
- package/es/components/Section.d.ts +3 -14
- package/es/components/Skeleton.d.ts +3 -14
- package/es/components/Slider.d.ts +3 -14
- package/es/components/Space.d.ts +3 -14
- package/es/components/StepIndicator.d.ts +3 -14
- package/es/components/Switch.d.ts +3 -14
- package/es/components/Tabs.d.ts +3 -14
- package/es/components/Tag.d.ts +3 -14
- package/es/components/Textarea.d.ts +3 -14
- package/es/components/Timeline.d.ts +3 -14
- package/es/components/ToggleButton.d.ts +3 -14
- package/es/components/Tooltip.d.ts +3 -14
- package/es/components/VisuallyHidden.d.ts +3 -14
- package/es/components/accordion/AccordionContext.d.ts +3 -0
- package/es/components/accordion/AccordionPropTypes.d.ts +78 -0
- package/es/components/accordion/AccordionProviderContext.d.ts +3 -0
- package/es/components/accordion/group/web-component.d.ts +1 -0
- package/es/components/accordion/index.d.ts +3 -8
- package/es/components/accordion/style/index.d.ts +1 -6
- package/es/components/accordion/style/themes/ui.d.ts +1 -0
- package/es/components/accordion/style.d.ts +1 -0
- package/es/components/accordion/web-component.d.ts +3 -0
- package/es/components/autocomplete/index.d.ts +3 -8
- package/es/components/autocomplete/style/index.d.ts +1 -6
- package/es/components/autocomplete/style/themes/ui.d.ts +1 -0
- package/es/components/autocomplete/style.d.ts +1 -0
- package/es/components/autocomplete/web-component.d.ts +3 -0
- package/es/components/avatar/Avatar.d.ts +65 -0
- package/es/components/avatar/AvatarGroup.d.ts +58 -0
- package/es/components/avatar/index.d.ts +3 -8
- package/es/components/avatar/style/themes/ui.d.ts +1 -0
- package/es/components/avatar/style.d.ts +1 -0
- package/es/components/breadcrumb/Breadcrumb.d.ts +104 -0
- package/es/components/breadcrumb/BreadcrumbItem.d.ts +37 -0
- package/es/components/breadcrumb/index.d.ts +3 -8
- package/es/components/breadcrumb/style/index.d.ts +1 -6
- package/es/components/breadcrumb/style.d.ts +1 -0
- package/es/components/button/index.d.ts +3 -8
- package/es/components/button/style/index.d.ts +1 -6
- package/es/components/button/style/themes/ui.d.ts +1 -0
- package/es/components/button/style.d.ts +1 -0
- package/es/components/button/web-component.d.ts +3 -0
- package/es/components/checkbox/index.d.ts +3 -8
- package/es/components/checkbox/style/index.d.ts +1 -6
- package/es/components/checkbox/style/themes/ui.d.ts +1 -0
- package/es/components/checkbox/style.d.ts +1 -0
- package/es/components/checkbox/web-component.d.ts +3 -0
- package/es/components/date-picker/DatePickerCalc.d.ts +37 -0
- package/es/components/date-picker/DatePickerContext.d.ts +3 -0
- package/es/components/date-picker/index.d.ts +3 -8
- package/es/components/date-picker/style/index.d.ts +1 -6
- package/es/components/date-picker/style/themes/ui.d.ts +1 -0
- package/es/components/date-picker/style.d.ts +1 -0
- package/es/components/date-picker/web-component.d.ts +3 -0
- package/es/components/dialog/Dialog.d.ts +12 -0
- package/es/components/dialog/Dialog.js +110 -0
- package/es/components/dialog/DialogContent.d.ts +7 -0
- package/es/components/dialog/DialogContent.js +70 -0
- package/es/components/dialog/index.d.ts +1 -0
- package/es/components/dialog/index.js +3 -0
- package/es/components/dialog/parts/DialogBody.d.ts +15 -0
- package/es/components/dialog/parts/DialogBody.js +19 -0
- package/es/components/dialog/parts/DialogHeader.d.ts +8 -0
- package/es/components/dialog/parts/DialogHeader.js +21 -0
- package/es/components/dialog/parts/DialogNavigation.d.ts +4 -0
- package/es/components/dialog/parts/DialogNavigation.js +17 -0
- package/es/components/dialog/style/_dialog.scss +188 -0
- package/es/components/dialog/style/dnb-dialog.css +429 -0
- package/es/components/dialog/style/dnb-dialog.min.css +1 -0
- package/es/components/dialog/style/dnb-dialog.scss +15 -0
- package/es/components/dialog/style/index.d.ts +1 -0
- package/es/components/dialog/style/index.js +1 -0
- package/es/components/dialog/style/themes/dnb-dialog-theme-ui.css +17 -0
- package/es/components/dialog/style/themes/dnb-dialog-theme-ui.min.css +1 -0
- package/es/components/dialog/style/themes/dnb-dialog-theme-ui.scss +17 -0
- package/es/components/dialog/style/themes/ui.d.ts +1 -0
- package/es/components/dialog/style/themes/ui.js +1 -0
- package/es/components/dialog/style.d.ts +1 -0
- package/es/components/dialog/style.js +1 -0
- package/es/components/dialog/types.d.ts +60 -0
- package/es/components/dialog/types.js +1 -0
- package/es/components/drawer/Drawer.d.ts +12 -0
- package/es/components/drawer/Drawer.js +112 -0
- package/es/components/drawer/DrawerContent.d.ts +7 -0
- package/es/components/drawer/DrawerContent.js +71 -0
- package/es/components/drawer/helpers.d.ts +5 -0
- package/es/components/drawer/helpers.js +25 -0
- package/es/components/drawer/index.d.ts +3 -0
- package/es/components/drawer/index.js +3 -0
- package/es/components/drawer/parts/DrawerBody.d.ts +15 -0
- package/es/components/drawer/parts/DrawerBody.js +19 -0
- package/es/components/drawer/parts/DrawerHeader.d.ts +8 -0
- package/es/components/drawer/parts/DrawerHeader.js +21 -0
- package/es/components/drawer/parts/DrawerNavigation.d.ts +4 -0
- package/es/components/drawer/parts/DrawerNavigation.js +18 -0
- package/es/components/drawer/style/_drawer.scss +265 -0
- package/es/components/drawer/style/dnb-drawer.css +515 -0
- package/es/components/drawer/style/dnb-drawer.min.css +1 -0
- package/es/components/drawer/style/dnb-drawer.scss +15 -0
- package/es/components/drawer/style/index.d.ts +1 -0
- package/es/components/drawer/style/index.js +1 -0
- package/es/components/drawer/style/themes/dnb-drawer-theme-ui.css +17 -0
- package/es/components/drawer/style/themes/dnb-drawer-theme-ui.min.css +1 -0
- package/es/components/drawer/style/themes/dnb-drawer-theme-ui.scss +17 -0
- package/es/components/drawer/style/themes/ui.d.ts +1 -0
- package/es/components/drawer/style/themes/ui.js +1 -0
- package/es/components/drawer/style.d.ts +1 -0
- package/es/components/drawer/style.js +1 -0
- package/es/components/drawer/types.d.ts +68 -0
- package/es/components/drawer/types.js +1 -0
- package/es/components/dropdown/index.d.ts +3 -8
- package/es/components/dropdown/style/index.d.ts +1 -6
- package/es/components/dropdown/style/themes/ui.d.ts +1 -0
- package/es/components/dropdown/style.d.ts +1 -0
- package/es/components/dropdown/web-component.d.ts +3 -0
- package/es/components/form-label/index.d.ts +3 -8
- package/es/components/form-label/style/index.d.ts +1 -6
- package/es/components/form-label/style/themes/ui.d.ts +1 -0
- package/es/components/form-label/style.d.ts +1 -0
- package/es/components/form-label/web-component.d.ts +3 -0
- package/es/components/form-row/index.d.ts +3 -8
- package/es/components/form-row/style/index.d.ts +1 -6
- package/es/components/form-row/style/themes/ui.d.ts +1 -0
- package/es/components/form-row/style.d.ts +1 -0
- package/es/components/form-row/web-component.d.ts +3 -0
- package/es/components/form-set/index.d.ts +3 -8
- package/es/components/form-set/style/index.d.ts +1 -6
- package/es/components/form-set/style/themes/ui.d.ts +1 -0
- package/es/components/form-set/style.d.ts +1 -0
- package/es/components/form-set/web-component.d.ts +3 -0
- package/es/components/form-status/index.d.ts +3 -8
- package/es/components/form-status/style/index.d.ts +1 -6
- package/es/components/form-status/style/themes/ui.d.ts +1 -0
- package/es/components/form-status/style.d.ts +1 -0
- package/es/components/form-status/web-component.d.ts +3 -0
- package/es/components/global-error/index.d.ts +3 -8
- package/es/components/global-error/style/index.d.ts +1 -6
- package/es/components/global-error/style/themes/ui.d.ts +1 -0
- package/es/components/global-error/style.d.ts +1 -0
- package/es/components/global-error/web-component.d.ts +3 -0
- package/es/components/global-status/AnimationHelper.d.ts +12 -0
- package/es/components/global-status/GlobalStatusProvider.d.ts +34 -0
- package/es/components/global-status/GlobalStatusProvider.js +114 -115
- package/es/components/global-status/index.d.ts +3 -8
- package/es/components/global-status/style/index.d.ts +1 -6
- package/es/components/global-status/style/themes/ui.d.ts +1 -0
- package/es/components/global-status/style.d.ts +1 -0
- package/es/components/global-status/web-component.d.ts +3 -0
- package/es/components/heading/HeadingContext.d.ts +5 -0
- package/es/components/heading/HeadingCounter.d.ts +42 -0
- package/es/components/heading/HeadingHelpers.d.ts +27 -0
- package/es/components/heading/index.d.ts +3 -8
- package/es/components/heading/style/index.d.ts +1 -6
- package/es/components/heading/style.d.ts +1 -0
- package/es/components/heading/web-component.d.ts +3 -0
- package/es/components/help-button/index.d.ts +3 -8
- package/es/components/help-button/style/index.d.ts +1 -6
- package/es/components/help-button/style/themes/ui.d.ts +1 -0
- package/es/components/help-button/style.d.ts +1 -0
- package/es/components/help-button/web-component.d.ts +3 -0
- package/es/components/icon/IconPrimary.d.ts +3 -0
- package/es/components/icon/index.d.ts +3 -8
- package/es/components/icon/lib/SvgComparison.d.ts +2 -0
- package/es/components/icon/lib/index.d.ts +1 -5
- package/es/components/icon/style/index.d.ts +1 -6
- package/es/components/icon/style.d.ts +1 -0
- package/es/components/icon/web-component.d.ts +3 -0
- package/es/components/icon-primary/index.d.ts +3 -8
- package/es/components/icon-primary/style.d.ts +1 -0
- package/es/components/icon-primary/web-component.d.ts +3 -0
- package/es/components/index.d.ts +43 -96
- package/es/components/index.js +3 -1
- package/es/components/info-card/InfoCard.d.ts +101 -0
- package/es/components/info-card/style.d.ts +1 -0
- package/es/components/input/index.d.ts +1 -6
- package/es/components/input/style/index.d.ts +1 -6
- package/es/components/input/style/themes/ui.d.ts +1 -0
- package/es/components/input/style.d.ts +1 -0
- package/es/components/input/web-component.d.ts +3 -0
- package/es/components/input-masked/InputMaskedContext.d.ts +3 -0
- package/es/components/input-masked/InputMaskedElement.d.ts +1 -0
- package/es/components/input-masked/InputMaskedHooks.d.ts +32 -0
- package/es/components/input-masked/InputMaskedUtils.d.ts +37 -0
- package/es/components/input-masked/addons/createNumberMask.d.ts +15 -0
- package/es/components/input-masked/addons/emailMask.d.ts +7 -0
- package/es/components/input-masked/addons/emailPipe.d.ts +1 -0
- package/es/components/input-masked/index.d.ts +3 -8
- package/es/components/input-masked/style/index.d.ts +1 -6
- package/es/components/input-masked/style.d.ts +1 -0
- package/es/components/input-masked/text-mask/adjustCaretPosition.d.ts +11 -0
- package/es/components/input-masked/text-mask/conformToMask.d.ts +6 -0
- package/es/components/input-masked/text-mask/constants.d.ts +2 -0
- package/es/components/input-masked/text-mask/createTextMaskInputElement.d.ts +8 -0
- package/es/components/input-masked/text-mask/utilities.d.ts +9 -0
- package/es/components/input-masked/web-component.d.ts +3 -0
- package/es/components/lib.d.ts +100 -0
- package/es/components/lib.js +5 -1
- package/es/components/logo/index.d.ts +3 -8
- package/es/components/logo/style/index.d.ts +1 -6
- package/es/components/logo/style.d.ts +1 -0
- package/es/components/logo/web-component.d.ts +3 -0
- package/es/components/modal/Modal.d.ts +136 -0
- package/es/components/modal/Modal.js +16 -15
- package/es/components/modal/ModalContent.d.ts +54 -0
- package/es/components/modal/ModalContent.js +46 -53
- package/es/components/modal/ModalContext.d.ts +22 -0
- package/es/components/modal/ModalContext.js +16 -1
- package/es/components/modal/ModalRoot.d.ts +39 -0
- package/es/components/modal/bodyScrollLock.d.ts +3 -0
- package/es/components/modal/helpers.d.ts +5 -0
- package/es/components/modal/helpers.js +10 -1
- package/es/components/modal/index.d.ts +3 -8
- package/es/components/modal/parts/CloseButton.d.ts +39 -0
- package/es/components/modal/{components → parts}/CloseButton.js +0 -0
- package/es/components/modal/parts/ModalHeader.d.ts +48 -0
- package/es/components/modal/parts/ModalHeader.js +44 -0
- package/es/components/modal/parts/ModalHeaderBar.d.ts +50 -0
- package/es/components/modal/parts/ModalHeaderBar.js +90 -0
- package/es/components/modal/parts/ModalInner.d.ts +32 -0
- package/es/components/modal/parts/ModalInner.js +40 -0
- package/es/components/modal/style/_modal.scss +25 -342
- package/es/components/modal/style/dnb-modal.css +677 -366
- package/es/components/modal/style/dnb-modal.min.css +1 -1
- package/es/components/modal/style/dnb-modal.scss +2 -0
- package/es/components/modal/style/index.d.ts +1 -6
- package/es/components/modal/style/themes/dnb-modal-theme-ui.css +0 -4
- package/es/components/modal/style/themes/dnb-modal-theme-ui.min.css +1 -1
- package/es/components/modal/style/themes/dnb-modal-theme-ui.scss +0 -18
- package/es/components/modal/style/themes/ui.d.ts +1 -0
- package/es/components/modal/style.d.ts +1 -0
- package/es/components/modal/types.d.ts +284 -0
- package/es/components/modal/web-component.d.ts +3 -0
- package/es/components/number-format/index.d.ts +3 -8
- package/es/components/number-format/style/index.d.ts +1 -6
- package/es/components/number-format/style.d.ts +1 -0
- package/es/components/number-format/web-component.d.ts +3 -0
- package/es/components/pagination/InfinityScroller.d.ts +1 -0
- package/es/components/pagination/PaginationCalculation.d.ts +6 -0
- package/es/components/pagination/PaginationContext.d.ts +5 -0
- package/es/components/pagination/index.d.ts +3 -8
- package/es/components/pagination/style/index.d.ts +1 -6
- package/es/components/pagination/style/themes/ui.d.ts +1 -0
- package/es/components/pagination/style.d.ts +1 -0
- package/es/components/pagination/web-component.d.ts +3 -0
- package/es/components/progress-indicator/index.d.ts +3 -8
- package/es/components/progress-indicator/style/index.d.ts +1 -6
- package/es/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.css +15 -0
- package/es/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.min.css +1 -1
- package/es/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.scss +17 -0
- package/es/components/progress-indicator/style/themes/ui.d.ts +1 -0
- package/es/components/progress-indicator/style.d.ts +1 -0
- package/es/components/progress-indicator/web-component.d.ts +3 -0
- package/es/components/radio/RadioGroupContext.d.ts +3 -0
- package/es/components/radio/group/web-component.d.ts +3 -0
- package/es/components/radio/index.d.ts +3 -8
- package/es/components/radio/style/index.d.ts +1 -6
- package/es/components/radio/style/themes/ui.d.ts +1 -0
- package/es/components/radio/style.d.ts +1 -0
- package/es/components/radio/web-component.d.ts +3 -0
- package/es/components/section/Section.d.ts +0 -5
- package/es/components/section/index.d.ts +3 -8
- package/es/components/section/style/index.d.ts +1 -6
- package/es/components/section/style/themes/ui.d.ts +1 -0
- package/es/components/section/style.d.ts +1 -0
- package/es/components/section/web-component.d.ts +3 -0
- package/es/components/skeleton/figures/index.d.ts +5 -11
- package/es/components/skeleton/index.d.ts +3 -8
- package/es/components/skeleton/style/index.d.ts +1 -6
- package/es/components/skeleton/style/themes/brand.d.ts +1 -0
- package/es/components/skeleton/style/themes/norway.d.ts +1 -0
- package/es/components/skeleton/style/themes/rainbow.d.ts +1 -0
- package/es/components/skeleton/style/themes/ui.d.ts +1 -0
- package/es/components/skeleton/style.d.ts +1 -0
- package/es/components/skeleton/web-component.d.ts +3 -0
- package/es/components/slider/index.d.ts +3 -8
- package/es/components/slider/style/index.d.ts +1 -6
- package/es/components/slider/style/themes/ui.d.ts +1 -0
- package/es/components/slider/style.d.ts +1 -0
- package/es/components/slider/web-component.d.ts +3 -0
- package/es/components/space/SpacingHelper.d.ts +52 -0
- package/es/components/space/index.d.ts +3 -8
- package/es/components/space/style/index.d.ts +1 -6
- package/es/components/space/style/themes/ui.d.ts +1 -0
- package/es/components/space/style.d.ts +1 -0
- package/es/components/space/web-component.d.ts +3 -0
- package/es/components/step-indicator/StepIndicatorItem-v1.d.ts +3 -0
- package/es/components/step-indicator/StepIndicatorList.d.ts +7 -0
- package/es/components/step-indicator/StepIndicatorModal.d.ts +9 -0
- package/es/components/step-indicator/StepIndicatorProps.d.ts +65 -0
- package/es/components/step-indicator/index.d.ts +3 -8
- package/es/components/step-indicator/style/index.d.ts +1 -6
- package/es/components/step-indicator/style/themes/ui.d.ts +1 -0
- package/es/components/step-indicator/style.d.ts +1 -0
- package/es/components/step-indicator/web-component.d.ts +3 -0
- package/es/components/style/index.d.ts +1 -6
- package/es/components/switch/index.d.ts +3 -8
- package/es/components/switch/style/index.d.ts +1 -6
- package/es/components/switch/style/themes/ui.d.ts +1 -0
- package/es/components/switch/style.d.ts +1 -0
- package/es/components/switch/web-component.d.ts +3 -0
- package/es/components/tabs/index.d.ts +3 -8
- package/es/components/tabs/style/index.d.ts +1 -6
- package/es/components/tabs/style/themes/ui.d.ts +1 -0
- package/es/components/tabs/style.d.ts +1 -0
- package/es/components/tabs/web-component.d.ts +3 -0
- package/es/components/tag/Tag.d.ts +61 -0
- package/es/components/tag/TagContext.d.ts +2 -0
- package/es/components/tag/TagGroup.d.ts +26 -0
- package/es/components/tag/index.d.ts +3 -8
- package/es/components/tag/style/index.d.ts +1 -6
- package/es/components/tag/style.d.ts +1 -0
- package/es/components/textarea/index.d.ts +1 -6
- package/es/components/textarea/style/index.d.ts +1 -6
- package/es/components/textarea/style/themes/ui.d.ts +1 -0
- package/es/components/textarea/style.d.ts +1 -0
- package/es/components/textarea/web-component.d.ts +3 -0
- package/es/components/timeline/Timeline.d.ts +38 -0
- package/es/components/timeline/TimelineItem.d.ts +39 -0
- package/es/components/timeline/index.d.ts +3 -8
- package/es/components/timeline/style/index.d.ts +1 -6
- package/es/components/timeline/style/themes/ui.d.ts +1 -0
- package/es/components/timeline/style.d.ts +1 -0
- package/es/components/toggle-button/ToggleButtonGroupContext.d.ts +3 -0
- package/es/components/toggle-button/group/web-component.d.ts +3 -0
- package/es/components/toggle-button/index.d.ts +3 -8
- package/es/components/toggle-button/style/index.d.ts +1 -6
- package/es/components/toggle-button/style/themes/ui.d.ts +1 -0
- package/es/components/toggle-button/style.d.ts +1 -0
- package/es/components/toggle-button/web-component.d.ts +3 -0
- package/es/components/tooltip/TooltipHelpers.d.ts +1 -0
- package/es/components/tooltip/index.d.ts +3 -8
- package/es/components/tooltip/style/index.d.ts +1 -6
- package/es/components/tooltip/style/themes/ui.d.ts +1 -0
- package/es/components/tooltip/style.d.ts +1 -0
- package/es/components/tooltip/web-component.d.ts +3 -0
- package/es/components/visually-hidden/VisuallyHidden.d.ts +31 -0
- package/es/components/visually-hidden/index.d.ts +3 -8
- package/es/components/visually-hidden/style/index.d.ts +1 -6
- package/es/components/visually-hidden/style.d.ts +1 -0
- package/es/components/vue.d.ts +6 -0
- package/es/components/web-components.d.ts +1 -0
- package/es/elements/Ingress.d.ts +5 -0
- package/es/elements/Link.d.ts +2 -0
- package/es/elements/Paragraph.d.ts +5 -0
- package/es/elements/index.d.ts +30 -74
- package/es/elements/lib.d.ts +71 -0
- package/es/esm/dnb-ui-basis.d.ts +1 -0
- package/es/esm/dnb-ui-components.d.ts +1 -0
- package/es/esm/dnb-ui-elements.d.ts +1 -0
- package/es/esm/dnb-ui-extensions.d.ts +1 -0
- package/es/esm/dnb-ui-icons-archive.d.ts +1 -0
- package/es/esm/dnb-ui-icons.d.ts +2 -0
- package/es/esm/dnb-ui-lib.d.ts +2 -0
- package/es/esm/dnb-ui-web-components.d.ts +1 -0
- package/es/extensions/index.d.ts +2 -16
- package/es/extensions/lib.d.ts +6 -0
- package/es/extensions/payment-card/icons/index.d.ts +15 -98
- package/es/extensions/payment-card/index.d.ts +3 -8
- package/es/extensions/payment-card/style/index.d.ts +1 -6
- package/es/extensions/payment-card/style/themes/ui.d.ts +1 -0
- package/es/extensions/payment-card/style.d.ts +1 -0
- package/es/extensions/payment-card/utils/CardDesigns.d.ts +242 -0
- package/es/extensions/payment-card/utils/Types.d.ts +91 -0
- package/es/extensions/payment-card/utils/cardProducts.d.ts +18 -0
- package/es/extensions/payment-card/web-component.d.ts +3 -0
- package/es/extensions/style/index.d.ts +1 -6
- package/es/extensions/vue.d.ts +6 -0
- package/es/extensions/web-components.d.ts +1 -0
- package/es/fragments/DrawerList.d.ts +3 -14
- package/es/fragments/ScrollView.d.ts +3 -14
- package/es/fragments/drawer-list/DrawerListContext.d.ts +3 -0
- package/es/fragments/drawer-list/DrawerListHelpers.d.ts +141 -0
- package/es/fragments/drawer-list/index.d.ts +3 -8
- package/es/fragments/drawer-list/style/index.d.ts +1 -6
- package/es/fragments/drawer-list/style/themes/ui.d.ts +1 -0
- package/es/fragments/drawer-list/style.d.ts +1 -0
- package/es/fragments/drawer-list/web-component.d.ts +3 -0
- package/es/fragments/index.d.ts +3 -17
- package/es/fragments/lib.d.ts +12 -0
- package/es/fragments/scroll-view/ScrollView.d.ts +14 -0
- package/es/fragments/scroll-view/index.d.ts +3 -8
- package/es/fragments/scroll-view/style/index.d.ts +1 -6
- package/es/fragments/scroll-view/style/themes/ui.d.ts +1 -0
- package/es/fragments/scroll-view/style.d.ts +1 -0
- package/es/fragments/scroll-view/web-component.d.ts +3 -0
- package/es/icons/above_the_line.d.ts +2 -0
- package/es/icons/above_the_line_medium.d.ts +2 -0
- package/es/icons/account.d.ts +2 -0
- package/es/icons/account_card.d.ts +2 -0
- package/es/icons/account_card_medium.d.ts +2 -0
- package/es/icons/account_in.d.ts +2 -0
- package/es/icons/account_in_medium.d.ts +2 -0
- package/es/icons/account_medium.d.ts +2 -0
- package/es/icons/account_out.d.ts +2 -0
- package/es/icons/account_out_medium.d.ts +2 -0
- package/es/icons/account_percent.d.ts +2 -0
- package/es/icons/add.d.ts +2 -0
- package/es/icons/add_circled.d.ts +2 -0
- package/es/icons/add_circled_medium.d.ts +2 -0
- package/es/icons/add_medium.d.ts +2 -0
- package/es/icons/ainvoice.d.ts +2 -0
- package/es/icons/ainvoice_medium.d.ts +2 -0
- package/es/icons/ambulance.d.ts +2 -0
- package/es/icons/ambulance_medium.d.ts +2 -0
- package/es/icons/animal_print.d.ts +2 -0
- package/es/icons/animal_print_medium.d.ts +2 -0
- package/es/icons/apple_watch.d.ts +2 -0
- package/es/icons/apple_watch_medium.d.ts +2 -0
- package/es/icons/arrow_down.d.ts +2 -0
- package/es/icons/arrow_down_medium.d.ts +2 -0
- package/es/icons/arrow_left.d.ts +2 -0
- package/es/icons/arrow_left_medium.d.ts +2 -0
- package/es/icons/arrow_right.d.ts +2 -0
- package/es/icons/arrow_right_medium.d.ts +2 -0
- package/es/icons/arrow_up.d.ts +2 -0
- package/es/icons/arrow_up_medium.d.ts +2 -0
- package/es/icons/attachment.d.ts +2 -0
- package/es/icons/attachment_medium.d.ts +2 -0
- package/es/icons/baby.d.ts +2 -0
- package/es/icons/baby_medium.d.ts +2 -0
- package/es/icons/bandage.d.ts +2 -0
- package/es/icons/bandage_medium.d.ts +2 -0
- package/es/icons/bank.d.ts +2 -0
- package/es/icons/bank_medium.d.ts +2 -0
- package/es/icons/bankid.d.ts +2 -0
- package/es/icons/bankid_medium.d.ts +2 -0
- package/es/icons/bankid_mobile.d.ts +2 -0
- package/es/icons/bankid_mobile_medium.d.ts +2 -0
- package/es/icons/bankid_qr.d.ts +2 -0
- package/es/icons/bankid_qr_medium.d.ts +2 -0
- package/es/icons/bell.d.ts +2 -0
- package/es/icons/bell_medium.d.ts +2 -0
- package/es/icons/bicycle.d.ts +2 -0
- package/es/icons/bicycle_medium.d.ts +2 -0
- package/es/icons/boat.d.ts +2 -0
- package/es/icons/boat_medium.d.ts +2 -0
- package/es/icons/bowling.d.ts +2 -0
- package/es/icons/bowling_medium.d.ts +2 -0
- package/es/icons/brickwall.d.ts +2 -0
- package/es/icons/brickwall_medium.d.ts +2 -0
- package/es/icons/broken_chain.d.ts +2 -0
- package/es/icons/broken_chain_medium.d.ts +2 -0
- package/es/icons/brush.d.ts +2 -0
- package/es/icons/brush_medium.d.ts +2 -0
- package/es/icons/bsu.d.ts +2 -0
- package/es/icons/bsu_medium.d.ts +2 -0
- package/es/icons/bubble.d.ts +2 -0
- package/es/icons/bubble_medium.d.ts +2 -0
- package/es/icons/building_construction.d.ts +2 -0
- package/es/icons/building_construction_medium.d.ts +2 -0
- package/es/icons/calculator.d.ts +2 -0
- package/es/icons/calculator_medium.d.ts +2 -0
- package/es/icons/calendar.d.ts +2 -0
- package/es/icons/calendar_medium.d.ts +2 -0
- package/es/icons/camera.d.ts +2 -0
- package/es/icons/camera_medium.d.ts +2 -0
- package/es/icons/camper_trailer.d.ts +2 -0
- package/es/icons/camper_trailer_medium.d.ts +2 -0
- package/es/icons/car_1.d.ts +2 -0
- package/es/icons/car_1_medium.d.ts +2 -0
- package/es/icons/car_2.d.ts +2 -0
- package/es/icons/car_2_medium.d.ts +2 -0
- package/es/icons/caravan.d.ts +2 -0
- package/es/icons/caravan_medium.d.ts +2 -0
- package/es/icons/card.d.ts +2 -0
- package/es/icons/card_in.d.ts +2 -0
- package/es/icons/card_in_medium.d.ts +2 -0
- package/es/icons/card_medium.d.ts +2 -0
- package/es/icons/card_out.d.ts +2 -0
- package/es/icons/card_out_medium.d.ts +2 -0
- package/es/icons/card_with_padlock.d.ts +2 -0
- package/es/icons/card_with_padlock_medium.d.ts +2 -0
- package/es/icons/cat.d.ts +2 -0
- package/es/icons/cat_medium.d.ts +2 -0
- package/es/icons/chain.d.ts +2 -0
- package/es/icons/chain_medium.d.ts +2 -0
- package/es/icons/charger.d.ts +2 -0
- package/es/icons/charger_medium.d.ts +2 -0
- package/es/icons/chat.d.ts +2 -0
- package/es/icons/chat_medium.d.ts +2 -0
- package/es/icons/chatbot.d.ts +2 -0
- package/es/icons/chatbot_medium.d.ts +2 -0
- package/es/icons/check.d.ts +2 -0
- package/es/icons/check_medium.d.ts +2 -0
- package/es/icons/chevron_down.d.ts +2 -0
- package/es/icons/chevron_down_medium.d.ts +2 -0
- package/es/icons/chevron_left.d.ts +2 -0
- package/es/icons/chevron_left_medium.d.ts +2 -0
- package/es/icons/chevron_right.d.ts +2 -0
- package/es/icons/chevron_right_medium.d.ts +2 -0
- package/es/icons/chevron_up.d.ts +2 -0
- package/es/icons/chevron_up_medium.d.ts +2 -0
- package/es/icons/chip.d.ts +2 -0
- package/es/icons/chip_medium.d.ts +2 -0
- package/es/icons/clock.d.ts +2 -0
- package/es/icons/clock_medium.d.ts +2 -0
- package/es/icons/close.d.ts +2 -0
- package/es/icons/close_medium.d.ts +2 -0
- package/es/icons/cloud.d.ts +2 -0
- package/es/icons/cloud_download.d.ts +2 -0
- package/es/icons/cloud_download_medium.d.ts +2 -0
- package/es/icons/cloud_medium.d.ts +2 -0
- package/es/icons/cloud_rain.d.ts +2 -0
- package/es/icons/cloud_rain_medium.d.ts +2 -0
- package/es/icons/cloud_sync.d.ts +2 -0
- package/es/icons/cloud_sync_medium.d.ts +2 -0
- package/es/icons/cloud_transfer.d.ts +2 -0
- package/es/icons/cloud_transfer_medium.d.ts +2 -0
- package/es/icons/cloud_upload.d.ts +2 -0
- package/es/icons/cloud_upload_medium.d.ts +2 -0
- package/es/icons/cog.d.ts +2 -0
- package/es/icons/cog_medium.d.ts +2 -0
- package/es/icons/coins_1.d.ts +2 -0
- package/es/icons/coins_1_medium.d.ts +2 -0
- package/es/icons/coins_2.d.ts +2 -0
- package/es/icons/coins_2_medium.d.ts +2 -0
- package/es/icons/coins_3.d.ts +2 -0
- package/es/icons/coins_3_medium.d.ts +2 -0
- package/es/icons/compose.d.ts +2 -0
- package/es/icons/compose_medium.d.ts +2 -0
- package/es/icons/confetti.d.ts +2 -0
- package/es/icons/confetti_medium.d.ts +2 -0
- package/es/icons/contacts.d.ts +2 -0
- package/es/icons/contacts_medium.d.ts +2 -0
- package/es/icons/cookie.d.ts +2 -0
- package/es/icons/cookie_medium.d.ts +2 -0
- package/es/icons/copy.d.ts +2 -0
- package/es/icons/copy_medium.d.ts +2 -0
- package/es/icons/credit_note.d.ts +2 -0
- package/es/icons/credit_note_medium.d.ts +2 -0
- package/es/icons/currency.d.ts +2 -0
- package/es/icons/currency_medium.d.ts +2 -0
- package/es/icons/customer_service.d.ts +2 -0
- package/es/icons/customer_service_medium.d.ts +2 -0
- package/es/icons/deleted_invoice.d.ts +2 -0
- package/es/icons/deleted_invoice_medium.d.ts +2 -0
- package/es/icons/diamond.d.ts +2 -0
- package/es/icons/diamond_medium.d.ts +2 -0
- package/es/icons/digipass.d.ts +2 -0
- package/es/icons/digipass_medium.d.ts +2 -0
- package/es/icons/digipost.d.ts +2 -0
- package/es/icons/digipost_medium.d.ts +2 -0
- package/es/icons/dismiss_keyboard.d.ts +2 -0
- package/es/icons/dismiss_keyboard_medium.d.ts +2 -0
- package/es/icons/document.d.ts +2 -0
- package/es/icons/document_add.d.ts +2 -0
- package/es/icons/document_add_medium.d.ts +2 -0
- package/es/icons/document_contract.d.ts +2 -0
- package/es/icons/document_contract_medium.d.ts +2 -0
- package/es/icons/document_csv.d.ts +2 -0
- package/es/icons/document_csv_medium.d.ts +2 -0
- package/es/icons/document_loupe.d.ts +2 -0
- package/es/icons/document_loupe_medium.d.ts +2 -0
- package/es/icons/document_medium.d.ts +2 -0
- package/es/icons/document_pdf.d.ts +2 -0
- package/es/icons/document_pdf_medium.d.ts +2 -0
- package/es/icons/document_rejected.d.ts +2 -0
- package/es/icons/document_rejected_medium.d.ts +2 -0
- package/es/icons/document_signing.d.ts +2 -0
- package/es/icons/document_signing_medium.d.ts +2 -0
- package/es/icons/document_txt.d.ts +2 -0
- package/es/icons/document_txt_medium.d.ts +2 -0
- package/es/icons/document_warning.d.ts +2 -0
- package/es/icons/document_warning_medium.d.ts +2 -0
- package/es/icons/document_word.d.ts +2 -0
- package/es/icons/document_word_medium.d.ts +2 -0
- package/es/icons/document_xls.d.ts +2 -0
- package/es/icons/document_xls_medium.d.ts +2 -0
- package/es/icons/dog.d.ts +2 -0
- package/es/icons/dog_medium.d.ts +2 -0
- package/es/icons/download.d.ts +2 -0
- package/es/icons/download_medium.d.ts +2 -0
- package/es/icons/edit.d.ts +2 -0
- package/es/icons/edit_medium.d.ts +2 -0
- package/es/icons/einvoice.d.ts +2 -0
- package/es/icons/einvoice_medium.d.ts +2 -0
- package/es/icons/email.d.ts +2 -0
- package/es/icons/email_medium.d.ts +2 -0
- package/es/icons/equities_and_mutual_funds.d.ts +2 -0
- package/es/icons/equities_and_mutual_funds_medium.d.ts +2 -0
- package/es/icons/exclamation.d.ts +2 -0
- package/es/icons/exclamation_circled.d.ts +2 -0
- package/es/icons/exclamation_circled_medium.d.ts +2 -0
- package/es/icons/exclamation_medium.d.ts +2 -0
- package/es/icons/exclamation_triangle.d.ts +2 -0
- package/es/icons/exclamation_triangle_medium.d.ts +2 -0
- package/es/icons/facebook.d.ts +2 -0
- package/es/icons/facebook_medium.d.ts +2 -0
- package/es/icons/factory.d.ts +2 -0
- package/es/icons/factory_medium.d.ts +2 -0
- package/es/icons/file.d.ts +2 -0
- package/es/icons/file_add.d.ts +2 -0
- package/es/icons/file_add_medium.d.ts +2 -0
- package/es/icons/file_contract.d.ts +2 -0
- package/es/icons/file_contract_medium.d.ts +2 -0
- package/es/icons/file_csv.d.ts +2 -0
- package/es/icons/file_csv_medium.d.ts +2 -0
- package/es/icons/file_loupe.d.ts +2 -0
- package/es/icons/file_loupe_medium.d.ts +2 -0
- package/es/icons/file_medium.d.ts +2 -0
- package/es/icons/file_pdf.d.ts +2 -0
- package/es/icons/file_pdf_medium.d.ts +2 -0
- package/es/icons/file_ppt.d.ts +2 -0
- package/es/icons/file_ppt_medium.d.ts +2 -0
- package/es/icons/file_rejected.d.ts +2 -0
- package/es/icons/file_rejected_medium.d.ts +2 -0
- package/es/icons/file_signing.d.ts +2 -0
- package/es/icons/file_signing_medium.d.ts +2 -0
- package/es/icons/file_txt.d.ts +2 -0
- package/es/icons/file_txt_medium.d.ts +2 -0
- package/es/icons/file_warning.d.ts +2 -0
- package/es/icons/file_warning_medium.d.ts +2 -0
- package/es/icons/file_word.d.ts +2 -0
- package/es/icons/file_word_medium.d.ts +2 -0
- package/es/icons/file_xls.d.ts +2 -0
- package/es/icons/file_xls_medium.d.ts +2 -0
- package/es/icons/file_xml.d.ts +2 -0
- package/es/icons/file_xml_medium.d.ts +2 -0
- package/es/icons/filter.d.ts +2 -0
- package/es/icons/filter_medium.d.ts +2 -0
- package/es/icons/first_aid.d.ts +2 -0
- package/es/icons/first_aid_medium.d.ts +2 -0
- package/es/icons/flying_money.d.ts +2 -0
- package/es/icons/flying_money_medium.d.ts +2 -0
- package/es/icons/folder.d.ts +2 -0
- package/es/icons/folder_medium.d.ts +2 -0
- package/es/icons/fridge.d.ts +2 -0
- package/es/icons/fridge_medium.d.ts +2 -0
- package/es/icons/fullscreen.d.ts +2 -0
- package/es/icons/fullscreen_medium.d.ts +2 -0
- package/es/icons/fund_in.d.ts +2 -0
- package/es/icons/fund_out.d.ts +2 -0
- package/es/icons/funds.d.ts +2 -0
- package/es/icons/funds_in.d.ts +2 -0
- package/es/icons/funds_in_medium.d.ts +2 -0
- package/es/icons/funds_medium.d.ts +2 -0
- package/es/icons/funds_out.d.ts +2 -0
- package/es/icons/funds_out_medium.d.ts +2 -0
- package/es/icons/globe.d.ts +2 -0
- package/es/icons/globe_medium.d.ts +2 -0
- package/es/icons/grabber.d.ts +2 -0
- package/es/icons/grabber_medium.d.ts +2 -0
- package/es/icons/graph_decrease.d.ts +2 -0
- package/es/icons/graph_decrease_medium.d.ts +2 -0
- package/es/icons/graph_increase.d.ts +2 -0
- package/es/icons/graph_increase_medium.d.ts +2 -0
- package/es/icons/hamburger.d.ts +2 -0
- package/es/icons/hamburger_medium.d.ts +2 -0
- package/es/icons/hand_money.d.ts +2 -0
- package/es/icons/hand_money_medium.d.ts +2 -0
- package/es/icons/hanger.d.ts +2 -0
- package/es/icons/hanger_medium.d.ts +2 -0
- package/es/icons/heart.d.ts +2 -0
- package/es/icons/heart_medium.d.ts +2 -0
- package/es/icons/heart_rate.d.ts +2 -0
- package/es/icons/heart_rate_medium.d.ts +2 -0
- package/es/icons/hide.d.ts +2 -0
- package/es/icons/hide_medium.d.ts +2 -0
- package/es/icons/history.d.ts +2 -0
- package/es/icons/history_medium.d.ts +2 -0
- package/es/icons/home.d.ts +2 -0
- package/es/icons/home_medium.d.ts +2 -0
- package/es/icons/horse.d.ts +2 -0
- package/es/icons/horse_medium.d.ts +2 -0
- package/es/icons/hourglass.d.ts +2 -0
- package/es/icons/hourglass_medium.d.ts +2 -0
- package/es/icons/house_1.d.ts +2 -0
- package/es/icons/house_1_medium.d.ts +2 -0
- package/es/icons/house_2.d.ts +2 -0
- package/es/icons/house_2_medium.d.ts +2 -0
- package/es/icons/house_value.d.ts +2 -0
- package/es/icons/house_value_medium.d.ts +2 -0
- package/es/icons/index.d.ts +501 -1005
- package/es/icons/information.d.ts +2 -0
- package/es/icons/information_bubble.d.ts +2 -0
- package/es/icons/information_bubble_medium.d.ts +2 -0
- package/es/icons/information_circled.d.ts +2 -0
- package/es/icons/information_circled_medium.d.ts +2 -0
- package/es/icons/information_medium.d.ts +2 -0
- package/es/icons/instagram.d.ts +2 -0
- package/es/icons/instagram_medium.d.ts +2 -0
- package/es/icons/insurance.d.ts +2 -0
- package/es/icons/insurance_medium.d.ts +2 -0
- package/es/icons/kid_number.d.ts +2 -0
- package/es/icons/kid_number_medium.d.ts +2 -0
- package/es/icons/language.d.ts +2 -0
- package/es/icons/language_medium.d.ts +2 -0
- package/es/icons/launch.d.ts +2 -0
- package/es/icons/launch_medium.d.ts +2 -0
- package/es/icons/leaf.d.ts +2 -0
- package/es/icons/leaf_medium.d.ts +2 -0
- package/es/icons/lightbulb.d.ts +2 -0
- package/es/icons/lightbulb_medium.d.ts +2 -0
- package/es/icons/linkedin.d.ts +2 -0
- package/es/icons/linkedin_medium.d.ts +2 -0
- package/es/icons/list.d.ts +2 -0
- package/es/icons/list_medium.d.ts +2 -0
- package/es/icons/loan.d.ts +2 -0
- package/es/icons/loan_in.d.ts +2 -0
- package/es/icons/loan_in_medium.d.ts +2 -0
- package/es/icons/loan_medium.d.ts +2 -0
- package/es/icons/loan_out.d.ts +2 -0
- package/es/icons/loan_out_medium.d.ts +2 -0
- package/es/icons/location.d.ts +2 -0
- package/es/icons/location_medium.d.ts +2 -0
- package/es/icons/log_in.d.ts +2 -0
- package/es/icons/log_in_medium.d.ts +2 -0
- package/es/icons/log_out.d.ts +2 -0
- package/es/icons/log_out_medium.d.ts +2 -0
- package/es/icons/loupe.d.ts +2 -0
- package/es/icons/loupe_medium.d.ts +2 -0
- package/es/icons/mastercard.d.ts +2 -0
- package/es/icons/mastercard_card.d.ts +2 -0
- package/es/icons/mastercard_card_medium.d.ts +2 -0
- package/es/icons/mastercard_medium.d.ts +2 -0
- package/es/icons/megaphone.d.ts +2 -0
- package/es/icons/megaphone_medium.d.ts +2 -0
- package/es/icons/microphone.d.ts +2 -0
- package/es/icons/microphone_medium.d.ts +2 -0
- package/es/icons/minimize.d.ts +2 -0
- package/es/icons/minimize_medium.d.ts +2 -0
- package/es/icons/mobilephone.d.ts +2 -0
- package/es/icons/mobilephone_medium.d.ts +2 -0
- package/es/icons/more.d.ts +2 -0
- package/es/icons/more_medium.d.ts +2 -0
- package/es/icons/more_vertical.d.ts +2 -0
- package/es/icons/more_vertical_medium.d.ts +2 -0
- package/es/icons/motorcycle.d.ts +2 -0
- package/es/icons/motorcycle_medium.d.ts +2 -0
- package/es/icons/move.d.ts +2 -0
- package/es/icons/move_medium.d.ts +2 -0
- package/es/icons/office_buildings.d.ts +2 -0
- package/es/icons/office_buildings_medium.d.ts +2 -0
- package/es/icons/oil.d.ts +2 -0
- package/es/icons/oil_medium.d.ts +2 -0
- package/es/icons/owl.d.ts +2 -0
- package/es/icons/owl_medium.d.ts +2 -0
- package/es/icons/padlock.d.ts +2 -0
- package/es/icons/padlock_medium.d.ts +2 -0
- package/es/icons/paperclip.d.ts +2 -0
- package/es/icons/paperclip_medium.d.ts +2 -0
- package/es/icons/paragraph.d.ts +2 -0
- package/es/icons/paragraph_medium.d.ts +2 -0
- package/es/icons/pause.d.ts +2 -0
- package/es/icons/pause_medium.d.ts +2 -0
- package/es/icons/pay_from.d.ts +2 -0
- package/es/icons/pay_from_medium.d.ts +2 -0
- package/es/icons/pension.d.ts +2 -0
- package/es/icons/pension_medium.d.ts +2 -0
- package/es/icons/people_1.d.ts +2 -0
- package/es/icons/people_1_medium.d.ts +2 -0
- package/es/icons/people_2.d.ts +2 -0
- package/es/icons/people_2_medium.d.ts +2 -0
- package/es/icons/person.d.ts +2 -0
- package/es/icons/person_medium.d.ts +2 -0
- package/es/icons/person_shield.d.ts +2 -0
- package/es/icons/person_shield_medium.d.ts +2 -0
- package/es/icons/phone.d.ts +2 -0
- package/es/icons/phone_medium.d.ts +2 -0
- package/es/icons/photo.d.ts +2 -0
- package/es/icons/photo_medium.d.ts +2 -0
- package/es/icons/pin.d.ts +2 -0
- package/es/icons/pin_code.d.ts +2 -0
- package/es/icons/pin_code_medium.d.ts +2 -0
- package/es/icons/pin_medium.d.ts +2 -0
- package/es/icons/plant.d.ts +2 -0
- package/es/icons/plant_medium.d.ts +2 -0
- package/es/icons/play.d.ts +2 -0
- package/es/icons/play_medium.d.ts +2 -0
- package/es/icons/primary_icons.d.ts +23 -0
- package/es/icons/primary_icons_medium.d.ts +23 -0
- package/es/icons/printer.d.ts +2 -0
- package/es/icons/printer_medium.d.ts +2 -0
- package/es/icons/products_account_percent_medium.d.ts +2 -0
- package/es/icons/profile.d.ts +2 -0
- package/es/icons/profile_medium.d.ts +2 -0
- package/es/icons/progress.d.ts +2 -0
- package/es/icons/progress_medium.d.ts +2 -0
- package/es/icons/question.d.ts +2 -0
- package/es/icons/question_circled.d.ts +2 -0
- package/es/icons/question_circled_medium.d.ts +2 -0
- package/es/icons/question_medium.d.ts +2 -0
- package/es/icons/recurring.d.ts +2 -0
- package/es/icons/recurring_medium.d.ts +2 -0
- package/es/icons/redo.d.ts +2 -0
- package/es/icons/redo_medium.d.ts +2 -0
- package/es/icons/ref_number.d.ts +2 -0
- package/es/icons/ref_number_medium.d.ts +2 -0
- package/es/icons/refresh.d.ts +2 -0
- package/es/icons/refresh_medium.d.ts +2 -0
- package/es/icons/reply.d.ts +2 -0
- package/es/icons/reply_medium.d.ts +2 -0
- package/es/icons/reset.d.ts +2 -0
- package/es/icons/reset_medium.d.ts +2 -0
- package/es/icons/restaurant.d.ts +2 -0
- package/es/icons/restaurant_medium.d.ts +2 -0
- package/es/icons/return_1.d.ts +2 -0
- package/es/icons/return_1_medium.d.ts +2 -0
- package/es/icons/save.d.ts +2 -0
- package/es/icons/save_medium.d.ts +2 -0
- package/es/icons/savings_account.d.ts +2 -0
- package/es/icons/savings_account_in.d.ts +2 -0
- package/es/icons/savings_account_in_medium.d.ts +2 -0
- package/es/icons/savings_account_medium.d.ts +2 -0
- package/es/icons/savings_account_out.d.ts +2 -0
- package/es/icons/savings_account_out_medium.d.ts +2 -0
- package/es/icons/scissors.d.ts +2 -0
- package/es/icons/scissors_medium.d.ts +2 -0
- package/es/icons/scooter.d.ts +2 -0
- package/es/icons/scooter_medium.d.ts +2 -0
- package/es/icons/secondary_icons.d.ts +216 -0
- package/es/icons/secondary_icons_medium.d.ts +216 -0
- package/es/icons/send.d.ts +2 -0
- package/es/icons/send_medium.d.ts +2 -0
- package/es/icons/share_android.d.ts +2 -0
- package/es/icons/share_android_medium.d.ts +2 -0
- package/es/icons/share_ios.d.ts +2 -0
- package/es/icons/share_ios_medium.d.ts +2 -0
- package/es/icons/shield.d.ts +2 -0
- package/es/icons/shield_medium.d.ts +2 -0
- package/es/icons/shopping_cart.d.ts +2 -0
- package/es/icons/shopping_cart_medium.d.ts +2 -0
- package/es/icons/snowmobile.d.ts +2 -0
- package/es/icons/snowmobile_medium.d.ts +2 -0
- package/es/icons/speedometer.d.ts +2 -0
- package/es/icons/speedometer_medium.d.ts +2 -0
- package/es/icons/split.d.ts +2 -0
- package/es/icons/split_medium.d.ts +2 -0
- package/es/icons/star.d.ts +2 -0
- package/es/icons/star_medium.d.ts +2 -0
- package/es/icons/stocks.d.ts +2 -0
- package/es/icons/stocks_medium.d.ts +2 -0
- package/es/icons/stop.d.ts +2 -0
- package/es/icons/stop_medium.d.ts +2 -0
- package/es/icons/stopwatch.d.ts +2 -0
- package/es/icons/stopwatch_medium.d.ts +2 -0
- package/es/icons/subtract.d.ts +2 -0
- package/es/icons/subtract_circled.d.ts +2 -0
- package/es/icons/subtract_circled_medium.d.ts +2 -0
- package/es/icons/subtract_medium.d.ts +2 -0
- package/es/icons/support.d.ts +2 -0
- package/es/icons/support_medium.d.ts +2 -0
- package/es/icons/swap.d.ts +2 -0
- package/es/icons/swap_medium.d.ts +2 -0
- package/es/icons/tag.d.ts +2 -0
- package/es/icons/tag_medium.d.ts +2 -0
- package/es/icons/thumbs_down.d.ts +2 -0
- package/es/icons/thumbs_down_medium.d.ts +2 -0
- package/es/icons/thumbs_up.d.ts +2 -0
- package/es/icons/thumbs_up_medium.d.ts +2 -0
- package/es/icons/tractor.d.ts +2 -0
- package/es/icons/tractor_medium.d.ts +2 -0
- package/es/icons/trailer.d.ts +2 -0
- package/es/icons/trailer_medium.d.ts +2 -0
- package/es/icons/train.d.ts +2 -0
- package/es/icons/train_medium.d.ts +2 -0
- package/es/icons/transfer.d.ts +2 -0
- package/es/icons/transfer_medium.d.ts +2 -0
- package/es/icons/transfer_to.d.ts +2 -0
- package/es/icons/transfer_to_medium.d.ts +2 -0
- package/es/icons/trash.d.ts +2 -0
- package/es/icons/trash_medium.d.ts +2 -0
- package/es/icons/travel.d.ts +2 -0
- package/es/icons/travel_medium.d.ts +2 -0
- package/es/icons/undo.d.ts +2 -0
- package/es/icons/undo_medium.d.ts +2 -0
- package/es/icons/upload.d.ts +2 -0
- package/es/icons/upload_medium.d.ts +2 -0
- package/es/icons/video.d.ts +2 -0
- package/es/icons/video_medium.d.ts +2 -0
- package/es/icons/view.d.ts +2 -0
- package/es/icons/view_medium.d.ts +2 -0
- package/es/icons/vintage_car.d.ts +2 -0
- package/es/icons/vintage_car_medium.d.ts +2 -0
- package/es/icons/volume_off.d.ts +2 -0
- package/es/icons/volume_off_medium.d.ts +2 -0
- package/es/icons/volume_on.d.ts +2 -0
- package/es/icons/volume_on_medium.d.ts +2 -0
- package/es/icons/wallet.d.ts +2 -0
- package/es/icons/wallet_medium.d.ts +2 -0
- package/es/icons/wearables.d.ts +2 -0
- package/es/icons/wearables_medium.d.ts +2 -0
- package/es/icons/web.d.ts +2 -0
- package/es/icons/web_medium.d.ts +2 -0
- package/es/icons/wheelchair.d.ts +2 -0
- package/es/icons/wheelchair_medium.d.ts +2 -0
- package/es/icons/widget_android.d.ts +2 -0
- package/es/icons/widget_android_medium.d.ts +2 -0
- package/es/icons/widget_ios.d.ts +2 -0
- package/es/icons/widget_ios_medium.d.ts +2 -0
- package/es/index.d.ts +74 -156
- package/es/index.js +3 -1
- package/es/lib.d.ts +3 -0
- package/es/shared/AnimateHeight.d.ts +45 -0
- package/es/shared/Context.d.ts +38 -0
- package/es/shared/Context.js +3 -1
- package/es/shared/Eufemia.d.ts +1 -0
- package/es/shared/Eufemia.js +1 -1
- package/es/shared/EventEmitter.d.ts +27 -0
- package/es/shared/MediaQueryUtils.d.ts +66 -0
- package/es/shared/SpacingHelper.d.ts +1 -0
- package/es/shared/component-helper.d.ts +60 -0
- package/es/shared/component-helper.js +8 -0
- package/es/shared/custom-element-polyfill.d.ts +25 -0
- package/es/shared/custom-element.d.ts +5 -0
- package/es/shared/defaults.d.ts +7 -0
- package/es/shared/error-helper.d.ts +15 -0
- package/es/shared/helpers/Suffix.d.ts +10 -7
- package/es/shared/helpers/Suffix.js +2 -10
- package/es/shared/helpers/withCamelCaseProps.d.ts +39 -0
- package/es/shared/helpers/withCamelCaseProps.js +14 -1
- package/es/shared/helpers.d.ts +44 -0
- package/es/shared/hooks/index.d.ts +1 -0
- package/es/shared/hooks/usePropsWithContext.d.ts +14 -0
- package/es/shared/index.d.ts +6 -12
- package/es/shared/interfaces.d.ts +10 -0
- package/es/shared/libs/HashSum.d.ts +1 -0
- package/es/shared/libs/MurmurHash2.d.ts +1 -0
- package/es/shared/libs/Shortcuts.d.ts +6 -0
- package/es/shared/locales/en-GB.d.ts +119 -0
- package/es/shared/locales/en-US.d.ts +120 -0
- package/es/shared/locales/index.d.ts +235 -5
- package/es/shared/locales/nb-NO.d.ts +119 -0
- package/es/shared/stories/translation/en.json +4 -0
- package/es/shared/stories/translation/nb.json +4 -0
- package/es/shared/useMediaQuery.d.ts +1 -0
- package/es/shared/useTranslation.d.ts +34 -0
- package/es/style/basis.d.ts +1 -0
- package/es/style/body.d.ts +1 -0
- package/es/style/components.d.ts +1 -0
- package/es/style/core.d.ts +1 -0
- package/es/style/dnb-ui-components.css +757 -614
- package/es/style/dnb-ui-components.min.css +2 -2
- package/es/style/dnb-ui-components.scss +2 -0
- package/es/style/elements.d.ts +1 -0
- package/es/style/extensions.d.ts +1 -0
- package/es/style/index.d.ts +1 -0
- package/es/style/properties.d.ts +81 -0
- package/es/style/tags.d.ts +1 -0
- package/es/style/theme.d.ts +1 -0
- package/es/style/themes/index.d.ts +1 -0
- package/es/style/themes/open-banking.d.ts +1 -0
- package/es/style/themes/theme-open-banking/dnb-theme-open-banking.css +51 -4
- package/es/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +2 -2
- package/es/style/themes/theme-ui/dnb-theme-ui.css +51 -4
- package/es/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
- package/es/style/themes/theme-ui/dnb-theme-ui.scss +2 -0
- package/es/style/themes/theme-ui/prism/dnb-prism-styles.d.ts +6 -0
- package/es/style/themes/theme-ui/prism/dnb-prism-theme.d.ts +29 -0
- package/es/style/themes/ui.d.ts +1 -0
- package/es/umd/dnb-ui-basis.d.ts +1 -0
- package/es/umd/dnb-ui-components.d.ts +1 -0
- package/es/umd/dnb-ui-elements.d.ts +1 -0
- package/es/umd/dnb-ui-extensions.d.ts +1 -0
- package/es/umd/dnb-ui-icons-archive.d.ts +1 -0
- package/es/umd/dnb-ui-icons.d.ts +2 -0
- package/es/umd/dnb-ui-lib.d.ts +2 -0
- package/es/umd/dnb-ui-web-components.d.ts +1 -0
- package/es/vue.d.ts +6 -0
- package/es/web-components.d.ts +1 -0
- package/esm/components/Accordion.d.ts +3 -14
- package/esm/components/Autocomplete.d.ts +3 -14
- package/esm/components/Avatar.d.ts +3 -14
- package/esm/components/Breadcrumb.d.ts +3 -14
- package/esm/components/Button.d.ts +3 -14
- package/esm/components/Checkbox.d.ts +3 -14
- package/esm/components/DatePicker.d.ts +3 -14
- package/esm/components/Dialog.d.ts +3 -0
- package/esm/components/Dialog.js +3 -0
- package/esm/components/Drawer.d.ts +3 -0
- package/esm/components/Drawer.js +3 -0
- package/esm/components/Dropdown.d.ts +3 -14
- package/esm/components/FormLabel.d.ts +3 -14
- package/esm/components/FormRow.d.ts +3 -14
- package/esm/components/FormSet.d.ts +3 -14
- package/esm/components/FormStatus.d.ts +3 -14
- package/esm/components/GlobalError.d.ts +3 -14
- package/esm/components/GlobalStatus.d.ts +3 -14
- package/esm/components/Heading.d.ts +3 -14
- package/esm/components/HelpButton.d.ts +3 -14
- package/esm/components/Icon.d.ts +3 -14
- package/esm/components/IconPrimary.d.ts +3 -14
- package/esm/components/InfoCard.d.ts +3 -14
- package/esm/components/Input.d.ts +3 -14
- package/esm/components/InputMasked.d.ts +3 -14
- package/esm/components/Logo.d.ts +3 -14
- package/esm/components/Modal.d.ts +3 -14
- package/esm/components/Number.d.ts +2 -8
- package/esm/components/NumberFormat.d.ts +3 -14
- package/esm/components/Pagination.d.ts +3 -14
- package/esm/components/ProgressIndicator.d.ts +3 -14
- package/esm/components/Radio.d.ts +3 -14
- package/esm/components/Section.d.ts +3 -14
- package/esm/components/Skeleton.d.ts +3 -14
- package/esm/components/Slider.d.ts +3 -14
- package/esm/components/Space.d.ts +3 -14
- package/esm/components/StepIndicator.d.ts +3 -14
- package/esm/components/Switch.d.ts +3 -14
- package/esm/components/Tabs.d.ts +3 -14
- package/esm/components/Tag.d.ts +3 -14
- package/esm/components/Textarea.d.ts +3 -14
- package/esm/components/Timeline.d.ts +3 -14
- package/esm/components/ToggleButton.d.ts +3 -14
- package/esm/components/Tooltip.d.ts +3 -14
- package/esm/components/VisuallyHidden.d.ts +3 -14
- package/esm/components/accordion/AccordionContext.d.ts +3 -0
- package/esm/components/accordion/AccordionPropTypes.d.ts +78 -0
- package/esm/components/accordion/AccordionProviderContext.d.ts +3 -0
- package/esm/components/accordion/group/web-component.d.ts +1 -0
- package/esm/components/accordion/index.d.ts +3 -8
- package/esm/components/accordion/style/index.d.ts +1 -6
- package/esm/components/accordion/style/themes/ui.d.ts +1 -0
- package/esm/components/accordion/style.d.ts +1 -0
- package/esm/components/accordion/web-component.d.ts +3 -0
- package/esm/components/autocomplete/index.d.ts +3 -8
- package/esm/components/autocomplete/style/index.d.ts +1 -6
- package/esm/components/autocomplete/style/themes/ui.d.ts +1 -0
- package/esm/components/autocomplete/style.d.ts +1 -0
- package/esm/components/autocomplete/web-component.d.ts +3 -0
- package/esm/components/avatar/Avatar.d.ts +65 -0
- package/esm/components/avatar/AvatarGroup.d.ts +58 -0
- package/esm/components/avatar/index.d.ts +3 -8
- package/esm/components/avatar/style/themes/ui.d.ts +1 -0
- package/esm/components/avatar/style.d.ts +1 -0
- package/esm/components/breadcrumb/Breadcrumb.d.ts +104 -0
- package/esm/components/breadcrumb/BreadcrumbItem.d.ts +37 -0
- package/esm/components/breadcrumb/index.d.ts +3 -8
- package/esm/components/breadcrumb/style/index.d.ts +1 -6
- package/esm/components/breadcrumb/style.d.ts +1 -0
- package/esm/components/button/Button.d.ts +3 -3
- package/esm/components/button/index.d.ts +3 -8
- package/esm/components/button/style/index.d.ts +1 -6
- package/esm/components/button/style/themes/ui.d.ts +1 -0
- package/esm/components/button/style.d.ts +1 -0
- package/esm/components/button/web-component.d.ts +3 -0
- package/esm/components/checkbox/index.d.ts +3 -8
- package/esm/components/checkbox/style/index.d.ts +1 -6
- package/esm/components/checkbox/style/themes/ui.d.ts +1 -0
- package/esm/components/checkbox/style.d.ts +1 -0
- package/esm/components/checkbox/web-component.d.ts +3 -0
- package/esm/components/date-picker/DatePickerCalc.d.ts +37 -0
- package/esm/components/date-picker/DatePickerContext.d.ts +3 -0
- package/esm/components/date-picker/index.d.ts +3 -8
- package/esm/components/date-picker/style/index.d.ts +1 -6
- package/esm/components/date-picker/style/themes/ui.d.ts +1 -0
- package/esm/components/date-picker/style.d.ts +1 -0
- package/esm/components/date-picker/web-component.d.ts +3 -0
- package/esm/components/dialog/Dialog.d.ts +12 -0
- package/esm/components/dialog/Dialog.js +117 -0
- package/esm/components/dialog/DialogContent.d.ts +7 -0
- package/esm/components/dialog/DialogContent.js +94 -0
- package/esm/components/dialog/index.d.ts +1 -0
- package/esm/components/dialog/index.js +3 -0
- package/esm/components/dialog/parts/DialogBody.d.ts +15 -0
- package/esm/components/dialog/parts/DialogBody.js +17 -0
- package/esm/components/dialog/parts/DialogHeader.d.ts +8 -0
- package/esm/components/dialog/parts/DialogHeader.js +20 -0
- package/esm/components/dialog/parts/DialogNavigation.d.ts +4 -0
- package/esm/components/dialog/parts/DialogNavigation.js +15 -0
- package/esm/components/dialog/style/_dialog.scss +188 -0
- package/esm/components/dialog/style/dnb-dialog.css +429 -0
- package/esm/components/dialog/style/dnb-dialog.min.css +1 -0
- package/esm/components/dialog/style/dnb-dialog.scss +15 -0
- package/esm/components/dialog/style/index.d.ts +1 -0
- package/esm/components/dialog/style/index.js +1 -0
- package/esm/components/dialog/style/themes/dnb-dialog-theme-ui.css +17 -0
- package/esm/components/dialog/style/themes/dnb-dialog-theme-ui.min.css +1 -0
- package/esm/components/dialog/style/themes/dnb-dialog-theme-ui.scss +17 -0
- package/esm/components/dialog/style/themes/ui.d.ts +1 -0
- package/esm/components/dialog/style/themes/ui.js +1 -0
- package/esm/components/dialog/style.d.ts +1 -0
- package/esm/components/dialog/style.js +1 -0
- package/esm/components/dialog/types.d.ts +60 -0
- package/esm/components/dialog/types.js +1 -0
- package/esm/components/drawer/Drawer.d.ts +12 -0
- package/esm/components/drawer/Drawer.js +120 -0
- package/esm/components/drawer/DrawerContent.d.ts +7 -0
- package/esm/components/drawer/DrawerContent.js +96 -0
- package/esm/components/drawer/helpers.d.ts +5 -0
- package/esm/components/drawer/helpers.js +26 -0
- package/esm/components/drawer/index.d.ts +3 -0
- package/esm/components/drawer/index.js +3 -0
- package/esm/components/drawer/parts/DrawerBody.d.ts +15 -0
- package/esm/components/drawer/parts/DrawerBody.js +17 -0
- package/esm/components/drawer/parts/DrawerHeader.d.ts +8 -0
- package/esm/components/drawer/parts/DrawerHeader.js +20 -0
- package/esm/components/drawer/parts/DrawerNavigation.d.ts +4 -0
- package/esm/components/drawer/parts/DrawerNavigation.js +16 -0
- package/esm/components/drawer/style/_drawer.scss +265 -0
- package/esm/components/drawer/style/dnb-drawer.css +515 -0
- package/esm/components/drawer/style/dnb-drawer.min.css +1 -0
- package/esm/components/drawer/style/dnb-drawer.scss +15 -0
- package/esm/components/drawer/style/index.d.ts +1 -0
- package/esm/components/drawer/style/index.js +1 -0
- package/esm/components/drawer/style/themes/dnb-drawer-theme-ui.css +17 -0
- package/esm/components/drawer/style/themes/dnb-drawer-theme-ui.min.css +1 -0
- package/esm/components/drawer/style/themes/dnb-drawer-theme-ui.scss +17 -0
- package/esm/components/drawer/style/themes/ui.d.ts +1 -0
- package/esm/components/drawer/style/themes/ui.js +1 -0
- package/esm/components/drawer/style.d.ts +1 -0
- package/esm/components/drawer/style.js +1 -0
- package/esm/components/drawer/types.d.ts +68 -0
- package/esm/components/drawer/types.js +1 -0
- package/esm/components/dropdown/index.d.ts +3 -8
- package/esm/components/dropdown/style/index.d.ts +1 -6
- package/esm/components/dropdown/style/themes/ui.d.ts +1 -0
- package/esm/components/dropdown/style.d.ts +1 -0
- package/esm/components/dropdown/web-component.d.ts +3 -0
- package/esm/components/form-label/index.d.ts +3 -8
- package/esm/components/form-label/style/index.d.ts +1 -6
- package/esm/components/form-label/style/themes/ui.d.ts +1 -0
- package/esm/components/form-label/style.d.ts +1 -0
- package/esm/components/form-label/web-component.d.ts +3 -0
- package/esm/components/form-row/index.d.ts +3 -8
- package/esm/components/form-row/style/index.d.ts +1 -6
- package/esm/components/form-row/style/themes/ui.d.ts +1 -0
- package/esm/components/form-row/style.d.ts +1 -0
- package/esm/components/form-row/web-component.d.ts +3 -0
- package/esm/components/form-set/index.d.ts +3 -8
- package/esm/components/form-set/style/index.d.ts +1 -6
- package/esm/components/form-set/style/themes/ui.d.ts +1 -0
- package/esm/components/form-set/style.d.ts +1 -0
- package/esm/components/form-set/web-component.d.ts +3 -0
- package/esm/components/form-status/index.d.ts +3 -8
- package/esm/components/form-status/style/index.d.ts +1 -6
- package/esm/components/form-status/style/themes/ui.d.ts +1 -0
- package/esm/components/form-status/style.d.ts +1 -0
- package/esm/components/form-status/web-component.d.ts +3 -0
- package/esm/components/global-error/index.d.ts +3 -8
- package/esm/components/global-error/style/index.d.ts +1 -6
- package/esm/components/global-error/style/themes/ui.d.ts +1 -0
- package/esm/components/global-error/style.d.ts +1 -0
- package/esm/components/global-error/web-component.d.ts +3 -0
- package/esm/components/global-status/AnimationHelper.d.ts +12 -0
- package/esm/components/global-status/GlobalStatusProvider.d.ts +34 -0
- package/esm/components/global-status/GlobalStatusProvider.js +148 -149
- package/esm/components/global-status/index.d.ts +3 -8
- package/esm/components/global-status/style/index.d.ts +1 -6
- package/esm/components/global-status/style/themes/ui.d.ts +1 -0
- package/esm/components/global-status/style.d.ts +1 -0
- package/esm/components/global-status/web-component.d.ts +3 -0
- package/esm/components/heading/HeadingContext.d.ts +5 -0
- package/esm/components/heading/HeadingCounter.d.ts +42 -0
- package/esm/components/heading/HeadingHelpers.d.ts +27 -0
- package/esm/components/heading/index.d.ts +3 -8
- package/esm/components/heading/style/index.d.ts +1 -6
- package/esm/components/heading/style.d.ts +1 -0
- package/esm/components/heading/web-component.d.ts +3 -0
- package/esm/components/help-button/index.d.ts +3 -8
- package/esm/components/help-button/style/index.d.ts +1 -6
- package/esm/components/help-button/style/themes/ui.d.ts +1 -0
- package/esm/components/help-button/style.d.ts +1 -0
- package/esm/components/help-button/web-component.d.ts +3 -0
- package/esm/components/icon/IconPrimary.d.ts +3 -0
- package/esm/components/icon/index.d.ts +3 -8
- package/esm/components/icon/lib/SvgComparison.d.ts +2 -0
- package/esm/components/icon/lib/index.d.ts +1 -5
- package/esm/components/icon/style/index.d.ts +1 -6
- package/esm/components/icon/style.d.ts +1 -0
- package/esm/components/icon/web-component.d.ts +3 -0
- package/esm/components/icon-primary/IconPrimary.d.ts +3 -3
- package/esm/components/icon-primary/index.d.ts +3 -8
- package/esm/components/icon-primary/style.d.ts +1 -0
- package/esm/components/icon-primary/web-component.d.ts +3 -0
- package/esm/components/index.d.ts +43 -96
- package/esm/components/index.js +3 -1
- package/esm/components/info-card/InfoCard.d.ts +101 -0
- package/esm/components/info-card/style.d.ts +1 -0
- package/esm/components/input/index.d.ts +1 -6
- package/esm/components/input/style/index.d.ts +1 -6
- package/esm/components/input/style/themes/ui.d.ts +1 -0
- package/esm/components/input/style.d.ts +1 -0
- package/esm/components/input/web-component.d.ts +3 -0
- package/esm/components/input-masked/InputMaskedContext.d.ts +3 -0
- package/esm/components/input-masked/InputMaskedElement.d.ts +1 -0
- package/esm/components/input-masked/InputMaskedHooks.d.ts +32 -0
- package/esm/components/input-masked/InputMaskedUtils.d.ts +37 -0
- package/esm/components/input-masked/addons/createNumberMask.d.ts +15 -0
- package/esm/components/input-masked/addons/emailMask.d.ts +7 -0
- package/esm/components/input-masked/addons/emailPipe.d.ts +1 -0
- package/esm/components/input-masked/index.d.ts +3 -8
- package/esm/components/input-masked/style/index.d.ts +1 -6
- package/esm/components/input-masked/style.d.ts +1 -0
- package/esm/components/input-masked/text-mask/adjustCaretPosition.d.ts +11 -0
- package/esm/components/input-masked/text-mask/conformToMask.d.ts +6 -0
- package/esm/components/input-masked/text-mask/constants.d.ts +2 -0
- package/esm/components/input-masked/text-mask/createTextMaskInputElement.d.ts +8 -0
- package/esm/components/input-masked/text-mask/utilities.d.ts +9 -0
- package/esm/components/input-masked/web-component.d.ts +3 -0
- package/esm/components/lib.d.ts +100 -0
- package/esm/components/lib.js +5 -1
- package/esm/components/logo/index.d.ts +3 -8
- package/esm/components/logo/style/index.d.ts +1 -6
- package/esm/components/logo/style.d.ts +1 -0
- package/esm/components/logo/web-component.d.ts +3 -0
- package/esm/components/modal/Modal.d.ts +136 -0
- package/esm/components/modal/Modal.js +16 -18
- package/esm/components/modal/ModalContent.d.ts +54 -0
- package/esm/components/modal/ModalContent.js +47 -58
- package/esm/components/modal/ModalContext.d.ts +22 -0
- package/esm/components/modal/ModalContext.js +16 -1
- package/esm/components/modal/ModalRoot.d.ts +39 -0
- package/esm/components/modal/bodyScrollLock.d.ts +3 -0
- package/esm/components/modal/helpers.d.ts +5 -0
- package/esm/components/modal/helpers.js +10 -1
- package/esm/components/modal/index.d.ts +3 -8
- package/esm/components/modal/parts/CloseButton.d.ts +39 -0
- package/esm/components/modal/{components → parts}/CloseButton.js +0 -0
- package/esm/components/modal/parts/ModalHeader.d.ts +48 -0
- package/esm/components/modal/parts/ModalHeader.js +74 -0
- package/esm/components/modal/parts/ModalHeaderBar.d.ts +50 -0
- package/esm/components/modal/parts/ModalHeaderBar.js +125 -0
- package/esm/components/modal/parts/ModalInner.d.ts +32 -0
- package/esm/components/modal/parts/ModalInner.js +67 -0
- package/esm/components/modal/style/_modal.scss +25 -342
- package/esm/components/modal/style/dnb-modal.css +677 -366
- package/esm/components/modal/style/dnb-modal.min.css +1 -1
- package/esm/components/modal/style/dnb-modal.scss +2 -0
- package/esm/components/modal/style/index.d.ts +1 -6
- package/esm/components/modal/style/themes/dnb-modal-theme-ui.css +0 -4
- package/esm/components/modal/style/themes/dnb-modal-theme-ui.min.css +1 -1
- package/esm/components/modal/style/themes/dnb-modal-theme-ui.scss +0 -18
- package/esm/components/modal/style/themes/ui.d.ts +1 -0
- package/esm/components/modal/style.d.ts +1 -0
- package/esm/components/modal/types.d.ts +284 -0
- package/esm/components/modal/web-component.d.ts +3 -0
- package/esm/components/number-format/index.d.ts +3 -8
- package/esm/components/number-format/style/index.d.ts +1 -6
- package/esm/components/number-format/style.d.ts +1 -0
- package/esm/components/number-format/web-component.d.ts +3 -0
- package/esm/components/pagination/InfinityScroller.d.ts +1 -0
- package/esm/components/pagination/PaginationCalculation.d.ts +6 -0
- package/esm/components/pagination/PaginationContext.d.ts +5 -0
- package/esm/components/pagination/index.d.ts +3 -8
- package/esm/components/pagination/style/index.d.ts +1 -6
- package/esm/components/pagination/style/themes/ui.d.ts +1 -0
- package/esm/components/pagination/style.d.ts +1 -0
- package/esm/components/pagination/web-component.d.ts +3 -0
- package/esm/components/progress-indicator/index.d.ts +3 -8
- package/esm/components/progress-indicator/style/index.d.ts +1 -6
- package/esm/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.css +15 -0
- package/esm/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.min.css +1 -1
- package/esm/components/progress-indicator/style/themes/dnb-progress-indicator-theme-ui.scss +17 -0
- package/esm/components/progress-indicator/style/themes/ui.d.ts +1 -0
- package/esm/components/progress-indicator/style.d.ts +1 -0
- package/esm/components/progress-indicator/web-component.d.ts +3 -0
- package/esm/components/radio/RadioGroupContext.d.ts +3 -0
- package/esm/components/radio/group/web-component.d.ts +3 -0
- package/esm/components/radio/index.d.ts +3 -8
- package/esm/components/radio/style/index.d.ts +1 -6
- package/esm/components/radio/style/themes/ui.d.ts +1 -0
- package/esm/components/radio/style.d.ts +1 -0
- package/esm/components/radio/web-component.d.ts +3 -0
- package/esm/components/section/Section.d.ts +0 -6
- package/esm/components/section/index.d.ts +3 -8
- package/esm/components/section/style/index.d.ts +1 -6
- package/esm/components/section/style/themes/ui.d.ts +1 -0
- package/esm/components/section/style.d.ts +1 -0
- package/esm/components/section/web-component.d.ts +3 -0
- package/esm/components/skeleton/Skeleton.d.ts +1 -1
- package/esm/components/skeleton/figures/index.d.ts +5 -11
- package/esm/components/skeleton/index.d.ts +3 -8
- package/esm/components/skeleton/style/index.d.ts +1 -6
- package/esm/components/skeleton/style/themes/brand.d.ts +1 -0
- package/esm/components/skeleton/style/themes/norway.d.ts +1 -0
- package/esm/components/skeleton/style/themes/rainbow.d.ts +1 -0
- package/esm/components/skeleton/style/themes/ui.d.ts +1 -0
- package/esm/components/skeleton/style.d.ts +1 -0
- package/esm/components/skeleton/web-component.d.ts +3 -0
- package/esm/components/slider/index.d.ts +3 -8
- package/esm/components/slider/style/index.d.ts +1 -6
- package/esm/components/slider/style/themes/ui.d.ts +1 -0
- package/esm/components/slider/style.d.ts +1 -0
- package/esm/components/slider/web-component.d.ts +3 -0
- package/esm/components/space/SpacingHelper.d.ts +52 -0
- package/esm/components/space/index.d.ts +3 -8
- package/esm/components/space/style/index.d.ts +1 -6
- package/esm/components/space/style/themes/ui.d.ts +1 -0
- package/esm/components/space/style.d.ts +1 -0
- package/esm/components/space/web-component.d.ts +3 -0
- package/esm/components/step-indicator/StepIndicatorItem-v1.d.ts +3 -0
- package/esm/components/step-indicator/StepIndicatorList.d.ts +7 -0
- package/esm/components/step-indicator/StepIndicatorModal.d.ts +9 -0
- package/esm/components/step-indicator/StepIndicatorProps.d.ts +65 -0
- package/esm/components/step-indicator/index.d.ts +3 -8
- package/esm/components/step-indicator/style/index.d.ts +1 -6
- package/esm/components/step-indicator/style/themes/ui.d.ts +1 -0
- package/esm/components/step-indicator/style.d.ts +1 -0
- package/esm/components/step-indicator/web-component.d.ts +3 -0
- package/esm/components/style/index.d.ts +1 -6
- package/esm/components/switch/index.d.ts +3 -8
- package/esm/components/switch/style/index.d.ts +1 -6
- package/esm/components/switch/style/themes/ui.d.ts +1 -0
- package/esm/components/switch/style.d.ts +1 -0
- package/esm/components/switch/web-component.d.ts +3 -0
- package/esm/components/tabs/index.d.ts +3 -8
- package/esm/components/tabs/style/index.d.ts +1 -6
- package/esm/components/tabs/style/themes/ui.d.ts +1 -0
- package/esm/components/tabs/style.d.ts +1 -0
- package/esm/components/tabs/web-component.d.ts +3 -0
- package/esm/components/tag/Tag.d.ts +61 -0
- package/esm/components/tag/TagContext.d.ts +2 -0
- package/esm/components/tag/TagGroup.d.ts +26 -0
- package/esm/components/tag/index.d.ts +3 -8
- package/esm/components/tag/style/index.d.ts +1 -6
- package/esm/components/tag/style.d.ts +1 -0
- package/esm/components/textarea/index.d.ts +1 -6
- package/esm/components/textarea/style/index.d.ts +1 -6
- package/esm/components/textarea/style/themes/ui.d.ts +1 -0
- package/esm/components/textarea/style.d.ts +1 -0
- package/esm/components/textarea/web-component.d.ts +3 -0
- package/esm/components/timeline/Timeline.d.ts +38 -0
- package/esm/components/timeline/TimelineItem.d.ts +39 -0
- package/esm/components/timeline/index.d.ts +3 -8
- package/esm/components/timeline/style/index.d.ts +1 -6
- package/esm/components/timeline/style/themes/ui.d.ts +1 -0
- package/esm/components/timeline/style.d.ts +1 -0
- package/esm/components/toggle-button/ToggleButtonGroupContext.d.ts +3 -0
- package/esm/components/toggle-button/group/web-component.d.ts +3 -0
- package/esm/components/toggle-button/index.d.ts +3 -8
- package/esm/components/toggle-button/style/index.d.ts +1 -6
- package/esm/components/toggle-button/style/themes/ui.d.ts +1 -0
- package/esm/components/toggle-button/style.d.ts +1 -0
- package/esm/components/toggle-button/web-component.d.ts +3 -0
- package/esm/components/tooltip/TooltipHelpers.d.ts +1 -0
- package/esm/components/tooltip/index.d.ts +3 -8
- package/esm/components/tooltip/style/index.d.ts +1 -6
- package/esm/components/tooltip/style/themes/ui.d.ts +1 -0
- package/esm/components/tooltip/style.d.ts +1 -0
- package/esm/components/tooltip/web-component.d.ts +3 -0
- package/esm/components/visually-hidden/VisuallyHidden.d.ts +31 -0
- package/esm/components/visually-hidden/index.d.ts +3 -8
- package/esm/components/visually-hidden/style/index.d.ts +1 -6
- package/esm/components/visually-hidden/style.d.ts +1 -0
- package/esm/components/vue.d.ts +6 -0
- package/esm/components/web-components.d.ts +1 -0
- package/esm/dnb-ui-basis.d.ts +1 -0
- package/esm/dnb-ui-basis.min.mjs +1 -1
- package/esm/dnb-ui-components.d.ts +1 -0
- package/esm/dnb-ui-components.min.mjs +4 -4
- package/esm/dnb-ui-elements.d.ts +1 -0
- package/esm/dnb-ui-elements.min.mjs +1 -1
- package/esm/dnb-ui-extensions.d.ts +1 -0
- package/esm/dnb-ui-extensions.min.mjs +1 -1
- package/esm/dnb-ui-icons-archive.d.ts +1 -0
- package/esm/dnb-ui-icons.d.ts +2 -0
- package/esm/dnb-ui-lib.d.ts +2 -0
- package/esm/dnb-ui-lib.min.mjs +4 -4
- package/esm/dnb-ui-web-components.d.ts +1 -0
- package/esm/dnb-ui-web-components.min.mjs +4 -4
- package/esm/elements/Div.d.ts +1 -1
- package/esm/elements/Img.d.ts +1 -1
- package/esm/elements/Ingress.d.ts +5 -0
- package/esm/elements/Link.d.ts +2 -0
- package/esm/elements/P.d.ts +1 -1
- package/esm/elements/Paragraph.d.ts +5 -0
- package/esm/elements/index.d.ts +30 -74
- package/esm/elements/lib.d.ts +71 -0
- package/esm/esm/dnb-ui-basis.d.ts +1 -0
- package/esm/esm/dnb-ui-components.d.ts +1 -0
- package/esm/esm/dnb-ui-elements.d.ts +1 -0
- package/esm/esm/dnb-ui-extensions.d.ts +1 -0
- package/esm/esm/dnb-ui-icons-archive.d.ts +1 -0
- package/esm/esm/dnb-ui-icons.d.ts +2 -0
- package/esm/esm/dnb-ui-lib.d.ts +2 -0
- package/esm/esm/dnb-ui-web-components.d.ts +1 -0
- package/esm/extensions/index.d.ts +2 -16
- package/esm/extensions/lib.d.ts +6 -0
- package/esm/extensions/payment-card/icons/index.d.ts +15 -98
- package/esm/extensions/payment-card/index.d.ts +3 -8
- package/esm/extensions/payment-card/style/index.d.ts +1 -6
- package/esm/extensions/payment-card/style/themes/ui.d.ts +1 -0
- package/esm/extensions/payment-card/style.d.ts +1 -0
- package/esm/extensions/payment-card/utils/CardDesigns.d.ts +242 -0
- package/esm/extensions/payment-card/utils/Types.d.ts +91 -0
- package/esm/extensions/payment-card/utils/cardProducts.d.ts +18 -0
- package/esm/extensions/payment-card/web-component.d.ts +3 -0
- package/esm/extensions/style/index.d.ts +1 -6
- package/esm/extensions/vue.d.ts +6 -0
- package/esm/extensions/web-components.d.ts +1 -0
- package/esm/fragments/DrawerList.d.ts +3 -14
- package/esm/fragments/ScrollView.d.ts +3 -14
- package/esm/fragments/drawer-list/DrawerListContext.d.ts +3 -0
- package/esm/fragments/drawer-list/DrawerListHelpers.d.ts +141 -0
- package/esm/fragments/drawer-list/index.d.ts +3 -8
- package/esm/fragments/drawer-list/style/index.d.ts +1 -6
- package/esm/fragments/drawer-list/style/themes/ui.d.ts +1 -0
- package/esm/fragments/drawer-list/style.d.ts +1 -0
- package/esm/fragments/drawer-list/web-component.d.ts +3 -0
- package/esm/fragments/index.d.ts +3 -17
- package/esm/fragments/lib.d.ts +12 -0
- package/esm/fragments/scroll-view/ScrollView.d.ts +14 -0
- package/esm/fragments/scroll-view/index.d.ts +3 -8
- package/esm/fragments/scroll-view/style/index.d.ts +1 -6
- package/esm/fragments/scroll-view/style/themes/ui.d.ts +1 -0
- package/esm/fragments/scroll-view/style.d.ts +1 -0
- package/esm/fragments/scroll-view/web-component.d.ts +3 -0
- package/esm/icons/above_the_line.d.ts +2 -0
- package/esm/icons/above_the_line_medium.d.ts +2 -0
- package/esm/icons/account.d.ts +2 -0
- package/esm/icons/account_card.d.ts +2 -0
- package/esm/icons/account_card_medium.d.ts +2 -0
- package/esm/icons/account_in.d.ts +2 -0
- package/esm/icons/account_in_medium.d.ts +2 -0
- package/esm/icons/account_medium.d.ts +2 -0
- package/esm/icons/account_out.d.ts +2 -0
- package/esm/icons/account_out_medium.d.ts +2 -0
- package/esm/icons/account_percent.d.ts +2 -0
- package/esm/icons/add.d.ts +2 -0
- package/esm/icons/add_circled.d.ts +2 -0
- package/esm/icons/add_circled_medium.d.ts +2 -0
- package/esm/icons/add_medium.d.ts +2 -0
- package/esm/icons/ainvoice.d.ts +2 -0
- package/esm/icons/ainvoice_medium.d.ts +2 -0
- package/esm/icons/ambulance.d.ts +2 -0
- package/esm/icons/ambulance_medium.d.ts +2 -0
- package/esm/icons/animal_print.d.ts +2 -0
- package/esm/icons/animal_print_medium.d.ts +2 -0
- package/esm/icons/apple_watch.d.ts +2 -0
- package/esm/icons/apple_watch_medium.d.ts +2 -0
- package/esm/icons/arrow_down.d.ts +2 -0
- package/esm/icons/arrow_down_medium.d.ts +2 -0
- package/esm/icons/arrow_left.d.ts +2 -0
- package/esm/icons/arrow_left_medium.d.ts +2 -0
- package/esm/icons/arrow_right.d.ts +2 -0
- package/esm/icons/arrow_right_medium.d.ts +2 -0
- package/esm/icons/arrow_up.d.ts +2 -0
- package/esm/icons/arrow_up_medium.d.ts +2 -0
- package/esm/icons/attachment.d.ts +2 -0
- package/esm/icons/attachment_medium.d.ts +2 -0
- package/esm/icons/baby.d.ts +2 -0
- package/esm/icons/baby_medium.d.ts +2 -0
- package/esm/icons/bandage.d.ts +2 -0
- package/esm/icons/bandage_medium.d.ts +2 -0
- package/esm/icons/bank.d.ts +2 -0
- package/esm/icons/bank_medium.d.ts +2 -0
- package/esm/icons/bankid.d.ts +2 -0
- package/esm/icons/bankid_medium.d.ts +2 -0
- package/esm/icons/bankid_mobile.d.ts +2 -0
- package/esm/icons/bankid_mobile_medium.d.ts +2 -0
- package/esm/icons/bankid_qr.d.ts +2 -0
- package/esm/icons/bankid_qr_medium.d.ts +2 -0
- package/esm/icons/bell.d.ts +2 -0
- package/esm/icons/bell_medium.d.ts +2 -0
- package/esm/icons/bicycle.d.ts +2 -0
- package/esm/icons/bicycle_medium.d.ts +2 -0
- package/esm/icons/boat.d.ts +2 -0
- package/esm/icons/boat_medium.d.ts +2 -0
- package/esm/icons/bowling.d.ts +2 -0
- package/esm/icons/bowling_medium.d.ts +2 -0
- package/esm/icons/brickwall.d.ts +2 -0
- package/esm/icons/brickwall_medium.d.ts +2 -0
- package/esm/icons/broken_chain.d.ts +2 -0
- package/esm/icons/broken_chain_medium.d.ts +2 -0
- package/esm/icons/brush.d.ts +2 -0
- package/esm/icons/brush_medium.d.ts +2 -0
- package/esm/icons/bsu.d.ts +2 -0
- package/esm/icons/bsu_medium.d.ts +2 -0
- package/esm/icons/bubble.d.ts +2 -0
- package/esm/icons/bubble_medium.d.ts +2 -0
- package/esm/icons/building_construction.d.ts +2 -0
- package/esm/icons/building_construction_medium.d.ts +2 -0
- package/esm/icons/calculator.d.ts +2 -0
- package/esm/icons/calculator_medium.d.ts +2 -0
- package/esm/icons/calendar.d.ts +2 -0
- package/esm/icons/calendar_medium.d.ts +2 -0
- package/esm/icons/camera.d.ts +2 -0
- package/esm/icons/camera_medium.d.ts +2 -0
- package/esm/icons/camper_trailer.d.ts +2 -0
- package/esm/icons/camper_trailer_medium.d.ts +2 -0
- package/esm/icons/car_1.d.ts +2 -0
- package/esm/icons/car_1_medium.d.ts +2 -0
- package/esm/icons/car_2.d.ts +2 -0
- package/esm/icons/car_2_medium.d.ts +2 -0
- package/esm/icons/caravan.d.ts +2 -0
- package/esm/icons/caravan_medium.d.ts +2 -0
- package/esm/icons/card.d.ts +2 -0
- package/esm/icons/card_in.d.ts +2 -0
- package/esm/icons/card_in_medium.d.ts +2 -0
- package/esm/icons/card_medium.d.ts +2 -0
- package/esm/icons/card_out.d.ts +2 -0
- package/esm/icons/card_out_medium.d.ts +2 -0
- package/esm/icons/card_with_padlock.d.ts +2 -0
- package/esm/icons/card_with_padlock_medium.d.ts +2 -0
- package/esm/icons/cat.d.ts +2 -0
- package/esm/icons/cat_medium.d.ts +2 -0
- package/esm/icons/chain.d.ts +2 -0
- package/esm/icons/chain_medium.d.ts +2 -0
- package/esm/icons/charger.d.ts +2 -0
- package/esm/icons/charger_medium.d.ts +2 -0
- package/esm/icons/chat.d.ts +2 -0
- package/esm/icons/chat_medium.d.ts +2 -0
- package/esm/icons/chatbot.d.ts +2 -0
- package/esm/icons/chatbot_medium.d.ts +2 -0
- package/esm/icons/check.d.ts +2 -0
- package/esm/icons/check_medium.d.ts +2 -0
- package/esm/icons/chevron_down.d.ts +2 -0
- package/esm/icons/chevron_down_medium.d.ts +2 -0
- package/esm/icons/chevron_left.d.ts +2 -0
- package/esm/icons/chevron_left_medium.d.ts +2 -0
- package/esm/icons/chevron_right.d.ts +2 -0
- package/esm/icons/chevron_right_medium.d.ts +2 -0
- package/esm/icons/chevron_up.d.ts +2 -0
- package/esm/icons/chevron_up_medium.d.ts +2 -0
- package/esm/icons/chip.d.ts +2 -0
- package/esm/icons/chip_medium.d.ts +2 -0
- package/esm/icons/clock.d.ts +2 -0
- package/esm/icons/clock_medium.d.ts +2 -0
- package/esm/icons/close.d.ts +2 -0
- package/esm/icons/close_medium.d.ts +2 -0
- package/esm/icons/cloud.d.ts +2 -0
- package/esm/icons/cloud_download.d.ts +2 -0
- package/esm/icons/cloud_download_medium.d.ts +2 -0
- package/esm/icons/cloud_medium.d.ts +2 -0
- package/esm/icons/cloud_rain.d.ts +2 -0
- package/esm/icons/cloud_rain_medium.d.ts +2 -0
- package/esm/icons/cloud_sync.d.ts +2 -0
- package/esm/icons/cloud_sync_medium.d.ts +2 -0
- package/esm/icons/cloud_transfer.d.ts +2 -0
- package/esm/icons/cloud_transfer_medium.d.ts +2 -0
- package/esm/icons/cloud_upload.d.ts +2 -0
- package/esm/icons/cloud_upload_medium.d.ts +2 -0
- package/esm/icons/cog.d.ts +2 -0
- package/esm/icons/cog_medium.d.ts +2 -0
- package/esm/icons/coins_1.d.ts +2 -0
- package/esm/icons/coins_1_medium.d.ts +2 -0
- package/esm/icons/coins_2.d.ts +2 -0
- package/esm/icons/coins_2_medium.d.ts +2 -0
- package/esm/icons/coins_3.d.ts +2 -0
- package/esm/icons/coins_3_medium.d.ts +2 -0
- package/esm/icons/compose.d.ts +2 -0
- package/esm/icons/compose_medium.d.ts +2 -0
- package/esm/icons/confetti.d.ts +2 -0
- package/esm/icons/confetti_medium.d.ts +2 -0
- package/esm/icons/contacts.d.ts +2 -0
- package/esm/icons/contacts_medium.d.ts +2 -0
- package/esm/icons/cookie.d.ts +2 -0
- package/esm/icons/cookie_medium.d.ts +2 -0
- package/esm/icons/copy.d.ts +2 -0
- package/esm/icons/copy_medium.d.ts +2 -0
- package/esm/icons/credit_note.d.ts +2 -0
- package/esm/icons/credit_note_medium.d.ts +2 -0
- package/esm/icons/currency.d.ts +2 -0
- package/esm/icons/currency_medium.d.ts +2 -0
- package/esm/icons/customer_service.d.ts +2 -0
- package/esm/icons/customer_service_medium.d.ts +2 -0
- package/esm/icons/deleted_invoice.d.ts +2 -0
- package/esm/icons/deleted_invoice_medium.d.ts +2 -0
- package/esm/icons/diamond.d.ts +2 -0
- package/esm/icons/diamond_medium.d.ts +2 -0
- package/esm/icons/digipass.d.ts +2 -0
- package/esm/icons/digipass_medium.d.ts +2 -0
- package/esm/icons/digipost.d.ts +2 -0
- package/esm/icons/digipost_medium.d.ts +2 -0
- package/esm/icons/dismiss_keyboard.d.ts +2 -0
- package/esm/icons/dismiss_keyboard_medium.d.ts +2 -0
- package/esm/icons/document.d.ts +2 -0
- package/esm/icons/document_add.d.ts +2 -0
- package/esm/icons/document_add_medium.d.ts +2 -0
- package/esm/icons/document_contract.d.ts +2 -0
- package/esm/icons/document_contract_medium.d.ts +2 -0
- package/esm/icons/document_csv.d.ts +2 -0
- package/esm/icons/document_csv_medium.d.ts +2 -0
- package/esm/icons/document_loupe.d.ts +2 -0
- package/esm/icons/document_loupe_medium.d.ts +2 -0
- package/esm/icons/document_medium.d.ts +2 -0
- package/esm/icons/document_pdf.d.ts +2 -0
- package/esm/icons/document_pdf_medium.d.ts +2 -0
- package/esm/icons/document_rejected.d.ts +2 -0
- package/esm/icons/document_rejected_medium.d.ts +2 -0
- package/esm/icons/document_signing.d.ts +2 -0
- package/esm/icons/document_signing_medium.d.ts +2 -0
- package/esm/icons/document_txt.d.ts +2 -0
- package/esm/icons/document_txt_medium.d.ts +2 -0
- package/esm/icons/document_warning.d.ts +2 -0
- package/esm/icons/document_warning_medium.d.ts +2 -0
- package/esm/icons/document_word.d.ts +2 -0
- package/esm/icons/document_word_medium.d.ts +2 -0
- package/esm/icons/document_xls.d.ts +2 -0
- package/esm/icons/document_xls_medium.d.ts +2 -0
- package/esm/icons/dog.d.ts +2 -0
- package/esm/icons/dog_medium.d.ts +2 -0
- package/esm/icons/download.d.ts +2 -0
- package/esm/icons/download_medium.d.ts +2 -0
- package/esm/icons/edit.d.ts +2 -0
- package/esm/icons/edit_medium.d.ts +2 -0
- package/esm/icons/einvoice.d.ts +2 -0
- package/esm/icons/einvoice_medium.d.ts +2 -0
- package/esm/icons/email.d.ts +2 -0
- package/esm/icons/email_medium.d.ts +2 -0
- package/esm/icons/equities_and_mutual_funds.d.ts +2 -0
- package/esm/icons/equities_and_mutual_funds_medium.d.ts +2 -0
- package/esm/icons/exclamation.d.ts +2 -0
- package/esm/icons/exclamation_circled.d.ts +2 -0
- package/esm/icons/exclamation_circled_medium.d.ts +2 -0
- package/esm/icons/exclamation_medium.d.ts +2 -0
- package/esm/icons/exclamation_triangle.d.ts +2 -0
- package/esm/icons/exclamation_triangle_medium.d.ts +2 -0
- package/esm/icons/facebook.d.ts +2 -0
- package/esm/icons/facebook_medium.d.ts +2 -0
- package/esm/icons/factory.d.ts +2 -0
- package/esm/icons/factory_medium.d.ts +2 -0
- package/esm/icons/file.d.ts +2 -0
- package/esm/icons/file_add.d.ts +2 -0
- package/esm/icons/file_add_medium.d.ts +2 -0
- package/esm/icons/file_contract.d.ts +2 -0
- package/esm/icons/file_contract_medium.d.ts +2 -0
- package/esm/icons/file_csv.d.ts +2 -0
- package/esm/icons/file_csv_medium.d.ts +2 -0
- package/esm/icons/file_loupe.d.ts +2 -0
- package/esm/icons/file_loupe_medium.d.ts +2 -0
- package/esm/icons/file_medium.d.ts +2 -0
- package/esm/icons/file_pdf.d.ts +2 -0
- package/esm/icons/file_pdf_medium.d.ts +2 -0
- package/esm/icons/file_ppt.d.ts +2 -0
- package/esm/icons/file_ppt_medium.d.ts +2 -0
- package/esm/icons/file_rejected.d.ts +2 -0
- package/esm/icons/file_rejected_medium.d.ts +2 -0
- package/esm/icons/file_signing.d.ts +2 -0
- package/esm/icons/file_signing_medium.d.ts +2 -0
- package/esm/icons/file_txt.d.ts +2 -0
- package/esm/icons/file_txt_medium.d.ts +2 -0
- package/esm/icons/file_warning.d.ts +2 -0
- package/esm/icons/file_warning_medium.d.ts +2 -0
- package/esm/icons/file_word.d.ts +2 -0
- package/esm/icons/file_word_medium.d.ts +2 -0
- package/esm/icons/file_xls.d.ts +2 -0
- package/esm/icons/file_xls_medium.d.ts +2 -0
- package/esm/icons/file_xml.d.ts +2 -0
- package/esm/icons/file_xml_medium.d.ts +2 -0
- package/esm/icons/filter.d.ts +2 -0
- package/esm/icons/filter_medium.d.ts +2 -0
- package/esm/icons/first_aid.d.ts +2 -0
- package/esm/icons/first_aid_medium.d.ts +2 -0
- package/esm/icons/flying_money.d.ts +2 -0
- package/esm/icons/flying_money_medium.d.ts +2 -0
- package/esm/icons/folder.d.ts +2 -0
- package/esm/icons/folder_medium.d.ts +2 -0
- package/esm/icons/fridge.d.ts +2 -0
- package/esm/icons/fridge_medium.d.ts +2 -0
- package/esm/icons/fullscreen.d.ts +2 -0
- package/esm/icons/fullscreen_medium.d.ts +2 -0
- package/esm/icons/fund_in.d.ts +2 -0
- package/esm/icons/fund_out.d.ts +2 -0
- package/esm/icons/funds.d.ts +2 -0
- package/esm/icons/funds_in.d.ts +2 -0
- package/esm/icons/funds_in_medium.d.ts +2 -0
- package/esm/icons/funds_medium.d.ts +2 -0
- package/esm/icons/funds_out.d.ts +2 -0
- package/esm/icons/funds_out_medium.d.ts +2 -0
- package/esm/icons/globe.d.ts +2 -0
- package/esm/icons/globe_medium.d.ts +2 -0
- package/esm/icons/grabber.d.ts +2 -0
- package/esm/icons/grabber_medium.d.ts +2 -0
- package/esm/icons/graph_decrease.d.ts +2 -0
- package/esm/icons/graph_decrease_medium.d.ts +2 -0
- package/esm/icons/graph_increase.d.ts +2 -0
- package/esm/icons/graph_increase_medium.d.ts +2 -0
- package/esm/icons/hamburger.d.ts +2 -0
- package/esm/icons/hamburger_medium.d.ts +2 -0
- package/esm/icons/hand_money.d.ts +2 -0
- package/esm/icons/hand_money_medium.d.ts +2 -0
- package/esm/icons/hanger.d.ts +2 -0
- package/esm/icons/hanger_medium.d.ts +2 -0
- package/esm/icons/heart.d.ts +2 -0
- package/esm/icons/heart_medium.d.ts +2 -0
- package/esm/icons/heart_rate.d.ts +2 -0
- package/esm/icons/heart_rate_medium.d.ts +2 -0
- package/esm/icons/hide.d.ts +2 -0
- package/esm/icons/hide_medium.d.ts +2 -0
- package/esm/icons/history.d.ts +2 -0
- package/esm/icons/history_medium.d.ts +2 -0
- package/esm/icons/home.d.ts +2 -0
- package/esm/icons/home_medium.d.ts +2 -0
- package/esm/icons/horse.d.ts +2 -0
- package/esm/icons/horse_medium.d.ts +2 -0
- package/esm/icons/hourglass.d.ts +2 -0
- package/esm/icons/hourglass_medium.d.ts +2 -0
- package/esm/icons/house_1.d.ts +2 -0
- package/esm/icons/house_1_medium.d.ts +2 -0
- package/esm/icons/house_2.d.ts +2 -0
- package/esm/icons/house_2_medium.d.ts +2 -0
- package/esm/icons/house_value.d.ts +2 -0
- package/esm/icons/house_value_medium.d.ts +2 -0
- package/esm/icons/index.d.ts +501 -1005
- package/esm/icons/information.d.ts +2 -0
- package/esm/icons/information_bubble.d.ts +2 -0
- package/esm/icons/information_bubble_medium.d.ts +2 -0
- package/esm/icons/information_circled.d.ts +2 -0
- package/esm/icons/information_circled_medium.d.ts +2 -0
- package/esm/icons/information_medium.d.ts +2 -0
- package/esm/icons/instagram.d.ts +2 -0
- package/esm/icons/instagram_medium.d.ts +2 -0
- package/esm/icons/insurance.d.ts +2 -0
- package/esm/icons/insurance_medium.d.ts +2 -0
- package/esm/icons/kid_number.d.ts +2 -0
- package/esm/icons/kid_number_medium.d.ts +2 -0
- package/esm/icons/language.d.ts +2 -0
- package/esm/icons/language_medium.d.ts +2 -0
- package/esm/icons/launch.d.ts +2 -0
- package/esm/icons/launch_medium.d.ts +2 -0
- package/esm/icons/leaf.d.ts +2 -0
- package/esm/icons/leaf_medium.d.ts +2 -0
- package/esm/icons/lightbulb.d.ts +2 -0
- package/esm/icons/lightbulb_medium.d.ts +2 -0
- package/esm/icons/linkedin.d.ts +2 -0
- package/esm/icons/linkedin_medium.d.ts +2 -0
- package/esm/icons/list.d.ts +2 -0
- package/esm/icons/list_medium.d.ts +2 -0
- package/esm/icons/loan.d.ts +2 -0
- package/esm/icons/loan_in.d.ts +2 -0
- package/esm/icons/loan_in_medium.d.ts +2 -0
- package/esm/icons/loan_medium.d.ts +2 -0
- package/esm/icons/loan_out.d.ts +2 -0
- package/esm/icons/loan_out_medium.d.ts +2 -0
- package/esm/icons/location.d.ts +2 -0
- package/esm/icons/location_medium.d.ts +2 -0
- package/esm/icons/log_in.d.ts +2 -0
- package/esm/icons/log_in_medium.d.ts +2 -0
- package/esm/icons/log_out.d.ts +2 -0
- package/esm/icons/log_out_medium.d.ts +2 -0
- package/esm/icons/loupe.d.ts +2 -0
- package/esm/icons/loupe_medium.d.ts +2 -0
- package/esm/icons/mastercard.d.ts +2 -0
- package/esm/icons/mastercard_card.d.ts +2 -0
- package/esm/icons/mastercard_card_medium.d.ts +2 -0
- package/esm/icons/mastercard_medium.d.ts +2 -0
- package/esm/icons/megaphone.d.ts +2 -0
- package/esm/icons/megaphone_medium.d.ts +2 -0
- package/esm/icons/microphone.d.ts +2 -0
- package/esm/icons/microphone_medium.d.ts +2 -0
- package/esm/icons/minimize.d.ts +2 -0
- package/esm/icons/minimize_medium.d.ts +2 -0
- package/esm/icons/mobilephone.d.ts +2 -0
- package/esm/icons/mobilephone_medium.d.ts +2 -0
- package/esm/icons/more.d.ts +2 -0
- package/esm/icons/more_medium.d.ts +2 -0
- package/esm/icons/more_vertical.d.ts +2 -0
- package/esm/icons/more_vertical_medium.d.ts +2 -0
- package/esm/icons/motorcycle.d.ts +2 -0
- package/esm/icons/motorcycle_medium.d.ts +2 -0
- package/esm/icons/move.d.ts +2 -0
- package/esm/icons/move_medium.d.ts +2 -0
- package/esm/icons/office_buildings.d.ts +2 -0
- package/esm/icons/office_buildings_medium.d.ts +2 -0
- package/esm/icons/oil.d.ts +2 -0
- package/esm/icons/oil_medium.d.ts +2 -0
- package/esm/icons/owl.d.ts +2 -0
- package/esm/icons/owl_medium.d.ts +2 -0
- package/esm/icons/padlock.d.ts +2 -0
- package/esm/icons/padlock_medium.d.ts +2 -0
- package/esm/icons/paperclip.d.ts +2 -0
- package/esm/icons/paperclip_medium.d.ts +2 -0
- package/esm/icons/paragraph.d.ts +2 -0
- package/esm/icons/paragraph_medium.d.ts +2 -0
- package/esm/icons/pause.d.ts +2 -0
- package/esm/icons/pause_medium.d.ts +2 -0
- package/esm/icons/pay_from.d.ts +2 -0
- package/esm/icons/pay_from_medium.d.ts +2 -0
- package/esm/icons/pension.d.ts +2 -0
- package/esm/icons/pension_medium.d.ts +2 -0
- package/esm/icons/people_1.d.ts +2 -0
- package/esm/icons/people_1_medium.d.ts +2 -0
- package/esm/icons/people_2.d.ts +2 -0
- package/esm/icons/people_2_medium.d.ts +2 -0
- package/esm/icons/person.d.ts +2 -0
- package/esm/icons/person_medium.d.ts +2 -0
- package/esm/icons/person_shield.d.ts +2 -0
- package/esm/icons/person_shield_medium.d.ts +2 -0
- package/esm/icons/phone.d.ts +2 -0
- package/esm/icons/phone_medium.d.ts +2 -0
- package/esm/icons/photo.d.ts +2 -0
- package/esm/icons/photo_medium.d.ts +2 -0
- package/esm/icons/pin.d.ts +2 -0
- package/esm/icons/pin_code.d.ts +2 -0
- package/esm/icons/pin_code_medium.d.ts +2 -0
- package/esm/icons/pin_medium.d.ts +2 -0
- package/esm/icons/plant.d.ts +2 -0
- package/esm/icons/plant_medium.d.ts +2 -0
- package/esm/icons/play.d.ts +2 -0
- package/esm/icons/play_medium.d.ts +2 -0
- package/esm/icons/primary_icons.d.ts +23 -0
- package/esm/icons/primary_icons_medium.d.ts +23 -0
- package/esm/icons/printer.d.ts +2 -0
- package/esm/icons/printer_medium.d.ts +2 -0
- package/esm/icons/products_account_percent_medium.d.ts +2 -0
- package/esm/icons/profile.d.ts +2 -0
- package/esm/icons/profile_medium.d.ts +2 -0
- package/esm/icons/progress.d.ts +2 -0
- package/esm/icons/progress_medium.d.ts +2 -0
- package/esm/icons/question.d.ts +2 -0
- package/esm/icons/question_circled.d.ts +2 -0
- package/esm/icons/question_circled_medium.d.ts +2 -0
- package/esm/icons/question_medium.d.ts +2 -0
- package/esm/icons/recurring.d.ts +2 -0
- package/esm/icons/recurring_medium.d.ts +2 -0
- package/esm/icons/redo.d.ts +2 -0
- package/esm/icons/redo_medium.d.ts +2 -0
- package/esm/icons/ref_number.d.ts +2 -0
- package/esm/icons/ref_number_medium.d.ts +2 -0
- package/esm/icons/refresh.d.ts +2 -0
- package/esm/icons/refresh_medium.d.ts +2 -0
- package/esm/icons/reply.d.ts +2 -0
- package/esm/icons/reply_medium.d.ts +2 -0
- package/esm/icons/reset.d.ts +2 -0
- package/esm/icons/reset_medium.d.ts +2 -0
- package/esm/icons/restaurant.d.ts +2 -0
- package/esm/icons/restaurant_medium.d.ts +2 -0
- package/esm/icons/return_1.d.ts +2 -0
- package/esm/icons/return_1_medium.d.ts +2 -0
- package/esm/icons/save.d.ts +2 -0
- package/esm/icons/save_medium.d.ts +2 -0
- package/esm/icons/savings_account.d.ts +2 -0
- package/esm/icons/savings_account_in.d.ts +2 -0
- package/esm/icons/savings_account_in_medium.d.ts +2 -0
- package/esm/icons/savings_account_medium.d.ts +2 -0
- package/esm/icons/savings_account_out.d.ts +2 -0
- package/esm/icons/savings_account_out_medium.d.ts +2 -0
- package/esm/icons/scissors.d.ts +2 -0
- package/esm/icons/scissors_medium.d.ts +2 -0
- package/esm/icons/scooter.d.ts +2 -0
- package/esm/icons/scooter_medium.d.ts +2 -0
- package/esm/icons/secondary_icons.d.ts +216 -0
- package/esm/icons/secondary_icons_medium.d.ts +216 -0
- package/esm/icons/send.d.ts +2 -0
- package/esm/icons/send_medium.d.ts +2 -0
- package/esm/icons/share_android.d.ts +2 -0
- package/esm/icons/share_android_medium.d.ts +2 -0
- package/esm/icons/share_ios.d.ts +2 -0
- package/esm/icons/share_ios_medium.d.ts +2 -0
- package/esm/icons/shield.d.ts +2 -0
- package/esm/icons/shield_medium.d.ts +2 -0
- package/esm/icons/shopping_cart.d.ts +2 -0
- package/esm/icons/shopping_cart_medium.d.ts +2 -0
- package/esm/icons/snowmobile.d.ts +2 -0
- package/esm/icons/snowmobile_medium.d.ts +2 -0
- package/esm/icons/speedometer.d.ts +2 -0
- package/esm/icons/speedometer_medium.d.ts +2 -0
- package/esm/icons/split.d.ts +2 -0
- package/esm/icons/split_medium.d.ts +2 -0
- package/esm/icons/star.d.ts +2 -0
- package/esm/icons/star_medium.d.ts +2 -0
- package/esm/icons/stocks.d.ts +2 -0
- package/esm/icons/stocks_medium.d.ts +2 -0
- package/esm/icons/stop.d.ts +2 -0
- package/esm/icons/stop_medium.d.ts +2 -0
- package/esm/icons/stopwatch.d.ts +2 -0
- package/esm/icons/stopwatch_medium.d.ts +2 -0
- package/esm/icons/subtract.d.ts +2 -0
- package/esm/icons/subtract_circled.d.ts +2 -0
- package/esm/icons/subtract_circled_medium.d.ts +2 -0
- package/esm/icons/subtract_medium.d.ts +2 -0
- package/esm/icons/support.d.ts +2 -0
- package/esm/icons/support_medium.d.ts +2 -0
- package/esm/icons/swap.d.ts +2 -0
- package/esm/icons/swap_medium.d.ts +2 -0
- package/esm/icons/tag.d.ts +2 -0
- package/esm/icons/tag_medium.d.ts +2 -0
- package/esm/icons/thumbs_down.d.ts +2 -0
- package/esm/icons/thumbs_down_medium.d.ts +2 -0
- package/esm/icons/thumbs_up.d.ts +2 -0
- package/esm/icons/thumbs_up_medium.d.ts +2 -0
- package/esm/icons/tractor.d.ts +2 -0
- package/esm/icons/tractor_medium.d.ts +2 -0
- package/esm/icons/trailer.d.ts +2 -0
- package/esm/icons/trailer_medium.d.ts +2 -0
- package/esm/icons/train.d.ts +2 -0
- package/esm/icons/train_medium.d.ts +2 -0
- package/esm/icons/transfer.d.ts +2 -0
- package/esm/icons/transfer_medium.d.ts +2 -0
- package/esm/icons/transfer_to.d.ts +2 -0
- package/esm/icons/transfer_to_medium.d.ts +2 -0
- package/esm/icons/trash.d.ts +2 -0
- package/esm/icons/trash_medium.d.ts +2 -0
- package/esm/icons/travel.d.ts +2 -0
- package/esm/icons/travel_medium.d.ts +2 -0
- package/esm/icons/undo.d.ts +2 -0
- package/esm/icons/undo_medium.d.ts +2 -0
- package/esm/icons/upload.d.ts +2 -0
- package/esm/icons/upload_medium.d.ts +2 -0
- package/esm/icons/video.d.ts +2 -0
- package/esm/icons/video_medium.d.ts +2 -0
- package/esm/icons/view.d.ts +2 -0
- package/esm/icons/view_medium.d.ts +2 -0
- package/esm/icons/vintage_car.d.ts +2 -0
- package/esm/icons/vintage_car_medium.d.ts +2 -0
- package/esm/icons/volume_off.d.ts +2 -0
- package/esm/icons/volume_off_medium.d.ts +2 -0
- package/esm/icons/volume_on.d.ts +2 -0
- package/esm/icons/volume_on_medium.d.ts +2 -0
- package/esm/icons/wallet.d.ts +2 -0
- package/esm/icons/wallet_medium.d.ts +2 -0
- package/esm/icons/wearables.d.ts +2 -0
- package/esm/icons/wearables_medium.d.ts +2 -0
- package/esm/icons/web.d.ts +2 -0
- package/esm/icons/web_medium.d.ts +2 -0
- package/esm/icons/wheelchair.d.ts +2 -0
- package/esm/icons/wheelchair_medium.d.ts +2 -0
- package/esm/icons/widget_android.d.ts +2 -0
- package/esm/icons/widget_android_medium.d.ts +2 -0
- package/esm/icons/widget_ios.d.ts +2 -0
- package/esm/icons/widget_ios_medium.d.ts +2 -0
- package/esm/index.d.ts +74 -156
- package/esm/index.js +3 -1
- package/esm/lib.d.ts +3 -0
- package/esm/shared/AnimateHeight.d.ts +45 -0
- package/esm/shared/Context.d.ts +38 -0
- package/esm/shared/Context.js +3 -1
- package/esm/shared/Eufemia.d.ts +1 -0
- package/esm/shared/Eufemia.js +1 -1
- package/esm/shared/EventEmitter.d.ts +27 -0
- package/esm/shared/MediaQueryUtils.d.ts +66 -0
- package/esm/shared/SpacingHelper.d.ts +1 -0
- package/esm/shared/component-helper.d.ts +60 -0
- package/esm/shared/component-helper.js +8 -0
- package/esm/shared/custom-element-polyfill.d.ts +25 -0
- package/esm/shared/custom-element.d.ts +5 -0
- package/esm/shared/defaults.d.ts +7 -0
- package/esm/shared/error-helper.d.ts +15 -0
- package/esm/shared/helpers/Suffix.d.ts +10 -7
- package/esm/shared/helpers/Suffix.js +2 -10
- package/esm/shared/helpers/withCamelCaseProps.d.ts +39 -0
- package/esm/shared/helpers/withCamelCaseProps.js +22 -3
- package/esm/shared/helpers.d.ts +44 -0
- package/esm/shared/hooks/index.d.ts +1 -0
- package/esm/shared/hooks/usePropsWithContext.d.ts +14 -0
- package/esm/shared/index.d.ts +6 -12
- package/esm/shared/interfaces.d.ts +10 -0
- package/esm/shared/libs/HashSum.d.ts +1 -0
- package/esm/shared/libs/MurmurHash2.d.ts +1 -0
- package/esm/shared/libs/Shortcuts.d.ts +6 -0
- package/esm/shared/locales/en-GB.d.ts +119 -0
- package/esm/shared/locales/en-US.d.ts +120 -0
- package/esm/shared/locales/index.d.ts +235 -5
- package/esm/shared/locales/nb-NO.d.ts +119 -0
- package/esm/shared/stories/translation/en.json +4 -0
- package/esm/shared/stories/translation/nb.json +4 -0
- package/esm/shared/useMediaQuery.d.ts +1 -0
- package/esm/shared/useTranslation.d.ts +34 -0
- package/esm/style/basis.d.ts +1 -0
- package/esm/style/body.d.ts +1 -0
- package/esm/style/components.d.ts +1 -0
- package/esm/style/core.d.ts +1 -0
- package/esm/style/dnb-ui-components.css +757 -614
- package/esm/style/dnb-ui-components.min.css +2 -2
- package/esm/style/dnb-ui-components.scss +2 -0
- package/esm/style/elements.d.ts +1 -0
- package/esm/style/extensions.d.ts +1 -0
- package/esm/style/index.d.ts +1 -0
- package/esm/style/properties.d.ts +81 -0
- package/esm/style/tags.d.ts +1 -0
- package/esm/style/theme.d.ts +1 -0
- package/esm/style/themes/index.d.ts +1 -0
- package/esm/style/themes/open-banking.d.ts +1 -0
- package/esm/style/themes/theme-open-banking/dnb-theme-open-banking.css +51 -4
- package/esm/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +2 -2
- package/esm/style/themes/theme-ui/dnb-theme-ui.css +51 -4
- package/esm/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
- package/esm/style/themes/theme-ui/dnb-theme-ui.scss +2 -0
- package/esm/style/themes/theme-ui/prism/dnb-prism-styles.d.ts +6 -0
- package/esm/style/themes/theme-ui/prism/dnb-prism-theme.d.ts +29 -0
- package/esm/style/themes/ui.d.ts +1 -0
- package/esm/umd/dnb-ui-basis.d.ts +1 -0
- package/esm/umd/dnb-ui-components.d.ts +1 -0
- package/esm/umd/dnb-ui-elements.d.ts +1 -0
- package/esm/umd/dnb-ui-extensions.d.ts +1 -0
- package/esm/umd/dnb-ui-icons-archive.d.ts +1 -0
- package/esm/umd/dnb-ui-icons.d.ts +2 -0
- package/esm/umd/dnb-ui-lib.d.ts +2 -0
- package/esm/umd/dnb-ui-web-components.d.ts +1 -0
- package/esm/vue.d.ts +6 -0
- package/esm/web-components.d.ts +1 -0
- package/extensions/index.d.ts +2 -16
- package/extensions/lib.d.ts +6 -0
- package/extensions/payment-card/PaymentCard.d.ts +92 -129
- package/extensions/payment-card/icons/BankAxept.d.ts +20 -15
- package/extensions/payment-card/icons/Clock.d.ts +20 -12
- package/extensions/payment-card/icons/DNB.d.ts +20 -15
- package/extensions/payment-card/icons/DNBMetalic.d.ts +20 -16
- package/extensions/payment-card/icons/MastercardDefault.d.ts +23 -12
- package/extensions/payment-card/icons/MastercardMetalic.d.ts +17 -11
- package/extensions/payment-card/icons/MastercardMetalicBlack.d.ts +17 -11
- package/extensions/payment-card/icons/PB.d.ts +20 -15
- package/extensions/payment-card/icons/PBPlatinum.d.ts +17 -11
- package/extensions/payment-card/icons/Padlock.d.ts +20 -12
- package/extensions/payment-card/icons/Pluss.d.ts +20 -15
- package/extensions/payment-card/icons/SagaGold.d.ts +17 -11
- package/extensions/payment-card/icons/SagaPlatinum.d.ts +17 -12
- package/extensions/payment-card/icons/SagaVisaPlatinum.d.ts +17 -12
- package/extensions/payment-card/icons/VisaDefault.d.ts +20 -15
- package/extensions/payment-card/icons/VisaMetalic.d.ts +17 -11
- package/extensions/payment-card/icons/index.d.ts +15 -98
- package/extensions/payment-card/index.d.ts +3 -8
- package/extensions/payment-card/style/index.d.ts +1 -6
- package/extensions/payment-card/style/themes/ui.d.ts +1 -0
- package/extensions/payment-card/style.d.ts +1 -0
- package/extensions/payment-card/utils/CardDesigns.d.ts +242 -0
- package/extensions/payment-card/utils/Types.d.ts +91 -0
- package/extensions/payment-card/utils/cardProducts.d.ts +18 -0
- package/extensions/payment-card/web-component.d.ts +3 -0
- package/extensions/style/index.d.ts +1 -6
- package/extensions/vue.d.ts +6 -0
- package/extensions/web-components.d.ts +1 -0
- package/fragments/DrawerList.d.ts +3 -14
- package/fragments/ScrollView.d.ts +3 -14
- package/fragments/drawer-list/DrawerList.d.ts +133 -131
- package/fragments/drawer-list/DrawerListContext.d.ts +3 -0
- package/fragments/drawer-list/DrawerListHelpers.d.ts +141 -0
- package/fragments/drawer-list/DrawerListPortal.d.ts +3 -1
- package/fragments/drawer-list/DrawerListProvider.d.ts +210 -149
- package/fragments/drawer-list/index.d.ts +3 -8
- package/fragments/drawer-list/style/index.d.ts +1 -6
- package/fragments/drawer-list/style/themes/ui.d.ts +1 -0
- package/fragments/drawer-list/style.d.ts +1 -0
- package/fragments/drawer-list/web-component.d.ts +3 -0
- package/fragments/index.d.ts +3 -17
- package/fragments/lib.d.ts +12 -0
- package/fragments/scroll-view/ScrollView.d.ts +14 -0
- package/fragments/scroll-view/index.d.ts +3 -8
- package/fragments/scroll-view/style/index.d.ts +1 -6
- package/fragments/scroll-view/style/themes/ui.d.ts +1 -0
- package/fragments/scroll-view/style.d.ts +1 -0
- package/fragments/scroll-view/web-component.d.ts +3 -0
- package/icons/above_the_line.d.ts +2 -0
- package/icons/above_the_line_medium.d.ts +2 -0
- package/icons/account.d.ts +2 -0
- package/icons/account_card.d.ts +2 -0
- package/icons/account_card_medium.d.ts +2 -0
- package/icons/account_in.d.ts +2 -0
- package/icons/account_in_medium.d.ts +2 -0
- package/icons/account_medium.d.ts +2 -0
- package/icons/account_out.d.ts +2 -0
- package/icons/account_out_medium.d.ts +2 -0
- package/icons/account_percent.d.ts +2 -0
- package/icons/add.d.ts +2 -0
- package/icons/add_circled.d.ts +2 -0
- package/icons/add_circled_medium.d.ts +2 -0
- package/icons/add_medium.d.ts +2 -0
- package/icons/ainvoice.d.ts +2 -0
- package/icons/ainvoice_medium.d.ts +2 -0
- package/icons/ambulance.d.ts +2 -0
- package/icons/ambulance_medium.d.ts +2 -0
- package/icons/animal_print.d.ts +2 -0
- package/icons/animal_print_medium.d.ts +2 -0
- package/icons/apple_watch.d.ts +2 -0
- package/icons/apple_watch_medium.d.ts +2 -0
- package/icons/arrow_down.d.ts +2 -0
- package/icons/arrow_down_medium.d.ts +2 -0
- package/icons/arrow_left.d.ts +2 -0
- package/icons/arrow_left_medium.d.ts +2 -0
- package/icons/arrow_right.d.ts +2 -0
- package/icons/arrow_right_medium.d.ts +2 -0
- package/icons/arrow_up.d.ts +2 -0
- package/icons/arrow_up_medium.d.ts +2 -0
- package/icons/attachment.d.ts +2 -0
- package/icons/attachment_medium.d.ts +2 -0
- package/icons/baby.d.ts +2 -0
- package/icons/baby_medium.d.ts +2 -0
- package/icons/bandage.d.ts +2 -0
- package/icons/bandage_medium.d.ts +2 -0
- package/icons/bank.d.ts +2 -0
- package/icons/bank_medium.d.ts +2 -0
- package/icons/bankid.d.ts +2 -0
- package/icons/bankid_medium.d.ts +2 -0
- package/icons/bankid_mobile.d.ts +2 -0
- package/icons/bankid_mobile_medium.d.ts +2 -0
- package/icons/bankid_qr.d.ts +2 -0
- package/icons/bankid_qr_medium.d.ts +2 -0
- package/icons/bell.d.ts +2 -0
- package/icons/bell_medium.d.ts +2 -0
- package/icons/bicycle.d.ts +2 -0
- package/icons/bicycle_medium.d.ts +2 -0
- package/icons/boat.d.ts +2 -0
- package/icons/boat_medium.d.ts +2 -0
- package/icons/bowling.d.ts +2 -0
- package/icons/bowling_medium.d.ts +2 -0
- package/icons/brickwall.d.ts +2 -0
- package/icons/brickwall_medium.d.ts +2 -0
- package/icons/broken_chain.d.ts +2 -0
- package/icons/broken_chain_medium.d.ts +2 -0
- package/icons/brush.d.ts +2 -0
- package/icons/brush_medium.d.ts +2 -0
- package/icons/bsu.d.ts +2 -0
- package/icons/bsu_medium.d.ts +2 -0
- package/icons/bubble.d.ts +2 -0
- package/icons/bubble_medium.d.ts +2 -0
- package/icons/building_construction.d.ts +2 -0
- package/icons/building_construction_medium.d.ts +2 -0
- package/icons/calculator.d.ts +2 -0
- package/icons/calculator_medium.d.ts +2 -0
- package/icons/calendar.d.ts +2 -0
- package/icons/calendar_medium.d.ts +2 -0
- package/icons/camera.d.ts +2 -0
- package/icons/camera_medium.d.ts +2 -0
- package/icons/camper_trailer.d.ts +2 -0
- package/icons/camper_trailer_medium.d.ts +2 -0
- package/icons/car_1.d.ts +2 -0
- package/icons/car_1_medium.d.ts +2 -0
- package/icons/car_2.d.ts +2 -0
- package/icons/car_2_medium.d.ts +2 -0
- package/icons/caravan.d.ts +2 -0
- package/icons/caravan_medium.d.ts +2 -0
- package/icons/card.d.ts +2 -0
- package/icons/card_in.d.ts +2 -0
- package/icons/card_in_medium.d.ts +2 -0
- package/icons/card_medium.d.ts +2 -0
- package/icons/card_out.d.ts +2 -0
- package/icons/card_out_medium.d.ts +2 -0
- package/icons/card_with_padlock.d.ts +2 -0
- package/icons/card_with_padlock_medium.d.ts +2 -0
- package/icons/cat.d.ts +2 -0
- package/icons/cat_medium.d.ts +2 -0
- package/icons/chain.d.ts +2 -0
- package/icons/chain_medium.d.ts +2 -0
- package/icons/charger.d.ts +2 -0
- package/icons/charger_medium.d.ts +2 -0
- package/icons/chat.d.ts +2 -0
- package/icons/chat_medium.d.ts +2 -0
- package/icons/chatbot.d.ts +2 -0
- package/icons/chatbot_medium.d.ts +2 -0
- package/icons/check.d.ts +2 -0
- package/icons/check_medium.d.ts +2 -0
- package/icons/chevron_down.d.ts +2 -0
- package/icons/chevron_down_medium.d.ts +2 -0
- package/icons/chevron_left.d.ts +2 -0
- package/icons/chevron_left_medium.d.ts +2 -0
- package/icons/chevron_right.d.ts +2 -0
- package/icons/chevron_right_medium.d.ts +2 -0
- package/icons/chevron_up.d.ts +2 -0
- package/icons/chevron_up_medium.d.ts +2 -0
- package/icons/chip.d.ts +2 -0
- package/icons/chip_medium.d.ts +2 -0
- package/icons/clock.d.ts +2 -0
- package/icons/clock_medium.d.ts +2 -0
- package/icons/close.d.ts +2 -0
- package/icons/close_medium.d.ts +2 -0
- package/icons/cloud.d.ts +2 -0
- package/icons/cloud_download.d.ts +2 -0
- package/icons/cloud_download_medium.d.ts +2 -0
- package/icons/cloud_medium.d.ts +2 -0
- package/icons/cloud_rain.d.ts +2 -0
- package/icons/cloud_rain_medium.d.ts +2 -0
- package/icons/cloud_sync.d.ts +2 -0
- package/icons/cloud_sync_medium.d.ts +2 -0
- package/icons/cloud_transfer.d.ts +2 -0
- package/icons/cloud_transfer_medium.d.ts +2 -0
- package/icons/cloud_upload.d.ts +2 -0
- package/icons/cloud_upload_medium.d.ts +2 -0
- package/icons/cog.d.ts +2 -0
- package/icons/cog_medium.d.ts +2 -0
- package/icons/coins_1.d.ts +2 -0
- package/icons/coins_1_medium.d.ts +2 -0
- package/icons/coins_2.d.ts +2 -0
- package/icons/coins_2_medium.d.ts +2 -0
- package/icons/coins_3.d.ts +2 -0
- package/icons/coins_3_medium.d.ts +2 -0
- package/icons/compose.d.ts +2 -0
- package/icons/compose_medium.d.ts +2 -0
- package/icons/confetti.d.ts +2 -0
- package/icons/confetti_medium.d.ts +2 -0
- package/icons/contacts.d.ts +2 -0
- package/icons/contacts_medium.d.ts +2 -0
- package/icons/cookie.d.ts +2 -0
- package/icons/cookie_medium.d.ts +2 -0
- package/icons/copy.d.ts +2 -0
- package/icons/copy_medium.d.ts +2 -0
- package/icons/credit_note.d.ts +2 -0
- package/icons/credit_note_medium.d.ts +2 -0
- package/icons/currency.d.ts +2 -0
- package/icons/currency_medium.d.ts +2 -0
- package/icons/customer_service.d.ts +2 -0
- package/icons/customer_service_medium.d.ts +2 -0
- package/icons/deleted_invoice.d.ts +2 -0
- package/icons/deleted_invoice_medium.d.ts +2 -0
- package/icons/diamond.d.ts +2 -0
- package/icons/diamond_medium.d.ts +2 -0
- package/icons/digipass.d.ts +2 -0
- package/icons/digipass_medium.d.ts +2 -0
- package/icons/digipost.d.ts +2 -0
- package/icons/digipost_medium.d.ts +2 -0
- package/icons/dismiss_keyboard.d.ts +2 -0
- package/icons/dismiss_keyboard_medium.d.ts +2 -0
- package/icons/document.d.ts +2 -0
- package/icons/document_add.d.ts +2 -0
- package/icons/document_add_medium.d.ts +2 -0
- package/icons/document_contract.d.ts +2 -0
- package/icons/document_contract_medium.d.ts +2 -0
- package/icons/document_csv.d.ts +2 -0
- package/icons/document_csv_medium.d.ts +2 -0
- package/icons/document_loupe.d.ts +2 -0
- package/icons/document_loupe_medium.d.ts +2 -0
- package/icons/document_medium.d.ts +2 -0
- package/icons/document_pdf.d.ts +2 -0
- package/icons/document_pdf_medium.d.ts +2 -0
- package/icons/document_rejected.d.ts +2 -0
- package/icons/document_rejected_medium.d.ts +2 -0
- package/icons/document_signing.d.ts +2 -0
- package/icons/document_signing_medium.d.ts +2 -0
- package/icons/document_txt.d.ts +2 -0
- package/icons/document_txt_medium.d.ts +2 -0
- package/icons/document_warning.d.ts +2 -0
- package/icons/document_warning_medium.d.ts +2 -0
- package/icons/document_word.d.ts +2 -0
- package/icons/document_word_medium.d.ts +2 -0
- package/icons/document_xls.d.ts +2 -0
- package/icons/document_xls_medium.d.ts +2 -0
- package/icons/dog.d.ts +2 -0
- package/icons/dog_medium.d.ts +2 -0
- package/icons/download.d.ts +2 -0
- package/icons/download_medium.d.ts +2 -0
- package/icons/edit.d.ts +2 -0
- package/icons/edit_medium.d.ts +2 -0
- package/icons/einvoice.d.ts +2 -0
- package/icons/einvoice_medium.d.ts +2 -0
- package/icons/email.d.ts +2 -0
- package/icons/email_medium.d.ts +2 -0
- package/icons/equities_and_mutual_funds.d.ts +2 -0
- package/icons/equities_and_mutual_funds_medium.d.ts +2 -0
- package/icons/exclamation.d.ts +2 -0
- package/icons/exclamation_circled.d.ts +2 -0
- package/icons/exclamation_circled_medium.d.ts +2 -0
- package/icons/exclamation_medium.d.ts +2 -0
- package/icons/exclamation_triangle.d.ts +2 -0
- package/icons/exclamation_triangle_medium.d.ts +2 -0
- package/icons/facebook.d.ts +2 -0
- package/icons/facebook_medium.d.ts +2 -0
- package/icons/factory.d.ts +2 -0
- package/icons/factory_medium.d.ts +2 -0
- package/icons/file.d.ts +2 -0
- package/icons/file_add.d.ts +2 -0
- package/icons/file_add_medium.d.ts +2 -0
- package/icons/file_contract.d.ts +2 -0
- package/icons/file_contract_medium.d.ts +2 -0
- package/icons/file_csv.d.ts +2 -0
- package/icons/file_csv_medium.d.ts +2 -0
- package/icons/file_loupe.d.ts +2 -0
- package/icons/file_loupe_medium.d.ts +2 -0
- package/icons/file_medium.d.ts +2 -0
- package/icons/file_pdf.d.ts +2 -0
- package/icons/file_pdf_medium.d.ts +2 -0
- package/icons/file_ppt.d.ts +2 -0
- package/icons/file_ppt_medium.d.ts +2 -0
- package/icons/file_rejected.d.ts +2 -0
- package/icons/file_rejected_medium.d.ts +2 -0
- package/icons/file_signing.d.ts +2 -0
- package/icons/file_signing_medium.d.ts +2 -0
- package/icons/file_txt.d.ts +2 -0
- package/icons/file_txt_medium.d.ts +2 -0
- package/icons/file_warning.d.ts +2 -0
- package/icons/file_warning_medium.d.ts +2 -0
- package/icons/file_word.d.ts +2 -0
- package/icons/file_word_medium.d.ts +2 -0
- package/icons/file_xls.d.ts +2 -0
- package/icons/file_xls_medium.d.ts +2 -0
- package/icons/file_xml.d.ts +2 -0
- package/icons/file_xml_medium.d.ts +2 -0
- package/icons/filter.d.ts +2 -0
- package/icons/filter_medium.d.ts +2 -0
- package/icons/first_aid.d.ts +2 -0
- package/icons/first_aid_medium.d.ts +2 -0
- package/icons/flying_money.d.ts +2 -0
- package/icons/flying_money_medium.d.ts +2 -0
- package/icons/folder.d.ts +2 -0
- package/icons/folder_medium.d.ts +2 -0
- package/icons/fridge.d.ts +2 -0
- package/icons/fridge_medium.d.ts +2 -0
- package/icons/fullscreen.d.ts +2 -0
- package/icons/fullscreen_medium.d.ts +2 -0
- package/icons/fund_in.d.ts +2 -0
- package/icons/fund_out.d.ts +2 -0
- package/icons/funds.d.ts +2 -0
- package/icons/funds_in.d.ts +2 -0
- package/icons/funds_in_medium.d.ts +2 -0
- package/icons/funds_medium.d.ts +2 -0
- package/icons/funds_out.d.ts +2 -0
- package/icons/funds_out_medium.d.ts +2 -0
- package/icons/globe.d.ts +2 -0
- package/icons/globe_medium.d.ts +2 -0
- package/icons/grabber.d.ts +2 -0
- package/icons/grabber_medium.d.ts +2 -0
- package/icons/graph_decrease.d.ts +2 -0
- package/icons/graph_decrease_medium.d.ts +2 -0
- package/icons/graph_increase.d.ts +2 -0
- package/icons/graph_increase_medium.d.ts +2 -0
- package/icons/hamburger.d.ts +2 -0
- package/icons/hamburger_medium.d.ts +2 -0
- package/icons/hand_money.d.ts +2 -0
- package/icons/hand_money_medium.d.ts +2 -0
- package/icons/hanger.d.ts +2 -0
- package/icons/hanger_medium.d.ts +2 -0
- package/icons/heart.d.ts +2 -0
- package/icons/heart_medium.d.ts +2 -0
- package/icons/heart_rate.d.ts +2 -0
- package/icons/heart_rate_medium.d.ts +2 -0
- package/icons/hide.d.ts +2 -0
- package/icons/hide_medium.d.ts +2 -0
- package/icons/history.d.ts +2 -0
- package/icons/history_medium.d.ts +2 -0
- package/icons/home.d.ts +2 -0
- package/icons/home_medium.d.ts +2 -0
- package/icons/horse.d.ts +2 -0
- package/icons/horse_medium.d.ts +2 -0
- package/icons/hourglass.d.ts +2 -0
- package/icons/hourglass_medium.d.ts +2 -0
- package/icons/house_1.d.ts +2 -0
- package/icons/house_1_medium.d.ts +2 -0
- package/icons/house_2.d.ts +2 -0
- package/icons/house_2_medium.d.ts +2 -0
- package/icons/house_value.d.ts +2 -0
- package/icons/house_value_medium.d.ts +2 -0
- package/icons/index.d.ts +501 -1005
- package/icons/information.d.ts +2 -0
- package/icons/information_bubble.d.ts +2 -0
- package/icons/information_bubble_medium.d.ts +2 -0
- package/icons/information_circled.d.ts +2 -0
- package/icons/information_circled_medium.d.ts +2 -0
- package/icons/information_medium.d.ts +2 -0
- package/icons/instagram.d.ts +2 -0
- package/icons/instagram_medium.d.ts +2 -0
- package/icons/insurance.d.ts +2 -0
- package/icons/insurance_medium.d.ts +2 -0
- package/icons/kid_number.d.ts +2 -0
- package/icons/kid_number_medium.d.ts +2 -0
- package/icons/language.d.ts +2 -0
- package/icons/language_medium.d.ts +2 -0
- package/icons/launch.d.ts +2 -0
- package/icons/launch_medium.d.ts +2 -0
- package/icons/leaf.d.ts +2 -0
- package/icons/leaf_medium.d.ts +2 -0
- package/icons/lightbulb.d.ts +2 -0
- package/icons/lightbulb_medium.d.ts +2 -0
- package/icons/linkedin.d.ts +2 -0
- package/icons/linkedin_medium.d.ts +2 -0
- package/icons/list.d.ts +2 -0
- package/icons/list_medium.d.ts +2 -0
- package/icons/loan.d.ts +2 -0
- package/icons/loan_in.d.ts +2 -0
- package/icons/loan_in_medium.d.ts +2 -0
- package/icons/loan_medium.d.ts +2 -0
- package/icons/loan_out.d.ts +2 -0
- package/icons/loan_out_medium.d.ts +2 -0
- package/icons/location.d.ts +2 -0
- package/icons/location_medium.d.ts +2 -0
- package/icons/log_in.d.ts +2 -0
- package/icons/log_in_medium.d.ts +2 -0
- package/icons/log_out.d.ts +2 -0
- package/icons/log_out_medium.d.ts +2 -0
- package/icons/loupe.d.ts +2 -0
- package/icons/loupe_medium.d.ts +2 -0
- package/icons/mastercard.d.ts +2 -0
- package/icons/mastercard_card.d.ts +2 -0
- package/icons/mastercard_card_medium.d.ts +2 -0
- package/icons/mastercard_medium.d.ts +2 -0
- package/icons/megaphone.d.ts +2 -0
- package/icons/megaphone_medium.d.ts +2 -0
- package/icons/microphone.d.ts +2 -0
- package/icons/microphone_medium.d.ts +2 -0
- package/icons/minimize.d.ts +2 -0
- package/icons/minimize_medium.d.ts +2 -0
- package/icons/mobilephone.d.ts +2 -0
- package/icons/mobilephone_medium.d.ts +2 -0
- package/icons/more.d.ts +2 -0
- package/icons/more_medium.d.ts +2 -0
- package/icons/more_vertical.d.ts +2 -0
- package/icons/more_vertical_medium.d.ts +2 -0
- package/icons/motorcycle.d.ts +2 -0
- package/icons/motorcycle_medium.d.ts +2 -0
- package/icons/move.d.ts +2 -0
- package/icons/move_medium.d.ts +2 -0
- package/icons/office_buildings.d.ts +2 -0
- package/icons/office_buildings_medium.d.ts +2 -0
- package/icons/oil.d.ts +2 -0
- package/icons/oil_medium.d.ts +2 -0
- package/icons/owl.d.ts +2 -0
- package/icons/owl_medium.d.ts +2 -0
- package/icons/padlock.d.ts +2 -0
- package/icons/padlock_medium.d.ts +2 -0
- package/icons/paperclip.d.ts +2 -0
- package/icons/paperclip_medium.d.ts +2 -0
- package/icons/paragraph.d.ts +2 -0
- package/icons/paragraph_medium.d.ts +2 -0
- package/icons/pause.d.ts +2 -0
- package/icons/pause_medium.d.ts +2 -0
- package/icons/pay_from.d.ts +2 -0
- package/icons/pay_from_medium.d.ts +2 -0
- package/icons/pension.d.ts +2 -0
- package/icons/pension_medium.d.ts +2 -0
- package/icons/people_1.d.ts +2 -0
- package/icons/people_1_medium.d.ts +2 -0
- package/icons/people_2.d.ts +2 -0
- package/icons/people_2_medium.d.ts +2 -0
- package/icons/person.d.ts +2 -0
- package/icons/person_medium.d.ts +2 -0
- package/icons/person_shield.d.ts +2 -0
- package/icons/person_shield_medium.d.ts +2 -0
- package/icons/phone.d.ts +2 -0
- package/icons/phone_medium.d.ts +2 -0
- package/icons/photo.d.ts +2 -0
- package/icons/photo_medium.d.ts +2 -0
- package/icons/pin.d.ts +2 -0
- package/icons/pin_code.d.ts +2 -0
- package/icons/pin_code_medium.d.ts +2 -0
- package/icons/pin_medium.d.ts +2 -0
- package/icons/plant.d.ts +2 -0
- package/icons/plant_medium.d.ts +2 -0
- package/icons/play.d.ts +2 -0
- package/icons/play_medium.d.ts +2 -0
- package/icons/primary_icons.d.ts +23 -0
- package/icons/primary_icons_medium.d.ts +23 -0
- package/icons/printer.d.ts +2 -0
- package/icons/printer_medium.d.ts +2 -0
- package/icons/products_account_percent_medium.d.ts +2 -0
- package/icons/profile.d.ts +2 -0
- package/icons/profile_medium.d.ts +2 -0
- package/icons/progress.d.ts +2 -0
- package/icons/progress_medium.d.ts +2 -0
- package/icons/question.d.ts +2 -0
- package/icons/question_circled.d.ts +2 -0
- package/icons/question_circled_medium.d.ts +2 -0
- package/icons/question_medium.d.ts +2 -0
- package/icons/recurring.d.ts +2 -0
- package/icons/recurring_medium.d.ts +2 -0
- package/icons/redo.d.ts +2 -0
- package/icons/redo_medium.d.ts +2 -0
- package/icons/ref_number.d.ts +2 -0
- package/icons/ref_number_medium.d.ts +2 -0
- package/icons/refresh.d.ts +2 -0
- package/icons/refresh_medium.d.ts +2 -0
- package/icons/reply.d.ts +2 -0
- package/icons/reply_medium.d.ts +2 -0
- package/icons/reset.d.ts +2 -0
- package/icons/reset_medium.d.ts +2 -0
- package/icons/restaurant.d.ts +2 -0
- package/icons/restaurant_medium.d.ts +2 -0
- package/icons/return_1.d.ts +2 -0
- package/icons/return_1_medium.d.ts +2 -0
- package/icons/save.d.ts +2 -0
- package/icons/save_medium.d.ts +2 -0
- package/icons/savings_account.d.ts +2 -0
- package/icons/savings_account_in.d.ts +2 -0
- package/icons/savings_account_in_medium.d.ts +2 -0
- package/icons/savings_account_medium.d.ts +2 -0
- package/icons/savings_account_out.d.ts +2 -0
- package/icons/savings_account_out_medium.d.ts +2 -0
- package/icons/scissors.d.ts +2 -0
- package/icons/scissors_medium.d.ts +2 -0
- package/icons/scooter.d.ts +2 -0
- package/icons/scooter_medium.d.ts +2 -0
- package/icons/secondary_icons.d.ts +216 -0
- package/icons/secondary_icons_medium.d.ts +216 -0
- package/icons/send.d.ts +2 -0
- package/icons/send_medium.d.ts +2 -0
- package/icons/share_android.d.ts +2 -0
- package/icons/share_android_medium.d.ts +2 -0
- package/icons/share_ios.d.ts +2 -0
- package/icons/share_ios_medium.d.ts +2 -0
- package/icons/shield.d.ts +2 -0
- package/icons/shield_medium.d.ts +2 -0
- package/icons/shopping_cart.d.ts +2 -0
- package/icons/shopping_cart_medium.d.ts +2 -0
- package/icons/snowmobile.d.ts +2 -0
- package/icons/snowmobile_medium.d.ts +2 -0
- package/icons/speedometer.d.ts +2 -0
- package/icons/speedometer_medium.d.ts +2 -0
- package/icons/split.d.ts +2 -0
- package/icons/split_medium.d.ts +2 -0
- package/icons/star.d.ts +2 -0
- package/icons/star_medium.d.ts +2 -0
- package/icons/stocks.d.ts +2 -0
- package/icons/stocks_medium.d.ts +2 -0
- package/icons/stop.d.ts +2 -0
- package/icons/stop_medium.d.ts +2 -0
- package/icons/stopwatch.d.ts +2 -0
- package/icons/stopwatch_medium.d.ts +2 -0
- package/icons/subtract.d.ts +2 -0
- package/icons/subtract_circled.d.ts +2 -0
- package/icons/subtract_circled_medium.d.ts +2 -0
- package/icons/subtract_medium.d.ts +2 -0
- package/icons/support.d.ts +2 -0
- package/icons/support_medium.d.ts +2 -0
- package/icons/swap.d.ts +2 -0
- package/icons/swap_medium.d.ts +2 -0
- package/icons/tag.d.ts +2 -0
- package/icons/tag_medium.d.ts +2 -0
- package/icons/thumbs_down.d.ts +2 -0
- package/icons/thumbs_down_medium.d.ts +2 -0
- package/icons/thumbs_up.d.ts +2 -0
- package/icons/thumbs_up_medium.d.ts +2 -0
- package/icons/tractor.d.ts +2 -0
- package/icons/tractor_medium.d.ts +2 -0
- package/icons/trailer.d.ts +2 -0
- package/icons/trailer_medium.d.ts +2 -0
- package/icons/train.d.ts +2 -0
- package/icons/train_medium.d.ts +2 -0
- package/icons/transfer.d.ts +2 -0
- package/icons/transfer_medium.d.ts +2 -0
- package/icons/transfer_to.d.ts +2 -0
- package/icons/transfer_to_medium.d.ts +2 -0
- package/icons/trash.d.ts +2 -0
- package/icons/trash_medium.d.ts +2 -0
- package/icons/travel.d.ts +2 -0
- package/icons/travel_medium.d.ts +2 -0
- package/icons/undo.d.ts +2 -0
- package/icons/undo_medium.d.ts +2 -0
- package/icons/upload.d.ts +2 -0
- package/icons/upload_medium.d.ts +2 -0
- package/icons/video.d.ts +2 -0
- package/icons/video_medium.d.ts +2 -0
- package/icons/view.d.ts +2 -0
- package/icons/view_medium.d.ts +2 -0
- package/icons/vintage_car.d.ts +2 -0
- package/icons/vintage_car_medium.d.ts +2 -0
- package/icons/volume_off.d.ts +2 -0
- package/icons/volume_off_medium.d.ts +2 -0
- package/icons/volume_on.d.ts +2 -0
- package/icons/volume_on_medium.d.ts +2 -0
- package/icons/wallet.d.ts +2 -0
- package/icons/wallet_medium.d.ts +2 -0
- package/icons/wearables.d.ts +2 -0
- package/icons/wearables_medium.d.ts +2 -0
- package/icons/web.d.ts +2 -0
- package/icons/web_medium.d.ts +2 -0
- package/icons/wheelchair.d.ts +2 -0
- package/icons/wheelchair_medium.d.ts +2 -0
- package/icons/widget_android.d.ts +2 -0
- package/icons/widget_android_medium.d.ts +2 -0
- package/icons/widget_ios.d.ts +2 -0
- package/icons/widget_ios_medium.d.ts +2 -0
- package/index.d.ts +74 -156
- package/index.js +3 -1
- package/lib.d.ts +3 -0
- package/package.json +1 -1
- package/shared/AlignmentHelper.d.ts +17 -10
- package/shared/AnimateHeight.d.ts +45 -0
- package/shared/Context.d.ts +38 -0
- package/shared/Context.js +3 -1
- package/shared/Eufemia.d.ts +1 -0
- package/shared/Eufemia.js +1 -1
- package/shared/EventEmitter.d.ts +27 -0
- package/shared/MediaQuery.d.ts +40 -37
- package/shared/MediaQueryUtils.d.ts +66 -0
- package/shared/Provider.d.ts +52 -14
- package/shared/SpacingHelper.d.ts +1 -0
- package/shared/component-helper.d.ts +60 -0
- package/shared/component-helper.js +8 -0
- package/shared/custom-element-polyfill.d.ts +25 -0
- package/shared/custom-element.d.ts +5 -0
- package/shared/defaults.d.ts +7 -0
- package/shared/error-helper.d.ts +15 -0
- package/shared/helpers/Suffix.d.ts +10 -7
- package/shared/helpers/Suffix.js +2 -10
- package/shared/helpers/withCamelCaseProps.d.ts +39 -0
- package/shared/helpers/withCamelCaseProps.js +22 -3
- package/shared/helpers.d.ts +44 -0
- package/shared/hooks/index.d.ts +1 -0
- package/shared/hooks/usePropsWithContext.d.ts +14 -0
- package/shared/index.d.ts +6 -12
- package/shared/interfaces.d.ts +10 -0
- package/shared/libs/HashSum.d.ts +1 -0
- package/shared/libs/MurmurHash2.d.ts +1 -0
- package/shared/libs/Shortcuts.d.ts +6 -0
- package/shared/locales/en-GB.d.ts +119 -0
- package/shared/locales/en-US.d.ts +120 -0
- package/shared/locales/index.d.ts +235 -5
- package/shared/locales/nb-NO.d.ts +119 -0
- package/shared/stories/translation/en.json +4 -0
- package/shared/stories/translation/nb.json +4 -0
- package/shared/useMediaQuery.d.ts +1 -0
- package/shared/useTranslation.d.ts +34 -0
- package/style/basis.d.ts +1 -0
- package/style/body.d.ts +1 -0
- package/style/components.d.ts +1 -0
- package/style/core.d.ts +1 -0
- package/style/dnb-ui-components.css +757 -614
- package/style/dnb-ui-components.min.css +2 -2
- package/style/dnb-ui-components.scss +2 -0
- package/style/elements.d.ts +1 -0
- package/style/extensions.d.ts +1 -0
- package/style/index.d.ts +1 -0
- package/style/properties.d.ts +81 -0
- package/style/tags.d.ts +1 -0
- package/style/theme.d.ts +1 -0
- package/style/themes/index.d.ts +1 -0
- package/style/themes/open-banking.d.ts +1 -0
- package/style/themes/theme-open-banking/dnb-theme-open-banking.css +51 -4
- package/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +2 -2
- package/style/themes/theme-ui/dnb-theme-ui.css +51 -4
- package/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
- package/style/themes/theme-ui/dnb-theme-ui.scss +2 -0
- package/style/themes/theme-ui/prism/dnb-prism-styles.d.ts +6 -0
- package/style/themes/theme-ui/prism/dnb-prism-theme.d.ts +29 -0
- package/style/themes/ui.d.ts +1 -0
- package/umd/dnb-ui-basis.d.ts +1 -0
- package/umd/dnb-ui-basis.min.js +2 -2
- package/umd/dnb-ui-components.d.ts +1 -0
- package/umd/dnb-ui-components.min.js +5 -5
- package/umd/dnb-ui-elements.d.ts +1 -0
- package/umd/dnb-ui-elements.min.js +1 -1
- package/umd/dnb-ui-extensions.d.ts +1 -0
- package/umd/dnb-ui-extensions.min.js +1 -1
- package/umd/dnb-ui-icons-archive.d.ts +1 -0
- package/umd/dnb-ui-icons.d.ts +2 -0
- package/umd/dnb-ui-lib.d.ts +2 -0
- package/umd/dnb-ui-lib.min.js +4 -4
- package/umd/dnb-ui-web-components.d.ts +1 -0
- package/umd/dnb-ui-web-components.min.js +5 -5
- package/vue.d.ts +6 -0
- package/web-components.d.ts +1 -0
- package/cjs/components/modal/components/ModalHeader.js +0 -124
- package/cjs/components/modal/components/ModalHeaderBar.js +0 -194
- package/cjs/components/modal/components/ModalInner.js +0 -118
- package/cjs/core/jest/enzyme/index.d.ts +0 -13
- package/components/avatar/Avatar.tsx +0 -162
- package/components/avatar/AvatarGroup.tsx +0 -163
- package/components/breadcrumb/Breadcrumb.tsx +0 -259
- package/components/breadcrumb/BreadcrumbItem.tsx +0 -115
- package/components/info-card/InfoCard.tsx +0 -250
- package/components/modal/Modal.tsx +0 -524
- package/components/modal/ModalContent.tsx +0 -520
- package/components/modal/ModalContext.tsx +0 -10
- package/components/modal/ModalRoot.tsx +0 -131
- package/components/modal/components/CloseButton.tsx +0 -56
- package/components/modal/components/ModalHeader.js +0 -70
- package/components/modal/components/ModalHeader.tsx +0 -79
- package/components/modal/components/ModalHeaderBar.js +0 -122
- package/components/modal/components/ModalHeaderBar.tsx +0 -118
- package/components/modal/components/ModalInner.js +0 -66
- package/components/modal/components/ModalInner.tsx +0 -45
- package/components/modal/helpers.ts +0 -63
- package/components/modal/types.ts +0 -271
- package/components/tag/Tag.tsx +0 -196
- package/components/tag/TagContext.tsx +0 -3
- package/components/tag/TagGroup.tsx +0 -76
- package/components/timeline/Timeline.tsx +0 -95
- package/components/timeline/TimelineItem.tsx +0 -191
- package/components/visually-hidden/VisuallyHidden.tsx +0 -74
- package/core/jest/enzyme/index.d.ts +0 -13
- package/es/components/avatar/Avatar.tsx +0 -162
- package/es/components/avatar/AvatarGroup.tsx +0 -163
- package/es/components/breadcrumb/Breadcrumb.tsx +0 -259
- package/es/components/breadcrumb/BreadcrumbItem.tsx +0 -115
- package/es/components/info-card/InfoCard.tsx +0 -250
- package/es/components/modal/Modal.tsx +0 -524
- package/es/components/modal/ModalContent.tsx +0 -520
- package/es/components/modal/ModalContext.tsx +0 -10
- package/es/components/modal/ModalRoot.tsx +0 -131
- package/es/components/modal/components/CloseButton.tsx +0 -56
- package/es/components/modal/components/ModalHeader.js +0 -40
- package/es/components/modal/components/ModalHeader.tsx +0 -79
- package/es/components/modal/components/ModalHeaderBar.js +0 -88
- package/es/components/modal/components/ModalHeaderBar.tsx +0 -118
- package/es/components/modal/components/ModalInner.js +0 -37
- package/es/components/modal/components/ModalInner.tsx +0 -45
- package/es/components/modal/helpers.ts +0 -63
- package/es/components/modal/types.ts +0 -271
- package/es/components/tag/Tag.tsx +0 -196
- package/es/components/tag/TagContext.tsx +0 -3
- package/es/components/tag/TagGroup.tsx +0 -76
- package/es/components/timeline/Timeline.tsx +0 -95
- package/es/components/timeline/TimelineItem.tsx +0 -191
- package/es/components/visually-hidden/VisuallyHidden.tsx +0 -74
- package/es/core/jest/enzyme/index.d.ts +0 -13
- package/es/fragments/scroll-view/ScrollView.tsx +0 -92
- package/es/shared/helpers/withCamelCaseProps.tsx +0 -108
- package/es/shared/hooks/index.ts +0 -1
- package/es/shared/hooks/usePropsWithContext.ts +0 -45
- package/es/shared/interfaces.tsx +0 -12
- package/esm/components/avatar/Avatar.tsx +0 -162
- package/esm/components/avatar/AvatarGroup.tsx +0 -163
- package/esm/components/breadcrumb/Breadcrumb.tsx +0 -259
- package/esm/components/breadcrumb/BreadcrumbItem.tsx +0 -115
- package/esm/components/info-card/InfoCard.tsx +0 -250
- package/esm/components/modal/Modal.tsx +0 -524
- package/esm/components/modal/ModalContent.tsx +0 -520
- package/esm/components/modal/ModalContext.tsx +0 -10
- package/esm/components/modal/ModalRoot.tsx +0 -131
- package/esm/components/modal/components/CloseButton.tsx +0 -56
- package/esm/components/modal/components/ModalHeader.js +0 -70
- package/esm/components/modal/components/ModalHeader.tsx +0 -79
- package/esm/components/modal/components/ModalHeaderBar.js +0 -122
- package/esm/components/modal/components/ModalHeaderBar.tsx +0 -118
- package/esm/components/modal/components/ModalInner.js +0 -66
- package/esm/components/modal/components/ModalInner.tsx +0 -45
- package/esm/components/modal/helpers.ts +0 -63
- package/esm/components/modal/types.ts +0 -271
- package/esm/components/tag/Tag.tsx +0 -196
- package/esm/components/tag/TagContext.tsx +0 -3
- package/esm/components/tag/TagGroup.tsx +0 -76
- package/esm/components/timeline/Timeline.tsx +0 -95
- package/esm/components/timeline/TimelineItem.tsx +0 -191
- package/esm/components/visually-hidden/VisuallyHidden.tsx +0 -74
- package/esm/core/jest/enzyme/index.d.ts +0 -13
- package/esm/fragments/scroll-view/ScrollView.tsx +0 -92
- package/esm/shared/helpers/withCamelCaseProps.tsx +0 -108
- package/esm/shared/hooks/index.ts +0 -1
- package/esm/shared/hooks/usePropsWithContext.ts +0 -45
- package/esm/shared/interfaces.tsx +0 -12
- package/fragments/scroll-view/ScrollView.tsx +0 -92
- package/shared/helpers/withCamelCaseProps.tsx +0 -108
- package/shared/hooks/index.ts +0 -1
- package/shared/hooks/usePropsWithContext.ts +0 -45
- package/shared/interfaces.tsx +0 -12
package/umd/dnb-ui-basis.min.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("react")):"function"==typeof define&&define.amd?define(["exports","react"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).dnbBasis={})}(this,(function(t){"use strict";var e="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{};"function"==typeof e.setTimeout&&setTimeout,"function"==typeof e.clearTimeout&&clearTimeout;function n(t,e){this.fun=t,this.array=e}n.prototype.run=function(){this.fun.apply(null,this.array)};var r=e.performance||{};r.now||r.mozNow||r.msNow||r.oNow||r.webkitNow;new Date;var o=function(t){return t&&t.Math==Math&&t},i=o("object"==typeof globalThis&&globalThis)||o("object"==typeof window&&window)||o("object"==typeof self&&self)||o("object"==typeof i&&i)||function(){return this}()||Function("return this")(),a={},u=function(t){try{return!!t()}catch(t){return!0}},c=!u((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})),f=Function.prototype.call,s=f.bind?f.bind(f):function(){return f.apply(f,arguments)},l={},d={}.propertyIsEnumerable,p=Object.getOwnPropertyDescriptor,v=p&&!d.call({1:2},1);l.f=v?function(t){var e=p(this,t);return!!e&&e.enumerable}:d;var h,y,g=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},m=Function.prototype,w=m.bind,b=m.call,x=w&&w.bind(b),E=w?function(t){return t&&x(b,t)}:function(t){return t&&function(){return b.apply(t,arguments)}},S=E,O=S({}.toString),A=S("".slice),k=function(t){return A(O(t),8,-1)},L=E,j=u,I=k,T=i.Object,P=L("".split),_=j((function(){return!T("z").propertyIsEnumerable(0)}))?function(t){return"String"==I(t)?P(t,""):T(t)}:T,R=i.TypeError,C=function(t){if(null==t)throw R("Can't call method on "+t);return t},M=_,N=C,F=function(t){return M(N(t))},D=function(t){return"function"==typeof t},G=D,$=function(t){return"object"==typeof t?null!==t:G(t)},U=i,B=D,W=function(t){return B(t)?t:void 0},Y=function(t,e){return arguments.length<2?W(U[t]):U[t]&&U[t][e]},K=E({}.isPrototypeOf),z=i,H=Y("navigator","userAgent")||"",V=z.process,q=z.Deno,X=V&&V.versions||q&&q.version,J=X&&X.v8;J&&(y=(h=J.split("."))[0]>0&&h[0]<4?1:+(h[0]+h[1])),!y&&H&&(!(h=H.match(/Edge\/(\d+)/))||h[1]>=74)&&(h=H.match(/Chrome\/(\d+)/))&&(y=+h[1]);var Q=y,Z=Q,tt=u,et=!!Object.getOwnPropertySymbols&&!tt((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&Z&&Z<41})),nt=et&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,rt=Y,ot=D,it=K,at=nt,ut=i.Object,ct=at?function(t){return"symbol"==typeof t}:function(t){var e=rt("Symbol");return ot(e)&&it(e.prototype,ut(t))},ft=i.String,st=function(t){try{return ft(t)}catch(t){return"Object"}},lt=D,dt=st,pt=i.TypeError,vt=function(t){if(lt(t))return t;throw pt(dt(t)+" is not a function")},ht=vt,yt=function(t,e){var n=t[e];return null==n?void 0:ht(n)},gt=s,mt=D,wt=$,bt=i.TypeError,xt={exports:{}},Et=i,St=Object.defineProperty,Ot=function(t,e){try{St(Et,t,{value:e,configurable:!0,writable:!0})}catch(n){Et[t]=e}return e},At=Ot,kt="__core-js_shared__",Lt=i[kt]||At(kt,{}),jt=Lt;(xt.exports=function(t,e){return jt[t]||(jt[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.19.1",mode:"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"});var It=C,Tt=i.Object,Pt=function(t){return Tt(It(t))},_t=Pt,Rt=E({}.hasOwnProperty),Ct=Object.hasOwn||function(t,e){return Rt(_t(t),e)},Mt=E,Nt=0,Ft=Math.random(),Dt=Mt(1..toString),Gt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Dt(++Nt+Ft,36)},$t=i,Ut=xt.exports,Bt=Ct,Wt=Gt,Yt=et,Kt=nt,zt=Ut("wks"),Ht=$t.Symbol,Vt=Ht&&Ht.for,qt=Kt?Ht:Ht&&Ht.withoutSetter||Wt,Xt=function(t){if(!Bt(zt,t)||!Yt&&"string"!=typeof zt[t]){var e="Symbol."+t;Yt&&Bt(Ht,t)?zt[t]=Ht[t]:zt[t]=Kt&&Vt?Vt(e):qt(e)}return zt[t]},Jt=s,Qt=$,Zt=ct,te=yt,ee=function(t,e){var n,r;if("string"===e&&mt(n=t.toString)&&!wt(r=gt(n,t)))return r;if(mt(n=t.valueOf)&&!wt(r=gt(n,t)))return r;if("string"!==e&&mt(n=t.toString)&&!wt(r=gt(n,t)))return r;throw bt("Can't convert object to primitive value")},ne=Xt,re=i.TypeError,oe=ne("toPrimitive"),ie=function(t,e){if(!Qt(t)||Zt(t))return t;var n,r=te(t,oe);if(r){if(void 0===e&&(e="default"),n=Jt(r,t,e),!Qt(n)||Zt(n))return n;throw re("Can't convert object to primitive value")}return void 0===e&&(e="number"),ee(t,e)},ae=ct,ue=function(t){var e=ie(t,"string");return ae(e)?e:e+""},ce=$,fe=i.document,se=ce(fe)&&ce(fe.createElement),le=function(t){return se?fe.createElement(t):{}},de=le,pe=!c&&!u((function(){return 7!=Object.defineProperty(de("div"),"a",{get:function(){return 7}}).a})),ve=c,he=s,ye=l,ge=g,me=F,we=ue,be=Ct,xe=pe,Ee=Object.getOwnPropertyDescriptor;a.f=ve?Ee:function(t,e){if(t=me(t),e=we(e),xe)try{return Ee(t,e)}catch(t){}if(be(t,e))return ge(!he(ye.f,t,e),t[e])};var Se={},Oe=i,Ae=$,ke=Oe.String,Le=Oe.TypeError,je=function(t){if(Ae(t))return t;throw Le(ke(t)+" is not an object")},Ie=c,Te=pe,Pe=je,_e=ue,Re=i.TypeError,Ce=Object.defineProperty;Se.f=Ie?Ce:function(t,e,n){if(Pe(t),e=_e(e),Pe(n),Te)try{return Ce(t,e,n)}catch(t){}if("get"in n||"set"in n)throw Re("Accessors not supported");return"value"in n&&(t[e]=n.value),t};var Me=Se,Ne=g,Fe=c?function(t,e,n){return Me.f(t,e,Ne(1,n))}:function(t,e,n){return t[e]=n,t},De={exports:{}},Ge=D,$e=Lt,Ue=E(Function.toString);Ge($e.inspectSource)||($e.inspectSource=function(t){return Ue(t)});var Be,We,Ye,Ke=$e.inspectSource,ze=D,He=Ke,Ve=i.WeakMap,qe=ze(Ve)&&/native code/.test(He(Ve)),Xe=xt.exports,Je=Gt,Qe=Xe("keys"),Ze=function(t){return Qe[t]||(Qe[t]=Je(t))},tn={},en=qe,nn=i,rn=E,on=$,an=Fe,un=Ct,cn=Lt,fn=Ze,sn=tn,ln="Object already initialized",dn=nn.TypeError,pn=nn.WeakMap;if(en||cn.state){var vn=cn.state||(cn.state=new pn),hn=rn(vn.get),yn=rn(vn.has),gn=rn(vn.set);Be=function(t,e){if(yn(vn,t))throw new dn(ln);return e.facade=t,gn(vn,t,e),e},We=function(t){return hn(vn,t)||{}},Ye=function(t){return yn(vn,t)}}else{var mn=fn("state");sn[mn]=!0,Be=function(t,e){if(un(t,mn))throw new dn(ln);return e.facade=t,an(t,mn,e),e},We=function(t){return un(t,mn)?t[mn]:{}},Ye=function(t){return un(t,mn)}}var wn={set:Be,get:We,has:Ye,enforce:function(t){return Ye(t)?We(t):Be(t,{})},getterFor:function(t){return function(e){var n;if(!on(e)||(n=We(e)).type!==t)throw dn("Incompatible receiver, "+t+" required");return n}}},bn=c,xn=Ct,En=Function.prototype,Sn=bn&&Object.getOwnPropertyDescriptor,On=xn(En,"name"),An={EXISTS:On,PROPER:On&&"something"===function(){}.name,CONFIGURABLE:On&&(!bn||bn&&Sn(En,"name").configurable)},kn=i,Ln=D,jn=Ct,In=Fe,Tn=Ot,Pn=Ke,_n=An.CONFIGURABLE,Rn=wn.get,Cn=wn.enforce,Mn=String(String).split("String");(De.exports=function(t,e,n,r){var o,i=!!r&&!!r.unsafe,a=!!r&&!!r.enumerable,u=!!r&&!!r.noTargetGet,c=r&&void 0!==r.name?r.name:e;Ln(n)&&("Symbol("===String(c).slice(0,7)&&(c="["+String(c).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!jn(n,"name")||_n&&n.name!==c)&&In(n,"name",c),(o=Cn(n)).source||(o.source=Mn.join("string"==typeof c?c:""))),t!==kn?(i?!u&&t[e]&&(a=!0):delete t[e],a?t[e]=n:In(t,e,n)):a?t[e]=n:Tn(e,n)})(Function.prototype,"toString",(function(){return Ln(this)&&Rn(this).source||Pn(this)}));var Nn={},Fn=Math.ceil,Dn=Math.floor,Gn=function(t){var e=+t;return e!=e||0===e?0:(e>0?Dn:Fn)(e)},$n=Gn,Un=Math.max,Bn=Math.min,Wn=function(t,e){var n=$n(t);return n<0?Un(n+e,0):Bn(n,e)},Yn=Gn,Kn=Math.min,zn=function(t){return t>0?Kn(Yn(t),9007199254740991):0},Hn=zn,Vn=function(t){return Hn(t.length)},qn=F,Xn=Wn,Jn=Vn,Qn=function(t){return function(e,n,r){var o,i=qn(e),a=Jn(i),u=Xn(r,a);if(t&&n!=n){for(;a>u;)if((o=i[u++])!=o)return!0}else for(;a>u;u++)if((t||u in i)&&i[u]===n)return t||u||0;return!t&&-1}},Zn={includes:Qn(!0),indexOf:Qn(!1)},tr=Ct,er=F,nr=Zn.indexOf,rr=tn,or=E([].push),ir=function(t,e){var n,r=er(t),o=0,i=[];for(n in r)!tr(rr,n)&&tr(r,n)&&or(i,n);for(;e.length>o;)tr(r,n=e[o++])&&(~nr(i,n)||or(i,n));return i},ar=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],ur=ir,cr=ar.concat("length","prototype");Nn.f=Object.getOwnPropertyNames||function(t){return ur(t,cr)};var fr={};fr.f=Object.getOwnPropertySymbols;var sr=Y,lr=Nn,dr=fr,pr=je,vr=E([].concat),hr=sr("Reflect","ownKeys")||function(t){var e=lr.f(pr(t)),n=dr.f;return n?vr(e,n(t)):e},yr=Ct,gr=hr,mr=a,wr=Se,br=function(t,e){for(var n=gr(e),r=wr.f,o=mr.f,i=0;i<n.length;i++){var a=n[i];yr(t,a)||r(t,a,o(e,a))}},xr=u,Er=D,Sr=/#|\.prototype\./,Or=function(t,e){var n=kr[Ar(t)];return n==jr||n!=Lr&&(Er(e)?xr(e):!!e)},Ar=Or.normalize=function(t){return String(t).replace(Sr,".").toLowerCase()},kr=Or.data={},Lr=Or.NATIVE="N",jr=Or.POLYFILL="P",Ir=Or,Tr=i,Pr=a.f,_r=Fe,Rr=De.exports,Cr=Ot,Mr=br,Nr=Ir,Fr=function(t,e){var n,r,o,i,a,u=t.target,c=t.global,f=t.stat;if(n=c?Tr:f?Tr[u]||Cr(u,{}):(Tr[u]||{}).prototype)for(r in e){if(i=e[r],o=t.noTargetGet?(a=Pr(n,r))&&a.value:n[r],!Nr(c?r:u+(f?".":"#")+r,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;Mr(i,o)}(t.sham||o&&o.sham)&&_r(i,"sham",!0),Rr(n,r,i,t)}},Dr=Function.prototype,Gr=Dr.apply,$r=Dr.bind,Ur=Dr.call,Br="object"==typeof Reflect&&Reflect.apply||($r?Ur.bind(Gr):function(){return Ur.apply(Gr,arguments)}),Wr=k,Yr=Array.isArray||function(t){return"Array"==Wr(t)},Kr={};Kr[Xt("toStringTag")]="z";var zr,Hr="[object z]"===String(Kr),Vr=i,qr=Hr,Xr=D,Jr=k,Qr=Xt("toStringTag"),Zr=Vr.Object,to="Arguments"==Jr(function(){return arguments}()),eo=qr?Jr:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Zr(t),Qr))?n:to?Jr(e):"Object"==(r=Jr(e))&&Xr(e.callee)?"Arguments":r},no=eo,ro=i.String,oo=function(t){if("Symbol"===no(t))throw TypeError("Cannot convert a Symbol value to a string");return ro(t)},io=ir,ao=ar,uo=Object.keys||function(t){return io(t,ao)},co=Se,fo=je,so=F,lo=uo,po=c?Object.defineProperties:function(t,e){fo(t);for(var n,r=so(e),o=lo(e),i=o.length,a=0;i>a;)co.f(t,n=o[a++],r[n]);return t},vo=Y("document","documentElement"),ho=je,yo=po,go=ar,mo=tn,wo=vo,bo=le,xo=Ze("IE_PROTO"),Eo=function(){},So=function(t){return"<script>"+t+"</"+"script>"},Oo=function(t){t.write(So("")),t.close();var e=t.parentWindow.Object;return t=null,e},Ao=function(){try{zr=new ActiveXObject("htmlfile")}catch(t){}var t,e;Ao="undefined"!=typeof document?document.domain&&zr?Oo(zr):((e=bo("iframe")).style.display="none",wo.appendChild(e),e.src=String("javascript:"),(t=e.contentWindow.document).open(),t.write(So("document.F=Object")),t.close(),t.F):Oo(zr);for(var n=go.length;n--;)delete Ao.prototype[go[n]];return Ao()};mo[xo]=!0;var ko=Object.create||function(t,e){var n;return null!==t?(Eo.prototype=ho(t),n=new Eo,Eo.prototype=null,n[xo]=t):n=Ao(),void 0===e?n:yo(n,e)},Lo={},jo=E([].slice),Io=k,To=F,Po=Nn.f,_o=jo,Ro="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Lo.f=function(t){return Ro&&"Window"==Io(t)?function(t){try{return Po(t)}catch(t){return _o(Ro)}}(t):Po(To(t))};var Co={},Mo=Xt;Co.f=Mo;var No=i,Fo=Ct,Do=Co,Go=Se.f,$o=function(t){var e=No.Symbol||(No.Symbol={});Fo(e,t)||Go(e,t,{value:Do.f(t)})},Uo=Se.f,Bo=Ct,Wo=Xt("toStringTag"),Yo=function(t,e,n){t&&!Bo(t=n?t:t.prototype,Wo)&&Uo(t,Wo,{configurable:!0,value:e})},Ko=vt,zo=E(E.bind),Ho=function(t,e){return Ko(t),void 0===e?t:zo?zo(t,e):function(){return t.apply(e,arguments)}},Vo=E,qo=u,Xo=D,Jo=eo,Qo=Ke,Zo=function(){},ti=[],ei=Y("Reflect","construct"),ni=/^\s*(?:class|function)\b/,ri=Vo(ni.exec),oi=!ni.exec(Zo),ii=function(t){if(!Xo(t))return!1;try{return ei(Zo,ti,t),!0}catch(t){return!1}},ai=!ei||qo((function(){var t;return ii(ii.call)||!ii(Object)||!ii((function(){t=!0}))||t}))?function(t){if(!Xo(t))return!1;switch(Jo(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return oi||!!ri(ni,Qo(t))}:ii,ui=i,ci=Yr,fi=ai,si=$,li=Xt("species"),di=ui.Array,pi=function(t){var e;return ci(t)&&(e=t.constructor,(fi(e)&&(e===di||ci(e.prototype))||si(e)&&null===(e=e[li]))&&(e=void 0)),void 0===e?di:e},vi=function(t,e){return new(pi(t))(0===e?0:e)},hi=Ho,yi=_,gi=Pt,mi=Vn,wi=vi,bi=E([].push),xi=function(t){var e=1==t,n=2==t,r=3==t,o=4==t,i=6==t,a=7==t,u=5==t||i;return function(c,f,s,l){for(var d,p,v=gi(c),h=yi(v),y=hi(f,s),g=mi(h),m=0,w=l||wi,b=e?w(c,g):n||a?w(c,0):void 0;g>m;m++)if((u||m in h)&&(p=y(d=h[m],m,v),t))if(e)b[m]=p;else if(p)switch(t){case 3:return!0;case 5:return d;case 6:return m;case 2:bi(b,d)}else switch(t){case 4:return!1;case 7:bi(b,d)}return i?-1:r||o?o:b}},Ei={forEach:xi(0),map:xi(1),filter:xi(2),some:xi(3),every:xi(4),find:xi(5),findIndex:xi(6),filterReject:xi(7)},Si=Fr,Oi=i,Ai=Y,ki=Br,Li=s,ji=E,Ii=c,Ti=et,Pi=u,_i=Ct,Ri=Yr,Ci=D,Mi=$,Ni=K,Fi=ct,Di=je,Gi=Pt,$i=F,Ui=ue,Bi=oo,Wi=g,Yi=ko,Ki=uo,zi=Nn,Hi=Lo,Vi=fr,qi=a,Xi=Se,Ji=l,Qi=jo,Zi=De.exports,ta=xt.exports,ea=tn,na=Gt,ra=Xt,oa=Co,ia=$o,aa=Yo,ua=wn,ca=Ei.forEach,fa=Ze("hidden"),sa="Symbol",la=ra("toPrimitive"),da=ua.set,pa=ua.getterFor(sa),va=Object.prototype,ha=Oi.Symbol,ya=ha&&ha.prototype,ga=Oi.TypeError,ma=Oi.QObject,wa=Ai("JSON","stringify"),ba=qi.f,xa=Xi.f,Ea=Hi.f,Sa=Ji.f,Oa=ji([].push),Aa=ta("symbols"),ka=ta("op-symbols"),La=ta("string-to-symbol-registry"),ja=ta("symbol-to-string-registry"),Ia=ta("wks"),Ta=!ma||!ma.prototype||!ma.prototype.findChild,Pa=Ii&&Pi((function(){return 7!=Yi(xa({},"a",{get:function(){return xa(this,"a",{value:7}).a}})).a}))?function(t,e,n){var r=ba(va,e);r&&delete va[e],xa(t,e,n),r&&t!==va&&xa(va,e,r)}:xa,_a=function(t,e){var n=Aa[t]=Yi(ya);return da(n,{type:sa,tag:t,description:e}),Ii||(n.description=e),n},Ra=function(t,e,n){t===va&&Ra(ka,e,n),Di(t);var r=Ui(e);return Di(n),_i(Aa,r)?(n.enumerable?(_i(t,fa)&&t[fa][r]&&(t[fa][r]=!1),n=Yi(n,{enumerable:Wi(0,!1)})):(_i(t,fa)||xa(t,fa,Wi(1,{})),t[fa][r]=!0),Pa(t,r,n)):xa(t,r,n)},Ca=function(t,e){Di(t);var n=$i(e),r=Ki(n).concat(Da(n));return ca(r,(function(e){Ii&&!Li(Ma,n,e)||Ra(t,e,n[e])})),t},Ma=function(t){var e=Ui(t),n=Li(Sa,this,e);return!(this===va&&_i(Aa,e)&&!_i(ka,e))&&(!(n||!_i(this,e)||!_i(Aa,e)||_i(this,fa)&&this[fa][e])||n)},Na=function(t,e){var n=$i(t),r=Ui(e);if(n!==va||!_i(Aa,r)||_i(ka,r)){var o=ba(n,r);return!o||!_i(Aa,r)||_i(n,fa)&&n[fa][r]||(o.enumerable=!0),o}},Fa=function(t){var e=Ea($i(t)),n=[];return ca(e,(function(t){_i(Aa,t)||_i(ea,t)||Oa(n,t)})),n},Da=function(t){var e=t===va,n=Ea(e?ka:$i(t)),r=[];return ca(n,(function(t){!_i(Aa,t)||e&&!_i(va,t)||Oa(r,Aa[t])})),r};(Ti||(ha=function(){if(Ni(ya,this))throw ga("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?Bi(arguments[0]):void 0,e=na(t),n=function(t){this===va&&Li(n,ka,t),_i(this,fa)&&_i(this[fa],e)&&(this[fa][e]=!1),Pa(this,e,Wi(1,t))};return Ii&&Ta&&Pa(va,e,{configurable:!0,set:n}),_a(e,t)},Zi(ya=ha.prototype,"toString",(function(){return pa(this).tag})),Zi(ha,"withoutSetter",(function(t){return _a(na(t),t)})),Ji.f=Ma,Xi.f=Ra,qi.f=Na,zi.f=Hi.f=Fa,Vi.f=Da,oa.f=function(t){return _a(ra(t),t)},Ii&&(xa(ya,"description",{configurable:!0,get:function(){return pa(this).description}}),Zi(va,"propertyIsEnumerable",Ma,{unsafe:!0}))),Si({global:!0,wrap:!0,forced:!Ti,sham:!Ti},{Symbol:ha}),ca(Ki(Ia),(function(t){ia(t)})),Si({target:sa,stat:!0,forced:!Ti},{for:function(t){var e=Bi(t);if(_i(La,e))return La[e];var n=ha(e);return La[e]=n,ja[n]=e,n},keyFor:function(t){if(!Fi(t))throw ga(t+" is not a symbol");if(_i(ja,t))return ja[t]},useSetter:function(){Ta=!0},useSimple:function(){Ta=!1}}),Si({target:"Object",stat:!0,forced:!Ti,sham:!Ii},{create:function(t,e){return void 0===e?Yi(t):Ca(Yi(t),e)},defineProperty:Ra,defineProperties:Ca,getOwnPropertyDescriptor:Na}),Si({target:"Object",stat:!0,forced:!Ti},{getOwnPropertyNames:Fa,getOwnPropertySymbols:Da}),Si({target:"Object",stat:!0,forced:Pi((function(){Vi.f(1)}))},{getOwnPropertySymbols:function(t){return Vi.f(Gi(t))}}),wa)&&Si({target:"JSON",stat:!0,forced:!Ti||Pi((function(){var t=ha();return"[null]"!=wa([t])||"{}"!=wa({a:t})||"{}"!=wa(Object(t))}))},{stringify:function(t,e,n){var r=Qi(arguments),o=e;if((Mi(e)||void 0!==t)&&!Fi(t))return Ri(e)||(e=function(t,e){if(Ci(o)&&(e=Li(o,this,t,e)),!Fi(e))return e}),r[1]=e,ki(wa,null,r)}});if(!ya[la]){var Ga=ya.valueOf;Zi(ya,la,(function(t){return Li(Ga,this)}))}aa(ha,sa),ea[fa]=!0;var $a=Fr,Ua=u,Ba=F,Wa=a.f,Ya=c,Ka=Ua((function(){Wa(1)}));$a({target:"Object",stat:!0,forced:!Ya||Ka,sham:!Ya},{getOwnPropertyDescriptor:function(t,e){return Wa(Ba(t),e)}});var za=ue,Ha=Se,Va=g,qa=function(t,e,n){var r=za(e);r in t?Ha.f(t,r,Va(0,n)):t[r]=n},Xa=hr,Ja=F,Qa=a,Za=qa;Fr({target:"Object",stat:!0,sham:!c},{getOwnPropertyDescriptors:function(t){for(var e,n,r=Ja(t),o=Qa.f,i=Xa(r),a={},u=0;i.length>u;)void 0!==(n=o(r,e=i[u++]))&&Za(a,e,n);return a}});var tu=c,eu=An.EXISTS,nu=E,ru=Se.f,ou=Function.prototype,iu=nu(ou.toString),au=/^\s*function ([^ (]*)/,uu=nu(au.exec);tu&&!eu&&ru(ou,"name",{configurable:!0,get:function(){try{return uu(au,iu(this))[1]}catch(t){return""}}});var cu=Fr,fu=c,su=i,lu=E,du=Ct,pu=D,vu=K,hu=oo,yu=Se.f,gu=br,mu=su.Symbol,wu=mu&&mu.prototype;if(fu&&pu(mu)&&(!("description"in wu)||void 0!==mu().description)){var bu={},xu=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:hu(arguments[0]),e=vu(wu,this)?new mu(t):void 0===t?mu():mu(t);return""===t&&(bu[e]=!0),e};gu(xu,mu),xu.prototype=wu,wu.constructor=xu;var Eu="Symbol(test)"==String(mu("test")),Su=lu(wu.toString),Ou=lu(wu.valueOf),Au=/^Symbol\((.*)\)[^)]+$/,ku=lu("".replace),Lu=lu("".slice);yu(wu,"description",{configurable:!0,get:function(){var t=Ou(this),e=Su(t);if(du(bu,t))return"";var n=Eu?Lu(e,7,-1):ku(e,Au,"$1");return""===n?void 0:n}}),cu({global:!0,forced:!0},{Symbol:xu})}$o("iterator");var ju=ko,Iu=Se,Tu=Xt("unscopables"),Pu=Array.prototype;null==Pu[Tu]&&Iu.f(Pu,Tu,{configurable:!0,value:ju(null)});var _u,Ru,Cu,Mu=function(t){Pu[Tu][t]=!0},Nu={},Fu=!u((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),Du=i,Gu=Ct,$u=D,Uu=Pt,Bu=Fu,Wu=Ze("IE_PROTO"),Yu=Du.Object,Ku=Yu.prototype,zu=Bu?Yu.getPrototypeOf:function(t){var e=Uu(t);if(Gu(e,Wu))return e[Wu];var n=e.constructor;return $u(n)&&e instanceof n?n.prototype:e instanceof Yu?Ku:null},Hu=u,Vu=D,qu=zu,Xu=De.exports,Ju=Xt("iterator"),Qu=!1;[].keys&&("next"in(Cu=[].keys())?(Ru=qu(qu(Cu)))!==Object.prototype&&(_u=Ru):Qu=!0);var Zu=null==_u||Hu((function(){var t={};return _u[Ju].call(t)!==t}));Zu&&(_u={}),Vu(_u[Ju])||Xu(_u,Ju,(function(){return this}));var tc={IteratorPrototype:_u,BUGGY_SAFARI_ITERATORS:Qu},ec=tc.IteratorPrototype,nc=ko,rc=g,oc=Yo,ic=Nu,ac=function(){return this},uc=function(t,e,n){var r=e+" Iterator";return t.prototype=nc(ec,{next:rc(1,n)}),oc(t,r,!1),ic[r]=ac,t},cc=i,fc=D,sc=cc.String,lc=cc.TypeError,dc=E,pc=je,vc=function(t){if("object"==typeof t||fc(t))return t;throw lc("Can't set "+sc(t)+" as a prototype")},hc=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=dc(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(n,[]),e=n instanceof Array}catch(t){}return function(n,r){return pc(n),vc(r),e?t(n,r):n.__proto__=r,n}}():void 0),yc=Fr,gc=s,mc=An,wc=D,bc=uc,xc=zu,Ec=hc,Sc=Yo,Oc=Fe,Ac=De.exports,kc=Nu,Lc=mc.PROPER,jc=mc.CONFIGURABLE,Ic=tc.IteratorPrototype,Tc=tc.BUGGY_SAFARI_ITERATORS,Pc=Xt("iterator"),_c="keys",Rc="values",Cc="entries",Mc=function(){return this},Nc=function(t,e,n,r,o,i,a){bc(n,e,r);var u,c,f,s=function(t){if(t===o&&h)return h;if(!Tc&&t in p)return p[t];switch(t){case _c:case Rc:case Cc:return function(){return new n(this,t)}}return function(){return new n(this)}},l=e+" Iterator",d=!1,p=t.prototype,v=p[Pc]||p["@@iterator"]||o&&p[o],h=!Tc&&v||s(o),y="Array"==e&&p.entries||v;if(y&&(u=xc(y.call(new t)))!==Object.prototype&&u.next&&(xc(u)!==Ic&&(Ec?Ec(u,Ic):wc(u[Pc])||Ac(u,Pc,Mc)),Sc(u,l,!0)),Lc&&o==Rc&&v&&v.name!==Rc&&(jc?Oc(p,"name",Rc):(d=!0,h=function(){return gc(v,this)})),o)if(c={values:s(Rc),keys:i?h:s(_c),entries:s(Cc)},a)for(f in c)(Tc||d||!(f in p))&&Ac(p,f,c[f]);else yc({target:e,proto:!0,forced:Tc||d},c);return p[Pc]!==h&&Ac(p,Pc,h,{name:o}),kc[e]=h,c},Fc=F,Dc=Mu,Gc=Nu,$c=wn,Uc=Nc,Bc="Array Iterator",Wc=$c.set,Yc=$c.getterFor(Bc),Kc=Uc(Array,"Array",(function(t,e){Wc(this,{type:Bc,target:Fc(t),index:0,kind:e})}),(function(){var t=Yc(this),e=t.target,n=t.kind,r=t.index++;return!e||r>=e.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==n?{value:r,done:!1}:"values"==n?{value:e[r],done:!1}:{value:[r,e[r]],done:!1}}),"values");Gc.Arguments=Gc.Array,Dc("keys"),Dc("values"),Dc("entries");var zc={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},Hc=le("span").classList,Vc=Hc&&Hc.constructor&&Hc.constructor.prototype,qc=Vc===Object.prototype?void 0:Vc,Xc=i,Jc=zc,Qc=qc,Zc=Kc,tf=Fe,ef=Xt,nf=ef("iterator"),rf=ef("toStringTag"),of=Zc.values,af=function(t,e){if(t){if(t[nf]!==of)try{tf(t,nf,of)}catch(e){t[nf]=of}if(t[rf]||tf(t,rf,e),Jc[e])for(var n in Zc)if(t[n]!==Zc[n])try{tf(t,n,Zc[n])}catch(e){t[n]=Zc[n]}}};for(var uf in Jc)af(Xc[uf]&&Xc[uf].prototype,uf);function cf(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}function ff(t){return function(t){if(Array.isArray(t))return cf(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return cf(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?cf(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function sf(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function lf(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function df(t,e,n){return e&&lf(t.prototype,e),n&&lf(t,n),t}function pf(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}af(Qc,"DOMTokenList");var vf=je,hf=function(){var t=vf(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e},yf={},gf=u,mf=i.RegExp;yf.UNSUPPORTED_Y=gf((function(){var t=mf("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),yf.BROKEN_CARET=gf((function(){var t=mf("^r","gy");return t.lastIndex=2,null!=t.exec("str")}));var wf=u,bf=i.RegExp,xf=wf((function(){var t=bf(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)})),Ef=u,Sf=i.RegExp,Of=Ef((function(){var t=Sf("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),Af=s,kf=E,Lf=oo,jf=hf,If=yf,Tf=xt.exports,Pf=ko,_f=wn.get,Rf=xf,Cf=Of,Mf=Tf("native-string-replace",String.prototype.replace),Nf=RegExp.prototype.exec,Ff=Nf,Df=kf("".charAt),Gf=kf("".indexOf),$f=kf("".replace),Uf=kf("".slice),Bf=function(){var t=/a/,e=/b*/g;return Af(Nf,t,"a"),Af(Nf,e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),Wf=If.UNSUPPORTED_Y||If.BROKEN_CARET,Yf=void 0!==/()??/.exec("")[1];(Bf||Yf||Wf||Rf||Cf)&&(Ff=function(t){var e,n,r,o,i,a,u,c=this,f=_f(c),s=Lf(t),l=f.raw;if(l)return l.lastIndex=c.lastIndex,e=Af(Ff,l,s),c.lastIndex=l.lastIndex,e;var d=f.groups,p=Wf&&c.sticky,v=Af(jf,c),h=c.source,y=0,g=s;if(p&&(v=$f(v,"y",""),-1===Gf(v,"g")&&(v+="g"),g=Uf(s,c.lastIndex),c.lastIndex>0&&(!c.multiline||c.multiline&&"\n"!==Df(s,c.lastIndex-1))&&(h="(?: "+h+")",g=" "+g,y++),n=new RegExp("^(?:"+h+")",v)),Yf&&(n=new RegExp("^"+h+"$(?!\\s)",v)),Bf&&(r=c.lastIndex),o=Af(Nf,p?n:c,g),p?o?(o.input=Uf(o.input,y),o[0]=Uf(o[0],y),o.index=c.lastIndex,c.lastIndex+=o[0].length):c.lastIndex=0:Bf&&o&&(c.lastIndex=c.global?o.index+o[0].length:r),Yf&&o&&o.length>1&&Af(Mf,o[0],n,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)})),o&&d)for(o.groups=a=Pf(null),i=0;i<d.length;i++)a[(u=d[i])[0]]=o[u[1]];return o});var Kf=Ff;Fr({target:"RegExp",proto:!0,forced:/./.exec!==Kf},{exec:Kf});var zf=E,Hf=De.exports,Vf=Kf,qf=u,Xf=Xt,Jf=Fe,Qf=Xf("species"),Zf=RegExp.prototype,ts=function(t,e,n,r){var o=Xf(t),i=!qf((function(){var e={};return e[o]=function(){return 7},7!=""[t](e)})),a=i&&!qf((function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[Qf]=function(){return n},n.flags="",n[o]=/./[o]),n.exec=function(){return e=!0,null},n[o](""),!e}));if(!i||!a||n){var u=zf(/./[o]),c=e(o,""[t],(function(t,e,n,r,o){var a=zf(t),c=e.exec;return c===Vf||c===Zf.exec?i&&!o?{done:!0,value:u(e,n,r)}:{done:!0,value:a(n,e,r)}:{done:!1}}));Hf(String.prototype,t,c[0]),Hf(Zf,o,c[1])}r&&Jf(Zf[o],"sham",!0)},es=E,ns=Gn,rs=oo,os=C,is=es("".charAt),as=es("".charCodeAt),us=es("".slice),cs=function(t){return function(e,n){var r,o,i=rs(os(e)),a=ns(n),u=i.length;return a<0||a>=u?t?"":void 0:(r=as(i,a))<55296||r>56319||a+1===u||(o=as(i,a+1))<56320||o>57343?t?is(i,a):r:t?us(i,a,a+2):o-56320+(r-55296<<10)+65536}},fs={codeAt:cs(!1),charAt:cs(!0)},ss=fs.charAt,ls=function(t,e,n){return e+(n?ss(t,e).length:1)},ds=s,ps=je,vs=D,hs=k,ys=Kf,gs=i.TypeError,ms=function(t,e){var n=t.exec;if(vs(n)){var r=ds(n,t,e);return null!==r&&ps(r),r}if("RegExp"===hs(t))return ds(ys,t,e);throw gs("RegExp#exec called on incompatible receiver")},ws=s,bs=je,xs=zn,Es=oo,Ss=C,Os=yt,As=ls,ks=ms;ts("match",(function(t,e,n){return[function(e){var n=Ss(this),r=null==e?void 0:Os(e,t);return r?ws(r,e,n):new RegExp(e)[t](Es(n))},function(t){var r=bs(this),o=Es(t),i=n(e,r,o);if(i.done)return i.value;if(!r.global)return ks(r,o);var a=r.unicode;r.lastIndex=0;for(var u,c=[],f=0;null!==(u=ks(r,o));){var s=Es(u[0]);c[f]=s,""===s&&(r.lastIndex=As(o,xs(r.lastIndex),a)),f++}return 0===f?null:c}]}));var Ls=D,js=$,Is=hc,Ts=$,Ps=k,_s=Xt("match"),Rs=function(t){var e;return Ts(t)&&(void 0!==(e=t[_s])?!!e:"RegExp"==Ps(t))},Cs=Y,Ms=Se,Ns=c,Fs=Xt("species"),Ds=c,Gs=i,$s=E,Us=Ir,Bs=function(t,e,n){var r,o;return Is&&Ls(r=e.constructor)&&r!==n&&js(o=r.prototype)&&o!==n.prototype&&Is(t,o),t},Ws=Fe,Ys=Se.f,Ks=Nn.f,zs=K,Hs=Rs,Vs=oo,qs=hf,Xs=yf,Js=De.exports,Qs=u,Zs=Ct,tl=wn.enforce,el=function(t){var e=Cs(t),n=Ms.f;Ns&&e&&!e[Fs]&&n(e,Fs,{configurable:!0,get:function(){return this}})},nl=xf,rl=Of,ol=Xt("match"),il=Gs.RegExp,al=il.prototype,ul=Gs.SyntaxError,cl=$s(qs),fl=$s(al.exec),sl=$s("".charAt),ll=$s("".replace),dl=$s("".indexOf),pl=$s("".slice),vl=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,hl=/a/g,yl=/a/g,gl=new il(hl)!==hl,ml=Xs.UNSUPPORTED_Y,wl=Ds&&(!gl||ml||nl||rl||Qs((function(){return yl[ol]=!1,il(hl)!=hl||il(yl)==yl||"/a/i"!=il(hl,"i")})));if(Us("RegExp",wl)){for(var bl=function(t,e){var n,r,o,i,a,u,c=zs(al,this),f=Hs(t),s=void 0===e,l=[],d=t;if(!c&&f&&s&&t.constructor===bl)return t;if((f||zs(al,t))&&(t=t.source,s&&(e="flags"in d?d.flags:cl(d))),t=void 0===t?"":Vs(t),e=void 0===e?"":Vs(e),d=t,nl&&"dotAll"in hl&&(r=!!e&&dl(e,"s")>-1)&&(e=ll(e,/s/g,"")),n=e,ml&&"sticky"in hl&&(o=!!e&&dl(e,"y")>-1)&&(e=ll(e,/y/g,"")),rl&&(i=function(t){for(var e,n=t.length,r=0,o="",i=[],a={},u=!1,c=!1,f=0,s="";r<=n;r++){if("\\"===(e=sl(t,r)))e+=sl(t,++r);else if("]"===e)u=!1;else if(!u)switch(!0){case"["===e:u=!0;break;case"("===e:fl(vl,pl(t,r+1))&&(r+=2,c=!0),o+=e,f++;continue;case">"===e&&c:if(""===s||Zs(a,s))throw new ul("Invalid capture group name");a[s]=!0,i[i.length]=[s,f],c=!1,s="";continue}c?s+=e:o+=e}return[o,i]}(t),t=i[0],l=i[1]),a=Bs(il(t,e),c?this:al,bl),(r||o||l.length)&&(u=tl(a),r&&(u.dotAll=!0,u.raw=bl(function(t){for(var e,n=t.length,r=0,o="",i=!1;r<=n;r++)"\\"!==(e=sl(t,r))?i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]":o+=e+sl(t,++r);return o}(t),n)),o&&(u.sticky=!0),l.length&&(u.groups=l)),t!==d)try{Ws(a,"source",""===d?"(?:)":d)}catch(t){}return a},xl=function(t){t in bl||Ys(bl,t,{configurable:!0,get:function(){return il[t]},set:function(e){il[t]=e}})},El=Ks(il),Sl=0;El.length>Sl;)xl(El[Sl++]);al.constructor=bl,bl.prototype=al,Js(Gs,"RegExp",bl)}el("RegExp");var Ol=E,Al=An.PROPER,kl=De.exports,Ll=je,jl=K,Il=oo,Tl=u,Pl=hf,_l="toString",Rl=RegExp.prototype,Cl=Rl.toString,Ml=Ol(Pl),Nl=Tl((function(){return"/a/b"!=Cl.call({source:"a",flags:"b"})})),Fl=Al&&Cl.name!=_l;(Nl||Fl)&&kl(RegExp.prototype,_l,(function(){var t=Ll(this),e=Il(t.source),n=t.flags;return"/"+e+"/"+Il(void 0===n&&jl(Rl,t)&&!("flags"in Rl)?Ml(t):n)}),{unsafe:!0});var Dl=eo,Gl=Hr?{}.toString:function(){return"[object "+Dl(this)+"]"},$l=Hr,Ul=De.exports,Bl=Gl;$l||Ul(Object.prototype,"toString",Bl,{unsafe:!0});var Wl=u,Yl=function(t,e){var n=[][t];return!!n&&Wl((function(){n.call(null,e||function(){throw 1},1)}))},Kl=Ei.forEach,zl=Yl("forEach")?[].forEach:function(t){return Kl(this,t,arguments.length>1?arguments[1]:void 0)},Hl=i,Vl=zc,ql=qc,Xl=zl,Jl=Fe,Ql=function(t){if(t&&t.forEach!==Xl)try{Jl(t,"forEach",Xl)}catch(e){t.forEach=Xl}};for(var Zl in Vl)Vl[Zl]&&Ql(Hl[Zl]&&Hl[Zl].prototype);Ql(ql);var td=c,ed=E,nd=uo,rd=F,od=ed(l.f),id=ed([].push),ad=function(t){return function(e){for(var n,r=rd(e),o=nd(r),i=o.length,a=0,u=[];i>a;)n=o[a++],td&&!od(r,n)||id(u,t?[n,r[n]]:r[n]);return u}},ud={entries:ad(!0),values:ad(!1)}.entries;Fr({target:"Object",stat:!0},{entries:function(t){return ud(t)}});var cd=u,fd=Q,sd=Xt("species"),ld=function(t){return fd>=51||!cd((function(){var e=[];return(e.constructor={})[sd]=function(){return{foo:1}},1!==e[t](Boolean).foo}))},dd=Ei.filter;Fr({target:"Array",proto:!0,forced:!ld("filter")},{filter:function(t){return dd(this,t,arguments.length>1?arguments[1]:void 0)}});var pd=Ei.map;Fr({target:"Array",proto:!0,forced:!ld("map")},{map:function(t){return pd(this,t,arguments.length>1?arguments[1]:void 0)}});var vd=Fr,hd=Yr,yd=E([].reverse),gd=[1,2];vd({target:"Array",proto:!0,forced:String(gd)===String(gd.reverse())},{reverse:function(){return hd(this)&&(this.length=this.length),yd(this)}});var md=Zn.includes,wd=Mu;Fr({target:"Array",proto:!0},{includes:function(t){return md(this,t,arguments.length>1?arguments[1]:void 0)}}),wd("includes");var bd=Rs,xd=i.TypeError,Ed=function(t){if(bd(t))throw xd("The method doesn't accept regular expressions");return t},Sd=Xt("match"),Od=function(t){var e=/./;try{"/./"[t](e)}catch(n){try{return e[Sd]=!1,"/./"[t](e)}catch(t){}}return!1},Ad=Fr,kd=Ed,Ld=C,jd=oo,Id=Od,Td=E("".indexOf);Ad({target:"String",proto:!0,forced:!Id("includes")},{includes:function(t){return!!~Td(jd(Ld(this)),jd(kd(t)),arguments.length>1?arguments[1]:void 0)}});var Pd=u((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}})),_d=Fr,Rd=u,Cd=$,Md=k,Nd=Pd,Fd=Object.isFrozen;_d({target:"Object",stat:!0,forced:Rd((function(){Fd(1)}))||Nd},{isFrozen:function(t){return!Cd(t)||(!(!Nd||"ArrayBuffer"!=Md(t))||!!Fd&&Fd(t))}});var Dd=vt,Gd=Pt,$d=_,Ud=Vn,Bd=i.TypeError,Wd=function(t){return function(e,n,r,o){Dd(n);var i=Gd(e),a=$d(i),u=Ud(i),c=t?u-1:0,f=t?-1:1;if(r<2)for(;;){if(c in a){o=a[c],c+=f;break}if(c+=f,t?c<0:u<=c)throw Bd("Reduce of empty array with no initial value")}for(;t?c>=0:u>c;c+=f)c in a&&(o=n(o,a[c],c,i));return o}},Yd={left:Wd(!1),right:Wd(!0)},Kd="process"==k(i.process),zd=Yd.left,Hd=Q,Vd=Kd;Fr({target:"Array",proto:!0,forced:!Yl("reduce")||!Vd&&Hd>79&&Hd<83},{reduce:function(t){var e=arguments.length;return zd(this,t,e,e>1?arguments[1]:void 0)}});var qd=Fr,Xd=_,Jd=F,Qd=Yl,Zd=E([].join),tp=Xd!=Object,ep=Qd("join",",");qd({target:"Array",proto:!0,forced:tp||!ep},{join:function(t){return Zd(Jd(this),void 0===t?",":t)}});var np=Pt,rp=uo;Fr({target:"Object",stat:!0,forced:u((function(){rp(1)}))},{keys:function(t){return rp(np(t))}});var op=E,ip=Pt,ap=Math.floor,up=op("".charAt),cp=op("".replace),fp=op("".slice),sp=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,lp=/\$([$&'`]|\d{1,2})/g,dp=Br,pp=s,vp=E,hp=ts,yp=u,gp=je,mp=D,wp=Gn,bp=zn,xp=oo,Ep=C,Sp=ls,Op=yt,Ap=function(t,e,n,r,o,i){var a=n+t.length,u=r.length,c=lp;return void 0!==o&&(o=ip(o),c=sp),cp(i,c,(function(i,c){var f;switch(up(c,0)){case"$":return"$";case"&":return t;case"`":return fp(e,0,n);case"'":return fp(e,a);case"<":f=o[fp(c,1,-1)];break;default:var s=+c;if(0===s)return i;if(s>u){var l=ap(s/10);return 0===l?i:l<=u?void 0===r[l-1]?up(c,1):r[l-1]+up(c,1):i}f=r[s-1]}return void 0===f?"":f}))},kp=ms,Lp=Xt("replace"),jp=Math.max,Ip=Math.min,Tp=vp([].concat),Pp=vp([].push),_p=vp("".indexOf),Rp=vp("".slice),Cp="$0"==="a".replace(/./,"$0"),Mp=!!/./[Lp]&&""===/./[Lp]("a","$0");hp("replace",(function(t,e,n){var r=Mp?"$":"$0";return[function(t,n){var r=Ep(this),o=null==t?void 0:Op(t,Lp);return o?pp(o,t,r,n):pp(e,xp(r),t,n)},function(t,o){var i=gp(this),a=xp(t);if("string"==typeof o&&-1===_p(o,r)&&-1===_p(o,"$<")){var u=n(e,i,a,o);if(u.done)return u.value}var c=mp(o);c||(o=xp(o));var f=i.global;if(f){var s=i.unicode;i.lastIndex=0}for(var l=[];;){var d=kp(i,a);if(null===d)break;if(Pp(l,d),!f)break;""===xp(d[0])&&(i.lastIndex=Sp(a,bp(i.lastIndex),s))}for(var p,v="",h=0,y=0;y<l.length;y++){for(var g=xp((d=l[y])[0]),m=jp(Ip(wp(d.index),a.length),0),w=[],b=1;b<d.length;b++)Pp(w,void 0===(p=d[b])?p:String(p));var x=d.groups;if(c){var E=Tp([g],w,m,a);void 0!==x&&Pp(E,x);var S=xp(dp(o,void 0,E))}else S=Ap(g,a,m,w,x,o);m>=h&&(v+=Rp(a,h,m)+S,h=m+g.length)}return v+Rp(a,h)}]}),!!yp((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!Cp||Mp);var Np=ai,Fp=st,Dp=i.TypeError,Gp=je,$p=function(t){if(Np(t))return t;throw Dp(Fp(t)+" is not a constructor")},Up=Xt("species"),Bp=function(t,e){var n,r=Gp(t).constructor;return void 0===r||null==(n=Gp(r)[Up])?e:$p(n)},Wp=Br,Yp=s,Kp=E,zp=ts,Hp=Rs,Vp=je,qp=C,Xp=Bp,Jp=ls,Qp=zn,Zp=oo,tv=yt,ev=jo,nv=ms,rv=Kf,ov=u,iv=yf.UNSUPPORTED_Y,av=4294967295,uv=Math.min,cv=[].push,fv=Kp(/./.exec),sv=Kp(cv),lv=Kp("".slice),dv=!ov((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]}));zp("split",(function(t,e,n){var r;return r="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,n){var r=Zp(qp(this)),o=void 0===n?av:n>>>0;if(0===o)return[];if(void 0===t)return[r];if(!Hp(t))return Yp(e,r,t,o);for(var i,a,u,c=[],f=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),s=0,l=new RegExp(t.source,f+"g");(i=Yp(rv,l,r))&&!((a=l.lastIndex)>s&&(sv(c,lv(r,s,i.index)),i.length>1&&i.index<r.length&&Wp(cv,c,ev(i,1)),u=i[0].length,s=a,c.length>=o));)l.lastIndex===i.index&&l.lastIndex++;return s===r.length?!u&&fv(l,"")||sv(c,""):sv(c,lv(r,s)),c.length>o?ev(c,0,o):c}:"0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:Yp(e,this,t,n)}:e,[function(e,n){var o=qp(this),i=null==e?void 0:tv(e,t);return i?Yp(i,e,o,n):Yp(r,Zp(o),e,n)},function(t,o){var i=Vp(this),a=Zp(t),u=n(r,i,a,o,r!==e);if(u.done)return u.value;var c=Xp(i,RegExp),f=i.unicode,s=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(iv?"g":"y"),l=new c(iv?"^(?:"+i.source+")":i,s),d=void 0===o?av:o>>>0;if(0===d)return[];if(0===a.length)return null===nv(l,a)?[a]:[];for(var p=0,v=0,h=[];v<a.length;){l.lastIndex=iv?0:v;var y,g=nv(l,iv?lv(a,v):a);if(null===g||(y=uv(Qp(l.lastIndex+(iv?v:0)),a.length))===p)v=Jp(a,v,f);else{if(sv(h,lv(a,p,v)),h.length===d)return h;for(var m=1;m<=g.length-1;m++)if(sv(h,g[m]),h.length===d)return h;v=p=y}}return sv(h,lv(a,p)),h}]}),!dv,iv);var pv=Fr,vv=i,hv=Yr,yv=ai,gv=$,mv=Wn,wv=Vn,bv=F,xv=qa,Ev=Xt,Sv=jo,Ov=ld("slice"),Av=Ev("species"),kv=vv.Array,Lv=Math.max;pv({target:"Array",proto:!0,forced:!Ov},{slice:function(t,e){var n,r,o,i=bv(this),a=wv(i),u=mv(t,a),c=mv(void 0===e?a:e,a);if(hv(i)&&(n=i.constructor,(yv(n)&&(n===kv||hv(n.prototype))||gv(n)&&null===(n=n[Av]))&&(n=void 0),n===kv||void 0===n))return Sv(i,u,c);for(r=new(void 0===n?kv:n)(Lv(c-u,0)),o=0;u<c;u++,o++)u in i&&xv(r,o,i[u]);return r.length=o,r}});var jv=Fr,Iv=i,Tv=s,Pv=E,_v=uc,Rv=C,Cv=zn,Mv=oo,Nv=je,Fv=K,Dv=Rs,Gv=hf,$v=yt,Uv=De.exports,Bv=u,Wv=Bp,Yv=ls,Kv=ms,zv=wn,Hv=Xt("matchAll"),Vv="RegExp String",qv="RegExp String Iterator",Xv=zv.set,Jv=zv.getterFor(qv),Qv=RegExp.prototype,Zv=Iv.TypeError,th=Pv(Gv),eh=Pv("".indexOf),nh=Pv("".matchAll),rh=!!nh&&!Bv((function(){nh("a",/./)})),oh=_v((function(t,e,n,r){Xv(this,{type:qv,regexp:t,string:e,global:n,unicode:r,done:!1})}),Vv,(function(){var t=Jv(this);if(t.done)return{value:void 0,done:!0};var e=t.regexp,n=t.string,r=Kv(e,n);return null===r?{value:void 0,done:t.done=!0}:t.global?(""===Mv(r[0])&&(e.lastIndex=Yv(n,Cv(e.lastIndex),t.unicode)),{value:r,done:!1}):(t.done=!0,{value:r,done:!1})})),ih=function(t){var e,n,r,o,i,a,u=Nv(this),c=Mv(t);return e=Wv(u,RegExp),void 0===(n=u.flags)&&Fv(Qv,u)&&!("flags"in Qv)&&(n=th(u)),r=void 0===n?"":Mv(n),o=new e(e===RegExp?u.source:u,r),i=!!~eh(r,"g"),a=!!~eh(r,"u"),o.lastIndex=Cv(u.lastIndex),new oh(o,c,i,a)};jv({target:"String",proto:!0,forced:rh},{matchAll:function(t){var e,n,r,o=Rv(this);if(null!=t){if(Dv(t)&&(e=Mv(Rv("flags"in Qv?t.flags:th(t))),!~eh(e,"g")))throw Zv("`.matchAll` does not allow non-global regexes");if(rh)return nh(o,t);if(r=$v(t,Hv))return Tv(r,t,o)}else if(rh)return nh(o,t);return n=Mv(o),new RegExp(t,"g")[Hv](n)}}),Hv in Qv||Uv(Qv,Hv,ih);var ah=s,uh=je,ch=yt,fh=je,sh=function(t,e,n){var r,o;uh(t);try{if(!(r=ch(t,"return"))){if("throw"===e)throw n;return n}r=ah(r,t)}catch(t){o=!0,r=t}if("throw"===e)throw n;if(o)throw r;return uh(r),n},lh=Nu,dh=Xt("iterator"),ph=Array.prototype,vh=eo,hh=yt,yh=Nu,gh=Xt("iterator"),mh=function(t){if(null!=t)return hh(t,gh)||hh(t,"@@iterator")||yh[vh(t)]},wh=s,bh=vt,xh=je,Eh=st,Sh=mh,Oh=i.TypeError,Ah=Ho,kh=s,Lh=Pt,jh=function(t,e,n,r){try{return r?e(fh(n)[0],n[1]):e(n)}catch(e){sh(t,"throw",e)}},Ih=function(t){return void 0!==t&&(lh.Array===t||ph[dh]===t)},Th=ai,Ph=Vn,_h=qa,Rh=function(t,e){var n=arguments.length<2?Sh(t):e;if(bh(n))return xh(wh(n,t));throw Oh(Eh(t)+" is not iterable")},Ch=mh,Mh=i.Array,Nh=Xt("iterator"),Fh=!1;try{var Dh=0,Gh={next:function(){return{done:!!Dh++}},return:function(){Fh=!0}};Gh[Nh]=function(){return this},Array.from(Gh,(function(){throw 2}))}catch(t){}var $h=function(t){var e=Lh(t),n=Th(this),r=arguments.length,o=r>1?arguments[1]:void 0,i=void 0!==o;i&&(o=Ah(o,r>2?arguments[2]:void 0));var a,u,c,f,s,l,d=Ch(e),p=0;if(!d||this==Mh&&Ih(d))for(a=Ph(e),u=n?new this(a):Mh(a);a>p;p++)l=i?o(e[p],p):e[p],_h(u,p,l);else for(s=(f=Rh(e,d)).next,u=n?new this:[];!(c=kh(s,f)).done;p++)l=i?jh(f,o,[c.value,p],!0):c.value,_h(u,p,l);return u.length=p,u},Uh=function(t,e){if(!e&&!Fh)return!1;var n=!1;try{var r={};r[Nh]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(t){}return n};Fr({target:"Array",stat:!0,forced:!Uh((function(t){Array.from(t)}))},{from:$h});var Bh=fs.charAt,Wh=oo,Yh=wn,Kh=Nc,zh="String Iterator",Hh=Yh.set,Vh=Yh.getterFor(zh);Kh(String,"String",(function(t){Hh(this,{type:zh,string:Wh(t),index:0})}),(function(){var t,e=Vh(this),n=e.string,r=e.index;return r>=n.length?{value:void 0,done:!0}:(t=Bh(n,r),e.index+=t.length,{value:t,done:!1})}));var qh="\t\n\v\f\r \u2028\u2029\ufeff",Xh=C,Jh=oo,Qh=E("".replace),Zh="[\t\n\v\f\r \u2028\u2029\ufeff]",ty=RegExp("^"+Zh+Zh+"*"),ey=RegExp(Zh+Zh+"*$"),ny=function(t){return function(e){var n=Jh(Xh(e));return 1&t&&(n=Qh(n,ty,"")),2&t&&(n=Qh(n,ey,"")),n}},ry={start:ny(1),end:ny(2),trim:ny(3)},oy=An.PROPER,iy=u,ay=qh,uy=ry.trim;Fr({target:"String",proto:!0,forced:function(t){return iy((function(){return!!ay[t]()||"
"!=="
"[t]()||oy&&ay[t].name!==t}))}("trim")},{trim:function(){return uy(this)}});var cy=Fr,fy=i,sy=u,ly=Yr,dy=$,py=Pt,vy=Vn,hy=qa,yy=vi,gy=ld,my=Q,wy=Xt("isConcatSpreadable"),by=9007199254740991,xy="Maximum allowed index exceeded",Ey=fy.TypeError,Sy=my>=51||!sy((function(){var t=[];return t[wy]=!1,t.concat()[0]!==t})),Oy=gy("concat"),Ay=function(t){if(!dy(t))return!1;var e=t[wy];return void 0!==e?!!e:ly(t)};cy({target:"Array",proto:!0,forced:!Sy||!Oy},{concat:function(t){var e,n,r,o,i,a=py(this),u=yy(a,0),c=0;for(e=-1,r=arguments.length;e<r;e++)if(Ay(i=-1===e?a:arguments[e])){if(c+(o=vy(i))>by)throw Ey(xy);for(n=0;n<o;n++,c++)n in i&&hy(u,c,i[n])}else{if(c>=by)throw Ey(xy);hy(u,c++,i)}return u.length=c,u}});var ky,Ly=Fr,jy=E,Iy=a.f,Ty=zn,Py=oo,_y=Ed,Ry=C,Cy=Od,My=jy("".endsWith),Ny=jy("".slice),Fy=Math.min,Dy=Cy("endsWith");Ly({target:"String",proto:!0,forced:!!(Dy||(ky=Iy(String.prototype,"endsWith"),!ky||ky.writable))&&!Dy},{endsWith:function(t){var e=Py(Ry(this));_y(t);var n=arguments.length>1?arguments[1]:void 0,r=e.length,o=void 0===n?r:Fy(Ty(n),r),i=Py(t);return My?My(e,i,o):Ny(e,o-i.length,o)===i}});var Gy={exports:{}};!function(t,e){function n(t){if(t&&"object"==typeof t){var e=t.which||t.keyCode||t.charCode;e&&(t=e)}if("number"==typeof t)return a[t];var n,i=String(t);return(n=r[i.toLowerCase()])?n:(n=o[i.toLowerCase()])||(1===i.length?i.charCodeAt(0):void 0)}n.isEventKey=function(t,e){if(t&&"object"==typeof t){var n=t.which||t.keyCode||t.charCode;if(null==n)return!1;if("string"==typeof e){var i;if(i=r[e.toLowerCase()])return i===n;if(i=o[e.toLowerCase()])return i===n}else if("number"==typeof e)return e===n;return!1}};var r=(e=t.exports=n).code=e.codes={backspace:8,tab:9,enter:13,shift:16,ctrl:17,alt:18,"pause/break":19,"caps lock":20,esc:27,space:32,"page up":33,"page down":34,end:35,home:36,left:37,up:38,right:39,down:40,insert:45,delete:46,command:91,"left command":91,"right command":93,"numpad *":106,"numpad +":107,"numpad -":109,"numpad .":110,"numpad /":111,"num lock":144,"scroll lock":145,"my computer":182,"my calculator":183,";":186,"=":187,",":188,"-":189,".":190,"/":191,"`":192,"[":219,"\\":220,"]":221,"'":222},o=e.aliases={windows:91,"⇧":16,"⌥":18,"⌃":17,"⌘":91,ctl:17,control:17,option:18,pause:19,break:19,caps:20,return:13,escape:27,spc:32,spacebar:32,pgup:33,pgdn:34,ins:45,del:46,cmd:91};
|
|
1
|
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("react")):"function"==typeof define&&define.amd?define(["exports","react"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).dnbBasis={})}(this,(function(t){"use strict";var e="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{};"function"==typeof e.setTimeout&&setTimeout,"function"==typeof e.clearTimeout&&clearTimeout;function n(t,e){this.fun=t,this.array=e}n.prototype.run=function(){this.fun.apply(null,this.array)};var r=e.performance||{};r.now||r.mozNow||r.msNow||r.oNow||r.webkitNow;new Date;var o=function(t){return t&&t.Math==Math&&t},i=o("object"==typeof globalThis&&globalThis)||o("object"==typeof window&&window)||o("object"==typeof self&&self)||o("object"==typeof i&&i)||function(){return this}()||Function("return this")(),a={},u=function(t){try{return!!t()}catch(t){return!0}},c=!u((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})),f=Function.prototype.call,s=f.bind?f.bind(f):function(){return f.apply(f,arguments)},l={},d={}.propertyIsEnumerable,p=Object.getOwnPropertyDescriptor,v=p&&!d.call({1:2},1);l.f=v?function(t){var e=p(this,t);return!!e&&e.enumerable}:d;var h,y,g=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},m=Function.prototype,w=m.bind,b=m.call,x=w&&w.bind(b),E=w?function(t){return t&&x(b,t)}:function(t){return t&&function(){return b.apply(t,arguments)}},S=E,O=S({}.toString),A=S("".slice),k=function(t){return A(O(t),8,-1)},L=E,j=u,T=k,I=i.Object,P=L("".split),R=j((function(){return!I("z").propertyIsEnumerable(0)}))?function(t){return"String"==T(t)?P(t,""):I(t)}:I,_=i.TypeError,C=function(t){if(null==t)throw _("Can't call method on "+t);return t},M=R,N=C,F=function(t){return M(N(t))},D=function(t){return"function"==typeof t},G=D,$=function(t){return"object"==typeof t?null!==t:G(t)},U=i,B=D,W=function(t){return B(t)?t:void 0},Y=function(t,e){return arguments.length<2?W(U[t]):U[t]&&U[t][e]},K=E({}.isPrototypeOf),z=i,H=Y("navigator","userAgent")||"",V=z.process,q=z.Deno,X=V&&V.versions||q&&q.version,J=X&&X.v8;J&&(y=(h=J.split("."))[0]>0&&h[0]<4?1:+(h[0]+h[1])),!y&&H&&(!(h=H.match(/Edge\/(\d+)/))||h[1]>=74)&&(h=H.match(/Chrome\/(\d+)/))&&(y=+h[1]);var Q=y,Z=Q,tt=u,et=!!Object.getOwnPropertySymbols&&!tt((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&Z&&Z<41})),nt=et&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,rt=Y,ot=D,it=K,at=nt,ut=i.Object,ct=at?function(t){return"symbol"==typeof t}:function(t){var e=rt("Symbol");return ot(e)&&it(e.prototype,ut(t))},ft=i.String,st=function(t){try{return ft(t)}catch(t){return"Object"}},lt=D,dt=st,pt=i.TypeError,vt=function(t){if(lt(t))return t;throw pt(dt(t)+" is not a function")},ht=vt,yt=function(t,e){var n=t[e];return null==n?void 0:ht(n)},gt=s,mt=D,wt=$,bt=i.TypeError,xt={exports:{}},Et=i,St=Object.defineProperty,Ot=function(t,e){try{St(Et,t,{value:e,configurable:!0,writable:!0})}catch(n){Et[t]=e}return e},At=Ot,kt="__core-js_shared__",Lt=i[kt]||At(kt,{}),jt=Lt;(xt.exports=function(t,e){return jt[t]||(jt[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.19.1",mode:"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"});var Tt=C,It=i.Object,Pt=function(t){return It(Tt(t))},Rt=Pt,_t=E({}.hasOwnProperty),Ct=Object.hasOwn||function(t,e){return _t(Rt(t),e)},Mt=E,Nt=0,Ft=Math.random(),Dt=Mt(1..toString),Gt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Dt(++Nt+Ft,36)},$t=i,Ut=xt.exports,Bt=Ct,Wt=Gt,Yt=et,Kt=nt,zt=Ut("wks"),Ht=$t.Symbol,Vt=Ht&&Ht.for,qt=Kt?Ht:Ht&&Ht.withoutSetter||Wt,Xt=function(t){if(!Bt(zt,t)||!Yt&&"string"!=typeof zt[t]){var e="Symbol."+t;Yt&&Bt(Ht,t)?zt[t]=Ht[t]:zt[t]=Kt&&Vt?Vt(e):qt(e)}return zt[t]},Jt=s,Qt=$,Zt=ct,te=yt,ee=function(t,e){var n,r;if("string"===e&&mt(n=t.toString)&&!wt(r=gt(n,t)))return r;if(mt(n=t.valueOf)&&!wt(r=gt(n,t)))return r;if("string"!==e&&mt(n=t.toString)&&!wt(r=gt(n,t)))return r;throw bt("Can't convert object to primitive value")},ne=Xt,re=i.TypeError,oe=ne("toPrimitive"),ie=function(t,e){if(!Qt(t)||Zt(t))return t;var n,r=te(t,oe);if(r){if(void 0===e&&(e="default"),n=Jt(r,t,e),!Qt(n)||Zt(n))return n;throw re("Can't convert object to primitive value")}return void 0===e&&(e="number"),ee(t,e)},ae=ct,ue=function(t){var e=ie(t,"string");return ae(e)?e:e+""},ce=$,fe=i.document,se=ce(fe)&&ce(fe.createElement),le=function(t){return se?fe.createElement(t):{}},de=le,pe=!c&&!u((function(){return 7!=Object.defineProperty(de("div"),"a",{get:function(){return 7}}).a})),ve=c,he=s,ye=l,ge=g,me=F,we=ue,be=Ct,xe=pe,Ee=Object.getOwnPropertyDescriptor;a.f=ve?Ee:function(t,e){if(t=me(t),e=we(e),xe)try{return Ee(t,e)}catch(t){}if(be(t,e))return ge(!he(ye.f,t,e),t[e])};var Se={},Oe=i,Ae=$,ke=Oe.String,Le=Oe.TypeError,je=function(t){if(Ae(t))return t;throw Le(ke(t)+" is not an object")},Te=c,Ie=pe,Pe=je,Re=ue,_e=i.TypeError,Ce=Object.defineProperty;Se.f=Te?Ce:function(t,e,n){if(Pe(t),e=Re(e),Pe(n),Ie)try{return Ce(t,e,n)}catch(t){}if("get"in n||"set"in n)throw _e("Accessors not supported");return"value"in n&&(t[e]=n.value),t};var Me=Se,Ne=g,Fe=c?function(t,e,n){return Me.f(t,e,Ne(1,n))}:function(t,e,n){return t[e]=n,t},De={exports:{}},Ge=D,$e=Lt,Ue=E(Function.toString);Ge($e.inspectSource)||($e.inspectSource=function(t){return Ue(t)});var Be,We,Ye,Ke=$e.inspectSource,ze=D,He=Ke,Ve=i.WeakMap,qe=ze(Ve)&&/native code/.test(He(Ve)),Xe=xt.exports,Je=Gt,Qe=Xe("keys"),Ze=function(t){return Qe[t]||(Qe[t]=Je(t))},tn={},en=qe,nn=i,rn=E,on=$,an=Fe,un=Ct,cn=Lt,fn=Ze,sn=tn,ln="Object already initialized",dn=nn.TypeError,pn=nn.WeakMap;if(en||cn.state){var vn=cn.state||(cn.state=new pn),hn=rn(vn.get),yn=rn(vn.has),gn=rn(vn.set);Be=function(t,e){if(yn(vn,t))throw new dn(ln);return e.facade=t,gn(vn,t,e),e},We=function(t){return hn(vn,t)||{}},Ye=function(t){return yn(vn,t)}}else{var mn=fn("state");sn[mn]=!0,Be=function(t,e){if(un(t,mn))throw new dn(ln);return e.facade=t,an(t,mn,e),e},We=function(t){return un(t,mn)?t[mn]:{}},Ye=function(t){return un(t,mn)}}var wn={set:Be,get:We,has:Ye,enforce:function(t){return Ye(t)?We(t):Be(t,{})},getterFor:function(t){return function(e){var n;if(!on(e)||(n=We(e)).type!==t)throw dn("Incompatible receiver, "+t+" required");return n}}},bn=c,xn=Ct,En=Function.prototype,Sn=bn&&Object.getOwnPropertyDescriptor,On=xn(En,"name"),An={EXISTS:On,PROPER:On&&"something"===function(){}.name,CONFIGURABLE:On&&(!bn||bn&&Sn(En,"name").configurable)},kn=i,Ln=D,jn=Ct,Tn=Fe,In=Ot,Pn=Ke,Rn=An.CONFIGURABLE,_n=wn.get,Cn=wn.enforce,Mn=String(String).split("String");(De.exports=function(t,e,n,r){var o,i=!!r&&!!r.unsafe,a=!!r&&!!r.enumerable,u=!!r&&!!r.noTargetGet,c=r&&void 0!==r.name?r.name:e;Ln(n)&&("Symbol("===String(c).slice(0,7)&&(c="["+String(c).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!jn(n,"name")||Rn&&n.name!==c)&&Tn(n,"name",c),(o=Cn(n)).source||(o.source=Mn.join("string"==typeof c?c:""))),t!==kn?(i?!u&&t[e]&&(a=!0):delete t[e],a?t[e]=n:Tn(t,e,n)):a?t[e]=n:In(e,n)})(Function.prototype,"toString",(function(){return Ln(this)&&_n(this).source||Pn(this)}));var Nn={},Fn=Math.ceil,Dn=Math.floor,Gn=function(t){var e=+t;return e!=e||0===e?0:(e>0?Dn:Fn)(e)},$n=Gn,Un=Math.max,Bn=Math.min,Wn=function(t,e){var n=$n(t);return n<0?Un(n+e,0):Bn(n,e)},Yn=Gn,Kn=Math.min,zn=function(t){return t>0?Kn(Yn(t),9007199254740991):0},Hn=zn,Vn=function(t){return Hn(t.length)},qn=F,Xn=Wn,Jn=Vn,Qn=function(t){return function(e,n,r){var o,i=qn(e),a=Jn(i),u=Xn(r,a);if(t&&n!=n){for(;a>u;)if((o=i[u++])!=o)return!0}else for(;a>u;u++)if((t||u in i)&&i[u]===n)return t||u||0;return!t&&-1}},Zn={includes:Qn(!0),indexOf:Qn(!1)},tr=Ct,er=F,nr=Zn.indexOf,rr=tn,or=E([].push),ir=function(t,e){var n,r=er(t),o=0,i=[];for(n in r)!tr(rr,n)&&tr(r,n)&&or(i,n);for(;e.length>o;)tr(r,n=e[o++])&&(~nr(i,n)||or(i,n));return i},ar=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],ur=ir,cr=ar.concat("length","prototype");Nn.f=Object.getOwnPropertyNames||function(t){return ur(t,cr)};var fr={};fr.f=Object.getOwnPropertySymbols;var sr=Y,lr=Nn,dr=fr,pr=je,vr=E([].concat),hr=sr("Reflect","ownKeys")||function(t){var e=lr.f(pr(t)),n=dr.f;return n?vr(e,n(t)):e},yr=Ct,gr=hr,mr=a,wr=Se,br=function(t,e){for(var n=gr(e),r=wr.f,o=mr.f,i=0;i<n.length;i++){var a=n[i];yr(t,a)||r(t,a,o(e,a))}},xr=u,Er=D,Sr=/#|\.prototype\./,Or=function(t,e){var n=kr[Ar(t)];return n==jr||n!=Lr&&(Er(e)?xr(e):!!e)},Ar=Or.normalize=function(t){return String(t).replace(Sr,".").toLowerCase()},kr=Or.data={},Lr=Or.NATIVE="N",jr=Or.POLYFILL="P",Tr=Or,Ir=i,Pr=a.f,Rr=Fe,_r=De.exports,Cr=Ot,Mr=br,Nr=Tr,Fr=function(t,e){var n,r,o,i,a,u=t.target,c=t.global,f=t.stat;if(n=c?Ir:f?Ir[u]||Cr(u,{}):(Ir[u]||{}).prototype)for(r in e){if(i=e[r],o=t.noTargetGet?(a=Pr(n,r))&&a.value:n[r],!Nr(c?r:u+(f?".":"#")+r,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;Mr(i,o)}(t.sham||o&&o.sham)&&Rr(i,"sham",!0),_r(n,r,i,t)}},Dr=Function.prototype,Gr=Dr.apply,$r=Dr.bind,Ur=Dr.call,Br="object"==typeof Reflect&&Reflect.apply||($r?Ur.bind(Gr):function(){return Ur.apply(Gr,arguments)}),Wr=k,Yr=Array.isArray||function(t){return"Array"==Wr(t)},Kr={};Kr[Xt("toStringTag")]="z";var zr,Hr="[object z]"===String(Kr),Vr=i,qr=Hr,Xr=D,Jr=k,Qr=Xt("toStringTag"),Zr=Vr.Object,to="Arguments"==Jr(function(){return arguments}()),eo=qr?Jr:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Zr(t),Qr))?n:to?Jr(e):"Object"==(r=Jr(e))&&Xr(e.callee)?"Arguments":r},no=eo,ro=i.String,oo=function(t){if("Symbol"===no(t))throw TypeError("Cannot convert a Symbol value to a string");return ro(t)},io=ir,ao=ar,uo=Object.keys||function(t){return io(t,ao)},co=Se,fo=je,so=F,lo=uo,po=c?Object.defineProperties:function(t,e){fo(t);for(var n,r=so(e),o=lo(e),i=o.length,a=0;i>a;)co.f(t,n=o[a++],r[n]);return t},vo=Y("document","documentElement"),ho=je,yo=po,go=ar,mo=tn,wo=vo,bo=le,xo=Ze("IE_PROTO"),Eo=function(){},So=function(t){return"<script>"+t+"</"+"script>"},Oo=function(t){t.write(So("")),t.close();var e=t.parentWindow.Object;return t=null,e},Ao=function(){try{zr=new ActiveXObject("htmlfile")}catch(t){}var t,e;Ao="undefined"!=typeof document?document.domain&&zr?Oo(zr):((e=bo("iframe")).style.display="none",wo.appendChild(e),e.src=String("javascript:"),(t=e.contentWindow.document).open(),t.write(So("document.F=Object")),t.close(),t.F):Oo(zr);for(var n=go.length;n--;)delete Ao.prototype[go[n]];return Ao()};mo[xo]=!0;var ko=Object.create||function(t,e){var n;return null!==t?(Eo.prototype=ho(t),n=new Eo,Eo.prototype=null,n[xo]=t):n=Ao(),void 0===e?n:yo(n,e)},Lo={},jo=E([].slice),To=k,Io=F,Po=Nn.f,Ro=jo,_o="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Lo.f=function(t){return _o&&"Window"==To(t)?function(t){try{return Po(t)}catch(t){return Ro(_o)}}(t):Po(Io(t))};var Co={},Mo=Xt;Co.f=Mo;var No=i,Fo=Ct,Do=Co,Go=Se.f,$o=function(t){var e=No.Symbol||(No.Symbol={});Fo(e,t)||Go(e,t,{value:Do.f(t)})},Uo=Se.f,Bo=Ct,Wo=Xt("toStringTag"),Yo=function(t,e,n){t&&!Bo(t=n?t:t.prototype,Wo)&&Uo(t,Wo,{configurable:!0,value:e})},Ko=vt,zo=E(E.bind),Ho=function(t,e){return Ko(t),void 0===e?t:zo?zo(t,e):function(){return t.apply(e,arguments)}},Vo=E,qo=u,Xo=D,Jo=eo,Qo=Ke,Zo=function(){},ti=[],ei=Y("Reflect","construct"),ni=/^\s*(?:class|function)\b/,ri=Vo(ni.exec),oi=!ni.exec(Zo),ii=function(t){if(!Xo(t))return!1;try{return ei(Zo,ti,t),!0}catch(t){return!1}},ai=!ei||qo((function(){var t;return ii(ii.call)||!ii(Object)||!ii((function(){t=!0}))||t}))?function(t){if(!Xo(t))return!1;switch(Jo(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return oi||!!ri(ni,Qo(t))}:ii,ui=i,ci=Yr,fi=ai,si=$,li=Xt("species"),di=ui.Array,pi=function(t){var e;return ci(t)&&(e=t.constructor,(fi(e)&&(e===di||ci(e.prototype))||si(e)&&null===(e=e[li]))&&(e=void 0)),void 0===e?di:e},vi=function(t,e){return new(pi(t))(0===e?0:e)},hi=Ho,yi=R,gi=Pt,mi=Vn,wi=vi,bi=E([].push),xi=function(t){var e=1==t,n=2==t,r=3==t,o=4==t,i=6==t,a=7==t,u=5==t||i;return function(c,f,s,l){for(var d,p,v=gi(c),h=yi(v),y=hi(f,s),g=mi(h),m=0,w=l||wi,b=e?w(c,g):n||a?w(c,0):void 0;g>m;m++)if((u||m in h)&&(p=y(d=h[m],m,v),t))if(e)b[m]=p;else if(p)switch(t){case 3:return!0;case 5:return d;case 6:return m;case 2:bi(b,d)}else switch(t){case 4:return!1;case 7:bi(b,d)}return i?-1:r||o?o:b}},Ei={forEach:xi(0),map:xi(1),filter:xi(2),some:xi(3),every:xi(4),find:xi(5),findIndex:xi(6),filterReject:xi(7)},Si=Fr,Oi=i,Ai=Y,ki=Br,Li=s,ji=E,Ti=c,Ii=et,Pi=u,Ri=Ct,_i=Yr,Ci=D,Mi=$,Ni=K,Fi=ct,Di=je,Gi=Pt,$i=F,Ui=ue,Bi=oo,Wi=g,Yi=ko,Ki=uo,zi=Nn,Hi=Lo,Vi=fr,qi=a,Xi=Se,Ji=l,Qi=jo,Zi=De.exports,ta=xt.exports,ea=tn,na=Gt,ra=Xt,oa=Co,ia=$o,aa=Yo,ua=wn,ca=Ei.forEach,fa=Ze("hidden"),sa="Symbol",la=ra("toPrimitive"),da=ua.set,pa=ua.getterFor(sa),va=Object.prototype,ha=Oi.Symbol,ya=ha&&ha.prototype,ga=Oi.TypeError,ma=Oi.QObject,wa=Ai("JSON","stringify"),ba=qi.f,xa=Xi.f,Ea=Hi.f,Sa=Ji.f,Oa=ji([].push),Aa=ta("symbols"),ka=ta("op-symbols"),La=ta("string-to-symbol-registry"),ja=ta("symbol-to-string-registry"),Ta=ta("wks"),Ia=!ma||!ma.prototype||!ma.prototype.findChild,Pa=Ti&&Pi((function(){return 7!=Yi(xa({},"a",{get:function(){return xa(this,"a",{value:7}).a}})).a}))?function(t,e,n){var r=ba(va,e);r&&delete va[e],xa(t,e,n),r&&t!==va&&xa(va,e,r)}:xa,Ra=function(t,e){var n=Aa[t]=Yi(ya);return da(n,{type:sa,tag:t,description:e}),Ti||(n.description=e),n},_a=function(t,e,n){t===va&&_a(ka,e,n),Di(t);var r=Ui(e);return Di(n),Ri(Aa,r)?(n.enumerable?(Ri(t,fa)&&t[fa][r]&&(t[fa][r]=!1),n=Yi(n,{enumerable:Wi(0,!1)})):(Ri(t,fa)||xa(t,fa,Wi(1,{})),t[fa][r]=!0),Pa(t,r,n)):xa(t,r,n)},Ca=function(t,e){Di(t);var n=$i(e),r=Ki(n).concat(Da(n));return ca(r,(function(e){Ti&&!Li(Ma,n,e)||_a(t,e,n[e])})),t},Ma=function(t){var e=Ui(t),n=Li(Sa,this,e);return!(this===va&&Ri(Aa,e)&&!Ri(ka,e))&&(!(n||!Ri(this,e)||!Ri(Aa,e)||Ri(this,fa)&&this[fa][e])||n)},Na=function(t,e){var n=$i(t),r=Ui(e);if(n!==va||!Ri(Aa,r)||Ri(ka,r)){var o=ba(n,r);return!o||!Ri(Aa,r)||Ri(n,fa)&&n[fa][r]||(o.enumerable=!0),o}},Fa=function(t){var e=Ea($i(t)),n=[];return ca(e,(function(t){Ri(Aa,t)||Ri(ea,t)||Oa(n,t)})),n},Da=function(t){var e=t===va,n=Ea(e?ka:$i(t)),r=[];return ca(n,(function(t){!Ri(Aa,t)||e&&!Ri(va,t)||Oa(r,Aa[t])})),r};(Ii||(ha=function(){if(Ni(ya,this))throw ga("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?Bi(arguments[0]):void 0,e=na(t),n=function(t){this===va&&Li(n,ka,t),Ri(this,fa)&&Ri(this[fa],e)&&(this[fa][e]=!1),Pa(this,e,Wi(1,t))};return Ti&&Ia&&Pa(va,e,{configurable:!0,set:n}),Ra(e,t)},Zi(ya=ha.prototype,"toString",(function(){return pa(this).tag})),Zi(ha,"withoutSetter",(function(t){return Ra(na(t),t)})),Ji.f=Ma,Xi.f=_a,qi.f=Na,zi.f=Hi.f=Fa,Vi.f=Da,oa.f=function(t){return Ra(ra(t),t)},Ti&&(xa(ya,"description",{configurable:!0,get:function(){return pa(this).description}}),Zi(va,"propertyIsEnumerable",Ma,{unsafe:!0}))),Si({global:!0,wrap:!0,forced:!Ii,sham:!Ii},{Symbol:ha}),ca(Ki(Ta),(function(t){ia(t)})),Si({target:sa,stat:!0,forced:!Ii},{for:function(t){var e=Bi(t);if(Ri(La,e))return La[e];var n=ha(e);return La[e]=n,ja[n]=e,n},keyFor:function(t){if(!Fi(t))throw ga(t+" is not a symbol");if(Ri(ja,t))return ja[t]},useSetter:function(){Ia=!0},useSimple:function(){Ia=!1}}),Si({target:"Object",stat:!0,forced:!Ii,sham:!Ti},{create:function(t,e){return void 0===e?Yi(t):Ca(Yi(t),e)},defineProperty:_a,defineProperties:Ca,getOwnPropertyDescriptor:Na}),Si({target:"Object",stat:!0,forced:!Ii},{getOwnPropertyNames:Fa,getOwnPropertySymbols:Da}),Si({target:"Object",stat:!0,forced:Pi((function(){Vi.f(1)}))},{getOwnPropertySymbols:function(t){return Vi.f(Gi(t))}}),wa)&&Si({target:"JSON",stat:!0,forced:!Ii||Pi((function(){var t=ha();return"[null]"!=wa([t])||"{}"!=wa({a:t})||"{}"!=wa(Object(t))}))},{stringify:function(t,e,n){var r=Qi(arguments),o=e;if((Mi(e)||void 0!==t)&&!Fi(t))return _i(e)||(e=function(t,e){if(Ci(o)&&(e=Li(o,this,t,e)),!Fi(e))return e}),r[1]=e,ki(wa,null,r)}});if(!ya[la]){var Ga=ya.valueOf;Zi(ya,la,(function(t){return Li(Ga,this)}))}aa(ha,sa),ea[fa]=!0;var $a=Fr,Ua=u,Ba=F,Wa=a.f,Ya=c,Ka=Ua((function(){Wa(1)}));$a({target:"Object",stat:!0,forced:!Ya||Ka,sham:!Ya},{getOwnPropertyDescriptor:function(t,e){return Wa(Ba(t),e)}});var za=ue,Ha=Se,Va=g,qa=function(t,e,n){var r=za(e);r in t?Ha.f(t,r,Va(0,n)):t[r]=n},Xa=hr,Ja=F,Qa=a,Za=qa;Fr({target:"Object",stat:!0,sham:!c},{getOwnPropertyDescriptors:function(t){for(var e,n,r=Ja(t),o=Qa.f,i=Xa(r),a={},u=0;i.length>u;)void 0!==(n=o(r,e=i[u++]))&&Za(a,e,n);return a}});var tu=c,eu=An.EXISTS,nu=E,ru=Se.f,ou=Function.prototype,iu=nu(ou.toString),au=/^\s*function ([^ (]*)/,uu=nu(au.exec);tu&&!eu&&ru(ou,"name",{configurable:!0,get:function(){try{return uu(au,iu(this))[1]}catch(t){return""}}});var cu=Fr,fu=c,su=i,lu=E,du=Ct,pu=D,vu=K,hu=oo,yu=Se.f,gu=br,mu=su.Symbol,wu=mu&&mu.prototype;if(fu&&pu(mu)&&(!("description"in wu)||void 0!==mu().description)){var bu={},xu=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:hu(arguments[0]),e=vu(wu,this)?new mu(t):void 0===t?mu():mu(t);return""===t&&(bu[e]=!0),e};gu(xu,mu),xu.prototype=wu,wu.constructor=xu;var Eu="Symbol(test)"==String(mu("test")),Su=lu(wu.toString),Ou=lu(wu.valueOf),Au=/^Symbol\((.*)\)[^)]+$/,ku=lu("".replace),Lu=lu("".slice);yu(wu,"description",{configurable:!0,get:function(){var t=Ou(this),e=Su(t);if(du(bu,t))return"";var n=Eu?Lu(e,7,-1):ku(e,Au,"$1");return""===n?void 0:n}}),cu({global:!0,forced:!0},{Symbol:xu})}$o("iterator");var ju=ko,Tu=Se,Iu=Xt("unscopables"),Pu=Array.prototype;null==Pu[Iu]&&Tu.f(Pu,Iu,{configurable:!0,value:ju(null)});var Ru,_u,Cu,Mu=function(t){Pu[Iu][t]=!0},Nu={},Fu=!u((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),Du=i,Gu=Ct,$u=D,Uu=Pt,Bu=Fu,Wu=Ze("IE_PROTO"),Yu=Du.Object,Ku=Yu.prototype,zu=Bu?Yu.getPrototypeOf:function(t){var e=Uu(t);if(Gu(e,Wu))return e[Wu];var n=e.constructor;return $u(n)&&e instanceof n?n.prototype:e instanceof Yu?Ku:null},Hu=u,Vu=D,qu=zu,Xu=De.exports,Ju=Xt("iterator"),Qu=!1;[].keys&&("next"in(Cu=[].keys())?(_u=qu(qu(Cu)))!==Object.prototype&&(Ru=_u):Qu=!0);var Zu=null==Ru||Hu((function(){var t={};return Ru[Ju].call(t)!==t}));Zu&&(Ru={}),Vu(Ru[Ju])||Xu(Ru,Ju,(function(){return this}));var tc={IteratorPrototype:Ru,BUGGY_SAFARI_ITERATORS:Qu},ec=tc.IteratorPrototype,nc=ko,rc=g,oc=Yo,ic=Nu,ac=function(){return this},uc=function(t,e,n){var r=e+" Iterator";return t.prototype=nc(ec,{next:rc(1,n)}),oc(t,r,!1),ic[r]=ac,t},cc=i,fc=D,sc=cc.String,lc=cc.TypeError,dc=E,pc=je,vc=function(t){if("object"==typeof t||fc(t))return t;throw lc("Can't set "+sc(t)+" as a prototype")},hc=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=dc(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(n,[]),e=n instanceof Array}catch(t){}return function(n,r){return pc(n),vc(r),e?t(n,r):n.__proto__=r,n}}():void 0),yc=Fr,gc=s,mc=An,wc=D,bc=uc,xc=zu,Ec=hc,Sc=Yo,Oc=Fe,Ac=De.exports,kc=Nu,Lc=mc.PROPER,jc=mc.CONFIGURABLE,Tc=tc.IteratorPrototype,Ic=tc.BUGGY_SAFARI_ITERATORS,Pc=Xt("iterator"),Rc="keys",_c="values",Cc="entries",Mc=function(){return this},Nc=function(t,e,n,r,o,i,a){bc(n,e,r);var u,c,f,s=function(t){if(t===o&&h)return h;if(!Ic&&t in p)return p[t];switch(t){case Rc:case _c:case Cc:return function(){return new n(this,t)}}return function(){return new n(this)}},l=e+" Iterator",d=!1,p=t.prototype,v=p[Pc]||p["@@iterator"]||o&&p[o],h=!Ic&&v||s(o),y="Array"==e&&p.entries||v;if(y&&(u=xc(y.call(new t)))!==Object.prototype&&u.next&&(xc(u)!==Tc&&(Ec?Ec(u,Tc):wc(u[Pc])||Ac(u,Pc,Mc)),Sc(u,l,!0)),Lc&&o==_c&&v&&v.name!==_c&&(jc?Oc(p,"name",_c):(d=!0,h=function(){return gc(v,this)})),o)if(c={values:s(_c),keys:i?h:s(Rc),entries:s(Cc)},a)for(f in c)(Ic||d||!(f in p))&&Ac(p,f,c[f]);else yc({target:e,proto:!0,forced:Ic||d},c);return p[Pc]!==h&&Ac(p,Pc,h,{name:o}),kc[e]=h,c},Fc=F,Dc=Mu,Gc=Nu,$c=wn,Uc=Nc,Bc="Array Iterator",Wc=$c.set,Yc=$c.getterFor(Bc),Kc=Uc(Array,"Array",(function(t,e){Wc(this,{type:Bc,target:Fc(t),index:0,kind:e})}),(function(){var t=Yc(this),e=t.target,n=t.kind,r=t.index++;return!e||r>=e.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==n?{value:r,done:!1}:"values"==n?{value:e[r],done:!1}:{value:[r,e[r]],done:!1}}),"values");Gc.Arguments=Gc.Array,Dc("keys"),Dc("values"),Dc("entries");var zc={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},Hc=le("span").classList,Vc=Hc&&Hc.constructor&&Hc.constructor.prototype,qc=Vc===Object.prototype?void 0:Vc,Xc=i,Jc=zc,Qc=qc,Zc=Kc,tf=Fe,ef=Xt,nf=ef("iterator"),rf=ef("toStringTag"),of=Zc.values,af=function(t,e){if(t){if(t[nf]!==of)try{tf(t,nf,of)}catch(e){t[nf]=of}if(t[rf]||tf(t,rf,e),Jc[e])for(var n in Zc)if(t[n]!==Zc[n])try{tf(t,n,Zc[n])}catch(e){t[n]=Zc[n]}}};for(var uf in Jc)af(Xc[uf]&&Xc[uf].prototype,uf);function cf(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}function ff(t){return function(t){if(Array.isArray(t))return cf(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return cf(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?cf(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function sf(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function lf(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function df(t,e,n){return e&&lf(t.prototype,e),n&&lf(t,n),t}function pf(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}af(Qc,"DOMTokenList");var vf=je,hf=function(){var t=vf(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e},yf={},gf=u,mf=i.RegExp;yf.UNSUPPORTED_Y=gf((function(){var t=mf("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),yf.BROKEN_CARET=gf((function(){var t=mf("^r","gy");return t.lastIndex=2,null!=t.exec("str")}));var wf=u,bf=i.RegExp,xf=wf((function(){var t=bf(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)})),Ef=u,Sf=i.RegExp,Of=Ef((function(){var t=Sf("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),Af=s,kf=E,Lf=oo,jf=hf,Tf=yf,If=xt.exports,Pf=ko,Rf=wn.get,_f=xf,Cf=Of,Mf=If("native-string-replace",String.prototype.replace),Nf=RegExp.prototype.exec,Ff=Nf,Df=kf("".charAt),Gf=kf("".indexOf),$f=kf("".replace),Uf=kf("".slice),Bf=function(){var t=/a/,e=/b*/g;return Af(Nf,t,"a"),Af(Nf,e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),Wf=Tf.UNSUPPORTED_Y||Tf.BROKEN_CARET,Yf=void 0!==/()??/.exec("")[1];(Bf||Yf||Wf||_f||Cf)&&(Ff=function(t){var e,n,r,o,i,a,u,c=this,f=Rf(c),s=Lf(t),l=f.raw;if(l)return l.lastIndex=c.lastIndex,e=Af(Ff,l,s),c.lastIndex=l.lastIndex,e;var d=f.groups,p=Wf&&c.sticky,v=Af(jf,c),h=c.source,y=0,g=s;if(p&&(v=$f(v,"y",""),-1===Gf(v,"g")&&(v+="g"),g=Uf(s,c.lastIndex),c.lastIndex>0&&(!c.multiline||c.multiline&&"\n"!==Df(s,c.lastIndex-1))&&(h="(?: "+h+")",g=" "+g,y++),n=new RegExp("^(?:"+h+")",v)),Yf&&(n=new RegExp("^"+h+"$(?!\\s)",v)),Bf&&(r=c.lastIndex),o=Af(Nf,p?n:c,g),p?o?(o.input=Uf(o.input,y),o[0]=Uf(o[0],y),o.index=c.lastIndex,c.lastIndex+=o[0].length):c.lastIndex=0:Bf&&o&&(c.lastIndex=c.global?o.index+o[0].length:r),Yf&&o&&o.length>1&&Af(Mf,o[0],n,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)})),o&&d)for(o.groups=a=Pf(null),i=0;i<d.length;i++)a[(u=d[i])[0]]=o[u[1]];return o});var Kf=Ff;Fr({target:"RegExp",proto:!0,forced:/./.exec!==Kf},{exec:Kf});var zf=E,Hf=De.exports,Vf=Kf,qf=u,Xf=Xt,Jf=Fe,Qf=Xf("species"),Zf=RegExp.prototype,ts=function(t,e,n,r){var o=Xf(t),i=!qf((function(){var e={};return e[o]=function(){return 7},7!=""[t](e)})),a=i&&!qf((function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[Qf]=function(){return n},n.flags="",n[o]=/./[o]),n.exec=function(){return e=!0,null},n[o](""),!e}));if(!i||!a||n){var u=zf(/./[o]),c=e(o,""[t],(function(t,e,n,r,o){var a=zf(t),c=e.exec;return c===Vf||c===Zf.exec?i&&!o?{done:!0,value:u(e,n,r)}:{done:!0,value:a(n,e,r)}:{done:!1}}));Hf(String.prototype,t,c[0]),Hf(Zf,o,c[1])}r&&Jf(Zf[o],"sham",!0)},es=E,ns=Gn,rs=oo,os=C,is=es("".charAt),as=es("".charCodeAt),us=es("".slice),cs=function(t){return function(e,n){var r,o,i=rs(os(e)),a=ns(n),u=i.length;return a<0||a>=u?t?"":void 0:(r=as(i,a))<55296||r>56319||a+1===u||(o=as(i,a+1))<56320||o>57343?t?is(i,a):r:t?us(i,a,a+2):o-56320+(r-55296<<10)+65536}},fs={codeAt:cs(!1),charAt:cs(!0)},ss=fs.charAt,ls=function(t,e,n){return e+(n?ss(t,e).length:1)},ds=s,ps=je,vs=D,hs=k,ys=Kf,gs=i.TypeError,ms=function(t,e){var n=t.exec;if(vs(n)){var r=ds(n,t,e);return null!==r&&ps(r),r}if("RegExp"===hs(t))return ds(ys,t,e);throw gs("RegExp#exec called on incompatible receiver")},ws=s,bs=je,xs=zn,Es=oo,Ss=C,Os=yt,As=ls,ks=ms;ts("match",(function(t,e,n){return[function(e){var n=Ss(this),r=null==e?void 0:Os(e,t);return r?ws(r,e,n):new RegExp(e)[t](Es(n))},function(t){var r=bs(this),o=Es(t),i=n(e,r,o);if(i.done)return i.value;if(!r.global)return ks(r,o);var a=r.unicode;r.lastIndex=0;for(var u,c=[],f=0;null!==(u=ks(r,o));){var s=Es(u[0]);c[f]=s,""===s&&(r.lastIndex=As(o,xs(r.lastIndex),a)),f++}return 0===f?null:c}]}));var Ls=D,js=$,Ts=hc,Is=$,Ps=k,Rs=Xt("match"),_s=function(t){var e;return Is(t)&&(void 0!==(e=t[Rs])?!!e:"RegExp"==Ps(t))},Cs=Y,Ms=Se,Ns=c,Fs=Xt("species"),Ds=c,Gs=i,$s=E,Us=Tr,Bs=function(t,e,n){var r,o;return Ts&&Ls(r=e.constructor)&&r!==n&&js(o=r.prototype)&&o!==n.prototype&&Ts(t,o),t},Ws=Fe,Ys=Se.f,Ks=Nn.f,zs=K,Hs=_s,Vs=oo,qs=hf,Xs=yf,Js=De.exports,Qs=u,Zs=Ct,tl=wn.enforce,el=function(t){var e=Cs(t),n=Ms.f;Ns&&e&&!e[Fs]&&n(e,Fs,{configurable:!0,get:function(){return this}})},nl=xf,rl=Of,ol=Xt("match"),il=Gs.RegExp,al=il.prototype,ul=Gs.SyntaxError,cl=$s(qs),fl=$s(al.exec),sl=$s("".charAt),ll=$s("".replace),dl=$s("".indexOf),pl=$s("".slice),vl=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,hl=/a/g,yl=/a/g,gl=new il(hl)!==hl,ml=Xs.UNSUPPORTED_Y,wl=Ds&&(!gl||ml||nl||rl||Qs((function(){return yl[ol]=!1,il(hl)!=hl||il(yl)==yl||"/a/i"!=il(hl,"i")})));if(Us("RegExp",wl)){for(var bl=function(t,e){var n,r,o,i,a,u,c=zs(al,this),f=Hs(t),s=void 0===e,l=[],d=t;if(!c&&f&&s&&t.constructor===bl)return t;if((f||zs(al,t))&&(t=t.source,s&&(e="flags"in d?d.flags:cl(d))),t=void 0===t?"":Vs(t),e=void 0===e?"":Vs(e),d=t,nl&&"dotAll"in hl&&(r=!!e&&dl(e,"s")>-1)&&(e=ll(e,/s/g,"")),n=e,ml&&"sticky"in hl&&(o=!!e&&dl(e,"y")>-1)&&(e=ll(e,/y/g,"")),rl&&(i=function(t){for(var e,n=t.length,r=0,o="",i=[],a={},u=!1,c=!1,f=0,s="";r<=n;r++){if("\\"===(e=sl(t,r)))e+=sl(t,++r);else if("]"===e)u=!1;else if(!u)switch(!0){case"["===e:u=!0;break;case"("===e:fl(vl,pl(t,r+1))&&(r+=2,c=!0),o+=e,f++;continue;case">"===e&&c:if(""===s||Zs(a,s))throw new ul("Invalid capture group name");a[s]=!0,i[i.length]=[s,f],c=!1,s="";continue}c?s+=e:o+=e}return[o,i]}(t),t=i[0],l=i[1]),a=Bs(il(t,e),c?this:al,bl),(r||o||l.length)&&(u=tl(a),r&&(u.dotAll=!0,u.raw=bl(function(t){for(var e,n=t.length,r=0,o="",i=!1;r<=n;r++)"\\"!==(e=sl(t,r))?i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]":o+=e+sl(t,++r);return o}(t),n)),o&&(u.sticky=!0),l.length&&(u.groups=l)),t!==d)try{Ws(a,"source",""===d?"(?:)":d)}catch(t){}return a},xl=function(t){t in bl||Ys(bl,t,{configurable:!0,get:function(){return il[t]},set:function(e){il[t]=e}})},El=Ks(il),Sl=0;El.length>Sl;)xl(El[Sl++]);al.constructor=bl,bl.prototype=al,Js(Gs,"RegExp",bl)}el("RegExp");var Ol=E,Al=An.PROPER,kl=De.exports,Ll=je,jl=K,Tl=oo,Il=u,Pl=hf,Rl="toString",_l=RegExp.prototype,Cl=_l.toString,Ml=Ol(Pl),Nl=Il((function(){return"/a/b"!=Cl.call({source:"a",flags:"b"})})),Fl=Al&&Cl.name!=Rl;(Nl||Fl)&&kl(RegExp.prototype,Rl,(function(){var t=Ll(this),e=Tl(t.source),n=t.flags;return"/"+e+"/"+Tl(void 0===n&&jl(_l,t)&&!("flags"in _l)?Ml(t):n)}),{unsafe:!0});var Dl=eo,Gl=Hr?{}.toString:function(){return"[object "+Dl(this)+"]"},$l=Hr,Ul=De.exports,Bl=Gl;$l||Ul(Object.prototype,"toString",Bl,{unsafe:!0});var Wl=u,Yl=function(t,e){var n=[][t];return!!n&&Wl((function(){n.call(null,e||function(){throw 1},1)}))},Kl=Ei.forEach,zl=Yl("forEach")?[].forEach:function(t){return Kl(this,t,arguments.length>1?arguments[1]:void 0)},Hl=i,Vl=zc,ql=qc,Xl=zl,Jl=Fe,Ql=function(t){if(t&&t.forEach!==Xl)try{Jl(t,"forEach",Xl)}catch(e){t.forEach=Xl}};for(var Zl in Vl)Vl[Zl]&&Ql(Hl[Zl]&&Hl[Zl].prototype);Ql(ql);var td=c,ed=E,nd=uo,rd=F,od=ed(l.f),id=ed([].push),ad=function(t){return function(e){for(var n,r=rd(e),o=nd(r),i=o.length,a=0,u=[];i>a;)n=o[a++],td&&!od(r,n)||id(u,t?[n,r[n]]:r[n]);return u}},ud={entries:ad(!0),values:ad(!1)}.entries;Fr({target:"Object",stat:!0},{entries:function(t){return ud(t)}});var cd=u,fd=Q,sd=Xt("species"),ld=function(t){return fd>=51||!cd((function(){var e=[];return(e.constructor={})[sd]=function(){return{foo:1}},1!==e[t](Boolean).foo}))},dd=Ei.filter;Fr({target:"Array",proto:!0,forced:!ld("filter")},{filter:function(t){return dd(this,t,arguments.length>1?arguments[1]:void 0)}});var pd=Ei.map;Fr({target:"Array",proto:!0,forced:!ld("map")},{map:function(t){return pd(this,t,arguments.length>1?arguments[1]:void 0)}});var vd=Fr,hd=Yr,yd=E([].reverse),gd=[1,2];vd({target:"Array",proto:!0,forced:String(gd)===String(gd.reverse())},{reverse:function(){return hd(this)&&(this.length=this.length),yd(this)}});var md=Zn.includes,wd=Mu;Fr({target:"Array",proto:!0},{includes:function(t){return md(this,t,arguments.length>1?arguments[1]:void 0)}}),wd("includes");var bd=_s,xd=i.TypeError,Ed=function(t){if(bd(t))throw xd("The method doesn't accept regular expressions");return t},Sd=Xt("match"),Od=function(t){var e=/./;try{"/./"[t](e)}catch(n){try{return e[Sd]=!1,"/./"[t](e)}catch(t){}}return!1},Ad=Fr,kd=Ed,Ld=C,jd=oo,Td=Od,Id=E("".indexOf);Ad({target:"String",proto:!0,forced:!Td("includes")},{includes:function(t){return!!~Id(jd(Ld(this)),jd(kd(t)),arguments.length>1?arguments[1]:void 0)}});var Pd=u((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}})),Rd=Fr,_d=u,Cd=$,Md=k,Nd=Pd,Fd=Object.isFrozen;Rd({target:"Object",stat:!0,forced:_d((function(){Fd(1)}))||Nd},{isFrozen:function(t){return!Cd(t)||(!(!Nd||"ArrayBuffer"!=Md(t))||!!Fd&&Fd(t))}});var Dd=vt,Gd=Pt,$d=R,Ud=Vn,Bd=i.TypeError,Wd=function(t){return function(e,n,r,o){Dd(n);var i=Gd(e),a=$d(i),u=Ud(i),c=t?u-1:0,f=t?-1:1;if(r<2)for(;;){if(c in a){o=a[c],c+=f;break}if(c+=f,t?c<0:u<=c)throw Bd("Reduce of empty array with no initial value")}for(;t?c>=0:u>c;c+=f)c in a&&(o=n(o,a[c],c,i));return o}},Yd={left:Wd(!1),right:Wd(!0)},Kd="process"==k(i.process),zd=Yd.left,Hd=Q,Vd=Kd;Fr({target:"Array",proto:!0,forced:!Yl("reduce")||!Vd&&Hd>79&&Hd<83},{reduce:function(t){var e=arguments.length;return zd(this,t,e,e>1?arguments[1]:void 0)}});var qd=Fr,Xd=R,Jd=F,Qd=Yl,Zd=E([].join),tp=Xd!=Object,ep=Qd("join",",");qd({target:"Array",proto:!0,forced:tp||!ep},{join:function(t){return Zd(Jd(this),void 0===t?",":t)}});var np=Pt,rp=uo;Fr({target:"Object",stat:!0,forced:u((function(){rp(1)}))},{keys:function(t){return rp(np(t))}});var op=E,ip=Pt,ap=Math.floor,up=op("".charAt),cp=op("".replace),fp=op("".slice),sp=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,lp=/\$([$&'`]|\d{1,2})/g,dp=Br,pp=s,vp=E,hp=ts,yp=u,gp=je,mp=D,wp=Gn,bp=zn,xp=oo,Ep=C,Sp=ls,Op=yt,Ap=function(t,e,n,r,o,i){var a=n+t.length,u=r.length,c=lp;return void 0!==o&&(o=ip(o),c=sp),cp(i,c,(function(i,c){var f;switch(up(c,0)){case"$":return"$";case"&":return t;case"`":return fp(e,0,n);case"'":return fp(e,a);case"<":f=o[fp(c,1,-1)];break;default:var s=+c;if(0===s)return i;if(s>u){var l=ap(s/10);return 0===l?i:l<=u?void 0===r[l-1]?up(c,1):r[l-1]+up(c,1):i}f=r[s-1]}return void 0===f?"":f}))},kp=ms,Lp=Xt("replace"),jp=Math.max,Tp=Math.min,Ip=vp([].concat),Pp=vp([].push),Rp=vp("".indexOf),_p=vp("".slice),Cp="$0"==="a".replace(/./,"$0"),Mp=!!/./[Lp]&&""===/./[Lp]("a","$0");hp("replace",(function(t,e,n){var r=Mp?"$":"$0";return[function(t,n){var r=Ep(this),o=null==t?void 0:Op(t,Lp);return o?pp(o,t,r,n):pp(e,xp(r),t,n)},function(t,o){var i=gp(this),a=xp(t);if("string"==typeof o&&-1===Rp(o,r)&&-1===Rp(o,"$<")){var u=n(e,i,a,o);if(u.done)return u.value}var c=mp(o);c||(o=xp(o));var f=i.global;if(f){var s=i.unicode;i.lastIndex=0}for(var l=[];;){var d=kp(i,a);if(null===d)break;if(Pp(l,d),!f)break;""===xp(d[0])&&(i.lastIndex=Sp(a,bp(i.lastIndex),s))}for(var p,v="",h=0,y=0;y<l.length;y++){for(var g=xp((d=l[y])[0]),m=jp(Tp(wp(d.index),a.length),0),w=[],b=1;b<d.length;b++)Pp(w,void 0===(p=d[b])?p:String(p));var x=d.groups;if(c){var E=Ip([g],w,m,a);void 0!==x&&Pp(E,x);var S=xp(dp(o,void 0,E))}else S=Ap(g,a,m,w,x,o);m>=h&&(v+=_p(a,h,m)+S,h=m+g.length)}return v+_p(a,h)}]}),!!yp((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!Cp||Mp);var Np=ai,Fp=st,Dp=i.TypeError,Gp=je,$p=function(t){if(Np(t))return t;throw Dp(Fp(t)+" is not a constructor")},Up=Xt("species"),Bp=function(t,e){var n,r=Gp(t).constructor;return void 0===r||null==(n=Gp(r)[Up])?e:$p(n)},Wp=Br,Yp=s,Kp=E,zp=ts,Hp=_s,Vp=je,qp=C,Xp=Bp,Jp=ls,Qp=zn,Zp=oo,tv=yt,ev=jo,nv=ms,rv=Kf,ov=u,iv=yf.UNSUPPORTED_Y,av=4294967295,uv=Math.min,cv=[].push,fv=Kp(/./.exec),sv=Kp(cv),lv=Kp("".slice),dv=!ov((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]}));zp("split",(function(t,e,n){var r;return r="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,n){var r=Zp(qp(this)),o=void 0===n?av:n>>>0;if(0===o)return[];if(void 0===t)return[r];if(!Hp(t))return Yp(e,r,t,o);for(var i,a,u,c=[],f=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),s=0,l=new RegExp(t.source,f+"g");(i=Yp(rv,l,r))&&!((a=l.lastIndex)>s&&(sv(c,lv(r,s,i.index)),i.length>1&&i.index<r.length&&Wp(cv,c,ev(i,1)),u=i[0].length,s=a,c.length>=o));)l.lastIndex===i.index&&l.lastIndex++;return s===r.length?!u&&fv(l,"")||sv(c,""):sv(c,lv(r,s)),c.length>o?ev(c,0,o):c}:"0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:Yp(e,this,t,n)}:e,[function(e,n){var o=qp(this),i=null==e?void 0:tv(e,t);return i?Yp(i,e,o,n):Yp(r,Zp(o),e,n)},function(t,o){var i=Vp(this),a=Zp(t),u=n(r,i,a,o,r!==e);if(u.done)return u.value;var c=Xp(i,RegExp),f=i.unicode,s=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(iv?"g":"y"),l=new c(iv?"^(?:"+i.source+")":i,s),d=void 0===o?av:o>>>0;if(0===d)return[];if(0===a.length)return null===nv(l,a)?[a]:[];for(var p=0,v=0,h=[];v<a.length;){l.lastIndex=iv?0:v;var y,g=nv(l,iv?lv(a,v):a);if(null===g||(y=uv(Qp(l.lastIndex+(iv?v:0)),a.length))===p)v=Jp(a,v,f);else{if(sv(h,lv(a,p,v)),h.length===d)return h;for(var m=1;m<=g.length-1;m++)if(sv(h,g[m]),h.length===d)return h;v=p=y}}return sv(h,lv(a,p)),h}]}),!dv,iv);var pv=Fr,vv=i,hv=Yr,yv=ai,gv=$,mv=Wn,wv=Vn,bv=F,xv=qa,Ev=Xt,Sv=jo,Ov=ld("slice"),Av=Ev("species"),kv=vv.Array,Lv=Math.max;pv({target:"Array",proto:!0,forced:!Ov},{slice:function(t,e){var n,r,o,i=bv(this),a=wv(i),u=mv(t,a),c=mv(void 0===e?a:e,a);if(hv(i)&&(n=i.constructor,(yv(n)&&(n===kv||hv(n.prototype))||gv(n)&&null===(n=n[Av]))&&(n=void 0),n===kv||void 0===n))return Sv(i,u,c);for(r=new(void 0===n?kv:n)(Lv(c-u,0)),o=0;u<c;u++,o++)u in i&&xv(r,o,i[u]);return r.length=o,r}});var jv=Fr,Tv=i,Iv=s,Pv=E,Rv=uc,_v=C,Cv=zn,Mv=oo,Nv=je,Fv=K,Dv=_s,Gv=hf,$v=yt,Uv=De.exports,Bv=u,Wv=Bp,Yv=ls,Kv=ms,zv=wn,Hv=Xt("matchAll"),Vv="RegExp String",qv="RegExp String Iterator",Xv=zv.set,Jv=zv.getterFor(qv),Qv=RegExp.prototype,Zv=Tv.TypeError,th=Pv(Gv),eh=Pv("".indexOf),nh=Pv("".matchAll),rh=!!nh&&!Bv((function(){nh("a",/./)})),oh=Rv((function(t,e,n,r){Xv(this,{type:qv,regexp:t,string:e,global:n,unicode:r,done:!1})}),Vv,(function(){var t=Jv(this);if(t.done)return{value:void 0,done:!0};var e=t.regexp,n=t.string,r=Kv(e,n);return null===r?{value:void 0,done:t.done=!0}:t.global?(""===Mv(r[0])&&(e.lastIndex=Yv(n,Cv(e.lastIndex),t.unicode)),{value:r,done:!1}):(t.done=!0,{value:r,done:!1})})),ih=function(t){var e,n,r,o,i,a,u=Nv(this),c=Mv(t);return e=Wv(u,RegExp),void 0===(n=u.flags)&&Fv(Qv,u)&&!("flags"in Qv)&&(n=th(u)),r=void 0===n?"":Mv(n),o=new e(e===RegExp?u.source:u,r),i=!!~eh(r,"g"),a=!!~eh(r,"u"),o.lastIndex=Cv(u.lastIndex),new oh(o,c,i,a)};jv({target:"String",proto:!0,forced:rh},{matchAll:function(t){var e,n,r,o=_v(this);if(null!=t){if(Dv(t)&&(e=Mv(_v("flags"in Qv?t.flags:th(t))),!~eh(e,"g")))throw Zv("`.matchAll` does not allow non-global regexes");if(rh)return nh(o,t);if(r=$v(t,Hv))return Iv(r,t,o)}else if(rh)return nh(o,t);return n=Mv(o),new RegExp(t,"g")[Hv](n)}}),Hv in Qv||Uv(Qv,Hv,ih);var ah=s,uh=je,ch=yt,fh=je,sh=function(t,e,n){var r,o;uh(t);try{if(!(r=ch(t,"return"))){if("throw"===e)throw n;return n}r=ah(r,t)}catch(t){o=!0,r=t}if("throw"===e)throw n;if(o)throw r;return uh(r),n},lh=Nu,dh=Xt("iterator"),ph=Array.prototype,vh=eo,hh=yt,yh=Nu,gh=Xt("iterator"),mh=function(t){if(null!=t)return hh(t,gh)||hh(t,"@@iterator")||yh[vh(t)]},wh=s,bh=vt,xh=je,Eh=st,Sh=mh,Oh=i.TypeError,Ah=Ho,kh=s,Lh=Pt,jh=function(t,e,n,r){try{return r?e(fh(n)[0],n[1]):e(n)}catch(e){sh(t,"throw",e)}},Th=function(t){return void 0!==t&&(lh.Array===t||ph[dh]===t)},Ih=ai,Ph=Vn,Rh=qa,_h=function(t,e){var n=arguments.length<2?Sh(t):e;if(bh(n))return xh(wh(n,t));throw Oh(Eh(t)+" is not iterable")},Ch=mh,Mh=i.Array,Nh=Xt("iterator"),Fh=!1;try{var Dh=0,Gh={next:function(){return{done:!!Dh++}},return:function(){Fh=!0}};Gh[Nh]=function(){return this},Array.from(Gh,(function(){throw 2}))}catch(t){}var $h=function(t){var e=Lh(t),n=Ih(this),r=arguments.length,o=r>1?arguments[1]:void 0,i=void 0!==o;i&&(o=Ah(o,r>2?arguments[2]:void 0));var a,u,c,f,s,l,d=Ch(e),p=0;if(!d||this==Mh&&Th(d))for(a=Ph(e),u=n?new this(a):Mh(a);a>p;p++)l=i?o(e[p],p):e[p],Rh(u,p,l);else for(s=(f=_h(e,d)).next,u=n?new this:[];!(c=kh(s,f)).done;p++)l=i?jh(f,o,[c.value,p],!0):c.value,Rh(u,p,l);return u.length=p,u},Uh=function(t,e){if(!e&&!Fh)return!1;var n=!1;try{var r={};r[Nh]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(t){}return n};Fr({target:"Array",stat:!0,forced:!Uh((function(t){Array.from(t)}))},{from:$h});var Bh=fs.charAt,Wh=oo,Yh=wn,Kh=Nc,zh="String Iterator",Hh=Yh.set,Vh=Yh.getterFor(zh);Kh(String,"String",(function(t){Hh(this,{type:zh,string:Wh(t),index:0})}),(function(){var t,e=Vh(this),n=e.string,r=e.index;return r>=n.length?{value:void 0,done:!0}:(t=Bh(n,r),e.index+=t.length,{value:t,done:!1})}));var qh="\t\n\v\f\r \u2028\u2029\ufeff",Xh=C,Jh=oo,Qh=E("".replace),Zh="[\t\n\v\f\r \u2028\u2029\ufeff]",ty=RegExp("^"+Zh+Zh+"*"),ey=RegExp(Zh+Zh+"*$"),ny=function(t){return function(e){var n=Jh(Xh(e));return 1&t&&(n=Qh(n,ty,"")),2&t&&(n=Qh(n,ey,"")),n}},ry={start:ny(1),end:ny(2),trim:ny(3)},oy=An.PROPER,iy=u,ay=qh,uy=ry.trim;Fr({target:"String",proto:!0,forced:function(t){return iy((function(){return!!ay[t]()||"
"!=="
"[t]()||oy&&ay[t].name!==t}))}("trim")},{trim:function(){return uy(this)}});var cy=Fr,fy=i,sy=u,ly=Yr,dy=$,py=Pt,vy=Vn,hy=qa,yy=vi,gy=ld,my=Q,wy=Xt("isConcatSpreadable"),by=9007199254740991,xy="Maximum allowed index exceeded",Ey=fy.TypeError,Sy=my>=51||!sy((function(){var t=[];return t[wy]=!1,t.concat()[0]!==t})),Oy=gy("concat"),Ay=function(t){if(!dy(t))return!1;var e=t[wy];return void 0!==e?!!e:ly(t)};cy({target:"Array",proto:!0,forced:!Sy||!Oy},{concat:function(t){var e,n,r,o,i,a=py(this),u=yy(a,0),c=0;for(e=-1,r=arguments.length;e<r;e++)if(Ay(i=-1===e?a:arguments[e])){if(c+(o=vy(i))>by)throw Ey(xy);for(n=0;n<o;n++,c++)n in i&&hy(u,c,i[n])}else{if(c>=by)throw Ey(xy);hy(u,c++,i)}return u.length=c,u}});var ky,Ly=Fr,jy=E,Ty=a.f,Iy=zn,Py=oo,Ry=Ed,_y=C,Cy=Od,My=jy("".endsWith),Ny=jy("".slice),Fy=Math.min,Dy=Cy("endsWith");Ly({target:"String",proto:!0,forced:!!(Dy||(ky=Ty(String.prototype,"endsWith"),!ky||ky.writable))&&!Dy},{endsWith:function(t){var e=Py(_y(this));Ry(t);var n=arguments.length>1?arguments[1]:void 0,r=e.length,o=void 0===n?r:Fy(Iy(n),r),i=Py(t);return My?My(e,i,o):Ny(e,o-i.length,o)===i}});var Gy={exports:{}};!function(t,e){function n(t){if(t&&"object"==typeof t){var e=t.which||t.keyCode||t.charCode;e&&(t=e)}if("number"==typeof t)return a[t];var n,i=String(t);return(n=r[i.toLowerCase()])?n:(n=o[i.toLowerCase()])||(1===i.length?i.charCodeAt(0):void 0)}n.isEventKey=function(t,e){if(t&&"object"==typeof t){var n=t.which||t.keyCode||t.charCode;if(null==n)return!1;if("string"==typeof e){var i;if(i=r[e.toLowerCase()])return i===n;if(i=o[e.toLowerCase()])return i===n}else if("number"==typeof e)return e===n;return!1}};var r=(e=t.exports=n).code=e.codes={backspace:8,tab:9,enter:13,shift:16,ctrl:17,alt:18,"pause/break":19,"caps lock":20,esc:27,space:32,"page up":33,"page down":34,end:35,home:36,left:37,up:38,right:39,down:40,insert:45,delete:46,command:91,"left command":91,"right command":93,"numpad *":106,"numpad +":107,"numpad -":109,"numpad .":110,"numpad /":111,"num lock":144,"scroll lock":145,"my computer":182,"my calculator":183,";":186,"=":187,",":188,"-":189,".":190,"/":191,"`":192,"[":219,"\\":220,"]":221,"'":222},o=e.aliases={windows:91,"⇧":16,"⌥":18,"⌃":17,"⌘":91,ctl:17,control:17,option:18,pause:19,break:19,caps:20,return:13,escape:27,spc:32,spacebar:32,pgup:33,pgdn:34,ins:45,del:46,cmd:91};
|
|
2
2
|
/*!
|
|
3
3
|
* Programatically add the following
|
|
4
4
|
*/
|
|
@@ -9,4 +9,4 @@ for(i=97;i<123;i++)r[String.fromCharCode(i)]=i-32;for(var i=48;i<58;i++)r[i-48]=
|
|
|
9
9
|
* @link https://github.com/ten1seven/what-input
|
|
10
10
|
* @license MIT
|
|
11
11
|
*/
|
|
12
|
-
!function(t,e){var n;n=function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}return n.m=t,n.c=e,n.p="",n(0)}([function(t,e){t.exports=function(){if("undefined"==typeof document||"undefined"==typeof window)return{ask:function(){return"initial"},element:function(){return null},ignoreKeys:function(){},specificKeys:function(){},registerOnChange:function(){},unRegisterOnChange:function(){}};var t=document.documentElement,e=null,n="initial",r=n,o=Date.now(),i="false",a=["button","input","select","textarea"],u=[],c=[16,17,18,91,93],f=[],s={keydown:"keyboard",keyup:"keyboard",mousedown:"mouse",mousemove:"mouse",MSPointerDown:"pointer",MSPointerMove:"pointer",pointerdown:"pointer",pointermove:"pointer",touchstart:"touch",touchend:"touch"},l=!1,d={x:null,y:null},p={2:"touch",3:"touch",4:"mouse"},v=!1;try{var h=Object.defineProperty({},"passive",{get:function(){v=!0}});window.addEventListener("test",null,h)}catch(t){}var y=function(){var t=!!v&&{passive:!0};document.addEventListener("DOMContentLoaded",g),window.PointerEvent?(window.addEventListener("pointerdown",m),window.addEventListener("pointermove",b)):window.MSPointerEvent?(window.addEventListener("MSPointerDown",m),window.addEventListener("MSPointerMove",b)):(window.addEventListener("mousedown",m),window.addEventListener("mousemove",b),"ontouchstart"in window&&(window.addEventListener("touchstart",m,t),window.addEventListener("touchend",m))),window.addEventListener(k(),b,t),window.addEventListener("keydown",m),window.addEventListener("keyup",m),window.addEventListener("focusin",x),window.addEventListener("focusout",E)},g=function(){if(i=!(t.getAttribute("data-whatpersist")||"false"===document.body.getAttribute("data-whatpersist")))try{window.sessionStorage.getItem("what-input")&&(n=window.sessionStorage.getItem("what-input")),window.sessionStorage.getItem("what-intent")&&(r=window.sessionStorage.getItem("what-intent"))}catch(t){}w("input"),w("intent")},m=function(t){var e=t.which,o=s[t.type];"pointer"===o&&(o=O(t));var i=!f.length&&-1===c.indexOf(e),u=f.length&&-1!==f.indexOf(e),l="keyboard"===o&&e&&(i||u)||"mouse"===o||"touch"===o;if(A(o)&&(l=!1),l&&n!==o&&(S("input",n=o),w("input")),l&&r!==o){var d=document.activeElement;d&&d.nodeName&&(-1===a.indexOf(d.nodeName.toLowerCase())||"button"===d.nodeName.toLowerCase()&&!I(d,"form"))&&(S("intent",r=o),w("intent"))}},w=function(e){t.setAttribute("data-what"+e,"input"===e?n:r),L(e)},b=function(t){var e=s[t.type];"pointer"===e&&(e=O(t)),j(t),(!l&&!A(e)||l&&"wheel"===t.type||"mousewheel"===t.type||"DOMMouseScroll"===t.type)&&r!==e&&(S("intent",r=e),w("intent"))},x=function(n){n.target.nodeName?(e=n.target.nodeName.toLowerCase(),t.setAttribute("data-whatelement",e),n.target.classList&&n.target.classList.length&&t.setAttribute("data-whatclasses",n.target.classList.toString().replace(" ",","))):E()},E=function(){e=null,t.removeAttribute("data-whatelement"),t.removeAttribute("data-whatclasses")},S=function(t,e){if(i)try{window.sessionStorage.setItem("what-"+t,e)}catch(t){}},O=function(t){return"number"==typeof t.pointerType?p[t.pointerType]:"pen"===t.pointerType?"touch":t.pointerType},A=function(t){var e=Date.now(),r="mouse"===t&&"touch"===n&&e-o<200;return o=e,r},k=function(){return"onwheel"in document.createElement("div")?"wheel":void 0!==document.onmousewheel?"mousewheel":"DOMMouseScroll"},L=function(t){for(var e=0,o=u.length;e<o;e++)u[e].type===t&&u[e].fn.call(void 0,"input"===t?n:r)},j=function(t){d.x!==t.screenX||d.y!==t.screenY?(l=!1,d.x=t.screenX,d.y=t.screenY):l=!0},I=function(t,e){var n=window.Element.prototype;if(n.matches||(n.matches=n.msMatchesSelector||n.webkitMatchesSelector),n.closest)return t.closest(e);do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null};return"addEventListener"in window&&Array.prototype.indexOf&&(s[k()]="mouse",y()),{ask:function(t){return"intent"===t?r:n},element:function(){return e},ignoreKeys:function(t){c=t},specificKeys:function(t){f=t},registerOnChange:function(t,e){u.push({fn:t,type:e||"input"})},unRegisterOnChange:function(t){var e=function(t){for(var e=0,n=u.length;e<n;e++)if(u[e].fn===t)return e}(t);(e||0===e)&&u.splice(e,1)},clearStorage:function(){window.sessionStorage.clear()}}}()}])},t.exports=n()}(Uy);var By=Uy.exports;!function(t){var e=function(t){var e,n=Object.prototype,r=n.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function c(t,e,n){return Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,n){return t[e]=n}}function f(t,e,n,r){var o=e&&e.prototype instanceof y?e:y,i=Object.create(o.prototype),a=new j(r||[]);return i._invoke=function(t,e,n){var r=l;return function(o,i){if(r===p)throw new Error("Generator is already running");if(r===v){if("throw"===o)throw i;return T()}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var u=A(a,n);if(u){if(u===h)continue;return u}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===l)throw r=v,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=p;var c=s(t,e,n);if("normal"===c.type){if(r=n.done?v:d,c.arg===h)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(r=v,n.method="throw",n.arg=c.arg)}}}(t,n,a),i}function s(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){return{type:"throw",arg:t}}}t.wrap=f;var l="suspendedStart",d="suspendedYield",p="executing",v="completed",h={};function y(){}function g(){}function m(){}var w={};c(w,i,(function(){return this}));var b=Object.getPrototypeOf,x=b&&b(b(I([])));x&&x!==n&&r.call(x,i)&&(w=x);var E=m.prototype=y.prototype=Object.create(w);function S(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function n(o,i,a,u){var c=s(t[o],t,i);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"==typeof l&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){n("next",t,a,u)}),(function(t){n("throw",t,a,u)})):e.resolve(l).then((function(t){f.value=t,a(f)}),(function(t){return n("throw",t,a,u)}))}u(c.arg)}var o;this._invoke=function(t,r){function i(){return new e((function(e,o){n(t,r,e,o)}))}return o=o?o.then(i,i):i()}}function A(t,n){var r=t.iterator[n.method];if(r===e){if(n.delegate=null,"throw"===n.method){if(t.iterator.return&&(n.method="return",n.arg=e,A(t,n),"throw"===n.method))return h;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return h}var o=s(r,t.iterator,n.arg);if("throw"===o.type)return n.method="throw",n.arg=o.arg,n.delegate=null,h;var i=o.arg;return i?i.done?(n[t.resultName]=i.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,h):i:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,h)}function k(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function L(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function j(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(k,this),this.reset(!0)}function I(t){if(t){var n=t[i];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function n(){for(;++o<t.length;)if(r.call(t,o))return n.value=t[o],n.done=!1,n;return n.value=e,n.done=!0,n};return a.next=a}}return{next:T}}function T(){return{value:e,done:!0}}return g.prototype=m,c(E,"constructor",m),c(m,"constructor",g),g.displayName=c(m,u,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===g||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,u,"GeneratorFunction")),t.prototype=Object.create(E),t},t.awrap=function(t){return{__await:t}},S(O.prototype),c(O.prototype,a,(function(){return this})),t.AsyncIterator=O,t.async=function(e,n,r,o,i){void 0===i&&(i=Promise);var a=new O(f(e,n,r,o),i);return t.isGeneratorFunction(n)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},S(E),c(E,u,"Generator"),c(E,i,(function(){return this})),c(E,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=[];for(var n in t)e.push(n);return e.reverse(),function n(){for(;e.length;){var r=e.pop();if(r in t)return n.value=r,n.done=!1,n}return n.done=!0,n}},t.values=I,j.prototype={constructor:j,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(L),!t)for(var n in this)"t"===n.charAt(0)&&r.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var n=this;function o(r,o){return u.type="throw",u.arg=t,n.next=r,o&&(n.method="next",n.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var c=r.call(a,"catchLoc"),f=r.call(a,"finallyLoc");if(c&&f){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!f)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,h):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),h},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),L(n),h}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var r=n.completion;if("throw"===r.type){var o=r.arg;L(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:I(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),h}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}}({exports:{}});var Wy,Yy,Ky,zy,Hy,Vy,qy,Xy,Jy="Mac|iPad|iPhone|iPod",Qy="Linux",Zy=!1;Zy="undefined"!=typeof window&&"undefined"!=typeof document&&!!window.MSInputMethodContext&&!!document.documentMode,"undefined"!=typeof navigator&&/edge/i.test(null===(Wy=navigator)||void 0===Wy?void 0:Wy.userAgent),"undefined"!=typeof navigator&&new RegExp("iOS|iPhone|iPad|iPod","i").test(null===(Yy=navigator)||void 0===Yy?void 0:Yy.platform),"undefined"!=typeof navigator&&/safari/i.test(null===(Ky=navigator)||void 0===Ky?void 0:Ky.userAgent)&&/chrome/i.test(null===(zy=navigator)||void 0===zy?void 0:zy.userAgent),"undefined"!=typeof navigator&&new RegExp("Win","i").test(null===(Hy=navigator)||void 0===Hy?void 0:Hy.platform),"undefined"!=typeof navigator&&new RegExp("Android","i").test(null===(Vy=navigator)||void 0===Vy?void 0:Vy.userAgent),"undefined"!=typeof navigator&&new RegExp(Jy,"i").test(null===(qy=navigator)||void 0===qy?void 0:qy.platform),"undefined"!=typeof navigator&&new RegExp(Qy,"i").test(null===(Xy=navigator)||void 0===Xy?void 0:Xy.platform);function tg(t,e){var n="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=function(t,e){if(!t)return;if("string"==typeof t)return eg(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return eg(t,e)}(t))||e&&t&&"number"==typeof t.length){n&&(t=n);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){n=n.call(t)},n:function(){var t=n.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==n.return||n.return()}finally{if(u)throw i}}}}function eg(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}function ng(){var t=function t(){if("undefined"!=typeof document&&"undefined"!=typeof window&&"undefined"!=typeof navigator){try{"undefined"!=typeof window&&window.IS_TEST?document.documentElement.setAttribute("data-os","other"):null!==navigator.platform.match(new RegExp(Jy))?document.documentElement.setAttribute("data-os","mac"):null!==navigator.platform.match(new RegExp("Win"))?document.documentElement.setAttribute("data-os","win"):null!==navigator.platform.match(new RegExp(Qy))&&document.documentElement.setAttribute("data-os","linux")}catch(t){}document.removeEventListener("DOMContentLoaded",t)}};"undefined"!=typeof document&&"loading"===document.readyState?document.addEventListener("DOMContentLoaded",t):t()}!function(){if("undefined"!=typeof window){var t=function(){function t(){sf(this,t)}return df(t,[{key:"version",get:function(){return"__VERSION__"}}]),t}();window.Eufemia=new t}}(),By.specificKeys([9]),ng(),function(){function t(e,n){var r=this,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};sf(this,t),pf(this,"checkOutsideClick",(function(t){var e=t.event,n=t.ignoreElements,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;try{var o=e.target;if("HTML"===(null==o?void 0:o.tagName)&&(e.pageX>document.documentElement.clientWidth-40||e.pageY>document.documentElement.clientHeight-40))return;if(rg(o))return;for(var i,a=0,u=n.length;a<u;++a)if(i=o,n[a])do{if(i===n[a])return;i=i&&i.parentNode}while(i);"function"==typeof r&&r()}catch(t){}})),this.handleClickOutside||"undefined"==typeof document||"undefined"==typeof window||(Array.isArray(e)||(e=[e]),this.handleClickOutside=function(t){r.checkOutsideClick({event:t,ignoreElements:e},(function(){return"function"==typeof n&&n({event:t})}))},document.addEventListener("mousedown",this.handleClickOutside),this.keydownCallback=function(t){"esc"===$y(t)&&(window.removeEventListener("keydown",r.keydownCallback),"function"==typeof n&&n({event:t}))},window.addEventListener("keydown",this.keydownCallback),o.includedKeys&&(this.keyupCallback=function(t){var e=$y(t);o.includedKeys.includes(e)&&"function"==typeof r.handleClickOutside&&r.handleClickOutside(t,(function(){r.keyupCallback&&window.removeEventListener("keyup",r.keyupCallback)}))},window.addEventListener("keyup",this.keyupCallback)))}df(t,[{key:"remove",value:function(){this.handleClickOutside&&"undefined"!=typeof document&&(document.removeEventListener("mousedown",this.handleClickOutside),this.handleClickOutside=null),this.keydownCallback&&"undefined"!=typeof window&&(window.removeEventListener("keydown",this.keydownCallback),this.keydownCallback=null),this.keyupCallback&&"undefined"!=typeof window&&(window.removeEventListener("keyup",this.keyupCallback),this.keyupCallback=null)}}])}();var rg=function(t){return t&&(t.scrollHeight>t.offsetHeight||t.scrollWidth>t.offsetWidth)&&og(t)},og=function(t){var e="undefined"!=typeof window?window.getComputedStyle(t):{};return/scroll|auto/i.test((e.overflow||"")+(e.overflowX||"")+(e.overflowY||""))};!function(){function t(){return sf(this,t),this.bypassElement=null,this.bypassSelectors=[],this}df(t,[{key:"setBypassElement",value:function(t){return t instanceof HTMLElement&&(this.bypassElement=t),this}},{key:"setBypassSelector",value:function(t){return Array.isArray(t)||(t=[t]),this.bypassSelectors=t,this}},{key:"activate",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;this._nodesToInvalidate||this._runInvalidaiton(t)}},{key:"revert",value:function(){this._revertInvalidation(),this._nodesToInvalidate=null}},{key:"_runInvalidaiton",value:function(t){if("undefined"!=typeof document){this._nodesToInvalidate=this.getNodesToInvalidate(t);var e,n=tg(this._nodesToInvalidate);try{for(n.s();!(e=n.n()).done;){var r=e.value;if(r){var o=r.getAttribute("tabindex"),i=r.getAttribute("aria-hidden");null!==o&&void 0===r.__tabindex&&(r.__tabindex=o),null!==i&&void 0===r.__ariahidden&&(r.__ariahidden=i),r.setAttribute("tabindex","-1"),r.setAttribute("aria-hidden","true")}}}catch(t){n.e(t)}finally{n.f()}}}},{key:"_revertInvalidation",value:function(){if(Array.isArray(this._nodesToInvalidate)){var t,e=tg(this._nodesToInvalidate);try{for(e.s();!(t=e.n()).done;){var n=t.value;n&&(void 0!==n.__tabindex?(n.setAttribute("tabindex",n.__tabindex),delete n.__tabindex):n.removeAttribute("tabindex"),void 0!==n.__ariahidden?(n.setAttribute("aria-hidden",n.__ariahidden),delete n.__ariahidden):n.removeAttribute("aria-hidden"))}}catch(t){e.e(t)}finally{e.f()}}}},{key:"getNodesToInvalidate",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if("undefined"==typeof document)return[];"string"==typeof t&&(t=document.querySelector(t));var e=t?"*":"html *",n=this.bypassSelectors.map((function(t){return":not(".concat(t,")")})).join(""),r="".concat(e," ").concat(n,":not(script):not(style):not(path):not(head *)");if(Zy){var o=[],i=r.split(":").map((function(e){return e.endsWith(" *)")&&(o.push.apply(o,ff(Array.from((t||document.documentElement).querySelectorAll(e.match(/\(([^)]*)\)/)[1])))),e=e.replace(" *","")),e})).join(":");return Array.from((t||document.documentElement).querySelectorAll(i)).filter((function(t){return!o.includes(t)}))}return Array.from((t||document.documentElement).querySelectorAll(r))}}])}(),t.defineNavigator=ng,t.isTouchDevice=function(){if("undefined"!=typeof document){var t=!1;try{t=document.documentElement.getAttribute("data-whatintent")}catch(t){}return"touch"===t}return!1},Object.defineProperty(t,"__esModule",{value:!0})}));
|
|
12
|
+
!function(t,e){var n;n=function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}return n.m=t,n.c=e,n.p="",n(0)}([function(t,e){t.exports=function(){if("undefined"==typeof document||"undefined"==typeof window)return{ask:function(){return"initial"},element:function(){return null},ignoreKeys:function(){},specificKeys:function(){},registerOnChange:function(){},unRegisterOnChange:function(){}};var t=document.documentElement,e=null,n="initial",r=n,o=Date.now(),i="false",a=["button","input","select","textarea"],u=[],c=[16,17,18,91,93],f=[],s={keydown:"keyboard",keyup:"keyboard",mousedown:"mouse",mousemove:"mouse",MSPointerDown:"pointer",MSPointerMove:"pointer",pointerdown:"pointer",pointermove:"pointer",touchstart:"touch",touchend:"touch"},l=!1,d={x:null,y:null},p={2:"touch",3:"touch",4:"mouse"},v=!1;try{var h=Object.defineProperty({},"passive",{get:function(){v=!0}});window.addEventListener("test",null,h)}catch(t){}var y=function(){var t=!!v&&{passive:!0};document.addEventListener("DOMContentLoaded",g),window.PointerEvent?(window.addEventListener("pointerdown",m),window.addEventListener("pointermove",b)):window.MSPointerEvent?(window.addEventListener("MSPointerDown",m),window.addEventListener("MSPointerMove",b)):(window.addEventListener("mousedown",m),window.addEventListener("mousemove",b),"ontouchstart"in window&&(window.addEventListener("touchstart",m,t),window.addEventListener("touchend",m))),window.addEventListener(k(),b,t),window.addEventListener("keydown",m),window.addEventListener("keyup",m),window.addEventListener("focusin",x),window.addEventListener("focusout",E)},g=function(){if(i=!(t.getAttribute("data-whatpersist")||"false"===document.body.getAttribute("data-whatpersist")))try{window.sessionStorage.getItem("what-input")&&(n=window.sessionStorage.getItem("what-input")),window.sessionStorage.getItem("what-intent")&&(r=window.sessionStorage.getItem("what-intent"))}catch(t){}w("input"),w("intent")},m=function(t){var e=t.which,o=s[t.type];"pointer"===o&&(o=O(t));var i=!f.length&&-1===c.indexOf(e),u=f.length&&-1!==f.indexOf(e),l="keyboard"===o&&e&&(i||u)||"mouse"===o||"touch"===o;if(A(o)&&(l=!1),l&&n!==o&&(S("input",n=o),w("input")),l&&r!==o){var d=document.activeElement;d&&d.nodeName&&(-1===a.indexOf(d.nodeName.toLowerCase())||"button"===d.nodeName.toLowerCase()&&!T(d,"form"))&&(S("intent",r=o),w("intent"))}},w=function(e){t.setAttribute("data-what"+e,"input"===e?n:r),L(e)},b=function(t){var e=s[t.type];"pointer"===e&&(e=O(t)),j(t),(!l&&!A(e)||l&&"wheel"===t.type||"mousewheel"===t.type||"DOMMouseScroll"===t.type)&&r!==e&&(S("intent",r=e),w("intent"))},x=function(n){n.target.nodeName?(e=n.target.nodeName.toLowerCase(),t.setAttribute("data-whatelement",e),n.target.classList&&n.target.classList.length&&t.setAttribute("data-whatclasses",n.target.classList.toString().replace(" ",","))):E()},E=function(){e=null,t.removeAttribute("data-whatelement"),t.removeAttribute("data-whatclasses")},S=function(t,e){if(i)try{window.sessionStorage.setItem("what-"+t,e)}catch(t){}},O=function(t){return"number"==typeof t.pointerType?p[t.pointerType]:"pen"===t.pointerType?"touch":t.pointerType},A=function(t){var e=Date.now(),r="mouse"===t&&"touch"===n&&e-o<200;return o=e,r},k=function(){return"onwheel"in document.createElement("div")?"wheel":void 0!==document.onmousewheel?"mousewheel":"DOMMouseScroll"},L=function(t){for(var e=0,o=u.length;e<o;e++)u[e].type===t&&u[e].fn.call(void 0,"input"===t?n:r)},j=function(t){d.x!==t.screenX||d.y!==t.screenY?(l=!1,d.x=t.screenX,d.y=t.screenY):l=!0},T=function(t,e){var n=window.Element.prototype;if(n.matches||(n.matches=n.msMatchesSelector||n.webkitMatchesSelector),n.closest)return t.closest(e);do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null};return"addEventListener"in window&&Array.prototype.indexOf&&(s[k()]="mouse",y()),{ask:function(t){return"intent"===t?r:n},element:function(){return e},ignoreKeys:function(t){c=t},specificKeys:function(t){f=t},registerOnChange:function(t,e){u.push({fn:t,type:e||"input"})},unRegisterOnChange:function(t){var e=function(t){for(var e=0,n=u.length;e<n;e++)if(u[e].fn===t)return e}(t);(e||0===e)&&u.splice(e,1)},clearStorage:function(){window.sessionStorage.clear()}}}()}])},t.exports=n()}(Uy);var By=Uy.exports;!function(t){var e=function(t){var e,n=Object.prototype,r=n.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function c(t,e,n){return Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,n){return t[e]=n}}function f(t,e,n,r){var o=e&&e.prototype instanceof y?e:y,i=Object.create(o.prototype),a=new j(r||[]);return i._invoke=function(t,e,n){var r=l;return function(o,i){if(r===p)throw new Error("Generator is already running");if(r===v){if("throw"===o)throw i;return I()}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var u=A(a,n);if(u){if(u===h)continue;return u}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===l)throw r=v,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=p;var c=s(t,e,n);if("normal"===c.type){if(r=n.done?v:d,c.arg===h)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(r=v,n.method="throw",n.arg=c.arg)}}}(t,n,a),i}function s(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){return{type:"throw",arg:t}}}t.wrap=f;var l="suspendedStart",d="suspendedYield",p="executing",v="completed",h={};function y(){}function g(){}function m(){}var w={};c(w,i,(function(){return this}));var b=Object.getPrototypeOf,x=b&&b(b(T([])));x&&x!==n&&r.call(x,i)&&(w=x);var E=m.prototype=y.prototype=Object.create(w);function S(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function n(o,i,a,u){var c=s(t[o],t,i);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"==typeof l&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){n("next",t,a,u)}),(function(t){n("throw",t,a,u)})):e.resolve(l).then((function(t){f.value=t,a(f)}),(function(t){return n("throw",t,a,u)}))}u(c.arg)}var o;this._invoke=function(t,r){function i(){return new e((function(e,o){n(t,r,e,o)}))}return o=o?o.then(i,i):i()}}function A(t,n){var r=t.iterator[n.method];if(r===e){if(n.delegate=null,"throw"===n.method){if(t.iterator.return&&(n.method="return",n.arg=e,A(t,n),"throw"===n.method))return h;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return h}var o=s(r,t.iterator,n.arg);if("throw"===o.type)return n.method="throw",n.arg=o.arg,n.delegate=null,h;var i=o.arg;return i?i.done?(n[t.resultName]=i.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,h):i:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,h)}function k(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function L(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function j(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(k,this),this.reset(!0)}function T(t){if(t){var n=t[i];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function n(){for(;++o<t.length;)if(r.call(t,o))return n.value=t[o],n.done=!1,n;return n.value=e,n.done=!0,n};return a.next=a}}return{next:I}}function I(){return{value:e,done:!0}}return g.prototype=m,c(E,"constructor",m),c(m,"constructor",g),g.displayName=c(m,u,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===g||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,u,"GeneratorFunction")),t.prototype=Object.create(E),t},t.awrap=function(t){return{__await:t}},S(O.prototype),c(O.prototype,a,(function(){return this})),t.AsyncIterator=O,t.async=function(e,n,r,o,i){void 0===i&&(i=Promise);var a=new O(f(e,n,r,o),i);return t.isGeneratorFunction(n)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},S(E),c(E,u,"Generator"),c(E,i,(function(){return this})),c(E,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=[];for(var n in t)e.push(n);return e.reverse(),function n(){for(;e.length;){var r=e.pop();if(r in t)return n.value=r,n.done=!1,n}return n.done=!0,n}},t.values=T,j.prototype={constructor:j,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(L),!t)for(var n in this)"t"===n.charAt(0)&&r.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var n=this;function o(r,o){return u.type="throw",u.arg=t,n.next=r,o&&(n.method="next",n.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var c=r.call(a,"catchLoc"),f=r.call(a,"finallyLoc");if(c&&f){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!f)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,h):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),h},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),L(n),h}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var r=n.completion;if("throw"===r.type){var o=r.arg;L(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:T(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),h}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}}({exports:{}});var Wy,Yy,Ky,zy,Hy,Vy,qy,Xy,Jy="Mac|iPad|iPhone|iPod",Qy="Linux",Zy=!1;Zy="undefined"!=typeof window&&"undefined"!=typeof document&&!!window.MSInputMethodContext&&!!document.documentMode,"undefined"!=typeof navigator&&/edge/i.test(null===(Wy=navigator)||void 0===Wy?void 0:Wy.userAgent),"undefined"!=typeof navigator&&new RegExp("iOS|iPhone|iPad|iPod","i").test(null===(Yy=navigator)||void 0===Yy?void 0:Yy.platform),"undefined"!=typeof navigator&&/safari/i.test(null===(Ky=navigator)||void 0===Ky?void 0:Ky.userAgent)&&/chrome/i.test(null===(zy=navigator)||void 0===zy?void 0:zy.userAgent),"undefined"!=typeof navigator&&new RegExp("Win","i").test(null===(Hy=navigator)||void 0===Hy?void 0:Hy.platform),"undefined"!=typeof navigator&&new RegExp("Android","i").test(null===(Vy=navigator)||void 0===Vy?void 0:Vy.userAgent),"undefined"!=typeof navigator&&new RegExp(Jy,"i").test(null===(qy=navigator)||void 0===qy?void 0:qy.platform),"undefined"!=typeof navigator&&new RegExp(Qy,"i").test(null===(Xy=navigator)||void 0===Xy?void 0:Xy.platform);function tg(t,e){var n="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=function(t,e){if(!t)return;if("string"==typeof t)return eg(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return eg(t,e)}(t))||e&&t&&"number"==typeof t.length){n&&(t=n);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){n=n.call(t)},n:function(){var t=n.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==n.return||n.return()}finally{if(u)throw i}}}}function eg(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}function ng(){var t=function t(){if("undefined"!=typeof document&&"undefined"!=typeof window&&"undefined"!=typeof navigator){try{"undefined"!=typeof window&&window.IS_TEST?document.documentElement.setAttribute("data-os","other"):null!==navigator.platform.match(new RegExp(Jy))?document.documentElement.setAttribute("data-os","mac"):null!==navigator.platform.match(new RegExp("Win"))?document.documentElement.setAttribute("data-os","win"):null!==navigator.platform.match(new RegExp(Qy))&&document.documentElement.setAttribute("data-os","linux")}catch(t){}document.removeEventListener("DOMContentLoaded",t)}};"undefined"!=typeof document&&"loading"===document.readyState?document.addEventListener("DOMContentLoaded",t):t()}!function(){if("undefined"!=typeof window){var t=function(){function t(){sf(this,t)}return df(t,[{key:"version",get:function(){return"9.23.0-beta.1"}}]),t}();window.Eufemia=new t}}(),By.specificKeys([9]),ng(),function(){function t(e,n){var r=this,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};sf(this,t),pf(this,"checkOutsideClick",(function(t){var e=t.event,n=t.ignoreElements,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;try{var o=e.target;if("HTML"===(null==o?void 0:o.tagName)&&(e.pageX>document.documentElement.clientWidth-40||e.pageY>document.documentElement.clientHeight-40))return;if(rg(o))return;for(var i,a=0,u=n.length;a<u;++a)if(i=o,n[a])do{if(i===n[a])return;i=i&&i.parentNode}while(i);"function"==typeof r&&r()}catch(t){}})),this.handleClickOutside||"undefined"==typeof document||"undefined"==typeof window||(Array.isArray(e)||(e=[e]),this.handleClickOutside=function(t){r.checkOutsideClick({event:t,ignoreElements:e},(function(){return"function"==typeof n&&n({event:t})}))},document.addEventListener("mousedown",this.handleClickOutside),this.keydownCallback=function(t){"esc"===$y(t)&&(window.removeEventListener("keydown",r.keydownCallback),"function"==typeof n&&n({event:t}))},window.addEventListener("keydown",this.keydownCallback),o.includedKeys&&(this.keyupCallback=function(t){var e=$y(t);o.includedKeys.includes(e)&&"function"==typeof r.handleClickOutside&&r.handleClickOutside(t,(function(){r.keyupCallback&&window.removeEventListener("keyup",r.keyupCallback)}))},window.addEventListener("keyup",this.keyupCallback)))}df(t,[{key:"remove",value:function(){this.handleClickOutside&&"undefined"!=typeof document&&(document.removeEventListener("mousedown",this.handleClickOutside),this.handleClickOutside=null),this.keydownCallback&&"undefined"!=typeof window&&(window.removeEventListener("keydown",this.keydownCallback),this.keydownCallback=null),this.keyupCallback&&"undefined"!=typeof window&&(window.removeEventListener("keyup",this.keyupCallback),this.keyupCallback=null)}}])}();var rg=function(t){return t&&(t.scrollHeight>t.offsetHeight||t.scrollWidth>t.offsetWidth)&&og(t)},og=function(t){var e="undefined"!=typeof window?window.getComputedStyle(t):{};return/scroll|auto/i.test((e.overflow||"")+(e.overflowX||"")+(e.overflowY||""))};!function(){function t(){return sf(this,t),this.bypassElement=null,this.bypassSelectors=[],this}df(t,[{key:"setBypassElement",value:function(t){return t instanceof HTMLElement&&(this.bypassElement=t),this}},{key:"setBypassSelector",value:function(t){return Array.isArray(t)||(t=[t]),this.bypassSelectors=t,this}},{key:"activate",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;this._nodesToInvalidate||this._runInvalidaiton(t)}},{key:"revert",value:function(){this._revertInvalidation(),this._nodesToInvalidate=null}},{key:"_runInvalidaiton",value:function(t){if("undefined"!=typeof document){this._nodesToInvalidate=this.getNodesToInvalidate(t);var e,n=tg(this._nodesToInvalidate);try{for(n.s();!(e=n.n()).done;){var r=e.value;if(r){var o=r.getAttribute("tabindex"),i=r.getAttribute("aria-hidden");null!==o&&void 0===r.__tabindex&&(r.__tabindex=o),null!==i&&void 0===r.__ariahidden&&(r.__ariahidden=i),r.setAttribute("tabindex","-1"),r.setAttribute("aria-hidden","true")}}}catch(t){n.e(t)}finally{n.f()}}}},{key:"_revertInvalidation",value:function(){if(Array.isArray(this._nodesToInvalidate)){var t,e=tg(this._nodesToInvalidate);try{for(e.s();!(t=e.n()).done;){var n=t.value;n&&(void 0!==n.__tabindex?(n.setAttribute("tabindex",n.__tabindex),delete n.__tabindex):n.removeAttribute("tabindex"),void 0!==n.__ariahidden?(n.setAttribute("aria-hidden",n.__ariahidden),delete n.__ariahidden):n.removeAttribute("aria-hidden"))}}catch(t){e.e(t)}finally{e.f()}}}},{key:"getNodesToInvalidate",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if("undefined"==typeof document)return[];"string"==typeof t&&(t=document.querySelector(t));var e=t?"*":"html *",n=this.bypassSelectors.map((function(t){return":not(".concat(t,")")})).join(""),r="".concat(e," ").concat(n,":not(script):not(style):not(path):not(head *)");if(Zy){var o=[],i=r.split(":").map((function(e){return e.endsWith(" *)")&&(o.push.apply(o,ff(Array.from((t||document.documentElement).querySelectorAll(e.match(/\(([^)]*)\)/)[1])))),e=e.replace(" *","")),e})).join(":");return Array.from((t||document.documentElement).querySelectorAll(i)).filter((function(t){return!o.includes(t)}))}return Array.from((t||document.documentElement).querySelectorAll(r))}}])}(),t.defineNavigator=ng,t.isTouchDevice=function(){if("undefined"!=typeof document){var t=!1;try{t=document.documentElement.getAttribute("data-whatintent")}catch(t){}return"touch"===t}return!1},Object.defineProperty(t,"__esModule",{value:!0})}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../components";
|