@citizenplane/pimp 10.1.5 → 10.1.7
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 +761 -743
- package/dist/pimp.umd.js +36 -36
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/BaseInputLabel.vue +1 -0
- package/src/components/icons/IconNoMail.vue +12 -0
- package/src/constants/CpCustomIcons.ts +2 -0
package/package.json
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg fill="currentColor" height="20" viewBox="0 0 22 20" width="22" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path
|
|
4
|
+
d="M20.293 11.8018C20.6834 11.4114 21.3165 11.4115 21.707 11.8018C22.0975 12.1923 22.0975 12.8253 21.707 13.2158L19.2334 15.6885L21.707 18.1621C22.0975 18.5526 22.0975 19.1857 21.707 19.5762C21.3165 19.9667 20.6835 19.9667 20.293 19.5762L17.8193 17.1025L15.3467 19.5762C14.9562 19.9667 14.3231 19.9667 13.9326 19.5762C13.5423 19.1856 13.5422 18.5526 13.9326 18.1621L16.4053 15.6885L13.9326 13.2158C13.5422 12.8253 13.5421 12.1922 13.9326 11.8018C14.3231 11.4113 14.9561 11.4114 15.3467 11.8018L17.8193 14.2744L20.293 11.8018Z"
|
|
5
|
+
/>
|
|
6
|
+
<path
|
|
7
|
+
clip-rule="evenodd"
|
|
8
|
+
d="M19 0C20.6523 0 22 1.34772 22 3V7.75293C21.9999 8.3051 21.5522 8.75293 21 8.75293C20.4479 8.7528 20.0001 8.30502 20 7.75293V4.91992L11.5732 10.8193C11.229 11.06 10.7709 11.0601 10.4268 10.8193L2 4.91992V15C2.00013 15.5475 2.45248 15.9999 3 16H10.3057C10.8579 16 11.3057 16.4477 11.3057 17C11.3055 17.5522 10.8579 18 10.3057 18H3C1.34791 17.9999 0.000132734 16.6521 0 15V3C0 1.3478 1.34783 0.000132762 3 0H19ZM3 2C2.61193 2.0001 2.27267 2.22744 2.10742 2.55469L11 8.7793L19.8926 2.55371C19.7271 2.22692 19.3878 2 19 2H3Z"
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
</template>
|
|
@@ -76,6 +76,7 @@ import IconMaleOutline from '@/components/icons/IconMaleOutline.vue'
|
|
|
76
76
|
import IconMarkup from '@/components/icons/IconMarkup.vue'
|
|
77
77
|
import IconMatches from '@/components/icons/IconMatches.vue'
|
|
78
78
|
import IconMultiSegments from '@/components/icons/IconMultiSegments.vue'
|
|
79
|
+
import IconNoMail from '@/components/icons/IconNoMail.vue'
|
|
79
80
|
import IconNoPassport from '@/components/icons/IconNoPassport.vue'
|
|
80
81
|
import IconNoRefund from '@/components/icons/IconNoRefund.vue'
|
|
81
82
|
import IconNoSeat from '@/components/icons/IconNoSeat.vue'
|
|
@@ -197,6 +198,7 @@ export const CustomCpIcons = {
|
|
|
197
198
|
markup: IconMarkup,
|
|
198
199
|
matches: IconMatches,
|
|
199
200
|
'multi-segments': IconMultiSegments,
|
|
201
|
+
'no-mail': IconNoMail,
|
|
200
202
|
'no-passport': IconNoPassport,
|
|
201
203
|
'no-refund': IconNoRefund,
|
|
202
204
|
'no-seat': IconNoSeat,
|