@zanichelli/albe-web-components 2.30.0-rc3 → 2.30.0-rc7
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/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/web-components-library.cjs.js +1 -1
- package/dist/cjs/z-alert_66.cjs.entry.js +53 -43
- package/dist/collection/components/navigation/z-app-topbar/index.js +29 -36
- package/dist/collection/components/navigation/z-app-topbar/styles.css +17 -20
- package/dist/collection/components/navigation/z-user-dropdown/index.js +44 -44
- package/dist/collection/components/navigation/z-user-dropdown/styles.css +23 -18
- package/dist/collection/snowflakes/registro-table/z-registro-table/index.js +6 -1
- package/dist/collection/snowflakes/registro-table/z-registro-table/styles.css +5 -6
- package/dist/collection/snowflakes/registro-table/z-registro-table-empty-box/index.js +9 -4
- package/dist/esm/loader.js +1 -1
- package/dist/esm/web-components-library.js +1 -1
- package/dist/esm/z-alert_66.entry.js +53 -43
- package/dist/types/components/navigation/z-app-topbar/index.d.ts +8 -9
- package/dist/types/components/navigation/z-user-dropdown/index.d.ts +10 -10
- package/dist/types/components.d.ts +21 -21
- package/dist/types/snowflakes/registro-table/z-registro-table-empty-box/index.d.ts +5 -0
- package/dist/web-components-library/{p-38c9077a.entry.js → p-9cefa3bf.entry.js} +2 -2
- package/dist/web-components-library/web-components-library.esm.js +1 -1
- package/package.json +1 -1
- package/www/build/p-0b4eabaf.js +1 -0
- package/www/build/{p-38c9077a.entry.js → p-9cefa3bf.entry.js} +2 -2
- package/www/build/web-components-library.esm.js +1 -1
- package/www/index.html +3 -3
- package/www/pages/notification.html +1 -1
- package/www/build/p-a354f241.js +0 -1
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
top: 0;
|
|
6
6
|
height: calc(var(--space-unit) * 6);
|
|
7
7
|
padding: calc(var(--space-unit) / 2) calc(var(--space-unit) * 2);
|
|
8
|
-
border-radius: var(--border-radius
|
|
9
|
-
background-color: var(--
|
|
8
|
+
border-radius: var(--border-no-radius);
|
|
9
|
+
background-color: var(--gray900);
|
|
10
10
|
z-index: 99;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
:host(.light) {
|
|
14
|
-
background-color: var(--
|
|
14
|
+
background-color: var(--color-white);
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
:host > div {
|
|
@@ -20,16 +20,18 @@
|
|
|
20
20
|
align-items: center;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
#
|
|
23
|
+
:host(.limited-width) #content-container {
|
|
24
|
+
margin: auto;
|
|
25
|
+
max-width: var(--mw);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.content-panel {
|
|
24
29
|
display: flex;
|
|
25
|
-
gap: calc(var(--space-unit) + 2px);
|
|
26
30
|
align-items: center
|
|
27
31
|
}
|
|
28
32
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
gap: calc(var(--space-unit) * 2);
|
|
32
|
-
align-items: center;
|
|
33
|
+
.content-panel > :not(:last-child) {
|
|
34
|
+
margin-right: calc(var(--space-unit) * 2);
|
|
33
35
|
}
|
|
34
36
|
|
|
35
37
|
#divider-container {
|
|
@@ -37,26 +39,26 @@
|
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
z-link {
|
|
40
|
-
font-family: var(--
|
|
42
|
+
font-family: var(--font-family-sans);
|
|
41
43
|
font-weight: var(--font-sb);
|
|
42
44
|
font-size: 14px;
|
|
43
45
|
line-height: 20px;
|
|
44
46
|
letter-spacing: 0.3px;
|
|
45
47
|
}
|
|
46
48
|
|
|
47
|
-
z-logo {
|
|
48
|
-
margin-right: calc(var(--space-unit) - 2px);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
49
|
/* Tablet breakpoint */
|
|
52
50
|
@media only screen and (min-width: 768px) {
|
|
53
51
|
:host {
|
|
54
52
|
padding: var(--space-unit) calc(var(--space-unit) * 2) var(--space-unit) var(--space-unit);
|
|
55
53
|
}
|
|
56
54
|
|
|
55
|
+
:host(.limited-width) {
|
|
56
|
+
padding: var(--space-unit);
|
|
57
|
+
}
|
|
58
|
+
|
|
57
59
|
#divider-container {
|
|
58
60
|
display: block;
|
|
59
|
-
height:
|
|
61
|
+
height: calc(var(--space-unit) * 3);
|
|
60
62
|
}
|
|
61
63
|
}
|
|
62
64
|
|
|
@@ -66,9 +68,4 @@ z-logo {
|
|
|
66
68
|
|
|
67
69
|
/* Wide breakpoint */
|
|
68
70
|
@media only screen and (min-width: 1366px) {
|
|
69
|
-
#content-container.limited-width {
|
|
70
|
-
margin: auto;
|
|
71
|
-
max-width: var(--mw);
|
|
72
|
-
}
|
|
73
|
-
|
|
74
71
|
}
|
|
@@ -3,8 +3,8 @@ import { mobileBreakpoint } from "../../../constants/breakpoints";
|
|
|
3
3
|
export class ZUserDropdown {
|
|
4
4
|
constructor() {
|
|
5
5
|
/** if inner components colors are inverted, or not, default false */
|
|
6
|
-
this.
|
|
7
|
-
this.
|
|
6
|
+
this.useInverseColors = false;
|
|
7
|
+
this.isMenuOpen = false;
|
|
8
8
|
this.handleLoggedButtonClick = this.handleLoggedButtonClick.bind(this);
|
|
9
9
|
this.emitDropdownMenuLinkClick = this.emitDropdownMenuLinkClick.bind(this);
|
|
10
10
|
}
|
|
@@ -15,81 +15,81 @@ export class ZUserDropdown {
|
|
|
15
15
|
this.setMobileAndDivToResizeWidth();
|
|
16
16
|
}
|
|
17
17
|
componentWillRender() {
|
|
18
|
-
if (this.
|
|
19
|
-
this.
|
|
18
|
+
if (this.menuContent) {
|
|
19
|
+
this.linkArray = typeof this.menuContent === "string" ? JSON.parse(this.menuContent) : this.menuContent;
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
setMobileAndDivToResizeWidth() {
|
|
23
23
|
var _a;
|
|
24
|
-
if (this.
|
|
25
|
-
this.
|
|
26
|
-
if (this.logged && !this.
|
|
27
|
-
this.
|
|
24
|
+
if (this.divToResize) {
|
|
25
|
+
this.isMobile = window.screen.width <= mobileBreakpoint || window.innerWidth <= mobileBreakpoint;
|
|
26
|
+
if (this.logged && !this.isMobile && this.isMenuOpen) {
|
|
27
|
+
this.divToResize.style.width = `${(_a = this.userButton) === null || _a === void 0 ? void 0 : _a.offsetWidth}px`;
|
|
28
28
|
}
|
|
29
29
|
else {
|
|
30
|
-
this.
|
|
30
|
+
this.divToResize.removeAttribute('style');
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
emitUserButtonClick() {
|
|
35
|
-
this.userButtonClick.emit(this.
|
|
35
|
+
this.userButtonClick.emit(this.isMenuOpen);
|
|
36
36
|
}
|
|
37
37
|
emitDropdownMenuLinkClick(e) {
|
|
38
|
-
this.
|
|
38
|
+
this.isMenuOpen = false;
|
|
39
39
|
this.dropdownMenuLinkClick.emit({ e, linkId: e.detail.linkId });
|
|
40
40
|
}
|
|
41
41
|
handleResize() {
|
|
42
|
-
this.
|
|
42
|
+
this.isMobile = window.innerWidth <= mobileBreakpoint;
|
|
43
43
|
}
|
|
44
44
|
handleOrientationChange() {
|
|
45
|
-
this.
|
|
45
|
+
this.isMobile = screen.width <= mobileBreakpoint;
|
|
46
46
|
}
|
|
47
47
|
handleClickOutside(e) {
|
|
48
48
|
if (e.target.nodeName !== "Z-USER-DROPDOWN") {
|
|
49
|
-
this.
|
|
49
|
+
this.isMenuOpen = false;
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
handleLoggedButtonClick() {
|
|
53
|
-
this.
|
|
53
|
+
this.isMenuOpen = !this.isMenuOpen;
|
|
54
54
|
this.emitUserButtonClick();
|
|
55
55
|
}
|
|
56
56
|
renderGuestButton() {
|
|
57
|
-
return (h("button", { id: "guestbutton", class: this.
|
|
57
|
+
return (h("button", { id: "guestbutton", class: this.useInverseColors ? "inverse" : "", onClick: () => this.emitUserButtonClick() }, "ENTRA"));
|
|
58
58
|
}
|
|
59
59
|
renderLoggedButton() {
|
|
60
|
-
const direction = this.
|
|
61
|
-
const colorClass = this.
|
|
62
|
-
return (h("button", { ref: (el) => (this.
|
|
60
|
+
const direction = this.isMenuOpen ? "up" : "down";
|
|
61
|
+
const colorClass = this.useInverseColors ? "inverse" : "";
|
|
62
|
+
return (h("button", { ref: (el) => (this.userButton = el), title: this.userFullName, class: `${colorClass} ${this.isMenuOpen ? "open" : ""}`, onClick: this.handleLoggedButtonClick },
|
|
63
63
|
h("div", null,
|
|
64
64
|
h("div", { class: "firstline" },
|
|
65
65
|
h("z-icon", { class: colorClass, name: "user-avatar-filled", height: 16, width: 16 }),
|
|
66
|
-
!this.
|
|
66
|
+
!this.isMobile && h("div", { class: `userfullname ${colorClass}` }, this.userFullName),
|
|
67
67
|
h("z-icon", { class: colorClass, name: `caret-${direction}-filled`, height: 16, width: 16 })),
|
|
68
|
-
!this.
|
|
68
|
+
!this.isMobile && this.isMenuOpen && h("div", { class: `useremail ${colorClass}` }, this.userEmail))));
|
|
69
69
|
}
|
|
70
70
|
getZLinkTextcolor() {
|
|
71
|
-
if (this.
|
|
72
|
-
return this.
|
|
71
|
+
if (this.isMobile) {
|
|
72
|
+
return this.useInverseColors ? "black" : "white";
|
|
73
73
|
}
|
|
74
74
|
else {
|
|
75
|
-
return this.
|
|
75
|
+
return this.useInverseColors ? "white" : "black";
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
renderDropdownMenu() {
|
|
79
|
-
const colorClass = this.
|
|
80
|
-
return (this.
|
|
81
|
-
this.
|
|
79
|
+
const colorClass = this.useInverseColors ? "inverse" : "";
|
|
80
|
+
return (this.isMenuOpen && (h("ul", { class: colorClass },
|
|
81
|
+
this.isMobile &&
|
|
82
82
|
h("li", { class: colorClass },
|
|
83
|
-
h("div", { class: `userfullname ${colorClass}` }, this.
|
|
84
|
-
h("div", { class: `useremail ${colorClass}` }, this.
|
|
85
|
-
this.
|
|
83
|
+
h("div", { class: `userfullname ${colorClass}` }, this.userFullName),
|
|
84
|
+
h("div", { class: `useremail ${colorClass}` }, this.userEmail)),
|
|
85
|
+
this.linkArray && this.linkArray.map((link) => h("li", { id: link.id, class: colorClass },
|
|
86
86
|
h("z-link", { textcolor: this.getZLinkTextcolor(), href: link.link, htmlid: link.id, target: link.target, icon: link.icon, onZLinkClick: this.emitDropdownMenuLinkClick }, link.label))))));
|
|
87
87
|
}
|
|
88
88
|
render() {
|
|
89
|
-
const openClass = `${this.logged && this.
|
|
90
|
-
const colorClass = this.
|
|
89
|
+
const openClass = `${this.logged && this.isMenuOpen ? "open" : ""}`;
|
|
90
|
+
const colorClass = this.useInverseColors ? "inverse" : "";
|
|
91
91
|
return (h(Host, { class: colorClass },
|
|
92
|
-
h("div", { ref: (el) => (this.
|
|
92
|
+
h("div", { ref: (el) => (this.divToResize = el), class: openClass },
|
|
93
93
|
h("div", { class: `${colorClass} ${openClass}` },
|
|
94
94
|
this.logged ? this.renderLoggedButton() : this.renderGuestButton(),
|
|
95
95
|
this.logged && this.renderDropdownMenu()))));
|
|
@@ -120,7 +120,7 @@ export class ZUserDropdown {
|
|
|
120
120
|
"attribute": "logged",
|
|
121
121
|
"reflect": false
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"userFullName": {
|
|
124
124
|
"type": "string",
|
|
125
125
|
"mutable": false,
|
|
126
126
|
"complexType": {
|
|
@@ -134,10 +134,10 @@ export class ZUserDropdown {
|
|
|
134
134
|
"tags": [],
|
|
135
135
|
"text": "user full name"
|
|
136
136
|
},
|
|
137
|
-
"attribute": "
|
|
137
|
+
"attribute": "user-full-name",
|
|
138
138
|
"reflect": false
|
|
139
139
|
},
|
|
140
|
-
"
|
|
140
|
+
"userEmail": {
|
|
141
141
|
"type": "string",
|
|
142
142
|
"mutable": false,
|
|
143
143
|
"complexType": {
|
|
@@ -151,10 +151,10 @@ export class ZUserDropdown {
|
|
|
151
151
|
"tags": [],
|
|
152
152
|
"text": "user email"
|
|
153
153
|
},
|
|
154
|
-
"attribute": "
|
|
154
|
+
"attribute": "user-email",
|
|
155
155
|
"reflect": false
|
|
156
156
|
},
|
|
157
|
-
"
|
|
157
|
+
"menuContent": {
|
|
158
158
|
"type": "string",
|
|
159
159
|
"mutable": false,
|
|
160
160
|
"complexType": {
|
|
@@ -173,10 +173,10 @@ export class ZUserDropdown {
|
|
|
173
173
|
"tags": [],
|
|
174
174
|
"text": "Json stringified or array to fill menu dropdown"
|
|
175
175
|
},
|
|
176
|
-
"attribute": "
|
|
176
|
+
"attribute": "menu-content",
|
|
177
177
|
"reflect": false
|
|
178
178
|
},
|
|
179
|
-
"
|
|
179
|
+
"useInverseColors": {
|
|
180
180
|
"type": "boolean",
|
|
181
181
|
"mutable": false,
|
|
182
182
|
"complexType": {
|
|
@@ -190,14 +190,14 @@ export class ZUserDropdown {
|
|
|
190
190
|
"tags": [],
|
|
191
191
|
"text": "if inner components colors are inverted, or not, default false"
|
|
192
192
|
},
|
|
193
|
-
"attribute": "
|
|
193
|
+
"attribute": "use-inverse-colors",
|
|
194
194
|
"reflect": false,
|
|
195
195
|
"defaultValue": "false"
|
|
196
196
|
}
|
|
197
197
|
}; }
|
|
198
198
|
static get states() { return {
|
|
199
|
-
"
|
|
200
|
-
"
|
|
199
|
+
"isMenuOpen": {},
|
|
200
|
+
"isMobile": {}
|
|
201
201
|
}; }
|
|
202
202
|
static get events() { return [{
|
|
203
203
|
"method": "userButtonClick",
|
|
@@ -207,7 +207,7 @@ export class ZUserDropdown {
|
|
|
207
207
|
"composed": true,
|
|
208
208
|
"docs": {
|
|
209
209
|
"tags": [],
|
|
210
|
-
"text": "Emitted on enter or user Button click, returns
|
|
210
|
+
"text": "Emitted on enter or user Button click, returns isMenuOpen (bool)"
|
|
211
211
|
},
|
|
212
212
|
"complexType": {
|
|
213
213
|
"original": "any",
|
|
@@ -44,13 +44,14 @@ z-icon.inverse {
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
ul {
|
|
47
|
+
box-sizing: border-box;
|
|
47
48
|
position: absolute;
|
|
48
49
|
left: 0;
|
|
49
50
|
padding: calc(var(--space-unit) / 2) calc(var(--space-unit) * 2) 0 calc(var(--space-unit) * 2);
|
|
50
51
|
width: 100%;
|
|
51
52
|
margin: calc(var(--space-unit) * 1.5) 0 0 0;
|
|
52
53
|
background-color: var(--bg-grey-900);
|
|
53
|
-
font-family: var(--
|
|
54
|
+
font-family: var(--font-family-sans);
|
|
54
55
|
font-weight: var(--font-sb);
|
|
55
56
|
font-size: 14px;
|
|
56
57
|
line-height: 20px;
|
|
@@ -64,8 +65,9 @@ ul.inverse {
|
|
|
64
65
|
ul > li {
|
|
65
66
|
display: flex;
|
|
66
67
|
justify-content: flex-end;
|
|
68
|
+
white-space: nowrap;
|
|
67
69
|
padding: calc(var(--space-unit) * 1.5 - 1px) 0;
|
|
68
|
-
margin: 0
|
|
70
|
+
margin: 0;
|
|
69
71
|
border-bottom: var(--border-base) solid var(--bg-grey-700);
|
|
70
72
|
}
|
|
71
73
|
|
|
@@ -76,6 +78,7 @@ ul > li.inverse {
|
|
|
76
78
|
ul > li:first-child {
|
|
77
79
|
border-top: none;
|
|
78
80
|
padding-top: 0;
|
|
81
|
+
padding-bottom: calc(var(--space-unit) + 6px);
|
|
79
82
|
flex-direction: column;
|
|
80
83
|
align-items: end;
|
|
81
84
|
}
|
|
@@ -92,7 +95,7 @@ ul > li:last-child {
|
|
|
92
95
|
align-items: center;
|
|
93
96
|
justify-content: center;
|
|
94
97
|
width: 100%;
|
|
95
|
-
font-family: var(--
|
|
98
|
+
font-family: var(--font-family-sans);
|
|
96
99
|
font-weight: var(--font-sb);
|
|
97
100
|
font-size: 14px;
|
|
98
101
|
line-height: 1;
|
|
@@ -125,12 +128,14 @@ ul > li:last-child {
|
|
|
125
128
|
overflow: hidden;
|
|
126
129
|
max-width: 250px;
|
|
127
130
|
text-overflow: ellipsis;
|
|
131
|
+
width: 100%;
|
|
128
132
|
color: var(--text-white);
|
|
129
|
-
font-family: var(--
|
|
133
|
+
font-family: var(--font-family-sans);
|
|
130
134
|
font-weight: var(--font-sb);
|
|
131
135
|
font-size: 16px;
|
|
132
136
|
line-height: 24px;
|
|
133
137
|
letter-spacing: 0;
|
|
138
|
+
text-align: right;
|
|
134
139
|
}
|
|
135
140
|
|
|
136
141
|
.userfullname.inverse {
|
|
@@ -139,11 +144,15 @@ ul > li:last-child {
|
|
|
139
144
|
|
|
140
145
|
.useremail {
|
|
141
146
|
color: var(--text-white);
|
|
142
|
-
font-family: var(--
|
|
147
|
+
font-family: var(--font-family-sans);
|
|
143
148
|
font-weight: var(--font-rg);
|
|
144
149
|
font-size: 12px;
|
|
145
150
|
line-height: 16px;
|
|
146
151
|
letter-spacing: 0.32px;
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
text-overflow: ellipsis;
|
|
154
|
+
width: 100%;
|
|
155
|
+
text-align: right;
|
|
147
156
|
}
|
|
148
157
|
|
|
149
158
|
.useremail.inverse {
|
|
@@ -207,7 +216,6 @@ ul > li:last-child {
|
|
|
207
216
|
max-width: initial;
|
|
208
217
|
margin-left: var(--space-unit);
|
|
209
218
|
padding-right: var(--space-unit);
|
|
210
|
-
padding-bottom: calc(var(--space-unit) * 2);
|
|
211
219
|
}
|
|
212
220
|
|
|
213
221
|
button.open.inverse {
|
|
@@ -226,18 +234,19 @@ ul > li:last-child {
|
|
|
226
234
|
button.open z-icon {
|
|
227
235
|
fill: var(--text-grey-800);
|
|
228
236
|
}
|
|
229
|
-
|
|
237
|
+
|
|
230
238
|
button.open z-icon.inverse {
|
|
231
239
|
fill: var(--text-white);
|
|
232
240
|
}
|
|
233
241
|
|
|
234
242
|
.userfullname {
|
|
235
|
-
font-family: var(--
|
|
243
|
+
font-family: var(--font-family-sans);
|
|
236
244
|
font-weight: var(--font-sb);
|
|
237
245
|
font-size: 14px;
|
|
238
246
|
line-height: 20px;
|
|
239
247
|
letter-spacing: 0.16px;
|
|
240
|
-
padding: 0 calc(var(--space-unit) - 2px);
|
|
248
|
+
padding: 0 calc(var(--space-unit) - 6px) 0 calc(var(--space-unit) - 2px);
|
|
249
|
+
width: auto;
|
|
241
250
|
}
|
|
242
251
|
|
|
243
252
|
.userfullname.inverse {
|
|
@@ -255,8 +264,8 @@ ul > li:last-child {
|
|
|
255
264
|
}
|
|
256
265
|
|
|
257
266
|
.useremail {
|
|
258
|
-
|
|
259
|
-
|
|
267
|
+
padding-right: calc(var(--space-unit) * 3 - 2px);
|
|
268
|
+
box-sizing: border-box;
|
|
260
269
|
}
|
|
261
270
|
|
|
262
271
|
button.open div.useremail {
|
|
@@ -271,12 +280,8 @@ ul > li:last-child {
|
|
|
271
280
|
position: initial;
|
|
272
281
|
left: initial;
|
|
273
282
|
padding: 0;
|
|
274
|
-
margin-top: 0;
|
|
275
283
|
width: 100%;
|
|
276
284
|
background-color: var(--bg-white);
|
|
277
|
-
border-bottom: var(--border-size-small) solid var(--bg-white);
|
|
278
|
-
border-bottom-left-radius: var(--border-radius-base);
|
|
279
|
-
border-bottom-right-radius: var(--border-radius-base);
|
|
280
285
|
}
|
|
281
286
|
|
|
282
287
|
ul.inverse {
|
|
@@ -290,15 +295,15 @@ ul > li:last-child {
|
|
|
290
295
|
margin: 0 var(--space-unit);
|
|
291
296
|
}
|
|
292
297
|
|
|
293
|
-
|
|
298
|
+
ul > li.inverse {
|
|
294
299
|
color: var(--text-white);
|
|
295
|
-
|
|
300
|
+
}
|
|
296
301
|
|
|
297
302
|
ul > li:first-child {
|
|
298
303
|
border-top: var(--border-base) solid var(--gray400);
|
|
299
304
|
padding-top: calc(var(--space-unit) + 3px);
|
|
305
|
+
padding-bottom: calc(var(--space-unit) + 5px);
|
|
300
306
|
}
|
|
301
|
-
|
|
302
307
|
}
|
|
303
308
|
|
|
304
309
|
/* Desktop breakpoint */
|
|
@@ -31,8 +31,13 @@ export class ZRegistroTable {
|
|
|
31
31
|
this.isMobile = screen.width <= mobileBreakpoint;
|
|
32
32
|
}
|
|
33
33
|
componentWillLoad() {
|
|
34
|
+
var _a;
|
|
34
35
|
this.isMobile = window.innerWidth <= mobileBreakpoint;
|
|
35
|
-
|
|
36
|
+
const tableBody = this.host.querySelector('[slot="table-body"]');
|
|
37
|
+
this.hasTableBody = !!((_a = tableBody === null || tableBody === void 0 ? void 0 : tableBody.children) === null || _a === void 0 ? void 0 : _a.length);
|
|
38
|
+
if (!!tableBody && !this.hasTableBody) {
|
|
39
|
+
tableBody.remove();
|
|
40
|
+
}
|
|
36
41
|
}
|
|
37
42
|
componentWillRender() {
|
|
38
43
|
this.host.setAttribute("role", "table");
|
|
@@ -4,7 +4,6 @@ z-registro-table {
|
|
|
4
4
|
width: 100%;
|
|
5
5
|
font-family: var(--dashboard-font);
|
|
6
6
|
font-weight: var(--font-rg);
|
|
7
|
-
min-height: 288px;
|
|
8
7
|
background-color: var(--color-white);
|
|
9
8
|
}
|
|
10
9
|
|
|
@@ -110,13 +109,8 @@ z-registro-table
|
|
|
110
109
|
z-index: 5;
|
|
111
110
|
}
|
|
112
111
|
|
|
113
|
-
z-registro-table-empty-box.bordered {
|
|
114
|
-
border-left: var(--border-size-small) solid var(--bg-grey-200);
|
|
115
|
-
}
|
|
116
|
-
|
|
117
112
|
z-registro-table-body {
|
|
118
113
|
width: auto;
|
|
119
|
-
min-height: 288px;
|
|
120
114
|
background-color: var(--color-white);
|
|
121
115
|
}
|
|
122
116
|
|
|
@@ -124,6 +118,11 @@ z-registro-table-empty-box {
|
|
|
124
118
|
display: flex;
|
|
125
119
|
flex-direction: column;
|
|
126
120
|
flex-grow: 1;
|
|
121
|
+
border-bottom: var(--border-size-small) solid var(--bg-grey-200);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
z-registro-table-empty-box.bordered {
|
|
125
|
+
border-left: var(--border-size-small) solid var(--bg-grey-200);
|
|
127
126
|
}
|
|
128
127
|
|
|
129
128
|
.error-message {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component, h, Host, Prop } from "@stencil/core";
|
|
1
|
+
import { Component, Element, h, Host, Prop } from "@stencil/core";
|
|
2
2
|
export class ZRegistroTableEmptyBox {
|
|
3
3
|
constructor() {
|
|
4
4
|
/** Sets main title message*/
|
|
@@ -6,14 +6,18 @@ export class ZRegistroTableEmptyBox {
|
|
|
6
6
|
/** Sets message */
|
|
7
7
|
this.subtitle = "";
|
|
8
8
|
}
|
|
9
|
+
componentWillLoad() {
|
|
10
|
+
this.hasCta1Slot = !!this.hostElement.querySelector('[slot="cta1"]');
|
|
11
|
+
this.hasCta2Slot = !!this.hostElement.querySelector('[slot="cta2"]');
|
|
12
|
+
}
|
|
9
13
|
render() {
|
|
10
14
|
return (h(Host, null,
|
|
11
15
|
h("z-body", { level: 3, variant: "semibold" }, this.message),
|
|
12
16
|
h("br", null),
|
|
13
|
-
h("z-body", { level: 4, variant: "regular" }, this.subtitle),
|
|
14
|
-
h("div", { class: "cta" },
|
|
17
|
+
!!this.subtitle && (h("z-body", { level: 4, variant: "regular" }, this.subtitle)),
|
|
18
|
+
(!!this.hasCta1Slot || !!this.hasCta2Slot) && (h("div", { class: "cta" },
|
|
15
19
|
h("slot", { name: "cta1" }),
|
|
16
|
-
h("slot", { name: "cta2" }))));
|
|
20
|
+
h("slot", { name: "cta2" })))));
|
|
17
21
|
}
|
|
18
22
|
static get is() { return "z-registro-table-empty-box"; }
|
|
19
23
|
static get encapsulation() { return "scoped"; }
|
|
@@ -61,4 +65,5 @@ export class ZRegistroTableEmptyBox {
|
|
|
61
65
|
"defaultValue": "\"\""
|
|
62
66
|
}
|
|
63
67
|
}; }
|
|
68
|
+
static get elementRef() { return "hostElement"; }
|
|
64
69
|
}
|
package/dist/esm/loader.js
CHANGED
|
@@ -10,7 +10,7 @@ const patchEsm = () => {
|
|
|
10
10
|
const defineCustomElements = (win, options) => {
|
|
11
11
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
12
12
|
return patchEsm().then(() => {
|
|
13
|
-
return bootstrapLazy(JSON.parse("[[\"z-alert_66\",[[1,\"z-combobox\",{\"inputid\":[1],\"items\":[1],\"label\":[1],\"hassearch\":[4],\"searchlabel\":[1],\"searchplaceholder\":[1],\"searchtitle\":[1],\"noresultslabel\":[1],\"isopen\":[1028],\"isfixed\":[4],\"closesearchtext\":[1],\"hascheckall\":[4],\"checkalltext\":[1],\"uncheckalltext\":[1],\"maxcheckableitems\":[2],\"searchValue\":[32],\"selectedCounter\":[32],\"renderItemsList\":[32]},[[0,\"inputCheck\",\"inputCheckListener\"]]],[1,\"z-contextual-menu\",{\"elements\":[1],\"color\":[1],\"popoverPosition\":[1,\"popover-position\"]}],[1,\"z-app-topbar\",{\"theme\":[1],\"contentmaxwidth\":[2],\"topbarcontent\":[1],\"logolink\":[1],\"showappswitcher\":[4],\"ismobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"]]],[1,\"z-footer\",{\"data\":[1],\"copyrightuser\":[1]}],[4,\"z-registro-table\",{\"lines\":[514],\"errorMessage\":[1,\"error-message\"],\"bordered\":[4],\"callToActionLabel\":[1,\"call-to-action-label\"],\"callToActionTwoLabel\":[1,\"call-to-action-two-label\"],\"columnSticky\":[4,\"column-sticky\"],\"empty\":[4],\"error\":[4],\"errorLink\":[1,\"error-link\"],\"headerSticky\":[4,\"header-sticky\"],\"message\":[1],\"subtitle\":[1],\"hasTableBody\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"]]],[4,\"z-registro-table-header-row\",{\"expandable\":[516]}],[1,\"z-notification\",{\"contenticonname\":[1],\"actiontext\":[1],\"type\":[1],\"showclose\":[4],\"showshadow\":[4]}],[4,\"z-registro-table-row\",{\"expandedType\":[513,\"expanded-type\"],\"expanded\":[32]}],[1,\"z-myz-card-alert\",{\"iconname\":[1],\"contenttext\":[1],\"actiontext\":[1],\"type\":[1]}],[1,\"z-pagination-bar\",{\"pages\":[2],\"visiblepages\":[2],\"currentpage\":[1026],\"startpage\":[1026],\"historyraw\":[1],\"listhistoryrow\":[1040],\"currentPages\":[32]}],[1,\"z-panel-elem\",{\"elemid\":[1],\"imgurl\":[1],\"imgalt\":[1],\"linkicon\":[1],\"linklabel\":[1],\"url\":[1],\"target\":[1],\"isdisabled\":[4],\"descr_slot_name\":[1]}],[1,\"z-user-dropdown\",{\"logged\":[4],\"userfullname\":[1],\"useremail\":[1],\"menucontent\":[1],\"useinversecolors\":[4],\"ismenuopen\":[32],\"ismobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"],[8,\"click\",\"handleClickOutside\"]]],[1,\"z-button-sort\",{\"buttonid\":[1],\"label\":[1],\"desclabel\":[1],\"counter\":[2],\"sortlabelasc\":[1],\"sortlabeldesc\":[1],\"isselected\":[1028],\"sortasc\":[1028],\"allowTooltip\":[32]}],[1,\"z-card\",{\"variant\":[513],\"coverIcon\":[1,\"cover-icon\"],\"clickable\":[516],\"hasCoverImage\":[32]},[[0,\"click\",\"onClick\"]]],[1,\"z-icon-package\"],[1,\"z-info-box\",{\"boxid\":[1],\"isclosable\":[4]}],[1,\"z-menu\",{\"active\":[516],\"floating\":[516],\"open\":[1540],\"hasHeader\":[32],\"hasContent\":[32]},[[4,\"click\",\"handleClick\"]]],[1,\"z-menu-section\",{\"active\":[516],\"open\":[32],\"hasContent\":[32]},[[4,\"click\",\"handleClick\"]]],[1,\"z-myz-card-icon\",{\"icon\":[1],\"isdisabled\":[4],\"ariaLabel\":[1,\"aria-label\"]}],[1,\"z-status-tag\",{\"icon\":[1],\"text\":[1],\"expandable\":[4],\"status\":[513],\"variant\":[1]}],[1,\"z-toggle-button\",{\"label\":[1],\"isdisabled\":[4],\"avoidclick\":[4],\"opened\":[1028]}],[1,\"z-avatar\",{\"size\":[1],\"text\":[1],\"textColor\":[1,\"text-color\"],\"backgroundColor\":[1,\"background-color\"],\"image\":[1025]}],[1,\"z-chip\",{\"regulartext\":[1],\"boldtext\":[2]}],[1,\"z-ghost-loading\"],[1,\"z-myz-card-footer\",{\"titolo\":[1],\"autori\":[1],\"isbn\":[1],\"faded\":[4],\"cardtype\":[1],\"opened\":[4],\"isOpen\":[32],\"allowTooltipAuthors\":[32]},[[0,\"toggleClick\",\"handleToggle\"]]],[1,\"z-myz-card-list\",{\"listdata\":[1]}],[6,\"z-registro-table-body\"],[1,\"z-registro-table-expanded-row\",{\"colSpan\":[2,\"col-span\"]}],[6,\"z-registro-table-head\"],[6,\"z-registro-table-sticky-footer\"],[1,\"z-stepper\"],[1,\"z-stepper-item\",{\"index\":[2],\"href\":[1],\"pressed\":[4],\"disabled\":[4]}],[1,\"z-registro-table-header\",{\"columnId\":[1,\"column-id\"],\"size\":[1],\"sortable\":[4],\"showButton\":[4,\"show-button\"],\"defaultSortDirection\":[1,\"default-sort-direction\"],\"sortDirection\":[1025,\"sort-direction\"],\"isMenuOpened\":[32]},[[18,\"click\",\"handleOutsideClick\"],[18,\"click\",\"handleClickHeaders\"]]],[1,\"z-list-element\",{\"alignButton\":[513,\"align-button\"],\"clickable\":[516],\"dividerColor\":[1,\"divider-color\"],\"dividerType\":[1,\"divider-type\"],\"dividerSize\":[1,\"divider-size\"],\"expandable\":[516],\"expandableStyle\":[1,\"expandable-style\"],\"listElementId\":[514,\"list-element-id\"],\"size\":[513],\"color\":[513],\"disabled\":[516],\"isContextualMenu\":[516,\"is-contextual-menu\"],\"showInnerContent\":[32]},[[4,\"accessibleFocus\",\"accessibleFocusHandler\"]]],[1,\"z-menu-dropdown\",{\"nomeutente\":[1],\"menucontent\":[1],\"buttonid\":[1],\"ismenuopen\":[32]}],[1,\"z-myz-list\",{\"inputrawdata\":[1025],\"list\":[1040]}],[1,\"z-registro-table-cell\",{\"showButton\":[4,\"show-button\"],\"isMenuOpened\":[32]}],[6,\"z-registro-table-empty-box\",{\"message\":[1],\"subtitle\":[1]}],[1,\"z-app-switcher\",{\"theme\":[1],\"isopen\":[32]}],[1,\"z-footer-section\",{\"name\":[1],\"isOpen\":[32]}],[1,\"z-list-group\",{\"size\":[513],\"dividerType\":[513,\"divider-type\"],\"dividerSize\":[513,\"divider-size\"],\"dividerColor\":[513,\"divider-color\"]}],[1,\"z-modal\",{\"modalid\":[1],\"modaltitle\":[1],\"modalsubtitle\":[1],\"closeButtonLabel\":[1,\"close-button-label\"]}],[1,\"z-alert\",{\"type\":[1]}],[1,\"z-footer-link\",{\"href\":[1]}],[1,\"z-footer-social\",{\"icon\":[1],\"href\":[1],\"description\":[1]}],[1,\"z-list\",{\"size\":[513]}],[1,\"z-myz-card\",{\"faded\":[4],\"cardtype\":[1],\"ispressed\":[4],\"ishighlighted\":[4]}],[1,\"z-myz-card-body\"],[1,\"z-myz-card-cover\",{\"img\":[1],\"titolo\":[1],\"faded\":[4],\"defaultimg\":[1]}],[1,\"z-myz-card-header\",{\"titolo\":[1],\"faded\":[4],\"cardtype\":[1],\"allowTooltip\":[32]}],[1,\"z-pagination-page\",{\"pageid\":[1],\"value\":[2],\"isselected\":[4],\"isdisabled\":[4],\"isvisited\":[4],\"ariaLabel\":[1,\"aria-label\"]}],[1,\"z-tooltip\",{\"content\":[1],\"type\":[1025],\"open\":[1540],\"bindTo\":[1,\"bind-to\"],\"position\":[32]}],[1,\"z-myz-list-item\",{\"text\":[1],\"link\":[1],\"linktarget\":[1],\"icon\":[1],\"listitemid\":[1],\"action\":[1],\"underlined\":[4]}],[1,\"z-logo\",{\"width\":[2],\"height\":[2],\"imagealt\":[1],\"link\":[1],\"targetblank\":[4]}],[6,\"z-popover\",{\"position\":[1025],\"backgroundColor\":[1,\"background-color\"],\"borderRadius\":[1,\"border-radius\"],\"boxShadow\":[1,\"box-shadow\"],\"showArrow\":[4,\"show-arrow\"],\"padding\":[1],\"isVisible\":[32]},[[0,\"closePopover\",\"closePopover\"],[8,\"keyup\",\"closePopoverWithKeyboard\"],[18,\"click\",\"handleOutsideClick\"]]],[2,\"z-input\",{\"htmlid\":[1],\"type\":[1],\"name\":[1],\"label\":[1],\"ariaLabel\":[1,\"aria-label\"],\"value\":[1025],\"disabled\":[4],\"readonly\":[4],\"required\":[4],\"checked\":[1028],\"placeholder\":[1],\"htmltitle\":[1],\"status\":[1],\"hasmessage\":[4],\"message\":[1],\"labelafter\":[4],\"typingtimeout\":[2],\"items\":[1],\"autocomplete\":[8],\"multiple\":[4],\"hasclearicon\":[4],\"icon\":[1],\"isTyping\":[32],\"textareaWrapperHover\":[32],\"textareaWrapperFocus\":[32],\"passwordHidden\":[32],\"getValue\":[64],\"setValue\":[64],\"isChecked\":[64]},[[4,\"inputCheck\",\"inputCheckListener\"]]],[2,\"z-select\",{\"htmlid\":[1],\"items\":[1],\"name\":[1],\"label\":[1],\"ariaLabel\":[1,\"aria-label\"],\"disabled\":[4],\"readonly\":[4],\"placeholder\":[1],\"htmltitle\":[1],\"status\":[1],\"hasmessage\":[4],\"message\":[1],\"autocomplete\":[8],\"multiple\":[4],\"noresultslabel\":[1],\"isOpen\":[32],\"selectedItems\":[32],\"searchString\":[32],\"getSelectedItems\":[64],\"getValue\":[64],\"setValue\":[64]}],[1,\"z-button-filter\",{\"filtername\":[1],\"isfixed\":[4],\"hasicon\":[4],\"filterid\":[1],\"issmall\":[4]}],[2,\"z-divider\",{\"size\":[1],\"color\":[1],\"orientation\":[1]}],[1,\"z-input-label\",{\"value\":[1],\"disabled\":[4],\"htmlfor\":[1]}],[1,\"z-body\",{\"level\":[2],\"variant\":[1],\"component\":[1]}],[1,\"z-input-message\",{\"message\":[1],\"status\":[513]}],[1,\"z-link\",{\"htmlid\":[1],\"href\":[1],\"target\":[1],\"htmltabindex\":[2],\"isdisabled\":[4],\"isactive\":[4],\"iswhite\":[4],\"textcolor\":[1],\"icon\":[1],\"big\":[4],\"iconposition\":[1],\"underline\":[4],\"iconSize\":[32]}],[1,\"z-typography\",{\"component\":[1],\"variant\":[1],\"level\":[1]}],[1,\"z-button\",{\"htmlid\":[1],\"name\":[1],\"disabled\":[516],\"type\":[1],\"variant\":[513],\"icon\":[1],\"size\":[513],\"issmall\":[516],\"square\":[516]}],[1,\"z-icon\",{\"name\":[1],\"height\":[2],\"width\":[2],\"iconid\":[1],\"fill\":[1]}]]],[\"z-modal-login\",[[6,\"z-modal-login\",{\"forgotPasswordUrl\":[1,\"forgot-password-url\"],\"heading\":[1],\"status\":[1025],\"message\":[1025],\"pwdmessage\":[1025],\"externalProviderCheck\":[32]}]]],[\"z-myz-topbar\",[[1,\"z-myz-topbar\",{\"intlinkdata\":[1],\"extlinkdata\":[1],\"userdata\":[1],\"ismyz\":[4],\"logolink\":[1],\"imagealt\":[1],\"activeintlinkid\":[1],\"activesublinkid\":[1],\"hideloginbutton\":[4],\"activeMenuItem\":[32],\"currentMenuItem\":[32],\"isMobile\":[32],\"isMenuMobileOpen\":[32]},[[9,\"resize\",\"handleResize\"],[2,\"zListItemLinkClick\",\"handleZListItemLinkClick\"],[2,\"zListItemClick\",\"handleZListItemClick\"]]]]],[\"z-myz-card-dictionary\",[[1,\"z-myz-card-dictionary\",{\"name\":[1],\"cover\":[1],\"disabled\":[4],\"flipped\":[1028],\"flipbuttonlabel\":[1],\"hideinfobtn\":[4]},[[0,\"flipCard\",\"handleFlipCard\"]]]]],[\"z-messages-pocket\",[[1,\"z-messages-pocket\",{\"pocketid\":[1],\"messages\":[2],\"status\":[1025]},[[16,\"pocketToggle\",\"handlePocketToggle\"]]]]],[\"z-cookiebar\",[[1,\"z-cookiebar\",{\"cookiepolicyurl\":[1],\"hide\":[4],\"callback\":[16]}]]],[\"z-myz-card-info\",[[1,\"z-myz-card-info\",{\"data\":[1],\"htmltabindex\":[2],\"hiddenContent\":[32],\"tooltip\":[32]}]]],[\"z-otp\",[[1,\"z-otp\",{\"inputNum\":[2,\"input-num\"],\"status\":[1],\"message\":[1]}]]],[\"z-app-header\",[[1,\"z-app-header\",{\"stuck\":[516],\"hero\":[1],\"overlay\":[516],\"flow\":[513],\"drawerOpen\":[516,\"drawer-open\"],\"stucked\":[32],\"menuLength\":[32]}]]],[\"z-heading\",[[1,\"z-heading\",{\"level\":[2],\"variant\":[1],\"component\":[1]}]]],[\"z-navigation-tabs\",[[1,\"z-navigation-tabs\",{\"orientation\":[513],\"size\":[513],\"canNavigate\":[32],\"canNavigatePrev\":[32],\"canNavigateNext\":[32],\"direction\":[32],\"dimension\":[32]},[[9,\"resize\",\"checkScrollVisible\"],[0,\"selected\",\"selectedTabHandler\"]]]]],[\"z-pocket-message\",[[1,\"z-pocket-message\"]]],[\"z-slideshow\",[[1,\"z-slideshow\",{\"slideshowid\":[1],\"data\":[1],\"device\":[32],\"currentSlide\":[32]}]]],[\"z-toast-notification\",[[1,\"z-toast-notification\",{\"heading\":[1],\"message\":[1],\"closebutton\":[4],\"autoclose\":[2],\"pauseonfocusloss\":[4],\"type\":[1],\"isdraggable\":[4],\"draggablepercentage\":[2],\"transition\":[1],\"percentage\":[32],\"isTextLong\":[32]}]]],[\"z-myz-card-footer-sections\",[[1,\"z-myz-card-footer-sections\"]]],[\"z-navigation-tab\",[[1,\"z-navigation-tab\",{\"selected\":[1540],\"disabled\":[516],\"orientation\":[513],\"size\":[513]},[[0,\"focus\",\"onFocus\"],[0,\"click\",\"onClick\"]]]]],[\"z-registro-table-footer\",[[6,\"z-registro-table-footer\"]]],[\"z-toast-notification-list\",[[1,\"z-toast-notification-list\",{\"position\":[1],\"newestontop\":[4]}]]],[\"z-candybar\",[[1,\"z-candybar\"]]],[\"z-pocket_3\",[[1,\"z-pocket\",{\"pocketid\":[1],\"status\":[1025],\"open\":[64],\"close\":[64]},[[0,\"pocketHeaderClick\",\"handlePocketHeaderClick\"],[0,\"pocketHeaderPan\",\"handlePocketHeaderPan\"]]],[1,\"z-pocket-body\",{\"pocketid\":[1],\"status\":[1025]},[[16,\"pocketToggle\",\"handlePocketToggle\"]]],[1,\"z-pocket-header\",{\"pocketid\":[1]}]]]]"), options);
|
|
13
|
+
return bootstrapLazy(JSON.parse("[[\"z-alert_66\",[[1,\"z-combobox\",{\"inputid\":[1],\"items\":[1],\"label\":[1],\"hassearch\":[4],\"searchlabel\":[1],\"searchplaceholder\":[1],\"searchtitle\":[1],\"noresultslabel\":[1],\"isopen\":[1028],\"isfixed\":[4],\"closesearchtext\":[1],\"hascheckall\":[4],\"checkalltext\":[1],\"uncheckalltext\":[1],\"maxcheckableitems\":[2],\"searchValue\":[32],\"selectedCounter\":[32],\"renderItemsList\":[32]},[[0,\"inputCheck\",\"inputCheckListener\"]]],[1,\"z-contextual-menu\",{\"elements\":[1],\"color\":[1],\"popoverPosition\":[1,\"popover-position\"]}],[1,\"z-app-topbar\",{\"theme\":[1],\"contentMaxWidth\":[2,\"content-max-width\"],\"topbarContent\":[1,\"topbar-content\"],\"logoLink\":[1,\"logo-link\"],\"showAppSwitcher\":[4,\"show-app-switcher\"],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"]]],[1,\"z-footer\",{\"data\":[1],\"copyrightuser\":[1]}],[4,\"z-registro-table\",{\"lines\":[514],\"errorMessage\":[1,\"error-message\"],\"bordered\":[4],\"callToActionLabel\":[1,\"call-to-action-label\"],\"callToActionTwoLabel\":[1,\"call-to-action-two-label\"],\"columnSticky\":[4,\"column-sticky\"],\"empty\":[4],\"error\":[4],\"errorLink\":[1,\"error-link\"],\"headerSticky\":[4,\"header-sticky\"],\"message\":[1],\"subtitle\":[1],\"hasTableBody\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"]]],[4,\"z-registro-table-header-row\",{\"expandable\":[516]}],[1,\"z-notification\",{\"contenticonname\":[1],\"actiontext\":[1],\"type\":[1],\"showclose\":[4],\"showshadow\":[4]}],[4,\"z-registro-table-row\",{\"expandedType\":[513,\"expanded-type\"],\"expanded\":[32]}],[1,\"z-myz-card-alert\",{\"iconname\":[1],\"contenttext\":[1],\"actiontext\":[1],\"type\":[1]}],[1,\"z-pagination-bar\",{\"pages\":[2],\"visiblepages\":[2],\"currentpage\":[1026],\"startpage\":[1026],\"historyraw\":[1],\"listhistoryrow\":[1040],\"currentPages\":[32]}],[1,\"z-panel-elem\",{\"elemid\":[1],\"imgurl\":[1],\"imgalt\":[1],\"linkicon\":[1],\"linklabel\":[1],\"url\":[1],\"target\":[1],\"isdisabled\":[4],\"descr_slot_name\":[1]}],[1,\"z-user-dropdown\",{\"logged\":[4],\"userFullName\":[1,\"user-full-name\"],\"userEmail\":[1,\"user-email\"],\"menuContent\":[1,\"menu-content\"],\"useInverseColors\":[4,\"use-inverse-colors\"],\"isMenuOpen\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"],[8,\"click\",\"handleClickOutside\"]]],[1,\"z-button-sort\",{\"buttonid\":[1],\"label\":[1],\"desclabel\":[1],\"counter\":[2],\"sortlabelasc\":[1],\"sortlabeldesc\":[1],\"isselected\":[1028],\"sortasc\":[1028],\"allowTooltip\":[32]}],[1,\"z-card\",{\"variant\":[513],\"coverIcon\":[1,\"cover-icon\"],\"clickable\":[516],\"hasCoverImage\":[32]},[[0,\"click\",\"onClick\"]]],[1,\"z-icon-package\"],[1,\"z-info-box\",{\"boxid\":[1],\"isclosable\":[4]}],[1,\"z-menu\",{\"active\":[516],\"floating\":[516],\"open\":[1540],\"hasHeader\":[32],\"hasContent\":[32]},[[4,\"click\",\"handleClick\"]]],[1,\"z-menu-section\",{\"active\":[516],\"open\":[32],\"hasContent\":[32]},[[4,\"click\",\"handleClick\"]]],[1,\"z-myz-card-icon\",{\"icon\":[1],\"isdisabled\":[4],\"ariaLabel\":[1,\"aria-label\"]}],[1,\"z-status-tag\",{\"icon\":[1],\"text\":[1],\"expandable\":[4],\"status\":[513],\"variant\":[1]}],[1,\"z-toggle-button\",{\"label\":[1],\"isdisabled\":[4],\"avoidclick\":[4],\"opened\":[1028]}],[1,\"z-avatar\",{\"size\":[1],\"text\":[1],\"textColor\":[1,\"text-color\"],\"backgroundColor\":[1,\"background-color\"],\"image\":[1025]}],[1,\"z-chip\",{\"regulartext\":[1],\"boldtext\":[2]}],[1,\"z-ghost-loading\"],[1,\"z-myz-card-footer\",{\"titolo\":[1],\"autori\":[1],\"isbn\":[1],\"faded\":[4],\"cardtype\":[1],\"opened\":[4],\"isOpen\":[32],\"allowTooltipAuthors\":[32]},[[0,\"toggleClick\",\"handleToggle\"]]],[1,\"z-myz-card-list\",{\"listdata\":[1]}],[6,\"z-registro-table-body\"],[1,\"z-registro-table-expanded-row\",{\"colSpan\":[2,\"col-span\"]}],[6,\"z-registro-table-head\"],[6,\"z-registro-table-sticky-footer\"],[1,\"z-stepper\"],[1,\"z-stepper-item\",{\"index\":[2],\"href\":[1],\"pressed\":[4],\"disabled\":[4]}],[1,\"z-registro-table-header\",{\"columnId\":[1,\"column-id\"],\"size\":[1],\"sortable\":[4],\"showButton\":[4,\"show-button\"],\"defaultSortDirection\":[1,\"default-sort-direction\"],\"sortDirection\":[1025,\"sort-direction\"],\"isMenuOpened\":[32]},[[18,\"click\",\"handleOutsideClick\"],[18,\"click\",\"handleClickHeaders\"]]],[1,\"z-list-element\",{\"alignButton\":[513,\"align-button\"],\"clickable\":[516],\"dividerColor\":[1,\"divider-color\"],\"dividerType\":[1,\"divider-type\"],\"dividerSize\":[1,\"divider-size\"],\"expandable\":[516],\"expandableStyle\":[1,\"expandable-style\"],\"listElementId\":[514,\"list-element-id\"],\"size\":[513],\"color\":[513],\"disabled\":[516],\"isContextualMenu\":[516,\"is-contextual-menu\"],\"showInnerContent\":[32]},[[4,\"accessibleFocus\",\"accessibleFocusHandler\"]]],[1,\"z-menu-dropdown\",{\"nomeutente\":[1],\"menucontent\":[1],\"buttonid\":[1],\"ismenuopen\":[32]}],[1,\"z-myz-list\",{\"inputrawdata\":[1025],\"list\":[1040]}],[1,\"z-registro-table-cell\",{\"showButton\":[4,\"show-button\"],\"isMenuOpened\":[32]}],[6,\"z-registro-table-empty-box\",{\"message\":[1],\"subtitle\":[1]}],[1,\"z-app-switcher\",{\"theme\":[1],\"isopen\":[32]}],[1,\"z-footer-section\",{\"name\":[1],\"isOpen\":[32]}],[1,\"z-list-group\",{\"size\":[513],\"dividerType\":[513,\"divider-type\"],\"dividerSize\":[513,\"divider-size\"],\"dividerColor\":[513,\"divider-color\"]}],[1,\"z-modal\",{\"modalid\":[1],\"modaltitle\":[1],\"modalsubtitle\":[1],\"closeButtonLabel\":[1,\"close-button-label\"]}],[1,\"z-alert\",{\"type\":[1]}],[1,\"z-footer-link\",{\"href\":[1]}],[1,\"z-footer-social\",{\"icon\":[1],\"href\":[1],\"description\":[1]}],[1,\"z-list\",{\"size\":[513]}],[1,\"z-myz-card\",{\"faded\":[4],\"cardtype\":[1],\"ispressed\":[4],\"ishighlighted\":[4]}],[1,\"z-myz-card-body\"],[1,\"z-myz-card-cover\",{\"img\":[1],\"titolo\":[1],\"faded\":[4],\"defaultimg\":[1]}],[1,\"z-myz-card-header\",{\"titolo\":[1],\"faded\":[4],\"cardtype\":[1],\"allowTooltip\":[32]}],[1,\"z-pagination-page\",{\"pageid\":[1],\"value\":[2],\"isselected\":[4],\"isdisabled\":[4],\"isvisited\":[4],\"ariaLabel\":[1,\"aria-label\"]}],[1,\"z-tooltip\",{\"content\":[1],\"type\":[1025],\"open\":[1540],\"bindTo\":[1,\"bind-to\"],\"position\":[32]}],[1,\"z-myz-list-item\",{\"text\":[1],\"link\":[1],\"linktarget\":[1],\"icon\":[1],\"listitemid\":[1],\"action\":[1],\"underlined\":[4]}],[1,\"z-logo\",{\"width\":[2],\"height\":[2],\"imagealt\":[1],\"link\":[1],\"targetblank\":[4]}],[6,\"z-popover\",{\"position\":[1025],\"backgroundColor\":[1,\"background-color\"],\"borderRadius\":[1,\"border-radius\"],\"boxShadow\":[1,\"box-shadow\"],\"showArrow\":[4,\"show-arrow\"],\"padding\":[1],\"isVisible\":[32]},[[0,\"closePopover\",\"closePopover\"],[8,\"keyup\",\"closePopoverWithKeyboard\"],[18,\"click\",\"handleOutsideClick\"]]],[2,\"z-input\",{\"htmlid\":[1],\"type\":[1],\"name\":[1],\"label\":[1],\"ariaLabel\":[1,\"aria-label\"],\"value\":[1025],\"disabled\":[4],\"readonly\":[4],\"required\":[4],\"checked\":[1028],\"placeholder\":[1],\"htmltitle\":[1],\"status\":[1],\"hasmessage\":[4],\"message\":[1],\"labelafter\":[4],\"typingtimeout\":[2],\"items\":[1],\"autocomplete\":[8],\"multiple\":[4],\"hasclearicon\":[4],\"icon\":[1],\"isTyping\":[32],\"textareaWrapperHover\":[32],\"textareaWrapperFocus\":[32],\"passwordHidden\":[32],\"getValue\":[64],\"setValue\":[64],\"isChecked\":[64]},[[4,\"inputCheck\",\"inputCheckListener\"]]],[2,\"z-select\",{\"htmlid\":[1],\"items\":[1],\"name\":[1],\"label\":[1],\"ariaLabel\":[1,\"aria-label\"],\"disabled\":[4],\"readonly\":[4],\"placeholder\":[1],\"htmltitle\":[1],\"status\":[1],\"hasmessage\":[4],\"message\":[1],\"autocomplete\":[8],\"multiple\":[4],\"noresultslabel\":[1],\"isOpen\":[32],\"selectedItems\":[32],\"searchString\":[32],\"getSelectedItems\":[64],\"getValue\":[64],\"setValue\":[64]}],[1,\"z-button-filter\",{\"filtername\":[1],\"isfixed\":[4],\"hasicon\":[4],\"filterid\":[1],\"issmall\":[4]}],[2,\"z-divider\",{\"size\":[1],\"color\":[1],\"orientation\":[1]}],[1,\"z-input-label\",{\"value\":[1],\"disabled\":[4],\"htmlfor\":[1]}],[1,\"z-body\",{\"level\":[2],\"variant\":[1],\"component\":[1]}],[1,\"z-input-message\",{\"message\":[1],\"status\":[513]}],[1,\"z-link\",{\"htmlid\":[1],\"href\":[1],\"target\":[1],\"htmltabindex\":[2],\"isdisabled\":[4],\"isactive\":[4],\"iswhite\":[4],\"textcolor\":[1],\"icon\":[1],\"big\":[4],\"iconposition\":[1],\"underline\":[4],\"iconSize\":[32]}],[1,\"z-typography\",{\"component\":[1],\"variant\":[1],\"level\":[1]}],[1,\"z-button\",{\"htmlid\":[1],\"name\":[1],\"disabled\":[516],\"type\":[1],\"variant\":[513],\"icon\":[1],\"size\":[513],\"issmall\":[516],\"square\":[516]}],[1,\"z-icon\",{\"name\":[1],\"height\":[2],\"width\":[2],\"iconid\":[1],\"fill\":[1]}]]],[\"z-modal-login\",[[6,\"z-modal-login\",{\"forgotPasswordUrl\":[1,\"forgot-password-url\"],\"heading\":[1],\"status\":[1025],\"message\":[1025],\"pwdmessage\":[1025],\"externalProviderCheck\":[32]}]]],[\"z-myz-topbar\",[[1,\"z-myz-topbar\",{\"intlinkdata\":[1],\"extlinkdata\":[1],\"userdata\":[1],\"ismyz\":[4],\"logolink\":[1],\"imagealt\":[1],\"activeintlinkid\":[1],\"activesublinkid\":[1],\"hideloginbutton\":[4],\"activeMenuItem\":[32],\"currentMenuItem\":[32],\"isMobile\":[32],\"isMenuMobileOpen\":[32]},[[9,\"resize\",\"handleResize\"],[2,\"zListItemLinkClick\",\"handleZListItemLinkClick\"],[2,\"zListItemClick\",\"handleZListItemClick\"]]]]],[\"z-myz-card-dictionary\",[[1,\"z-myz-card-dictionary\",{\"name\":[1],\"cover\":[1],\"disabled\":[4],\"flipped\":[1028],\"flipbuttonlabel\":[1],\"hideinfobtn\":[4]},[[0,\"flipCard\",\"handleFlipCard\"]]]]],[\"z-messages-pocket\",[[1,\"z-messages-pocket\",{\"pocketid\":[1],\"messages\":[2],\"status\":[1025]},[[16,\"pocketToggle\",\"handlePocketToggle\"]]]]],[\"z-cookiebar\",[[1,\"z-cookiebar\",{\"cookiepolicyurl\":[1],\"hide\":[4],\"callback\":[16]}]]],[\"z-myz-card-info\",[[1,\"z-myz-card-info\",{\"data\":[1],\"htmltabindex\":[2],\"hiddenContent\":[32],\"tooltip\":[32]}]]],[\"z-otp\",[[1,\"z-otp\",{\"inputNum\":[2,\"input-num\"],\"status\":[1],\"message\":[1]}]]],[\"z-app-header\",[[1,\"z-app-header\",{\"stuck\":[516],\"hero\":[1],\"overlay\":[516],\"flow\":[513],\"drawerOpen\":[516,\"drawer-open\"],\"stucked\":[32],\"menuLength\":[32]}]]],[\"z-heading\",[[1,\"z-heading\",{\"level\":[2],\"variant\":[1],\"component\":[1]}]]],[\"z-navigation-tabs\",[[1,\"z-navigation-tabs\",{\"orientation\":[513],\"size\":[513],\"canNavigate\":[32],\"canNavigatePrev\":[32],\"canNavigateNext\":[32],\"direction\":[32],\"dimension\":[32]},[[9,\"resize\",\"checkScrollVisible\"],[0,\"selected\",\"selectedTabHandler\"]]]]],[\"z-pocket-message\",[[1,\"z-pocket-message\"]]],[\"z-slideshow\",[[1,\"z-slideshow\",{\"slideshowid\":[1],\"data\":[1],\"device\":[32],\"currentSlide\":[32]}]]],[\"z-toast-notification\",[[1,\"z-toast-notification\",{\"heading\":[1],\"message\":[1],\"closebutton\":[4],\"autoclose\":[2],\"pauseonfocusloss\":[4],\"type\":[1],\"isdraggable\":[4],\"draggablepercentage\":[2],\"transition\":[1],\"percentage\":[32],\"isTextLong\":[32]}]]],[\"z-myz-card-footer-sections\",[[1,\"z-myz-card-footer-sections\"]]],[\"z-navigation-tab\",[[1,\"z-navigation-tab\",{\"selected\":[1540],\"disabled\":[516],\"orientation\":[513],\"size\":[513]},[[0,\"focus\",\"onFocus\"],[0,\"click\",\"onClick\"]]]]],[\"z-registro-table-footer\",[[6,\"z-registro-table-footer\"]]],[\"z-toast-notification-list\",[[1,\"z-toast-notification-list\",{\"position\":[1],\"newestontop\":[4]}]]],[\"z-candybar\",[[1,\"z-candybar\"]]],[\"z-pocket_3\",[[1,\"z-pocket\",{\"pocketid\":[1],\"status\":[1025],\"open\":[64],\"close\":[64]},[[0,\"pocketHeaderClick\",\"handlePocketHeaderClick\"],[0,\"pocketHeaderPan\",\"handlePocketHeaderPan\"]]],[1,\"z-pocket-body\",{\"pocketid\":[1],\"status\":[1025]},[[16,\"pocketToggle\",\"handlePocketToggle\"]]],[1,\"z-pocket-header\",{\"pocketid\":[1]}]]]]"), options);
|
|
14
14
|
});
|
|
15
15
|
};
|
|
16
16
|
|