@db-ux/v-core-components 4.2.2 → 4.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @db-ux/v-core-components
2
2
 
3
+ ## 4.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(SASS): return typed values from scss functions `px-to-rem` and `px-to-em` instead of strings - [see commit e1be60a](https://github.com/db-ux-design-system/core-web/commit/e1be60a871596107d8026390b194f0730c84a8ad)
8
+
9
+ - refactor(css): replacing slow selector - [see commit 1133c21](https://github.com/db-ux-design-system/core-web/commit/1133c216ab5ec802241c6986fc9287ff22a287b0)
10
+
11
+ - fix: DBSection ignoring `id` prop during SSR - [see commit 254a705](https://github.com/db-ux-design-system/core-web/commit/254a70507422b070c35b69487323b797de3c73a9)
12
+
13
+ - fix(textarea): "responsiveness" due to CSS selector - [see commit c1104df](https://github.com/db-ux-design-system/core-web/commit/c1104dfe242a455ea8cf80716322a591e6e6e109)
14
+
3
15
  ## 4.2.2
4
16
 
5
17
  ### Patch Changes
@@ -1,5 +1,3 @@
1
- import { ContainerWidthProps, GlobalProps, GlobalState, SpacingProps } from '../../shared/model';
1
+ import { ContainerWidthProps, GlobalProps, SpacingProps } from '../../shared/model';
2
2
  export type DBSectionDefaultProps = {};
3
3
  export type DBSectionProps = DBSectionDefaultProps & GlobalProps & SpacingProps & ContainerWidthProps;
4
- export type DBSectionDefaultState = {};
5
- export type DBSectionState = DBSectionDefaultState & GlobalState;