framer-motion 11.4.0 → 11.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/client-entry.js +3 -2
- package/dist/cjs/dom-entry.js +2 -2
- package/dist/cjs/index.js +56 -50
- package/dist/cjs/m-entry.js +1 -0
- package/dist/client-entry.d.ts +36 -1
- package/dist/dom.js +1 -1
- package/dist/es/client-entry.mjs +1 -0
- package/dist/es/index.mjs +1 -2
- package/dist/es/m-entry.mjs +1 -0
- package/dist/es/render/components/create-proxy.mjs +9 -1
- package/dist/es/render/components/motion/namespace.mjs +1 -0
- package/dist/es/render/utils/motion-values.mjs +1 -1
- package/dist/es/value/index.mjs +1 -1
- package/dist/framer-motion.dev.js +56 -50
- package/dist/framer-motion.js +1 -1
- package/dist/index.d.ts +229 -223
- package/dist/m-entry.d.ts +36 -1
- package/package.json +2 -2
package/dist/cjs/client-entry.js
CHANGED
|
@@ -3227,7 +3227,7 @@ class MotionValue {
|
|
|
3227
3227
|
* This will be replaced by the build step with the latest version number.
|
|
3228
3228
|
* When MotionValues are provided to motion components, warn if versions are mixed.
|
|
3229
3229
|
*/
|
|
3230
|
-
this.version = "11.
|
|
3230
|
+
this.version = "11.5.1";
|
|
3231
3231
|
/**
|
|
3232
3232
|
* Tracks whether this value can output a velocity. Currently this is only true
|
|
3233
3233
|
* if the value is numerical, but we might be able to widen the scope here and support
|
|
@@ -5850,7 +5850,7 @@ function updateMotionValuesFromProps(element, next, prev) {
|
|
|
5850
5850
|
* and warn against mismatches.
|
|
5851
5851
|
*/
|
|
5852
5852
|
if (process.env.NODE_ENV === "development") {
|
|
5853
|
-
warnOnce(nextValue.version === "11.
|
|
5853
|
+
warnOnce(nextValue.version === "11.5.1", `Attempting to mix Framer Motion versions ${nextValue.version} with 11.5.1 may not work as expected.`);
|
|
5854
5854
|
}
|
|
5855
5855
|
}
|
|
5856
5856
|
else if (isMotionValue(prevValue)) {
|
|
@@ -9901,6 +9901,7 @@ exports.clipPath = MotionClipPath;
|
|
|
9901
9901
|
exports.code = MotionCode;
|
|
9902
9902
|
exports.col = MotionCol;
|
|
9903
9903
|
exports.colgroup = MotionColgroup;
|
|
9904
|
+
exports.create = createMotionComponent;
|
|
9904
9905
|
exports.data = MotionData;
|
|
9905
9906
|
exports.datalist = MotionDatalist;
|
|
9906
9907
|
exports.dd = MotionDd;
|
package/dist/cjs/dom-entry.js
CHANGED
|
@@ -279,7 +279,7 @@ class MotionValue {
|
|
|
279
279
|
* This will be replaced by the build step with the latest version number.
|
|
280
280
|
* When MotionValues are provided to motion components, warn if versions are mixed.
|
|
281
281
|
*/
|
|
282
|
-
this.version = "11.
|
|
282
|
+
this.version = "11.5.1";
|
|
283
283
|
/**
|
|
284
284
|
* Tracks whether this value can output a velocity. Currently this is only true
|
|
285
285
|
* if the value is numerical, but we might be able to widen the scope here and support
|
|
@@ -3790,7 +3790,7 @@ function updateMotionValuesFromProps(element, next, prev) {
|
|
|
3790
3790
|
* and warn against mismatches.
|
|
3791
3791
|
*/
|
|
3792
3792
|
if (process.env.NODE_ENV === "development") {
|
|
3793
|
-
warnOnce(nextValue.version === "11.
|
|
3793
|
+
warnOnce(nextValue.version === "11.5.1", `Attempting to mix Framer Motion versions ${nextValue.version} with 11.5.1 may not work as expected.`);
|
|
3794
3794
|
}
|
|
3795
3795
|
}
|
|
3796
3796
|
else if (isMotionValue(prevValue)) {
|
package/dist/cjs/index.js
CHANGED
|
@@ -24,6 +24,56 @@ function _interopNamespaceDefault(e) {
|
|
|
24
24
|
|
|
25
25
|
var React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
|
|
26
26
|
|
|
27
|
+
const noop = (any) => any;
|
|
28
|
+
|
|
29
|
+
exports.warning = noop;
|
|
30
|
+
exports.invariant = noop;
|
|
31
|
+
if (process.env.NODE_ENV !== "production") {
|
|
32
|
+
exports.warning = (check, message) => {
|
|
33
|
+
if (!check && typeof console !== "undefined") {
|
|
34
|
+
console.warn(message);
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
exports.invariant = (check, message) => {
|
|
38
|
+
if (!check) {
|
|
39
|
+
throw new Error(message);
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
function createDOMMotionComponentProxy(componentFactory) {
|
|
45
|
+
if (typeof Proxy === "undefined") {
|
|
46
|
+
return componentFactory;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* A cache of generated `motion` components, e.g `motion.div`, `motion.input` etc.
|
|
50
|
+
* Rather than generating them anew every render.
|
|
51
|
+
*/
|
|
52
|
+
const componentCache = new Map();
|
|
53
|
+
const deprecatedFactoryFunction = (...args) => {
|
|
54
|
+
exports.warning(false, "motion() is deprecated. Use motion.create() instead.");
|
|
55
|
+
return componentFactory(...args);
|
|
56
|
+
};
|
|
57
|
+
return new Proxy(deprecatedFactoryFunction, {
|
|
58
|
+
/**
|
|
59
|
+
* Called when `motion` is referenced with a prop: `motion.div`, `motion.input` etc.
|
|
60
|
+
* The prop name is passed through as `key` and we can use that to generate a `motion`
|
|
61
|
+
* DOM component with that name.
|
|
62
|
+
*/
|
|
63
|
+
get: (_target, key) => {
|
|
64
|
+
if (key === "create")
|
|
65
|
+
return componentFactory;
|
|
66
|
+
/**
|
|
67
|
+
* If this element doesn't exist in the component cache, create it and cache.
|
|
68
|
+
*/
|
|
69
|
+
if (!componentCache.has(key)) {
|
|
70
|
+
componentCache.set(key, componentFactory(key));
|
|
71
|
+
}
|
|
72
|
+
return componentCache.get(key);
|
|
73
|
+
},
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
|
|
27
77
|
function isAnimationControls(v) {
|
|
28
78
|
return (v !== null &&
|
|
29
79
|
typeof v === "object" &&
|
|
@@ -212,8 +262,6 @@ function getFinalKeyframe(keyframes, { repeat, repeatType = "loop" }, finalKeyfr
|
|
|
212
262
|
: finalKeyframe;
|
|
213
263
|
}
|
|
214
264
|
|
|
215
|
-
const noop = (any) => any;
|
|
216
|
-
|
|
217
265
|
function createRenderStep(runNextFrame) {
|
|
218
266
|
/**
|
|
219
267
|
* We create and reuse two queues, one to queue jobs for the current frame
|
|
@@ -382,21 +430,6 @@ function isNone(value) {
|
|
|
382
430
|
}
|
|
383
431
|
}
|
|
384
432
|
|
|
385
|
-
exports.warning = noop;
|
|
386
|
-
exports.invariant = noop;
|
|
387
|
-
if (process.env.NODE_ENV !== "production") {
|
|
388
|
-
exports.warning = (check, message) => {
|
|
389
|
-
if (!check && typeof console !== "undefined") {
|
|
390
|
-
console.warn(message);
|
|
391
|
-
}
|
|
392
|
-
};
|
|
393
|
-
exports.invariant = (check, message) => {
|
|
394
|
-
if (!check) {
|
|
395
|
-
throw new Error(message);
|
|
396
|
-
}
|
|
397
|
-
};
|
|
398
|
-
}
|
|
399
|
-
|
|
400
433
|
/**
|
|
401
434
|
* Check if value is a numerical string, ie a string that is purely a number eg "100" or "-100.1"
|
|
402
435
|
*/
|
|
@@ -3275,7 +3308,7 @@ class MotionValue {
|
|
|
3275
3308
|
* This will be replaced by the build step with the latest version number.
|
|
3276
3309
|
* When MotionValues are provided to motion components, warn if versions are mixed.
|
|
3277
3310
|
*/
|
|
3278
|
-
this.version = "11.
|
|
3311
|
+
this.version = "11.5.1";
|
|
3279
3312
|
/**
|
|
3280
3313
|
* Tracks whether this value can output a velocity. Currently this is only true
|
|
3281
3314
|
* if the value is numerical, but we might be able to widen the scope here and support
|
|
@@ -5930,7 +5963,7 @@ function updateMotionValuesFromProps(element, next, prev) {
|
|
|
5930
5963
|
* and warn against mismatches.
|
|
5931
5964
|
*/
|
|
5932
5965
|
if (process.env.NODE_ENV === "development") {
|
|
5933
|
-
warnOnce(nextValue.version === "11.
|
|
5966
|
+
warnOnce(nextValue.version === "11.5.1", `Attempting to mix Framer Motion versions ${nextValue.version} with 11.5.1 may not work as expected.`);
|
|
5934
5967
|
}
|
|
5935
5968
|
}
|
|
5936
5969
|
else if (isMotionValue(prevValue)) {
|
|
@@ -10794,38 +10827,11 @@ const createMotionComponent = /*@__PURE__*/ createMotionComponentFactory({
|
|
|
10794
10827
|
...layout,
|
|
10795
10828
|
}, createDomVisualElement);
|
|
10796
10829
|
|
|
10830
|
+
const motion$1 = /*@__PURE__*/ createDOMMotionComponentProxy(createMotionComponent);
|
|
10831
|
+
|
|
10797
10832
|
const createMinimalMotionComponent =
|
|
10798
10833
|
/*@__PURE__*/ createMotionComponentFactory();
|
|
10799
10834
|
|
|
10800
|
-
function createDOMMotionComponentProxy(componentFactory) {
|
|
10801
|
-
if (typeof Proxy === "undefined") {
|
|
10802
|
-
return componentFactory;
|
|
10803
|
-
}
|
|
10804
|
-
/**
|
|
10805
|
-
* A cache of generated `motion` components, e.g `motion.div`, `motion.input` etc.
|
|
10806
|
-
* Rather than generating them anew every render.
|
|
10807
|
-
*/
|
|
10808
|
-
const componentCache = new Map();
|
|
10809
|
-
return new Proxy(componentFactory, {
|
|
10810
|
-
/**
|
|
10811
|
-
* Called when `motion` is referenced with a prop: `motion.div`, `motion.input` etc.
|
|
10812
|
-
* The prop name is passed through as `key` and we can use that to generate a `motion`
|
|
10813
|
-
* DOM component with that name.
|
|
10814
|
-
*/
|
|
10815
|
-
get: (_target, key) => {
|
|
10816
|
-
/**
|
|
10817
|
-
* If this element doesn't exist in the component cache, create it and cache.
|
|
10818
|
-
*/
|
|
10819
|
-
if (!componentCache.has(key)) {
|
|
10820
|
-
componentCache.set(key, componentFactory(key));
|
|
10821
|
-
}
|
|
10822
|
-
return componentCache.get(key);
|
|
10823
|
-
},
|
|
10824
|
-
});
|
|
10825
|
-
}
|
|
10826
|
-
|
|
10827
|
-
const motion$1 = /*@__PURE__*/ createDOMMotionComponentProxy(createMotionComponent);
|
|
10828
|
-
|
|
10829
10835
|
const m = /*@__PURE__*/ createDOMMotionComponentProxy(createMinimalMotionComponent);
|
|
10830
10836
|
|
|
10831
10837
|
/**
|
|
@@ -11488,6 +11494,7 @@ var motion = /*#__PURE__*/Object.freeze({
|
|
|
11488
11494
|
code: MotionCode,
|
|
11489
11495
|
col: MotionCol,
|
|
11490
11496
|
colgroup: MotionColgroup,
|
|
11497
|
+
create: createMotionComponent,
|
|
11491
11498
|
data: MotionData,
|
|
11492
11499
|
datalist: MotionDatalist,
|
|
11493
11500
|
dd: MotionDd,
|
|
@@ -12865,8 +12872,6 @@ exports.clamp = clamp;
|
|
|
12865
12872
|
exports.color = color;
|
|
12866
12873
|
exports.complex = complex;
|
|
12867
12874
|
exports.createBox = createBox;
|
|
12868
|
-
exports.createMinimalMotionComponent = createMinimalMotionComponent;
|
|
12869
|
-
exports.createMotionComponent = createMotionComponent;
|
|
12870
12875
|
exports.createRendererMotionComponent = createRendererMotionComponent;
|
|
12871
12876
|
exports.createScopedAnimate = createScopedAnimate;
|
|
12872
12877
|
exports.cubicBezier = cubicBezier;
|
|
@@ -12881,6 +12886,7 @@ exports.easeIn = easeIn;
|
|
|
12881
12886
|
exports.easeInOut = easeInOut;
|
|
12882
12887
|
exports.easeOut = easeOut;
|
|
12883
12888
|
exports.filterProps = filterProps;
|
|
12889
|
+
exports.findSpring = findSpring;
|
|
12884
12890
|
exports.frame = frame;
|
|
12885
12891
|
exports.frameData = frameData;
|
|
12886
12892
|
exports.inView = inView;
|
package/dist/cjs/m-entry.js
CHANGED
|
@@ -1766,6 +1766,7 @@ exports.clipPath = MotionClipPath;
|
|
|
1766
1766
|
exports.code = MotionCode;
|
|
1767
1767
|
exports.col = MotionCol;
|
|
1768
1768
|
exports.colgroup = MotionColgroup;
|
|
1769
|
+
exports.create = createMinimalMotionComponent;
|
|
1769
1770
|
exports.data = MotionData;
|
|
1770
1771
|
exports.datalist = MotionDatalist;
|
|
1771
1772
|
exports.dd = MotionDd;
|
package/dist/client-entry.d.ts
CHANGED
|
@@ -2246,6 +2246,18 @@ interface MotionProps extends AnimationProps, EventProps, PanHandlers, TapHandle
|
|
|
2246
2246
|
"data-framer-appear-id"?: string;
|
|
2247
2247
|
}
|
|
2248
2248
|
|
|
2249
|
+
type MotionComponentProps<Props> = {
|
|
2250
|
+
[K in Exclude<keyof Props, keyof MotionProps>]?: Props[K];
|
|
2251
|
+
} & MotionProps;
|
|
2252
|
+
|
|
2253
|
+
type UnionStringArray$1<T extends Readonly<string[]>> = T[number];
|
|
2254
|
+
declare const svgElements: readonly ["animate", "circle", "defs", "desc", "ellipse", "g", "image", "line", "filter", "marker", "mask", "metadata", "path", "pattern", "polygon", "polyline", "rect", "stop", "svg", "switch", "symbol", "text", "tspan", "use", "view", "clipPath", "feBlend", "feColorMatrix", "feComponentTransfer", "feComposite", "feConvolveMatrix", "feDiffuseLighting", "feDisplacementMap", "feDistantLight", "feDropShadow", "feFlood", "feFuncA", "feFuncB", "feFuncG", "feFuncR", "feGaussianBlur", "feImage", "feMerge", "feMergeNode", "feMorphology", "feOffset", "fePointLight", "feSpecularLighting", "feSpotLight", "feTile", "feTurbulence", "foreignObject", "linearGradient", "radialGradient", "textPath"];
|
|
2255
|
+
type SVGElements = UnionStringArray$1<typeof svgElements>;
|
|
2256
|
+
|
|
2257
|
+
type UnionStringArray<T extends Readonly<string[]>> = T[number];
|
|
2258
|
+
declare const htmlElements: readonly ["a", "abbr", "address", "area", "article", "aside", "audio", "b", "base", "bdi", "bdo", "big", "blockquote", "body", "br", "button", "canvas", "caption", "cite", "code", "col", "colgroup", "data", "datalist", "dd", "del", "details", "dfn", "dialog", "div", "dl", "dt", "em", "embed", "fieldset", "figcaption", "figure", "footer", "form", "h1", "h2", "h3", "h4", "h5", "h6", "head", "header", "hgroup", "hr", "html", "i", "iframe", "img", "input", "ins", "kbd", "keygen", "label", "legend", "li", "link", "main", "map", "mark", "menu", "menuitem", "meta", "meter", "nav", "noscript", "object", "ol", "optgroup", "option", "output", "p", "param", "picture", "pre", "progress", "q", "rp", "rt", "ruby", "s", "samp", "script", "section", "select", "small", "source", "span", "strong", "style", "sub", "summary", "sup", "table", "tbody", "td", "textarea", "tfoot", "th", "thead", "time", "title", "tr", "track", "u", "ul", "var", "video", "wbr", "webview"];
|
|
2259
|
+
type HTMLElements = UnionStringArray<typeof htmlElements>;
|
|
2260
|
+
|
|
2249
2261
|
/**
|
|
2250
2262
|
* @public
|
|
2251
2263
|
*/
|
|
@@ -2264,6 +2276,14 @@ type HTMLAttributesWithoutMotionProps<Attributes extends HTMLAttributes<Element>
|
|
|
2264
2276
|
* @public
|
|
2265
2277
|
*/
|
|
2266
2278
|
type HTMLMotionProps<TagName extends keyof ReactHTML> = HTMLAttributesWithoutMotionProps<UnwrapFactoryAttributes<ReactHTML[TagName]>, UnwrapFactoryElement<ReactHTML[TagName]>> & MotionProps;
|
|
2279
|
+
/**
|
|
2280
|
+
* Motion-optimised versions of React's HTML components.
|
|
2281
|
+
*
|
|
2282
|
+
* @public
|
|
2283
|
+
*/
|
|
2284
|
+
type HTMLMotionComponents = {
|
|
2285
|
+
[K in HTMLElements]: ForwardRefComponent<UnwrapFactoryElement<ReactHTML[K]>, HTMLMotionProps<K>>;
|
|
2286
|
+
};
|
|
2267
2287
|
|
|
2268
2288
|
interface SVGAttributesWithoutMotionProps<T> extends Pick<SVGAttributes<T>, Exclude<keyof SVGAttributes<T>, keyof MotionProps>> {
|
|
2269
2289
|
}
|
|
@@ -2272,11 +2292,20 @@ interface SVGAttributesWithoutMotionProps<T> extends Pick<SVGAttributes<T>, Excl
|
|
|
2272
2292
|
* @public
|
|
2273
2293
|
*/
|
|
2274
2294
|
type SVGAttributesAsMotionValues<T> = MakeMotion<SVGAttributesWithoutMotionProps<T>>;
|
|
2295
|
+
type UnwrapSVGFactoryElement<F> = F extends React.SVGProps<infer P> ? P : never;
|
|
2275
2296
|
/**
|
|
2276
2297
|
* @public
|
|
2277
2298
|
*/
|
|
2278
2299
|
interface SVGMotionProps<T> extends SVGAttributesAsMotionValues<T>, MotionProps {
|
|
2279
2300
|
}
|
|
2301
|
+
/**
|
|
2302
|
+
* Motion-optimised versions of React's SVG components.
|
|
2303
|
+
*
|
|
2304
|
+
* @public
|
|
2305
|
+
*/
|
|
2306
|
+
type SVGMotionComponents = {
|
|
2307
|
+
[K in SVGElements]: ForwardRefComponent<UnwrapSVGFactoryElement<JSX.IntrinsicElements[K]>, SVGMotionProps<UnwrapSVGFactoryElement<JSX.IntrinsicElements[K]>>>;
|
|
2308
|
+
};
|
|
2280
2309
|
|
|
2281
2310
|
interface ScrollOptions {
|
|
2282
2311
|
source?: Element;
|
|
@@ -2337,6 +2366,12 @@ declare global {
|
|
|
2337
2366
|
}
|
|
2338
2367
|
}
|
|
2339
2368
|
|
|
2369
|
+
type DOMMotionComponents = HTMLMotionComponents & SVGMotionComponents;
|
|
2370
|
+
|
|
2371
|
+
declare const createMotionComponent: <Props, TagName extends string = "div">(Component: string | TagName | React$1.ForwardRefExoticComponent<Props>, { forwardMotionProps }?: {
|
|
2372
|
+
forwardMotionProps: boolean;
|
|
2373
|
+
}) => TagName extends "symbol" | "object" | "map" | "filter" | "stop" | "clipPath" | "mask" | "marker" | "a" | "b" | "var" | "style" | "animate" | "progress" | "text" | "ruby" | "table" | "small" | "embed" | "sub" | "path" | "image" | "button" | "meter" | "textarea" | "circle" | "pre" | "caption" | "menu" | "menuitem" | "article" | "dialog" | "figure" | "form" | "img" | "link" | "main" | "option" | "switch" | "time" | "big" | "sup" | "abbr" | "address" | "area" | "aside" | "audio" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "canvas" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "div" | "dl" | "dt" | "em" | "fieldset" | "figcaption" | "footer" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "input" | "ins" | "kbd" | "label" | "legend" | "li" | "mark" | "meta" | "nav" | "noscript" | "ol" | "optgroup" | "output" | "p" | "picture" | "q" | "rp" | "rt" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "summary" | "tbody" | "td" | "tfoot" | "th" | "thead" | "title" | "tr" | "track" | "u" | "ul" | "video" | "wbr" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "line" | "linearGradient" | "metadata" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "svg" | "textPath" | "tspan" | "use" | "view" | "keygen" | "param" | "webview" ? DOMMotionComponents[TagName] : React$1.ForwardRefExoticComponent<MotionComponentProps<React$1.PropsWithChildren<Props>>>;
|
|
2374
|
+
|
|
2340
2375
|
/**
|
|
2341
2376
|
* HTML components
|
|
2342
2377
|
*/
|
|
@@ -2508,4 +2543,4 @@ declare const MotionLinearGradient: ForwardRefComponent<SVGLinearGradientElement
|
|
|
2508
2543
|
declare const MotionRadialGradient: ForwardRefComponent<SVGRadialGradientElement, SVGMotionProps<SVGRadialGradientElement>>;
|
|
2509
2544
|
declare const MotionTextPath: ForwardRefComponent<SVGTextPathElement, SVGMotionProps<SVGTextPathElement>>;
|
|
2510
2545
|
|
|
2511
|
-
export { MotionA as a, MotionAbbr as abbr, MotionAddress as address, MotionAnimate as animate, MotionArea as area, MotionArticle as article, MotionAside as aside, MotionAudio as audio, MotionB as b, MotionBase as base, MotionBdi as bdi, MotionBdo as bdo, MotionBig as big, MotionBlockquote as blockquote, MotionBody as body, MotionButton as button, MotionCanvas as canvas, MotionCaption as caption, MotionCircle as circle, MotionCite as cite, MotionClipPath as clipPath, MotionCode as code, MotionCol as col, MotionColgroup as colgroup, MotionData as data, MotionDatalist as datalist, MotionDd as dd, MotionDefs as defs, MotionDel as del, MotionDesc as desc, MotionDetails as details, MotionDfn as dfn, MotionDialog as dialog, MotionDiv as div, MotionDl as dl, MotionDt as dt, MotionEllipse as ellipse, MotionEm as em, MotionEmbed as embed, MotionFeBlend as feBlend, MotionFeColorMatrix as feColorMatrix, MotionFeComponentTransfer as feComponentTransfer, MotionFeComposite as feComposite, MotionFeConvolveMatrix as feConvolveMatrix, MotionFeDiffuseLighting as feDiffuseLighting, MotionFeDisplacementMap as feDisplacementMap, MotionFeDistantLight as feDistantLight, MotionFeDropShadow as feDropShadow, MotionFeFlood as feFlood, MotionFeFuncA as feFuncA, MotionFeFuncB as feFuncB, MotionFeFuncG as feFuncG, MotionFeFuncR as feFuncR, MotionFeGaussianBlur as feGaussianBlur, MotionFeImage as feImage, MotionFeMerge as feMerge, MotionFeMergeNode as feMergeNode, MotionFeMorphology as feMorphology, MotionFeOffset as feOffset, MotionFePointLight as fePointLight, MotionFeSpecularLighting as feSpecularLighting, MotionFeSpotLight as feSpotLight, MotionFeTile as feTile, MotionFeTurbulence as feTurbulence, MotionFieldset as fieldset, MotionFigcaption as figcaption, MotionFigure as figure, MotionFilter as filter, MotionFooter as footer, MotionForeignObject as foreignObject, MotionForm as form, MotionG as g, MotionH1 as h1, MotionH2 as h2, MotionH3 as h3, MotionH4 as h4, MotionH5 as h5, MotionH6 as h6, MotionHead as head, MotionHeader as header, MotionHgroup as hgroup, MotionHr as hr, MotionHtml as html, MotionI as i, MotionIframe as iframe, MotionImage as image, MotionImg as img, MotionInput as input, MotionIns as ins, MotionKbd as kbd, MotionKeygen as keygen, MotionLabel as label, MotionLegend as legend, MotionLi as li, MotionLine as line, MotionLinearGradient as linearGradient, MotionLink as link, MotionMain as main, MotionMap as map, MotionMark as mark, MotionMarker as marker, MotionMask as mask, MotionMenu as menu, MotionMenuitem as menuitem, MotionMetadata as metadata, MotionMeter as meter, MotionNav as nav, MotionObject as object, MotionOl as ol, MotionOptgroup as optgroup, MotionOption as option, MotionOutput as output, MotionP as p, MotionParam as param, MotionPath as path, MotionPattern as pattern, MotionPicture as picture, MotionPolygon as polygon, MotionPolyline as polyline, MotionPre as pre, MotionProgress as progress, MotionQ as q, MotionRadialGradient as radialGradient, MotionRect as rect, MotionRp as rp, MotionRt as rt, MotionRuby as ruby, MotionS as s, MotionSamp as samp, MotionScript as script, MotionSection as section, MotionSelect as select, MotionSmall as small, MotionSource as source, MotionSpan as span, MotionStop as stop, MotionStrong as strong, MotionStyle as style, MotionSub as sub, MotionSummary as summary, MotionSup as sup, MotionSvg as svg, MotionSymbol as symbol, MotionTable as table, MotionTbody as tbody, MotionTd as td, MotionText as text, MotionTextPath as textPath, MotionTextarea as textarea, MotionTfoot as tfoot, MotionTh as th, MotionThead as thead, MotionTime as time, MotionTitle as title, MotionTr as tr, MotionTrack as track, MotionTspan as tspan, MotionU as u, MotionUl as ul, MotionUse as use, MotionVideo as video, MotionView as view, MotionWbr as wbr, MotionWebview as webview };
|
|
2546
|
+
export { MotionA as a, MotionAbbr as abbr, MotionAddress as address, MotionAnimate as animate, MotionArea as area, MotionArticle as article, MotionAside as aside, MotionAudio as audio, MotionB as b, MotionBase as base, MotionBdi as bdi, MotionBdo as bdo, MotionBig as big, MotionBlockquote as blockquote, MotionBody as body, MotionButton as button, MotionCanvas as canvas, MotionCaption as caption, MotionCircle as circle, MotionCite as cite, MotionClipPath as clipPath, MotionCode as code, MotionCol as col, MotionColgroup as colgroup, createMotionComponent as create, MotionData as data, MotionDatalist as datalist, MotionDd as dd, MotionDefs as defs, MotionDel as del, MotionDesc as desc, MotionDetails as details, MotionDfn as dfn, MotionDialog as dialog, MotionDiv as div, MotionDl as dl, MotionDt as dt, MotionEllipse as ellipse, MotionEm as em, MotionEmbed as embed, MotionFeBlend as feBlend, MotionFeColorMatrix as feColorMatrix, MotionFeComponentTransfer as feComponentTransfer, MotionFeComposite as feComposite, MotionFeConvolveMatrix as feConvolveMatrix, MotionFeDiffuseLighting as feDiffuseLighting, MotionFeDisplacementMap as feDisplacementMap, MotionFeDistantLight as feDistantLight, MotionFeDropShadow as feDropShadow, MotionFeFlood as feFlood, MotionFeFuncA as feFuncA, MotionFeFuncB as feFuncB, MotionFeFuncG as feFuncG, MotionFeFuncR as feFuncR, MotionFeGaussianBlur as feGaussianBlur, MotionFeImage as feImage, MotionFeMerge as feMerge, MotionFeMergeNode as feMergeNode, MotionFeMorphology as feMorphology, MotionFeOffset as feOffset, MotionFePointLight as fePointLight, MotionFeSpecularLighting as feSpecularLighting, MotionFeSpotLight as feSpotLight, MotionFeTile as feTile, MotionFeTurbulence as feTurbulence, MotionFieldset as fieldset, MotionFigcaption as figcaption, MotionFigure as figure, MotionFilter as filter, MotionFooter as footer, MotionForeignObject as foreignObject, MotionForm as form, MotionG as g, MotionH1 as h1, MotionH2 as h2, MotionH3 as h3, MotionH4 as h4, MotionH5 as h5, MotionH6 as h6, MotionHead as head, MotionHeader as header, MotionHgroup as hgroup, MotionHr as hr, MotionHtml as html, MotionI as i, MotionIframe as iframe, MotionImage as image, MotionImg as img, MotionInput as input, MotionIns as ins, MotionKbd as kbd, MotionKeygen as keygen, MotionLabel as label, MotionLegend as legend, MotionLi as li, MotionLine as line, MotionLinearGradient as linearGradient, MotionLink as link, MotionMain as main, MotionMap as map, MotionMark as mark, MotionMarker as marker, MotionMask as mask, MotionMenu as menu, MotionMenuitem as menuitem, MotionMetadata as metadata, MotionMeter as meter, MotionNav as nav, MotionObject as object, MotionOl as ol, MotionOptgroup as optgroup, MotionOption as option, MotionOutput as output, MotionP as p, MotionParam as param, MotionPath as path, MotionPattern as pattern, MotionPicture as picture, MotionPolygon as polygon, MotionPolyline as polyline, MotionPre as pre, MotionProgress as progress, MotionQ as q, MotionRadialGradient as radialGradient, MotionRect as rect, MotionRp as rp, MotionRt as rt, MotionRuby as ruby, MotionS as s, MotionSamp as samp, MotionScript as script, MotionSection as section, MotionSelect as select, MotionSmall as small, MotionSource as source, MotionSpan as span, MotionStop as stop, MotionStrong as strong, MotionStyle as style, MotionSub as sub, MotionSummary as summary, MotionSup as sup, MotionSvg as svg, MotionSymbol as symbol, MotionTable as table, MotionTbody as tbody, MotionTd as td, MotionText as text, MotionTextPath as textPath, MotionTextarea as textarea, MotionTfoot as tfoot, MotionTh as th, MotionThead as thead, MotionTime as time, MotionTitle as title, MotionTr as tr, MotionTrack as track, MotionTspan as tspan, MotionU as u, MotionUl as ul, MotionUse as use, MotionVideo as video, MotionView as view, MotionWbr as wbr, MotionWebview as webview };
|