bootstrap-italia 2.13.4 → 2.14.0
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/_virtual/_commonjsHelpers.js +6 -0
- package/dist/_virtual/_commonjsHelpers.js.map +1 -0
- package/dist/bootstrap-italia.esm.js +1 -2
- package/dist/bootstrap-italia.esm.js.map +1 -1
- package/dist/css/bootstrap-italia.min.css +1 -1
- package/dist/css/bootstrap-italia.min.css.map +1 -1
- package/dist/js/bootstrap-italia.bundle.min.js +14 -8
- package/dist/js/bootstrap-italia.min.js +4 -4
- package/dist/plugins/back-to-top.js +0 -6
- package/dist/plugins/back-to-top.js.map +1 -1
- package/dist/plugins/button.js +3 -3
- package/dist/plugins/button.js.map +1 -1
- package/dist/plugins/carousel.js +183 -402
- package/dist/plugins/carousel.js.map +1 -1
- package/dist/plugins/forward.js.map +1 -1
- package/dist/plugins/header-sticky.js +1 -7
- package/dist/plugins/header-sticky.js.map +1 -1
- package/dist/plugins/input-label.js +5 -1
- package/dist/plugins/input-label.js.map +1 -1
- package/dist/plugins/input-number.js +5 -7
- package/dist/plugins/input-number.js.map +1 -1
- package/dist/plugins/masonry.js +8 -1
- package/dist/plugins/masonry.js.map +1 -1
- package/dist/plugins/select-autocomplete.js +66 -17
- package/dist/plugins/select-autocomplete.js.map +1 -1
- package/dist/plugins/tooltip.js +10 -0
- package/dist/plugins/tooltip.js.map +1 -1
- package/dist/plugins/track-focus.js +0 -6
- package/dist/plugins/track-focus.js.map +1 -1
- package/dist/plugins/util/pageScroll.js +1 -1
- package/dist/plugins/util/pageScroll.js.map +1 -1
- package/dist/plugins/vendor/accessible-autocomplete.js +9 -0
- package/dist/plugins/vendor/accessible-autocomplete.js.map +1 -0
- package/dist/svg/sprites.svg +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +2 -3
- package/src/js/bootstrap-italia.entry.js +0 -2
- package/src/js/bootstrap-italia.esm.js +1 -2
- package/src/js/icons.js +9 -0
- package/src/js/plugins/back-to-top.js +0 -6
- package/src/js/plugins/button.js +3 -3
- package/src/js/plugins/carousel.js +184 -402
- package/src/js/plugins/forward.js +0 -1
- package/src/js/plugins/header-sticky.js +1 -7
- package/src/js/plugins/input-label.js +5 -1
- package/src/js/plugins/input-number.js +5 -7
- package/src/js/plugins/masonry.js +8 -1
- package/src/js/plugins/select-autocomplete.js +67 -17
- package/src/js/plugins/tooltip.js +10 -0
- package/src/js/plugins/track-focus.js +0 -6
- package/src/js/plugins/util/pageScroll.js +1 -1
- package/src/js/plugins/vendor/accessible-autocomplete.js +1 -0
- package/src/js/version.js +1 -1
- package/src/scss/base/_variables.scss +1 -1
- package/src/scss/base/_version.scss +1 -1
- package/src/scss/components/_buttons.scss +1 -1
- package/src/scss/components/_carousel.scss +7 -235
- package/src/scss/components/_navigation.scss +1 -1
- package/src/scss/components/_tab.scss +4 -4
- package/src/scss/forms/_accessible-autocomplete.scss +0 -19
- package/src/scss/forms/_form-input-number.scss +1 -1
- package/src/scss/forms/_form-input-upload.scss +1 -1
- package/src/scss/forms/_form-toggles.scss +1 -1
- package/src/scss/forms/_forms.scss +2 -1
- package/src/scss/forms/_just-validate.scss +4 -4
- package/src/scss/utilities/focus.scss +26 -16
- package/src/svg/it-bluesky.svg +4 -0
- package/src/svg/it-car.svg +4 -0
- package/src/svg/it-cart.svg +5 -0
- package/src/svg/it-file-docx.svg +12 -0
- package/src/svg/it-file-image.svg +5 -0
- package/src/svg/it-file-signed.svg +16 -0
- package/src/svg/it-file-xlsx.svg +11 -0
- package/src/svg/it-sign.svg +8 -0
- package/src/svg/it-spotify.svg +4 -0
- package/types/index.d.ts +0 -2
- package/types/plugins/carousel.d.ts +42 -2
- package/dist/plugins/carousel-bi.js +0 -226
- package/dist/plugins/carousel-bi.js.map +0 -1
- package/dist/plugins/util/swipe.js +0 -150
- package/dist/plugins/util/swipe.js.map +0 -1
- package/src/js/plugins/carousel-bi.js +0 -225
- package/types/plugins/carousel-bi.d.ts +0 -57
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
border-right: 2px solid transparent;
|
|
66
66
|
white-space: normal;
|
|
67
67
|
position: relative;
|
|
68
|
-
&:focus:not(
|
|
68
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
69
69
|
box-shadow: inset 0 0px 0 2px $focus-outline-color !important;
|
|
70
70
|
}
|
|
71
71
|
&:hover {
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
border-bottom-color: transparent;
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
-
&:focus:not(
|
|
120
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
121
121
|
box-shadow: inset 0 1px 0 2px $focus-outline-color !important;
|
|
122
122
|
}
|
|
123
123
|
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
.nav-link {
|
|
327
327
|
border-bottom: none;
|
|
328
328
|
border-top: 2px solid transparent;
|
|
329
|
-
&:focus:not(
|
|
329
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
330
330
|
box-shadow: inset 0 -1px 0 2px $focus-outline-color !important;
|
|
331
331
|
}
|
|
332
332
|
}
|
|
@@ -356,7 +356,7 @@
|
|
|
356
356
|
border-bottom: none;
|
|
357
357
|
border-right: none;
|
|
358
358
|
border-left: 2px solid transparent;
|
|
359
|
-
&:focus:not(
|
|
359
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
360
360
|
box-shadow: inset 0px 0px 0 2px $focus-outline-color !important;
|
|
361
361
|
}
|
|
362
362
|
&:hover {
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.autocomplete__input {
|
|
14
|
-
background-color: transparent;
|
|
15
14
|
position: relative;
|
|
16
15
|
}
|
|
17
16
|
|
|
@@ -138,27 +137,11 @@
|
|
|
138
137
|
cursor: not-allowed;
|
|
139
138
|
}
|
|
140
139
|
|
|
141
|
-
.autocomplete__hint,
|
|
142
|
-
.autocomplete__input,
|
|
143
|
-
.autocomplete__option {
|
|
144
|
-
font-size: 1rem;
|
|
145
|
-
font-weight: 400;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
140
|
.autocomplete__hint,
|
|
149
141
|
.autocomplete__option {
|
|
150
142
|
padding: 5px;
|
|
151
143
|
}
|
|
152
144
|
|
|
153
|
-
@media (min-width: 641px) {
|
|
154
|
-
.autocomplete__hint,
|
|
155
|
-
.autocomplete__input,
|
|
156
|
-
.autocomplete__option {
|
|
157
|
-
font-size: 1.1875rem;
|
|
158
|
-
line-height: 1.3157894737;
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
|
|
162
145
|
.autocomplete__wrapper {
|
|
163
146
|
position: relative;
|
|
164
147
|
.autocomplete__menu {
|
|
@@ -174,8 +157,6 @@
|
|
|
174
157
|
padding: 12px 24px;
|
|
175
158
|
background-color: #fff;
|
|
176
159
|
border: none;
|
|
177
|
-
font-size: 0.875rem;
|
|
178
|
-
font-weight: 600;
|
|
179
160
|
&:hover,
|
|
180
161
|
&:focus {
|
|
181
162
|
color: $primary;
|
|
@@ -261,6 +261,7 @@ textarea {
|
|
|
261
261
|
display: inline-block;
|
|
262
262
|
font-size: 1rem;
|
|
263
263
|
font-weight: $font-weight-semibold;
|
|
264
|
+
line-height: var(--bs-body-line-height);
|
|
264
265
|
user-select: none;
|
|
265
266
|
@include media-breakpoint-up(sm) {
|
|
266
267
|
font-size: 1.125rem;
|
|
@@ -272,7 +273,7 @@ textarea {
|
|
|
272
273
|
@extend %focus;
|
|
273
274
|
}
|
|
274
275
|
|
|
275
|
-
&:focus
|
|
276
|
+
&:focus[data-focus-mouse='true'] + label {
|
|
276
277
|
@extend %focusmouse;
|
|
277
278
|
}
|
|
278
279
|
}
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.input-group-text:has(~
|
|
12
|
-
|
|
13
|
-
button:has(~
|
|
14
|
-
|
|
11
|
+
.input-group-text:has(~ [data-focus-mouse='true']:not(.btn)),
|
|
12
|
+
[data-focus-mouse='true']:not(.btn) ~ .input-group-text,
|
|
13
|
+
button:has(~ [data-focus-mouse='true']:not(.btn)),
|
|
14
|
+
[data-focus-mouse='true']:not(.btn) + button {
|
|
15
15
|
border-color: inherit !important;
|
|
16
16
|
box-shadow: none !important;
|
|
17
17
|
outline: none !important;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
:focus:not(
|
|
1
|
+
:focus:not([data-focus-mouse='true']),
|
|
2
2
|
%focus,
|
|
3
|
-
.it-carousel-wrapper .splide__pagination button:focus:not(
|
|
4
|
-
.upload:focus:not(
|
|
5
|
-
.upload-dragdrop-input:focus[type='file']:not(
|
|
6
|
-
.avatar-upload:focus-within:not(
|
|
7
|
-
.rating input:focus:not(
|
|
3
|
+
.it-carousel-wrapper .splide__pagination button:focus:not([data-focus-mouse='true']),
|
|
4
|
+
.upload:focus:not([data-focus-mouse='true']) + label,
|
|
5
|
+
.upload-dragdrop-input:focus[type='file']:not([data-focus-mouse='true']) + label,
|
|
6
|
+
.avatar-upload:focus-within:not([data-focus-mouse='true']),
|
|
7
|
+
.rating input:focus:not([data-focus-mouse='true']) + label svg {
|
|
8
8
|
border-color: $focus-outline-color-out !important;
|
|
9
9
|
box-shadow:
|
|
10
10
|
0 0 0 2px $focus-outline-color-in,
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
box-shadow: none !important;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
[data-focus-mouse='true']:not(.btn),
|
|
21
21
|
%focusmouse {
|
|
22
22
|
border-color: inherit !important;
|
|
23
23
|
box-shadow: none !important;
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
p a {
|
|
28
|
-
&:focus:not(
|
|
28
|
+
&:focus:not([data-focus-mouse='true'], .btn) {
|
|
29
29
|
outline-offset: 0px !important;
|
|
30
30
|
outline: 3px $focus-outline-color-out solid !important;
|
|
31
31
|
background: $focus-outline-color-in;
|
|
@@ -38,7 +38,7 @@ p a {
|
|
|
38
38
|
.shadow-none,
|
|
39
39
|
.shadow-sm,
|
|
40
40
|
.shadow-lg {
|
|
41
|
-
&:focus:not(
|
|
41
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
42
42
|
box-shadow:
|
|
43
43
|
0 0 0 2px $focus-outline-color-in,
|
|
44
44
|
0 0 0 5px $focus-outline-color-out !important;
|
|
@@ -46,14 +46,14 @@ p a {
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.avatar-group-stacked .avatar {
|
|
49
|
-
&:focus:not(
|
|
49
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
50
50
|
border: 0;
|
|
51
51
|
margin-left: -4px;
|
|
52
52
|
margin-top: 2px;
|
|
53
53
|
margin-right: 2px;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
&.avatar-dropdown .btn-dropdown:focus:not(
|
|
56
|
+
&.avatar-dropdown .btn-dropdown:focus:not([data-focus-mouse='true']) {
|
|
57
57
|
height: 100%;
|
|
58
58
|
width: 100%;
|
|
59
59
|
border-radius: 50%;
|
|
@@ -62,14 +62,14 @@ p a {
|
|
|
62
62
|
|
|
63
63
|
.chip {
|
|
64
64
|
button {
|
|
65
|
-
&:focus:not(
|
|
65
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
66
66
|
border-radius: 50%;
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.form-check {
|
|
72
|
-
.toggles label:has(input[type='checkbox']:focus:not(
|
|
72
|
+
.toggles label:has(input[type='checkbox']:focus:not([data-focus-mouse='true'])) {
|
|
73
73
|
@extend %focus;
|
|
74
74
|
|
|
75
75
|
input,
|
|
@@ -80,12 +80,12 @@ p a {
|
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
.toggles label:has(input[type='checkbox']:focus
|
|
83
|
+
.toggles label:has(input[type='checkbox']:focus[data-focus-mouse='true']) {
|
|
84
84
|
@extend %focusmouse;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
&.form-check-group {
|
|
88
|
-
:focus:not(
|
|
88
|
+
:focus:not([data-focus-mouse='true']),
|
|
89
89
|
[type='checkbox']:focus + label,
|
|
90
90
|
[type='radio']:focus + label {
|
|
91
91
|
width: 100%;
|
|
@@ -95,10 +95,20 @@ p a {
|
|
|
95
95
|
|
|
96
96
|
.bg-dark .btn,
|
|
97
97
|
.back-to-top.dark {
|
|
98
|
-
&:focus:not(
|
|
98
|
+
&:focus:not([data-focus-mouse='true']),
|
|
99
99
|
&%focus {
|
|
100
100
|
box-shadow:
|
|
101
101
|
0 0 0 2px $focus-outline-color-out,
|
|
102
102
|
0 0 0 5px $focus-outline-color-in !important;
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
|
+
|
|
106
|
+
.autocomplete__wrapper .autocomplete__menu {
|
|
107
|
+
.autocomplete__hint,
|
|
108
|
+
.autocomplete__option {
|
|
109
|
+
&:focus {
|
|
110
|
+
border: 3px solid $focus-outline-color-out !important;
|
|
111
|
+
box-shadow: none !important;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m 6.2915493,4.711268 c 2.2985915,1.719718 4.7746477,5.205633 5.6788737,7.073239 0.90845,-1.867606 3.380281,-5.353521 5.678873,-7.069014 1.660563,-1.238028 4.347887,-2.197183 4.347887,0.853521 0,0.608451 -0.350704,5.121127 -0.557746,5.852113 -0.714085,2.543662 -3.325352,3.198591 -5.645071,2.805634 4.060564,0.680281 5.087324,2.957746 2.860564,5.235211 -4.233803,4.322535 -6.084507,-1.085916 -6.557747,-2.467606 -0.08873,-0.253521 -0.12676,-0.371831 -0.12676,-0.270422 0,-0.101409 -0.04225,0.0169 -0.126761,0.270422 -0.473239,1.385916 -2.3239437,6.790141 -6.5577465,2.467606 -2.2267606,-2.277465 -1.2,-4.550704 2.856338,-5.239437 C 5.8225352,14.615493 3.215493,13.969014 2.4971831,11.416901 2.2943662,10.690141 1.9478873,6.177465 1.9478873,5.569014 c 0,-3.050704 2.6830986,-2.095775 4.343662,-0.857746 z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M 6,4 4,9 a 2.0000001,2.0000001 0 0 0 -2,2 v 6 h 1 v 2.5 H 6.4999999 V 17 H 17.5 v 2.5 h 3.599609 V 17 H 22 V 11 A 2.0000001,2.0000001 0 0 0 20,9 L 18,4 H 17 Z M 6.5996094,5 H 17.40039 L 19,9 H 5 Z M 5.25,12 A 1.25,1.25 0 0 1 6.4999999,13.25 1.25,1.25 0 0 1 5.25,14.5 1.25,1.25 0 0 1 4,13.25 1.25,1.25 0 0 1 5.25,12 Z m 4.0000001,0 H 14.75 A 1.25,1.25 0 0 1 16,13.25 1.25,1.25 0 0 1 14.75,14.5 H 9.2500001 A 1.25,1.25 0 0 1 7.9999999,13.25 1.25,1.25 0 0 1 9.2500001,12 Z M 18.75,12 A 1.25,1.25 0 0 1 20,13.25 1.25,1.25 0 0 1 18.75,14.5 1.25,1.25 0 0 1 17.5,13.25 1.25,1.25 0 0 1 18.75,12 Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M 15.931001,6.941 H 14.938 l -0.643,8.961 h 0.984 z M 11.103,6.909 h -0.992 l 0.644,8.961001 h 0.984 z m 7.761001,2.6429998 H 7.1420002 V 10.539 H 18.819001 Z M 18.188001,12.333 H 7.8850002 v 0.984 H 18.143001 Z M 6.3060001,7.487 H 18.953001 l -1.636,6.598 c -0.048,0.192 -0.123001,0.365999 -0.224999,0.526001 -0.101998,0.156997 -0.228,0.293 -0.373002,0.408 -0.145002,0.114999 -0.306002,0.202998 -0.483,0.267001 -0.178998,0.064 -0.363999,0.096 -0.558,0.096 h -5.312 c -0.188001,0 -0.3700002,-0.03001 -0.5449995,-0.091 C 9.6449992,15.23 9.486002,15.144001 9.3440003,15.035003 c -0.1420007,-0.109001 -0.2650016,-0.24 -0.372,-0.395 C 8.8670004,14.486 8.7890004,14.318 8.7410004,14.133 L 5.8020001,3.2499999 h -2.827 V 4.2360001 H 5.0430003 L 7.7810001,14.398 c 0.077,0.288 0.1979981,0.552 0.3650003,0.794001 0.1660006,0.243001 0.3610016,0.451 0.589,0.625 0.228,0.173 0.4829999,0.308999 0.7589999,0.404999 C 9.7730012,16.321 10.063,16.369001 10.366,16.369001 h 5.312001 c 0.310998,0 0.608999,-0.051 0.893,-0.152999 0.281998,-0.101 0.539,-0.241999 0.767,-0.422999 0.228,-0.182 0.424,-0.398001 0.588,-0.649001 0.166,-0.25 0.284001,-0.525 0.356001,-0.821 L 20.216001,6.5010003 H 6.3060001 Z M 16.644001,18.182001 c 0.138999,0 0.270999,0.02699 0.389,0.077 0.12,0.051 0.224999,0.123001 0.315998,0.211 0.091,0.091 0.161001,0.195001 0.212002,0.315001 0.051,0.12 0.078,0.245 0.078,0.381 0,0.135999 -0.02698,0.264 -0.078,0.384 -0.051,0.123001 -0.121002,0.226998 -0.212002,0.317998 -0.091,0.088 -0.195998,0.159999 -0.315998,0.210002 -0.121002,0.051 -0.252,0.078 -0.389,0.078 -0.134,0 -0.262999,-0.02699 -0.384,-0.078 -0.118001,-0.05 -0.224999,-0.121999 -0.313002,-0.210002 -0.092,-0.091 -0.161,-0.195001 -0.212001,-0.317998 -0.054,-0.12 -0.078,-0.248001 -0.078,-0.384 0,-0.135999 0.024,-0.264 0.078,-0.384 0.051,-0.12 0.12,-0.224001 0.212001,-0.312 0.088,-0.088 0.195001,-0.159999 0.313002,-0.211 0.121001,-0.05 0.25,-0.077 0.384,-0.077 z m 0,-0.984 c -0.271,0 -0.528,0.051 -0.770001,0.154998 -0.238998,0.104001 -0.447999,0.242 -0.626999,0.421 -0.18,0.176002 -0.322001,0.384 -0.427,0.624 -0.102002,0.24 -0.154999,0.496 -0.154999,0.768 0,0.272002 0.053,0.528 0.154999,0.768 0.104999,0.24 0.246999,0.451 0.427,0.63 0.178998,0.176002 0.388,0.317001 0.626999,0.421 0.242,0.104002 0.499001,0.154999 0.770001,0.154999 0.276,0 0.533,-0.051 0.775,-0.154999 0.241001,-0.104001 0.45,-0.245 0.63,-0.421 0.18,-0.178998 0.322,-0.39 0.424,-0.63 0.104001,-0.24 0.157999,-0.496 0.157999,-0.768 0,-0.274 -0.054,-0.531 -0.157999,-0.768 -0.102,-0.239998 -0.244,-0.447998 -0.427,-0.626998 -0.179,-0.178 -0.389,-0.317 -0.63,-0.421 -0.239,-0.101 -0.496,-0.152 -0.772,-0.152 z m -7.2430005,0.984 c 0.1389996,0 0.2679987,0.02699 0.3879998,0.077 0.1210016,0.051 0.2260007,0.123001 0.3170007,0.211 0.088,0.091 0.161,0.195001 0.212001,0.315001 0.051,0.12 0.077,0.245 0.077,0.381 0,0.135999 -0.026,0.264 -0.077,0.384 -0.051,0.123001 -0.123999,0.226998 -0.212001,0.317998 -0.091,0.088 -0.1959991,0.159999 -0.3170007,0.210002 -0.1230009,0.051 -0.252,0.078 -0.3879998,0.078 -0.135001,0 -0.2630023,-0.02699 -0.384,-0.078 -0.1210016,-0.05 -0.2249991,-0.121999 -0.3139994,-0.210002 -0.091,-0.091 -0.1610003,-0.195001 -0.2140007,-0.317998 -0.051001,-0.12 -0.075001,-0.248001 -0.075001,-0.384 0,-0.135999 0.024,-0.264 0.075001,-0.384 0.053,-0.12 0.123001,-0.224001 0.2140007,-0.312 0.089,-0.088 0.1930016,-0.159999 0.3139994,-0.211 0.1209977,-0.05 0.248999,-0.077 0.384,-0.077 z m 0,-0.984 c -0.2740007,0 -0.5290001,0.051 -0.7700002,0.154998 -0.2389984,0.104001 -0.4510001,0.242 -0.6279999,0.421 -0.18,0.176002 -0.320999,0.384 -0.4260003,0.624 -0.1049991,0.24 -0.1560001,0.496 -0.1560001,0.768 0,0.272002 0.051001,0.528 0.1560001,0.768 0.104999,0.24 0.2460018,0.451 0.4260003,0.63 0.1769991,0.176002 0.389,0.317001 0.6279999,0.421 0.2410016,0.104002 0.4959999,0.154999 0.7700002,0.154999 0.272999,0 0.5329999,-0.051 0.7739995,-0.154999 0.242,-0.104001 0.451001,-0.245 0.631001,-0.421 0.18,-0.178998 0.318999,-0.39 0.423999,-0.63 0.104002,-0.24 0.154999,-0.496 0.154999,-0.768 0,-0.274 -0.051,-0.531 -0.154999,-0.768 -0.105,-0.239998 -0.247,-0.447998 -0.427,-0.626998 -0.18,-0.178 -0.389,-0.317 -0.63,-0.421 -0.2419998,-0.101 -0.4989997,-0.152 -0.7719995,-0.152 z"
|
|
4
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M6.5 2H14.7L19 6.3V16H18V7H15.5C14.6716 7 14 6.32843 14 5.5V3H6.5C6.22386 3 6 3.22386 6 3.5V16H5V3.5C5 2.67157 5.67157 2 6.5 2ZM17.3 6L15 3.7V5.5C15 5.77614 15.2239 6 15.5 6H17.3Z" />
|
|
4
|
+
<path
|
|
5
|
+
d="m 17.402288,17.08612 0.89376,1.773332 0.915039,-1.773332 h 1.014347 l -1.390293,2.461385 1.390293,2.362079 h -1.08528 l -0.893759,-1.666932 -0.91504,1.666932 h -1.014346 l 1.390293,-2.312426 -1.390293,-2.511038 z" />
|
|
6
|
+
<path
|
|
7
|
+
d="m 15.983627,21.831557 q -0.751893,0.163147 -1.354826,0.163147 -0.602933,0 -0.964692,-0.14896 -0.36176,-0.14896 -0.567467,-0.475253 -0.205706,-0.326293 -0.283733,-0.76608 -0.07803,-0.439786 -0.07803,-1.106559 0,-1.397386 0.390133,-1.943573 0.397227,-0.553279 1.454133,-0.553279 0.610026,0 1.411573,0.19152 l -0.02837,0.780266 q -0.702239,-0.1064 -1.170399,-0.1064 -0.461066,0 -0.65968,0.12768 -0.198613,0.120587 -0.29792,0.46816 -0.09221,0.347573 -0.09221,1.184586 0,0.837013 0.19152,1.163306 0.198613,0.3192 0.780266,0.3192 0.588747,0 1.248426,-0.09931 z" />
|
|
8
|
+
<path
|
|
9
|
+
d="m 9.3017075,20.774651 q 0.2127999,0.368853 0.7873595,0.368853 0.57456,0 0.780267,-0.368853 0.212799,-0.375946 0.212799,-1.248426 0,-0.879573 -0.212799,-1.276799 -0.2128,-0.397227 -0.780267,-0.397227 -0.5674663,0 -0.7802662,0.397227 -0.2127998,0.397226 -0.2127998,1.276799 0,0.87248 0.2057065,1.248426 z m 2.3337055,0.624213 q -0.44688,0.59584 -1.546346,0.59584 -1.099466,0 -1.5534391,-0.59584 -0.4468798,-0.602933 -0.4468798,-1.879732 0,-1.2768 0.4468798,-1.893919 Q 8.989601,17.001 10.089067,17.001 q 1.099466,0 1.546346,0.624213 0.453973,0.617119 0.453973,1.893919 0,1.276799 -0.453973,1.879732 z" />
|
|
10
|
+
<path
|
|
11
|
+
d="M 5.4003726,21.909584 H 3.776 V 17.08612 h 1.6243726 q 0.624213,0 1.0285328,0.134773 0.4043198,0.12768 0.624213,0.432693 0.2269866,0.29792 0.3121066,0.709333 0.08512,0.40432 0.08512,1.056906 0,0.652587 -0.078027,1.08528 -0.078027,0.4256 -0.2979199,0.766079 -0.2127999,0.333387 -0.624213,0.48944 -0.4114131,0.14896 -1.0498125,0.14896 z m 1.0285328,-1.915199 q 0.014187,-0.226987 0.014187,-0.624213 0,-0.40432 -0.028373,-0.645493 -0.028373,-0.241173 -0.1347732,-0.439787 -0.1064,-0.198613 -0.3191999,-0.269546 -0.2057065,-0.07803 -0.560373,-0.07803 H 4.7548795 v 3.121065 h 0.6454931 q 0.5319997,0 0.7731729,-0.269546 0.2057066,-0.219893 0.2553599,-0.794453 z" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m 20.115001,12.685 -2.671,-3.5440001 c -0.086,-0.1149996 -0.185001,-0.216 -0.296999,-0.3069996 -0.11,-0.090002 -0.228,-0.168 -0.354002,-0.2319988 -0.126002,-0.061002 -0.260999,-0.1090016 -0.4,-0.144 -0.139,-0.032013 -0.282002,-0.048 -0.429,-0.048 -0.145001,0 -0.286998,0.015987 -0.426,0.048 -0.140001,0.034998 -0.274001,0.082998 -0.4,0.144 -0.126002,0.063999 -0.243999,0.1420006 -0.356999,0.2319988 -0.11,0.091 -0.209001,0.192 -0.296999,0.3069996 L 11.941001,12.515 c 0,0 0,0 0,0 0,0 0,0 0,0 L 11.469,12.043 c -0.093,-0.096 -0.198002,-0.178998 -0.308001,-0.248001 -0.113,-0.072 -0.231001,-0.130998 -0.354002,-0.176001 -0.123001,-0.046 -0.248999,-0.078 -0.381,-0.096 -0.130998,-0.01901 -0.262998,-0.024 -0.394,-0.01599 -0.1339992,0.007 -0.2629983,0.03201 -0.386,0.072 -0.1260019,0.037 -0.2439987,0.088 -0.3589984,0.152002 -0.1130004,0.061 -0.2199988,0.135998 -0.3220007,0.217999 -0.099999,0.083 -0.1939993,0.176001 -0.276,0.277999 L 5.5289976,16.011 l 0.762,0.63 3.1620001,-3.782001 c 0.096,-0.118 0.200999,-0.207998 0.3139994,-0.267001 0.1119987,-0.059 0.2219981,-0.093 0.3320009,-0.101 0.121002,-0.011 0.241002,0.008 0.358999,0.048 0.116001,0.042 0.219998,0.106001 0.308999,0.197 l 0.472005,0.474999 c 0.106998,0.106001 0.228,0.183999 0.361999,0.231999 0.135999,0.048 0.272999,0.066 0.41,0.056 0.139,-0.008 0.271,-0.048 0.397,-0.111999 0.128999,-0.067 0.236001,-0.159998 0.327001,-0.279998 l 2.542,-3.3740018 c 0.081,-0.1069984 0.183001,-0.188999 0.303001,-0.2480013 0.120997,-0.061002 0.25,-0.091 0.384,-0.091 0.137,0 0.265001,0.030009 0.385999,0.091 0.121002,0.058998 0.223,0.1409991 0.303001,0.2480013 L 19.324001,13.277 Z M 2.6630001,15.942 v 0.987 H 21.338001 V 15.942 Z M 7.0450005,5.8869998 c 0.1660007,0 0.3189997,0.032013 0.4639998,0.094001 0.144,0.060998 0.2700019,0.1459994 0.378,0.2530016 0.1069984,0.1069984 0.1930016,0.2319987 0.2539994,0.3759987 0.061999,0.144 0.094001,0.2960013 0.094001,0.461 0,0.1660006 -0.032013,0.3179981 -0.094001,0.462 -0.061002,0.144 -0.147001,0.2690003 -0.2539994,0.3759987 -0.108,0.1060007 -0.2340019,0.192 -0.378,0.2530016 -0.1450016,0.061002 -0.2980006,0.092999 -0.4639998,0.092999 -0.1669984,0 -0.3189996,-0.032013 -0.4640001,-0.092999 -0.1450016,-0.061002 -0.2709997,-0.1470013 -0.378,-0.253002 -0.108,-0.1069984 -0.1939994,-0.2319987 -0.2550009,-0.3759987 -0.061999,-0.144 -0.094001,-0.2960013 -0.094001,-0.462 0,-0.1649991 0.032013,-0.3170003 0.094001,-0.461 0.061001,-0.144 0.1470009,-0.2690003 0.2550009,-0.3759987 0.1069984,-0.1069984 0.2330003,-0.192 0.378,-0.2530016 0.1450016,-0.061999 0.2969991,-0.094001 0.4640001,-0.094001 z m 0,-0.9860002 c -0.1989996,0 -0.3920001,0.026003 -0.5800002,0.077 C 6.2780006,5.0279986 6.1060019,5.103 5.9450004,5.1970006 c -0.1610003,0.096 -0.3080013,0.2100019 -0.4420003,0.3410003 -0.132,0.1330016 -0.2469996,0.2799988 -0.3440012,0.4400001 -0.092999,0.1599988 -0.168,0.3299982 -0.219001,0.5170001 -0.051999,0.1869997 -0.078002,0.3790001 -0.078002,0.576 0,0.1980019 0.026003,0.39 0.080001,0.576 0.051001,0.1869997 0.1260019,0.3580007 0.2199987,0.5180002 C 5.2559966,8.325 5.370996,8.4710032 5.502996,8.605001 c 0.1339993,0.1300007 0.2810003,0.2450003 0.4420002,0.339001 0.1610003,0.092999 0.3329991,0.168 0.5199999,0.2179993 0.1880013,0.053998 0.3810002,0.080001 0.5800003,0.080001 0.200999,0 0.3939998,-0.026003 0.582,-0.080001 0.1850007,-0.049999 0.3560016,-0.125 0.5170001,-0.217999 C 8.3049968,8.8500016 8.4519977,8.735002 8.5869968,8.6050013 8.7179952,8.471002 8.8329949,8.3250026 8.9299965,8.1650016 9.0239971,8.0050028 9.0989981,7.8340019 9.1499952,7.6470014 c 0.051001,-0.1860019 0.077,-0.378 0.077,-0.576 0,-0.2000012 -0.026003,-0.3920001 -0.077,-0.5780001 C 9.0989943,6.308001 9.0239933,6.1380016 8.9299965,5.9780013 8.8329987,5.8180026 8.7179952,5.6710017 8.5869968,5.5380012 8.4519958,5.4070028 8.3049949,5.2930009 8.1439965,5.1970009 7.9829962,5.1030003 7.8119952,5.0279993 7.6239966,4.9779999 7.4359953,4.926999 7.2429968,4.9009996 7.0449968,4.9009996 Z M 3.5740002,3.1299999 H 20.426001 c 0.049,0 0.101998,0.013002 0.161,0.041998 0.057,0.03001 0.109999,0.067 0.161,0.1119988 0.049,0.046001 0.089,0.099001 0.123999,0.1579993 0.03201,0.058001 0.048,0.1169991 0.048,0.1780007 V 20.379998 c 0,0.061 -0.01599,0.12 -0.048,0.178 -0.035,0.059 -0.075,0.111999 -0.123999,0.158 -0.051,0.045 -0.104001,0.082 -0.161,0.111998 -0.059,0.02899 -0.111999,0.042 -0.161,0.042 H 3.5740002 c -0.048,0 -0.1010003,-0.013 -0.1599987,-0.042 -0.056999,-0.03001 -0.1099994,-0.067 -0.1610003,-0.111998 -0.048,-0.046 -0.089,-0.099 -0.1239988,-0.158 -0.032013,-0.058 -0.048,-0.116999 -0.048,-0.178 V 3.6199968 c 0,-0.061002 0.015987,-0.12 0.048,-0.1780007 C 3.1640004,3.3829981 3.2050014,3.3299974 3.2530012,3.2839968 3.3040022,3.2389978 3.3570024,3.2019958 3.4140015,3.171998 3.4729995,3.143009 3.5260002,3.13 3.5740002,3.1299999 Z m 0,-0.9870002 c -0.1280012,0 -0.2570003,0.015987 -0.3829999,0.049999 -0.1260019,0.032013 -0.2439988,0.080002 -0.351001,0.145002 C 2.7299992,2.3990022 2.6279992,2.4760026 2.5369991,2.5640013 2.4429993,2.652 2.3649993,2.751001 2.2979992,2.8600026 c -0.067,0.1099993 -0.1179999,0.2269984 -0.1549999,0.3549997 -0.034998,0.1280012 -0.054,0.264 -0.054,0.4050001 V 20.380003 c 0,0.140999 0.019,0.277002 0.054,0.405 0.037002,0.128001 0.088,0.245 0.1549999,0.355 0.067,0.109001 0.1450001,0.207998 0.2389999,0.296001 0.091,0.088 0.1930001,0.164999 0.3030002,0.226001 0.1069985,0.065 0.2249991,0.113 0.348,0.144 0.1260019,0.035 0.255001,0.051 0.3860002,0.051 H 20.426 c 0.132,0 0.260001,-0.01599 0.387,-0.051 0.123001,-0.03099 0.241002,-0.079 0.348,-0.144 0.11,-0.061 0.212002,-0.137999 0.303001,-0.226001 0.094,-0.088 0.171999,-0.187 0.238999,-0.296001 0.067,-0.11 0.118,-0.226999 0.154998,-0.355 0.035,-0.128001 0.054,-0.264 0.054,-0.405 V 3.6200024 c 0,-0.140999 -0.01901,-0.2770015 -0.054,-0.4050001 C 21.820996,3.087001 21.769999,2.9700019 21.703,2.8600026 21.636,2.751001 21.557998,2.6520038 21.464001,2.5640013 21.373002,2.4760026 21.271,2.3990022 21.161,2.3380007 c -0.106998,-0.065 -0.224999,-0.1130004 -0.351001,-0.1450016 -0.126002,-0.034016 -0.255001,-0.049999 -0.384,-0.049999 z"
|
|
4
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m 11.079001,18.027 c -0.083,-0.085 -0.154999,-0.178 -0.214001,-0.288 -0.062,-0.106 -0.118001,-0.216 -0.171999,-0.327998 -0.056,-0.111999 -0.113,-0.221001 -0.173998,-0.327999 -0.059,-0.106001 -0.132,-0.202001 -0.219998,-0.288 -0.086,-0.082 -0.190999,-0.152001 -0.3139999,-0.202001 -0.1230009,-0.051 -0.276,-0.078 -0.456,-0.078 -0.091,0 -0.1869997,0.008 -0.2899994,0.024 -0.1010003,0.01599 -0.2090003,0.046 -0.324,0.088 -0.1180006,0.04 -0.2389984,0.096 -0.3669997,0.163 -0.128999,0.069 -0.2659993,0.157001 -0.4050001,0.264 -0.03001,-0.048 -0.065,-0.093 -0.1049991,-0.139 -0.043,-0.045 -0.094001,-0.082 -0.1549984,-0.116999 -0.061999,-0.035 -0.1339994,-0.061 -0.2149985,-0.083 -0.082998,-0.01901 -0.18,-0.02899 -0.2869984,-0.02899 -0.1819994,0 -0.3700006,0.024 -0.5629999,0.077 -0.1900007,0.051 -0.3810002,0.118001 -0.5740003,0.198002 -0.1900006,0.08 -0.3809998,0.169999 -0.5679999,0.269 -0.1880012,0.101001 -0.3709984,0.197001 -0.5499999,0.296002 -0.176999,0.096 -0.3490015,0.186999 -0.5150003,0.269 -0.1640012,0.08 -0.3220006,0.147001 -0.4689997,0.192 l 0.303001,0.942 c 0.1470009,-0.048 0.3030009,-0.111999 0.4640001,-0.190001 0.1610003,-0.08 0.324,-0.162002 0.4899999,-0.248001 0.1669984,-0.088 0.3329991,-0.176001 0.4990001,-0.265999 0.1690015,-0.091 0.3299981,-0.173999 0.4909999,-0.248002 0.1579994,-0.075 0.3109984,-0.142 0.456,-0.195001 0.1450016,-0.053 0.2810003,-0.085 0.4050002,-0.101 -0.003,0.02899 -0.003,0.058 -0.00601,0.088 -0.002,0.02899 -0.00499,0.058 -0.00801,0.085 0,0.02899 -0.002,0.059 -0.002,0.088 -0.003,0.03201 -0.003,0.061 -0.003,0.091 0,0.104001 0.026986,0.193999 0.082998,0.274 0.054002,0.078 0.1210016,0.134 0.2040001,0.171001 0.080001,0.037 0.1690015,0.054 0.2650015,0.045 0.094001,-0.008 0.183001,-0.045 0.2629985,-0.111998 0.1099993,-0.096 0.228,-0.194 0.3519987,-0.301002 0.123001,-0.106998 0.2489991,-0.205001 0.375001,-0.296001 0.1260018,-0.088 0.252,-0.163 0.3810002,-0.224001 0.1280012,-0.059 0.252,-0.088 0.3750009,-0.088 0.043,0 0.080999,0.01599 0.1099994,0.048 0.032013,0.03201 0.061999,0.077 0.091,0.133001 0.030009,0.059 0.058998,0.126002 0.094001,0.202999 0.032013,0.08 0.073002,0.163 0.1210016,0.253001 0.048,0.091 0.1069984,0.187 0.1769984,0.286001 0.07,0.098 0.154999,0.200001 0.257001,0.299002 z"
|
|
4
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
5
|
+
<polygon points="32891,12000 32891,11013 28927,11013 28927,12000 " clip-rule="evenodd" fill-rule="nonzero" />
|
|
6
|
+
<polygon points="36857,10029 36857,9042 28927,9042 28927,10029 " clip-rule="evenodd" fill-rule="nonzero" />
|
|
7
|
+
<path
|
|
8
|
+
d="m 20.076001,8.9220001 -7.004,6.9719999 c -0.108,0.106001 -0.212001,0.24 -0.310999,0.397 -0.1,0.154999 -0.190998,0.322999 -0.274,0.496 -0.086,0.176001 -0.161001,0.351999 -0.224999,0.528 -0.067,0.176001 -0.121002,0.336 -0.164002,0.48 -0.043,0.144 -0.069,0.264 -0.086,0.363001 -0.013,0.099 -0.013,0.157002 0.009,0.176001 0.01799,0.01901 0.077,0.02101 0.176999,0.005 0.096,-0.013 0.219001,-0.042 0.363999,-0.085 0.147999,-0.04 0.308999,-0.093 0.485,-0.159999 0.178001,-0.067 0.355,-0.140999 0.529,-0.224001 0.174002,-0.083 0.339999,-0.176001 0.499,-0.274999 0.158,-0.098 0.289002,-0.202 0.397,-0.308999 l 7.004001,-6.969 c 0.104999,-0.104001 0.176999,-0.207999 0.222999,-0.3200012 0.043,-0.1090016 0.064,-0.219001 0.064,-0.3309997 0,-0.1330016 -0.02899,-0.264 -0.086,-0.3859998 -0.059,-0.1230009 -0.134,-0.2349997 -0.23,-0.3309997 -0.097,-0.096 -0.207001,-0.1710009 -0.330002,-0.2290015 -0.123001,-0.058999 -0.255001,-0.085999 -0.389,-0.085999 -0.113,0 -0.223,0.021014 -0.332999,0.067 -0.109999,0.044999 -0.214001,0.116999 -0.319,0.2210003 z"
|
|
9
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
10
|
+
<path
|
|
11
|
+
d="m 10.873001,2.7609997 v 2.8330001 c 0,0.1280013 0.01901,0.2559988 0.056,0.3810002 0.035,0.1259981 0.089,0.243001 0.152999,0.3499994 0.067,0.1090016 0.147001,0.2099981 0.238998,0.3010016 0.093,0.092999 0.193002,0.1710009 0.303001,0.236999 0.11,0.067 0.228,0.1180007 0.351001,0.1549985 0.126002,0.034998 0.255001,0.053 0.386,0.053 h 2.848 l -0.695,-0.985999 h -2.153 c -0.072,0 -0.139,-0.010998 -0.200999,-0.034998 -0.062,-0.024 -0.115,-0.056001 -0.158,-0.1019982 -0.043,-0.041998 -0.078,-0.096 -0.102002,-0.1540006 -0.024,-0.061999 -0.035,-0.1280013 -0.035,-0.2000013 v -2.142 z"
|
|
12
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
13
|
+
<path
|
|
14
|
+
d="m 14.839001,18.894 v 1.486001 c 0,0.074 -0.013,0.140999 -0.035,0.200001 -0.024,0.061 -0.059,0.111999 -0.102002,0.154 -0.045,0.046 -0.096,0.078 -0.154998,0.102002 -0.062,0.024 -0.128999,0.03402 -0.204,0.03402 H 3.4390003 c -0.072,0 -0.1389997,-0.01002 -0.2009991,-0.03402 -0.058998,-0.024 -0.1130003,-0.056 -0.156,-0.102002 -0.044999,-0.042 -0.077,-0.093 -0.1010003,-0.154 -0.024983,-0.059 -0.034998,-0.126002 -0.034998,-0.200001 V 3.6199998 c 0,-0.073999 0.010016,-0.1409991 0.034998,-0.2000013 0.024,-0.061002 0.056001,-0.1119987 0.1010003,-0.1540006 0.043,-0.046001 0.097002,-0.078002 0.156,-0.1020019 0.061999,-0.024 0.1289991,-0.034016 0.2009991,-0.034016 h 7.7180007 l 3.682,3.659 v 5.374001 l 0.99,-0.984981 V 6.3809999 l -4.259,-4.2380002 H 3.4390003 c -0.1289991,0 -0.2580019,0.017991 -0.3830003,0.053 -0.1260019,0.037002 -0.2439988,0.087999 -0.3519988,0.1549985 -0.1099993,0.066002 -0.2120012,0.144 -0.3030009,0.236999 -0.094001,0.091 -0.171001,0.192 -0.2380006,0.3019994 -0.068001,0.1060006 -0.1189985,0.2240013 -0.156,0.3460006 -0.034999,0.1260019 -0.054002,0.2539994 -0.054002,0.384 V 20.379998 c 0,0.130001 0.019011,0.258002 0.054002,0.384 0.037001,0.122 0.087999,0.24 0.156,0.346001 0.067,0.109999 0.144,0.211 0.2380006,0.301999 0.091,0.093 0.1930016,0.171001 0.3030009,0.236999 0.108,0.067 0.2260007,0.118001 0.3490016,0.154999 0.1260019,0.035 0.255001,0.053 0.3860001,0.053 H 14.343003 c 0.134,0 0.262999,-0.01799 0.386001,-0.053 0.123001,-0.037 0.241001,-0.088 0.351001,-0.154999 0.109999,-0.066 0.209,-0.144 0.303,-0.236999 0.092,-0.091 0.171999,-0.192 0.236002,-0.301999 0.067,-0.106001 0.118,-0.224001 0.156,-0.349002 0.038,-0.125 0.054,-0.253001 0.054,-0.380999 V 17.907 Z"
|
|
15
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M6.5 2H14.7L19 6.3V16H18V7H15.5C14.6716 7 14 6.32843 14 5.5V3H6.5C6.22386 3 6 3.22386 6 3.5V16H5V3.5C5 2.67157 5.67157 2 6.5 2ZM17.3 6L15 3.7V5.5C15 5.77614 15.2239 6 15.5 6H17.3Z" />
|
|
4
|
+
<path
|
|
5
|
+
d="m 15.625,17.085937 1.390625,2.511719 -1.390625,2.3125 h 1.013672 l 0.916015,-1.667969 0.892579,1.667969 h 1.085937 l -1.390625,-2.363281 1.390625,-2.460938 h -1.015625 l -0.914062,1.773438 -0.894532,-1.773438 z" />
|
|
6
|
+
<path d="m 8.9140625,17.085937 v 4.824219 H 11.660156 V 21.044922 H 9.8925781 v -3.958985 z" />
|
|
7
|
+
<path
|
|
8
|
+
d="m 4.4179687,17.085937 1.3886719,2.511719 -1.3886719,2.3125 h 1.0136719 l 0.9140625,-1.667969 0.8945313,1.667969 h 1.0859375 l -1.390625,-2.363281 1.390625,-2.460938 H 7.3105469 L 6.3964844,18.859375 5.5019531,17.085937 Z" />
|
|
9
|
+
<path
|
|
10
|
+
d="m 13.644531,17.001953 c -0.510719,0 -0.911887,0.117072 -1.205078,0.353516 C 12.146263,17.591913 12,17.951248 12,18.433594 c 0,0.383039 0.111727,0.682862 0.333984,0.90039 0.226987,0.2128 0.61356,0.398635 1.16211,0.554688 0.345208,0.09931 0.574007,0.190271 0.6875,0.27539 0.118222,0.08512 0.177734,0.204145 0.177734,0.355469 0,0.416142 -0.250692,0.623047 -0.751953,0.623047 -0.335751,0 -0.819455,-0.04183 -1.453125,-0.126953 l -0.09961,0.759766 0.255859,0.04883 c 0.534364,0.113493 0.984663,0.169922 1.353516,0.169922 0.496532,0 0.899654,-0.128584 1.207031,-0.388672 0.307378,-0.260089 0.460937,-0.6444 0.460937,-1.150391 0,-0.397225 -0.09405,-0.689751 -0.283203,-0.878906 -0.189156,-0.193885 -0.521252,-0.366254 -0.99414,-0.517578 -0.468159,-0.151324 -0.766852,-0.267265 -0.894532,-0.347657 -0.127679,-0.08039 -0.191406,-0.196331 -0.191406,-0.347656 0,-0.340479 0.257989,-0.511719 0.773438,-0.511719 0.274275,10e-7 0.745336,0.03762 1.412109,0.113282 l 0.07813,-0.771485 -0.255859,-0.05078 c -0.539093,-0.09458 -0.984047,-0.140625 -1.333985,-0.140625 z" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m 10.243995,18.027013 c -0.083,-0.085 -0.156,-0.178001 -0.214998,-0.288 -0.061002,-0.106001 -0.1180007,-0.216 -0.1710006,-0.327999 -0.056999,-0.111999 -0.1130003,-0.221001 -0.1749997,-0.327999 -0.058998,-0.106001 -0.1309984,-0.202001 -0.2199988,-0.288 -0.085001,-0.082 -0.1900002,-0.152001 -0.3130012,-0.202001 -0.1239987,-0.051 -0.2770012,-0.078 -0.4559996,-0.078 -0.091,0 -0.1880013,0.008 -0.2899994,0.024 -0.1019981,0.01599 -0.2090003,0.046 -0.324,0.088 -0.1180006,0.04 -0.2390022,0.096 -0.3680012,0.163 -0.1280013,0.069 -0.2650016,0.157001 -0.4049999,0.264 -0.028989,-0.048 -0.063999,-0.093 -0.1040012,-0.139 -0.043,-0.045 -0.094001,-0.082 -0.156,-0.116999 -0.061002,-0.035 -0.1339994,-0.061 -0.2140007,-0.083 -0.084,-0.01901 -0.18,-0.02899 -0.2869984,-0.02899 -0.1830009,0 -0.3700006,0.024 -0.5629992,0.077 -0.1909973,0.051 -0.380999,0.118001 -0.5739983,0.198002 -0.1909985,0.08 -0.3809999,0.169999 -0.569,0.269 -0.1869997,0.101 -0.3700002,0.197 -0.5499995,0.296001 -0.1760013,0.096 -0.348,0.187 -0.5139994,0.269001 -0.1640013,0.08 -0.3220003,0.147001 -0.4699998,0.192 l 0.3030006,0.941979 c 0.1479987,-0.048 0.3030009,-0.111998 0.4640001,-0.19 0.1610003,-0.08 0.3250015,-0.162002 0.4909991,-0.248002 0.1660007,-0.088 0.3329991,-0.176001 0.4989997,-0.265999 0.1690016,-0.091 0.3299982,-0.173998 0.4909996,-0.248001 0.1579994,-0.075 0.3110022,-0.142001 0.4549999,-0.195001 0.1450016,-0.053 0.2820019,-0.085 0.4049999,-0.101 -0.002,0.02899 -0.002,0.058 -0.00499,0.088 -0.003,0.02899 -0.00601,0.058 -0.00801,0.085 0,0.02899 -0.003,0.059 -0.003,0.088 -0.003,0.03201 -0.003,0.061 -0.003,0.091 0,0.104002 0.026986,0.194 0.084,0.274001 0.053,0.078 0.12,0.133999 0.2029984,0.171001 0.080999,0.037 0.1690016,0.054 0.2659994,0.045 0.094001,-0.008 0.1819994,-0.045 0.2629984,-0.111999 0.1099994,-0.096 0.228,-0.193999 0.351001,-0.301001 0.1239987,-0.106999 0.248999,-0.205002 0.3759987,-0.296002 0.1260019,-0.088 0.252,-0.162999 0.3799998,-0.224001 0.128999,-0.059 0.252,-0.088 0.3759987,-0.088 0.043,0 0.080001,0.01599 0.1099994,0.048 0.032013,0.03201 0.061999,0.077 0.091,0.133002 0.028989,0.059 0.058998,0.126002 0.094001,0.202998 0.032013,0.08 0.072,0.163 0.1210016,0.253002 0.048,0.091 0.1069984,0.187 0.1760012,0.286001 0.070001,0.098 0.156,0.200001 0.2579982,0.299002 z"
|
|
4
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
5
|
+
<path
|
|
6
|
+
d="m 19.240989,8.9220122 -7.004995,6.9719998 c -0.106999,0.106001 -0.212001,0.24 -0.310999,0.397 -0.099,0.154998 -0.19,0.322998 -0.272999,0.496 -0.086,0.176002 -0.161,0.351999 -0.226,0.528 -0.067,0.176002 -0.12,0.336 -0.163,0.48 -0.043,0.144 -0.07,0.264 -0.086,0.363001 -0.013,0.099 -0.013,0.157002 0.008,0.176002 0.01901,0.01901 0.078,0.02101 0.176999,0.005 0.097,-0.013 0.219999,-0.042 0.365001,-0.085 0.147001,-0.04 0.308001,-0.093 0.484999,-0.159999 0.176999,-0.067 0.353998,-0.140999 0.528,-0.224001 0.175,-0.083 0.341,-0.176001 0.499,-0.274999 0.157999,-0.098 0.289999,-0.202 0.396999,-0.308999 l 7.004995,-6.969002 c 0.104002,-0.104001 0.176999,-0.207999 0.221998,-0.3200014 0.043,-0.1089978 0.065,-0.219001 0.065,-0.3309997 0,-0.1330016 -0.03001,-0.264 -0.086,-0.3860001 -0.059,-0.123001 -0.133999,-0.2349997 -0.231001,-0.3309997 -0.096,-0.096 -0.205999,-0.171001 -0.329,-0.2290016 -0.123999,-0.058998 -0.255001,-0.085999 -0.389,-0.085999 -0.113,0 -0.222999,0.021014 -0.332999,0.067 -0.109999,0.044999 -0.214,0.1169991 -0.318999,0.2210003 z"
|
|
7
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m 13.120885,21.853286 c 1.160992,-0.136494 2.152377,-0.421473 3.168213,-0.910717 0.490934,-0.236441 0.716368,-0.365176 1.188481,-0.678689 1.407816,-0.934879 2.533421,-2.187724 3.313746,-3.68834 1.5267,-2.935945 1.473462,-6.507325 -0.140005,-9.3919553 C 20.188273,6.3557303 19.674851,5.6782687 18.995459,4.9986738 18.31786,4.3208738 17.643467,3.8101432 16.810932,3.3442899 15.09102,2.3818962 13.117519,1.9637986 11.12144,2.1389384 8.1055523,2.4035583 5.3709224,4.040957 3.7138912,6.5743147 2.8336618,7.9200562 2.3304663,9.3289241 2.1413606,10.977153 c -0.054873,0.478272 -0.055207,1.541878 -6.38e-4,2.034732 0.2642094,2.386277 1.2678521,4.455384 2.961052,6.104496 1.6485183,1.605596 3.8091959,2.585966 6.1001234,2.767828 0.39729,0.03154 1.54503,0.01306 1.918987,-0.03092 z m 2.720048,-5.186816 c -0.0404,-0.01251 -0.174892,-0.08128 -0.298842,-0.152957 -0.281331,-0.162686 -0.937499,-0.480489 -1.22005,-0.590904 -1.197019,-0.467772 -2.442447,-0.689085 -3.867248,-0.687213 -1.0342399,0.0014 -2.0683112,0.116656 -3.1561659,0.351904 -0.3518688,0.07609 -0.5157442,0.08494 -0.6560686,0.03542 -0.1330592,-0.04695 -0.221875,-0.118841 -0.3163777,-0.256075 -0.1583064,-0.229888 -0.1205593,-0.534587 0.093518,-0.75489 0.1242315,-0.127844 0.2236629,-0.159783 0.9317349,-0.299283 1.9106394,-0.376422 3.6667643,-0.422083 5.3098403,-0.13806 1.024302,0.177061 2.028897,0.506539 2.95429,0.968921 0.788091,0.393778 0.979983,0.555372 1.015481,0.855153 0.02797,0.236266 -0.125421,0.514905 -0.345211,0.627049 -0.107178,0.05468 -0.332838,0.07545 -0.444901,0.04093 z m 1.000017,-2.653097 c -0.04671,-0.0179 -0.174799,-0.08565 -0.284635,-0.150538 C 15.930063,13.492882 15.035523,13.107469 14.270775,12.87811 11.999529,12.196932 9.4512211,12.120483 7.2927877,12.66877 6.6412833,12.834266 6.6283354,12.836399 6.467563,12.804765 6.0905074,12.730575 5.8615047,12.470696 5.8396804,12.092232 c -0.012555,-0.217716 0.045958,-0.386755 0.1889272,-0.545795 0.1375526,-0.153015 0.2678139,-0.217047 0.659837,-0.324354 1.1970677,-0.32767 2.3077203,-0.469622 3.6743964,-0.469622 0.966416,0 1.564514,0.04872 2.49854,0.203538 1.365982,0.226412 2.660863,0.638002 3.799313,1.207648 0.796544,0.398566 1.023298,0.553057 1.127387,0.768109 0.185151,0.382531 0.02931,0.842889 -0.351499,1.038344 -0.146295,0.07509 -0.454275,0.09746 -0.595632,0.04327 z m 1.337758,-3.003555 C 18.107898,10.998198 17.97643,10.948158 17.879866,10.896076 17.522779,10.703488 16.777835,10.34685 16.51209,10.241262 14.052898,9.2641531 10.686796,8.9454149 7.7882028,9.415191 7.433655,9.4726526 6.839179,9.6063546 6.5508827,9.6934736 5.996251,9.8610736 5.6191808,9.7788706 5.3532254,9.4323762 5.2182943,9.2565838 5.1583418,9.0747997 5.1571452,8.8378335 5.1561756,8.6458298 5.1621049,8.6179364 5.2340292,8.4761441 5.3244998,8.2977894 5.5167929,8.1022477 5.686055,8.0164814 5.9951974,7.8598371 7.2630397,7.5840382 8.1330204,7.4841828 9.8787011,7.283816 11.512776,7.2909124 13.209188,7.5062274 c 2.127987,0.2700925 3.98106,0.8335648 5.404268,1.6433011 0.34548,0.1965618 0.461786,0.3032603 0.570605,0.5234771 0.08193,0.165804 0.08656,0.187016 0.08656,0.3959904 0,0.208345 -0.0048,0.23053 -0.0852,0.393213 -0.199309,0.403333 -0.59024,0.61598 -1.006726,0.547609 z" />
|
|
4
|
+
</svg>
|
package/types/index.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import { Accordion } from './plugins/accordion'
|
|
|
3
3
|
import { BackToTop } from './plugins/back-to-top'
|
|
4
4
|
import { Button } from './plugins/button'
|
|
5
5
|
import { Carousel } from './plugins/carousel'
|
|
6
|
-
import { CarouselBI } from './plugins/carousel-bi'
|
|
7
6
|
import { Collapse } from './plugins/collapse'
|
|
8
7
|
import { Cookiebar } from './plugins/cookiebar'
|
|
9
8
|
import { Dimmer } from './plugins/dimmer'
|
|
@@ -46,7 +45,6 @@ export {
|
|
|
46
45
|
BackToTop,
|
|
47
46
|
Button,
|
|
48
47
|
Carousel,
|
|
49
|
-
CarouselBI,
|
|
50
48
|
Collapse,
|
|
51
49
|
Cookiebar,
|
|
52
50
|
Dimmer,
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
2
|
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
import Splide from '@splidejs/splide'
|
|
5
|
+
|
|
6
|
+
declare class Carousel extends BaseComponent {
|
|
7
|
+
|
|
5
8
|
/**
|
|
6
9
|
* Static method which allows you to get the instance associated
|
|
7
10
|
* with a DOM element.
|
|
@@ -12,6 +15,43 @@ declare class Carousel extends BSCarousel {
|
|
|
12
15
|
* a DOM element, or create a new one in case it wasn’t initialised
|
|
13
16
|
*/
|
|
14
17
|
static getOrCreateInstance: GetOrCreateInstanceFactory<Carousel>;
|
|
18
|
+
|
|
19
|
+
static get NAME(): string
|
|
20
|
+
|
|
21
|
+
constructor(element: HTMLElement)
|
|
22
|
+
|
|
23
|
+
_config: {
|
|
24
|
+
slideFocus: boolean
|
|
25
|
+
i18n: {
|
|
26
|
+
prev: string
|
|
27
|
+
next: string
|
|
28
|
+
first: string
|
|
29
|
+
last: string
|
|
30
|
+
slideX: string
|
|
31
|
+
pageX: string
|
|
32
|
+
play: string
|
|
33
|
+
pause: string
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
_splide: Splide
|
|
37
|
+
|
|
38
|
+
dispose(): void
|
|
39
|
+
|
|
40
|
+
_init(): void
|
|
41
|
+
|
|
42
|
+
_getConfig(): {
|
|
43
|
+
slideFocus: boolean
|
|
44
|
+
i18n: {
|
|
45
|
+
prev: string
|
|
46
|
+
next: string
|
|
47
|
+
first: string
|
|
48
|
+
last: string
|
|
49
|
+
slideX: string
|
|
50
|
+
pageX: string
|
|
51
|
+
play: string
|
|
52
|
+
pause: string
|
|
53
|
+
}
|
|
54
|
+
}
|
|
15
55
|
}
|
|
16
56
|
|
|
17
57
|
export { Carousel }
|