@citizenplane/pimp 18.19.0 → 18.19.1

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": "18.19.0",
3
+ "version": "18.19.1",
4
4
  "scripts": {
5
5
  "dev": "storybook dev -p 8081",
6
6
  "build-storybook": "storybook build --output-dir ./docs",
@@ -305,7 +305,6 @@ const handleToggle = () => {
305
305
  padding: var(--cp-spacing-lg);
306
306
  border-radius: var(--cp-radius-lg);
307
307
  background: var(--cp-background-primary);
308
- gap: var(--cp-spacing-lg);
309
308
  }
310
309
  }
311
310
  </style>
@@ -1,5 +1,5 @@
1
1
  import type { Meta, StoryObj } from '@storybook/vue3-vite'
2
- import { onMounted, ref } from 'vue'
2
+ import { ref } from 'vue'
3
3
 
4
4
  import CpAncillaryCategory from '@/components/CpAncillaryCategory.vue'
5
5
  import CpAncillaryItem from '@/components/CpAncillaryItem.vue'
@@ -14,17 +14,6 @@ const galleryRowStyle = 'display: flex; flex-direction: column; gap: 10px; width
14
14
  const meta = {
15
15
  title: 'Business/CpAncillaryCategory',
16
16
  component: CpAncillaryCategory,
17
- decorators: [
18
- (story) => ({
19
- components: { story },
20
- setup() {
21
- onMounted(() => {
22
- document.getElementById('storybook-root')?.style.setProperty('width', '100%')
23
- })
24
- },
25
- template: '<story />',
26
- }),
27
- ],
28
17
  argTypes: {
29
18
  currency: {
30
19
  control: 'text',