@zanichelli/albe-web-components 2.28.0 → 2.29.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/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 +55 -47
- package/dist/cjs/z-app-header.cjs.entry.js +1 -1
- package/dist/collection/components/logo/z-logo/index.js +1 -1
- package/dist/collection/components/navigation/z-app-header/styles.css +63 -44
- package/dist/collection/components/navigation/z-menu/styles.css +17 -13
- package/dist/collection/components/navigation/z-menu-section/styles.css +9 -3
- package/dist/collection/components/navigation/z-user-dropdown/index.js +82 -66
- package/dist/collection/components/navigation/z-user-dropdown/styles.css +198 -69
- 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 +55 -47
- package/dist/esm/z-app-header.entry.js +1 -1
- package/dist/types/components/logo/z-logo/index.d.ts +1 -1
- package/dist/types/components/navigation/z-user-dropdown/index.d.ts +11 -12
- package/dist/types/components.d.ts +14 -6
- package/dist/types/snowflakes/registro-table/z-registro-table-empty-box/index.d.ts +5 -0
- package/dist/web-components-library/{p-787b1b39.entry.js → p-427c5b9e.entry.js} +2 -2
- package/dist/web-components-library/p-6c3a77ef.entry.js +1 -0
- package/dist/web-components-library/web-components-library.esm.js +1 -1
- package/package.json +1 -1
- package/www/build/{p-787b1b39.entry.js → p-427c5b9e.entry.js} +2 -2
- package/www/build/p-6c3a77ef.entry.js +1 -0
- package/www/build/p-89b24792.js +122 -0
- package/www/build/web-components-library.esm.js +1 -1
- package/www/index.html +3 -8
- package/dist/web-components-library/p-ccf4d1e7.entry.js +0 -1
- package/www/build/p-3ea8117a.js +0 -122
- package/www/build/p-ccf4d1e7.entry.js +0 -1
|
@@ -1,83 +1,176 @@
|
|
|
1
1
|
:host {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
background-color: var(--bg-grey-900);
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
:host(.inverse) {
|
|
6
|
+
background-color: var(--bg-white);
|
|
4
7
|
}
|
|
5
8
|
|
|
6
9
|
button {
|
|
7
10
|
cursor: pointer;
|
|
8
11
|
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
width: 100%;
|
|
9
14
|
margin: 0;
|
|
10
|
-
background: var(--bg-grey-900);
|
|
15
|
+
background-color: var(--bg-grey-900);
|
|
11
16
|
border: none;
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
padding: 0;
|
|
18
|
+
letter-spacing: 0.16px;
|
|
14
19
|
}
|
|
15
20
|
|
|
16
|
-
button
|
|
17
|
-
|
|
18
|
-
fill: var(--bg-white);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
button > span {
|
|
22
|
-
padding: 0 6px;
|
|
23
|
-
color: var(--text-white);
|
|
24
|
-
font-weight: var(--font-sb);
|
|
25
|
-
line-height: 19px;
|
|
21
|
+
button.inverse {
|
|
22
|
+
background-color: var(--bg-white);
|
|
26
23
|
}
|
|
27
24
|
|
|
28
|
-
button.
|
|
29
|
-
|
|
25
|
+
button div.firstline {
|
|
26
|
+
display: flex;
|
|
27
|
+
justify-content: flex-end;
|
|
28
|
+
align-items: center;
|
|
29
|
+
max-width: 200px;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
button.
|
|
33
|
-
|
|
32
|
+
button.open div.firstline {
|
|
33
|
+
max-width: none;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
z-icon {
|
|
37
|
+
padding: 0 2px;
|
|
38
|
+
fill: var(--text-white);
|
|
38
39
|
}
|
|
39
40
|
|
|
40
|
-
|
|
41
|
-
|
|
41
|
+
z-icon.inverse {
|
|
42
|
+
fill: var(--bg-grey-900);
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
ul {
|
|
45
46
|
position: absolute;
|
|
46
47
|
left: 0;
|
|
47
|
-
padding: var(--space-unit)
|
|
48
|
+
padding: calc(var(--space-unit) / 2) calc(var(--space-unit) * 2) 0 calc(var(--space-unit) * 2);
|
|
48
49
|
width: 100%;
|
|
49
|
-
margin: 0;
|
|
50
|
-
background: var(--bg-grey-900);
|
|
50
|
+
margin: calc(var(--space-unit) * 1.5) 0 0 0;
|
|
51
|
+
background-color: var(--bg-grey-900);
|
|
52
|
+
font-family: var(--dashboard-font);
|
|
53
|
+
font-weight: var(--font-sb);
|
|
54
|
+
font-size: 14px;
|
|
55
|
+
line-height: 20px;
|
|
56
|
+
letter-spacing: 0.3px;
|
|
51
57
|
}
|
|
52
58
|
|
|
53
|
-
ul.
|
|
54
|
-
background: var(--bg-white);
|
|
59
|
+
ul.inverse {
|
|
60
|
+
background-color: var(--bg-white);
|
|
55
61
|
}
|
|
56
62
|
|
|
57
63
|
ul > li {
|
|
58
64
|
display: flex;
|
|
59
65
|
justify-content: flex-end;
|
|
60
|
-
padding: var(--space-unit);
|
|
61
|
-
margin: 0 var(--space-unit);
|
|
66
|
+
padding: calc(var(--space-unit) * 1.5 - 1px) 0;
|
|
67
|
+
margin: 0 calc(var(--space-unit) * 4) 0 0;
|
|
62
68
|
border-bottom: var(--border-base) solid var(--bg-grey-700);
|
|
63
69
|
}
|
|
64
70
|
|
|
71
|
+
ul > li.inverse {
|
|
72
|
+
border-bottom-color: var(--gray400);
|
|
73
|
+
}
|
|
74
|
+
|
|
65
75
|
ul > li:first-child {
|
|
66
|
-
border-top:
|
|
76
|
+
border-top: none;
|
|
77
|
+
padding-top: 0;
|
|
78
|
+
flex-direction: column;
|
|
79
|
+
align-items: end;
|
|
67
80
|
}
|
|
68
81
|
|
|
69
82
|
ul > li:last-child {
|
|
70
83
|
border-bottom: none;
|
|
84
|
+
margin-bottom: 0;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
#guestbutton {
|
|
88
|
+
box-sizing: border-box;
|
|
89
|
+
display: inline-flex;
|
|
90
|
+
flex-direction: row;
|
|
91
|
+
align-items: center;
|
|
92
|
+
justify-content: center;
|
|
93
|
+
width: 100%;
|
|
94
|
+
font-family: var(--dashboard-font);
|
|
95
|
+
font-weight: var(--font-sb);
|
|
96
|
+
font-size: 14px;
|
|
97
|
+
line-height: 1;
|
|
98
|
+
letter-spacing: 0.3px;
|
|
99
|
+
border-width: var(--border-size-medium);
|
|
100
|
+
border-style: solid;
|
|
101
|
+
border-radius: var(--border-radius);
|
|
102
|
+
vertical-align: middle;
|
|
103
|
+
text-transform: uppercase;
|
|
104
|
+
text-decoration: none;
|
|
105
|
+
cursor: pointer;
|
|
106
|
+
white-space: nowrap;
|
|
107
|
+
outline: none;
|
|
108
|
+
fill: currentColor;
|
|
109
|
+
height: 32px;
|
|
110
|
+
min-width: 32px;
|
|
111
|
+
padding: 0 calc(var(--space-unit) * 2);
|
|
112
|
+
background-color: var(--bg-white);
|
|
113
|
+
border-color: var(--bg-white);
|
|
114
|
+
color: var(--text-grey-800);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
#guestbutton.inverse {
|
|
118
|
+
background-color: var(--bg-grey-800);
|
|
119
|
+
border-color: var(--bg-grey-800);
|
|
120
|
+
color: var(--text-white);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.userfullname {
|
|
124
|
+
padding: 0;
|
|
125
|
+
white-space: nowrap;
|
|
126
|
+
overflow: hidden;
|
|
127
|
+
max-width: 250px;
|
|
128
|
+
text-overflow: ellipsis;
|
|
129
|
+
color: var(--text-white);
|
|
130
|
+
font-family: var(--dashboard-font);
|
|
131
|
+
font-weight: var(--font-sb);
|
|
132
|
+
font-size: 16px;
|
|
133
|
+
line-height: 24px;
|
|
134
|
+
letter-spacing: 0;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.userfullname.inverse {
|
|
138
|
+
color: var(--text-grey-800);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.useremail {
|
|
142
|
+
color: var(--text-white);
|
|
143
|
+
font-family: var(--dashboard-font);
|
|
144
|
+
font-weight: var(--font-rg);
|
|
145
|
+
font-size: 12px;
|
|
146
|
+
line-height: 16px;
|
|
147
|
+
letter-spacing: 0.32px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.useremail.inverse {
|
|
151
|
+
color: var(--text-grey-800);
|
|
71
152
|
}
|
|
72
153
|
|
|
73
154
|
/* Tablet breakpoint */
|
|
74
155
|
@media only screen and (min-width: 768px) {
|
|
75
156
|
:host {
|
|
76
157
|
height: calc(var(--space-unit) * 4);
|
|
158
|
+
background-color: var(--bg-grey-900);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
:host(.inverse) {
|
|
162
|
+
background-color: var(--bg-white);
|
|
77
163
|
}
|
|
78
164
|
|
|
79
165
|
:host > div {
|
|
80
166
|
position: relative;
|
|
167
|
+
top: 50%;
|
|
168
|
+
transform: translateY(-50%);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
:host > div.open {
|
|
172
|
+
top: auto;
|
|
173
|
+
transform: none;
|
|
81
174
|
}
|
|
82
175
|
|
|
83
176
|
:host > div > div {
|
|
@@ -85,22 +178,19 @@ ul > li:last-child {
|
|
|
85
178
|
}
|
|
86
179
|
|
|
87
180
|
:host > div > div.open {
|
|
88
|
-
display: flex;
|
|
89
|
-
flex-direction: column;
|
|
90
|
-
flex-wrap: nowrap;
|
|
91
|
-
justify-content: flex-start;
|
|
92
|
-
align-items: flex-end;
|
|
93
|
-
align-content: stretch;
|
|
94
|
-
width: min-content;
|
|
95
181
|
position: absolute;
|
|
96
182
|
right: calc(var(--space-unit) * -1);
|
|
97
183
|
box-shadow: 0px 2px calc(var(--space-unit) * .5) 0px rgba(0, 0, 0, 0.5);
|
|
98
|
-
background: var(--bg-white);
|
|
99
|
-
|
|
100
|
-
padding: calc(var(--space-unit)
|
|
184
|
+
background-color: var(--bg-white);
|
|
185
|
+
margin-top: calc(var(--space-unit) / 2);
|
|
186
|
+
padding: calc(var(--space-unit) / 2 + 1px) var(--space-unit) 0 var(--space-unit);
|
|
101
187
|
transform: translate(0, -4px);
|
|
102
188
|
}
|
|
103
189
|
|
|
190
|
+
:host > div > div.inverse.open {
|
|
191
|
+
background-color: var(--bg-grey-800);
|
|
192
|
+
}
|
|
193
|
+
|
|
104
194
|
button {
|
|
105
195
|
display: flex;
|
|
106
196
|
flex-direction: row;
|
|
@@ -108,34 +198,74 @@ ul > li:last-child {
|
|
|
108
198
|
justify-content: flex-end;
|
|
109
199
|
align-items: end;
|
|
110
200
|
align-content: center;
|
|
111
|
-
max-width: 200px;
|
|
112
201
|
}
|
|
113
202
|
|
|
114
|
-
button > span {
|
|
115
|
-
padding: 0 var(--space-unit);
|
|
116
|
-
}
|
|
117
203
|
button.open {
|
|
118
204
|
background-color: var(--bg-white);
|
|
119
205
|
border-top: var(--border-size-small) solid var(--bg-white);
|
|
120
206
|
border-top-left-radius: calc(var(--space-unit) * .5);
|
|
121
207
|
border-top-right-radius: calc(var(--space-unit) * .5);
|
|
122
208
|
max-width: initial;
|
|
209
|
+
margin-left: var(--space-unit);
|
|
210
|
+
padding-right: var(--space-unit);
|
|
211
|
+
padding-bottom: calc(var(--space-unit) * 2);
|
|
123
212
|
}
|
|
124
213
|
|
|
125
|
-
button
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
overflow: hidden;
|
|
129
|
-
max-width: 250px;
|
|
130
|
-
text-overflow: ellipsis;
|
|
214
|
+
button.open.inverse {
|
|
215
|
+
border-top-color: var(--bg-grey-800);
|
|
216
|
+
background-color: var(--bg-grey-800);
|
|
131
217
|
}
|
|
132
218
|
|
|
133
|
-
button.open
|
|
134
|
-
fill: var(--
|
|
219
|
+
button:not(.open) z-icon {
|
|
220
|
+
fill: var(--text-white);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
button:not(.open) z-icon.inverse {
|
|
224
|
+
fill: var(--text-grey-800);
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
button.open z-icon {
|
|
228
|
+
fill: var(--text-grey-800);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
button.open z-icon.inverse {
|
|
232
|
+
fill: var(--text-white);
|
|
135
233
|
}
|
|
136
234
|
|
|
137
|
-
|
|
138
|
-
|
|
235
|
+
.userfullname {
|
|
236
|
+
font-family: var(--dashboard-font);
|
|
237
|
+
font-weight: var(--font-sb);
|
|
238
|
+
font-size: 14px;
|
|
239
|
+
line-height: 20px;
|
|
240
|
+
letter-spacing: 0.16px;
|
|
241
|
+
padding: 0 calc(var(--space-unit) - 2px);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.userfullname.inverse {
|
|
245
|
+
color: var(--text-grey-800);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
button.open div.userfullname {
|
|
249
|
+
color: var(--text-grey-800);
|
|
250
|
+
max-width: none;
|
|
251
|
+
text-overflow: clip;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
button.open div.userfullname.inverse {
|
|
255
|
+
color: var(--text-white);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.useremail {
|
|
259
|
+
margin-right: calc(var(--space-unit) * 3 + 2px);
|
|
260
|
+
text-align: end;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
button.open div.useremail {
|
|
264
|
+
color: var(--text-grey-800);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
button.open div.useremail.inverse {
|
|
268
|
+
color: var(--text-white);
|
|
139
269
|
}
|
|
140
270
|
|
|
141
271
|
ul {
|
|
@@ -150,31 +280,30 @@ ul > li:last-child {
|
|
|
150
280
|
border-bottom-right-radius: var(--border-radius-base);
|
|
151
281
|
}
|
|
152
282
|
|
|
153
|
-
ul
|
|
154
|
-
color: var(--
|
|
155
|
-
|
|
156
|
-
padding: calc(var(--space-unit) * .5);
|
|
157
|
-
margin: unset;
|
|
283
|
+
ul.inverse {
|
|
284
|
+
border-bottom-color: var(--bg-grey-800);
|
|
285
|
+
background-color: var(--bg-grey-800);
|
|
158
286
|
}
|
|
159
287
|
|
|
160
|
-
ul > li
|
|
161
|
-
|
|
288
|
+
ul > li {
|
|
289
|
+
color: var(--text-grey-800);
|
|
290
|
+
border-bottom: var(--border-base) solid var(--gray400);
|
|
291
|
+
margin: 0 var(--space-unit);
|
|
162
292
|
}
|
|
163
293
|
|
|
294
|
+
ul > li.inverse {
|
|
295
|
+
color: var(--text-white);
|
|
296
|
+
}
|
|
297
|
+
|
|
164
298
|
ul > li:first-child {
|
|
165
|
-
border-top:
|
|
299
|
+
border-top: var(--border-base) solid var(--gray400);
|
|
300
|
+
padding-top: calc(var(--space-unit) + 3px);
|
|
166
301
|
}
|
|
167
302
|
|
|
168
|
-
ul > li:last-child {
|
|
169
|
-
border-bottom: none;
|
|
170
|
-
}
|
|
171
303
|
}
|
|
172
304
|
|
|
173
305
|
/* Desktop breakpoint */
|
|
174
306
|
@media only screen and (min-width: 1152px) {
|
|
175
|
-
button {
|
|
176
|
-
max-width: initial;
|
|
177
|
-
}
|
|
178
307
|
}
|
|
179
308
|
|
|
180
309
|
/* Wide 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-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],\"menucontent\":[1],\"theme\":[1],\"ismenuopen\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"],[8,\"click\",\"handleClickOutside\"]]],[1,\"z-app-switcher\",{\"theme\":[1],\"isopen\":[32]}],[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-app-topbar\",{\"theme\":[1],\"logged\":[4],\"hashtag\":[1],\"zLinksValues\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"]]],[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-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-logo\",{\"width\":[2],\"height\":[2],\"imagealt\":[1],\"link\":[1],\"targetblank\":[4]}],[1,\"z-myz-list-item\",{\"text\":[1],\"link\":[1],\"linktarget\":[1],\"icon\":[1],\"listitemid\":[1],\"action\":[1],\"underlined\":[4]}],[2,\"z-divider\",{\"size\":[1],\"color\":[1],\"orientation\":[1]}],[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]}],[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-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-app-switcher\",{\"theme\":[1],\"isopen\":[32]}],[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-app-topbar\",{\"theme\":[1],\"logged\":[4],\"hashtag\":[1],\"zLinksValues\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"]]],[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-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-logo\",{\"width\":[2],\"height\":[2],\"imagealt\":[1],\"link\":[1],\"targetblank\":[4]}],[1,\"z-myz-list-item\",{\"text\":[1],\"link\":[1],\"linktarget\":[1],\"icon\":[1],\"listitemid\":[1],\"action\":[1],\"underlined\":[4]}],[2,\"z-divider\",{\"size\":[1],\"color\":[1],\"orientation\":[1]}],[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]}],[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
|
|
|
@@ -13,5 +13,5 @@ const patchBrowser = () => {
|
|
|
13
13
|
};
|
|
14
14
|
|
|
15
15
|
patchBrowser().then(options => {
|
|
16
|
-
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-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],\"menucontent\":[1],\"theme\":[1],\"ismenuopen\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"],[8,\"click\",\"handleClickOutside\"]]],[1,\"z-app-switcher\",{\"theme\":[1],\"isopen\":[32]}],[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-app-topbar\",{\"theme\":[1],\"logged\":[4],\"hashtag\":[1],\"zLinksValues\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"]]],[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-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-logo\",{\"width\":[2],\"height\":[2],\"imagealt\":[1],\"link\":[1],\"targetblank\":[4]}],[1,\"z-myz-list-item\",{\"text\":[1],\"link\":[1],\"linktarget\":[1],\"icon\":[1],\"listitemid\":[1],\"action\":[1],\"underlined\":[4]}],[2,\"z-divider\",{\"size\":[1],\"color\":[1],\"orientation\":[1]}],[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]}],[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);
|
|
16
|
+
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-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-app-switcher\",{\"theme\":[1],\"isopen\":[32]}],[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-app-topbar\",{\"theme\":[1],\"logged\":[4],\"hashtag\":[1],\"zLinksValues\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"]]],[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-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-logo\",{\"width\":[2],\"height\":[2],\"imagealt\":[1],\"link\":[1],\"targetblank\":[4]}],[1,\"z-myz-list-item\",{\"text\":[1],\"link\":[1],\"linktarget\":[1],\"icon\":[1],\"listitemid\":[1],\"action\":[1],\"underlined\":[4]}],[2,\"z-divider\",{\"size\":[1],\"color\":[1],\"orientation\":[1]}],[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]}],[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);
|
|
17
17
|
});
|