@remotion/lottie 3.3.62 → 3.3.63

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.
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import type { LottieProps } from './types';
3
+ /**
4
+ * @description Part of the @remotion/lottie package.
5
+ * @see [Documentation](https://www.remotion.dev/docs/lottie/lottie)
6
+ */
7
+ export declare const Lottie: ({ animationData, className, direction, loop, playbackRate, style, onAnimationLoaded, }: LottieProps) => JSX.Element;
@@ -0,0 +1,91 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Lottie = void 0;
7
+ const jsx_runtime_1 = require("react/jsx-runtime");
8
+ const lottie_web_1 = __importDefault(require("lottie-web"));
9
+ const react_1 = require("react");
10
+ const remotion_1 = require("remotion");
11
+ const utils_1 = require("./utils");
12
+ const validate_loop_1 = require("./validate-loop");
13
+ const validate_playbackrate_1 = require("./validate-playbackrate");
14
+ /**
15
+ * @description Part of the @remotion/lottie package.
16
+ * @see [Documentation](https://www.remotion.dev/docs/lottie/lottie)
17
+ */
18
+ const Lottie = ({ animationData, className, direction, loop, playbackRate, style, onAnimationLoaded, }) => {
19
+ if (typeof animationData !== 'object') {
20
+ throw new Error('animationData should be provided as an object. If you only have the path to the JSON file, load it and pass it as animationData. See https://remotion.dev/docs/lottie/lottie#example for more information.');
21
+ }
22
+ (0, validate_playbackrate_1.validatePlaybackRate)(playbackRate);
23
+ (0, validate_loop_1.validateLoop)(loop);
24
+ const animationRef = (0, react_1.useRef)();
25
+ const lastFrameRef = (0, react_1.useRef)(null);
26
+ const containerRef = (0, react_1.useRef)(null);
27
+ const onAnimationLoadedRef = (0, react_1.useRef)();
28
+ onAnimationLoadedRef.current = onAnimationLoaded;
29
+ const [handle] = (0, react_1.useState)(() => (0, remotion_1.delayRender)('Waiting for Lottie animation to load'));
30
+ const frame = (0, remotion_1.useCurrentFrame)();
31
+ (0, react_1.useEffect)(() => {
32
+ var _a;
33
+ if (!containerRef.current) {
34
+ return;
35
+ }
36
+ animationRef.current = lottie_web_1.default.loadAnimation({
37
+ container: containerRef.current,
38
+ autoplay: false,
39
+ animationData,
40
+ });
41
+ if (lastFrameRef.current) {
42
+ animationRef.current.goToAndStop(lastFrameRef.current, true);
43
+ }
44
+ const { current: animation } = animationRef;
45
+ const onComplete = () => {
46
+ (0, remotion_1.continueRender)(handle);
47
+ };
48
+ animation.addEventListener('DOMLoaded', onComplete);
49
+ (_a = onAnimationLoadedRef.current) === null || _a === void 0 ? void 0 : _a.call(onAnimationLoadedRef, animation);
50
+ return () => {
51
+ lastFrameRef.current = animation.currentFrame;
52
+ animation.removeEventListener('DOMLoaded', onComplete);
53
+ animation.destroy();
54
+ };
55
+ }, [animationData, handle]);
56
+ (0, react_1.useEffect)(() => {
57
+ if (animationRef.current && direction) {
58
+ animationRef.current.setDirection(direction === 'backward' ? -1 : 1);
59
+ }
60
+ }, [direction]);
61
+ (0, react_1.useEffect)(() => {
62
+ if (animationRef.current && playbackRate) {
63
+ animationRef.current.setSpeed(playbackRate);
64
+ }
65
+ }, [playbackRate]);
66
+ (0, react_1.useEffect)(() => {
67
+ var _a;
68
+ if (!animationRef.current) {
69
+ return;
70
+ }
71
+ const { totalFrames } = animationRef.current;
72
+ const nextFrame = (0, utils_1.getNextFrame)({
73
+ currentFrame: frame * (playbackRate !== null && playbackRate !== void 0 ? playbackRate : 1),
74
+ direction,
75
+ loop,
76
+ totalFrames,
77
+ });
78
+ animationRef.current.goToAndStop(nextFrame, true);
79
+ const images = (_a = containerRef.current) === null || _a === void 0 ? void 0 : _a.querySelectorAll('image');
80
+ images.forEach((img) => {
81
+ const imgHandle = (0, remotion_1.delayRender)(`Waiting for lottie image with src="${img.href.baseVal}" to load`);
82
+ // https://stackoverflow.com/a/46839799
83
+ img.addEventListener('load', () => {
84
+ (0, remotion_1.continueRender)(imgHandle);
85
+ }, { once: true });
86
+ img.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', img.href.baseVal);
87
+ });
88
+ }, [direction, frame, loop, playbackRate]);
89
+ return (0, jsx_runtime_1.jsx)("div", { ref: containerRef, className: className, style: style });
90
+ };
91
+ exports.Lottie = Lottie;
@@ -0,0 +1,14 @@
1
+ import type { LottieAnimationData } from './types';
2
+ declare type LottieMetadata = {
3
+ fps: number;
4
+ durationInSeconds: number;
5
+ durationInFrames: number;
6
+ width: number;
7
+ height: number;
8
+ };
9
+ /**
10
+ * @description Get the basic metadata such as dimensions, duration and framerate of a Lottie animation.
11
+ * @see [Documentation](https://www.remotion.dev/docs/lottie/getlottiemetadata)
12
+ */
13
+ export declare const getLottieMetadata: (animationData: LottieAnimationData) => LottieMetadata | null;
14
+ export {};
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getLottieMetadata = void 0;
4
+ /**
5
+ * @description Get the basic metadata such as dimensions, duration and framerate of a Lottie animation.
6
+ * @see [Documentation](https://www.remotion.dev/docs/lottie/getlottiemetadata)
7
+ */
8
+ const getLottieMetadata = (animationData) => {
9
+ const width = animationData.w;
10
+ const height = animationData.h;
11
+ const framerate = animationData.fr;
12
+ const durationInFrames = animationData.op;
13
+ if (![width, height, framerate, durationInFrames].every(Boolean)) {
14
+ return null;
15
+ }
16
+ return {
17
+ durationInFrames: Math.floor(durationInFrames),
18
+ durationInSeconds: durationInFrames / framerate,
19
+ fps: framerate,
20
+ height,
21
+ width,
22
+ };
23
+ };
24
+ exports.getLottieMetadata = getLottieMetadata;
@@ -0,0 +1,3 @@
1
+ export { getLottieMetadata } from './get-lottie-metadata';
2
+ export { Lottie } from './Lottie';
3
+ export type { LottieAnimationData, LottieProps } from './types';
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Lottie = exports.getLottieMetadata = void 0;
4
+ var get_lottie_metadata_1 = require("./get-lottie-metadata");
5
+ Object.defineProperty(exports, "getLottieMetadata", { enumerable: true, get: function () { return get_lottie_metadata_1.getLottieMetadata; } });
6
+ var Lottie_1 = require("./Lottie");
7
+ Object.defineProperty(exports, "Lottie", { enumerable: true, get: function () { return Lottie_1.Lottie; } });
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const fs_1 = __importDefault(require("fs"));
7
+ const path_1 = __importDefault(require("path"));
8
+ const vitest_1 = require("vitest");
9
+ const get_lottie_metadata_1 = require("../get-lottie-metadata");
10
+ (0, vitest_1.test)('Should be able to get Lottie metadata', () => {
11
+ const file = fs_1.default.readFileSync(path_1.default.join(__dirname, 'example.json'), 'utf-8');
12
+ const parsed = JSON.parse(file);
13
+ (0, vitest_1.expect)((0, get_lottie_metadata_1.getLottieMetadata)(parsed)).toEqual({
14
+ durationInFrames: 90,
15
+ durationInSeconds: 3.0030030030030037,
16
+ fps: 29.9700012207031,
17
+ height: 1080,
18
+ width: 1920,
19
+ });
20
+ });
21
+ (0, vitest_1.test)('Should return null if invalid Lottie file', () => {
22
+ // @ts-expect-error
23
+ (0, vitest_1.expect)((0, get_lottie_metadata_1.getLottieMetadata)({})).toEqual(null);
24
+ });
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const vitest_1 = require("vitest");
4
+ const utils_1 = require("../utils");
5
+ (0, vitest_1.describe)('getNextFrame', () => {
6
+ (0, vitest_1.describe)('when loop is falsy', () => {
7
+ (0, vitest_1.it)('returns the current frame if smaller than total frames', () => {
8
+ (0, vitest_1.expect)((0, utils_1.getNextFrame)({ currentFrame: 23, totalFrames: 56 })).toBe(23);
9
+ });
10
+ (0, vitest_1.it)('returns the last frame if current frame is bigger than total frames', () => {
11
+ (0, vitest_1.expect)((0, utils_1.getNextFrame)({ currentFrame: 23, totalFrames: 20 })).toBe(20);
12
+ });
13
+ });
14
+ (0, vitest_1.describe)('when loop is truthy', () => {
15
+ (0, vitest_1.it)('returns the current frame if smaller than total frames', () => {
16
+ (0, vitest_1.expect)((0, utils_1.getNextFrame)({ currentFrame: 23, totalFrames: 56, loop: true })).toBe(23);
17
+ });
18
+ (0, vitest_1.it)('returns the modulo if current frame is bigger than total frames', () => {
19
+ (0, vitest_1.expect)((0, utils_1.getNextFrame)({ currentFrame: 23, totalFrames: 20, loop: true })).toBe(3);
20
+ });
21
+ });
22
+ (0, vitest_1.describe)('when direction is reverse and loop is falsy', () => {
23
+ (0, vitest_1.it)('returns the correct frame if current frame is smaller than total frames', () => {
24
+ (0, vitest_1.expect)((0, utils_1.getNextFrame)({ currentFrame: 15, totalFrames: 20, direction: 'backward' })).toBe(5);
25
+ });
26
+ (0, vitest_1.it)('returns frame zero if current frame is bigger than total frames', () => {
27
+ (0, vitest_1.expect)((0, utils_1.getNextFrame)({ currentFrame: 23, totalFrames: 20, direction: 'backward' })).toBe(0);
28
+ });
29
+ });
30
+ (0, vitest_1.describe)('when direction is reverse and loop is truthy', () => {
31
+ (0, vitest_1.it)('returns the correct frame if current frame is smaller than total frames', () => {
32
+ (0, vitest_1.expect)((0, utils_1.getNextFrame)({
33
+ currentFrame: 15,
34
+ totalFrames: 20,
35
+ direction: 'backward',
36
+ loop: true,
37
+ })).toBe(5);
38
+ });
39
+ (0, vitest_1.it)('returns (total-overflow) if current frame is bigger than total frames', () => {
40
+ (0, vitest_1.expect)((0, utils_1.getNextFrame)({
41
+ currentFrame: 23,
42
+ totalFrames: 20,
43
+ direction: 'backward',
44
+ loop: true,
45
+ })).toBe(17);
46
+ });
47
+ });
48
+ });
@@ -0,0 +1,38 @@
1
+ import type { AnimationItem } from 'lottie-web';
2
+ import type { CSSProperties } from 'react';
3
+ export declare type LottieAnimationData = {
4
+ fr: number;
5
+ w: number;
6
+ h: number;
7
+ op: number;
8
+ } & Record<string | number | symbol, unknown>;
9
+ export declare type LottieProps = {
10
+ /**
11
+ * JSON object with the animation data.
12
+ * */
13
+ animationData: LottieAnimationData;
14
+ /**
15
+ * CSS classes to apply on the container of the animation.
16
+ */
17
+ className?: string;
18
+ /**
19
+ * The direction of the animation. Defaults to forward.
20
+ */
21
+ direction?: 'forward' | 'backward';
22
+ /**
23
+ * If the animation should loop after its end.
24
+ */
25
+ loop?: boolean;
26
+ /**
27
+ * The speed of the animation. Defaults to 1.
28
+ */
29
+ playbackRate?: number;
30
+ /**
31
+ * CSS properties to apply to the container of the animation.
32
+ */
33
+ style?: CSSProperties;
34
+ /**
35
+ * Callback that gets invoked when new animation data has been initialized
36
+ */
37
+ onAnimationLoaded?: (animation: AnimationItem) => void;
38
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import type { LottieProps } from './types';
2
+ declare type Params = Pick<LottieProps, 'direction' | 'loop'> & {
3
+ currentFrame: number;
4
+ totalFrames: number;
5
+ };
6
+ export declare const getNextFrame: ({ currentFrame, direction, loop, totalFrames, }: Params) => number;
7
+ export {};
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getNextFrame = void 0;
4
+ const getNextFrame = ({ currentFrame, direction, loop, totalFrames, }) => {
5
+ const nextFrame = loop
6
+ ? currentFrame % totalFrames
7
+ : Math.min(currentFrame, totalFrames);
8
+ if (direction === 'backward') {
9
+ return totalFrames - nextFrame;
10
+ }
11
+ return nextFrame;
12
+ };
13
+ exports.getNextFrame = getNextFrame;
@@ -0,0 +1 @@
1
+ export declare const validateLoop: (loop: unknown) => void;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.validateLoop = void 0;
4
+ const validateLoop = (loop) => {
5
+ if (typeof loop === 'undefined') {
6
+ return;
7
+ }
8
+ if (typeof loop !== 'boolean') {
9
+ throw new TypeError(`The "loop" prop must be a boolean or undefined, but is "${JSON.stringify(loop)}"`);
10
+ }
11
+ };
12
+ exports.validateLoop = validateLoop;
@@ -0,0 +1 @@
1
+ export declare const validatePlaybackRate: (playbackRate: unknown) => void;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.validatePlaybackRate = void 0;
4
+ const validatePlaybackRate = (playbackRate) => {
5
+ if (typeof playbackRate === 'undefined') {
6
+ return;
7
+ }
8
+ if (typeof playbackRate !== 'number') {
9
+ throw new TypeError(`The "playbackRate" prop must be a number or undefined, but is ${JSON.stringify(playbackRate)}`);
10
+ }
11
+ if (Number.isNaN(playbackRate) || !Number.isFinite(playbackRate)) {
12
+ throw new TypeError(`The "playbackRate" props must be a real number, but is ${playbackRate}`);
13
+ }
14
+ if (playbackRate <= 0) {
15
+ throw new TypeError(`The "playbackRate" props must be positive, but is ${playbackRate}`);
16
+ }
17
+ };
18
+ exports.validatePlaybackRate = validatePlaybackRate;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import type { LottieProps } from './types';
3
+ /**
4
+ * @description Part of the @remotion/lottie package.
5
+ * @see [Documentation](https://www.remotion.dev/docs/lottie/lottie)
6
+ */
7
+ export declare const Lottie: ({ animationData, className, direction, loop, playbackRate, style, onAnimationLoaded, }: LottieProps) => JSX.Element;
@@ -0,0 +1,14 @@
1
+ import type { LottieAnimationData } from './types';
2
+ declare type LottieMetadata = {
3
+ fps: number;
4
+ durationInSeconds: number;
5
+ durationInFrames: number;
6
+ width: number;
7
+ height: number;
8
+ };
9
+ /**
10
+ * @description Get the basic metadata such as dimensions, duration and framerate of a Lottie animation.
11
+ * @see [Documentation](https://www.remotion.dev/docs/lottie/getlottiemetadata)
12
+ */
13
+ export declare const getLottieMetadata: (animationData: LottieAnimationData) => LottieMetadata | null;
14
+ export {};
@@ -0,0 +1,3 @@
1
+ export { getLottieMetadata } from './get-lottie-metadata';
2
+ export { Lottie } from './Lottie';
3
+ export type { LottieAnimationData, LottieProps } from './types';
@@ -0,0 +1,139 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import lottie from 'lottie-web';
3
+ import { useRef, useState, useEffect } from 'react';
4
+ import { delayRender, useCurrentFrame, continueRender } from 'remotion';
5
+
6
+ /**
7
+ * @description Get the basic metadata such as dimensions, duration and framerate of a Lottie animation.
8
+ * @see [Documentation](https://www.remotion.dev/docs/lottie/getlottiemetadata)
9
+ */
10
+ const getLottieMetadata = (animationData) => {
11
+ const width = animationData.w;
12
+ const height = animationData.h;
13
+ const framerate = animationData.fr;
14
+ const durationInFrames = animationData.op;
15
+ if (![width, height, framerate, durationInFrames].every(Boolean)) {
16
+ return null;
17
+ }
18
+ return {
19
+ durationInFrames: Math.floor(durationInFrames),
20
+ durationInSeconds: durationInFrames / framerate,
21
+ fps: framerate,
22
+ height,
23
+ width,
24
+ };
25
+ };
26
+
27
+ const getNextFrame = ({ currentFrame, direction, loop, totalFrames, }) => {
28
+ const nextFrame = loop
29
+ ? currentFrame % totalFrames
30
+ : Math.min(currentFrame, totalFrames);
31
+ if (direction === 'backward') {
32
+ return totalFrames - nextFrame;
33
+ }
34
+ return nextFrame;
35
+ };
36
+
37
+ const validateLoop = (loop) => {
38
+ if (typeof loop === 'undefined') {
39
+ return;
40
+ }
41
+ if (typeof loop !== 'boolean') {
42
+ throw new TypeError(`The "loop" prop must be a boolean or undefined, but is "${JSON.stringify(loop)}"`);
43
+ }
44
+ };
45
+
46
+ const validatePlaybackRate = (playbackRate) => {
47
+ if (typeof playbackRate === 'undefined') {
48
+ return;
49
+ }
50
+ if (typeof playbackRate !== 'number') {
51
+ throw new TypeError(`The "playbackRate" prop must be a number or undefined, but is ${JSON.stringify(playbackRate)}`);
52
+ }
53
+ if (Number.isNaN(playbackRate) || !Number.isFinite(playbackRate)) {
54
+ throw new TypeError(`The "playbackRate" props must be a real number, but is ${playbackRate}`);
55
+ }
56
+ if (playbackRate <= 0) {
57
+ throw new TypeError(`The "playbackRate" props must be positive, but is ${playbackRate}`);
58
+ }
59
+ };
60
+
61
+ /**
62
+ * @description Part of the @remotion/lottie package.
63
+ * @see [Documentation](https://www.remotion.dev/docs/lottie/lottie)
64
+ */
65
+ const Lottie = ({ animationData, className, direction, loop, playbackRate, style, onAnimationLoaded, }) => {
66
+ if (typeof animationData !== 'object') {
67
+ throw new Error('animationData should be provided as an object. If you only have the path to the JSON file, load it and pass it as animationData. See https://remotion.dev/docs/lottie/lottie#example for more information.');
68
+ }
69
+ validatePlaybackRate(playbackRate);
70
+ validateLoop(loop);
71
+ const animationRef = useRef();
72
+ const lastFrameRef = useRef(null);
73
+ const containerRef = useRef(null);
74
+ const onAnimationLoadedRef = useRef();
75
+ onAnimationLoadedRef.current = onAnimationLoaded;
76
+ const [handle] = useState(() => delayRender('Waiting for Lottie animation to load'));
77
+ const frame = useCurrentFrame();
78
+ useEffect(() => {
79
+ var _a;
80
+ if (!containerRef.current) {
81
+ return;
82
+ }
83
+ animationRef.current = lottie.loadAnimation({
84
+ container: containerRef.current,
85
+ autoplay: false,
86
+ animationData,
87
+ });
88
+ if (lastFrameRef.current) {
89
+ animationRef.current.goToAndStop(lastFrameRef.current, true);
90
+ }
91
+ const { current: animation } = animationRef;
92
+ const onComplete = () => {
93
+ continueRender(handle);
94
+ };
95
+ animation.addEventListener('DOMLoaded', onComplete);
96
+ (_a = onAnimationLoadedRef.current) === null || _a === void 0 ? void 0 : _a.call(onAnimationLoadedRef, animation);
97
+ return () => {
98
+ lastFrameRef.current = animation.currentFrame;
99
+ animation.removeEventListener('DOMLoaded', onComplete);
100
+ animation.destroy();
101
+ };
102
+ }, [animationData, handle]);
103
+ useEffect(() => {
104
+ if (animationRef.current && direction) {
105
+ animationRef.current.setDirection(direction === 'backward' ? -1 : 1);
106
+ }
107
+ }, [direction]);
108
+ useEffect(() => {
109
+ if (animationRef.current && playbackRate) {
110
+ animationRef.current.setSpeed(playbackRate);
111
+ }
112
+ }, [playbackRate]);
113
+ useEffect(() => {
114
+ var _a;
115
+ if (!animationRef.current) {
116
+ return;
117
+ }
118
+ const { totalFrames } = animationRef.current;
119
+ const nextFrame = getNextFrame({
120
+ currentFrame: frame * (playbackRate !== null && playbackRate !== void 0 ? playbackRate : 1),
121
+ direction,
122
+ loop,
123
+ totalFrames,
124
+ });
125
+ animationRef.current.goToAndStop(nextFrame, true);
126
+ const images = (_a = containerRef.current) === null || _a === void 0 ? void 0 : _a.querySelectorAll('image');
127
+ images.forEach((img) => {
128
+ const imgHandle = delayRender(`Waiting for lottie image with src="${img.href.baseVal}" to load`);
129
+ // https://stackoverflow.com/a/46839799
130
+ img.addEventListener('load', () => {
131
+ continueRender(imgHandle);
132
+ }, { once: true });
133
+ img.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', img.href.baseVal);
134
+ });
135
+ }, [direction, frame, loop, playbackRate]);
136
+ return jsx("div", { ref: containerRef, className: className, style: style });
137
+ };
138
+
139
+ export { Lottie, getLottieMetadata };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,38 @@
1
+ import type { AnimationItem } from 'lottie-web';
2
+ import type { CSSProperties } from 'react';
3
+ export declare type LottieAnimationData = {
4
+ fr: number;
5
+ w: number;
6
+ h: number;
7
+ op: number;
8
+ } & Record<string | number | symbol, unknown>;
9
+ export declare type LottieProps = {
10
+ /**
11
+ * JSON object with the animation data.
12
+ * */
13
+ animationData: LottieAnimationData;
14
+ /**
15
+ * CSS classes to apply on the container of the animation.
16
+ */
17
+ className?: string;
18
+ /**
19
+ * The direction of the animation. Defaults to forward.
20
+ */
21
+ direction?: 'forward' | 'backward';
22
+ /**
23
+ * If the animation should loop after its end.
24
+ */
25
+ loop?: boolean;
26
+ /**
27
+ * The speed of the animation. Defaults to 1.
28
+ */
29
+ playbackRate?: number;
30
+ /**
31
+ * CSS properties to apply to the container of the animation.
32
+ */
33
+ style?: CSSProperties;
34
+ /**
35
+ * Callback that gets invoked when new animation data has been initialized
36
+ */
37
+ onAnimationLoaded?: (animation: AnimationItem) => void;
38
+ };
@@ -0,0 +1,7 @@
1
+ import type { LottieProps } from './types';
2
+ declare type Params = Pick<LottieProps, 'direction' | 'loop'> & {
3
+ currentFrame: number;
4
+ totalFrames: number;
5
+ };
6
+ export declare const getNextFrame: ({ currentFrame, direction, loop, totalFrames, }: Params) => number;
7
+ export {};
@@ -0,0 +1 @@
1
+ export declare const validateLoop: (loop: unknown) => void;
@@ -0,0 +1 @@
1
+ export declare const validatePlaybackRate: (playbackRate: unknown) => void;
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.1/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.4/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/jsx-runtime.d.ts","../../../node_modules/.pnpm/lottie-web@5.9.6/node_modules/lottie-web/index.d.ts","../../core/dist/cjs/asset-types.d.ts","../../core/dist/cjs/folder.d.ts","../../core/dist/cjs/compositionmanager.d.ts","../../core/dist/cjs/get-static-files.d.ts","../../core/dist/cjs/nativelayers.d.ts","../../core/dist/cjs/absolutefill.d.ts","../../core/dist/cjs/volume-prop.d.ts","../../core/dist/cjs/audio/props.d.ts","../../core/dist/cjs/audio/audio.d.ts","../../core/dist/cjs/audio/index.d.ts","../../core/dist/cjs/cancel-render.d.ts","../../core/dist/cjs/composition.d.ts","../../core/dist/cjs/config.d.ts","../../core/dist/cjs/config/input-props.d.ts","../../core/dist/cjs/delay-render.d.ts","../../core/dist/cjs/easing.d.ts","../../core/dist/cjs/freeze.d.ts","../../core/dist/cjs/iframe.d.ts","../../core/dist/cjs/img.d.ts","../../core/dist/cjs/default-css.d.ts","../../core/dist/cjs/get-environment.d.ts","../../core/dist/cjs/timeline-position-state.d.ts","../../core/dist/cjs/truthy.d.ts","../../core/dist/cjs/volume-position-state.d.ts","../../core/dist/cjs/sequencecontext.d.ts","../../core/dist/cjs/nonce.d.ts","../../core/dist/cjs/wrap-remotion-context.d.ts","../../core/dist/cjs/video-config.d.ts","../../core/dist/cjs/internals.d.ts","../../core/dist/cjs/interpolate-colors.d.ts","../../core/dist/cjs/interpolate.d.ts","../../core/dist/cjs/sequence.d.ts","../../core/dist/cjs/loop/index.d.ts","../../core/dist/cjs/prefetch.d.ts","../../core/dist/cjs/random.d.ts","../../core/dist/cjs/register-root.d.ts","../../core/dist/cjs/series/index.d.ts","../../core/dist/cjs/spring/spring-utils.d.ts","../../core/dist/cjs/spring/measure-spring.d.ts","../../core/dist/cjs/spring/index.d.ts","../../core/dist/cjs/static-file.d.ts","../../core/dist/cjs/still.d.ts","../../core/dist/cjs/use-current-frame.d.ts","../../core/dist/cjs/use-video-config.d.ts","../../core/dist/cjs/version.d.ts","../../core/dist/cjs/video/props.d.ts","../../core/dist/cjs/video/offthreadvideo.d.ts","../../core/dist/cjs/video/video.d.ts","../../core/dist/cjs/video/index.d.ts","../../core/dist/cjs/index.d.ts","../src/types.ts","../src/utils.ts","../src/validate-loop.ts","../src/validate-playbackrate.ts","../src/lottie.tsx","../src/get-lottie-metadata.ts","../src/index.ts","../../../node_modules/.pnpm/tinyspy@1.0.2/node_modules/tinyspy/dist/index.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/esbuild@0.14.49/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/rollup@2.76.0/node_modules/rollup/dist/rollup.d.ts","../../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/vite@3.0.0/node_modules/vite/dist/node/index.d.ts","../../../node_modules/.pnpm/tinybench@2.3.0/node_modules/tinybench/dist/index.d.ts","../../../node_modules/.pnpm/vitest@0.24.3/node_modules/vitest/dist/global-732f9b14.d.ts","../../../node_modules/.pnpm/vitest@0.24.3/node_modules/vitest/dist/index-40e0cb97.d.ts","../../../node_modules/.pnpm/@types+chai@4.3.3/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/vitest@0.24.3/node_modules/vitest/dist/index.d.ts","../src/test/get-lottie-metadata.test.ts","../src/test/utils.test.ts","../../../node_modules/.pnpm/@types+react-dom@18.0.10/node_modules/@types/react-dom/index.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/helpers.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.9/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.3/node_modules/@types/eslint-scope/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"1c29793071152b207c01ea1954e343be9a44d85234447b2b236acae9e709a383","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ef8a481f9f2205fcc287eef2b4e461d2fc16bc8a0e49a844681f2f742d69747e","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","bffe6eb4ad5d249c263171fab79fe35d2b22b0b1a921462beba90066dc719ab4","117554f1f5046af1916d12ee4302f90855dea0440fb3d757c78fc6bd3c69d76e","472e6ef9d93f7259bd69e48235b29d65bef154ff88e1977028cb96736d2ee2be","1ef3ed3abe134dc67b9795f650be32383df3fe4498ed28b13f341767c0f9d028","59cdc2e038bdd8737bafdc581293bb2b8828653e35bbf5d26145ca7f2a2f8fa5","8676190846039cb3cd9f24894b1248ff608e2a8eae976e706194cb9e86abd766","641db1293684775c1c0c954d93f34821804ad69f97eb60a35b2b719cf6debbe1","c94bc6b926d0a5f4d38715489291d2198ea1710ffdc74069f4a82240024e435f","a6ab353e5a7c57cfadf60f0468127a870ddf3def9e58609c3dc099cdaf8c2684","77a28b4142b61db765c8ee13a3eab667f4beefd9a8bac0e82241f3b0bbcc4f60","736eea59824b87cc7afe7157a53e720956f900ac4f5f01b54047ed927af8fec7","9ec6e0bc0c492b9107c49baf1e78769540ea2a3c593f8631a9437a582af57f39","3c8c7dfcea92e3b32501cd4a9e81e638be4a86069fbfb53442486fe02894898c",{"version":"b5c0fbcdc9a6c34211ba20d695e8574ba4926742c6d38df7aa75358f2b31066e","affectsGlobalScope":true},"6921e7365ce247409e7785df10ec38f37a0e101307764866b572019cbf3ac99f","923ad6daeef6cd47a9d121f9a410f990619dd7e3250dd999ed163ed2d539709c","93dd4f7113bcc5ef507ddf75163ef1885317e4871e677a173166922f354603ff","7683d4e56b714769b707a1dc361a0b09dcece340f0a001a3c550d7756c57046d","ab5a2d8d47f269d1c94993d31fcbbc5a32dda80b263dc6f6fd8d30d7c4deec0b","612cf6b50fb86e9df7574ac3b95060d6b35d8db8bb8f7196457297a5e7ca364e","bde4bb646eba9524dede275e59d032494af2e889b5e2c05bdb37af3961ec5434","37976a829fdd39e2b927e5f3a2ff39a307ed9364820b9a1d5cb1f361597bd6ba","ee83bd3792e0449a8fe92318d015775ac23c04350efc2190e46e922ebaa513be","a4e075b09839f3741a4be9fc1b8b006bafe9929009b905f2f96e57087761a580","9c361f6137478031e15cc76889c41812f1d574fb288c1c4eb9a6a44ac4ec1d35","61df201e7c60933851ec13e57d894a710f107a2e45b52e9db1d49407671e4efb","11fff246cdd97e84faef2a7ffb7e77d4dad65fc31bb8878a1b97f47df2e33077","12ea565b4c39de671020acbe794bc8177e928a5e7987636fe0ebe07bb87ed2e9","f4a5ff88403b713c6b9201057805369ad08338ae9a6e5f6dd595e808a76c1824","0333dfa0216b1d3ab12de6e12799f35b6c0970c5b525b331336dfd5035325c44","afec1e7f59fcd84dcee0aa2f84009b08310b1b4679f75066dacb637c078a2552","cf81fec1540c0841da1fe7b4badfe5ca4b2a862620e13298efdae96cdeb0e541","d970db698b79bde67856d7fd39b3c566b6f4641866b35cb7b8fa2096261cf22c","6e23930ae513b9b2abe2862e2dca3bfc1746c4df43f5543d6ca63ba537d73b2b","8c9e13867a5d6f68c9c84634ca5c81cf00d0a97d3108c088cda459f66aa189ca","09a2b384117c27deb313d43628110586c3eccc247572507b312482405e96aa34","27f3902bb2aa0d593f94e4d954253b009e4d025ad888090ca42bef6eeb6f7786","5fdd1589e18dff1225e612ca574fbf16a20a96076b8d0c923086c226bc3dcc19","c65e41ba6509368dac938de889898fb8fb24c52198de7194e2021ce850966e9f","cfd14e9d6ed98d28ea83a80e5bcac0b5a4b095b215b9447999392b2f9ce5ccac","ff45c89d0397b00161151eab5f1cdaff9b50a7317ecdb816380fe9071c30b5ec","1a0968366374f3700f0d30e22453dee83733f8987f5fc207e84e63f413ec85ee","596db561b3d3629271a42352bac745e9903f1a225041ca17215a8dc107811dfb","8761f74baf198ac04b6adb9e313df91b814046d31cec231c0fcede87417e24ff","bebe9f83f9f67515b46698c69b2120fe46a6763ba63445d6448e4e2273a5f9ec","3b15e8ff3016bf69f0442f70878999ae5476ef038d6ed17c82e47702019605da","b5b145b992ff8520cc6e516d0a28d41b647868d9330c33b6146a36b36f5b3080","a964ea970369ac113b4d63520545056e4d2633e73a9520ac76666efdb8479b8d","5a16c4cbe7d2d309f990bfd63637cca7a4335f4f236ff037dcdd28ba1beaa8a3","8ee1752b81302b943ea4ad0a5c65c0de1b700f5f16b739b667edb2687111feb0",{"version":"b8a1e0b12c414d452378e2853726157d819c28f2f7b7ebbed69a6dcd1dac6a5e","affectsGlobalScope":true},"b3280e0e6a2bd1fcc538ae99e6bb5a3d888ef69db5c139da796f460ff460166a","8198255b39168303655c9dfbf47a99df230cae2f85b3a6a968d2128222b238b5","cde330d6e142eca8e506268b758f549305c2f1873613d09af2ed792a3ee2866e","53116e76993b5500551fb544f7a876b51a7bb116349c4e0049f82f95c08f716f","f43443f7c67aad3fd561b703cdd95f96ef9f48805065d1ca8e5d2f7dd6648cc9","57c55a4eefcfcf4feff446923508303d60078d92a264e651299f2e43901cf0ad","87cdb292bd0c264a61e36968e8c45e0094e4b6eb5518fa9e5929ae658c238ddc","a7157ee945ba3e7ccf605cf5f2e83e62f7694b92a3ddf8bc69c5182fe93aa98f","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"43978f18d1165eea81040bc9bfac1a551717f5cc9bd0f13b31bf490c5fcdc75f","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"c3ad91d23259b68e10a9bef08c5f9fa1d19f27ef740ac9af98ed226b030c09c6","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","57a558a99ab24fdff45a2c2db0c34285de2dcbc66149d9a3d83fcde844426e37","260aad3a6bd3fc510b7f97cfb05859bfc045ce185f8c2b4d73ddb9c43b0eb3c0","cb428529763c6c8e38e42db2a39f333ffcc6d3aab396b24ac84b22da752c1de0","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"fd5d2f531376b1e84df315df0fe724445353a0ae2e2c4de7bae01e24c6c2047a","84214d474bed6e36b7608ba8a39d463ff90061b8af47cbd1a8f7ecb775e21fac","944660c079e97f62f513c33ec64cebc44154374053d3a9adb04bf02f67ee1066","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","62a00c9cc0c78d9f282dcd7b0a7776aefe220106c3bc327e259e5f6484c6f556",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"f3e8bcce378a26bc672fce0ec05affabbbbfa18493b76f24c39136dea87100d0","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","e70339a3d63f806c43f24250c42aa0000093923457b0ed7dfc10e0ac910ebca9","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","b810390059fc34122556c644f586e7a2b4598ded8afe5ba70bb82fc2e50577b1","ba9de5c5823e06ee3314f959c138cdaf4477d3a1a0769f0d24e62911020e8088","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"893f4b8552c248f6542174b53d1519f739b20428c970dda89cd90485dab059d0","7e94220ad32f5c5760516da077a0ba2283ac11f56cea7b269215441b3b11c794","0f9fafb9c5bac3049ea80e5184ebc2e7ca2f345599ad3b77124f11ec82ac60ca","858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","d1c89db652113258e4ba4bbdf5cc7a2a3a600403d4d864a2087b95186253cd5b","11a90d2cb2eaf7fdf931a63b58279e8161f1477a1bd1e914ae026c1bbf9afed3","af18e30f3ba06e9870b61dfa4a109215caabdaa337590c51b4a044a9f338ce96","ace603f7b60599f2dcdbd71c07137b60a747dd33be540f4a294b890f9e0b89dc","7658fbdd425c656fb1849b44932ae7431e8c3198d22c65ce1490deb582743b52","7786c75c1b46e93b33c63dccf689143a5f47ff451a6b3bd9b10e4801cdeadcc2","615b7264db151461b896cd79719414d63f7b2b2100b275828e53cab95a356e2f","31491a01ed7466e0b3b0ef8407f2524683055eceb955b1d5ccf7096129468b39","f4b12f7dde4fc0e386648318481bdcfe861b566be246bebf0e8a11ebd909adf9","e8966f7c424780bb0b9d411ebe13eda8555ca15aa675603316c2952bc027b0e3","df0e5f3c4a518111d160cf3bebc9a3ac7d39c6e3bfb7a21d43c304896c3015e2","df4e2f161f74870708c2cc5e1036a6405b878496408fda1ee50d5b10e50d6601","bf791da347fb1c0ffc1e2fcd35867e64bb8355270ae26278198c521bdcf94569","e0e0e3c068e145fbb322120979299ff130ffdd39f0dcd0d5aeaa9f3f8a0d01d9","fde91356172e35b9ea68bbdf33721f7c80307a4ce65b82105eac800e9e744995","9bd5e5a4a1e66b35efe3c48ddac1116537ef86e041717f3a9b9f1e060c74efa6","d7e4a5f4ccfb749c3033fafc233073b4d1dcca0249785186c589602a81f9d86f","68161b6f3004fc10f8bb47a4986cef13c3b0728fb1ca3e1dc7316227d09b2c8d","030335feee5eb2b6d574f33866649f63f73535e4d678ca0445901003c15f8732","fbdd4ba3bdd2b138debf86f8ea4ac13a16574e9925d62be28a97f4da282feaeb",{"version":"f2964a46290ba20b70f58b85d2eb2fc2dc2bfc56b0d5af28d922a7dcc1a6509a","affectsGlobalScope":true},"1c0a9170ebe774eefadaa5cce04e8aa544ecba747a6398af3ac0fb75a857b829",{"version":"127bf414ca8ced28c9738b91a935121009d03bbc136668db980bd1ba18976b2b","affectsGlobalScope":true},"9ad1e440685819b491e87350a8be5a07f5ec3f7023303db1c16ce771d3420804","702a947719e3c00b8c6451af76ce450118a336f8076d4648a0bcf59bd00197fa","c5400a5f2eb5ff2e29a45dbf3f509bbde6d2b30f6e317878e83cd0a87018d352","e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6"],"options":{"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"jsx":4,"module":99,"noEmitHelpers":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":5},"fileIdsList":[[150],[150,191,192],[150,188,189,190,191],[150,192],[107,150],[110,150],[111,116,150],[112,122,123,130,139,149,150],[112,113,122,130,150],[114,150],[115,116,123,131,150],[116,139,146,150],[117,119,122,130,150],[118,150],[119,120,150],[121,122,150],[122,150],[122,123,124,139,149,150],[122,123,124,139,150],[125,130,139,149,150],[122,123,125,126,130,139,146,149,150],[125,127,139,146,149,150],[107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156],[122,128,150],[129,149,150],[119,122,130,139,150],[131,150],[132,150],[110,133,150],[134,148,150,154],[135,150],[136,150],[122,137,150],[137,138,150,152],[122,139,140,141,150],[139,141,150],[139,140,150],[142,150],[143,150],[122,144,145,150],[144,145,150],[116,130,146,150],[147,150],[130,148,150],[111,125,136,149,150],[116,150],[139,150,151],[150,152],[150,153],[111,116,122,124,133,139,149,150,152,154],[139,150,155],[46,150],[42,43,44,45,150],[150,164],[150,164,176],[150,161,162,163,165,176],[150,167],[150,164,171,175,178],[150,166,178],[150,169,171,174,175,178],[150,169,171,172,174,175,178],[150,161,162,163,164,165,167,168,169,170,171,175,178],[150,160,161,162,163,164,165,167,168,169,170,171,172,174,175,176,177],[150,160,178],[150,171,172,173,175,178],[150,174,178],[150,164,170,175,178],[150,168,176],[150,160],[122,123,125,127,130,139,146,149,150,155,157,158,159,178],[123,150,154,179,180,181],[106,150,181],[106,123,150,154,179,180,181,182,183],[46,55,56,150],[56,57,150],[46,55,150],[46,50,150],[46,50,51,52,53,54,58,59,60,61,62,63,64,65,66,67,70,76,77,78,79,80,81,82,83,84,85,88,89,90,91,92,93,97,150],[46,51,60,68,69,70,71,72,73,75,76,98,150],[46,80,150],[86,87,150],[86,150],[46,60,150],[76,150],[94,95,96,150],[46,94,150],[46,55,94,150],[46,51,53,70,73,74,150],[47,99,150],[47,99,103,104,150],[46,47,48,98,99,100,101,102,150],[47,104,123,132,150,184],[47,100,150,184],[46,47,48,150],[47,150]],"referencedMap":[[183,1],[193,2],[188,1],[192,3],[189,4],[191,1],[190,1],[107,5],[108,5],[110,6],[111,7],[112,8],[113,9],[114,10],[115,11],[116,12],[117,13],[118,14],[119,15],[120,15],[121,16],[122,17],[123,18],[124,19],[109,1],[156,1],[125,20],[126,21],[127,22],[157,23],[128,24],[129,25],[130,26],[131,27],[132,28],[133,29],[134,30],[135,31],[136,32],[137,33],[138,34],[139,35],[141,36],[140,37],[142,38],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,48],[153,49],[154,50],[155,51],[44,1],[187,52],[42,1],[46,53],[47,52],[45,1],[43,1],[158,1],[48,1],[162,54],[161,55],[164,56],[168,57],[165,55],[170,58],[167,59],[172,60],[177,1],[173,61],[176,62],[178,63],[166,64],[174,65],[175,66],[171,67],[163,54],[169,68],[159,1],[160,69],[180,1],[106,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[179,70],[181,71],[182,72],[184,73],[54,52],[49,1],[57,74],[58,75],[56,76],[59,1],[60,52],[51,77],[61,1],[62,1],[68,1],[63,1],[64,1],[50,52],[65,52],[69,1],[52,1],[66,52],[67,52],[98,78],[77,79],[78,1],[79,1],[81,80],[53,52],[74,52],[82,1],[83,1],[84,52],[80,52],[73,52],[85,80],[88,81],[87,82],[86,1],[89,1],[90,83],[70,52],[71,1],[91,1],[92,84],[93,1],[76,1],[97,85],[95,86],[94,76],[96,87],[72,52],[55,1],[75,88],[104,89],[105,90],[103,91],[185,92],[186,93],[99,94],[100,89],[101,95],[102,95]],"exportedModulesMap":[[183,1],[193,2],[188,1],[192,3],[189,4],[191,1],[190,1],[107,5],[108,5],[110,6],[111,7],[112,8],[113,9],[114,10],[115,11],[116,12],[117,13],[118,14],[119,15],[120,15],[121,16],[122,17],[123,18],[124,19],[109,1],[156,1],[125,20],[126,21],[127,22],[157,23],[128,24],[129,25],[130,26],[131,27],[132,28],[133,29],[134,30],[135,31],[136,32],[137,33],[138,34],[139,35],[141,36],[140,37],[142,38],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,48],[153,49],[154,50],[155,51],[44,1],[187,52],[42,1],[46,53],[47,52],[45,1],[43,1],[158,1],[48,1],[162,54],[161,55],[164,56],[168,57],[165,55],[170,58],[167,59],[172,60],[177,1],[173,61],[176,62],[178,63],[166,64],[174,65],[175,66],[171,67],[163,54],[169,68],[159,1],[160,69],[180,1],[106,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[179,70],[181,71],[182,72],[184,73],[54,52],[49,1],[57,74],[58,75],[56,76],[59,1],[60,52],[51,77],[61,1],[62,1],[68,1],[63,1],[64,1],[50,52],[65,52],[69,1],[52,1],[66,52],[67,52],[98,78],[77,79],[78,1],[79,1],[81,80],[53,52],[74,52],[82,1],[83,1],[84,52],[80,52],[73,52],[85,80],[88,81],[87,82],[86,1],[89,1],[90,83],[70,52],[71,1],[91,1],[92,84],[93,1],[76,1],[97,85],[95,86],[94,76],[96,87],[72,52],[55,1],[75,88],[104,89],[105,90],[103,91],[185,92],[186,93],[99,94],[100,89],[101,95],[102,95]],"semanticDiagnosticsPerFile":[183,193,188,192,189,191,190,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,109,156,125,126,127,157,128,129,130,131,132,133,134,135,136,137,138,139,141,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,44,187,42,46,47,45,43,158,48,162,161,164,168,165,170,167,172,177,173,176,178,166,174,175,171,163,169,159,160,180,106,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,1,41,179,181,182,184,54,49,57,58,56,59,60,51,61,62,68,63,64,50,65,69,52,66,67,98,77,78,79,81,53,74,82,83,84,80,73,85,88,87,86,89,90,70,71,91,92,93,76,97,95,94,96,72,55,75,104,105,103,185,186,99,100,101,102]},"version":"4.7.2"}
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.1/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.4/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/jsx-runtime.d.ts","../../../node_modules/.pnpm/lottie-web@5.9.6/node_modules/lottie-web/index.d.ts","../../core/dist/cjs/asset-types.d.ts","../../core/dist/cjs/folder.d.ts","../../core/dist/cjs/compositionmanager.d.ts","../../core/dist/cjs/get-static-files.d.ts","../../core/dist/cjs/nativelayers.d.ts","../../core/dist/cjs/absolutefill.d.ts","../../core/dist/cjs/volume-prop.d.ts","../../core/dist/cjs/audio/props.d.ts","../../core/dist/cjs/audio/audio.d.ts","../../core/dist/cjs/audio/index.d.ts","../../core/dist/cjs/cancel-render.d.ts","../../core/dist/cjs/composition.d.ts","../../core/dist/cjs/config.d.ts","../../core/dist/cjs/config/input-props.d.ts","../../core/dist/cjs/delay-render.d.ts","../../core/dist/cjs/easing.d.ts","../../core/dist/cjs/freeze.d.ts","../../core/dist/cjs/iframe.d.ts","../../core/dist/cjs/img.d.ts","../../core/dist/cjs/default-css.d.ts","../../core/dist/cjs/get-environment.d.ts","../../core/dist/cjs/timeline-position-state.d.ts","../../core/dist/cjs/truthy.d.ts","../../core/dist/cjs/volume-position-state.d.ts","../../core/dist/cjs/sequencecontext.d.ts","../../core/dist/cjs/nonce.d.ts","../../core/dist/cjs/wrap-remotion-context.d.ts","../../core/dist/cjs/video-config.d.ts","../../core/dist/cjs/internals.d.ts","../../core/dist/cjs/interpolate-colors.d.ts","../../core/dist/cjs/interpolate.d.ts","../../core/dist/cjs/sequence.d.ts","../../core/dist/cjs/loop/index.d.ts","../../core/dist/cjs/prefetch.d.ts","../../core/dist/cjs/random.d.ts","../../core/dist/cjs/register-root.d.ts","../../core/dist/cjs/series/index.d.ts","../../core/dist/cjs/spring/spring-utils.d.ts","../../core/dist/cjs/spring/measure-spring.d.ts","../../core/dist/cjs/spring/index.d.ts","../../core/dist/cjs/static-file.d.ts","../../core/dist/cjs/still.d.ts","../../core/dist/cjs/use-current-frame.d.ts","../../core/dist/cjs/use-video-config.d.ts","../../core/dist/cjs/version.d.ts","../../core/dist/cjs/video/props.d.ts","../../core/dist/cjs/video/offthreadvideo.d.ts","../../core/dist/cjs/video/video.d.ts","../../core/dist/cjs/video/index.d.ts","../../core/dist/cjs/index.d.ts","../src/types.ts","../src/utils.ts","../src/validate-loop.ts","../src/validate-playbackrate.ts","../src/lottie.tsx","../src/get-lottie-metadata.ts","../src/index.ts","../../../node_modules/.pnpm/tinyspy@1.0.2/node_modules/tinyspy/dist/index.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@16.10.2/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/esbuild@0.14.49/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/rollup@2.76.0/node_modules/rollup/dist/rollup.d.ts","../../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.4.18/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/vite@3.0.0/node_modules/vite/dist/node/index.d.ts","../../../node_modules/.pnpm/tinybench@2.3.0/node_modules/tinybench/dist/index.d.ts","../../../node_modules/.pnpm/vitest@0.24.3/node_modules/vitest/dist/global-732f9b14.d.ts","../../../node_modules/.pnpm/vitest@0.24.3/node_modules/vitest/dist/index-40e0cb97.d.ts","../../../node_modules/.pnpm/@types+chai@4.3.3/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/vitest@0.24.3/node_modules/vitest/dist/index.d.ts","../src/test/get-lottie-metadata.test.ts","../src/test/utils.test.ts","../../../node_modules/.pnpm/@types+react-dom@18.0.10/node_modules/@types/react-dom/index.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/helpers.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.9/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.3/node_modules/@types/eslint-scope/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"1c29793071152b207c01ea1954e343be9a44d85234447b2b236acae9e709a383","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ef8a481f9f2205fcc287eef2b4e461d2fc16bc8a0e49a844681f2f742d69747e","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","bffe6eb4ad5d249c263171fab79fe35d2b22b0b1a921462beba90066dc719ab4","117554f1f5046af1916d12ee4302f90855dea0440fb3d757c78fc6bd3c69d76e","472e6ef9d93f7259bd69e48235b29d65bef154ff88e1977028cb96736d2ee2be","1ef3ed3abe134dc67b9795f650be32383df3fe4498ed28b13f341767c0f9d028","59cdc2e038bdd8737bafdc581293bb2b8828653e35bbf5d26145ca7f2a2f8fa5","8676190846039cb3cd9f24894b1248ff608e2a8eae976e706194cb9e86abd766","641db1293684775c1c0c954d93f34821804ad69f97eb60a35b2b719cf6debbe1","c94bc6b926d0a5f4d38715489291d2198ea1710ffdc74069f4a82240024e435f","a6ab353e5a7c57cfadf60f0468127a870ddf3def9e58609c3dc099cdaf8c2684","77a28b4142b61db765c8ee13a3eab667f4beefd9a8bac0e82241f3b0bbcc4f60","736eea59824b87cc7afe7157a53e720956f900ac4f5f01b54047ed927af8fec7","9ec6e0bc0c492b9107c49baf1e78769540ea2a3c593f8631a9437a582af57f39","3c8c7dfcea92e3b32501cd4a9e81e638be4a86069fbfb53442486fe02894898c",{"version":"b5c0fbcdc9a6c34211ba20d695e8574ba4926742c6d38df7aa75358f2b31066e","affectsGlobalScope":true},"6921e7365ce247409e7785df10ec38f37a0e101307764866b572019cbf3ac99f","923ad6daeef6cd47a9d121f9a410f990619dd7e3250dd999ed163ed2d539709c","93dd4f7113bcc5ef507ddf75163ef1885317e4871e677a173166922f354603ff","7683d4e56b714769b707a1dc361a0b09dcece340f0a001a3c550d7756c57046d","ab5a2d8d47f269d1c94993d31fcbbc5a32dda80b263dc6f6fd8d30d7c4deec0b","612cf6b50fb86e9df7574ac3b95060d6b35d8db8bb8f7196457297a5e7ca364e","bde4bb646eba9524dede275e59d032494af2e889b5e2c05bdb37af3961ec5434","37976a829fdd39e2b927e5f3a2ff39a307ed9364820b9a1d5cb1f361597bd6ba","ee83bd3792e0449a8fe92318d015775ac23c04350efc2190e46e922ebaa513be","a4e075b09839f3741a4be9fc1b8b006bafe9929009b905f2f96e57087761a580","9c361f6137478031e15cc76889c41812f1d574fb288c1c4eb9a6a44ac4ec1d35","61df201e7c60933851ec13e57d894a710f107a2e45b52e9db1d49407671e4efb","11fff246cdd97e84faef2a7ffb7e77d4dad65fc31bb8878a1b97f47df2e33077","12ea565b4c39de671020acbe794bc8177e928a5e7987636fe0ebe07bb87ed2e9","f4a5ff88403b713c6b9201057805369ad08338ae9a6e5f6dd595e808a76c1824","0333dfa0216b1d3ab12de6e12799f35b6c0970c5b525b331336dfd5035325c44","afec1e7f59fcd84dcee0aa2f84009b08310b1b4679f75066dacb637c078a2552","cf81fec1540c0841da1fe7b4badfe5ca4b2a862620e13298efdae96cdeb0e541","d970db698b79bde67856d7fd39b3c566b6f4641866b35cb7b8fa2096261cf22c","6e23930ae513b9b2abe2862e2dca3bfc1746c4df43f5543d6ca63ba537d73b2b","8c9e13867a5d6f68c9c84634ca5c81cf00d0a97d3108c088cda459f66aa189ca","09a2b384117c27deb313d43628110586c3eccc247572507b312482405e96aa34","27f3902bb2aa0d593f94e4d954253b009e4d025ad888090ca42bef6eeb6f7786","5fdd1589e18dff1225e612ca574fbf16a20a96076b8d0c923086c226bc3dcc19","c65e41ba6509368dac938de889898fb8fb24c52198de7194e2021ce850966e9f","cfd14e9d6ed98d28ea83a80e5bcac0b5a4b095b215b9447999392b2f9ce5ccac","ff45c89d0397b00161151eab5f1cdaff9b50a7317ecdb816380fe9071c30b5ec","1a0968366374f3700f0d30e22453dee83733f8987f5fc207e84e63f413ec85ee","596db561b3d3629271a42352bac745e9903f1a225041ca17215a8dc107811dfb","8761f74baf198ac04b6adb9e313df91b814046d31cec231c0fcede87417e24ff","bebe9f83f9f67515b46698c69b2120fe46a6763ba63445d6448e4e2273a5f9ec","3b15e8ff3016bf69f0442f70878999ae5476ef038d6ed17c82e47702019605da","b5b145b992ff8520cc6e516d0a28d41b647868d9330c33b6146a36b36f5b3080","a964ea970369ac113b4d63520545056e4d2633e73a9520ac76666efdb8479b8d","5a16c4cbe7d2d309f990bfd63637cca7a4335f4f236ff037dcdd28ba1beaa8a3","8ee1752b81302b943ea4ad0a5c65c0de1b700f5f16b739b667edb2687111feb0",{"version":"b8a1e0b12c414d452378e2853726157d819c28f2f7b7ebbed69a6dcd1dac6a5e","affectsGlobalScope":true},{"version":"b3280e0e6a2bd1fcc538ae99e6bb5a3d888ef69db5c139da796f460ff460166a","signature":"a8f02ac7100c927a071a0ae0962173d620a5b51359b9c633f124a3832a80fee5"},{"version":"8198255b39168303655c9dfbf47a99df230cae2f85b3a6a968d2128222b238b5","signature":"00febd1d20eb93c5b50452e7760c13eb83ddd2cf93aadd8024958d73d5ddcb27"},{"version":"cde330d6e142eca8e506268b758f549305c2f1873613d09af2ed792a3ee2866e","signature":"99d31eba1f3ddf29e657f44d3b89611deeef5e1e647e200b0a1e95f4637861f5"},{"version":"53116e76993b5500551fb544f7a876b51a7bb116349c4e0049f82f95c08f716f","signature":"ffb853e159f2bd6cc35a07505a30dc51456966bb927377e0a566023f353360fd"},{"version":"f43443f7c67aad3fd561b703cdd95f96ef9f48805065d1ca8e5d2f7dd6648cc9","signature":"05d11caad272daead8178bba38fef7ac416a97616625bf04ffeb3cadc767d190"},{"version":"57c55a4eefcfcf4feff446923508303d60078d92a264e651299f2e43901cf0ad","signature":"e5c04e271955c7cc5d594030126af198a5545f0aadc844f5aef11e8bbd2ab1d0"},{"version":"87cdb292bd0c264a61e36968e8c45e0094e4b6eb5518fa9e5929ae658c238ddc","signature":"dfd1adc7afba0ee18b0bfc71a92812b45d54cc577c28ce507914556142e62dbc"},"a7157ee945ba3e7ccf605cf5f2e83e62f7694b92a3ddf8bc69c5182fe93aa98f","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"43978f18d1165eea81040bc9bfac1a551717f5cc9bd0f13b31bf490c5fcdc75f","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"c3ad91d23259b68e10a9bef08c5f9fa1d19f27ef740ac9af98ed226b030c09c6","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","57a558a99ab24fdff45a2c2db0c34285de2dcbc66149d9a3d83fcde844426e37","260aad3a6bd3fc510b7f97cfb05859bfc045ce185f8c2b4d73ddb9c43b0eb3c0","cb428529763c6c8e38e42db2a39f333ffcc6d3aab396b24ac84b22da752c1de0","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"fd5d2f531376b1e84df315df0fe724445353a0ae2e2c4de7bae01e24c6c2047a","84214d474bed6e36b7608ba8a39d463ff90061b8af47cbd1a8f7ecb775e21fac","944660c079e97f62f513c33ec64cebc44154374053d3a9adb04bf02f67ee1066","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","62a00c9cc0c78d9f282dcd7b0a7776aefe220106c3bc327e259e5f6484c6f556",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"f3e8bcce378a26bc672fce0ec05affabbbbfa18493b76f24c39136dea87100d0","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","e70339a3d63f806c43f24250c42aa0000093923457b0ed7dfc10e0ac910ebca9","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","b810390059fc34122556c644f586e7a2b4598ded8afe5ba70bb82fc2e50577b1","ba9de5c5823e06ee3314f959c138cdaf4477d3a1a0769f0d24e62911020e8088","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"893f4b8552c248f6542174b53d1519f739b20428c970dda89cd90485dab059d0","7e94220ad32f5c5760516da077a0ba2283ac11f56cea7b269215441b3b11c794","0f9fafb9c5bac3049ea80e5184ebc2e7ca2f345599ad3b77124f11ec82ac60ca","858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","d1c89db652113258e4ba4bbdf5cc7a2a3a600403d4d864a2087b95186253cd5b","11a90d2cb2eaf7fdf931a63b58279e8161f1477a1bd1e914ae026c1bbf9afed3","af18e30f3ba06e9870b61dfa4a109215caabdaa337590c51b4a044a9f338ce96","ace603f7b60599f2dcdbd71c07137b60a747dd33be540f4a294b890f9e0b89dc","7658fbdd425c656fb1849b44932ae7431e8c3198d22c65ce1490deb582743b52","7786c75c1b46e93b33c63dccf689143a5f47ff451a6b3bd9b10e4801cdeadcc2","615b7264db151461b896cd79719414d63f7b2b2100b275828e53cab95a356e2f","31491a01ed7466e0b3b0ef8407f2524683055eceb955b1d5ccf7096129468b39","f4b12f7dde4fc0e386648318481bdcfe861b566be246bebf0e8a11ebd909adf9","e8966f7c424780bb0b9d411ebe13eda8555ca15aa675603316c2952bc027b0e3","df0e5f3c4a518111d160cf3bebc9a3ac7d39c6e3bfb7a21d43c304896c3015e2","df4e2f161f74870708c2cc5e1036a6405b878496408fda1ee50d5b10e50d6601","bf791da347fb1c0ffc1e2fcd35867e64bb8355270ae26278198c521bdcf94569","e0e0e3c068e145fbb322120979299ff130ffdd39f0dcd0d5aeaa9f3f8a0d01d9","fde91356172e35b9ea68bbdf33721f7c80307a4ce65b82105eac800e9e744995","9bd5e5a4a1e66b35efe3c48ddac1116537ef86e041717f3a9b9f1e060c74efa6","d7e4a5f4ccfb749c3033fafc233073b4d1dcca0249785186c589602a81f9d86f","68161b6f3004fc10f8bb47a4986cef13c3b0728fb1ca3e1dc7316227d09b2c8d","030335feee5eb2b6d574f33866649f63f73535e4d678ca0445901003c15f8732","fbdd4ba3bdd2b138debf86f8ea4ac13a16574e9925d62be28a97f4da282feaeb",{"version":"f2964a46290ba20b70f58b85d2eb2fc2dc2bfc56b0d5af28d922a7dcc1a6509a","affectsGlobalScope":true},"1c0a9170ebe774eefadaa5cce04e8aa544ecba747a6398af3ac0fb75a857b829",{"version":"127bf414ca8ced28c9738b91a935121009d03bbc136668db980bd1ba18976b2b","affectsGlobalScope":true},"9ad1e440685819b491e87350a8be5a07f5ec3f7023303db1c16ce771d3420804",{"version":"702a947719e3c00b8c6451af76ce450118a336f8076d4648a0bcf59bd00197fa","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"c5400a5f2eb5ff2e29a45dbf3f509bbde6d2b30f6e317878e83cd0a87018d352","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6"],"options":{"composite":true,"declaration":true,"declarationMap":false,"esModuleInterop":true,"jsx":4,"module":1,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":5},"fileIdsList":[[150],[150,191,192],[150,188,189,190,191],[150,192],[107,150],[110,150],[111,116,150],[112,122,123,130,139,149,150],[112,113,122,130,150],[114,150],[115,116,123,131,150],[116,139,146,150],[117,119,122,130,150],[118,150],[119,120,150],[121,122,150],[122,150],[122,123,124,139,149,150],[122,123,124,139,150],[125,130,139,149,150],[122,123,125,126,130,139,146,149,150],[125,127,139,146,149,150],[107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156],[122,128,150],[129,149,150],[119,122,130,139,150],[131,150],[132,150],[110,133,150],[134,148,150,154],[135,150],[136,150],[122,137,150],[137,138,150,152],[122,139,140,141,150],[139,141,150],[139,140,150],[142,150],[143,150],[122,144,145,150],[144,145,150],[116,130,146,150],[147,150],[130,148,150],[111,125,136,149,150],[116,150],[139,150,151],[150,152],[150,153],[111,116,122,124,133,139,149,150,152,154],[139,150,155],[46,150],[42,43,44,45,150],[150,164],[150,164,176],[150,161,162,163,165,176],[150,167],[150,164,171,175,178],[150,166,178],[150,169,171,174,175,178],[150,169,171,172,174,175,178],[150,161,162,163,164,165,167,168,169,170,171,175,178],[150,160,161,162,163,164,165,167,168,169,170,171,172,174,175,176,177],[150,160,178],[150,171,172,173,175,178],[150,174,178],[150,164,170,175,178],[150,168,176],[150,160],[122,123,125,127,130,139,146,149,150,155,157,158,159,178],[123,150,154,179,180,181],[106,150,181],[106,123,150,154,179,180,181,182,183],[46,55,56,150],[56,57,150],[46,55,150],[46,50,150],[46,50,51,52,53,54,58,59,60,61,62,63,64,65,66,67,70,76,77,78,79,80,81,82,83,84,85,88,89,90,91,92,93,97,150],[46,51,60,68,69,70,71,72,73,75,76,98,150],[46,80,150],[86,87,150],[86,150],[46,60,150],[76,150],[94,95,96,150],[46,94,150],[46,55,94,150],[46,51,53,70,73,74,150],[47,99,150],[47,99,103,104,150],[46,47,48,98,99,100,101,102,150],[47,104,123,132,150,184],[47,100,150,184],[46,47,48,150],[47,150],[99],[99,103,104],[46,48]],"referencedMap":[[183,1],[193,2],[188,1],[192,3],[189,4],[191,1],[190,1],[107,5],[108,5],[110,6],[111,7],[112,8],[113,9],[114,10],[115,11],[116,12],[117,13],[118,14],[119,15],[120,15],[121,16],[122,17],[123,18],[124,19],[109,1],[156,1],[125,20],[126,21],[127,22],[157,23],[128,24],[129,25],[130,26],[131,27],[132,28],[133,29],[134,30],[135,31],[136,32],[137,33],[138,34],[139,35],[141,36],[140,37],[142,38],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,48],[153,49],[154,50],[155,51],[44,1],[187,52],[42,1],[46,53],[47,52],[45,1],[43,1],[158,1],[48,1],[162,54],[161,55],[164,56],[168,57],[165,55],[170,58],[167,59],[172,60],[177,1],[173,61],[176,62],[178,63],[166,64],[174,65],[175,66],[171,67],[163,54],[169,68],[159,1],[160,69],[180,1],[106,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[179,70],[181,71],[182,72],[184,73],[54,52],[49,1],[57,74],[58,75],[56,76],[59,1],[60,52],[51,77],[61,1],[62,1],[68,1],[63,1],[64,1],[50,52],[65,52],[69,1],[52,1],[66,52],[67,52],[98,78],[77,79],[78,1],[79,1],[81,80],[53,52],[74,52],[82,1],[83,1],[84,52],[80,52],[73,52],[85,80],[88,81],[87,82],[86,1],[89,1],[90,83],[70,52],[71,1],[91,1],[92,84],[93,1],[76,1],[97,85],[95,86],[94,76],[96,87],[72,52],[55,1],[75,88],[104,89],[105,90],[103,91],[185,92],[186,93],[99,94],[100,89],[101,95],[102,95]],"exportedModulesMap":[[183,1],[193,2],[188,1],[192,3],[189,4],[191,1],[190,1],[107,5],[108,5],[110,6],[111,7],[112,8],[113,9],[114,10],[115,11],[116,12],[117,13],[118,14],[119,15],[120,15],[121,16],[122,17],[123,18],[124,19],[109,1],[156,1],[125,20],[126,21],[127,22],[157,23],[128,24],[129,25],[130,26],[131,27],[132,28],[133,29],[134,30],[135,31],[136,32],[137,33],[138,34],[139,35],[141,36],[140,37],[142,38],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,48],[153,49],[154,50],[155,51],[44,1],[187,52],[42,1],[46,53],[47,52],[45,1],[43,1],[158,1],[48,1],[162,54],[161,55],[164,56],[168,57],[165,55],[170,58],[167,59],[172,60],[177,1],[173,61],[176,62],[178,63],[166,64],[174,65],[175,66],[171,67],[163,54],[169,68],[159,1],[160,69],[180,1],[106,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[179,70],[181,71],[182,72],[184,73],[54,52],[49,1],[57,74],[58,75],[56,76],[59,1],[60,52],[51,77],[61,1],[62,1],[68,1],[63,1],[64,1],[50,52],[65,52],[69,1],[52,1],[66,52],[67,52],[98,78],[77,79],[78,1],[79,1],[81,80],[53,52],[74,52],[82,1],[83,1],[84,52],[80,52],[73,52],[85,80],[88,81],[87,82],[86,1],[89,1],[90,83],[70,52],[71,1],[91,1],[92,84],[93,1],[76,1],[97,85],[95,86],[94,76],[96,87],[72,52],[55,1],[75,88],[104,96],[105,97],[103,96],[99,98],[100,96]],"semanticDiagnosticsPerFile":[183,193,188,192,189,191,190,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,109,156,125,126,127,157,128,129,130,131,132,133,134,135,136,137,138,139,141,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,44,187,42,46,47,45,43,158,48,162,161,164,168,165,170,167,172,177,173,176,178,166,174,175,171,163,169,159,160,180,106,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,1,41,179,181,182,184,54,49,57,58,56,59,60,51,61,62,68,63,64,50,65,69,52,66,67,98,77,78,79,81,53,74,82,83,84,80,73,85,88,87,86,89,90,70,71,91,92,93,76,97,95,94,96,72,55,75,104,105,103,185,186,99,100,101,102]},"version":"4.7.2"}
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "@remotion/lottie",
3
- "version": "3.3.62",
3
+ "version": "3.3.63",
4
4
  "description": "Remotion Lottie",
5
- "main": "dist/index.js",
5
+ "main": "dist/cjs/index.js",
6
+ "types": "dist/cjs/index.d.ts",
7
+ "module": "dist/esm/index.mjs",
6
8
  "sideEffects": false,
7
9
  "scripts": {
8
10
  "lint": "eslint src --ext ts,tsx",
9
11
  "test": "vitest --run",
10
- "build": "tsc -d",
12
+ "build": "rollup --config rollup.config.js && tsc -d",
11
13
  "watch": "tsc -w"
12
14
  },
13
15
  "repository": {
@@ -27,15 +29,25 @@
27
29
  ],
28
30
  "license": "SEE LICENSE IN LICENSE.md",
29
31
  "dependencies": {
30
- "remotion": "3.3.62"
32
+ "remotion": "3.3.63"
31
33
  },
32
34
  "peerDependencies": {
33
35
  "lottie-web": "^5",
34
36
  "react": ">=16.8.0",
35
37
  "react-dom": ">=16.8.0"
36
38
  },
39
+ "exports": {
40
+ "./package.json": "./package.json",
41
+ ".": {
42
+ "types": "./dist/cjs/index.d.ts",
43
+ "module": "./dist/esm/index.mjs",
44
+ "import": "./dist/esm/index.mjs",
45
+ "require": "./dist/cjs/index.js"
46
+ }
47
+ },
37
48
  "devDependencies": {
38
49
  "@jonny/eslint-config": "3.0.266",
50
+ "@rollup/plugin-typescript": "^8.2.0",
39
51
  "@types/node": "^16.7.5",
40
52
  "@types/react": "18.0.26",
41
53
  "@types/react-dom": "18.0.10",
@@ -44,6 +56,7 @@
44
56
  "prettier-plugin-organize-imports": "^2.3.4",
45
57
  "react": "^18.0.0",
46
58
  "react-dom": "^18.0.0",
59
+ "rollup": "^2.70.1",
47
60
  "typescript": "^4.7.0",
48
61
  "vitest": "0.24.3"
49
62
  },
@@ -58,5 +71,5 @@
58
71
  "publishConfig": {
59
72
  "access": "public"
60
73
  },
61
- "gitHead": "8fb0700ad70d5feca5fa86c414434757d323292a"
74
+ "gitHead": "d151c94785f1727bef8497e2af68e2add0a58807"
62
75
  }