@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
package/CHANGELOG.md CHANGED
@@ -3,325 +3,312 @@
3
3
  All notable changes to @dnb/eufemia will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [10.0.0-beta.7](https://github.com/dnbexperience/eufemia/compare/v10.0.0-beta.6...v10.0.0-beta.7) (2023-05-10)
7
-
8
-
9
- ### :sparkles: Features
10
-
11
- * **Accordion:** export type AccordionIconPosition ([23056cd](https://github.com/dnbexperience/eufemia/commit/23056cdd4f27b8f6ba74a43ad11c346f9ee50369))
12
- * **Button:** export type ButtonIcon ([ad315bf](https://github.com/dnbexperience/eufemia/commit/ad315bf62ce89dfb02af1a62484c1f5ff593672a))
13
-
14
-
15
- ### :memo: Documentation
16
-
17
- * **v10:** adds examples for updating import of boolean props ([b598078](https://github.com/dnbexperience/eufemia/commit/b59807882164ca6136a57237c53d231d8ac11684))
18
-
19
- ## [10.0.0-beta.6](https://github.com/dnbexperience/eufemia/compare/v10.0.0-beta.5...v10.0.0-beta.6) (2023-05-10)
20
-
21
-
22
- ### :memo: Documentation
23
-
24
- * **Portal:** removes Modal's new status ([#2312](https://github.com/dnbexperience/eufemia/issues/2312)) ([38016b6](https://github.com/dnbexperience/eufemia/commit/38016b6b5fb9125e8f8358990849ee986642380f))
25
- * **v10:** add docs for HelpButton's modal_props ([#2314](https://github.com/dnbexperience/eufemia/issues/2314)) ([66132f4](https://github.com/dnbexperience/eufemia/commit/66132f4a1207e860d7ebccd1c7d586d468ac777e))
26
- * **v10:** add example for updating import of properties ([#2313](https://github.com/dnbexperience/eufemia/issues/2313)) ([c31c679](https://github.com/dnbexperience/eufemia/commit/c31c679b1c76cd98ed0cc94b6ee79b3ce7f70f6a))
27
-
28
-
29
- ### :sparkles: Features
30
-
31
- * release of v10.0.0-beta.6 ([61bd05c](https://github.com/dnbexperience/eufemia/commit/61bd05cb9bc43632197811e46dfd8e795ce23bc3))
32
-
33
- ## [10.0.0-beta.5](https://github.com/dnbexperience/eufemia/compare/v10.0.0-beta.4...v10.0.0-beta.5) (2023-05-08)
34
-
35
-
36
- ### :sparkles: Features
37
-
38
- * **Autocomplete:** export AutocompleteData type ([#2299](https://github.com/dnbexperience/eufemia/issues/2299)) ([3d44140](https://github.com/dnbexperience/eufemia/commit/3d441405aba5b0132bc87296e263c4017397b191))
39
- * **Autocomplete:** export AutocompleteOptionsRender type ([#2300](https://github.com/dnbexperience/eufemia/issues/2300)) ([e12241a](https://github.com/dnbexperience/eufemia/commit/e12241a53ec84b1b5b8e1c85bc8ea3770124551a))
40
- * **Button:** sbanken styling ([#2273](https://github.com/dnbexperience/eufemia/issues/2273)) ([a7e6086](https://github.com/dnbexperience/eufemia/commit/a7e60867ce63e76a271a783e1a5ce4ca0a67067e))
41
- * **Dialog:** adds ReactNode as type for texts ([#2294](https://github.com/dnbexperience/eufemia/issues/2294)) ([0e52411](https://github.com/dnbexperience/eufemia/commit/0e524110d4ce8cb1ba5ca0e4ae6cd2399d328b07))
42
- * **Dropdown:** export DropdownData type ([#2298](https://github.com/dnbexperience/eufemia/issues/2298)) ([0950a33](https://github.com/dnbexperience/eufemia/commit/0950a33df797b2d4b3b5a4faa08d857b8894cb87))
43
-
44
-
45
- ### :memo: Documentation
46
-
47
- * **v10:** adds explicit examples for props that's changes type to boolean ([#2292](https://github.com/dnbexperience/eufemia/issues/2292)) ([7fac2d2](https://github.com/dnbexperience/eufemia/commit/7fac2d2118937fffd39fab27dfc5e6fb4044385b))
48
- * **v10:** adds info about removal of closeButtonAttributes ([#2296](https://github.com/dnbexperience/eufemia/issues/2296)) ([9c59caf](https://github.com/dnbexperience/eufemia/commit/9c59caf4a7c6ff31f00cb5e0876bb7713d2fb0dd))
49
- * **v10:** adds info about removal of closeButtonAttributes ([#2296](https://github.com/dnbexperience/eufemia/issues/2296)) ([6b2abd5](https://github.com/dnbexperience/eufemia/commit/6b2abd5fbfceda917dc8c9032e8ffb1bd5e70874))
50
- * **v10:** adds info about replacing white with default ([#2295](https://github.com/dnbexperience/eufemia/issues/2295)) ([1ca276a](https://github.com/dnbexperience/eufemia/commit/1ca276a3784d76724644018c965864ae79bb71e6))
51
- * **v10:** improve docs for EufemiaStyleImporter files ([#2302](https://github.com/dnbexperience/eufemia/issues/2302)) ([9babe64](https://github.com/dnbexperience/eufemia/commit/9babe64384af24bd2f91c246f321bab997d9da55))
52
- * **v10:** minor spelling improvement ([#2301](https://github.com/dnbexperience/eufemia/issues/2301)) ([aa64437](https://github.com/dnbexperience/eufemia/commit/aa64437e4b903198d4ba67545f959cc0aacaf525))
53
- * **v10:** prop change for FormStatus of status to state ([#2293](https://github.com/dnbexperience/eufemia/issues/2293)) ([5a7efa8](https://github.com/dnbexperience/eufemia/commit/5a7efa88693dfd898307becdc445f5649519ba0d))
54
-
55
- ## [10.0.0-beta.4](https://github.com/dnbexperience/eufemia/compare/v10.0.0-beta.3...v10.0.0-beta.4) (2023-05-06)
56
-
57
-
58
- ### :memo: Documentation
59
-
60
- * minor doc improvements ([#2283](https://github.com/dnbexperience/eufemia/issues/2283)) ([9088155](https://github.com/dnbexperience/eufemia/commit/9088155f310c18d05fb284ed24b7768ae401241d))
61
- * **SkipContent:** hide Events tab ([#2282](https://github.com/dnbexperience/eufemia/issues/2282)) ([22565ad](https://github.com/dnbexperience/eufemia/commit/22565ad2e4ddf50b9764de4a9812f4f21bd066ca))
62
- * **StepIndicator:** format Steps Parameters table ([#2284](https://github.com/dnbexperience/eufemia/issues/2284)) ([0d8191a](https://github.com/dnbexperience/eufemia/commit/0d8191a51f615a23229df660378eb9d876a7a404))
63
-
64
-
65
- ### :bug: Bug Fixes
66
-
67
- * **IconPrimary:** correct ts file extension usage ([#2289](https://github.com/dnbexperience/eufemia/issues/2289)) ([5a72532](https://github.com/dnbexperience/eufemia/commit/5a725320ccd7254f025af1216cfa067a32613f2a))
68
-
69
- ## [10.0.0-beta.3](https://github.com/dnbexperience/eufemia/compare/v10.0.0-beta.2...v10.0.0-beta.3) (2023-05-05)
6
+ ## [10.0.0](https://github.com/dnbexperience/eufemia/compare/v9.47.6...v10.0.0) (2023-06-01)
70
7
 
71
8
 
72
9
  ### ⚠ BREAKING CHANGES
73
10
 
74
11
  * **Anchor:** Anchor was moved form `/elements` to `/components`
75
12
  * **StylisPlugin:** Stylis plugin, `import stylisPlugin from '@dnb/eufemia/style/stylis'`, has been removed.
76
- * - The package `dnb-theme-ui` was renamed to `dnb-theme-basis`.
77
- - The package `dnb-ui-components` was renamed and moved inside a theme `/style/themes/theme-ui/dnb-theme-components.*`.
78
- - `dnb-ui-tags` was renamed and moved form `/style/dnb-ui-tags.*` to `/style/themes/theme-ui/dnb-theme-tags.*`.
13
+ * - The package dnb-theme-ui was renamed to ui-theme-basis.
14
+ - The package dnb-ui-components was renamed and moved inside a theme /style/themes/theme-ui/ui-theme-components.*.
15
+ - dnb-ui-tags was renamed and moved form /style/dnb-ui-tags.* to /style/themes/theme-ui/ui-theme-tags.*.
79
16
  * SCSS mixin was renamed from `fakeFocus` to `focusRing` as well as `removeFakeFocus` to `removeFocusRing`.
80
17
  *
18
+ * - CSS Packages such as `dnb-ui-basis` and `dnb-ui-core` do not contain the fonts anymore. Fonts are now only a part of a theme file, such as: `/style/themes/theme-ui/dnb-theme-ui.*`.
19
+ - The CSS package `dnb-ui-fonts` is moved inside a theme folder `/themes/theme-ui`
20
+ * The DNB font is moved inside a subfolder in /assets/fonts/dnb/...
21
+ * **Modal:** - Modal: Remove deprecated `mode` prop – it will default to `custom` mode. Use rather the `Dialog` or the `Drawer` component.
22
+ * Remove support for Web Components and Vue
23
+ * re-define Media Query Breakpoints and layout width
24
+ * Read the docs about migration: https://eufemia.dnb.no/uilib/about-the-lib/releases/eufemia/v10-info
81
25
 
82
- ### :barber: Style Changes
83
-
84
- * move :root vars into their component itself ([#2102](https://github.com/dnbexperience/eufemia/issues/2102)) ([7dfc1fb](https://github.com/dnbexperience/eufemia/commit/7dfc1fb2f136c4d9be80317187593f6239e9aed4))
26
+ * remove web components and vue support (#1946) ([ab7379e](https://github.com/dnbexperience/eufemia/commit/ab7379e44eca7649c14512b2e74e34bd04123abc)), closes [#1946](https://github.com/dnbexperience/eufemia/issues/1946)
27
+ * re-define Media Query Breakpoints and layout width (#1373) ([e0a11ce](https://github.com/dnbexperience/eufemia/commit/e0a11ce472a1802e5df7edc104f906385bb586ac)), closes [#1373](https://github.com/dnbexperience/eufemia/issues/1373)
28
+ * v10 ([b7d6348](https://github.com/dnbexperience/eufemia/commit/b7d63488f970c424a42f8a7ca68fe27a654727c8))
85
29
 
86
30
 
87
- ### :memo: Documentation
31
+ ### :barber: Style Changes
88
32
 
89
- * add docs about how to maintain theming ([#2097](https://github.com/dnbexperience/eufemia/issues/2097)) ([b8f3856](https://github.com/dnbexperience/eufemia/commit/b8f3856a949d7bd9e24a42335c82e5363e6f5a26))
90
- * add link to new Payment Card Figma file ([#2117](https://github.com/dnbexperience/eufemia/issues/2117)) ([a841699](https://github.com/dnbexperience/eufemia/commit/a841699243c03cc7e44fbcec44224c113f330399))
91
- * add new styles flow diagram ([201611b](https://github.com/dnbexperience/eufemia/commit/201611b0ba74933d03d321fa3b1169cee66a347c))
92
- * adds a dot to quick guide - designers ([#2157](https://github.com/dnbexperience/eufemia/issues/2157)) ([44f6852](https://github.com/dnbexperience/eufemia/commit/44f6852c6f468a2a8782b26c8a2cd32d537b25b8))
93
- * **Anchor:** fix console warning when using class ([#2125](https://github.com/dnbexperience/eufemia/issues/2125)) ([e8fcd06](https://github.com/dnbexperience/eufemia/commit/e8fcd06ab9d22f2f00f4b1082e62547dafbf9e67))
94
- * **Autocomplete:** minor spelling improvements ([#2197](https://github.com/dnbexperience/eufemia/issues/2197)) ([b464ab1](https://github.com/dnbexperience/eufemia/commit/b464ab111b9c23fafb2ad8a51dea677fff4cd865))
95
- * **Autocomplete:** refactor jsx examples to tsx ([#2198](https://github.com/dnbexperience/eufemia/issues/2198)) ([0951682](https://github.com/dnbexperience/eufemia/commit/0951682bacbf83eb22004ac4c23a0927bc53e0e3))
96
- * **Autocomplete:** update docs about the debounce method ([#2138](https://github.com/dnbexperience/eufemia/issues/2138)) ([119c366](https://github.com/dnbexperience/eufemia/commit/119c3664692ef5fa329bfb143ff13aa84500fa22))
97
- * **Best Practices:** adds a dot ([#2151](https://github.com/dnbexperience/eufemia/issues/2151)) ([629b74f](https://github.com/dnbexperience/eufemia/commit/629b74f7c93f7d1c6db4d8db359abf2b29c787d9))
98
- * **Best Practices:** adds links to children pages ([#2161](https://github.com/dnbexperience/eufemia/issues/2161)) ([211422e](https://github.com/dnbexperience/eufemia/commit/211422e9b275e671b196d6fc2e2933bf58591eda))
99
- * capitalize component names in descriptions ([#2162](https://github.com/dnbexperience/eufemia/issues/2162)) ([b96a2f2](https://github.com/dnbexperience/eufemia/commit/b96a2f2d91b37baf798ae4d6df44c63ec50a98df))
100
- * **ColorsTable:** fixes color and hover effect ([#2122](https://github.com/dnbexperience/eufemia/issues/2122)) ([904ba50](https://github.com/dnbexperience/eufemia/commit/904ba50df4bf9fdc0a898bcb2d32645c8ddb6651))
101
- * crate main doc for how to deal with brand ([#2100](https://github.com/dnbexperience/eufemia/issues/2100)) ([0144b5c](https://github.com/dnbexperience/eufemia/commit/0144b5cd7da38f683768ab04e71a813cf817622c))
102
- * **CSS Styles:** fix console warning when using class ([#2127](https://github.com/dnbexperience/eufemia/issues/2127)) ([c1d40b3](https://github.com/dnbexperience/eufemia/commit/c1d40b30f8a0bd1d6d09f59a81050bd3baa71d63))
103
- * **Customization:** adds link to provider/context ([#2160](https://github.com/dnbexperience/eufemia/issues/2160)) ([2da2eae](https://github.com/dnbexperience/eufemia/commit/2da2eaedd7481af8ba635c7e99a22895b7515b39))
104
- * **DatePicker:** refactor jsx examples to tsx ([#2204](https://github.com/dnbexperience/eufemia/issues/2204)) ([853cea4](https://github.com/dnbexperience/eufemia/commit/853cea44ba08371669cc295c22b7461fbf8e953b))
105
- * **Demo Apps:** fix console warning when using class ([#2126](https://github.com/dnbexperience/eufemia/issues/2126)) ([a800b78](https://github.com/dnbexperience/eufemia/commit/a800b78cfb18179a86d3bd73d23e94d638cd0a60))
106
- * **DrawerList:** prevents change of direction when scrolling ([#2233](https://github.com/dnbexperience/eufemia/issues/2233)) ([757cb60](https://github.com/dnbexperience/eufemia/commit/757cb60289b203861e59e71ee68e55ec83027b66))
107
- * **DrawerList:** refactor jsx examples to tsx ([#2209](https://github.com/dnbexperience/eufemia/issues/2209)) ([168cf9a](https://github.com/dnbexperience/eufemia/commit/168cf9a8f7b1cbc51652920077ab35bb85d4105a))
108
- * **DrawerList:** renamse fixedPosition to fixed_position ([#2093](https://github.com/dnbexperience/eufemia/issues/2093)) ([27c3a2d](https://github.com/dnbexperience/eufemia/commit/27c3a2d6efe1ac6958e87177a0d44a18e1644f52))
109
- * **Font Weights:** fix console warning when using class ([#2132](https://github.com/dnbexperience/eufemia/issues/2132)) ([63f3c1d](https://github.com/dnbexperience/eufemia/commit/63f3c1daf81b4c8b43b82b10f5ecc7a3e3f3c548))
110
- * **FormLabel:** improve description of vertical prop ([#2098](https://github.com/dnbexperience/eufemia/issues/2098)) ([7f0caee](https://github.com/dnbexperience/eufemia/commit/7f0caeedac2f631539d55be64850b307415a5b6e))
111
- * **FormRow:** refactor jsx examples to tsx ([#2219](https://github.com/dnbexperience/eufemia/issues/2219)) ([06b5406](https://github.com/dnbexperience/eufemia/commit/06b54068155e49c8959f880f2005b68e6ad2b685))
112
- * **FormSet:** refactor jsx examples to tsx ([#2208](https://github.com/dnbexperience/eufemia/issues/2208)) ([76d2c30](https://github.com/dnbexperience/eufemia/commit/76d2c30a6f5b2129be886f3238c3f4be21fe26d0))
113
- * **Fragments:** minor docs improvement ([#2232](https://github.com/dnbexperience/eufemia/issues/2232)) ([80a964c](https://github.com/dnbexperience/eufemia/commit/80a964c48ed96b1998b25fd14923c7345779548d))
114
- * **Front Page:** minor text improvements ([#2139](https://github.com/dnbexperience/eufemia/issues/2139)) ([34863b9](https://github.com/dnbexperience/eufemia/commit/34863b9c35ddbd2bda805dd4b2427f169a0e38ed))
115
- * **GlobalStatus:** refactor jsx examples to tsx ([#2202](https://github.com/dnbexperience/eufemia/issues/2202)) ([71bca1c](https://github.com/dnbexperience/eufemia/commit/71bca1cb1f36d8891da474e96fed3d1d1538fdb1))
116
- * **Heading:** refactor jsx examples to tsx ([#2205](https://github.com/dnbexperience/eufemia/issues/2205)) ([44e2a39](https://github.com/dnbexperience/eufemia/commit/44e2a39d1d36c49cb6d0fbba9c827e53ad9364ac))
117
- * **Helpers:** Adds info about dnb-unstyled-list in info page ([#2171](https://github.com/dnbexperience/eufemia/issues/2171)) ([da81526](https://github.com/dnbexperience/eufemia/commit/da81526679be52aaba9d21fe40c6f662f5988d10))
118
- * **HTML Elements:** move mdx of unstyled and unsupported to elements.mdx ([#2154](https://github.com/dnbexperience/eufemia/issues/2154)) ([90d5a3a](https://github.com/dnbexperience/eufemia/commit/90d5a3aa43575c064f107a83bf2c897f5b578a70))
119
- * **Icon Details:** fix console warning when using class ([#2128](https://github.com/dnbexperience/eufemia/issues/2128)) ([3698816](https://github.com/dnbexperience/eufemia/commit/3698816f7adf3b9bfcfcb7012a2d75be4b342c60))
120
- * **Icons:** link to v10 docs ([#2182](https://github.com/dnbexperience/eufemia/issues/2182)) ([7eaf2d1](https://github.com/dnbexperience/eufemia/commit/7eaf2d117cd1276958eb55699cf05e987cbcc734))
121
- * **InputMasked:** refactor jsx examples to tsx ([#2207](https://github.com/dnbexperience/eufemia/issues/2207)) ([ffb5ad0](https://github.com/dnbexperience/eufemia/commit/ffb5ad07ff52d36761551140b00622d622d5472c))
122
- * **Logos:** fix console warning in console ([#2123](https://github.com/dnbexperience/eufemia/issues/2123)) ([979e8d0](https://github.com/dnbexperience/eufemia/commit/979e8d0d3b3e21d33e4092c4fc5d2e90b9fd7e9a))
123
- * **Modal:** refactor jsx examples to tsx ([#2218](https://github.com/dnbexperience/eufemia/issues/2218)) ([278b24b](https://github.com/dnbexperience/eufemia/commit/278b24bddd232264650ea5424258ba7f2e0a90dd))
124
- * **Naming conventions:** fix console warning when using class ([#2129](https://github.com/dnbexperience/eufemia/issues/2129)) ([da19575](https://github.com/dnbexperience/eufemia/commit/da195756363ea01f64b2cd2ce935333badf55b62))
125
- * remove docs about CSS vars polyfills ([#2145](https://github.com/dnbexperience/eufemia/issues/2145)) ([766968e](https://github.com/dnbexperience/eufemia/commit/766968e12a1df837c675454aa435dcce3ec87396))
126
- * remove docs about importing from @dnb/eufemia/elements ([#2173](https://github.com/dnbexperience/eufemia/issues/2173)) ([21678c3](https://github.com/dnbexperience/eufemia/commit/21678c3c4b589195c49468b46e71336a84d79c8b))
127
- * **ScrollView:** controll -> control ([#2225](https://github.com/dnbexperience/eufemia/issues/2225)) ([31fff2c](https://github.com/dnbexperience/eufemia/commit/31fff2c6e31fb881a8180750085b3ebf7bbab9a6))
128
- * **ScrollView:** refactor jsx examples to tsx ([#2210](https://github.com/dnbexperience/eufemia/issues/2210)) ([5787b12](https://github.com/dnbexperience/eufemia/commit/5787b12670999c953d7bcf2349df7dc316eb96c3))
129
- * **ScrollView:** sets Description as header in docs ([#2168](https://github.com/dnbexperience/eufemia/issues/2168)) ([d998f4f](https://github.com/dnbexperience/eufemia/commit/d998f4f795402129175aa8056982c298360a58b2))
130
- * **Skeleton:** refactor jsx examples to tsx ([#2203](https://github.com/dnbexperience/eufemia/issues/2203)) ([2bfbaef](https://github.com/dnbexperience/eufemia/commit/2bfbaefa8a2920c9f3a017d96bfc087a707b2362))
131
- * **SkipContent:** refactor jsx examples to tsx ([#2211](https://github.com/dnbexperience/eufemia/issues/2211)) ([1f9e2f4](https://github.com/dnbexperience/eufemia/commit/1f9e2f4365a8dec3db1ecf1b18a4d6bb06804954))
132
- * **Space:** refactor jsx examples to tsx ([#2199](https://github.com/dnbexperience/eufemia/issues/2199)) ([d369ab5](https://github.com/dnbexperience/eufemia/commit/d369ab52b4667fc4706e9672a81c6baaeadaeaa1))
133
- * **Space:** refactor jsx properties to tsx ([#2216](https://github.com/dnbexperience/eufemia/issues/2216)) ([bc88149](https://github.com/dnbexperience/eufemia/commit/bc88149e84c4056cf8f51c07fae0a0c4b491af73))
134
- * **Table:** refactor jsx examples to tsx ([#2206](https://github.com/dnbexperience/eufemia/issues/2206)) ([97bb44d](https://github.com/dnbexperience/eufemia/commit/97bb44dfd038f66fd3c76c7cea4b464e9bf025c7))
135
- * **Timeline:** fix broken link to example ([#2241](https://github.com/dnbexperience/eufemia/issues/2241)) ([202e7eb](https://github.com/dnbexperience/eufemia/commit/202e7eb2a0bebc5895ab62356b79ebfd57c048a6))
136
- * **ToggleButton:** removes outdated label_position docs ([#2141](https://github.com/dnbexperience/eufemia/issues/2141)) ([c3f168b](https://github.com/dnbexperience/eufemia/commit/c3f168b0f81d76485ff2c308450711abfeeed7ba))
137
- * **TypeScript:** remove outdated docs ([#2124](https://github.com/dnbexperience/eufemia/issues/2124)) ([0f9f62f](https://github.com/dnbexperience/eufemia/commit/0f9f62f1234113ba042acd6f63db9d69638042ec))
138
- * **Typography:** fix console warning when using class ([#2133](https://github.com/dnbexperience/eufemia/issues/2133)) ([5551d92](https://github.com/dnbexperience/eufemia/commit/5551d92d8039dbe1b2619fa7b444e47e4717dc72))
139
- * **Typography:** hast -> has ([#2221](https://github.com/dnbexperience/eufemia/issues/2221)) ([de710b2](https://github.com/dnbexperience/eufemia/commit/de710b277f3972a62bae37df5d39ee635ff97efd))
33
+ * **Button:** smaller tertiary button focus effect for Sbanken ([#2319](https://github.com/dnbexperience/eufemia/issues/2319)) ([aa3ab7d](https://github.com/dnbexperience/eufemia/commit/aa3ab7d5c80ab014a4a191599756b7f1a735ab17))
34
+ * move :root vars into their component itself ([#2102](https://github.com/dnbexperience/eufemia/issues/2102)) ([60a53fe](https://github.com/dnbexperience/eufemia/commit/60a53fe8b336b3f141ffe016d0f4e84db5c23403))
140
35
 
141
36
 
142
37
  ### :bug: Bug Fixes
143
38
 
144
- * **Button:** align large icon size to be same as in Figma ([#2239](https://github.com/dnbexperience/eufemia/issues/2239)) ([2f9a287](https://github.com/dnbexperience/eufemia/commit/2f9a2876199c754c1ab0aa1b1cc78ea1db168359))
145
- * **Button:** support for FormRow and FormSet ([#2147](https://github.com/dnbexperience/eufemia/issues/2147)) ([59f0a22](https://github.com/dnbexperience/eufemia/commit/59f0a2244021b7ebd78192f7b5e2d657bd3021aa))
146
- * **DatePicker:** fix text prop for submit and cancel buttons ([#2254](https://github.com/dnbexperience/eufemia/issues/2254)) ([8633cd1](https://github.com/dnbexperience/eufemia/commit/8633cd14c04ed21092a34b70bd026ec6ef75587c))
147
- * **Datepicker:** reset and cancel button gap ([f3d0579](https://github.com/dnbexperience/eufemia/commit/f3d057908d9767e66d1196ce789be0bc81e0e7f8))
148
- * **DatePicker:** shortcut buttons ([#2266](https://github.com/dnbexperience/eufemia/issues/2266)) ([5b95305](https://github.com/dnbexperience/eufemia/commit/5b9530551f19ef47bd7a7edd5d5105667060a564))
149
- * **InputMasked:** on custom mask avoid interaction stall after focus ([#2269](https://github.com/dnbexperience/eufemia/issues/2269)) ([02caccb](https://github.com/dnbexperience/eufemia/commit/02caccbe36359827b776b76450aaf63049e9e5eb))
150
- * **NumberFormat:** hide screen reader only text from being copied as HTML ([#2240](https://github.com/dnbexperience/eufemia/issues/2240)) ([f8fe6c3](https://github.com/dnbexperience/eufemia/commit/f8fe6c36af3aa4d09b6b04f6be13491dbe231e9a))
151
- * remove FormRow context support from components not using FormRow ([#2103](https://github.com/dnbexperience/eufemia/issues/2103)) ([3a39134](https://github.com/dnbexperience/eufemia/commit/3a39134c883e70daf6ef374c85ea8ddbce317776))
152
- * **ToggleButton:** fixes error when pressing enter ([#2183](https://github.com/dnbexperience/eufemia/issues/2183)) ([37b2e45](https://github.com/dnbexperience/eufemia/commit/37b2e45d33dc7d1bdac75712accdd56d7c4f72a3))
153
-
154
-
155
- ### :sparkles: Features
156
-
157
- * add shared Theme component and useTheme hook ([#2112](https://github.com/dnbexperience/eufemia/issues/2112)) ([10a5f5e](https://github.com/dnbexperience/eufemia/commit/10a5f5e20bce4e96b0c0ac1abfdb96bb045646a1))
158
- * **Anchor:** create styles for Sbanken ([#2250](https://github.com/dnbexperience/eufemia/issues/2250)) ([330f97e](https://github.com/dnbexperience/eufemia/commit/330f97eea5c522ee55e8e6ad1b995f4a40bb80d6))
159
- * **Anchor:** move from elements to components ([#2275](https://github.com/dnbexperience/eufemia/issues/2275)) ([c6261cd](https://github.com/dnbexperience/eufemia/commit/c6261cd4c047055b1dca0e80d256edf3f5b1086d))
160
- * **Icons:** add new icons `handshake`, `heavy_equipment`, `id_card`, `investment_account`, `keyfigures`, `portfolio_analytics`, `sea_transport`, `shield_lock`, `file_zip`, `bus`, `building_shopping`, `handshake`, `heavy_equipment` ([#2178](https://github.com/dnbexperience/eufemia/issues/2178)) ([80d4b9d](https://github.com/dnbexperience/eufemia/commit/80d4b9d9924681bffbe7d445931bf1782fcc7c20))
161
- * **Icons:** move all icons assets to `dnb` subfolder: assets/icons/dnb/*.svg ([#2187](https://github.com/dnbexperience/eufemia/issues/2187)) ([5513ca8](https://github.com/dnbexperience/eufemia/commit/5513ca884aa88e248feef4bb3be9b41ebeb3114b))
162
- * **Icons:** remove iOS (PDF) icons library support ([#2170](https://github.com/dnbexperience/eufemia/issues/2170)) ([c238f6d](https://github.com/dnbexperience/eufemia/commit/c238f6d408b01065dec9fa3136418e9970ac718d))
163
- * **Logo:** Add brand and variant params for Sbanken logo ([#2271](https://github.com/dnbexperience/eufemia/issues/2271)) ([e850b25](https://github.com/dnbexperience/eufemia/commit/e850b25a988293c0007127c19a95f5c87156ee0c))
164
- * move `dnb-ui-tags` to themes ([#2140](https://github.com/dnbexperience/eufemia/issues/2140)) ([0da5214](https://github.com/dnbexperience/eufemia/commit/0da5214b49e5332fa2437c75ffb026081b6869d1))
165
- * move browser assets to dnb subfolder ([#2083](https://github.com/dnbexperience/eufemia/issues/2083)) ([005c123](https://github.com/dnbexperience/eufemia/commit/005c1239b72e4cd58ac41a8283d8f7c6be69ab2a))
166
- * move DNB icons to subfolder (with v9 compatibility) ([#2200](https://github.com/dnbexperience/eufemia/issues/2200)) ([94381b4](https://github.com/dnbexperience/eufemia/commit/94381b449ec5ff19cb98163858a251802c2676ca))
167
- * move dnb image assets to own subfolder ([#2099](https://github.com/dnbexperience/eufemia/issues/2099)) ([213f6c2](https://github.com/dnbexperience/eufemia/commit/213f6c27234b9b57dd45f9b8b1d8cc007c92251a))
168
- * **PaymentCard:** new card designs & new products ([#2264](https://github.com/dnbexperience/eufemia/issues/2264)) ([c7f9c67](https://github.com/dnbexperience/eufemia/commit/c7f9c670069646cf7f6a81d8999d6b23c4993d26))
169
- * **PaymentCard:** rename type Metalic to Metallic ([#2226](https://github.com/dnbexperience/eufemia/issues/2226)) ([cc4498b](https://github.com/dnbexperience/eufemia/commit/cc4498b7f37887d3c83a81a5a865554e62063de4))
170
- * rename SCSS mixin `fakeFocus` to `focusRing` ([#2110](https://github.com/dnbexperience/eufemia/issues/2110)) ([8c27aeb](https://github.com/dnbexperience/eufemia/commit/8c27aebc7e940697babe5918ea072a3140155f0a))
171
- * simplify CSS packages/themes structure ([f44fc0b](https://github.com/dnbexperience/eufemia/commit/f44fc0bd8f9a9c43297d8fa65a512ab5da2930e4))
172
- * **Skeleton:** removes style_type prop ([#2095](https://github.com/dnbexperience/eufemia/issues/2095)) ([c7cdadb](https://github.com/dnbexperience/eufemia/commit/c7cdadb65b8258596ba0dfee3e2831320a822067))
173
- * **StylisPlugin:** removes stylis plugin ([#2156](https://github.com/dnbexperience/eufemia/issues/2156)) ([fa42b39](https://github.com/dnbexperience/eufemia/commit/fa42b39934392fe9d4c1f003f2e690dcfc338d91))
174
- * **Theming:** add `VisibilityByTheme` as a shared component ([#2280](https://github.com/dnbexperience/eufemia/issues/2280)) ([49b3f9a](https://github.com/dnbexperience/eufemia/commit/49b3f9af2f166604c5a24d72a8d4186862b111ba))
175
- * **Typography:** add `--line-height-lead` property ([#2237](https://github.com/dnbexperience/eufemia/issues/2237)) ([bbd49ce](https://github.com/dnbexperience/eufemia/commit/bbd49cecd9c71b0414df632ddfb2fce4eea6cb20))
176
- * **Typography:** remove small prop from paragraph (p) ([#2234](https://github.com/dnbexperience/eufemia/issues/2234)) ([b8cf2de](https://github.com/dnbexperience/eufemia/commit/b8cf2de2afed2b028ac86e9703818de3cfa2da76))
177
- * use CSS vars in focus-ring (`fakeFocus`) ([#2109](https://github.com/dnbexperience/eufemia/issues/2109)) ([21defb5](https://github.com/dnbexperience/eufemia/commit/21defb515a72cd1ed8287f34f8ad3e8095353f00))
178
-
179
- ## [10.0.0-beta.2](https://github.com/dnbexperience/eufemia/compare/v10.0.0-beta.1...v10.0.0-beta.2) (2023-03-10)
180
-
181
-
182
- ### BREAKING CHANGES
39
+ * **Accordion:** enhance TypeScript type definitions ([035c0fb](https://github.com/dnbexperience/eufemia/commit/035c0fb43016950479c1c70bed06f861d4d730e1))
40
+ * **Anchor:** comments Anchor's inner_ref usage ([#1919](https://github.com/dnbexperience/eufemia/issues/1919)) ([b3623e9](https://github.com/dnbexperience/eufemia/commit/b3623e970a76ec057a49c34ba250a173e5c343a2))
41
+ * **Anchor:** ensure id is passed down ([#2016](https://github.com/dnbexperience/eufemia/issues/2016)) ([e8efd09](https://github.com/dnbexperience/eufemia/commit/e8efd09940440aa081a1cf7d4f6f5ace925b18aa))
42
+ * **Autocomplete:** add HorizontalItem TypeScript type definition ([f97f6ea](https://github.com/dnbexperience/eufemia/commit/f97f6eabb0e61de0513be7c40d2afdee7b000541))
43
+ * **Badge:** enhance semantic / accessibility and inherit skeleton from provider ([#1967](https://github.com/dnbexperience/eufemia/issues/1967)) ([42e20a7](https://github.com/dnbexperience/eufemia/commit/42e20a7f24c39a1d6f35ad5a7acaa56959f376b6))
44
+ * **Button:** align large icon size to be same as in Figma ([#2239](https://github.com/dnbexperience/eufemia/issues/2239)) ([33e41e7](https://github.com/dnbexperience/eufemia/commit/33e41e743d720a862698031e2653eb88b8b12477))
45
+ * **Button:** fix icon alignment issue when left positioned ([#2371](https://github.com/dnbexperience/eufemia/issues/2371)) ([9250f15](https://github.com/dnbexperience/eufemia/commit/9250f1512632547ccb5fac1815706ee1ead03fad))
46
+ * **Button:** remove left and right padding of tertiary button ([88bec0c](https://github.com/dnbexperience/eufemia/commit/88bec0c722e0cc190eefdc471ab0fd1e898b09d4))
47
+ * **DatePicker:** fix text prop for submit and cancel buttons ([#2254](https://github.com/dnbexperience/eufemia/issues/2254)) ([b5f1bfa](https://github.com/dnbexperience/eufemia/commit/b5f1bfae6838930cd301463cd7ed10abee2cdcdc))
48
+ * **DatePicker:** make focus handling on input work on second click ([#2039](https://github.com/dnbexperience/eufemia/issues/2039)) ([7a66806](https://github.com/dnbexperience/eufemia/commit/7a668065dedff86f3acc524ec1f4c820cd74bb61))
49
+ * **Datepicker:** reset and cancel button gap ([6056009](https://github.com/dnbexperience/eufemia/commit/6056009eb8330698430e177d5448329f5dc05d76))
50
+ * **DatePicker:** shortcut buttons ([#2266](https://github.com/dnbexperience/eufemia/issues/2266)) ([eb79f77](https://github.com/dnbexperience/eufemia/commit/eb79f779d766db3acf286b3cb3fa3c06f6d01513))
51
+ * **Dialog:** make action buttons responsive ([#2373](https://github.com/dnbexperience/eufemia/issues/2373)) ([3e1f146](https://github.com/dnbexperience/eufemia/commit/3e1f14632905709164ed141aa88a60f0fb5c7f6b))
52
+ * **Dl:** ensure horizontal wrap no matter what available space ([#1965](https://github.com/dnbexperience/eufemia/issues/1965)) ([8e5729a](https://github.com/dnbexperience/eufemia/commit/8e5729ab4f3683d6dd72242c5f09f8ef617fc483))
53
+ * **DrawerList:** enhance TypeScript definition types ([5f7fd54](https://github.com/dnbexperience/eufemia/commit/5f7fd54cf0dd1c945ac500a0474fa6943581f179))
54
+ * **Dropdown:** enhance TypeScript definition types ([514f6fa](https://github.com/dnbexperience/eufemia/commit/514f6fac7fc2b27136a66285e203ac0f2c86ece9))
55
+ * enhance scrollbar appearance ([#2046](https://github.com/dnbexperience/eufemia/issues/2046)) ([237331a](https://github.com/dnbexperience/eufemia/commit/237331a22db4ea964bf0c13a2916f34be24035d4))
56
+ * fix breadcumb alignment after tertiary button changes ([9f4a9a6](https://github.com/dnbexperience/eufemia/commit/9f4a9a655b57d8d00a4104a23e04ad78a17c2829))
57
+ * fix pagination alignment after tertiary button changes ([037a391](https://github.com/dnbexperience/eufemia/commit/037a391d7f70f82ee338e12b9f7147b657094d36))
58
+ * **GlobalStatus:** enhance TypeScript definition types ([dc58836](https://github.com/dnbexperience/eufemia/commit/dc58836b1405a1044847d134468b2daecfd35e30))
59
+ * **Heading:** enhance TypeScript definition types ([c3c736b](https://github.com/dnbexperience/eufemia/commit/c3c736b37d535f0cc5d9c48a1790b54a20749fb6))
60
+ * **Icon:** enhance alignment when used in paragraphs ([#2368](https://github.com/dnbexperience/eufemia/issues/2368)) ([78cc1e4](https://github.com/dnbexperience/eufemia/commit/78cc1e413b899decae168772f620172d66fd09e9))
61
+ * **IconPrimary:** correct ts file extension usage ([#2289](https://github.com/dnbexperience/eufemia/issues/2289)) ([ad485bc](https://github.com/dnbexperience/eufemia/commit/ad485bc28254eba15594ad4cc06844edcb34ab1e))
62
+ * **InfoCard:** enhance accessibility + set max width of 60ch ([#1977](https://github.com/dnbexperience/eufemia/issues/1977)) ([e2075f3](https://github.com/dnbexperience/eufemia/commit/e2075f3e7c3d563c8c2dafb042a3eca93fea869a))
63
+ * **InputMasked:** expose inner_ref input element when useRef is used ([#2042](https://github.com/dnbexperience/eufemia/issues/2042)) ([b52bbe0](https://github.com/dnbexperience/eufemia/commit/b52bbe03255a0e025c06058c6394539e7afdddc3))
64
+ * **InputMasked:** fix integerLimit issue when combined with decimals ([#2338](https://github.com/dnbexperience/eufemia/issues/2338)) ([04c30e9](https://github.com/dnbexperience/eufemia/commit/04c30e9064907b6f6d34d6ce5ac63a20e8a6e2de))
65
+ * **InputMasked:** on custom mask avoid interaction stall after focus ([#2269](https://github.com/dnbexperience/eufemia/issues/2269)) ([aa0300f](https://github.com/dnbexperience/eufemia/commit/aa0300ff3d7685fc36f7fa5aea5856969582e311))
66
+ * make docs/portal Windows compatible by properly handle backslashes and newlines ([#2038](https://github.com/dnbexperience/eufemia/issues/2038)) ([1196819](https://github.com/dnbexperience/eufemia/commit/11968199a050ca9221dca8fe6848319ac87aa371))
67
+ * **MediaQuery:** enhance TypeScript types ([d93bd54](https://github.com/dnbexperience/eufemia/commit/d93bd543335fe2d5c99ba26351a50dcae36c9e31))
68
+ * **Modal:** make children accept function with close method in parameters ([#2015](https://github.com/dnbexperience/eufemia/issues/2015)) ([bacc1f1](https://github.com/dnbexperience/eufemia/commit/bacc1f15308ec0601b8f6e609994c0a154e2e024))
69
+ * **NumberFormat:** fix tooltip theme inheritance ([#2354](https://github.com/dnbexperience/eufemia/issues/2354)) ([ddffa58](https://github.com/dnbexperience/eufemia/commit/ddffa58c6873ef26dffdb9e89c190444285a567b))
70
+ * **NumberFormat:** hide screen reader only text from being copied as HTML ([#2240](https://github.com/dnbexperience/eufemia/issues/2240)) ([26b6039](https://github.com/dnbexperience/eufemia/commit/26b6039d2f2a5419da13ba6b37411a7bbd2ea69b))
71
+ * omit showing Tooltip after Dialog or Drawer got closed ([#2375](https://github.com/dnbexperience/eufemia/issues/2375)) ([1c41dfe](https://github.com/dnbexperience/eufemia/commit/1c41dfe1da4b9270dd22aba84f30a6c27edd953c))
72
+ * **Pagination:** enhance Pagination and InfinityScroller TypeScript definitions ([5a7de9d](https://github.com/dnbexperience/eufemia/commit/5a7de9dd0aff0f8548eb4257c3b98753a8e97be8))
73
+ * **Pagination:** fix hover style state after click to be emerald-green ([#2032](https://github.com/dnbexperience/eufemia/issues/2032)) ([2c399e8](https://github.com/dnbexperience/eufemia/commit/2c399e87459a17e4455bcfc50924c360bd1534d7))
74
+ * remove `maintained node versions` from .browserslistrc ([#1917](https://github.com/dnbexperience/eufemia/issues/1917)) ([3e9b0d8](https://github.com/dnbexperience/eufemia/commit/3e9b0d8928da4c4ee9c6a3c08de63dac3228b5e0)), closes [#1912](https://github.com/dnbexperience/eufemia/issues/1912)
75
+ * remove FormRow context support from /elements ([#2031](https://github.com/dnbexperience/eufemia/issues/2031)) ([6560a80](https://github.com/dnbexperience/eufemia/commit/6560a80ebc2923a8eb9f239046b058790bb4fa73))
76
+ * **ScrollView:** avoid usage of useLayoutEffect during SSR ([#2012](https://github.com/dnbexperience/eufemia/issues/2012)) ([6246afc](https://github.com/dnbexperience/eufemia/commit/6246afc2818f7182619c50ac825761cc3ce9eed3))
77
+ * **Skeleton:** add Skeleton.Exclude types ([b9512ff](https://github.com/dnbexperience/eufemia/commit/b9512ffb5657c0042cf15dcd9be94318d90740c3))
78
+ * **StepIndicator:** fix TypeScript spacing types ([c304d47](https://github.com/dnbexperience/eufemia/commit/c304d47dae56a154239a48858ea923c7450b4ff5))
79
+ * **Timeline:** use ordered list element ([#1962](https://github.com/dnbexperience/eufemia/issues/1962)) ([bfc3004](https://github.com/dnbexperience/eufemia/commit/bfc3004209babb1040d378b1fb09032ce6c501c0))
80
+ * **ToggleButton:** fixes error when pressing enter ([#2183](https://github.com/dnbexperience/eufemia/issues/2183)) ([da95ee4](https://github.com/dnbexperience/eufemia/commit/da95ee4057d9eca5176673b9053ee3bee2508b66))
81
+ * upgrade Stylelint from v13 to v15 ([#1995](https://github.com/dnbexperience/eufemia/issues/1995)) ([b4ca07c](https://github.com/dnbexperience/eufemia/commit/b4ca07c12653294ad8695f33eb4d07c11eb6dd62))
82
+ * **VisuallyHidden:** force properties to overcome unwanted CSS specificity ([#2366](https://github.com/dnbexperience/eufemia/issues/2366)) ([ed088de](https://github.com/dnbexperience/eufemia/commit/ed088debc0aecc40040c07080914ff4ec9cb84b0))
183
83
 
184
- * - CSS Packages such as `dnb-ui-basis` and `dnb-ui-core` do not contain the fonts anymore. Fonts are now only a part of a theme file, such as: `/style/themes/theme-ui/dnb-theme-ui.*`.
185
- - The CSS package `dnb-ui-fonts` is moved inside a theme folder `/themes/theme-ui`
186
- * The DNB font is moved inside a subfolder in /assets/fonts/dnb/...
187
84
 
188
85
  ### :sparkles: Features
189
86
 
190
- * move `dnb-ui-fonts` package inside `/style/themes/theme-ui/` ([abb5ff7](https://github.com/dnbexperience/eufemia/commit/abb5ff7b8f381ae427d191291b96ddc6eb1ae0cf))
191
- * move `properties.scss` into theme ui ([#2035](https://github.com/dnbexperience/eufemia/issues/2035)) ([42f8c3a](https://github.com/dnbexperience/eufemia/commit/42f8c3ab679427d3e97d44d381d81df66011273a))
192
- * move DNB font in subfolder ([eb15950](https://github.com/dnbexperience/eufemia/commit/eb15950d27e4ba695390ccf4fcd5c229b813d41c))
193
- * **Pagination:** replace `page` with `pageNumber` ([9d971c9](https://github.com/dnbexperience/eufemia/commit/9d971c9c0811c1259d69609f5b3c21b4053a5014))
194
-
195
-
196
- ### :bug: Bug Fixes
197
-
198
- * **Accordion:** enhance TypeScript type definitions ([7c5eead](https://github.com/dnbexperience/eufemia/commit/7c5eead37fae836a5ea09467cadfc47c24f69051))
199
- * **Anchor:** ensure id is passed down ([#2016](https://github.com/dnbexperience/eufemia/issues/2016)) ([363af36](https://github.com/dnbexperience/eufemia/commit/363af36a448207cac41eeecc5513a1dac7dba022))
200
- * **Autocomplete:** add HorizontalItem TypeScript type definition ([c4e7322](https://github.com/dnbexperience/eufemia/commit/c4e7322ee6655d226e7e5bdd67b3bf12062eb324))
201
- * **DatePicker:** make focus handling on input work on second click ([#2039](https://github.com/dnbexperience/eufemia/issues/2039)) ([dc25e65](https://github.com/dnbexperience/eufemia/commit/dc25e65dc11ebfb4e299e2a0221257e9ed3c3f66))
202
- * **DrawerList:** enhance TypeScript definition types ([381183f](https://github.com/dnbexperience/eufemia/commit/381183f36336367b2791e0e952c2153bf878e84e))
203
- * **Dropdown:** enhance TypeScript definition types ([9854ba6](https://github.com/dnbexperience/eufemia/commit/9854ba677aeb7524e3ec336fc3c7b8fb073d76ba))
204
- * enhance scrollbar appearance ([#2046](https://github.com/dnbexperience/eufemia/issues/2046)) ([54b2222](https://github.com/dnbexperience/eufemia/commit/54b2222da2da4261c4675801b9e6528ce1302030))
205
- * **GlobalStatus:** enhance TypeScript definition types ([9e6d724](https://github.com/dnbexperience/eufemia/commit/9e6d72472137c6ddc44f64a779c87f679fe51e74))
206
- * **Heading:** enhance TypeScript definition types ([8c0e78a](https://github.com/dnbexperience/eufemia/commit/8c0e78a5e380d4f4fb70d7debbda4d5c16105e61))
207
- * **InputMasked:** expose inner_ref input element when useRef is used ([#2042](https://github.com/dnbexperience/eufemia/issues/2042)) ([6629a99](https://github.com/dnbexperience/eufemia/commit/6629a99004bc6e0ba1b9f2e6fd7f00f1ba72db38))
208
- * make docs/portal Windows compatible by properly handle backslashes and newlines ([#2038](https://github.com/dnbexperience/eufemia/issues/2038)) ([20a90d5](https://github.com/dnbexperience/eufemia/commit/20a90d5dc3f11e92d06476fc3f0590de3ff19444))
209
- * **MediaQuery:** enhance TypeScript types ([3959026](https://github.com/dnbexperience/eufemia/commit/395902605f1f32fa1fda3cd26f1008429b966623))
210
- * **Modal:** make children accept function with close method in parameters ([#2015](https://github.com/dnbexperience/eufemia/issues/2015)) ([ef4fa2e](https://github.com/dnbexperience/eufemia/commit/ef4fa2e917b835308b2b63b11e458643708fde69))
211
- * **Pagination:** enhance Pagination and InfinityScroller TypeScript definitions ([2a0d9da](https://github.com/dnbexperience/eufemia/commit/2a0d9dadbcc723839c1e7350736a4da5d8849b74))
212
- * **Pagination:** fix hover style state after click to be emerald-green ([#2032](https://github.com/dnbexperience/eufemia/issues/2032)) ([5bc802e](https://github.com/dnbexperience/eufemia/commit/5bc802e3b8007cfae21e9981a90a905963ef1097))
213
- * remove FormRow context support from /elements ([#2031](https://github.com/dnbexperience/eufemia/issues/2031)) ([fa14c40](https://github.com/dnbexperience/eufemia/commit/fa14c40a4d359fa607b1621ad65f417fea347f55))
214
- * **ScrollView:** avoid usage of useLayoutEffect during SSR ([#2012](https://github.com/dnbexperience/eufemia/issues/2012)) ([bd21281](https://github.com/dnbexperience/eufemia/commit/bd212815680d1509677534196e546047fa5ceb73))
215
- * **Skeleton:** add Skeleton.Exclude types ([f49d900](https://github.com/dnbexperience/eufemia/commit/f49d900596d78462db2e71fad284b086cc134aac))
216
- * **StepIndicator:** fix TypeScript spacing types ([89dd4b6](https://github.com/dnbexperience/eufemia/commit/89dd4b6f749aa509c683cb25686f142fa5c35c12))
87
+ * **Accordion:** export type AccordionIconPosition ([ff05f9f](https://github.com/dnbexperience/eufemia/commit/ff05f9f27568e40b39614715053ab2fd90709cee))
88
+ * add shared Theme component and useTheme hook ([#2112](https://github.com/dnbexperience/eufemia/issues/2112)) ([9f88b71](https://github.com/dnbexperience/eufemia/commit/9f88b71240029a13571e2a721868907b6a5e9bb8))
89
+ * **Anchor:** add `scrollToHash` feature ([#2290](https://github.com/dnbexperience/eufemia/issues/2290)) ([246eaa9](https://github.com/dnbexperience/eufemia/commit/246eaa9d47d4b149b2fecced09d7c3dc7c70edfe)), closes [#2286](https://github.com/dnbexperience/eufemia/issues/2286)
90
+ * **Anchor:** always show focus when `dnb-anchor--focus` is used ([#2364](https://github.com/dnbexperience/eufemia/issues/2364)) ([541e889](https://github.com/dnbexperience/eufemia/commit/541e889e817e7d2efd6b478dfcc26aad39e51a17))
91
+ * **Anchor:** create styles for Sbanken ([#2250](https://github.com/dnbexperience/eufemia/issues/2250)) ([208e891](https://github.com/dnbexperience/eufemia/commit/208e89135859bd82427b475008d7f3799619f299))
92
+ * **Anchor:** deprecate property target_blank_title ([#1882](https://github.com/dnbexperience/eufemia/issues/1882)) ([065321e](https://github.com/dnbexperience/eufemia/commit/065321eca3933e72a9f045414d30086b11c02db2))
93
+ * **Anchor:** move from elements to components ([#2275](https://github.com/dnbexperience/eufemia/issues/2275)) ([fdb5680](https://github.com/dnbexperience/eufemia/commit/fdb568089fee0c10914709a55e93424c5c7eb862))
94
+ * **Anchor:** remove horizontal padding ([#2365](https://github.com/dnbexperience/eufemia/issues/2365)) ([106c02f](https://github.com/dnbexperience/eufemia/commit/106c02f0cebdbdacbbd43b3fea8e0c325e08f9ca))
95
+ * **Anchor:** Sbanken styling, added icon props ([#2318](https://github.com/dnbexperience/eufemia/issues/2318)) ([c6dcd03](https://github.com/dnbexperience/eufemia/commit/c6dcd03608a4de06f11d741b4aaf6cad7bf7ae18))
96
+ * **Autocomplete:** export AutocompleteData type ([#2299](https://github.com/dnbexperience/eufemia/issues/2299)) ([0315b14](https://github.com/dnbexperience/eufemia/commit/0315b14960480823f2937a67e2a8b769192cfbae))
97
+ * **Autocomplete:** export AutocompleteOptionsRender type ([#2300](https://github.com/dnbexperience/eufemia/issues/2300)) ([becf345](https://github.com/dnbexperience/eufemia/commit/becf3451b6a788087b0822054a67e69d4293168c))
98
+ * build pure component css packages (without deps) ([#1928](https://github.com/dnbexperience/eufemia/issues/1928)) ([0af6b60](https://github.com/dnbexperience/eufemia/commit/0af6b607c72dd96ea16debc63cb703310f0ebb4d))
99
+ * **build:** replace node-sass with dart-sass ([#1934](https://github.com/dnbexperience/eufemia/issues/1934)) ([87f918f](https://github.com/dnbexperience/eufemia/commit/87f918f763ab5c33af2cb2b66c5fc98f5e623038))
100
+ * **Button:** export type ButtonIcon ([bb4d70e](https://github.com/dnbexperience/eufemia/commit/bb4d70e974ff01694dceac760adcc5722a9b9241))
101
+ * **Button:** sbanken styling ([#2273](https://github.com/dnbexperience/eufemia/issues/2273)) ([f53faa0](https://github.com/dnbexperience/eufemia/commit/f53faa0b032559a16785f9cd217c6bbe6b910b98))
102
+ * **Checkbox:** deprecate default_state property ([#1863](https://github.com/dnbexperience/eufemia/issues/1863)) ([a022de3](https://github.com/dnbexperience/eufemia/commit/a022de37661dcfec3df09638cfbb01986fa7d853))
103
+ * deprecate StepIndicator v1 ([#1840](https://github.com/dnbexperience/eufemia/issues/1840)) ([33d6fc2](https://github.com/dnbexperience/eufemia/commit/33d6fc28d959da3ec3bc267684de6e96b291600b))
104
+ * **Dialog:** adds ReactNode as type for texts ([#2294](https://github.com/dnbexperience/eufemia/issues/2294)) ([5a18768](https://github.com/dnbexperience/eufemia/commit/5a18768f25bb41aa75b152786c9532f5de0bd932))
105
+ * **DrawerList:** remove use_drawer_on_mobile & enable_closest_observer ([#1879](https://github.com/dnbexperience/eufemia/issues/1879)) ([e1bcfb0](https://github.com/dnbexperience/eufemia/commit/e1bcfb02f3a0d58a7acd09fb5d1c9b23c03df736))
106
+ * **Dropdown:** export DropdownData type ([#2298](https://github.com/dnbexperience/eufemia/issues/2298)) ([81a0619](https://github.com/dnbexperience/eufemia/commit/81a0619590e94a6965dbee028c46ae065a2165fd))
107
+ * **Dropdown:** remove deprecated selected_item property ([#1870](https://github.com/dnbexperience/eufemia/issues/1870)) ([ac509ca](https://github.com/dnbexperience/eufemia/commit/ac509cab7927a491fc1777d6e4c8d245d8e8caaf))
108
+ * **Element:** deprecate css, class, inner_ref, skeleton_method ([#1859](https://github.com/dnbexperience/eufemia/issues/1859)) ([5ef5292](https://github.com/dnbexperience/eufemia/commit/5ef52927f12e3717796296cb7a2b4e661f868a72))
109
+ * expose package version ([#2327](https://github.com/dnbexperience/eufemia/issues/2327)) ([2a51dfc](https://github.com/dnbexperience/eufemia/commit/2a51dfce9551761aa380137e95e937688a12a3dd))
110
+ * **FormRow:** remove indent feature ([#1975](https://github.com/dnbexperience/eufemia/issues/1975)) ([9c69439](https://github.com/dnbexperience/eufemia/commit/9c69439749ad5dc7a9c08e09f511323a8c1a438d))
111
+ * **FormStatus:** remove deprecated status property ([#1914](https://github.com/dnbexperience/eufemia/issues/1914)) ([75fe76c](https://github.com/dnbexperience/eufemia/commit/75fe76cc04baed994f4c3697f16bedeb817d9142))
112
+ * **GlobalError:** add new styles (no illustrations anymore) ([#2381](https://github.com/dnbexperience/eufemia/issues/2381)) ([cf18ccd](https://github.com/dnbexperience/eufemia/commit/cf18ccd8319533b16366e410c61a4bdbf33b060d))
113
+ * **GlobalStatus:** add possibility for a custom message (replace `global_status_id` with `globalStatus` prop) ([#2351](https://github.com/dnbexperience/eufemia/issues/2351)) ([551d87e](https://github.com/dnbexperience/eufemia/commit/551d87e74ad3f480219c09edf8263bf2b956fbf1))
114
+ * **GlobalStatus:** deprecate AddStatus & Set ([#1891](https://github.com/dnbexperience/eufemia/issues/1891)) ([680b2c8](https://github.com/dnbexperience/eufemia/commit/680b2c8e7fb5bc20e6e50cadd43f272b98caaaaa))
115
+ * **H:** deprecate is and style_type properties ([#1856](https://github.com/dnbexperience/eufemia/issues/1856)) ([41c2ae8](https://github.com/dnbexperience/eufemia/commit/41c2ae8d124a305929eb90009ff20bef9e00f12a))
116
+ * **HelpButton:** remove `modal_props` in favour of `render` ([#2333](https://github.com/dnbexperience/eufemia/issues/2333)) ([f95e249](https://github.com/dnbexperience/eufemia/commit/f95e249ed870771d769cd5fdd3ab382733367a1b))
117
+ * **Helpers:** deprecate .dnb-sr-only--inline & .dnb-not-sr-only ([#1865](https://github.com/dnbexperience/eufemia/issues/1865)) ([7789778](https://github.com/dnbexperience/eufemia/commit/77897787183dba721a85d2b3ba0929b0c659c7b4))
118
+ * **Icons:** add new icons `handshake`, `heavy_equipment`, `id_card`, `investment_account`, `keyfigures`, `portfolio_analytics`, `sea_transport`, `shield_lock`, `file_zip`, `bus`, `building_shopping`, `handshake`, `heavy_equipment` ([#2178](https://github.com/dnbexperience/eufemia/issues/2178)) ([5e57d0d](https://github.com/dnbexperience/eufemia/commit/5e57d0dbff74c42d0155581766162ffd428283b0))
119
+ * **Icons:** move all icons assets to `dnb` subfolder: assets/icons/dnb/*.svg ([#2187](https://github.com/dnbexperience/eufemia/issues/2187)) ([15b19b7](https://github.com/dnbexperience/eufemia/commit/15b19b703f9d21fa4499e9a661b00ead0a3750c1))
120
+ * **Icons:** remove iOS (PDF) icons library support ([#2170](https://github.com/dnbexperience/eufemia/issues/2170)) ([6063ff3](https://github.com/dnbexperience/eufemia/commit/6063ff3ab40b9942012a081f1b3fb164f0fac840))
121
+ * include all type definitions in repo ([#1996](https://github.com/dnbexperience/eufemia/issues/1996)) ([a5d07fe](https://github.com/dnbexperience/eufemia/commit/a5d07fe0071c45243edd20bc739bbd3d51fc312a))
122
+ * **InputMasked:** ATTENTION! make allowLeadingZeroes default to true ([#1126](https://github.com/dnbexperience/eufemia/issues/1126)) ([dfddc3a](https://github.com/dnbexperience/eufemia/commit/dfddc3abfbd65a85ef0e96be92fb22cfbc347043))
123
+ * **Logo:** Add brand and variant params for Sbanken logo ([#2271](https://github.com/dnbexperience/eufemia/issues/2271)) ([577e9b4](https://github.com/dnbexperience/eufemia/commit/577e9b44ee88fc187a26c41cf29e771bd2c3fed7))
124
+ * **Modal, Dialog, Drawer:** remove closeButtonAttributes ([#1926](https://github.com/dnbexperience/eufemia/issues/1926)) ([80c69ee](https://github.com/dnbexperience/eufemia/commit/80c69ee4b1b7d4d4ce8acd0ab289a246f23dbe1e))
125
+ * **Modal:** remove deprecated mode prop ([#1993](https://github.com/dnbexperience/eufemia/issues/1993)) ([7769b77](https://github.com/dnbexperience/eufemia/commit/7769b772a04f53b435fb7f8ca7be32601b5feac6))
126
+ * **Modal:** remove deprecated trigger_ props ([#1918](https://github.com/dnbexperience/eufemia/issues/1918)) ([0582254](https://github.com/dnbexperience/eufemia/commit/0582254159e0d44818fefd953718751549a55038))
127
+ * move `dnb-ui-fonts` package inside `/style/themes/theme-ui/` ([9dfa3d6](https://github.com/dnbexperience/eufemia/commit/9dfa3d6969a98b32db12181828706ec7f8fb6078))
128
+ * move `dnb-ui-tags` to themes ([#2140](https://github.com/dnbexperience/eufemia/issues/2140)) ([0a49595](https://github.com/dnbexperience/eufemia/commit/0a49595b9995f380464c5bc7b4e9dd152f0f45ee))
129
+ * move `properties.scss` into theme ui ([#2035](https://github.com/dnbexperience/eufemia/issues/2035)) ([dce2a3a](https://github.com/dnbexperience/eufemia/commit/dce2a3a430397ffec5650a3c1458e045cc303a8f))
130
+ * move browser assets to dnb subfolder ([#2083](https://github.com/dnbexperience/eufemia/issues/2083)) ([e0cf868](https://github.com/dnbexperience/eufemia/commit/e0cf868ce8c2dfa6e1c46807693b12251ab2d909))
131
+ * move DNB font in subfolder ([fdb05f3](https://github.com/dnbexperience/eufemia/commit/fdb05f35040feb84d57c406ce2f39408cd4d7bb1))
132
+ * move DNB icons to subfolder (with v9 compatibility) ([#2200](https://github.com/dnbexperience/eufemia/issues/2200)) ([fd23310](https://github.com/dnbexperience/eufemia/commit/fd2331007333ba712f8e8ef1ac0d5e49647e7780))
133
+ * move dnb image assets to own subfolder ([#2099](https://github.com/dnbexperience/eufemia/issues/2099)) ([4101cca](https://github.com/dnbexperience/eufemia/commit/4101cca8977da6dfbd3403e4e3c4d98733deae99))
134
+ * new browserslist config for es6 builds ([#1833](https://github.com/dnbexperience/eufemia/issues/1833)) ([0f02859](https://github.com/dnbexperience/eufemia/commit/0f028594d1f59972e671b82e79fc40c68aa22b6f))
135
+ * **Number:** Removes component ([#1924](https://github.com/dnbexperience/eufemia/issues/1924)) ([5ecb3aa](https://github.com/dnbexperience/eufemia/commit/5ecb3aa325b97fbe89f5a38cb003bbe4c32c2758))
136
+ * **Pagination:** replace `page` with `pageNumber` ([3d538da](https://github.com/dnbexperience/eufemia/commit/3d538dae5b318cd9395924f1ba6717e9a3b409d6))
137
+ * **PaymentCard:** new card designs & new products ([#2264](https://github.com/dnbexperience/eufemia/issues/2264)) ([2e3d790](https://github.com/dnbexperience/eufemia/commit/2e3d790c6e75e7e260764be7e18c5dfa0a40b448))
138
+ * **PaymentCard:** rename type Metalic to Metallic ([#2226](https://github.com/dnbexperience/eufemia/issues/2226)) ([00c30ea](https://github.com/dnbexperience/eufemia/commit/00c30ea88afd4e070199ac8412197f9a5e888cbd))
139
+ * **P:** deprecate style_type property ([#1855](https://github.com/dnbexperience/eufemia/issues/1855)) ([f45e60c](https://github.com/dnbexperience/eufemia/commit/f45e60c9181f4b68b2219537162a4269010a3b7c))
140
+ * **P:** remove deprecated class dnb-p--ingress ([#1872](https://github.com/dnbexperience/eufemia/issues/1872)) ([2837e8e](https://github.com/dnbexperience/eufemia/commit/2837e8e5e49e4583d09fe115bc3ac5c4e3a8017b))
141
+ * remove support for internet explorer ([#1807](https://github.com/dnbexperience/eufemia/issues/1807)) ([44b3803](https://github.com/dnbexperience/eufemia/commit/44b380385d66fa8cb258923d4b3f17d632ae5a5e))
142
+ * rename SCSS mixin `fakeFocus` to `focusRing` ([#2110](https://github.com/dnbexperience/eufemia/issues/2110)) ([47b5e47](https://github.com/dnbexperience/eufemia/commit/47b5e47ab2ceeabef887d05ac48702cf46e749f9))
143
+ * replace visual test driver to jest-image-snapshot and Firefox (Playwright) ([#1945](https://github.com/dnbexperience/eufemia/issues/1945)) ([6402aa5](https://github.com/dnbexperience/eufemia/commit/6402aa5224acc53140a0e2509bd9335e4b601227)), closes [/github.com/puppeteer/puppeteer/issues/7514#issuecomment-1005917527](https://github.com/dnbexperience//github.com/puppeteer/puppeteer/issues/7514/issues/issuecomment-1005917527) [/github.com/dnbexperience/eufemia/blob/88279d1e6903497fce40d6c4322dd9b7c7b9ac3b/packages/dnb-eufemia/src/core/jest/jestSetupScreenshots.js#L39](https://github.com/dnbexperience//github.com/dnbexperience/eufemia/blob/88279d1e6903497fce40d6c4322dd9b7c7b9ac3b/packages/dnb-eufemia/src/core/jest/jestSetupScreenshots.js/issues/L39)
144
+ * **ScrollView:** add interactive=auto to observe the content ([#1984](https://github.com/dnbexperience/eufemia/issues/1984)) ([cc8d37a](https://github.com/dnbexperience/eufemia/commit/cc8d37a05ab5b4f704709f7d34f66afe6e23e59b))
145
+ * **Section:** deprecate style_type signal-orange ([#1886](https://github.com/dnbexperience/eufemia/issues/1886)) ([9e8dd3f](https://github.com/dnbexperience/eufemia/commit/9e8dd3f4eb3ba3704c28cd55a1421e01a88d94e7))
146
+ * simplify CSS packages/themes structure ([c1a7894](https://github.com/dnbexperience/eufemia/commit/c1a7894f757d2c76036d575cc809cb280c572280))
147
+ * **Skeleton:** removes style_type prop ([#2095](https://github.com/dnbexperience/eufemia/issues/2095)) ([3e0f4ce](https://github.com/dnbexperience/eufemia/commit/3e0f4ce4a3e474655144e648535a885c8852b3ac))
148
+ * **SkipContent:** add new component to skip large contents when using tab key ([#1981](https://github.com/dnbexperience/eufemia/issues/1981)) ([78dd384](https://github.com/dnbexperience/eufemia/commit/78dd3840fc69e05691a1c82f20087b9936512ecc))
149
+ * **Slider:** deprecate use_scrollwheel ([#1889](https://github.com/dnbexperience/eufemia/issues/1889)) ([ead0a49](https://github.com/dnbexperience/eufemia/commit/ead0a4985175b375ab16031dbd46e649313e0f51))
150
+ * **Slider:** remove deprecated onInit prop ([#1909](https://github.com/dnbexperience/eufemia/issues/1909)) ([3b72e9b](https://github.com/dnbexperience/eufemia/commit/3b72e9b9a4575e05c6ddd8b5d785d37cb3680a2d))
151
+ * **Slider:** remove dnb-range styling ([#1890](https://github.com/dnbexperience/eufemia/issues/1890)) ([839edd5](https://github.com/dnbexperience/eufemia/commit/839edd5cbbe31860055f5d225c13b15c2777744c))
152
+ * **Space:** add conditional reset class: `dnb-space__reset` ([#1961](https://github.com/dnbexperience/eufemia/issues/1961)) ([0de26fe](https://github.com/dnbexperience/eufemia/commit/0de26fe822ffe95f449ae9d7cb176efbe39b7ac7))
153
+ * **SpacingUtils:** deprecate createStyleObject ([#1892](https://github.com/dnbexperience/eufemia/issues/1892)) ([385d6d3](https://github.com/dnbexperience/eufemia/commit/385d6d3ad771a5b2c138e27d35eda9eb57c3db55))
154
+ * **StylisPlugin:** removes stylis plugin ([#2156](https://github.com/dnbexperience/eufemia/issues/2156)) ([8c96969](https://github.com/dnbexperience/eufemia/commit/8c96969a4c4069f3f693c0e6da0076cb3018f3c0))
155
+ * **Switch:** deprecate default_state property ([#1864](https://github.com/dnbexperience/eufemia/issues/1864)) ([03a6bd0](https://github.com/dnbexperience/eufemia/commit/03a6bd04ed68e5ba7cbe8b5ca17983200a6a83fb))
156
+ * **Table:** deprecate sticky_offset ([#1883](https://github.com/dnbexperience/eufemia/issues/1883)) ([57c10d0](https://github.com/dnbexperience/eufemia/commit/57c10d065844df85b22bc1381288f2d323efb9cd))
157
+ * **Tags:** removed deprecated comments ([#1857](https://github.com/dnbexperience/eufemia/issues/1857)) ([9c17d75](https://github.com/dnbexperience/eufemia/commit/9c17d75af4c6ce284ad8e2e27075ea90512cc279))
158
+ * **Theme:** add `darkMode` and `contrastMode` props ([#2355](https://github.com/dnbexperience/eufemia/issues/2355)) ([04b350e](https://github.com/dnbexperience/eufemia/commit/04b350ec5210c7830d863d6c1bca2d4da7128506))
159
+ * **Theming:** add `VisibilityByTheme` as a shared component ([#2280](https://github.com/dnbexperience/eufemia/issues/2280)) ([2592658](https://github.com/dnbexperience/eufemia/commit/25926585d86111fece097b32aca1feeeb48a61d3))
160
+ * **Timeline:** deprecate name and date props ([#1884](https://github.com/dnbexperience/eufemia/issues/1884)) ([74f56b1](https://github.com/dnbexperience/eufemia/commit/74f56b1058172a9ec48b502169b33cd7eefb6a2a))
161
+ * **Typography:** add `--line-height-lead` property ([#2237](https://github.com/dnbexperience/eufemia/issues/2237)) ([8dc9ed8](https://github.com/dnbexperience/eufemia/commit/8dc9ed88136655fbea18d5ca30fc105cd6c8be47))
162
+ * **Typography:** remove small prop from paragraph (p) ([#2234](https://github.com/dnbexperience/eufemia/issues/2234)) ([06c5ba5](https://github.com/dnbexperience/eufemia/commit/06c5ba5db14df490f74ddc30df52718668b82350))
163
+ * **Typography:** removed deprecated comments ([#1858](https://github.com/dnbexperience/eufemia/issues/1858)) ([0916cde](https://github.com/dnbexperience/eufemia/commit/0916cde171892cda77234703c23cbb317b56cf3a))
164
+ * **Typography:** Use text color on typography for Sbanken ([#2363](https://github.com/dnbexperience/eufemia/issues/2363)) ([f06291a](https://github.com/dnbexperience/eufemia/commit/f06291a60fe4560dbc04778c0c57784b3237f506))
165
+ * use CSS vars in focus-ring (`fakeFocus`) ([#2109](https://github.com/dnbexperience/eufemia/issues/2109)) ([b0649d5](https://github.com/dnbexperience/eufemia/commit/b0649d54ab8f57aa41beebefa72a9bd07b8750c9))
217
166
 
218
167
 
219
168
  ### :memo: Documentation
220
169
 
221
- * **Accordion:** improve docs of group & allow_close_all ([#2070](https://github.com/dnbexperience/eufemia/issues/2070)) ([78440b0](https://github.com/dnbexperience/eufemia/commit/78440b05df4986d78d893c8d5855a74ed6fdfd42))
222
- * adds missing accents to values in docs ([#2041](https://github.com/dnbexperience/eufemia/issues/2041)) ([3730947](https://github.com/dnbexperience/eufemia/commit/37309478e9cce6aa9eaba21e72537eb8e012c01b))
223
- * **Autocomplete:** minor spelling improvement in title ([#2069](https://github.com/dnbexperience/eufemia/issues/2069)) ([f796e8c](https://github.com/dnbexperience/eufemia/commit/f796e8c0e2a349430702d1c611f5a822cd68d96f))
224
- * **Avatar:** fixes broken properties table ([#2030](https://github.com/dnbexperience/eufemia/issues/2030)) ([d872d72](https://github.com/dnbexperience/eufemia/commit/d872d72193eb78e2dd0f059b3381e1d4fb900a1a))
225
- * **Contact:** adds Joakim as contact ([#2023](https://github.com/dnbexperience/eufemia/issues/2023)) ([534c69a](https://github.com/dnbexperience/eufemia/commit/534c69a713f13ff084059e5645c3448a2d6231d8))
226
- * **Contribution Guide:** update legacy type definition handling ([#2048](https://github.com/dnbexperience/eufemia/issues/2048)) ([f004f6a](https://github.com/dnbexperience/eufemia/commit/f004f6a727384ecf901b922f6faa8a2501b9b24d))
227
- * **Extension:** convert md to mdx files ([#2026](https://github.com/dnbexperience/eufemia/issues/2026)) ([68c54ee](https://github.com/dnbexperience/eufemia/commit/68c54eeef726ddfe8f6f27e26373edfb59419c15))
228
- * fix outdated boolean usage ([#2013](https://github.com/dnbexperience/eufemia/issues/2013)) ([f4fb26d](https://github.com/dnbexperience/eufemia/commit/f4fb26d6842dd2a922985fd499c7b72bad1c3350))
229
- * fix wrong Heading example about margin collapse ([f810f2c](https://github.com/dnbexperience/eufemia/commit/f810f2c3eb5ca97976c00800dd8567936829a643))
230
- * **getOffsetTop:** fix wrong docs and console.log usage ([#2018](https://github.com/dnbexperience/eufemia/issues/2018)) ([5c31970](https://github.com/dnbexperience/eufemia/commit/5c319707d8507093cb8907fcb8c5179a0a065dbe))
231
- * **GlobalStatus:** improve docs for id prop ([#2067](https://github.com/dnbexperience/eufemia/issues/2067)) ([b7bf098](https://github.com/dnbexperience/eufemia/commit/b7bf09893793d1e248bc92b823ecc7188a26b273))
232
- * **Input:** adds on_key_down event ([#2062](https://github.com/dnbexperience/eufemia/issues/2062)) ([a9b07be](https://github.com/dnbexperience/eufemia/commit/a9b07be0ce23a573db32165fcc3d41a0188a14ab))
233
- * make click on anchor with hash work on first click ([#2019](https://github.com/dnbexperience/eufemia/issues/2019)) ([a4ac4c8](https://github.com/dnbexperience/eufemia/commit/a4ac4c8e9e3ede462abe6d27bb6b900c7a748ce9))
234
- * remove `smoothscroll-polyfill` as a recommendation ([#2020](https://github.com/dnbexperience/eufemia/issues/2020)) ([cc06592](https://github.com/dnbexperience/eufemia/commit/cc0659278dce5ab0e641a2648a7fe25362ee2556))
235
- * remove properties import from docs ([#2034](https://github.com/dnbexperience/eufemia/issues/2034)) ([15b4238](https://github.com/dnbexperience/eufemia/commit/15b42384bac75c699e07b777e635d3fe60d4d642))
236
- * removes cards and spaceholder indicator ([#2061](https://github.com/dnbexperience/eufemia/issues/2061)) ([a782522](https://github.com/dnbexperience/eufemia/commit/a7825228326feda84c7c8eb69936c002da6b8fb6))
237
-
238
- ## [10.0.0-beta.1](https://github.com/dnbexperience/eufemia/compare/v9.47.1...v10.0.0-beta.1) (2023-02-23)
170
+ * **Accordion:** improve docs of group & allow_close_all ([#2070](https://github.com/dnbexperience/eufemia/issues/2070)) ([2790302](https://github.com/dnbexperience/eufemia/commit/2790302b01edbe486b062c82924b78d11a43ae47))
171
+ * add change log about v10 ([bdba81b](https://github.com/dnbexperience/eufemia/commit/bdba81bf58dddfca57ef47021b7683b8f33a1f2a))
172
+ * add docs about how to maintain theming ([#2097](https://github.com/dnbexperience/eufemia/issues/2097)) ([8bdfdb1](https://github.com/dnbexperience/eufemia/commit/8bdfdb1863b672299c26771dfc4373e08f691c3d))
173
+ * add info about the tertiary button "visual" breaking change ([24bf0e7](https://github.com/dnbexperience/eufemia/commit/24bf0e7bd40b1d2a25c38af923125bc14bb1338d))
174
+ * add link to new Payment Card Figma file ([#2117](https://github.com/dnbexperience/eufemia/issues/2117)) ([239c239](https://github.com/dnbexperience/eufemia/commit/239c2399db847da737090d869446573e45c2d2fe))
175
+ * add new styles flow diagram ([21e3b3c](https://github.com/dnbexperience/eufemia/commit/21e3b3c602d840aad3dc471f65f2194d47cf0707))
176
+ * Add Sbanken color table and -documentation ([#2332](https://github.com/dnbexperience/eufemia/issues/2332)) ([e4324f8](https://github.com/dnbexperience/eufemia/commit/e4324f8725fcb595e87437099a743fad4169e4f9))
177
+ * adds a dot to quick guide - designers ([#2157](https://github.com/dnbexperience/eufemia/issues/2157)) ([3ba8a2e](https://github.com/dnbexperience/eufemia/commit/3ba8a2e023544ce7f41aec13d2500940e342a938))
178
+ * adds missing accents to values in docs ([#2041](https://github.com/dnbexperience/eufemia/issues/2041)) ([cc7460f](https://github.com/dnbexperience/eufemia/commit/cc7460f17bb8601b4b578b5342843b055804ebdd))
179
+ * **Anchor:** fix console warning when using class ([#2125](https://github.com/dnbexperience/eufemia/issues/2125)) ([85be7d5](https://github.com/dnbexperience/eufemia/commit/85be7d598ac23d1950614e99df6ee585aaf25b6d))
180
+ * **Autocomplete:** minor spelling improvement in title ([#2069](https://github.com/dnbexperience/eufemia/issues/2069)) ([6be0a77](https://github.com/dnbexperience/eufemia/commit/6be0a77f17067b6992cb2a9caf41cdeadf907c64))
181
+ * **Autocomplete:** minor spelling improvements ([#2197](https://github.com/dnbexperience/eufemia/issues/2197)) ([3aa19a3](https://github.com/dnbexperience/eufemia/commit/3aa19a3bebe1ec78d50b8c139fd0f2cb5a6265c5))
182
+ * **Autocomplete:** refactor jsx examples to tsx ([#2198](https://github.com/dnbexperience/eufemia/issues/2198)) ([6775dfb](https://github.com/dnbexperience/eufemia/commit/6775dfb0b0f72a48a77d215c0921fc6f9f57ece8))
183
+ * **Autocomplete:** update docs about the debounce method ([#2138](https://github.com/dnbexperience/eufemia/issues/2138)) ([e4e4865](https://github.com/dnbexperience/eufemia/commit/e4e4865678e340fd26309277fdf92fcb65e15b4a))
184
+ * **Avatar:** fixes broken properties table ([#2030](https://github.com/dnbexperience/eufemia/issues/2030)) ([b8c9ed4](https://github.com/dnbexperience/eufemia/commit/b8c9ed4e417cb28f5f4566835da5f594ffd67222))
185
+ * **Best Practices:** adds a dot ([#2151](https://github.com/dnbexperience/eufemia/issues/2151)) ([97e44aa](https://github.com/dnbexperience/eufemia/commit/97e44aa8c69af5bbfd0252aee443b94abcaffc4b))
186
+ * **Best Practices:** adds links to children pages ([#2161](https://github.com/dnbexperience/eufemia/issues/2161)) ([27d09a1](https://github.com/dnbexperience/eufemia/commit/27d09a1c17b32bcb8c9a0c234484813981f3d9b1))
187
+ * **Breadcrumb:** improve event docs ([66aad32](https://github.com/dnbexperience/eufemia/commit/66aad3216f8f2daa1018b2338086051c0da1184f))
188
+ * capitalize component names in descriptions ([#2162](https://github.com/dnbexperience/eufemia/issues/2162)) ([80fb3b2](https://github.com/dnbexperience/eufemia/commit/80fb3b2d6eb567d8ad2a9a58ec9619070684422c))
189
+ * **ColorsTable:** fixes color and hover effect ([#2122](https://github.com/dnbexperience/eufemia/issues/2122)) ([c82f570](https://github.com/dnbexperience/eufemia/commit/c82f57074d9059608b3512eb6879aefddd869454))
190
+ * **Contact:** adds Joakim as contact ([#2023](https://github.com/dnbexperience/eufemia/issues/2023)) ([43f9f47](https://github.com/dnbexperience/eufemia/commit/43f9f47193a1def8132ce05edadb61cb674332e1))
191
+ * **Contribution Guide:** update legacy type definition handling ([#2048](https://github.com/dnbexperience/eufemia/issues/2048)) ([2c16fd6](https://github.com/dnbexperience/eufemia/commit/2c16fd6d713da69c258e8187997dff4c6ca079a1))
192
+ * crate main doc for how to deal with brand ([#2100](https://github.com/dnbexperience/eufemia/issues/2100)) ([ae2416a](https://github.com/dnbexperience/eufemia/commit/ae2416adbc33883117f6a31d2f22c3f45d236af2))
193
+ * **CSS Styles:** fix console warning when using class ([#2127](https://github.com/dnbexperience/eufemia/issues/2127)) ([e903d69](https://github.com/dnbexperience/eufemia/commit/e903d697c8f95f0c0aa1d397f8c3b2be0795bd24))
194
+ * **Customization:** adds link to provider/context ([#2160](https://github.com/dnbexperience/eufemia/issues/2160)) ([009e056](https://github.com/dnbexperience/eufemia/commit/009e0567bcfad7a3e8ee82e745ba38c5c4987060))
195
+ * **DatePicker:** refactor jsx examples to tsx ([#2204](https://github.com/dnbexperience/eufemia/issues/2204)) ([d2f1b42](https://github.com/dnbexperience/eufemia/commit/d2f1b42de0b26212ad5ed23f6fb7a1a374fdf294))
196
+ * **Demo Apps:** fix console warning when using class ([#2126](https://github.com/dnbexperience/eufemia/issues/2126)) ([74142e8](https://github.com/dnbexperience/eufemia/commit/74142e8e24ae14038ad19738955d6d8aa7d5e737))
197
+ * **DrawerList:** prevents change of direction when scrolling ([#2233](https://github.com/dnbexperience/eufemia/issues/2233)) ([cb4cbbd](https://github.com/dnbexperience/eufemia/commit/cb4cbbd79dde892ae0d4f3f8c19195d58dc20788))
198
+ * **DrawerList:** refactor jsx examples to tsx ([#2209](https://github.com/dnbexperience/eufemia/issues/2209)) ([65dff60](https://github.com/dnbexperience/eufemia/commit/65dff60abf451b6341f3c221fba55154fd219a32))
199
+ * **DrawerList:** renamse fixedPosition to fixed_position ([#2093](https://github.com/dnbexperience/eufemia/issues/2093)) ([8e9ae76](https://github.com/dnbexperience/eufemia/commit/8e9ae76d17ef1e4a3e65f1866840039c9e441bf4))
200
+ * **Extension:** convert md to mdx files ([#2026](https://github.com/dnbexperience/eufemia/issues/2026)) ([ebc7988](https://github.com/dnbexperience/eufemia/commit/ebc798815b96d35d3a4c49f16f1f42d2cebfbd45))
201
+ * fix outdated boolean usage ([#2013](https://github.com/dnbexperience/eufemia/issues/2013)) ([99b816c](https://github.com/dnbexperience/eufemia/commit/99b816c98873d47d31b7bace21547f09f3f9be27))
202
+ * fix wrong Heading example about margin collapse ([eb866a8](https://github.com/dnbexperience/eufemia/commit/eb866a855c0cd6a51c984c71af4033845928c640))
203
+ * **Font Weights:** fix console warning when using class ([#2132](https://github.com/dnbexperience/eufemia/issues/2132)) ([0fd9aa1](https://github.com/dnbexperience/eufemia/commit/0fd9aa1c1746d0d0ad771ea7efacfb11088ad007))
204
+ * **FormLabel:** improve description of vertical prop ([#2098](https://github.com/dnbexperience/eufemia/issues/2098)) ([32020bd](https://github.com/dnbexperience/eufemia/commit/32020bddb00005cfa01da531964d113e12bd5905))
205
+ * **FormRow:** refactor jsx examples to tsx ([#2219](https://github.com/dnbexperience/eufemia/issues/2219)) ([38fd221](https://github.com/dnbexperience/eufemia/commit/38fd2213d3fc1d953cc17f8ab2dc0d5eaa5fff4b))
206
+ * **FormSet:** refactor jsx examples to tsx ([#2208](https://github.com/dnbexperience/eufemia/issues/2208)) ([db32e5f](https://github.com/dnbexperience/eufemia/commit/db32e5fd17db4e3cbc40a79a557a2d1f16e3c2a9))
207
+ * **Fragments:** minor docs improvement ([#2232](https://github.com/dnbexperience/eufemia/issues/2232)) ([151a800](https://github.com/dnbexperience/eufemia/commit/151a8009f13c2a34475a8d89d6a94f5b9678a433))
208
+ * **Front Page:** minor text improvements ([#2139](https://github.com/dnbexperience/eufemia/issues/2139)) ([5d9ad4d](https://github.com/dnbexperience/eufemia/commit/5d9ad4d7abb43b961c910cdda458a1993f7346ed))
209
+ * **getOffsetTop:** fix wrong docs and console.log usage ([#2018](https://github.com/dnbexperience/eufemia/issues/2018)) ([9ba16b5](https://github.com/dnbexperience/eufemia/commit/9ba16b5b6ad6116ae7b34345a6409dcca3dfcbed))
210
+ * **GlobalStatus:** improve docs for id prop ([#2067](https://github.com/dnbexperience/eufemia/issues/2067)) ([06e3ab1](https://github.com/dnbexperience/eufemia/commit/06e3ab11e8062342f8a37f45117a3ce40cb15423))
211
+ * **GlobalStatus:** refactor jsx examples to tsx ([#2202](https://github.com/dnbexperience/eufemia/issues/2202)) ([91e4c05](https://github.com/dnbexperience/eufemia/commit/91e4c05582ecd19fa973e154da1cfb8f62f49cef))
212
+ * **Grid:** removes WIP ([350321c](https://github.com/dnbexperience/eufemia/commit/350321ca3096db012ea3b79b556eada17d931c4a))
213
+ * **Heading:** refactor jsx examples to tsx ([#2205](https://github.com/dnbexperience/eufemia/issues/2205)) ([534294e](https://github.com/dnbexperience/eufemia/commit/534294e48c13150f09a5300b2fd698bbbf735081))
214
+ * **Helpers:** Adds info about dnb-unstyled-list in info page ([#2171](https://github.com/dnbexperience/eufemia/issues/2171)) ([37251b5](https://github.com/dnbexperience/eufemia/commit/37251b5e1a838109b74e76e4d2690834bdecb8ba))
215
+ * **HTML Elements:** move mdx of unstyled and unsupported to elements.mdx ([#2154](https://github.com/dnbexperience/eufemia/issues/2154)) ([0982c3e](https://github.com/dnbexperience/eufemia/commit/0982c3e3f34c16b4a088ed54a38d2f8dbbe982e8))
216
+ * **Icon Details:** fix console warning when using class ([#2128](https://github.com/dnbexperience/eufemia/issues/2128)) ([79760c5](https://github.com/dnbexperience/eufemia/commit/79760c58865013fa8ce054cf0a8f3059710c0519))
217
+ * **Icons:** link to v10 docs ([#2182](https://github.com/dnbexperience/eufemia/issues/2182)) ([34c7184](https://github.com/dnbexperience/eufemia/commit/34c7184acf6fdb058982eb780ecf0215b64f9a71))
218
+ * **Input:** adds on_key_down event ([#2062](https://github.com/dnbexperience/eufemia/issues/2062)) ([ddbdff6](https://github.com/dnbexperience/eufemia/commit/ddbdff65fa630e617912d319bd27e30d6c0792ba))
219
+ * **InputMasked:** refactor jsx examples to tsx ([#2207](https://github.com/dnbexperience/eufemia/issues/2207)) ([1253896](https://github.com/dnbexperience/eufemia/commit/1253896c75559e56f71d6d15b813fbd0c74921b5))
220
+ * **Logos:** fix console warning in console ([#2123](https://github.com/dnbexperience/eufemia/issues/2123)) ([d4b5c4c](https://github.com/dnbexperience/eufemia/commit/d4b5c4c4b14966ef4cbf626621aaa625aad0ae4b))
221
+ * make click on anchor with hash work on first click ([#2019](https://github.com/dnbexperience/eufemia/issues/2019)) ([85caef3](https://github.com/dnbexperience/eufemia/commit/85caef363bdcff06b5fa9dd0e8ee029975d49548))
222
+ * minor doc improvements ([#2283](https://github.com/dnbexperience/eufemia/issues/2283)) ([654ae82](https://github.com/dnbexperience/eufemia/commit/654ae829e9631493293310639afdfbf25262097b))
223
+ * **Modal:** refactor jsx examples to tsx ([#2218](https://github.com/dnbexperience/eufemia/issues/2218)) ([532a58f](https://github.com/dnbexperience/eufemia/commit/532a58fa84d37fca75a3c8937c70622289be400f))
224
+ * Move Modal to Dialog/Drawer conversion docs to v10 migration ([#1921](https://github.com/dnbexperience/eufemia/issues/1921)) ([9c6eed7](https://github.com/dnbexperience/eufemia/commit/9c6eed7db717f5df5705014fb18e1e9aa1fdc3b4))
225
+ * **Naming conventions:** fix console warning when using class ([#2129](https://github.com/dnbexperience/eufemia/issues/2129)) ([46031d0](https://github.com/dnbexperience/eufemia/commit/46031d0169ce12c66e5383d12b2bbc6b4368d37f))
226
+ * **NumberFormat:** fix info docs ([#2009](https://github.com/dnbexperience/eufemia/issues/2009)) ([af0e889](https://github.com/dnbexperience/eufemia/commit/af0e889ab553ee9758e1e874d7b0337f3cedc47d))
227
+ * **PaymentCard:** change imports of types to /payment-card ([41dc3ce](https://github.com/dnbexperience/eufemia/commit/41dc3ce0cefbd7b22969fdcdb0964eef4a0f42ad))
228
+ * **Portal:** removes Modal's new status ([#2312](https://github.com/dnbexperience/eufemia/issues/2312)) ([c9d98dd](https://github.com/dnbexperience/eufemia/commit/c9d98ddef163b01d319798c7a494c152ce77b51a))
229
+ * **ProgressIndicator:** removes props min_time and variant ([#1997](https://github.com/dnbexperience/eufemia/issues/1997)) ([26cce3f](https://github.com/dnbexperience/eufemia/commit/26cce3f52b18312e2bbab41ad8ec270bfad8b91d))
230
+ * **ProgressIndicator:** Update size properties ([a02a8fe](https://github.com/dnbexperience/eufemia/commit/a02a8fea8982c24817dc63145c6cf56d4434ac13))
231
+ * **Radio:** improve event docs ([9383afb](https://github.com/dnbexperience/eufemia/commit/9383afb6c8f27cea71994b5006caf75d67029c53))
232
+ * refactor contribution guide getting started ([#2008](https://github.com/dnbexperience/eufemia/issues/2008)) ([0a7cfdd](https://github.com/dnbexperience/eufemia/commit/0a7cfddd9e1fd895cc5376aa85f058650f037631))
233
+ * remove `smoothscroll-polyfill` as a recommendation ([#2020](https://github.com/dnbexperience/eufemia/issues/2020)) ([bae2e89](https://github.com/dnbexperience/eufemia/commit/bae2e899755159c924788e5e378dd0dabcf2319b))
234
+ * remove docs about CSS vars polyfills ([#2145](https://github.com/dnbexperience/eufemia/issues/2145)) ([e423d2d](https://github.com/dnbexperience/eufemia/commit/e423d2d032e9b0e9f9d659068221ea90566e322f))
235
+ * remove docs about importing from @dnb/eufemia/elements ([#2173](https://github.com/dnbexperience/eufemia/issues/2173)) ([6d0bfed](https://github.com/dnbexperience/eufemia/commit/6d0bfed559ab2d9ed7abb250275f00bd77b00044))
236
+ * remove outdated info ([#1940](https://github.com/dnbexperience/eufemia/issues/1940)) ([0f77115](https://github.com/dnbexperience/eufemia/commit/0f77115f869fc9dc279148e170af852af6cba5bc))
237
+ * remove properties import from docs ([#2034](https://github.com/dnbexperience/eufemia/issues/2034)) ([a0aaffc](https://github.com/dnbexperience/eufemia/commit/a0aaffcc2a57aae6d449659fc06950f46e4e1fcb))
238
+ * removes cards and spaceholder indicator ([#2061](https://github.com/dnbexperience/eufemia/issues/2061)) ([f8abfb6](https://github.com/dnbexperience/eufemia/commit/f8abfb6432fdf6784c4538bbddea85bb05b386fc))
239
+ * **ScrollView:** controll -> control ([#2225](https://github.com/dnbexperience/eufemia/issues/2225)) ([17db885](https://github.com/dnbexperience/eufemia/commit/17db88531cd43d43635cc52174d2be2506d5bb11))
240
+ * **ScrollView:** refactor jsx examples to tsx ([#2210](https://github.com/dnbexperience/eufemia/issues/2210)) ([1f97545](https://github.com/dnbexperience/eufemia/commit/1f97545d1f12c928a8a9bf0c0496eb1280ac7bff))
241
+ * **ScrollView:** sets Description as header in docs ([#2168](https://github.com/dnbexperience/eufemia/issues/2168)) ([2d05405](https://github.com/dnbexperience/eufemia/commit/2d05405adb6f1464af5a42c7b5f333954fd5b0d7))
242
+ * **Skeleton:** refactor jsx examples to tsx ([#2203](https://github.com/dnbexperience/eufemia/issues/2203)) ([dabdba6](https://github.com/dnbexperience/eufemia/commit/dabdba608a0b924bbf0033d766a1f0f482fe4b45))
243
+ * **SkipContent:** hide Events tab ([#2282](https://github.com/dnbexperience/eufemia/issues/2282)) ([fcbe37b](https://github.com/dnbexperience/eufemia/commit/fcbe37b53dcbdfa55a5f1103c8041440b31f3864))
244
+ * **SkipContent:** refactor jsx examples to tsx ([#2211](https://github.com/dnbexperience/eufemia/issues/2211)) ([df34f0c](https://github.com/dnbexperience/eufemia/commit/df34f0c96a756f2db396c3e1d26a58b1d05bceca))
245
+ * **Space:** refactor jsx examples to tsx ([#2199](https://github.com/dnbexperience/eufemia/issues/2199)) ([de7645c](https://github.com/dnbexperience/eufemia/commit/de7645c8753770dee18a3de95e114115fe5c3790))
246
+ * **Space:** refactor jsx properties to tsx ([#2216](https://github.com/dnbexperience/eufemia/issues/2216)) ([ecb941e](https://github.com/dnbexperience/eufemia/commit/ecb941e3dcc809947c6912f1eabc477c956e348e))
247
+ * **StepIndicator:** format Steps Parameters table ([#2284](https://github.com/dnbexperience/eufemia/issues/2284)) ([884a09e](https://github.com/dnbexperience/eufemia/commit/884a09e89e4742312904cedb05390b44511e75f9))
248
+ * **Table:** add info about the needed CSS class in v10 ([#1923](https://github.com/dnbexperience/eufemia/issues/1923)) ([407977e](https://github.com/dnbexperience/eufemia/commit/407977e45781ea34ec443a8e1edb2ab75b298b2e))
249
+ * **Table:** enhance info about the component and possibilities ([#2336](https://github.com/dnbexperience/eufemia/issues/2336)) ([f376d1d](https://github.com/dnbexperience/eufemia/commit/f376d1dd44915caa9babbb60d166113c3f40f398))
250
+ * **Table:** improve event docs ([e025745](https://github.com/dnbexperience/eufemia/commit/e025745b32f11815fd651488650c014119884624))
251
+ * **Table:** refactor jsx examples to tsx ([#2206](https://github.com/dnbexperience/eufemia/issues/2206)) ([f2d1c72](https://github.com/dnbexperience/eufemia/commit/f2d1c72d9cb150be5eaca3a593ddcd702bf9056b))
252
+ * **Tag:** improve event docs ([4a01c08](https://github.com/dnbexperience/eufemia/commit/4a01c08dffcdf913cfb7d4b4a1eb788c44b385af))
253
+ * **Timeline:** fix broken link to example ([#2241](https://github.com/dnbexperience/eufemia/issues/2241)) ([418979b](https://github.com/dnbexperience/eufemia/commit/418979b5d27de0415bfd25067352f175de43d69d))
254
+ * **ToggleButton:** improve event docs ([a351019](https://github.com/dnbexperience/eufemia/commit/a35101921c94c6c5a9ecc855a03d8bd5d3740c73))
255
+ * **ToggleButton:** removes outdated label_position docs ([#2141](https://github.com/dnbexperience/eufemia/issues/2141)) ([a067f31](https://github.com/dnbexperience/eufemia/commit/a067f310302d8042f2e6a6ec2d9c88d195d8d334))
256
+ * **TypeScript:** remove outdated docs ([#2124](https://github.com/dnbexperience/eufemia/issues/2124)) ([497b3c3](https://github.com/dnbexperience/eufemia/commit/497b3c33403b67d10e4b2a6314b2dd86c4cac45e))
257
+ * **Typography:** fix console warning when using class ([#2133](https://github.com/dnbexperience/eufemia/issues/2133)) ([3088447](https://github.com/dnbexperience/eufemia/commit/308844762dde469d643821fb1c8174b4d8183e3c))
258
+ * **Typography:** hast -> has ([#2221](https://github.com/dnbexperience/eufemia/issues/2221)) ([3ae59d5](https://github.com/dnbexperience/eufemia/commit/3ae59d53028e128a93d7be49a135ae3925718564))
259
+ * update docs about CSS formatting and styling ([#1964](https://github.com/dnbexperience/eufemia/issues/1964)) ([9b85816](https://github.com/dnbexperience/eufemia/commit/9b858166408312ee5869e35cc176659f03d047ba))
260
+ * update v10 change log ([#1983](https://github.com/dnbexperience/eufemia/issues/1983)) ([8235f50](https://github.com/dnbexperience/eufemia/commit/8235f50f15946909b335c2e7c0f9fba5f1fe1405))
261
+ * update v10-info ([#1998](https://github.com/dnbexperience/eufemia/issues/1998)) ([47fa420](https://github.com/dnbexperience/eufemia/commit/47fa4209a2f55d6b6de593b7ff1b35609b9aa059))
262
+ * **v10:** add docs for HelpButton's modal_props ([#2314](https://github.com/dnbexperience/eufemia/issues/2314)) ([4e825ee](https://github.com/dnbexperience/eufemia/commit/4e825eef7a749acddd8e6a97dc36e616bab31c5e))
263
+ * **v10:** add example for updating import of properties ([#2313](https://github.com/dnbexperience/eufemia/issues/2313)) ([fdee6c3](https://github.com/dnbexperience/eufemia/commit/fdee6c3d969d6d31c03092531c3c94c37503ec3c))
264
+ * **v10:** adds examples for updating import of boolean props ([47f31f1](https://github.com/dnbexperience/eufemia/commit/47f31f1716c38d1674c329ed8576b34e967a65e2))
265
+ * **v10:** adds examples for updating imports to assets and fonts ([f6adcef](https://github.com/dnbexperience/eufemia/commit/f6adcef84042bc27b79f95a7d3bd66817d36555f))
266
+ * **v10:** adds explicit examples for props that's changes type to boolean ([#2292](https://github.com/dnbexperience/eufemia/issues/2292)) ([6b23682](https://github.com/dnbexperience/eufemia/commit/6b236826a04f725b4b5f565ac6633b7f17ada4dd))
267
+ * **v10:** adds info about removal of closeButtonAttributes ([#2296](https://github.com/dnbexperience/eufemia/issues/2296)) ([8859256](https://github.com/dnbexperience/eufemia/commit/88592562b01f26a935c4935ec90371182a3cd1d4))
268
+ * **v10:** adds info about removal of closeButtonAttributes ([#2296](https://github.com/dnbexperience/eufemia/issues/2296)) ([b68b5bd](https://github.com/dnbexperience/eufemia/commit/b68b5bd976d490343ad7cf2a297b94a50fb1c0bb))
269
+ * **v10:** adds info about replacing white with default ([#2295](https://github.com/dnbexperience/eufemia/issues/2295)) ([c938f4d](https://github.com/dnbexperience/eufemia/commit/c938f4dcae219d972c1fd393fe039e4265e53151))
270
+ * **v10:** improve docs for EufemiaStyleImporter files ([#2302](https://github.com/dnbexperience/eufemia/issues/2302)) ([9c0d692](https://github.com/dnbexperience/eufemia/commit/9c0d692daee69dc962e274225c6528505b29406d))
271
+ * **v10:** improves docs of browser assets ([c0c0a3c](https://github.com/dnbexperience/eufemia/commit/c0c0a3cb951a3d29e3e9cd54addf60200013edfe))
272
+ * **v10:** minor spelling improvement ([#2301](https://github.com/dnbexperience/eufemia/issues/2301)) ([8105026](https://github.com/dnbexperience/eufemia/commit/8105026440ca4aef0037ec42b35d2ba269919d57))
273
+ * **v10:** prop change for FormStatus of status to state ([#2293](https://github.com/dnbexperience/eufemia/issues/2293)) ([0cc65be](https://github.com/dnbexperience/eufemia/commit/0cc65bea3bcdc4d5c3eb872c8d09a46e5eb1c0ad))
274
+ * **v10:** where -> was ([44eeeb8](https://github.com/dnbexperience/eufemia/commit/44eeeb8586e4a1d7a64bb87dfe892bba2f3241ea))
275
+
276
+ ## [9.47.6](https://github.com/dnbexperience/eufemia/compare/v9.47.5...v9.47.6) (2023-05-31)
277
+
278
+
279
+ ### Bug Fixes
280
+
281
+ * **Radio:** prevent radio button from shrinking ([#2389](https://github.com/dnbexperience/eufemia/issues/2389)) ([a47934d](https://github.com/dnbexperience/eufemia/commit/a47934dafd13d7223a65151d90daca3cdb75a9bb))
282
+
283
+ ## [9.47.5](https://github.com/dnbexperience/eufemia/compare/v9.47.4...v9.47.5) (2023-05-15)
284
+
285
+
286
+ ### Bug Fixes
287
+
288
+ * **InputMasked:** duplicate decimal number when typing ([#2344](https://github.com/dnbexperience/eufemia/issues/2344)) ([0d66dc0](https://github.com/dnbexperience/eufemia/commit/0d66dc06a9dab2eb9d91f93948337dff78f9346b))
289
+
290
+ ## [9.47.4](https://github.com/dnbexperience/eufemia/compare/v9.47.3...v9.47.4) (2023-05-03)
291
+
292
+
293
+ ### Bug Fixes
294
+
295
+ * **InputMasked:** on custom mask – avoid interaction stall after focus ([#2270](https://github.com/dnbexperience/eufemia/issues/2270)) ([2201ea9](https://github.com/dnbexperience/eufemia/commit/2201ea9e2e764e8ff7a98d591d2916fd3cb37814))
296
+
297
+ ## [9.47.3](https://github.com/dnbexperience/eufemia/compare/v9.47.2...v9.47.3) (2023-03-27)
239
298
 
240
299
 
241
- ### BREAKING CHANGES
300
+ ### Bug Fixes
242
301
 
243
- * **Modal:** - Modal: Remove deprecated `mode` prop – it will default to `custom` mode. Use rather the `Dialog` or the `Drawer` component.
244
- * Remove support for Web Components and Vue
245
- * re-define Media Query Breakpoints and layout width
246
- * Read the docs about migration: https://eufemia.dnb.no/uilib/about-the-lib/releases/eufemia/v10-info
302
+ * **Button:** support for FormRow and FormSet ([#2147](https://github.com/dnbexperience/eufemia/issues/2147)) ([59f0a22](https://github.com/dnbexperience/eufemia/commit/59f0a2244021b7ebd78192f7b5e2d657bd3021aa))
247
303
 
248
- * remove web components and vue support (#1946) ([baa4ca3](https://github.com/dnbexperience/eufemia/commit/baa4ca39ce9ed693462d29c013002c3778e59d08)), closes [#1946](https://github.com/dnbexperience/eufemia/issues/1946)
249
- * re-define Media Query Breakpoints and layout width (#1373) ([73d1b77](https://github.com/dnbexperience/eufemia/commit/73d1b774cf1e5df583b0c8d14dfa985c419fa32a)), closes [#1373](https://github.com/dnbexperience/eufemia/issues/1373)
250
- * v10 ([514becd](https://github.com/dnbexperience/eufemia/commit/514becd1f72d3606e70a4a5b4e8fbdebcb78c229))
304
+ ## [9.47.2](https://github.com/dnbexperience/eufemia/compare/v9.47.1...v9.47.2) (2023-03-16)
251
305
 
252
306
 
253
- ### :bug: Bug Fixes
307
+ ### Bug Fixes
254
308
 
255
- * **Anchor:** comments Anchor's inner_ref usage ([#1919](https://github.com/dnbexperience/eufemia/issues/1919)) ([7653316](https://github.com/dnbexperience/eufemia/commit/76533163649f8104505056b73f193c0d2e285a17))
256
309
  * **Autocomplete:** pass status props to SubmitButton ([#2004](https://github.com/dnbexperience/eufemia/issues/2004)) ([fb89114](https://github.com/dnbexperience/eufemia/commit/fb89114e75ff4111640bc367a10d6faa339c4fe3))
257
- * **Badge:** enhance semantic / accessibility and inherit skeleton from provider ([#1967](https://github.com/dnbexperience/eufemia/issues/1967)) ([5a870a7](https://github.com/dnbexperience/eufemia/commit/5a870a7e7eb2b4802fedc327bc4ddf89c73d4712))
258
- * **Button:** remove left and right padding of tertiary button ([5919c79](https://github.com/dnbexperience/eufemia/commit/5919c79ed4ee3b7da43a5e4975fd3eb61c348122))
259
310
  * **Button:** support rel property ([#1990](https://github.com/dnbexperience/eufemia/issues/1990)) ([ad029f2](https://github.com/dnbexperience/eufemia/commit/ad029f20f21154df40975a82b9b4f7019e373ebf))
260
- * **Dl:** ensure horizontal wrap no matter what available space ([#1965](https://github.com/dnbexperience/eufemia/issues/1965)) ([ab15893](https://github.com/dnbexperience/eufemia/commit/ab15893fc59eafaab369aaffa3975cf7e661c341))
261
- * fix breadcumb alignment after tertiary button changes ([2989af1](https://github.com/dnbexperience/eufemia/commit/2989af1b6aa3abc071511eeaefda94d56692daed))
262
- * fix pagination alignment after tertiary button changes ([ce6e5ea](https://github.com/dnbexperience/eufemia/commit/ce6e5ea232ec3ee2618890894fd6b3f44ce26f48))
263
- * **InfoCard:** enhance accessibility + set max width of 60ch ([#1977](https://github.com/dnbexperience/eufemia/issues/1977)) ([5a4f344](https://github.com/dnbexperience/eufemia/commit/5a4f3442feb2cfe70a9f73fcdb91ee1654e2c4ee))
264
- * remove `maintained node versions` from .browserslistrc ([#1917](https://github.com/dnbexperience/eufemia/issues/1917)) ([9cb43c4](https://github.com/dnbexperience/eufemia/commit/9cb43c485aa1750c05235c517ca84d77f2849a39)), closes [#1912](https://github.com/dnbexperience/eufemia/issues/1912)
265
- * **Timeline:** use ordered list element ([#1962](https://github.com/dnbexperience/eufemia/issues/1962)) ([2b77b8e](https://github.com/dnbexperience/eufemia/commit/2b77b8eda6b52cb16e0568d5736ef593ced9866f))
266
- * upgrade Stylelint from v13 to v15 ([#1995](https://github.com/dnbexperience/eufemia/issues/1995)) ([21a1cdb](https://github.com/dnbexperience/eufemia/commit/21a1cdbddd4867b41174b68a0ac22b18159122db))
267
-
268
-
269
- ### :sparkles: Features
270
-
271
- * **Anchor:** deprecate property target_blank_title ([#1882](https://github.com/dnbexperience/eufemia/issues/1882)) ([8c6448d](https://github.com/dnbexperience/eufemia/commit/8c6448d12abbab4fcf069f91f7405d035d3cd88b))
272
- * build pure component css packages (without deps) ([#1928](https://github.com/dnbexperience/eufemia/issues/1928)) ([5a7e111](https://github.com/dnbexperience/eufemia/commit/5a7e111146e89b2c98dbf1b08f42c2fe18f52061))
273
- * **build:** replace node-sass with dart-sass ([#1934](https://github.com/dnbexperience/eufemia/issues/1934)) ([ba3fed2](https://github.com/dnbexperience/eufemia/commit/ba3fed2d5b02871890a19a0af1e024af9739ed16))
274
- * **Checkbox:** deprecate default_state property ([#1863](https://github.com/dnbexperience/eufemia/issues/1863)) ([e5fb21e](https://github.com/dnbexperience/eufemia/commit/e5fb21e34ec400a5cb8c1eae068be7262513e1e6))
275
- * deprecate StepIndicator v1 ([#1840](https://github.com/dnbexperience/eufemia/issues/1840)) ([c0d9518](https://github.com/dnbexperience/eufemia/commit/c0d95186bac23087118fbd4d3c7cfa282981d13a))
276
- * **DrawerList:** remove use_drawer_on_mobile & enable_closest_observer ([#1879](https://github.com/dnbexperience/eufemia/issues/1879)) ([e56c925](https://github.com/dnbexperience/eufemia/commit/e56c925478a1036f5f269e0c395ffbc9a67b722a))
277
- * **Dropdown:** remove deprecated selected_item property ([#1870](https://github.com/dnbexperience/eufemia/issues/1870)) ([5321b3a](https://github.com/dnbexperience/eufemia/commit/5321b3a252599d92e52d123b740a668c1167f87a))
278
- * **Element:** deprecate css, class, inner_ref, skeleton_method ([#1859](https://github.com/dnbexperience/eufemia/issues/1859)) ([7b9554d](https://github.com/dnbexperience/eufemia/commit/7b9554d66ba3a9d59d448e2e2b12a38ad762edd9))
279
- * **FormRow:** remove indent feature ([#1975](https://github.com/dnbexperience/eufemia/issues/1975)) ([5c58e39](https://github.com/dnbexperience/eufemia/commit/5c58e39dc092041c408f7722a10f0fc5d40087e0))
280
- * **FormStatus:** remove deprecated status property ([#1914](https://github.com/dnbexperience/eufemia/issues/1914)) ([3c867b5](https://github.com/dnbexperience/eufemia/commit/3c867b535969811790be55d9f71531c95c82fbbc))
281
- * **GlobalStatus:** deprecate AddStatus & Set ([#1891](https://github.com/dnbexperience/eufemia/issues/1891)) ([bf382fd](https://github.com/dnbexperience/eufemia/commit/bf382fd8e57ee2c5de2937b3fd24b9d5c8196e1a))
282
- * **H:** deprecate is and style_type properties ([#1856](https://github.com/dnbexperience/eufemia/issues/1856)) ([c9fb5a6](https://github.com/dnbexperience/eufemia/commit/c9fb5a6e8633b2c11422078353243b2417e861f0))
283
- * **Helpers:** deprecate .dnb-sr-only--inline & .dnb-not-sr-only ([#1865](https://github.com/dnbexperience/eufemia/issues/1865)) ([d84a49f](https://github.com/dnbexperience/eufemia/commit/d84a49fde76fc07b2e6fee4d3bf436747bde8aab))
284
- * include all type definitions in repo ([#1996](https://github.com/dnbexperience/eufemia/issues/1996)) ([3a93c5a](https://github.com/dnbexperience/eufemia/commit/3a93c5a2ce307e65467bd19913660134d2a3ea64))
285
- * **InputMasked:** ATTENTION! make allowLeadingZeroes default to true ([#1126](https://github.com/dnbexperience/eufemia/issues/1126)) ([bb2edca](https://github.com/dnbexperience/eufemia/commit/bb2edcae7e8b0209ee6c8b6cf488a234fe058222))
286
- * **Modal, Dialog, Drawer:** remove closeButtonAttributes ([#1926](https://github.com/dnbexperience/eufemia/issues/1926)) ([82cd99d](https://github.com/dnbexperience/eufemia/commit/82cd99d0ccdb98f6d19d4b055f6e11a63873d083))
287
- * **Modal:** remove deprecated mode prop ([#1993](https://github.com/dnbexperience/eufemia/issues/1993)) ([86c8adc](https://github.com/dnbexperience/eufemia/commit/86c8adc11e8dd90708210e3c6ba312d11b9f174f))
288
- * **Modal:** remove deprecated trigger_ props ([#1918](https://github.com/dnbexperience/eufemia/issues/1918)) ([2eced1b](https://github.com/dnbexperience/eufemia/commit/2eced1b6db291f442c6e3309412fa2b95ec3fc0c))
289
- * new browserslist config for es6 builds ([#1833](https://github.com/dnbexperience/eufemia/issues/1833)) ([ab57b84](https://github.com/dnbexperience/eufemia/commit/ab57b84b8351e217d657c4f2cfb2ad45459eaf17))
290
- * **Number:** Removes component ([#1924](https://github.com/dnbexperience/eufemia/issues/1924)) ([aeaadc0](https://github.com/dnbexperience/eufemia/commit/aeaadc060921a9c27d3605c6e7d9b88528d72bb1))
291
- * **P:** deprecate style_type property ([#1855](https://github.com/dnbexperience/eufemia/issues/1855)) ([74bc0ea](https://github.com/dnbexperience/eufemia/commit/74bc0eab3108a7a6570e5f97c5054d6026d46efd))
292
- * **P:** remove deprecated class dnb-p--ingress ([#1872](https://github.com/dnbexperience/eufemia/issues/1872)) ([04e4632](https://github.com/dnbexperience/eufemia/commit/04e46322261e93a20aa01398d5f24983b05cea5c))
293
- * remove support for internet explorer ([#1807](https://github.com/dnbexperience/eufemia/issues/1807)) ([fbfd636](https://github.com/dnbexperience/eufemia/commit/fbfd636ea34c0d6ec1de9ee0de82cb782896a06e))
294
- * replace visual test driver to jest-image-snapshot and Firefox (Playwright) ([#1945](https://github.com/dnbexperience/eufemia/issues/1945)) ([fcc9348](https://github.com/dnbexperience/eufemia/commit/fcc9348c86b52d79d1949a13120e17e782da4d42)), closes [/github.com/puppeteer/puppeteer/issues/7514#issuecomment-1005917527](https://github.com/dnbexperience//github.com/puppeteer/puppeteer/issues/7514/issues/issuecomment-1005917527) [/github.com/dnbexperience/eufemia/blob/88279d1e6903497fce40d6c4322dd9b7c7b9ac3b/packages/dnb-eufemia/src/core/jest/jestSetupScreenshots.js#L39](https://github.com/dnbexperience//github.com/dnbexperience/eufemia/blob/88279d1e6903497fce40d6c4322dd9b7c7b9ac3b/packages/dnb-eufemia/src/core/jest/jestSetupScreenshots.js/issues/L39)
295
- * **ScrollView:** add interactive=auto to observe the content ([#1984](https://github.com/dnbexperience/eufemia/issues/1984)) ([988390c](https://github.com/dnbexperience/eufemia/commit/988390cd29152239ffcaee95125eab473bee1e0b))
296
- * **Section:** deprecate style_type signal-orange ([#1886](https://github.com/dnbexperience/eufemia/issues/1886)) ([661d976](https://github.com/dnbexperience/eufemia/commit/661d9764bfc3cebb20ce1a1a5b4e6a54bb20f27d))
297
- * **SkipContent:** add new component to skip large contents when using tab key ([#1981](https://github.com/dnbexperience/eufemia/issues/1981)) ([c44ef28](https://github.com/dnbexperience/eufemia/commit/c44ef283406295d74dc002cea111b97bd406839c))
298
- * **Slider:** deprecate use_scrollwheel ([#1889](https://github.com/dnbexperience/eufemia/issues/1889)) ([639df46](https://github.com/dnbexperience/eufemia/commit/639df46885165812c38fb6daa1e8eb53745d33a5))
299
- * **Slider:** remove deprecated onInit prop ([#1909](https://github.com/dnbexperience/eufemia/issues/1909)) ([0595a53](https://github.com/dnbexperience/eufemia/commit/0595a537f4de60d92efa9864d8a05f74e8025220))
300
- * **Slider:** remove dnb-range styling ([#1890](https://github.com/dnbexperience/eufemia/issues/1890)) ([1d2693c](https://github.com/dnbexperience/eufemia/commit/1d2693ceb35763064f556067255cc45249b813fa))
301
- * **Space:** add conditional reset class: `dnb-space__reset` ([#1961](https://github.com/dnbexperience/eufemia/issues/1961)) ([a79bb2a](https://github.com/dnbexperience/eufemia/commit/a79bb2a80901019aa2bdfd388f6ec1326f2db909))
302
- * **SpacingUtils:** deprecate createStyleObject ([#1892](https://github.com/dnbexperience/eufemia/issues/1892)) ([cadf378](https://github.com/dnbexperience/eufemia/commit/cadf3784fa28670b0c6211072380f81a4153eb9f))
303
- * **Switch:** deprecate default_state property ([#1864](https://github.com/dnbexperience/eufemia/issues/1864)) ([da2c568](https://github.com/dnbexperience/eufemia/commit/da2c568d5ea777ec66f0f6d80374ca7f3f3516ef))
304
- * **Table:** deprecate sticky_offset ([#1883](https://github.com/dnbexperience/eufemia/issues/1883)) ([5a242a1](https://github.com/dnbexperience/eufemia/commit/5a242a1c22d7b2d01d1c549d4c3400e46777e57d))
305
- * **Tags:** removed deprecated comments ([#1857](https://github.com/dnbexperience/eufemia/issues/1857)) ([9af5268](https://github.com/dnbexperience/eufemia/commit/9af5268aee6c7859132d584f8f2a5e96f7a824c9))
306
- * **Timeline:** deprecate name and date props ([#1884](https://github.com/dnbexperience/eufemia/issues/1884)) ([a95db13](https://github.com/dnbexperience/eufemia/commit/a95db13c0e145fdcc55853b3922d4e4c82fea20e))
307
- * **Typography:** removed deprecated comments ([#1858](https://github.com/dnbexperience/eufemia/issues/1858)) ([1fd2b48](https://github.com/dnbexperience/eufemia/commit/1fd2b48f1dfe1c74d8fbda96c0c6a7ebabdfd716))
308
-
309
-
310
- ### :memo: Documentation
311
-
312
- * add change log about v10 ([8cbf228](https://github.com/dnbexperience/eufemia/commit/8cbf228827e4edf43ef13462d983f4e8081abd63))
313
- * add info about the tertiary button "visual" breaking change ([4df8d93](https://github.com/dnbexperience/eufemia/commit/4df8d9387c46eb1c64b7c00e753479f303eef56a))
314
- * **Dropdown:** remove selected_key in events on_change & on_select ([#2001](https://github.com/dnbexperience/eufemia/issues/2001)) ([c540619](https://github.com/dnbexperience/eufemia/commit/c54061926e5f2dba10af4ed979f1397bda91b915))
315
- * Move Modal to Dialog/Drawer conversion docs to v10 migration ([#1921](https://github.com/dnbexperience/eufemia/issues/1921)) ([cb43cf4](https://github.com/dnbexperience/eufemia/commit/cb43cf433a8cb5bc4aa747f2d59278b7d171422b))
316
- * **NumberFormat:** fix info docs ([#2009](https://github.com/dnbexperience/eufemia/issues/2009)) ([30a529a](https://github.com/dnbexperience/eufemia/commit/30a529acbe2b51325137f5e547660e6ab1b94c30))
317
- * **ProgressIndicator:** removes props min_time and variant ([#1997](https://github.com/dnbexperience/eufemia/issues/1997)) ([f734a1a](https://github.com/dnbexperience/eufemia/commit/f734a1aaf141a9828e1200db37f04bec6354fcb6))
318
- * refactor contribution guide getting started ([#2008](https://github.com/dnbexperience/eufemia/issues/2008)) ([94d5f43](https://github.com/dnbexperience/eufemia/commit/94d5f43cd99b7fc6adc9332029b256ca04a6389d))
319
- * remove outdated info ([#1940](https://github.com/dnbexperience/eufemia/issues/1940)) ([eb93445](https://github.com/dnbexperience/eufemia/commit/eb93445e9cc0f54ae3d37e9b7f207e9518629a56))
320
- * **Spacing:** minor improvement to space example ([#1992](https://github.com/dnbexperience/eufemia/issues/1992)) ([5b71585](https://github.com/dnbexperience/eufemia/commit/5b7158570f58d59e9265d98e530317727f82525e))
321
- * **Table:** add info about the needed CSS class in v10 ([#1923](https://github.com/dnbexperience/eufemia/issues/1923)) ([c724175](https://github.com/dnbexperience/eufemia/commit/c724175b0b8aed0bc623b06eb31077e04618b4be))
322
- * update docs about CSS formatting and styling ([#1964](https://github.com/dnbexperience/eufemia/issues/1964)) ([ab2dd40](https://github.com/dnbexperience/eufemia/commit/ab2dd401e1caba3c55a21b917f052d458bd748b1))
323
- * update v10 change log ([#1983](https://github.com/dnbexperience/eufemia/issues/1983)) ([bd41665](https://github.com/dnbexperience/eufemia/commit/bd41665cdaaf3f0a73daa75bf90b4cc14499ce00))
324
- * update v10-info ([#1998](https://github.com/dnbexperience/eufemia/issues/1998)) ([9ae40f1](https://github.com/dnbexperience/eufemia/commit/9ae40f1218073f07bf85ac4542c392a863865605))
311
+ * remove FormRow context support from components not using FormRow ([#2103](https://github.com/dnbexperience/eufemia/issues/2103)) ([3a39134](https://github.com/dnbexperience/eufemia/commit/3a39134c883e70daf6ef374c85ea8ddbce317776))
325
312
 
326
313
  ## [9.47.1](https://github.com/dnbexperience/eufemia/compare/v9.47.0...v9.47.1) (2023-02-13)
327
314