@citizenplane/pimp 18.9.23 → 18.9.25

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.9.23",
3
+ "version": "18.9.25",
4
4
  "scripts": {
5
5
  "dev": "storybook dev -p 8081",
6
6
  "build-storybook": "storybook build --output-dir ./docs",
@@ -169,6 +169,7 @@ const focusCloseButton = () => {
169
169
  const onHide = () => {
170
170
  isOpen.value = false
171
171
  focusTrigger()
172
+ emits('hide')
172
173
  }
173
174
 
174
175
  const alignPopoverEnd = () => {
@@ -190,6 +191,7 @@ const alignPopoverEnd = () => {
190
191
  const onShow = async () => {
191
192
  isOpen.value = true
192
193
  if (isPopoverPlacementEnd.value) alignPopoverEnd()
194
+ emits('show')
193
195
  }
194
196
 
195
197
  defineExpose({ show, hide, toggle })
@@ -97,6 +97,8 @@ const pageLastResultIndex = computed(() => {
97
97
 
98
98
  <style scoped lang="scss">
99
99
  .cpTableFooter {
100
+ padding: 0 var(--cp-spacing-xl) 0;
101
+
100
102
  &__loader {
101
103
  display: inline-flex;
102
104
  align-items: center;