@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/cjs/icons/index.d.ts
CHANGED
|
@@ -1,1005 +1,501 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import
|
|
31
|
-
import
|
|
32
|
-
import
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import
|
|
36
|
-
import
|
|
37
|
-
import
|
|
38
|
-
import
|
|
39
|
-
import
|
|
40
|
-
import
|
|
41
|
-
import
|
|
42
|
-
import
|
|
43
|
-
import
|
|
44
|
-
import
|
|
45
|
-
import
|
|
46
|
-
import
|
|
47
|
-
import
|
|
48
|
-
import
|
|
49
|
-
import
|
|
50
|
-
import
|
|
51
|
-
import
|
|
52
|
-
import
|
|
53
|
-
import
|
|
54
|
-
import
|
|
55
|
-
import
|
|
56
|
-
import
|
|
57
|
-
import
|
|
58
|
-
import
|
|
59
|
-
import
|
|
60
|
-
import
|
|
61
|
-
import
|
|
62
|
-
import
|
|
63
|
-
import
|
|
64
|
-
import
|
|
65
|
-
import
|
|
66
|
-
import
|
|
67
|
-
import
|
|
68
|
-
import
|
|
69
|
-
import
|
|
70
|
-
import
|
|
71
|
-
import
|
|
72
|
-
import
|
|
73
|
-
import
|
|
74
|
-
import
|
|
75
|
-
import
|
|
76
|
-
import
|
|
77
|
-
import
|
|
78
|
-
import
|
|
79
|
-
import
|
|
80
|
-
import
|
|
81
|
-
import
|
|
82
|
-
import
|
|
83
|
-
import
|
|
84
|
-
import
|
|
85
|
-
import
|
|
86
|
-
import
|
|
87
|
-
import
|
|
88
|
-
import
|
|
89
|
-
import
|
|
90
|
-
import
|
|
91
|
-
import
|
|
92
|
-
import
|
|
93
|
-
import
|
|
94
|
-
import
|
|
95
|
-
import
|
|
96
|
-
import
|
|
97
|
-
import
|
|
98
|
-
import
|
|
99
|
-
import
|
|
100
|
-
import
|
|
101
|
-
import
|
|
102
|
-
import
|
|
103
|
-
import
|
|
104
|
-
import
|
|
105
|
-
import
|
|
106
|
-
import
|
|
107
|
-
import
|
|
108
|
-
import
|
|
109
|
-
import
|
|
110
|
-
import
|
|
111
|
-
import
|
|
112
|
-
import
|
|
113
|
-
import
|
|
114
|
-
import
|
|
115
|
-
import
|
|
116
|
-
import
|
|
117
|
-
import
|
|
118
|
-
import
|
|
119
|
-
import
|
|
120
|
-
import
|
|
121
|
-
import
|
|
122
|
-
import
|
|
123
|
-
import
|
|
124
|
-
import
|
|
125
|
-
import
|
|
126
|
-
import
|
|
127
|
-
import
|
|
128
|
-
import
|
|
129
|
-
import
|
|
130
|
-
import
|
|
131
|
-
import
|
|
132
|
-
import
|
|
133
|
-
import
|
|
134
|
-
import
|
|
135
|
-
import
|
|
136
|
-
import
|
|
137
|
-
import
|
|
138
|
-
import
|
|
139
|
-
import
|
|
140
|
-
import
|
|
141
|
-
import
|
|
142
|
-
import
|
|
143
|
-
import
|
|
144
|
-
import
|
|
145
|
-
import
|
|
146
|
-
import
|
|
147
|
-
import
|
|
148
|
-
import
|
|
149
|
-
import
|
|
150
|
-
import
|
|
151
|
-
import
|
|
152
|
-
import
|
|
153
|
-
import
|
|
154
|
-
import
|
|
155
|
-
import
|
|
156
|
-
import
|
|
157
|
-
import
|
|
158
|
-
import
|
|
159
|
-
import
|
|
160
|
-
import
|
|
161
|
-
import
|
|
162
|
-
import
|
|
163
|
-
import
|
|
164
|
-
import
|
|
165
|
-
import
|
|
166
|
-
import
|
|
167
|
-
import
|
|
168
|
-
import
|
|
169
|
-
import
|
|
170
|
-
import
|
|
171
|
-
import
|
|
172
|
-
import
|
|
173
|
-
import
|
|
174
|
-
import
|
|
175
|
-
import
|
|
176
|
-
import
|
|
177
|
-
import
|
|
178
|
-
import
|
|
179
|
-
import
|
|
180
|
-
import
|
|
181
|
-
import
|
|
182
|
-
import
|
|
183
|
-
import
|
|
184
|
-
import
|
|
185
|
-
import
|
|
186
|
-
import
|
|
187
|
-
import
|
|
188
|
-
import
|
|
189
|
-
import
|
|
190
|
-
import
|
|
191
|
-
import
|
|
192
|
-
import
|
|
193
|
-
import
|
|
194
|
-
import
|
|
195
|
-
import
|
|
196
|
-
import
|
|
197
|
-
import
|
|
198
|
-
import
|
|
199
|
-
import
|
|
200
|
-
import
|
|
201
|
-
import
|
|
202
|
-
import
|
|
203
|
-
import
|
|
204
|
-
import
|
|
205
|
-
import
|
|
206
|
-
import
|
|
207
|
-
import
|
|
208
|
-
import
|
|
209
|
-
import
|
|
210
|
-
import
|
|
211
|
-
import
|
|
212
|
-
import
|
|
213
|
-
import
|
|
214
|
-
import
|
|
215
|
-
import
|
|
216
|
-
import
|
|
217
|
-
import
|
|
218
|
-
import
|
|
219
|
-
import
|
|
220
|
-
import
|
|
221
|
-
import
|
|
222
|
-
import
|
|
223
|
-
import
|
|
224
|
-
import
|
|
225
|
-
import
|
|
226
|
-
import
|
|
227
|
-
import
|
|
228
|
-
import
|
|
229
|
-
import
|
|
230
|
-
import
|
|
231
|
-
import
|
|
232
|
-
import
|
|
233
|
-
import
|
|
234
|
-
import
|
|
235
|
-
import
|
|
236
|
-
import
|
|
237
|
-
import
|
|
238
|
-
import
|
|
239
|
-
import
|
|
240
|
-
import
|
|
241
|
-
import
|
|
242
|
-
import
|
|
243
|
-
import
|
|
244
|
-
import
|
|
245
|
-
import
|
|
246
|
-
import
|
|
247
|
-
import
|
|
248
|
-
import
|
|
249
|
-
import
|
|
250
|
-
import
|
|
251
|
-
import
|
|
252
|
-
import
|
|
253
|
-
import
|
|
254
|
-
import
|
|
255
|
-
import
|
|
256
|
-
import
|
|
257
|
-
import
|
|
258
|
-
import
|
|
259
|
-
import
|
|
260
|
-
import
|
|
261
|
-
import
|
|
262
|
-
import
|
|
263
|
-
import
|
|
264
|
-
import
|
|
265
|
-
import
|
|
266
|
-
import
|
|
267
|
-
import
|
|
268
|
-
import
|
|
269
|
-
import
|
|
270
|
-
import
|
|
271
|
-
import
|
|
272
|
-
import
|
|
273
|
-
import
|
|
274
|
-
import
|
|
275
|
-
import
|
|
276
|
-
import
|
|
277
|
-
import
|
|
278
|
-
import
|
|
279
|
-
import
|
|
280
|
-
import
|
|
281
|
-
import
|
|
282
|
-
import
|
|
283
|
-
import
|
|
284
|
-
import
|
|
285
|
-
import
|
|
286
|
-
import
|
|
287
|
-
import
|
|
288
|
-
import
|
|
289
|
-
import
|
|
290
|
-
import
|
|
291
|
-
import
|
|
292
|
-
import
|
|
293
|
-
import
|
|
294
|
-
import
|
|
295
|
-
import
|
|
296
|
-
import
|
|
297
|
-
import
|
|
298
|
-
import
|
|
299
|
-
import
|
|
300
|
-
import
|
|
301
|
-
import
|
|
302
|
-
import
|
|
303
|
-
import
|
|
304
|
-
import
|
|
305
|
-
import
|
|
306
|
-
import
|
|
307
|
-
import
|
|
308
|
-
import
|
|
309
|
-
import
|
|
310
|
-
import
|
|
311
|
-
import
|
|
312
|
-
import
|
|
313
|
-
import
|
|
314
|
-
import
|
|
315
|
-
import
|
|
316
|
-
import
|
|
317
|
-
import
|
|
318
|
-
import
|
|
319
|
-
import
|
|
320
|
-
import
|
|
321
|
-
import
|
|
322
|
-
import
|
|
323
|
-
import
|
|
324
|
-
import
|
|
325
|
-
import
|
|
326
|
-
import
|
|
327
|
-
import
|
|
328
|
-
import
|
|
329
|
-
import
|
|
330
|
-
import
|
|
331
|
-
import
|
|
332
|
-
import
|
|
333
|
-
import
|
|
334
|
-
import
|
|
335
|
-
import
|
|
336
|
-
import
|
|
337
|
-
import
|
|
338
|
-
import
|
|
339
|
-
import
|
|
340
|
-
import
|
|
341
|
-
import
|
|
342
|
-
import
|
|
343
|
-
import
|
|
344
|
-
import
|
|
345
|
-
import
|
|
346
|
-
import
|
|
347
|
-
import
|
|
348
|
-
import
|
|
349
|
-
import
|
|
350
|
-
import
|
|
351
|
-
import
|
|
352
|
-
import
|
|
353
|
-
import
|
|
354
|
-
import
|
|
355
|
-
import
|
|
356
|
-
import
|
|
357
|
-
import
|
|
358
|
-
import
|
|
359
|
-
import
|
|
360
|
-
import
|
|
361
|
-
import
|
|
362
|
-
import
|
|
363
|
-
import
|
|
364
|
-
import
|
|
365
|
-
import
|
|
366
|
-
import
|
|
367
|
-
import
|
|
368
|
-
import
|
|
369
|
-
import
|
|
370
|
-
import
|
|
371
|
-
import
|
|
372
|
-
import
|
|
373
|
-
import
|
|
374
|
-
import
|
|
375
|
-
import
|
|
376
|
-
import
|
|
377
|
-
import
|
|
378
|
-
import
|
|
379
|
-
import
|
|
380
|
-
import
|
|
381
|
-
import
|
|
382
|
-
import
|
|
383
|
-
import
|
|
384
|
-
import
|
|
385
|
-
import
|
|
386
|
-
import
|
|
387
|
-
import
|
|
388
|
-
import
|
|
389
|
-
import
|
|
390
|
-
import
|
|
391
|
-
import
|
|
392
|
-
import
|
|
393
|
-
import
|
|
394
|
-
import
|
|
395
|
-
import
|
|
396
|
-
import
|
|
397
|
-
import
|
|
398
|
-
import
|
|
399
|
-
import
|
|
400
|
-
import
|
|
401
|
-
import
|
|
402
|
-
import
|
|
403
|
-
import
|
|
404
|
-
import
|
|
405
|
-
import
|
|
406
|
-
import
|
|
407
|
-
import
|
|
408
|
-
import
|
|
409
|
-
import
|
|
410
|
-
import
|
|
411
|
-
import
|
|
412
|
-
import
|
|
413
|
-
import
|
|
414
|
-
import
|
|
415
|
-
import
|
|
416
|
-
import
|
|
417
|
-
import
|
|
418
|
-
import
|
|
419
|
-
import
|
|
420
|
-
import
|
|
421
|
-
import
|
|
422
|
-
import
|
|
423
|
-
import
|
|
424
|
-
import
|
|
425
|
-
import
|
|
426
|
-
import
|
|
427
|
-
import
|
|
428
|
-
import
|
|
429
|
-
import
|
|
430
|
-
import
|
|
431
|
-
import
|
|
432
|
-
import
|
|
433
|
-
import
|
|
434
|
-
import
|
|
435
|
-
import
|
|
436
|
-
import
|
|
437
|
-
import
|
|
438
|
-
import
|
|
439
|
-
import
|
|
440
|
-
import
|
|
441
|
-
import
|
|
442
|
-
import
|
|
443
|
-
import
|
|
444
|
-
import
|
|
445
|
-
import
|
|
446
|
-
import
|
|
447
|
-
import
|
|
448
|
-
import
|
|
449
|
-
import
|
|
450
|
-
import
|
|
451
|
-
import
|
|
452
|
-
import
|
|
453
|
-
import
|
|
454
|
-
import
|
|
455
|
-
import
|
|
456
|
-
import
|
|
457
|
-
import
|
|
458
|
-
import
|
|
459
|
-
import
|
|
460
|
-
import
|
|
461
|
-
import
|
|
462
|
-
import
|
|
463
|
-
import
|
|
464
|
-
import
|
|
465
|
-
import
|
|
466
|
-
import
|
|
467
|
-
import
|
|
468
|
-
import
|
|
469
|
-
import
|
|
470
|
-
import
|
|
471
|
-
import
|
|
472
|
-
import
|
|
473
|
-
import
|
|
474
|
-
import
|
|
475
|
-
import
|
|
476
|
-
import
|
|
477
|
-
import
|
|
478
|
-
import
|
|
479
|
-
import
|
|
480
|
-
import
|
|
481
|
-
import
|
|
482
|
-
import
|
|
483
|
-
import
|
|
484
|
-
import
|
|
485
|
-
import
|
|
486
|
-
import
|
|
487
|
-
import
|
|
488
|
-
import
|
|
489
|
-
import
|
|
490
|
-
import
|
|
491
|
-
import
|
|
492
|
-
import
|
|
493
|
-
import
|
|
494
|
-
import
|
|
495
|
-
import
|
|
496
|
-
import
|
|
497
|
-
import
|
|
498
|
-
import
|
|
499
|
-
import
|
|
500
|
-
import
|
|
501
|
-
|
|
502
|
-
import widget_ios_medium from './widget_ios_medium.js'
|
|
503
|
-
|
|
504
|
-
export {
|
|
505
|
-
above_the_line,
|
|
506
|
-
above_the_line_medium,
|
|
507
|
-
account,
|
|
508
|
-
account_card,
|
|
509
|
-
account_card_medium,
|
|
510
|
-
account_in,
|
|
511
|
-
account_in_medium,
|
|
512
|
-
account_medium,
|
|
513
|
-
account_out,
|
|
514
|
-
account_out_medium,
|
|
515
|
-
account_percent,
|
|
516
|
-
add,
|
|
517
|
-
add_circled,
|
|
518
|
-
add_circled_medium,
|
|
519
|
-
add_medium,
|
|
520
|
-
ainvoice,
|
|
521
|
-
ainvoice_medium,
|
|
522
|
-
ambulance,
|
|
523
|
-
ambulance_medium,
|
|
524
|
-
animal_print,
|
|
525
|
-
animal_print_medium,
|
|
526
|
-
apple_watch,
|
|
527
|
-
apple_watch_medium,
|
|
528
|
-
arrow_down,
|
|
529
|
-
arrow_down_medium,
|
|
530
|
-
arrow_left,
|
|
531
|
-
arrow_left_medium,
|
|
532
|
-
arrow_right,
|
|
533
|
-
arrow_right_medium,
|
|
534
|
-
arrow_up,
|
|
535
|
-
arrow_up_medium,
|
|
536
|
-
attachment,
|
|
537
|
-
attachment_medium,
|
|
538
|
-
baby,
|
|
539
|
-
baby_medium,
|
|
540
|
-
bandage,
|
|
541
|
-
bandage_medium,
|
|
542
|
-
bank,
|
|
543
|
-
bank_medium,
|
|
544
|
-
bankid,
|
|
545
|
-
bankid_medium,
|
|
546
|
-
bankid_mobile,
|
|
547
|
-
bankid_mobile_medium,
|
|
548
|
-
bankid_qr,
|
|
549
|
-
bankid_qr_medium,
|
|
550
|
-
bell,
|
|
551
|
-
bell_medium,
|
|
552
|
-
bicycle,
|
|
553
|
-
bicycle_medium,
|
|
554
|
-
boat,
|
|
555
|
-
boat_medium,
|
|
556
|
-
bowling,
|
|
557
|
-
bowling_medium,
|
|
558
|
-
brickwall,
|
|
559
|
-
brickwall_medium,
|
|
560
|
-
broken_chain,
|
|
561
|
-
broken_chain_medium,
|
|
562
|
-
brush,
|
|
563
|
-
brush_medium,
|
|
564
|
-
bsu,
|
|
565
|
-
bsu_medium,
|
|
566
|
-
bubble,
|
|
567
|
-
bubble_medium,
|
|
568
|
-
building_construction,
|
|
569
|
-
building_construction_medium,
|
|
570
|
-
calculator,
|
|
571
|
-
calculator_medium,
|
|
572
|
-
calendar,
|
|
573
|
-
calendar_medium,
|
|
574
|
-
camera,
|
|
575
|
-
camera_medium,
|
|
576
|
-
camper_trailer,
|
|
577
|
-
camper_trailer_medium,
|
|
578
|
-
car_1,
|
|
579
|
-
car_1_medium,
|
|
580
|
-
car_2,
|
|
581
|
-
car_2_medium,
|
|
582
|
-
caravan,
|
|
583
|
-
caravan_medium,
|
|
584
|
-
card,
|
|
585
|
-
card_in,
|
|
586
|
-
card_in_medium,
|
|
587
|
-
card_medium,
|
|
588
|
-
card_out,
|
|
589
|
-
card_out_medium,
|
|
590
|
-
card_with_padlock,
|
|
591
|
-
card_with_padlock_medium,
|
|
592
|
-
cat,
|
|
593
|
-
cat_medium,
|
|
594
|
-
chain,
|
|
595
|
-
chain_medium,
|
|
596
|
-
charger,
|
|
597
|
-
charger_medium,
|
|
598
|
-
chat,
|
|
599
|
-
chat_medium,
|
|
600
|
-
chatbot,
|
|
601
|
-
chatbot_medium,
|
|
602
|
-
check,
|
|
603
|
-
check_medium,
|
|
604
|
-
chevron_down,
|
|
605
|
-
chevron_down_medium,
|
|
606
|
-
chevron_left,
|
|
607
|
-
chevron_left_medium,
|
|
608
|
-
chevron_right,
|
|
609
|
-
chevron_right_medium,
|
|
610
|
-
chevron_up,
|
|
611
|
-
chevron_up_medium,
|
|
612
|
-
chip,
|
|
613
|
-
chip_medium,
|
|
614
|
-
clock,
|
|
615
|
-
clock_medium,
|
|
616
|
-
close,
|
|
617
|
-
close_medium,
|
|
618
|
-
cloud,
|
|
619
|
-
cloud_download,
|
|
620
|
-
cloud_download_medium,
|
|
621
|
-
cloud_medium,
|
|
622
|
-
cloud_rain,
|
|
623
|
-
cloud_rain_medium,
|
|
624
|
-
cloud_sync,
|
|
625
|
-
cloud_sync_medium,
|
|
626
|
-
cloud_transfer,
|
|
627
|
-
cloud_transfer_medium,
|
|
628
|
-
cloud_upload,
|
|
629
|
-
cloud_upload_medium,
|
|
630
|
-
cog,
|
|
631
|
-
cog_medium,
|
|
632
|
-
coins_1,
|
|
633
|
-
coins_1_medium,
|
|
634
|
-
coins_2,
|
|
635
|
-
coins_2_medium,
|
|
636
|
-
coins_3,
|
|
637
|
-
coins_3_medium,
|
|
638
|
-
compose,
|
|
639
|
-
compose_medium,
|
|
640
|
-
confetti,
|
|
641
|
-
confetti_medium,
|
|
642
|
-
contacts,
|
|
643
|
-
contacts_medium,
|
|
644
|
-
cookie,
|
|
645
|
-
cookie_medium,
|
|
646
|
-
copy,
|
|
647
|
-
copy_medium,
|
|
648
|
-
credit_note,
|
|
649
|
-
credit_note_medium,
|
|
650
|
-
currency,
|
|
651
|
-
currency_medium,
|
|
652
|
-
customer_service,
|
|
653
|
-
customer_service_medium,
|
|
654
|
-
deleted_invoice,
|
|
655
|
-
deleted_invoice_medium,
|
|
656
|
-
diamond,
|
|
657
|
-
diamond_medium,
|
|
658
|
-
digipass,
|
|
659
|
-
digipass_medium,
|
|
660
|
-
digipost,
|
|
661
|
-
digipost_medium,
|
|
662
|
-
dismiss_keyboard,
|
|
663
|
-
dismiss_keyboard_medium,
|
|
664
|
-
document,
|
|
665
|
-
document_add,
|
|
666
|
-
document_add_medium,
|
|
667
|
-
document_contract,
|
|
668
|
-
document_contract_medium,
|
|
669
|
-
document_csv,
|
|
670
|
-
document_csv_medium,
|
|
671
|
-
document_loupe,
|
|
672
|
-
document_loupe_medium,
|
|
673
|
-
document_medium,
|
|
674
|
-
document_pdf,
|
|
675
|
-
document_pdf_medium,
|
|
676
|
-
document_rejected,
|
|
677
|
-
document_rejected_medium,
|
|
678
|
-
document_signing,
|
|
679
|
-
document_signing_medium,
|
|
680
|
-
document_txt,
|
|
681
|
-
document_txt_medium,
|
|
682
|
-
document_warning,
|
|
683
|
-
document_warning_medium,
|
|
684
|
-
document_word,
|
|
685
|
-
document_word_medium,
|
|
686
|
-
document_xls,
|
|
687
|
-
document_xls_medium,
|
|
688
|
-
dog,
|
|
689
|
-
dog_medium,
|
|
690
|
-
download,
|
|
691
|
-
download_medium,
|
|
692
|
-
edit,
|
|
693
|
-
edit_medium,
|
|
694
|
-
einvoice,
|
|
695
|
-
einvoice_medium,
|
|
696
|
-
email,
|
|
697
|
-
email_medium,
|
|
698
|
-
equities_and_mutual_funds,
|
|
699
|
-
equities_and_mutual_funds_medium,
|
|
700
|
-
exclamation,
|
|
701
|
-
exclamation_circled,
|
|
702
|
-
exclamation_circled_medium,
|
|
703
|
-
exclamation_medium,
|
|
704
|
-
exclamation_triangle,
|
|
705
|
-
exclamation_triangle_medium,
|
|
706
|
-
facebook,
|
|
707
|
-
facebook_medium,
|
|
708
|
-
factory,
|
|
709
|
-
factory_medium,
|
|
710
|
-
file,
|
|
711
|
-
file_add,
|
|
712
|
-
file_add_medium,
|
|
713
|
-
file_contract,
|
|
714
|
-
file_contract_medium,
|
|
715
|
-
file_csv,
|
|
716
|
-
file_csv_medium,
|
|
717
|
-
file_loupe,
|
|
718
|
-
file_loupe_medium,
|
|
719
|
-
file_medium,
|
|
720
|
-
file_pdf,
|
|
721
|
-
file_pdf_medium,
|
|
722
|
-
file_ppt,
|
|
723
|
-
file_ppt_medium,
|
|
724
|
-
file_rejected,
|
|
725
|
-
file_rejected_medium,
|
|
726
|
-
file_signing,
|
|
727
|
-
file_signing_medium,
|
|
728
|
-
file_txt,
|
|
729
|
-
file_txt_medium,
|
|
730
|
-
file_warning,
|
|
731
|
-
file_warning_medium,
|
|
732
|
-
file_word,
|
|
733
|
-
file_word_medium,
|
|
734
|
-
file_xls,
|
|
735
|
-
file_xls_medium,
|
|
736
|
-
file_xml,
|
|
737
|
-
file_xml_medium,
|
|
738
|
-
filter,
|
|
739
|
-
filter_medium,
|
|
740
|
-
first_aid,
|
|
741
|
-
first_aid_medium,
|
|
742
|
-
flying_money,
|
|
743
|
-
flying_money_medium,
|
|
744
|
-
folder,
|
|
745
|
-
folder_medium,
|
|
746
|
-
fridge,
|
|
747
|
-
fridge_medium,
|
|
748
|
-
fullscreen,
|
|
749
|
-
fullscreen_medium,
|
|
750
|
-
fund_in,
|
|
751
|
-
fund_out,
|
|
752
|
-
funds,
|
|
753
|
-
funds_in,
|
|
754
|
-
funds_in_medium,
|
|
755
|
-
funds_medium,
|
|
756
|
-
funds_out,
|
|
757
|
-
funds_out_medium,
|
|
758
|
-
globe,
|
|
759
|
-
globe_medium,
|
|
760
|
-
grabber,
|
|
761
|
-
grabber_medium,
|
|
762
|
-
graph_decrease,
|
|
763
|
-
graph_decrease_medium,
|
|
764
|
-
graph_increase,
|
|
765
|
-
graph_increase_medium,
|
|
766
|
-
hamburger,
|
|
767
|
-
hamburger_medium,
|
|
768
|
-
hand_money,
|
|
769
|
-
hand_money_medium,
|
|
770
|
-
hanger,
|
|
771
|
-
hanger_medium,
|
|
772
|
-
heart,
|
|
773
|
-
heart_medium,
|
|
774
|
-
heart_rate,
|
|
775
|
-
heart_rate_medium,
|
|
776
|
-
hide,
|
|
777
|
-
hide_medium,
|
|
778
|
-
history,
|
|
779
|
-
history_medium,
|
|
780
|
-
home,
|
|
781
|
-
home_medium,
|
|
782
|
-
horse,
|
|
783
|
-
horse_medium,
|
|
784
|
-
hourglass,
|
|
785
|
-
hourglass_medium,
|
|
786
|
-
house_1,
|
|
787
|
-
house_1_medium,
|
|
788
|
-
house_2,
|
|
789
|
-
house_2_medium,
|
|
790
|
-
house_value,
|
|
791
|
-
house_value_medium,
|
|
792
|
-
information,
|
|
793
|
-
information_bubble,
|
|
794
|
-
information_bubble_medium,
|
|
795
|
-
information_circled,
|
|
796
|
-
information_circled_medium,
|
|
797
|
-
information_medium,
|
|
798
|
-
instagram,
|
|
799
|
-
instagram_medium,
|
|
800
|
-
insurance,
|
|
801
|
-
insurance_medium,
|
|
802
|
-
kid_number,
|
|
803
|
-
kid_number_medium,
|
|
804
|
-
language,
|
|
805
|
-
language_medium,
|
|
806
|
-
launch,
|
|
807
|
-
launch_medium,
|
|
808
|
-
leaf,
|
|
809
|
-
leaf_medium,
|
|
810
|
-
lightbulb,
|
|
811
|
-
lightbulb_medium,
|
|
812
|
-
linkedin,
|
|
813
|
-
linkedin_medium,
|
|
814
|
-
list,
|
|
815
|
-
list_medium,
|
|
816
|
-
loan,
|
|
817
|
-
loan_in,
|
|
818
|
-
loan_in_medium,
|
|
819
|
-
loan_medium,
|
|
820
|
-
loan_out,
|
|
821
|
-
loan_out_medium,
|
|
822
|
-
location,
|
|
823
|
-
location_medium,
|
|
824
|
-
log_in,
|
|
825
|
-
log_in_medium,
|
|
826
|
-
log_out,
|
|
827
|
-
log_out_medium,
|
|
828
|
-
loupe,
|
|
829
|
-
loupe_medium,
|
|
830
|
-
mastercard,
|
|
831
|
-
mastercard_card,
|
|
832
|
-
mastercard_card_medium,
|
|
833
|
-
mastercard_medium,
|
|
834
|
-
megaphone,
|
|
835
|
-
megaphone_medium,
|
|
836
|
-
microphone,
|
|
837
|
-
microphone_medium,
|
|
838
|
-
minimize,
|
|
839
|
-
minimize_medium,
|
|
840
|
-
mobilephone,
|
|
841
|
-
mobilephone_medium,
|
|
842
|
-
more,
|
|
843
|
-
more_medium,
|
|
844
|
-
more_vertical,
|
|
845
|
-
more_vertical_medium,
|
|
846
|
-
motorcycle,
|
|
847
|
-
motorcycle_medium,
|
|
848
|
-
move,
|
|
849
|
-
move_medium,
|
|
850
|
-
office_buildings,
|
|
851
|
-
office_buildings_medium,
|
|
852
|
-
oil,
|
|
853
|
-
oil_medium,
|
|
854
|
-
owl,
|
|
855
|
-
owl_medium,
|
|
856
|
-
padlock,
|
|
857
|
-
padlock_medium,
|
|
858
|
-
paperclip,
|
|
859
|
-
paperclip_medium,
|
|
860
|
-
paragraph,
|
|
861
|
-
paragraph_medium,
|
|
862
|
-
pause,
|
|
863
|
-
pause_medium,
|
|
864
|
-
pay_from,
|
|
865
|
-
pay_from_medium,
|
|
866
|
-
pension,
|
|
867
|
-
pension_medium,
|
|
868
|
-
people_1,
|
|
869
|
-
people_1_medium,
|
|
870
|
-
people_2,
|
|
871
|
-
people_2_medium,
|
|
872
|
-
person,
|
|
873
|
-
person_medium,
|
|
874
|
-
person_shield,
|
|
875
|
-
person_shield_medium,
|
|
876
|
-
phone,
|
|
877
|
-
phone_medium,
|
|
878
|
-
photo,
|
|
879
|
-
photo_medium,
|
|
880
|
-
pin,
|
|
881
|
-
pin_code,
|
|
882
|
-
pin_code_medium,
|
|
883
|
-
pin_medium,
|
|
884
|
-
plant,
|
|
885
|
-
plant_medium,
|
|
886
|
-
play,
|
|
887
|
-
play_medium,
|
|
888
|
-
printer,
|
|
889
|
-
printer_medium,
|
|
890
|
-
products_account_percent_medium,
|
|
891
|
-
profile,
|
|
892
|
-
profile_medium,
|
|
893
|
-
progress,
|
|
894
|
-
progress_medium,
|
|
895
|
-
question,
|
|
896
|
-
question_circled,
|
|
897
|
-
question_circled_medium,
|
|
898
|
-
question_medium,
|
|
899
|
-
recurring,
|
|
900
|
-
recurring_medium,
|
|
901
|
-
redo,
|
|
902
|
-
redo_medium,
|
|
903
|
-
ref_number,
|
|
904
|
-
ref_number_medium,
|
|
905
|
-
refresh,
|
|
906
|
-
refresh_medium,
|
|
907
|
-
reply,
|
|
908
|
-
reply_medium,
|
|
909
|
-
reset,
|
|
910
|
-
reset_medium,
|
|
911
|
-
restaurant,
|
|
912
|
-
restaurant_medium,
|
|
913
|
-
return_1,
|
|
914
|
-
return_1_medium,
|
|
915
|
-
save,
|
|
916
|
-
save_medium,
|
|
917
|
-
savings_account,
|
|
918
|
-
savings_account_in,
|
|
919
|
-
savings_account_in_medium,
|
|
920
|
-
savings_account_medium,
|
|
921
|
-
savings_account_out,
|
|
922
|
-
savings_account_out_medium,
|
|
923
|
-
scissors,
|
|
924
|
-
scissors_medium,
|
|
925
|
-
scooter,
|
|
926
|
-
scooter_medium,
|
|
927
|
-
send,
|
|
928
|
-
send_medium,
|
|
929
|
-
share_android,
|
|
930
|
-
share_android_medium,
|
|
931
|
-
share_ios,
|
|
932
|
-
share_ios_medium,
|
|
933
|
-
shield,
|
|
934
|
-
shield_medium,
|
|
935
|
-
shopping_cart,
|
|
936
|
-
shopping_cart_medium,
|
|
937
|
-
snowmobile,
|
|
938
|
-
snowmobile_medium,
|
|
939
|
-
speedometer,
|
|
940
|
-
speedometer_medium,
|
|
941
|
-
split,
|
|
942
|
-
split_medium,
|
|
943
|
-
star,
|
|
944
|
-
star_medium,
|
|
945
|
-
stocks,
|
|
946
|
-
stocks_medium,
|
|
947
|
-
stop,
|
|
948
|
-
stop_medium,
|
|
949
|
-
stopwatch,
|
|
950
|
-
stopwatch_medium,
|
|
951
|
-
subtract,
|
|
952
|
-
subtract_circled,
|
|
953
|
-
subtract_circled_medium,
|
|
954
|
-
subtract_medium,
|
|
955
|
-
support,
|
|
956
|
-
support_medium,
|
|
957
|
-
swap,
|
|
958
|
-
swap_medium,
|
|
959
|
-
tag,
|
|
960
|
-
tag_medium,
|
|
961
|
-
thumbs_down,
|
|
962
|
-
thumbs_down_medium,
|
|
963
|
-
thumbs_up,
|
|
964
|
-
thumbs_up_medium,
|
|
965
|
-
tractor,
|
|
966
|
-
tractor_medium,
|
|
967
|
-
trailer,
|
|
968
|
-
trailer_medium,
|
|
969
|
-
train,
|
|
970
|
-
train_medium,
|
|
971
|
-
transfer,
|
|
972
|
-
transfer_medium,
|
|
973
|
-
transfer_to,
|
|
974
|
-
transfer_to_medium,
|
|
975
|
-
trash,
|
|
976
|
-
trash_medium,
|
|
977
|
-
travel,
|
|
978
|
-
travel_medium,
|
|
979
|
-
undo,
|
|
980
|
-
undo_medium,
|
|
981
|
-
upload,
|
|
982
|
-
upload_medium,
|
|
983
|
-
video,
|
|
984
|
-
video_medium,
|
|
985
|
-
view,
|
|
986
|
-
view_medium,
|
|
987
|
-
vintage_car,
|
|
988
|
-
vintage_car_medium,
|
|
989
|
-
volume_off,
|
|
990
|
-
volume_off_medium,
|
|
991
|
-
volume_on,
|
|
992
|
-
volume_on_medium,
|
|
993
|
-
wallet,
|
|
994
|
-
wallet_medium,
|
|
995
|
-
wearables,
|
|
996
|
-
wearables_medium,
|
|
997
|
-
web,
|
|
998
|
-
web_medium,
|
|
999
|
-
wheelchair,
|
|
1000
|
-
wheelchair_medium,
|
|
1001
|
-
widget_android,
|
|
1002
|
-
widget_android_medium,
|
|
1003
|
-
widget_ios,
|
|
1004
|
-
widget_ios_medium,
|
|
1005
|
-
}
|
|
1
|
+
import above_the_line from "./above_the_line.js";
|
|
2
|
+
import above_the_line_medium from "./above_the_line_medium.js";
|
|
3
|
+
import account from "./account.js";
|
|
4
|
+
import account_card from "./account_card.js";
|
|
5
|
+
import account_card_medium from "./account_card_medium.js";
|
|
6
|
+
import account_in from "./account_in.js";
|
|
7
|
+
import account_in_medium from "./account_in_medium.js";
|
|
8
|
+
import account_medium from "./account_medium.js";
|
|
9
|
+
import account_out from "./account_out.js";
|
|
10
|
+
import account_out_medium from "./account_out_medium.js";
|
|
11
|
+
import account_percent from "./account_percent.js";
|
|
12
|
+
import add from "./add.js";
|
|
13
|
+
import add_circled from "./add_circled.js";
|
|
14
|
+
import add_circled_medium from "./add_circled_medium.js";
|
|
15
|
+
import add_medium from "./add_medium.js";
|
|
16
|
+
import ainvoice from "./ainvoice.js";
|
|
17
|
+
import ainvoice_medium from "./ainvoice_medium.js";
|
|
18
|
+
import ambulance from "./ambulance.js";
|
|
19
|
+
import ambulance_medium from "./ambulance_medium.js";
|
|
20
|
+
import animal_print from "./animal_print.js";
|
|
21
|
+
import animal_print_medium from "./animal_print_medium.js";
|
|
22
|
+
import apple_watch from "./apple_watch.js";
|
|
23
|
+
import apple_watch_medium from "./apple_watch_medium.js";
|
|
24
|
+
import arrow_down from "./arrow_down.js";
|
|
25
|
+
import arrow_down_medium from "./arrow_down_medium.js";
|
|
26
|
+
import arrow_left from "./arrow_left.js";
|
|
27
|
+
import arrow_left_medium from "./arrow_left_medium.js";
|
|
28
|
+
import arrow_right from "./arrow_right.js";
|
|
29
|
+
import arrow_right_medium from "./arrow_right_medium.js";
|
|
30
|
+
import arrow_up from "./arrow_up.js";
|
|
31
|
+
import arrow_up_medium from "./arrow_up_medium.js";
|
|
32
|
+
import attachment from "./attachment.js";
|
|
33
|
+
import attachment_medium from "./attachment_medium.js";
|
|
34
|
+
import baby from "./baby.js";
|
|
35
|
+
import baby_medium from "./baby_medium.js";
|
|
36
|
+
import bandage from "./bandage.js";
|
|
37
|
+
import bandage_medium from "./bandage_medium.js";
|
|
38
|
+
import bank from "./bank.js";
|
|
39
|
+
import bank_medium from "./bank_medium.js";
|
|
40
|
+
import bankid from "./bankid.js";
|
|
41
|
+
import bankid_medium from "./bankid_medium.js";
|
|
42
|
+
import bankid_mobile from "./bankid_mobile.js";
|
|
43
|
+
import bankid_mobile_medium from "./bankid_mobile_medium.js";
|
|
44
|
+
import bankid_qr from "./bankid_qr.js";
|
|
45
|
+
import bankid_qr_medium from "./bankid_qr_medium.js";
|
|
46
|
+
import bell from "./bell.js";
|
|
47
|
+
import bell_medium from "./bell_medium.js";
|
|
48
|
+
import bicycle from "./bicycle.js";
|
|
49
|
+
import bicycle_medium from "./bicycle_medium.js";
|
|
50
|
+
import boat from "./boat.js";
|
|
51
|
+
import boat_medium from "./boat_medium.js";
|
|
52
|
+
import bowling from "./bowling.js";
|
|
53
|
+
import bowling_medium from "./bowling_medium.js";
|
|
54
|
+
import brickwall from "./brickwall.js";
|
|
55
|
+
import brickwall_medium from "./brickwall_medium.js";
|
|
56
|
+
import broken_chain from "./broken_chain.js";
|
|
57
|
+
import broken_chain_medium from "./broken_chain_medium.js";
|
|
58
|
+
import brush from "./brush.js";
|
|
59
|
+
import brush_medium from "./brush_medium.js";
|
|
60
|
+
import bsu from "./bsu.js";
|
|
61
|
+
import bsu_medium from "./bsu_medium.js";
|
|
62
|
+
import bubble from "./bubble.js";
|
|
63
|
+
import bubble_medium from "./bubble_medium.js";
|
|
64
|
+
import building_construction from "./building_construction.js";
|
|
65
|
+
import building_construction_medium from "./building_construction_medium.js";
|
|
66
|
+
import calculator from "./calculator.js";
|
|
67
|
+
import calculator_medium from "./calculator_medium.js";
|
|
68
|
+
import calendar from "./calendar.js";
|
|
69
|
+
import calendar_medium from "./calendar_medium.js";
|
|
70
|
+
import camera from "./camera.js";
|
|
71
|
+
import camera_medium from "./camera_medium.js";
|
|
72
|
+
import camper_trailer from "./camper_trailer.js";
|
|
73
|
+
import camper_trailer_medium from "./camper_trailer_medium.js";
|
|
74
|
+
import car_1 from "./car_1.js";
|
|
75
|
+
import car_1_medium from "./car_1_medium.js";
|
|
76
|
+
import car_2 from "./car_2.js";
|
|
77
|
+
import car_2_medium from "./car_2_medium.js";
|
|
78
|
+
import caravan from "./caravan.js";
|
|
79
|
+
import caravan_medium from "./caravan_medium.js";
|
|
80
|
+
import card from "./card.js";
|
|
81
|
+
import card_in from "./card_in.js";
|
|
82
|
+
import card_in_medium from "./card_in_medium.js";
|
|
83
|
+
import card_medium from "./card_medium.js";
|
|
84
|
+
import card_out from "./card_out.js";
|
|
85
|
+
import card_out_medium from "./card_out_medium.js";
|
|
86
|
+
import card_with_padlock from "./card_with_padlock.js";
|
|
87
|
+
import card_with_padlock_medium from "./card_with_padlock_medium.js";
|
|
88
|
+
import cat from "./cat.js";
|
|
89
|
+
import cat_medium from "./cat_medium.js";
|
|
90
|
+
import chain from "./chain.js";
|
|
91
|
+
import chain_medium from "./chain_medium.js";
|
|
92
|
+
import charger from "./charger.js";
|
|
93
|
+
import charger_medium from "./charger_medium.js";
|
|
94
|
+
import chat from "./chat.js";
|
|
95
|
+
import chat_medium from "./chat_medium.js";
|
|
96
|
+
import chatbot from "./chatbot.js";
|
|
97
|
+
import chatbot_medium from "./chatbot_medium.js";
|
|
98
|
+
import check from "./check.js";
|
|
99
|
+
import check_medium from "./check_medium.js";
|
|
100
|
+
import chevron_down from "./chevron_down.js";
|
|
101
|
+
import chevron_down_medium from "./chevron_down_medium.js";
|
|
102
|
+
import chevron_left from "./chevron_left.js";
|
|
103
|
+
import chevron_left_medium from "./chevron_left_medium.js";
|
|
104
|
+
import chevron_right from "./chevron_right.js";
|
|
105
|
+
import chevron_right_medium from "./chevron_right_medium.js";
|
|
106
|
+
import chevron_up from "./chevron_up.js";
|
|
107
|
+
import chevron_up_medium from "./chevron_up_medium.js";
|
|
108
|
+
import chip from "./chip.js";
|
|
109
|
+
import chip_medium from "./chip_medium.js";
|
|
110
|
+
import clock from "./clock.js";
|
|
111
|
+
import clock_medium from "./clock_medium.js";
|
|
112
|
+
import close from "./close.js";
|
|
113
|
+
import close_medium from "./close_medium.js";
|
|
114
|
+
import cloud from "./cloud.js";
|
|
115
|
+
import cloud_download from "./cloud_download.js";
|
|
116
|
+
import cloud_download_medium from "./cloud_download_medium.js";
|
|
117
|
+
import cloud_medium from "./cloud_medium.js";
|
|
118
|
+
import cloud_rain from "./cloud_rain.js";
|
|
119
|
+
import cloud_rain_medium from "./cloud_rain_medium.js";
|
|
120
|
+
import cloud_sync from "./cloud_sync.js";
|
|
121
|
+
import cloud_sync_medium from "./cloud_sync_medium.js";
|
|
122
|
+
import cloud_transfer from "./cloud_transfer.js";
|
|
123
|
+
import cloud_transfer_medium from "./cloud_transfer_medium.js";
|
|
124
|
+
import cloud_upload from "./cloud_upload.js";
|
|
125
|
+
import cloud_upload_medium from "./cloud_upload_medium.js";
|
|
126
|
+
import cog from "./cog.js";
|
|
127
|
+
import cog_medium from "./cog_medium.js";
|
|
128
|
+
import coins_1 from "./coins_1.js";
|
|
129
|
+
import coins_1_medium from "./coins_1_medium.js";
|
|
130
|
+
import coins_2 from "./coins_2.js";
|
|
131
|
+
import coins_2_medium from "./coins_2_medium.js";
|
|
132
|
+
import coins_3 from "./coins_3.js";
|
|
133
|
+
import coins_3_medium from "./coins_3_medium.js";
|
|
134
|
+
import compose from "./compose.js";
|
|
135
|
+
import compose_medium from "./compose_medium.js";
|
|
136
|
+
import confetti from "./confetti.js";
|
|
137
|
+
import confetti_medium from "./confetti_medium.js";
|
|
138
|
+
import contacts from "./contacts.js";
|
|
139
|
+
import contacts_medium from "./contacts_medium.js";
|
|
140
|
+
import cookie from "./cookie.js";
|
|
141
|
+
import cookie_medium from "./cookie_medium.js";
|
|
142
|
+
import copy from "./copy.js";
|
|
143
|
+
import copy_medium from "./copy_medium.js";
|
|
144
|
+
import credit_note from "./credit_note.js";
|
|
145
|
+
import credit_note_medium from "./credit_note_medium.js";
|
|
146
|
+
import currency from "./currency.js";
|
|
147
|
+
import currency_medium from "./currency_medium.js";
|
|
148
|
+
import customer_service from "./customer_service.js";
|
|
149
|
+
import customer_service_medium from "./customer_service_medium.js";
|
|
150
|
+
import deleted_invoice from "./deleted_invoice.js";
|
|
151
|
+
import deleted_invoice_medium from "./deleted_invoice_medium.js";
|
|
152
|
+
import diamond from "./diamond.js";
|
|
153
|
+
import diamond_medium from "./diamond_medium.js";
|
|
154
|
+
import digipass from "./digipass.js";
|
|
155
|
+
import digipass_medium from "./digipass_medium.js";
|
|
156
|
+
import digipost from "./digipost.js";
|
|
157
|
+
import digipost_medium from "./digipost_medium.js";
|
|
158
|
+
import dismiss_keyboard from "./dismiss_keyboard.js";
|
|
159
|
+
import dismiss_keyboard_medium from "./dismiss_keyboard_medium.js";
|
|
160
|
+
import document from "./document.js";
|
|
161
|
+
import document_add from "./document_add.js";
|
|
162
|
+
import document_add_medium from "./document_add_medium.js";
|
|
163
|
+
import document_contract from "./document_contract.js";
|
|
164
|
+
import document_contract_medium from "./document_contract_medium.js";
|
|
165
|
+
import document_csv from "./document_csv.js";
|
|
166
|
+
import document_csv_medium from "./document_csv_medium.js";
|
|
167
|
+
import document_loupe from "./document_loupe.js";
|
|
168
|
+
import document_loupe_medium from "./document_loupe_medium.js";
|
|
169
|
+
import document_medium from "./document_medium.js";
|
|
170
|
+
import document_pdf from "./document_pdf.js";
|
|
171
|
+
import document_pdf_medium from "./document_pdf_medium.js";
|
|
172
|
+
import document_rejected from "./document_rejected.js";
|
|
173
|
+
import document_rejected_medium from "./document_rejected_medium.js";
|
|
174
|
+
import document_signing from "./document_signing.js";
|
|
175
|
+
import document_signing_medium from "./document_signing_medium.js";
|
|
176
|
+
import document_txt from "./document_txt.js";
|
|
177
|
+
import document_txt_medium from "./document_txt_medium.js";
|
|
178
|
+
import document_warning from "./document_warning.js";
|
|
179
|
+
import document_warning_medium from "./document_warning_medium.js";
|
|
180
|
+
import document_word from "./document_word.js";
|
|
181
|
+
import document_word_medium from "./document_word_medium.js";
|
|
182
|
+
import document_xls from "./document_xls.js";
|
|
183
|
+
import document_xls_medium from "./document_xls_medium.js";
|
|
184
|
+
import dog from "./dog.js";
|
|
185
|
+
import dog_medium from "./dog_medium.js";
|
|
186
|
+
import download from "./download.js";
|
|
187
|
+
import download_medium from "./download_medium.js";
|
|
188
|
+
import edit from "./edit.js";
|
|
189
|
+
import edit_medium from "./edit_medium.js";
|
|
190
|
+
import einvoice from "./einvoice.js";
|
|
191
|
+
import einvoice_medium from "./einvoice_medium.js";
|
|
192
|
+
import email from "./email.js";
|
|
193
|
+
import email_medium from "./email_medium.js";
|
|
194
|
+
import equities_and_mutual_funds from "./equities_and_mutual_funds.js";
|
|
195
|
+
import equities_and_mutual_funds_medium from "./equities_and_mutual_funds_medium.js";
|
|
196
|
+
import exclamation from "./exclamation.js";
|
|
197
|
+
import exclamation_circled from "./exclamation_circled.js";
|
|
198
|
+
import exclamation_circled_medium from "./exclamation_circled_medium.js";
|
|
199
|
+
import exclamation_medium from "./exclamation_medium.js";
|
|
200
|
+
import exclamation_triangle from "./exclamation_triangle.js";
|
|
201
|
+
import exclamation_triangle_medium from "./exclamation_triangle_medium.js";
|
|
202
|
+
import facebook from "./facebook.js";
|
|
203
|
+
import facebook_medium from "./facebook_medium.js";
|
|
204
|
+
import factory from "./factory.js";
|
|
205
|
+
import factory_medium from "./factory_medium.js";
|
|
206
|
+
import file from "./file.js";
|
|
207
|
+
import file_add from "./file_add.js";
|
|
208
|
+
import file_add_medium from "./file_add_medium.js";
|
|
209
|
+
import file_contract from "./file_contract.js";
|
|
210
|
+
import file_contract_medium from "./file_contract_medium.js";
|
|
211
|
+
import file_csv from "./file_csv.js";
|
|
212
|
+
import file_csv_medium from "./file_csv_medium.js";
|
|
213
|
+
import file_loupe from "./file_loupe.js";
|
|
214
|
+
import file_loupe_medium from "./file_loupe_medium.js";
|
|
215
|
+
import file_medium from "./file_medium.js";
|
|
216
|
+
import file_pdf from "./file_pdf.js";
|
|
217
|
+
import file_pdf_medium from "./file_pdf_medium.js";
|
|
218
|
+
import file_ppt from "./file_ppt.js";
|
|
219
|
+
import file_ppt_medium from "./file_ppt_medium.js";
|
|
220
|
+
import file_rejected from "./file_rejected.js";
|
|
221
|
+
import file_rejected_medium from "./file_rejected_medium.js";
|
|
222
|
+
import file_signing from "./file_signing.js";
|
|
223
|
+
import file_signing_medium from "./file_signing_medium.js";
|
|
224
|
+
import file_txt from "./file_txt.js";
|
|
225
|
+
import file_txt_medium from "./file_txt_medium.js";
|
|
226
|
+
import file_warning from "./file_warning.js";
|
|
227
|
+
import file_warning_medium from "./file_warning_medium.js";
|
|
228
|
+
import file_word from "./file_word.js";
|
|
229
|
+
import file_word_medium from "./file_word_medium.js";
|
|
230
|
+
import file_xls from "./file_xls.js";
|
|
231
|
+
import file_xls_medium from "./file_xls_medium.js";
|
|
232
|
+
import file_xml from "./file_xml.js";
|
|
233
|
+
import file_xml_medium from "./file_xml_medium.js";
|
|
234
|
+
import filter from "./filter.js";
|
|
235
|
+
import filter_medium from "./filter_medium.js";
|
|
236
|
+
import first_aid from "./first_aid.js";
|
|
237
|
+
import first_aid_medium from "./first_aid_medium.js";
|
|
238
|
+
import flying_money from "./flying_money.js";
|
|
239
|
+
import flying_money_medium from "./flying_money_medium.js";
|
|
240
|
+
import folder from "./folder.js";
|
|
241
|
+
import folder_medium from "./folder_medium.js";
|
|
242
|
+
import fridge from "./fridge.js";
|
|
243
|
+
import fridge_medium from "./fridge_medium.js";
|
|
244
|
+
import fullscreen from "./fullscreen.js";
|
|
245
|
+
import fullscreen_medium from "./fullscreen_medium.js";
|
|
246
|
+
import fund_in from "./fund_in.js";
|
|
247
|
+
import fund_out from "./fund_out.js";
|
|
248
|
+
import funds from "./funds.js";
|
|
249
|
+
import funds_in from "./funds_in.js";
|
|
250
|
+
import funds_in_medium from "./funds_in_medium.js";
|
|
251
|
+
import funds_medium from "./funds_medium.js";
|
|
252
|
+
import funds_out from "./funds_out.js";
|
|
253
|
+
import funds_out_medium from "./funds_out_medium.js";
|
|
254
|
+
import globe from "./globe.js";
|
|
255
|
+
import globe_medium from "./globe_medium.js";
|
|
256
|
+
import grabber from "./grabber.js";
|
|
257
|
+
import grabber_medium from "./grabber_medium.js";
|
|
258
|
+
import graph_decrease from "./graph_decrease.js";
|
|
259
|
+
import graph_decrease_medium from "./graph_decrease_medium.js";
|
|
260
|
+
import graph_increase from "./graph_increase.js";
|
|
261
|
+
import graph_increase_medium from "./graph_increase_medium.js";
|
|
262
|
+
import hamburger from "./hamburger.js";
|
|
263
|
+
import hamburger_medium from "./hamburger_medium.js";
|
|
264
|
+
import hand_money from "./hand_money.js";
|
|
265
|
+
import hand_money_medium from "./hand_money_medium.js";
|
|
266
|
+
import hanger from "./hanger.js";
|
|
267
|
+
import hanger_medium from "./hanger_medium.js";
|
|
268
|
+
import heart from "./heart.js";
|
|
269
|
+
import heart_medium from "./heart_medium.js";
|
|
270
|
+
import heart_rate from "./heart_rate.js";
|
|
271
|
+
import heart_rate_medium from "./heart_rate_medium.js";
|
|
272
|
+
import hide from "./hide.js";
|
|
273
|
+
import hide_medium from "./hide_medium.js";
|
|
274
|
+
import history from "./history.js";
|
|
275
|
+
import history_medium from "./history_medium.js";
|
|
276
|
+
import home from "./home.js";
|
|
277
|
+
import home_medium from "./home_medium.js";
|
|
278
|
+
import horse from "./horse.js";
|
|
279
|
+
import horse_medium from "./horse_medium.js";
|
|
280
|
+
import hourglass from "./hourglass.js";
|
|
281
|
+
import hourglass_medium from "./hourglass_medium.js";
|
|
282
|
+
import house_1 from "./house_1.js";
|
|
283
|
+
import house_1_medium from "./house_1_medium.js";
|
|
284
|
+
import house_2 from "./house_2.js";
|
|
285
|
+
import house_2_medium from "./house_2_medium.js";
|
|
286
|
+
import house_value from "./house_value.js";
|
|
287
|
+
import house_value_medium from "./house_value_medium.js";
|
|
288
|
+
import information from "./information.js";
|
|
289
|
+
import information_bubble from "./information_bubble.js";
|
|
290
|
+
import information_bubble_medium from "./information_bubble_medium.js";
|
|
291
|
+
import information_circled from "./information_circled.js";
|
|
292
|
+
import information_circled_medium from "./information_circled_medium.js";
|
|
293
|
+
import information_medium from "./information_medium.js";
|
|
294
|
+
import instagram from "./instagram.js";
|
|
295
|
+
import instagram_medium from "./instagram_medium.js";
|
|
296
|
+
import insurance from "./insurance.js";
|
|
297
|
+
import insurance_medium from "./insurance_medium.js";
|
|
298
|
+
import kid_number from "./kid_number.js";
|
|
299
|
+
import kid_number_medium from "./kid_number_medium.js";
|
|
300
|
+
import language from "./language.js";
|
|
301
|
+
import language_medium from "./language_medium.js";
|
|
302
|
+
import launch from "./launch.js";
|
|
303
|
+
import launch_medium from "./launch_medium.js";
|
|
304
|
+
import leaf from "./leaf.js";
|
|
305
|
+
import leaf_medium from "./leaf_medium.js";
|
|
306
|
+
import lightbulb from "./lightbulb.js";
|
|
307
|
+
import lightbulb_medium from "./lightbulb_medium.js";
|
|
308
|
+
import linkedin from "./linkedin.js";
|
|
309
|
+
import linkedin_medium from "./linkedin_medium.js";
|
|
310
|
+
import list from "./list.js";
|
|
311
|
+
import list_medium from "./list_medium.js";
|
|
312
|
+
import loan from "./loan.js";
|
|
313
|
+
import loan_in from "./loan_in.js";
|
|
314
|
+
import loan_in_medium from "./loan_in_medium.js";
|
|
315
|
+
import loan_medium from "./loan_medium.js";
|
|
316
|
+
import loan_out from "./loan_out.js";
|
|
317
|
+
import loan_out_medium from "./loan_out_medium.js";
|
|
318
|
+
import location from "./location.js";
|
|
319
|
+
import location_medium from "./location_medium.js";
|
|
320
|
+
import log_in from "./log_in.js";
|
|
321
|
+
import log_in_medium from "./log_in_medium.js";
|
|
322
|
+
import log_out from "./log_out.js";
|
|
323
|
+
import log_out_medium from "./log_out_medium.js";
|
|
324
|
+
import loupe from "./loupe.js";
|
|
325
|
+
import loupe_medium from "./loupe_medium.js";
|
|
326
|
+
import mastercard from "./mastercard.js";
|
|
327
|
+
import mastercard_card from "./mastercard_card.js";
|
|
328
|
+
import mastercard_card_medium from "./mastercard_card_medium.js";
|
|
329
|
+
import mastercard_medium from "./mastercard_medium.js";
|
|
330
|
+
import megaphone from "./megaphone.js";
|
|
331
|
+
import megaphone_medium from "./megaphone_medium.js";
|
|
332
|
+
import microphone from "./microphone.js";
|
|
333
|
+
import microphone_medium from "./microphone_medium.js";
|
|
334
|
+
import minimize from "./minimize.js";
|
|
335
|
+
import minimize_medium from "./minimize_medium.js";
|
|
336
|
+
import mobilephone from "./mobilephone.js";
|
|
337
|
+
import mobilephone_medium from "./mobilephone_medium.js";
|
|
338
|
+
import more from "./more.js";
|
|
339
|
+
import more_medium from "./more_medium.js";
|
|
340
|
+
import more_vertical from "./more_vertical.js";
|
|
341
|
+
import more_vertical_medium from "./more_vertical_medium.js";
|
|
342
|
+
import motorcycle from "./motorcycle.js";
|
|
343
|
+
import motorcycle_medium from "./motorcycle_medium.js";
|
|
344
|
+
import move from "./move.js";
|
|
345
|
+
import move_medium from "./move_medium.js";
|
|
346
|
+
import office_buildings from "./office_buildings.js";
|
|
347
|
+
import office_buildings_medium from "./office_buildings_medium.js";
|
|
348
|
+
import oil from "./oil.js";
|
|
349
|
+
import oil_medium from "./oil_medium.js";
|
|
350
|
+
import owl from "./owl.js";
|
|
351
|
+
import owl_medium from "./owl_medium.js";
|
|
352
|
+
import padlock from "./padlock.js";
|
|
353
|
+
import padlock_medium from "./padlock_medium.js";
|
|
354
|
+
import paperclip from "./paperclip.js";
|
|
355
|
+
import paperclip_medium from "./paperclip_medium.js";
|
|
356
|
+
import paragraph from "./paragraph.js";
|
|
357
|
+
import paragraph_medium from "./paragraph_medium.js";
|
|
358
|
+
import pause from "./pause.js";
|
|
359
|
+
import pause_medium from "./pause_medium.js";
|
|
360
|
+
import pay_from from "./pay_from.js";
|
|
361
|
+
import pay_from_medium from "./pay_from_medium.js";
|
|
362
|
+
import pension from "./pension.js";
|
|
363
|
+
import pension_medium from "./pension_medium.js";
|
|
364
|
+
import people_1 from "./people_1.js";
|
|
365
|
+
import people_1_medium from "./people_1_medium.js";
|
|
366
|
+
import people_2 from "./people_2.js";
|
|
367
|
+
import people_2_medium from "./people_2_medium.js";
|
|
368
|
+
import person from "./person.js";
|
|
369
|
+
import person_medium from "./person_medium.js";
|
|
370
|
+
import person_shield from "./person_shield.js";
|
|
371
|
+
import person_shield_medium from "./person_shield_medium.js";
|
|
372
|
+
import phone from "./phone.js";
|
|
373
|
+
import phone_medium from "./phone_medium.js";
|
|
374
|
+
import photo from "./photo.js";
|
|
375
|
+
import photo_medium from "./photo_medium.js";
|
|
376
|
+
import pin from "./pin.js";
|
|
377
|
+
import pin_code from "./pin_code.js";
|
|
378
|
+
import pin_code_medium from "./pin_code_medium.js";
|
|
379
|
+
import pin_medium from "./pin_medium.js";
|
|
380
|
+
import plant from "./plant.js";
|
|
381
|
+
import plant_medium from "./plant_medium.js";
|
|
382
|
+
import play from "./play.js";
|
|
383
|
+
import play_medium from "./play_medium.js";
|
|
384
|
+
import printer from "./printer.js";
|
|
385
|
+
import printer_medium from "./printer_medium.js";
|
|
386
|
+
import products_account_percent_medium from "./products_account_percent_medium.js";
|
|
387
|
+
import profile from "./profile.js";
|
|
388
|
+
import profile_medium from "./profile_medium.js";
|
|
389
|
+
import progress from "./progress.js";
|
|
390
|
+
import progress_medium from "./progress_medium.js";
|
|
391
|
+
import question from "./question.js";
|
|
392
|
+
import question_circled from "./question_circled.js";
|
|
393
|
+
import question_circled_medium from "./question_circled_medium.js";
|
|
394
|
+
import question_medium from "./question_medium.js";
|
|
395
|
+
import recurring from "./recurring.js";
|
|
396
|
+
import recurring_medium from "./recurring_medium.js";
|
|
397
|
+
import redo from "./redo.js";
|
|
398
|
+
import redo_medium from "./redo_medium.js";
|
|
399
|
+
import ref_number from "./ref_number.js";
|
|
400
|
+
import ref_number_medium from "./ref_number_medium.js";
|
|
401
|
+
import refresh from "./refresh.js";
|
|
402
|
+
import refresh_medium from "./refresh_medium.js";
|
|
403
|
+
import reply from "./reply.js";
|
|
404
|
+
import reply_medium from "./reply_medium.js";
|
|
405
|
+
import reset from "./reset.js";
|
|
406
|
+
import reset_medium from "./reset_medium.js";
|
|
407
|
+
import restaurant from "./restaurant.js";
|
|
408
|
+
import restaurant_medium from "./restaurant_medium.js";
|
|
409
|
+
import return_1 from "./return_1.js";
|
|
410
|
+
import return_1_medium from "./return_1_medium.js";
|
|
411
|
+
import save from "./save.js";
|
|
412
|
+
import save_medium from "./save_medium.js";
|
|
413
|
+
import savings_account from "./savings_account.js";
|
|
414
|
+
import savings_account_in from "./savings_account_in.js";
|
|
415
|
+
import savings_account_in_medium from "./savings_account_in_medium.js";
|
|
416
|
+
import savings_account_medium from "./savings_account_medium.js";
|
|
417
|
+
import savings_account_out from "./savings_account_out.js";
|
|
418
|
+
import savings_account_out_medium from "./savings_account_out_medium.js";
|
|
419
|
+
import scissors from "./scissors.js";
|
|
420
|
+
import scissors_medium from "./scissors_medium.js";
|
|
421
|
+
import scooter from "./scooter.js";
|
|
422
|
+
import scooter_medium from "./scooter_medium.js";
|
|
423
|
+
import send from "./send.js";
|
|
424
|
+
import send_medium from "./send_medium.js";
|
|
425
|
+
import share_android from "./share_android.js";
|
|
426
|
+
import share_android_medium from "./share_android_medium.js";
|
|
427
|
+
import share_ios from "./share_ios.js";
|
|
428
|
+
import share_ios_medium from "./share_ios_medium.js";
|
|
429
|
+
import shield from "./shield.js";
|
|
430
|
+
import shield_medium from "./shield_medium.js";
|
|
431
|
+
import shopping_cart from "./shopping_cart.js";
|
|
432
|
+
import shopping_cart_medium from "./shopping_cart_medium.js";
|
|
433
|
+
import snowmobile from "./snowmobile.js";
|
|
434
|
+
import snowmobile_medium from "./snowmobile_medium.js";
|
|
435
|
+
import speedometer from "./speedometer.js";
|
|
436
|
+
import speedometer_medium from "./speedometer_medium.js";
|
|
437
|
+
import split from "./split.js";
|
|
438
|
+
import split_medium from "./split_medium.js";
|
|
439
|
+
import star from "./star.js";
|
|
440
|
+
import star_medium from "./star_medium.js";
|
|
441
|
+
import stocks from "./stocks.js";
|
|
442
|
+
import stocks_medium from "./stocks_medium.js";
|
|
443
|
+
import stop from "./stop.js";
|
|
444
|
+
import stop_medium from "./stop_medium.js";
|
|
445
|
+
import stopwatch from "./stopwatch.js";
|
|
446
|
+
import stopwatch_medium from "./stopwatch_medium.js";
|
|
447
|
+
import subtract from "./subtract.js";
|
|
448
|
+
import subtract_circled from "./subtract_circled.js";
|
|
449
|
+
import subtract_circled_medium from "./subtract_circled_medium.js";
|
|
450
|
+
import subtract_medium from "./subtract_medium.js";
|
|
451
|
+
import support from "./support.js";
|
|
452
|
+
import support_medium from "./support_medium.js";
|
|
453
|
+
import swap from "./swap.js";
|
|
454
|
+
import swap_medium from "./swap_medium.js";
|
|
455
|
+
import tag from "./tag.js";
|
|
456
|
+
import tag_medium from "./tag_medium.js";
|
|
457
|
+
import thumbs_down from "./thumbs_down.js";
|
|
458
|
+
import thumbs_down_medium from "./thumbs_down_medium.js";
|
|
459
|
+
import thumbs_up from "./thumbs_up.js";
|
|
460
|
+
import thumbs_up_medium from "./thumbs_up_medium.js";
|
|
461
|
+
import tractor from "./tractor.js";
|
|
462
|
+
import tractor_medium from "./tractor_medium.js";
|
|
463
|
+
import trailer from "./trailer.js";
|
|
464
|
+
import trailer_medium from "./trailer_medium.js";
|
|
465
|
+
import train from "./train.js";
|
|
466
|
+
import train_medium from "./train_medium.js";
|
|
467
|
+
import transfer from "./transfer.js";
|
|
468
|
+
import transfer_medium from "./transfer_medium.js";
|
|
469
|
+
import transfer_to from "./transfer_to.js";
|
|
470
|
+
import transfer_to_medium from "./transfer_to_medium.js";
|
|
471
|
+
import trash from "./trash.js";
|
|
472
|
+
import trash_medium from "./trash_medium.js";
|
|
473
|
+
import travel from "./travel.js";
|
|
474
|
+
import travel_medium from "./travel_medium.js";
|
|
475
|
+
import undo from "./undo.js";
|
|
476
|
+
import undo_medium from "./undo_medium.js";
|
|
477
|
+
import upload from "./upload.js";
|
|
478
|
+
import upload_medium from "./upload_medium.js";
|
|
479
|
+
import video from "./video.js";
|
|
480
|
+
import video_medium from "./video_medium.js";
|
|
481
|
+
import view from "./view.js";
|
|
482
|
+
import view_medium from "./view_medium.js";
|
|
483
|
+
import vintage_car from "./vintage_car.js";
|
|
484
|
+
import vintage_car_medium from "./vintage_car_medium.js";
|
|
485
|
+
import volume_off from "./volume_off.js";
|
|
486
|
+
import volume_off_medium from "./volume_off_medium.js";
|
|
487
|
+
import volume_on from "./volume_on.js";
|
|
488
|
+
import volume_on_medium from "./volume_on_medium.js";
|
|
489
|
+
import wallet from "./wallet.js";
|
|
490
|
+
import wallet_medium from "./wallet_medium.js";
|
|
491
|
+
import wearables from "./wearables.js";
|
|
492
|
+
import wearables_medium from "./wearables_medium.js";
|
|
493
|
+
import web from "./web.js";
|
|
494
|
+
import web_medium from "./web_medium.js";
|
|
495
|
+
import wheelchair from "./wheelchair.js";
|
|
496
|
+
import wheelchair_medium from "./wheelchair_medium.js";
|
|
497
|
+
import widget_android from "./widget_android.js";
|
|
498
|
+
import widget_android_medium from "./widget_android_medium.js";
|
|
499
|
+
import widget_ios from "./widget_ios.js";
|
|
500
|
+
import widget_ios_medium from "./widget_ios_medium.js";
|
|
501
|
+
export { above_the_line, above_the_line_medium, account, account_card, account_card_medium, account_in, account_in_medium, account_medium, account_out, account_out_medium, account_percent, add, add_circled, add_circled_medium, add_medium, ainvoice, ainvoice_medium, ambulance, ambulance_medium, animal_print, animal_print_medium, apple_watch, apple_watch_medium, arrow_down, arrow_down_medium, arrow_left, arrow_left_medium, arrow_right, arrow_right_medium, arrow_up, arrow_up_medium, attachment, attachment_medium, baby, baby_medium, bandage, bandage_medium, bank, bank_medium, bankid, bankid_medium, bankid_mobile, bankid_mobile_medium, bankid_qr, bankid_qr_medium, bell, bell_medium, bicycle, bicycle_medium, boat, boat_medium, bowling, bowling_medium, brickwall, brickwall_medium, broken_chain, broken_chain_medium, brush, brush_medium, bsu, bsu_medium, bubble, bubble_medium, building_construction, building_construction_medium, calculator, calculator_medium, calendar, calendar_medium, camera, camera_medium, camper_trailer, camper_trailer_medium, car_1, car_1_medium, car_2, car_2_medium, caravan, caravan_medium, card, card_in, card_in_medium, card_medium, card_out, card_out_medium, card_with_padlock, card_with_padlock_medium, cat, cat_medium, chain, chain_medium, charger, charger_medium, chat, chat_medium, chatbot, chatbot_medium, check, check_medium, chevron_down, chevron_down_medium, chevron_left, chevron_left_medium, chevron_right, chevron_right_medium, chevron_up, chevron_up_medium, chip, chip_medium, clock, clock_medium, close, close_medium, cloud, cloud_download, cloud_download_medium, cloud_medium, cloud_rain, cloud_rain_medium, cloud_sync, cloud_sync_medium, cloud_transfer, cloud_transfer_medium, cloud_upload, cloud_upload_medium, cog, cog_medium, coins_1, coins_1_medium, coins_2, coins_2_medium, coins_3, coins_3_medium, compose, compose_medium, confetti, confetti_medium, contacts, contacts_medium, cookie, cookie_medium, copy, copy_medium, credit_note, credit_note_medium, currency, currency_medium, customer_service, customer_service_medium, deleted_invoice, deleted_invoice_medium, diamond, diamond_medium, digipass, digipass_medium, digipost, digipost_medium, dismiss_keyboard, dismiss_keyboard_medium, document, document_add, document_add_medium, document_contract, document_contract_medium, document_csv, document_csv_medium, document_loupe, document_loupe_medium, document_medium, document_pdf, document_pdf_medium, document_rejected, document_rejected_medium, document_signing, document_signing_medium, document_txt, document_txt_medium, document_warning, document_warning_medium, document_word, document_word_medium, document_xls, document_xls_medium, dog, dog_medium, download, download_medium, edit, edit_medium, einvoice, einvoice_medium, email, email_medium, equities_and_mutual_funds, equities_and_mutual_funds_medium, exclamation, exclamation_circled, exclamation_circled_medium, exclamation_medium, exclamation_triangle, exclamation_triangle_medium, facebook, facebook_medium, factory, factory_medium, file, file_add, file_add_medium, file_contract, file_contract_medium, file_csv, file_csv_medium, file_loupe, file_loupe_medium, file_medium, file_pdf, file_pdf_medium, file_ppt, file_ppt_medium, file_rejected, file_rejected_medium, file_signing, file_signing_medium, file_txt, file_txt_medium, file_warning, file_warning_medium, file_word, file_word_medium, file_xls, file_xls_medium, file_xml, file_xml_medium, filter, filter_medium, first_aid, first_aid_medium, flying_money, flying_money_medium, folder, folder_medium, fridge, fridge_medium, fullscreen, fullscreen_medium, fund_in, fund_out, funds, funds_in, funds_in_medium, funds_medium, funds_out, funds_out_medium, globe, globe_medium, grabber, grabber_medium, graph_decrease, graph_decrease_medium, graph_increase, graph_increase_medium, hamburger, hamburger_medium, hand_money, hand_money_medium, hanger, hanger_medium, heart, heart_medium, heart_rate, heart_rate_medium, hide, hide_medium, history, history_medium, home, home_medium, horse, horse_medium, hourglass, hourglass_medium, house_1, house_1_medium, house_2, house_2_medium, house_value, house_value_medium, information, information_bubble, information_bubble_medium, information_circled, information_circled_medium, information_medium, instagram, instagram_medium, insurance, insurance_medium, kid_number, kid_number_medium, language, language_medium, launch, launch_medium, leaf, leaf_medium, lightbulb, lightbulb_medium, linkedin, linkedin_medium, list, list_medium, loan, loan_in, loan_in_medium, loan_medium, loan_out, loan_out_medium, location, location_medium, log_in, log_in_medium, log_out, log_out_medium, loupe, loupe_medium, mastercard, mastercard_card, mastercard_card_medium, mastercard_medium, megaphone, megaphone_medium, microphone, microphone_medium, minimize, minimize_medium, mobilephone, mobilephone_medium, more, more_medium, more_vertical, more_vertical_medium, motorcycle, motorcycle_medium, move, move_medium, office_buildings, office_buildings_medium, oil, oil_medium, owl, owl_medium, padlock, padlock_medium, paperclip, paperclip_medium, paragraph, paragraph_medium, pause, pause_medium, pay_from, pay_from_medium, pension, pension_medium, people_1, people_1_medium, people_2, people_2_medium, person, person_medium, person_shield, person_shield_medium, phone, phone_medium, photo, photo_medium, pin, pin_code, pin_code_medium, pin_medium, plant, plant_medium, play, play_medium, printer, printer_medium, products_account_percent_medium, profile, profile_medium, progress, progress_medium, question, question_circled, question_circled_medium, question_medium, recurring, recurring_medium, redo, redo_medium, ref_number, ref_number_medium, refresh, refresh_medium, reply, reply_medium, reset, reset_medium, restaurant, restaurant_medium, return_1, return_1_medium, save, save_medium, savings_account, savings_account_in, savings_account_in_medium, savings_account_medium, savings_account_out, savings_account_out_medium, scissors, scissors_medium, scooter, scooter_medium, send, send_medium, share_android, share_android_medium, share_ios, share_ios_medium, shield, shield_medium, shopping_cart, shopping_cart_medium, snowmobile, snowmobile_medium, speedometer, speedometer_medium, split, split_medium, star, star_medium, stocks, stocks_medium, stop, stop_medium, stopwatch, stopwatch_medium, subtract, subtract_circled, subtract_circled_medium, subtract_medium, support, support_medium, swap, swap_medium, tag, tag_medium, thumbs_down, thumbs_down_medium, thumbs_up, thumbs_up_medium, tractor, tractor_medium, trailer, trailer_medium, train, train_medium, transfer, transfer_medium, transfer_to, transfer_to_medium, trash, trash_medium, travel, travel_medium, undo, undo_medium, upload, upload_medium, video, video_medium, view, view_medium, vintage_car, vintage_car_medium, volume_off, volume_off_medium, volume_on, volume_on_medium, wallet, wallet_medium, wearables, wearables_medium, web, web_medium, wheelchair, wheelchair_medium, widget_android, widget_android_medium, widget_ios, widget_ios_medium };
|