@citizenplane/pimp 8.18.1 → 8.19.0
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 +312 -273
- package/dist/pimp.umd.js +3 -3
- package/package.json +1 -1
- package/src/components/icons/IconCollapse.vue +18 -0
- package/src/components/icons/IconExpand.vue +17 -0
- package/src/components/index.js +4 -0
package/package.json
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width="24"
|
|
5
|
+
height="24"
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
stroke="currentColor"
|
|
9
|
+
stroke-width="2"
|
|
10
|
+
stroke-linecap="round"
|
|
11
|
+
stroke-linejoin="round"
|
|
12
|
+
>
|
|
13
|
+
<path d="M15.5829 7.57141L12.1543 11L8.72577 7.57141" />
|
|
14
|
+
<path d="M15.5829 16.4286L12.1543 13L8.72577 16.4286" />
|
|
15
|
+
<path d="M12.1543 11V3" />
|
|
16
|
+
<path d="M12.1543 13V21" />
|
|
17
|
+
</svg>
|
|
18
|
+
</template>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width="25"
|
|
5
|
+
height="24"
|
|
6
|
+
viewBox="0 0 25 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
stroke="currentColor"
|
|
9
|
+
stroke-width="2"
|
|
10
|
+
stroke-linecap="round"
|
|
11
|
+
stroke-linejoin="round"
|
|
12
|
+
>
|
|
13
|
+
<path d="M8.72562 6.42859L12.1542 3.00002L15.5828 6.42859" />
|
|
14
|
+
<path d="M15.5829 17.5714L12.1543 21L8.72571 17.5714" />
|
|
15
|
+
<path d="M12.1542 2.99988V20.9982" />
|
|
16
|
+
</svg>
|
|
17
|
+
</template>
|
package/src/components/index.js
CHANGED
|
@@ -61,6 +61,8 @@ import IconOta from './icons/IconOta.vue'
|
|
|
61
61
|
import IconSupplier from './icons/IconSupplier.vue'
|
|
62
62
|
import IconThirdParty from './icons/IconThirdParty.vue'
|
|
63
63
|
import IconGroupBy from './icons/IconGroupBy.vue'
|
|
64
|
+
import IconCollapse from './icons/IconCollapse.vue'
|
|
65
|
+
import IconExpand from './icons/IconExpand.vue'
|
|
64
66
|
|
|
65
67
|
// Helpers and Utilities
|
|
66
68
|
import TransitionExpand from './helpers-utilities/TransitionExpand.vue'
|
|
@@ -100,6 +102,8 @@ const Components = {
|
|
|
100
102
|
IconThirdParty,
|
|
101
103
|
IconTooltip,
|
|
102
104
|
IconGroupBy,
|
|
105
|
+
IconCollapse,
|
|
106
|
+
IconExpand,
|
|
103
107
|
TransitionExpand,
|
|
104
108
|
}
|
|
105
109
|
|