@citizenplane/pimp 8.18.1 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citizenplane/pimp",
3
- "version": "8.18.1",
3
+ "version": "8.20.0",
4
4
  "scripts": {
5
5
  "dev": "storybook dev -p 8080",
6
6
  "build-storybook": "storybook build --output-dir ./docs",
@@ -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>
@@ -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>
@@ -61,6 +61,9 @@ 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'
66
+ import IconCheckList from './icons/IconCheckList.vue'
64
67
 
65
68
  // Helpers and Utilities
66
69
  import TransitionExpand from './helpers-utilities/TransitionExpand.vue'
@@ -100,6 +103,9 @@ const Components = {
100
103
  IconThirdParty,
101
104
  IconTooltip,
102
105
  IconGroupBy,
106
+ IconCollapse,
107
+ IconExpand,
108
+ IconCheckList,
103
109
  TransitionExpand,
104
110
  }
105
111