@db-ux/ngx-core-components 4.2.2-css-selectors-hopefully-final-try-fingers-crossed-0e54e19 → 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/ngx-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
@@ -6268,7 +6268,6 @@ class DBSection {
6268
6268
  this.spacing = input(...(ngDevMode ? [undefined, { debugName: "spacing" }] : []));
6269
6269
  this.width = input(...(ngDevMode ? [undefined, { debugName: "width" }] : []));
6270
6270
  this._ref = viewChild("_ref", ...(ngDevMode ? [{ debugName: "_ref" }] : []));
6271
- this._id = signal(DEFAULT_ID, ...(ngDevMode ? [{ debugName: "_id" }] : []));
6272
6271
  }
6273
6272
  /**
6274
6273
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -6306,13 +6305,12 @@ class DBSection {
6306
6305
  if (typeof window !== "undefined") {
6307
6306
  const element = this._ref()?.nativeElement;
6308
6307
  this.enableAttributePassing(element, "db-section");
6309
- this._id.set(this.id() || "section-" + uuid());
6310
6308
  }
6311
6309
  }
6312
6310
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: DBSection, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6313
6311
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.3.15", type: DBSection, isStandalone: true, selector: "db-section", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, spacing: { classPropertyName: "spacing", publicName: "spacing", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `<section
6314
6312
  #_ref
6315
- [attr.id]="_id()"
6313
+ [attr.id]="id()"
6316
6314
  [class]="cls('db-section', className())"
6317
6315
  [attr.data-spacing]="spacing() || 'medium'"
6318
6316
  [attr.data-width]="width()"
@@ -6324,7 +6322,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
6324
6322
  type: Component,
6325
6323
  args: [{ selector: "db-section", standalone: true, imports: [CommonModule], template: `<section
6326
6324
  #_ref
6327
- [attr.id]="_id()"
6325
+ [attr.id]="id()"
6328
6326
  [class]="cls('db-section', className())"
6329
6327
  [attr.data-spacing]="spacing() || 'medium'"
6330
6328
  [attr.data-width]="width()"