@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,71 @@
|
|
|
1
|
+
import type { PropTypeConfig_AllSimples, PropTypeConfig_Compound } from '@tomorrowevening/theatre-core/propTypes';
|
|
2
|
+
import type SheetObject from '@tomorrowevening/theatre-core/sheetObjects/SheetObject';
|
|
3
|
+
import type { IPropPathToTrackIdTree } from '@tomorrowevening/theatre-core/sheetObjects/SheetObjectTemplate';
|
|
4
|
+
import type Sheet from '@tomorrowevening/theatre-core/sheets/Sheet';
|
|
5
|
+
import type { PathToProp } from '@tomorrowevening/theatre-shared/utils/addresses';
|
|
6
|
+
import type { SequenceTrackId, StudioSheetItemKey } from '@tomorrowevening/theatre-shared/utils/ids';
|
|
7
|
+
import type { Studio } from '@tomorrowevening/theatre-studio/Studio';
|
|
8
|
+
import type { UnknownValidCompoundProps } from '@tomorrowevening/theatre-core/propTypes/internals';
|
|
9
|
+
/**
|
|
10
|
+
* Base "view model" for each row with common
|
|
11
|
+
* required information such as row heights & depth.
|
|
12
|
+
*/
|
|
13
|
+
export type SequenceEditorTree_Row<TypeName extends string> = {
|
|
14
|
+
/** type of this row, e.g. `"sheet"` or `"sheetObject"` */
|
|
15
|
+
type: TypeName;
|
|
16
|
+
/** Height of just the row in pixels */
|
|
17
|
+
nodeHeight: number;
|
|
18
|
+
/** Height of the row + height with children in pixels */
|
|
19
|
+
heightIncludingChildren: number;
|
|
20
|
+
/** Visual indentation */
|
|
21
|
+
depth: number;
|
|
22
|
+
/** A convenient studio sheet localized identifier for managing presence and ephemeral visual effects. */
|
|
23
|
+
sheetItemKey: StudioSheetItemKey;
|
|
24
|
+
/**
|
|
25
|
+
* This is a part of the tree, but it is not rendered at all,
|
|
26
|
+
* and it doesn't contribute to height.
|
|
27
|
+
*
|
|
28
|
+
* In the future, if we have a filtering mechanism like "show only position props",
|
|
29
|
+
* this would not be the place to make false, that node should just not be included
|
|
30
|
+
* in the tree at all, so it doesn't affect aggregate keyframes.
|
|
31
|
+
*/
|
|
32
|
+
shouldRender: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Distance in pixels from the top of this row to the row container's top
|
|
35
|
+
* This can be used to help figure out what's being box selected (marquee).
|
|
36
|
+
*/
|
|
37
|
+
top: number;
|
|
38
|
+
/** Row number (e.g. for correctly styling even / odd alternating styles) */
|
|
39
|
+
n: number;
|
|
40
|
+
};
|
|
41
|
+
export type SequenceEditorTree = SequenceEditorTree_Sheet;
|
|
42
|
+
export type SequenceEditorTree_Sheet = SequenceEditorTree_Row<'sheet'> & {
|
|
43
|
+
sheet: Sheet;
|
|
44
|
+
isCollapsed: boolean;
|
|
45
|
+
children: SequenceEditorTree_SheetObject[];
|
|
46
|
+
};
|
|
47
|
+
export type SequenceEditorTree_SheetObject = SequenceEditorTree_Row<'sheetObject'> & {
|
|
48
|
+
isCollapsed: boolean;
|
|
49
|
+
sheetObject: SheetObject;
|
|
50
|
+
children: Array<SequenceEditorTree_PropWithChildren | SequenceEditorTree_PrimitiveProp>;
|
|
51
|
+
};
|
|
52
|
+
export type SequenceEditorTree_PropWithChildren = SequenceEditorTree_Row<'propWithChildren'> & {
|
|
53
|
+
isCollapsed: boolean;
|
|
54
|
+
sheetObject: SheetObject;
|
|
55
|
+
propConf: PropTypeConfig_Compound<UnknownValidCompoundProps>;
|
|
56
|
+
pathToProp: PathToProp;
|
|
57
|
+
children: Array<SequenceEditorTree_PropWithChildren | SequenceEditorTree_PrimitiveProp>;
|
|
58
|
+
trackMapping: IPropPathToTrackIdTree;
|
|
59
|
+
};
|
|
60
|
+
export type SequenceEditorTree_PrimitiveProp = SequenceEditorTree_Row<'primitiveProp'> & {
|
|
61
|
+
sheetObject: SheetObject;
|
|
62
|
+
pathToProp: PathToProp;
|
|
63
|
+
trackId: SequenceTrackId;
|
|
64
|
+
propConf: PropTypeConfig_AllSimples;
|
|
65
|
+
};
|
|
66
|
+
export type SequenceEditorTree_AllRowTypes = SequenceEditorTree_Sheet | SequenceEditorTree_SheetObject | SequenceEditorTree_PropWithChildren | SequenceEditorTree_PrimitiveProp;
|
|
67
|
+
/**
|
|
68
|
+
* Must run inside prism()
|
|
69
|
+
*/
|
|
70
|
+
export declare const calculateSequenceEditorTree: (sheet: Sheet, studio: Studio) => SequenceEditorTree;
|
|
71
|
+
//# sourceMappingURL=tree.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tree.d.ts","sourceRoot":"","sources":["../../../../../../../studio/src/panels/SequenceEditorPanel/layout/tree.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEV,yBAAyB,EACzB,uBAAuB,EACxB,MAAM,yCAAyC,CAAA;AAChD,OAAO,KAAK,WAAW,MAAM,wDAAwD,CAAA;AACrF,OAAO,KAAK,EAAC,sBAAsB,EAAC,MAAM,gEAAgE,CAAA;AAC1G,OAAO,KAAK,KAAK,MAAM,4CAA4C,CAAA;AACnE,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,iDAAiD,CAAA;AAC/E,OAAO,KAAK,EACV,eAAe,EACf,kBAAkB,EACnB,MAAM,2CAA2C,CAAA;AAMlD,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,wCAAwC,CAAA;AAClE,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,mDAAmD,CAAA;AAEhG;;;GAGG;AACH,MAAM,MAAM,sBAAsB,CAAC,QAAQ,SAAS,MAAM,IAAI;IAC5D,0DAA0D;IAC1D,IAAI,EAAE,QAAQ,CAAA;IACd,uCAAuC;IACvC,UAAU,EAAE,MAAM,CAAA;IAClB,yDAAyD;IACzD,uBAAuB,EAAE,MAAM,CAAA;IAE/B,yBAAyB;IACzB,KAAK,EAAE,MAAM,CAAA;IACb,yGAAyG;IACzG,YAAY,EAAE,kBAAkB,CAAA;IAChC;;;;;;;OAOG;IACH,YAAY,EAAE,OAAO,CAAA;IACrB;;;OAGG;IACH,GAAG,EAAE,MAAM,CAAA;IACX,4EAA4E;IAC5E,CAAC,EAAE,MAAM,CAAA;CACV,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG,wBAAwB,CAAA;AAEzD,MAAM,MAAM,wBAAwB,GAAG,sBAAsB,CAAC,OAAO,CAAC,GAAG;IACvE,KAAK,EAAE,KAAK,CAAA;IACZ,WAAW,EAAE,OAAO,CAAA;IACpB,QAAQ,EAAE,8BAA8B,EAAE,CAAA;CAC3C,CAAA;AAED,MAAM,MAAM,8BAA8B,GACxC,sBAAsB,CAAC,aAAa,CAAC,GAAG;IACtC,WAAW,EAAE,OAAO,CAAA;IACpB,WAAW,EAAE,WAAW,CAAA;IACxB,QAAQ,EAAE,KAAK,CACb,mCAAmC,GAAG,gCAAgC,CACvE,CAAA;CACF,CAAA;AAEH,MAAM,MAAM,mCAAmC,GAC7C,sBAAsB,CAAC,kBAAkB,CAAC,GAAG;IAC3C,WAAW,EAAE,OAAO,CAAA;IACpB,WAAW,EAAE,WAAW,CAAA;IACxB,QAAQ,EAAE,uBAAuB,CAAC,yBAAyB,CAAC,CAAA;IAC5D,UAAU,EAAE,UAAU,CAAA;IACtB,QAAQ,EAAE,KAAK,CACb,mCAAmC,GAAG,gCAAgC,CACvE,CAAA;IACD,YAAY,EAAE,sBAAsB,CAAA;CACrC,CAAA;AAEH,MAAM,MAAM,gCAAgC,GAC1C,sBAAsB,CAAC,eAAe,CAAC,GAAG;IACxC,WAAW,EAAE,WAAW,CAAA;IACxB,UAAU,EAAE,UAAU,CAAA;IACtB,OAAO,EAAE,eAAe,CAAA;IACxB,QAAQ,EAAE,yBAAyB,CAAA;CACpC,CAAA;AAEH,MAAM,MAAM,8BAA8B,GACtC,wBAAwB,GACxB,8BAA8B,GAC9B,mCAAmC,GACnC,gCAAgC,CAAA;AAIpC;;GAEG;AACH,eAAO,MAAM,2BAA2B,UAC/B,KAAK,UACJ,MAAM,KACb,kBAgQF,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Prism } from '@tomorrowevening/theatre-dataverse';
|
|
2
|
+
import type { PropAddress, WithoutSheetInstance } from '@tomorrowevening/theatre-shared/utils/addresses';
|
|
3
|
+
import type { VoidFn } from '@tomorrowevening/theatre-shared/utils/types';
|
|
4
|
+
/** constant global manager */
|
|
5
|
+
export declare const whatPropIsHighlighted: {
|
|
6
|
+
replaceLock(address: WithoutSheetInstance<PropAddress>, cleanup: VoidFn): () => void;
|
|
7
|
+
getIsPropHighlightedD(address: WithoutSheetInstance<PropAddress>): Prism<PropHighlighted>;
|
|
8
|
+
};
|
|
9
|
+
export type PropHighlighted = 'self' | 'descendent' | null;
|
|
10
|
+
//# sourceMappingURL=whatPropIsHighlighted.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"whatPropIsHighlighted.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/panels/SequenceEditorPanel/whatPropIsHighlighted.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,KAAK,EAAC,MAAM,oCAAoC,CAAA;AAI7D,OAAO,KAAK,EACV,WAAW,EACX,oBAAoB,EACrB,MAAM,iDAAiD,CAAA;AAGxD,OAAO,KAAK,EAAkB,MAAM,EAAC,MAAM,6CAA6C,CAAA;AAGxF,8BAA8B;AAC9B,eAAO,MAAM,qBAAqB;yBAsBT,qBAAqB,WAAW,CAAC,WAAW,MAAM;mCAsB5D,qBAAqB,WAAW,CAAC,GACzC,MAAM,eAAe,CAAC;CA7C0C,CAAA;AAEvE,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,YAAY,GAAG,IAAI,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { PathToProp } from '@tomorrowevening/theatre-shared/utils/addresses';
|
|
3
|
+
import type SheetObject from '@tomorrowevening/theatre-core/sheetObjects/SheetObject';
|
|
4
|
+
import type { PropTypeConfig } from '@tomorrowevening/theatre-core/propTypes';
|
|
5
|
+
declare const DefaultOrStaticValueIndicator: React.FC<{
|
|
6
|
+
hasStaticOverride: boolean;
|
|
7
|
+
pathToProp: PathToProp;
|
|
8
|
+
obj: SheetObject;
|
|
9
|
+
propConfig: PropTypeConfig;
|
|
10
|
+
}>;
|
|
11
|
+
export default DefaultOrStaticValueIndicator;
|
|
12
|
+
//# sourceMappingURL=DefaultValueIndicator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DefaultValueIndicator.d.ts","sourceRoot":"","sources":["../../../../../studio/src/propEditors/DefaultValueIndicator.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,iDAAiD,CAAA;AAC/E,OAAO,KAAK,WAAW,MAAM,wDAAwD,CAAA;AACrF,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,yCAAyC,CAAA;AA0D3E,QAAA,MAAM,6BAA6B,EAAE,KAAK,CAAC,EAAE,CAAC;IAC5C,iBAAiB,EAAE,OAAO,CAAA;IAC1B,UAAU,EAAE,UAAU,CAAA;IACtB,GAAG,EAAE,WAAW,CAAA;IAChB,UAAU,EAAE,cAAc,CAAA;CAC3B,CA4BA,CAAA;AAED,eAAe,6BAA6B,CAAA"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { Keyframe } from '@tomorrowevening/theatre-core/projects/store/types/SheetState_Historic';
|
|
2
|
+
import type { StudioSheetItemKey } from '@tomorrowevening/theatre-shared/utils/ids';
|
|
3
|
+
import type { VoidFn } from '@tomorrowevening/theatre-shared/utils/types';
|
|
4
|
+
import React from 'react';
|
|
5
|
+
export type NearbyKeyframesControls = {
|
|
6
|
+
prev?: Pick<Keyframe, 'position'> & {
|
|
7
|
+
jump: VoidFn;
|
|
8
|
+
itemKey: StudioSheetItemKey;
|
|
9
|
+
};
|
|
10
|
+
cur: {
|
|
11
|
+
type: 'on';
|
|
12
|
+
toggle: VoidFn;
|
|
13
|
+
itemKey: StudioSheetItemKey;
|
|
14
|
+
} | {
|
|
15
|
+
type: 'off';
|
|
16
|
+
toggle: VoidFn;
|
|
17
|
+
};
|
|
18
|
+
next?: Pick<Keyframe, 'position'> & {
|
|
19
|
+
jump: VoidFn;
|
|
20
|
+
itemKey: StudioSheetItemKey;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
export declare const nextPrevCursorsTheme: {
|
|
24
|
+
offColor: string;
|
|
25
|
+
onColor: string;
|
|
26
|
+
};
|
|
27
|
+
declare const NextPrevKeyframeCursors: React.VFC<NearbyKeyframesControls>;
|
|
28
|
+
export default NextPrevKeyframeCursors;
|
|
29
|
+
//# sourceMappingURL=NextPrevKeyframeCursors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NextPrevKeyframeCursors.d.ts","sourceRoot":"","sources":["../../../../../studio/src/propEditors/NextPrevKeyframeCursors.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,wEAAwE,CAAA;AACpG,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,2CAA2C,CAAA;AACjF,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,6CAA6C,CAAA;AAGvE,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,MAAM,MAAM,uBAAuB,GAAG;IACpC,IAAI,CAAC,EAAE,IAAI,CAAC,QAAQ,EAAE,UAAU,CAAC,GAAG;QAClC,IAAI,EAAE,MAAM,CAAA;QACZ,OAAO,EAAE,kBAAkB,CAAA;KAC5B,CAAA;IACD,GAAG,EACC;QAAC,IAAI,EAAE,IAAI,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,kBAAkB,CAAA;KAAC,GACzD;QAAC,IAAI,EAAE,KAAK,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAC,CAAA;IACjC,IAAI,CAAC,EAAE,IAAI,CAAC,QAAQ,EAAE,UAAU,CAAC,GAAG;QAClC,IAAI,EAAE,MAAM,CAAA;QACZ,OAAO,EAAE,kBAAkB,CAAA;KAC5B,CAAA;CACF,CAAA;AAwDD,eAAO,MAAM,oBAAoB;;;CAGhC,CAAA;AAmHD,QAAA,MAAM,uBAAuB,EAAE,KAAK,CAAC,GAAG,CAAC,uBAAuB,CAmC/D,CAAA;AAED,eAAe,uBAAuB,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type SheetObject from '@tomorrowevening/theatre-core/sheetObjects/SheetObject';
|
|
2
|
+
import type { KeyframeWithTrack, TrackWithId } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/DopeSheet/Right/collectAggregateKeyframes';
|
|
3
|
+
export declare function getNearbyKeyframesOfTrack(obj: SheetObject, track: TrackWithId | undefined, sequencePosition: number): NearbyKeyframes;
|
|
4
|
+
export type NearbyKeyframes = {
|
|
5
|
+
prev?: KeyframeWithTrack;
|
|
6
|
+
cur?: KeyframeWithTrack;
|
|
7
|
+
next?: KeyframeWithTrack;
|
|
8
|
+
};
|
|
9
|
+
//# sourceMappingURL=getNearbyKeyframesOfTrack.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getNearbyKeyframesOfTrack.d.ts","sourceRoot":"","sources":["../../../../../studio/src/propEditors/getNearbyKeyframesOfTrack.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,WAAW,MAAM,wDAAwD,CAAA;AAErF,OAAO,KAAK,EACV,iBAAiB,EACjB,WAAW,EACZ,MAAM,sGAAsG,CAAA;AAS7G,wBAAgB,yBAAyB,CACvC,GAAG,EAAE,WAAW,EAChB,KAAK,EAAE,WAAW,GAAG,SAAS,EAC9B,gBAAgB,EAAE,MAAM,GACvB,eAAe,CAsDjB;AAED,MAAM,MAAM,eAAe,GAAG;IAC5B,IAAI,CAAC,EAAE,iBAAiB,CAAA;IACxB,GAAG,CAAC,EAAE,iBAAiB,CAAA;IACvB,IAAI,CAAC,EAAE,iBAAiB,CAAA;CACzB,CAAA"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { PropTypeConfig_Boolean } from '@tomorrowevening/theatre-core/propTypes';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { ISimplePropEditorReactProps } from './ISimplePropEditorReactProps';
|
|
4
|
+
declare function BooleanPropEditor({ propConfig, editingTools, value, autoFocus, }: ISimplePropEditorReactProps<PropTypeConfig_Boolean>): React.JSX.Element;
|
|
5
|
+
export default BooleanPropEditor;
|
|
6
|
+
//# sourceMappingURL=BooleanPropEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BooleanPropEditor.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/simpleEditors/BooleanPropEditor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,sBAAsB,EAAC,MAAM,yCAAyC,CAAA;AACnF,OAAO,KAAoB,MAAM,OAAO,CAAA;AAGxC,OAAO,KAAK,EAAC,2BAA2B,EAAC,MAAM,+BAA+B,CAAA;AAU9E,iBAAS,iBAAiB,CAAC,EACzB,UAAU,EACV,YAAY,EACZ,KAAK,EACL,SAAS,GACV,EAAE,2BAA2B,CAAC,sBAAsB,CAAC,qBASrD;AAED,eAAe,iBAAiB,CAAA"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { PropTypeConfig_File } from '@tomorrowevening/theatre-core/propTypes';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { ISimplePropEditorReactProps } from './ISimplePropEditorReactProps';
|
|
4
|
+
declare function FilePropEditor({ propConfig, editingTools, value, autoFocus, }: ISimplePropEditorReactProps<PropTypeConfig_File>): React.JSX.Element;
|
|
5
|
+
export default FilePropEditor;
|
|
6
|
+
//# sourceMappingURL=FilePropEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FilePropEditor.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/simpleEditors/FilePropEditor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,yCAAyC,CAAA;AAEhF,OAAO,KAA+B,MAAM,OAAO,CAAA;AAEnD,OAAO,KAAK,EAAC,2BAA2B,EAAC,MAAM,+BAA+B,CAAA;AAuF9E,iBAAS,cAAc,CAAC,EACtB,UAAU,EACV,YAAY,EACZ,KAAK,EACL,SAAS,GACV,EAAE,2BAA2B,CAAC,mBAAmB,CAAC,qBAwDlD;AAED,eAAe,cAAc,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { IBasePropType } from '@tomorrowevening/theatre-core/propTypes';
|
|
2
|
+
import type { IEditingTools } from '@tomorrowevening/theatre-studio/propEditors/utils/IEditingTools';
|
|
3
|
+
/** Helper for defining consistent prop editor components */
|
|
4
|
+
export type ISimplePropEditorReactProps<TPropTypeConfig extends IBasePropType<string, any>> = {
|
|
5
|
+
propConfig: TPropTypeConfig;
|
|
6
|
+
editingTools: IEditingTools<TPropTypeConfig['valueType']>;
|
|
7
|
+
value: TPropTypeConfig['valueType'];
|
|
8
|
+
autoFocus?: boolean;
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=ISimplePropEditorReactProps.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ISimplePropEditorReactProps.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/simpleEditors/ISimplePropEditorReactProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,yCAAyC,CAAA;AAC1E,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,iEAAiE,CAAA;AAElG,4DAA4D;AAC5D,MAAM,MAAM,2BAA2B,CACrC,eAAe,SAAS,aAAa,CAAC,MAAM,EAAE,GAAG,CAAC,IAChD;IACF,UAAU,EAAE,eAAe,CAAA;IAC3B,YAAY,EAAE,aAAa,CAAC,eAAe,CAAC,WAAW,CAAC,CAAC,CAAA;IACzD,KAAK,EAAE,eAAe,CAAC,WAAW,CAAC,CAAA;IACnC,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB,CAAA"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { PropTypeConfig_Image } from '@tomorrowevening/theatre-core/propTypes';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { ISimplePropEditorReactProps } from './ISimplePropEditorReactProps';
|
|
4
|
+
declare function ImagePropEditor({ propConfig, editingTools, value, autoFocus, }: ISimplePropEditorReactProps<PropTypeConfig_Image>): React.JSX.Element;
|
|
5
|
+
export default ImagePropEditor;
|
|
6
|
+
//# sourceMappingURL=ImagePropEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ImagePropEditor.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/simpleEditors/ImagePropEditor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,oBAAoB,EAAC,MAAM,yCAAyC,CAAA;AAGjF,OAAO,KAA+B,MAAM,OAAO,CAAA;AAEnD,OAAO,KAAK,EAAC,2BAA2B,EAAC,MAAM,+BAA+B,CAAA;AA+F9E,iBAAS,eAAe,CAAC,EACvB,UAAU,EACV,YAAY,EACZ,KAAK,EACL,SAAS,GACV,EAAE,2BAA2B,CAAC,oBAAoB,CAAC,qBA6DnD;AAED,eAAe,eAAe,CAAA"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { PropTypeConfig_Number } from '@tomorrowevening/theatre-core/propTypes';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { ISimplePropEditorReactProps } from './ISimplePropEditorReactProps';
|
|
4
|
+
declare function NumberPropEditor({ propConfig, editingTools, value, autoFocus, }: ISimplePropEditorReactProps<PropTypeConfig_Number>): React.JSX.Element;
|
|
5
|
+
export default NumberPropEditor;
|
|
6
|
+
//# sourceMappingURL=NumberPropEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NumberPropEditor.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/simpleEditors/NumberPropEditor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,qBAAqB,EAAC,MAAM,yCAAyC,CAAA;AAElF,OAAO,KAAoB,MAAM,OAAO,CAAA;AACxC,OAAO,KAAK,EAAC,2BAA2B,EAAC,MAAM,+BAA+B,CAAA;AAE9E,iBAAS,gBAAgB,CAAC,EACxB,UAAU,EACV,YAAY,EACZ,KAAK,EACL,SAAS,GACV,EAAE,2BAA2B,CAAC,qBAAqB,CAAC,qBAmBpD;AAED,eAAe,gBAAgB,CAAA"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { PropTypeConfig_Rgba } from '@tomorrowevening/theatre-core/propTypes';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { ISimplePropEditorReactProps } from './ISimplePropEditorReactProps';
|
|
4
|
+
declare function RgbaPropEditor({ editingTools, value, autoFocus, }: ISimplePropEditorReactProps<PropTypeConfig_Rgba>): React.JSX.Element;
|
|
5
|
+
export default RgbaPropEditor;
|
|
6
|
+
//# sourceMappingURL=RgbaPropEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RgbaPropEditor.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/simpleEditors/RgbaPropEditor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,yCAAyC,CAAA;AAQhF,OAAO,KAA4B,MAAM,OAAO,CAAA;AAMhD,OAAO,KAAK,EAAC,2BAA2B,EAAC,MAAM,+BAA+B,CAAA;AAgD9E,iBAAS,cAAc,CAAC,EACtB,YAAY,EACZ,KAAK,EACL,SAAS,GACV,EAAE,2BAA2B,CAAC,mBAAmB,CAAC,qBAuDlD;AAED,eAAe,cAAc,CAAA"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { PropTypeConfig_StringLiteral } from '@tomorrowevening/theatre-core/propTypes';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { ISimplePropEditorReactProps } from './ISimplePropEditorReactProps';
|
|
4
|
+
declare function StringLiteralPropEditor<TLiteralOptions extends string>({ propConfig, editingTools, value, autoFocus, }: ISimplePropEditorReactProps<PropTypeConfig_StringLiteral<TLiteralOptions>>): React.JSX.Element;
|
|
5
|
+
export default StringLiteralPropEditor;
|
|
6
|
+
//# sourceMappingURL=StringLiteralPropEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StringLiteralPropEditor.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/simpleEditors/StringLiteralPropEditor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,4BAA4B,EAAC,MAAM,yCAAyC,CAAA;AACzF,OAAO,KAAoB,MAAM,OAAO,CAAA;AAGxC,OAAO,KAAK,EAAC,2BAA2B,EAAC,MAAM,+BAA+B,CAAA;AAE9E,iBAAS,uBAAuB,CAAC,eAAe,SAAS,MAAM,EAAE,EAC/D,UAAU,EACV,YAAY,EACZ,KAAK,EACL,SAAS,GACV,EAAE,2BAA2B,CAAC,4BAA4B,CAAC,eAAe,CAAC,CAAC,qBAuB5E;AAED,eAAe,uBAAuB,CAAA"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { PropTypeConfig_String } from '@tomorrowevening/theatre-core/propTypes';
|
|
3
|
+
import type { ISimplePropEditorReactProps } from './ISimplePropEditorReactProps';
|
|
4
|
+
declare function StringPropEditor({ editingTools, value, autoFocus, }: ISimplePropEditorReactProps<PropTypeConfig_String>): React.JSX.Element;
|
|
5
|
+
export default StringPropEditor;
|
|
6
|
+
//# sourceMappingURL=StringPropEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StringPropEditor.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/simpleEditors/StringPropEditor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,KAAK,EAAC,qBAAqB,EAAC,MAAM,yCAAyC,CAAA;AAElF,OAAO,KAAK,EAAC,2BAA2B,EAAC,MAAM,+BAA+B,CAAA;AAE9E,iBAAS,gBAAgB,CAAC,EACxB,YAAY,EACZ,KAAK,EACL,SAAS,GACV,EAAE,2BAA2B,CAAC,qBAAqB,CAAC,qBAUpD;AAED,eAAe,gBAAgB,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { PropTypeConfig_AllSimples } from '@tomorrowevening/theatre-core/propTypes';
|
|
2
|
+
import type React from 'react';
|
|
3
|
+
import type { ISimplePropEditorReactProps } from './ISimplePropEditorReactProps';
|
|
4
|
+
import type { PropConfigForType } from '@tomorrowevening/theatre-studio/propEditors/utils/PropConfigForType';
|
|
5
|
+
export declare const simplePropEditorByPropType: ISimplePropEditorByPropType;
|
|
6
|
+
type ISimplePropEditorByPropType = {
|
|
7
|
+
[K in PropTypeConfig_AllSimples['type']]: React.VFC<ISimplePropEditorReactProps<PropConfigForType<K>>>;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=simplePropEditorByPropType.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simplePropEditorByPropType.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/simpleEditors/simplePropEditorByPropType.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,yCAAyC,CAAA;AACtF,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,OAAO,KAAK,EAAC,2BAA2B,EAAC,MAAM,+BAA+B,CAAA;AAC9E,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,qEAAqE,CAAA;AAI1G,eAAO,MAAM,0BAA0B,EAAE,2BAQxC,CAAA;AAED,KAAK,2BAA2B,GAAG;KAChC,CAAC,IAAI,yBAAyB,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,GAAG,CACjD,2BAA2B,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAClD;CACF,CAAA"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type SheetObject from '@tomorrowevening/theatre-core/sheetObjects/SheetObject';
|
|
2
|
+
import type { IContextMenuItem } from '@tomorrowevening/theatre-studio/uiComponents/simpleContextMenu/useContextMenu';
|
|
3
|
+
import type { SerializablePrimitive } from '@tomorrowevening/theatre-shared/utils/types';
|
|
4
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
5
|
+
import React from 'react';
|
|
6
|
+
import type { PropTypeConfig_Compound } from '@tomorrowevening/theatre-core/propTypes';
|
|
7
|
+
interface CommonStuff {
|
|
8
|
+
beingScrubbed: boolean;
|
|
9
|
+
contextMenuItems: Array<IContextMenuItem>;
|
|
10
|
+
controlIndicators: React.ReactElement;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* For compounds that have _no_ sequenced track in all of their descendants
|
|
14
|
+
*/
|
|
15
|
+
interface AllStatic extends CommonStuff {
|
|
16
|
+
type: 'AllStatic';
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* For compounds that have at least one sequenced track in their descendants
|
|
20
|
+
*/
|
|
21
|
+
interface HasSequences extends CommonStuff {
|
|
22
|
+
type: 'HasSequences';
|
|
23
|
+
}
|
|
24
|
+
type Stuff = AllStatic | HasSequences;
|
|
25
|
+
export declare function useEditingToolsForCompoundProp<T extends SerializablePrimitive>(pointerToProp: Pointer<{}>, obj: SheetObject, propConfig: PropTypeConfig_Compound<{}>): Stuff;
|
|
26
|
+
export {};
|
|
27
|
+
//# sourceMappingURL=useEditingToolsForCompoundProp.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useEditingToolsForCompoundProp.d.ts","sourceRoot":"","sources":["../../../../../studio/src/propEditors/useEditingToolsForCompoundProp.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,WAAW,MAAM,wDAAwD,CAAA;AAErF,OAAO,KAAK,EAAC,gBAAgB,EAAC,MAAM,+EAA+E,CAAA;AAGnH,OAAO,KAAK,EAEV,qBAAqB,EACtB,MAAM,6CAA6C,CAAA;AAEpD,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAE/D,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAC,uBAAuB,EAAC,MAAM,yCAAyC,CAAA;AAgBpF,UAAU,WAAW;IACnB,aAAa,EAAE,OAAO,CAAA;IACtB,gBAAgB,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAA;IACzC,iBAAiB,EAAE,KAAK,CAAC,YAAY,CAAA;CACtC;AAED;;GAEG;AACH,UAAU,SAAU,SAAQ,WAAW;IACrC,IAAI,EAAE,WAAW,CAAA;CAClB;AAED;;GAEG;AACH,UAAU,YAAa,SAAQ,WAAW;IACxC,IAAI,EAAE,cAAc,CAAA;CACrB;AAED,KAAK,KAAK,GAAG,SAAS,GAAG,YAAY,CAAA;AAErC,wBAAgB,8BAA8B,CAAC,CAAC,SAAS,qBAAqB,EAC5E,aAAa,EAAE,OAAO,CAAC,EAAE,CAAC,EAC1B,GAAG,EAAE,WAAW,EAChB,UAAU,EAAE,uBAAuB,CAAC,EAAE,CAAC,GACtC,KAAK,CAyLP"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { Pointer } from '@tomorrowevening/theatre-dataverse';
|
|
3
|
+
import type SheetObject from '@tomorrowevening/theatre-core/sheetObjects/SheetObject';
|
|
4
|
+
import type { IContextMenuItem } from '@tomorrowevening/theatre-studio/uiComponents/simpleContextMenu/useContextMenu';
|
|
5
|
+
import type { SerializablePrimitive as SerializablePrimitive } from '@tomorrowevening/theatre-shared/utils/types';
|
|
6
|
+
import type { PropTypeConfig_AllSimples } from '@tomorrowevening/theatre-core/propTypes';
|
|
7
|
+
import type { NearbyKeyframes } from './getNearbyKeyframesOfTrack';
|
|
8
|
+
import type { Asset, File as AssetFile } from '@tomorrowevening/theatre-shared/utils/assets';
|
|
9
|
+
interface EditingToolsCommon<T> {
|
|
10
|
+
value: T;
|
|
11
|
+
beingScrubbed: boolean;
|
|
12
|
+
contextMenuItems: Array<IContextMenuItem>;
|
|
13
|
+
/** e.g. `< • >` or `< >` for {@link EditingToolsSequenced} */
|
|
14
|
+
controlIndicators: React.ReactElement;
|
|
15
|
+
temporarilySetValue(v: T): void;
|
|
16
|
+
discardTemporaryValue(): void;
|
|
17
|
+
permanentlySetValue(v: T): void;
|
|
18
|
+
getAssetUrl: (asset: Asset | AssetFile) => string | undefined;
|
|
19
|
+
createAsset(asset: File): Promise<string | null>;
|
|
20
|
+
}
|
|
21
|
+
interface EditingToolsDefault<T> extends EditingToolsCommon<T> {
|
|
22
|
+
type: 'Default';
|
|
23
|
+
shade: Shade;
|
|
24
|
+
}
|
|
25
|
+
interface EditingToolsStatic<T> extends EditingToolsCommon<T> {
|
|
26
|
+
type: 'Static';
|
|
27
|
+
shade: Shade;
|
|
28
|
+
}
|
|
29
|
+
interface EditingToolsSequenced<T> extends EditingToolsCommon<T> {
|
|
30
|
+
type: 'Sequenced';
|
|
31
|
+
shade: Shade;
|
|
32
|
+
/** based on the position of the playhead */
|
|
33
|
+
nearbyKeyframes: NearbyKeyframes;
|
|
34
|
+
}
|
|
35
|
+
type EditingTools<T> = EditingToolsDefault<T> | EditingToolsStatic<T> | EditingToolsSequenced<T>;
|
|
36
|
+
/**
|
|
37
|
+
* Notably, this uses the {@link Scrub} API to support
|
|
38
|
+
* indicating in the UI which pointers (values/props) are being
|
|
39
|
+
* scrubbed. See how impl of {@link Scrub} manages
|
|
40
|
+
* `state.flagsTransaction` to keep a list of these touched paths
|
|
41
|
+
* for the UI to be able to recognize. (e.g. to highlight the
|
|
42
|
+
* item in r3f as you change its scale).
|
|
43
|
+
*/
|
|
44
|
+
export declare function useEditingToolsForSimplePropInDetailsPanel<T extends SerializablePrimitive>(pointerToProp: Pointer<T>, obj: SheetObject, propConfig: PropTypeConfig_AllSimples): EditingTools<T>;
|
|
45
|
+
type Shade = 'Default' | 'Static' | 'Static_BeingScrubbed' | 'Sequenced_OnKeyframe' | 'Sequenced_OnKeyframe_BeingScrubbed' | 'Sequenced_BeingInterpolated' | 'Sequened_NotBeingInterpolated';
|
|
46
|
+
export {};
|
|
47
|
+
//# sourceMappingURL=useEditingToolsForSimpleProp.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useEditingToolsForSimpleProp.d.ts","sourceRoot":"","sources":["../../../../../studio/src/propEditors/useEditingToolsForSimpleProp.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,KAAK,EAAQ,OAAO,EAAC,MAAM,oCAAoC,CAAA;AAEtE,OAAO,KAAK,WAAW,MAAM,wDAAwD,CAAA;AAGrF,OAAO,KAAK,EAAC,gBAAgB,EAAC,MAAM,+EAA+E,CAAA;AAGnH,OAAO,KAAK,EAEV,qBAAqB,IAAI,qBAAqB,EAC/C,MAAM,6CAA6C,CAAA;AACpD,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,yCAAyC,CAAA;AAItF,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,6BAA6B,CAAA;AAIhE,OAAO,KAAK,EAAC,KAAK,EAAE,IAAI,IAAI,SAAS,EAAC,MAAM,8CAA8C,CAAA;AAE1F,UAAU,kBAAkB,CAAC,CAAC;IAC5B,KAAK,EAAE,CAAC,CAAA;IACR,aAAa,EAAE,OAAO,CAAA;IACtB,gBAAgB,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAA;IACzC,gEAAgE;IAChE,iBAAiB,EAAE,KAAK,CAAC,YAAY,CAAA;IAErC,mBAAmB,CAAC,CAAC,EAAE,CAAC,GAAG,IAAI,CAAA;IAC/B,qBAAqB,IAAI,IAAI,CAAA;IAC7B,mBAAmB,CAAC,CAAC,EAAE,CAAC,GAAG,IAAI,CAAA;IAE/B,WAAW,EAAE,CAAC,KAAK,EAAE,KAAK,GAAG,SAAS,KAAK,MAAM,GAAG,SAAS,CAAA;IAC7D,WAAW,CAAC,KAAK,EAAE,IAAI,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAA;CACjD;AAED,UAAU,mBAAmB,CAAC,CAAC,CAAE,SAAQ,kBAAkB,CAAC,CAAC,CAAC;IAC5D,IAAI,EAAE,SAAS,CAAA;IACf,KAAK,EAAE,KAAK,CAAA;CACb;AAED,UAAU,kBAAkB,CAAC,CAAC,CAAE,SAAQ,kBAAkB,CAAC,CAAC,CAAC;IAC3D,IAAI,EAAE,QAAQ,CAAA;IACd,KAAK,EAAE,KAAK,CAAA;CACb;AAED,UAAU,qBAAqB,CAAC,CAAC,CAAE,SAAQ,kBAAkB,CAAC,CAAC,CAAC;IAC9D,IAAI,EAAE,WAAW,CAAA;IACjB,KAAK,EAAE,KAAK,CAAA;IACZ,4CAA4C;IAC5C,eAAe,EAAE,eAAe,CAAA;CACjC;AAED,KAAK,YAAY,CAAC,CAAC,IACf,mBAAmB,CAAC,CAAC,CAAC,GACtB,kBAAkB,CAAC,CAAC,CAAC,GACrB,qBAAqB,CAAC,CAAC,CAAC,CAAA;AAuS5B;;;;;;;GAOG;AACH,wBAAgB,0CAA0C,CACxD,CAAC,SAAS,qBAAqB,EAE/B,aAAa,EAAE,OAAO,CAAC,CAAC,CAAC,EACzB,GAAG,EAAE,WAAW,EAChB,UAAU,EAAE,yBAAyB,GACpC,YAAY,CAAC,CAAC,CAAC,CAGjB;AAED,KAAK,KAAK,GACN,SAAS,GACT,QAAQ,GACR,sBAAsB,GACtB,sBAAsB,GACtB,oCAAoC,GACpC,6BAA6B,GAC7B,+BAA+B,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { Asset, File } from '@tomorrowevening/theatre-shared/utils/assets';
|
|
2
|
+
export interface IEditingTools<T> {
|
|
3
|
+
temporarilySetValue(v: T): void;
|
|
4
|
+
discardTemporaryValue(): void;
|
|
5
|
+
permanentlySetValue(v: T): void;
|
|
6
|
+
getAssetUrl(asset: Asset | File): string | undefined;
|
|
7
|
+
createAsset(asset: Blob): Promise<string | null>;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=IEditingTools.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IEditingTools.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/utils/IEditingTools.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,KAAK,EAAE,IAAI,EAAC,MAAM,8CAA8C,CAAA;AAE7E,MAAM,WAAW,aAAa,CAAC,CAAC;IAC9B,mBAAmB,CAAC,CAAC,EAAE,CAAC,GAAG,IAAI,CAAA;IAC/B,qBAAqB,IAAI,IAAI,CAAA;IAC7B,mBAAmB,CAAC,CAAC,EAAE,CAAC,GAAG,IAAI,CAAA;IAE/B,WAAW,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI,GAAG,MAAM,GAAG,SAAS,CAAA;IACpD,WAAW,CAAC,KAAK,EAAE,IAAI,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAA;CACjD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PropConfigForType.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/utils/PropConfigForType.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,yCAAyC,CAAA;AAE3E,MAAM,MAAM,iBAAiB,CAAC,CAAC,SAAS,cAAc,CAAC,MAAM,CAAC,IAAI,OAAO,CACvE,cAAc,EACd;IAAC,IAAI,EAAE,CAAC,CAAA;CAAC,CACV,CAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { PropTypeConfig } from '@tomorrowevening/theatre-core/propTypes';
|
|
2
|
+
import type SheetObject from '@tomorrowevening/theatre-core/sheetObjects/SheetObject';
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated because it uses obj.template.staticConfig
|
|
5
|
+
*
|
|
6
|
+
* Returns the PropTypeConfig by path. Assumes `path` is a valid prop path and that
|
|
7
|
+
* it exists in obj.
|
|
8
|
+
*
|
|
9
|
+
* Example usage:
|
|
10
|
+
* ```
|
|
11
|
+
* const propConfig = getPropTypeByPointer(propP, sheetObject)
|
|
12
|
+
*
|
|
13
|
+
* if (propConfig.type === 'number') {
|
|
14
|
+
* //... etc.
|
|
15
|
+
* }
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare function getPropTypeByPointer(pointerToProp: SheetObject['propsP'], obj: SheetObject): PropTypeConfig;
|
|
19
|
+
//# sourceMappingURL=getPropTypeByPointer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPropTypeByPointer.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/utils/getPropTypeByPointer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,yCAAyC,CAAA;AAC3E,OAAO,KAAK,WAAW,MAAM,wDAAwD,CAAA;AAGrF;;;;;;;;;;;;;;GAcG;AAEH,wBAAgB,oBAAoB,CAClC,aAAa,EAAE,WAAW,CAAC,QAAQ,CAAC,EACpC,GAAG,EAAE,WAAW,GACf,cAAc,CAsChB"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { PropHighlighted } from '@tomorrowevening/theatre-studio/panels/SequenceEditorPanel/whatPropIsHighlighted';
|
|
2
|
+
export declare const propNameTextCSS: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
|
|
3
|
+
isHighlighted?: PropHighlighted | undefined;
|
|
4
|
+
}, any>>;
|
|
5
|
+
//# sourceMappingURL=propNameTextCSS.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"propNameTextCSS.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/propEditors/utils/propNameTextCSS.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,kFAAkF,CAAA;AAGrH,eAAO,MAAM,eAAe;;QAK3B,CAAA"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type Project from '@tomorrowevening/theatre-core/projects/Project';
|
|
2
|
+
import type Sequence from '@tomorrowevening/theatre-core/sequences/Sequence';
|
|
3
|
+
import type Sheet from '@tomorrowevening/theatre-core/sheets/Sheet';
|
|
4
|
+
import type { OutlineSelection } from './store/types';
|
|
5
|
+
export declare const getOutlineSelection: () => OutlineSelection;
|
|
6
|
+
export declare const getSelectedInstanceOfSheetId: (project: Project, selectedSheetId: string) => Sheet | undefined;
|
|
7
|
+
/**
|
|
8
|
+
* component instances could come and go all the time. This hook
|
|
9
|
+
* makes sure we don't cause re-renders
|
|
10
|
+
*/
|
|
11
|
+
export declare function getRegisteredSheetIds(project: Project): string[];
|
|
12
|
+
export declare function getSelectedSequence(): undefined | Sequence;
|
|
13
|
+
//# sourceMappingURL=selectors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../../../studio/src/selectors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,gDAAgD,CAAA;AACzE,OAAO,KAAK,QAAQ,MAAM,kDAAkD,CAAA;AAE5E,OAAO,KAAK,KAAK,MAAM,4CAA4C,CAAA;AAOnE,OAAO,KAAK,EAAoB,gBAAgB,EAAC,MAAM,eAAe,CAAA;AAEtE,eAAO,MAAM,mBAAmB,wBA0B/B,CAAA;AAED,eAAO,MAAM,4BAA4B,YAC9B,OAAO,mBACC,MAAM,KACtB,KAAK,GAAG,SAsBV,CAAA;AAMD;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,EAAE,CAEhE;AAED,wBAAgB,mBAAmB,IAAI,SAAS,GAAG,QAAQ,CAU1D"}
|