@zanichelli/albe-web-components 2.33.0 → 2.33.2

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
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [2.33.2](https://github.com/ZanichelliEditore/design-system/compare/v2.33.1...v2.33.2) (2022-02-24)
6
+
7
+ ### [2.33.1](https://github.com/ZanichelliEditore/design-system/compare/v2.33.0...v2.33.1) (2022-02-23)
8
+
5
9
  ## [2.33.0](https://github.com/ZanichelliEditore/design-system/compare/v2.32.0...v2.33.0) (2022-02-17)
6
10
 
7
11
 
@@ -2781,14 +2781,14 @@ const ZRegistroTableEmptyBox = class {
2781
2781
  };
2782
2782
  ZRegistroTableEmptyBox.style = stylesCss$e;
2783
2783
 
2784
- const stylesCss$d = ":host{font-family:var(--dashboard-font);background-color:var(--gray50);display:none}:host>td>div.content-container{padding:0 calc(var(--space-unit) * 2) 0 calc(var(--space-unit) * 6);box-shadow:var(--shadow-2);margin-bottom:calc(var(--space-unit) / 2)}:host>td>div.content-container>div.inner-content{padding:calc(var(--space-unit) * 2) 0 calc(var(--space-unit) * 2) 0;border-top:1px solid var(--gray200)}";
2784
+ const stylesCss$d = ":host{background-color:var(--gray50);display:none}:host>td>div.content-container{box-shadow:var(--shadow-2);margin-bottom:calc(var(--space-unit) / 2)}";
2785
2785
 
2786
2786
  const ZRegistroTableExpandedRow = class {
2787
2787
  constructor(hostRef) {
2788
2788
  index.registerInstance(this, hostRef);
2789
2789
  }
2790
2790
  render() {
2791
- return (index.h("td", { colSpan: this.colSpan }, index.h("div", { class: "content-container" }, index.h("div", { class: "inner-content" }, index.h("slot", null)))));
2791
+ return (index.h("td", { colSpan: this.colSpan }, index.h("div", { class: "content-container" }, index.h("slot", null))));
2792
2792
  }
2793
2793
  };
2794
2794
  ZRegistroTableExpandedRow.style = stylesCss$d;
@@ -3,8 +3,7 @@ export class ZRegistroTableExpandedRow {
3
3
  render() {
4
4
  return (h("td", { colSpan: this.colSpan },
5
5
  h("div", { class: "content-container" },
6
- h("div", { class: "inner-content" },
7
- h("slot", null)))));
6
+ h("slot", null))));
8
7
  }
9
8
  static get is() { return "z-registro-table-expanded-row"; }
10
9
  static get encapsulation() { return "shadow"; }
@@ -1,16 +1,9 @@
1
1
  :host {
2
- font-family: var(--dashboard-font);
3
2
  background-color: var(--gray50);
4
3
  display: none;
5
4
  }
6
5
 
7
6
  :host > td > div.content-container {
8
- padding: 0 calc(var(--space-unit) * 2) 0 calc(var(--space-unit) * 6);
9
7
  box-shadow: var(--shadow-2);
10
8
  margin-bottom: calc(var(--space-unit) / 2);
11
9
  }
12
-
13
- :host > td > div.content-container > div.inner-content {
14
- padding: calc(var(--space-unit) * 2) 0 calc(var(--space-unit) * 2) 0;
15
- border-top: 1px solid var(--gray200);
16
- }
@@ -2777,14 +2777,14 @@ const ZRegistroTableEmptyBox = class {
2777
2777
  };
2778
2778
  ZRegistroTableEmptyBox.style = stylesCss$e;
2779
2779
 
2780
- const stylesCss$d = ":host{font-family:var(--dashboard-font);background-color:var(--gray50);display:none}:host>td>div.content-container{padding:0 calc(var(--space-unit) * 2) 0 calc(var(--space-unit) * 6);box-shadow:var(--shadow-2);margin-bottom:calc(var(--space-unit) / 2)}:host>td>div.content-container>div.inner-content{padding:calc(var(--space-unit) * 2) 0 calc(var(--space-unit) * 2) 0;border-top:1px solid var(--gray200)}";
2780
+ const stylesCss$d = ":host{background-color:var(--gray50);display:none}:host>td>div.content-container{box-shadow:var(--shadow-2);margin-bottom:calc(var(--space-unit) / 2)}";
2781
2781
 
2782
2782
  const ZRegistroTableExpandedRow = class {
2783
2783
  constructor(hostRef) {
2784
2784
  registerInstance(this, hostRef);
2785
2785
  }
2786
2786
  render() {
2787
- return (h("td", { colSpan: this.colSpan }, h("div", { class: "content-container" }, h("div", { class: "inner-content" }, h("slot", null)))));
2787
+ return (h("td", { colSpan: this.colSpan }, h("div", { class: "content-container" }, h("slot", null))));
2788
2788
  }
2789
2789
  };
2790
2790
  ZRegistroTableExpandedRow.style = stylesCss$d;