@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 +4 -0
- package/dist/cjs/z-alert_66.cjs.entry.js +2 -2
- package/dist/collection/snowflakes/registro-table/z-registro-table-expanded-row/index.js +1 -2
- package/dist/collection/snowflakes/registro-table/z-registro-table-expanded-row/styles.css +0 -7
- package/dist/esm/z-alert_66.entry.js +2 -2
- package/dist/web-components-library/{p-daae9c84.entry.js → p-a3e79a8c.entry.js} +1 -1
- package/dist/web-components-library/web-components-library.esm.js +1 -1
- package/package.json +1 -1
- package/www/build/{p-daae9c84.entry.js → p-a3e79a8c.entry.js} +1 -1
- package/www/build/p-ccfd3278.js +1 -0
- package/www/build/p-ea943cbd.css +1 -0
- package/www/build/web-components-library.esm.js +1 -1
- package/www/index.html +1 -1
- package/www/build/p-97a11655.css +0 -789
- package/www/build/p-b9f0c115.js +0 -122
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{
|
|
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("
|
|
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("
|
|
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{
|
|
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("
|
|
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;
|