@citizenplane/pimp 18.0.0 → 18.0.2
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/components/CpMenu.vue.d.ts +2 -0
- package/dist/components/CpMenu.vue.d.ts.map +1 -1
- package/dist/components/icons/IconAerosol.vue.d.ts.map +1 -1
- package/dist/components/icons/IconBaggageBattery.vue.d.ts.map +1 -1
- package/dist/components/icons/IconBomb.vue.d.ts.map +1 -1
- package/dist/components/icons/IconBottle.vue.d.ts.map +1 -1
- package/dist/components/icons/IconCampingStove.vue.d.ts.map +1 -1
- package/dist/components/icons/IconCarBattery.vue.d.ts.map +1 -1
- package/dist/components/icons/IconCorrosive.vue.d.ts.map +1 -1
- package/dist/components/icons/IconDeviceForbidden.vue.d.ts.map +1 -1
- package/dist/components/icons/IconECigarette.vue.d.ts.map +1 -1
- package/dist/components/icons/IconFish.vue.d.ts.map +1 -1
- package/dist/components/icons/IconGun.vue.d.ts.map +1 -1
- package/dist/components/icons/IconHammer.vue.d.ts.map +1 -1
- package/dist/components/icons/IconKnife.vue.d.ts.map +1 -1
- package/dist/components/icons/IconLighter.vue.d.ts.map +1 -1
- package/dist/components/icons/IconMatches.vue.d.ts.map +1 -1
- package/dist/components/icons/IconPills.vue.d.ts.map +1 -1
- package/dist/components/icons/IconScooter.vue.d.ts.map +1 -1
- package/dist/components/icons/IconSkull.vue.d.ts.map +1 -1
- package/dist/components/icons/IconSyringe.vue.d.ts.map +1 -1
- package/dist/components/icons/IconToothbrush.vue.d.ts.map +1 -1
- package/dist/pimp.es.js +511 -573
- package/dist/pimp.umd.js +39 -39
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/CpMenu.vue +14 -7
- package/src/components/icons/IconAerosol.vue +4 -7
- package/src/components/icons/IconBaggageBattery.vue +3 -5
- package/src/components/icons/IconBomb.vue +6 -11
- package/src/components/icons/IconBottle.vue +2 -3
- package/src/components/icons/IconCampingStove.vue +2 -3
- package/src/components/icons/IconCarBattery.vue +3 -5
- package/src/components/icons/IconCorrosive.vue +4 -7
- package/src/components/icons/IconDeviceForbidden.vue +4 -7
- package/src/components/icons/IconECigarette.vue +3 -5
- package/src/components/icons/IconFish.vue +3 -5
- package/src/components/icons/IconGun.vue +2 -3
- package/src/components/icons/IconHammer.vue +2 -3
- package/src/components/icons/IconKnife.vue +3 -5
- package/src/components/icons/IconLighter.vue +2 -3
- package/src/components/icons/IconMatches.vue +4 -7
- package/src/components/icons/IconPills.vue +2 -3
- package/src/components/icons/IconScooter.vue +3 -5
- package/src/components/icons/IconSkull.vue +4 -7
- package/src/components/icons/IconSyringe.vue +2 -3
- package/src/components/icons/IconToothbrush.vue +2 -3
- package/src/stories/CpMenu.stories.ts +36 -0
package/package.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
<primevue-drawer
|
|
15
15
|
v-if="isDrawer"
|
|
16
16
|
v-model:visible="isOpen"
|
|
17
|
+
:auto-z-index="false"
|
|
17
18
|
block-scroll
|
|
18
19
|
close-on-escape
|
|
19
20
|
dismissable
|
|
@@ -30,11 +31,11 @@
|
|
|
30
31
|
aria-label="Close drawer"
|
|
31
32
|
color="neutral"
|
|
32
33
|
is-square
|
|
33
|
-
size="
|
|
34
|
+
size="md"
|
|
34
35
|
@click="hide"
|
|
35
36
|
>
|
|
36
37
|
<template #leading-icon>
|
|
37
|
-
<cp-icon
|
|
38
|
+
<cp-icon type="x" />
|
|
38
39
|
</template>
|
|
39
40
|
</cp-button>
|
|
40
41
|
</div>
|
|
@@ -73,12 +74,14 @@ import { getKeyboardFocusableElements } from '@/helpers/dom'
|
|
|
73
74
|
export interface Props {
|
|
74
75
|
class?: string
|
|
75
76
|
forcePopover?: boolean
|
|
77
|
+
fullHeightDrawer?: boolean
|
|
76
78
|
items?: MenuItem[]
|
|
77
79
|
keepOpenOnClick?: boolean
|
|
78
80
|
}
|
|
79
81
|
|
|
80
82
|
const props = withDefaults(defineProps<Props>(), {
|
|
81
83
|
class: undefined,
|
|
84
|
+
fullHeightDrawer: false,
|
|
82
85
|
items: undefined,
|
|
83
86
|
keepOpenOnClick: false,
|
|
84
87
|
})
|
|
@@ -110,7 +113,7 @@ const popoverPt = {
|
|
|
110
113
|
}
|
|
111
114
|
|
|
112
115
|
const drawerPt = {
|
|
113
|
-
root: { class: 'cpMenu__drawer' },
|
|
116
|
+
root: { class: ['cpMenu__drawer', { 'cpMenu__drawer--fullHeight': props.fullHeightDrawer }] },
|
|
114
117
|
content: { class: 'cpMenu__drawerContent' },
|
|
115
118
|
mask: { class: 'cpMenu__drawerMask' },
|
|
116
119
|
header: { class: 'cpMenu__drawerHeader' },
|
|
@@ -164,7 +167,6 @@ defineExpose({ show, hide, toggle })
|
|
|
164
167
|
|
|
165
168
|
&__overlay {
|
|
166
169
|
position: absolute;
|
|
167
|
-
z-index: 22;
|
|
168
170
|
margin-top: var(--cp-spacing-lg);
|
|
169
171
|
min-width: calc(var(--cp-dimensions-1) * 62.5);
|
|
170
172
|
border-radius: var(--cp-radius-md);
|
|
@@ -181,7 +183,7 @@ defineExpose({ show, hide, toggle })
|
|
|
181
183
|
&__drawerMask {
|
|
182
184
|
position: fixed;
|
|
183
185
|
inset: 0;
|
|
184
|
-
z-index:
|
|
186
|
+
z-index: 2;
|
|
185
187
|
display: flex;
|
|
186
188
|
align-items: flex-end;
|
|
187
189
|
justify-content: center;
|
|
@@ -190,7 +192,6 @@ defineExpose({ show, hide, toggle })
|
|
|
190
192
|
|
|
191
193
|
&__drawer {
|
|
192
194
|
position: relative;
|
|
193
|
-
z-index: 22;
|
|
194
195
|
width: 100%;
|
|
195
196
|
max-height: 85vh;
|
|
196
197
|
display: flex;
|
|
@@ -201,6 +202,12 @@ defineExpose({ show, hide, toggle })
|
|
|
201
202
|
padding-bottom: env(safe-area-inset-bottom);
|
|
202
203
|
}
|
|
203
204
|
|
|
205
|
+
&__drawer--fullHeight {
|
|
206
|
+
height: 100%;
|
|
207
|
+
max-height: 100%;
|
|
208
|
+
border-radius: 0;
|
|
209
|
+
}
|
|
210
|
+
|
|
204
211
|
&__drawerHeader {
|
|
205
212
|
display: none;
|
|
206
213
|
}
|
|
@@ -214,7 +221,7 @@ defineExpose({ show, hide, toggle })
|
|
|
214
221
|
&__drawerToolbar {
|
|
215
222
|
display: flex;
|
|
216
223
|
justify-content: flex-end;
|
|
217
|
-
padding: var(--cp-spacing-
|
|
224
|
+
padding: var(--cp-spacing-md) var(--cp-spacing-xl);
|
|
218
225
|
}
|
|
219
226
|
}
|
|
220
227
|
|
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
4
|
clip-rule="evenodd"
|
|
5
|
-
d="
|
|
6
|
-
fill="currentColor"
|
|
5
|
+
d="M13.5938 2.04622C14.1459 2.04632 14.5936 2.49411 14.5938 3.04622V6.38411C16.1049 7.25951 17.122 8.8939 17.1221 10.7659V20.9808C17.1219 21.5328 16.6741 21.9806 16.1221 21.9808H8C7.44783 21.9808 7.00019 21.5329 7 20.9808V10.7659C7.00007 8.89379 8.017 7.25947 9.52832 6.38411V3.04622C9.52845 2.49405 9.97612 2.04622 10.5283 2.04622H13.5938ZM9 19.9808H15.1221V13.3324H9V19.9808ZM12.0605 7.7054C10.3703 7.70557 9.0001 9.07567 9 10.7659V11.3324H15.1221V10.7659C15.122 9.07557 13.7509 7.7054 12.0605 7.7054ZM11.5283 5.7054H12.5938V4.04622H11.5283V5.7054Z"
|
|
7
6
|
fill-rule="evenodd"
|
|
8
7
|
/>
|
|
9
8
|
<path
|
|
10
|
-
d="
|
|
11
|
-
fill="currentColor"
|
|
9
|
+
d="M17.2002 6.06185C17.5907 5.67139 18.2237 5.67153 18.6143 6.06185L19.1934 6.64095C19.5835 7.03151 19.5838 7.66462 19.1934 8.05501C18.803 8.4453 18.1698 8.44512 17.7793 8.05501L17.2002 7.47591C16.8099 7.0854 16.8098 6.45231 17.2002 6.06185Z"
|
|
12
10
|
/>
|
|
13
11
|
<path
|
|
14
|
-
d="
|
|
15
|
-
fill="currentColor"
|
|
12
|
+
d="M17.7793 2.31282C18.1698 1.92236 18.8028 1.92248 19.1934 2.31282C19.5838 2.70335 19.5839 3.33638 19.1934 3.72689L18.6152 4.30599C18.2248 4.69611 17.5916 4.69605 17.2012 4.30599C16.8107 3.91549 16.8107 3.28148 17.2012 2.89095L17.7793 2.31282Z"
|
|
16
13
|
/>
|
|
17
14
|
</svg>
|
|
18
15
|
</template>
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
|
-
d="
|
|
5
|
-
fill="currentColor"
|
|
4
|
+
d="M11.5264 9.79004C11.8068 9.31456 12.4199 9.15659 12.8955 9.43652C13.3712 9.71706 13.5296 10.3299 13.249 10.8057L12.2568 12.4883H13.4922C13.851 12.4883 14.1823 12.6806 14.3604 12.9922C14.5383 13.3039 14.5359 13.687 14.3535 13.9961L12.4697 17.1865C12.189 17.662 11.5761 17.8197 11.1006 17.5391C10.6254 17.2582 10.4666 16.6453 10.7471 16.1699L11.7402 14.4883H10.5068C10.1481 14.4881 9.81662 14.2949 9.63867 13.9834C9.46101 13.6719 9.46335 13.2884 9.64551 12.9795L11.5264 9.79004Z"
|
|
6
5
|
/>
|
|
7
6
|
<path
|
|
8
7
|
clip-rule="evenodd"
|
|
9
|
-
d="
|
|
10
|
-
fill="currentColor"
|
|
8
|
+
d="M13.1074 1.91797C14.6535 1.91821 15.9071 3.17162 15.9072 4.71777V5.89941H16.7871C18.6094 5.89962 20.0868 7.37689 20.0869 9.19922V17.7783C20.0864 19.5271 18.7254 20.957 17.0049 21.0693V21.082C17.0048 21.6341 16.5569 22.0818 16.0049 22.082C15.4527 22.082 15.005 21.6342 15.0049 21.082V21.0781H9.00488V21.082C9.00475 21.6341 8.55695 22.0819 8.00488 22.082C7.45268 22.082 7.00501 21.6342 7.00488 21.082V21.0703C5.27972 20.9628 3.91357 19.5305 3.91309 17.7783V9.19922C3.91319 7.37686 5.39055 5.89957 7.21289 5.89941H8.10449V4.71777C8.1046 3.17157 9.35811 1.91814 10.9043 1.91797H13.1074ZM7.21289 7.89941C6.49512 7.89957 5.91319 8.48143 5.91309 9.19922V17.7783C5.91359 18.4958 6.49536 19.078 7.21289 19.0781H16.7871C17.5046 19.0779 18.0864 18.4957 18.0869 17.7783V9.19922C18.0868 8.48146 17.5048 7.89962 16.7871 7.89941H7.21289ZM10.9043 3.91797C10.4627 3.91814 10.1046 4.27614 10.1045 4.71777V5.89941H13.9072V4.71777C13.9071 4.27619 13.549 3.91821 13.1074 3.91797H10.9043Z"
|
|
11
9
|
fill-rule="evenodd"
|
|
12
10
|
/>
|
|
13
11
|
</svg>
|
|
@@ -1,26 +1,21 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
|
-
d="
|
|
5
|
-
fill="currentColor"
|
|
4
|
+
d="M5.51323 12.8436C5.78943 12.3654 6.40121 12.2012 6.87944 12.4773C7.35755 12.7536 7.52077 13.3653 7.24468 13.8436C6.90707 14.4284 7.10821 15.1757 7.69292 15.5135C8.17101 15.7896 8.33405 16.4015 8.05815 16.8797C7.78206 17.3578 7.17115 17.5218 6.69292 17.2459C5.1516 16.3558 4.62329 14.385 5.51323 12.8436Z"
|
|
6
5
|
/>
|
|
7
6
|
<path
|
|
8
7
|
clip-rule="evenodd"
|
|
9
|
-
d="
|
|
10
|
-
fill="currentColor"
|
|
8
|
+
d="M15.5884 3.96172C16.6852 3.79797 17.6731 4.23414 18.358 4.86406C18.7643 5.23798 18.7913 5.87073 18.4175 6.27715C18.0435 6.68325 17.4107 6.70961 17.0044 6.33574C16.6662 6.0246 16.2615 5.88375 15.8833 5.94023C15.6544 5.97459 15.3491 6.09525 15.0103 6.4207C15.7788 6.88065 16.0388 7.87271 15.5894 8.65117L15.0728 9.5457C16.9313 11.8267 17.2943 15.1069 15.7359 17.8064C13.7204 21.2973 9.25611 22.4938 5.76518 20.4783C2.27455 18.4627 1.0789 13.9984 3.09428 10.5076C4.65257 7.80901 7.67376 6.48396 10.5777 6.95195L11.0953 6.05644C11.5292 5.30501 12.4664 5.02776 13.2349 5.40117C13.9176 4.57782 14.7195 4.0916 15.5884 3.96172ZM12.064 9.56816C9.52978 8.10538 6.2889 8.97355 4.82573 11.5076C3.36258 14.0419 4.23093 17.2836 6.76518 18.7469C9.29952 20.21 12.5402 19.3407 14.0035 16.8064C15.4666 14.2721 14.5983 11.0314 12.064 9.56816ZM12.5347 7.56133C12.713 7.64588 12.8901 7.73635 13.064 7.83672C13.2373 7.93676 13.4041 8.04437 13.566 8.15605L13.6792 7.95976L12.649 7.36504L12.5347 7.56133Z"
|
|
11
9
|
fill-rule="evenodd"
|
|
12
10
|
/>
|
|
13
11
|
<path
|
|
14
|
-
d="
|
|
15
|
-
fill="currentColor"
|
|
12
|
+
d="M17.8716 7.93926C18.4231 7.96699 18.8485 8.43654 18.8208 8.98809L18.7759 9.87187C18.7481 10.4233 18.2786 10.8477 17.7271 10.8201C17.1756 10.7924 16.7512 10.3228 16.7789 9.77129L16.8228 8.8875C16.8507 8.33617 17.3202 7.91168 17.8716 7.93926Z"
|
|
16
13
|
/>
|
|
17
14
|
<path
|
|
18
|
-
d="
|
|
19
|
-
fill="currentColor"
|
|
15
|
+
d="M19.8921 7.08769C20.2585 6.67467 20.8901 6.63658 21.3033 7.00273L21.6636 7.32207C22.0767 7.68849 22.1149 8.321 21.7486 8.73418C21.3821 9.14729 20.7496 9.18456 20.3365 8.81816L19.9761 8.49883C19.563 8.13239 19.5257 7.5009 19.8921 7.08769Z"
|
|
20
16
|
/>
|
|
21
17
|
<path
|
|
22
|
-
d="
|
|
23
|
-
fill="currentColor"
|
|
18
|
+
d="M20.274 2.76543C20.6615 2.37218 21.2946 2.36729 21.688 2.75469C22.0809 3.14203 22.0855 3.77435 21.6988 4.16777L21.1353 4.74004C20.7478 5.13329 20.1147 5.13819 19.7212 4.75078C19.328 4.36336 19.3234 3.7302 19.7105 3.33672L20.274 2.76543Z"
|
|
24
19
|
/>
|
|
25
20
|
</svg>
|
|
26
21
|
</template>
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
4
|
clip-rule="evenodd"
|
|
5
|
-
d="
|
|
6
|
-
fill="currentColor"
|
|
5
|
+
d="M14.1602 2.14062C14.7124 2.14067 15.1602 2.58934 15.1602 3.1416V9.00195C15.9641 9.64215 16.7554 10.648 17.3711 11.7451C18.12 13.0797 18.7069 14.7199 18.707 16.3027V20.8594C18.7068 21.4114 18.2591 21.8593 17.707 21.8594C17.155 21.8593 16.7073 21.4114 16.707 20.8594V16.3027C16.7069 15.1759 16.2741 13.8767 15.627 12.7236C14.9703 11.5536 14.189 10.7024 13.6455 10.376C13.3447 10.1953 13.1603 9.86948 13.1602 9.51855V7.29297H10.8398V9.51855C10.8397 9.86952 10.6554 10.1953 10.3545 10.376C9.81096 10.7023 9.02978 11.5535 8.37305 12.7236C7.72591 13.8768 7.29309 15.1759 7.29297 16.3027V20.8594C7.2927 21.4114 6.84506 21.8593 6.29297 21.8594C5.74085 21.8594 5.29323 21.4114 5.29297 20.8594V16.3027C5.29309 14.7199 5.87996 13.0797 6.62891 11.7451C7.24465 10.648 8.03593 9.64215 8.83984 9.00195V3.1416C8.83984 2.58936 9.28761 2.14069 9.83984 2.14062H14.1602ZM10.8398 5.29297H13.1602V4.1416H10.8398V5.29297Z"
|
|
7
6
|
fill-rule="evenodd"
|
|
8
7
|
/>
|
|
9
8
|
</svg>
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
4
|
clip-rule="evenodd"
|
|
5
|
-
d="
|
|
6
|
-
fill="currentColor"
|
|
5
|
+
d="M7.7373 2.75879C8.28928 2.75915 8.7373 3.20673 8.7373 3.75879C8.73717 4.31074 8.2892 4.75843 7.7373 4.75879H7.11328L9.2959 8.20605H11V6.92969H10.0791C9.52705 6.92951 9.07923 6.48175 9.0791 5.92969C9.07923 5.37763 9.52705 4.92987 10.0791 4.92969H13.9209C14.473 4.92979 14.9208 5.37758 14.9209 5.92969C14.9208 6.4818 14.473 6.92959 13.9209 6.92969H13V8.20605H14.5928L16.7744 4.75879H16.1514C15.5992 4.75879 15.1515 4.31096 15.1514 3.75879C15.1514 3.2065 15.5991 2.75879 16.1514 2.75879H18.5918C18.9561 2.75898 19.292 2.95717 19.4678 3.27637C19.6434 3.59566 19.6314 3.98601 19.4365 4.29395L16.7227 8.5791C17.1221 8.75848 17.4956 8.99885 17.8262 9.29688L18.6943 10.0801C19.4457 10.7576 19.875 11.7226 19.875 12.7344V18.4277C19.8747 20.4006 18.2756 21.9998 16.3027 22H7.69824C5.72517 22 4.12528 20.4007 4.125 18.4277V12.7256C4.125 11.7212 4.54803 10.7629 5.29004 10.0859L6.13574 9.31348C6.45081 9.02609 6.80519 8.79134 7.18457 8.6123L4.45215 4.29395C4.2572 3.98595 4.24515 3.5957 4.4209 3.27637C4.59674 2.95714 4.93241 2.75879 5.29688 2.75879H7.7373ZM8.99512 10.2061C8.43604 10.2061 7.89645 10.4142 7.4834 10.791L6.6377 11.5635C6.31117 11.8615 6.125 12.2835 6.125 12.7256V18.4277C6.12528 19.2962 6.82973 20 7.69824 20H16.3027C17.1711 19.9998 17.8747 19.296 17.875 18.4277V12.7344C17.875 12.2891 17.6861 11.8646 17.3555 11.5664L16.4863 10.7822C16.0745 10.4112 15.5397 10.2061 14.9854 10.2061H8.99512Z"
|
|
7
6
|
fill-rule="evenodd"
|
|
8
7
|
/>
|
|
9
8
|
</svg>
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
|
-
d="
|
|
5
|
-
fill="currentColor"
|
|
4
|
+
d="M11.5166 9.39258C11.7816 8.95729 12.3498 8.81923 12.7852 9.08398C13.2204 9.34909 13.3587 9.91718 13.0938 10.3525L12.0859 12.0078H13.4961C13.8145 12.0079 14.1108 12.1722 14.2793 12.4424C14.4476 12.7126 14.4653 13.051 14.3252 13.3369L12.5244 17.0137C12.3002 17.4713 11.7468 17.6605 11.2891 17.4365C10.8314 17.2123 10.6423 16.6599 10.8662 16.2021L12.0166 13.8535H10.4443C10.1109 13.8535 9.80313 13.6734 9.63965 13.3828C9.47631 13.0921 9.48291 12.7361 9.65625 12.4512L11.5166 9.39258Z"
|
|
6
5
|
/>
|
|
7
6
|
<path
|
|
8
7
|
clip-rule="evenodd"
|
|
9
|
-
d="
|
|
10
|
-
fill="currentColor"
|
|
8
|
+
d="M14.0537 2.74902C14.8432 2.74912 15.5648 3.19673 15.915 3.9043L16.5703 5.22852H17.2061V4.86035C17.2061 4.35057 17.6191 3.9375 18.1289 3.9375C18.6385 3.93775 19.0518 4.35072 19.0518 4.86035V5.22852H19.7637C20.9106 5.22865 21.8408 6.15875 21.8408 7.30566V19.1748C21.8407 20.3216 20.9105 21.2518 19.7637 21.252H4.23633C3.08962 21.2517 2.16029 20.3215 2.16016 19.1748V7.30566C2.16016 6.15882 3.08954 5.22877 4.23633 5.22852H4.94922V4.86035C4.94922 4.35057 5.36229 3.9375 5.87207 3.9375C6.3816 3.93779 6.79492 4.35075 6.79492 4.86035V5.22852H7.43066L8.08496 3.9043C8.43518 3.19665 9.15673 2.74916 9.94629 2.74902H14.0537ZM4.23633 7.0752C4.1091 7.07545 4.00586 7.17838 4.00586 7.30566V19.1748C4.00599 19.302 4.10918 19.405 4.23633 19.4053H19.7637C19.8909 19.4051 19.994 19.3021 19.9941 19.1748V7.30566C19.9941 7.1783 19.891 7.07533 19.7637 7.0752H4.23633ZM9.94629 4.59473C9.85867 4.59486 9.7791 4.64509 9.74023 4.72363L9.49023 5.22852H14.5107L14.2607 4.72363C14.2219 4.64505 14.1414 4.59482 14.0537 4.59473H9.94629Z"
|
|
11
9
|
fill-rule="evenodd"
|
|
12
10
|
/>
|
|
13
11
|
</svg>
|
|
@@ -1,19 +1,16 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
|
-
d="
|
|
5
|
-
fill="currentColor"
|
|
4
|
+
d="M20 18.0002C21.1046 18.0002 22 18.8956 22 20.0002C21.9999 21.1047 21.1045 22.0002 20 22.0002H4C2.89548 22.0002 2.00008 21.1047 2 20.0002C2 18.9044 2.88122 18.0143 3.97363 18.0002C4.38573 19.7145 6.09972 21.0002 8.15137 21.0002C10.203 21.0002 11.917 19.7145 12.3291 18.0002H20Z"
|
|
6
5
|
/>
|
|
7
6
|
<path
|
|
8
7
|
clip-rule="evenodd"
|
|
9
|
-
d="
|
|
10
|
-
fill="currentColor"
|
|
8
|
+
d="M7.52051 12.9602C7.87384 12.6864 8.36855 12.6812 8.72754 12.9475L8.80273 13.009L8.80566 13.0119L8.8125 13.0178L8.83203 13.0363C8.84894 13.052 8.87294 13.074 8.90234 13.1018C8.96137 13.1576 9.04423 13.2375 9.14258 13.3362C9.33809 13.5322 9.60189 13.809 9.86816 14.1291C10.1314 14.4456 10.415 14.8257 10.6377 15.2268C10.8496 15.6083 11.0654 16.1136 11.0654 16.6545C11.0653 18.0637 10.0812 19.7392 8.13281 19.7395C6.27221 19.7395 5.2373 18.1244 5.2373 16.6926C5.23734 16.1579 5.44578 15.6543 5.65234 15.2707C5.86948 14.8675 6.14666 14.4835 6.4043 14.1623C6.66467 13.8377 6.92286 13.5563 7.11426 13.3567C7.21052 13.2562 7.29185 13.1743 7.34961 13.1174C7.37831 13.0891 7.40147 13.0669 7.41797 13.051L7.4375 13.0324L7.44336 13.0266L7.44727 13.0237L7.52051 12.9602ZM7.96484 15.4143C7.74868 15.6838 7.55131 15.9623 7.41309 16.219C7.26442 16.495 7.23736 16.6487 7.2373 16.6926C7.2373 17.3222 7.65659 17.7395 8.13281 17.7395C8.4393 17.7394 8.64772 17.6198 8.79688 17.4416C8.96162 17.2449 9.06535 16.9562 9.06543 16.6545C9.06543 16.617 9.04005 16.4694 8.88965 16.1985C8.74991 15.9468 8.5501 15.6729 8.33008 15.4084C8.26864 15.3346 8.20711 15.2629 8.14648 15.1945C8.08652 15.2647 8.02564 15.3385 7.96484 15.4143Z"
|
|
11
9
|
fill-rule="evenodd"
|
|
12
10
|
/>
|
|
13
11
|
<path
|
|
14
12
|
clip-rule="evenodd"
|
|
15
|
-
d="
|
|
16
|
-
fill="currentColor"
|
|
13
|
+
d="M18.2148 2.04221C20.0388 1.75307 21.7517 2.99766 22.041 4.8215C22.3302 6.64539 21.0865 8.35831 19.2627 8.64768L9.09375 10.259L9.13867 10.5393C9.22506 11.0847 8.85305 11.5973 8.30762 11.6838C7.7622 11.7702 7.24955 11.3972 7.16309 10.8518L6.0127 3.59103C5.92633 3.04562 6.29833 2.53394 6.84375 2.44748C7.38916 2.36112 7.90084 2.73312 7.9873 3.27853L8.04688 3.65353L18.2148 2.04221ZM20.0664 5.13498C19.9502 4.4019 19.2614 3.9016 18.5283 4.01779L8.35938 5.62912L8.57715 7.00021H16.8848L18.9492 6.67307C19.6823 6.55685 20.1826 5.86804 20.0664 5.13498Z"
|
|
17
14
|
fill-rule="evenodd"
|
|
18
15
|
/>
|
|
19
16
|
</svg>
|
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
4
|
clip-rule="evenodd"
|
|
5
|
-
d="
|
|
6
|
-
fill="currentColor"
|
|
5
|
+
d="M15.2441 13.5381C17.5532 13.5384 19.4256 15.4106 19.4258 17.7197C19.4257 20.0289 17.5532 21.9011 15.2441 21.9014C12.9348 21.9014 11.0625 20.0291 11.0625 17.7197C11.0626 16.642 11.4699 15.6594 12.1396 14.918C12.1673 14.8812 12.197 14.845 12.2305 14.8115C12.2569 14.7851 12.284 14.7601 12.3125 14.7373C13.0671 13.9957 14.1025 13.5381 15.2441 13.5381ZM13.1475 17.1191C13.0928 17.3101 13.0625 17.5113 13.0625 17.7197C13.0625 18.9245 14.0393 19.9014 15.2441 19.9014C15.4523 19.9013 15.653 19.87 15.8438 19.8154L13.1475 17.1191ZM15.2441 15.5381C14.9776 15.5381 14.7225 15.5883 14.4863 15.6758L17.2871 18.4766C17.3745 18.2405 17.4258 17.9861 17.4258 17.7197C17.4256 16.5152 16.4486 15.5384 15.2441 15.5381Z"
|
|
7
6
|
fill-rule="evenodd"
|
|
8
7
|
/>
|
|
9
8
|
<path
|
|
10
|
-
d="
|
|
11
|
-
fill="currentColor"
|
|
9
|
+
d="M15.8701 2.11523C17.8246 2.11557 19.4092 3.69977 19.4092 5.6543V11.0273C19.4091 11.5703 18.9687 12.0104 18.4258 12.0107C17.8825 12.0107 17.4415 11.5706 17.4414 11.0273V5.6543C17.4414 4.78639 16.7379 4.08237 15.8701 4.08203H8.13086C7.26275 4.08203 6.55859 4.78618 6.55859 5.6543V18.3457C6.55859 19.2138 7.26275 19.918 8.13086 19.918H8.80957C9.35266 19.9181 9.79381 20.3583 9.79395 20.9014C9.79395 21.4446 9.35274 21.8856 8.80957 21.8857H8.13086C6.17613 21.8857 4.5918 20.3004 4.5918 18.3457V5.6543C4.5918 3.69956 6.17613 2.11523 8.13086 2.11523H15.8701Z"
|
|
12
10
|
/>
|
|
13
11
|
<path
|
|
14
|
-
d="
|
|
15
|
-
fill="currentColor"
|
|
12
|
+
d="M12.2812 5.5625C12.8241 5.56282 13.2644 6.00301 13.2646 6.5459C13.2646 7.08901 12.8243 7.52897 12.2812 7.5293H11.5586C11.0154 7.5293 10.5755 7.08996 10.5752 6.54688C10.5752 6.00356 11.0153 5.5625 11.5586 5.5625H12.2812Z"
|
|
16
13
|
/>
|
|
17
14
|
</svg>
|
|
18
15
|
</template>
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
|
-
d="
|
|
5
|
-
fill="currentColor"
|
|
4
|
+
d="M12 11.2646C12.625 11.2646 13.1318 11.7715 13.1318 12.3965C13.1318 13.0215 12.625 13.5283 12 13.5283C11.375 13.5283 10.8682 13.0215 10.8682 12.3965C10.8682 11.7716 11.3751 11.2647 12 11.2646Z"
|
|
6
5
|
/>
|
|
7
6
|
<path
|
|
8
7
|
clip-rule="evenodd"
|
|
9
|
-
d="
|
|
10
|
-
fill="currentColor"
|
|
8
|
+
d="M12.957 2.00293C13.6041 2.00309 14.1289 2.52772 14.1289 3.1748V4.8877C14.7525 4.91432 15.25 5.42743 15.25 6.05762V7.84863H15.7324C16.4682 7.84905 17.0653 8.44577 17.0654 9.18164V19.6562C17.0652 20.949 16.0164 21.9969 14.7236 21.9971H9.27637C7.98367 21.9968 6.93574 20.949 6.93555 19.6562V9.18164C6.93567 8.44555 7.53245 7.84869 8.26855 7.84863H8.75V6.05762C8.75 5.42756 9.24765 4.91452 9.87109 4.8877V3.1748C9.87114 2.52773 10.3959 2.00311 11.043 2.00293H12.957ZM8.92969 19.6562C8.92988 19.8477 9.08495 20.0027 9.27637 20.0029H14.7236C14.9151 20.0028 15.0711 19.8477 15.0713 19.6562V9.84277H8.92969V19.6562ZM10.7441 7.84863H13.2559V6.87891H10.7441V7.84863ZM11.8652 4.88574H12.1348V3.99707H11.8652V4.88574Z"
|
|
11
9
|
fill-rule="evenodd"
|
|
12
10
|
/>
|
|
13
11
|
</svg>
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
|
-
d="
|
|
5
|
-
fill="currentColor"
|
|
4
|
+
d="M15.5098 10.8633C16.1273 10.8634 16.6279 11.3639 16.6279 11.9814C16.6279 12.5989 16.1272 13.0995 15.5098 13.0996C14.8922 13.0996 14.3917 12.599 14.3916 11.9814C14.3916 11.3638 14.8922 10.8633 15.5098 10.8633Z"
|
|
6
5
|
/>
|
|
7
6
|
<path
|
|
8
7
|
clip-rule="evenodd"
|
|
9
|
-
d="
|
|
10
|
-
fill="currentColor"
|
|
8
|
+
d="M12.4395 6.0791C14.6929 6.07924 16.8768 6.66764 18.5273 7.6582C20.1488 8.63138 21.4481 10.1269 21.4482 11.9854C21.4482 13.8437 20.1487 15.3397 18.5273 16.3135C16.8768 17.3046 14.6931 17.8944 12.4395 17.8945C10.0743 17.8945 7.78724 17.022 6.3125 15.5752L4.25977 17.6279L4.14648 17.7256C3.86757 17.9314 3.49683 17.9799 3.16992 17.8447C2.79625 17.6899 2.55273 17.3244 2.55273 16.9199V7.0791C2.55283 6.67471 2.7963 6.31001 3.16992 6.15527C3.54354 6.00075 3.9739 6.08612 4.25977 6.37207L6.31152 8.4248C7.8029 6.96407 10.1171 6.0791 12.4395 6.0791ZM12.4395 8.0791C10.1787 8.0791 8.10923 9.12534 7.19531 10.4619C7.02744 10.7075 6.75905 10.8659 6.46289 10.8936C6.1666 10.9211 5.87347 10.8149 5.66309 10.6045L4.55273 9.49414V14.5059L5.66504 13.3936C5.8757 13.1833 6.16947 13.0775 6.46582 13.1055C6.7624 13.1336 7.03177 13.2926 7.19922 13.5391L7.37988 13.7822C8.348 14.9821 10.2593 15.8945 12.4395 15.8945C14.3697 15.8944 16.1905 15.3839 17.498 14.5986C18.8346 13.7958 19.4482 12.8371 19.4482 11.9854C19.4481 11.1338 18.8346 10.1753 17.498 9.37305C16.1906 8.5884 14.3698 8.07925 12.4395 8.0791Z"
|
|
11
9
|
fill-rule="evenodd"
|
|
12
10
|
/>
|
|
13
11
|
</svg>
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
4
|
clip-rule="evenodd"
|
|
5
|
-
d="
|
|
6
|
-
fill="currentColor"
|
|
5
|
+
d="M20.8252 3.24121C21.4186 3.24129 21.9004 3.72204 21.9004 4.31543V7.11621C21.9003 7.39969 21.7876 7.67184 21.5879 7.87305L19.2656 10.2119L21.0498 15.8281C21.825 18.269 20.0034 20.7595 17.4424 20.7598H15.7256C15.2409 20.7598 14.8158 20.4345 14.6885 19.9668L13.2168 14.5566H11.3037C10.6072 14.5566 9.95104 14.4835 9.36328 14.2148C8.82091 13.9668 8.41945 13.5911 8.09766 13.1318L7.96387 12.9297L7.8916 12.793L7.10449 10.9922H4.59277C4.30805 10.9921 4.03439 10.878 3.83301 10.6768L2.41504 9.25879C2.21359 9.05734 2.10066 8.78391 2.10059 8.49902V5.68457C2.10059 5.39302 2.21895 5.11362 2.42871 4.91113L3.84668 3.54199L3.9248 3.47363C4.11391 3.32346 4.34929 3.24132 4.59277 3.24121H20.8252ZM4.24902 6.13965V8.05273L5.03906 8.84277H13.0684C13.553 8.84295 13.9773 9.16807 14.1045 9.63574L16.5469 18.6104H17.4424C18.5494 18.6101 19.337 17.5336 19.002 16.4785L17.0205 10.2432C16.8994 9.86185 17.0004 9.44411 17.2822 9.16016L19.751 6.67285V5.38965H5.02734L4.24902 6.13965ZM9.81934 11.8379C9.98548 12.0929 10.1193 12.1968 10.2568 12.2598C10.4345 12.341 10.731 12.4082 11.3037 12.4082H12.6318L12.2471 10.9922H9.4502L9.81934 11.8379Z"
|
|
7
6
|
fill-rule="evenodd"
|
|
8
7
|
/>
|
|
9
8
|
</svg>
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
4
|
clip-rule="evenodd"
|
|
5
|
-
d="
|
|
6
|
-
fill="currentColor"
|
|
5
|
+
d="M5.86035 2.03418C7.2225 2.0344 8.32768 3.13286 8.33984 4.49219H15.4482C18.9982 4.49239 21.8768 7.36998 21.877 10.9199V11.0547C21.877 11.3777 21.7199 11.6814 21.457 11.8691C21.1941 12.0565 20.8561 12.105 20.5508 12C18.4167 11.2654 17.221 10.989 15.8311 10.9102V20.9658C15.8308 21.5177 15.3829 21.9655 14.8311 21.9658C14.2789 21.9658 13.8313 21.5179 13.8311 20.9658V14.5107H11.3701V20.9658C11.3699 21.5176 10.9219 21.9654 10.3701 21.9658C9.818 21.9658 9.37038 21.5179 9.37012 20.9658V10.8799H8.33301C8.26214 12.1861 7.18425 13.2234 5.86035 13.2236H4.60449C3.23459 13.2236 2.12402 12.1131 2.12402 10.7432V4.51465C2.12416 3.14486 3.23467 2.03418 4.60449 2.03418H5.86035ZM4.60449 4.03418C4.33924 4.03418 4.12416 4.24943 4.12402 4.51465V10.7432C4.12402 11.0085 4.33916 11.2236 4.60449 11.2236H5.86035C6.12549 11.2234 6.34082 11.0084 6.34082 10.7432V9.87988C6.34099 9.61485 6.44634 9.36025 6.63379 9.17285C6.8213 8.98563 7.07584 8.87986 7.34082 8.87988L10.3701 8.88086C10.9219 8.88127 11.3699 9.32906 11.3701 9.88086V12.5107H13.8311V9.88184C13.8311 9.6167 13.9365 9.36227 14.124 9.1748C14.3116 8.98751 14.566 8.88178 14.8311 8.88184C16.5692 8.88222 17.8315 9.06022 19.6816 9.61719C19.1253 7.80759 17.4402 6.49235 15.4482 6.49219H7.34082C6.78868 6.49219 6.34105 6.04428 6.34082 5.49219V4.51465C6.34069 4.24957 6.12541 4.0344 5.86035 4.03418H4.60449Z"
|
|
7
6
|
fill-rule="evenodd"
|
|
8
7
|
/>
|
|
9
8
|
</svg>
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="
|
|
2
|
+
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
|
-
d="
|
|
5
|
-
fill="currentColor"
|
|
4
|
+
d="M6.75879 17.3242C7.26531 17.3242 7.67564 17.7347 7.67578 18.2412C7.67578 18.7478 7.2654 19.1591 6.75879 19.1591C6.25221 19.1591 5.8418 18.7478 5.8418 18.2412C5.84194 17.7347 6.25229 17.3242 6.75879 17.3242Z"
|
|
6
5
|
/>
|
|
7
6
|
<path
|
|
8
7
|
clip-rule="evenodd"
|
|
9
|
-
d="
|
|
10
|
-
fill="currentColor"
|
|
8
|
+
d="M9.00391 2.02534C9.32479 1.95163 9.66173 2.04101 9.9043 2.26363C10.9538 3.22733 12.7393 6.00688 12.7393 10.1679C12.7392 11.5436 12.538 13.0249 12.2344 14.4834H18.1748C20.2502 14.4836 21.9324 16.1657 21.9326 18.2412C21.9326 20.3167 20.2503 21.9997 18.1748 22H5.8252C3.74964 21.9998 2.06645 20.3168 2.06641 18.2412C2.06651 17.1408 2.53925 16.1501 3.29297 15.4628C3.29566 15.3465 3.31835 15.2294 3.3623 15.1181L8.29785 2.63277C8.41883 2.32668 8.6832 2.09922 9.00391 2.02534ZM10.9814 16.4863H5.76562C4.82221 16.5178 4.0666 17.2901 4.06641 18.2412C4.06645 19.2122 4.85421 19.9998 5.8252 20H18.1748C19.1458 19.9997 19.9326 19.2122 19.9326 18.2412C19.9324 17.2703 19.1457 16.4836 18.1748 16.4834H11.0156C11.0044 16.4838 10.9928 16.4863 10.9814 16.4863ZM5.7627 14.4843C5.78326 14.484 5.80454 14.4834 5.8252 14.4834H10.1895C10.5249 12.9765 10.7392 11.4895 10.7393 10.1679C10.7393 7.88283 10.1147 6.14797 9.49805 5.03511L5.7627 14.4843Z"
|
|
11
9
|
fill-rule="evenodd"
|
|
12
10
|
/>
|
|
13
11
|
</svg>
|