@oiz/stzh-components 2.5.0-alpha → 2.5.0-beta
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/{app-globals-0c3558c0.js → app-globals-adfd466f.js} +1 -1
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/stzh-badge_3.cjs.entry.js +1 -1
- package/dist/cjs/stzh-chip_2.cjs.entry.js +1 -1
- package/dist/cjs/stzh-components.cjs.js +2 -2
- package/dist/cjs/stzh-dropdown.cjs.entry.js +19 -1
- package/dist/cjs/stzh-olmap.cjs.entry.js +442 -1
- package/dist/collection/components/stzh-button/stzh-button.css +1 -0
- package/dist/collection/components/stzh-chip/stzh-chip.css +13 -8
- package/dist/collection/components/stzh-dropdown/stzh-dropdown.css +15 -2
- package/dist/collection/components/stzh-dropdown/stzh-dropdown.js +94 -8
- package/dist/collection/components/stzh-olmap/stzh-olmap.css +7 -2
- package/dist/collection/components/stzh-olmap/stzh-olmap.js +34 -0
- package/dist/components/index.js +1 -1
- package/dist/components/stzh-button2.js +1 -1
- package/dist/components/stzh-chip2.js +1 -1
- package/dist/components/stzh-dropdown2.js +24 -2
- package/dist/components/stzh-olmap.js +444 -2
- package/dist/esm/{app-globals-a58b5d2d.js → app-globals-9f43baf6.js} +1 -1
- package/dist/esm/loader.js +2 -2
- package/dist/esm/stzh-badge_3.entry.js +1 -1
- package/dist/esm/stzh-chip_2.entry.js +1 -1
- package/dist/esm/stzh-components.js +2 -2
- package/dist/esm/stzh-dropdown.entry.js +19 -1
- package/dist/esm/stzh-olmap.entry.js +442 -1
- package/dist/esm-es5/{app-globals-a58b5d2d.js → app-globals-9f43baf6.js} +1 -1
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/stzh-badge_3.entry.js +1 -1
- package/dist/esm-es5/stzh-chip_2.entry.js +1 -1
- package/dist/esm-es5/stzh-components.js +1 -1
- package/dist/esm-es5/stzh-dropdown.entry.js +6 -6
- package/dist/esm-es5/stzh-olmap.entry.js +2 -2
- package/dist/stzh-components/p-08e324a9.entry.js +9 -0
- package/dist/stzh-components/p-22d01c71.entry.js +1 -0
- package/dist/stzh-components/{p-72f050c1.system.js → p-3cec74af.system.js} +1 -1
- package/dist/stzh-components/p-4b2a4289.entry.js +1 -0
- package/dist/stzh-components/{p-a8205b50.system.entry.js → p-833c666f.system.entry.js} +1 -1
- package/dist/stzh-components/p-8e48e5b2.system.js +1 -0
- package/dist/stzh-components/p-a3d67aca.entry.js +7 -0
- package/dist/stzh-components/p-a493c52e.system.entry.js +1 -0
- package/dist/stzh-components/p-b706c115.system.entry.js +1 -0
- package/dist/stzh-components/{p-73ce3c9b.system.entry.js → p-bd2b4c37.system.entry.js} +7 -7
- package/dist/stzh-components/{p-8276a3a5.js → p-d8468b5f.js} +1 -1
- package/dist/stzh-components/stzh-components.esm.js +1 -1
- package/dist/stzh-components/stzh-components.js +1 -1
- package/dist/types/components.d.ts +36 -8
- package/dist/vscode-data.json +20 -0
- package/package.json +1 -1
- package/dist/stzh-components/p-06e2b01d.system.entry.js +0 -1
- package/dist/stzh-components/p-077a1368.entry.js +0 -1
- package/dist/stzh-components/p-0b5226e2.entry.js +0 -7
- package/dist/stzh-components/p-406c9413.entry.js +0 -9
- package/dist/stzh-components/p-ac6df3e4.system.entry.js +0 -1
- package/dist/stzh-components/p-cfe82456.entry.js +0 -1
- package/dist/stzh-components/p-dde56464.system.js +0 -1
|
@@ -110,7 +110,9 @@
|
|
|
110
110
|
--background-color: var(--stzh-color-white);
|
|
111
111
|
--icon-size: var(--stzh-icon-size-small);
|
|
112
112
|
--icon-color: var(--stzh-color-primary, var(--stzh-color-zueriblue));
|
|
113
|
+
--icon-gap: var(--stzh-space-xsmall);
|
|
113
114
|
--counter-color: var(--stzh-color-primary60op);
|
|
115
|
+
--counter-gap: var(--stzh-space-xsmall);
|
|
114
116
|
--hover-color: var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));
|
|
115
117
|
--hover-border-color: var(--border-color);
|
|
116
118
|
--hover-background-color: var(--stzh-color-primary8);
|
|
@@ -139,6 +141,7 @@
|
|
|
139
141
|
:host[size=small] {
|
|
140
142
|
--height: 1.5rem;
|
|
141
143
|
--icon-size: var(--stzh-icon-size-xsmall);
|
|
144
|
+
--counter-gap: var(--stzh-space-xxsmall);
|
|
142
145
|
}
|
|
143
146
|
:host[variant=input] {
|
|
144
147
|
--border-color: transparent;
|
|
@@ -157,6 +160,14 @@
|
|
|
157
160
|
--hover-icon-color: var(--stzh-base-color);
|
|
158
161
|
--hover-counter-color: var(--stzh-base-color);
|
|
159
162
|
}
|
|
163
|
+
:host[variant=input][size=small] {
|
|
164
|
+
--padding: 0 var(--stzh-space-small);
|
|
165
|
+
--icon-gap: var(--stzh-space-xxsmall);
|
|
166
|
+
}
|
|
167
|
+
:host[variant=tag][size=small] {
|
|
168
|
+
--padding: 0 var(--stzh-space-xsmall);
|
|
169
|
+
--icon-gap: var(--stzh-space-xxsmall);
|
|
170
|
+
}
|
|
160
171
|
:host[type=secondary] {
|
|
161
172
|
--color: var(--stzh-base-lead-color);
|
|
162
173
|
--counter-color: var(--stzh-color-grey40);
|
|
@@ -289,12 +300,12 @@
|
|
|
289
300
|
flex-shrink: 0;
|
|
290
301
|
}
|
|
291
302
|
.stzh-chip__icon-wrapper:not(:empty) {
|
|
292
|
-
margin-right: var(--
|
|
303
|
+
margin-right: var(--icon-gap);
|
|
293
304
|
}
|
|
294
305
|
.stzh-chip__counter {
|
|
295
306
|
display: flex;
|
|
296
307
|
font-variant-numeric: tabular-nums;
|
|
297
|
-
margin-left: var(--
|
|
308
|
+
margin-left: var(--counter-gap);
|
|
298
309
|
color: var(--counter-color);
|
|
299
310
|
transition: color var(--stzh-base-transition-animation-speed);
|
|
300
311
|
}
|
|
@@ -343,12 +354,6 @@
|
|
|
343
354
|
font-size: var(--stzh-font-nano-font-size);
|
|
344
355
|
line-height: var(--stzh-font-nano-text-line-height);
|
|
345
356
|
}
|
|
346
|
-
.stzh-chip--size-small .stzh-chip__icon-wrapper:not(:empty) {
|
|
347
|
-
margin-right: var(--stzh-space-xxsmall);
|
|
348
|
-
}
|
|
349
|
-
.stzh-chip--size-small .stzh-chip__counter {
|
|
350
|
-
margin-left: var(--stzh-space-xxsmall);
|
|
351
|
-
}
|
|
352
357
|
.stzh-chip--is-removable .stzh-chip__button {
|
|
353
358
|
padding-right: calc(var(--height) + var(--stzh-space-xxsmall));
|
|
354
359
|
}
|
|
@@ -171,6 +171,7 @@ stzh-dropdown[disabled]:not([disabled=false])[variant=plain] {
|
|
|
171
171
|
.stzh-dropdown {
|
|
172
172
|
/* Plugin: Input autogrow */
|
|
173
173
|
/* Has Items */
|
|
174
|
+
/* Is Open */
|
|
174
175
|
/* Multiple variant */
|
|
175
176
|
/* Plugin: Remove button */
|
|
176
177
|
/* Popover placement */
|
|
@@ -400,6 +401,7 @@ stzh-dropdown[disabled]:not([disabled=false])[variant=plain] {
|
|
|
400
401
|
}
|
|
401
402
|
.stzh-dropdown__angle-icon {
|
|
402
403
|
right: var(--stzh-space-medium);
|
|
404
|
+
transform-origin: 50% 0%;
|
|
403
405
|
}
|
|
404
406
|
.stzh-dropdown__label {
|
|
405
407
|
font-family: var(--stzh-font-family-heavy);
|
|
@@ -563,6 +565,9 @@ stzh-dropdown[disabled]:not([disabled=false])[variant=plain] {
|
|
|
563
565
|
.stzh-dropdown__select.has-items .ts-control > input:-ms-input-placeholder {
|
|
564
566
|
color: transparent;
|
|
565
567
|
}
|
|
568
|
+
.stzh-dropdown__select.dropdown-active ~ .stzh-dropdown__angle-icon {
|
|
569
|
+
transform: rotate(180deg) translateY(-50%);
|
|
570
|
+
}
|
|
566
571
|
.stzh-dropdown--is-multiple .stzh-dropdown__option-check {
|
|
567
572
|
display: inline-flex;
|
|
568
573
|
opacity: 0;
|
|
@@ -640,15 +645,23 @@ stzh-dropdown[disabled]:not([disabled=false])[variant=plain] {
|
|
|
640
645
|
.stzh-dropdown--is-multiple .stzh-dropdown__select.plugin-remove_button .stzh-dropdown__item.active .stzh-dropdown__remove-icon {
|
|
641
646
|
color: var(--stzh-color-white);
|
|
642
647
|
}
|
|
643
|
-
.stzh-dropdown--popover-placement-top .stzh-dropdown__dropdown {
|
|
648
|
+
.stzh-dropdown--popover-placement-top .stzh-dropdown__dropdown, .stzh-dropdown--popover-placement-top-end .stzh-dropdown__dropdown, .stzh-dropdown--popover-placement-top-center .stzh-dropdown__dropdown {
|
|
644
649
|
margin-top: 0;
|
|
645
650
|
top: auto;
|
|
646
651
|
bottom: 100%;
|
|
647
652
|
margin-bottom: var(--stzh-space-xsmall);
|
|
648
653
|
}
|
|
649
|
-
.stzh-dropdown--popover-placement-top.stzh-dropdown--plain .stzh-dropdown__dropdown {
|
|
654
|
+
.stzh-dropdown--popover-placement-top.stzh-dropdown--plain .stzh-dropdown__dropdown, .stzh-dropdown--popover-placement-top-end.stzh-dropdown--plain .stzh-dropdown__dropdown, .stzh-dropdown--popover-placement-top-center.stzh-dropdown--plain .stzh-dropdown__dropdown {
|
|
650
655
|
margin-bottom: 0;
|
|
651
656
|
}
|
|
657
|
+
.stzh-dropdown--popover-placement-top-end .stzh-dropdown__dropdown, .stzh-dropdown--popover-placement-bottom-end .stzh-dropdown__dropdown {
|
|
658
|
+
left: auto;
|
|
659
|
+
right: 0;
|
|
660
|
+
}
|
|
661
|
+
.stzh-dropdown--popover-placement-top-center .stzh-dropdown__dropdown, .stzh-dropdown--popover-placement-bottom-center .stzh-dropdown__dropdown {
|
|
662
|
+
left: 50%;
|
|
663
|
+
transform: translateX(-50%);
|
|
664
|
+
}
|
|
652
665
|
.stzh-dropdown--size-small .ts-control, .stzh-dropdown--size-small .stzh-dropdown__sizer {
|
|
653
666
|
font-size: var(--stzh-font-micro-font-size);
|
|
654
667
|
line-height: var(--stzh-font-micro-text-line-height);
|
|
@@ -60,6 +60,8 @@ export class StzhDropdown {
|
|
|
60
60
|
this.optgroupValueField = "value";
|
|
61
61
|
this.lockOptgroupOrder = undefined;
|
|
62
62
|
this.name = "";
|
|
63
|
+
this.open = false;
|
|
64
|
+
this.isOpen = false;
|
|
63
65
|
this.variant = "default";
|
|
64
66
|
this.size = "default";
|
|
65
67
|
this.disabled = false;
|
|
@@ -163,6 +165,14 @@ export class StzhDropdown {
|
|
|
163
165
|
async loadItems(query) {
|
|
164
166
|
return this.tomSelect.load(query);
|
|
165
167
|
}
|
|
168
|
+
/** Show dropdown popover */
|
|
169
|
+
async show() {
|
|
170
|
+
return this.tomSelect.open();
|
|
171
|
+
}
|
|
172
|
+
/** Hide dropdown popover */
|
|
173
|
+
async hide() {
|
|
174
|
+
return this.tomSelect.close();
|
|
175
|
+
}
|
|
166
176
|
updateFilled() {
|
|
167
177
|
if (this._items.length > 0) {
|
|
168
178
|
this.rootElement.classList.add(CLASS_FILLED);
|
|
@@ -182,6 +192,9 @@ export class StzhDropdown {
|
|
|
182
192
|
this.localization = await fetchTranslations(this.element, "dropdown");
|
|
183
193
|
}
|
|
184
194
|
}
|
|
195
|
+
componentShouldUpdate(_newValue, _oldValue, prop) {
|
|
196
|
+
return ["isOpen"].includes(prop) === false;
|
|
197
|
+
}
|
|
185
198
|
async componentWillUpdate() {
|
|
186
199
|
if (this.tomSelect) {
|
|
187
200
|
this.tomSelect.destroy();
|
|
@@ -349,11 +362,13 @@ export class StzhDropdown {
|
|
|
349
362
|
});
|
|
350
363
|
},
|
|
351
364
|
onDropdownOpen: () => {
|
|
365
|
+
this.isOpen = true;
|
|
352
366
|
this.stzhOpen.emit({
|
|
353
367
|
component: "stzh-dropdown"
|
|
354
368
|
});
|
|
355
369
|
},
|
|
356
370
|
onDropdownClose: () => {
|
|
371
|
+
this.isOpen = false;
|
|
357
372
|
this.stzhClose.emit({
|
|
358
373
|
component: "stzh-dropdown"
|
|
359
374
|
});
|
|
@@ -421,6 +436,9 @@ export class StzhDropdown {
|
|
|
421
436
|
this.tomSelect.open();
|
|
422
437
|
});
|
|
423
438
|
}
|
|
439
|
+
if (this.open) {
|
|
440
|
+
this.show();
|
|
441
|
+
}
|
|
424
442
|
}
|
|
425
443
|
disconnectedCallback() {
|
|
426
444
|
if (this.tomSelect) {
|
|
@@ -868,6 +886,42 @@ export class StzhDropdown {
|
|
|
868
886
|
"reflect": true,
|
|
869
887
|
"defaultValue": "\"\""
|
|
870
888
|
},
|
|
889
|
+
"open": {
|
|
890
|
+
"type": "boolean",
|
|
891
|
+
"mutable": false,
|
|
892
|
+
"complexType": {
|
|
893
|
+
"original": "boolean",
|
|
894
|
+
"resolved": "boolean",
|
|
895
|
+
"references": {}
|
|
896
|
+
},
|
|
897
|
+
"required": false,
|
|
898
|
+
"optional": false,
|
|
899
|
+
"docs": {
|
|
900
|
+
"tags": [],
|
|
901
|
+
"text": "Initial open state"
|
|
902
|
+
},
|
|
903
|
+
"attribute": "open",
|
|
904
|
+
"reflect": false,
|
|
905
|
+
"defaultValue": "false"
|
|
906
|
+
},
|
|
907
|
+
"isOpen": {
|
|
908
|
+
"type": "boolean",
|
|
909
|
+
"mutable": false,
|
|
910
|
+
"complexType": {
|
|
911
|
+
"original": "boolean",
|
|
912
|
+
"resolved": "boolean",
|
|
913
|
+
"references": {}
|
|
914
|
+
},
|
|
915
|
+
"required": false,
|
|
916
|
+
"optional": false,
|
|
917
|
+
"docs": {
|
|
918
|
+
"tags": [],
|
|
919
|
+
"text": "Current open state (readonly)"
|
|
920
|
+
},
|
|
921
|
+
"attribute": "is-open",
|
|
922
|
+
"reflect": true,
|
|
923
|
+
"defaultValue": "false"
|
|
924
|
+
},
|
|
871
925
|
"variant": {
|
|
872
926
|
"type": "string",
|
|
873
927
|
"mutable": false,
|
|
@@ -926,8 +980,8 @@ export class StzhDropdown {
|
|
|
926
980
|
"type": "string",
|
|
927
981
|
"mutable": false,
|
|
928
982
|
"complexType": {
|
|
929
|
-
"original": "\"bottom\" | \"top\"",
|
|
930
|
-
"resolved": "\"bottom\" | \"top\"",
|
|
983
|
+
"original": "\"bottom\" | \"bottom-end\" | \"bottom-center\" | \"top\" | \"top-end\" | \"top-center\"",
|
|
984
|
+
"resolved": "\"bottom\" | \"bottom-center\" | \"bottom-end\" | \"top\" | \"top-center\" | \"top-end\"",
|
|
931
985
|
"references": {}
|
|
932
986
|
},
|
|
933
987
|
"required": false,
|
|
@@ -1186,7 +1240,7 @@ export class StzhDropdown {
|
|
|
1186
1240
|
"composed": true,
|
|
1187
1241
|
"docs": {
|
|
1188
1242
|
"tags": [],
|
|
1189
|
-
"text": "Dropdown
|
|
1243
|
+
"text": "Dropdown item added event"
|
|
1190
1244
|
},
|
|
1191
1245
|
"complexType": {
|
|
1192
1246
|
"original": "StzhDropdownItemAddEvent",
|
|
@@ -1206,7 +1260,7 @@ export class StzhDropdown {
|
|
|
1206
1260
|
"composed": true,
|
|
1207
1261
|
"docs": {
|
|
1208
1262
|
"tags": [],
|
|
1209
|
-
"text": "Dropdown
|
|
1263
|
+
"text": "Dropdown item removed event"
|
|
1210
1264
|
},
|
|
1211
1265
|
"complexType": {
|
|
1212
1266
|
"original": "StzhDropdownItemRemoveEvent",
|
|
@@ -1226,7 +1280,7 @@ export class StzhDropdown {
|
|
|
1226
1280
|
"composed": true,
|
|
1227
1281
|
"docs": {
|
|
1228
1282
|
"tags": [],
|
|
1229
|
-
"text": "Dropdown
|
|
1283
|
+
"text": "Dropdown option added event"
|
|
1230
1284
|
},
|
|
1231
1285
|
"complexType": {
|
|
1232
1286
|
"original": "StzhDropdownOptionAddEvent",
|
|
@@ -1246,7 +1300,7 @@ export class StzhDropdown {
|
|
|
1246
1300
|
"composed": true,
|
|
1247
1301
|
"docs": {
|
|
1248
1302
|
"tags": [],
|
|
1249
|
-
"text": "Dropdown
|
|
1303
|
+
"text": "Dropdown option removed event"
|
|
1250
1304
|
},
|
|
1251
1305
|
"complexType": {
|
|
1252
1306
|
"original": "StzhDropdownOptionRemoveEvent",
|
|
@@ -1266,7 +1320,7 @@ export class StzhDropdown {
|
|
|
1266
1320
|
"composed": true,
|
|
1267
1321
|
"docs": {
|
|
1268
1322
|
"tags": [],
|
|
1269
|
-
"text": "Dropdown
|
|
1323
|
+
"text": "Dropdown open event"
|
|
1270
1324
|
},
|
|
1271
1325
|
"complexType": {
|
|
1272
1326
|
"original": "StzhDropdownOpenEvent",
|
|
@@ -1286,7 +1340,7 @@ export class StzhDropdown {
|
|
|
1286
1340
|
"composed": true,
|
|
1287
1341
|
"docs": {
|
|
1288
1342
|
"tags": [],
|
|
1289
|
-
"text": "Dropdown
|
|
1343
|
+
"text": "Dropdown close event"
|
|
1290
1344
|
},
|
|
1291
1345
|
"complexType": {
|
|
1292
1346
|
"original": "StzhDropdowCloseEvent",
|
|
@@ -1482,6 +1536,38 @@ export class StzhDropdown {
|
|
|
1482
1536
|
"text": "Load items by calling load property/function",
|
|
1483
1537
|
"tags": []
|
|
1484
1538
|
}
|
|
1539
|
+
},
|
|
1540
|
+
"show": {
|
|
1541
|
+
"complexType": {
|
|
1542
|
+
"signature": "() => Promise<any>",
|
|
1543
|
+
"parameters": [],
|
|
1544
|
+
"references": {
|
|
1545
|
+
"Promise": {
|
|
1546
|
+
"location": "global"
|
|
1547
|
+
}
|
|
1548
|
+
},
|
|
1549
|
+
"return": "Promise<any>"
|
|
1550
|
+
},
|
|
1551
|
+
"docs": {
|
|
1552
|
+
"text": "Show dropdown popover",
|
|
1553
|
+
"tags": []
|
|
1554
|
+
}
|
|
1555
|
+
},
|
|
1556
|
+
"hide": {
|
|
1557
|
+
"complexType": {
|
|
1558
|
+
"signature": "() => Promise<any>",
|
|
1559
|
+
"parameters": [],
|
|
1560
|
+
"references": {
|
|
1561
|
+
"Promise": {
|
|
1562
|
+
"location": "global"
|
|
1563
|
+
}
|
|
1564
|
+
},
|
|
1565
|
+
"return": "Promise<any>"
|
|
1566
|
+
},
|
|
1567
|
+
"docs": {
|
|
1568
|
+
"text": "Hide dropdown popover",
|
|
1569
|
+
"tags": []
|
|
1570
|
+
}
|
|
1485
1571
|
}
|
|
1486
1572
|
};
|
|
1487
1573
|
}
|
|
@@ -250,9 +250,14 @@ stzh-olmap *::after {
|
|
|
250
250
|
.stzh-olmap .ol-location {
|
|
251
251
|
margin-bottom: calc(var(--stzh-form-input-small-height) * 3 + var(--stzh-space-xsmall) * 2);
|
|
252
252
|
}
|
|
253
|
+
.stzh-olmap .ol-location:hover {
|
|
254
|
+
color: var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));
|
|
255
|
+
background: var(--stzh-color-white);
|
|
256
|
+
border-color: var(--stzh-color-white);
|
|
257
|
+
}
|
|
253
258
|
.stzh-olmap .ol-location.active {
|
|
254
|
-
background: var(--stzh-color-primary
|
|
255
|
-
border-color: var(--stzh-color-primary
|
|
259
|
+
background: var(--stzh-color-primary, var(--stzh-color-zueriblue));
|
|
260
|
+
border-color: var(--stzh-color-primary, var(--stzh-color-zueriblue));
|
|
256
261
|
color: var(--stzh-color-white);
|
|
257
262
|
}
|
|
258
263
|
.stzh-olmap .ol-zoom {
|
|
@@ -11,11 +11,13 @@ import OlExtent from "ol/extent.js";
|
|
|
11
11
|
import OlView from "ol/view.js";
|
|
12
12
|
// import OlAttribution from "ol/attribution.js";
|
|
13
13
|
import OlFeature from "ol/feature";
|
|
14
|
+
import OlSphere from "ol/sphere";
|
|
14
15
|
// import OlProj from "ol/proj";
|
|
15
16
|
import OlProjProjection from "ol/proj/projection";
|
|
16
17
|
import OlSourceWmts from "ol/source/wmts.js";
|
|
17
18
|
import OlSourceVector from "ol/source/vector.js";
|
|
18
19
|
import OlGeomPoint from "ol/geom/point.js";
|
|
20
|
+
import OlGeomLineString from "ol/geom/linestring.js";
|
|
19
21
|
import OlLayerTile from "ol/layer/tile.js";
|
|
20
22
|
import OlLayerVector from "ol/layer/vector.js";
|
|
21
23
|
import OlControl from "ol/control";
|
|
@@ -414,6 +416,16 @@ export class StzhOlmap {
|
|
|
414
416
|
this.geolocation.setTracking(false);
|
|
415
417
|
}
|
|
416
418
|
}
|
|
419
|
+
/** Get distance between two points in meters */
|
|
420
|
+
async getDistance(startCoords, endCoords) {
|
|
421
|
+
const line = new OlGeomLineString([
|
|
422
|
+
startCoords, endCoords
|
|
423
|
+
]);
|
|
424
|
+
const length = OlSphere.getLength(line, {
|
|
425
|
+
projection: this.map.getView().getProjection()
|
|
426
|
+
});
|
|
427
|
+
return length;
|
|
428
|
+
}
|
|
417
429
|
handleLoad() {
|
|
418
430
|
if (this.map) {
|
|
419
431
|
requestAnimationFrame(() => {
|
|
@@ -1068,6 +1080,28 @@ export class StzhOlmap {
|
|
|
1068
1080
|
"text": "Disable user location tracking",
|
|
1069
1081
|
"tags": []
|
|
1070
1082
|
}
|
|
1083
|
+
},
|
|
1084
|
+
"getDistance": {
|
|
1085
|
+
"complexType": {
|
|
1086
|
+
"signature": "(startCoords: any, endCoords: any) => Promise<any>",
|
|
1087
|
+
"parameters": [{
|
|
1088
|
+
"tags": [],
|
|
1089
|
+
"text": ""
|
|
1090
|
+
}, {
|
|
1091
|
+
"tags": [],
|
|
1092
|
+
"text": ""
|
|
1093
|
+
}],
|
|
1094
|
+
"references": {
|
|
1095
|
+
"Promise": {
|
|
1096
|
+
"location": "global"
|
|
1097
|
+
}
|
|
1098
|
+
},
|
|
1099
|
+
"return": "Promise<any>"
|
|
1100
|
+
},
|
|
1101
|
+
"docs": {
|
|
1102
|
+
"text": "Get distance between two points in meters",
|
|
1103
|
+
"tags": []
|
|
1104
|
+
}
|
|
1071
1105
|
}
|
|
1072
1106
|
};
|
|
1073
1107
|
}
|
package/dist/components/index.js
CHANGED
|
@@ -930,7 +930,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
930
930
|
})();
|
|
931
931
|
|
|
932
932
|
const name = "@oiz/stzh-components";
|
|
933
|
-
const version = "2.5.0-
|
|
933
|
+
const version = "2.5.0-beta";
|
|
934
934
|
|
|
935
935
|
const packageName = name.substring(name.indexOf('/')+1);
|
|
936
936
|
|
|
@@ -4,7 +4,7 @@ import { f as fetchTranslations } from './translation-utils.js';
|
|
|
4
4
|
import { d as defineCustomElement$2 } from './stzh-badge2.js';
|
|
5
5
|
import { d as defineCustomElement$1 } from './stzh-icon2.js';
|
|
6
6
|
|
|
7
|
-
const stzhButtonCss = "@charset \"UTF-8\";.sc-stzh-button-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-button-h{display:none}.sc-stzh-button-h *.sc-stzh-button,.sc-stzh-button-h *.sc-stzh-button::before,.sc-stzh-button-h *.sc-stzh-button::after{-webkit-box-sizing:border-box;box-sizing:border-box;text-underline-offset:var(--stzh-link-text-underline-offset);text-decoration-thickness:var(--stzh-link-text-decoration-thickness)}.sc-stzh-button-h{--color:var(--stzh-color-white);--background-color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--border-width:0.0625rem;--border-color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--border-radius:var(--stzh-button-border-radius);--height:var(--stzh-form-input-height);--icon-size:var(--stzh-icon-size-small);--icon-text-margin:var(--stzh-space-small);--badge-icon-text-margin:calc(var(--icon-text-margin) + var(--stzh-space-xxsmall));--padding:calc(var(--stzh-space-xsmall) - 0.0625rem) var(--stzh-space-xlarge);--white-space:normal;--border-radius:var(--stzh-button-border-radius);--hover-color:var(--stzh-color-white);--hover-background-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-border-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--floating-position:sticky;--floating-float:right;--floating-bottom:var(--stzh-space-medium);--floating-right:var(--stzh-space-medium);display:inline-block}@media screen and (min-width: 600px){.sc-stzh-button-h{--floating-bottom:var(--stzh-space-xlarge);--floating-right:var(--stzh-space-xlarge)}}[fullwidth].sc-stzh-button-h:not([fullwidth=false]){width:100%;display:block}[rounded].sc-stzh-button-h:not([rounded=false]){--border-radius:var(--height)}[floating].sc-stzh-button-h:not([floating=false]){position:var(--floating-position);bottom:var(--floating-bottom);right:var(--floating-right);float:var(--floating-float)}[size=small].sc-stzh-button-h{--height:var(--stzh-form-input-small-height)}[size=tiny].sc-stzh-button-h{--height:var(--stzh-form-input-tiny-height);--icon-text-margin:var(--stzh-space-xsmall);--padding:calc(var(--stzh-space-xxsmall) - 0.0625rem) var(--stzh-space-medium)}[variant=secondary].sc-stzh-button-h{--color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--background-color:var(--stzh-color-white)}[variant=input].sc-stzh-button-h{--color:var(--stzh-color-grey61);--background-color:transparent;--border-color:var(--stzh-color-grey61);--hover-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-background-color:transparent;--hover-border-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark))}[variant=tertiary].sc-stzh-button-h{--color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--background-color:transparent;--border-color:transparent;--hover-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-background-color:var(--stzh-button-text-hover-background);--hover-border-color:transparent}[active].sc-stzh-button-h:not([active=false]){--color:var(--stzh-color-white);--background-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--border-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-color:var(--stzh-color-white);--hover-background-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-border-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark))}[disabled].sc-stzh-button-h:not([disabled=false]){--border-color:var(--stzh-color-grey13);--background-color:var(--stzh-color-grey13);--hover-border-color:var(--stzh-color-grey13);--hover-background-color:var(--stzh-color-grey13)}[disabled].sc-stzh-button-h:not([disabled=false])[variant=secondary],[disabled].sc-stzh-button-h:not([disabled=false])[variant=input],[disabled].sc-stzh-button-h:not([disabled=false])[variant=tertiary]{--color:var(--stzh-color-grey25);--border-color:var(--stzh-color-grey13);--background-color:transparent;--hover-color:var(--stzh-color-grey25);--hover-border-color:var(--stzh-color-grey13);--hover-background-color:transparent}@-webkit-keyframes stzh-button-effect-cta{0%,20%,50%,80%,100%{-webkit-transform:translateX(0);transform:translateX(0)}40%{-webkit-transform:translateX(-0.5rem);transform:translateX(-0.5rem)}60%{-webkit-transform:translateX(-0.25rem);transform:translateX(-0.25rem)}}@keyframes stzh-button-effect-cta{0%,20%,50%,80%,100%{-webkit-transform:translateX(0);transform:translateX(0)}40%{-webkit-transform:translateX(-0.5rem);transform:translateX(-0.5rem)}60%{-webkit-transform:translateX(-0.25rem);transform:translateX(-0.25rem)}}.sc-stzh-button-h .sc-stzh-button-s>stzh-icon,.stzh-button__icon.sc-stzh-button{--size:var(--icon-size)}.stzh-button.sc-stzh-button{font-size:var(--stzh-font-milli-font-size);line-height:var(--stzh-font-milli-text-line-height);letter-spacing:var(--stzh-font-curve---text-letter-spacing);line-height:1.25;font-family:inherit;position:relative;z-index:0;overflow:visible;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:stretch;justify-content:stretch;-webkit-appearance:none;-moz-appearance:none;appearance:none;color:var(--color);padding:var(--padding);background-color:var(--background-color);-webkit-transition-duration:var(--stzh-base-transition-animation-speed);transition-duration:var(--stzh-base-transition-animation-speed);-webkit-transition-property:color, background-color, border-color;transition-property:color, background-color, border-color;border-style:solid;border-width:var(--border-width);border-color:var(--border-color);cursor:pointer;-webkit-text-decoration-line:none;text-decoration-line:none;width:100%;min-width:var(--height);min-height:var(--height);border-radius:var(--border-radius);text-align:left}.stzh-button.sc-stzh-button:hover{border-color:var(--hover-border-color);background-color:var(--hover-background-color);color:var(--hover-color)}.stzh-button__vhidden.sc-stzh-button{border:0;clip:rect(0 0 0 0);-webkit-clip-path:inset(100%);clip-path:inset(100%);width:0.0625rem;height:0.0625rem;overflow:hidden;padding:0;position:absolute}.stzh-button__inner.sc-stzh-button{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-positive:1;flex-grow:1}.stzh-button__icon-wrapper.sc-stzh-button{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-negative:0;flex-shrink:0;width:auto;height:1em}.stzh-button__text.sc-stzh-button{overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;white-space:var(--white-space);text-align:center}.stzh-button__icon-wrapper.sc-stzh-button:not(:empty)+.stzh-button__text.sc-stzh-button:not(:empty),.stzh-button__text.sc-stzh-button:not(:empty)+.stzh-button__icon-wrapper.sc-stzh-button:not(:empty){margin-left:var(--icon-text-margin)}.stzh-button__badge.sc-stzh-button{position:absolute;z-index:1;top:0;right:0}.stzh-button__input.sc-stzh-button{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;z-index:-1;opacity:0;pointer-events:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.stzh-button__mark.sc-stzh-button{border:0.0625rem solid var(--stzh-color-grey61);background-color:var(--stzh-color-white);width:1.5rem;height:1.5rem;-ms-flex-negative:0;flex-shrink:0;border-radius:50%;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-webkit-transition:border-color var(--stzh-base-transition-animation-speed);transition:border-color var(--stzh-base-transition-animation-speed);width:1.25rem;height:1.25rem;margin-right:var(--stzh-space-xsmall);border-color:currentColor}.stzh-button__mark.sc-stzh-button::before{content:\"\"}.stzh-button__check.sc-stzh-button{background-color:currentColor;color:var(--stzh-color-primary, var(--stzh-color-zueriblue));width:0.5rem;height:0.5rem;border-radius:50%;opacity:0}@media (forced-colors: active), (-ms-high-contrast: active){.stzh-button__check.sc-stzh-button{background-color:ButtonText}}.stzh-button__input.sc-stzh-button:checked:hover~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button .stzh-button__check.sc-stzh-button,.stzh-button__input.sc-stzh-button:checked:focus~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button .stzh-button__check.sc-stzh-button{color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark))}.stzh-button.sc-stzh-button:hover .stzh-button__mark.sc-stzh-button,.stzh-button__input.sc-stzh-button:focus:hover~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button,.stzh-button__input.sc-stzh-button:checked:hover~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button,.stzh-button__input.sc-stzh-button:checked:focus~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button{border-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark))}.stzh-button__input.sc-stzh-button:focus~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button,.stzh-button__input.sc-stzh-button:checked~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button{border-color:var(--stzh-color-primary, var(--stzh-color-zueriblue))}.stzh-button__input.sc-stzh-button:checked~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button .stzh-button__check.sc-stzh-button{opacity:1}.stzh-button--is-disabled.sc-stzh-button .stzh-button__input.sc-stzh-button~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button .stzh-button__check.sc-stzh-button{color:var(--stzh-color-grey61)}.stzh-button--is-disabled.sc-stzh-button .stzh-button__input.sc-stzh-button~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button{border-color:transparent}.stzh-button--is-disabled.sc-stzh-button .stzh-button__mark.sc-stzh-button{background-color:var(--stzh-color-black8)}.stzh-button--size-small.sc-stzh-button,.stzh-button--size-tiny.sc-stzh-button{font-size:var(--stzh-font-micro-font-size);line-height:var(--stzh-font-micro-text-line-height)}.stzh-button--is-floating.sc-stzh-button{-webkit-box-shadow:var(--stzh-box-shadow-overlay);box-shadow:var(--stzh-box-shadow-overlay)}.stzh-button--badge-position-button.sc-stzh-button .stzh-button__icon-wrapper.sc-stzh-button{position:static}.stzh-button__badge.sc-stzh-button,.stzh-button--badge-position-button.sc-stzh-button .stzh-button__badge.sc-stzh-button{top:calc(var(--stzh-space-xsmall) * -1);right:calc(var(--stzh-space-xsmall) * -1)}.stzh-button--badge-position-icon.stzh-button--has-icon.sc-stzh-button .stzh-button__icon-wrapper.sc-stzh-button{position:relative}.stzh-button--badge-position-icon.stzh-button--has-icon.sc-stzh-button .stzh-button__badge.sc-stzh-button{top:calc(var(--stzh-space-xsmall) * -1);right:calc(var(--stzh-space-small) * -1)}.stzh-button--badge-position-icon.stzh-button--has-icon.stzh-button--has-badge.sc-stzh-button .stzh-button__icon-wrapper.sc-stzh-button:not(:empty)+.stzh-button__text.sc-stzh-button:not(:empty),.stzh-button--badge-position-icon.stzh-button--has-icon.stzh-button--has-badge.sc-stzh-button .stzh-button__text.sc-stzh-button:not(:empty)+.stzh-button__icon-wrapper.sc-stzh-button:not(:empty){margin-left:var(--badge-icon-text-margin)}.stzh-button--has-icon-only.sc-stzh-button{width:var(--height);height:var(--height);padding:0}.stzh-button--has-icon-only.sc-stzh-button .stzh-button__text.sc-stzh-button{border:0;clip:rect(0 0 0 0);-webkit-clip-path:inset(100%);clip-path:inset(100%);width:0.0625rem;height:0.0625rem;overflow:hidden;padding:0;position:absolute}.stzh-button--effect-cta.sc-stzh-button:hover .stzh-button__icon-wrapper.sc-stzh-button{-webkit-animation:stzh-button-effect-cta 1s;animation:stzh-button-effect-cta 1s}.stzh-button--align-left.sc-stzh-button .stzh-button__inner.sc-stzh-button{-ms-flex-pack:start;justify-content:flex-start}.stzh-button--align-right.sc-stzh-button .stzh-button__inner.sc-stzh-button{-ms-flex-pack:end;justify-content:flex-end}.stzh-button--align-center.sc-stzh-button .stzh-button__inner.sc-stzh-button{-ms-flex-pack:center;justify-content:center}.stzh-button--align-space-between.sc-stzh-button .stzh-button__inner.sc-stzh-button{-ms-flex-pack:justify;justify-content:space-between}.stzh-button--is-disabled.sc-stzh-button{cursor:not-allowed}";
|
|
7
|
+
const stzhButtonCss = "@charset \"UTF-8\";.sc-stzh-button-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-button-h{display:none}.sc-stzh-button-h *.sc-stzh-button,.sc-stzh-button-h *.sc-stzh-button::before,.sc-stzh-button-h *.sc-stzh-button::after{-webkit-box-sizing:border-box;box-sizing:border-box;text-underline-offset:var(--stzh-link-text-underline-offset);text-decoration-thickness:var(--stzh-link-text-decoration-thickness)}.sc-stzh-button-h{--color:var(--stzh-color-white);--background-color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--border-width:0.0625rem;--border-color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--border-radius:var(--stzh-button-border-radius);--height:var(--stzh-form-input-height);--icon-size:var(--stzh-icon-size-small);--icon-text-margin:var(--stzh-space-small);--badge-icon-text-margin:calc(var(--icon-text-margin) + var(--stzh-space-xxsmall));--padding:calc(var(--stzh-space-xsmall) - 0.0625rem) var(--stzh-space-xlarge);--white-space:normal;--border-radius:var(--stzh-button-border-radius);--hover-color:var(--stzh-color-white);--hover-background-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-border-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--floating-position:sticky;--floating-float:right;--floating-bottom:var(--stzh-space-medium);--floating-right:var(--stzh-space-medium);display:inline-block}@media screen and (min-width: 600px){.sc-stzh-button-h{--floating-bottom:var(--stzh-space-xlarge);--floating-right:var(--stzh-space-xlarge)}}[fullwidth].sc-stzh-button-h:not([fullwidth=false]){width:100%;display:block}[rounded].sc-stzh-button-h:not([rounded=false]){--border-radius:var(--height)}[floating].sc-stzh-button-h:not([floating=false]){position:var(--floating-position);bottom:var(--floating-bottom);right:var(--floating-right);float:var(--floating-float)}[size=small].sc-stzh-button-h{--height:var(--stzh-form-input-small-height)}[size=tiny].sc-stzh-button-h{--height:var(--stzh-form-input-tiny-height);--icon-text-margin:var(--stzh-space-xsmall);--padding:calc(var(--stzh-space-xxsmall) - 0.0625rem) var(--stzh-space-medium)}[variant=secondary].sc-stzh-button-h{--color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--background-color:var(--stzh-color-white);--border-color:var(--stzh-color-primary60op)}[variant=input].sc-stzh-button-h{--color:var(--stzh-color-grey61);--background-color:transparent;--border-color:var(--stzh-color-grey61);--hover-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-background-color:transparent;--hover-border-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark))}[variant=tertiary].sc-stzh-button-h{--color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--background-color:transparent;--border-color:transparent;--hover-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-background-color:var(--stzh-button-text-hover-background);--hover-border-color:transparent}[active].sc-stzh-button-h:not([active=false]){--color:var(--stzh-color-white);--background-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--border-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-color:var(--stzh-color-white);--hover-background-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-border-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark))}[disabled].sc-stzh-button-h:not([disabled=false]){--border-color:var(--stzh-color-grey13);--background-color:var(--stzh-color-grey13);--hover-border-color:var(--stzh-color-grey13);--hover-background-color:var(--stzh-color-grey13)}[disabled].sc-stzh-button-h:not([disabled=false])[variant=secondary],[disabled].sc-stzh-button-h:not([disabled=false])[variant=input],[disabled].sc-stzh-button-h:not([disabled=false])[variant=tertiary]{--color:var(--stzh-color-grey25);--border-color:var(--stzh-color-grey13);--background-color:transparent;--hover-color:var(--stzh-color-grey25);--hover-border-color:var(--stzh-color-grey13);--hover-background-color:transparent}@-webkit-keyframes stzh-button-effect-cta{0%,20%,50%,80%,100%{-webkit-transform:translateX(0);transform:translateX(0)}40%{-webkit-transform:translateX(-0.5rem);transform:translateX(-0.5rem)}60%{-webkit-transform:translateX(-0.25rem);transform:translateX(-0.25rem)}}@keyframes stzh-button-effect-cta{0%,20%,50%,80%,100%{-webkit-transform:translateX(0);transform:translateX(0)}40%{-webkit-transform:translateX(-0.5rem);transform:translateX(-0.5rem)}60%{-webkit-transform:translateX(-0.25rem);transform:translateX(-0.25rem)}}.sc-stzh-button-h .sc-stzh-button-s>stzh-icon,.stzh-button__icon.sc-stzh-button{--size:var(--icon-size)}.stzh-button.sc-stzh-button{font-size:var(--stzh-font-milli-font-size);line-height:var(--stzh-font-milli-text-line-height);letter-spacing:var(--stzh-font-curve---text-letter-spacing);line-height:1.25;font-family:inherit;position:relative;z-index:0;overflow:visible;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:stretch;justify-content:stretch;-webkit-appearance:none;-moz-appearance:none;appearance:none;color:var(--color);padding:var(--padding);background-color:var(--background-color);-webkit-transition-duration:var(--stzh-base-transition-animation-speed);transition-duration:var(--stzh-base-transition-animation-speed);-webkit-transition-property:color, background-color, border-color;transition-property:color, background-color, border-color;border-style:solid;border-width:var(--border-width);border-color:var(--border-color);cursor:pointer;-webkit-text-decoration-line:none;text-decoration-line:none;width:100%;min-width:var(--height);min-height:var(--height);border-radius:var(--border-radius);text-align:left}.stzh-button.sc-stzh-button:hover{border-color:var(--hover-border-color);background-color:var(--hover-background-color);color:var(--hover-color)}.stzh-button__vhidden.sc-stzh-button{border:0;clip:rect(0 0 0 0);-webkit-clip-path:inset(100%);clip-path:inset(100%);width:0.0625rem;height:0.0625rem;overflow:hidden;padding:0;position:absolute}.stzh-button__inner.sc-stzh-button{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-positive:1;flex-grow:1}.stzh-button__icon-wrapper.sc-stzh-button{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-negative:0;flex-shrink:0;width:auto;height:1em}.stzh-button__text.sc-stzh-button{overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;white-space:var(--white-space);text-align:center}.stzh-button__icon-wrapper.sc-stzh-button:not(:empty)+.stzh-button__text.sc-stzh-button:not(:empty),.stzh-button__text.sc-stzh-button:not(:empty)+.stzh-button__icon-wrapper.sc-stzh-button:not(:empty){margin-left:var(--icon-text-margin)}.stzh-button__badge.sc-stzh-button{position:absolute;z-index:1;top:0;right:0}.stzh-button__input.sc-stzh-button{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;z-index:-1;opacity:0;pointer-events:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.stzh-button__mark.sc-stzh-button{border:0.0625rem solid var(--stzh-color-grey61);background-color:var(--stzh-color-white);width:1.5rem;height:1.5rem;-ms-flex-negative:0;flex-shrink:0;border-radius:50%;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-webkit-transition:border-color var(--stzh-base-transition-animation-speed);transition:border-color var(--stzh-base-transition-animation-speed);width:1.25rem;height:1.25rem;margin-right:var(--stzh-space-xsmall);border-color:currentColor}.stzh-button__mark.sc-stzh-button::before{content:\"\"}.stzh-button__check.sc-stzh-button{background-color:currentColor;color:var(--stzh-color-primary, var(--stzh-color-zueriblue));width:0.5rem;height:0.5rem;border-radius:50%;opacity:0}@media (forced-colors: active), (-ms-high-contrast: active){.stzh-button__check.sc-stzh-button{background-color:ButtonText}}.stzh-button__input.sc-stzh-button:checked:hover~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button .stzh-button__check.sc-stzh-button,.stzh-button__input.sc-stzh-button:checked:focus~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button .stzh-button__check.sc-stzh-button{color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark))}.stzh-button.sc-stzh-button:hover .stzh-button__mark.sc-stzh-button,.stzh-button__input.sc-stzh-button:focus:hover~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button,.stzh-button__input.sc-stzh-button:checked:hover~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button,.stzh-button__input.sc-stzh-button:checked:focus~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button{border-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark))}.stzh-button__input.sc-stzh-button:focus~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button,.stzh-button__input.sc-stzh-button:checked~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button{border-color:var(--stzh-color-primary, var(--stzh-color-zueriblue))}.stzh-button__input.sc-stzh-button:checked~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button .stzh-button__check.sc-stzh-button{opacity:1}.stzh-button--is-disabled.sc-stzh-button .stzh-button__input.sc-stzh-button~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button .stzh-button__check.sc-stzh-button{color:var(--stzh-color-grey61)}.stzh-button--is-disabled.sc-stzh-button .stzh-button__input.sc-stzh-button~.stzh-button__inner.sc-stzh-button .stzh-button__mark.sc-stzh-button{border-color:transparent}.stzh-button--is-disabled.sc-stzh-button .stzh-button__mark.sc-stzh-button{background-color:var(--stzh-color-black8)}.stzh-button--size-small.sc-stzh-button,.stzh-button--size-tiny.sc-stzh-button{font-size:var(--stzh-font-micro-font-size);line-height:var(--stzh-font-micro-text-line-height)}.stzh-button--is-floating.sc-stzh-button{-webkit-box-shadow:var(--stzh-box-shadow-overlay);box-shadow:var(--stzh-box-shadow-overlay)}.stzh-button--badge-position-button.sc-stzh-button .stzh-button__icon-wrapper.sc-stzh-button{position:static}.stzh-button__badge.sc-stzh-button,.stzh-button--badge-position-button.sc-stzh-button .stzh-button__badge.sc-stzh-button{top:calc(var(--stzh-space-xsmall) * -1);right:calc(var(--stzh-space-xsmall) * -1)}.stzh-button--badge-position-icon.stzh-button--has-icon.sc-stzh-button .stzh-button__icon-wrapper.sc-stzh-button{position:relative}.stzh-button--badge-position-icon.stzh-button--has-icon.sc-stzh-button .stzh-button__badge.sc-stzh-button{top:calc(var(--stzh-space-xsmall) * -1);right:calc(var(--stzh-space-small) * -1)}.stzh-button--badge-position-icon.stzh-button--has-icon.stzh-button--has-badge.sc-stzh-button .stzh-button__icon-wrapper.sc-stzh-button:not(:empty)+.stzh-button__text.sc-stzh-button:not(:empty),.stzh-button--badge-position-icon.stzh-button--has-icon.stzh-button--has-badge.sc-stzh-button .stzh-button__text.sc-stzh-button:not(:empty)+.stzh-button__icon-wrapper.sc-stzh-button:not(:empty){margin-left:var(--badge-icon-text-margin)}.stzh-button--has-icon-only.sc-stzh-button{width:var(--height);height:var(--height);padding:0}.stzh-button--has-icon-only.sc-stzh-button .stzh-button__text.sc-stzh-button{border:0;clip:rect(0 0 0 0);-webkit-clip-path:inset(100%);clip-path:inset(100%);width:0.0625rem;height:0.0625rem;overflow:hidden;padding:0;position:absolute}.stzh-button--effect-cta.sc-stzh-button:hover .stzh-button__icon-wrapper.sc-stzh-button{-webkit-animation:stzh-button-effect-cta 1s;animation:stzh-button-effect-cta 1s}.stzh-button--align-left.sc-stzh-button .stzh-button__inner.sc-stzh-button{-ms-flex-pack:start;justify-content:flex-start}.stzh-button--align-right.sc-stzh-button .stzh-button__inner.sc-stzh-button{-ms-flex-pack:end;justify-content:flex-end}.stzh-button--align-center.sc-stzh-button .stzh-button__inner.sc-stzh-button{-ms-flex-pack:center;justify-content:center}.stzh-button--align-space-between.sc-stzh-button .stzh-button__inner.sc-stzh-button{-ms-flex-pack:justify;justify-content:space-between}.stzh-button--is-disabled.sc-stzh-button{cursor:not-allowed}";
|
|
8
8
|
|
|
9
9
|
const StzhButton = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
10
10
|
constructor() {
|
|
@@ -4,7 +4,7 @@ import { d as defineCustomElement$3 } from './stzh-clamp2.js';
|
|
|
4
4
|
import { d as defineCustomElement$2 } from './stzh-icon2.js';
|
|
5
5
|
import { d as defineCustomElement$1 } from './stzh-link2.js';
|
|
6
6
|
|
|
7
|
-
const stzhChipCss = ".sc-stzh-chip-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-chip-h{display:none}.sc-stzh-chip-h *.sc-stzh-chip,.sc-stzh-chip-h *.sc-stzh-chip::before,.sc-stzh-chip-h *.sc-stzh-chip::after{-webkit-box-sizing:border-box;box-sizing:border-box;text-underline-offset:var(--stzh-link-text-underline-offset);text-decoration-thickness:var(--stzh-link-text-decoration-thickness)}.sc-stzh-chip-h{--color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--height:2rem;--padding:0 var(--stzh-space-medium);--border-color:var(--stzh-color-grey13);--border-radius:1rem;--remove-color:var(--stzh-base-lead-color);--remove-border-radius:1.5rem;--background-color:var(--stzh-color-white);--icon-size:var(--stzh-icon-size-small);--icon-color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--counter-color:var(--stzh-color-primary60op);--hover-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-border-color:var(--border-color);--hover-background-color:var(--stzh-color-primary8);--hover-remove-color:var(--hover-color);--hover-remove-background-color:var(--hover-background-color);--hover-icon-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-counter-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));display:-ms-inline-flexbox;display:inline-flex}@media (forced-colors: active), (-ms-high-contrast: active){.sc-stzh-chip-h{--hover-color:Highlight;--hover-border:0.0625rem solid Highlight;--hover-background-color:Canvas;--hover-remove-color:Highlight;--hover-remove-background-color:Canvas;--hover-icon-color:Highlight;--hover-counter-color:Highlight}}[size=large].sc-stzh-chip-h{--height:2.5rem;--border-radius:1.25rem;--padding:0 var(--stzh-space-xlarge)}[size=small].sc-stzh-chip-h{--height:1.5rem;--icon-size:var(--stzh-icon-size-xsmall)}[variant=input].sc-stzh-chip-h{--border-color:transparent;--background-color:var(--stzh-color-grey5);--hover-border-color:transparent}[variant=tag].sc-stzh-chip-h{--color:var(--stzh-base-color);--icon-color:var(--stzh-base-color);--counter-color:var(--stzh-base-color);--border-color:transparent;--background-color:var(--stzh-color-black8);--hover-color:var(--stzh-base-color);--hover-border-color:transparent;--hover-background-color:var(--stzh-color-black8);--hover-icon-color:var(--stzh-base-color);--hover-counter-color:var(--stzh-base-color)}[type=secondary].sc-stzh-chip-h{--color:var(--stzh-base-lead-color);--counter-color:var(--stzh-color-grey40)}[type=important].sc-stzh-chip-h{--color:var(--stzh-color-error);--icon-color:var(--stzh-color-error);--counter-color:var(--stzh-color-error);--hover-color:var(--stzh-color-error);--hover-icon-color:var(--stzh-color-error);--hover-counter-color:var(--stzh-color-error)}@media (forced-colors: active), (-ms-high-contrast: active){[type=important].sc-stzh-chip-h{--hover-color:Highlight;--hover-icon-color:Highlight;--hover-counter-color:Highlight}}[active].sc-stzh-chip-h:not([active=false]){--color:var(--stzh-color-white);--border-color:transparent;--remove-color:var(--stzh-color-white);--background-color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--icon-color:var(--stzh-color-white);--counter-color:var(--stzh-color-white56);--hover-color:var(--stzh-color-white);--hover-border-color:transparent;--hover-background-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-remove-color:var(--stzh-color-white);--hover-remove-background-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-icon-color:var(--stzh-color-white);--hover-counter-color:var(--stzh-color-white56)}@media (forced-colors: active), (-ms-high-contrast: active){[active].sc-stzh-chip-h:not([active=false]){--color:SelectedItem;--border-color:SelectedItem;--remove-color:SelectedItem;--background-color:Canvas;--icon-color:SelectedItem;--counter-color:SelectedItem;--hover-color:Highlight;--hover-border-color:Highlight;--hover-background-color:Canvas;--hover-remove-color:Highlight;--hover-remove-background-color:Canvas;--hover-icon-color:Highlight;--hover-counter-color:Highlight}}[non-interactive].sc-stzh-chip-h:not([non-interactive=false]){--hover-color:var(--color);--hover-border:var(--border-color);--hover-background-color:var(--background-color);--hover-icon-color:var(--icon-color);--hover-counter-color:var(--counter-color)}[disabled].sc-stzh-chip-h:not([disabled=false]){--color:var(--stzh-color-grey25);--border-color:var(--stzh-base-border-color);--remove-color:var(--stzh-color-grey13);--background-color:var(--stzh-color-white);--icon-color:var(--stzh-color-grey25);--counter-color:var(--stzh-color-grey25);--hover-color:var(--stzh-color-grey25);--hover-border-color:var(--stzh-base-border-color);--hover-background-color:var(--stzh-color-white);--hover-remove-color:var(--stzh-color-grey13);--hover-remove-background-color:transparent;--hover-icon-color:var(--stzh-color-grey25);--hover-counter-color:var(--stzh-color-grey25)}.sc-stzh-chip-h .sc-stzh-chip-s>stzh-icon,.stzh-chip__icon.sc-stzh-chip{--size:var(--icon-size)}.stzh-chip.sc-stzh-chip{position:relative}.stzh-chip__vhidden.sc-stzh-chip{border:0;clip:rect(0 0 0 0);-webkit-clip-path:inset(100%);clip-path:inset(100%);width:0.0625rem;height:0.0625rem;overflow:hidden;padding:0;position:absolute}.stzh-chip__button.sc-stzh-chip{font-size:var(--stzh-font-micro-font-size);line-height:var(--stzh-font-micro-text-line-height);font-family:inherit;height:var(--height);display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;border-radius:var(--border-radius);padding:var(--padding);color:var(--color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-width:0.0625rem;border-style:solid;border-color:var(--border-color);background-color:var(--background-color);-webkit-transition-duration:var(--stzh-base-transition-animation-speed);transition-duration:var(--stzh-base-transition-animation-speed);-webkit-transition-property:color, background-color, border-color;transition-property:color, background-color, border-color;-webkit-text-decoration-line:none;text-decoration-line:none}.stzh-chip__button.is-button.sc-stzh-chip,.stzh-chip__button.is-link.sc-stzh-chip{cursor:pointer}.stzh-chip__label.sc-stzh-chip{text-align:left}.stzh-chip__icon-wrapper.sc-stzh-chip{display:-ms-flexbox;display:flex;color:var(--icon-color);-webkit-transition:color var(--stzh-base-transition-animation-speed);transition:color var(--stzh-base-transition-animation-speed);-ms-flex-negative:0;flex-shrink:0}.stzh-chip__icon-wrapper.sc-stzh-chip:not(:empty){margin-right:var(--
|
|
7
|
+
const stzhChipCss = ".sc-stzh-chip-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-chip-h{display:none}.sc-stzh-chip-h *.sc-stzh-chip,.sc-stzh-chip-h *.sc-stzh-chip::before,.sc-stzh-chip-h *.sc-stzh-chip::after{-webkit-box-sizing:border-box;box-sizing:border-box;text-underline-offset:var(--stzh-link-text-underline-offset);text-decoration-thickness:var(--stzh-link-text-decoration-thickness)}.sc-stzh-chip-h{--color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--height:2rem;--padding:0 var(--stzh-space-medium);--border-color:var(--stzh-color-grey13);--border-radius:1rem;--remove-color:var(--stzh-base-lead-color);--remove-border-radius:1.5rem;--background-color:var(--stzh-color-white);--icon-size:var(--stzh-icon-size-small);--icon-color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--icon-gap:var(--stzh-space-xsmall);--counter-color:var(--stzh-color-primary60op);--counter-gap:var(--stzh-space-xsmall);--hover-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-border-color:var(--border-color);--hover-background-color:var(--stzh-color-primary8);--hover-remove-color:var(--hover-color);--hover-remove-background-color:var(--hover-background-color);--hover-icon-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-counter-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));display:-ms-inline-flexbox;display:inline-flex}@media (forced-colors: active), (-ms-high-contrast: active){.sc-stzh-chip-h{--hover-color:Highlight;--hover-border:0.0625rem solid Highlight;--hover-background-color:Canvas;--hover-remove-color:Highlight;--hover-remove-background-color:Canvas;--hover-icon-color:Highlight;--hover-counter-color:Highlight}}[size=large].sc-stzh-chip-h{--height:2.5rem;--border-radius:1.25rem;--padding:0 var(--stzh-space-xlarge)}[size=small].sc-stzh-chip-h{--height:1.5rem;--icon-size:var(--stzh-icon-size-xsmall);--counter-gap:var(--stzh-space-xxsmall)}[variant=input].sc-stzh-chip-h{--border-color:transparent;--background-color:var(--stzh-color-grey5);--hover-border-color:transparent}[variant=tag].sc-stzh-chip-h{--color:var(--stzh-base-color);--icon-color:var(--stzh-base-color);--counter-color:var(--stzh-base-color);--border-color:transparent;--background-color:var(--stzh-color-black8);--hover-color:var(--stzh-base-color);--hover-border-color:transparent;--hover-background-color:var(--stzh-color-black8);--hover-icon-color:var(--stzh-base-color);--hover-counter-color:var(--stzh-base-color)}[variant=input][size=small].sc-stzh-chip-h{--padding:0 var(--stzh-space-small);--icon-gap:var(--stzh-space-xxsmall)}[variant=tag][size=small].sc-stzh-chip-h{--padding:0 var(--stzh-space-xsmall);--icon-gap:var(--stzh-space-xxsmall)}[type=secondary].sc-stzh-chip-h{--color:var(--stzh-base-lead-color);--counter-color:var(--stzh-color-grey40)}[type=important].sc-stzh-chip-h{--color:var(--stzh-color-error);--icon-color:var(--stzh-color-error);--counter-color:var(--stzh-color-error);--hover-color:var(--stzh-color-error);--hover-icon-color:var(--stzh-color-error);--hover-counter-color:var(--stzh-color-error)}@media (forced-colors: active), (-ms-high-contrast: active){[type=important].sc-stzh-chip-h{--hover-color:Highlight;--hover-icon-color:Highlight;--hover-counter-color:Highlight}}[active].sc-stzh-chip-h:not([active=false]){--color:var(--stzh-color-white);--border-color:transparent;--remove-color:var(--stzh-color-white);--background-color:var(--stzh-color-primary, var(--stzh-color-zueriblue));--icon-color:var(--stzh-color-white);--counter-color:var(--stzh-color-white56);--hover-color:var(--stzh-color-white);--hover-border-color:transparent;--hover-background-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-remove-color:var(--stzh-color-white);--hover-remove-background-color:var(--stzh-color-primary-hover, var(--stzh-color-zueribluedark));--hover-icon-color:var(--stzh-color-white);--hover-counter-color:var(--stzh-color-white56)}@media (forced-colors: active), (-ms-high-contrast: active){[active].sc-stzh-chip-h:not([active=false]){--color:SelectedItem;--border-color:SelectedItem;--remove-color:SelectedItem;--background-color:Canvas;--icon-color:SelectedItem;--counter-color:SelectedItem;--hover-color:Highlight;--hover-border-color:Highlight;--hover-background-color:Canvas;--hover-remove-color:Highlight;--hover-remove-background-color:Canvas;--hover-icon-color:Highlight;--hover-counter-color:Highlight}}[non-interactive].sc-stzh-chip-h:not([non-interactive=false]){--hover-color:var(--color);--hover-border:var(--border-color);--hover-background-color:var(--background-color);--hover-icon-color:var(--icon-color);--hover-counter-color:var(--counter-color)}[disabled].sc-stzh-chip-h:not([disabled=false]){--color:var(--stzh-color-grey25);--border-color:var(--stzh-base-border-color);--remove-color:var(--stzh-color-grey13);--background-color:var(--stzh-color-white);--icon-color:var(--stzh-color-grey25);--counter-color:var(--stzh-color-grey25);--hover-color:var(--stzh-color-grey25);--hover-border-color:var(--stzh-base-border-color);--hover-background-color:var(--stzh-color-white);--hover-remove-color:var(--stzh-color-grey13);--hover-remove-background-color:transparent;--hover-icon-color:var(--stzh-color-grey25);--hover-counter-color:var(--stzh-color-grey25)}.sc-stzh-chip-h .sc-stzh-chip-s>stzh-icon,.stzh-chip__icon.sc-stzh-chip{--size:var(--icon-size)}.stzh-chip.sc-stzh-chip{position:relative}.stzh-chip__vhidden.sc-stzh-chip{border:0;clip:rect(0 0 0 0);-webkit-clip-path:inset(100%);clip-path:inset(100%);width:0.0625rem;height:0.0625rem;overflow:hidden;padding:0;position:absolute}.stzh-chip__button.sc-stzh-chip{font-size:var(--stzh-font-micro-font-size);line-height:var(--stzh-font-micro-text-line-height);font-family:inherit;height:var(--height);display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;border-radius:var(--border-radius);padding:var(--padding);color:var(--color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-width:0.0625rem;border-style:solid;border-color:var(--border-color);background-color:var(--background-color);-webkit-transition-duration:var(--stzh-base-transition-animation-speed);transition-duration:var(--stzh-base-transition-animation-speed);-webkit-transition-property:color, background-color, border-color;transition-property:color, background-color, border-color;-webkit-text-decoration-line:none;text-decoration-line:none}.stzh-chip__button.is-button.sc-stzh-chip,.stzh-chip__button.is-link.sc-stzh-chip{cursor:pointer}.stzh-chip__label.sc-stzh-chip{text-align:left}.stzh-chip__icon-wrapper.sc-stzh-chip{display:-ms-flexbox;display:flex;color:var(--icon-color);-webkit-transition:color var(--stzh-base-transition-animation-speed);transition:color var(--stzh-base-transition-animation-speed);-ms-flex-negative:0;flex-shrink:0}.stzh-chip__icon-wrapper.sc-stzh-chip:not(:empty){margin-right:var(--icon-gap)}.stzh-chip__counter.sc-stzh-chip{display:-ms-flexbox;display:flex;font-variant-numeric:tabular-nums;margin-left:var(--counter-gap);color:var(--counter-color);-webkit-transition:color var(--stzh-base-transition-animation-speed);transition:color var(--stzh-base-transition-animation-speed)}.stzh-chip__remove.sc-stzh-chip{position:absolute;top:0;right:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-family:inherit;border:none;background:none;padding:0;width:var(--height);height:var(--height);border-radius:var(--remove-border-radius);display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;margin-left:var(--stzh-space-xxsmall);color:var(--remove-color);-webkit-transition-duration:var(--stzh-base-transition-animation-speed);transition-duration:var(--stzh-base-transition-animation-speed);-webkit-transition-property:color, background-color, border-color;transition-property:color, background-color, border-color;cursor:pointer}.stzh-chip__remove.sc-stzh-chip:hover{color:var(--hover-remove-color);background-color:var(--hover-remove-background-color)}.stzh-chip__remove-icon.sc-stzh-chip{--size:var(--stzh-icon-size-xxsmall)}.stzh-chip__button.sc-stzh-chip:hover,.stzh-chip__remove.sc-stzh-chip:hover+.stzh-chip__button.sc-stzh-chip{color:var(--hover-color);background-color:var(--hover-background-color);border-color:var(--hover-border-color)}.stzh-chip__button.sc-stzh-chip:hover .stzh-chip__counter.sc-stzh-chip,.stzh-chip__remove.sc-stzh-chip:hover+.stzh-chip__button.sc-stzh-chip .stzh-chip__counter.sc-stzh-chip{color:var(--hover-counter-color)}.stzh-chip__button.sc-stzh-chip:hover .stzh-chip__icon-wrapper.sc-stzh-chip,.stzh-chip__remove.sc-stzh-chip:hover+.stzh-chip__button.sc-stzh-chip .stzh-chip__icon-wrapper.sc-stzh-chip{color:var(--hover-icon-color)}.stzh-chip--size-small.sc-stzh-chip .stzh-chip__button.sc-stzh-chip{font-size:var(--stzh-font-nano-font-size);line-height:var(--stzh-font-nano-text-line-height)}.stzh-chip--is-removable.sc-stzh-chip .stzh-chip__button.sc-stzh-chip{padding-right:calc(var(--height) + var(--stzh-space-xxsmall))}.stzh-chip--is-disabled.sc-stzh-chip .stzh-chip__button.sc-stzh-chip,.stzh-chip--is-disabled.sc-stzh-chip .stzh-chip__remove.sc-stzh-chip{cursor:not-allowed}";
|
|
8
8
|
|
|
9
9
|
const StzhChip = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
10
10
|
constructor() {
|