@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/dist/components/CpMenu.vue.d.ts.map +1 -1
- package/dist/components/CpTableFooter.vue.d.ts.map +1 -1
- package/dist/pimp.es.js +3 -3
- package/dist/pimp.umd.js +2 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/CpMenu.vue +2 -0
- package/src/components/CpTableFooter.vue +2 -0
package/package.json
CHANGED
|
@@ -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 })
|