@citizenplane/pimp 8.19.0 → 8.20.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 +427 -410
- package/dist/pimp.umd.js +3 -3
- package/package.json +1 -1
- package/src/components/icons/IconCheckList.vue +17 -0
- package/src/components/index.js +2 -0
package/package.json
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
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
|
|
14
|
+
d="M8.72964 19.7545H4.23084C3.55107 19.7545 3 19.2034 3 18.5237V14.0249M12.9263 5.56586H21M12.9263 8.65423H21M12.9263 15.431H21M12.9263 18.5194H21M5.52648 15.3981C5.88341 15.7024 7.11617 17.3874 7.11617 17.3874C7.36306 16.5751 8.6172 14.2852 9.85087 12.985M4.23084 9.97488H7.49879C8.17857 9.97488 8.72964 9.42381 8.72964 8.74403V5.47608C8.72964 4.79631 8.17857 4.24524 7.49879 4.24524H4.23084C3.55107 4.24524 3 4.79631 3 5.47608V8.74403C3 9.42381 3.55107 9.97488 4.23084 9.97488Z"
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
17
|
+
</template>
|
package/src/components/index.js
CHANGED
|
@@ -63,6 +63,7 @@ import IconThirdParty from './icons/IconThirdParty.vue'
|
|
|
63
63
|
import IconGroupBy from './icons/IconGroupBy.vue'
|
|
64
64
|
import IconCollapse from './icons/IconCollapse.vue'
|
|
65
65
|
import IconExpand from './icons/IconExpand.vue'
|
|
66
|
+
import IconCheckList from './icons/IconCheckList.vue'
|
|
66
67
|
|
|
67
68
|
// Helpers and Utilities
|
|
68
69
|
import TransitionExpand from './helpers-utilities/TransitionExpand.vue'
|
|
@@ -104,6 +105,7 @@ const Components = {
|
|
|
104
105
|
IconGroupBy,
|
|
105
106
|
IconCollapse,
|
|
106
107
|
IconExpand,
|
|
108
|
+
IconCheckList,
|
|
107
109
|
TransitionExpand,
|
|
108
110
|
}
|
|
109
111
|
|