@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citizenplane/pimp",
3
- "version": "8.18.1",
3
+ "version": "8.19.0",
4
4
  "scripts": {
5
5
  "dev": "storybook dev -p 8080",
6
6
  "build-storybook": "storybook build --output-dir ./docs",
@@ -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,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