@muziehdesign/components 19.2.8-next.2413 → 19.2.8-next.2448

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.
Files changed (35) hide show
  1. package/assets/icondefinitions.html +343 -0
  2. package/assets/icondefinitions.svg +1 -0
  3. package/assets/icons/arrow-long-down-mini.svg +1 -0
  4. package/assets/icons/arrow-long-up-mini.svg +1 -0
  5. package/assets/icons/at-symbol-outline.svg +1 -0
  6. package/assets/icons/check-circle-solid.svg +1 -0
  7. package/assets/icons/check-solid.svg +1 -0
  8. package/assets/icons/chevron-down-control.svg +1 -0
  9. package/assets/icons/chevron-down-solid.svg +1 -3
  10. package/assets/icons/chevron-left-solid.svg +1 -0
  11. package/assets/icons/chevron-right-solid.svg +1 -0
  12. package/assets/icons/chevron-up-solid.svg +1 -3
  13. package/assets/icons/dots-horizontal-outline.svg +1 -0
  14. package/assets/icons/exclamation-triangle-solid.svg +1 -0
  15. package/assets/icons/information-circle-solid.svg +1 -0
  16. package/assets/icons/menu-outline.svg +1 -0
  17. package/assets/icons/pencil-solid.svg +1 -0
  18. package/assets/icons/x-circle-solid.svg +1 -0
  19. package/fesm2022/muziehdesign-components.mjs +31 -83
  20. package/fesm2022/muziehdesign-components.mjs.map +1 -1
  21. package/lib/svg-icon/svg-icon.component.d.ts +3 -0
  22. package/package.json +1 -1
  23. package/public-api.d.ts +0 -3
  24. package/styles/design/_button.scss +8 -4
  25. package/styles/design/_dl.scss +5 -1
  26. package/styles/design/_dropdown-menu.scss +19 -16
  27. package/styles/design/_table.scss +2 -2
  28. package/styles/mixins/_dropdown.scss +1 -0
  29. package/styles/theme.scss +2 -0
  30. package/assets/icons/icondefinitions.svg +0 -0
  31. package/lib/dropdown/dropdown-item.directive.d.ts +0 -9
  32. package/lib/dropdown/dropdown.component.d.ts +0 -9
  33. package/lib/dropdown/dropdown.module.d.ts +0 -8
  34. package/styles/design/_components.scss +0 -0
  35. package/styles/design/_muzieh.scss +0 -19
@@ -0,0 +1,343 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>SVG &lt;symbol&gt; sprite preview | svg-sprite</title>
6
+ <style>
7
+ body {
8
+ padding: 0;
9
+ margin: 0;
10
+ color: #666;
11
+ background: #fafafa;
12
+ font-family: Arial, Helvetica, sans-serif;
13
+ font-size: 1em;
14
+ line-height: 1.4;
15
+ }
16
+
17
+ header {
18
+ display: block;
19
+ padding: 3em 3em 2em;
20
+ background-color: #fff;
21
+ }
22
+
23
+ header p {
24
+ margin: 2em 0 0;
25
+ }
26
+
27
+ section {
28
+ border-top: 1px solid #eee;
29
+ padding: 2em 3em 0;
30
+ }
31
+
32
+ section ul {
33
+ margin: 0;
34
+ padding: 0;
35
+ }
36
+
37
+ section li {
38
+ display: inline-block;
39
+ background-color: #fff;
40
+ position: relative;
41
+ margin: 0 2em 2em 0;
42
+ vertical-align: top;
43
+ border: 1px solid #ccc;
44
+ padding: 1em 1em 3em;
45
+ cursor: default;
46
+ }
47
+
48
+ .icon-box {
49
+ margin: 0;
50
+ width: 144px;
51
+ height: 144px;
52
+ position: relative;
53
+ background: #ccc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%23fff' d='M6 0h6v6H6zM0 6h6v6H0z'/%3E%3C/svg%3E") top left repeat;
54
+ border: 1px solid #ccc;
55
+ display: table-cell;
56
+ vertical-align: middle;
57
+ text-align: center;
58
+ }
59
+
60
+ .icon {
61
+ display: inline-block;
62
+ }
63
+
64
+ h1 {
65
+ margin-top: 0;
66
+ }
67
+
68
+ h2 {
69
+ margin: 0;
70
+ padding: 0;
71
+ font-size: 1em;
72
+ font-weight: 400;
73
+ white-space: nowrap;
74
+ overflow: hidden;
75
+ text-overflow: ellipsis;
76
+ position: absolute;
77
+ left: 1em;
78
+ right: 1em;
79
+ bottom: 1em;
80
+ }
81
+
82
+ footer {
83
+ display: block;
84
+ margin: 0;
85
+ padding: 0 3em 3em;
86
+ }
87
+
88
+ footer p {
89
+ margin: 0;
90
+ font-size: .7em;
91
+ }
92
+
93
+ footer a {
94
+ color: #0f7595;
95
+ margin-left: 0;
96
+ }
97
+ </style>
98
+
99
+ <!--
100
+ Sprite shape dimensions
101
+ ====================================================================================================
102
+ You will need to set the sprite shape dimensions via CSS when you use them as inline SVG, otherwise
103
+ they would become a huge 100% in size. You may use the following dimension classes for doing so.
104
+ They might well be outsourced to an external stylesheet of course.
105
+ -->
106
+
107
+ <style>
108
+ .svg-arrow-long-down-mini-dims { width: 20px; height: 20px; }
109
+ .svg-arrow-long-up-mini-dims { width: 20px; height: 20px; }
110
+ .svg-at-symbol-outline-dims { width: 24px; height: 24px; }
111
+ .svg-check-circle-solid-dims { width: 24px; height: 24px; }
112
+ .svg-check-solid-dims { width: 24px; height: 24px; }
113
+ .svg-chevron-down-control-dims { width: 20px; height: 20px; }
114
+ .svg-chevron-down-solid-dims { width: 24px; height: 24px; }
115
+ .svg-chevron-left-solid-dims { width: 24px; height: 24px; }
116
+ .svg-chevron-right-solid-dims { width: 24px; height: 24px; }
117
+ .svg-chevron-up-solid-dims { width: 24px; height: 24px; }
118
+ .svg-dots-horizontal-outline-dims { width: 24px; height: 24px; }
119
+ .svg-exclamation-triangle-solid-dims { width: 24px; height: 24px; }
120
+ .svg-information-circle-solid-dims { width: 24px; height: 24px; }
121
+ .svg-menu-outline-dims { width: 24px; height: 24px; }
122
+ .svg-pencil-solid-dims { width: 24px; height: 24px; }
123
+ .svg-x-circle-solid-dims { width: 24px; height: 24px; }
124
+ </style>
125
+
126
+ <!--
127
+ ====================================================================================================
128
+ -->
129
+
130
+ </head>
131
+ <body>
132
+
133
+ <!--
134
+ Inline <symbol> SVG sprite
135
+ ====================================================================================================
136
+ This is an inlined version of the generated SVG sprite. The single images may be <use>d everywhere
137
+ below within this document. Please see
138
+
139
+ https://github.com/svg-sprite/svg-sprite/blob/main/docs/configuration.md#defs--symbol-mode
140
+
141
+ for further details on how to create this embeddable sprite variant.
142
+ -->
143
+
144
+ <svg width="0" height="0" style="position:absolute">
145
+ <symbol viewBox="0 0 20 20" fill="currentColor" id="arrow-long-down-mini" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10 2a.75.75 0 0 1 .75.75v12.59l1.95-2.1a.75.75 0 1 1 1.1 1.02l-3.25 3.5a.75.75 0 0 1-1.1 0l-3.25-3.5a.75.75 0 1 1 1.1-1.02l1.95 2.1V2.75A.75.75 0 0 1 10 2Z" clip-rule="evenodd"/></symbol>
146
+ <symbol viewBox="0 0 20 20" fill="currentColor" id="arrow-long-up-mini" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10 18a.75.75 0 0 1-.75-.75V4.66L7.3 6.76a.75.75 0 0 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.75.75 0 1 1-1.1 1.02l-1.95-2.1v12.59A.75.75 0 0 1 10 18Z" clip-rule="evenodd"/></symbol>
147
+ <symbol fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" id="at-symbol-outline" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" d="M16.5 12a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm0 0c0 1.657 1.007 3 2.25 3S21 13.657 21 12a9 9 0 1 0-2.636 6.364M16.5 12V8.25"/></symbol>
148
+ <symbol viewBox="0 0 24 24" fill="currentColor" id="check-circle-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm13.36-1.814a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z" clip-rule="evenodd"/></symbol>
149
+ <symbol viewBox="0 0 24 24" fill="currentColor" id="check-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M19.916 4.626a.75.75 0 0 1 .208 1.04l-9 13.5a.75.75 0 0 1-1.154.114l-6-6a.75.75 0 0 1 1.06-1.06l5.353 5.353 8.493-12.74a.75.75 0 0 1 1.04-.207Z" clip-rule="evenodd"/></symbol>
150
+ <symbol fill="currentColor" viewBox="0 0 20 20" id="chevron-down-control" xmlns="http://www.w3.org/2000/svg"><path d="M5.21 7.355a.75.75 0 0 1 1.06 0l3.72 3.72 3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0l-4.25-4.25a.75.75 0 0 1 0-1.06z"/></symbol>
151
+ <symbol fill="currentColor" viewBox="0 0 24 24" id="chevron-down-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M12.53 16.28a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 0 1 1.06-1.06L12 14.69l6.97-6.97a.75.75 0 1 1 1.06 1.06z" clip-rule="evenodd"/></symbol>
152
+ <symbol viewBox="0 0 24 24" fill="currentColor" id="chevron-left-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.72 12.53a.75.75 0 0 1 0-1.06l7.5-7.5a.75.75 0 1 1 1.06 1.06L9.31 12l6.97 6.97a.75.75 0 1 1-1.06 1.06l-7.5-7.5Z" clip-rule="evenodd"/></symbol>
153
+ <symbol viewBox="0 0 24 24" fill="currentColor" id="chevron-right-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M16.28 11.47a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06-1.06L14.69 12 7.72 5.03a.75.75 0 0 1 1.06-1.06l7.5 7.5Z" clip-rule="evenodd"/></symbol>
154
+ <symbol fill="currentColor" viewBox="0 0 24 24" id="chevron-up-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M11.47 7.72a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06L12 9.31l-6.97 6.97a.75.75 0 0 1-1.06-1.06z" clip-rule="evenodd"/></symbol>
155
+ <symbol fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" id="dots-horizontal-outline" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" d="M5 12h.01M12 12h.01M19 12h.01M6 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0z"/></symbol>
156
+ <symbol viewBox="0 0 24 24" fill="currentColor" id="exclamation-triangle-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003ZM12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Zm0 8.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z" clip-rule="evenodd"/></symbol>
157
+ <symbol viewBox="0 0 24 24" fill="currentColor" id="information-circle-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm8.706-1.442c1.146-.573 2.437.463 2.126 1.706l-.709 2.836.042-.02a.75.75 0 0 1 .67 1.34l-.04.022c-1.147.573-2.438-.463-2.127-1.706l.71-2.836-.042.02a.75.75 0 1 1-.671-1.34l.041-.022ZM12 9a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z" clip-rule="evenodd"/></symbol>
158
+ <symbol fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" id="menu-outline" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"/></symbol>
159
+ <symbol viewBox="0 0 24 24" fill="currentColor" id="pencil-solid" xmlns="http://www.w3.org/2000/svg"><path d="M21.731 2.269a2.625 2.625 0 0 0-3.712 0l-1.157 1.157 3.712 3.712 1.157-1.157a2.625 2.625 0 0 0 0-3.712Zm-2.218 5.93-3.712-3.712-8.4 8.4a5.25 5.25 0 0 0-1.32 2.214l-.8 2.685a.75.75 0 0 0 .933.933l2.685-.8a5.25 5.25 0 0 0 2.214-1.32l8.4-8.4Z"/><path d="M5.25 5.25a3 3 0 0 0-3 3v10.5a3 3 0 0 0 3 3h10.5a3 3 0 0 0 3-3V13.5a.75.75 0 0 0-1.5 0v5.25a1.5 1.5 0 0 1-1.5 1.5H5.25a1.5 1.5 0 0 1-1.5-1.5V8.25a1.5 1.5 0 0 1 1.5-1.5h5.25a.75.75 0 0 0 0-1.5H5.25Z"/></symbol>
160
+ <symbol viewBox="0 0 24 24" fill="currentColor" id="x-circle-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm-1.72 6.97a.75.75 0 1 0-1.06 1.06L10.94 12l-1.72 1.72a.75.75 0 1 0 1.06 1.06L12 13.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L13.06 12l1.72-1.72a.75.75 0 1 0-1.06-1.06L12 10.94l-1.72-1.72Z" clip-rule="evenodd"/></symbol>
161
+ </svg>
162
+
163
+ <!--
164
+ ====================================================================================================
165
+ -->
166
+
167
+ <header>
168
+ <h1>SVG <code>&lt;symbol&gt;</code> sprite preview</h1>
169
+ <p>This preview features two methods of using the generated sprite in conjunction with inline SVG. Please have a look at the HTML source for further details and be aware of the following constraints:</p>
170
+ <ul>
171
+ <li>Your browser has to <a href="https://caniuse.com/svg-html5" target="_blank" rel="noopener noreferrer">support inline SVG</a> for these techniques to work.</li>
172
+ <li>The embedded sprite (A) slightly differs from the generated external one. Please <a href="https://github.com/svg-sprite/svg-sprite/blob/main/docs/configuration.md#defs--symbol-mode" target="_blank" rel="noopener noreferrer">see the documentation</a> for details on how to create such an embeddable sprite.</li>
173
+ </ul>
174
+ </header>
175
+ <section>
176
+
177
+ <!--
178
+ A) Inline SVG with embedded sprite
179
+ ====================================================================================================
180
+ These SVG images make use of fragment identifiers (IDs) and are extracted out of the inline sprite
181
+ embedded above. They may be styled via CSS.
182
+ -->
183
+
184
+ <h3>A) Inline SVG with embedded sprite</h3>
185
+ <ul>
186
+
187
+ <li title="arrow-long-down-mini">
188
+ <div class="icon-box">
189
+ <svg class="svg-arrow-long-down-mini-dims">
190
+ <use xlink:href="#arrow-long-down-mini"></use>
191
+ </svg>
192
+ </div>
193
+ <h2>arrow-long-down-mini, </h2>
194
+ </li>
195
+ <li title="arrow-long-up-mini">
196
+ <div class="icon-box">
197
+ <svg class="svg-arrow-long-up-mini-dims">
198
+ <use xlink:href="#arrow-long-up-mini"></use>
199
+ </svg>
200
+ </div>
201
+ <h2>arrow-long-up-mini, </h2>
202
+ </li>
203
+ <li title="at-symbol-outline">
204
+ <div class="icon-box">
205
+ <svg class="svg-at-symbol-outline-dims">
206
+ <use xlink:href="#at-symbol-outline"></use>
207
+ </svg>
208
+ </div>
209
+ <h2>at-symbol-outline, </h2>
210
+ </li>
211
+ <li title="check-circle-solid">
212
+ <div class="icon-box">
213
+ <svg class="svg-check-circle-solid-dims">
214
+ <use xlink:href="#check-circle-solid"></use>
215
+ </svg>
216
+ </div>
217
+ <h2>check-circle-solid, </h2>
218
+ </li>
219
+ <li title="check-solid">
220
+ <div class="icon-box">
221
+ <svg class="svg-check-solid-dims">
222
+ <use xlink:href="#check-solid"></use>
223
+ </svg>
224
+ </div>
225
+ <h2>check-solid, </h2>
226
+ </li>
227
+ <li title="chevron-down-control">
228
+ <div class="icon-box">
229
+ <svg class="svg-chevron-down-control-dims">
230
+ <use xlink:href="#chevron-down-control"></use>
231
+ </svg>
232
+ </div>
233
+ <h2>chevron-down-control, </h2>
234
+ </li>
235
+ <li title="chevron-down-solid">
236
+ <div class="icon-box">
237
+ <svg class="svg-chevron-down-solid-dims">
238
+ <use xlink:href="#chevron-down-solid"></use>
239
+ </svg>
240
+ </div>
241
+ <h2>chevron-down-solid, </h2>
242
+ </li>
243
+ <li title="chevron-left-solid">
244
+ <div class="icon-box">
245
+ <svg class="svg-chevron-left-solid-dims">
246
+ <use xlink:href="#chevron-left-solid"></use>
247
+ </svg>
248
+ </div>
249
+ <h2>chevron-left-solid, </h2>
250
+ </li>
251
+ <li title="chevron-right-solid">
252
+ <div class="icon-box">
253
+ <svg class="svg-chevron-right-solid-dims">
254
+ <use xlink:href="#chevron-right-solid"></use>
255
+ </svg>
256
+ </div>
257
+ <h2>chevron-right-solid, </h2>
258
+ </li>
259
+ <li title="chevron-up-solid">
260
+ <div class="icon-box">
261
+ <svg class="svg-chevron-up-solid-dims">
262
+ <use xlink:href="#chevron-up-solid"></use>
263
+ </svg>
264
+ </div>
265
+ <h2>chevron-up-solid, </h2>
266
+ </li>
267
+ <li title="dots-horizontal-outline">
268
+ <div class="icon-box">
269
+ <svg class="svg-dots-horizontal-outline-dims">
270
+ <use xlink:href="#dots-horizontal-outline"></use>
271
+ </svg>
272
+ </div>
273
+ <h2>dots-horizontal-outline, </h2>
274
+ </li>
275
+ <li title="exclamation-triangle-solid">
276
+ <div class="icon-box">
277
+ <svg class="svg-exclamation-triangle-solid-dims">
278
+ <use xlink:href="#exclamation-triangle-solid"></use>
279
+ </svg>
280
+ </div>
281
+ <h2>exclamation-triangle-solid, </h2>
282
+ </li>
283
+ <li title="information-circle-solid">
284
+ <div class="icon-box">
285
+ <svg class="svg-information-circle-solid-dims">
286
+ <use xlink:href="#information-circle-solid"></use>
287
+ </svg>
288
+ </div>
289
+ <h2>information-circle-solid, </h2>
290
+ </li>
291
+ <li title="menu-outline">
292
+ <div class="icon-box">
293
+ <svg class="svg-menu-outline-dims">
294
+ <use xlink:href="#menu-outline"></use>
295
+ </svg>
296
+ </div>
297
+ <h2>menu-outline, </h2>
298
+ </li>
299
+ <li title="pencil-solid">
300
+ <div class="icon-box">
301
+ <svg class="svg-pencil-solid-dims">
302
+ <use xlink:href="#pencil-solid"></use>
303
+ </svg>
304
+ </div>
305
+ <h2>pencil-solid, </h2>
306
+ </li>
307
+ <li title="x-circle-solid">
308
+ <div class="icon-box">
309
+ <svg class="svg-x-circle-solid-dims">
310
+ <use xlink:href="#x-circle-solid"></use>
311
+ </svg>
312
+ </div>
313
+ <h2>x-circle-solid, </h2>
314
+ </li>
315
+ </ul>
316
+
317
+ <!--
318
+ ====================================================================================================
319
+ -->
320
+
321
+ </section>
322
+ <section>
323
+
324
+ <!--
325
+ B) Inline SVG with external sprite
326
+ ====================================================================================================
327
+ These SVG images make use of an URL + fragment identifiers (IDs) and refer to the regular external
328
+ SVG sprite. They may be styled via CSS.
329
+ -->
330
+
331
+ <h3>B) Inline SVG with external sprite</h3>
332
+ <p>Please set the <code>inline</code> option to <code>false</code> in order to preview this method.</p>
333
+
334
+ <!--
335
+ ====================================================================================================
336
+ -->
337
+
338
+ </section>
339
+ <footer>
340
+ <p>Generated at Thu, 01 May 2025 20:21:21 GMT by <a href="https://github.com/svg-sprite/svg-sprite" target="_blank" rel="noopener noreferrer">svg-sprite</a>.</p>
341
+ </footer>
342
+ </body>
343
+ </html>
@@ -0,0 +1 @@
1
+ <svg width="0" height="0" style="position:absolute"><symbol viewBox="0 0 20 20" fill="currentColor" id="arrow-long-down-mini" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10 2a.75.75 0 0 1 .75.75v12.59l1.95-2.1a.75.75 0 1 1 1.1 1.02l-3.25 3.5a.75.75 0 0 1-1.1 0l-3.25-3.5a.75.75 0 1 1 1.1-1.02l1.95 2.1V2.75A.75.75 0 0 1 10 2Z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 20 20" fill="currentColor" id="arrow-long-up-mini" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10 18a.75.75 0 0 1-.75-.75V4.66L7.3 6.76a.75.75 0 0 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.75.75 0 1 1-1.1 1.02l-1.95-2.1v12.59A.75.75 0 0 1 10 18Z" clip-rule="evenodd"/></symbol><symbol fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" id="at-symbol-outline" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" d="M16.5 12a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm0 0c0 1.657 1.007 3 2.25 3S21 13.657 21 12a9 9 0 1 0-2.636 6.364M16.5 12V8.25"/></symbol><symbol viewBox="0 0 24 24" fill="currentColor" id="check-circle-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm13.36-1.814a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" fill="currentColor" id="check-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M19.916 4.626a.75.75 0 0 1 .208 1.04l-9 13.5a.75.75 0 0 1-1.154.114l-6-6a.75.75 0 0 1 1.06-1.06l5.353 5.353 8.493-12.74a.75.75 0 0 1 1.04-.207Z" clip-rule="evenodd"/></symbol><symbol fill="currentColor" viewBox="0 0 20 20" id="chevron-down-control" xmlns="http://www.w3.org/2000/svg"><path d="M5.21 7.355a.75.75 0 0 1 1.06 0l3.72 3.72 3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0l-4.25-4.25a.75.75 0 0 1 0-1.06z"/></symbol><symbol fill="currentColor" viewBox="0 0 24 24" id="chevron-down-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M12.53 16.28a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 0 1 1.06-1.06L12 14.69l6.97-6.97a.75.75 0 1 1 1.06 1.06z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" fill="currentColor" id="chevron-left-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.72 12.53a.75.75 0 0 1 0-1.06l7.5-7.5a.75.75 0 1 1 1.06 1.06L9.31 12l6.97 6.97a.75.75 0 1 1-1.06 1.06l-7.5-7.5Z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" fill="currentColor" id="chevron-right-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M16.28 11.47a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06-1.06L14.69 12 7.72 5.03a.75.75 0 0 1 1.06-1.06l7.5 7.5Z" clip-rule="evenodd"/></symbol><symbol fill="currentColor" viewBox="0 0 24 24" id="chevron-up-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M11.47 7.72a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06L12 9.31l-6.97 6.97a.75.75 0 0 1-1.06-1.06z" clip-rule="evenodd"/></symbol><symbol fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" id="dots-horizontal-outline" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" d="M5 12h.01M12 12h.01M19 12h.01M6 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0z"/></symbol><symbol viewBox="0 0 24 24" fill="currentColor" id="exclamation-triangle-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003ZM12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Zm0 8.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" fill="currentColor" id="information-circle-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm8.706-1.442c1.146-.573 2.437.463 2.126 1.706l-.709 2.836.042-.02a.75.75 0 0 1 .67 1.34l-.04.022c-1.147.573-2.438-.463-2.127-1.706l.71-2.836-.042.02a.75.75 0 1 1-.671-1.34l.041-.022ZM12 9a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z" clip-rule="evenodd"/></symbol><symbol fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" id="menu-outline" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"/></symbol><symbol viewBox="0 0 24 24" fill="currentColor" id="pencil-solid" xmlns="http://www.w3.org/2000/svg"><path d="M21.731 2.269a2.625 2.625 0 0 0-3.712 0l-1.157 1.157 3.712 3.712 1.157-1.157a2.625 2.625 0 0 0 0-3.712Zm-2.218 5.93-3.712-3.712-8.4 8.4a5.25 5.25 0 0 0-1.32 2.214l-.8 2.685a.75.75 0 0 0 .933.933l2.685-.8a5.25 5.25 0 0 0 2.214-1.32l8.4-8.4Z"/><path d="M5.25 5.25a3 3 0 0 0-3 3v10.5a3 3 0 0 0 3 3h10.5a3 3 0 0 0 3-3V13.5a.75.75 0 0 0-1.5 0v5.25a1.5 1.5 0 0 1-1.5 1.5H5.25a1.5 1.5 0 0 1-1.5-1.5V8.25a1.5 1.5 0 0 1 1.5-1.5h5.25a.75.75 0 0 0 0-1.5H5.25Z"/></symbol><symbol viewBox="0 0 24 24" fill="currentColor" id="x-circle-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm-1.72 6.97a.75.75 0 1 0-1.06 1.06L10.94 12l-1.72 1.72a.75.75 0 1 0 1.06 1.06L12 13.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L13.06 12l1.72-1.72a.75.75 0 1 0-1.06-1.06L12 10.94l-1.72-1.72Z" clip-rule="evenodd"/></symbol></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M10 2a.75.75 0 0 1 .75.75v12.59l1.95-2.1a.75.75 0 1 1 1.1 1.02l-3.25 3.5a.75.75 0 0 1-1.1 0l-3.25-3.5a.75.75 0 1 1 1.1-1.02l1.95 2.1V2.75A.75.75 0 0 1 10 2Z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M10 18a.75.75 0 0 1-.75-.75V4.66L7.3 6.76a.75.75 0 0 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.75.75 0 1 1-1.1 1.02l-1.95-2.1v12.59A.75.75 0 0 1 10 18Z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M16.5 12a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm0 0c0 1.657 1.007 3 2.25 3S21 13.657 21 12a9 9 0 1 0-2.636 6.364M16.5 12V8.25"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path fill-rule="evenodd" d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm13.36-1.814a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path fill-rule="evenodd" d="M19.916 4.626a.75.75 0 0 1 .208 1.04l-9 13.5a.75.75 0 0 1-1.154.114l-6-6a.75.75 0 0 1 1.06-1.06l5.353 5.353 8.493-12.74a.75.75 0 0 1 1.04-.207Z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" viewBox="0 0 20 20"><path id="path3736" d="m 5.2103159,7.3546841 a 0.75,0.75 0 0 1 1.06,0 l 3.72,3.7199999 3.7200001,-3.7199999 a 0.75,0.75 0 1 1 1.06,1.06 l -4.25,4.2499999 a 0.75,0.75 0 0 1 -1.0600001,0 l -4.25,-4.2499999 a 0.75,0.75 0 0 1 0,-1.06 z"/></svg>
@@ -1,3 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-6">
2
- <path fill-rule="evenodd" d="M12.53 16.28a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 0 1 1.06-1.06L12 14.69l6.97-6.97a.75.75 0 1 1 1.06 1.06l-7.5 7.5Z" clip-rule="evenodd" />
3
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12.53 16.28a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 0 1 1.06-1.06L12 14.69l6.97-6.97a.75.75 0 1 1 1.06 1.06z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path fill-rule="evenodd" d="M7.72 12.53a.75.75 0 0 1 0-1.06l7.5-7.5a.75.75 0 1 1 1.06 1.06L9.31 12l6.97 6.97a.75.75 0 1 1-1.06 1.06l-7.5-7.5Z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path fill-rule="evenodd" d="M16.28 11.47a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06-1.06L14.69 12 7.72 5.03a.75.75 0 0 1 1.06-1.06l7.5 7.5Z" clip-rule="evenodd"/></svg>
@@ -1,3 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-6">
2
- <path fill-rule="evenodd" d="M11.47 7.72a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06L12 9.31l-6.97 6.97a.75.75 0 0 1-1.06-1.06l7.5-7.5Z" clip-rule="evenodd" />
3
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M11.47 7.72a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06L12 9.31l-6.97 6.97a.75.75 0 0 1-1.06-1.06z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path _ngcontent-ng-c2980529641="" stroke-linecap="round" stroke-linejoin="round" d="M5 12h.01M12 12h.01M19 12h.01M6 12a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path fill-rule="evenodd" d="M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003ZM12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Zm0 8.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path fill-rule="evenodd" d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm8.706-1.442c1.146-.573 2.437.463 2.126 1.706l-.709 2.836.042-.02a.75.75 0 0 1 .67 1.34l-.04.022c-1.147.573-2.438-.463-2.127-1.706l.71-2.836-.042.02a.75.75 0 1 1-.671-1.34l.041-.022ZM12 9a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M21.731 2.269a2.625 2.625 0 0 0-3.712 0l-1.157 1.157 3.712 3.712 1.157-1.157a2.625 2.625 0 0 0 0-3.712ZM19.513 8.199l-3.712-3.712-8.4 8.4a5.25 5.25 0 0 0-1.32 2.214l-.8 2.685a.75.75 0 0 0 .933.933l2.685-.8a5.25 5.25 0 0 0 2.214-1.32l8.4-8.4Z"/><path d="M5.25 5.25a3 3 0 0 0-3 3v10.5a3 3 0 0 0 3 3h10.5a3 3 0 0 0 3-3V13.5a.75.75 0 0 0-1.5 0v5.25a1.5 1.5 0 0 1-1.5 1.5H5.25a1.5 1.5 0 0 1-1.5-1.5V8.25a1.5 1.5 0 0 1 1.5-1.5h5.25a.75.75 0 0 0 0-1.5H5.25Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path fill-rule="evenodd" d="M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm-1.72 6.97a.75.75 0 1 0-1.06 1.06L10.94 12l-1.72 1.72a.75.75 0 1 0 1.06 1.06L12 13.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L13.06 12l1.72-1.72a.75.75 0 1 0-1.06-1.06L12 10.94l-1.72-1.72Z" clip-rule="evenodd"/></svg>