@tomorrowevening/theatre-studio 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/IDBStorage.d.ts +16 -0
- package/dist/IDBStorage.d.ts.map +1 -0
- package/dist/IDBStorage.js +19 -0
- package/dist/PaneManager.d.ts +16 -0
- package/dist/PaneManager.d.ts.map +1 -0
- package/dist/PaneManager.js +112 -0
- package/dist/Scrub.d.ts +83 -0
- package/dist/Scrub.d.ts.map +1 -0
- package/dist/Scrub.js +134 -0
- package/dist/Studio.d.ts +79 -0
- package/dist/Studio.d.ts.map +1 -0
- package/dist/Studio.js +405 -0
- package/dist/StudioBundle.d.ts +10 -0
- package/dist/StudioBundle.d.ts.map +1 -0
- package/dist/StudioBundle.js +21 -0
- package/dist/StudioStore/StudioStore.d.ts +46 -0
- package/dist/StudioStore/StudioStore.d.ts.map +1 -0
- package/dist/StudioStore/StudioStore.js +163 -0
- package/dist/StudioStore/createTransactionPrivateApi.d.ts +3 -0
- package/dist/StudioStore/createTransactionPrivateApi.d.ts.map +1 -0
- package/dist/StudioStore/createTransactionPrivateApi.js +204 -0
- package/dist/StudioStore/generateDiskStateRevision.d.ts +2 -0
- package/dist/StudioStore/generateDiskStateRevision.d.ts.map +1 -0
- package/dist/StudioStore/generateDiskStateRevision.js +4 -0
- package/dist/StudioStore/persistStateOfStudio.d.ts +5 -0
- package/dist/StudioStore/persistStateOfStudio.d.ts.map +1 -0
- package/dist/StudioStore/persistStateOfStudio.js +61 -0
- package/dist/TheatreStudio.d.ts +426 -0
- package/dist/TheatreStudio.d.ts.map +1 -0
- package/dist/TheatreStudio.js +154 -0
- package/dist/UI/UI.d.ts +14 -0
- package/dist/UI/UI.d.ts.map +1 -0
- package/dist/UI/UI.js +65 -0
- package/dist/UI/UINonSSRBits.d.ts +10 -0
- package/dist/UI/UINonSSRBits.d.ts.map +1 -0
- package/dist/UI/UINonSSRBits.js +60 -0
- package/dist/UIRoot/PanelsRoot.d.ts +4 -0
- package/dist/UIRoot/PanelsRoot.d.ts.map +1 -0
- package/dist/UIRoot/PanelsRoot.js +19 -0
- package/dist/UIRoot/PointerCapturing.d.ts +46 -0
- package/dist/UIRoot/PointerCapturing.d.ts.map +1 -0
- package/dist/UIRoot/PointerCapturing.js +96 -0
- package/dist/UIRoot/ProvideTheme.d.ts +6 -0
- package/dist/UIRoot/ProvideTheme.d.ts.map +1 -0
- package/dist/UIRoot/ProvideTheme.js +9 -0
- package/dist/UIRoot/UIRoot.d.ts +5 -0
- package/dist/UIRoot/UIRoot.d.ts.map +1 -0
- package/dist/UIRoot/UIRoot.js +79 -0
- package/dist/UIRoot/useKeyboardShortcuts.d.ts +7 -0
- package/dist/UIRoot/useKeyboardShortcuts.d.ts.map +1 -0
- package/dist/UIRoot/useKeyboardShortcuts.js +158 -0
- package/dist/checkForUpdates.d.ts +2 -0
- package/dist/checkForUpdates.d.ts.map +1 -0
- package/dist/checkForUpdates.js +86 -0
- package/dist/css.d.ts +39 -0
- package/dist/css.d.ts.map +1 -0
- package/dist/css.js +116 -0
- package/dist/getStudio.d.ts +7 -0
- package/dist/getStudio.d.ts.map +1 -0
- package/dist/getStudio.js +10 -0
- package/dist/index.d.ts +6 -9
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +56 -105
- package/dist/notify.d.ts +12 -0
- package/dist/notify.d.ts.map +1 -0
- package/dist/notify.js +328 -0
- package/dist/panels/BasePanel/BasePanel.d.ts +35 -0
- package/dist/panels/BasePanel/BasePanel.d.ts.map +1 -0
- package/dist/panels/BasePanel/BasePanel.js +74 -0
- package/dist/panels/BasePanel/ExtensionPaneWrapper.d.ts +8 -0
- package/dist/panels/BasePanel/ExtensionPaneWrapper.d.ts.map +1 -0
- package/dist/panels/BasePanel/ExtensionPaneWrapper.js +138 -0
- package/dist/panels/BasePanel/PanelDragZone.d.ts +4 -0
- package/dist/panels/BasePanel/PanelDragZone.d.ts.map +1 -0
- package/dist/panels/BasePanel/PanelDragZone.js +88 -0
- package/dist/panels/BasePanel/PanelResizeHandle.d.ts +7 -0
- package/dist/panels/BasePanel/PanelResizeHandle.d.ts.map +1 -0
- package/dist/panels/BasePanel/PanelResizeHandle.js +184 -0
- package/dist/panels/BasePanel/PanelResizers.d.ts +4 -0
- package/dist/panels/BasePanel/PanelResizers.d.ts.map +1 -0
- package/dist/panels/BasePanel/PanelResizers.js +14 -0
- package/dist/panels/BasePanel/PanelWrapper.d.ts +4 -0
- package/dist/panels/BasePanel/PanelWrapper.d.ts.map +1 -0
- package/dist/panels/BasePanel/PanelWrapper.js +34 -0
- package/dist/panels/BasePanel/common.d.ts +15 -0
- package/dist/panels/BasePanel/common.d.ts.map +1 -0
- package/dist/panels/BasePanel/common.js +52 -0
- package/dist/panels/DetailPanel/DetailPanel.d.ts +6 -0
- package/dist/panels/DetailPanel/DetailPanel.d.ts.map +1 -0
- package/dist/panels/DetailPanel/DetailPanel.js +146 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailCompoundPropEditor.d.ts +14 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailCompoundPropEditor.d.ts.map +1 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailCompoundPropEditor.js +169 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailSimplePropEditor.d.ts +20 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailSimplePropEditor.d.ts.map +1 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailSimplePropEditor.js +22 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/SingleRowPropEditor.d.ts +14 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/SingleRowPropEditor.d.ts.map +1 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/SingleRowPropEditor.js +89 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/getDetailRowHighlightBackground.d.ts +5 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/getDetailRowHighlightBackground.d.ts.map +1 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/getDetailRowHighlightBackground.js +7 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/rowIndentationFormulaCSS.d.ts +2 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/rowIndentationFormulaCSS.d.ts.map +1 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/rowIndentationFormulaCSS.js +1 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail.d.ts +26 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail.d.ts.map +1 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail.js +28 -0
- package/dist/panels/DetailPanel/EmptyState.d.ts +4 -0
- package/dist/panels/DetailPanel/EmptyState.d.ts.map +1 -0
- package/dist/panels/DetailPanel/EmptyState.js +36 -0
- package/dist/panels/DetailPanel/ObjectDetails.d.ts +8 -0
- package/dist/panels/DetailPanel/ObjectDetails.d.ts.map +1 -0
- package/dist/panels/DetailPanel/ObjectDetails.js +52 -0
- package/dist/panels/DetailPanel/ProjectDetails/StateConflictRow.d.ts +7 -0
- package/dist/panels/DetailPanel/ProjectDetails/StateConflictRow.d.ts.map +1 -0
- package/dist/panels/DetailPanel/ProjectDetails/StateConflictRow.js +86 -0
- package/dist/panels/DetailPanel/ProjectDetails.d.ts +7 -0
- package/dist/panels/DetailPanel/ProjectDetails.d.ts.map +1 -0
- package/dist/panels/DetailPanel/ProjectDetails.js +98 -0
- package/dist/panels/OutlinePanel/BaseItem.d.ts +18 -0
- package/dist/panels/OutlinePanel/BaseItem.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/BaseItem.js +136 -0
- package/dist/panels/OutlinePanel/ObjectsList/ObjectItem.d.ts +8 -0
- package/dist/panels/OutlinePanel/ObjectsList/ObjectItem.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/ObjectsList/ObjectItem.js +14 -0
- package/dist/panels/OutlinePanel/ObjectsList/ObjectsList.d.ts +11 -0
- package/dist/panels/OutlinePanel/ObjectsList/ObjectsList.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/ObjectsList/ObjectsList.js +85 -0
- package/dist/panels/OutlinePanel/OutlinePanel.d.ts +5 -0
- package/dist/panels/OutlinePanel/OutlinePanel.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/OutlinePanel.js +73 -0
- package/dist/panels/OutlinePanel/ProjectsList/ProjectListItem.d.ts +8 -0
- package/dist/panels/OutlinePanel/ProjectsList/ProjectListItem.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/ProjectsList/ProjectListItem.js +38 -0
- package/dist/panels/OutlinePanel/ProjectsList/ProjectsList.d.ts +4 -0
- package/dist/panels/OutlinePanel/ProjectsList/ProjectsList.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/ProjectsList/ProjectsList.js +22 -0
- package/dist/panels/OutlinePanel/SheetsList/SheetInstanceItem.d.ts +7 -0
- package/dist/panels/OutlinePanel/SheetsList/SheetInstanceItem.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/SheetsList/SheetInstanceItem.js +36 -0
- package/dist/panels/OutlinePanel/SheetsList/SheetItem.d.ts +8 -0
- package/dist/panels/OutlinePanel/SheetsList/SheetItem.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/SheetsList/SheetItem.js +23 -0
- package/dist/panels/OutlinePanel/SheetsList/SheetsList.d.ts +8 -0
- package/dist/panels/OutlinePanel/SheetsList/SheetsList.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/SheetsList/SheetsList.js +15 -0
- package/dist/panels/OutlinePanel/outlinePanelUtils.d.ts +11 -0
- package/dist/panels/OutlinePanel/outlinePanelUtils.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/outlinePanelUtils.js +23 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/DopeSheet.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/DopeSheet.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/DopeSheet.js +21 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/AnyCompositeRow.d.ts +21 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/AnyCompositeRow.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/AnyCompositeRow.js +74 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/Left.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/Left.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/Left.js +25 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PrimitivePropRow.d.ts +7 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PrimitivePropRow.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PrimitivePropRow.js +97 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PropWithChildrenRow.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PropWithChildrenRow.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PropWithChildrenRow.js +15 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetObjectRow.d.ts +7 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetObjectRow.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetObjectRow.js +19 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetRow.d.ts +7 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetRow.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetRow.js +20 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/usePropHighlightMouseEnter.d.ts +4 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/usePropHighlightMouseEnter.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/usePropHighlightMouseEnter.js +33 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeConnector.d.ts +13 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeConnector.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeConnector.js +187 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeDot.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeDot.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeDot.js +158 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeEditor.d.ts +44 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeEditor.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeEditor.js +32 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeVisualDot.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeVisualDot.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeVisualDot.js +61 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/iif.d.ts +2 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/iif.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/iif.js +3 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/useAggregateKeyframeEditorUtils.d.ts +23 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/useAggregateKeyframeEditorUtils.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/useAggregateKeyframeEditorUtils.js +73 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregatedKeyframeTrack.d.ts +19 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregatedKeyframeTrack.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregatedKeyframeTrack.js +407 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/BasicKeyframedTrack.d.ts +13 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/BasicKeyframedTrack.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/BasicKeyframedTrack.js +108 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/BasicKeyframeConnector.d.ts +6 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/BasicKeyframeConnector.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/BasicKeyframeConnector.js +185 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveEditorPopover.d.ts +21 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveEditorPopover.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveEditorPopover.js +397 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveSegmentEditor.d.ts +12 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveSegmentEditor.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveSegmentEditor.js +136 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/EasingOption.d.ts +15 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/EasingOption.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/EasingOption.js +52 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/SVGCurveSegment.d.ts +9 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/SVGCurveSegment.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/SVGCurveSegment.js +43 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/colors.d.ts +4 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/colors.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/colors.js +3 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/shared.d.ts +43 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/shared.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/shared.js +84 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useFreezableMemo.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useFreezableMemo.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useFreezableMemo.js +16 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useUIOptionGrid.d.ts +32 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useUIOptionGrid.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useUIOptionGrid.js +82 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/DeterminePropEditorForSingleKeyframe.d.ts +17 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/DeterminePropEditorForSingleKeyframe.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/DeterminePropEditorForSingleKeyframe.js +93 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeDot.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeDot.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeDot.js +254 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeEditor.d.ts +19 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeEditor.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeEditor.js +22 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useSingleKeyframeInlineEditorPopover.d.ts +29 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useSingleKeyframeInlineEditorPopover.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useSingleKeyframeInlineEditorPopover.js +11 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useTempTransactionEditingTools.d.ts +18 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useTempTransactionEditingTools.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useTempTransactionEditingTools.js +43 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetBackground.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetBackground.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetBackground.js +24 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetSelectionView.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetSelectionView.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetSelectionView.js +272 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/FocusRangeCurtains.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/FocusRangeCurtains.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/FocusRangeCurtains.js +88 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/HorizontallyScrollableArea.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/HorizontallyScrollableArea.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/HorizontallyScrollableArea.js +215 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/KeyframeSnapTarget.d.ts +36 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/KeyframeSnapTarget.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/KeyframeSnapTarget.js +55 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthEditorPopover.d.ts +12 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthEditorPopover.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthEditorPopover.js +69 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthIndicator.d.ts +13 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthIndicator.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthIndicator.js +217 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PrimitivePropRow.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PrimitivePropRow.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PrimitivePropRow.js +25 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PropWithChildrenRow.d.ts +11 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PropWithChildrenRow.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PropWithChildrenRow.js +18 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Right.d.ts +9 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Right.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Right.js +30 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Row.d.ts +21 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Row.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Row.js +50 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetObjectRow.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetObjectRow.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetObjectRow.js +14 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetRow.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetRow.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetRow.js +14 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/collectAggregateKeyframes.d.ts +58 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/collectAggregateKeyframes.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/collectAggregateKeyframes.js +92 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/keyframeRowUI/ConnectorLine.d.ts +20 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/keyframeRowUI/ConnectorLine.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/keyframeRowUI/ConnectorLine.js +62 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/selections.d.ts +82 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/selections.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/selections.js +149 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/setCollapsedSheetObjectOrCompoundProp.d.ts +7 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/setCollapsedSheetObjectOrCompoundProp.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/setCollapsedSheetObjectOrCompoundProp.js +10 -0
- package/dist/panels/SequenceEditorPanel/FrameGrid/FrameGrid.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/FrameGrid/FrameGrid.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/FrameGrid/FrameGrid.js +92 -0
- package/dist/panels/SequenceEditorPanel/FrameGrid/StampsGrid.d.ts +15 -0
- package/dist/panels/SequenceEditorPanel/FrameGrid/StampsGrid.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/FrameGrid/StampsGrid.js +99 -0
- package/dist/panels/SequenceEditorPanel/FrameGrid/createGrid.d.ts +23 -0
- package/dist/panels/SequenceEditorPanel/FrameGrid/createGrid.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/FrameGrid/createGrid.js +49 -0
- package/dist/panels/SequenceEditorPanel/FrameStampPositionProvider.d.ts +52 -0
- package/dist/panels/SequenceEditorPanel/FrameStampPositionProvider.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/FrameStampPositionProvider.js +189 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/BasicKeyframedTrack.d.ts +25 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/BasicKeyframedTrack.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/BasicKeyframedTrack.js +91 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/Curve.d.ts +14 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/Curve.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/Curve.js +87 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/CurveHandle.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/CurveHandle.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/CurveHandle.js +186 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotNonScalar.d.ts +9 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotNonScalar.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotNonScalar.js +162 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotScalar.d.ts +7 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotScalar.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotScalar.js +209 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorNonScalarDash.d.ts +7 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorNonScalarDash.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorNonScalarDash.js +23 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/KeyframeEditor.d.ts +27 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/KeyframeEditor.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/KeyframeEditor.js +30 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/GraphEditor.d.ts +28 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/GraphEditor.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/GraphEditor.js +73 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/PrimitivePropGraph.d.ts +16 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/PrimitivePropGraph.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/PrimitivePropGraph.js +20 -0
- package/dist/panels/SequenceEditorPanel/GraphEditorToggle.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/GraphEditorToggle.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/GraphEditorToggle.js +59 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnap.d.ts +21 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnap.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnap.js +36 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnapHitZoneUI.d.ts +18 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnapHitZoneUI.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnapHitZoneUI.js +57 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeStrip.d.ts +32 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeStrip.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeStrip.js +233 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeThumb.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeThumb.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeThumb.js +217 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeZone.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeZone.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeZone.js +181 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FrameStamp.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FrameStamp.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FrameStamp.js +65 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/HorizontalScrollbar.d.ts +11 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/HorizontalScrollbar.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/HorizontalScrollbar.js +235 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerDot.d.ts +11 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerDot.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerDot.js +184 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerEditorPopover.d.ts +14 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerEditorPopover.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerEditorPopover.js +65 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/Markers.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/Markers.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/Markers.js +13 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Playhead.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Playhead.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Playhead.js +265 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/PlayheadPositionPopover.d.ts +12 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/PlayheadPositionPopover.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/PlayheadPositionPopover.js +64 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/RightOverlay.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/RightOverlay.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/RightOverlay.js +35 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/TopStrip.d.ts +13 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/TopStrip.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/TopStrip.js +31 -0
- package/dist/panels/SequenceEditorPanel/SequenceEditorPanel.d.ts +15 -0
- package/dist/panels/SequenceEditorPanel/SequenceEditorPanel.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/SequenceEditorPanel.js +179 -0
- package/dist/panels/SequenceEditorPanel/VerticalScrollContainer.d.ts +19 -0
- package/dist/panels/SequenceEditorPanel/VerticalScrollContainer.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/VerticalScrollContainer.js +42 -0
- package/dist/panels/SequenceEditorPanel/layout/layout.d.ts +146 -0
- package/dist/panels/SequenceEditorPanel/layout/layout.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/layout/layout.js +166 -0
- package/dist/panels/SequenceEditorPanel/layout/tree.d.ts +71 -0
- package/dist/panels/SequenceEditorPanel/layout/tree.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/layout/tree.js +139 -0
- package/dist/panels/SequenceEditorPanel/whatPropIsHighlighted.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/whatPropIsHighlighted.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/whatPropIsHighlighted.js +58 -0
- package/dist/propEditors/DefaultValueIndicator.d.ts +12 -0
- package/dist/propEditors/DefaultValueIndicator.d.ts.map +1 -0
- package/dist/propEditors/DefaultValueIndicator.js +64 -0
- package/dist/propEditors/NextPrevKeyframeCursors.d.ts +29 -0
- package/dist/propEditors/NextPrevKeyframeCursors.d.ts.map +1 -0
- package/dist/propEditors/NextPrevKeyframeCursors.js +135 -0
- package/dist/propEditors/getNearbyKeyframesOfTrack.d.ts +9 -0
- package/dist/propEditors/getNearbyKeyframesOfTrack.d.ts.map +1 -0
- package/dist/propEditors/getNearbyKeyframesOfTrack.js +46 -0
- package/dist/propEditors/simpleEditors/BooleanPropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/BooleanPropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/BooleanPropEditor.js +17 -0
- package/dist/propEditors/simpleEditors/FilePropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/FilePropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/FilePropEditor.js +118 -0
- package/dist/propEditors/simpleEditors/ISimplePropEditorReactProps.d.ts +10 -0
- package/dist/propEditors/simpleEditors/ISimplePropEditorReactProps.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/ISimplePropEditorReactProps.js +1 -0
- package/dist/propEditors/simpleEditors/ImagePropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/ImagePropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/ImagePropEditor.js +126 -0
- package/dist/propEditors/simpleEditors/NumberPropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/NumberPropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/NumberPropEditor.js +9 -0
- package/dist/propEditors/simpleEditors/RgbaPropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/RgbaPropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/RgbaPropEditor.js +73 -0
- package/dist/propEditors/simpleEditors/StringLiteralPropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/StringLiteralPropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/StringLiteralPropEditor.js +10 -0
- package/dist/propEditors/simpleEditors/StringPropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/StringPropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/StringPropEditor.js +6 -0
- package/dist/propEditors/simpleEditors/simplePropEditorByPropType.d.ts +10 -0
- package/dist/propEditors/simpleEditors/simplePropEditorByPropType.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/simplePropEditorByPropType.js +16 -0
- package/dist/propEditors/useEditingToolsForCompoundProp.d.ts +27 -0
- package/dist/propEditors/useEditingToolsForCompoundProp.d.ts.map +1 -0
- package/dist/propEditors/useEditingToolsForCompoundProp.js +228 -0
- package/dist/propEditors/useEditingToolsForSimpleProp.d.ts +47 -0
- package/dist/propEditors/useEditingToolsForSimpleProp.d.ts.map +1 -0
- package/dist/propEditors/useEditingToolsForSimpleProp.js +229 -0
- package/dist/propEditors/utils/IEditingTools.d.ts +9 -0
- package/dist/propEditors/utils/IEditingTools.d.ts.map +1 -0
- package/dist/propEditors/utils/IEditingTools.js +1 -0
- package/dist/propEditors/utils/PropConfigForType.d.ts +5 -0
- package/dist/propEditors/utils/PropConfigForType.d.ts.map +1 -0
- package/dist/propEditors/utils/PropConfigForType.js +1 -0
- package/dist/propEditors/utils/getPropTypeByPointer.d.ts +19 -0
- package/dist/propEditors/utils/getPropTypeByPointer.d.ts.map +1 -0
- package/dist/propEditors/utils/getPropTypeByPointer.js +48 -0
- package/dist/propEditors/utils/propNameTextCSS.d.ts +5 -0
- package/dist/propEditors/utils/propNameTextCSS.d.ts.map +1 -0
- package/dist/propEditors/utils/propNameTextCSS.js +7 -0
- package/dist/selectors.d.ts +13 -0
- package/dist/selectors.d.ts.map +1 -0
- package/dist/selectors.js +63 -0
- package/dist/store/index.d.ts +210 -0
- package/dist/store/index.d.ts.map +1 -0
- package/dist/store/index.js +184 -0
- package/dist/store/stateEditors.d.ts +300 -0
- package/dist/store/stateEditors.d.ts.map +1 -0
- package/dist/store/stateEditors.js +774 -0
- package/dist/store/types/ahistoric.d.ts +79 -0
- package/dist/store/types/ahistoric.d.ts.map +1 -0
- package/dist/store/types/ahistoric.js +1 -0
- package/dist/store/types/ephemeral.d.ts +53 -0
- package/dist/store/types/ephemeral.d.ts.map +1 -0
- package/dist/store/types/ephemeral.js +1 -0
- package/dist/store/types/historic.d.ts +104 -0
- package/dist/store/types/historic.d.ts.map +1 -0
- package/dist/store/types/historic.js +1 -0
- package/dist/store/types/index.d.ts +25 -0
- package/dist/store/types/index.d.ts.map +1 -0
- package/dist/store/types/index.js +3 -0
- package/dist/toolbars/ExtensionToolbar/ExtensionToolbar.d.ts +7 -0
- package/dist/toolbars/ExtensionToolbar/ExtensionToolbar.d.ts.map +1 -0
- package/dist/toolbars/ExtensionToolbar/ExtensionToolbar.js +51 -0
- package/dist/toolbars/ExtensionToolbar/Toolset.d.ts +7 -0
- package/dist/toolbars/ExtensionToolbar/Toolset.d.ts.map +1 -0
- package/dist/toolbars/ExtensionToolbar/Toolset.js +27 -0
- package/dist/toolbars/ExtensionToolbar/tools/ExtensionFlyoutMenu.d.ts +7 -0
- package/dist/toolbars/ExtensionToolbar/tools/ExtensionFlyoutMenu.d.ts.map +1 -0
- package/dist/toolbars/ExtensionToolbar/tools/ExtensionFlyoutMenu.js +51 -0
- package/dist/toolbars/ExtensionToolbar/tools/IconButton.d.ts +8 -0
- package/dist/toolbars/ExtensionToolbar/tools/IconButton.d.ts.map +1 -0
- package/dist/toolbars/ExtensionToolbar/tools/IconButton.js +16 -0
- package/dist/toolbars/ExtensionToolbar/tools/Switch.d.ts +7 -0
- package/dist/toolbars/ExtensionToolbar/tools/Switch.d.ts.map +1 -0
- package/dist/toolbars/ExtensionToolbar/tools/Switch.js +20 -0
- package/dist/toolbars/GlobalToolbar.d.ts +4 -0
- package/dist/toolbars/GlobalToolbar.d.ts.map +1 -0
- package/dist/toolbars/GlobalToolbar.js +142 -0
- package/dist/toolbars/MoreMenu/MoreMenu.d.ts +4 -0
- package/dist/toolbars/MoreMenu/MoreMenu.d.ts.map +1 -0
- package/dist/toolbars/MoreMenu/MoreMenu.js +133 -0
- package/dist/toolbars/PinButton.d.ts +12 -0
- package/dist/toolbars/PinButton.d.ts.map +1 -0
- package/dist/toolbars/PinButton.js +26 -0
- package/dist/uiComponents/DetailPanelButton.d.ts +5 -0
- package/dist/uiComponents/DetailPanelButton.d.ts.map +1 -0
- package/dist/uiComponents/DetailPanelButton.js +21 -0
- package/dist/uiComponents/PointerEventsHandler.d.ts +31 -0
- package/dist/uiComponents/PointerEventsHandler.d.ts.map +1 -0
- package/dist/uiComponents/PointerEventsHandler.js +80 -0
- package/dist/uiComponents/Popover/ArrowContext.d.ts +4 -0
- package/dist/uiComponents/Popover/ArrowContext.d.ts.map +1 -0
- package/dist/uiComponents/Popover/ArrowContext.js +3 -0
- package/dist/uiComponents/Popover/BasicPopover.d.ts +9 -0
- package/dist/uiComponents/Popover/BasicPopover.d.ts.map +1 -0
- package/dist/uiComponents/Popover/BasicPopover.js +35 -0
- package/dist/uiComponents/Popover/BasicTooltip.d.ts +8 -0
- package/dist/uiComponents/Popover/BasicTooltip.d.ts.map +1 -0
- package/dist/uiComponents/Popover/BasicTooltip.js +10 -0
- package/dist/uiComponents/Popover/ErrorTooltip.d.ts +8 -0
- package/dist/uiComponents/Popover/ErrorTooltip.d.ts.map +1 -0
- package/dist/uiComponents/Popover/ErrorTooltip.js +9 -0
- package/dist/uiComponents/Popover/MinimalTooltip.d.ts +8 -0
- package/dist/uiComponents/Popover/MinimalTooltip.d.ts.map +1 -0
- package/dist/uiComponents/Popover/MinimalTooltip.js +6 -0
- package/dist/uiComponents/Popover/PopoverArrow.d.ts +8 -0
- package/dist/uiComponents/Popover/PopoverArrow.d.ts.map +1 -0
- package/dist/uiComponents/Popover/PopoverArrow.js +38 -0
- package/dist/uiComponents/Popover/TooltipContext.d.ts +7 -0
- package/dist/uiComponents/Popover/TooltipContext.d.ts.map +1 -0
- package/dist/uiComponents/Popover/TooltipContext.js +46 -0
- package/dist/uiComponents/Popover/TooltipWrapper.d.ts +21 -0
- package/dist/uiComponents/Popover/TooltipWrapper.d.ts.map +1 -0
- package/dist/uiComponents/Popover/TooltipWrapper.js +103 -0
- package/dist/uiComponents/Popover/usePopover.d.ts +29 -0
- package/dist/uiComponents/Popover/usePopover.d.ts.map +1 -0
- package/dist/uiComponents/Popover/usePopover.js +132 -0
- package/dist/uiComponents/Popover/useTooltip.d.ts +14 -0
- package/dist/uiComponents/Popover/useTooltip.d.ts.map +1 -0
- package/dist/uiComponents/Popover/useTooltip.js +33 -0
- package/dist/uiComponents/RoomToClick.d.ts +6 -0
- package/dist/uiComponents/RoomToClick.d.ts.map +1 -0
- package/dist/uiComponents/RoomToClick.js +10 -0
- package/dist/uiComponents/SVGIcon.d.ts +8 -0
- package/dist/uiComponents/SVGIcon.d.ts.map +1 -0
- package/dist/uiComponents/SVGIcon.js +19 -0
- package/dist/uiComponents/ShowMousePosition.d.ts +4 -0
- package/dist/uiComponents/ShowMousePosition.d.ts.map +1 -0
- package/dist/uiComponents/ShowMousePosition.js +30 -0
- package/dist/uiComponents/colorPicker/components/EditingProvider.d.ts +15 -0
- package/dist/uiComponents/colorPicker/components/EditingProvider.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/components/EditingProvider.js +15 -0
- package/dist/uiComponents/colorPicker/components/RgbaColorPicker.d.ts +3 -0
- package/dist/uiComponents/colorPicker/components/RgbaColorPicker.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/components/RgbaColorPicker.js +31 -0
- package/dist/uiComponents/colorPicker/components/common/Alpha.d.ts +11 -0
- package/dist/uiComponents/colorPicker/components/common/Alpha.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/components/common/Alpha.js +54 -0
- package/dist/uiComponents/colorPicker/components/common/AlphaColorPicker.d.ts +7 -0
- package/dist/uiComponents/colorPicker/components/common/AlphaColorPicker.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/components/common/AlphaColorPicker.js +28 -0
- package/dist/uiComponents/colorPicker/components/common/Hue.d.ts +11 -0
- package/dist/uiComponents/colorPicker/components/common/Hue.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/components/common/Hue.js +41 -0
- package/dist/uiComponents/colorPicker/components/common/Interactive.d.ts +13 -0
- package/dist/uiComponents/colorPicker/components/common/Interactive.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/components/common/Interactive.js +142 -0
- package/dist/uiComponents/colorPicker/components/common/Pointer.d.ts +10 -0
- package/dist/uiComponents/colorPicker/components/common/Pointer.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/components/common/Pointer.js +39 -0
- package/dist/uiComponents/colorPicker/components/common/Saturation.d.ts +12 -0
- package/dist/uiComponents/colorPicker/components/common/Saturation.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/components/common/Saturation.js +44 -0
- package/dist/uiComponents/colorPicker/hooks/useColorManipulation.d.ts +3 -0
- package/dist/uiComponents/colorPicker/hooks/useColorManipulation.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/hooks/useColorManipulation.js +77 -0
- package/dist/uiComponents/colorPicker/hooks/useEventCallback.d.ts +2 -0
- package/dist/uiComponents/colorPicker/hooks/useEventCallback.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/hooks/useEventCallback.js +10 -0
- package/dist/uiComponents/colorPicker/hooks/useIsomorphicLayoutEffect.d.ts +3 -0
- package/dist/uiComponents/colorPicker/hooks/useIsomorphicLayoutEffect.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/hooks/useIsomorphicLayoutEffect.js +5 -0
- package/dist/uiComponents/colorPicker/index.d.ts +3 -0
- package/dist/uiComponents/colorPicker/index.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/index.js +1 -0
- package/dist/uiComponents/colorPicker/types.d.ts +47 -0
- package/dist/uiComponents/colorPicker/types.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/types.js +1 -0
- package/dist/uiComponents/colorPicker/utils/clamp.d.ts +2 -0
- package/dist/uiComponents/colorPicker/utils/clamp.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/utils/clamp.js +6 -0
- package/dist/uiComponents/colorPicker/utils/compare.d.ts +5 -0
- package/dist/uiComponents/colorPicker/utils/compare.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/utils/compare.js +25 -0
- package/dist/uiComponents/colorPicker/utils/convert.d.ts +27 -0
- package/dist/uiComponents/colorPicker/utils/convert.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/utils/convert.js +165 -0
- package/dist/uiComponents/colorPicker/utils/round.d.ts +2 -0
- package/dist/uiComponents/colorPicker/utils/round.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/utils/round.js +3 -0
- package/dist/uiComponents/colorPicker/utils/validate.d.ts +2 -0
- package/dist/uiComponents/colorPicker/utils/validate.d.ts.map +1 -0
- package/dist/uiComponents/colorPicker/utils/validate.js +10 -0
- package/dist/uiComponents/createCursorLock.d.ts +2 -0
- package/dist/uiComponents/createCursorLock.d.ts.map +1 -0
- package/dist/uiComponents/createCursorLock.js +2 -0
- package/dist/uiComponents/form/BasicCheckbox.d.ts +5 -0
- package/dist/uiComponents/form/BasicCheckbox.d.ts.map +1 -0
- package/dist/uiComponents/form/BasicCheckbox.js +5 -0
- package/dist/uiComponents/form/BasicNumberInput.d.ts +26 -0
- package/dist/uiComponents/form/BasicNumberInput.d.ts.map +1 -0
- package/dist/uiComponents/form/BasicNumberInput.js +261 -0
- package/dist/uiComponents/form/BasicSelect.d.ts +10 -0
- package/dist/uiComponents/form/BasicSelect.d.ts.map +1 -0
- package/dist/uiComponents/form/BasicSelect.js +58 -0
- package/dist/uiComponents/form/BasicStringInput.d.ts +19 -0
- package/dist/uiComponents/form/BasicStringInput.d.ts.map +1 -0
- package/dist/uiComponents/form/BasicStringInput.js +151 -0
- package/dist/uiComponents/form/BasicSwitch.d.ts +9 -0
- package/dist/uiComponents/form/BasicSwitch.d.ts.map +1 -0
- package/dist/uiComponents/form/BasicSwitch.js +60 -0
- package/dist/uiComponents/icons/AddImage.d.ts +4 -0
- package/dist/uiComponents/icons/AddImage.d.ts.map +1 -0
- package/dist/uiComponents/icons/AddImage.js +6 -0
- package/dist/uiComponents/icons/ArrowClockwise.d.ts +4 -0
- package/dist/uiComponents/icons/ArrowClockwise.d.ts.map +1 -0
- package/dist/uiComponents/icons/ArrowClockwise.js +6 -0
- package/dist/uiComponents/icons/ArrowsOutCardinal.d.ts +4 -0
- package/dist/uiComponents/icons/ArrowsOutCardinal.d.ts.map +1 -0
- package/dist/uiComponents/icons/ArrowsOutCardinal.js +6 -0
- package/dist/uiComponents/icons/Bell.d.ts +4 -0
- package/dist/uiComponents/icons/Bell.d.ts.map +1 -0
- package/dist/uiComponents/icons/Bell.js +6 -0
- package/dist/uiComponents/icons/Camera.d.ts +4 -0
- package/dist/uiComponents/icons/Camera.d.ts.map +1 -0
- package/dist/uiComponents/icons/Camera.js +7 -0
- package/dist/uiComponents/icons/ChevronDown.d.ts +4 -0
- package/dist/uiComponents/icons/ChevronDown.d.ts.map +1 -0
- package/dist/uiComponents/icons/ChevronDown.js +6 -0
- package/dist/uiComponents/icons/ChevronLeft.d.ts +4 -0
- package/dist/uiComponents/icons/ChevronLeft.d.ts.map +1 -0
- package/dist/uiComponents/icons/ChevronLeft.js +6 -0
- package/dist/uiComponents/icons/ChevronRight.d.ts +4 -0
- package/dist/uiComponents/icons/ChevronRight.d.ts.map +1 -0
- package/dist/uiComponents/icons/ChevronRight.js +6 -0
- package/dist/uiComponents/icons/Cube.d.ts +4 -0
- package/dist/uiComponents/icons/Cube.d.ts.map +1 -0
- package/dist/uiComponents/icons/Cube.js +6 -0
- package/dist/uiComponents/icons/CubeFull.d.ts +4 -0
- package/dist/uiComponents/icons/CubeFull.d.ts.map +1 -0
- package/dist/uiComponents/icons/CubeFull.js +6 -0
- package/dist/uiComponents/icons/CubeHalf.d.ts +4 -0
- package/dist/uiComponents/icons/CubeHalf.d.ts.map +1 -0
- package/dist/uiComponents/icons/CubeHalf.js +6 -0
- package/dist/uiComponents/icons/CubeRendered.d.ts +4 -0
- package/dist/uiComponents/icons/CubeRendered.d.ts.map +1 -0
- package/dist/uiComponents/icons/CubeRendered.js +7 -0
- package/dist/uiComponents/icons/Details.d.ts +4 -0
- package/dist/uiComponents/icons/Details.d.ts.map +1 -0
- package/dist/uiComponents/icons/Details.js +6 -0
- package/dist/uiComponents/icons/DoubleChevronLeft.d.ts +4 -0
- package/dist/uiComponents/icons/DoubleChevronLeft.d.ts.map +1 -0
- package/dist/uiComponents/icons/DoubleChevronLeft.js +6 -0
- package/dist/uiComponents/icons/DoubleChevronRight.d.ts +4 -0
- package/dist/uiComponents/icons/DoubleChevronRight.d.ts.map +1 -0
- package/dist/uiComponents/icons/DoubleChevronRight.js +6 -0
- package/dist/uiComponents/icons/Ellipsis.d.ts +4 -0
- package/dist/uiComponents/icons/Ellipsis.d.ts.map +1 -0
- package/dist/uiComponents/icons/Ellipsis.js +6 -0
- package/dist/uiComponents/icons/EllipsisFill.d.ts +4 -0
- package/dist/uiComponents/icons/EllipsisFill.d.ts.map +1 -0
- package/dist/uiComponents/icons/EllipsisFill.js +6 -0
- package/dist/uiComponents/icons/GlobeSimple.d.ts +4 -0
- package/dist/uiComponents/icons/GlobeSimple.d.ts.map +1 -0
- package/dist/uiComponents/icons/GlobeSimple.js +6 -0
- package/dist/uiComponents/icons/Outline.d.ts +4 -0
- package/dist/uiComponents/icons/Outline.d.ts.map +1 -0
- package/dist/uiComponents/icons/Outline.js +6 -0
- package/dist/uiComponents/icons/Package.d.ts +4 -0
- package/dist/uiComponents/icons/Package.d.ts.map +1 -0
- package/dist/uiComponents/icons/Package.js +6 -0
- package/dist/uiComponents/icons/Resize.d.ts +4 -0
- package/dist/uiComponents/icons/Resize.d.ts.map +1 -0
- package/dist/uiComponents/icons/Resize.js +7 -0
- package/dist/uiComponents/icons/Trash.d.ts +4 -0
- package/dist/uiComponents/icons/Trash.d.ts.map +1 -0
- package/dist/uiComponents/icons/Trash.js +6 -0
- package/dist/uiComponents/icons/index.d.ts +21 -0
- package/dist/uiComponents/icons/index.d.ts.map +1 -0
- package/dist/uiComponents/icons/index.js +20 -0
- package/dist/uiComponents/isSafari.d.ts +2 -0
- package/dist/uiComponents/isSafari.d.ts.map +1 -0
- package/dist/uiComponents/isSafari.js +2 -0
- package/dist/uiComponents/onPointerOutside.d.ts +6 -0
- package/dist/uiComponents/onPointerOutside.d.ts.map +1 -0
- package/dist/uiComponents/onPointerOutside.js +19 -0
- package/dist/uiComponents/selects/BasicSelect.d.ts +15 -0
- package/dist/uiComponents/selects/BasicSelect.d.ts.map +1 -0
- package/dist/uiComponents/selects/BasicSelect.js +24 -0
- package/dist/uiComponents/simpleContextMenu/ContextMenu/BaseMenu.d.ts +16 -0
- package/dist/uiComponents/simpleContextMenu/ContextMenu/BaseMenu.d.ts.map +1 -0
- package/dist/uiComponents/simpleContextMenu/ContextMenu/BaseMenu.js +40 -0
- package/dist/uiComponents/simpleContextMenu/ContextMenu/ContextMenu.d.ts +27 -0
- package/dist/uiComponents/simpleContextMenu/ContextMenu/ContextMenu.d.ts.map +1 -0
- package/dist/uiComponents/simpleContextMenu/ContextMenu/ContextMenu.js +87 -0
- package/dist/uiComponents/simpleContextMenu/ContextMenu/Item.d.ts +10 -0
- package/dist/uiComponents/simpleContextMenu/ContextMenu/Item.d.ts.map +1 -0
- package/dist/uiComponents/simpleContextMenu/ContextMenu/Item.js +37 -0
- package/dist/uiComponents/simpleContextMenu/useContextMenu.d.ts +11 -0
- package/dist/uiComponents/simpleContextMenu/useContextMenu.d.ts.map +1 -0
- package/dist/uiComponents/simpleContextMenu/useContextMenu.js +20 -0
- package/dist/uiComponents/simpleContextMenu/useRequestContextMenu.d.ts +13 -0
- package/dist/uiComponents/simpleContextMenu/useRequestContextMenu.d.ts.map +1 -0
- package/dist/uiComponents/simpleContextMenu/useRequestContextMenu.js +22 -0
- package/dist/uiComponents/toolbar/ToolbarDropdownSelect.d.ts +16 -0
- package/dist/uiComponents/toolbar/ToolbarDropdownSelect.d.ts.map +1 -0
- package/dist/uiComponents/toolbar/ToolbarDropdownSelect.js +7 -0
- package/dist/uiComponents/toolbar/ToolbarIconButton.d.ts +4 -0
- package/dist/uiComponents/toolbar/ToolbarIconButton.d.ts.map +1 -0
- package/dist/uiComponents/toolbar/ToolbarIconButton.js +74 -0
- package/dist/uiComponents/toolbar/ToolbarSwitchSelect.d.ts +15 -0
- package/dist/uiComponents/toolbar/ToolbarSwitchSelect.d.ts.map +1 -0
- package/dist/uiComponents/toolbar/ToolbarSwitchSelect.js +12 -0
- package/dist/uiComponents/toolbar/ToolbarSwitchSelectContainer.d.ts +3 -0
- package/dist/uiComponents/toolbar/ToolbarSwitchSelectContainer.d.ts.map +1 -0
- package/dist/uiComponents/toolbar/ToolbarSwitchSelectContainer.js +9 -0
- package/dist/uiComponents/useBoundingClientRect.d.ts +2 -0
- package/dist/uiComponents/useBoundingClientRect.d.ts.map +1 -0
- package/dist/uiComponents/useBoundingClientRect.js +13 -0
- package/dist/uiComponents/useDebugRefreshEvery.d.ts +9 -0
- package/dist/uiComponents/useDebugRefreshEvery.d.ts.map +1 -0
- package/dist/uiComponents/useDebugRefreshEvery.js +19 -0
- package/dist/uiComponents/useDrag.d.ts +76 -0
- package/dist/uiComponents/useDrag.d.ts.map +1 -0
- package/dist/uiComponents/useDrag.js +199 -0
- package/dist/uiComponents/useHotspot.d.ts +2 -0
- package/dist/uiComponents/useHotspot.d.ts.map +1 -0
- package/dist/uiComponents/useHotspot.js +30 -0
- package/dist/uiComponents/useHover.d.ts +2 -0
- package/dist/uiComponents/useHover.d.ts.map +1 -0
- package/dist/uiComponents/useHover.js +23 -0
- package/dist/uiComponents/useHoverWithoutDescendants.d.ts +5 -0
- package/dist/uiComponents/useHoverWithoutDescendants.d.ts.map +1 -0
- package/dist/uiComponents/useHoverWithoutDescendants.js +33 -0
- package/dist/uiComponents/useKeyDown.d.ts +3 -0
- package/dist/uiComponents/useKeyDown.d.ts.map +1 -0
- package/dist/uiComponents/useKeyDown.js +9 -0
- package/dist/uiComponents/useKeyDownCallback.d.ts +7 -0
- package/dist/uiComponents/useKeyDownCallback.d.ts.map +1 -0
- package/dist/uiComponents/useKeyDownCallback.js +28 -0
- package/dist/uiComponents/useLockSet.d.ts +5 -0
- package/dist/uiComponents/useLockSet.d.ts.map +1 -0
- package/dist/uiComponents/useLockSet.js +17 -0
- package/dist/uiComponents/useLogger.d.ts +7 -0
- package/dist/uiComponents/useLogger.d.ts.map +1 -0
- package/dist/uiComponents/useLogger.js +16 -0
- package/dist/uiComponents/useOnClickOutside.d.ts +2 -0
- package/dist/uiComponents/useOnClickOutside.d.ts.map +1 -0
- package/dist/uiComponents/useOnClickOutside.js +25 -0
- package/dist/uiComponents/useOnKeyDown.d.ts +2 -0
- package/dist/uiComponents/useOnKeyDown.d.ts.map +1 -0
- package/dist/uiComponents/useOnKeyDown.js +12 -0
- package/dist/uiComponents/usePresence.d.ts +30 -0
- package/dist/uiComponents/usePresence.d.ts.map +1 -0
- package/dist/uiComponents/usePresence.js +156 -0
- package/dist/uiComponents/useValToAtom.d.ts +3 -0
- package/dist/uiComponents/useValToAtom.d.ts.map +1 -0
- package/dist/uiComponents/useValToAtom.js +11 -0
- package/dist/utils/absoluteDims.d.ts +3 -0
- package/dist/utils/absoluteDims.d.ts.map +1 -0
- package/dist/utils/absoluteDims.js +7 -0
- package/dist/utils/contextualWebComponents.d.ts +5 -0
- package/dist/utils/contextualWebComponents.d.ts.map +1 -0
- package/dist/utils/contextualWebComponents.js +44 -0
- package/dist/utils/copyToClipboard.d.ts +2 -0
- package/dist/utils/copyToClipboard.d.ts.map +1 -0
- package/dist/utils/copyToClipboard.js +28 -0
- package/dist/utils/derive-utils.d.ts +21 -0
- package/dist/utils/derive-utils.d.ts.map +1 -0
- package/dist/utils/derive-utils.js +61 -0
- package/dist/utils/devStringify.d.ts +7 -0
- package/dist/utils/devStringify.d.ts.map +1 -0
- package/dist/utils/devStringify.js +20 -0
- package/dist/utils/invariant.d.ts +35 -0
- package/dist/utils/invariant.d.ts.map +1 -0
- package/dist/utils/invariant.js +79 -0
- package/dist/utils/isMac.d.ts +2 -0
- package/dist/utils/isMac.d.ts.map +1 -0
- package/dist/utils/isMac.js +2 -0
- package/dist/utils/keyboardUtils.d.ts +9 -0
- package/dist/utils/keyboardUtils.d.ts.map +1 -0
- package/dist/utils/keyboardUtils.js +23 -0
- package/dist/utils/mousePositionD.d.ts +6 -0
- package/dist/utils/mousePositionD.d.ts.map +1 -0
- package/dist/utils/mousePositionD.js +18 -0
- package/dist/utils/redux/actionCreator.d.ts +49 -0
- package/dist/utils/redux/actionCreator.d.ts.map +1 -0
- package/dist/utils/redux/actionCreator.js +15 -0
- package/dist/utils/redux/actionCreator.test.d.ts +2 -0
- package/dist/utils/redux/actionCreator.test.d.ts.map +1 -0
- package/dist/utils/redux/actionCreator.test.js +35 -0
- package/dist/utils/redux/actionReducersBundle.d.ts +18 -0
- package/dist/utils/redux/actionReducersBundle.d.ts.map +1 -0
- package/dist/utils/redux/actionReducersBundle.js +18 -0
- package/dist/utils/redux/atomFromReduxStore.d.ts +4 -0
- package/dist/utils/redux/atomFromReduxStore.d.ts.map +1 -0
- package/dist/utils/redux/atomFromReduxStore.js +11 -0
- package/dist/utils/redux/configureStore.d.ts +9 -0
- package/dist/utils/redux/configureStore.d.ts.map +1 -0
- package/dist/utils/redux/configureStore.js +18 -0
- package/dist/utils/redux/pointerFriendlySelector.d.ts +10 -0
- package/dist/utils/redux/pointerFriendlySelector.d.ts.map +1 -0
- package/dist/utils/redux/pointerFriendlySelector.js +8 -0
- package/dist/utils/redux/withHistory/withBatchActions.d.ts +19 -0
- package/dist/utils/redux/withHistory/withBatchActions.d.ts.map +1 -0
- package/dist/utils/redux/withHistory/withBatchActions.js +13 -0
- package/dist/utils/redux/withHistory/withHistory.d.ts +127 -0
- package/dist/utils/redux/withHistory/withHistory.d.ts.map +1 -0
- package/dist/utils/redux/withHistory/withHistory.js +157 -0
- package/dist/utils/renderInPortalInContext.d.ts +7 -0
- package/dist/utils/renderInPortalInContext.d.ts.map +1 -0
- package/dist/utils/renderInPortalInContext.js +38 -0
- package/dist/utils/selectClosestHTMLAncestor.d.ts +5 -0
- package/dist/utils/selectClosestHTMLAncestor.d.ts.map +1 -0
- package/dist/utils/selectClosestHTMLAncestor.js +13 -0
- package/dist/utils/tightJsonStringify.d.ts +23 -0
- package/dist/utils/tightJsonStringify.d.ts.map +1 -0
- package/dist/utils/tightJsonStringify.js +27 -0
- package/dist/utils/tightJsonStringify.test.d.ts +2 -0
- package/dist/utils/tightJsonStringify.test.d.ts.map +1 -0
- package/dist/utils/tightJsonStringify.test.js +25 -0
- package/dist/utils/useRefAndState.d.ts +18 -0
- package/dist/utils/useRefAndState.d.ts.map +1 -0
- package/dist/utils/useRefAndState.js +32 -0
- package/package.json +1 -1
- package/dist/index.mjs +0 -105
- package/dist/index.mjs.map +0 -7
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
import getStudio from '@tomorrowevening/theatre-studio/getStudio';
|
|
2
|
+
import useDrag from '@tomorrowevening/theatre-studio/uiComponents/useDrag';
|
|
3
|
+
import useKeyDown from '@tomorrowevening/theatre-studio/uiComponents/useKeyDown';
|
|
4
|
+
import useValToAtom from '@tomorrowevening/theatre-studio/uiComponents/useValToAtom';
|
|
5
|
+
import mutableSetDeep from '@tomorrowevening/theatre-shared/utils/mutableSetDeep';
|
|
6
|
+
import useRefAndState from '@tomorrowevening/theatre-studio/utils/useRefAndState';
|
|
7
|
+
import { usePrism } from '@tomorrowevening/theatre-react';
|
|
8
|
+
import { val } from '@tomorrowevening/theatre-dataverse';
|
|
9
|
+
import React, { useMemo, useRef } from 'react';
|
|
10
|
+
import styled from 'styled-components';
|
|
11
|
+
import DopeSnap from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/RightOverlay/DopeSnap';
|
|
12
|
+
import { collectAggregateKeyframesInPrism } from './collectAggregateKeyframes';
|
|
13
|
+
import { useLogger } from '@tomorrowevening/theatre-studio/uiComponents/useLogger';
|
|
14
|
+
const HITBOX_SIZE_PX = 5;
|
|
15
|
+
const Container = styled.div `
|
|
16
|
+
cursor: ${(props) => (props.isShiftDown ? 'cell' : 'default')};
|
|
17
|
+
`;
|
|
18
|
+
const DopeSheetSelectionView = ({ layoutP, children, height }) => {
|
|
19
|
+
const [containerRef, containerNode] = useRefAndState(null);
|
|
20
|
+
const isShiftDown = useKeyDown('Shift');
|
|
21
|
+
const selectionBounds = useCaptureSelection(layoutP, containerNode);
|
|
22
|
+
const selectionBoundsRef = useRef(selectionBounds);
|
|
23
|
+
selectionBoundsRef.current = selectionBounds;
|
|
24
|
+
return (React.createElement(Container, { style: { height: height + 'px' }, ref: containerRef, isShiftDown: isShiftDown, className: "selectionview" },
|
|
25
|
+
selectionBounds && (React.createElement(SelectionRectangle, { state: selectionBounds, layoutP: layoutP })),
|
|
26
|
+
children));
|
|
27
|
+
};
|
|
28
|
+
function useCaptureSelection(layoutP, containerNode) {
|
|
29
|
+
const [ref, state] = useRefAndState(null);
|
|
30
|
+
const logger = useLogger('useCaptureSelection');
|
|
31
|
+
useDrag(containerNode, useMemo(() => {
|
|
32
|
+
return {
|
|
33
|
+
debugName: 'DopeSheetSelectionView/useCaptureSelection',
|
|
34
|
+
dontBlockMouseDown: true,
|
|
35
|
+
lockCSSCursorTo: 'cell',
|
|
36
|
+
onDragStart(event) {
|
|
37
|
+
if (!event.shiftKey || event.target instanceof HTMLInputElement) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
const rect = containerNode.getBoundingClientRect();
|
|
41
|
+
// all the `val()` calls here are meant to be read cold
|
|
42
|
+
const posInScaledSpace = event.clientX -
|
|
43
|
+
rect.left -
|
|
44
|
+
// selection is happening in left padded space, convert it to normal space
|
|
45
|
+
val(layoutP.scaledSpace.leftPadding);
|
|
46
|
+
const posInUnitSpace = val(layoutP.scaledSpace.toUnitSpace)(posInScaledSpace);
|
|
47
|
+
ref.current = {
|
|
48
|
+
h: [posInUnitSpace, posInUnitSpace],
|
|
49
|
+
v: [event.clientY - rect.top, event.clientY - rect.top],
|
|
50
|
+
};
|
|
51
|
+
val(layoutP.selectionAtom).set({ current: undefined });
|
|
52
|
+
return {
|
|
53
|
+
onDrag(_dx, _dy, event) {
|
|
54
|
+
// const state = ref.current!
|
|
55
|
+
const rect = containerNode.getBoundingClientRect();
|
|
56
|
+
const posInScaledSpace = event.clientX -
|
|
57
|
+
rect.left -
|
|
58
|
+
// selection is happening in left padded space, convert it to normal space
|
|
59
|
+
val(layoutP.scaledSpace.leftPadding);
|
|
60
|
+
const posInUnitSpace = val(layoutP.scaledSpace.toUnitSpace)(posInScaledSpace);
|
|
61
|
+
ref.current = {
|
|
62
|
+
h: [ref.current.h[0], posInUnitSpace],
|
|
63
|
+
v: [ref.current.v[0], event.clientY - rect.top],
|
|
64
|
+
};
|
|
65
|
+
const selection = utils.boundsToSelection(logger, val(layoutP), ref.current);
|
|
66
|
+
val(layoutP.selectionAtom).set({ current: selection });
|
|
67
|
+
},
|
|
68
|
+
onDragEnd(_dragHappened) {
|
|
69
|
+
ref.current = null;
|
|
70
|
+
},
|
|
71
|
+
};
|
|
72
|
+
},
|
|
73
|
+
};
|
|
74
|
+
}, [layoutP, containerNode, ref]));
|
|
75
|
+
return state;
|
|
76
|
+
}
|
|
77
|
+
var utils;
|
|
78
|
+
(function (utils) {
|
|
79
|
+
const collectForAggregatedChildren = (logger, layout, leaf, bounds, selectionByObjectKey) => {
|
|
80
|
+
const aggregatedKeyframes = collectAggregateKeyframesInPrism(leaf);
|
|
81
|
+
if (leaf.top + leaf.nodeHeight / 2 + HITBOX_SIZE_PX > bounds.v[0] &&
|
|
82
|
+
leaf.top + leaf.nodeHeight / 2 - HITBOX_SIZE_PX < bounds.v[1]) {
|
|
83
|
+
for (const [position, keyframes] of aggregatedKeyframes.byPosition) {
|
|
84
|
+
const hitboxWidth = layout.scaledSpace.toUnitSpace(HITBOX_SIZE_PX);
|
|
85
|
+
const isHitboxOutsideSelection = position + hitboxWidth <= bounds.h[0] ||
|
|
86
|
+
position - hitboxWidth >= bounds.h[1];
|
|
87
|
+
if (isHitboxOutsideSelection)
|
|
88
|
+
continue;
|
|
89
|
+
for (const keyframeWithTrack of keyframes) {
|
|
90
|
+
mutableSetDeep(selectionByObjectKey, (selectionByObjectKeyP) =>
|
|
91
|
+
// convenience for accessing a deep path which might not actually exist
|
|
92
|
+
// through the use of pointer proxy (so we don't have to deal with undeifned )
|
|
93
|
+
selectionByObjectKeyP[keyframeWithTrack.track.sheetObject.address.objectKey].byTrackId[keyframeWithTrack.track.id].byKeyframeId[keyframeWithTrack.kf.id], true);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
collectChildren(logger, layout, leaf, bounds, selectionByObjectKey);
|
|
98
|
+
};
|
|
99
|
+
const collectorByLeafType = {
|
|
100
|
+
sheet(logger, layout, leaf, bounds, selectionByObjectKey) {
|
|
101
|
+
collectForAggregatedChildren(logger, layout, leaf, bounds, selectionByObjectKey);
|
|
102
|
+
},
|
|
103
|
+
propWithChildren(logger, layout, leaf, bounds, selectionByObjectKey) {
|
|
104
|
+
collectForAggregatedChildren(logger, layout, leaf, bounds, selectionByObjectKey);
|
|
105
|
+
},
|
|
106
|
+
sheetObject(logger, layout, leaf, bounds, selectionByObjectKey) {
|
|
107
|
+
collectForAggregatedChildren(logger, layout, leaf, bounds, selectionByObjectKey);
|
|
108
|
+
},
|
|
109
|
+
primitiveProp(logger, layout, leaf, bounds, selectionByObjectKey) {
|
|
110
|
+
const { sheetObject, trackId } = leaf;
|
|
111
|
+
const trackData = val(getStudio().atomP.historic.coreByProject[sheetObject.address.projectId]
|
|
112
|
+
.sheetsById[sheetObject.address.sheetId].sequence.tracksByObject[sheetObject.address.objectKey].trackData[trackId]);
|
|
113
|
+
if (bounds.v[0] >
|
|
114
|
+
leaf.top + leaf.heightIncludingChildren / 2 + HITBOX_SIZE_PX ||
|
|
115
|
+
leaf.top + leaf.heightIncludingChildren / 2 - HITBOX_SIZE_PX >
|
|
116
|
+
bounds.v[1]) {
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
119
|
+
for (const kf of trackData.keyframes) {
|
|
120
|
+
if (kf.position + layout.scaledSpace.toUnitSpace(HITBOX_SIZE_PX) <=
|
|
121
|
+
bounds.h[0])
|
|
122
|
+
continue;
|
|
123
|
+
if (kf.position - layout.scaledSpace.toUnitSpace(HITBOX_SIZE_PX) >=
|
|
124
|
+
bounds.h[1])
|
|
125
|
+
break;
|
|
126
|
+
mutableSetDeep(selectionByObjectKey, (selectionByObjectKeyP) =>
|
|
127
|
+
// convenience for accessing a deep path which might not actually exist
|
|
128
|
+
// through the use of pointer proxy (so we don't have to deal with undeifned )
|
|
129
|
+
selectionByObjectKeyP[sheetObject.address.objectKey].byTrackId[trackId].byKeyframeId[kf.id], true);
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
};
|
|
133
|
+
const collectChildren = (logger, layout, leaf, bounds, selectionByObjectKey) => {
|
|
134
|
+
if ('children' in leaf) {
|
|
135
|
+
for (const sub of leaf.children) {
|
|
136
|
+
collectFromAnyLeaf(logger, layout, sub, bounds, selectionByObjectKey);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
};
|
|
140
|
+
function collectFromAnyLeaf(logger, layout, leaf, bounds, selectionByObjectKey) {
|
|
141
|
+
// don't collect from non rendered
|
|
142
|
+
if (!leaf.shouldRender)
|
|
143
|
+
return;
|
|
144
|
+
if (bounds.v[0] > leaf.top + leaf.heightIncludingChildren ||
|
|
145
|
+
leaf.top > bounds.v[1]) {
|
|
146
|
+
return;
|
|
147
|
+
}
|
|
148
|
+
const collector = collectorByLeafType[leaf.type];
|
|
149
|
+
if (collector) {
|
|
150
|
+
collector(logger, layout, leaf, bounds, selectionByObjectKey);
|
|
151
|
+
}
|
|
152
|
+
else {
|
|
153
|
+
collectChildren(logger, layout, leaf, bounds, selectionByObjectKey);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
function boundsToSelection(logger, layout, bounds) {
|
|
157
|
+
const selectionByObjectKey = {};
|
|
158
|
+
bounds = sortBounds(bounds);
|
|
159
|
+
const tree = layout.tree;
|
|
160
|
+
collectFromAnyLeaf(logger.utilFor.internal(), layout, tree, bounds, selectionByObjectKey);
|
|
161
|
+
const sheet = layout.tree.sheet;
|
|
162
|
+
return {
|
|
163
|
+
type: 'DopeSheetSelection',
|
|
164
|
+
byObjectKey: selectionByObjectKey,
|
|
165
|
+
getDragHandlers(origin) {
|
|
166
|
+
return {
|
|
167
|
+
debugName: 'DopeSheetSelectionView/boundsToSelection',
|
|
168
|
+
onDragStart() {
|
|
169
|
+
let tempTransaction;
|
|
170
|
+
const toUnitSpace = layout.scaledSpace.toUnitSpace;
|
|
171
|
+
return {
|
|
172
|
+
onDrag(dx, _, event) {
|
|
173
|
+
if (tempTransaction) {
|
|
174
|
+
tempTransaction.discard();
|
|
175
|
+
tempTransaction = undefined;
|
|
176
|
+
}
|
|
177
|
+
const snapPos = DopeSnap.checkIfMouseEventSnapToPos(event, {
|
|
178
|
+
ignore: origin.domNode,
|
|
179
|
+
});
|
|
180
|
+
const delta = snapPos != null
|
|
181
|
+
? snapPos - origin.positionAtStartOfDrag
|
|
182
|
+
: toUnitSpace(dx);
|
|
183
|
+
tempTransaction = getStudio().tempTransaction(({ stateEditors }) => {
|
|
184
|
+
const transformKeyframes = stateEditors.coreByProject.historic.sheetsById.sequence
|
|
185
|
+
.transformKeyframes;
|
|
186
|
+
for (const objectKey of Object.keys(selectionByObjectKey)) {
|
|
187
|
+
const { byTrackId } = selectionByObjectKey[objectKey];
|
|
188
|
+
for (const trackId of Object.keys(byTrackId)) {
|
|
189
|
+
const { byKeyframeId } = byTrackId[trackId];
|
|
190
|
+
transformKeyframes({
|
|
191
|
+
trackId,
|
|
192
|
+
keyframeIds: Object.keys(byKeyframeId),
|
|
193
|
+
translate: delta,
|
|
194
|
+
scale: 1,
|
|
195
|
+
origin: 0,
|
|
196
|
+
snappingFunction: sheet.getSequence().closestGridPosition,
|
|
197
|
+
objectKey,
|
|
198
|
+
projectId: origin.projectId,
|
|
199
|
+
sheetId: origin.sheetId,
|
|
200
|
+
});
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
});
|
|
204
|
+
},
|
|
205
|
+
onDragEnd(dragHappened) {
|
|
206
|
+
if (dragHappened)
|
|
207
|
+
tempTransaction?.commit();
|
|
208
|
+
else
|
|
209
|
+
tempTransaction?.discard();
|
|
210
|
+
},
|
|
211
|
+
};
|
|
212
|
+
},
|
|
213
|
+
};
|
|
214
|
+
},
|
|
215
|
+
delete() {
|
|
216
|
+
getStudio().transaction(({ stateEditors }) => {
|
|
217
|
+
const deleteKeyframes = stateEditors.coreByProject.historic.sheetsById.sequence
|
|
218
|
+
.deleteKeyframes;
|
|
219
|
+
for (const objectKey of Object.keys(selectionByObjectKey)) {
|
|
220
|
+
const { byTrackId } = selectionByObjectKey[objectKey];
|
|
221
|
+
for (const trackId of Object.keys(byTrackId)) {
|
|
222
|
+
const { byKeyframeId } = byTrackId[trackId];
|
|
223
|
+
deleteKeyframes({
|
|
224
|
+
...sheet.address,
|
|
225
|
+
objectKey,
|
|
226
|
+
trackId,
|
|
227
|
+
keyframeIds: Object.keys(byKeyframeId),
|
|
228
|
+
});
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
});
|
|
232
|
+
},
|
|
233
|
+
};
|
|
234
|
+
}
|
|
235
|
+
utils.boundsToSelection = boundsToSelection;
|
|
236
|
+
})(utils || (utils = {}));
|
|
237
|
+
const SelectionRectangleDiv = styled.div `
|
|
238
|
+
position: absolute;
|
|
239
|
+
background: rgba(255, 255, 255, 0.1);
|
|
240
|
+
border: 1px dashed rgba(255, 255, 255, 0.4);
|
|
241
|
+
box-sizing: border-box;
|
|
242
|
+
`;
|
|
243
|
+
const sortBounds = (b) => {
|
|
244
|
+
return {
|
|
245
|
+
h: [...b.h].sort((a, b) => a - b),
|
|
246
|
+
v: [...b.v].sort((a, b) => a - b),
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
const SelectionRectangle = ({ state, layoutP }) => {
|
|
250
|
+
const atom = useValToAtom(state);
|
|
251
|
+
return usePrism(() => {
|
|
252
|
+
const state = val(atom.pointer);
|
|
253
|
+
const sorted = sortBounds(state);
|
|
254
|
+
const unitSpaceToScaledSpace = val(layoutP.scaledSpace.fromUnitSpace);
|
|
255
|
+
const leftPadding = val(layoutP.scaledSpace.leftPadding);
|
|
256
|
+
const positionsInScaledSpace = sorted.h
|
|
257
|
+
.map(unitSpaceToScaledSpace)
|
|
258
|
+
// bounds are in normal space, convert them left-padded space
|
|
259
|
+
.map((coord) => coord + leftPadding);
|
|
260
|
+
const top = sorted.v[0];
|
|
261
|
+
const height = sorted.v[1] - sorted.v[0];
|
|
262
|
+
const left = positionsInScaledSpace[0];
|
|
263
|
+
const width = positionsInScaledSpace[1] - positionsInScaledSpace[0];
|
|
264
|
+
return (React.createElement(SelectionRectangleDiv, { style: {
|
|
265
|
+
top: top + 'px',
|
|
266
|
+
height: height + 'px',
|
|
267
|
+
left: left + 'px',
|
|
268
|
+
width: width + 'px',
|
|
269
|
+
} }));
|
|
270
|
+
}, [layoutP, atom]);
|
|
271
|
+
};
|
|
272
|
+
export default DopeSheetSelectionView;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
2
|
+
import type { SequenceEditorPanelLayout } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/layout';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
declare const FocusRangeCurtains: React.FC<{
|
|
5
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
6
|
+
}>;
|
|
7
|
+
export default FocusRangeCurtains;
|
|
8
|
+
//# sourceMappingURL=FocusRangeCurtains.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FocusRangeCurtains.d.ts","sourceRoot":"","sources":["../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/FocusRangeCurtains.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAI/D,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AAEvH,OAAO,KAAgB,MAAM,OAAO,CAAA;AAgBpC,QAAA,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC;IACjC,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;CAC5C,CA8FA,CAAA;AAED,eAAe,kBAAkB,CAAA"}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { prism, val } from '@tomorrowevening/theatre-dataverse';
|
|
2
|
+
import { usePrism } from '@tomorrowevening/theatre-react';
|
|
3
|
+
import getStudio from '@tomorrowevening/theatre-studio/getStudio';
|
|
4
|
+
import { topStripHeight } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/RightOverlay/TopStrip';
|
|
5
|
+
import React, { useMemo } from 'react';
|
|
6
|
+
import styled from 'styled-components';
|
|
7
|
+
const divWidth = 1000;
|
|
8
|
+
const Curtain = styled.div `
|
|
9
|
+
position: absolute;
|
|
10
|
+
top: ${topStripHeight}px;
|
|
11
|
+
left: 0;
|
|
12
|
+
opacity: 0.15;
|
|
13
|
+
width: ${divWidth}px;
|
|
14
|
+
transform-origin: top left;
|
|
15
|
+
pointer-events: none;
|
|
16
|
+
background-color: ${(props) => (props.enabled ? '#000000' : 'transparent')};
|
|
17
|
+
`;
|
|
18
|
+
const FocusRangeCurtains = ({ layoutP }) => {
|
|
19
|
+
const existingRangeD = useMemo(() => prism(() => {
|
|
20
|
+
const { projectId, sheetId } = val(layoutP.sheet).address;
|
|
21
|
+
const existingRange = val(getStudio().atomP.ahistoric.projects.stateByProjectId[projectId]
|
|
22
|
+
.stateBySheetId[sheetId].sequence.focusRange);
|
|
23
|
+
return existingRange;
|
|
24
|
+
}), [layoutP]);
|
|
25
|
+
return usePrism(() => {
|
|
26
|
+
const existingRange = existingRangeD.getValue();
|
|
27
|
+
if (!existingRange || !existingRange.enabled)
|
|
28
|
+
return null;
|
|
29
|
+
const { range } = existingRange;
|
|
30
|
+
const height = val(layoutP.rightDims.height) - topStripHeight;
|
|
31
|
+
const unitSpaceToClippedSpace = val(layoutP.clippedSpace.fromUnitSpace);
|
|
32
|
+
const clippedSpaceWidth = val(layoutP.clippedSpace.width);
|
|
33
|
+
const els = [];
|
|
34
|
+
{
|
|
35
|
+
// the left (start) curtain
|
|
36
|
+
// starts from 0px
|
|
37
|
+
let startX = 0;
|
|
38
|
+
// ends in the start of the range
|
|
39
|
+
let endX = unitSpaceToClippedSpace(existingRange.range.start);
|
|
40
|
+
let scaleX, translateX;
|
|
41
|
+
// hide the curtain if:
|
|
42
|
+
if (
|
|
43
|
+
// endX would be larger than startX, which means the curtain is to the left of the RightOverlay
|
|
44
|
+
startX > endX) {
|
|
45
|
+
// fully hide it then with scaleX = 0
|
|
46
|
+
translateX = 0;
|
|
47
|
+
scaleX = 0;
|
|
48
|
+
}
|
|
49
|
+
else {
|
|
50
|
+
// clip the end of the curtain if it's going over the right side of RightOverlay
|
|
51
|
+
if (endX > clippedSpaceWidth) {
|
|
52
|
+
//
|
|
53
|
+
endX = clippedSpaceWidth;
|
|
54
|
+
}
|
|
55
|
+
translateX = startX;
|
|
56
|
+
scaleX = (endX - startX) / divWidth;
|
|
57
|
+
}
|
|
58
|
+
els.push({ translateX, scaleX });
|
|
59
|
+
}
|
|
60
|
+
{
|
|
61
|
+
// the right (end) curtain
|
|
62
|
+
// starts at the end of the range
|
|
63
|
+
let startX = unitSpaceToClippedSpace(existingRange.range.end);
|
|
64
|
+
// and ends at the right edge of RightOverlay (which is clippedSpaceWidth)
|
|
65
|
+
let endX = clippedSpaceWidth;
|
|
66
|
+
let scaleX, translateX;
|
|
67
|
+
// if the whole curtain falls to the right of RightOverlay, hide it
|
|
68
|
+
if (startX > endX) {
|
|
69
|
+
translateX = 0;
|
|
70
|
+
scaleX = 0;
|
|
71
|
+
}
|
|
72
|
+
else {
|
|
73
|
+
// if the left of the curtain falls on the left of RightOverlay, clip it
|
|
74
|
+
if (startX < 0) {
|
|
75
|
+
startX = 0;
|
|
76
|
+
}
|
|
77
|
+
translateX = startX;
|
|
78
|
+
scaleX = (endX - startX) / divWidth;
|
|
79
|
+
}
|
|
80
|
+
els.push({ translateX, scaleX });
|
|
81
|
+
}
|
|
82
|
+
return (React.createElement(React.Fragment, null, els.map(({ translateX, scaleX }, i) => (React.createElement(Curtain, { key: `curtain-${i}`, enabled: true, style: {
|
|
83
|
+
height: `${height}px`,
|
|
84
|
+
transform: `translateX(${translateX}px) scaleX(${scaleX})`,
|
|
85
|
+
} })))));
|
|
86
|
+
}, [layoutP, existingRangeD]);
|
|
87
|
+
};
|
|
88
|
+
export default FocusRangeCurtains;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { SequenceEditorPanelLayout } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/layout';
|
|
2
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
declare const HorizontallyScrollableArea: React.FC<{
|
|
5
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
6
|
+
height: number;
|
|
7
|
+
children: React.ReactNode;
|
|
8
|
+
}>;
|
|
9
|
+
export default HorizontallyScrollableArea;
|
|
10
|
+
//# sourceMappingURL=HorizontallyScrollableArea.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HorizontallyScrollableArea.d.ts","sourceRoot":"","sources":["../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/HorizontallyScrollableArea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AAIvH,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAG/D,OAAO,KAAiC,MAAM,OAAO,CAAA;AA0BrD,QAAA,MAAM,0BAA0B,EAAE,KAAK,CAAC,EAAE,CAAC;IACzC,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;IAC3C,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAC1B,CAgCC,CAAA;AAEF,eAAe,0BAA0B,CAAA"}
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
import useDrag from '@tomorrowevening/theatre-studio/uiComponents/useDrag';
|
|
2
|
+
import useRefAndState from '@tomorrowevening/theatre-studio/utils/useRefAndState';
|
|
3
|
+
import { usePrism } from '@tomorrowevening/theatre-react';
|
|
4
|
+
import { prism, val } from '@tomorrowevening/theatre-dataverse';
|
|
5
|
+
import { clamp, mapValues } from 'lodash-es';
|
|
6
|
+
import React, { useLayoutEffect, useMemo } from 'react';
|
|
7
|
+
import styled from 'styled-components';
|
|
8
|
+
import { useReceiveVerticalWheelEvent } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/VerticalScrollContainer';
|
|
9
|
+
import { pointerEventsAutoInNormalMode } from '@tomorrowevening/theatre-studio/css';
|
|
10
|
+
import { useCssCursorLock } from '@tomorrowevening/theatre-studio/uiComponents/PointerEventsHandler';
|
|
11
|
+
import DopeSnap from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/RightOverlay/DopeSnap';
|
|
12
|
+
import { snapToAll, snapToNone } from './KeyframeSnapTarget';
|
|
13
|
+
const Container = styled.div `
|
|
14
|
+
position: absolute;
|
|
15
|
+
|
|
16
|
+
right: 0;
|
|
17
|
+
overflow-x: scroll;
|
|
18
|
+
overflow-y: hidden;
|
|
19
|
+
${pointerEventsAutoInNormalMode};
|
|
20
|
+
|
|
21
|
+
// hide the scrollbar on Gecko
|
|
22
|
+
scrollbar-width: none;
|
|
23
|
+
|
|
24
|
+
// hide the scrollbar on Webkit/Blink
|
|
25
|
+
&::-webkit-scrollbar {
|
|
26
|
+
display: none;
|
|
27
|
+
}
|
|
28
|
+
`;
|
|
29
|
+
const HorizontallyScrollableArea = React.memo(({ layoutP, children, height }) => {
|
|
30
|
+
const { width, unitSpaceToScaledSpaceMultiplier } = usePrism(() => ({
|
|
31
|
+
width: val(layoutP.rightDims.width),
|
|
32
|
+
unitSpaceToScaledSpaceMultiplier: val(layoutP.scaledSpace.fromUnitSpace)(1),
|
|
33
|
+
}), [layoutP]);
|
|
34
|
+
const [containerRef, containerNode] = useRefAndState(null);
|
|
35
|
+
useHandlePanAndZoom(layoutP, containerNode);
|
|
36
|
+
useDragPlayheadHandlers(layoutP, containerNode);
|
|
37
|
+
useUpdateScrollFromClippedSpaceRange(layoutP, containerNode);
|
|
38
|
+
return (React.createElement(Container, { ref: containerRef, style: {
|
|
39
|
+
width: width + 'px',
|
|
40
|
+
height: height + 'px',
|
|
41
|
+
// @ts-expect-error
|
|
42
|
+
'--unitSpaceToScaledSpaceMultiplier': unitSpaceToScaledSpaceMultiplier,
|
|
43
|
+
} }, children));
|
|
44
|
+
});
|
|
45
|
+
export default HorizontallyScrollableArea;
|
|
46
|
+
function useDragPlayheadHandlers(layoutP, containerEl) {
|
|
47
|
+
const handlers = useMemo(() => {
|
|
48
|
+
return {
|
|
49
|
+
debugName: 'HorizontallyScrollableArea',
|
|
50
|
+
onDragStart(event) {
|
|
51
|
+
if (event.target instanceof HTMLInputElement) {
|
|
52
|
+
// editing some value
|
|
53
|
+
return false;
|
|
54
|
+
}
|
|
55
|
+
if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) {
|
|
56
|
+
// e.g. marquee selection has shiftKey
|
|
57
|
+
return false;
|
|
58
|
+
}
|
|
59
|
+
if (event
|
|
60
|
+
.composedPath()
|
|
61
|
+
.some((el) => el instanceof HTMLElement && el.draggable === true)) {
|
|
62
|
+
// Question: I think to check if we want another descendent element
|
|
63
|
+
// to be able to take control of this drag event.
|
|
64
|
+
// Question: e.g. for `useDragKeyframe`?
|
|
65
|
+
return false;
|
|
66
|
+
}
|
|
67
|
+
const initialPositionInClippedSpace = event.clientX - containerEl.getBoundingClientRect().left;
|
|
68
|
+
const initialPositionInUnitSpace = clamp(val(layoutP.clippedSpace.toUnitSpace)(initialPositionInClippedSpace), 0, Infinity);
|
|
69
|
+
const setIsSeeking = val(layoutP.seeker.setIsSeeking);
|
|
70
|
+
const sequence = val(layoutP.sheet).getSequence();
|
|
71
|
+
sequence.position = initialPositionInUnitSpace;
|
|
72
|
+
const posBeforeSeek = initialPositionInUnitSpace;
|
|
73
|
+
const scaledSpaceToUnitSpace = val(layoutP.scaledSpace.toUnitSpace);
|
|
74
|
+
setIsSeeking(true);
|
|
75
|
+
snapToAll();
|
|
76
|
+
return {
|
|
77
|
+
onDrag(dx, _, event) {
|
|
78
|
+
const deltaPos = scaledSpaceToUnitSpace(dx);
|
|
79
|
+
const unsnappedPos = clamp(posBeforeSeek + deltaPos, 0, sequence.length);
|
|
80
|
+
let newPosition = unsnappedPos;
|
|
81
|
+
const snapPos = DopeSnap.checkIfMouseEventSnapToPos(event, {});
|
|
82
|
+
if (snapPos != null) {
|
|
83
|
+
newPosition = snapPos;
|
|
84
|
+
}
|
|
85
|
+
sequence.position = newPosition;
|
|
86
|
+
},
|
|
87
|
+
onDragEnd() {
|
|
88
|
+
setIsSeeking(false);
|
|
89
|
+
snapToNone();
|
|
90
|
+
},
|
|
91
|
+
};
|
|
92
|
+
},
|
|
93
|
+
};
|
|
94
|
+
}, [layoutP, containerEl]);
|
|
95
|
+
const [isDragging] = useDrag(containerEl, handlers);
|
|
96
|
+
useCssCursorLock(isDragging, 'draggingPositionInSequenceEditor', 'ew-resize');
|
|
97
|
+
}
|
|
98
|
+
function useHandlePanAndZoom(layoutP, node) {
|
|
99
|
+
const receiveVerticalWheelEvent = useReceiveVerticalWheelEvent();
|
|
100
|
+
useLayoutEffect(() => {
|
|
101
|
+
if (!node)
|
|
102
|
+
return;
|
|
103
|
+
const receiveWheelEvent = (event) => {
|
|
104
|
+
// pinch
|
|
105
|
+
if (event.ctrlKey) {
|
|
106
|
+
event.preventDefault();
|
|
107
|
+
event.stopPropagation();
|
|
108
|
+
const pivotPointInClippedSpace = event.clientX - node.getBoundingClientRect().left;
|
|
109
|
+
const pivotPointInUnitSpace = val(layoutP.clippedSpace.toUnitSpace)(pivotPointInClippedSpace);
|
|
110
|
+
const oldRange = val(layoutP.clippedSpace.range);
|
|
111
|
+
const delta = normalize(event.deltaY, [-50, 50]);
|
|
112
|
+
const scaleFactor = 1 + delta * 0.03;
|
|
113
|
+
const newRange = mapValues(oldRange, (originalPos) => {
|
|
114
|
+
return ((originalPos - pivotPointInUnitSpace) * scaleFactor +
|
|
115
|
+
pivotPointInUnitSpace);
|
|
116
|
+
});
|
|
117
|
+
// Set maximum scroll points based on the sequence length.
|
|
118
|
+
// This is to avoid zooming out to infinity.
|
|
119
|
+
const sequenceLength = val(layoutP.sheet).getSequence().length;
|
|
120
|
+
const maxEnd = sequenceLength + sequenceLength * 0.25;
|
|
121
|
+
val(layoutP.clippedSpace.setRange)(normalizeRange(newRange, [0, maxEnd]));
|
|
122
|
+
return;
|
|
123
|
+
}
|
|
124
|
+
// panning
|
|
125
|
+
else if (event.shiftKey) {
|
|
126
|
+
event.preventDefault();
|
|
127
|
+
event.stopPropagation();
|
|
128
|
+
const sequenceLength = val(layoutP.sheet).getSequence().length;
|
|
129
|
+
const oldRange = val(layoutP.clippedSpace.range);
|
|
130
|
+
const windowSize = oldRange.end - oldRange.start;
|
|
131
|
+
const speed = windowSize / sequenceLength;
|
|
132
|
+
// if there's no deltaY, the browser is probably assigning to deltaX because of the shiftKey
|
|
133
|
+
// it appeared that Safari + Chrome continue to use deltaY with shiftKey, while FF on macOS
|
|
134
|
+
// updates the deltaX with deltaY unchanged.
|
|
135
|
+
// this is a little awkward with track pads + shift on macOS FF, but that's not a big deal
|
|
136
|
+
// since scrolling horizontally with macOS track pads is not necessary to hold shift.
|
|
137
|
+
const delta = normalize(event.deltaY || event.deltaX, [-50, 50]);
|
|
138
|
+
const scaleFactor = delta * 0.05 * speed;
|
|
139
|
+
const newRange = mapValues(oldRange, (originalPos) => originalPos + scaleFactor);
|
|
140
|
+
val(layoutP.clippedSpace.setRange)(newRange);
|
|
141
|
+
return;
|
|
142
|
+
}
|
|
143
|
+
else {
|
|
144
|
+
receiveVerticalWheelEvent(event);
|
|
145
|
+
event.preventDefault();
|
|
146
|
+
event.stopPropagation();
|
|
147
|
+
const scaledSpaceToUnitSpace = val(layoutP.scaledSpace.toUnitSpace);
|
|
148
|
+
const deltaPos = scaledSpaceToUnitSpace(event.deltaX * 1);
|
|
149
|
+
const oldRange = val(layoutP.clippedSpace.range);
|
|
150
|
+
const newRange = mapValues(oldRange, (p) => p + deltaPos);
|
|
151
|
+
const setRange = val(layoutP.clippedSpace.setRange);
|
|
152
|
+
setRange(newRange);
|
|
153
|
+
return;
|
|
154
|
+
}
|
|
155
|
+
};
|
|
156
|
+
const listenerOptions = {
|
|
157
|
+
capture: true,
|
|
158
|
+
passive: false,
|
|
159
|
+
};
|
|
160
|
+
node.addEventListener('wheel', receiveWheelEvent, listenerOptions);
|
|
161
|
+
return () => {
|
|
162
|
+
node.removeEventListener('wheel', receiveWheelEvent, listenerOptions);
|
|
163
|
+
};
|
|
164
|
+
}, [node, layoutP]);
|
|
165
|
+
useDrag(node, useMemo(() => {
|
|
166
|
+
return {
|
|
167
|
+
onDragStart(e) {
|
|
168
|
+
const oldRange = val(layoutP.clippedSpace.range);
|
|
169
|
+
const setRange = val(layoutP.clippedSpace.setRange);
|
|
170
|
+
const scaledSpaceToUnitSpace = val(layoutP.scaledSpace.toUnitSpace);
|
|
171
|
+
e.preventDefault();
|
|
172
|
+
e.stopPropagation();
|
|
173
|
+
return {
|
|
174
|
+
onDrag(dx, dy, _, __, deltaYFromLastEvent) {
|
|
175
|
+
receiveVerticalWheelEvent({ deltaY: -deltaYFromLastEvent });
|
|
176
|
+
const delta = -scaledSpaceToUnitSpace(dx);
|
|
177
|
+
const newRange = mapValues(oldRange, (originalPos) => originalPos + delta);
|
|
178
|
+
setRange(newRange);
|
|
179
|
+
},
|
|
180
|
+
};
|
|
181
|
+
},
|
|
182
|
+
debugName: 'HorizontallyScrollableArea Middle Button Drag',
|
|
183
|
+
buttons: [1],
|
|
184
|
+
lockCSSCursorTo: 'grabbing',
|
|
185
|
+
};
|
|
186
|
+
}, [layoutP]));
|
|
187
|
+
}
|
|
188
|
+
function normalize(value, [min, max]) {
|
|
189
|
+
return Math.max(Math.min(value, max), min);
|
|
190
|
+
}
|
|
191
|
+
function normalizeRange(range, minMax) {
|
|
192
|
+
return mapValues(range, (pos) => normalize(pos, minMax));
|
|
193
|
+
}
|
|
194
|
+
function useUpdateScrollFromClippedSpaceRange(layoutP, node) {
|
|
195
|
+
useLayoutEffect(() => {
|
|
196
|
+
if (!node)
|
|
197
|
+
return;
|
|
198
|
+
const d = prism(() => {
|
|
199
|
+
const range = val(layoutP.clippedSpace.range);
|
|
200
|
+
const rangeStartInScaledSpace = val(layoutP.scaledSpace.fromUnitSpace)(range.start);
|
|
201
|
+
return rangeStartInScaledSpace;
|
|
202
|
+
});
|
|
203
|
+
const update = () => {
|
|
204
|
+
const rangeStartInScaledSpace = d.getValue();
|
|
205
|
+
node.scrollLeft = rangeStartInScaledSpace;
|
|
206
|
+
};
|
|
207
|
+
const untap = d.onStale(update);
|
|
208
|
+
update();
|
|
209
|
+
const timeout = setTimeout(update, 100);
|
|
210
|
+
return () => {
|
|
211
|
+
clearTimeout(timeout);
|
|
212
|
+
untap();
|
|
213
|
+
};
|
|
214
|
+
}, [layoutP, node]);
|
|
215
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { SequenceEditorPanelLayout } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/layout';
|
|
2
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import type { ObjectAddressKey, SequenceTrackId } from '@tomorrowevening/theatre-shared/utils/ids';
|
|
5
|
+
import type { BasicKeyframedTrack, HistoricPositionalSequence, Keyframe } from '@tomorrowevening/theatre-core/projects/store/types/SheetState_Historic';
|
|
6
|
+
export type ISnapTargetPRops = {
|
|
7
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
8
|
+
leaf: {
|
|
9
|
+
nodeHeight: number;
|
|
10
|
+
};
|
|
11
|
+
position: number;
|
|
12
|
+
};
|
|
13
|
+
declare const KeyframeSnapTarget: React.VFC<ISnapTargetPRops>;
|
|
14
|
+
export default KeyframeSnapTarget;
|
|
15
|
+
export type KeyframeSnapPositions = {
|
|
16
|
+
[objectKey: ObjectAddressKey]: {
|
|
17
|
+
[trackId: SequenceTrackId]: number[];
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export declare const snapPositionsStateD: import("@tomorrowevening/theatre-dataverse").Prism<{
|
|
21
|
+
mode: 'snapToAll';
|
|
22
|
+
} | {
|
|
23
|
+
mode: 'snapToSome';
|
|
24
|
+
positions: KeyframeSnapPositions;
|
|
25
|
+
} | {
|
|
26
|
+
mode: 'snapToNone';
|
|
27
|
+
}>;
|
|
28
|
+
export declare function snapToAll(): void;
|
|
29
|
+
export declare function snapToNone(): void;
|
|
30
|
+
export declare function snapToSome(positions: KeyframeSnapPositions): void;
|
|
31
|
+
export declare function collectKeyframeSnapPositions(tracksByObject: HistoricPositionalSequence['tracksByObject'], shouldIncludeKeyframe: (kf: Keyframe, track: {
|
|
32
|
+
trackId: SequenceTrackId;
|
|
33
|
+
trackData: BasicKeyframedTrack;
|
|
34
|
+
objectKey: ObjectAddressKey;
|
|
35
|
+
}) => boolean): KeyframeSnapPositions;
|
|
36
|
+
//# sourceMappingURL=KeyframeSnapTarget.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"KeyframeSnapTarget.d.ts","sourceRoot":"","sources":["../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/KeyframeSnapTarget.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AACvH,OAAO,KAAK,EAAE,OAAO,EAAC,MAAM,oCAAoC,CAAC;AAGjE,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EAAC,gBAAgB,EAAE,eAAe,EAAC,MAAM,2CAA2C,CAAA;AAChG,OAAO,KAAK,EACV,mBAAmB,EACnB,0BAA0B,EAC1B,QAAQ,EACT,MAAM,wEAAwE,CAAA;AAiB/E,MAAM,MAAM,gBAAgB,GAAG;IAC7B,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;IAC3C,IAAI,EAAE;QAAC,UAAU,EAAE,MAAM,CAAA;KAAC,CAAA;IAC1B,QAAQ,EAAE,MAAM,CAAA;CACjB,CAAA;AAED,QAAA,MAAM,kBAAkB,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAoBnD,CAAA;AAED,eAAe,kBAAkB,CAAA;AAEjC,MAAM,MAAM,qBAAqB,GAAG;IAClC,CAAC,SAAS,EAAE,gBAAgB,GAAG;QAC7B,CAAC,OAAO,EAAE,eAAe,GAAG,MAAM,EAAE,CAAA;KACrC,CAAA;CACF,CAAA;AAkBD,eAAO,MAAM,mBAAmB;UAbpB,WAAW;;UAIX,YAAY;eACP,qBAAqB;;UAI1B,YAAY;EAIuB,CAAA;AAE/C,wBAAgB,SAAS,SAExB;AAED,wBAAgB,UAAU,SAEzB;AAED,wBAAgB,UAAU,CAAC,SAAS,EAAE,qBAAqB,QAE1D;AAED,wBAAgB,4BAA4B,CAC1C,cAAc,EAAE,0BAA0B,CAAC,gBAAgB,CAAC,EAC5D,qBAAqB,EAAE,CACrB,EAAE,EAAE,QAAQ,EACZ,KAAK,EAAE;IACL,OAAO,EAAE,eAAe,CAAA;IACxB,SAAS,EAAE,mBAAmB,CAAA;IAC9B,SAAS,EAAE,gBAAgB,CAAA;CAC5B,KACE,OAAO,GACX,qBAAqB,CAwBvB"}
|