@maas/vue-equipment 1.0.0-beta.4 → 1.0.0-beta.40
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/README.md +2 -2
- package/dist/composables/useCountdown/index.d.ts +23 -0
- package/dist/composables/useCountdown/index.js +133 -0
- package/dist/composables/useCountdown/index.js.map +1 -0
- package/dist/composables/useEasings/index.d.ts +21 -0
- package/dist/composables/useEasings/index.js +40 -0
- package/dist/composables/useEasings/index.js.map +1 -0
- package/dist/composables/useMetaViewport/index.d.ts +9 -0
- package/dist/composables/useMetaViewport/index.js +29 -0
- package/dist/composables/useMetaViewport/index.js.map +1 -0
- package/dist/composables/useScrollTo/index.d.ts +49 -0
- package/dist/composables/useScrollTo/index.js +152 -0
- package/dist/composables/useScrollTo/index.js.map +1 -0
- package/dist/nuxt/module.d.mts +4 -3
- package/dist/nuxt/module.json +2 -2
- package/dist/nuxt/module.mjs +55 -35
- package/dist/nuxt/types.d.mts +3 -1
- package/dist/plugins/MagicAccordion/nuxt.d.ts +1 -1
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionContent.d.vue.ts +26 -0
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionContent.vue +70 -84
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionContent.vue.d.ts +11 -24
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionProvider.d.vue.ts +20 -0
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionProvider.vue +18 -32
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionProvider.vue.d.ts +7 -20
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionTrigger.d.vue.ts +23 -0
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionTrigger.vue +62 -62
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionTrigger.vue.d.ts +10 -59
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionView.d.vue.ts +20 -0
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionView.vue +40 -45
- package/dist/plugins/MagicAccordion/src/components/MagicAccordionView.vue.d.ts +9 -22
- package/dist/plugins/MagicAccordion/src/composables/private/useAccordionCallback.mjs +1 -1
- package/dist/plugins/MagicAccordion/src/composables/private/useAccordionTrigger.d.ts +4 -4
- package/dist/plugins/MagicAccordion/src/composables/private/useAccordionTrigger.mjs +9 -8
- package/dist/plugins/MagicAccordion/src/composables/private/useAccordionView.mjs +1 -0
- package/dist/plugins/MagicAccordion/src/composables/useMagicAccordion.d.ts +1 -5
- package/dist/plugins/MagicAccordion/src/composables/useMagicAccordion.mjs +3 -3
- package/dist/plugins/MagicAccordion/src/symbols/index.d.ts +2 -2
- package/dist/plugins/MagicAccordion/src/types/index.d.ts +2 -2
- package/dist/plugins/MagicCommand/nuxt.d.ts +1 -1
- package/dist/plugins/MagicCommand/src/components/MagicCommandContent.d.vue.ts +15 -0
- package/dist/plugins/MagicCommand/src/components/MagicCommandContent.vue +164 -152
- package/dist/plugins/MagicCommand/src/components/MagicCommandContent.vue.d.ts +9 -15
- package/dist/plugins/MagicCommand/src/components/MagicCommandDrawer.d.vue.ts +17 -0
- package/dist/plugins/MagicCommand/src/components/MagicCommandDrawer.vue +50 -54
- package/dist/plugins/MagicCommand/src/components/MagicCommandDrawer.vue.d.ts +7 -20
- package/dist/plugins/MagicCommand/src/components/MagicCommandItem.d.vue.ts +27 -0
- package/dist/plugins/MagicCommand/src/components/MagicCommandItem.vue +89 -87
- package/dist/plugins/MagicCommand/src/components/MagicCommandItem.vue.d.ts +15 -28
- package/dist/plugins/MagicCommand/src/components/MagicCommandModal.d.vue.ts +17 -0
- package/dist/plugins/MagicCommand/src/components/MagicCommandModal.vue +39 -49
- package/dist/plugins/MagicCommand/src/components/MagicCommandModal.vue.d.ts +7 -20
- package/dist/plugins/MagicCommand/src/components/MagicCommandProvider.d.vue.ts +20 -0
- package/dist/plugins/MagicCommand/src/components/MagicCommandProvider.vue +75 -76
- package/dist/plugins/MagicCommand/src/components/MagicCommandProvider.vue.d.ts +7 -57
- package/dist/plugins/MagicCommand/src/components/MagicCommandRenderer.d.vue.ts +3 -0
- package/dist/plugins/MagicCommand/src/components/MagicCommandRenderer.vue +30 -40
- package/dist/plugins/MagicCommand/src/components/MagicCommandRenderer.vue.d.ts +2 -1
- package/dist/plugins/MagicCommand/src/components/MagicCommandTrigger.d.vue.ts +24 -0
- package/dist/plugins/MagicCommand/src/components/MagicCommandTrigger.vue +88 -85
- package/dist/plugins/MagicCommand/src/components/MagicCommandTrigger.vue.d.ts +10 -61
- package/dist/plugins/MagicCommand/src/components/MagicCommandView.d.vue.ts +19 -0
- package/dist/plugins/MagicCommand/src/components/MagicCommandView.vue +44 -48
- package/dist/plugins/MagicCommand/src/components/MagicCommandView.vue.d.ts +9 -22
- package/dist/plugins/MagicCommand/src/composables/private/useCommandCallback.mjs +1 -1
- package/dist/plugins/MagicCommand/src/composables/private/useCommandItem.mjs +11 -13
- package/dist/plugins/MagicCommand/src/composables/private/useCommandScroll.d.ts +2 -2
- package/dist/plugins/MagicCommand/src/composables/private/useCommandState.mjs +1 -1
- package/dist/plugins/MagicCommand/src/composables/private/useCommandTrigger.d.ts +2 -2
- package/dist/plugins/MagicCommand/src/composables/private/useCommandTrigger.mjs +3 -2
- package/dist/plugins/MagicCommand/src/composables/private/useCommandView.d.ts +1 -1
- package/dist/plugins/MagicCommand/src/composables/private/useCommandView.mjs +63 -44
- package/dist/plugins/MagicCommand/src/composables/useMagicCommand.mjs +21 -4
- package/dist/plugins/MagicCommand/src/symbols/index.d.ts +4 -4
- package/dist/plugins/MagicCommand/src/types/index.d.ts +3 -3
- package/dist/plugins/MagicCookie/nuxt.d.ts +1 -1
- package/dist/plugins/MagicCookie/src/components/MagicCookieItem.d.vue.ts +20 -0
- package/dist/plugins/MagicCookie/src/components/MagicCookieItem.vue +43 -41
- package/dist/plugins/MagicCookie/src/components/MagicCookieItem.vue.d.ts +9 -22
- package/dist/plugins/MagicCookie/src/components/MagicCookieProvider.d.vue.ts +19 -0
- package/dist/plugins/MagicCookie/src/components/MagicCookieProvider.vue +19 -36
- package/dist/plugins/MagicCookie/src/components/MagicCookieProvider.vue.d.ts +7 -20
- package/dist/plugins/MagicCookie/src/components/MagicCookieView.d.vue.ts +17 -0
- package/dist/plugins/MagicCookie/src/components/MagicCookieView.vue +47 -73
- package/dist/plugins/MagicCookie/src/components/MagicCookieView.vue.d.ts +11 -15
- package/dist/plugins/MagicCookie/src/composables/private/useCookieCallback.mjs +1 -1
- package/dist/plugins/MagicCookie/src/composables/private/useCookieItem.mjs +12 -4
- package/dist/plugins/MagicCookie/src/composables/useMagicCookie.d.ts +2 -1
- package/dist/plugins/MagicCookie/src/composables/useMagicCookie.mjs +10 -6
- package/dist/plugins/MagicCookie/src/symbols/index.d.ts +2 -2
- package/dist/plugins/MagicCookie/src/types/index.d.ts +3 -2
- package/dist/plugins/MagicDraggable/nuxt.d.ts +1 -1
- package/dist/plugins/MagicDraggable/src/components/MagicDraggable.d.vue.ts +19 -0
- package/dist/plugins/MagicDraggable/src/components/MagicDraggable.vue +92 -101
- package/dist/plugins/MagicDraggable/src/components/MagicDraggable.vue.d.ts +7 -24
- package/dist/plugins/MagicDraggable/src/composables/private/useDraggableDrag.d.ts +2 -2
- package/dist/plugins/MagicDraggable/src/composables/private/useDraggableDrag.mjs +51 -66
- package/dist/plugins/MagicDraggable/src/composables/private/useDraggableScrollLock.mjs +37 -15
- package/dist/plugins/MagicDraggable/src/composables/private/useDraggableSnap.d.ts +2 -15
- package/dist/plugins/MagicDraggable/src/composables/private/useDraggableSnap.mjs +111 -56
- package/dist/plugins/MagicDraggable/src/composables/private/useDraggableState.mjs +6 -5
- package/dist/plugins/MagicDraggable/src/composables/useMagicDraggable.mjs +1 -1
- package/dist/plugins/MagicDraggable/src/types/index.d.ts +4 -3
- package/dist/plugins/MagicDraggable/src/utils/defaultOptions.mjs +1 -1
- package/dist/plugins/MagicDrawer/nuxt.d.ts +1 -1
- package/dist/plugins/MagicDrawer/src/components/MagicDrawer.d.vue.ts +31 -0
- package/dist/plugins/MagicDrawer/src/components/MagicDrawer.vue +290 -324
- package/dist/plugins/MagicDrawer/src/components/MagicDrawer.vue.d.ts +19 -35
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerCallback.mjs +2 -2
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerDOM.mjs +37 -15
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerDrag.d.ts +2 -2
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerDrag.mjs +10 -5
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerGuards.d.ts +1 -1
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerGuards.mjs +28 -10
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerProgress.d.ts +2 -2
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerProgress.mjs +1 -1
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerSnap.d.ts +3 -3
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerSnap.mjs +55 -19
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerState.mjs +3 -1
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerUtils.mjs +21 -8
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerWheel.d.ts +1 -1
- package/dist/plugins/MagicDrawer/src/composables/private/useDrawerWheel.mjs +7 -2
- package/dist/plugins/MagicDrawer/src/composables/useMagicDrawer.mjs +1 -1
- package/dist/plugins/MagicDrawer/src/types/index.mjs +1 -0
- package/dist/plugins/MagicDrawer/src/utils/defaultOptions.mjs +2 -2
- package/dist/plugins/MagicEmitter/nuxt.d.ts +1 -1
- package/dist/plugins/MagicEmitter/src/composables/useMagicEmitter.d.ts +202 -100
- package/dist/plugins/MagicEmitter/src/types/index.d.ts +2 -0
- package/dist/plugins/MagicError/index.d.ts +5 -0
- package/dist/plugins/MagicError/index.mjs +3 -0
- package/dist/plugins/MagicError/nuxt.d.ts +2 -0
- package/dist/plugins/MagicError/nuxt.mjs +12 -0
- package/dist/plugins/MagicError/package.json +40 -0
- package/dist/plugins/MagicError/src/MagicError.mjs +0 -0
- package/dist/plugins/MagicError/src/class/MagicError.d.ts +6 -0
- package/dist/plugins/MagicError/src/class/MagicError.mjs +15 -0
- package/dist/plugins/MagicError/src/composables/useMagicError.d.ts +18 -0
- package/dist/plugins/MagicError/src/composables/useMagicError.mjs +31 -0
- package/dist/plugins/MagicMarquee/nuxt.d.ts +1 -1
- package/dist/plugins/MagicMarquee/src/components/MagicMarquee.d.vue.ts +21 -0
- package/dist/plugins/MagicMarquee/src/components/MagicMarquee.vue +38 -72
- package/dist/plugins/MagicMarquee/src/components/MagicMarquee.vue.d.ts +9 -24
- package/dist/plugins/MagicMarquee/src/composables/private/useMarqueeApi.d.ts +1 -1
- package/dist/plugins/MagicMarquee/src/composables/private/useMarqueeApi.mjs +8 -2
- package/dist/plugins/MagicMarquee/src/composables/useMagicMarquee.d.ts +1 -1
- package/dist/plugins/MagicMenu/nuxt.d.ts +1 -1
- package/dist/plugins/MagicMenu/src/components/MagicMenuChannel.d.vue.ts +17 -0
- package/dist/plugins/MagicMenu/src/components/MagicMenuChannel.vue +60 -60
- package/dist/plugins/MagicMenu/src/components/MagicMenuChannel.vue.d.ts +7 -20
- package/dist/plugins/MagicMenu/src/components/MagicMenuContent.d.vue.ts +25 -0
- package/dist/plugins/MagicMenu/src/components/MagicMenuContent.vue +189 -216
- package/dist/plugins/MagicMenu/src/components/MagicMenuContent.vue.d.ts +11 -25
- package/dist/plugins/MagicMenu/src/components/MagicMenuFloat.d.vue.ts +24 -0
- package/dist/plugins/MagicMenu/src/components/MagicMenuFloat.vue +171 -198
- package/dist/plugins/MagicMenu/src/components/MagicMenuFloat.vue.d.ts +12 -26
- package/dist/plugins/MagicMenu/src/components/MagicMenuItem.d.vue.ts +26 -0
- package/dist/plugins/MagicMenu/src/components/MagicMenuItem.vue +103 -112
- package/dist/plugins/MagicMenu/src/components/MagicMenuItem.vue.d.ts +15 -28
- package/dist/plugins/MagicMenu/src/components/MagicMenuProvider.d.vue.ts +20 -0
- package/dist/plugins/MagicMenu/src/components/MagicMenuProvider.vue +82 -81
- package/dist/plugins/MagicMenu/src/components/MagicMenuProvider.vue.d.ts +7 -57
- package/dist/plugins/MagicMenu/src/components/MagicMenuRemote.d.vue.ts +25 -0
- package/dist/plugins/MagicMenu/src/components/MagicMenuRemote.vue +69 -86
- package/dist/plugins/MagicMenu/src/components/MagicMenuRemote.vue.d.ts +10 -23
- package/dist/plugins/MagicMenu/src/components/MagicMenuTrigger.d.vue.ts +24 -0
- package/dist/plugins/MagicMenu/src/components/MagicMenuTrigger.vue +99 -97
- package/dist/plugins/MagicMenu/src/components/MagicMenuTrigger.vue.d.ts +12 -60
- package/dist/plugins/MagicMenu/src/components/MagicMenuView.d.vue.ts +20 -0
- package/dist/plugins/MagicMenu/src/components/MagicMenuView.vue +57 -61
- package/dist/plugins/MagicMenu/src/components/MagicMenuView.vue.d.ts +11 -24
- package/dist/plugins/MagicMenu/src/composables/private/useMenuCallback.mjs +2 -2
- package/dist/plugins/MagicMenu/src/composables/private/useMenuChannel.mjs +15 -5
- package/dist/plugins/MagicMenu/src/composables/private/useMenuCursor.d.ts +3 -3
- package/dist/plugins/MagicMenu/src/composables/private/useMenuCursor.mjs +4 -4
- package/dist/plugins/MagicMenu/src/composables/private/useMenuDOM.mjs +38 -16
- package/dist/plugins/MagicMenu/src/composables/private/useMenuItem.mjs +12 -2
- package/dist/plugins/MagicMenu/src/composables/private/useMenuKeyListener.d.ts +2 -2
- package/dist/plugins/MagicMenu/src/composables/private/useMenuKeyListener.mjs +45 -18
- package/dist/plugins/MagicMenu/src/composables/private/useMenuTrigger.d.ts +2 -2
- package/dist/plugins/MagicMenu/src/composables/private/useMenuTrigger.mjs +4 -2
- package/dist/plugins/MagicMenu/src/composables/private/useMenuView.mjs +31 -10
- package/dist/plugins/MagicMenu/src/composables/useMagicMenu.mjs +1 -0
- package/dist/plugins/MagicMenu/src/symbols/index.d.ts +4 -4
- package/dist/plugins/MagicMenu/src/types/index.d.ts +4 -4
- package/dist/plugins/MagicModal/nuxt.d.ts +1 -1
- package/dist/plugins/MagicModal/src/components/MagicModal.d.vue.ts +24 -0
- package/dist/plugins/MagicModal/src/components/MagicModal.vue +134 -171
- package/dist/plugins/MagicModal/src/components/MagicModal.vue.d.ts +11 -25
- package/dist/plugins/MagicModal/src/composables/private/useModalCallback.mjs +1 -1
- package/dist/plugins/MagicModal/src/composables/private/useModalDOM.mjs +37 -15
- package/dist/plugins/MagicModal/src/types/index.d.ts +2 -2
- package/dist/plugins/MagicModal/src/types/index.mjs +1 -0
- package/dist/plugins/MagicNoise/nuxt.d.ts +1 -1
- package/dist/plugins/MagicNoise/src/components/MagicNoise.d.vue.ts +8 -0
- package/dist/plugins/MagicNoise/src/components/MagicNoise.vue +50 -81
- package/dist/plugins/MagicNoise/src/components/MagicNoise.vue.d.ts +2 -10
- package/dist/plugins/MagicNoise/src/composables/private/useNoiseApi.d.ts +3 -3
- package/dist/plugins/MagicNoise/src/composables/private/useNoiseApi.mjs +17 -9
- package/dist/plugins/MagicNoise/src/types/index.d.ts +2 -0
- package/dist/plugins/MagicNoise/src/utils/defaultOptions.mjs +3 -1
- package/dist/plugins/MagicPie/index.d.ts +7 -0
- package/dist/plugins/MagicPie/index.mjs +8 -0
- package/dist/plugins/MagicPie/nuxt.d.ts +2 -0
- package/dist/plugins/MagicPie/nuxt.mjs +23 -0
- package/dist/plugins/MagicPie/src/components/MagicPie.d.vue.ts +8 -0
- package/dist/plugins/MagicPie/src/components/MagicPie.vue +181 -0
- package/dist/plugins/MagicPie/src/components/MagicPie.vue.d.ts +8 -0
- package/dist/plugins/MagicPie/src/composables/private/usePieState.d.ts +6 -0
- package/dist/plugins/MagicPie/src/composables/private/usePieState.mjs +35 -0
- package/dist/plugins/MagicPie/src/composables/useMagicPie.d.ts +13 -0
- package/dist/plugins/MagicPie/src/composables/useMagicPie.mjs +43 -0
- package/dist/plugins/MagicPie/src/types/index.d.ts +9 -0
- package/dist/plugins/MagicPie/src/types/index.mjs +0 -0
- package/dist/plugins/MagicPlayer/nuxt.d.ts +1 -1
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerAudio.d.vue.ts +3 -0
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerAudio.vue +103 -65
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerAudio.vue.d.ts +2 -1
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerAudioControls.d.vue.ts +18 -0
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerAudioControls.vue +129 -127
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerAudioControls.vue.d.ts +10 -25
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerDisplayTime.d.vue.ts +6 -0
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerDisplayTime.vue +38 -42
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerDisplayTime.vue.d.ts +2 -10
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerMuxPopover.d.vue.ts +6 -0
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerMuxPopover.vue +131 -102
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerMuxPopover.vue.d.ts +2 -10
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerOverlay.d.vue.ts +25 -0
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerOverlay.vue +140 -82
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerOverlay.vue.d.ts +18 -13
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerPoster.d.vue.ts +13 -0
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerPoster.vue +26 -36
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerPoster.vue.d.ts +7 -11
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerProvider.d.vue.ts +19 -0
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerProvider.vue +66 -56
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerProvider.vue.d.ts +7 -22
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerTimeline.d.vue.ts +3 -0
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerTimeline.vue +66 -109
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerTimeline.vue.d.ts +2 -1
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerVideo.d.vue.ts +3 -0
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerVideo.vue +128 -68
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerVideo.vue.d.ts +2 -1
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerVideoControls.d.vue.ts +36 -0
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerVideoControls.vue +185 -210
- package/dist/plugins/MagicPlayer/src/components/MagicPlayerVideoControls.vue.d.ts +25 -34
- package/dist/plugins/MagicPlayer/src/components/icons/FullscreenEnter.d.vue.ts +3 -0
- package/dist/plugins/MagicPlayer/src/components/icons/FullscreenEnter.vue.d.ts +2 -1
- package/dist/plugins/MagicPlayer/src/components/icons/FullscreenExit.d.vue.ts +3 -0
- package/dist/plugins/MagicPlayer/src/components/icons/FullscreenExit.vue.d.ts +2 -1
- package/dist/plugins/MagicPlayer/src/components/icons/Pause.d.vue.ts +3 -0
- package/dist/plugins/MagicPlayer/src/components/icons/Pause.vue.d.ts +2 -1
- package/dist/plugins/MagicPlayer/src/components/icons/Play.d.vue.ts +3 -0
- package/dist/plugins/MagicPlayer/src/components/icons/Play.vue.d.ts +2 -1
- package/dist/plugins/MagicPlayer/src/components/icons/VolumeOff.d.vue.ts +3 -0
- package/dist/plugins/MagicPlayer/src/components/icons/VolumeOff.vue.d.ts +2 -1
- package/dist/plugins/MagicPlayer/src/components/icons/VolumeOn.d.vue.ts +3 -0
- package/dist/plugins/MagicPlayer/src/components/icons/VolumeOn.vue.d.ts +2 -1
- package/dist/plugins/MagicPlayer/src/components/icons/Waiting.d.vue.ts +3 -0
- package/dist/plugins/MagicPlayer/src/components/icons/Waiting.vue.d.ts +2 -1
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerAudioApi.d.ts +0 -4
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerAudioApi.mjs +9 -52
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerControlsApi.d.ts +8 -34
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerControlsApi.mjs +170 -234
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerEmitter.d.ts +8 -0
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerEmitter.mjs +103 -0
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerMediaApi.d.ts +3 -17
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerMediaApi.mjs +113 -176
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerProvider.d.ts +6 -0
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerProvider.mjs +34 -0
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerRuntime.d.ts +4 -4
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerRuntime.mjs +113 -49
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerState.d.ts +7 -0
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerState.mjs +62 -0
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerVideoApi.d.ts +4 -8
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerVideoApi.mjs +50 -93
- package/dist/plugins/MagicPlayer/src/composables/useMagicPlayer.d.ts +37 -52
- package/dist/plugins/MagicPlayer/src/composables/useMagicPlayer.mjs +53 -3
- package/dist/plugins/MagicPlayer/src/css/magic-player-audio-controls.css +0 -1
- package/dist/plugins/MagicPlayer/src/css/magic-player-overlay.css +0 -0
- package/dist/plugins/MagicPlayer/src/css/magic-player-timeline.css +5 -0
- package/dist/plugins/MagicPlayer/src/symbols/index.d.ts +6 -2
- package/dist/plugins/MagicPlayer/src/symbols/index.mjs +12 -1
- package/dist/plugins/MagicPlayer/src/types/index.d.ts +77 -10
- package/dist/plugins/MagicPlayer/src/utils/defaultOptions.d.ts +2 -2
- package/dist/plugins/MagicPlayer/src/utils/defaultOptions.mjs +7 -1
- package/dist/plugins/MagicPlayer/src/utils/playbackDefaults.d.ts +3 -0
- package/dist/plugins/MagicPlayer/src/utils/playbackDefaults.mjs +7 -0
- package/dist/plugins/MagicScroll/nuxt.d.ts +1 -1
- package/dist/plugins/MagicScroll/src/components/MagicScrollCollision.d.vue.ts +18 -0
- package/dist/plugins/MagicScroll/src/components/MagicScrollCollision.vue +60 -61
- package/dist/plugins/MagicScroll/src/components/MagicScrollCollision.vue.d.ts +7 -22
- package/dist/plugins/MagicScroll/src/components/MagicScrollMotion.d.vue.ts +20 -0
- package/dist/plugins/MagicScroll/src/components/MagicScrollMotion.vue +56 -71
- package/dist/plugins/MagicScroll/src/components/MagicScrollMotion.vue.d.ts +7 -22
- package/dist/plugins/MagicScroll/src/components/MagicScrollProvider.d.vue.ts +36 -0
- package/dist/plugins/MagicScroll/src/components/MagicScrollProvider.vue +26 -33
- package/dist/plugins/MagicScroll/src/components/MagicScrollProvider.vue.d.ts +25 -38
- package/dist/plugins/MagicScroll/src/components/MagicScrollScene.d.vue.ts +20 -0
- package/dist/plugins/MagicScroll/src/components/MagicScrollScene.vue +71 -71
- package/dist/plugins/MagicScroll/src/components/MagicScrollScene.vue.d.ts +9 -24
- package/dist/plugins/MagicScroll/src/composables/private/useCollisionDetection.d.ts +2 -2
- package/dist/plugins/MagicScroll/src/composables/private/useCollisionDetection.mjs +17 -7
- package/dist/plugins/MagicScroll/src/composables/private/useScrollApi.d.ts +2 -2
- package/dist/plugins/MagicScroll/src/composables/private/useScrollApi.mjs +41 -26
- package/dist/plugins/MagicScroll/src/symbols/index.d.ts +1 -1
- package/dist/plugins/MagicToast/nuxt.d.ts +1 -1
- package/dist/plugins/MagicToast/src/components/MagicToastProvider.d.vue.ts +15 -0
- package/dist/plugins/MagicToast/src/components/MagicToastProvider.vue +91 -110
- package/dist/plugins/MagicToast/src/components/MagicToastProvider.vue.d.ts +8 -16
- package/dist/plugins/MagicToast/src/components/MagicToastView.d.vue.ts +17 -0
- package/dist/plugins/MagicToast/src/components/MagicToastView.vue +66 -82
- package/dist/plugins/MagicToast/src/components/MagicToastView.vue.d.ts +7 -23
- package/dist/plugins/MagicToast/src/composables/private/useToastCallback.mjs +9 -7
- package/dist/plugins/MagicToast/src/composables/private/useToastDrag.mjs +23 -23
- package/dist/plugins/MagicToast/src/composables/private/useToastListener.mjs +1 -0
- package/dist/plugins/MagicToast/src/composables/private/useToastScrollLock.mjs +36 -16
- package/dist/plugins/MagicToast/src/composables/private/useToastView.mjs +1 -0
- package/dist/plugins/MagicToast/src/types/index.d.ts +11 -11
- package/dist/plugins/MagicToast/src/utils/defaultOptions.mjs +1 -1
- package/dist/utils/css/animations/fade-down.css +9 -0
- package/dist/utils/css/animations.css +9 -22
- package/dist/utils/css/easings.css +9 -1
- package/dist/utils/css/keyframes.css +22 -0
- package/dist/utils/index.d.ts +9 -4
- package/dist/utils/index.js +42 -4
- package/dist/utils/index.js.map +1 -1
- package/package.json +25 -21
- package/dist/composables/index.d.ts +0 -97
- package/dist/composables/index.js +0 -338
- package/dist/composables/index.js.map +0 -1
- package/dist/nuxt/module.cjs +0 -5
- package/dist/nuxt/module.d.ts +0 -9
- package/dist/nuxt/types.d.ts +0 -1
- package/dist/plugins/.turbo/turbo-lint.log +0 -13
- package/dist/plugins/.turbo/turbo-release.log +0 -7
- package/dist/plugins/MagicAccordion/demo/data/footer.json +0 -117
- package/dist/plugins/MagicCommand/demo/data/about.json +0 -3
- package/dist/plugins/MagicCommand/demo/data/search.json +0 -594
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerStateEmitter.d.ts +0 -15
- package/dist/plugins/MagicPlayer/src/composables/private/usePlayerStateEmitter.mjs +0 -9
- package/dist/plugins/index.d.ts +0 -13
- package/dist/plugins/index.mjs +0 -13
- package/dist/utils/css/transitions.css +0 -8
- /package/dist/plugins/{.turbo/turbo-build.log → MagicError/src/MagicError.d.ts} +0 -0
- /package/dist/plugins/MagicToast/{symbols → src/symbols}/index.d.ts +0 -0
- /package/dist/plugins/MagicToast/{symbols → src/symbols}/index.mjs +0 -0
- /package/dist/utils/css/{transitions → animations}/clip.css +0 -0
- /package/dist/utils/css/{transitions → animations}/fade-up.css +0 -0
- /package/dist/utils/css/{transitions → animations}/fade.css +0 -0
- /package/dist/utils/css/{transitions → animations}/slide-btt.css +0 -0
- /package/dist/utils/css/{transitions → animations}/slide-ltr.css +0 -0
- /package/dist/utils/css/{transitions → animations}/slide-rtl.css +0 -0
- /package/dist/utils/css/{transitions → animations}/slide-ttb.css +0 -0
- /package/dist/utils/css/{transitions → animations}/zoom.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/auto-size-out.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/clip-in.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/clip-out.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/fade-down-in.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/fade-down-out.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/fade-in.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/fade-out.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/fade-up-in.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/fade-up-out.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/flip-in.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/flip-out.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/slide-btt-in.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/slide-btt-out.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/slide-ltr-in.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/slide-ltr-out.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/slide-rtl-in.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/slide-rtl-out.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/slide-ttb-in.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/slide-ttb-out.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/squash-y.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/zoom-in.css +0 -0
- /package/dist/utils/css/{animations → keyframes}/zoom-out.css +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare function useMagicEmitter(): {
|
|
2
2
|
on: {
|
|
3
|
-
<Key extends "progress" | "collision" | keyof import("../../../MagicDraggable/src/types").DraggableEvents | "acceptAll" | "rejectAll" | "acceptSelected" | keyof import("../../../MagicAccordion/src/types").AccordionEvents>(type: Key, handler: import("mitt").Handler<({
|
|
3
|
+
<Key extends "progress" | "collision" | keyof import("../../../MagicPlayer/src/types/index.js").PlayerEvents | keyof import("../../../MagicDraggable/src/types/index.js").DraggableEvents | "acceptAll" | "rejectAll" | "acceptSelected" | keyof import("../../../MagicAccordion/src/types/index.js").AccordionEvents>(type: Key, handler: import("mitt").Handler<({
|
|
4
4
|
beforeEnter: string | {
|
|
5
5
|
id: string;
|
|
6
6
|
viewId: string;
|
|
@@ -68,32 +68,32 @@ export declare function useMagicEmitter(): {
|
|
|
68
68
|
id: string;
|
|
69
69
|
viewId: string;
|
|
70
70
|
};
|
|
71
|
-
acceptAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
72
|
-
rejectAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
73
|
-
acceptSelected: import("../../../MagicCookie/src/types").CookieConsent;
|
|
71
|
+
acceptAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
72
|
+
rejectAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
73
|
+
acceptSelected: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
74
74
|
} & Omit<{
|
|
75
75
|
beforeSnap: {
|
|
76
76
|
id: string;
|
|
77
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
77
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
78
78
|
} | {
|
|
79
79
|
id: string;
|
|
80
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
80
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
81
81
|
};
|
|
82
82
|
snapTo: {
|
|
83
83
|
id: string;
|
|
84
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
84
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
85
85
|
duration?: number;
|
|
86
86
|
} | {
|
|
87
87
|
id: string;
|
|
88
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
88
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
89
89
|
duration?: number;
|
|
90
90
|
};
|
|
91
91
|
afterSnap: {
|
|
92
92
|
id: string;
|
|
93
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
93
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
94
94
|
} | {
|
|
95
95
|
id: string;
|
|
96
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
96
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
97
97
|
};
|
|
98
98
|
beforeDrag: {
|
|
99
99
|
id: string;
|
|
@@ -154,16 +154,16 @@ export declare function useMagicEmitter(): {
|
|
|
154
154
|
};
|
|
155
155
|
beforeSnap: {
|
|
156
156
|
id: string;
|
|
157
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
157
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
158
158
|
};
|
|
159
159
|
snapTo: {
|
|
160
160
|
id: string;
|
|
161
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
161
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
162
162
|
duration?: number;
|
|
163
163
|
};
|
|
164
164
|
afterSnap: {
|
|
165
165
|
id: string;
|
|
166
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
166
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
167
167
|
};
|
|
168
168
|
beforeDrag: {
|
|
169
169
|
id: string;
|
|
@@ -235,12 +235,29 @@ export declare function useMagicEmitter(): {
|
|
|
235
235
|
id: string;
|
|
236
236
|
viewId: string;
|
|
237
237
|
};
|
|
238
|
+
} & Omit<{
|
|
239
|
+
onDragStart: string;
|
|
240
|
+
onDragEnd: string;
|
|
241
|
+
onEnd: string;
|
|
242
|
+
onFullscreenEnter: string;
|
|
243
|
+
onFullscreenLeave: string;
|
|
244
|
+
onLoad: string;
|
|
245
|
+
onMute: string;
|
|
246
|
+
onUnmute: string;
|
|
247
|
+
onPause: string;
|
|
248
|
+
onPlay: string;
|
|
249
|
+
onRateChange: string;
|
|
250
|
+
onStall: string;
|
|
251
|
+
onStart: string;
|
|
252
|
+
onTouch: string;
|
|
253
|
+
onVolumeChange: string;
|
|
254
|
+
onWait: string;
|
|
238
255
|
} & Omit<{
|
|
239
256
|
collision: {
|
|
240
257
|
id: string;
|
|
241
|
-
direction: import("../../../MagicScroll/src/types").ScrollDirection;
|
|
242
|
-
childEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
243
|
-
parentEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
258
|
+
direction: import("../../../MagicScroll/src/types/index.js").ScrollDirection;
|
|
259
|
+
childEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
260
|
+
parentEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
244
261
|
};
|
|
245
262
|
} & Omit<{
|
|
246
263
|
beforeEnter: string;
|
|
@@ -249,7 +266,7 @@ export declare function useMagicEmitter(): {
|
|
|
249
266
|
beforeLeave: string;
|
|
250
267
|
leave: string;
|
|
251
268
|
afterLeave: string;
|
|
252
|
-
} & Omit<object, keyof import("../../../MagicToast/src/types").ToastEvents>, "collision">, keyof import("../../../MagicMenu/src/types").MenuEvents>, keyof import("../../../MagicModal/src/types").ModalEvents>, keyof import("../../../MagicDrawer/src/types").DrawerEvents>, keyof import("../../../MagicDraggable/src/types").DraggableEvents>, keyof import("../../../MagicCookie/src/types").CookieEvents>, keyof import("../../../MagicAccordion/src/types").AccordionEvents>)[Key]>): void;
|
|
269
|
+
} & Omit<object, keyof import("../../../MagicToast/src/types/index.js").ToastEvents>, "collision">, keyof import("../../../MagicPlayer/src/types/index.js").PlayerEvents>, keyof import("../../../MagicMenu/src/types/index.js").MenuEvents>, keyof import("../../../MagicModal/src/types/index.js").ModalEvents>, keyof import("../../../MagicDrawer/src/types/index.js").DrawerEvents>, keyof import("../../../MagicDraggable/src/types/index.js").DraggableEvents>, keyof import("../../../MagicCookie/src/types/index.js").CookieEvents>, keyof import("../../../MagicAccordion/src/types/index.js").AccordionEvents>)[Key]>): void;
|
|
253
270
|
(type: "*", handler: import("mitt").WildcardHandler<{
|
|
254
271
|
beforeEnter: string | {
|
|
255
272
|
id: string;
|
|
@@ -318,32 +335,32 @@ export declare function useMagicEmitter(): {
|
|
|
318
335
|
id: string;
|
|
319
336
|
viewId: string;
|
|
320
337
|
};
|
|
321
|
-
acceptAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
322
|
-
rejectAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
323
|
-
acceptSelected: import("../../../MagicCookie/src/types").CookieConsent;
|
|
338
|
+
acceptAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
339
|
+
rejectAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
340
|
+
acceptSelected: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
324
341
|
} & Omit<{
|
|
325
342
|
beforeSnap: {
|
|
326
343
|
id: string;
|
|
327
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
344
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
328
345
|
} | {
|
|
329
346
|
id: string;
|
|
330
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
347
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
331
348
|
};
|
|
332
349
|
snapTo: {
|
|
333
350
|
id: string;
|
|
334
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
351
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
335
352
|
duration?: number;
|
|
336
353
|
} | {
|
|
337
354
|
id: string;
|
|
338
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
355
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
339
356
|
duration?: number;
|
|
340
357
|
};
|
|
341
358
|
afterSnap: {
|
|
342
359
|
id: string;
|
|
343
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
360
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
344
361
|
} | {
|
|
345
362
|
id: string;
|
|
346
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
363
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
347
364
|
};
|
|
348
365
|
beforeDrag: {
|
|
349
366
|
id: string;
|
|
@@ -404,16 +421,16 @@ export declare function useMagicEmitter(): {
|
|
|
404
421
|
};
|
|
405
422
|
beforeSnap: {
|
|
406
423
|
id: string;
|
|
407
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
424
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
408
425
|
};
|
|
409
426
|
snapTo: {
|
|
410
427
|
id: string;
|
|
411
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
428
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
412
429
|
duration?: number;
|
|
413
430
|
};
|
|
414
431
|
afterSnap: {
|
|
415
432
|
id: string;
|
|
416
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
433
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
417
434
|
};
|
|
418
435
|
beforeDrag: {
|
|
419
436
|
id: string;
|
|
@@ -485,12 +502,29 @@ export declare function useMagicEmitter(): {
|
|
|
485
502
|
id: string;
|
|
486
503
|
viewId: string;
|
|
487
504
|
};
|
|
505
|
+
} & Omit<{
|
|
506
|
+
onDragStart: string;
|
|
507
|
+
onDragEnd: string;
|
|
508
|
+
onEnd: string;
|
|
509
|
+
onFullscreenEnter: string;
|
|
510
|
+
onFullscreenLeave: string;
|
|
511
|
+
onLoad: string;
|
|
512
|
+
onMute: string;
|
|
513
|
+
onUnmute: string;
|
|
514
|
+
onPause: string;
|
|
515
|
+
onPlay: string;
|
|
516
|
+
onRateChange: string;
|
|
517
|
+
onStall: string;
|
|
518
|
+
onStart: string;
|
|
519
|
+
onTouch: string;
|
|
520
|
+
onVolumeChange: string;
|
|
521
|
+
onWait: string;
|
|
488
522
|
} & Omit<{
|
|
489
523
|
collision: {
|
|
490
524
|
id: string;
|
|
491
|
-
direction: import("../../../MagicScroll/src/types").ScrollDirection;
|
|
492
|
-
childEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
493
|
-
parentEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
525
|
+
direction: import("../../../MagicScroll/src/types/index.js").ScrollDirection;
|
|
526
|
+
childEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
527
|
+
parentEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
494
528
|
};
|
|
495
529
|
} & Omit<{
|
|
496
530
|
beforeEnter: string;
|
|
@@ -499,10 +533,10 @@ export declare function useMagicEmitter(): {
|
|
|
499
533
|
beforeLeave: string;
|
|
500
534
|
leave: string;
|
|
501
535
|
afterLeave: string;
|
|
502
|
-
} & Omit<object, keyof import("../../../MagicToast/src/types").ToastEvents>, "collision">, keyof import("../../../MagicMenu/src/types").MenuEvents>, keyof import("../../../MagicModal/src/types").ModalEvents>, keyof import("../../../MagicDrawer/src/types").DrawerEvents>, keyof import("../../../MagicDraggable/src/types").DraggableEvents>, keyof import("../../../MagicCookie/src/types").CookieEvents>, keyof import("../../../MagicAccordion/src/types").AccordionEvents>>): void;
|
|
536
|
+
} & Omit<object, keyof import("../../../MagicToast/src/types/index.js").ToastEvents>, "collision">, keyof import("../../../MagicPlayer/src/types/index.js").PlayerEvents>, keyof import("../../../MagicMenu/src/types/index.js").MenuEvents>, keyof import("../../../MagicModal/src/types/index.js").ModalEvents>, keyof import("../../../MagicDrawer/src/types/index.js").DrawerEvents>, keyof import("../../../MagicDraggable/src/types/index.js").DraggableEvents>, keyof import("../../../MagicCookie/src/types/index.js").CookieEvents>, keyof import("../../../MagicAccordion/src/types/index.js").AccordionEvents>>): void;
|
|
503
537
|
};
|
|
504
538
|
off: {
|
|
505
|
-
<Key extends "progress" | "collision" | keyof import("../../../MagicDraggable/src/types").DraggableEvents | "acceptAll" | "rejectAll" | "acceptSelected" | keyof import("../../../MagicAccordion/src/types").AccordionEvents>(type: Key, handler?: import("mitt").Handler<({
|
|
539
|
+
<Key extends "progress" | "collision" | keyof import("../../../MagicPlayer/src/types/index.js").PlayerEvents | keyof import("../../../MagicDraggable/src/types/index.js").DraggableEvents | "acceptAll" | "rejectAll" | "acceptSelected" | keyof import("../../../MagicAccordion/src/types/index.js").AccordionEvents>(type: Key, handler?: import("mitt").Handler<({
|
|
506
540
|
beforeEnter: string | {
|
|
507
541
|
id: string;
|
|
508
542
|
viewId: string;
|
|
@@ -570,32 +604,32 @@ export declare function useMagicEmitter(): {
|
|
|
570
604
|
id: string;
|
|
571
605
|
viewId: string;
|
|
572
606
|
};
|
|
573
|
-
acceptAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
574
|
-
rejectAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
575
|
-
acceptSelected: import("../../../MagicCookie/src/types").CookieConsent;
|
|
607
|
+
acceptAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
608
|
+
rejectAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
609
|
+
acceptSelected: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
576
610
|
} & Omit<{
|
|
577
611
|
beforeSnap: {
|
|
578
612
|
id: string;
|
|
579
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
613
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
580
614
|
} | {
|
|
581
615
|
id: string;
|
|
582
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
616
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
583
617
|
};
|
|
584
618
|
snapTo: {
|
|
585
619
|
id: string;
|
|
586
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
620
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
587
621
|
duration?: number;
|
|
588
622
|
} | {
|
|
589
623
|
id: string;
|
|
590
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
624
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
591
625
|
duration?: number;
|
|
592
626
|
};
|
|
593
627
|
afterSnap: {
|
|
594
628
|
id: string;
|
|
595
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
629
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
596
630
|
} | {
|
|
597
631
|
id: string;
|
|
598
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
632
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
599
633
|
};
|
|
600
634
|
beforeDrag: {
|
|
601
635
|
id: string;
|
|
@@ -656,16 +690,16 @@ export declare function useMagicEmitter(): {
|
|
|
656
690
|
};
|
|
657
691
|
beforeSnap: {
|
|
658
692
|
id: string;
|
|
659
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
693
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
660
694
|
};
|
|
661
695
|
snapTo: {
|
|
662
696
|
id: string;
|
|
663
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
697
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
664
698
|
duration?: number;
|
|
665
699
|
};
|
|
666
700
|
afterSnap: {
|
|
667
701
|
id: string;
|
|
668
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
702
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
669
703
|
};
|
|
670
704
|
beforeDrag: {
|
|
671
705
|
id: string;
|
|
@@ -737,12 +771,29 @@ export declare function useMagicEmitter(): {
|
|
|
737
771
|
id: string;
|
|
738
772
|
viewId: string;
|
|
739
773
|
};
|
|
774
|
+
} & Omit<{
|
|
775
|
+
onDragStart: string;
|
|
776
|
+
onDragEnd: string;
|
|
777
|
+
onEnd: string;
|
|
778
|
+
onFullscreenEnter: string;
|
|
779
|
+
onFullscreenLeave: string;
|
|
780
|
+
onLoad: string;
|
|
781
|
+
onMute: string;
|
|
782
|
+
onUnmute: string;
|
|
783
|
+
onPause: string;
|
|
784
|
+
onPlay: string;
|
|
785
|
+
onRateChange: string;
|
|
786
|
+
onStall: string;
|
|
787
|
+
onStart: string;
|
|
788
|
+
onTouch: string;
|
|
789
|
+
onVolumeChange: string;
|
|
790
|
+
onWait: string;
|
|
740
791
|
} & Omit<{
|
|
741
792
|
collision: {
|
|
742
793
|
id: string;
|
|
743
|
-
direction: import("../../../MagicScroll/src/types").ScrollDirection;
|
|
744
|
-
childEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
745
|
-
parentEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
794
|
+
direction: import("../../../MagicScroll/src/types/index.js").ScrollDirection;
|
|
795
|
+
childEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
796
|
+
parentEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
746
797
|
};
|
|
747
798
|
} & Omit<{
|
|
748
799
|
beforeEnter: string;
|
|
@@ -751,7 +802,7 @@ export declare function useMagicEmitter(): {
|
|
|
751
802
|
beforeLeave: string;
|
|
752
803
|
leave: string;
|
|
753
804
|
afterLeave: string;
|
|
754
|
-
} & Omit<object, keyof import("../../../MagicToast/src/types").ToastEvents>, "collision">, keyof import("../../../MagicMenu/src/types").MenuEvents>, keyof import("../../../MagicModal/src/types").ModalEvents>, keyof import("../../../MagicDrawer/src/types").DrawerEvents>, keyof import("../../../MagicDraggable/src/types").DraggableEvents>, keyof import("../../../MagicCookie/src/types").CookieEvents>, keyof import("../../../MagicAccordion/src/types").AccordionEvents>)[Key]> | undefined): void;
|
|
805
|
+
} & Omit<object, keyof import("../../../MagicToast/src/types/index.js").ToastEvents>, "collision">, keyof import("../../../MagicPlayer/src/types/index.js").PlayerEvents>, keyof import("../../../MagicMenu/src/types/index.js").MenuEvents>, keyof import("../../../MagicModal/src/types/index.js").ModalEvents>, keyof import("../../../MagicDrawer/src/types/index.js").DrawerEvents>, keyof import("../../../MagicDraggable/src/types/index.js").DraggableEvents>, keyof import("../../../MagicCookie/src/types/index.js").CookieEvents>, keyof import("../../../MagicAccordion/src/types/index.js").AccordionEvents>)[Key]> | undefined): void;
|
|
755
806
|
(type: "*", handler: import("mitt").WildcardHandler<{
|
|
756
807
|
beforeEnter: string | {
|
|
757
808
|
id: string;
|
|
@@ -820,32 +871,32 @@ export declare function useMagicEmitter(): {
|
|
|
820
871
|
id: string;
|
|
821
872
|
viewId: string;
|
|
822
873
|
};
|
|
823
|
-
acceptAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
824
|
-
rejectAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
825
|
-
acceptSelected: import("../../../MagicCookie/src/types").CookieConsent;
|
|
874
|
+
acceptAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
875
|
+
rejectAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
876
|
+
acceptSelected: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
826
877
|
} & Omit<{
|
|
827
878
|
beforeSnap: {
|
|
828
879
|
id: string;
|
|
829
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
880
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
830
881
|
} | {
|
|
831
882
|
id: string;
|
|
832
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
883
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
833
884
|
};
|
|
834
885
|
snapTo: {
|
|
835
886
|
id: string;
|
|
836
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
887
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
837
888
|
duration?: number;
|
|
838
889
|
} | {
|
|
839
890
|
id: string;
|
|
840
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
891
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
841
892
|
duration?: number;
|
|
842
893
|
};
|
|
843
894
|
afterSnap: {
|
|
844
895
|
id: string;
|
|
845
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
896
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
846
897
|
} | {
|
|
847
898
|
id: string;
|
|
848
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
899
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
849
900
|
};
|
|
850
901
|
beforeDrag: {
|
|
851
902
|
id: string;
|
|
@@ -906,16 +957,16 @@ export declare function useMagicEmitter(): {
|
|
|
906
957
|
};
|
|
907
958
|
beforeSnap: {
|
|
908
959
|
id: string;
|
|
909
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
960
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
910
961
|
};
|
|
911
962
|
snapTo: {
|
|
912
963
|
id: string;
|
|
913
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
964
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
914
965
|
duration?: number;
|
|
915
966
|
};
|
|
916
967
|
afterSnap: {
|
|
917
968
|
id: string;
|
|
918
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
969
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
919
970
|
};
|
|
920
971
|
beforeDrag: {
|
|
921
972
|
id: string;
|
|
@@ -987,12 +1038,29 @@ export declare function useMagicEmitter(): {
|
|
|
987
1038
|
id: string;
|
|
988
1039
|
viewId: string;
|
|
989
1040
|
};
|
|
1041
|
+
} & Omit<{
|
|
1042
|
+
onDragStart: string;
|
|
1043
|
+
onDragEnd: string;
|
|
1044
|
+
onEnd: string;
|
|
1045
|
+
onFullscreenEnter: string;
|
|
1046
|
+
onFullscreenLeave: string;
|
|
1047
|
+
onLoad: string;
|
|
1048
|
+
onMute: string;
|
|
1049
|
+
onUnmute: string;
|
|
1050
|
+
onPause: string;
|
|
1051
|
+
onPlay: string;
|
|
1052
|
+
onRateChange: string;
|
|
1053
|
+
onStall: string;
|
|
1054
|
+
onStart: string;
|
|
1055
|
+
onTouch: string;
|
|
1056
|
+
onVolumeChange: string;
|
|
1057
|
+
onWait: string;
|
|
990
1058
|
} & Omit<{
|
|
991
1059
|
collision: {
|
|
992
1060
|
id: string;
|
|
993
|
-
direction: import("../../../MagicScroll/src/types").ScrollDirection;
|
|
994
|
-
childEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
995
|
-
parentEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
1061
|
+
direction: import("../../../MagicScroll/src/types/index.js").ScrollDirection;
|
|
1062
|
+
childEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
1063
|
+
parentEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
996
1064
|
};
|
|
997
1065
|
} & Omit<{
|
|
998
1066
|
beforeEnter: string;
|
|
@@ -1001,10 +1069,10 @@ export declare function useMagicEmitter(): {
|
|
|
1001
1069
|
beforeLeave: string;
|
|
1002
1070
|
leave: string;
|
|
1003
1071
|
afterLeave: string;
|
|
1004
|
-
} & Omit<object, keyof import("../../../MagicToast/src/types").ToastEvents>, "collision">, keyof import("../../../MagicMenu/src/types").MenuEvents>, keyof import("../../../MagicModal/src/types").ModalEvents>, keyof import("../../../MagicDrawer/src/types").DrawerEvents>, keyof import("../../../MagicDraggable/src/types").DraggableEvents>, keyof import("../../../MagicCookie/src/types").CookieEvents>, keyof import("../../../MagicAccordion/src/types").AccordionEvents>>): void;
|
|
1072
|
+
} & Omit<object, keyof import("../../../MagicToast/src/types/index.js").ToastEvents>, "collision">, keyof import("../../../MagicPlayer/src/types/index.js").PlayerEvents>, keyof import("../../../MagicMenu/src/types/index.js").MenuEvents>, keyof import("../../../MagicModal/src/types/index.js").ModalEvents>, keyof import("../../../MagicDrawer/src/types/index.js").DrawerEvents>, keyof import("../../../MagicDraggable/src/types/index.js").DraggableEvents>, keyof import("../../../MagicCookie/src/types/index.js").CookieEvents>, keyof import("../../../MagicAccordion/src/types/index.js").AccordionEvents>>): void;
|
|
1005
1073
|
};
|
|
1006
1074
|
emit: {
|
|
1007
|
-
<Key extends "progress" | "collision" | keyof import("../../../MagicDraggable/src/types").DraggableEvents | "acceptAll" | "rejectAll" | "acceptSelected" | keyof import("../../../MagicAccordion/src/types").AccordionEvents>(type: Key, event: ({
|
|
1075
|
+
<Key extends "progress" | "collision" | keyof import("../../../MagicPlayer/src/types/index.js").PlayerEvents | keyof import("../../../MagicDraggable/src/types/index.js").DraggableEvents | "acceptAll" | "rejectAll" | "acceptSelected" | keyof import("../../../MagicAccordion/src/types/index.js").AccordionEvents>(type: Key, event: ({
|
|
1008
1076
|
beforeEnter: string | {
|
|
1009
1077
|
id: string;
|
|
1010
1078
|
viewId: string;
|
|
@@ -1072,32 +1140,32 @@ export declare function useMagicEmitter(): {
|
|
|
1072
1140
|
id: string;
|
|
1073
1141
|
viewId: string;
|
|
1074
1142
|
};
|
|
1075
|
-
acceptAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
1076
|
-
rejectAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
1077
|
-
acceptSelected: import("../../../MagicCookie/src/types").CookieConsent;
|
|
1143
|
+
acceptAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
1144
|
+
rejectAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
1145
|
+
acceptSelected: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
1078
1146
|
} & Omit<{
|
|
1079
1147
|
beforeSnap: {
|
|
1080
1148
|
id: string;
|
|
1081
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1149
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1082
1150
|
} | {
|
|
1083
1151
|
id: string;
|
|
1084
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
1152
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
1085
1153
|
};
|
|
1086
1154
|
snapTo: {
|
|
1087
1155
|
id: string;
|
|
1088
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1156
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1089
1157
|
duration?: number;
|
|
1090
1158
|
} | {
|
|
1091
1159
|
id: string;
|
|
1092
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
1160
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
1093
1161
|
duration?: number;
|
|
1094
1162
|
};
|
|
1095
1163
|
afterSnap: {
|
|
1096
1164
|
id: string;
|
|
1097
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1165
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1098
1166
|
} | {
|
|
1099
1167
|
id: string;
|
|
1100
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
1168
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
1101
1169
|
};
|
|
1102
1170
|
beforeDrag: {
|
|
1103
1171
|
id: string;
|
|
@@ -1158,16 +1226,16 @@ export declare function useMagicEmitter(): {
|
|
|
1158
1226
|
};
|
|
1159
1227
|
beforeSnap: {
|
|
1160
1228
|
id: string;
|
|
1161
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1229
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1162
1230
|
};
|
|
1163
1231
|
snapTo: {
|
|
1164
1232
|
id: string;
|
|
1165
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1233
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1166
1234
|
duration?: number;
|
|
1167
1235
|
};
|
|
1168
1236
|
afterSnap: {
|
|
1169
1237
|
id: string;
|
|
1170
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1238
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1171
1239
|
};
|
|
1172
1240
|
beforeDrag: {
|
|
1173
1241
|
id: string;
|
|
@@ -1239,12 +1307,29 @@ export declare function useMagicEmitter(): {
|
|
|
1239
1307
|
id: string;
|
|
1240
1308
|
viewId: string;
|
|
1241
1309
|
};
|
|
1310
|
+
} & Omit<{
|
|
1311
|
+
onDragStart: string;
|
|
1312
|
+
onDragEnd: string;
|
|
1313
|
+
onEnd: string;
|
|
1314
|
+
onFullscreenEnter: string;
|
|
1315
|
+
onFullscreenLeave: string;
|
|
1316
|
+
onLoad: string;
|
|
1317
|
+
onMute: string;
|
|
1318
|
+
onUnmute: string;
|
|
1319
|
+
onPause: string;
|
|
1320
|
+
onPlay: string;
|
|
1321
|
+
onRateChange: string;
|
|
1322
|
+
onStall: string;
|
|
1323
|
+
onStart: string;
|
|
1324
|
+
onTouch: string;
|
|
1325
|
+
onVolumeChange: string;
|
|
1326
|
+
onWait: string;
|
|
1242
1327
|
} & Omit<{
|
|
1243
1328
|
collision: {
|
|
1244
1329
|
id: string;
|
|
1245
|
-
direction: import("../../../MagicScroll/src/types").ScrollDirection;
|
|
1246
|
-
childEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
1247
|
-
parentEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
1330
|
+
direction: import("../../../MagicScroll/src/types/index.js").ScrollDirection;
|
|
1331
|
+
childEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
1332
|
+
parentEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
1248
1333
|
};
|
|
1249
1334
|
} & Omit<{
|
|
1250
1335
|
beforeEnter: string;
|
|
@@ -1253,8 +1338,8 @@ export declare function useMagicEmitter(): {
|
|
|
1253
1338
|
beforeLeave: string;
|
|
1254
1339
|
leave: string;
|
|
1255
1340
|
afterLeave: string;
|
|
1256
|
-
} & Omit<object, keyof import("../../../MagicToast/src/types").ToastEvents>, "collision">, keyof import("../../../MagicMenu/src/types").MenuEvents>, keyof import("../../../MagicModal/src/types").ModalEvents>, keyof import("../../../MagicDrawer/src/types").DrawerEvents>, keyof import("../../../MagicDraggable/src/types").DraggableEvents>, keyof import("../../../MagicCookie/src/types").CookieEvents>, keyof import("../../../MagicAccordion/src/types").AccordionEvents>)[Key]): void;
|
|
1257
|
-
<Key extends "progress" | "collision" | keyof import("../../../MagicDraggable/src/types").DraggableEvents | "acceptAll" | "rejectAll" | "acceptSelected" | keyof import("../../../MagicAccordion/src/types").AccordionEvents>(type: undefined extends ({
|
|
1341
|
+
} & Omit<object, keyof import("../../../MagicToast/src/types/index.js").ToastEvents>, "collision">, keyof import("../../../MagicPlayer/src/types/index.js").PlayerEvents>, keyof import("../../../MagicMenu/src/types/index.js").MenuEvents>, keyof import("../../../MagicModal/src/types/index.js").ModalEvents>, keyof import("../../../MagicDrawer/src/types/index.js").DrawerEvents>, keyof import("../../../MagicDraggable/src/types/index.js").DraggableEvents>, keyof import("../../../MagicCookie/src/types/index.js").CookieEvents>, keyof import("../../../MagicAccordion/src/types/index.js").AccordionEvents>)[Key]): void;
|
|
1342
|
+
<Key extends "progress" | "collision" | keyof import("../../../MagicPlayer/src/types/index.js").PlayerEvents | keyof import("../../../MagicDraggable/src/types/index.js").DraggableEvents | "acceptAll" | "rejectAll" | "acceptSelected" | keyof import("../../../MagicAccordion/src/types/index.js").AccordionEvents>(type: undefined extends ({
|
|
1258
1343
|
beforeEnter: string | {
|
|
1259
1344
|
id: string;
|
|
1260
1345
|
viewId: string;
|
|
@@ -1322,32 +1407,32 @@ export declare function useMagicEmitter(): {
|
|
|
1322
1407
|
id: string;
|
|
1323
1408
|
viewId: string;
|
|
1324
1409
|
};
|
|
1325
|
-
acceptAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
1326
|
-
rejectAll: import("../../../MagicCookie/src/types").CookieConsent;
|
|
1327
|
-
acceptSelected: import("../../../MagicCookie/src/types").CookieConsent;
|
|
1410
|
+
acceptAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
1411
|
+
rejectAll: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
1412
|
+
acceptSelected: import("../../../MagicCookie/src/types/index.js").CookieConsent;
|
|
1328
1413
|
} & Omit<{
|
|
1329
1414
|
beforeSnap: {
|
|
1330
1415
|
id: string;
|
|
1331
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1416
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1332
1417
|
} | {
|
|
1333
1418
|
id: string;
|
|
1334
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
1419
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
1335
1420
|
};
|
|
1336
1421
|
snapTo: {
|
|
1337
1422
|
id: string;
|
|
1338
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1423
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1339
1424
|
duration?: number;
|
|
1340
1425
|
} | {
|
|
1341
1426
|
id: string;
|
|
1342
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
1427
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
1343
1428
|
duration?: number;
|
|
1344
1429
|
};
|
|
1345
1430
|
afterSnap: {
|
|
1346
1431
|
id: string;
|
|
1347
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1432
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1348
1433
|
} | {
|
|
1349
1434
|
id: string;
|
|
1350
|
-
snapPoint: import("../../../MagicDraggable/src/types").DraggableSnapPoint;
|
|
1435
|
+
snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
|
|
1351
1436
|
};
|
|
1352
1437
|
beforeDrag: {
|
|
1353
1438
|
id: string;
|
|
@@ -1408,16 +1493,16 @@ export declare function useMagicEmitter(): {
|
|
|
1408
1493
|
};
|
|
1409
1494
|
beforeSnap: {
|
|
1410
1495
|
id: string;
|
|
1411
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1496
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1412
1497
|
};
|
|
1413
1498
|
snapTo: {
|
|
1414
1499
|
id: string;
|
|
1415
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1500
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1416
1501
|
duration?: number;
|
|
1417
1502
|
};
|
|
1418
1503
|
afterSnap: {
|
|
1419
1504
|
id: string;
|
|
1420
|
-
snapPoint: import("../../../MagicDrawer/src/types").DrawerSnapPoint;
|
|
1505
|
+
snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
|
|
1421
1506
|
};
|
|
1422
1507
|
beforeDrag: {
|
|
1423
1508
|
id: string;
|
|
@@ -1489,12 +1574,29 @@ export declare function useMagicEmitter(): {
|
|
|
1489
1574
|
id: string;
|
|
1490
1575
|
viewId: string;
|
|
1491
1576
|
};
|
|
1577
|
+
} & Omit<{
|
|
1578
|
+
onDragStart: string;
|
|
1579
|
+
onDragEnd: string;
|
|
1580
|
+
onEnd: string;
|
|
1581
|
+
onFullscreenEnter: string;
|
|
1582
|
+
onFullscreenLeave: string;
|
|
1583
|
+
onLoad: string;
|
|
1584
|
+
onMute: string;
|
|
1585
|
+
onUnmute: string;
|
|
1586
|
+
onPause: string;
|
|
1587
|
+
onPlay: string;
|
|
1588
|
+
onRateChange: string;
|
|
1589
|
+
onStall: string;
|
|
1590
|
+
onStart: string;
|
|
1591
|
+
onTouch: string;
|
|
1592
|
+
onVolumeChange: string;
|
|
1593
|
+
onWait: string;
|
|
1492
1594
|
} & Omit<{
|
|
1493
1595
|
collision: {
|
|
1494
1596
|
id: string;
|
|
1495
|
-
direction: import("../../../MagicScroll/src/types").ScrollDirection;
|
|
1496
|
-
childEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
1497
|
-
parentEdge: import("../../../MagicScroll/src/types").CollisionEdge;
|
|
1597
|
+
direction: import("../../../MagicScroll/src/types/index.js").ScrollDirection;
|
|
1598
|
+
childEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
1599
|
+
parentEdge: import("../../../MagicScroll/src/types/index.js").CollisionEdge;
|
|
1498
1600
|
};
|
|
1499
1601
|
} & Omit<{
|
|
1500
1602
|
beforeEnter: string;
|
|
@@ -1503,6 +1605,6 @@ export declare function useMagicEmitter(): {
|
|
|
1503
1605
|
beforeLeave: string;
|
|
1504
1606
|
leave: string;
|
|
1505
1607
|
afterLeave: string;
|
|
1506
|
-
} & Omit<object, keyof import("../../../MagicToast/src/types").ToastEvents>, "collision">, keyof import("../../../MagicMenu/src/types").MenuEvents>, keyof import("../../../MagicModal/src/types").ModalEvents>, keyof import("../../../MagicDrawer/src/types").DrawerEvents>, keyof import("../../../MagicDraggable/src/types").DraggableEvents>, keyof import("../../../MagicCookie/src/types").CookieEvents>, keyof import("../../../MagicAccordion/src/types").AccordionEvents>)[Key] ? Key : never): void;
|
|
1608
|
+
} & Omit<object, keyof import("../../../MagicToast/src/types/index.js").ToastEvents>, "collision">, keyof import("../../../MagicPlayer/src/types/index.js").PlayerEvents>, keyof import("../../../MagicMenu/src/types/index.js").MenuEvents>, keyof import("../../../MagicModal/src/types/index.js").ModalEvents>, keyof import("../../../MagicDrawer/src/types/index.js").DrawerEvents>, keyof import("../../../MagicDraggable/src/types/index.js").DraggableEvents>, keyof import("../../../MagicCookie/src/types/index.js").CookieEvents>, keyof import("../../../MagicAccordion/src/types/index.js").AccordionEvents>)[Key] ? Key : never): void;
|
|
1507
1609
|
};
|
|
1508
1610
|
};
|