@citizenplane/pimp 9.13.5 → 9.13.6
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 +978 -963
- package/dist/pimp.umd.js +20 -20
- package/package.json +1 -1
- package/src/components/icons/IconRoundTripNone.vue +10 -0
- package/src/constants/CpCustomIcons.ts +2 -0
package/package.json
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg fill="currentColor" height="24" opacity="0.4" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path
|
|
4
|
+
d="M7.03016 12.6087C7.03016 12.487 6.96886 12.3043 6.84616 12.1826C6.62796 11.9662 6.31296 11.9421 6.07326 12.1105L5.98726 12.1826L3.18376 15.1044C2.96296 15.3235 2.94086 15.6412 3.11756 15.8357L3.18376 15.8957L5.98726 18.818C6.10996 18.9391 6.23266 19 6.41666 19C6.74796 19 6.97986 18.8028 7.02296 18.4971L7.03016 18.3913V16.399L15.0927 16.4C15.5551 16.4 15.9367 16.0567 15.9927 15.6129L15.9998 15.5C15.9998 15.0412 15.6537 14.6625 15.2065 14.607L15.0927 14.6L7.03016 14.599V12.6087Z"
|
|
5
|
+
/>
|
|
6
|
+
<path
|
|
7
|
+
d="M16.9698 5.60869C16.9698 5.48695 17.0311 5.30435 17.1538 5.18262C17.372 4.96619 17.687 4.94213 17.9267 5.11046L18.0127 5.18262L20.8162 8.10436C21.037 8.32349 21.0591 8.64122 20.8824 8.8357L20.8162 8.89566L18.0127 11.818C17.89 11.9391 17.7673 12 17.5833 12C17.252 12 17.0201 11.8028 16.977 11.4971L16.9698 11.3913V9.39901L8.90728 9.40001C8.44487 9.40001 8.06328 9.05667 8.00731 8.6129L8.00024 8.50001C8.00024 8.04119 8.34626 7.66255 8.7935 7.60702L8.90728 7.60001L16.9698 7.59901V5.60869Z"
|
|
8
|
+
/>
|
|
9
|
+
</svg>
|
|
10
|
+
</template>
|
|
@@ -94,6 +94,7 @@ import IconReceipt from '@/components/icons/IconReceipt.vue'
|
|
|
94
94
|
import IconRecurrence from '@/components/icons/IconRecurrence.vue'
|
|
95
95
|
import IconRefund from '@/components/icons/IconRefund.vue'
|
|
96
96
|
import IconRoundTrip from '@/components/icons/IconRoundTrip.vue'
|
|
97
|
+
import IconRoundTripNone from '@/components/icons/IconRoundTripNone.vue'
|
|
97
98
|
import IconRouteNoStop from '@/components/icons/IconRouteNoStop.vue'
|
|
98
99
|
import IconRouteOneStop from '@/components/icons/IconRouteOneStop.vue'
|
|
99
100
|
import IconScheduleChange from '@/components/icons/IconScheduleChange.vue'
|
|
@@ -211,6 +212,7 @@ export const CustomCpIcons = {
|
|
|
211
212
|
recurrence: IconRecurrence,
|
|
212
213
|
refund: IconRefund,
|
|
213
214
|
'round-trip': IconRoundTrip,
|
|
215
|
+
'round-trip-none': IconRoundTripNone,
|
|
214
216
|
'route-no-stop': IconRouteNoStop,
|
|
215
217
|
'route-one-stop': IconRouteOneStop,
|
|
216
218
|
'schedule-change': IconScheduleChange,
|