@citizenplane/pimp 9.5.11 → 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 +810 -793
- package/dist/pimp.umd.js +18 -18
- package/package.json +1 -1
- package/src/components/icons/IconWindowExpand.vue +17 -0
- package/src/constants/CpCustomIcons.ts +2 -0
package/package.json
CHANGED
|
@@ -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>
|
|
@@ -78,6 +78,7 @@ import IconTicket from '@/components/icons/IconTicket.vue'
|
|
|
78
78
|
import IconTimer from '@/components/icons/IconTimer.vue'
|
|
79
79
|
import IconTooltip from '@/components/icons/IconTooltip.vue'
|
|
80
80
|
import IconTrafficControl from '@/components/icons/IconTrafficControl.vue'
|
|
81
|
+
import IconWindowExpand from '@/components/icons/IconWindowExpand.vue'
|
|
81
82
|
|
|
82
83
|
export const CustomCpIcons = {
|
|
83
84
|
'accompanied-minor-each': IconAccompaniedMinorEach,
|
|
@@ -160,4 +161,5 @@ export const CustomCpIcons = {
|
|
|
160
161
|
timer: IconTimer,
|
|
161
162
|
tooltip: IconTooltip,
|
|
162
163
|
'traffic-control': IconTrafficControl,
|
|
164
|
+
'window-expand': IconWindowExpand,
|
|
163
165
|
}
|