@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
@@ -1 +1 @@
1
- @charset "UTF-8";html{font-size:100%}html:not([data-visual-test]){scroll-behavior:smooth}@supports (-webkit-touch-callout:none){@supports (font:-apple-system-body){html{font:-apple-system-body}}}html[xmlns="http://www.w3.org/1999/xhtml"] a:hover{text-decoration:none}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--active{color:var(--color-mint-green)!important}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--contrast:not(:hover){color:var(--color-white)!important}html[xmlns="http://www.w3.org/1999/xhtml"] a.dnb-button--primary{color:var(--color-white)}html[xmlns="http://www.w3.org/1999/xhtml"] ul{list-style:initial}html[xmlns="http://www.w3.org/1999/xhtml"] p{background-color:initial;overflow:initial;text-align:inherit}html[xmlns="http://www.w3.org/1999/xhtml"] i{font-style:italic}html[xmlns="http://www.w3.org/1999/xhtml"] #column_left,html[xmlns="http://www.w3.org/1999/xhtml"] #root{width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefault #wrapper,html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefaultStartPage #wrapper{max-width:60rem;width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] #column_content{box-shadow:none}body{margin:0}.dnb-core-style{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:var(--color-black-80,#333);font-family:var(--font-family-default);font-size:var(--font-size-small);font-style:normal;font-weight:var(--font-weight-basis);line-height:var(--line-height-basis);tab-size:4;-moz-tab-size:4;word-break:break-word}.dnb-core-style *,.dnb-core-style :after,.dnb-core-style :before{background-repeat:no-repeat;box-sizing:border-box}.dnb-core-style :after,.dnb-core-style :before{text-decoration:inherit;vertical-align:inherit}.dnb-core-style hr{height:0;overflow:visible}.dnb-core-style main{display:block}.dnb-core-style nav ol,.dnb-core-style nav ul{list-style:none}.dnb-core-style abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.dnb-core-style b,.dnb-core-style strong{font-weight:bolder}.dnb-core-style code,.dnb-core-style kbd,.dnb-core-style pre,.dnb-core-style samp{font-family:var(--font-family-monospace);font-size:var(--font-size-basis--em)}.dnb-core-style ::selection{background-color:#b3d4fc;color:#000;text-shadow:none}.dnb-core-style audio,.dnb-core-style canvas,.dnb-core-style iframe,.dnb-core-style img,.dnb-core-style svg,.dnb-core-style video{vertical-align:middle}.dnb-core-style audio,.dnb-core-style video{display:inline-block}.dnb-core-style audio:not([controls]){display:none;height:0}.dnb-core-style img{border-style:none}.dnb-core-style svg:not([fill]){fill:currentcolor}.dnb-core-style svg:not(:root){overflow:hidden}.dnb-core-style table{border-collapse:collapse}.dnb-core-style button,.dnb-core-style input,.dnb-core-style select,.dnb-core-style textarea{font-family:inherit;font-size:inherit;line-height:inherit}.dnb-core-style button,.dnb-core-style figure,.dnb-core-style input,.dnb-core-style select{margin:0}.dnb-core-style button{overflow:visible;text-transform:none}.dnb-core-style fieldset{padding:.35rem .75rem .625rem}.dnb-core-style input{overflow:visible;word-break:normal}.dnb-core-style legend{color:inherit;display:table;max-width:100%;white-space:normal}.dnb-core-style progress{display:inline-block;vertical-align:baseline}.dnb-core-style select{text-transform:none}.dnb-core-style textarea{overflow:auto;resize:vertical}.dnb-core-style [type=checkbox],.dnb-core-style [type=radio]{padding:0}.dnb-core-style input[type=search]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;outline-offset:-2px}.dnb-core-style ::-webkit-inner-spin-button,.dnb-core-style ::-webkit-outer-spin-button{height:auto}.dnb-core-style ::input-placeholder{color:inherit;opacity:.54}.dnb-core-style ::-webkit-search-decoration{-webkit-appearance:none;appearance:none}.dnb-core-style ::-webkit-file-upload-button{background-color:transparent;border:none;font:inherit}.dnb-core-style ::-moz-focus-inner{border-style:none;padding:0}.dnb-core-style details{display:block}.dnb-core-style summary{display:list-item}.dnb-core-style canvas{display:inline-block}.dnb-core-style template{display:none}.dnb-core-style [tabindex],.dnb-core-style a,.dnb-core-style area,.dnb-core-style button,.dnb-core-style input,.dnb-core-style label,.dnb-core-style select,.dnb-core-style summary,.dnb-core-style textarea{touch-action:manipulation}.dnb-core-style [hidden]{display:none}.dnb-core-style [aria-busy=true]{cursor:progress}.dnb-core-style [aria-controls]:not(input){cursor:pointer}.dnb-core-style [aria-disabled=true],.dnb-core-style [disabled]{cursor:not-allowed}.dnb-core-style [aria-hidden=false][hidden]:not(:focus){clip:rect(0,0,0,0);display:inherit;position:absolute}@media print{.dnb-core-style{background-color:#fff;color:#000}}.dnb-core-style .eufemia-theme{color:var(--color-black-80,#333);font-family:var(--font-family-default);font-size:var(--font-size-small);font-style:normal;font-weight:var(--font-weight-basis);line-height:var(--line-height-basis)}.dnb-no-focus,.dnb-tab-focus,.dnb-tab-focus:focus{outline:none}html[data-whatinput=keyboard] .dnb-tab-focus: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-mouse-focus,.dnb-mouse-focus:focus{outline:none}html[data-whatinput=mouse] .dnb-mouse-focus:focus{box-shadow:0 0 0 var(--border-width) var(--border-color)}.dnb-focus-ring,html[data-whatinput=mouse] .dnb-mouse-focus:focus{--border-color:var(--focus-ring-color);--border-width:var(--focus-ring-width);border-color:transparent}.dnb-focus-ring{box-shadow:0 0 0 var(--border-width) var(--border-color)!important}.dnb-scrollbar-appearance{--scrollbar-track-width:0.5rem;--scrollbar-thumb-width:0.5rem;--scrollbar-track-color:var(--color-black-8);--scrollbar-thumb-color:var(--color-sea-green);--scrollbar-thumb-hover-color:var(--color-emerald-green);-webkit-overflow-scrolling:touch;-ms-overflow-style:auto;scrollbar-color:var(--scrollbar-thumb-color,#888) transparent}@supports not (scrollbar-color:auto){.dnb-scrollbar-appearance::-webkit-scrollbar{background-color:var(--scrollbar-track-color,#eee);border-radius:var(--scrollbar-thumb-width,.5rem)}.dnb-scrollbar-appearance::-webkit-scrollbar:vertical{width:var(--scrollbar-track-width,.5rem)}.dnb-scrollbar-appearance::-webkit-scrollbar:horizontal{height:var(--scrollbar-track-width,.5rem)}.dnb-scrollbar-appearance::-webkit-scrollbar-thumb{background-color:var(--scrollbar-thumb-color,#888);border-radius:var(--scrollbar-thumb-width,.5rem)}.dnb-scrollbar-appearance::-webkit-scrollbar-thumb:hover{background-color:var(--scrollbar-thumb-hover-color,#666)}}.dnb-skip-link{opacity:.3;position:absolute;top:-100vh;transition:opacity .3s ease-out;z-index:0}.dnb-skip-link--active,.dnb-skip-link:focus{background-color:transparent;border:none;border-radius:0;box-shadow:none;color:var(--color-sea-green);font-size:var(--font-size-basis);left:40%;margin:0;outline:none;padding:.5rem 1rem;position:fixed;text-align:center;text-decoration:none;top:5%;user-select:none;-webkit-user-select:none;white-space:nowrap;z-index:9999}.dnb-skip-link--active:after,.dnb-skip-link:focus:after{background-color:hsla(0,0%,100%,.85);box-shadow:150vw 150vh 0 0 hsla(0,0%,100%,.85);content:"";height:150vh;left:-200vw;position:absolute;top:-200vh;width:150vw;z-index:-2}.dnb-skip-link--active:before,.dnb-skip-link:focus:before{background-color:var(--color-white);border-radius:1.5rem;content:"";height:100%;left:0;outline:none;position:absolute;top:0;width:100%;z-index:-1}html[data-whatinput=mouse] .dnb-skip-link--active:before,html[data-whatinput=mouse] .dnb-skip-link:focus:before{--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-skip-link--active:hover:before,.dnb-skip-link:focus:hover:before{background-color:var(--color-mint-green-50)}.dnb-skip-link--active:active:before,.dnb-skip-link:focus:active:before{background-color:var(--color-emerald-green)}.dnb-skip-link--active:focus:not(:active):before,.dnb-skip-link:focus:focus:not(:active):before{outline:none}html[data-whatinput=keyboard] .dnb-skip-link--active:focus:not(:active):before,html[data-whatinput=keyboard] .dnb-skip-link:focus:focus:not(:active):before{--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-skip-link--active:focus,.dnb-skip-link:focus:focus{opacity:1}.dnb-skip-link--active:focus:not(:hover):not(:active),.dnb-skip-link--active:hover,.dnb-skip-link:focus:focus:not(:hover):not(:active),.dnb-skip-link:focus:hover{background-color:transparent;box-shadow:none;color:var(--color-sea-green)}.dnb-skip-link--active:active,.dnb-skip-link:focus:active{background-color:transparent;color:var(--color-white)}html[data-whatintent=touch] .dnb-skip-link{display:none}.dnb-alignment-helper,.dnb-alignment-helper:before{speak:none;display:inline-block;font-size:var(--font-size-small);height:0;width:0}.dnb-alignment-helper:before{content:"‌"}.dnb-drop-shadow{box-shadow:var(--shadow-default)}.dnb-sr-only{-webkit-touch-callout:none;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);margin:0;max-height:1px;max-width:1px;overflow:hidden;padding:0;pointer-events:none;position:absolute;-webkit-user-select:none;user-select:none;white-space:nowrap}.dnb-suffix{font-size:var(--font-size-basis);line-height:var(--line-height-basis);padding-left:.5rem;word-break:normal}
1
+ @charset "UTF-8";html{font-size:100%}html:not([data-visual-test]){scroll-behavior:smooth}@supports (-webkit-touch-callout:none){@supports (font:-apple-system-body){html{font:-apple-system-body}}}html[xmlns="http://www.w3.org/1999/xhtml"] a:hover{text-decoration:none}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--active{color:var(--color-mint-green)!important}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--contrast:not(:hover){color:var(--color-white)!important}html[xmlns="http://www.w3.org/1999/xhtml"] a.dnb-button--primary{color:var(--color-white)}html[xmlns="http://www.w3.org/1999/xhtml"] ul{list-style:initial}html[xmlns="http://www.w3.org/1999/xhtml"] p{background-color:initial;overflow:initial;text-align:inherit}html[xmlns="http://www.w3.org/1999/xhtml"] i{font-style:italic}html[xmlns="http://www.w3.org/1999/xhtml"] #column_left,html[xmlns="http://www.w3.org/1999/xhtml"] #root{width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefault #wrapper,html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefaultStartPage #wrapper{max-width:60rem;width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] #column_content{box-shadow:none}body{margin:0}.dnb-core-style{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:var(--theme-color-body,var(--color-black-80,#333));font-family:var(--font-family-default);font-size:var(--font-size-small);font-style:normal;font-weight:var(--font-weight-basis);line-height:var(--line-height-basis);tab-size:4;-moz-tab-size:4;word-break:break-word}.dnb-core-style *,.dnb-core-style :after,.dnb-core-style :before{background-repeat:no-repeat;box-sizing:border-box}.dnb-core-style :after,.dnb-core-style :before{text-decoration:inherit;vertical-align:inherit}.dnb-core-style hr{height:0;overflow:visible}.dnb-core-style main{display:block}.dnb-core-style nav ol,.dnb-core-style nav ul{list-style:none}.dnb-core-style abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.dnb-core-style b,.dnb-core-style strong{font-weight:bolder}.dnb-core-style code,.dnb-core-style kbd,.dnb-core-style pre,.dnb-core-style samp{font-family:var(--font-family-monospace);font-size:var(--font-size-basis--em)}.dnb-core-style ::selection{background-color:#b3d4fc;color:#000;text-shadow:none}.dnb-core-style audio,.dnb-core-style canvas,.dnb-core-style iframe,.dnb-core-style img,.dnb-core-style svg,.dnb-core-style video{vertical-align:middle}.dnb-core-style audio,.dnb-core-style video{display:inline-block}.dnb-core-style audio:not([controls]){display:none;height:0}.dnb-core-style img{border-style:none}.dnb-core-style svg:not([fill]){fill:currentcolor}.dnb-core-style svg:not(:root){overflow:hidden}.dnb-core-style table{border-collapse:collapse}.dnb-core-style button,.dnb-core-style input,.dnb-core-style select,.dnb-core-style textarea{font-family:inherit;font-size:inherit;line-height:inherit}.dnb-core-style button,.dnb-core-style figure,.dnb-core-style input,.dnb-core-style select{margin:0}.dnb-core-style button{overflow:visible;text-transform:none}.dnb-core-style fieldset{padding:.35rem .75rem .625rem}.dnb-core-style input{overflow:visible;word-break:normal}.dnb-core-style legend{color:inherit;display:table;max-width:100%;white-space:normal}.dnb-core-style progress{display:inline-block;vertical-align:baseline}.dnb-core-style select{text-transform:none}.dnb-core-style textarea{overflow:auto;resize:vertical}.dnb-core-style [type=checkbox],.dnb-core-style [type=radio]{padding:0}.dnb-core-style input[type=search]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;outline-offset:-2px}.dnb-core-style ::-webkit-inner-spin-button,.dnb-core-style ::-webkit-outer-spin-button{height:auto}.dnb-core-style ::input-placeholder{color:inherit;opacity:.54}.dnb-core-style ::-webkit-search-decoration{-webkit-appearance:none;appearance:none}.dnb-core-style ::-webkit-file-upload-button{background-color:transparent;border:none;font:inherit}.dnb-core-style ::-moz-focus-inner{border-style:none;padding:0}.dnb-core-style details{display:block}.dnb-core-style summary{display:list-item}.dnb-core-style canvas{display:inline-block}.dnb-core-style template{display:none}.dnb-core-style [tabindex],.dnb-core-style a,.dnb-core-style area,.dnb-core-style button,.dnb-core-style input,.dnb-core-style label,.dnb-core-style select,.dnb-core-style summary,.dnb-core-style textarea{touch-action:manipulation}.dnb-core-style [hidden]{display:none}.dnb-core-style [aria-busy=true]{cursor:progress}.dnb-core-style [aria-controls]:not(input){cursor:pointer}.dnb-core-style [aria-disabled=true],.dnb-core-style [disabled]{cursor:not-allowed}.dnb-core-style [aria-hidden=false][hidden]:not(:focus){clip:rect(0,0,0,0);display:inherit;position:absolute}@media print{.dnb-core-style{background-color:#fff;color:#000}}.dnb-core-style .eufemia-theme{color:var(--theme-color-body,var(--color-black-80,#333));font-family:var(--font-family-default);font-size:var(--font-size-small);font-style:normal;font-weight:var(--font-weight-basis);line-height:var(--line-height-basis)}.dnb-no-focus,.dnb-tab-focus,.dnb-tab-focus:focus{outline:none}html[data-whatinput=keyboard] .dnb-tab-focus: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-mouse-focus,.dnb-mouse-focus:focus{outline:none}html[data-whatinput=mouse] .dnb-mouse-focus:focus{box-shadow:0 0 0 var(--border-width) var(--border-color)}.dnb-focus-ring,html[data-whatinput=mouse] .dnb-mouse-focus:focus{--border-color:var(--focus-ring-color);--border-width:var(--focus-ring-width);border-color:transparent}.dnb-focus-ring{box-shadow:0 0 0 var(--border-width) var(--border-color)!important}.dnb-scrollbar-appearance{--scrollbar-track-width:0.5rem;--scrollbar-thumb-width:0.5rem;--scrollbar-track-color:var(--color-black-8);--scrollbar-thumb-color:var(--color-sea-green);--scrollbar-thumb-hover-color:var(--color-emerald-green);-webkit-overflow-scrolling:touch;-ms-overflow-style:auto;scrollbar-color:var(--scrollbar-thumb-color,#888) transparent}@supports not (scrollbar-color:auto){.dnb-scrollbar-appearance::-webkit-scrollbar{background-color:var(--scrollbar-track-color,#eee);border-radius:var(--scrollbar-thumb-width,.5rem)}.dnb-scrollbar-appearance::-webkit-scrollbar:vertical{width:var(--scrollbar-track-width,.5rem)}.dnb-scrollbar-appearance::-webkit-scrollbar:horizontal{height:var(--scrollbar-track-width,.5rem)}.dnb-scrollbar-appearance::-webkit-scrollbar-thumb{background-color:var(--scrollbar-thumb-color,#888);border-radius:var(--scrollbar-thumb-width,.5rem)}.dnb-scrollbar-appearance::-webkit-scrollbar-thumb:hover{background-color:var(--scrollbar-thumb-hover-color,#666)}}.dnb-skip-link{opacity:.3;position:absolute;top:-100vh;transition:opacity .3s ease-out;z-index:0}.dnb-skip-link--active,.dnb-skip-link:focus{background-color:transparent;border:none;border-radius:0;box-shadow:none;color:var(--color-sea-green);font-size:var(--font-size-basis);left:40%;margin:0;outline:none;padding:.5rem 1rem;position:fixed;text-align:center;text-decoration:none;top:5%;user-select:none;-webkit-user-select:none;white-space:nowrap;z-index:9999}.dnb-skip-link--active:after,.dnb-skip-link:focus:after{background-color:hsla(0,0%,100%,.85);box-shadow:150vw 150vh 0 0 hsla(0,0%,100%,.85);content:"";height:150vh;left:-200vw;position:absolute;top:-200vh;width:150vw;z-index:-2}.dnb-skip-link--active:before,.dnb-skip-link:focus:before{background-color:var(--color-white);border-radius:1.5rem;content:"";height:100%;left:0;outline:none;position:absolute;top:0;width:100%;z-index:-1}html[data-whatinput=mouse] .dnb-skip-link--active:before,html[data-whatinput=mouse] .dnb-skip-link:focus:before{--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-skip-link--active:hover:before,.dnb-skip-link:focus:hover:before{background-color:var(--color-mint-green-50)}.dnb-skip-link--active:active:before,.dnb-skip-link:focus:active:before{background-color:var(--color-emerald-green)}.dnb-skip-link--active:focus:not(:active):before,.dnb-skip-link:focus:focus:not(:active):before{outline:none}html[data-whatinput=keyboard] .dnb-skip-link--active:focus:not(:active):before,html[data-whatinput=keyboard] .dnb-skip-link:focus:focus:not(:active):before{--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-skip-link--active:focus,.dnb-skip-link:focus:focus{opacity:1}.dnb-skip-link--active:focus:not(:hover):not(:active),.dnb-skip-link--active:hover,.dnb-skip-link:focus:focus:not(:hover):not(:active),.dnb-skip-link:focus:hover{background-color:transparent;box-shadow:none;color:var(--color-sea-green)}.dnb-skip-link--active:active,.dnb-skip-link:focus:active{background-color:transparent;color:var(--color-white)}html[data-whatintent=touch] .dnb-skip-link{display:none}.dnb-alignment-helper,.dnb-alignment-helper:before{speak:none;display:inline-block;font-size:var(--font-size-small);height:0;width:0}.dnb-alignment-helper:before{content:"‌"}.dnb-drop-shadow{box-shadow:var(--shadow-default)}.dnb-sr-only{-webkit-touch-callout:none!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;margin:0!important;max-height:1px!important;max-width:1px!important;overflow:hidden!important;padding:0!important;pointer-events:none!important;position:absolute!important;-webkit-user-select:none!important;user-select:none!important;white-space:nowrap!important}.dnb-suffix{font-size:var(--font-size-basis);line-height:var(--line-height-basis);padding-left:.5rem;word-break:normal}
@@ -258,7 +258,7 @@ body {
258
258
  font-size: var(--font-size-small);
259
259
  font-style: normal;
260
260
  line-height: var(--line-height-basis);
261
- color: var(--color-black-80, #333);
261
+ color: var(--theme-color-body, var(--color-black-80, #333));
262
262
  /* stylelint-disable-next-line */
263
263
  -moz-osx-font-smoothing: grayscale;
264
264
  /* stylelint-disable-next-line */
@@ -476,5 +476,5 @@ body .eufemia-theme {
476
476
  font-size: var(--font-size-small);
477
477
  font-style: normal;
478
478
  line-height: var(--line-height-basis);
479
- color: var(--color-black-80, #333);
479
+ color: var(--theme-color-body, var(--color-black-80, #333));
480
480
  }
@@ -1 +1 @@
1
- html{-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%;cursor:default;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:var(--line-height-basis);-moz-tab-size:4;tab-size:4;word-break:break-word}body{margin:0}html{font-size:100%}html:not([data-visual-test]){scroll-behavior:smooth}@supports (-webkit-touch-callout:none){@supports (font:-apple-system-body){html{font:-apple-system-body}}}html[xmlns="http://www.w3.org/1999/xhtml"] a:hover{text-decoration:none}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--active{color:var(--color-mint-green)!important}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--contrast:not(:hover){color:var(--color-white)!important}html[xmlns="http://www.w3.org/1999/xhtml"] a.dnb-button--primary{color:var(--color-white)}html[xmlns="http://www.w3.org/1999/xhtml"] ul{list-style:initial}html[xmlns="http://www.w3.org/1999/xhtml"] p{background-color:initial;overflow:initial;text-align:inherit}html[xmlns="http://www.w3.org/1999/xhtml"] i{font-style:italic}html[xmlns="http://www.w3.org/1999/xhtml"] #column_left,html[xmlns="http://www.w3.org/1999/xhtml"] #root{width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefault #wrapper,html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefaultStartPage #wrapper{max-width:60rem;width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] #column_content{box-shadow:none}body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:var(--color-black-80,#333);font-family:var(--font-family-default);font-size:var(--font-size-small);font-style:normal;font-weight:var(--font-weight-basis);line-height:var(--line-height-basis);tab-size:4;-moz-tab-size:4;word-break:break-word}body *,body :after,body :before{background-repeat:no-repeat;box-sizing:border-box}body :after,body :before{text-decoration:inherit;vertical-align:inherit}body hr{height:0;overflow:visible}body main{display:block}body nav ol,body nav ul{list-style:none}body abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}body b,body strong{font-weight:bolder}body code,body kbd,body pre,body samp{font-family:var(--font-family-monospace);font-size:var(--font-size-basis--em)}body ::selection{background-color:#b3d4fc;color:#000;text-shadow:none}body audio,body canvas,body iframe,body img,body svg,body video{vertical-align:middle}body audio,body video{display:inline-block}body audio:not([controls]){display:none;height:0}body img{border-style:none}body svg:not([fill]){fill:currentcolor}body svg:not(:root){overflow:hidden}body table{border-collapse:collapse}body button,body input,body select,body textarea{font-family:inherit;font-size:inherit;line-height:inherit}body button,body figure,body input,body select{margin:0}body button{overflow:visible;text-transform:none}body fieldset{padding:.35rem .75rem .625rem}body input{overflow:visible;word-break:normal}body legend{color:inherit;display:table;max-width:100%;white-space:normal}body progress{display:inline-block;vertical-align:baseline}body select{text-transform:none}body textarea{overflow:auto;resize:vertical}body [type=checkbox],body [type=radio]{padding:0}body input[type=search]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;outline-offset:-2px}body ::-webkit-inner-spin-button,body ::-webkit-outer-spin-button{height:auto}body ::input-placeholder{color:inherit;opacity:.54}body ::-webkit-search-decoration{-webkit-appearance:none;appearance:none}body ::-webkit-file-upload-button{background-color:transparent;border:none;font:inherit}body ::-moz-focus-inner{border-style:none;padding:0}body details{display:block}body summary{display:list-item}body canvas{display:inline-block}body template{display:none}body [tabindex],body a,body area,body button,body input,body label,body select,body summary,body textarea{touch-action:manipulation}body [hidden]{display:none}body [aria-busy=true]{cursor:progress}body [aria-controls]:not(input){cursor:pointer}body [aria-disabled=true],body [disabled]{cursor:not-allowed}body [aria-hidden=false][hidden]:not(:focus){clip:rect(0,0,0,0);display:inherit;position:absolute}@media print{body{background-color:#fff;color:#000}}body .eufemia-theme{color:var(--color-black-80,#333);font-family:var(--font-family-default);font-size:var(--font-size-small);font-style:normal;font-weight:var(--font-weight-basis);line-height:var(--line-height-basis)}
1
+ html{-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%;cursor:default;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:var(--line-height-basis);-moz-tab-size:4;tab-size:4;word-break:break-word}body{margin:0}html{font-size:100%}html:not([data-visual-test]){scroll-behavior:smooth}@supports (-webkit-touch-callout:none){@supports (font:-apple-system-body){html{font:-apple-system-body}}}html[xmlns="http://www.w3.org/1999/xhtml"] a:hover{text-decoration:none}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--active{color:var(--color-mint-green)!important}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--contrast:not(:hover){color:var(--color-white)!important}html[xmlns="http://www.w3.org/1999/xhtml"] a.dnb-button--primary{color:var(--color-white)}html[xmlns="http://www.w3.org/1999/xhtml"] ul{list-style:initial}html[xmlns="http://www.w3.org/1999/xhtml"] p{background-color:initial;overflow:initial;text-align:inherit}html[xmlns="http://www.w3.org/1999/xhtml"] i{font-style:italic}html[xmlns="http://www.w3.org/1999/xhtml"] #column_left,html[xmlns="http://www.w3.org/1999/xhtml"] #root{width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefault #wrapper,html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefaultStartPage #wrapper{max-width:60rem;width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] #column_content{box-shadow:none}body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:var(--theme-color-body,var(--color-black-80,#333));font-family:var(--font-family-default);font-size:var(--font-size-small);font-style:normal;font-weight:var(--font-weight-basis);line-height:var(--line-height-basis);tab-size:4;-moz-tab-size:4;word-break:break-word}body *,body :after,body :before{background-repeat:no-repeat;box-sizing:border-box}body :after,body :before{text-decoration:inherit;vertical-align:inherit}body hr{height:0;overflow:visible}body main{display:block}body nav ol,body nav ul{list-style:none}body abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}body b,body strong{font-weight:bolder}body code,body kbd,body pre,body samp{font-family:var(--font-family-monospace);font-size:var(--font-size-basis--em)}body ::selection{background-color:#b3d4fc;color:#000;text-shadow:none}body audio,body canvas,body iframe,body img,body svg,body video{vertical-align:middle}body audio,body video{display:inline-block}body audio:not([controls]){display:none;height:0}body img{border-style:none}body svg:not([fill]){fill:currentcolor}body svg:not(:root){overflow:hidden}body table{border-collapse:collapse}body button,body input,body select,body textarea{font-family:inherit;font-size:inherit;line-height:inherit}body button,body figure,body input,body select{margin:0}body button{overflow:visible;text-transform:none}body fieldset{padding:.35rem .75rem .625rem}body input{overflow:visible;word-break:normal}body legend{color:inherit;display:table;max-width:100%;white-space:normal}body progress{display:inline-block;vertical-align:baseline}body select{text-transform:none}body textarea{overflow:auto;resize:vertical}body [type=checkbox],body [type=radio]{padding:0}body input[type=search]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;outline-offset:-2px}body ::-webkit-inner-spin-button,body ::-webkit-outer-spin-button{height:auto}body ::input-placeholder{color:inherit;opacity:.54}body ::-webkit-search-decoration{-webkit-appearance:none;appearance:none}body ::-webkit-file-upload-button{background-color:transparent;border:none;font:inherit}body ::-moz-focus-inner{border-style:none;padding:0}body details{display:block}body summary{display:list-item}body canvas{display:inline-block}body template{display:none}body [tabindex],body a,body area,body button,body input,body label,body select,body summary,body textarea{touch-action:manipulation}body [hidden]{display:none}body [aria-busy=true]{cursor:progress}body [aria-controls]:not(input){cursor:pointer}body [aria-disabled=true],body [disabled]{cursor:not-allowed}body [aria-hidden=false][hidden]:not(:focus){clip:rect(0,0,0,0);display:inherit;position:absolute}@media print{body{background-color:#fff;color:#000}}body .eufemia-theme{color:var(--theme-color-body,var(--color-black-80,#333));font-family:var(--font-family-default);font-size:var(--font-size-small);font-style:normal;font-weight:var(--font-weight-basis);line-height:var(--line-height-basis)}
@@ -636,16 +636,17 @@ button.dnb-anchor {
636
636
  }
637
637
 
638
638
  .dnb-anchor {
639
+ --anchor-underline-thickness: 0.0938rem;
639
640
  display: inline;
640
- padding: 0.05575em 0.125em;
641
+ padding: 0.05575em 0;
641
642
  font-size: var(--font-size-basis);
642
643
  text-decoration: underline;
643
644
  -webkit-text-decoration-color: currentcolor;
644
645
  text-decoration-color: currentcolor;
645
- text-decoration-thickness: 0.0938rem;
646
+ text-decoration-thickness: var(--anchor-underline-thickness);
646
647
  text-underline-offset: 0.25em;
647
648
  border-radius: 0;
648
- transition: background-color 200ms ease-in-out, border-radius 200ms ease-in-out;
649
+ transition: box-shadow 200ms ease-in-out, border-radius 200ms ease-in-out;
649
650
  }
650
651
  sup .dnb-anchor, sub .dnb-anchor {
651
652
  padding: 0 0.025em;
@@ -731,6 +732,10 @@ html[data-whatinput=keyboard] .dnb-anchor:focus {
731
732
 
732
733
  .dnb-anchor--focus {
733
734
  outline: none;
735
+ --border-color: var(--focus-ring-color);
736
+ --border-width: var(--focus-ring-width);
737
+ box-shadow: 0 0 0 var(--border-width) var(--border-color);
738
+ border-color: transparent;
734
739
  border-radius: 0.25em;
735
740
  }
736
741
  .dnb-anchor--focus:not(:active) {
@@ -740,12 +745,6 @@ html[data-whatinput=keyboard] .dnb-anchor:focus {
740
745
  .dnb-anchor--focus:not(:active), .dnb-section .dnb-anchor--focus:not(:active).dnb-anchor {
741
746
  text-decoration: none;
742
747
  }
743
- html[data-whatinput=mouse] .dnb-anchor--focus {
744
- --border-color: var(--focus-ring-color);
745
- --border-width: var(--focus-ring-width);
746
- box-shadow: 0 0 0 var(--border-width) var(--border-color);
747
- border-color: transparent;
748
- }
749
748
 
750
749
  .dnb-anchor--no-style {
751
750
  color: inherit;
@@ -1439,9 +1438,7 @@ label + .dnb-autocomplete[class*=__form-status] .dnb-autocomplete__shell {
1439
1438
  .dnb-button--has-text.dnb-button--has-icon.dnb-button--icon-position-left .dnb-button__icon, .dnb-button--has-text.dnb-button--has-icon.dnb-button--icon-position-top .dnb-button__icon {
1440
1439
  order: 1;
1441
1440
  }
1442
- .dnb-button--has-text.dnb-button--has-icon.dnb-button--icon-position-left > *,
1443
- .dnb-button--has-text.dnb-button--has-icon.dnb-button--icon-position-left .dnb-button__text, .dnb-button--has-text.dnb-button--has-icon.dnb-button--icon-position-top > *,
1444
- .dnb-button--has-text.dnb-button--has-icon.dnb-button--icon-position-top .dnb-button__text {
1441
+ .dnb-button--has-text.dnb-button--has-icon.dnb-button--icon-position-left .dnb-button__text, .dnb-button--has-text.dnb-button--has-icon.dnb-button--icon-position-top .dnb-button__text {
1445
1442
  order: 2;
1446
1443
  }
1447
1444
  .dnb-button--stretch {
@@ -2282,12 +2279,12 @@ html[data-whatinput=keyboard] .dnb-date-picker table.dnb-no-focus:focus {
2282
2279
  .dnb-dialog__actions {
2283
2280
  padding-top: 1.5rem;
2284
2281
  display: flex;
2282
+ flex-flow: row wrap;
2285
2283
  justify-content: center;
2284
+ grid-gap: 1rem;
2285
+ gap: 1rem;
2286
2286
  width: 100%;
2287
2287
  }
2288
- .dnb-dialog__actions > :not(:last-child) {
2289
- margin-right: 1rem;
2290
- }
2291
2288
  .dnb-dialog--information .dnb-dialog__actions {
2292
2289
  justify-content: left;
2293
2290
  }
@@ -3194,6 +3191,13 @@ button .dnb-form-status__text {
3194
3191
  width: 100%;
3195
3192
  height: 100%;
3196
3193
  }
3194
+ .dnb-global-error--center {
3195
+ display: grid;
3196
+ align-content: center;
3197
+ justify-content: center;
3198
+ place-content: center;
3199
+ height: 80vh;
3200
+ }
3197
3201
  .dnb-global-error__inner {
3198
3202
  position: relative;
3199
3203
  display: flex;
@@ -3213,43 +3217,26 @@ button .dnb-form-status__text {
3213
3217
  .dnb-global-error__inner__content {
3214
3218
  max-width: 37rem;
3215
3219
  }
3216
- .dnb-global-error__back.dnb-button--tertiary {
3217
- position: absolute;
3218
- z-index: 1;
3219
- top: var(--spacing-large);
3220
- left: var(--spacing-large);
3221
- }
3222
- @media screen and (max-width: 90em) {
3223
- .dnb-global-error__back.dnb-button--tertiary {
3224
- left: var(--spacing-x-small);
3225
- }
3226
- }
3227
- .dnb-global-error__gfx {
3228
- margin-top: 9rem;
3229
- shape-rendering: geometricprecision;
3220
+ .dnb-global-error__links {
3221
+ display: flex;
3222
+ flex-flow: row wrap;
3223
+ justify-content: center;
3224
+ grid-gap: 2rem;
3225
+ gap: 2rem;
3230
3226
  }
3231
- @media screen and (max-width: 90em) {
3232
- .dnb-global-error__gfx {
3233
- margin-top: 8vw;
3234
- margin-top: calc(4vw + 4vh);
3235
- }
3227
+ .dnb-global-error__links .dnb-anchor {
3228
+ font-size: var(--font-size-medium);
3236
3229
  }
3237
3230
  @media screen and (max-width: 40em) {
3238
- .dnb-global-error__gfx {
3239
- margin-top: 0;
3240
- transform: scale(0.8);
3241
- }
3242
- }
3243
- @supports (color: var(--data-width)) {
3244
- .dnb-global-error__gfx {
3245
- width: calc(var(--data-width, 100%) / 16 * 1em);
3246
- height: calc(var(--data-height, 100%) / 16 * 1em);
3231
+ .dnb-global-error__links {
3232
+ flex-direction: column;
3233
+ grid-gap: 1rem;
3234
+ gap: 1rem;
3247
3235
  }
3248
3236
  }
3249
3237
  @media screen and (max-width: 40em) {
3250
- .dnb-global-error .dnb-h--xx-large.dnb-space__top--xx-large.dnb-space__top--x-small {
3251
- margin-top: 0;
3252
- font-size: var(--font-size-x-large);
3238
+ .dnb-global-error h1 {
3239
+ font-size: var(--font-size-large);
3253
3240
  }
3254
3241
  }
3255
3242
 
@@ -3406,8 +3393,9 @@ button .dnb-form-status__text {
3406
3393
  width: 1em;
3407
3394
  height: 1em;
3408
3395
  }
3409
- .dnb-icon img,
3410
- .dnb-icon svg {
3396
+ .dnb-icon img, .dnb-core-style .dnb-icon img,
3397
+ .dnb-icon svg,
3398
+ .dnb-core-style .dnb-icon svg {
3411
3399
  width: inherit;
3412
3400
  height: inherit;
3413
3401
  shape-rendering: geometricprecision;
@@ -3455,9 +3443,12 @@ button .dnb-form-status__text {
3455
3443
  align-items: center;
3456
3444
  justify-content: center;
3457
3445
  }
3458
- h1 .dnb-icon, h2 .dnb-icon, h3 .dnb-icon, h4 .dnb-icon, h5 .dnb-icon, h6 .dnb-icon {
3446
+ h1 > .dnb-icon, h2 > .dnb-icon, h3 > .dnb-icon, h4 > .dnb-icon, h5 > .dnb-icon, h6 > .dnb-icon {
3459
3447
  vertical-align: middle;
3460
3448
  }
3449
+ p > .dnb-icon {
3450
+ vertical-align: inherit;
3451
+ }
3461
3452
  .dnb-icon.dnb-skeleton {
3462
3453
  color: var(--skeleton-color) !important;
3463
3454
  }
@@ -4506,6 +4497,7 @@ html[data-visual-test] .dnb-progress-indicator__bar-transition {
4506
4497
  user-select: none;
4507
4498
  display: flex;
4508
4499
  align-items: center;
4500
+ flex-shrink: 0;
4509
4501
  justify-content: center;
4510
4502
  width: var(--radio-width--medium);
4511
4503
  height: var(--radio-height--medium);
@@ -7562,18 +7554,18 @@ html[data-visual-test] .dnb-tooltip--hide {
7562
7554
  * Utilities
7563
7555
  */
7564
7556
  .dnb-visually-hidden--focusable:not(:focus):not(:focus-within) {
7565
- -webkit-user-select: none;
7566
- user-select: none;
7567
- -webkit-touch-callout: none;
7568
- pointer-events: none;
7569
- position: absolute;
7570
- -webkit-clip-path: inset(50%);
7571
- clip-path: inset(50%);
7572
- max-width: 1px;
7573
- max-height: 1px;
7574
- overflow: hidden;
7575
- white-space: nowrap;
7576
- padding: 0;
7577
- margin: 0;
7578
- border: 0;
7557
+ -webkit-user-select: none !important;
7558
+ user-select: none !important;
7559
+ -webkit-touch-callout: none !important;
7560
+ pointer-events: none !important;
7561
+ position: absolute !important;
7562
+ -webkit-clip-path: inset(50%) !important;
7563
+ clip-path: inset(50%) !important;
7564
+ max-width: 1px !important;
7565
+ max-height: 1px !important;
7566
+ overflow: hidden !important;
7567
+ white-space: nowrap !important;
7568
+ padding: 0 !important;
7569
+ margin: 0 !important;
7570
+ border: 0 !important;
7579
7571
  }