@tomorrowevening/theatre-studio 1.0.4 → 1.0.6
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/PaneManager.d.ts +16 -0
- package/dist/PaneManager.d.ts.map +1 -0
- package/dist/Scrub.d.ts +83 -0
- package/dist/Scrub.d.ts.map +1 -0
- package/dist/Studio.d.ts +79 -0
- package/dist/Studio.d.ts.map +1 -0
- package/dist/StudioBundle.d.ts +10 -0
- package/dist/StudioBundle.d.ts.map +1 -0
- package/dist/StudioStore/StudioStore.d.ts +46 -0
- package/dist/StudioStore/StudioStore.d.ts.map +1 -0
- package/dist/StudioStore/createTransactionPrivateApi.d.ts +3 -0
- package/dist/StudioStore/createTransactionPrivateApi.d.ts.map +1 -0
- package/dist/StudioStore/generateDiskStateRevision.d.ts +2 -0
- package/dist/StudioStore/generateDiskStateRevision.d.ts.map +1 -0
- package/dist/StudioStore/persistStateOfStudio.d.ts +5 -0
- package/dist/StudioStore/persistStateOfStudio.d.ts.map +1 -0
- package/dist/TheatreStudio.d.ts +426 -0
- package/dist/TheatreStudio.d.ts.map +1 -0
- package/dist/UI/UI.d.ts +14 -0
- package/dist/UI/UI.d.ts.map +1 -0
- package/dist/UI/UINonSSRBits.d.ts +10 -0
- package/dist/UI/UINonSSRBits.d.ts.map +1 -0
- package/dist/UIRoot/PanelsRoot.d.ts +4 -0
- package/dist/UIRoot/PanelsRoot.d.ts.map +1 -0
- package/dist/UIRoot/PointerCapturing.d.ts +46 -0
- package/dist/UIRoot/PointerCapturing.d.ts.map +1 -0
- package/dist/UIRoot/ProvideTheme.d.ts +6 -0
- package/dist/UIRoot/ProvideTheme.d.ts.map +1 -0
- package/dist/UIRoot/UIRoot.d.ts +5 -0
- package/dist/UIRoot/UIRoot.d.ts.map +1 -0
- package/dist/UIRoot/useKeyboardShortcuts.d.ts +7 -0
- package/dist/UIRoot/useKeyboardShortcuts.d.ts.map +1 -0
- package/dist/checkForUpdates.d.ts +2 -0
- package/dist/checkForUpdates.d.ts.map +1 -0
- package/dist/css.d.ts +39 -0
- package/dist/css.d.ts.map +1 -0
- package/dist/getStudio.d.ts +7 -0
- package/dist/getStudio.d.ts.map +1 -0
- package/dist/index.d.ts +6 -9
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1 -1
- package/dist/notify.d.ts +12 -0
- package/dist/notify.d.ts.map +1 -0
- package/dist/panels/BasePanel/BasePanel.d.ts +35 -0
- package/dist/panels/BasePanel/BasePanel.d.ts.map +1 -0
- package/dist/panels/BasePanel/ExtensionPaneWrapper.d.ts +8 -0
- package/dist/panels/BasePanel/ExtensionPaneWrapper.d.ts.map +1 -0
- package/dist/panels/BasePanel/PanelDragZone.d.ts +4 -0
- package/dist/panels/BasePanel/PanelDragZone.d.ts.map +1 -0
- package/dist/panels/BasePanel/PanelResizeHandle.d.ts +7 -0
- package/dist/panels/BasePanel/PanelResizeHandle.d.ts.map +1 -0
- package/dist/panels/BasePanel/PanelResizers.d.ts +4 -0
- package/dist/panels/BasePanel/PanelResizers.d.ts.map +1 -0
- package/dist/panels/BasePanel/PanelWrapper.d.ts +4 -0
- package/dist/panels/BasePanel/PanelWrapper.d.ts.map +1 -0
- package/dist/panels/BasePanel/common.d.ts +15 -0
- package/dist/panels/BasePanel/common.d.ts.map +1 -0
- package/dist/panels/DetailPanel/DetailPanel.d.ts +6 -0
- package/dist/panels/DetailPanel/DetailPanel.d.ts.map +1 -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/DetailSimplePropEditor.d.ts +20 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailSimplePropEditor.d.ts.map +1 -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/getDetailRowHighlightBackground.d.ts +5 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail/getDetailRowHighlightBackground.d.ts.map +1 -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.d.ts +26 -0
- package/dist/panels/DetailPanel/DeterminePropEditorForDetail.d.ts.map +1 -0
- package/dist/panels/DetailPanel/EmptyState.d.ts +4 -0
- package/dist/panels/DetailPanel/EmptyState.d.ts.map +1 -0
- package/dist/panels/DetailPanel/ObjectDetails.d.ts +8 -0
- package/dist/panels/DetailPanel/ObjectDetails.d.ts.map +1 -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.d.ts +7 -0
- package/dist/panels/DetailPanel/ProjectDetails.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/BaseItem.d.ts +18 -0
- package/dist/panels/OutlinePanel/BaseItem.d.ts.map +1 -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/ObjectsList.d.ts +11 -0
- package/dist/panels/OutlinePanel/ObjectsList/ObjectsList.d.ts.map +1 -0
- package/dist/panels/OutlinePanel/OutlinePanel.d.ts +5 -0
- package/dist/panels/OutlinePanel/OutlinePanel.d.ts.map +1 -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/ProjectsList.d.ts +4 -0
- package/dist/panels/OutlinePanel/ProjectsList/ProjectsList.d.ts.map +1 -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/SheetItem.d.ts +8 -0
- package/dist/panels/OutlinePanel/SheetsList/SheetItem.d.ts.map +1 -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/outlinePanelUtils.d.ts +11 -0
- package/dist/panels/OutlinePanel/outlinePanelUtils.d.ts.map +1 -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/Left/AnyCompositeRow.d.ts +21 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/AnyCompositeRow.d.ts.map +1 -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/PrimitivePropRow.d.ts +7 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PrimitivePropRow.d.ts.map +1 -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/SheetObjectRow.d.ts +7 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetObjectRow.d.ts.map +1 -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/usePropHighlightMouseEnter.d.ts +4 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Left/usePropHighlightMouseEnter.d.ts.map +1 -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/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/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/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/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/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/AggregatedKeyframeTrack.d.ts +19 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregatedKeyframeTrack.d.ts.map +1 -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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/DopeSheetBackground.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetBackground.d.ts.map +1 -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/FocusRangeCurtains.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/FocusRangeCurtains.d.ts.map +1 -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/KeyframeSnapTarget.d.ts +36 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/KeyframeSnapTarget.d.ts.map +1 -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/LengthIndicator.d.ts +13 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthIndicator.d.ts.map +1 -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/PropWithChildrenRow.d.ts +11 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PropWithChildrenRow.d.ts.map +1 -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/Row.d.ts +21 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Row.d.ts.map +1 -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/SheetRow.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetRow.d.ts.map +1 -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/keyframeRowUI/ConnectorLine.d.ts +20 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/Right/keyframeRowUI/ConnectorLine.d.ts.map +1 -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/setCollapsedSheetObjectOrCompoundProp.d.ts +7 -0
- package/dist/panels/SequenceEditorPanel/DopeSheet/setCollapsedSheetObjectOrCompoundProp.d.ts.map +1 -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/StampsGrid.d.ts +15 -0
- package/dist/panels/SequenceEditorPanel/FrameGrid/StampsGrid.d.ts.map +1 -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/FrameStampPositionProvider.d.ts +52 -0
- package/dist/panels/SequenceEditorPanel/FrameStampPositionProvider.d.ts.map +1 -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/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/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/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/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/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/KeyframeEditor.d.ts +27 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/KeyframeEditor.d.ts.map +1 -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/PrimitivePropGraph.d.ts +16 -0
- package/dist/panels/SequenceEditorPanel/GraphEditor/PrimitivePropGraph.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/GraphEditorToggle.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/GraphEditorToggle.d.ts.map +1 -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/DopeSnapHitZoneUI.d.ts +18 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnapHitZoneUI.d.ts.map +1 -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/FocusRangeThumb.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeThumb.d.ts.map +1 -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/FrameStamp.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/FrameStamp.d.ts.map +1 -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/Markers/MarkerDot.d.ts +11 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerDot.d.ts.map +1 -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/Markers.d.ts +8 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/Markers.d.ts.map +1 -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/PlayheadPositionPopover.d.ts +12 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/PlayheadPositionPopover.d.ts.map +1 -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/TopStrip.d.ts +13 -0
- package/dist/panels/SequenceEditorPanel/RightOverlay/TopStrip.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/SequenceEditorPanel.d.ts +15 -0
- package/dist/panels/SequenceEditorPanel/SequenceEditorPanel.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/VerticalScrollContainer.d.ts +19 -0
- package/dist/panels/SequenceEditorPanel/VerticalScrollContainer.d.ts.map +1 -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/tree.d.ts +71 -0
- package/dist/panels/SequenceEditorPanel/layout/tree.d.ts.map +1 -0
- package/dist/panels/SequenceEditorPanel/whatPropIsHighlighted.d.ts +10 -0
- package/dist/panels/SequenceEditorPanel/whatPropIsHighlighted.d.ts.map +1 -0
- package/dist/propEditors/DefaultValueIndicator.d.ts +12 -0
- package/dist/propEditors/DefaultValueIndicator.d.ts.map +1 -0
- package/dist/propEditors/NextPrevKeyframeCursors.d.ts +29 -0
- package/dist/propEditors/NextPrevKeyframeCursors.d.ts.map +1 -0
- package/dist/propEditors/getNearbyKeyframesOfTrack.d.ts +9 -0
- package/dist/propEditors/getNearbyKeyframesOfTrack.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/BooleanPropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/BooleanPropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/FilePropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/FilePropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/ISimplePropEditorReactProps.d.ts +10 -0
- package/dist/propEditors/simpleEditors/ISimplePropEditorReactProps.d.ts.map +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/NumberPropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/NumberPropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/RgbaPropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/RgbaPropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/StringLiteralPropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/StringLiteralPropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/StringPropEditor.d.ts +6 -0
- package/dist/propEditors/simpleEditors/StringPropEditor.d.ts.map +1 -0
- package/dist/propEditors/simpleEditors/simplePropEditorByPropType.d.ts +10 -0
- package/dist/propEditors/simpleEditors/simplePropEditorByPropType.d.ts.map +1 -0
- package/dist/propEditors/useEditingToolsForCompoundProp.d.ts +27 -0
- package/dist/propEditors/useEditingToolsForCompoundProp.d.ts.map +1 -0
- package/dist/propEditors/useEditingToolsForSimpleProp.d.ts +47 -0
- package/dist/propEditors/useEditingToolsForSimpleProp.d.ts.map +1 -0
- package/dist/propEditors/utils/IEditingTools.d.ts +9 -0
- package/dist/propEditors/utils/IEditingTools.d.ts.map +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/getPropTypeByPointer.d.ts +19 -0
- package/dist/propEditors/utils/getPropTypeByPointer.d.ts.map +1 -0
- package/dist/propEditors/utils/propNameTextCSS.d.ts +5 -0
- package/dist/propEditors/utils/propNameTextCSS.d.ts.map +1 -0
- package/dist/selectors.d.ts +13 -0
- package/dist/selectors.d.ts.map +1 -0
- package/dist/store/index.d.ts +210 -0
- package/dist/store/index.d.ts.map +1 -0
- package/dist/store/stateEditors.d.ts +300 -0
- package/dist/store/stateEditors.d.ts.map +1 -0
- package/dist/store/types/ahistoric.d.ts +79 -0
- package/dist/store/types/ahistoric.d.ts.map +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/historic.d.ts +104 -0
- package/dist/store/types/historic.d.ts.map +1 -0
- package/dist/store/types/index.d.ts +25 -0
- package/dist/store/types/index.d.ts.map +1 -0
- package/dist/toolbars/ExtensionToolbar/ExtensionToolbar.d.ts +7 -0
- package/dist/toolbars/ExtensionToolbar/ExtensionToolbar.d.ts.map +1 -0
- package/dist/toolbars/ExtensionToolbar/Toolset.d.ts +7 -0
- package/dist/toolbars/ExtensionToolbar/Toolset.d.ts.map +1 -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/IconButton.d.ts +8 -0
- package/dist/toolbars/ExtensionToolbar/tools/IconButton.d.ts.map +1 -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/GlobalToolbar.d.ts +4 -0
- package/dist/toolbars/GlobalToolbar.d.ts.map +1 -0
- package/dist/toolbars/MoreMenu/MoreMenu.d.ts +4 -0
- package/dist/toolbars/MoreMenu/MoreMenu.d.ts.map +1 -0
- package/dist/toolbars/PinButton.d.ts +12 -0
- package/dist/toolbars/PinButton.d.ts.map +1 -0
- package/dist/uiComponents/DetailPanelButton.d.ts +5 -0
- package/dist/uiComponents/DetailPanelButton.d.ts.map +1 -0
- package/dist/uiComponents/PointerEventsHandler.d.ts +31 -0
- package/dist/uiComponents/PointerEventsHandler.d.ts.map +1 -0
- package/dist/uiComponents/Popover/ArrowContext.d.ts +4 -0
- package/dist/uiComponents/Popover/ArrowContext.d.ts.map +1 -0
- package/dist/uiComponents/Popover/BasicPopover.d.ts +9 -0
- package/dist/uiComponents/Popover/BasicPopover.d.ts.map +1 -0
- package/dist/uiComponents/Popover/BasicTooltip.d.ts +8 -0
- package/dist/uiComponents/Popover/BasicTooltip.d.ts.map +1 -0
- package/dist/uiComponents/Popover/ErrorTooltip.d.ts +8 -0
- package/dist/uiComponents/Popover/ErrorTooltip.d.ts.map +1 -0
- package/dist/uiComponents/Popover/MinimalTooltip.d.ts +8 -0
- package/dist/uiComponents/Popover/MinimalTooltip.d.ts.map +1 -0
- package/dist/uiComponents/Popover/PopoverArrow.d.ts +8 -0
- package/dist/uiComponents/Popover/PopoverArrow.d.ts.map +1 -0
- package/dist/uiComponents/Popover/TooltipContext.d.ts +7 -0
- package/dist/uiComponents/Popover/TooltipContext.d.ts.map +1 -0
- package/dist/uiComponents/Popover/TooltipWrapper.d.ts +21 -0
- package/dist/uiComponents/Popover/TooltipWrapper.d.ts.map +1 -0
- package/dist/uiComponents/Popover/usePopover.d.ts +29 -0
- package/dist/uiComponents/Popover/usePopover.d.ts.map +1 -0
- package/dist/uiComponents/Popover/useTooltip.d.ts +14 -0
- package/dist/uiComponents/Popover/useTooltip.d.ts.map +1 -0
- package/dist/uiComponents/RoomToClick.d.ts +6 -0
- package/dist/uiComponents/RoomToClick.d.ts.map +1 -0
- package/dist/uiComponents/SVGIcon.d.ts +8 -0
- package/dist/uiComponents/SVGIcon.d.ts.map +1 -0
- package/dist/uiComponents/ShowMousePosition.d.ts +4 -0
- package/dist/uiComponents/ShowMousePosition.d.ts.map +1 -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/RgbaColorPicker.d.ts +3 -0
- package/dist/uiComponents/colorPicker/components/RgbaColorPicker.d.ts.map +1 -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/AlphaColorPicker.d.ts +7 -0
- package/dist/uiComponents/colorPicker/components/common/AlphaColorPicker.d.ts.map +1 -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/Interactive.d.ts +13 -0
- package/dist/uiComponents/colorPicker/components/common/Interactive.d.ts.map +1 -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/Saturation.d.ts +12 -0
- package/dist/uiComponents/colorPicker/components/common/Saturation.d.ts.map +1 -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/useEventCallback.d.ts +2 -0
- package/dist/uiComponents/colorPicker/hooks/useEventCallback.d.ts.map +1 -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/index.d.ts +3 -0
- package/dist/uiComponents/colorPicker/index.d.ts.map +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/utils/clamp.d.ts +2 -0
- package/dist/uiComponents/colorPicker/utils/clamp.d.ts.map +1 -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/convert.d.ts +27 -0
- package/dist/uiComponents/colorPicker/utils/convert.d.ts.map +1 -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/validate.d.ts +2 -0
- package/dist/uiComponents/colorPicker/utils/validate.d.ts.map +1 -0
- package/dist/uiComponents/createCursorLock.d.ts +2 -0
- package/dist/uiComponents/createCursorLock.d.ts.map +1 -0
- package/dist/uiComponents/form/BasicCheckbox.d.ts +5 -0
- package/dist/uiComponents/form/BasicCheckbox.d.ts.map +1 -0
- package/dist/uiComponents/form/BasicNumberInput.d.ts +26 -0
- package/dist/uiComponents/form/BasicNumberInput.d.ts.map +1 -0
- package/dist/uiComponents/form/BasicSelect.d.ts +10 -0
- package/dist/uiComponents/form/BasicSelect.d.ts.map +1 -0
- package/dist/uiComponents/form/BasicStringInput.d.ts +19 -0
- package/dist/uiComponents/form/BasicStringInput.d.ts.map +1 -0
- package/dist/uiComponents/form/BasicSwitch.d.ts +9 -0
- package/dist/uiComponents/form/BasicSwitch.d.ts.map +1 -0
- package/dist/uiComponents/icons/AddImage.d.ts +4 -0
- package/dist/uiComponents/icons/AddImage.d.ts.map +1 -0
- package/dist/uiComponents/icons/ArrowClockwise.d.ts +4 -0
- package/dist/uiComponents/icons/ArrowClockwise.d.ts.map +1 -0
- package/dist/uiComponents/icons/ArrowsOutCardinal.d.ts +4 -0
- package/dist/uiComponents/icons/ArrowsOutCardinal.d.ts.map +1 -0
- package/dist/uiComponents/icons/Bell.d.ts +4 -0
- package/dist/uiComponents/icons/Bell.d.ts.map +1 -0
- package/dist/uiComponents/icons/Camera.d.ts +4 -0
- package/dist/uiComponents/icons/Camera.d.ts.map +1 -0
- package/dist/uiComponents/icons/ChevronDown.d.ts +4 -0
- package/dist/uiComponents/icons/ChevronDown.d.ts.map +1 -0
- package/dist/uiComponents/icons/ChevronLeft.d.ts +4 -0
- package/dist/uiComponents/icons/ChevronLeft.d.ts.map +1 -0
- package/dist/uiComponents/icons/ChevronRight.d.ts +4 -0
- package/dist/uiComponents/icons/ChevronRight.d.ts.map +1 -0
- package/dist/uiComponents/icons/Cube.d.ts +4 -0
- package/dist/uiComponents/icons/Cube.d.ts.map +1 -0
- package/dist/uiComponents/icons/CubeFull.d.ts +4 -0
- package/dist/uiComponents/icons/CubeFull.d.ts.map +1 -0
- package/dist/uiComponents/icons/CubeHalf.d.ts +4 -0
- package/dist/uiComponents/icons/CubeHalf.d.ts.map +1 -0
- package/dist/uiComponents/icons/CubeRendered.d.ts +4 -0
- package/dist/uiComponents/icons/CubeRendered.d.ts.map +1 -0
- package/dist/uiComponents/icons/Details.d.ts +4 -0
- package/dist/uiComponents/icons/Details.d.ts.map +1 -0
- package/dist/uiComponents/icons/DoubleChevronLeft.d.ts +4 -0
- package/dist/uiComponents/icons/DoubleChevronLeft.d.ts.map +1 -0
- package/dist/uiComponents/icons/DoubleChevronRight.d.ts +4 -0
- package/dist/uiComponents/icons/DoubleChevronRight.d.ts.map +1 -0
- package/dist/uiComponents/icons/Ellipsis.d.ts +4 -0
- package/dist/uiComponents/icons/Ellipsis.d.ts.map +1 -0
- package/dist/uiComponents/icons/EllipsisFill.d.ts +4 -0
- package/dist/uiComponents/icons/EllipsisFill.d.ts.map +1 -0
- package/dist/uiComponents/icons/GlobeSimple.d.ts +4 -0
- package/dist/uiComponents/icons/GlobeSimple.d.ts.map +1 -0
- package/dist/uiComponents/icons/Outline.d.ts +4 -0
- package/dist/uiComponents/icons/Outline.d.ts.map +1 -0
- package/dist/uiComponents/icons/Package.d.ts +4 -0
- package/dist/uiComponents/icons/Package.d.ts.map +1 -0
- package/dist/uiComponents/icons/Resize.d.ts +4 -0
- package/dist/uiComponents/icons/Resize.d.ts.map +1 -0
- package/dist/uiComponents/icons/Trash.d.ts +4 -0
- package/dist/uiComponents/icons/Trash.d.ts.map +1 -0
- package/dist/uiComponents/icons/index.d.ts +21 -0
- package/dist/uiComponents/icons/index.d.ts.map +1 -0
- package/dist/uiComponents/isSafari.d.ts +2 -0
- package/dist/uiComponents/isSafari.d.ts.map +1 -0
- package/dist/uiComponents/onPointerOutside.d.ts +6 -0
- package/dist/uiComponents/onPointerOutside.d.ts.map +1 -0
- package/dist/uiComponents/selects/BasicSelect.d.ts +15 -0
- package/dist/uiComponents/selects/BasicSelect.d.ts.map +1 -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/ContextMenu.d.ts +27 -0
- package/dist/uiComponents/simpleContextMenu/ContextMenu/ContextMenu.d.ts.map +1 -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/useContextMenu.d.ts +11 -0
- package/dist/uiComponents/simpleContextMenu/useContextMenu.d.ts.map +1 -0
- package/dist/uiComponents/simpleContextMenu/useRequestContextMenu.d.ts +13 -0
- package/dist/uiComponents/simpleContextMenu/useRequestContextMenu.d.ts.map +1 -0
- package/dist/uiComponents/toolbar/ToolbarDropdownSelect.d.ts +16 -0
- package/dist/uiComponents/toolbar/ToolbarDropdownSelect.d.ts.map +1 -0
- package/dist/uiComponents/toolbar/ToolbarIconButton.d.ts +4 -0
- package/dist/uiComponents/toolbar/ToolbarIconButton.d.ts.map +1 -0
- package/dist/uiComponents/toolbar/ToolbarSwitchSelect.d.ts +15 -0
- package/dist/uiComponents/toolbar/ToolbarSwitchSelect.d.ts.map +1 -0
- package/dist/uiComponents/toolbar/ToolbarSwitchSelectContainer.d.ts +3 -0
- package/dist/uiComponents/toolbar/ToolbarSwitchSelectContainer.d.ts.map +1 -0
- package/dist/uiComponents/useBoundingClientRect.d.ts +2 -0
- package/dist/uiComponents/useBoundingClientRect.d.ts.map +1 -0
- package/dist/uiComponents/useDebugRefreshEvery.d.ts +9 -0
- package/dist/uiComponents/useDebugRefreshEvery.d.ts.map +1 -0
- package/dist/uiComponents/useDrag.d.ts +76 -0
- package/dist/uiComponents/useDrag.d.ts.map +1 -0
- package/dist/uiComponents/useHotspot.d.ts +2 -0
- package/dist/uiComponents/useHotspot.d.ts.map +1 -0
- package/dist/uiComponents/useHover.d.ts +2 -0
- package/dist/uiComponents/useHover.d.ts.map +1 -0
- package/dist/uiComponents/useHoverWithoutDescendants.d.ts +5 -0
- package/dist/uiComponents/useHoverWithoutDescendants.d.ts.map +1 -0
- package/dist/uiComponents/useKeyDown.d.ts +3 -0
- package/dist/uiComponents/useKeyDown.d.ts.map +1 -0
- package/dist/uiComponents/useKeyDownCallback.d.ts +7 -0
- package/dist/uiComponents/useKeyDownCallback.d.ts.map +1 -0
- package/dist/uiComponents/useLockSet.d.ts +5 -0
- package/dist/uiComponents/useLockSet.d.ts.map +1 -0
- package/dist/uiComponents/useLogger.d.ts +7 -0
- package/dist/uiComponents/useLogger.d.ts.map +1 -0
- package/dist/uiComponents/useOnClickOutside.d.ts +2 -0
- package/dist/uiComponents/useOnClickOutside.d.ts.map +1 -0
- package/dist/uiComponents/useOnKeyDown.d.ts +2 -0
- package/dist/uiComponents/useOnKeyDown.d.ts.map +1 -0
- package/dist/uiComponents/usePresence.d.ts +30 -0
- package/dist/uiComponents/usePresence.d.ts.map +1 -0
- package/dist/uiComponents/useValToAtom.d.ts +3 -0
- package/dist/uiComponents/useValToAtom.d.ts.map +1 -0
- package/dist/utils/absoluteDims.d.ts +3 -0
- package/dist/utils/absoluteDims.d.ts.map +1 -0
- package/dist/utils/contextualWebComponents.d.ts +5 -0
- package/dist/utils/contextualWebComponents.d.ts.map +1 -0
- package/dist/utils/copyToClipboard.d.ts +2 -0
- package/dist/utils/copyToClipboard.d.ts.map +1 -0
- package/dist/utils/derive-utils.d.ts +21 -0
- package/dist/utils/derive-utils.d.ts.map +1 -0
- package/dist/utils/devStringify.d.ts +7 -0
- package/dist/utils/devStringify.d.ts.map +1 -0
- package/dist/utils/invariant.d.ts +35 -0
- package/dist/utils/invariant.d.ts.map +1 -0
- package/dist/utils/isMac.d.ts +2 -0
- package/dist/utils/isMac.d.ts.map +1 -0
- package/dist/utils/keyboardUtils.d.ts +9 -0
- package/dist/utils/keyboardUtils.d.ts.map +1 -0
- package/dist/utils/mousePositionD.d.ts +6 -0
- package/dist/utils/mousePositionD.d.ts.map +1 -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.test.d.ts +2 -0
- package/dist/utils/redux/actionCreator.test.d.ts.map +1 -0
- package/dist/utils/redux/actionReducersBundle.d.ts +18 -0
- package/dist/utils/redux/actionReducersBundle.d.ts.map +1 -0
- package/dist/utils/redux/atomFromReduxStore.d.ts +4 -0
- package/dist/utils/redux/atomFromReduxStore.d.ts.map +1 -0
- package/dist/utils/redux/configureStore.d.ts +9 -0
- package/dist/utils/redux/configureStore.d.ts.map +1 -0
- package/dist/utils/redux/pointerFriendlySelector.d.ts +10 -0
- package/dist/utils/redux/pointerFriendlySelector.d.ts.map +1 -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/withHistory.d.ts +127 -0
- package/dist/utils/redux/withHistory/withHistory.d.ts.map +1 -0
- package/dist/utils/renderInPortalInContext.d.ts +7 -0
- package/dist/utils/renderInPortalInContext.d.ts.map +1 -0
- package/dist/utils/selectClosestHTMLAncestor.d.ts +5 -0
- package/dist/utils/selectClosestHTMLAncestor.d.ts.map +1 -0
- package/dist/utils/tightJsonStringify.d.ts +23 -0
- package/dist/utils/tightJsonStringify.d.ts.map +1 -0
- package/dist/utils/tightJsonStringify.test.d.ts +2 -0
- package/dist/utils/tightJsonStringify.test.d.ts.map +1 -0
- package/dist/utils/useRefAndState.d.ts +18 -0
- package/dist/utils/useRefAndState.d.ts.map +1 -0
- package/package.json +1 -1
- package/dist/index.mjs +0 -105
- package/dist/index.mjs.map +0 -7
|
@@ -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"}
|
package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthEditorPopover.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { SequenceEditorPanelLayout } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/layout';
|
|
4
|
+
declare const LengthEditorPopover: React.FC<{
|
|
5
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
6
|
+
/**
|
|
7
|
+
* Called when user hits enter/escape
|
|
8
|
+
*/
|
|
9
|
+
onRequestClose: (reason: string) => void;
|
|
10
|
+
}>;
|
|
11
|
+
export default LengthEditorPopover;
|
|
12
|
+
//# sourceMappingURL=LengthEditorPopover.d.ts.map
|
package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthEditorPopover.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LengthEditorPopover.d.ts","sourceRoot":"","sources":["../../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthEditorPopover.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAC/D,OAAO,KAAyC,MAAM,OAAO,CAAA;AAE7D,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AAyBvH,QAAA,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC;IAClC,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;IAC3C;;OAEG;IACH,cAAc,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAA;CACzC,CA8DA,CAAA;AAED,eAAe,mBAAmB,CAAA"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { SequenceEditorPanelLayout } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/layout';
|
|
4
|
+
type IProps = {
|
|
5
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* This appears at the end of the sequence where you can adjust the length of the sequence.
|
|
9
|
+
* Kinda looks like `< >` at the top bar at end of the sequence editor.
|
|
10
|
+
*/
|
|
11
|
+
declare const LengthIndicator: React.FC<IProps>;
|
|
12
|
+
export default LengthIndicator;
|
|
13
|
+
//# sourceMappingURL=LengthIndicator.d.ts.map
|
package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthIndicator.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LengthIndicator.d.ts","sourceRoot":"","sources":["../../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthIndicator.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAE/D,OAAO,KAAwB,MAAM,OAAO,CAAA;AAE5C,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AA0HvH,KAAK,MAAM,GAAG;IACZ,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;CAC5C,CAAA;AAID;;;GAGG;AACH,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,MAAM,CA6ErC,CAAA;AA8DD,eAAe,eAAe,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { SequenceEditorPanelLayout } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/layout';
|
|
2
|
+
import type { SequenceEditorTree_PrimitiveProp } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/tree';
|
|
3
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
4
|
+
import React from 'react';
|
|
5
|
+
declare const PrimitivePropRow: React.VFC<{
|
|
6
|
+
leaf: SequenceEditorTree_PrimitiveProp;
|
|
7
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
8
|
+
}>;
|
|
9
|
+
export default PrimitivePropRow;
|
|
10
|
+
//# sourceMappingURL=PrimitivePropRow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PrimitivePropRow.d.ts","sourceRoot":"","sources":["../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/PrimitivePropRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AACvH,OAAO,KAAK,EAAC,gCAAgC,EAAC,MAAM,wEAAwE,CAAA;AAG5H,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAE/D,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,QAAA,MAAM,gBAAgB,EAAE,KAAK,CAAC,GAAG,CAAC;IAChC,IAAI,EAAE,gCAAgC,CAAA;IACtC,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;CAC5C,CAgCA,CAAA;AAED,eAAe,gBAAgB,CAAA"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { SequenceEditorPanelLayout } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/layout';
|
|
2
|
+
import type { SequenceEditorTree_PrimitiveProp, SequenceEditorTree_PropWithChildren } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/tree';
|
|
3
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
4
|
+
import React from 'react';
|
|
5
|
+
export declare const decideRowByPropType: (leaf: SequenceEditorTree_PropWithChildren | SequenceEditorTree_PrimitiveProp, layoutP: Pointer<SequenceEditorPanelLayout>) => React.ReactElement;
|
|
6
|
+
declare const RightPropWithChildrenRow: React.VFC<{
|
|
7
|
+
viewModel: SequenceEditorTree_PropWithChildren;
|
|
8
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
9
|
+
}>;
|
|
10
|
+
export default RightPropWithChildrenRow;
|
|
11
|
+
//# sourceMappingURL=PropWithChildrenRow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PropWithChildrenRow.d.ts","sourceRoot":"","sources":["../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/PropWithChildrenRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AACvH,OAAO,KAAK,EACV,gCAAgC,EAChC,mCAAmC,EACpC,MAAM,wEAAwE,CAAA;AAE/E,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAC/D,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,eAAO,MAAM,mBAAmB,SACxB,mCAAmC,GAAG,gCAAgC,WACnE,QAAQ,yBAAyB,CAAC,KAC1C,MAAM,YAaN,CAAA;AAEH,QAAA,MAAM,wBAAwB,EAAE,KAAK,CAAC,GAAG,CAAC;IACxC,SAAS,EAAE,mCAAmC,CAAA;IAC9C,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;CAC5C,CA8BA,CAAA;AAED,eAAe,wBAAwB,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
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
|
+
export declare const contentWidth = 1000000;
|
|
5
|
+
declare const Right: React.FC<{
|
|
6
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
7
|
+
}>;
|
|
8
|
+
export default Right;
|
|
9
|
+
//# sourceMappingURL=Right.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Right.d.ts","sourceRoot":"","sources":["../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/Right.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AAEvH,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAE/D,OAAO,KAAK,MAAM,OAAO,CAAA;AAMzB,eAAO,MAAM,YAAY,UAAU,CAAA;AAWnC,QAAA,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;CAC5C,CAuBA,CAAA;AAED,eAAe,KAAK,CAAA"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { SequenceEditorTree_Row } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/tree';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* Right now, we're rendering a hierarchical dom tree that reflects the hierarchy of
|
|
6
|
+
* objects, compound props, and their subs. This is not necessary and makes styling complicated.
|
|
7
|
+
* Instead of this, we can simply render a list. This should be easy to do, since the view model
|
|
8
|
+
* in {@link calculateSequenceEditorTree} already includes all the vertical placement information
|
|
9
|
+
* (height and top) we need to render the nodes as a list.
|
|
10
|
+
*
|
|
11
|
+
* Note that we don't need to change {@link calculateSequenceEditorTree} to be list-based. It can
|
|
12
|
+
* retain its hierarchy. It's just the DOM tree that should be list-based.
|
|
13
|
+
*/
|
|
14
|
+
declare const RightRow: React.FC<{
|
|
15
|
+
leaf: SequenceEditorTree_Row<string>;
|
|
16
|
+
node: React.ReactElement;
|
|
17
|
+
isCollapsed: boolean;
|
|
18
|
+
children?: React.ReactNode | undefined;
|
|
19
|
+
}>;
|
|
20
|
+
export default RightRow;
|
|
21
|
+
//# sourceMappingURL=Row.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Row.d.ts","sourceRoot":"","sources":["../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/Row.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,sBAAsB,EAAC,MAAM,wEAAwE,CAAA;AAClH,OAAO,KAAK,MAAM,OAAO,CAAA;AAoCzB;;;;;;;;;;GAUG;AAEH,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC;IACvB,IAAI,EAAE,sBAAsB,CAAC,MAAM,CAAC,CAAA;IACpC,IAAI,EAAE,KAAK,CAAC,YAAY,CAAA;IACxB,WAAW,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAA;CACvC,CAcA,CAAA;AAED,eAAe,QAAQ,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { SequenceEditorPanelLayout } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/layout';
|
|
2
|
+
import type { SequenceEditorTree_SheetObject } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/tree';
|
|
3
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
4
|
+
import React from 'react';
|
|
5
|
+
declare const RightSheetObjectRow: React.VFC<{
|
|
6
|
+
leaf: SequenceEditorTree_SheetObject;
|
|
7
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
8
|
+
}>;
|
|
9
|
+
export default RightSheetObjectRow;
|
|
10
|
+
//# sourceMappingURL=SheetObjectRow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SheetObjectRow.d.ts","sourceRoot":"","sources":["../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/SheetObjectRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AACvH,OAAO,KAAK,EAAC,8BAA8B,EAAC,MAAM,wEAAwE,CAAA;AAE1H,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAC/D,OAAO,KAAK,MAAM,OAAO,CAAA;AAMzB,QAAA,MAAM,mBAAmB,EAAE,KAAK,CAAC,GAAG,CAAC;IACnC,IAAI,EAAE,8BAA8B,CAAA;IACpC,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;CAC5C,CAkBA,CAAA;AAED,eAAe,mBAAmB,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { SequenceEditorPanelLayout } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/layout';
|
|
2
|
+
import type { SequenceEditorTree_Sheet } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/tree';
|
|
3
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
4
|
+
import React from 'react';
|
|
5
|
+
declare const SheetRow: React.FC<{
|
|
6
|
+
leaf: SequenceEditorTree_Sheet;
|
|
7
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
8
|
+
}>;
|
|
9
|
+
export default SheetRow;
|
|
10
|
+
//# sourceMappingURL=SheetRow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SheetRow.d.ts","sourceRoot":"","sources":["../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/SheetRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AACvH,OAAO,KAAK,EAAC,wBAAwB,EAAC,MAAM,wEAAwE,CAAA;AAEpH,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAC/D,OAAO,KAAK,MAAM,OAAO,CAAA;AAMzB,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC;IACvB,IAAI,EAAE,wBAAwB,CAAA;IAC9B,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;CAC5C,CAwBA,CAAA;AAED,eAAe,QAAQ,CAAA"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import type { SequenceEditorTree_PropWithChildren, SequenceEditorTree_Sheet, SequenceEditorTree_SheetObject } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/tree';
|
|
2
|
+
import type { SequenceTrackId, StudioSheetItemKey } from '@tomorrowevening/theatre-shared/utils/ids';
|
|
3
|
+
import type { Keyframe, TrackData } from '@tomorrowevening/theatre-core/projects/store/types/SheetState_Historic';
|
|
4
|
+
import type SheetObject from '@tomorrowevening/theatre-core/sheetObjects/SheetObject';
|
|
5
|
+
/**
|
|
6
|
+
* An index over a series of keyframes that have been collected from different tracks.
|
|
7
|
+
*
|
|
8
|
+
* Usually constructed via {@link collectAggregateKeyframesInPrism}.
|
|
9
|
+
*/
|
|
10
|
+
export type AggregatedKeyframes = {
|
|
11
|
+
byPosition: Map<number, KeyframeWithTrack[]>;
|
|
12
|
+
tracks: TrackWithId[];
|
|
13
|
+
};
|
|
14
|
+
export type TrackWithId = {
|
|
15
|
+
id: SequenceTrackId;
|
|
16
|
+
data: TrackData;
|
|
17
|
+
sheetObject: SheetObject;
|
|
18
|
+
};
|
|
19
|
+
export type KeyframeWithTrack = {
|
|
20
|
+
kf: Keyframe;
|
|
21
|
+
track: TrackWithId;
|
|
22
|
+
itemKey: StudioSheetItemKey;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Collect {@link AggregatedKeyframes} information from the given tree row with children.
|
|
26
|
+
*
|
|
27
|
+
* Must be called within a `prism` context.
|
|
28
|
+
*
|
|
29
|
+
* Implementation progress 2/10:
|
|
30
|
+
* - This currently does a lot of duplicate work for each compound rows' compound rows.
|
|
31
|
+
* - This appears to have O(N) complexity with N being the number of "things" in the
|
|
32
|
+
* tree, thus we don't see an immediate need to cache it further.
|
|
33
|
+
* - If concerned, consider making a playground with a lot of objects to test this kind of thing.
|
|
34
|
+
*
|
|
35
|
+
* Note that we do not need to filter to only tracks that should be displayed, because we
|
|
36
|
+
* do not do anything counting or iterating over all tracks.
|
|
37
|
+
*
|
|
38
|
+
* Furthermore, we _could_ have been traversing the tree of the sheet and producing
|
|
39
|
+
* an aggreagte from that, but _that_ aggregate would not take into account
|
|
40
|
+
* things like filters in the `SequenceEditorPanel`, where the filter would exclude
|
|
41
|
+
* certain objects and props from the tree.
|
|
42
|
+
*
|
|
43
|
+
*/
|
|
44
|
+
export declare function collectAggregateKeyframesInPrism(leaf: SequenceEditorTree_Sheet | SequenceEditorTree_PropWithChildren | SequenceEditorTree_SheetObject): AggregatedKeyframes;
|
|
45
|
+
/**
|
|
46
|
+
* Collects all the snap positions for an aggregate track.
|
|
47
|
+
*/
|
|
48
|
+
export declare function collectAggregateSnapPositionsSheet(leaf: SequenceEditorTree_Sheet, snapTargetPositions: {
|
|
49
|
+
[key: string]: {
|
|
50
|
+
[key: string]: number[];
|
|
51
|
+
};
|
|
52
|
+
}): number[];
|
|
53
|
+
export declare function collectAggregateSnapPositionsObjectOrCompound(leaf: SequenceEditorTree_PropWithChildren | SequenceEditorTree_SheetObject, snapTargetPositions: {
|
|
54
|
+
[key: string]: {
|
|
55
|
+
[key: string]: number[];
|
|
56
|
+
};
|
|
57
|
+
}): number[];
|
|
58
|
+
//# sourceMappingURL=collectAggregateKeyframes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"collectAggregateKeyframes.d.ts","sourceRoot":"","sources":["../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/collectAggregateKeyframes.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAEV,mCAAmC,EACnC,wBAAwB,EACxB,8BAA8B,EAC/B,MAAM,wEAAwE,CAAA;AAC/E,OAAO,KAAK,EACV,eAAe,EACf,kBAAkB,EACnB,MAAM,2CAA2C,CAAA;AAElD,OAAO,KAAK,EACV,QAAQ,EACR,SAAS,EACV,MAAM,wEAAwE,CAAA;AAG/E,OAAO,KAAK,WAAW,MAAM,wDAAwD,CAAA;AAErF;;;;GAIG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAChC,UAAU,EAAE,GAAG,CAAC,MAAM,EAAE,iBAAiB,EAAE,CAAC,CAAA;IAC5C,MAAM,EAAE,WAAW,EAAE,CAAA;CACtB,CAAA;AAED,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,EAAE,eAAe,CAAA;IACnB,IAAI,EAAE,SAAS,CAAA;IACf,WAAW,EAAE,WAAW,CAAA;CACzB,CAAA;AAED,MAAM,MAAM,iBAAiB,GAAG;IAC9B,EAAE,EAAE,QAAQ,CAAA;IACZ,KAAK,EAAE,WAAW,CAAA;IAClB,OAAO,EAAE,kBAAkB,CAAA;CAC5B,CAAA;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,gCAAgC,CAC9C,IAAI,EACA,wBAAwB,GACxB,mCAAmC,GACnC,8BAA8B,GACjC,mBAAmB,CAUrB;AAiED;;GAEG;AACH,wBAAgB,kCAAkC,CAChD,IAAI,EAAE,wBAAwB,EAC9B,mBAAmB,EAAE;IAAC,CAAC,GAAG,EAAE,MAAM,GAAG;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;KAAC,CAAA;CAAC,GAC9D,MAAM,EAAE,CASV;AAED,wBAAgB,6CAA6C,CAC3D,IAAI,EAAE,mCAAmC,GAAG,8BAA8B,EAC1E,mBAAmB,EAAE;IAAC,CAAC,GAAG,EAAE,MAAM,GAAG;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;KAAC,CAAA;CAAC,GAC9D,MAAM,EAAE,CAcV"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export type IConnectorThemeValues = {
|
|
3
|
+
isPopoverOpen: boolean;
|
|
4
|
+
isSelected: boolean;
|
|
5
|
+
};
|
|
6
|
+
export declare const CONNECTOR_THEME: {
|
|
7
|
+
normalColor: string;
|
|
8
|
+
selectedColor: string;
|
|
9
|
+
barColor: (values: IConnectorThemeValues) => string;
|
|
10
|
+
hoverColor: (values: IConnectorThemeValues) => string;
|
|
11
|
+
};
|
|
12
|
+
export declare const ConnectorLine: React.ForwardRefExoticComponent<{
|
|
13
|
+
isPopoverOpen: boolean;
|
|
14
|
+
openPopover?: ((event: React.MouseEvent) => void) | undefined;
|
|
15
|
+
isSelected: boolean;
|
|
16
|
+
connectorLengthInUnitSpace: number;
|
|
17
|
+
} & {
|
|
18
|
+
children?: React.ReactNode;
|
|
19
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
//# sourceMappingURL=ConnectorLine.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ConnectorLine.d.ts","sourceRoot":"","sources":["../../../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/Right/keyframeRowUI/ConnectorLine.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,MAAM,MAAM,qBAAqB,GAAG;IAClC,aAAa,EAAE,OAAO,CAAA;IACtB,UAAU,EAAE,OAAO,CAAA;CACpB,CAAA;AAED,eAAO,MAAM,eAAe;;;uBAGP,qBAAqB;yBAMnB,qBAAqB;CAQ3C,CAAA;AAoCD,eAAO,MAAM,aAAa;mBANT,OAAO;2BACA,gBAAgB,KAAK,IAAI;gBACnC,OAAO;gCACS,MAAM;;;wCA6BlC,CAAA"}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import type { Prism } from '@tomorrowevening/theatre-dataverse';
|
|
2
|
+
import type { KeyframeId, ObjectAddressKey, ProjectId, SequenceTrackId, SheetId } from '@tomorrowevening/theatre-shared/utils/ids';
|
|
3
|
+
import type { DopeSheetSelection } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/layout';
|
|
4
|
+
import type { Keyframe } from '@tomorrowevening/theatre-core/projects/store/types/SheetState_Historic';
|
|
5
|
+
import type { KeyframeWithPathToPropFromCommonRoot } from '@tomorrowevening/theatre-studio/store/types';
|
|
6
|
+
/**
|
|
7
|
+
* Keyframe connections are considered to be selected if the first
|
|
8
|
+
* keyframe in the connection is selected
|
|
9
|
+
*/
|
|
10
|
+
export declare function isKeyframeConnectionInSelection(keyframeConnection: {
|
|
11
|
+
left: Keyframe;
|
|
12
|
+
right: Keyframe;
|
|
13
|
+
}, selection: DopeSheetSelection): boolean;
|
|
14
|
+
export type KeyframeConnectionWithAddress = {
|
|
15
|
+
projectId: ProjectId;
|
|
16
|
+
sheetId: SheetId;
|
|
17
|
+
objectKey: ObjectAddressKey;
|
|
18
|
+
trackId: SequenceTrackId;
|
|
19
|
+
left: Keyframe;
|
|
20
|
+
right: Keyframe;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Returns an array of all the selected keyframes
|
|
24
|
+
* that are connected to one another. Useful for changing
|
|
25
|
+
* the tweening in between keyframes.
|
|
26
|
+
*
|
|
27
|
+
* TODO - rename to selectedKeyframeConnectionsD(), or better yet,
|
|
28
|
+
* make it a `prism.ensurePrism()` function, rather than returning
|
|
29
|
+
* a prism.
|
|
30
|
+
*/
|
|
31
|
+
export declare function selectedKeyframeConnections(projectId: ProjectId, sheetId: SheetId, selection: DopeSheetSelection | undefined): Prism<Array<KeyframeConnectionWithAddress>>;
|
|
32
|
+
/**
|
|
33
|
+
* Given a selection, returns a list of keyframes and paths
|
|
34
|
+
* that are relative to a common root path. For example, if
|
|
35
|
+
* the selection contains a keyframe on both the following tracks:
|
|
36
|
+
* - exObject.transform.position.x
|
|
37
|
+
* - exObject.transform.position.y
|
|
38
|
+
* then the result will be
|
|
39
|
+
* ```
|
|
40
|
+
* [{ keyframe, pathToProp: ['x']}, { keyframe, pathToProp: ['y']}]
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* If the selection contains a keyframe on
|
|
44
|
+
* all the following tracks:
|
|
45
|
+
* - exObject.transform.position.x
|
|
46
|
+
* - exObject.transform.position.y
|
|
47
|
+
* - exObject.transform.scale.x
|
|
48
|
+
* then the result will be
|
|
49
|
+
* ```
|
|
50
|
+
* [
|
|
51
|
+
* {keyframe, pathToProp: ['position', 'x']},
|
|
52
|
+
* {keyframe, pathToProp: ['position', 'y']},
|
|
53
|
+
* {keyframe, pathToProp: ['scale', 'x']},
|
|
54
|
+
* ]
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
export declare function copyableKeyframesFromSelection(projectId: ProjectId, sheetId: SheetId, selection: DopeSheetSelection | undefined): KeyframeWithPathToPropFromCommonRoot[];
|
|
58
|
+
/**
|
|
59
|
+
* @see copyableKeyframesFromSelection
|
|
60
|
+
*/
|
|
61
|
+
export declare function keyframesWithPaths({ projectId, sheetId, objectKey, trackId, keyframeIds, }: {
|
|
62
|
+
projectId: ProjectId;
|
|
63
|
+
sheetId: SheetId;
|
|
64
|
+
objectKey: ObjectAddressKey;
|
|
65
|
+
trackId: SequenceTrackId;
|
|
66
|
+
keyframeIds: KeyframeId[];
|
|
67
|
+
}): KeyframeWithPathToPropFromCommonRoot[] | null;
|
|
68
|
+
export declare function keyframeConnections(keyframes: Array<Keyframe>): Array<{
|
|
69
|
+
left: Keyframe;
|
|
70
|
+
right: Keyframe;
|
|
71
|
+
}>;
|
|
72
|
+
export declare function flatSelectionKeyframeIds(selection: DopeSheetSelection): Array<{
|
|
73
|
+
objectKey: ObjectAddressKey;
|
|
74
|
+
trackId: SequenceTrackId;
|
|
75
|
+
keyframeId: KeyframeId;
|
|
76
|
+
}>;
|
|
77
|
+
export declare function flatSelectionTrackIds(selection: DopeSheetSelection): Array<{
|
|
78
|
+
objectKey: ObjectAddressKey;
|
|
79
|
+
trackId: SequenceTrackId;
|
|
80
|
+
keyframeIds: Array<KeyframeId>;
|
|
81
|
+
}>;
|
|
82
|
+
//# sourceMappingURL=selections.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selections.d.ts","sourceRoot":"","sources":["../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/selections.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,KAAK,EAAC,MAAM,oCAAoC,CAAA;AAE7D,OAAO,KAAK,EACV,UAAU,EACV,gBAAgB,EAChB,SAAS,EACT,eAAe,EACf,OAAO,EACR,MAAM,2CAA2C,CAAA;AAElD,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,0EAA0E,CAAA;AAChH,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,wEAAwE,CAAA;AAMpG,OAAO,KAAK,EAAC,oCAAoC,EAAC,MAAM,6CAA6C,CAAA;AAErG;;;GAGG;AACH,wBAAgB,+BAA+B,CAC7C,kBAAkB,EAAE;IAAC,IAAI,EAAE,QAAQ,CAAC;IAAC,KAAK,EAAE,QAAQ,CAAA;CAAC,EACrD,SAAS,EAAE,kBAAkB,GAC5B,OAAO,CAKT;AAED,MAAM,MAAM,6BAA6B,GAAG;IAC1C,SAAS,EAAE,SAAS,CAAA;IACpB,OAAO,EAAE,OAAO,CAAA;IAChB,SAAS,EAAE,gBAAgB,CAAA;IAC3B,OAAO,EAAE,eAAe,CAAA;IACxB,IAAI,EAAE,QAAQ,CAAA;IACd,KAAK,EAAE,QAAQ,CAAA;CAChB,CAAA;AAED;;;;;;;;GAQG;AACH,wBAAgB,2BAA2B,CACzC,SAAS,EAAE,SAAS,EACpB,OAAO,EAAE,OAAO,EAChB,SAAS,EAAE,kBAAkB,GAAG,SAAS,GACxC,KAAK,CAAC,KAAK,CAAC,6BAA6B,CAAC,CAAC,CA6B7C;AAED;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,wBAAgB,8BAA8B,CAC5C,SAAS,EAAE,SAAS,EACpB,OAAO,EAAE,OAAO,EAChB,SAAS,EAAE,kBAAkB,GAAG,SAAS,GACxC,oCAAoC,EAAE,CA2BxC;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,EACjC,SAAS,EACT,OAAO,EACP,SAAS,EACT,OAAO,EACP,WAAW,GACZ,EAAE;IACD,SAAS,EAAE,SAAS,CAAA;IACpB,OAAO,EAAE,OAAO,CAAA;IAChB,SAAS,EAAE,gBAAgB,CAAA;IAC3B,OAAO,EAAE,eAAe,CAAA;IACxB,WAAW,EAAE,UAAU,EAAE,CAAA;CAC1B,GAAG,oCAAoC,EAAE,GAAG,IAAI,CAyBhD;AAYD,wBAAgB,mBAAmB,CACjC,SAAS,EAAE,KAAK,CAAC,QAAQ,CAAC,GACzB,KAAK,CAAC;IAAC,IAAI,EAAE,QAAQ,CAAC;IAAC,KAAK,EAAE,QAAQ,CAAA;CAAC,CAAC,CAI1C;AAED,wBAAgB,wBAAwB,CAAC,SAAS,EAAE,kBAAkB,GAAG,KAAK,CAAC;IAC7E,SAAS,EAAE,gBAAgB,CAAA;IAC3B,OAAO,EAAE,eAAe,CAAA;IACxB,UAAU,EAAE,UAAU,CAAA;CACvB,CAAC,CAgBD;AAED,wBAAgB,qBAAqB,CAAC,SAAS,EAAE,kBAAkB,GAAG,KAAK,CAAC;IAC1E,SAAS,EAAE,gBAAgB,CAAA;IAC3B,OAAO,EAAE,eAAe,CAAA;IACxB,WAAW,EAAE,KAAK,CAAC,UAAU,CAAC,CAAA;CAC/B,CAAC,CAgBD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { StudioSheetItemKey } from '@tomorrowevening/theatre-shared/utils/ids';
|
|
2
|
+
import type { SheetAddress, WithoutSheetInstance } from '@tomorrowevening/theatre-shared/utils/addresses';
|
|
3
|
+
export declare function setCollapsedSheetItem(isCollapsed: boolean, toCollapse: {
|
|
4
|
+
sheetAddress: WithoutSheetInstance<SheetAddress>;
|
|
5
|
+
sheetItemKey: StudioSheetItemKey;
|
|
6
|
+
}): void;
|
|
7
|
+
//# sourceMappingURL=setCollapsedSheetObjectOrCompoundProp.d.ts.map
|
package/dist/panels/SequenceEditorPanel/DopeSheet/setCollapsedSheetObjectOrCompoundProp.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"setCollapsedSheetObjectOrCompoundProp.d.ts","sourceRoot":"","sources":["../../../../../../../studio/src/panels/SequenceEditorPanel/DopeSheet/setCollapsedSheetObjectOrCompoundProp.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,2CAA2C,CAAA;AAEjF,OAAO,KAAK,EACV,YAAY,EACZ,oBAAoB,EACrB,MAAM,iDAAiD,CAAA;AAExD,wBAAgB,qBAAqB,CACnC,WAAW,EAAE,OAAO,EACpB,UAAU,EAAE;IACV,YAAY,EAAE,oBAAoB,CAAC,YAAY,CAAC,CAAA;IAChD,YAAY,EAAE,kBAAkB,CAAA;CACjC,QAWF"}
|
|
@@ -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 FrameGrid: React.FC<{
|
|
5
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
6
|
+
width: number;
|
|
7
|
+
height: number;
|
|
8
|
+
}>;
|
|
9
|
+
export default FrameGrid;
|
|
10
|
+
//# sourceMappingURL=FrameGrid.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FrameGrid.d.ts","sourceRoot":"","sources":["../../../../../../../studio/src/panels/SequenceEditorPanel/FrameGrid/FrameGrid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AAEvH,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAE/D,OAAO,KAAmD,MAAM,OAAO,CAAA;AAuCvE,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC;IACxB,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;IAC3C,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;CACf,CAyDA,CAAA;AAED,eAAe,SAAS,CAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
export declare const stampsGridTheme: {
|
|
5
|
+
fullUnitStampColor: string;
|
|
6
|
+
stampFontSize: string;
|
|
7
|
+
readonly subUnitStampColor: string;
|
|
8
|
+
};
|
|
9
|
+
declare const StampsGrid: React.FC<{
|
|
10
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
11
|
+
width: number;
|
|
12
|
+
height: number;
|
|
13
|
+
}>;
|
|
14
|
+
export default StampsGrid;
|
|
15
|
+
//# sourceMappingURL=StampsGrid.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StampsGrid.d.ts","sourceRoot":"","sources":["../../../../../../../studio/src/panels/SequenceEditorPanel/FrameGrid/StampsGrid.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AACvH,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAG/D,OAAO,KAA0C,MAAM,OAAO,CAAA;AAa9D,eAAO,MAAM,eAAe;;;;CAM3B,CAAA;AAwCD,QAAA,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC;IACzB,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;IAC3C,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;CACf,CA8BA,CAAA;AAED,eAAe,UAAU,CAAA"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { IRange } from '@tomorrowevening/theatre-shared/utils/types';
|
|
2
|
+
/**
|
|
3
|
+
* Calls cb() for every grid line that must be drawn.
|
|
4
|
+
*
|
|
5
|
+
* @remarks
|
|
6
|
+
* For the sake of simplicity, I've named the variables as if the sequence's
|
|
7
|
+
* length is counted in seconds, and the sub-unit is called fps
|
|
8
|
+
* (frames per second). But the algorithm should work for any fps rate, and also
|
|
9
|
+
* non-time-based sequences.
|
|
10
|
+
*/
|
|
11
|
+
export default function createGrid({ clippedSpaceRange, clippedSpaceWidth, fps, gapWidth, }: {
|
|
12
|
+
/**
|
|
13
|
+
* the width of the canvas, in pixels
|
|
14
|
+
*/
|
|
15
|
+
clippedSpaceWidth: number;
|
|
16
|
+
clippedSpaceRange: IRange;
|
|
17
|
+
fps: number;
|
|
18
|
+
/**
|
|
19
|
+
* the minimum amount of space between two grid lines
|
|
20
|
+
*/
|
|
21
|
+
gapWidth?: number;
|
|
22
|
+
}, cb: (posInUnitSpace: number, isFullUnit: boolean) => void): void;
|
|
23
|
+
//# sourceMappingURL=createGrid.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createGrid.d.ts","sourceRoot":"","sources":["../../../../../../../studio/src/panels/SequenceEditorPanel/FrameGrid/createGrid.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,6CAA6C,CAAA;AAavE;;;;;;;;GAQG;AACH,MAAM,CAAC,OAAO,UAAU,UAAU,CAChC,EACE,iBAAiB,EACjB,iBAAiB,EACjB,GAAG,EACH,QAAc,GACf,EAAE;IACD;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAA;IACzB,iBAAiB,EAAE,MAAM,CAAA;IACzB,GAAG,EAAE,MAAM,CAAA;IACX;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB,EACD,EAAE,EAAE,CAAC,cAAc,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,KAAK,IAAI,GACxD,IAAI,CA4CN"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import type { Prism, Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { SequenceEditorPanelLayout } from './layout/layout';
|
|
4
|
+
export declare enum FrameStampPositionType {
|
|
5
|
+
hidden = 0,
|
|
6
|
+
locked = 1,
|
|
7
|
+
snapped = 2,
|
|
8
|
+
free = 3
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Provides snapping positions to "stamps".
|
|
12
|
+
*
|
|
13
|
+
* One example of a stamp includes the "Keyframe Dot" which show a `⌜⌞⌝⌟` kinda UI
|
|
14
|
+
* around the dot when dragged over.
|
|
15
|
+
*/
|
|
16
|
+
declare const FrameStampPositionProvider: React.FC<{
|
|
17
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
18
|
+
children: React.ReactNode;
|
|
19
|
+
}>;
|
|
20
|
+
export declare const useFrameStampPositionD: () => Prism<[pos: number, posType: FrameStampPositionType]>;
|
|
21
|
+
/** Version of {@link useLockFrameStampPosition} which allows you to directly set status of a lock. */
|
|
22
|
+
export declare const useLockFrameStampPositionRef: () => (shouldLock: boolean, posValue: number) => void;
|
|
23
|
+
export declare const useLockFrameStampPosition: (shouldLock: boolean, val: number) => void;
|
|
24
|
+
/**
|
|
25
|
+
* This attribute is used so that when the cursor hovers over a keyframe,
|
|
26
|
+
* the framestamp snaps to the position of that keyframe.
|
|
27
|
+
*
|
|
28
|
+
* Use as a spread in a React element.
|
|
29
|
+
*
|
|
30
|
+
* @example
|
|
31
|
+
* ```tsx
|
|
32
|
+
* <div {...includeLockFrameStampAttrs(10)}/>
|
|
33
|
+
* ```
|
|
34
|
+
*
|
|
35
|
+
* @remarks
|
|
36
|
+
* Elements that need this behavior must set a data attribute like so:
|
|
37
|
+
* <div data-theatre-lock-framestamp-to="120.55" />
|
|
38
|
+
* Setting this attribute to "hide" hides the stamp.
|
|
39
|
+
*
|
|
40
|
+
* @see lockedCursorCssVarName - CSS variable used to set the cursor on an element that
|
|
41
|
+
* should lock the framestamp. Look for usages.
|
|
42
|
+
* @see pointerEventsAutoInNormalMode - CSS snippet used to correctly set
|
|
43
|
+
* `pointer-events` on an element that should lock the framestamp.
|
|
44
|
+
*
|
|
45
|
+
* See {@link FrameStampPositionProvider}
|
|
46
|
+
*
|
|
47
|
+
*/
|
|
48
|
+
export declare const includeLockFrameStampAttrs: (value: number | 'hide') => {
|
|
49
|
+
"data-theatre-lock-framestamp-to": string;
|
|
50
|
+
};
|
|
51
|
+
export default FrameStampPositionProvider;
|
|
52
|
+
//# sourceMappingURL=FrameStampPositionProvider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FrameStampPositionProvider.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/panels/SequenceEditorPanel/FrameStampPositionProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,KAAK,EAAE,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAKtE,OAAO,KAON,MAAM,OAAO,CAAA;AACd,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,iBAAiB,CAAA;AAO9D,oBAAY,sBAAsB;IAChC,MAAM,IAAA;IACN,MAAM,IAAA;IACN,OAAO,IAAA;IACP,IAAI,IAAA;CACL;AAiBD;;;;;GAKG;AACH,QAAA,MAAM,0BAA0B,EAAE,KAAK,CAAC,EAAE,CAAC;IACzC,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;IAC3C,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAC1B,CAqEA,CAAA;AAED,eAAO,MAAM,sBAAsB,6DAAqC,CAAA;AAExE,sGAAsG;AACtG,eAAO,MAAM,4BAA4B,qBAYjB,OAAO,YAAY,MAAM,SAqBhD,CAAA;AAED,eAAO,MAAM,yBAAyB,eAAgB,OAAO,OAAO,MAAM,SAkBzE,CAAA;AAED;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,eAAO,MAAM,0BAA0B,UAAW,MAAM,GAAG,MAAM;;CAE/D,CAAA;AAkDF,eAAe,0BAA0B,CAAA"}
|
package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/BasicKeyframedTrack.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { TrackData } from '@tomorrowevening/theatre-core/projects/store/types/SheetState_Historic';
|
|
2
|
+
import type SheetObject from '@tomorrowevening/theatre-core/sheetObjects/SheetObject';
|
|
3
|
+
import type { PathToProp } from '@tomorrowevening/theatre-shared/utils/addresses';
|
|
4
|
+
import type { SequenceTrackId } from '@tomorrowevening/theatre-shared/utils/ids';
|
|
5
|
+
import type { VoidFn } from '@tomorrowevening/theatre-shared/utils/types';
|
|
6
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { SequenceEditorPanelLayout } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/layout/layout';
|
|
9
|
+
import { graphEditorColors } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/GraphEditor/GraphEditor';
|
|
10
|
+
export type ExtremumSpace = {
|
|
11
|
+
fromValueSpace: (v: number) => number;
|
|
12
|
+
toValueSpace: (v: number) => number;
|
|
13
|
+
deltaToValueSpace: (v: number) => number;
|
|
14
|
+
lock(): VoidFn;
|
|
15
|
+
};
|
|
16
|
+
declare const BasicKeyframedTrack: React.VFC<{
|
|
17
|
+
layoutP: Pointer<SequenceEditorPanelLayout>;
|
|
18
|
+
sheetObject: SheetObject;
|
|
19
|
+
pathToProp: PathToProp;
|
|
20
|
+
trackId: SequenceTrackId;
|
|
21
|
+
trackData: TrackData;
|
|
22
|
+
color: keyof typeof graphEditorColors;
|
|
23
|
+
}>;
|
|
24
|
+
export default BasicKeyframedTrack;
|
|
25
|
+
//# sourceMappingURL=BasicKeyframedTrack.d.ts.map
|
package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/BasicKeyframedTrack.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BasicKeyframedTrack.d.ts","sourceRoot":"","sources":["../../../../../../../../studio/src/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/BasicKeyframedTrack.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEV,SAAS,EACV,MAAM,wEAAwE,CAAA;AAC/E,OAAO,KAAK,WAAW,MAAM,wDAAwD,CAAA;AACrF,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,iDAAiD,CAAA;AAC/E,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,2CAA2C,CAAA;AAE9E,OAAO,KAAK,EAAkB,MAAM,EAAC,MAAM,6CAA6C,CAAA;AACxF,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAC/D,OAAO,KAAkC,MAAM,OAAO,CAAA;AACtD,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,0EAA0E,CAAA;AACvH,OAAO,EAAC,iBAAiB,EAAC,MAAM,oFAAoF,CAAA;AAUpH,MAAM,MAAM,aAAa,GAAG;IAC1B,cAAc,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,CAAA;IACrC,YAAY,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,CAAA;IACnC,iBAAiB,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,CAAA;IACxC,IAAI,IAAI,MAAM,CAAA;CACf,CAAA;AAED,QAAA,MAAM,mBAAmB,EAAE,KAAK,CAAC,GAAG,CAAC;IACnC,OAAO,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAA;IAC3C,WAAW,EAAE,WAAW,CAAA;IACxB,UAAU,EAAE,UAAU,CAAA;IACtB,OAAO,EAAE,eAAe,CAAA;IACxB,SAAS,EAAE,SAAS,CAAA;IACpB,KAAK,EAAE,MAAM,OAAO,iBAAiB,CAAA;CACtC,CA6FA,CAAA;AAED,eAAe,mBAAmB,CAAA"}
|
package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/Curve.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type KeyframeEditor from './KeyframeEditor';
|
|
3
|
+
type IProps = Parameters<typeof KeyframeEditor>[0];
|
|
4
|
+
declare const Curve: React.VFC<IProps>;
|
|
5
|
+
/**
|
|
6
|
+
* Assuming a box such that: `{x: 0, y: 0, width: 1px, height: 1px}`
|
|
7
|
+
* and given the desired coordinates of:
|
|
8
|
+
* `{x: xInUnitSpace, y: yInExtremumSpace, width: widthInUnitSpace, height: heightInExtremumSpace}`,
|
|
9
|
+
* `transformBox()` returns a CSS transform that transforms the box into its right dimensions
|
|
10
|
+
* in the GraphEditor space.
|
|
11
|
+
*/
|
|
12
|
+
export declare function transformBox(xInUnitSpace: number, yInExtremumSpace: number, widthInUnitSpace: number, heightInExtremumSpace: number): string;
|
|
13
|
+
export default Curve;
|
|
14
|
+
//# sourceMappingURL=Curve.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Curve.d.ts","sourceRoot":"","sources":["../../../../../../../../../studio/src/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/Curve.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAA;AASlD,KAAK,MAAM,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC,CAAC,CAAC,CAAA;AAKlD,QAAA,MAAM,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,MAAM,CAkD5B,CAAA;AAED;;;;;;GAMG;AACH,wBAAgB,YAAY,CAC1B,YAAY,EAAE,MAAM,EACpB,gBAAgB,EAAE,MAAM,EACxB,gBAAgB,EAAE,MAAM,EACxB,qBAAqB,EAAE,MAAM,GAC5B,MAAM,CAoBR;AAED,eAAe,KAAK,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type KeyframeEditor from './KeyframeEditor';
|
|
3
|
+
export declare const dotSize = 6;
|
|
4
|
+
type Which = 'left' | 'right';
|
|
5
|
+
type IProps = Parameters<typeof KeyframeEditor>[0] & {
|
|
6
|
+
which: Which;
|
|
7
|
+
};
|
|
8
|
+
declare const CurveHandle: React.VFC<IProps>;
|
|
9
|
+
export default CurveHandle;
|
|
10
|
+
//# sourceMappingURL=CurveHandle.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CurveHandle.d.ts","sourceRoot":"","sources":["../../../../../../../../../studio/src/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/CurveHandle.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAwB,MAAM,OAAO,CAAA;AAG5C,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAA;AAGlD,eAAO,MAAM,OAAO,IAAI,CAAA;AAgCxB,KAAK,KAAK,GAAG,MAAM,GAAG,OAAO,CAAA;AAE7B,KAAK,MAAM,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC,CAAC,CAAC,GAAG;IAAC,KAAK,EAAE,KAAK,CAAA;CAAC,CAAA;AAEnE,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,GAAG,CAAC,MAAM,CAmElC,CAAA;AAED,eAAe,WAAW,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type KeyframeEditor from './KeyframeEditor';
|
|
3
|
+
export declare const dotSize = 6;
|
|
4
|
+
type IProps = Parameters<typeof KeyframeEditor>[0] & {
|
|
5
|
+
which: 'left' | 'right';
|
|
6
|
+
};
|
|
7
|
+
declare const GraphEditorDotNonScalar: React.VFC<IProps>;
|
|
8
|
+
export default GraphEditorDotNonScalar;
|
|
9
|
+
//# sourceMappingURL=GraphEditorDotNonScalar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GraphEditorDotNonScalar.d.ts","sourceRoot":"","sources":["../../../../../../../../../studio/src/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotNonScalar.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAkC,MAAM,OAAO,CAAA;AAEtD,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAA;AAelD,eAAO,MAAM,OAAO,IAAI,CAAA;AAmCxB,KAAK,MAAM,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC,CAAC,CAAC,GAAG;IAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAA;CAAC,CAAA;AAE9E,QAAA,MAAM,uBAAuB,EAAE,KAAK,CAAC,GAAG,CAAC,MAAM,CA8D9C,CAAA;AAED,eAAe,uBAAuB,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type KeyframeEditor from './KeyframeEditor';
|
|
3
|
+
export declare const dotSize = 6;
|
|
4
|
+
type IProps = Parameters<typeof KeyframeEditor>[0];
|
|
5
|
+
declare const GraphEditorDotScalar: React.VFC<IProps>;
|
|
6
|
+
export default GraphEditorDotScalar;
|
|
7
|
+
//# sourceMappingURL=GraphEditorDotScalar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GraphEditorDotScalar.d.ts","sourceRoot":"","sources":["../../../../../../../../../studio/src/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotScalar.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAkC,MAAM,OAAO,CAAA;AAEtD,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAA;AAelD,eAAO,MAAM,OAAO,IAAI,CAAA;AAmCxB,KAAK,MAAM,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC,CAAC,CAAC,CAAA;AAElD,QAAA,MAAM,oBAAoB,EAAE,KAAK,CAAC,GAAG,CAAC,MAAM,CA4D3C,CAAA;AAED,eAAe,oBAAoB,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type KeyframeEditor from './KeyframeEditor';
|
|
3
|
+
export declare const dotSize = 6;
|
|
4
|
+
type IProps = Parameters<typeof KeyframeEditor>[0];
|
|
5
|
+
declare const GraphEditorNonScalarDash: React.VFC<IProps>;
|
|
6
|
+
export default GraphEditorNonScalarDash;
|
|
7
|
+
//# sourceMappingURL=GraphEditorNonScalarDash.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GraphEditorNonScalarDash.d.ts","sourceRoot":"","sources":["../../../../../../../../../studio/src/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorNonScalarDash.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAA;AAIlD,eAAO,MAAM,OAAO,IAAI,CAAA;AAWxB,KAAK,MAAM,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC,CAAC,CAAC,CAAA;AAElD,QAAA,MAAM,wBAAwB,EAAE,KAAK,CAAC,GAAG,CAAC,MAAM,CAuB/C,CAAA;AAED,eAAe,wBAAwB,CAAA"}
|