@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,210 @@
|
|
|
1
|
+
import type { StudioState } from '@tomorrowevening/theatre-studio/store/types';
|
|
2
|
+
import type { IWithHistory } from '@tomorrowevening/theatre-studio/utils/redux/withHistory/withHistory';
|
|
3
|
+
import type { ReduxReducer } from '@tomorrowevening/theatre-shared/utils/types';
|
|
4
|
+
export type StudioPersistentState = {
|
|
5
|
+
historic: IWithHistory<StudioState['historic']>;
|
|
6
|
+
ahistoric: StudioState['ahistoric'];
|
|
7
|
+
};
|
|
8
|
+
export type FullStudioState = {
|
|
9
|
+
$temps: {
|
|
10
|
+
permanent: PermanentState;
|
|
11
|
+
tempActions: Array<typeof _pushTemporaryAction['ActionType']>;
|
|
12
|
+
};
|
|
13
|
+
} & StudioState & {
|
|
14
|
+
$persistent: StudioPersistentState;
|
|
15
|
+
};
|
|
16
|
+
type PermanentState = {
|
|
17
|
+
$persistent: StudioPersistentState;
|
|
18
|
+
ephemeral: StudioState['ephemeral'];
|
|
19
|
+
};
|
|
20
|
+
declare const reduceParts: {
|
|
21
|
+
(input: (wholeState: StudioState) => StudioState): {
|
|
22
|
+
type: "@storeBundle/reduceParts";
|
|
23
|
+
payload: (wholeState: StudioState) => StudioState;
|
|
24
|
+
};
|
|
25
|
+
type: "@storeBundle/reduceParts";
|
|
26
|
+
ActionType: {
|
|
27
|
+
type: "@storeBundle/reduceParts";
|
|
28
|
+
payload: (wholeState: StudioState) => StudioState;
|
|
29
|
+
};
|
|
30
|
+
is: (o: any) => o is {
|
|
31
|
+
type: "@storeBundle/reduceParts";
|
|
32
|
+
payload: (wholeState: StudioState) => StudioState;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
export declare const studioActions: {
|
|
36
|
+
historic: {
|
|
37
|
+
replaceHistory: {
|
|
38
|
+
<Payload>(payload: Payload): {
|
|
39
|
+
type: "@history/replaceHistory";
|
|
40
|
+
payload: Payload;
|
|
41
|
+
};
|
|
42
|
+
(): {
|
|
43
|
+
type: "@history/replaceHistory";
|
|
44
|
+
payload: void;
|
|
45
|
+
};
|
|
46
|
+
type: "@history/replaceHistory";
|
|
47
|
+
ActionType: {
|
|
48
|
+
type: "@history/replaceHistory";
|
|
49
|
+
payload: unknown;
|
|
50
|
+
};
|
|
51
|
+
is: (o: unknown) => o is {
|
|
52
|
+
type: "@history/replaceHistory";
|
|
53
|
+
payload: unknown;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
startHistoryFromScratch: {
|
|
57
|
+
<Payload_1>(payload: Payload_1): {
|
|
58
|
+
type: "@history/startHistoryFromScratch";
|
|
59
|
+
payload: Payload_1;
|
|
60
|
+
};
|
|
61
|
+
(): {
|
|
62
|
+
type: "@history/startHistoryFromScratch";
|
|
63
|
+
payload: void;
|
|
64
|
+
};
|
|
65
|
+
type: "@history/startHistoryFromScratch";
|
|
66
|
+
ActionType: {
|
|
67
|
+
type: "@history/startHistoryFromScratch";
|
|
68
|
+
payload: unknown;
|
|
69
|
+
};
|
|
70
|
+
is: (o: unknown) => o is {
|
|
71
|
+
type: "@history/startHistoryFromScratch";
|
|
72
|
+
payload: unknown;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
undo: {
|
|
76
|
+
<Payload_2>(payload: Payload_2): {
|
|
77
|
+
type: "@history/undo";
|
|
78
|
+
payload: Payload_2;
|
|
79
|
+
};
|
|
80
|
+
(): {
|
|
81
|
+
type: "@history/undo";
|
|
82
|
+
payload: void;
|
|
83
|
+
};
|
|
84
|
+
type: "@history/undo";
|
|
85
|
+
ActionType: {
|
|
86
|
+
type: "@history/undo";
|
|
87
|
+
payload: unknown;
|
|
88
|
+
};
|
|
89
|
+
is: (o: unknown) => o is {
|
|
90
|
+
type: "@history/undo";
|
|
91
|
+
payload: unknown;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
redo: {
|
|
95
|
+
<Payload_3>(payload: Payload_3): {
|
|
96
|
+
type: "@history/redo";
|
|
97
|
+
payload: Payload_3;
|
|
98
|
+
};
|
|
99
|
+
(): {
|
|
100
|
+
type: "@history/redo";
|
|
101
|
+
payload: void;
|
|
102
|
+
};
|
|
103
|
+
type: "@history/redo";
|
|
104
|
+
ActionType: {
|
|
105
|
+
type: "@history/redo";
|
|
106
|
+
payload: unknown;
|
|
107
|
+
};
|
|
108
|
+
is: (o: unknown) => o is {
|
|
109
|
+
type: "@history/redo";
|
|
110
|
+
payload: unknown;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
replacePersistentState: {
|
|
115
|
+
(input: StudioPersistentState): {
|
|
116
|
+
type: "@storeBundle/replacePersistentState";
|
|
117
|
+
payload: StudioPersistentState;
|
|
118
|
+
};
|
|
119
|
+
type: "@storeBundle/replacePersistentState";
|
|
120
|
+
ActionType: {
|
|
121
|
+
type: "@storeBundle/replacePersistentState";
|
|
122
|
+
payload: StudioPersistentState;
|
|
123
|
+
};
|
|
124
|
+
is: (o: any) => o is {
|
|
125
|
+
type: "@storeBundle/replacePersistentState";
|
|
126
|
+
payload: StudioPersistentState;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
reduceParts: {
|
|
130
|
+
(input: (wholeState: StudioState) => StudioState): {
|
|
131
|
+
type: "@storeBundle/reduceParts";
|
|
132
|
+
payload: (wholeState: StudioState) => StudioState;
|
|
133
|
+
};
|
|
134
|
+
type: "@storeBundle/reduceParts";
|
|
135
|
+
ActionType: {
|
|
136
|
+
type: "@storeBundle/reduceParts";
|
|
137
|
+
payload: (wholeState: StudioState) => StudioState;
|
|
138
|
+
};
|
|
139
|
+
is: (o: any) => o is {
|
|
140
|
+
type: "@storeBundle/reduceParts";
|
|
141
|
+
payload: (wholeState: StudioState) => StudioState;
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
export declare const _pushTemporaryAction: {
|
|
146
|
+
(input: {
|
|
147
|
+
id: number;
|
|
148
|
+
originalAction: typeof reduceParts.ActionType;
|
|
149
|
+
}): {
|
|
150
|
+
type: "@history/pushTempAction";
|
|
151
|
+
payload: {
|
|
152
|
+
id: number;
|
|
153
|
+
originalAction: typeof reduceParts.ActionType;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
type: "@history/pushTempAction";
|
|
157
|
+
ActionType: {
|
|
158
|
+
type: "@history/pushTempAction";
|
|
159
|
+
payload: {
|
|
160
|
+
id: number;
|
|
161
|
+
originalAction: typeof reduceParts.ActionType;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
is: (o: any) => o is {
|
|
165
|
+
type: "@history/pushTempAction";
|
|
166
|
+
payload: {
|
|
167
|
+
id: number;
|
|
168
|
+
originalAction: typeof reduceParts.ActionType;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
export declare const _discardTemporaryAction: {
|
|
173
|
+
(input: number): {
|
|
174
|
+
type: "@history/discardTempAction";
|
|
175
|
+
payload: number;
|
|
176
|
+
};
|
|
177
|
+
type: "@history/discardTempAction";
|
|
178
|
+
ActionType: {
|
|
179
|
+
type: "@history/discardTempAction";
|
|
180
|
+
payload: number;
|
|
181
|
+
};
|
|
182
|
+
is: (o: any) => o is {
|
|
183
|
+
type: "@history/discardTempAction";
|
|
184
|
+
payload: number;
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
export declare const _commitTemporaryAction: {
|
|
188
|
+
(input: number): {
|
|
189
|
+
type: "@history/commitTempAction";
|
|
190
|
+
payload: number;
|
|
191
|
+
};
|
|
192
|
+
type: "@history/commitTempAction";
|
|
193
|
+
ActionType: {
|
|
194
|
+
type: "@history/commitTempAction";
|
|
195
|
+
payload: number;
|
|
196
|
+
};
|
|
197
|
+
is: (o: any) => o is {
|
|
198
|
+
type: "@history/commitTempAction";
|
|
199
|
+
payload: number;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
202
|
+
export interface ITempActionGroup {
|
|
203
|
+
push(originalAction: typeof reduceParts.ActionType): typeof _pushTemporaryAction.ActionType;
|
|
204
|
+
discard(): typeof _discardTemporaryAction.ActionType;
|
|
205
|
+
commit(): typeof _commitTemporaryAction.ActionType;
|
|
206
|
+
}
|
|
207
|
+
export declare const tempActionGroup: () => ITempActionGroup;
|
|
208
|
+
export declare const studioReducer: ReduxReducer<FullStudioState>;
|
|
209
|
+
export {};
|
|
210
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../studio/src/store/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,6CAA6C,CAAA;AAE5E,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,qEAAqE,CAAA;AAKrG,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,6CAA6C,CAAA;AAwC7E,MAAM,MAAM,qBAAqB,GAAG;IAClC,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC,CAAA;IAC/C,SAAS,EAAE,WAAW,CAAC,WAAW,CAAC,CAAA;CACpC,CAAA;AAED,MAAM,MAAM,eAAe,GAAG;IAC5B,MAAM,EAAE;QACN,SAAS,EAAE,cAAc,CAAA;QACzB,WAAW,EAAE,KAAK,CAAC,OAAO,oBAAoB,CAAC,YAAY,CAAC,CAAC,CAAA;KAC9D,CAAA;CACF,GAAG,WAAW,GAAG;IAAC,WAAW,EAAE,qBAAqB,CAAA;CAAC,CAAA;AAEtD,KAAK,cAAc,GAAG;IACpB,WAAW,EAAE,qBAAqB,CAAA;IAClC,SAAS,EAAE,WAAW,CAAC,WAAW,CAAC,CAAA;CACpC,CAAA;AAOD,QAAA,MAAM,WAAW;yBAEG,WAAW,KAAK,WAAW;;8BAA3B,WAAW,KAAK,WAAW;;;;;8BAA3B,WAAW,KAAK,WAAW;;;;8BAA3B,WAAW,KAAK,WAAW;;CAC9C,CAAA;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAHN,WAAW,KAAK,WAAW;;kCAA3B,WAAW,KAAK,WAAW;;;;;kCAA3B,WAAW,KAAK,WAAW;;;;kCAA3B,WAAW,KAAK,WAAW;;;CAO9C,CAAA;AAkFD,eAAO,MAAM,oBAAoB;;YAElB,MAAM;wBAAkB,OAAO,YAAY,UAAU;;;;gBAArD,MAAM;4BAAkB,OAAO,YAAY,UAAU;;;;;;;gBAArD,MAAM;4BAAkB,OAAO,YAAY,UAAU;;;;;;gBAArD,MAAM;4BAAkB,OAAO,YAAY,UAAU;;;CACnE,CAAA;AAED,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;CAGnC,CAAA;AAED,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;CAGlC,CAAA;AAED,MAAM,WAAW,gBAAgB;IAC/B,IAAI,CACF,cAAc,EAAE,OAAO,WAAW,CAAC,UAAU,GAC5C,OAAO,oBAAoB,CAAC,UAAU,CAAA;IACzC,OAAO,IAAI,OAAO,uBAAuB,CAAC,UAAU,CAAA;IACpD,MAAM,IAAI,OAAO,sBAAsB,CAAC,UAAU,CAAA;CACnD;AAID,eAAO,MAAM,eAAe,QAAO,gBAiBlC,CAAA;AAED,eAAO,MAAM,aAAa,EAAE,YAAY,CAAC,eAAe,CAkEvD,CAAA"}
|
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
import type { HistoricPositionalSequence, Keyframe, KeyframeType, SheetState_Historic } from '@tomorrowevening/theatre-core/projects/store/types/SheetState_Historic';
|
|
2
|
+
import type { Drafts } from '@tomorrowevening/theatre-studio/StudioStore/StudioStore';
|
|
3
|
+
import type { ProjectAddress, PropAddress, SheetAddress, SheetObjectAddress, WithoutSheetInstance } from '@tomorrowevening/theatre-shared/utils/addresses';
|
|
4
|
+
import type { StudioSheetItemKey, KeyframeId, SequenceMarkerId, SequenceTrackId, UIPanelId } from '@tomorrowevening/theatre-shared/utils/ids';
|
|
5
|
+
import type { IRange, SerializableMap, SerializablePrimitive, SerializableValue } from '@tomorrowevening/theatre-shared/utils/types';
|
|
6
|
+
import type { KeyframeWithPathToPropFromCommonRoot, OutlineSelectable, OutlineSelectionState, PanelPosition, StudioAhistoricState, StudioEphemeralState, StudioHistoricStateSequenceEditorMarker } from './types';
|
|
7
|
+
import type SheetTemplate from '@tomorrowevening/theatre-core/sheets/SheetTemplate';
|
|
8
|
+
import type SheetObjectTemplate from '@tomorrowevening/theatre-core/sheetObjects/SheetObjectTemplate';
|
|
9
|
+
import type { PropTypeConfig } from '@tomorrowevening/theatre-core/propTypes';
|
|
10
|
+
export declare const setDrafts__onlyMeantToBeCalledByTransaction: (drafts: undefined | Drafts) => typeof stateEditors;
|
|
11
|
+
declare namespace stateEditors {
|
|
12
|
+
namespace studio {
|
|
13
|
+
namespace historic {
|
|
14
|
+
namespace panelPositions {
|
|
15
|
+
function setPanelPosition(p: {
|
|
16
|
+
panelId: UIPanelId;
|
|
17
|
+
position: PanelPosition;
|
|
18
|
+
}): void;
|
|
19
|
+
}
|
|
20
|
+
namespace panels {
|
|
21
|
+
function _ensure(): import("immer/dist/internal").WritableDraft<{
|
|
22
|
+
sequenceEditor?: {
|
|
23
|
+
graphEditor?: {
|
|
24
|
+
isOpen?: boolean | undefined;
|
|
25
|
+
height?: number | undefined;
|
|
26
|
+
} | undefined;
|
|
27
|
+
} | undefined;
|
|
28
|
+
objectEditor?: {} | undefined;
|
|
29
|
+
outlinePanel?: {
|
|
30
|
+
selection?: OutlineSelectionState[] | undefined;
|
|
31
|
+
} | undefined;
|
|
32
|
+
}>;
|
|
33
|
+
namespace outline {
|
|
34
|
+
function _ensure(): import("immer/dist/internal").WritableDraft<{
|
|
35
|
+
selection?: OutlineSelectionState[] | undefined;
|
|
36
|
+
}>;
|
|
37
|
+
namespace selection {
|
|
38
|
+
function set(selection: (OutlineSelectable | SheetTemplate | SheetObjectTemplate)[]): void;
|
|
39
|
+
function unset(): void;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
namespace sequenceEditor {
|
|
43
|
+
function _ensure(): import("immer/dist/internal").WritableDraft<{
|
|
44
|
+
graphEditor?: {
|
|
45
|
+
isOpen?: boolean | undefined;
|
|
46
|
+
height?: number | undefined;
|
|
47
|
+
} | undefined;
|
|
48
|
+
}>;
|
|
49
|
+
namespace graphEditor {
|
|
50
|
+
function setIsOpen(p: {
|
|
51
|
+
isOpen: boolean;
|
|
52
|
+
}): void;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
namespace projects {
|
|
57
|
+
namespace stateByProjectId {
|
|
58
|
+
function _ensure(p: ProjectAddress): import("immer/dist/internal").WritableDraft<import("./types").StudioHistoricStateProject>;
|
|
59
|
+
namespace stateBySheetId {
|
|
60
|
+
function _ensure(p: WithoutSheetInstance<SheetAddress>): import("immer/dist/internal").WritableDraft<import("./types").StudioHistoricStateProjectSheet>;
|
|
61
|
+
function setSelectedInstanceId(p: SheetAddress): void;
|
|
62
|
+
namespace sequenceEditor {
|
|
63
|
+
function addPropToGraphEditor(p: WithoutSheetInstance<PropAddress>): void;
|
|
64
|
+
function removePropFromGraphEditor(p: WithoutSheetInstance<PropAddress>): void;
|
|
65
|
+
function replaceMarkers(p: {
|
|
66
|
+
sheetAddress: SheetAddress;
|
|
67
|
+
markers: Array<StudioHistoricStateSequenceEditorMarker>;
|
|
68
|
+
snappingFunction: (p: number) => number;
|
|
69
|
+
}): void;
|
|
70
|
+
function removeMarker(options: {
|
|
71
|
+
sheetAddress: SheetAddress;
|
|
72
|
+
markerId: SequenceMarkerId;
|
|
73
|
+
}): void;
|
|
74
|
+
function updateMarker(options: {
|
|
75
|
+
sheetAddress: SheetAddress;
|
|
76
|
+
markerId: SequenceMarkerId;
|
|
77
|
+
label: string;
|
|
78
|
+
}): void;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
namespace ephemeral {
|
|
85
|
+
function setShowOutline(showOutline: StudioEphemeralState['showOutline']): void;
|
|
86
|
+
namespace projects {
|
|
87
|
+
namespace stateByProjectId {
|
|
88
|
+
function _ensure(p: ProjectAddress): import("immer/dist/internal").WritableDraft<{
|
|
89
|
+
stateBySheetId: import("@tomorrowevening/theatre-shared/utils/types").StrictRecord<import("@tomorrowevening/theatre-shared/utils/ids").SheetId, {
|
|
90
|
+
stateByObjectKey: import("@tomorrowevening/theatre-shared/utils/types").StrictRecord<import("@tomorrowevening/theatre-shared/utils/ids").ObjectAddressKey, {
|
|
91
|
+
valuesBeingScrubbed?: SerializableMap<boolean> | undefined;
|
|
92
|
+
}>;
|
|
93
|
+
}>;
|
|
94
|
+
}>;
|
|
95
|
+
namespace stateBySheetId {
|
|
96
|
+
function _ensure(p: WithoutSheetInstance<SheetAddress>): import("immer/dist/internal").WritableDraft<{
|
|
97
|
+
stateByObjectKey: import("@tomorrowevening/theatre-shared/utils/types").StrictRecord<import("@tomorrowevening/theatre-shared/utils/ids").ObjectAddressKey, {
|
|
98
|
+
valuesBeingScrubbed?: SerializableMap<boolean> | undefined;
|
|
99
|
+
}>;
|
|
100
|
+
}>;
|
|
101
|
+
namespace stateByObjectKey {
|
|
102
|
+
function _ensure(p: WithoutSheetInstance<SheetObjectAddress>): import("immer/dist/internal").WritableDraft<{
|
|
103
|
+
valuesBeingScrubbed?: SerializableMap<boolean> | undefined;
|
|
104
|
+
}>;
|
|
105
|
+
namespace propsBeingScrubbed {
|
|
106
|
+
function _ensure(p: WithoutSheetInstance<SheetObjectAddress>): import("immer/dist/internal").WritableDraft<SerializableMap<boolean>>;
|
|
107
|
+
function flag(p: WithoutSheetInstance<PropAddress>): void;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
namespace ahistoric {
|
|
115
|
+
function setPinOutline(pinOutline: StudioAhistoricState['pinOutline']): void;
|
|
116
|
+
function setPinDetails(pinDetails: StudioAhistoricState['pinDetails']): void;
|
|
117
|
+
function setPinNotifications(pinNotifications: StudioAhistoricState['pinNotifications']): void;
|
|
118
|
+
function setVisibilityState(visibilityState: StudioAhistoricState['visibilityState']): void;
|
|
119
|
+
function setClipboardKeyframes(keyframes: KeyframeWithPathToPropFromCommonRoot[]): void;
|
|
120
|
+
namespace projects {
|
|
121
|
+
namespace stateByProjectId {
|
|
122
|
+
function _ensure(p: ProjectAddress): import("immer/dist/internal").WritableDraft<{
|
|
123
|
+
collapsedItemsInOutline?: import("@tomorrowevening/theatre-shared/utils/types").StrictRecord<string, boolean> | undefined;
|
|
124
|
+
stateBySheetId: import("@tomorrowevening/theatre-shared/utils/types").StrictRecord<import("@tomorrowevening/theatre-shared/utils/ids").SheetId, {
|
|
125
|
+
sequence?: {
|
|
126
|
+
clippedSpaceRange?: IRange | undefined;
|
|
127
|
+
focusRange?: {
|
|
128
|
+
enabled: boolean;
|
|
129
|
+
range: IRange;
|
|
130
|
+
} | undefined;
|
|
131
|
+
collapsableItems?: import("@tomorrowevening/theatre-shared/utils/PointableSet").PointableSet<StudioSheetItemKey, {
|
|
132
|
+
isCollapsed: boolean;
|
|
133
|
+
}> | undefined;
|
|
134
|
+
} | undefined;
|
|
135
|
+
}>;
|
|
136
|
+
}>;
|
|
137
|
+
namespace collapsedItemsInOutline {
|
|
138
|
+
function _ensure(p: ProjectAddress): import("immer/dist/internal").WritableDraft<import("@tomorrowevening/theatre-shared/utils/types").StrictRecord<string, boolean>>;
|
|
139
|
+
function set(p: ProjectAddress & {
|
|
140
|
+
isCollapsed: boolean;
|
|
141
|
+
itemKey: string;
|
|
142
|
+
}): void;
|
|
143
|
+
}
|
|
144
|
+
namespace stateBySheetId {
|
|
145
|
+
function _ensure(p: WithoutSheetInstance<SheetAddress>): import("immer/dist/internal").WritableDraft<{
|
|
146
|
+
sequence?: {
|
|
147
|
+
clippedSpaceRange?: IRange | undefined;
|
|
148
|
+
focusRange?: {
|
|
149
|
+
enabled: boolean;
|
|
150
|
+
range: IRange;
|
|
151
|
+
} | undefined;
|
|
152
|
+
collapsableItems?: import("@tomorrowevening/theatre-shared/utils/PointableSet").PointableSet<StudioSheetItemKey, {
|
|
153
|
+
isCollapsed: boolean;
|
|
154
|
+
}> | undefined;
|
|
155
|
+
} | undefined;
|
|
156
|
+
}>;
|
|
157
|
+
namespace sequence {
|
|
158
|
+
function _ensure(p: WithoutSheetInstance<SheetAddress>): import("immer/dist/internal").WritableDraft<{
|
|
159
|
+
clippedSpaceRange?: IRange | undefined;
|
|
160
|
+
focusRange?: {
|
|
161
|
+
enabled: boolean;
|
|
162
|
+
range: IRange;
|
|
163
|
+
} | undefined;
|
|
164
|
+
collapsableItems?: import("@tomorrowevening/theatre-shared/utils/PointableSet").PointableSet<StudioSheetItemKey, {
|
|
165
|
+
isCollapsed: boolean;
|
|
166
|
+
}> | undefined;
|
|
167
|
+
}>;
|
|
168
|
+
namespace focusRange {
|
|
169
|
+
function set(p: WithoutSheetInstance<SheetAddress> & {
|
|
170
|
+
range: IRange;
|
|
171
|
+
enabled: boolean;
|
|
172
|
+
}): void;
|
|
173
|
+
function unset(p: WithoutSheetInstance<SheetAddress>): void;
|
|
174
|
+
}
|
|
175
|
+
namespace clippedSpaceRange {
|
|
176
|
+
function set(p: WithoutSheetInstance<SheetAddress> & {
|
|
177
|
+
range: IRange;
|
|
178
|
+
}): void;
|
|
179
|
+
}
|
|
180
|
+
namespace sequenceEditorCollapsableItems {
|
|
181
|
+
function set(p: WithoutSheetInstance<SheetAddress> & {
|
|
182
|
+
studioSheetItemKey: StudioSheetItemKey;
|
|
183
|
+
isCollapsed: boolean;
|
|
184
|
+
}): void;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
namespace coreByProject {
|
|
193
|
+
namespace historic {
|
|
194
|
+
namespace revisionHistory {
|
|
195
|
+
function add(p: ProjectAddress & {
|
|
196
|
+
revision: string;
|
|
197
|
+
}): void;
|
|
198
|
+
}
|
|
199
|
+
namespace sheetsById {
|
|
200
|
+
function _ensure(p: WithoutSheetInstance<SheetAddress>): SheetState_Historic;
|
|
201
|
+
function forgetObject(p: WithoutSheetInstance<SheetObjectAddress>): void;
|
|
202
|
+
function forgetSheet(p: WithoutSheetInstance<SheetAddress>): void;
|
|
203
|
+
namespace sequence {
|
|
204
|
+
export function _ensure(p: WithoutSheetInstance<SheetAddress>): HistoricPositionalSequence;
|
|
205
|
+
export function setLength(p: WithoutSheetInstance<SheetAddress> & {
|
|
206
|
+
length: number;
|
|
207
|
+
}): void;
|
|
208
|
+
export function setSubUnitsPerUnit(p: WithoutSheetInstance<SheetAddress> & {
|
|
209
|
+
subUnitsPerUnit: number;
|
|
210
|
+
}): void;
|
|
211
|
+
export function setPrimitivePropAsSequenced(p: WithoutSheetInstance<PropAddress>, config: PropTypeConfig): void;
|
|
212
|
+
export function setPrimitivePropAsStatic(p: WithoutSheetInstance<PropAddress> & {
|
|
213
|
+
value: SerializablePrimitive;
|
|
214
|
+
}): void;
|
|
215
|
+
export function setCompoundPropAsStatic(p: WithoutSheetInstance<PropAddress> & {
|
|
216
|
+
value: SerializableMap;
|
|
217
|
+
}): void;
|
|
218
|
+
/**
|
|
219
|
+
* Sets a keyframe at the exact specified position.
|
|
220
|
+
* Any position snapping should be done by the caller.
|
|
221
|
+
*/
|
|
222
|
+
export function setKeyframeAtPosition<T extends SerializableValue>(p: WithoutSheetInstance<SheetObjectAddress> & {
|
|
223
|
+
trackId: SequenceTrackId;
|
|
224
|
+
position: number;
|
|
225
|
+
handles?: [number, number, number, number];
|
|
226
|
+
value: T;
|
|
227
|
+
snappingFunction: SnappingFunction;
|
|
228
|
+
type?: KeyframeType;
|
|
229
|
+
}): void;
|
|
230
|
+
export function unsetKeyframeAtPosition(p: WithoutSheetInstance<SheetObjectAddress> & {
|
|
231
|
+
trackId: SequenceTrackId;
|
|
232
|
+
position: number;
|
|
233
|
+
}): void;
|
|
234
|
+
type SnappingFunction = (p: number) => number;
|
|
235
|
+
export function transformKeyframes(p: WithoutSheetInstance<SheetObjectAddress> & {
|
|
236
|
+
trackId: SequenceTrackId;
|
|
237
|
+
keyframeIds: KeyframeId[];
|
|
238
|
+
translate: number;
|
|
239
|
+
scale: number;
|
|
240
|
+
origin: number;
|
|
241
|
+
snappingFunction: SnappingFunction;
|
|
242
|
+
}): void;
|
|
243
|
+
/**
|
|
244
|
+
* Sets the easing between keyframes
|
|
245
|
+
*
|
|
246
|
+
* X = in keyframeIds
|
|
247
|
+
* * = not in keyframeIds
|
|
248
|
+
* + = modified handle
|
|
249
|
+
* ```
|
|
250
|
+
* X- --- -*- --- -X
|
|
251
|
+
* X+ --- +*- --- -X+
|
|
252
|
+
* ```
|
|
253
|
+
*
|
|
254
|
+
* TODO - explain further
|
|
255
|
+
*/
|
|
256
|
+
export function setTweenBetweenKeyframes(p: WithoutSheetInstance<SheetObjectAddress> & {
|
|
257
|
+
trackId: SequenceTrackId;
|
|
258
|
+
keyframeIds: KeyframeId[];
|
|
259
|
+
handles: [number, number, number, number];
|
|
260
|
+
}): void;
|
|
261
|
+
export function setHandlesForKeyframe(p: WithoutSheetInstance<SheetObjectAddress> & {
|
|
262
|
+
trackId: SequenceTrackId;
|
|
263
|
+
keyframeId: KeyframeId;
|
|
264
|
+
start?: [number, number];
|
|
265
|
+
end?: [number, number];
|
|
266
|
+
}): void;
|
|
267
|
+
export function deleteKeyframes(p: WithoutSheetInstance<SheetObjectAddress> & {
|
|
268
|
+
trackId: SequenceTrackId;
|
|
269
|
+
keyframeIds: KeyframeId[];
|
|
270
|
+
}): void;
|
|
271
|
+
export function setKeyframeType(p: WithoutSheetInstance<SheetObjectAddress> & {
|
|
272
|
+
trackId: SequenceTrackId;
|
|
273
|
+
keyframeId: KeyframeId;
|
|
274
|
+
keyframeType: KeyframeType;
|
|
275
|
+
}): void;
|
|
276
|
+
export function replaceKeyframes(p: WithoutSheetInstance<SheetObjectAddress> & {
|
|
277
|
+
trackId: SequenceTrackId;
|
|
278
|
+
keyframes: Array<Keyframe>;
|
|
279
|
+
snappingFunction: SnappingFunction;
|
|
280
|
+
}): void;
|
|
281
|
+
export {};
|
|
282
|
+
}
|
|
283
|
+
namespace staticOverrides {
|
|
284
|
+
namespace byObject {
|
|
285
|
+
function setValueOfCompoundProp(p: WithoutSheetInstance<PropAddress> & {
|
|
286
|
+
value: SerializableMap;
|
|
287
|
+
}): void;
|
|
288
|
+
function setValueOfPrimitiveProp(p: WithoutSheetInstance<PropAddress> & {
|
|
289
|
+
value: SerializablePrimitive;
|
|
290
|
+
}): void;
|
|
291
|
+
function unsetValueOfPrimitiveProp(p: WithoutSheetInstance<PropAddress>): void;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
export type IStateEditors = typeof stateEditors;
|
|
299
|
+
export {};
|
|
300
|
+
//# sourceMappingURL=stateEditors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stateEditors.d.ts","sourceRoot":"","sources":["../../../../../studio/src/store/stateEditors.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import type { ProjectState } from '@tomorrowevening/theatre-core/projects/store/storeTypes';
|
|
2
|
+
import type { Keyframe } from '@tomorrowevening/theatre-core/projects/store/types/SheetState_Historic';
|
|
3
|
+
import type { ProjectId, SheetId } from '@tomorrowevening/theatre-shared/utils/ids';
|
|
4
|
+
import type { IRange, StrictRecord } from '@tomorrowevening/theatre-shared/utils/types';
|
|
5
|
+
import type { PointableSet } from '@tomorrowevening/theatre-shared/utils/PointableSet';
|
|
6
|
+
import type { StudioSheetItemKey } from '@tomorrowevening/theatre-shared/utils/ids';
|
|
7
|
+
export type UpdateCheckerResponse = {
|
|
8
|
+
hasUpdates: true;
|
|
9
|
+
newVersion: string;
|
|
10
|
+
releasePage: string;
|
|
11
|
+
} | {
|
|
12
|
+
hasUpdates: false;
|
|
13
|
+
};
|
|
14
|
+
export type KeyframeWithPathToPropFromCommonRoot = {
|
|
15
|
+
pathToProp: (string | number)[];
|
|
16
|
+
keyframe: Keyframe;
|
|
17
|
+
};
|
|
18
|
+
export type StudioAhistoricState = {
|
|
19
|
+
/**
|
|
20
|
+
* undefined means the outline menu is pinned
|
|
21
|
+
*/
|
|
22
|
+
pinOutline?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* undefined means the detail panel is pinned
|
|
25
|
+
*/
|
|
26
|
+
pinDetails?: boolean;
|
|
27
|
+
pinNotifications?: boolean;
|
|
28
|
+
visibilityState: 'everythingIsHidden' | 'everythingIsVisible';
|
|
29
|
+
clipboard?: {
|
|
30
|
+
keyframesWithRelativePaths?: KeyframeWithPathToPropFromCommonRoot[];
|
|
31
|
+
};
|
|
32
|
+
theTrigger: {
|
|
33
|
+
position: {
|
|
34
|
+
closestCorner: 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight';
|
|
35
|
+
distanceFromHorizontalEdge: number;
|
|
36
|
+
distanceFromVerticalEdge: number;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
updateChecker?: {
|
|
40
|
+
lastChecked: number;
|
|
41
|
+
result: UpdateCheckerResponse | 'error';
|
|
42
|
+
};
|
|
43
|
+
projects: {
|
|
44
|
+
stateByProjectId: StrictRecord<ProjectId, {
|
|
45
|
+
collapsedItemsInOutline?: StrictRecord<string, boolean>;
|
|
46
|
+
stateBySheetId: StrictRecord<SheetId, {
|
|
47
|
+
sequence?: {
|
|
48
|
+
/**
|
|
49
|
+
* Stores the zoom level and scroll position of the sequence editor panel
|
|
50
|
+
* for this particular sheet.
|
|
51
|
+
*/
|
|
52
|
+
clippedSpaceRange?: IRange;
|
|
53
|
+
/**
|
|
54
|
+
* @remarks
|
|
55
|
+
* We just added this in 0.4.8. Because of that, we defined this as an optional
|
|
56
|
+
* prop, so that a user upgrading from 0.4.7 where `focusRange` did not exist,
|
|
57
|
+
* would not be shown an error.
|
|
58
|
+
*
|
|
59
|
+
* Basically, as the store's state evolves, it should always be backwards-compatible.
|
|
60
|
+
* In other words, the state of `<0.4.8` should always be valid state for `>=0.4.8`.
|
|
61
|
+
*
|
|
62
|
+
* If that is not feasible, then we should write a migration script.
|
|
63
|
+
*/
|
|
64
|
+
focusRange?: {
|
|
65
|
+
enabled: boolean;
|
|
66
|
+
range: IRange;
|
|
67
|
+
};
|
|
68
|
+
collapsableItems?: PointableSet<StudioSheetItemKey, {
|
|
69
|
+
isCollapsed: boolean;
|
|
70
|
+
}>;
|
|
71
|
+
};
|
|
72
|
+
}>;
|
|
73
|
+
}>;
|
|
74
|
+
};
|
|
75
|
+
coreByProject: {
|
|
76
|
+
[projectId in ProjectId]: ProjectState['ahistoric'];
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
//# sourceMappingURL=ahistoric.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ahistoric.d.ts","sourceRoot":"","sources":["../../../../../../studio/src/store/types/ahistoric.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,yDAAyD,CAAA;AACzF,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,wEAAwE,CAAA;AACpG,OAAO,KAAK,EAAC,SAAS,EAAE,OAAO,EAAC,MAAM,2CAA2C,CAAA;AACjF,OAAO,KAAK,EAAC,MAAM,EAAE,YAAY,EAAC,MAAM,6CAA6C,CAAA;AACrF,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,oDAAoD,CAAA;AACpF,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,2CAA2C,CAAA;AAEjF,MAAM,MAAM,qBAAqB,GAC7B;IAAC,UAAU,EAAE,IAAI,CAAC;IAAC,UAAU,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,MAAM,CAAA;CAAC,GAC3D;IAAC,UAAU,EAAE,KAAK,CAAA;CAAC,CAAA;AAEvB,MAAM,MAAM,oCAAoC,GAAG;IACjD,UAAU,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAA;IAC/B,QAAQ,EAAE,QAAQ,CAAA;CACnB,CAAA;AAED,MAAM,MAAM,oBAAoB,GAAG;IACjC;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,eAAe,EAAE,oBAAoB,GAAG,qBAAqB,CAAA;IAC7D,SAAS,CAAC,EAAE;QACV,0BAA0B,CAAC,EAAE,oCAAoC,EAAE,CAAA;KAEpE,CAAA;IACD,UAAU,EAAE;QACV,QAAQ,EAAE;YACR,aAAa,EAAE,SAAS,GAAG,UAAU,GAAG,YAAY,GAAG,aAAa,CAAA;YACpE,0BAA0B,EAAE,MAAM,CAAA;YAClC,wBAAwB,EAAE,MAAM,CAAA;SACjC,CAAA;KACF,CAAA;IACD,aAAa,CAAC,EAAE;QAEd,WAAW,EAAE,MAAM,CAAA;QACnB,MAAM,EAAE,qBAAqB,GAAG,OAAO,CAAA;KACxC,CAAA;IACD,QAAQ,EAAE;QACR,gBAAgB,EAAE,YAAY,CAC5B,SAAS,EACT;YACE,uBAAuB,CAAC,EAAE,YAAY,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;YACvD,cAAc,EAAE,YAAY,CAC1B,OAAO,EACP;gBACE,QAAQ,CAAC,EAAE;oBACT;;;uBAGG;oBACH,iBAAiB,CAAC,EAAE,MAAM,CAAA;oBAE1B;;;;;;;;;;uBAUG;oBACH,UAAU,CAAC,EAAE;wBACX,OAAO,EAAE,OAAO,CAAA;wBAChB,KAAK,EAAE,MAAM,CAAA;qBACd,CAAA;oBAED,gBAAgB,CAAC,EAAE,YAAY,CAC7B,kBAAkB,EAClB;wBACE,WAAW,EAAE,OAAO,CAAA;qBACrB,CACF,CAAA;iBACF,CAAA;aACF,CACF,CAAA;SACF,CACF,CAAA;KACF,CAAA;IACD,aAAa,EAAE;SAAE,SAAS,IAAI,SAAS,GAAG,YAAY,CAAC,WAAW,CAAC;KAAC,CAAA;CACrE,CAAA"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { ProjectState } from '@tomorrowevening/theatre-core/projects/store/storeTypes';
|
|
2
|
+
import type { ObjectAddressKey, ProjectId, SheetId } from '@tomorrowevening/theatre-shared/utils/ids';
|
|
3
|
+
import type { SerializableMap, StrictRecord } from '@tomorrowevening/theatre-shared/utils/types';
|
|
4
|
+
import type { IExtension, PaneClassDefinition } from '@tomorrowevening/theatre-studio/TheatreStudio';
|
|
5
|
+
/**
|
|
6
|
+
* Technically, all parts of the ephemeral state can be implemented
|
|
7
|
+
* outside the store, using simple Box|Atom of dataverse.
|
|
8
|
+
*
|
|
9
|
+
* The only reason that _some_ of these cases reside in StudioEphemeralState,
|
|
10
|
+
* is to bring them into attention, because these pieces of the state are useful
|
|
11
|
+
* in several (3+) places in the application.
|
|
12
|
+
*
|
|
13
|
+
* Note: Should we just implement all of ephemeral state as boxes and atoms,
|
|
14
|
+
* and remove ephemeral state from the store?
|
|
15
|
+
* - We'd still have to namespace and organize these pieces of ephemeral state,
|
|
16
|
+
* so they're discoverable.
|
|
17
|
+
*
|
|
18
|
+
* Disadvantage of that:
|
|
19
|
+
* - We may want to send over the wire pieces the ephemeral state that other users
|
|
20
|
+
* have interest in. For example, if Alice is dragging Planet.position, Bob would
|
|
21
|
+
* want to observe the drag, and not just its final state, which would be in the historic
|
|
22
|
+
* state. (still, ephemeral state would never be persisted, but parts of it could be sent
|
|
23
|
+
* over the wire).
|
|
24
|
+
*/
|
|
25
|
+
export type StudioEphemeralState = {
|
|
26
|
+
initialised: boolean;
|
|
27
|
+
coreByProject: {
|
|
28
|
+
[projectId in string]: ProjectState['ephemeral'];
|
|
29
|
+
};
|
|
30
|
+
projects: {
|
|
31
|
+
stateByProjectId: StrictRecord<ProjectId, {
|
|
32
|
+
stateBySheetId: StrictRecord<SheetId, {
|
|
33
|
+
stateByObjectKey: StrictRecord<ObjectAddressKey, {
|
|
34
|
+
/** e.g. `{color: {r: true, g: true}, price: true}` */
|
|
35
|
+
valuesBeingScrubbed?: SerializableMap<boolean>;
|
|
36
|
+
}>;
|
|
37
|
+
}>;
|
|
38
|
+
}>;
|
|
39
|
+
};
|
|
40
|
+
extensions: {
|
|
41
|
+
byId: {
|
|
42
|
+
[extensionId in string]?: IExtension;
|
|
43
|
+
};
|
|
44
|
+
paneClasses: {
|
|
45
|
+
[paneClassName in string]?: {
|
|
46
|
+
extensionId: string;
|
|
47
|
+
classDefinition: PaneClassDefinition;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
showOutline: boolean;
|
|
52
|
+
};
|
|
53
|
+
//# sourceMappingURL=ephemeral.d.ts.map
|