@design-edito/tools 0.3.11 → 0.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agnostic/arrays/index.d.ts +1 -1
- package/agnostic/arrays/index.js +1 -1
- package/agnostic/colors/index.d.ts +2 -2
- package/agnostic/colors/index.js +2 -2
- package/agnostic/css/index.d.ts +1 -1
- package/agnostic/css/index.js +1 -1
- package/agnostic/errors/index.d.ts +1 -1
- package/agnostic/errors/index.js +1 -1
- package/agnostic/html/hyper-json/smart-tags/coalesced/index.d.ts +14 -14
- package/agnostic/html/hyper-json/smart-tags/coalesced/index.js +14 -14
- package/agnostic/html/hyper-json/smart-tags/isolated/index.d.ts +3 -3
- package/agnostic/html/hyper-json/smart-tags/isolated/index.js +3 -3
- package/agnostic/index.d.ts +4 -4
- package/agnostic/index.js +4 -4
- package/agnostic/misc/crossenv/index.d.ts +1 -1
- package/agnostic/misc/crossenv/index.js +1 -1
- package/agnostic/misc/index.d.ts +3 -3
- package/agnostic/misc/index.js +3 -3
- package/agnostic/numbers/index.d.ts +1 -1
- package/agnostic/numbers/index.js +1 -1
- package/agnostic/objects/index.d.ts +2 -2
- package/agnostic/objects/index.js +2 -2
- package/agnostic/optim/index.d.ts +1 -1
- package/agnostic/optim/index.js +1 -1
- package/agnostic/random/index.d.ts +1 -1
- package/agnostic/random/index.js +1 -1
- package/agnostic/sanitization/index.d.ts +1 -1
- package/agnostic/sanitization/index.js +1 -1
- package/agnostic/strings/index.d.ts +2 -2
- package/agnostic/strings/index.js +2 -2
- package/agnostic/time/index.d.ts +2 -2
- package/agnostic/time/index.js +2 -2
- package/components/BeforeAfter/index.controlled.d.ts +46 -0
- package/components/BeforeAfter/index.d.ts +55 -0
- package/components/BeforeAfter/index.js +40 -0
- package/components/BeforeAfter/styles.module.css +0 -0
- package/components/BeforeAfter/utils.d.ts +4 -0
- package/components/ScrollListener/index.d.ts +47 -0
- package/components/ScrollListener/index.js +110 -0
- package/components/ScrollListener/styles.module.css +0 -0
- package/components/ScrollListener/utils.d.ts +41 -0
- package/components/Theatre/index.d.ts +2 -2
- package/components/Theatre/index.js +4 -4
- package/components/UIModule/index.d.ts +85 -0
- package/components/UIModule/index.js +134 -0
- package/components/UIModule/styles.module.css +0 -0
- package/components/Video/index.d.ts +20 -0
- package/components/Video/index.js +61 -34
- package/components/Video/utils.d.ts +4 -0
- package/components/index.d.ts +3 -0
- package/components/index.js +3 -0
- package/components/public-classnames.d.ts +3 -0
- package/node/@aws-s3/storage/directory/index.d.ts +1 -1
- package/node/@aws-s3/storage/directory/index.js +1 -1
- package/node/@aws-s3/storage/file/index.d.ts +1 -1
- package/node/@aws-s3/storage/file/index.js +1 -1
- package/node/@google-cloud/storage/directory/index.d.ts +1 -1
- package/node/@google-cloud/storage/directory/index.js +1 -1
- package/node/@google-cloud/storage/file/index.d.ts +2 -2
- package/node/@google-cloud/storage/file/index.js +2 -2
- package/node/cloud-storage/operations/index.d.ts +2 -2
- package/node/cloud-storage/operations/index.js +2 -2
- package/node/encryption/index.d.ts +1 -1
- package/node/encryption/index.js +1 -1
- package/node/files/index.d.ts +1 -1
- package/node/files/index.js +1 -1
- package/node/ftps/directory/index.d.ts +1 -1
- package/node/ftps/directory/index.js +1 -1
- package/node/ftps/file/index.d.ts +2 -2
- package/node/ftps/file/index.js +2 -2
- package/node/images/index.d.ts +2 -2
- package/node/images/index.js +2 -2
- package/node/images/transform/operations/index.d.ts +3 -3
- package/node/images/transform/operations/index.js +3 -3
- package/node/index.d.ts +4 -4
- package/node/index.js +4 -4
- package/node/sftp/file/index.d.ts +2 -2
- package/node/sftp/file/index.js +2 -2
- package/package.json +22 -1
|
@@ -2,9 +2,13 @@ import type { Dispatch, SetStateAction } from 'react';
|
|
|
2
2
|
export declare const muteAttributeWorkaround: (video: HTMLVideoElement | null, shouldMute: boolean, setIsSoundOn: Dispatch<SetStateAction<boolean>>) => void;
|
|
3
3
|
export declare const forceMute: (video: HTMLVideoElement | null, setIsSoundOn: Dispatch<SetStateAction<boolean>>) => void;
|
|
4
4
|
export declare const forceLoud: (video: HTMLVideoElement | null, setIsSoundOn: Dispatch<SetStateAction<boolean>>) => void;
|
|
5
|
+
export declare const forceVolume: (video: HTMLVideoElement | null, volumePercent: number, setVolume: Dispatch<SetStateAction<number>>) => void;
|
|
6
|
+
export declare const forceCurrentTime: (video: HTMLVideoElement | null, time: number, setCurrentTime: Dispatch<SetStateAction<number>>) => void;
|
|
5
7
|
export declare const forcePlay: (video: HTMLVideoElement | null, shouldDisclaimerBeOn: boolean, setIsPlaying: Dispatch<SetStateAction<boolean>>) => Promise<void>;
|
|
6
8
|
export declare const forcePause: (video: HTMLVideoElement | null, setIsPlaying: Dispatch<SetStateAction<boolean>>) => void;
|
|
9
|
+
export declare const forcePlaybackRate: (video: HTMLVideoElement | null, rate: number, setPlaybackRate: Dispatch<SetStateAction<number>>) => void;
|
|
7
10
|
export declare const forceFullScreen: (video: HTMLVideoElement | null, shouldDisclaimerBeOn: boolean, setIsFullscreen: Dispatch<SetStateAction<boolean>>) => Promise<void>;
|
|
8
11
|
export declare const forceExitFullScreen: (video: HTMLVideoElement | null, setIsFullscreen: Dispatch<SetStateAction<boolean>>) => Promise<void>;
|
|
9
12
|
export declare function secondsToMs(seconds: number): number;
|
|
10
13
|
export declare function formatTime(ms: number, format: string, fps?: number): string;
|
|
14
|
+
export declare const getTimelineClickProgress: (event: React.MouseEvent<HTMLDivElement, MouseEvent>, timeline: HTMLDivElement | null, video: HTMLVideoElement | null) => number;
|
package/components/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * as beforeAfter from './BeforeAfter/index.js'
|
|
1
2
|
export * as disclaimer from './Disclaimer/index.js'
|
|
2
3
|
export * as drawer from './Drawer/index.js'
|
|
3
4
|
export * as eventListener from './EventListener/index.js'
|
|
@@ -7,10 +8,12 @@ export * as intersectionObserver from './IntersectionObserver/index.js'
|
|
|
7
8
|
export * as paginator from './Paginator/index.js'
|
|
8
9
|
export * as resizeObserver from './ResizeObserver/index.js'
|
|
9
10
|
export * as scrllgngn from './Scrllgngn/index.js'
|
|
11
|
+
export * as scrollListener from './ScrollListener/index.js'
|
|
10
12
|
export * as sequencer from './Sequencer/index.js'
|
|
11
13
|
export * as shadowRoot from './ShadowRoot/index.js'
|
|
12
14
|
export * as subtitles from './Subtitles/index.js'
|
|
13
15
|
export * as theatre from './Theatre/index.js'
|
|
16
|
+
export * as uiModule from './UIModule/index.js'
|
|
14
17
|
export * as video from './Video/index.js'
|
|
15
18
|
export * as wipAudioQuote from './_WIP_AudioQuote/index.js'
|
|
16
19
|
export * as wipIcon from './_WIP_Icon/index.js'
|
package/components/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * as beforeAfter from './BeforeAfter/index.js'
|
|
1
2
|
export * as disclaimer from './Disclaimer/index.js'
|
|
2
3
|
export * as drawer from './Drawer/index.js'
|
|
3
4
|
export * as eventListener from './EventListener/index.js'
|
|
@@ -7,10 +8,12 @@ export * as intersectionObserver from './IntersectionObserver/index.js'
|
|
|
7
8
|
export * as paginator from './Paginator/index.js'
|
|
8
9
|
export * as resizeObserver from './ResizeObserver/index.js'
|
|
9
10
|
export * as scrllgngn from './Scrllgngn/index.js'
|
|
11
|
+
export * as scrollListener from './ScrollListener/index.js'
|
|
10
12
|
export * as sequencer from './Sequencer/index.js'
|
|
11
13
|
export * as shadowRoot from './ShadowRoot/index.js'
|
|
12
14
|
export * as subtitles from './Subtitles/index.js'
|
|
13
15
|
export * as theatre from './Theatre/index.js'
|
|
16
|
+
export * as uiModule from './UIModule/index.js'
|
|
14
17
|
export * as video from './Video/index.js'
|
|
15
18
|
export * as wipAudioQuote from './_WIP_AudioQuote/index.js'
|
|
16
19
|
export * as wipIcon from './_WIP_Icon/index.js'
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export declare const beforeAfter = "dsed-before-after";
|
|
1
2
|
export declare const disclaimer = "dsed-disclaimer";
|
|
2
3
|
export declare const drawer = "dsed-drawer";
|
|
3
4
|
export declare const eventListener = "dsed-event-listener";
|
|
@@ -7,8 +8,10 @@ export declare const intersectionObserver = "dsed-intersection-observer";
|
|
|
7
8
|
export declare const paginator = "dsed-paginator";
|
|
8
9
|
export declare const resizeObserver = "dsed-resize-observer";
|
|
9
10
|
export declare const scrllgngn = "dsed-scrllgngn";
|
|
11
|
+
export declare const scrollListener = "dsed-scroll-listener";
|
|
10
12
|
export declare const sequencer = "dsed-sequencer";
|
|
11
13
|
export declare const shadowRoot = "dsed-shadow-root";
|
|
12
14
|
export declare const subtitles = "dsed-subtitles";
|
|
13
15
|
export declare const theatre = "dsed-theatre";
|
|
16
|
+
export declare const uiModule = "dsed-ui-module";
|
|
14
17
|
export declare const video = "dsed-video";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * as download from './download/index.js'
|
|
2
|
+
export * as copy from './copy/index.js'
|
|
2
3
|
export * as exists from './exists/index.js'
|
|
3
4
|
export * as move from './move/index.js'
|
|
4
5
|
export * as remove from './remove/index.js'
|
|
5
6
|
export * as stat from './stat/index.js'
|
|
6
7
|
export * as upload from './upload/index.js'
|
|
7
|
-
export * as copy from './copy/index.js'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * as download from './download/index.js'
|
|
2
|
+
export * as copy from './copy/index.js'
|
|
2
3
|
export * as exists from './exists/index.js'
|
|
3
4
|
export * as move from './move/index.js'
|
|
4
5
|
export * as remove from './remove/index.js'
|
|
5
6
|
export * as stat from './stat/index.js'
|
|
6
7
|
export * as upload from './upload/index.js'
|
|
7
|
-
export * as copy from './copy/index.js'
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export * as download from './download/index.js'
|
|
2
1
|
export * as copy from './copy/index.js'
|
|
2
|
+
export * as download from './download/index.js'
|
|
3
3
|
export * as exists from './exists/index.js'
|
|
4
4
|
export * as generateSignedUrl from './generate-signed-url/index.js'
|
|
5
5
|
export * as getMetadata from './get-metadata/index.js'
|
|
6
6
|
export * as getPermissions from './get-permissions/index.js'
|
|
7
7
|
export * as move from './move/index.js'
|
|
8
8
|
export * as remove from './remove/index.js'
|
|
9
|
-
export * as stat from './stat/index.js'
|
|
10
9
|
export * as revokeSignedUrls from './revoke-signed-urls/index.js'
|
|
11
10
|
export * as updateMetadata from './update-metadata/index.js'
|
|
11
|
+
export * as stat from './stat/index.js'
|
|
12
12
|
export * as upload from './upload/index.js'
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export * as download from './download/index.js'
|
|
2
1
|
export * as copy from './copy/index.js'
|
|
2
|
+
export * as download from './download/index.js'
|
|
3
3
|
export * as exists from './exists/index.js'
|
|
4
4
|
export * as generateSignedUrl from './generate-signed-url/index.js'
|
|
5
5
|
export * as getMetadata from './get-metadata/index.js'
|
|
6
6
|
export * as getPermissions from './get-permissions/index.js'
|
|
7
7
|
export * as move from './move/index.js'
|
|
8
8
|
export * as remove from './remove/index.js'
|
|
9
|
-
export * as stat from './stat/index.js'
|
|
10
9
|
export * as revokeSignedUrls from './revoke-signed-urls/index.js'
|
|
11
10
|
export * as updateMetadata from './update-metadata/index.js'
|
|
11
|
+
export * as stat from './stat/index.js'
|
|
12
12
|
export * as upload from './upload/index.js'
|
|
@@ -2,10 +2,10 @@ export * as copyDir from './copy-dir/index.js'
|
|
|
2
2
|
export * as copyFile from './copy-file/index.js'
|
|
3
3
|
export * as downloadFile from './download-file/index.js'
|
|
4
4
|
export * as existsFile from './exists-file/index.js'
|
|
5
|
-
export * as moveDir from './move-dir/index.js'
|
|
6
5
|
export * as listDir from './list-dir/index.js'
|
|
6
|
+
export * as moveDir from './move-dir/index.js'
|
|
7
7
|
export * as moveFile from './move-file/index.js'
|
|
8
|
+
export * as removeDir from './remove-dir/index.js'
|
|
8
9
|
export * as removeFile from './remove-file/index.js'
|
|
9
10
|
export * as statFile from './stat-file/index.js'
|
|
10
|
-
export * as removeDir from './remove-dir/index.js'
|
|
11
11
|
export * as uploadFile from './upload-file/index.js'
|
|
@@ -2,10 +2,10 @@ export * as copyDir from './copy-dir/index.js'
|
|
|
2
2
|
export * as copyFile from './copy-file/index.js'
|
|
3
3
|
export * as downloadFile from './download-file/index.js'
|
|
4
4
|
export * as existsFile from './exists-file/index.js'
|
|
5
|
-
export * as moveDir from './move-dir/index.js'
|
|
6
5
|
export * as listDir from './list-dir/index.js'
|
|
6
|
+
export * as moveDir from './move-dir/index.js'
|
|
7
7
|
export * as moveFile from './move-file/index.js'
|
|
8
|
+
export * as removeDir from './remove-dir/index.js'
|
|
8
9
|
export * as removeFile from './remove-file/index.js'
|
|
9
10
|
export * as statFile from './stat-file/index.js'
|
|
10
|
-
export * as removeDir from './remove-dir/index.js'
|
|
11
11
|
export * as uploadFile from './upload-file/index.js'
|
package/node/encryption/index.js
CHANGED
package/node/files/index.d.ts
CHANGED
package/node/files/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * as copy from './copy/index.js'
|
|
2
2
|
export * as download from './download/index.js'
|
|
3
|
-
export * as remove from './remove/index.js'
|
|
4
|
-
export * as move from './move/index.js'
|
|
5
3
|
export * as exists from './exists/index.js'
|
|
4
|
+
export * as move from './move/index.js'
|
|
5
|
+
export * as remove from './remove/index.js'
|
|
6
6
|
export * as stat from './stat/index.js'
|
|
7
7
|
export * as upload from './upload/index.js'
|
package/node/ftps/file/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * as copy from './copy/index.js'
|
|
2
2
|
export * as download from './download/index.js'
|
|
3
|
-
export * as remove from './remove/index.js'
|
|
4
|
-
export * as move from './move/index.js'
|
|
5
3
|
export * as exists from './exists/index.js'
|
|
4
|
+
export * as move from './move/index.js'
|
|
5
|
+
export * as remove from './remove/index.js'
|
|
6
6
|
export * as stat from './stat/index.js'
|
|
7
7
|
export * as upload from './upload/index.js'
|
package/node/images/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * as create from './create/index.js'
|
|
2
2
|
export * as format from './format/index.js'
|
|
3
|
-
export * as utils from './utils/index.js'
|
|
4
|
-
export * as transform from './transform/index.js'
|
|
5
3
|
export * as metadata from './metadata/index.js'
|
|
4
|
+
export * as transform from './transform/index.js'
|
|
5
|
+
export * as utils from './utils/index.js'
|
package/node/images/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * as create from './create/index.js'
|
|
2
2
|
export * as format from './format/index.js'
|
|
3
|
-
export * as utils from './utils/index.js'
|
|
4
|
-
export * as transform from './transform/index.js'
|
|
5
3
|
export * as metadata from './metadata/index.js'
|
|
4
|
+
export * as transform from './transform/index.js'
|
|
5
|
+
export * as utils from './utils/index.js'
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
export * as blur from './blur/index.js'
|
|
1
2
|
export * as brighten from './brighten/index.js'
|
|
2
3
|
export * as extend from './extend/index.js'
|
|
3
4
|
export * as extract from './extract/index.js'
|
|
4
|
-
export * as blur from './blur/index.js'
|
|
5
|
-
export * as flip from './flip/index.js'
|
|
6
5
|
export * as flatten from './flatten/index.js'
|
|
7
|
-
export * as
|
|
6
|
+
export * as flip from './flip/index.js'
|
|
8
7
|
export * as flop from './flop/index.js'
|
|
8
|
+
export * as hue from './hue/index.js'
|
|
9
9
|
export * as level from './level/index.js'
|
|
10
10
|
export * as lighten from './lighten/index.js'
|
|
11
11
|
export * as normalize from './normalize/index.js'
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
export * as blur from './blur/index.js'
|
|
1
2
|
export * as brighten from './brighten/index.js'
|
|
2
3
|
export * as extend from './extend/index.js'
|
|
3
4
|
export * as extract from './extract/index.js'
|
|
4
|
-
export * as blur from './blur/index.js'
|
|
5
|
-
export * as flip from './flip/index.js'
|
|
6
5
|
export * as flatten from './flatten/index.js'
|
|
7
|
-
export * as
|
|
6
|
+
export * as flip from './flip/index.js'
|
|
8
7
|
export * as flop from './flop/index.js'
|
|
8
|
+
export * as hue from './hue/index.js'
|
|
9
9
|
export * as level from './level/index.js'
|
|
10
10
|
export * as lighten from './lighten/index.js'
|
|
11
11
|
export * as normalize from './normalize/index.js'
|
package/node/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export * as express from './@express/index.js'
|
|
2
1
|
export * as awsS3 from './@aws-s3/index.js'
|
|
3
2
|
export * as designEdito from './@design-edito/index.js'
|
|
3
|
+
export * as express from './@express/index.js'
|
|
4
4
|
export * as googleCloud from './@google-cloud/index.js'
|
|
5
5
|
export * as cloudStorage from './cloud-storage/index.js'
|
|
6
|
+
export * as files from './files/index.js'
|
|
6
7
|
export * as encryption from './encryption/index.js'
|
|
7
|
-
export * as ftps from './ftps/index.js'
|
|
8
8
|
export * as images from './images/index.js'
|
|
9
|
-
export * as
|
|
10
|
-
export * as sftp from './sftp/index.js'
|
|
9
|
+
export * as ftps from './ftps/index.js'
|
|
11
10
|
export * as process from './process/index.js'
|
|
11
|
+
export * as sftp from './sftp/index.js'
|
package/node/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export * as express from './@express/index.js'
|
|
2
1
|
export * as awsS3 from './@aws-s3/index.js'
|
|
3
2
|
export * as designEdito from './@design-edito/index.js'
|
|
3
|
+
export * as express from './@express/index.js'
|
|
4
4
|
export * as googleCloud from './@google-cloud/index.js'
|
|
5
5
|
export * as cloudStorage from './cloud-storage/index.js'
|
|
6
|
+
export * as files from './files/index.js'
|
|
6
7
|
export * as encryption from './encryption/index.js'
|
|
7
|
-
export * as ftps from './ftps/index.js'
|
|
8
8
|
export * as images from './images/index.js'
|
|
9
|
-
export * as
|
|
10
|
-
export * as sftp from './sftp/index.js'
|
|
9
|
+
export * as ftps from './ftps/index.js'
|
|
11
10
|
export * as process from './process/index.js'
|
|
11
|
+
export * as sftp from './sftp/index.js'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * as copy from './copy/index.js'
|
|
2
2
|
export * as download from './download/index.js'
|
|
3
|
-
export * as
|
|
3
|
+
export * as exists from './exists/index.js'
|
|
4
4
|
export * as move from './move/index.js'
|
|
5
5
|
export * as remove from './remove/index.js'
|
|
6
|
-
export * as
|
|
6
|
+
export * as stat from './stat/index.js'
|
|
7
7
|
export * as upload from './upload/index.js'
|
package/node/sftp/file/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * as copy from './copy/index.js'
|
|
2
2
|
export * as download from './download/index.js'
|
|
3
|
-
export * as
|
|
3
|
+
export * as exists from './exists/index.js'
|
|
4
4
|
export * as move from './move/index.js'
|
|
5
5
|
export * as remove from './remove/index.js'
|
|
6
|
-
export * as
|
|
6
|
+
export * as stat from './stat/index.js'
|
|
7
7
|
export * as upload from './upload/index.js'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@design-edito/tools",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.12",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Maxime Fabas",
|
|
6
6
|
"license": "ISC",
|
|
@@ -1315,6 +1315,13 @@
|
|
|
1315
1315
|
"./components/_WIP_Icon/index.js": {
|
|
1316
1316
|
"import": "./components/_WIP_Icon/index.js"
|
|
1317
1317
|
},
|
|
1318
|
+
"./components/BeforeAfter": {
|
|
1319
|
+
"import": "./components/BeforeAfter/index.js",
|
|
1320
|
+
"types": "./components/BeforeAfter/index.d.ts"
|
|
1321
|
+
},
|
|
1322
|
+
"./components/BeforeAfter/index.js": {
|
|
1323
|
+
"import": "./components/BeforeAfter/index.js"
|
|
1324
|
+
},
|
|
1318
1325
|
"./components/Disclaimer": {
|
|
1319
1326
|
"import": "./components/Disclaimer/index.js",
|
|
1320
1327
|
"types": "./components/Disclaimer/index.d.ts"
|
|
@@ -1381,6 +1388,13 @@
|
|
|
1381
1388
|
"./components/Scrllgngn/index.js": {
|
|
1382
1389
|
"import": "./components/Scrllgngn/index.js"
|
|
1383
1390
|
},
|
|
1391
|
+
"./components/ScrollListener": {
|
|
1392
|
+
"import": "./components/ScrollListener/index.js",
|
|
1393
|
+
"types": "./components/ScrollListener/index.d.ts"
|
|
1394
|
+
},
|
|
1395
|
+
"./components/ScrollListener/index.js": {
|
|
1396
|
+
"import": "./components/ScrollListener/index.js"
|
|
1397
|
+
},
|
|
1384
1398
|
"./components/Sequencer": {
|
|
1385
1399
|
"import": "./components/Sequencer/index.js",
|
|
1386
1400
|
"types": "./components/Sequencer/index.d.ts"
|
|
@@ -1409,6 +1423,13 @@
|
|
|
1409
1423
|
"./components/Theatre/index.js": {
|
|
1410
1424
|
"import": "./components/Theatre/index.js"
|
|
1411
1425
|
},
|
|
1426
|
+
"./components/UIModule": {
|
|
1427
|
+
"import": "./components/UIModule/index.js",
|
|
1428
|
+
"types": "./components/UIModule/index.d.ts"
|
|
1429
|
+
},
|
|
1430
|
+
"./components/UIModule/index.js": {
|
|
1431
|
+
"import": "./components/UIModule/index.js"
|
|
1432
|
+
},
|
|
1412
1433
|
"./components/utils": {
|
|
1413
1434
|
"import": "./components/utils/index.js",
|
|
1414
1435
|
"types": "./components/utils/index.d.ts"
|