motion-start 0.0.3 → 0.1.0
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 +37 -29
- package/dist/animation/UseAnimatedState.svelte +26 -24
- package/dist/animation/UseAnimatedState.svelte.d.ts +5 -3
- package/dist/animation/UseAnimatedState.svelte.d.ts.map +1 -1
- package/dist/animation/UseAnimation.svelte.d.ts +1 -1
- package/dist/animation/animation-controls.d.ts +1 -1
- package/dist/animation/animation-controls.d.ts.map +1 -1
- package/dist/animation/animation-controls.js +12 -12
- package/dist/animation/use-animation.d.ts +1 -1
- package/dist/animation/utils/default-transitions.d.ts +1 -1
- package/dist/animation/utils/default-transitions.d.ts.map +1 -1
- package/dist/animation/utils/default-transitions.js +27 -37
- package/dist/animation/utils/easing.d.ts +2 -2
- package/dist/animation/utils/easing.d.ts.map +1 -1
- package/dist/animation/utils/easing.js +5 -6
- package/dist/animation/utils/transitions.d.ts +5 -5
- package/dist/animation/utils/transitions.d.ts.map +1 -1
- package/dist/animation/utils/transitions.js +55 -64
- package/dist/animation/utils/variant-resolvers.d.ts +1 -1
- package/dist/animation/utils/variant-resolvers.d.ts.map +1 -1
- package/dist/animation/utils/variant-resolvers.js +1 -5
- package/dist/components/AnimatePresence/AnimatePresence.svelte +16 -8
- package/dist/components/AnimatePresence/AnimatePresence.svelte.d.ts.map +1 -1
- package/dist/components/AnimatePresence/PresenceChild/PresenceChild.svelte +14 -14
- package/dist/components/AnimateSharedLayout/AnimateSharedLayout.svelte +22 -15
- package/dist/components/AnimateSharedLayout/AnimateSharedLayout.svelte.d.ts +1 -1
- package/dist/components/AnimateSharedLayout/AnimateSharedLayout.svelte.d.ts.map +1 -1
- package/dist/components/AnimateSharedLayout/index.d.ts +1 -1
- package/dist/components/AnimateSharedLayout/index.d.ts.map +1 -1
- package/dist/components/AnimateSharedLayout/index.js +1 -0
- package/dist/components/AnimateSharedLayout/types.d.ts +5 -5
- package/dist/components/AnimateSharedLayout/types.d.ts.map +1 -1
- package/dist/components/AnimateSharedLayout/types.js +0 -1
- package/dist/components/AnimateSharedLayout/utils/batcher.d.ts +1 -1
- package/dist/components/AnimateSharedLayout/utils/batcher.d.ts.map +1 -1
- package/dist/components/AnimateSharedLayout/utils/batcher.js +21 -22
- package/dist/components/AnimateSharedLayout/utils/crossfader.d.ts +3 -3
- package/dist/components/AnimateSharedLayout/utils/crossfader.d.ts.map +1 -1
- package/dist/components/AnimateSharedLayout/utils/crossfader.js +40 -46
- package/dist/components/AnimateSharedLayout/utils/rotate.d.ts +1 -1
- package/dist/components/AnimateSharedLayout/utils/rotate.d.ts.map +1 -1
- package/dist/components/AnimateSharedLayout/utils/rotate.js +2 -1
- package/dist/components/AnimateSharedLayout/utils/stack.d.ts +2 -5
- package/dist/components/AnimateSharedLayout/utils/stack.d.ts.map +1 -1
- package/dist/components/AnimateSharedLayout/utils/stack.js +22 -22
- package/dist/components/LazyMotion/LazyMotion.svelte +9 -3
- package/dist/components/LazyMotion/LazyMotion.svelte.d.ts.map +1 -1
- package/dist/components/LazyMotion/types.d.ts +1 -1
- package/dist/components/LazyMotion/types.d.ts.map +1 -1
- package/dist/components/MotionConfig/MotionConfig.svelte +1 -0
- package/dist/components/MotionConfig/MotionConfig.svelte.d.ts.map +1 -1
- package/dist/components/MotionConfig/MotionConfigScaleCorrection.d.ts.map +1 -1
- package/dist/components/MotionConfig/MotionConfigScaleCorrection.js +7 -4
- package/dist/context/DOMcontext.d.ts +4 -3
- package/dist/context/DOMcontext.d.ts.map +1 -1
- package/dist/context/DOMcontext.js +1 -1
- package/dist/context/LayoutGroupContext.d.ts.map +1 -1
- package/dist/context/LayoutGroupContext.js +1 -0
- package/dist/context/LazyContext.d.ts +2 -2
- package/dist/context/LazyContext.d.ts.map +1 -1
- package/dist/context/LazyContext.js +4 -3
- package/dist/context/MotionConfigContext.d.ts.map +1 -1
- package/dist/context/MotionConfigContext.js +1 -0
- package/dist/context/MotionContext/MotionContext.svelte +3 -18
- package/dist/context/MotionContext/MotionContext.svelte.d.ts +2 -36
- package/dist/context/MotionContext/MotionContext.svelte.d.ts.map +1 -1
- package/dist/context/MotionContext/UseCreateMotionContext.svelte +2 -2
- package/dist/context/MotionContext/index.d.ts +4 -1
- package/dist/context/MotionContext/index.d.ts.map +1 -1
- package/dist/context/MotionContext/index.js +8 -1
- package/dist/context/PresenceContext.d.ts.map +1 -1
- package/dist/context/PresenceContext.js +1 -0
- package/dist/context/ScaleCorrectionProvider.svelte +1 -1
- package/dist/context/ScaleCorrectionProvider.svelte.d.ts +2 -2
- package/dist/context/ScaleCorrectionProvider.svelte.d.ts.map +1 -1
- package/dist/context/SharedLayoutContext.d.ts +3 -3
- package/dist/context/SharedLayoutContext.d.ts.map +1 -1
- package/dist/context/SharedLayoutContext.js +5 -3
- package/dist/events/UseDomEvent.svelte +1 -16
- package/dist/events/UseDomEvent.svelte.d.ts +1 -2
- package/dist/events/UseDomEvent.svelte.d.ts.map +1 -1
- package/dist/events/UsePointerEvent.svelte +3 -57
- package/dist/events/UsePointerEvent.svelte.d.ts +1 -3
- package/dist/events/UsePointerEvent.svelte.d.ts.map +1 -1
- package/dist/events/event-info.js +1 -1
- package/dist/events/types.d.ts +4 -3
- package/dist/events/types.d.ts.map +1 -1
- package/dist/events/use-dom-event.d.ts +2 -1
- package/dist/events/use-dom-event.d.ts.map +1 -1
- package/dist/events/use-dom-event.js +7 -1
- package/dist/events/use-pointer-event.d.ts +10 -5
- package/dist/events/use-pointer-event.d.ts.map +1 -1
- package/dist/events/use-pointer-event.js +35 -1
- package/dist/gestures/PanSession.d.ts.map +1 -1
- package/dist/gestures/PanSession.js +1 -2
- package/dist/gestures/UseHoverGesture.svelte +4 -2
- package/dist/gestures/UseHoverGesture.svelte.d.ts.map +1 -1
- package/dist/gestures/UsePanGesture.svelte +6 -5
- package/dist/gestures/UsePanGesture.svelte.d.ts.map +1 -1
- package/dist/gestures/UseTapGesture.svelte +6 -5
- package/dist/gestures/UseTapGesture.svelte.d.ts.map +1 -1
- package/dist/gestures/drag/UseDrag.svelte +2 -2
- package/dist/gestures/drag/UseDragControls.svelte +1 -83
- package/dist/gestures/drag/UseDragControls.svelte.d.ts +7 -2
- package/dist/gestures/drag/UseDragControls.svelte.d.ts.map +1 -1
- package/dist/gestures/drag/VisualElementDragControls.d.ts.map +1 -1
- package/dist/gestures/drag/VisualElementDragControls.js +19 -14
- package/dist/gestures/drag/types.d.ts +12 -11
- package/dist/gestures/drag/types.d.ts.map +1 -1
- package/dist/gestures/drag/types.js +1 -2
- package/dist/gestures/drag/use-drag-controls.d.ts +3 -1
- package/dist/gestures/drag/use-drag-controls.d.ts.map +1 -1
- package/dist/gestures/drag/use-drag-controls.js +1 -1
- package/dist/gestures/drag/utils/constraints.d.ts +3 -3
- package/dist/gestures/drag/utils/constraints.d.ts.map +1 -1
- package/dist/gestures/drag/utils/constraints.js +11 -12
- package/dist/gestures/drag/utils/lock.js +1 -1
- package/dist/gestures/use-focus-gesture.d.ts +1 -1
- package/dist/gestures/use-focus-gesture.d.ts.map +1 -1
- package/dist/gestures/use-hover-gesture.d.ts +1 -1
- package/dist/gestures/use-hover-gesture.d.ts.map +1 -1
- package/dist/gestures/use-pan-gesture.d.ts +1 -1
- package/dist/gestures/use-pan-gesture.d.ts.map +1 -1
- package/dist/gestures/use-tap-gesture.d.ts +1 -1
- package/dist/gestures/use-tap-gesture.d.ts.map +1 -1
- package/dist/gestures/utils/is-node-or-child.d.ts.map +1 -1
- package/dist/gestures/utils/is-node-or-child.js +1 -0
- package/dist/index.d.ts +58 -59
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +43 -41
- package/dist/motion/Motion.svelte +1 -0
- package/dist/motion/Motion.svelte.d.ts.map +1 -1
- package/dist/motion/MotionSSR.svelte +1 -1
- package/dist/motion/features/animations.d.ts +11 -0
- package/dist/motion/features/animations.d.ts.map +1 -0
- package/dist/motion/features/drag.d.ts +11 -0
- package/dist/motion/features/drag.d.ts.map +1 -0
- package/dist/motion/features/gestures.d.ts +11 -0
- package/dist/motion/features/gestures.d.ts.map +1 -0
- package/dist/motion/features/layout/Animate.svelte +20 -19
- package/dist/motion/features/layout/Animate.svelte.d.ts.map +1 -1
- package/dist/motion/features/layout/Measure.svelte +8 -6
- package/dist/motion/features/layout/Measure.svelte.d.ts.map +1 -1
- package/dist/motion/features/layout/index.d.ts +8 -0
- package/dist/motion/features/layout/index.d.ts.map +1 -0
- package/dist/motion/features/layout/index.js +1 -1
- package/dist/motion/features/types.d.ts +3 -2
- package/dist/motion/features/types.d.ts.map +1 -1
- package/dist/motion/index.d.ts +6 -6
- package/dist/motion/index.d.ts.map +1 -1
- package/dist/motion/index.js +4 -4
- package/dist/motion/types.d.ts +13 -9
- package/dist/motion/types.d.ts.map +1 -1
- package/dist/motion/types.js +1 -1
- package/dist/motion/utils/UseVisualState.svelte +22 -22
- package/dist/motion/utils/UseVisualState.svelte.d.ts +1 -1
- package/dist/motion/utils/UseVisualState.svelte.d.ts.map +1 -1
- package/dist/motion/utils/use-motion-ref.d.ts +4 -3
- package/dist/motion/utils/use-motion-ref.d.ts.map +1 -1
- package/dist/motion/utils/use-motion-ref.js +4 -6
- package/dist/motion/utils/use-visual-element.d.ts +5 -4
- package/dist/motion/utils/use-visual-element.d.ts.map +1 -1
- package/dist/motion/utils/use-visual-state.d.ts +6 -5
- package/dist/motion/utils/use-visual-state.d.ts.map +1 -1
- package/dist/motion/utils/use-visual-state.js +2 -1
- package/dist/render/dom/M-type.spec-d.js +1 -1
- package/dist/render/dom/{M.svelte → Motion-Proxy.svelte} +8 -1
- package/dist/render/dom/{M.svelte.d.ts → Motion-Proxy.svelte.d.ts} +5 -4
- package/dist/render/dom/Motion-Proxy.svelte.d.ts.map +1 -0
- package/dist/render/dom/Motion-type.spec-d.d.ts +2 -0
- package/dist/render/dom/Motion-type.spec-d.d.ts.map +1 -0
- package/dist/{motion/type.spec-d.js → render/dom/Motion-type.spec-d.js} +2 -2
- package/dist/render/dom/UseRender.svelte +2 -2
- package/dist/render/dom/UseRender.svelte.d.ts.map +1 -1
- package/dist/render/dom/featureBundle.d.ts +24 -0
- package/dist/render/dom/featureBundle.d.ts.map +1 -0
- package/dist/render/dom/featureBundle.js +5 -4
- package/dist/render/dom/motion-minimal.d.ts +933 -1
- package/dist/render/dom/motion-minimal.d.ts.map +1 -1
- package/dist/render/dom/motion-minimal.js +9 -5
- package/dist/render/dom/motion-proxy.d.ts +13 -195
- package/dist/render/dom/motion-proxy.d.ts.map +1 -1
- package/dist/render/dom/motion-proxy.js +9 -7
- package/dist/render/dom/motion.d.ts +966 -0
- package/dist/render/dom/motion.d.ts.map +1 -0
- package/dist/render/dom/motion.js +7 -3
- package/dist/render/dom/projection/convert-to-relative.d.ts.map +1 -1
- package/dist/render/dom/projection/default-scale-correctors.d.ts +5 -4
- package/dist/render/dom/projection/default-scale-correctors.d.ts.map +1 -1
- package/dist/render/dom/projection/default-scale-correctors.js +19 -19
- package/dist/render/dom/projection/scale-correction.d.ts +1 -1
- package/dist/render/dom/projection/scale-correction.d.ts.map +1 -1
- package/dist/render/dom/projection/scale-correction.js +2 -1
- package/dist/render/dom/projection/utils.d.ts +1 -1
- package/dist/render/dom/projection/utils.d.ts.map +1 -1
- package/dist/render/dom/projection/utils.js +2 -2
- package/dist/render/dom/svg-visual-element.d.ts +1 -1
- package/dist/render/dom/svg-visual-element.d.ts.map +1 -1
- package/dist/render/dom/svg-visual-element.js +11 -1
- package/dist/render/dom/use-render.d.ts +4 -8
- package/dist/render/dom/use-render.d.ts.map +1 -1
- package/dist/render/dom/use-render.js +4 -0
- package/dist/render/dom/utils/UseInitialMotionProps.svelte +14 -3
- package/dist/render/dom/utils/UseInitialMotionProps.svelte.d.ts +2 -1
- package/dist/render/dom/utils/UseInitialMotionProps.svelte.d.ts.map +1 -1
- package/dist/render/dom/utils/batch-layout.d.ts.map +1 -1
- package/dist/render/dom/utils/batch-layout.js +1 -0
- package/dist/render/dom/utils/create-config.d.ts +5 -11
- package/dist/render/dom/utils/create-config.d.ts.map +1 -1
- package/dist/render/dom/utils/create-config.js +7 -6
- package/dist/render/dom/utils/css-variables-conversion.d.ts +2 -2
- package/dist/render/dom/utils/css-variables-conversion.d.ts.map +1 -1
- package/dist/render/dom/utils/css-variables-conversion.js +8 -6
- package/dist/render/dom/utils/filter-props.d.ts.map +1 -1
- package/dist/render/dom/utils/filter-props.js +1 -0
- package/dist/render/dom/utils/is-svg-component.d.ts +2 -2
- package/dist/render/dom/utils/is-svg-component.d.ts.map +1 -1
- package/dist/render/dom/utils/is-svg-component.js +7 -3
- package/dist/render/dom/utils/unit-conversion.d.ts +2 -2
- package/dist/render/dom/utils/unit-conversion.d.ts.map +1 -1
- package/dist/render/dom/utils/unit-conversion.js +57 -74
- package/dist/render/dom/value-types/defaults.d.ts +1 -1
- package/dist/render/dom/value-types/defaults.d.ts.map +1 -1
- package/dist/render/dom/value-types/defaults.js +14 -5
- package/dist/render/dom/value-types/dimensions.d.ts +2 -1
- package/dist/render/dom/value-types/dimensions.d.ts.map +1 -1
- package/dist/render/dom/value-types/find.d.ts.map +1 -1
- package/dist/render/dom/value-types/find.js +2 -5
- package/dist/render/dom/value-types/get-as-type.js +1 -1
- package/dist/render/dom/value-types/type-int.d.ts.map +1 -1
- package/dist/render/dom/value-types/type-int.js +1 -2
- package/dist/render/html/UseHTMLProps.svelte +19 -2
- package/dist/render/html/UseInitialMotionValues.svelte +1 -1
- package/dist/render/html/UseStyle.svelte +3 -18
- package/dist/render/html/UseStyle.svelte.d.ts +0 -5
- package/dist/render/html/UseStyle.svelte.d.ts.map +1 -1
- package/dist/render/html/config-motion.d.ts.map +1 -1
- package/dist/render/html/config-motion.js +1 -0
- package/dist/render/html/types.d.ts +7 -19
- package/dist/render/html/types.d.ts.map +1 -1
- package/dist/render/html/use-props.d.ts +7 -7
- package/dist/render/html/use-props.d.ts.map +1 -1
- package/dist/render/html/use-props.js +14 -1
- package/dist/render/html/utils/build-styles.d.ts.map +1 -1
- package/dist/render/html/utils/build-styles.js +1 -0
- package/dist/render/html/utils/build-transform.d.ts.map +1 -1
- package/dist/render/html/utils/build-transform.js +1 -0
- package/dist/render/html/utils/render.d.ts.map +1 -1
- package/dist/render/html/utils/render.js +1 -0
- package/dist/render/html/utils/scrape-motion-values.d.ts.map +1 -1
- package/dist/render/html/utils/scrape-motion-values.js +2 -0
- package/dist/render/html/visual-element.d.ts +2305 -5
- package/dist/render/html/visual-element.d.ts.map +1 -1
- package/dist/render/html/visual-element.js +21 -29
- package/dist/render/index.d.ts +2 -2
- package/dist/render/index.d.ts.map +1 -1
- package/dist/render/index.js +105 -45
- package/dist/render/svg/UseSVGProps.svelte +1 -1
- package/dist/render/svg/UseSVGProps.svelte.d.ts +6 -2
- package/dist/render/svg/UseSVGProps.svelte.d.ts.map +1 -1
- package/dist/render/svg/config-motion.d.ts +18 -2
- package/dist/render/svg/config-motion.d.ts.map +1 -1
- package/dist/render/svg/config-motion.js +3 -0
- package/dist/render/svg/types.d.ts +6 -20
- package/dist/render/svg/types.d.ts.map +1 -1
- package/dist/render/svg/utils/build-attrs.d.ts +7 -7
- package/dist/render/svg/utils/build-attrs.d.ts.map +1 -1
- package/dist/render/svg/utils/build-attrs.js +3 -7
- package/dist/render/svg/utils/create-render-state.d.ts +9 -1
- package/dist/render/svg/utils/create-render-state.d.ts.map +1 -1
- package/dist/render/svg/utils/create-render-state.js +1 -2
- package/dist/render/svg/utils/path.js +1 -1
- package/dist/render/svg/utils/render.d.ts +1 -1
- package/dist/render/svg/utils/render.d.ts.map +1 -1
- package/dist/render/svg/utils/scrape-motion-values.d.ts.map +1 -1
- package/dist/render/svg/utils/scrape-motion-values.js +2 -0
- package/dist/render/svg/utils/transform-origin.js +1 -1
- package/dist/render/svg/visual-element.d.ts +1 -1
- package/dist/render/svg/visual-element.d.ts.map +1 -1
- package/dist/render/svg/visual-element.js +10 -13
- package/dist/render/types.d.ts +17 -16
- package/dist/render/types.d.ts.map +1 -1
- package/dist/render/types.js +1 -4
- package/dist/render/utils/animation-state.d.ts +12 -6
- package/dist/render/utils/animation-state.d.ts.map +1 -1
- package/dist/render/utils/animation-state.js +49 -50
- package/dist/render/utils/animation.d.ts +4 -4
- package/dist/render/utils/animation.d.ts.map +1 -1
- package/dist/render/utils/animation.js +22 -34
- package/dist/render/utils/lifecycles.d.ts +6 -6
- package/dist/render/utils/lifecycles.d.ts.map +1 -1
- package/dist/render/utils/lifecycles.js +29 -34
- package/dist/render/utils/motion-values.d.ts.map +1 -1
- package/dist/render/utils/motion-values.js +4 -3
- package/dist/render/utils/setters.d.ts +4 -4
- package/dist/render/utils/setters.d.ts.map +1 -1
- package/dist/render/utils/setters.js +30 -21
- package/dist/render/utils/variants.js +3 -3
- package/dist/types/geometry.d.ts +1 -0
- package/dist/types/geometry.d.ts.map +1 -1
- package/dist/types.d.ts +12 -12
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/geometry/delta-apply.d.ts +3 -3
- package/dist/utils/geometry/delta-apply.d.ts.map +1 -1
- package/dist/utils/geometry/delta-apply.js +5 -4
- package/dist/utils/geometry/delta-calc.js +1 -1
- package/dist/utils/geometry/index.d.ts +3 -3
- package/dist/utils/geometry/index.d.ts.map +1 -1
- package/dist/utils/geometry/index.js +6 -7
- package/dist/utils/is-ref-object.d.ts +3 -2
- package/dist/utils/is-ref-object.d.ts.map +1 -1
- package/dist/utils/is-ref-object.js +5 -2
- package/dist/utils/subscription-manager.d.ts.map +1 -1
- package/dist/utils/transform.d.ts +1 -1
- package/dist/utils/transform.d.ts.map +1 -1
- package/dist/utils/transform.js +7 -6
- package/dist/utils/use-force-update.d.ts +1 -1
- package/dist/utils/use-force-update.d.ts.map +1 -1
- package/dist/value/index.js +1 -1
- package/dist/value/scroll/use-element-scroll.d.ts +4 -3
- package/dist/value/scroll/use-element-scroll.d.ts.map +1 -1
- package/dist/value/scroll/use-element-scroll.js +7 -8
- package/dist/value/scroll/utils.d.ts +2 -2
- package/dist/value/scroll/utils.d.ts.map +1 -1
- package/dist/value/scroll/utils.js +20 -24
- package/dist/value/use-combine-values.d.ts +1 -1
- package/dist/value/use-combine-values.d.ts.map +1 -1
- package/dist/value/use-transform.d.ts.map +1 -1
- package/dist/value/use-transform.js +2 -1
- package/dist/value/use-velocity.d.ts +1 -1
- package/dist/value/use-velocity.d.ts.map +1 -1
- package/dist/value/use-velocity.js +1 -6
- package/package.json +34 -24
- package/dist/motion/type.spec-d.d.ts +0 -2
- package/dist/motion/type.spec-d.d.ts.map +0 -1
- package/dist/render/dom/M.svelte.d.ts.map +0 -1
- package/dist/render/dom/create-motion-class.js +0 -10
- package/dist/render/html/UseHTMLProps.svelte.d.ts +0 -36
- package/dist/render/html/UseHTMLProps.svelte.d.ts.map +0 -1
- package/dist/utils/use-constant.d.ts +0 -22
- package/dist/utils/use-constant.d.ts.map +0 -1
- package/dist/utils/use-constant.js +0 -9
- package/dist/utils/use-isomorphic-effect.d.ts +0 -7
- package/dist/utils/use-isomorphic-effect.d.ts.map +0 -1
- package/dist/utils/use-isomorphic-effect.js +0 -7
|
@@ -0,0 +1,966 @@
|
|
|
1
|
+
/**
|
|
2
|
+
based on framer-motion@4.1.17,
|
|
3
|
+
Copyright (c) 2018 Framer B.V.
|
|
4
|
+
*/
|
|
5
|
+
import type { DOMMotionComponents } from './types.js';
|
|
6
|
+
export interface IsSVG {
|
|
7
|
+
/** set to true if the component receiving the motion action is an svg-element like `circle` or `path`. Should not be set to true for `svg` tags. */
|
|
8
|
+
isSVG?: boolean;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* HTML & SVG components, optimised for use with gestures and animation. These can be used as
|
|
12
|
+
* drop-in replacements for any HTML & SVG component, all CSS & SVG properties are supported.
|
|
13
|
+
*
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
declare var motion: {
|
|
17
|
+
[x: string]: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
18
|
+
children?: import("svelte").Snippet;
|
|
19
|
+
class?: string;
|
|
20
|
+
el?: any;
|
|
21
|
+
} & Omit<{
|
|
22
|
+
[name: string]: any;
|
|
23
|
+
}, "style">, {}, string>;
|
|
24
|
+
a: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
25
|
+
children?: import("svelte").Snippet;
|
|
26
|
+
class?: string;
|
|
27
|
+
el?: unknown;
|
|
28
|
+
} & Omit<import("svelte/elements.js").HTMLAnchorAttributes, "style">, {}, string>;
|
|
29
|
+
abbr: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
30
|
+
children?: import("svelte").Snippet;
|
|
31
|
+
class?: string;
|
|
32
|
+
el?: unknown;
|
|
33
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
34
|
+
address: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
35
|
+
children?: import("svelte").Snippet;
|
|
36
|
+
class?: string;
|
|
37
|
+
el?: unknown;
|
|
38
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
39
|
+
area: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
40
|
+
children?: import("svelte").Snippet;
|
|
41
|
+
class?: string;
|
|
42
|
+
el?: unknown;
|
|
43
|
+
} & Omit<import("svelte/elements.js").HTMLAreaAttributes, "style">, {}, string>;
|
|
44
|
+
article: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
45
|
+
children?: import("svelte").Snippet;
|
|
46
|
+
class?: string;
|
|
47
|
+
el?: unknown;
|
|
48
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
49
|
+
aside: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
50
|
+
children?: import("svelte").Snippet;
|
|
51
|
+
class?: string;
|
|
52
|
+
el?: unknown;
|
|
53
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
54
|
+
audio: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
55
|
+
children?: import("svelte").Snippet;
|
|
56
|
+
class?: string;
|
|
57
|
+
el?: unknown;
|
|
58
|
+
} & Omit<import("svelte/elements.js").HTMLAudioAttributes, "style">, {}, string>;
|
|
59
|
+
b: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
60
|
+
children?: import("svelte").Snippet;
|
|
61
|
+
class?: string;
|
|
62
|
+
el?: unknown;
|
|
63
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
64
|
+
base: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
65
|
+
children?: import("svelte").Snippet;
|
|
66
|
+
class?: string;
|
|
67
|
+
el?: unknown;
|
|
68
|
+
} & Omit<import("svelte/elements.js").HTMLBaseAttributes, "style">, {}, string>;
|
|
69
|
+
bdi: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
70
|
+
children?: import("svelte").Snippet;
|
|
71
|
+
class?: string;
|
|
72
|
+
el?: unknown;
|
|
73
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
74
|
+
bdo: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
75
|
+
children?: import("svelte").Snippet;
|
|
76
|
+
class?: string;
|
|
77
|
+
el?: unknown;
|
|
78
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
79
|
+
big: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
80
|
+
children?: import("svelte").Snippet;
|
|
81
|
+
class?: string;
|
|
82
|
+
el?: unknown;
|
|
83
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
84
|
+
blockquote: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
85
|
+
children?: import("svelte").Snippet;
|
|
86
|
+
class?: string;
|
|
87
|
+
el?: unknown;
|
|
88
|
+
} & Omit<import("svelte/elements.js").HTMLBlockquoteAttributes, "style">, {}, string>;
|
|
89
|
+
body: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
90
|
+
children?: import("svelte").Snippet;
|
|
91
|
+
class?: string;
|
|
92
|
+
el?: unknown;
|
|
93
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLBodyElement>, "style">, {}, string>;
|
|
94
|
+
br: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
95
|
+
children?: import("svelte").Snippet;
|
|
96
|
+
class?: string;
|
|
97
|
+
el?: unknown;
|
|
98
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLBRElement>, "style">, {}, string>;
|
|
99
|
+
button: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
100
|
+
children?: import("svelte").Snippet;
|
|
101
|
+
class?: string;
|
|
102
|
+
el?: unknown;
|
|
103
|
+
} & Omit<import("svelte/elements.js").HTMLButtonAttributes, "style">, {}, string>;
|
|
104
|
+
canvas: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
105
|
+
children?: import("svelte").Snippet;
|
|
106
|
+
class?: string;
|
|
107
|
+
el?: unknown;
|
|
108
|
+
} & Omit<import("svelte/elements.js").HTMLCanvasAttributes, "style">, {}, string>;
|
|
109
|
+
caption: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
110
|
+
children?: import("svelte").Snippet;
|
|
111
|
+
class?: string;
|
|
112
|
+
el?: unknown;
|
|
113
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
114
|
+
cite: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
115
|
+
children?: import("svelte").Snippet;
|
|
116
|
+
class?: string;
|
|
117
|
+
el?: unknown;
|
|
118
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
119
|
+
code: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
120
|
+
children?: import("svelte").Snippet;
|
|
121
|
+
class?: string;
|
|
122
|
+
el?: unknown;
|
|
123
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
124
|
+
col: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
125
|
+
children?: import("svelte").Snippet;
|
|
126
|
+
class?: string;
|
|
127
|
+
el?: unknown;
|
|
128
|
+
} & Omit<import("svelte/elements.js").HTMLColAttributes, "style">, {}, string>;
|
|
129
|
+
colgroup: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
130
|
+
children?: import("svelte").Snippet;
|
|
131
|
+
class?: string;
|
|
132
|
+
el?: unknown;
|
|
133
|
+
} & Omit<import("svelte/elements.js").HTMLColgroupAttributes, "style">, {}, string>;
|
|
134
|
+
data: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
135
|
+
children?: import("svelte").Snippet;
|
|
136
|
+
class?: string;
|
|
137
|
+
el?: unknown;
|
|
138
|
+
} & Omit<import("svelte/elements.js").HTMLDataAttributes, "style">, {}, string>;
|
|
139
|
+
datalist: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
140
|
+
children?: import("svelte").Snippet;
|
|
141
|
+
class?: string;
|
|
142
|
+
el?: unknown;
|
|
143
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLDataListElement>, "style">, {}, string>;
|
|
144
|
+
dd: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
145
|
+
children?: import("svelte").Snippet;
|
|
146
|
+
class?: string;
|
|
147
|
+
el?: unknown;
|
|
148
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
149
|
+
del: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
150
|
+
children?: import("svelte").Snippet;
|
|
151
|
+
class?: string;
|
|
152
|
+
el?: unknown;
|
|
153
|
+
} & Omit<import("svelte/elements.js").HTMLDelAttributes, "style">, {}, string>;
|
|
154
|
+
details: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
155
|
+
children?: import("svelte").Snippet;
|
|
156
|
+
class?: string;
|
|
157
|
+
el?: unknown;
|
|
158
|
+
} & Omit<import("svelte/elements.js").HTMLDetailsAttributes, "style">, {}, string>;
|
|
159
|
+
dfn: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
160
|
+
children?: import("svelte").Snippet;
|
|
161
|
+
class?: string;
|
|
162
|
+
el?: unknown;
|
|
163
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
164
|
+
dialog: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
165
|
+
children?: import("svelte").Snippet;
|
|
166
|
+
class?: string;
|
|
167
|
+
el?: unknown;
|
|
168
|
+
} & Omit<import("svelte/elements.js").HTMLDialogAttributes, "style">, {}, string>;
|
|
169
|
+
div: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
170
|
+
children?: import("svelte").Snippet;
|
|
171
|
+
class?: string;
|
|
172
|
+
el?: unknown;
|
|
173
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLDivElement>, "style">, {}, string>;
|
|
174
|
+
dl: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
175
|
+
children?: import("svelte").Snippet;
|
|
176
|
+
class?: string;
|
|
177
|
+
el?: unknown;
|
|
178
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLDListElement>, "style">, {}, string>;
|
|
179
|
+
dt: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
180
|
+
children?: import("svelte").Snippet;
|
|
181
|
+
class?: string;
|
|
182
|
+
el?: unknown;
|
|
183
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
184
|
+
em: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
185
|
+
children?: import("svelte").Snippet;
|
|
186
|
+
class?: string;
|
|
187
|
+
el?: unknown;
|
|
188
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
189
|
+
embed: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
190
|
+
children?: import("svelte").Snippet;
|
|
191
|
+
class?: string;
|
|
192
|
+
el?: unknown;
|
|
193
|
+
} & Omit<import("svelte/elements.js").HTMLEmbedAttributes, "style">, {}, string>;
|
|
194
|
+
fieldset: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
195
|
+
children?: import("svelte").Snippet;
|
|
196
|
+
class?: string;
|
|
197
|
+
el?: unknown;
|
|
198
|
+
} & Omit<import("svelte/elements.js").HTMLFieldsetAttributes, "style">, {}, string>;
|
|
199
|
+
figcaption: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
200
|
+
children?: import("svelte").Snippet;
|
|
201
|
+
class?: string;
|
|
202
|
+
el?: unknown;
|
|
203
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
204
|
+
figure: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
205
|
+
children?: import("svelte").Snippet;
|
|
206
|
+
class?: string;
|
|
207
|
+
el?: unknown;
|
|
208
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
209
|
+
footer: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
210
|
+
children?: import("svelte").Snippet;
|
|
211
|
+
class?: string;
|
|
212
|
+
el?: unknown;
|
|
213
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
214
|
+
form: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
215
|
+
children?: import("svelte").Snippet;
|
|
216
|
+
class?: string;
|
|
217
|
+
el?: unknown;
|
|
218
|
+
} & Omit<import("svelte/elements.js").HTMLFormAttributes, "style">, {}, string>;
|
|
219
|
+
h1: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
220
|
+
children?: import("svelte").Snippet;
|
|
221
|
+
class?: string;
|
|
222
|
+
el?: unknown;
|
|
223
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLHeadingElement>, "style">, {}, string>;
|
|
224
|
+
h2: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
225
|
+
children?: import("svelte").Snippet;
|
|
226
|
+
class?: string;
|
|
227
|
+
el?: unknown;
|
|
228
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLHeadingElement>, "style">, {}, string>;
|
|
229
|
+
h3: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
230
|
+
children?: import("svelte").Snippet;
|
|
231
|
+
class?: string;
|
|
232
|
+
el?: unknown;
|
|
233
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLHeadingElement>, "style">, {}, string>;
|
|
234
|
+
h4: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
235
|
+
children?: import("svelte").Snippet;
|
|
236
|
+
class?: string;
|
|
237
|
+
el?: unknown;
|
|
238
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLHeadingElement>, "style">, {}, string>;
|
|
239
|
+
h5: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
240
|
+
children?: import("svelte").Snippet;
|
|
241
|
+
class?: string;
|
|
242
|
+
el?: unknown;
|
|
243
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLHeadingElement>, "style">, {}, string>;
|
|
244
|
+
h6: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
245
|
+
children?: import("svelte").Snippet;
|
|
246
|
+
class?: string;
|
|
247
|
+
el?: unknown;
|
|
248
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLHeadingElement>, "style">, {}, string>;
|
|
249
|
+
head: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
250
|
+
children?: import("svelte").Snippet;
|
|
251
|
+
class?: string;
|
|
252
|
+
el?: unknown;
|
|
253
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
254
|
+
header: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
255
|
+
children?: import("svelte").Snippet;
|
|
256
|
+
class?: string;
|
|
257
|
+
el?: unknown;
|
|
258
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
259
|
+
hgroup: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
260
|
+
children?: import("svelte").Snippet;
|
|
261
|
+
class?: string;
|
|
262
|
+
el?: unknown;
|
|
263
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
264
|
+
hr: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
265
|
+
children?: import("svelte").Snippet;
|
|
266
|
+
class?: string;
|
|
267
|
+
el?: unknown;
|
|
268
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLHRElement>, "style">, {}, string>;
|
|
269
|
+
html: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
270
|
+
children?: import("svelte").Snippet;
|
|
271
|
+
class?: string;
|
|
272
|
+
el?: unknown;
|
|
273
|
+
} & Omit<import("svelte/elements.js").HTMLHtmlAttributes, "style">, {}, string>;
|
|
274
|
+
i: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
275
|
+
children?: import("svelte").Snippet;
|
|
276
|
+
class?: string;
|
|
277
|
+
el?: unknown;
|
|
278
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
279
|
+
iframe: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
280
|
+
children?: import("svelte").Snippet;
|
|
281
|
+
class?: string;
|
|
282
|
+
el?: unknown;
|
|
283
|
+
} & Omit<import("svelte/elements.js").HTMLIframeAttributes, "style">, {}, string>;
|
|
284
|
+
img: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
285
|
+
children?: import("svelte").Snippet;
|
|
286
|
+
class?: string;
|
|
287
|
+
el?: unknown;
|
|
288
|
+
} & Omit<import("svelte/elements.js").HTMLImgAttributes, "style">, {}, string>;
|
|
289
|
+
input: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
290
|
+
children?: import("svelte").Snippet;
|
|
291
|
+
class?: string;
|
|
292
|
+
el?: unknown;
|
|
293
|
+
} & Omit<import("svelte/elements.js").HTMLInputAttributes, "style">, {}, string>;
|
|
294
|
+
ins: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
295
|
+
children?: import("svelte").Snippet;
|
|
296
|
+
class?: string;
|
|
297
|
+
el?: unknown;
|
|
298
|
+
} & Omit<import("svelte/elements.js").HTMLInsAttributes, "style">, {}, string>;
|
|
299
|
+
kbd: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
300
|
+
children?: import("svelte").Snippet;
|
|
301
|
+
class?: string;
|
|
302
|
+
el?: unknown;
|
|
303
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
304
|
+
keygen: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
305
|
+
children?: import("svelte").Snippet;
|
|
306
|
+
class?: string;
|
|
307
|
+
el?: unknown;
|
|
308
|
+
} & Omit<import("svelte/elements.js").HTMLKeygenAttributes, "style">, {}, string>;
|
|
309
|
+
label: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
310
|
+
children?: import("svelte").Snippet;
|
|
311
|
+
class?: string;
|
|
312
|
+
el?: unknown;
|
|
313
|
+
} & Omit<import("svelte/elements.js").HTMLLabelAttributes, "style">, {}, string>;
|
|
314
|
+
legend: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
315
|
+
children?: import("svelte").Snippet;
|
|
316
|
+
class?: string;
|
|
317
|
+
el?: unknown;
|
|
318
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLLegendElement>, "style">, {}, string>;
|
|
319
|
+
li: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
320
|
+
children?: import("svelte").Snippet;
|
|
321
|
+
class?: string;
|
|
322
|
+
el?: unknown;
|
|
323
|
+
} & Omit<import("svelte/elements.js").HTMLLiAttributes, "style">, {}, string>;
|
|
324
|
+
link: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
325
|
+
children?: import("svelte").Snippet;
|
|
326
|
+
class?: string;
|
|
327
|
+
el?: unknown;
|
|
328
|
+
} & Omit<import("svelte/elements.js").HTMLLinkAttributes, "style">, {}, string>;
|
|
329
|
+
main: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
330
|
+
children?: import("svelte").Snippet;
|
|
331
|
+
class?: string;
|
|
332
|
+
el?: unknown;
|
|
333
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
334
|
+
map: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
335
|
+
children?: import("svelte").Snippet;
|
|
336
|
+
class?: string;
|
|
337
|
+
el?: unknown;
|
|
338
|
+
} & Omit<import("svelte/elements.js").HTMLMapAttributes, "style">, {}, string>;
|
|
339
|
+
mark: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
340
|
+
children?: import("svelte").Snippet;
|
|
341
|
+
class?: string;
|
|
342
|
+
el?: unknown;
|
|
343
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
344
|
+
menu: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
345
|
+
children?: import("svelte").Snippet;
|
|
346
|
+
class?: string;
|
|
347
|
+
el?: unknown;
|
|
348
|
+
} & Omit<import("svelte/elements.js").HTMLMenuAttributes, "style">, {}, string>;
|
|
349
|
+
menuitem: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
350
|
+
children?: import("svelte").Snippet;
|
|
351
|
+
class?: string;
|
|
352
|
+
el?: unknown;
|
|
353
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
354
|
+
meta: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
355
|
+
children?: import("svelte").Snippet;
|
|
356
|
+
class?: string;
|
|
357
|
+
el?: unknown;
|
|
358
|
+
} & Omit<import("svelte/elements.js").HTMLMetaAttributes, "style">, {}, string>;
|
|
359
|
+
meter: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
360
|
+
children?: import("svelte").Snippet;
|
|
361
|
+
class?: string;
|
|
362
|
+
el?: unknown;
|
|
363
|
+
} & Omit<import("svelte/elements.js").HTMLMeterAttributes, "style">, {}, string>;
|
|
364
|
+
nav: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
365
|
+
children?: import("svelte").Snippet;
|
|
366
|
+
class?: string;
|
|
367
|
+
el?: unknown;
|
|
368
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
369
|
+
noscript: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
370
|
+
children?: import("svelte").Snippet;
|
|
371
|
+
class?: string;
|
|
372
|
+
el?: unknown;
|
|
373
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
374
|
+
object: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
375
|
+
children?: import("svelte").Snippet;
|
|
376
|
+
class?: string;
|
|
377
|
+
el?: unknown;
|
|
378
|
+
} & Omit<import("svelte/elements.js").HTMLObjectAttributes, "style">, {}, string>;
|
|
379
|
+
ol: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
380
|
+
children?: import("svelte").Snippet;
|
|
381
|
+
class?: string;
|
|
382
|
+
el?: unknown;
|
|
383
|
+
} & Omit<import("svelte/elements.js").HTMLOlAttributes, "style">, {}, string>;
|
|
384
|
+
optgroup: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
385
|
+
children?: import("svelte").Snippet;
|
|
386
|
+
class?: string;
|
|
387
|
+
el?: unknown;
|
|
388
|
+
} & Omit<import("svelte/elements.js").HTMLOptgroupAttributes, "style">, {}, string>;
|
|
389
|
+
option: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
390
|
+
children?: import("svelte").Snippet;
|
|
391
|
+
class?: string;
|
|
392
|
+
el?: unknown;
|
|
393
|
+
} & Omit<import("svelte/elements.js").HTMLOptionAttributes, "style">, {}, string>;
|
|
394
|
+
output: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
395
|
+
children?: import("svelte").Snippet;
|
|
396
|
+
class?: string;
|
|
397
|
+
el?: unknown;
|
|
398
|
+
} & Omit<import("svelte/elements.js").HTMLOutputAttributes, "style">, {}, string>;
|
|
399
|
+
p: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
400
|
+
children?: import("svelte").Snippet;
|
|
401
|
+
class?: string;
|
|
402
|
+
el?: unknown;
|
|
403
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLParagraphElement>, "style">, {}, string>;
|
|
404
|
+
param: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
405
|
+
children?: import("svelte").Snippet;
|
|
406
|
+
class?: string;
|
|
407
|
+
el?: unknown;
|
|
408
|
+
} & Omit<import("svelte/elements.js").HTMLParamAttributes, "style">, {}, string>;
|
|
409
|
+
picture: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
410
|
+
children?: import("svelte").Snippet;
|
|
411
|
+
class?: string;
|
|
412
|
+
el?: unknown;
|
|
413
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
414
|
+
pre: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
415
|
+
children?: import("svelte").Snippet;
|
|
416
|
+
class?: string;
|
|
417
|
+
el?: unknown;
|
|
418
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLPreElement>, "style">, {}, string>;
|
|
419
|
+
progress: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
420
|
+
children?: import("svelte").Snippet;
|
|
421
|
+
class?: string;
|
|
422
|
+
el?: unknown;
|
|
423
|
+
} & Omit<import("svelte/elements.js").HTMLProgressAttributes, "style">, {}, string>;
|
|
424
|
+
q: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
425
|
+
children?: import("svelte").Snippet;
|
|
426
|
+
class?: string;
|
|
427
|
+
el?: unknown;
|
|
428
|
+
} & Omit<import("svelte/elements.js").HTMLQuoteAttributes, "style">, {}, string>;
|
|
429
|
+
rp: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
430
|
+
children?: import("svelte").Snippet;
|
|
431
|
+
class?: string;
|
|
432
|
+
el?: unknown;
|
|
433
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
434
|
+
rt: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
435
|
+
children?: import("svelte").Snippet;
|
|
436
|
+
class?: string;
|
|
437
|
+
el?: unknown;
|
|
438
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
439
|
+
ruby: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
440
|
+
children?: import("svelte").Snippet;
|
|
441
|
+
class?: string;
|
|
442
|
+
el?: unknown;
|
|
443
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
444
|
+
s: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
445
|
+
children?: import("svelte").Snippet;
|
|
446
|
+
class?: string;
|
|
447
|
+
el?: unknown;
|
|
448
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
449
|
+
samp: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
450
|
+
children?: import("svelte").Snippet;
|
|
451
|
+
class?: string;
|
|
452
|
+
el?: unknown;
|
|
453
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
454
|
+
slot: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
455
|
+
children?: import("svelte").Snippet;
|
|
456
|
+
class?: string;
|
|
457
|
+
el?: unknown;
|
|
458
|
+
} & Omit<import("svelte/elements.js").HTMLSlotAttributes, "style">, {}, string>;
|
|
459
|
+
script: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
460
|
+
children?: import("svelte").Snippet;
|
|
461
|
+
class?: string;
|
|
462
|
+
el?: unknown;
|
|
463
|
+
} & Omit<import("svelte/elements.js").HTMLScriptAttributes, "style">, {}, string>;
|
|
464
|
+
search: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
465
|
+
children?: import("svelte").Snippet;
|
|
466
|
+
class?: string;
|
|
467
|
+
el?: unknown;
|
|
468
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
469
|
+
section: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
470
|
+
children?: import("svelte").Snippet;
|
|
471
|
+
class?: string;
|
|
472
|
+
el?: unknown;
|
|
473
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
474
|
+
select: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
475
|
+
children?: import("svelte").Snippet;
|
|
476
|
+
class?: string;
|
|
477
|
+
el?: unknown;
|
|
478
|
+
} & Omit<import("svelte/elements.js").HTMLSelectAttributes, "style">, {}, string>;
|
|
479
|
+
small: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
480
|
+
children?: import("svelte").Snippet;
|
|
481
|
+
class?: string;
|
|
482
|
+
el?: unknown;
|
|
483
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
484
|
+
source: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
485
|
+
children?: import("svelte").Snippet;
|
|
486
|
+
class?: string;
|
|
487
|
+
el?: unknown;
|
|
488
|
+
} & Omit<import("svelte/elements.js").HTMLSourceAttributes, "style">, {}, string>;
|
|
489
|
+
span: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
490
|
+
children?: import("svelte").Snippet;
|
|
491
|
+
class?: string;
|
|
492
|
+
el?: unknown;
|
|
493
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLSpanElement>, "style">, {}, string>;
|
|
494
|
+
strong: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
495
|
+
children?: import("svelte").Snippet;
|
|
496
|
+
class?: string;
|
|
497
|
+
el?: unknown;
|
|
498
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
499
|
+
style: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
500
|
+
children?: import("svelte").Snippet;
|
|
501
|
+
class?: string;
|
|
502
|
+
el?: unknown;
|
|
503
|
+
} & Omit<import("svelte/elements.js").HTMLStyleAttributes, "style">, {}, string>;
|
|
504
|
+
sub: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
505
|
+
children?: import("svelte").Snippet;
|
|
506
|
+
class?: string;
|
|
507
|
+
el?: unknown;
|
|
508
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
509
|
+
summary: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
510
|
+
children?: import("svelte").Snippet;
|
|
511
|
+
class?: string;
|
|
512
|
+
el?: unknown;
|
|
513
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
514
|
+
sup: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
515
|
+
children?: import("svelte").Snippet;
|
|
516
|
+
class?: string;
|
|
517
|
+
el?: unknown;
|
|
518
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
519
|
+
table: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
520
|
+
children?: import("svelte").Snippet;
|
|
521
|
+
class?: string;
|
|
522
|
+
el?: unknown;
|
|
523
|
+
} & Omit<import("svelte/elements.js").HTMLTableAttributes, "style">, {}, string>;
|
|
524
|
+
template: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
525
|
+
children?: import("svelte").Snippet;
|
|
526
|
+
class?: string;
|
|
527
|
+
el?: unknown;
|
|
528
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLTemplateElement>, "style">, {}, string>;
|
|
529
|
+
tbody: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
530
|
+
children?: import("svelte").Snippet;
|
|
531
|
+
class?: string;
|
|
532
|
+
el?: unknown;
|
|
533
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLTableSectionElement>, "style">, {}, string>;
|
|
534
|
+
td: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
535
|
+
children?: import("svelte").Snippet;
|
|
536
|
+
class?: string;
|
|
537
|
+
el?: unknown;
|
|
538
|
+
} & Omit<import("svelte/elements.js").HTMLTdAttributes, "style">, {}, string>;
|
|
539
|
+
textarea: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
540
|
+
children?: import("svelte").Snippet;
|
|
541
|
+
class?: string;
|
|
542
|
+
el?: unknown;
|
|
543
|
+
} & Omit<import("svelte/elements.js").HTMLTextareaAttributes, "style">, {}, string>;
|
|
544
|
+
tfoot: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
545
|
+
children?: import("svelte").Snippet;
|
|
546
|
+
class?: string;
|
|
547
|
+
el?: unknown;
|
|
548
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLTableSectionElement>, "style">, {}, string>;
|
|
549
|
+
th: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
550
|
+
children?: import("svelte").Snippet;
|
|
551
|
+
class?: string;
|
|
552
|
+
el?: unknown;
|
|
553
|
+
} & Omit<import("svelte/elements.js").HTMLThAttributes, "style">, {}, string>;
|
|
554
|
+
thead: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
555
|
+
children?: import("svelte").Snippet;
|
|
556
|
+
class?: string;
|
|
557
|
+
el?: unknown;
|
|
558
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLTableSectionElement>, "style">, {}, string>;
|
|
559
|
+
time: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
560
|
+
children?: import("svelte").Snippet;
|
|
561
|
+
class?: string;
|
|
562
|
+
el?: unknown;
|
|
563
|
+
} & Omit<import("svelte/elements.js").HTMLTimeAttributes, "style">, {}, string>;
|
|
564
|
+
title: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
565
|
+
children?: import("svelte").Snippet;
|
|
566
|
+
class?: string;
|
|
567
|
+
el?: unknown;
|
|
568
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLTitleElement>, "style">, {}, string>;
|
|
569
|
+
tr: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
570
|
+
children?: import("svelte").Snippet;
|
|
571
|
+
class?: string;
|
|
572
|
+
el?: unknown;
|
|
573
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLTableRowElement>, "style">, {}, string>;
|
|
574
|
+
track: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
575
|
+
children?: import("svelte").Snippet;
|
|
576
|
+
class?: string;
|
|
577
|
+
el?: unknown;
|
|
578
|
+
} & Omit<import("svelte/elements.js").HTMLTrackAttributes, "style">, {}, string>;
|
|
579
|
+
u: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
580
|
+
children?: import("svelte").Snippet;
|
|
581
|
+
class?: string;
|
|
582
|
+
el?: unknown;
|
|
583
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
584
|
+
ul: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
585
|
+
children?: import("svelte").Snippet;
|
|
586
|
+
class?: string;
|
|
587
|
+
el?: unknown;
|
|
588
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLUListElement>, "style">, {}, string>;
|
|
589
|
+
var: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
590
|
+
children?: import("svelte").Snippet;
|
|
591
|
+
class?: string;
|
|
592
|
+
el?: unknown;
|
|
593
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
594
|
+
video: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
595
|
+
children?: import("svelte").Snippet;
|
|
596
|
+
class?: string;
|
|
597
|
+
el?: unknown;
|
|
598
|
+
} & Omit<import("svelte/elements.js").HTMLVideoAttributes, "style">, {}, string>;
|
|
599
|
+
wbr: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
600
|
+
children?: import("svelte").Snippet;
|
|
601
|
+
class?: string;
|
|
602
|
+
el?: unknown;
|
|
603
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
604
|
+
webview: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
605
|
+
children?: import("svelte").Snippet;
|
|
606
|
+
class?: string;
|
|
607
|
+
el?: unknown;
|
|
608
|
+
} & Omit<import("svelte/elements.js").HTMLWebViewAttributes, "style">, {}, string>;
|
|
609
|
+
svg: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
610
|
+
children?: import("svelte").Snippet;
|
|
611
|
+
class?: string;
|
|
612
|
+
el?: unknown;
|
|
613
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGSVGElement>, "style">, {}, string>;
|
|
614
|
+
animate: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
615
|
+
children?: import("svelte").Snippet;
|
|
616
|
+
class?: string;
|
|
617
|
+
el?: unknown;
|
|
618
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGAnimateElement>, "style">, {}, string>;
|
|
619
|
+
animateMotion: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
620
|
+
children?: import("svelte").Snippet;
|
|
621
|
+
class?: string;
|
|
622
|
+
el?: unknown;
|
|
623
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGElement>, "style">, {}, string>;
|
|
624
|
+
animateTransform: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
625
|
+
children?: import("svelte").Snippet;
|
|
626
|
+
class?: string;
|
|
627
|
+
el?: unknown;
|
|
628
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGAnimateTransformElement>, "style">, {}, string>;
|
|
629
|
+
circle: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
630
|
+
children?: import("svelte").Snippet;
|
|
631
|
+
class?: string;
|
|
632
|
+
el?: unknown;
|
|
633
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGCircleElement>, "style">, {}, string>;
|
|
634
|
+
clipPath: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
635
|
+
children?: import("svelte").Snippet;
|
|
636
|
+
class?: string;
|
|
637
|
+
el?: unknown;
|
|
638
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGClipPathElement>, "style">, {}, string>;
|
|
639
|
+
defs: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
640
|
+
children?: import("svelte").Snippet;
|
|
641
|
+
class?: string;
|
|
642
|
+
el?: unknown;
|
|
643
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGDefsElement>, "style">, {}, string>;
|
|
644
|
+
desc: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
645
|
+
children?: import("svelte").Snippet;
|
|
646
|
+
class?: string;
|
|
647
|
+
el?: unknown;
|
|
648
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGDescElement>, "style">, {}, string>;
|
|
649
|
+
ellipse: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
650
|
+
children?: import("svelte").Snippet;
|
|
651
|
+
class?: string;
|
|
652
|
+
el?: unknown;
|
|
653
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGEllipseElement>, "style">, {}, string>;
|
|
654
|
+
feBlend: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
655
|
+
children?: import("svelte").Snippet;
|
|
656
|
+
class?: string;
|
|
657
|
+
el?: unknown;
|
|
658
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEBlendElement>, "style">, {}, string>;
|
|
659
|
+
feColorMatrix: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
660
|
+
children?: import("svelte").Snippet;
|
|
661
|
+
class?: string;
|
|
662
|
+
el?: unknown;
|
|
663
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEColorMatrixElement>, "style">, {}, string>;
|
|
664
|
+
feComponentTransfer: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
665
|
+
children?: import("svelte").Snippet;
|
|
666
|
+
class?: string;
|
|
667
|
+
el?: unknown;
|
|
668
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEComponentTransferElement>, "style">, {}, string>;
|
|
669
|
+
feComposite: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
670
|
+
children?: import("svelte").Snippet;
|
|
671
|
+
class?: string;
|
|
672
|
+
el?: unknown;
|
|
673
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFECompositeElement>, "style">, {}, string>;
|
|
674
|
+
feConvolveMatrix: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
675
|
+
children?: import("svelte").Snippet;
|
|
676
|
+
class?: string;
|
|
677
|
+
el?: unknown;
|
|
678
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEConvolveMatrixElement>, "style">, {}, string>;
|
|
679
|
+
feDiffuseLighting: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
680
|
+
children?: import("svelte").Snippet;
|
|
681
|
+
class?: string;
|
|
682
|
+
el?: unknown;
|
|
683
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEDiffuseLightingElement>, "style">, {}, string>;
|
|
684
|
+
feDisplacementMap: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
685
|
+
children?: import("svelte").Snippet;
|
|
686
|
+
class?: string;
|
|
687
|
+
el?: unknown;
|
|
688
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEDisplacementMapElement>, "style">, {}, string>;
|
|
689
|
+
feDistantLight: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
690
|
+
children?: import("svelte").Snippet;
|
|
691
|
+
class?: string;
|
|
692
|
+
el?: unknown;
|
|
693
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEDistantLightElement>, "style">, {}, string>;
|
|
694
|
+
feDropShadow: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
695
|
+
children?: import("svelte").Snippet;
|
|
696
|
+
class?: string;
|
|
697
|
+
el?: unknown;
|
|
698
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEDropShadowElement>, "style">, {}, string>;
|
|
699
|
+
feFlood: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
700
|
+
children?: import("svelte").Snippet;
|
|
701
|
+
class?: string;
|
|
702
|
+
el?: unknown;
|
|
703
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEFloodElement>, "style">, {}, string>;
|
|
704
|
+
feFuncA: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
705
|
+
children?: import("svelte").Snippet;
|
|
706
|
+
class?: string;
|
|
707
|
+
el?: unknown;
|
|
708
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEFuncAElement>, "style">, {}, string>;
|
|
709
|
+
feFuncB: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
710
|
+
children?: import("svelte").Snippet;
|
|
711
|
+
class?: string;
|
|
712
|
+
el?: unknown;
|
|
713
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEFuncBElement>, "style">, {}, string>;
|
|
714
|
+
feFuncG: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
715
|
+
children?: import("svelte").Snippet;
|
|
716
|
+
class?: string;
|
|
717
|
+
el?: unknown;
|
|
718
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEFuncGElement>, "style">, {}, string>;
|
|
719
|
+
feFuncR: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
720
|
+
children?: import("svelte").Snippet;
|
|
721
|
+
class?: string;
|
|
722
|
+
el?: unknown;
|
|
723
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEFuncRElement>, "style">, {}, string>;
|
|
724
|
+
feGaussianBlur: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
725
|
+
children?: import("svelte").Snippet;
|
|
726
|
+
class?: string;
|
|
727
|
+
el?: unknown;
|
|
728
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEGaussianBlurElement>, "style">, {}, string>;
|
|
729
|
+
feImage: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
730
|
+
children?: import("svelte").Snippet;
|
|
731
|
+
class?: string;
|
|
732
|
+
el?: unknown;
|
|
733
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEImageElement>, "style">, {}, string>;
|
|
734
|
+
feMerge: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
735
|
+
children?: import("svelte").Snippet;
|
|
736
|
+
class?: string;
|
|
737
|
+
el?: unknown;
|
|
738
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEMergeElement>, "style">, {}, string>;
|
|
739
|
+
feMergeNode: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
740
|
+
children?: import("svelte").Snippet;
|
|
741
|
+
class?: string;
|
|
742
|
+
el?: unknown;
|
|
743
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEMergeNodeElement>, "style">, {}, string>;
|
|
744
|
+
feMorphology: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
745
|
+
children?: import("svelte").Snippet;
|
|
746
|
+
class?: string;
|
|
747
|
+
el?: unknown;
|
|
748
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEMorphologyElement>, "style">, {}, string>;
|
|
749
|
+
feOffset: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
750
|
+
children?: import("svelte").Snippet;
|
|
751
|
+
class?: string;
|
|
752
|
+
el?: unknown;
|
|
753
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEOffsetElement>, "style">, {}, string>;
|
|
754
|
+
fePointLight: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
755
|
+
children?: import("svelte").Snippet;
|
|
756
|
+
class?: string;
|
|
757
|
+
el?: unknown;
|
|
758
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFEPointLightElement>, "style">, {}, string>;
|
|
759
|
+
feSpecularLighting: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
760
|
+
children?: import("svelte").Snippet;
|
|
761
|
+
class?: string;
|
|
762
|
+
el?: unknown;
|
|
763
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFESpecularLightingElement>, "style">, {}, string>;
|
|
764
|
+
feSpotLight: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
765
|
+
children?: import("svelte").Snippet;
|
|
766
|
+
class?: string;
|
|
767
|
+
el?: unknown;
|
|
768
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFESpotLightElement>, "style">, {}, string>;
|
|
769
|
+
feTile: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
770
|
+
children?: import("svelte").Snippet;
|
|
771
|
+
class?: string;
|
|
772
|
+
el?: unknown;
|
|
773
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFETileElement>, "style">, {}, string>;
|
|
774
|
+
feTurbulence: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
775
|
+
children?: import("svelte").Snippet;
|
|
776
|
+
class?: string;
|
|
777
|
+
el?: unknown;
|
|
778
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFETurbulenceElement>, "style">, {}, string>;
|
|
779
|
+
filter: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
780
|
+
children?: import("svelte").Snippet;
|
|
781
|
+
class?: string;
|
|
782
|
+
el?: unknown;
|
|
783
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGFilterElement>, "style">, {}, string>;
|
|
784
|
+
foreignObject: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
785
|
+
children?: import("svelte").Snippet;
|
|
786
|
+
class?: string;
|
|
787
|
+
el?: unknown;
|
|
788
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGForeignObjectElement>, "style">, {}, string>;
|
|
789
|
+
g: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
790
|
+
children?: import("svelte").Snippet;
|
|
791
|
+
class?: string;
|
|
792
|
+
el?: unknown;
|
|
793
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGGElement>, "style">, {}, string>;
|
|
794
|
+
image: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
795
|
+
children?: import("svelte").Snippet;
|
|
796
|
+
class?: string;
|
|
797
|
+
el?: unknown;
|
|
798
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGImageElement>, "style">, {}, string>;
|
|
799
|
+
line: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
800
|
+
children?: import("svelte").Snippet;
|
|
801
|
+
class?: string;
|
|
802
|
+
el?: unknown;
|
|
803
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGLineElement>, "style">, {}, string>;
|
|
804
|
+
linearGradient: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
805
|
+
children?: import("svelte").Snippet;
|
|
806
|
+
class?: string;
|
|
807
|
+
el?: unknown;
|
|
808
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGLinearGradientElement>, "style">, {}, string>;
|
|
809
|
+
marker: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
810
|
+
children?: import("svelte").Snippet;
|
|
811
|
+
class?: string;
|
|
812
|
+
el?: unknown;
|
|
813
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGMarkerElement>, "style">, {}, string>;
|
|
814
|
+
mask: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
815
|
+
children?: import("svelte").Snippet;
|
|
816
|
+
class?: string;
|
|
817
|
+
el?: unknown;
|
|
818
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGMaskElement>, "style">, {}, string>;
|
|
819
|
+
metadata: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
820
|
+
children?: import("svelte").Snippet;
|
|
821
|
+
class?: string;
|
|
822
|
+
el?: unknown;
|
|
823
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGMetadataElement>, "style">, {}, string>;
|
|
824
|
+
mpath: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
825
|
+
children?: import("svelte").Snippet;
|
|
826
|
+
class?: string;
|
|
827
|
+
el?: unknown;
|
|
828
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGElement>, "style">, {}, string>;
|
|
829
|
+
path: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
830
|
+
children?: import("svelte").Snippet;
|
|
831
|
+
class?: string;
|
|
832
|
+
el?: unknown;
|
|
833
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGPathElement>, "style">, {}, string>;
|
|
834
|
+
pattern: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
835
|
+
children?: import("svelte").Snippet;
|
|
836
|
+
class?: string;
|
|
837
|
+
el?: unknown;
|
|
838
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGPatternElement>, "style">, {}, string>;
|
|
839
|
+
polygon: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
840
|
+
children?: import("svelte").Snippet;
|
|
841
|
+
class?: string;
|
|
842
|
+
el?: unknown;
|
|
843
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGPolygonElement>, "style">, {}, string>;
|
|
844
|
+
polyline: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
845
|
+
children?: import("svelte").Snippet;
|
|
846
|
+
class?: string;
|
|
847
|
+
el?: unknown;
|
|
848
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGPolylineElement>, "style">, {}, string>;
|
|
849
|
+
radialGradient: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
850
|
+
children?: import("svelte").Snippet;
|
|
851
|
+
class?: string;
|
|
852
|
+
el?: unknown;
|
|
853
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGRadialGradientElement>, "style">, {}, string>;
|
|
854
|
+
rect: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
855
|
+
children?: import("svelte").Snippet;
|
|
856
|
+
class?: string;
|
|
857
|
+
el?: unknown;
|
|
858
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGRectElement>, "style">, {}, string>;
|
|
859
|
+
stop: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
860
|
+
children?: import("svelte").Snippet;
|
|
861
|
+
class?: string;
|
|
862
|
+
el?: unknown;
|
|
863
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGStopElement>, "style">, {}, string>;
|
|
864
|
+
switch: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
865
|
+
children?: import("svelte").Snippet;
|
|
866
|
+
class?: string;
|
|
867
|
+
el?: unknown;
|
|
868
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGSwitchElement>, "style">, {}, string>;
|
|
869
|
+
symbol: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
870
|
+
children?: import("svelte").Snippet;
|
|
871
|
+
class?: string;
|
|
872
|
+
el?: unknown;
|
|
873
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGSymbolElement>, "style">, {}, string>;
|
|
874
|
+
text: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
875
|
+
children?: import("svelte").Snippet;
|
|
876
|
+
class?: string;
|
|
877
|
+
el?: unknown;
|
|
878
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGTextElement>, "style">, {}, string>;
|
|
879
|
+
textPath: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
880
|
+
children?: import("svelte").Snippet;
|
|
881
|
+
class?: string;
|
|
882
|
+
el?: unknown;
|
|
883
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGTextPathElement>, "style">, {}, string>;
|
|
884
|
+
tspan: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
885
|
+
children?: import("svelte").Snippet;
|
|
886
|
+
class?: string;
|
|
887
|
+
el?: unknown;
|
|
888
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGTSpanElement>, "style">, {}, string>;
|
|
889
|
+
use: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
890
|
+
children?: import("svelte").Snippet;
|
|
891
|
+
class?: string;
|
|
892
|
+
el?: unknown;
|
|
893
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGUseElement>, "style">, {}, string>;
|
|
894
|
+
view: import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
895
|
+
children?: import("svelte").Snippet;
|
|
896
|
+
class?: string;
|
|
897
|
+
el?: unknown;
|
|
898
|
+
} & Omit<import("svelte/elements.js").SVGAttributes<SVGViewElement>, "style">, {}, string>;
|
|
899
|
+
'svelte:window': import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
900
|
+
children?: import("svelte").Snippet;
|
|
901
|
+
class?: string;
|
|
902
|
+
el?: unknown;
|
|
903
|
+
} & Omit<import("svelte/elements.js").SvelteWindowAttributes, "style">, {}, string>;
|
|
904
|
+
'svelte:document': import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
905
|
+
children?: import("svelte").Snippet;
|
|
906
|
+
class?: string;
|
|
907
|
+
el?: unknown;
|
|
908
|
+
} & Omit<import("svelte/elements.js").SvelteDocumentAttributes, "style">, {}, string>;
|
|
909
|
+
'svelte:body': import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
910
|
+
children?: import("svelte").Snippet;
|
|
911
|
+
class?: string;
|
|
912
|
+
el?: unknown;
|
|
913
|
+
} & Omit<import("svelte/elements.js").HTMLAttributes<HTMLElement>, "style">, {}, string>;
|
|
914
|
+
'svelte:fragment': import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
915
|
+
children?: import("svelte").Snippet;
|
|
916
|
+
class?: string;
|
|
917
|
+
el?: unknown;
|
|
918
|
+
} & Omit<{
|
|
919
|
+
slot?: string;
|
|
920
|
+
}, "style">, {}, string>;
|
|
921
|
+
'svelte:options': import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
922
|
+
children?: import("svelte").Snippet;
|
|
923
|
+
class?: string;
|
|
924
|
+
el?: any;
|
|
925
|
+
} & Omit<{
|
|
926
|
+
[name: string]: any;
|
|
927
|
+
customElement?: string | undefined | {
|
|
928
|
+
tag?: string;
|
|
929
|
+
shadow?: "open" | "none" | undefined;
|
|
930
|
+
props?: Record<string, {
|
|
931
|
+
attribute?: string;
|
|
932
|
+
reflect?: boolean;
|
|
933
|
+
type?: "String" | "Boolean" | "Number" | "Array" | "Object";
|
|
934
|
+
}> | undefined;
|
|
935
|
+
extend?: (svelteCustomElementClass: new () => HTMLElement) => new () => HTMLElement | undefined;
|
|
936
|
+
};
|
|
937
|
+
immutable?: boolean | undefined;
|
|
938
|
+
accessors?: boolean | undefined;
|
|
939
|
+
namespace?: string | undefined;
|
|
940
|
+
}, "style">, {}, string>;
|
|
941
|
+
'svelte:head': import("svelte").Component<import("../../motion/types.js").MotionProps & {
|
|
942
|
+
children?: import("svelte").Snippet;
|
|
943
|
+
class?: string;
|
|
944
|
+
el?: any;
|
|
945
|
+
} & Omit<{
|
|
946
|
+
[name: string]: any;
|
|
947
|
+
}, "style">, {}, string>;
|
|
948
|
+
};
|
|
949
|
+
/**
|
|
950
|
+
* Create a DOM `motion` component with the provided string. This is primarily intended
|
|
951
|
+
* as a full alternative to `motion` for consumers who have to support environments that don't
|
|
952
|
+
* support `Proxy`.
|
|
953
|
+
*
|
|
954
|
+
* ```javascript
|
|
955
|
+
* import { createDomMotionComponent } from "framer-motion"
|
|
956
|
+
*
|
|
957
|
+
* const motion = {
|
|
958
|
+
* div: createDomMotionComponent('div')
|
|
959
|
+
* }
|
|
960
|
+
* ```
|
|
961
|
+
*
|
|
962
|
+
* @public
|
|
963
|
+
*/
|
|
964
|
+
declare function createDomMotionComponent<T extends keyof DOMMotionComponents>(key: T): DOMMotionComponents[T];
|
|
965
|
+
export { motion as Motion, createDomMotionComponent };
|
|
966
|
+
//# sourceMappingURL=motion.d.ts.map
|