@citizenplane/pimp 18.19.8 → 18.19.10

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.8",
3
+ "version": "18.19.10",
4
4
  "scripts": {
5
5
  "dev": "storybook dev -p 8081",
6
6
  "build-storybook": "storybook build --output-dir ./docs",
@@ -192,7 +192,6 @@ const handleHeaderClick = () => {
192
192
  flex: none;
193
193
  align-items: center;
194
194
  justify-content: flex-end;
195
- padding: 0 var(--cp-spacing-xl);
196
195
  border-radius: var(--cp-radius-lg);
197
196
  gap: var(--cp-spacing-lg);
198
197
 
@@ -202,7 +201,6 @@ const handleHeaderClick = () => {
202
201
 
203
202
  @container (width < 30rem) {
204
203
  justify-content: flex-start;
205
- padding: 0;
206
204
 
207
205
  &:has(+ .cpAncillaryCategory__chevron) {
208
206
  flex: none;
@@ -12,6 +12,7 @@ import type { App, Plugin } from 'vue'
12
12
  import { BindOnceDirective } from 'vue-bind-once'
13
13
  import VueTelInput from 'vue-tel-input'
14
14
 
15
+ import { useIsBreakpoint } from '../composables/useIsBreakpoint'
15
16
  import { useReducedMotion } from '../composables/useReducedMotion'
16
17
  import ClickOutside from '../directives/ClickOutside'
17
18
  import CpCoreDatepicker from '../libs/CoreDatepicker.vue'
@@ -303,6 +304,7 @@ export {
303
304
  IconSupplier,
304
305
  IconThirdParty,
305
306
  IconTooltip,
307
+ useIsBreakpoint,
306
308
  useReducedMotion,
307
309
  }
308
310