@dnb/eufemia 10.0.0-beta.7 → 10.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (417) hide show
  1. package/CHANGELOG.md +273 -286
  2. package/cjs/components/anchor/Anchor.d.ts +5 -1
  3. package/cjs/components/anchor/Anchor.js +53 -4
  4. package/cjs/components/anchor/style/anchor-mixins.scss +8 -4
  5. package/cjs/components/anchor/style/dnb-anchor.css +8 -9
  6. package/cjs/components/anchor/style/dnb-anchor.min.css +1 -1
  7. package/cjs/components/anchor/style/dnb-anchor.scss +2 -1
  8. package/cjs/components/anchor/style/themes/dnb-anchor-theme-sbanken.css +63 -1
  9. package/cjs/components/anchor/style/themes/dnb-anchor-theme-sbanken.min.css +1 -1
  10. package/cjs/components/anchor/style/themes/dnb-anchor-theme-sbanken.scss +88 -26
  11. package/cjs/components/anchor/style/themes/dnb-anchor-theme-ui.css +4 -4
  12. package/cjs/components/anchor/style/themes/dnb-anchor-theme-ui.min.css +1 -1
  13. package/cjs/components/anchor/style/themes/dnb-anchor-theme-ui.scss +4 -4
  14. package/cjs/components/autocomplete/Autocomplete.d.ts +3 -2
  15. package/cjs/components/autocomplete/Autocomplete.js +8 -5
  16. package/cjs/components/button/Button.d.ts +3 -2
  17. package/cjs/components/button/Button.js +8 -5
  18. package/cjs/components/button/style/dnb-button--tertiary.css +16 -7
  19. package/cjs/components/button/style/dnb-button--tertiary.min.css +1 -1
  20. package/cjs/components/button/style/dnb-button--tertiary.scss +28 -18
  21. package/cjs/components/button/style/dnb-button.css +1 -3
  22. package/cjs/components/button/style/dnb-button.min.css +1 -1
  23. package/cjs/components/button/style/dnb-button.scss +0 -1
  24. package/cjs/components/button/style/themes/button-mixins.scss +4 -4
  25. package/cjs/components/button/style/themes/dnb-button-theme-eiendom.css +16 -7
  26. package/cjs/components/button/style/themes/dnb-button-theme-eiendom.min.css +1 -1
  27. package/cjs/components/button/style/themes/dnb-button-theme-sbanken.css +38 -7
  28. package/cjs/components/button/style/themes/dnb-button-theme-sbanken.min.css +1 -1
  29. package/cjs/components/button/style/themes/dnb-button-theme-sbanken.scss +6 -0
  30. package/cjs/components/button/style/themes/dnb-button-theme-ui.css +16 -7
  31. package/cjs/components/button/style/themes/dnb-button-theme-ui.min.css +1 -1
  32. package/cjs/components/checkbox/Checkbox.d.ts +3 -2
  33. package/cjs/components/checkbox/Checkbox.js +8 -5
  34. package/cjs/components/date-picker/DatePicker.d.ts +3 -2
  35. package/cjs/components/date-picker/DatePicker.js +9 -5
  36. package/cjs/components/dialog/style/dnb-dialog.css +3 -3
  37. package/cjs/components/dialog/style/dnb-dialog.min.css +1 -1
  38. package/cjs/components/dialog/style/dnb-dialog.scss +2 -4
  39. package/cjs/components/dropdown/Dropdown.d.ts +3 -2
  40. package/cjs/components/dropdown/Dropdown.js +8 -5
  41. package/cjs/components/form-row/FormRow.d.ts +2 -1
  42. package/cjs/components/form-row/FormRow.js +8 -5
  43. package/cjs/components/form-set/FormSet.d.ts +2 -1
  44. package/cjs/components/form-status/FormStatus.d.ts +6 -6
  45. package/cjs/components/form-status/FormStatus.js +13 -7
  46. package/cjs/components/global-error/GlobalError.d.ts +64 -62
  47. package/cjs/components/global-error/GlobalError.js +76 -509
  48. package/cjs/components/global-error/style/dnb-global-error.css +21 -31
  49. package/cjs/components/global-error/style/dnb-global-error.min.css +1 -1
  50. package/cjs/components/global-error/style/dnb-global-error.scss +19 -29
  51. package/cjs/components/global-status/GlobalStatus.d.ts +8 -0
  52. package/cjs/components/help-button/HelpButton.d.ts +1 -3
  53. package/cjs/components/help-button/HelpButton.js +9 -17
  54. package/cjs/components/icon/style/dnb-icon.css +7 -3
  55. package/cjs/components/icon/style/dnb-icon.min.css +1 -1
  56. package/cjs/components/icon/style/dnb-icon.scss +16 -10
  57. package/cjs/components/input/Input.d.ts +11 -5
  58. package/cjs/components/input/Input.js +8 -5
  59. package/cjs/components/input-masked/InputMasked.d.ts +3 -2
  60. package/cjs/components/input-masked/InputMaskedUtils.js +7 -3
  61. package/cjs/components/lib.d.ts +1 -1
  62. package/cjs/components/modal/Modal.js +21 -7
  63. package/cjs/components/modal/ModalContent.js +2 -2
  64. package/cjs/components/number-format/NumberUtils.js +5 -4
  65. package/cjs/components/progress-indicator/ProgressIndicator.d.ts +1 -1
  66. package/cjs/components/progress-indicator/ProgressIndicatorCircular.d.ts +1 -1
  67. package/cjs/components/progress-indicator/ProgressIndicatorLinear.d.ts +1 -1
  68. package/cjs/components/radio/Radio.d.ts +4 -3
  69. package/cjs/components/radio/Radio.js +8 -5
  70. package/cjs/components/radio/RadioGroup.d.ts +4 -3
  71. package/cjs/components/radio/RadioGroup.js +8 -5
  72. package/cjs/components/radio/style/dnb-radio.css +1 -0
  73. package/cjs/components/radio/style/dnb-radio.min.css +1 -1
  74. package/cjs/components/radio/style/dnb-radio.scss +1 -0
  75. package/cjs/components/slider/SliderInstance.js +2 -3
  76. package/cjs/components/slider/SliderProvider.js +2 -2
  77. package/cjs/components/slider/types.d.ts +2 -1
  78. package/cjs/components/switch/Switch.d.ts +3 -2
  79. package/cjs/components/switch/Switch.js +8 -5
  80. package/cjs/components/textarea/Textarea.d.ts +3 -2
  81. package/cjs/components/textarea/Textarea.js +8 -5
  82. package/cjs/components/timeline/TimelineItem.d.ts +2 -2
  83. package/cjs/components/toggle-button/ToggleButton.d.ts +3 -2
  84. package/cjs/components/toggle-button/ToggleButton.js +8 -5
  85. package/cjs/components/toggle-button/ToggleButtonGroup.d.ts +3 -2
  86. package/cjs/components/toggle-button/ToggleButtonGroup.js +8 -5
  87. package/cjs/components/tooltip/TooltipWithEvents.d.ts +2 -2
  88. package/cjs/components/tooltip/TooltipWithEvents.js +6 -1
  89. package/cjs/components/visually-hidden/style/dnb-visually-hidden.css +14 -14
  90. package/cjs/components/visually-hidden/style/dnb-visually-hidden.min.css +1 -1
  91. package/cjs/elements/Link.d.ts +1 -1
  92. package/cjs/elements/lib.d.ts +1 -1
  93. package/cjs/elements/typography/style/themes/dnb-typography-theme-sbanken.scss +16 -0
  94. package/cjs/elements/typography/style/themes/dnb-typography-theme-ui.scss +4 -23
  95. package/cjs/elements/typography/style/typography-mixins.scss +33 -0
  96. package/cjs/extensions/payment-card/PaymentCard.d.ts +6 -29
  97. package/cjs/shared/Context.d.ts +2 -0
  98. package/cjs/shared/Eufemia.d.ts +1 -0
  99. package/cjs/shared/Eufemia.js +4 -1
  100. package/cjs/shared/Theme.d.ts +6 -2
  101. package/cjs/shared/Theme.js +11 -5
  102. package/cjs/shared/VisibilityByTheme.js +1 -1
  103. package/cjs/shared/locales/en-GB.d.ts +2 -2
  104. package/cjs/shared/locales/en-GB.js +7 -7
  105. package/cjs/shared/locales/en-US.d.ts +2 -2
  106. package/cjs/shared/locales/index.d.ts +4 -4
  107. package/cjs/shared/locales/nb-NO.d.ts +2 -2
  108. package/cjs/shared/locales/nb-NO.js +7 -7
  109. package/cjs/style/core/scopes.scss +1 -1
  110. package/cjs/style/core/utilities.scss +17 -13
  111. package/cjs/style/dnb-ui-basis.css +16 -16
  112. package/cjs/style/dnb-ui-basis.min.css +1 -1
  113. package/cjs/style/dnb-ui-body.css +2 -2
  114. package/cjs/style/dnb-ui-body.min.css +1 -1
  115. package/cjs/style/dnb-ui-components.css +55 -63
  116. package/cjs/style/dnb-ui-components.min.css +1 -1
  117. package/cjs/style/dnb-ui-core.css +16 -16
  118. package/cjs/style/dnb-ui-core.min.css +1 -1
  119. package/cjs/style/themes/theme-eiendom/eiendom-theme-basis.css +5 -0
  120. package/cjs/style/themes/theme-eiendom/eiendom-theme-components.css +91 -81
  121. package/cjs/style/themes/theme-eiendom/eiendom-theme-components.min.css +1 -1
  122. package/cjs/style/themes/theme-eiendom/eiendom-theme-elements.css +5 -0
  123. package/cjs/style/themes/theme-sbanken/sbanken-theme-basis.css +39 -30
  124. package/cjs/style/themes/theme-sbanken/sbanken-theme-basis.min.css +1 -1
  125. package/cjs/style/themes/theme-sbanken/sbanken-theme-basis.scss +4 -0
  126. package/cjs/style/themes/theme-sbanken/sbanken-theme-components.css +155 -71
  127. package/cjs/style/themes/theme-sbanken/sbanken-theme-components.min.css +1 -1
  128. package/cjs/style/themes/theme-sbanken/sbanken-theme-elements.css +36 -31
  129. package/cjs/style/themes/theme-sbanken/sbanken-theme-elements.min.css +1 -1
  130. package/cjs/style/themes/theme-sbanken/sbanken-theme-elements.scss +1 -1
  131. package/cjs/style/themes/theme-ui/ui-theme-basis.css +5 -0
  132. package/cjs/style/themes/theme-ui/ui-theme-components.css +75 -74
  133. package/cjs/style/themes/theme-ui/ui-theme-components.min.css +1 -1
  134. package/cjs/style/themes/theme-ui/ui-theme-elements.css +5 -0
  135. package/cjs/style/themes/theme-ui/ui-theme-tags.css +3 -3
  136. package/cjs/style/themes/theme-ui/ui-theme-tags.min.css +1 -1
  137. package/components/anchor/Anchor.d.ts +5 -1
  138. package/components/anchor/Anchor.js +49 -4
  139. package/components/anchor/style/anchor-mixins.scss +8 -4
  140. package/components/anchor/style/dnb-anchor.css +8 -9
  141. package/components/anchor/style/dnb-anchor.min.css +1 -1
  142. package/components/anchor/style/dnb-anchor.scss +2 -1
  143. package/components/anchor/style/themes/dnb-anchor-theme-sbanken.css +63 -1
  144. package/components/anchor/style/themes/dnb-anchor-theme-sbanken.min.css +1 -1
  145. package/components/anchor/style/themes/dnb-anchor-theme-sbanken.scss +88 -26
  146. package/components/anchor/style/themes/dnb-anchor-theme-ui.css +4 -4
  147. package/components/anchor/style/themes/dnb-anchor-theme-ui.min.css +1 -1
  148. package/components/anchor/style/themes/dnb-anchor-theme-ui.scss +4 -4
  149. package/components/autocomplete/Autocomplete.d.ts +3 -2
  150. package/components/autocomplete/Autocomplete.js +8 -5
  151. package/components/button/Button.d.ts +3 -2
  152. package/components/button/Button.js +8 -5
  153. package/components/button/style/dnb-button--tertiary.css +16 -7
  154. package/components/button/style/dnb-button--tertiary.min.css +1 -1
  155. package/components/button/style/dnb-button--tertiary.scss +28 -18
  156. package/components/button/style/dnb-button.css +1 -3
  157. package/components/button/style/dnb-button.min.css +1 -1
  158. package/components/button/style/dnb-button.scss +0 -1
  159. package/components/button/style/themes/button-mixins.scss +4 -4
  160. package/components/button/style/themes/dnb-button-theme-eiendom.css +16 -7
  161. package/components/button/style/themes/dnb-button-theme-eiendom.min.css +1 -1
  162. package/components/button/style/themes/dnb-button-theme-sbanken.css +38 -7
  163. package/components/button/style/themes/dnb-button-theme-sbanken.min.css +1 -1
  164. package/components/button/style/themes/dnb-button-theme-sbanken.scss +6 -0
  165. package/components/button/style/themes/dnb-button-theme-ui.css +16 -7
  166. package/components/button/style/themes/dnb-button-theme-ui.min.css +1 -1
  167. package/components/checkbox/Checkbox.d.ts +3 -2
  168. package/components/checkbox/Checkbox.js +8 -5
  169. package/components/date-picker/DatePicker.d.ts +3 -2
  170. package/components/date-picker/DatePicker.js +9 -5
  171. package/components/dialog/style/dnb-dialog.css +3 -3
  172. package/components/dialog/style/dnb-dialog.min.css +1 -1
  173. package/components/dialog/style/dnb-dialog.scss +2 -4
  174. package/components/dropdown/Dropdown.d.ts +3 -2
  175. package/components/dropdown/Dropdown.js +8 -5
  176. package/components/form-row/FormRow.d.ts +2 -1
  177. package/components/form-row/FormRow.js +8 -5
  178. package/components/form-set/FormSet.d.ts +2 -1
  179. package/components/form-status/FormStatus.d.ts +6 -6
  180. package/components/form-status/FormStatus.js +13 -7
  181. package/components/global-error/GlobalError.d.ts +64 -62
  182. package/components/global-error/GlobalError.js +77 -510
  183. package/components/global-error/style/dnb-global-error.css +21 -31
  184. package/components/global-error/style/dnb-global-error.min.css +1 -1
  185. package/components/global-error/style/dnb-global-error.scss +19 -29
  186. package/components/global-status/GlobalStatus.d.ts +8 -0
  187. package/components/help-button/HelpButton.d.ts +1 -3
  188. package/components/help-button/HelpButton.js +9 -16
  189. package/components/icon/style/dnb-icon.css +7 -3
  190. package/components/icon/style/dnb-icon.min.css +1 -1
  191. package/components/icon/style/dnb-icon.scss +16 -10
  192. package/components/input/Input.d.ts +11 -5
  193. package/components/input/Input.js +8 -5
  194. package/components/input-masked/InputMasked.d.ts +3 -2
  195. package/components/input-masked/InputMaskedUtils.js +7 -3
  196. package/components/lib.d.ts +1 -1
  197. package/components/modal/Modal.js +21 -7
  198. package/components/modal/ModalContent.js +2 -2
  199. package/components/number-format/NumberUtils.js +5 -4
  200. package/components/progress-indicator/ProgressIndicator.d.ts +1 -1
  201. package/components/progress-indicator/ProgressIndicatorCircular.d.ts +1 -1
  202. package/components/progress-indicator/ProgressIndicatorLinear.d.ts +1 -1
  203. package/components/radio/Radio.d.ts +4 -3
  204. package/components/radio/Radio.js +8 -5
  205. package/components/radio/RadioGroup.d.ts +4 -3
  206. package/components/radio/RadioGroup.js +8 -5
  207. package/components/radio/style/dnb-radio.css +1 -0
  208. package/components/radio/style/dnb-radio.min.css +1 -1
  209. package/components/radio/style/dnb-radio.scss +1 -0
  210. package/components/slider/SliderInstance.js +2 -3
  211. package/components/slider/SliderProvider.js +2 -2
  212. package/components/slider/types.d.ts +2 -1
  213. package/components/switch/Switch.d.ts +3 -2
  214. package/components/switch/Switch.js +8 -5
  215. package/components/textarea/Textarea.d.ts +3 -2
  216. package/components/textarea/Textarea.js +8 -5
  217. package/components/timeline/TimelineItem.d.ts +2 -2
  218. package/components/toggle-button/ToggleButton.d.ts +3 -2
  219. package/components/toggle-button/ToggleButton.js +8 -5
  220. package/components/toggle-button/ToggleButtonGroup.d.ts +3 -2
  221. package/components/toggle-button/ToggleButtonGroup.js +8 -5
  222. package/components/tooltip/TooltipWithEvents.d.ts +2 -2
  223. package/components/tooltip/TooltipWithEvents.js +6 -1
  224. package/components/visually-hidden/style/dnb-visually-hidden.css +14 -14
  225. package/components/visually-hidden/style/dnb-visually-hidden.min.css +1 -1
  226. package/elements/Link.d.ts +1 -1
  227. package/elements/lib.d.ts +1 -1
  228. package/elements/typography/style/themes/dnb-typography-theme-sbanken.scss +16 -0
  229. package/elements/typography/style/themes/dnb-typography-theme-ui.scss +4 -23
  230. package/elements/typography/style/typography-mixins.scss +33 -0
  231. package/es/components/anchor/Anchor.d.ts +5 -1
  232. package/es/components/anchor/Anchor.js +49 -4
  233. package/es/components/anchor/style/anchor-mixins.scss +8 -4
  234. package/es/components/anchor/style/dnb-anchor.css +8 -9
  235. package/es/components/anchor/style/dnb-anchor.min.css +1 -1
  236. package/es/components/anchor/style/dnb-anchor.scss +2 -1
  237. package/es/components/anchor/style/themes/dnb-anchor-theme-sbanken.css +63 -1
  238. package/es/components/anchor/style/themes/dnb-anchor-theme-sbanken.min.css +1 -1
  239. package/es/components/anchor/style/themes/dnb-anchor-theme-sbanken.scss +88 -26
  240. package/es/components/anchor/style/themes/dnb-anchor-theme-ui.css +4 -4
  241. package/es/components/anchor/style/themes/dnb-anchor-theme-ui.min.css +1 -1
  242. package/es/components/anchor/style/themes/dnb-anchor-theme-ui.scss +4 -4
  243. package/es/components/autocomplete/Autocomplete.d.ts +3 -2
  244. package/es/components/autocomplete/Autocomplete.js +8 -5
  245. package/es/components/button/Button.d.ts +3 -2
  246. package/es/components/button/Button.js +8 -5
  247. package/es/components/button/style/dnb-button--tertiary.css +16 -7
  248. package/es/components/button/style/dnb-button--tertiary.min.css +1 -1
  249. package/es/components/button/style/dnb-button--tertiary.scss +28 -18
  250. package/es/components/button/style/dnb-button.css +1 -3
  251. package/es/components/button/style/dnb-button.min.css +1 -1
  252. package/es/components/button/style/dnb-button.scss +0 -1
  253. package/es/components/button/style/themes/button-mixins.scss +4 -4
  254. package/es/components/button/style/themes/dnb-button-theme-eiendom.css +16 -7
  255. package/es/components/button/style/themes/dnb-button-theme-eiendom.min.css +1 -1
  256. package/es/components/button/style/themes/dnb-button-theme-sbanken.css +38 -7
  257. package/es/components/button/style/themes/dnb-button-theme-sbanken.min.css +1 -1
  258. package/es/components/button/style/themes/dnb-button-theme-sbanken.scss +6 -0
  259. package/es/components/button/style/themes/dnb-button-theme-ui.css +16 -7
  260. package/es/components/button/style/themes/dnb-button-theme-ui.min.css +1 -1
  261. package/es/components/checkbox/Checkbox.d.ts +3 -2
  262. package/es/components/checkbox/Checkbox.js +8 -5
  263. package/es/components/date-picker/DatePicker.d.ts +3 -2
  264. package/es/components/date-picker/DatePicker.js +9 -5
  265. package/es/components/dialog/style/dnb-dialog.css +3 -3
  266. package/es/components/dialog/style/dnb-dialog.min.css +1 -1
  267. package/es/components/dialog/style/dnb-dialog.scss +2 -4
  268. package/es/components/dropdown/Dropdown.d.ts +3 -2
  269. package/es/components/dropdown/Dropdown.js +8 -5
  270. package/es/components/form-row/FormRow.d.ts +2 -1
  271. package/es/components/form-row/FormRow.js +8 -5
  272. package/es/components/form-set/FormSet.d.ts +2 -1
  273. package/es/components/form-status/FormStatus.d.ts +6 -6
  274. package/es/components/form-status/FormStatus.js +13 -7
  275. package/es/components/global-error/GlobalError.d.ts +64 -62
  276. package/es/components/global-error/GlobalError.js +76 -510
  277. package/es/components/global-error/style/dnb-global-error.css +21 -31
  278. package/es/components/global-error/style/dnb-global-error.min.css +1 -1
  279. package/es/components/global-error/style/dnb-global-error.scss +19 -29
  280. package/es/components/global-status/GlobalStatus.d.ts +8 -0
  281. package/es/components/help-button/HelpButton.d.ts +1 -3
  282. package/es/components/help-button/HelpButton.js +9 -16
  283. package/es/components/icon/style/dnb-icon.css +7 -3
  284. package/es/components/icon/style/dnb-icon.min.css +1 -1
  285. package/es/components/icon/style/dnb-icon.scss +16 -10
  286. package/es/components/input/Input.d.ts +11 -5
  287. package/es/components/input/Input.js +8 -5
  288. package/es/components/input-masked/InputMasked.d.ts +3 -2
  289. package/es/components/input-masked/InputMaskedUtils.js +7 -3
  290. package/es/components/lib.d.ts +1 -1
  291. package/es/components/modal/Modal.js +21 -7
  292. package/es/components/modal/ModalContent.js +2 -2
  293. package/es/components/number-format/NumberUtils.js +5 -4
  294. package/es/components/progress-indicator/ProgressIndicator.d.ts +1 -1
  295. package/es/components/progress-indicator/ProgressIndicatorCircular.d.ts +1 -1
  296. package/es/components/progress-indicator/ProgressIndicatorLinear.d.ts +1 -1
  297. package/es/components/radio/Radio.d.ts +4 -3
  298. package/es/components/radio/Radio.js +8 -5
  299. package/es/components/radio/RadioGroup.d.ts +4 -3
  300. package/es/components/radio/RadioGroup.js +8 -5
  301. package/es/components/radio/style/dnb-radio.css +1 -0
  302. package/es/components/radio/style/dnb-radio.min.css +1 -1
  303. package/es/components/radio/style/dnb-radio.scss +1 -0
  304. package/es/components/slider/SliderInstance.js +2 -3
  305. package/es/components/slider/SliderProvider.js +2 -2
  306. package/es/components/slider/types.d.ts +2 -1
  307. package/es/components/switch/Switch.d.ts +3 -2
  308. package/es/components/switch/Switch.js +8 -5
  309. package/es/components/textarea/Textarea.d.ts +3 -2
  310. package/es/components/textarea/Textarea.js +8 -5
  311. package/es/components/timeline/TimelineItem.d.ts +2 -2
  312. package/es/components/toggle-button/ToggleButton.d.ts +3 -2
  313. package/es/components/toggle-button/ToggleButton.js +8 -5
  314. package/es/components/toggle-button/ToggleButtonGroup.d.ts +3 -2
  315. package/es/components/toggle-button/ToggleButtonGroup.js +8 -5
  316. package/es/components/tooltip/TooltipWithEvents.d.ts +2 -2
  317. package/es/components/tooltip/TooltipWithEvents.js +6 -1
  318. package/es/components/visually-hidden/style/dnb-visually-hidden.css +14 -14
  319. package/es/components/visually-hidden/style/dnb-visually-hidden.min.css +1 -1
  320. package/es/elements/Link.d.ts +1 -1
  321. package/es/elements/lib.d.ts +1 -1
  322. package/es/elements/typography/style/themes/dnb-typography-theme-sbanken.scss +16 -0
  323. package/es/elements/typography/style/themes/dnb-typography-theme-ui.scss +4 -23
  324. package/es/elements/typography/style/typography-mixins.scss +33 -0
  325. package/es/extensions/payment-card/PaymentCard.d.ts +6 -29
  326. package/es/shared/Context.d.ts +2 -0
  327. package/es/shared/Eufemia.d.ts +1 -0
  328. package/es/shared/Eufemia.js +2 -1
  329. package/es/shared/Theme.d.ts +6 -2
  330. package/es/shared/Theme.js +11 -5
  331. package/es/shared/VisibilityByTheme.js +1 -1
  332. package/es/shared/locales/en-GB.d.ts +2 -2
  333. package/es/shared/locales/en-GB.js +7 -7
  334. package/es/shared/locales/en-US.d.ts +2 -2
  335. package/es/shared/locales/index.d.ts +4 -4
  336. package/es/shared/locales/nb-NO.d.ts +2 -2
  337. package/es/shared/locales/nb-NO.js +7 -7
  338. package/es/style/core/scopes.scss +1 -1
  339. package/es/style/core/utilities.scss +17 -13
  340. package/es/style/dnb-ui-basis.css +16 -16
  341. package/es/style/dnb-ui-basis.min.css +1 -1
  342. package/es/style/dnb-ui-body.css +2 -2
  343. package/es/style/dnb-ui-body.min.css +1 -1
  344. package/es/style/dnb-ui-components.css +55 -63
  345. package/es/style/dnb-ui-components.min.css +1 -1
  346. package/es/style/dnb-ui-core.css +16 -16
  347. package/es/style/dnb-ui-core.min.css +1 -1
  348. package/es/style/themes/theme-eiendom/eiendom-theme-basis.css +5 -0
  349. package/es/style/themes/theme-eiendom/eiendom-theme-components.css +91 -81
  350. package/es/style/themes/theme-eiendom/eiendom-theme-components.min.css +1 -1
  351. package/es/style/themes/theme-eiendom/eiendom-theme-elements.css +5 -0
  352. package/es/style/themes/theme-sbanken/sbanken-theme-basis.css +39 -30
  353. package/es/style/themes/theme-sbanken/sbanken-theme-basis.min.css +1 -1
  354. package/es/style/themes/theme-sbanken/sbanken-theme-basis.scss +4 -0
  355. package/es/style/themes/theme-sbanken/sbanken-theme-components.css +155 -71
  356. package/es/style/themes/theme-sbanken/sbanken-theme-components.min.css +1 -1
  357. package/es/style/themes/theme-sbanken/sbanken-theme-elements.css +36 -31
  358. package/es/style/themes/theme-sbanken/sbanken-theme-elements.min.css +1 -1
  359. package/es/style/themes/theme-sbanken/sbanken-theme-elements.scss +1 -1
  360. package/es/style/themes/theme-ui/ui-theme-basis.css +5 -0
  361. package/es/style/themes/theme-ui/ui-theme-components.css +75 -74
  362. package/es/style/themes/theme-ui/ui-theme-components.min.css +1 -1
  363. package/es/style/themes/theme-ui/ui-theme-elements.css +5 -0
  364. package/es/style/themes/theme-ui/ui-theme-tags.css +3 -3
  365. package/es/style/themes/theme-ui/ui-theme-tags.min.css +1 -1
  366. package/esm/dnb-ui-basis.min.mjs +1 -1
  367. package/esm/dnb-ui-components.min.mjs +1 -1
  368. package/esm/dnb-ui-elements.min.mjs +1 -1
  369. package/esm/dnb-ui-extensions.min.mjs +1 -1
  370. package/esm/dnb-ui-lib.min.mjs +1 -1
  371. package/extensions/payment-card/PaymentCard.d.ts +6 -29
  372. package/package.json +1 -1
  373. package/shared/Context.d.ts +2 -0
  374. package/shared/Eufemia.d.ts +1 -0
  375. package/shared/Eufemia.js +2 -1
  376. package/shared/Theme.d.ts +6 -2
  377. package/shared/Theme.js +11 -5
  378. package/shared/VisibilityByTheme.js +1 -1
  379. package/shared/locales/en-GB.d.ts +2 -2
  380. package/shared/locales/en-GB.js +7 -7
  381. package/shared/locales/en-US.d.ts +2 -2
  382. package/shared/locales/index.d.ts +4 -4
  383. package/shared/locales/nb-NO.d.ts +2 -2
  384. package/shared/locales/nb-NO.js +7 -7
  385. package/style/core/scopes.scss +1 -1
  386. package/style/core/utilities.scss +17 -13
  387. package/style/dnb-ui-basis.css +16 -16
  388. package/style/dnb-ui-basis.min.css +1 -1
  389. package/style/dnb-ui-body.css +2 -2
  390. package/style/dnb-ui-body.min.css +1 -1
  391. package/style/dnb-ui-components.css +55 -63
  392. package/style/dnb-ui-components.min.css +1 -1
  393. package/style/dnb-ui-core.css +16 -16
  394. package/style/dnb-ui-core.min.css +1 -1
  395. package/style/themes/theme-eiendom/eiendom-theme-basis.css +5 -0
  396. package/style/themes/theme-eiendom/eiendom-theme-components.css +91 -81
  397. package/style/themes/theme-eiendom/eiendom-theme-components.min.css +1 -1
  398. package/style/themes/theme-eiendom/eiendom-theme-elements.css +5 -0
  399. package/style/themes/theme-sbanken/sbanken-theme-basis.css +39 -30
  400. package/style/themes/theme-sbanken/sbanken-theme-basis.min.css +1 -1
  401. package/style/themes/theme-sbanken/sbanken-theme-basis.scss +4 -0
  402. package/style/themes/theme-sbanken/sbanken-theme-components.css +155 -71
  403. package/style/themes/theme-sbanken/sbanken-theme-components.min.css +1 -1
  404. package/style/themes/theme-sbanken/sbanken-theme-elements.css +36 -31
  405. package/style/themes/theme-sbanken/sbanken-theme-elements.min.css +1 -1
  406. package/style/themes/theme-sbanken/sbanken-theme-elements.scss +1 -1
  407. package/style/themes/theme-ui/ui-theme-basis.css +5 -0
  408. package/style/themes/theme-ui/ui-theme-components.css +75 -74
  409. package/style/themes/theme-ui/ui-theme-components.min.css +1 -1
  410. package/style/themes/theme-ui/ui-theme-elements.css +5 -0
  411. package/style/themes/theme-ui/ui-theme-tags.css +3 -3
  412. package/style/themes/theme-ui/ui-theme-tags.min.css +1 -1
  413. package/umd/dnb-ui-basis.min.js +1 -1
  414. package/umd/dnb-ui-components.min.js +1 -1
  415. package/umd/dnb-ui-elements.min.js +1 -1
  416. package/umd/dnb-ui-extensions.min.js +1 -1
  417. package/umd/dnb-ui-lib.min.js +1 -1
@@ -972,6 +972,11 @@ html[data-whatinput=keyboard] .dnb-blockquote:not(.dnb-blockquote--no-background
972
972
  color: var(--theme-color-black-80, currentColor);
973
973
  }
974
974
 
975
+ /*
976
+ * Core Styles
977
+ * Mainly only the margins are defined in here
978
+ *
979
+ */
975
980
  .dnb-p {
976
981
  color: var(--theme-color-black-80, currentColor);
977
982
  }
@@ -28,15 +28,15 @@
28
28
  */
29
29
  .dnb-core-style a {
30
30
  display: inline;
31
- padding: 0.05575em 0.125em;
31
+ padding: 0.05575em 0;
32
32
  font-size: var(--font-size-basis);
33
33
  text-decoration: underline;
34
34
  -webkit-text-decoration-color: currentcolor;
35
35
  text-decoration-color: currentcolor;
36
- text-decoration-thickness: 0.0938rem;
36
+ text-decoration-thickness: var(--anchor-underline-thickness);
37
37
  text-underline-offset: 0.25em;
38
38
  border-radius: 0;
39
- transition: background-color 200ms ease-in-out, border-radius 200ms ease-in-out;
39
+ transition: box-shadow 200ms ease-in-out, border-radius 200ms ease-in-out;
40
40
  }
41
41
  sup .dnb-core-style a, sub .dnb-core-style a {
42
42
  padding: 0 0.025em;
@@ -1 +1 @@
1
- @charset "UTF-8";.dnb-core-style a{border-radius:0;display:inline;font-size:var(--font-size-basis);padding:.05575em .125em;text-decoration:underline;-webkit-text-decoration-color:currentcolor;text-decoration-color:currentcolor;text-decoration-thickness:.0938rem;text-underline-offset:.25em;transition:background-color .2s ease-in-out,border-radius .2s ease-in-out}sub .dnb-core-style a,sup .dnb-core-style a{padding:0 .025em}.dnb-h--basis .dnb-core-style a,.dnb-h--large .dnb-core-style a,.dnb-h--medium .dnb-core-style a,.dnb-h--small .dnb-core-style a,.dnb-h--x-large .dnb-core-style a,.dnb-h--x-small .dnb-core-style a,.dnb-h--xx-large .dnb-core-style a,.dnb-lead .dnb-core-style a,.dnb-p .dnb-core-style a{font-size:inherit}.dnb-core-style a:focus{border-radius:.25em;outline:none}.dnb-core-style a:focus:not(:active){background-color:transparent;transition:none}.dnb-core-style a:focus:not(:active),.dnb-section .dnb-core-style a:focus:not(:active).dnb-anchor{text-decoration:none}html[data-whatinput=keyboard] .dnb-core-style a:focus{--border-color:var(--focus-ring-color);--border-width:var(--focus-ring-width);border-color:transparent;box-shadow:0 0 0 var(--border-width) var(--border-color)}.dnb-core-style a:active,.dnb-core-style a:hover{border-radius:.25em}.dnb-core-style a:active,.dnb-core-style a:hover,.dnb-section .dnb-core-style a:active.dnb-anchor,.dnb-section .dnb-core-style a:hover.dnb-anchor{text-decoration:none}.dnb-core-style a:active{border-radius:.25em}.dnb-core-style a:active,.dnb-section .dnb-core-style a:active.dnb-anchor{text-decoration:none}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon){background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiMwMDcyNzIiLz48L3N2Zz4=");background-size:0;position:relative}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{background-image:inherit;background-size:cover;color:inherit;content:"";display:inline-block;height:.889em;margin-left:.3em;margin-right:.125em;position:relative;transform-origin:bottom;transition:transform .3s ease-out,filter 1s ease-in-out;width:.889em}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):active{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiNhNWUxZDIiLz48L3N2Zz4=")}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{top:.125em}[data-visual-test-wrapper] .dnb-core-style a{transition:none}.dnb-core-style a .dnb-icon{display:inline-block;transform:translateY(-.0625em)}.dnb-core-style img{border-radius:inherit;border-style:none;box-sizing:content-box;max-width:100%;position:relative;z-index:2}.dnb-core-style img[alt]:after{align-items:center;border-radius:inherit;content:attr(alt);display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%;z-index:3}.dnb-core-style blockquote{border-radius:1rem;display:inline-block;font-size:var(--font-size-small);line-height:var(--line-height-small);padding:1.5rem;position:relative;width:auto}.dnb-core-style blockquote:not([class*=dnb-space]){margin:0}.dnb-core-style blockquote:before{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0E1RTFEMiIgc3Ryb2tlPSIjQTVFMUQyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNMzcuNSAyNy41YTkgOSAwIDEgMCAwLTE4IDkgOSAwIDAgMCAwIDE4eiIvPjxwYXRoIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTQ2LjUgMTguNWEyMSAyMSAwIDAgMS0yMSAyMSIvPjxwYXRoIGZpbGw9IiNBNUUxRDIiIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTEzLjUgMjcuNWE5IDkgMCAxIDAgMC0xOCA5IDkgMCAwIDAgMCAxOHoiLz48cGF0aCBzdHJva2U9IiNBNUUxRDIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Ik0yMi41IDE4LjVhMjEgMjEgMCAwIDEtMjEgMjEiLz48L3N2Zz4=");background-size:cover;content:"";height:3em;left:1.5rem;position:absolute;top:2rem;width:3em}.dnb-core-style blockquote,.dnb-core-style blockquote.dnb-blockquote--left{padding-bottom:3rem;padding-left:6rem;padding-top:2rem}.dnb-core-style blockquote.dnb-blockquote--top{padding-bottom:3rem;padding-left:1.5rem;padding-top:6rem}.dnb-core-style blockquote.dnb-blockquote--no-background{background-color:transparent}.dnb-core-style blockquote .dnb-cite,.dnb-core-style blockquote .dnb-figcaption,.dnb-core-style blockquote cite,.dnb-core-style blockquote figcaption,.dnb-core-style blockquote footer{display:block;font-style:italic;font-weight:var(--font-weight-medium);line-height:var(--line-height-basis);margin-top:1rem}.dnb-core-style blockquote .dnb-cite:before,.dnb-core-style blockquote .dnb-figcaption:before,.dnb-core-style blockquote cite:before,.dnb-core-style blockquote figcaption:before,.dnb-core-style blockquote footer:before{content:"—";display:inline-block;padding-right:.5rem}.dnb-spacing .dnb-core-style blockquote .dnb-h--large,.dnb-spacing .dnb-core-style blockquote .dnb-h--medium,.dnb-spacing .dnb-core-style blockquote .dnb-h--xx-large,.dnb-spacing .dnb-core-style blockquote .dnb-lead,.dnb-spacing .dnb-core-style blockquote h1,.dnb-spacing .dnb-core-style blockquote h2,.dnb-spacing .dnb-core-style blockquote h3{margin:0}.dnb-core-style blockquote .dnb-anchor{font-size:inherit}.dnb-core-style .dnb-spacing blockquote:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing blockquote:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style .dnb-spacing blockquote p:last-child{margin-bottom:0}.dnb-core-style hr{border:0;display:flex;height:0;padding:0;position:relative}.dnb-core-style hr:not([class*=dnb-space]){margin:0}.dnb-core-style hr:after{background-color:currentcolor;border-radius:.5px;color:inherit;content:"";height:1px;left:0;position:absolute;right:0;top:0;width:100%;z-index:1}.dnb-core-style .dnb-spacing hr:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing hr:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style p{font-size:var(--font-size-basis);padding:0}.dnb-core-style p:not([class*=space__top]){margin-top:0}.dnb-core-style p:not([class*=space__bottom]){margin-bottom:0}.dnb-core-style p--lead{font-size:var(--font-size-medium);font-weight:var(--font-weight-medium);line-height:var(--line-height-lead)}.dnb-core-style p--lead>small{font-size:var(--font-size-basis);line-height:var(--line-height-basis)}.dnb-core-style p--medium,.dnb-core-style p b,.dnb-core-style p strong{font-weight:var(--font-weight-medium)}.dnb-core-style p--bold{font-weight:var(--font-weight-bold)}.dnb-core-style p__size--xx-large{font-size:var(--font-size-xx-large);line-height:var(--line-height-x-large)}.dnb-core-style p__size--x-large{font-size:var(--font-size-x-large);line-height:var(--line-height-x-large)}.dnb-core-style p__size--large{font-size:var(--font-size-large);line-height:var(--line-height-large)}.dnb-core-style p__size--basis{font-size:var(--font-size-basis);line-height:var(--line-height-basis)}.dnb-core-style p__size--medium{font-size:var(--font-size-medium);line-height:var(--line-height-medium)}.dnb-core-style p--small,.dnb-core-style p>small,.dnb-core-style p__size--small{font-size:var(--font-size-small);line-height:var(--line-height-small)}.dnb-core-style p--x-small,.dnb-core-style p__size--x-small{font-size:var(--font-size-x-small);line-height:var(--line-height-x-small)}.dnb-core-style p>cite{font-style:italic;font-weight:var(--font-weight-medium);line-height:var(--line-height-basis)}.dnb-core-style b,.dnb-core-style strong{font-weight:var(--font-weight-bold)}.dnb-core-style small{font-size:var(--font-size-small)}.dnb-core-style h1,.dnb-core-style h2,.dnb-core-style h3,.dnb-core-style h4,.dnb-core-style h5,.dnb-core-style h6{font-family:var(--font-family-default);font-weight:var(--font-weight-medium);padding:0}.dnb-core-style h1:not([class*=dnb-space]),.dnb-core-style h2:not([class*=dnb-space]),.dnb-core-style h3:not([class*=dnb-space]),.dnb-core-style h4:not([class*=dnb-space]),.dnb-core-style h5:not([class*=dnb-space]),.dnb-core-style h6:not([class*=dnb-space]){margin:0}.dnb-core-style h1 .dnb-icon--default,.dnb-core-style h2 .dnb-icon--default,.dnb-core-style h3 .dnb-icon--default,.dnb-core-style h4 .dnb-icon--default,.dnb-core-style h5 .dnb-icon--default,.dnb-core-style h6 .dnb-icon--default{font-size:1em}.dnb-core-style h1 .dnb-icon--medium,.dnb-core-style h2 .dnb-icon--medium,.dnb-core-style h3 .dnb-icon--medium,.dnb-core-style h4 .dnb-icon--medium,.dnb-core-style h5 .dnb-icon--medium,.dnb-core-style h6 .dnb-icon--medium{font-size:1.5em}.dnb-core-style h1 .dnb-anchor,.dnb-core-style h1 a,.dnb-core-style h2 .dnb-anchor,.dnb-core-style h2 a,.dnb-core-style h3 .dnb-anchor,.dnb-core-style h3 a,.dnb-core-style h4 .dnb-anchor,.dnb-core-style h4 a,.dnb-core-style h5 .dnb-anchor,.dnb-core-style h5 a,.dnb-core-style h6 .dnb-anchor,.dnb-core-style h6 a{padding-bottom:.03125rem;padding-top:0}.dnb-core-style h1{font-size:var(--font-size-xx-large);line-height:var(--line-height-x-large)}.dnb-core-style h1>small{display:block;font-size:var(--font-size-x-large);line-height:var(--line-height-large)}.dnb-core-style h2{font-size:var(--font-size-large);line-height:var(--line-height-medium)}.dnb-core-style h2>small{font-size:var(--font-size-medium);line-height:calc(var(--line-height-medium) - .125rem)}.dnb-core-style h3{font-size:var(--font-size-medium);line-height:var(--line-height-lead)}.dnb-core-style h3>small,.dnb-core-style h4{font-size:var(--font-size-basis);line-height:var(--line-height-basis)}.dnb-core-style h4>small,.dnb-core-style h5{font-size:var(--font-size-small);line-height:var(--line-height-small)}.dnb-core-style h5>small{font-size:var(--font-size-x-small);line-height:var(--line-height-small)}.dnb-core-style h6{font-size:var(--font-size-x-small);line-height:var(--line-height-x-small)}.dnb-core-style h2>small,.dnb-core-style h3>small,.dnb-core-style h4>small,.dnb-core-style h5>small,.dnb-core-style h6>small{line-height:var(--line-height-xx-small--em)}.dnb-core-style .dnb-core-style .dnb-spacing h1:not([class*=space__top]),.dnb-core-style .dnb-spacing h1:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-core-style .dnb-spacing h1:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h1:not([class*=space__bottom]){margin-bottom:2.5rem}.dnb-core-style .dnb-core-style .dnb-spacing h2:not([class*=space__top]),.dnb-core-style .dnb-spacing h2:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-core-style .dnb-spacing h2:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h2:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-core-style .dnb-spacing h3:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h4:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h5:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h6:not([class*=space__top]),.dnb-core-style .dnb-spacing h3:not([class*=space__top]),.dnb-core-style .dnb-spacing h4:not([class*=space__top]),.dnb-core-style .dnb-spacing h5:not([class*=space__top]),.dnb-core-style .dnb-spacing h6:not([class*=space__top]){margin-top:2rem}.dnb-core-style .dnb-core-style .dnb-spacing h3:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h4:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h5:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h6:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h3:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h4:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h5:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h6:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-core-style .dnb-spacing p:not([class*=dnb-space__top]),.dnb-core-style .dnb-spacing p:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-core-style .dnb-spacing p:not([class*=dnb-space__bottom]),.dnb-core-style .dnb-spacing p:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style ul{font-size:var(--font-size-basis);line-height:var(--line-height-basis);padding:0}.dnb-core-style ul:not([class*=dnb-space]){margin:0}.dnb-core-style ul:not([class*=dnb-space__left]){padding-left:2rem}.dnb-core-style ul ol,.dnb-core-style ul ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-core-style ul--outside li,.dnb-core-style ul li{position:relative}.dnb-core-style ul--outside li:before,.dnb-core-style ul li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-core-style ul--inside li:before{left:0;padding-right:0;position:relative;text-align:initial;width:auto}.dnb-core-style ul .dnb-anchor{font-size:inherit}.dnb-core-style ul li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-core-style .dnb-spacing ul:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing ul:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style .dnb-spacing ul>li{margin-bottom:1rem;margin-top:1rem}.dnb-core-style .dnb-spacing ul>li>p{margin-top:1rem}.dnb-core-style .dnb-spacing ul:not([class*=dnb-space]) li>ol,.dnb-core-style .dnb-spacing ul:not([class*=dnb-space]) li>ul,.dnb-core-style .dnb-spacing ul li>ol,.dnb-core-style .dnb-spacing ul li>ul{margin-top:-.5rem}.dnb-core-style ol{font-size:var(--font-size-basis);line-height:var(--line-height-basis);padding:0}.dnb-core-style ol:not([class*=dnb-space]){margin:0}.dnb-core-style ol:not([class*=dnb-space__left]){padding-left:2rem}.dnb-core-style ol li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-core-style ol ol,.dnb-core-style ol ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-core-style ol--outside li,.dnb-core-style ol li{position:relative}.dnb-core-style ol--outside li:before,.dnb-core-style ol li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-core-style ol--inside li:before{left:0;padding-right:0;position:relative;text-align:initial;width:auto}.dnb-core-style ol .dnb-anchor{font-size:inherit}.dnb-core-style ol li{list-style-type:decimal}.dnb-core-style ol--nested,.dnb-core-style ol--nested ol{counter-reset:item}.dnb-core-style ol--nested li{display:block}.dnb-core-style ol--nested li:before{content:counters(item,".") ". ";counter-increment:item}.dnb-core-style ol--nested li li:before{content:counters(item,".") " ";counter-increment:item}.dnb-core-style ol[type] li{display:list-item;list-style-type:inherit}.dnb-core-style ol[type] li:before,.dnb-core-style ol[type] li li:before{content:none}.dnb-core-style .dnb-spacing ol:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing ol:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style .dnb-spacing ol>li{margin-bottom:1rem;margin-top:1rem}.dnb-core-style .dnb-spacing ol>li>p{margin-top:1rem}.dnb-core-style .dnb-spacing ol:not([class*=dnb-space]) li>ol,.dnb-core-style .dnb-spacing ol:not([class*=dnb-space]) li>ul,.dnb-core-style .dnb-spacing ol li>ol,.dnb-core-style .dnb-spacing ol li>ul{margin-top:-.5rem}.dnb-core-style dl{font-size:var(--font-size-basis);line-height:var(--line-height-basis);padding:0}.dnb-core-style dl:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style dl:not([class*=dnb-space__bottom]){margin-bottom:0}.dnb-core-style dl dt{font-weight:var(--font-weight-medium);margin-top:1rem;padding:0}.dnb-core-style dl dd~dt{margin-top:1.5rem}.dnb-core-style dl dd{margin:.5rem 0 1rem;padding:0}.dnb-core-style dl:not([class*=dnb-space])>dd>dl,.dnb-core-style dl>dd>dl{margin-left:2rem;margin-top:1.5rem}@media screen and (min-width:40em){.dnb-core-style dl__direction--horizontal{display:flex;flex-wrap:wrap}.dnb-core-style dl__direction--horizontal dt{margin-right:1rem;max-width:40%}.dnb-core-style dl__direction--horizontal dd{width:calc(60% - 1rem)}.dnb-core-style dl__direction--horizontal dd,.dnb-core-style dl__direction--horizontal dd~dt,.dnb-core-style dl__direction--horizontal dt{margin-bottom:0;margin-top:.5rem}.dnb-core-style dl__direction--horizontal dd:first-of-type,.dnb-core-style dl__direction--horizontal dd~dt:first-of-type,.dnb-core-style dl__direction--horizontal dt:first-of-type{margin-top:0}.dnb-core-style dl dd.dnb-core-style dl__item{flex-basis:100%;height:0;margin:0}}.dnb-core-style .dnb-spacing dl:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing dl:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style label{cursor:pointer;overflow-wrap:break-word}.dnb-core-style label[disabled]{cursor:not-allowed}.dnb-core-style code{border-radius:.1875em;color:inherit;display:inline-block;font-size:inherit;line-height:var(--line-height-xx-small--em);padding:.25em;text-decoration:inherit}del .dnb-core-style code{text-decoration:line-through}.dnb-core-style code:not([class*=dnb-space]){margin:-.25em 0}.dnb-core-style pre{word-wrap:normal;border-radius:.5rem;display:block;font-family:var(--font-family-monospace);font-size:inherit;-webkit-hyphens:none;hyphens:none;outline:none;overflow:auto;padding:1rem;-moz-tab-size:2;tab-size:2;text-align:left;text-shadow:none;vertical-align:baseline;white-space:pre;word-break:normal;word-spacing:normal}.dnb-core-style pre:not([class*=dnb-space]){margin:0}.dnb-core-style pre pre{padding:1rem}.dnb-core-style pre .dnb-spacing pre:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style pre .dnb-spacing pre:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}
1
+ @charset "UTF-8";.dnb-core-style a{border-radius:0;display:inline;font-size:var(--font-size-basis);padding:.05575em 0;text-decoration:underline;-webkit-text-decoration-color:currentcolor;text-decoration-color:currentcolor;text-decoration-thickness:var(--anchor-underline-thickness);text-underline-offset:.25em;transition:box-shadow .2s ease-in-out,border-radius .2s ease-in-out}sub .dnb-core-style a,sup .dnb-core-style a{padding:0 .025em}.dnb-h--basis .dnb-core-style a,.dnb-h--large .dnb-core-style a,.dnb-h--medium .dnb-core-style a,.dnb-h--small .dnb-core-style a,.dnb-h--x-large .dnb-core-style a,.dnb-h--x-small .dnb-core-style a,.dnb-h--xx-large .dnb-core-style a,.dnb-lead .dnb-core-style a,.dnb-p .dnb-core-style a{font-size:inherit}.dnb-core-style a:focus{border-radius:.25em;outline:none}.dnb-core-style a:focus:not(:active){background-color:transparent;transition:none}.dnb-core-style a:focus:not(:active),.dnb-section .dnb-core-style a:focus:not(:active).dnb-anchor{text-decoration:none}html[data-whatinput=keyboard] .dnb-core-style a:focus{--border-color:var(--focus-ring-color);--border-width:var(--focus-ring-width);border-color:transparent;box-shadow:0 0 0 var(--border-width) var(--border-color)}.dnb-core-style a:active,.dnb-core-style a:hover{border-radius:.25em}.dnb-core-style a:active,.dnb-core-style a:hover,.dnb-section .dnb-core-style a:active.dnb-anchor,.dnb-section .dnb-core-style a:hover.dnb-anchor{text-decoration:none}.dnb-core-style a:active{border-radius:.25em}.dnb-core-style a:active,.dnb-section .dnb-core-style a:active.dnb-anchor{text-decoration:none}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon){background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiMwMDcyNzIiLz48L3N2Zz4=");background-size:0;position:relative}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{background-image:inherit;background-size:cover;color:inherit;content:"";display:inline-block;height:.889em;margin-left:.3em;margin-right:.125em;position:relative;transform-origin:bottom;transition:transform .3s ease-out,filter 1s ease-in-out;width:.889em}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):active{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiNhNWUxZDIiLz48L3N2Zz4=")}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{top:.125em}[data-visual-test-wrapper] .dnb-core-style a{transition:none}.dnb-core-style a .dnb-icon{display:inline-block;transform:translateY(-.0625em)}.dnb-core-style img{border-radius:inherit;border-style:none;box-sizing:content-box;max-width:100%;position:relative;z-index:2}.dnb-core-style img[alt]:after{align-items:center;border-radius:inherit;content:attr(alt);display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%;z-index:3}.dnb-core-style blockquote{border-radius:1rem;display:inline-block;font-size:var(--font-size-small);line-height:var(--line-height-small);padding:1.5rem;position:relative;width:auto}.dnb-core-style blockquote:not([class*=dnb-space]){margin:0}.dnb-core-style blockquote:before{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0E1RTFEMiIgc3Ryb2tlPSIjQTVFMUQyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNMzcuNSAyNy41YTkgOSAwIDEgMCAwLTE4IDkgOSAwIDAgMCAwIDE4eiIvPjxwYXRoIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTQ2LjUgMTguNWEyMSAyMSAwIDAgMS0yMSAyMSIvPjxwYXRoIGZpbGw9IiNBNUUxRDIiIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTEzLjUgMjcuNWE5IDkgMCAxIDAgMC0xOCA5IDkgMCAwIDAgMCAxOHoiLz48cGF0aCBzdHJva2U9IiNBNUUxRDIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Ik0yMi41IDE4LjVhMjEgMjEgMCAwIDEtMjEgMjEiLz48L3N2Zz4=");background-size:cover;content:"";height:3em;left:1.5rem;position:absolute;top:2rem;width:3em}.dnb-core-style blockquote,.dnb-core-style blockquote.dnb-blockquote--left{padding-bottom:3rem;padding-left:6rem;padding-top:2rem}.dnb-core-style blockquote.dnb-blockquote--top{padding-bottom:3rem;padding-left:1.5rem;padding-top:6rem}.dnb-core-style blockquote.dnb-blockquote--no-background{background-color:transparent}.dnb-core-style blockquote .dnb-cite,.dnb-core-style blockquote .dnb-figcaption,.dnb-core-style blockquote cite,.dnb-core-style blockquote figcaption,.dnb-core-style blockquote footer{display:block;font-style:italic;font-weight:var(--font-weight-medium);line-height:var(--line-height-basis);margin-top:1rem}.dnb-core-style blockquote .dnb-cite:before,.dnb-core-style blockquote .dnb-figcaption:before,.dnb-core-style blockquote cite:before,.dnb-core-style blockquote figcaption:before,.dnb-core-style blockquote footer:before{content:"—";display:inline-block;padding-right:.5rem}.dnb-spacing .dnb-core-style blockquote .dnb-h--large,.dnb-spacing .dnb-core-style blockquote .dnb-h--medium,.dnb-spacing .dnb-core-style blockquote .dnb-h--xx-large,.dnb-spacing .dnb-core-style blockquote .dnb-lead,.dnb-spacing .dnb-core-style blockquote h1,.dnb-spacing .dnb-core-style blockquote h2,.dnb-spacing .dnb-core-style blockquote h3{margin:0}.dnb-core-style blockquote .dnb-anchor{font-size:inherit}.dnb-core-style .dnb-spacing blockquote:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing blockquote:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style .dnb-spacing blockquote p:last-child{margin-bottom:0}.dnb-core-style hr{border:0;display:flex;height:0;padding:0;position:relative}.dnb-core-style hr:not([class*=dnb-space]){margin:0}.dnb-core-style hr:after{background-color:currentcolor;border-radius:.5px;color:inherit;content:"";height:1px;left:0;position:absolute;right:0;top:0;width:100%;z-index:1}.dnb-core-style .dnb-spacing hr:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing hr:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style p{font-size:var(--font-size-basis);padding:0}.dnb-core-style p:not([class*=space__top]){margin-top:0}.dnb-core-style p:not([class*=space__bottom]){margin-bottom:0}.dnb-core-style p--lead{font-size:var(--font-size-medium);font-weight:var(--font-weight-medium);line-height:var(--line-height-lead)}.dnb-core-style p--lead>small{font-size:var(--font-size-basis);line-height:var(--line-height-basis)}.dnb-core-style p--medium,.dnb-core-style p b,.dnb-core-style p strong{font-weight:var(--font-weight-medium)}.dnb-core-style p--bold{font-weight:var(--font-weight-bold)}.dnb-core-style p__size--xx-large{font-size:var(--font-size-xx-large);line-height:var(--line-height-x-large)}.dnb-core-style p__size--x-large{font-size:var(--font-size-x-large);line-height:var(--line-height-x-large)}.dnb-core-style p__size--large{font-size:var(--font-size-large);line-height:var(--line-height-large)}.dnb-core-style p__size--basis{font-size:var(--font-size-basis);line-height:var(--line-height-basis)}.dnb-core-style p__size--medium{font-size:var(--font-size-medium);line-height:var(--line-height-medium)}.dnb-core-style p--small,.dnb-core-style p>small,.dnb-core-style p__size--small{font-size:var(--font-size-small);line-height:var(--line-height-small)}.dnb-core-style p--x-small,.dnb-core-style p__size--x-small{font-size:var(--font-size-x-small);line-height:var(--line-height-x-small)}.dnb-core-style p>cite{font-style:italic;font-weight:var(--font-weight-medium);line-height:var(--line-height-basis)}.dnb-core-style b,.dnb-core-style strong{font-weight:var(--font-weight-bold)}.dnb-core-style small{font-size:var(--font-size-small)}.dnb-core-style h1,.dnb-core-style h2,.dnb-core-style h3,.dnb-core-style h4,.dnb-core-style h5,.dnb-core-style h6{font-family:var(--font-family-default);font-weight:var(--font-weight-medium);padding:0}.dnb-core-style h1:not([class*=dnb-space]),.dnb-core-style h2:not([class*=dnb-space]),.dnb-core-style h3:not([class*=dnb-space]),.dnb-core-style h4:not([class*=dnb-space]),.dnb-core-style h5:not([class*=dnb-space]),.dnb-core-style h6:not([class*=dnb-space]){margin:0}.dnb-core-style h1 .dnb-icon--default,.dnb-core-style h2 .dnb-icon--default,.dnb-core-style h3 .dnb-icon--default,.dnb-core-style h4 .dnb-icon--default,.dnb-core-style h5 .dnb-icon--default,.dnb-core-style h6 .dnb-icon--default{font-size:1em}.dnb-core-style h1 .dnb-icon--medium,.dnb-core-style h2 .dnb-icon--medium,.dnb-core-style h3 .dnb-icon--medium,.dnb-core-style h4 .dnb-icon--medium,.dnb-core-style h5 .dnb-icon--medium,.dnb-core-style h6 .dnb-icon--medium{font-size:1.5em}.dnb-core-style h1 .dnb-anchor,.dnb-core-style h1 a,.dnb-core-style h2 .dnb-anchor,.dnb-core-style h2 a,.dnb-core-style h3 .dnb-anchor,.dnb-core-style h3 a,.dnb-core-style h4 .dnb-anchor,.dnb-core-style h4 a,.dnb-core-style h5 .dnb-anchor,.dnb-core-style h5 a,.dnb-core-style h6 .dnb-anchor,.dnb-core-style h6 a{padding-bottom:.03125rem;padding-top:0}.dnb-core-style h1{font-size:var(--font-size-xx-large);line-height:var(--line-height-x-large)}.dnb-core-style h1>small{display:block;font-size:var(--font-size-x-large);line-height:var(--line-height-large)}.dnb-core-style h2{font-size:var(--font-size-large);line-height:var(--line-height-medium)}.dnb-core-style h2>small{font-size:var(--font-size-medium);line-height:calc(var(--line-height-medium) - .125rem)}.dnb-core-style h3{font-size:var(--font-size-medium);line-height:var(--line-height-lead)}.dnb-core-style h3>small,.dnb-core-style h4{font-size:var(--font-size-basis);line-height:var(--line-height-basis)}.dnb-core-style h4>small,.dnb-core-style h5{font-size:var(--font-size-small);line-height:var(--line-height-small)}.dnb-core-style h5>small{font-size:var(--font-size-x-small);line-height:var(--line-height-small)}.dnb-core-style h6{font-size:var(--font-size-x-small);line-height:var(--line-height-x-small)}.dnb-core-style h2>small,.dnb-core-style h3>small,.dnb-core-style h4>small,.dnb-core-style h5>small,.dnb-core-style h6>small{line-height:var(--line-height-xx-small--em)}.dnb-core-style .dnb-core-style .dnb-spacing h1:not([class*=space__top]),.dnb-core-style .dnb-spacing h1:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-core-style .dnb-spacing h1:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h1:not([class*=space__bottom]){margin-bottom:2.5rem}.dnb-core-style .dnb-core-style .dnb-spacing h2:not([class*=space__top]),.dnb-core-style .dnb-spacing h2:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-core-style .dnb-spacing h2:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h2:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-core-style .dnb-spacing h3:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h4:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h5:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h6:not([class*=space__top]),.dnb-core-style .dnb-spacing h3:not([class*=space__top]),.dnb-core-style .dnb-spacing h4:not([class*=space__top]),.dnb-core-style .dnb-spacing h5:not([class*=space__top]),.dnb-core-style .dnb-spacing h6:not([class*=space__top]){margin-top:2rem}.dnb-core-style .dnb-core-style .dnb-spacing h3:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h4:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h5:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h6:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h3:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h4:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h5:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h6:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-core-style .dnb-spacing p:not([class*=dnb-space__top]),.dnb-core-style .dnb-spacing p:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-core-style .dnb-spacing p:not([class*=dnb-space__bottom]),.dnb-core-style .dnb-spacing p:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style ul{font-size:var(--font-size-basis);line-height:var(--line-height-basis);padding:0}.dnb-core-style ul:not([class*=dnb-space]){margin:0}.dnb-core-style ul:not([class*=dnb-space__left]){padding-left:2rem}.dnb-core-style ul ol,.dnb-core-style ul ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-core-style ul--outside li,.dnb-core-style ul li{position:relative}.dnb-core-style ul--outside li:before,.dnb-core-style ul li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-core-style ul--inside li:before{left:0;padding-right:0;position:relative;text-align:initial;width:auto}.dnb-core-style ul .dnb-anchor{font-size:inherit}.dnb-core-style ul li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-core-style .dnb-spacing ul:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing ul:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style .dnb-spacing ul>li{margin-bottom:1rem;margin-top:1rem}.dnb-core-style .dnb-spacing ul>li>p{margin-top:1rem}.dnb-core-style .dnb-spacing ul:not([class*=dnb-space]) li>ol,.dnb-core-style .dnb-spacing ul:not([class*=dnb-space]) li>ul,.dnb-core-style .dnb-spacing ul li>ol,.dnb-core-style .dnb-spacing ul li>ul{margin-top:-.5rem}.dnb-core-style ol{font-size:var(--font-size-basis);line-height:var(--line-height-basis);padding:0}.dnb-core-style ol:not([class*=dnb-space]){margin:0}.dnb-core-style ol:not([class*=dnb-space__left]){padding-left:2rem}.dnb-core-style ol li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-core-style ol ol,.dnb-core-style ol ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-core-style ol--outside li,.dnb-core-style ol li{position:relative}.dnb-core-style ol--outside li:before,.dnb-core-style ol li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-core-style ol--inside li:before{left:0;padding-right:0;position:relative;text-align:initial;width:auto}.dnb-core-style ol .dnb-anchor{font-size:inherit}.dnb-core-style ol li{list-style-type:decimal}.dnb-core-style ol--nested,.dnb-core-style ol--nested ol{counter-reset:item}.dnb-core-style ol--nested li{display:block}.dnb-core-style ol--nested li:before{content:counters(item,".") ". ";counter-increment:item}.dnb-core-style ol--nested li li:before{content:counters(item,".") " ";counter-increment:item}.dnb-core-style ol[type] li{display:list-item;list-style-type:inherit}.dnb-core-style ol[type] li:before,.dnb-core-style ol[type] li li:before{content:none}.dnb-core-style .dnb-spacing ol:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing ol:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style .dnb-spacing ol>li{margin-bottom:1rem;margin-top:1rem}.dnb-core-style .dnb-spacing ol>li>p{margin-top:1rem}.dnb-core-style .dnb-spacing ol:not([class*=dnb-space]) li>ol,.dnb-core-style .dnb-spacing ol:not([class*=dnb-space]) li>ul,.dnb-core-style .dnb-spacing ol li>ol,.dnb-core-style .dnb-spacing ol li>ul{margin-top:-.5rem}.dnb-core-style dl{font-size:var(--font-size-basis);line-height:var(--line-height-basis);padding:0}.dnb-core-style dl:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style dl:not([class*=dnb-space__bottom]){margin-bottom:0}.dnb-core-style dl dt{font-weight:var(--font-weight-medium);margin-top:1rem;padding:0}.dnb-core-style dl dd~dt{margin-top:1.5rem}.dnb-core-style dl dd{margin:.5rem 0 1rem;padding:0}.dnb-core-style dl:not([class*=dnb-space])>dd>dl,.dnb-core-style dl>dd>dl{margin-left:2rem;margin-top:1.5rem}@media screen and (min-width:40em){.dnb-core-style dl__direction--horizontal{display:flex;flex-wrap:wrap}.dnb-core-style dl__direction--horizontal dt{margin-right:1rem;max-width:40%}.dnb-core-style dl__direction--horizontal dd{width:calc(60% - 1rem)}.dnb-core-style dl__direction--horizontal dd,.dnb-core-style dl__direction--horizontal dd~dt,.dnb-core-style dl__direction--horizontal dt{margin-bottom:0;margin-top:.5rem}.dnb-core-style dl__direction--horizontal dd:first-of-type,.dnb-core-style dl__direction--horizontal dd~dt:first-of-type,.dnb-core-style dl__direction--horizontal dt:first-of-type{margin-top:0}.dnb-core-style dl dd.dnb-core-style dl__item{flex-basis:100%;height:0;margin:0}}.dnb-core-style .dnb-spacing dl:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing dl:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style label{cursor:pointer;overflow-wrap:break-word}.dnb-core-style label[disabled]{cursor:not-allowed}.dnb-core-style code{border-radius:.1875em;color:inherit;display:inline-block;font-size:inherit;line-height:var(--line-height-xx-small--em);padding:.25em;text-decoration:inherit}del .dnb-core-style code{text-decoration:line-through}.dnb-core-style code:not([class*=dnb-space]){margin:-.25em 0}.dnb-core-style pre{word-wrap:normal;border-radius:.5rem;display:block;font-family:var(--font-family-monospace);font-size:inherit;-webkit-hyphens:none;hyphens:none;outline:none;overflow:auto;padding:1rem;-moz-tab-size:2;tab-size:2;text-align:left;text-shadow:none;vertical-align:baseline;white-space:pre;word-break:normal;word-spacing:normal}.dnb-core-style pre:not([class*=dnb-space]){margin:0}.dnb-core-style pre pre{padding:1rem}.dnb-core-style pre .dnb-spacing pre:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style pre .dnb-spacing pre:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}
@@ -1 +1 @@
1
- import"react";var e="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{};"function"==typeof e.setTimeout&&setTimeout,"function"==typeof e.clearTimeout&&clearTimeout;function t(e,t){this.fun=e,this.array=t}t.prototype.run=function(){this.fun.apply(null,this.array)};var n=e.performance||{};n.now||n.mozNow||n.msNow||n.oNow||n.webkitNow;new Date;var o={};!function(e,t){function n(e){if(e&&"object"==typeof e){var t=e.which||e.keyCode||e.charCode;t&&(e=t)}if("number"==typeof e)return a[e];var n,r=String(e);return(n=o[r.toLowerCase()])?n:(n=i[r.toLowerCase()])||(1===r.length?r.charCodeAt(0):void 0)}n.isEventKey=function(e,t){if(e&&"object"==typeof e){var n=e.which||e.keyCode||e.charCode;if(null==n)return!1;if("string"==typeof t){var r;if(r=o[t.toLowerCase()])return r===n;if(r=i[t.toLowerCase()])return r===n}else if("number"==typeof t)return t===n;return!1}};var o=(t=e.exports=n).code=t.codes={backspace:8,tab:9,enter:13,shift:16,ctrl:17,alt:18,"pause/break":19,"caps lock":20,esc:27,space:32,"page up":33,"page down":34,end:35,home:36,left:37,up:38,right:39,down:40,insert:45,delete:46,command:91,"left command":91,"right command":93,"numpad *":106,"numpad +":107,"numpad -":109,"numpad .":110,"numpad /":111,"num lock":144,"scroll lock":145,"my computer":182,"my calculator":183,";":186,"=":187,",":188,"-":189,".":190,"/":191,"`":192,"[":219,"\\":220,"]":221,"'":222},i=t.aliases={windows:91,"⇧":16,"⌥":18,"⌃":17,"⌘":91,ctl:17,control:17,option:18,pause:19,break:19,caps:20,return:13,escape:27,spc:32,spacebar:32,pgup:33,pgdn:34,ins:45,del:46,cmd:91};for(r=97;r<123;r++)o[String.fromCharCode(r)]=r-32;for(var r=48;r<58;r++)o[r-48]=r;for(r=1;r<13;r++)o["f"+r]=r+111;for(r=0;r<10;r++)o["numpad "+r]=r+96;var a=t.names=t.title={};for(r in o)a[o[r]]=r;for(var d in i)o[d]=i[d]}({get exports(){return o},set exports(e){o=e}},o);var i,r={};i=function(){return function(e){var t={};function n(o){if(t[o])return t[o].exports;var i=t[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,n),i.loaded=!0,i.exports}return n.m=e,n.c=t,n.p="",n(0)}([function(e,t){e.exports=function(){if("undefined"==typeof document||"undefined"==typeof window)return{ask:function(){return"initial"},element:function(){return null},ignoreKeys:function(){},specificKeys:function(){},registerOnChange:function(){},unRegisterOnChange:function(){}};var e=document.documentElement,t=null,n="initial",o=n,i=Date.now(),r="false",a=["button","input","select","textarea"],d=[],u=[16,17,18,91,93],s=[],c={keydown:"keyboard",keyup:"keyboard",mousedown:"mouse",mousemove:"mouse",MSPointerDown:"pointer",MSPointerMove:"pointer",pointerdown:"pointer",pointermove:"pointer",touchstart:"touch",touchend:"touch"},f=!1,p={x:null,y:null},l={2:"touch",3:"touch",4:"mouse"},w=!1;try{var m=Object.defineProperty({},"passive",{get:function(){w=!0}});window.addEventListener("test",null,m)}catch(e){}var v=function(){var e=!!w&&{passive:!0};document.addEventListener("DOMContentLoaded",g),window.PointerEvent?(window.addEventListener("pointerdown",h),window.addEventListener("pointermove",E)):window.MSPointerEvent?(window.addEventListener("MSPointerDown",h),window.addEventListener("MSPointerMove",E)):(window.addEventListener("mousedown",h),window.addEventListener("mousemove",E),"ontouchstart"in window&&(window.addEventListener("touchstart",h,e),window.addEventListener("touchend",h))),window.addEventListener(k(),E,e),window.addEventListener("keydown",h),window.addEventListener("keyup",h),window.addEventListener("focusin",b),window.addEventListener("focusout",L)},g=function(){if(r=!(e.getAttribute("data-whatpersist")||"false"===document.body.getAttribute("data-whatpersist")))try{window.sessionStorage.getItem("what-input")&&(n=window.sessionStorage.getItem("what-input")),window.sessionStorage.getItem("what-intent")&&(o=window.sessionStorage.getItem("what-intent"))}catch(e){}y("input"),y("intent")},h=function(e){var t=e.which,i=c[e.type];"pointer"===i&&(i=S(e));var r=!s.length&&-1===u.indexOf(t),d=s.length&&-1!==s.indexOf(t),f="keyboard"===i&&t&&(r||d)||"mouse"===i||"touch"===i;if(C(i)&&(f=!1),f&&n!==i&&(x("input",n=i),y("input")),f&&o!==i){var p=document.activeElement;p&&p.nodeName&&(-1===a.indexOf(p.nodeName.toLowerCase())||"button"===p.nodeName.toLowerCase()&&!P(p,"form"))&&(x("intent",o=i),y("intent"))}},y=function(t){e.setAttribute("data-what"+t,"input"===t?n:o),A(t)},E=function(e){var t=c[e.type];"pointer"===t&&(t=S(e)),M(e),(!f&&!C(t)||f&&"wheel"===e.type||"mousewheel"===e.type||"DOMMouseScroll"===e.type)&&o!==t&&(x("intent",o=t),y("intent"))},b=function(n){n.target.nodeName?(t=n.target.nodeName.toLowerCase(),e.setAttribute("data-whatelement",t),n.target.classList&&n.target.classList.length&&e.setAttribute("data-whatclasses",n.target.classList.toString().replace(" ",","))):L()},L=function(){t=null,e.removeAttribute("data-whatelement"),e.removeAttribute("data-whatclasses")},x=function(e,t){if(r)try{window.sessionStorage.setItem("what-"+e,t)}catch(e){}},S=function(e){return"number"==typeof e.pointerType?l[e.pointerType]:"pen"===e.pointerType?"touch":e.pointerType},C=function(e){var t=Date.now(),o="mouse"===e&&"touch"===n&&t-i<200;return i=t,o},k=function(){return"onwheel"in document.createElement("div")?"wheel":void 0!==document.onmousewheel?"mousewheel":"DOMMouseScroll"},A=function(e){for(var t=0,i=d.length;t<i;t++)d[t].type===e&&d[t].fn.call(void 0,"input"===e?n:o)},M=function(e){p.x!==e.screenX||p.y!==e.screenY?(f=!1,p.x=e.screenX,p.y=e.screenY):f=!0},P=function(e,t){var n=window.Element.prototype;if(n.matches||(n.matches=n.msMatchesSelector||n.webkitMatchesSelector),n.closest)return e.closest(t);do{if(e.matches(t))return e;e=e.parentElement||e.parentNode}while(null!==e&&1===e.nodeType);return null};return"addEventListener"in window&&Array.prototype.indexOf&&(c[k()]="mouse",v()),{ask:function(e){return"intent"===e?o:n},element:function(){return t},ignoreKeys:function(e){u=e},specificKeys:function(e){s=e},registerOnChange:function(e,t){d.push({fn:e,type:t||"input"})},unRegisterOnChange:function(e){var t=function(e){for(var t=0,n=d.length;t<n;t++)if(d[t].fn===e)return t}(e);(t||0===t)&&d.splice(t,1)},clearStorage:function(){window.sessionStorage.clear()}}}()}])},{get exports(){return r},set exports(e){r=e}}.exports=i();var a=r;let d=!1;var u,s,c,f,p,l,w,m;"undefined"!=typeof navigator&&/edge/i.test(null===(u=navigator)||void 0===u?void 0:u.userAgent),"undefined"!=typeof navigator&&new RegExp("iOS|iPhone|iPad|iPod","i").test(null===(s=navigator)||void 0===s?void 0:s.platform),d="undefined"!=typeof navigator&&/safari/i.test(null===(c=navigator)||void 0===c?void 0:c.userAgent)&&!/chrome/i.test(null===(f=navigator)||void 0===f?void 0:f.userAgent),"undefined"!=typeof navigator&&new RegExp("Win","i").test(null===(p=navigator)||void 0===p?void 0:p.platform),"undefined"!=typeof navigator&&new RegExp("Android","i").test(null===(l=navigator)||void 0===l?void 0:l.userAgent),"undefined"!=typeof navigator&&new RegExp("Mac|iPad|iPhone|iPod","i").test(null===(w=navigator)||void 0===w?void 0:w.platform),"undefined"!=typeof navigator&&new RegExp("Linux","i").test(null===(m=navigator)||void 0===m?void 0:m.platform);function v(){if("undefined"!=typeof document){let e=!1;try{e=document.documentElement.getAttribute("data-whatintent")}catch(e){}return"touch"===e}return!1}function g(){const e=()=>{if("undefined"!=typeof document&&"undefined"!=typeof window&&"undefined"!=typeof navigator){try{"undefined"!=typeof window&&window.IS_TEST?document.documentElement.setAttribute("data-os","other"):null!==navigator.platform.match(new RegExp("Mac|iPad|iPhone|iPod"))?document.documentElement.setAttribute("data-os","mac"):null!==navigator.platform.match(new RegExp("Win"))?document.documentElement.setAttribute("data-os","win"):null!==navigator.platform.match(new RegExp("Linux"))&&document.documentElement.setAttribute("data-os","linux")}catch(e){}document.removeEventListener("DOMContentLoaded",e)}};"undefined"!=typeof document&&"loading"===document.readyState?document.addEventListener("DOMContentLoaded",e):e()}!function(){if("undefined"!=typeof window){class e{get version(){return"10.0.0-beta.7"}}window.Eufemia=new e}}(),a.specificKeys([9]),g();export{g as defineNavigator,v as isTouchDevice};
1
+ import"react";var e="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{};"function"==typeof e.setTimeout&&setTimeout,"function"==typeof e.clearTimeout&&clearTimeout;function t(e,t){this.fun=e,this.array=t}t.prototype.run=function(){this.fun.apply(null,this.array)};var n=e.performance||{};n.now||n.mozNow||n.msNow||n.oNow||n.webkitNow;new Date;var o={};!function(e,t){function n(e){if(e&&"object"==typeof e){var t=e.which||e.keyCode||e.charCode;t&&(e=t)}if("number"==typeof e)return a[e];var n,r=String(e);return(n=o[r.toLowerCase()])?n:(n=i[r.toLowerCase()])||(1===r.length?r.charCodeAt(0):void 0)}n.isEventKey=function(e,t){if(e&&"object"==typeof e){var n=e.which||e.keyCode||e.charCode;if(null==n)return!1;if("string"==typeof t){var r;if(r=o[t.toLowerCase()])return r===n;if(r=i[t.toLowerCase()])return r===n}else if("number"==typeof t)return t===n;return!1}};var o=(t=e.exports=n).code=t.codes={backspace:8,tab:9,enter:13,shift:16,ctrl:17,alt:18,"pause/break":19,"caps lock":20,esc:27,space:32,"page up":33,"page down":34,end:35,home:36,left:37,up:38,right:39,down:40,insert:45,delete:46,command:91,"left command":91,"right command":93,"numpad *":106,"numpad +":107,"numpad -":109,"numpad .":110,"numpad /":111,"num lock":144,"scroll lock":145,"my computer":182,"my calculator":183,";":186,"=":187,",":188,"-":189,".":190,"/":191,"`":192,"[":219,"\\":220,"]":221,"'":222},i=t.aliases={windows:91,"⇧":16,"⌥":18,"⌃":17,"⌘":91,ctl:17,control:17,option:18,pause:19,break:19,caps:20,return:13,escape:27,spc:32,spacebar:32,pgup:33,pgdn:34,ins:45,del:46,cmd:91};for(r=97;r<123;r++)o[String.fromCharCode(r)]=r-32;for(var r=48;r<58;r++)o[r-48]=r;for(r=1;r<13;r++)o["f"+r]=r+111;for(r=0;r<10;r++)o["numpad "+r]=r+96;var a=t.names=t.title={};for(r in o)a[o[r]]=r;for(var d in i)o[d]=i[d]}({get exports(){return o},set exports(e){o=e}},o);var i,r={};i=function(){return function(e){var t={};function n(o){if(t[o])return t[o].exports;var i=t[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,n),i.loaded=!0,i.exports}return n.m=e,n.c=t,n.p="",n(0)}([function(e,t){e.exports=function(){if("undefined"==typeof document||"undefined"==typeof window)return{ask:function(){return"initial"},element:function(){return null},ignoreKeys:function(){},specificKeys:function(){},registerOnChange:function(){},unRegisterOnChange:function(){}};var e=document.documentElement,t=null,n="initial",o=n,i=Date.now(),r="false",a=["button","input","select","textarea"],d=[],u=[16,17,18,91,93],s=[],c={keydown:"keyboard",keyup:"keyboard",mousedown:"mouse",mousemove:"mouse",MSPointerDown:"pointer",MSPointerMove:"pointer",pointerdown:"pointer",pointermove:"pointer",touchstart:"touch",touchend:"touch"},f=!1,p={x:null,y:null},l={2:"touch",3:"touch",4:"mouse"},w=!1;try{var m=Object.defineProperty({},"passive",{get:function(){w=!0}});window.addEventListener("test",null,m)}catch(e){}var v=function(){var e=!!w&&{passive:!0};document.addEventListener("DOMContentLoaded",g),window.PointerEvent?(window.addEventListener("pointerdown",h),window.addEventListener("pointermove",E)):window.MSPointerEvent?(window.addEventListener("MSPointerDown",h),window.addEventListener("MSPointerMove",E)):(window.addEventListener("mousedown",h),window.addEventListener("mousemove",E),"ontouchstart"in window&&(window.addEventListener("touchstart",h,e),window.addEventListener("touchend",h))),window.addEventListener(k(),E,e),window.addEventListener("keydown",h),window.addEventListener("keyup",h),window.addEventListener("focusin",b),window.addEventListener("focusout",L)},g=function(){if(r=!(e.getAttribute("data-whatpersist")||"false"===document.body.getAttribute("data-whatpersist")))try{window.sessionStorage.getItem("what-input")&&(n=window.sessionStorage.getItem("what-input")),window.sessionStorage.getItem("what-intent")&&(o=window.sessionStorage.getItem("what-intent"))}catch(e){}y("input"),y("intent")},h=function(e){var t=e.which,i=c[e.type];"pointer"===i&&(i=S(e));var r=!s.length&&-1===u.indexOf(t),d=s.length&&-1!==s.indexOf(t),f="keyboard"===i&&t&&(r||d)||"mouse"===i||"touch"===i;if(C(i)&&(f=!1),f&&n!==i&&(x("input",n=i),y("input")),f&&o!==i){var p=document.activeElement;p&&p.nodeName&&(-1===a.indexOf(p.nodeName.toLowerCase())||"button"===p.nodeName.toLowerCase()&&!P(p,"form"))&&(x("intent",o=i),y("intent"))}},y=function(t){e.setAttribute("data-what"+t,"input"===t?n:o),A(t)},E=function(e){var t=c[e.type];"pointer"===t&&(t=S(e)),M(e),(!f&&!C(t)||f&&"wheel"===e.type||"mousewheel"===e.type||"DOMMouseScroll"===e.type)&&o!==t&&(x("intent",o=t),y("intent"))},b=function(n){n.target.nodeName?(t=n.target.nodeName.toLowerCase(),e.setAttribute("data-whatelement",t),n.target.classList&&n.target.classList.length&&e.setAttribute("data-whatclasses",n.target.classList.toString().replace(" ",","))):L()},L=function(){t=null,e.removeAttribute("data-whatelement"),e.removeAttribute("data-whatclasses")},x=function(e,t){if(r)try{window.sessionStorage.setItem("what-"+e,t)}catch(e){}},S=function(e){return"number"==typeof e.pointerType?l[e.pointerType]:"pen"===e.pointerType?"touch":e.pointerType},C=function(e){var t=Date.now(),o="mouse"===e&&"touch"===n&&t-i<200;return i=t,o},k=function(){return"onwheel"in document.createElement("div")?"wheel":void 0!==document.onmousewheel?"mousewheel":"DOMMouseScroll"},A=function(e){for(var t=0,i=d.length;t<i;t++)d[t].type===e&&d[t].fn.call(void 0,"input"===e?n:o)},M=function(e){p.x!==e.screenX||p.y!==e.screenY?(f=!1,p.x=e.screenX,p.y=e.screenY):f=!0},P=function(e,t){var n=window.Element.prototype;if(n.matches||(n.matches=n.msMatchesSelector||n.webkitMatchesSelector),n.closest)return e.closest(t);do{if(e.matches(t))return e;e=e.parentElement||e.parentNode}while(null!==e&&1===e.nodeType);return null};return"addEventListener"in window&&Array.prototype.indexOf&&(c[k()]="mouse",v()),{ask:function(e){return"intent"===e?o:n},element:function(){return t},ignoreKeys:function(e){u=e},specificKeys:function(e){s=e},registerOnChange:function(e,t){d.push({fn:e,type:t||"input"})},unRegisterOnChange:function(e){var t=function(e){for(var t=0,n=d.length;t<n;t++)if(d[t].fn===e)return t}(e);(t||0===t)&&d.splice(t,1)},clearStorage:function(){window.sessionStorage.clear()}}}()}])},{get exports(){return r},set exports(e){r=e}}.exports=i();var a=r;let d=!1;var u,s,c,f,p,l,w,m;"undefined"!=typeof navigator&&/edge/i.test(null===(u=navigator)||void 0===u?void 0:u.userAgent),"undefined"!=typeof navigator&&new RegExp("iOS|iPhone|iPad|iPod","i").test(null===(s=navigator)||void 0===s?void 0:s.platform),d="undefined"!=typeof navigator&&/safari/i.test(null===(c=navigator)||void 0===c?void 0:c.userAgent)&&!/chrome/i.test(null===(f=navigator)||void 0===f?void 0:f.userAgent),"undefined"!=typeof navigator&&new RegExp("Win","i").test(null===(p=navigator)||void 0===p?void 0:p.platform),"undefined"!=typeof navigator&&new RegExp("Android","i").test(null===(l=navigator)||void 0===l?void 0:l.userAgent),"undefined"!=typeof navigator&&new RegExp("Mac|iPad|iPhone|iPod","i").test(null===(w=navigator)||void 0===w?void 0:w.platform),"undefined"!=typeof navigator&&new RegExp("Linux","i").test(null===(m=navigator)||void 0===m?void 0:m.platform);function v(){if("undefined"!=typeof document){let e=!1;try{e=document.documentElement.getAttribute("data-whatintent")}catch(e){}return"touch"===e}return!1}function g(){const e=()=>{if("undefined"!=typeof document&&"undefined"!=typeof window&&"undefined"!=typeof navigator){try{"undefined"!=typeof window&&window.IS_TEST?document.documentElement.setAttribute("data-os","other"):null!==navigator.platform.match(new RegExp("Mac|iPad|iPhone|iPod"))?document.documentElement.setAttribute("data-os","mac"):null!==navigator.platform.match(new RegExp("Win"))?document.documentElement.setAttribute("data-os","win"):null!==navigator.platform.match(new RegExp("Linux"))&&document.documentElement.setAttribute("data-os","linux")}catch(e){}document.removeEventListener("DOMContentLoaded",e)}};"undefined"!=typeof document&&"loading"===document.readyState?document.addEventListener("DOMContentLoaded",e):e()}!function(){if("undefined"!=typeof window){class e{get version(){return"10.0.0"}}window.Eufemia=new e}}(),a.specificKeys([9]),g();export{g as defineNavigator,v as isTouchDevice};