@citizenplane/pimp 9.5.10 → 9.5.12
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/pimp.es.js +1003 -970
- package/dist/pimp.umd.js +18 -18
- package/package.json +1 -1
- package/src/components/icons/IconPlane2.vue +16 -0
- package/src/components/icons/IconWindowExpand.vue +17 -0
- package/src/constants/CpCustomIcons.ts +4 -0
package/package.json
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
fill="none"
|
|
4
|
+
height="24"
|
|
5
|
+
stroke="currentColor"
|
|
6
|
+
stroke-linejoin="round"
|
|
7
|
+
stroke-width="2"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
width="24"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
>
|
|
12
|
+
<path
|
|
13
|
+
d="M14.5206 13.8497L9.74151 17.8296C9.11148 18.3542 8.31716 18.6409 7.49728 18.6395L5.42831 18.636L8.88346 13.9665M15.0999 9.43073L11.6375 6.03652C11.2456 5.65236 10.726 5.42589 10.1778 5.40032L9.21668 5.35547L10.4742 9.00276M21 13.7075V11.7025C21 10.3551 19.9077 9.26279 18.5603 9.26279H5.60297L3 6.75803L3.0001 10.2513C3.0001 12.1601 4.54752 13.7075 6.45635 13.7075H21Z"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
</template>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
fill="none"
|
|
4
|
+
height="16"
|
|
5
|
+
stroke="currentColor"
|
|
6
|
+
stroke-linecap="round"
|
|
7
|
+
stroke-linejoin="round"
|
|
8
|
+
stroke-width="1.5"
|
|
9
|
+
viewBox="0 0 16 16"
|
|
10
|
+
width="16"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M2.0011 4.86629V4.60307C2.0011 3.62495 2.79402 2.83203 3.77214 2.83203H12.2301C13.2082 2.83203 14.0011 3.62495 14.0011 4.60307V11.3966C14.0011 12.3748 13.2082 13.1677 12.2301 13.1677H10.4052M9.58093 5.32658H11.5191V7.26479M9.45274 7.40582L11.532 5.32658M3.51706 13.1677H5.81639C6.65478 13.1677 7.33442 12.488 7.33442 11.6496V9.35031C7.33442 8.51192 6.65478 7.83228 5.81639 7.83228H3.51706C2.67867 7.83228 1.99902 8.51192 1.99902 9.35031V11.6496C1.99902 12.488 2.67867 13.1677 3.51706 13.1677Z"
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
17
|
+
</template>
|
|
@@ -57,6 +57,7 @@ import IconOta from '@/components/icons/IconOta.vue'
|
|
|
57
57
|
import IconPaid from '@/components/icons/IconPaid.vue'
|
|
58
58
|
import IconPassport from '@/components/icons/IconPassport.vue'
|
|
59
59
|
import IconPayout from '@/components/icons/IconPayout.vue'
|
|
60
|
+
import IconPlane2 from '@/components/icons/IconPlane2.vue'
|
|
60
61
|
import IconPlug from '@/components/icons/IconPlug.vue'
|
|
61
62
|
import IconPlugOff from '@/components/icons/IconPlugOff.vue'
|
|
62
63
|
import IconReceipt from '@/components/icons/IconReceipt.vue'
|
|
@@ -77,6 +78,7 @@ import IconTicket from '@/components/icons/IconTicket.vue'
|
|
|
77
78
|
import IconTimer from '@/components/icons/IconTimer.vue'
|
|
78
79
|
import IconTooltip from '@/components/icons/IconTooltip.vue'
|
|
79
80
|
import IconTrafficControl from '@/components/icons/IconTrafficControl.vue'
|
|
81
|
+
import IconWindowExpand from '@/components/icons/IconWindowExpand.vue'
|
|
80
82
|
|
|
81
83
|
export const CustomCpIcons = {
|
|
82
84
|
'accompanied-minor-each': IconAccompaniedMinorEach,
|
|
@@ -138,6 +140,7 @@ export const CustomCpIcons = {
|
|
|
138
140
|
paid: IconPaid,
|
|
139
141
|
passport: IconPassport,
|
|
140
142
|
payout: IconPayout,
|
|
143
|
+
'plane-2': IconPlane2,
|
|
141
144
|
plug: IconPlug,
|
|
142
145
|
'plug-off': IconPlugOff,
|
|
143
146
|
receipt: IconReceipt,
|
|
@@ -158,4 +161,5 @@ export const CustomCpIcons = {
|
|
|
158
161
|
timer: IconTimer,
|
|
159
162
|
tooltip: IconTooltip,
|
|
160
163
|
'traffic-control': IconTrafficControl,
|
|
164
|
+
'window-expand': IconWindowExpand,
|
|
161
165
|
}
|