@tomorrowevening/theatre-studio 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (822) hide show
  1. package/dist/IDBStorage.d.ts +16 -0
  2. package/dist/IDBStorage.d.ts.map +1 -0
  3. package/dist/IDBStorage.js +19 -0
  4. package/dist/PaneManager.d.ts +16 -0
  5. package/dist/PaneManager.d.ts.map +1 -0
  6. package/dist/PaneManager.js +112 -0
  7. package/dist/Scrub.d.ts +83 -0
  8. package/dist/Scrub.d.ts.map +1 -0
  9. package/dist/Scrub.js +134 -0
  10. package/dist/Studio.d.ts +79 -0
  11. package/dist/Studio.d.ts.map +1 -0
  12. package/dist/Studio.js +405 -0
  13. package/dist/StudioBundle.d.ts +10 -0
  14. package/dist/StudioBundle.d.ts.map +1 -0
  15. package/dist/StudioBundle.js +21 -0
  16. package/dist/StudioStore/StudioStore.d.ts +46 -0
  17. package/dist/StudioStore/StudioStore.d.ts.map +1 -0
  18. package/dist/StudioStore/StudioStore.js +163 -0
  19. package/dist/StudioStore/createTransactionPrivateApi.d.ts +3 -0
  20. package/dist/StudioStore/createTransactionPrivateApi.d.ts.map +1 -0
  21. package/dist/StudioStore/createTransactionPrivateApi.js +204 -0
  22. package/dist/StudioStore/generateDiskStateRevision.d.ts +2 -0
  23. package/dist/StudioStore/generateDiskStateRevision.d.ts.map +1 -0
  24. package/dist/StudioStore/generateDiskStateRevision.js +4 -0
  25. package/dist/StudioStore/persistStateOfStudio.d.ts +5 -0
  26. package/dist/StudioStore/persistStateOfStudio.d.ts.map +1 -0
  27. package/dist/StudioStore/persistStateOfStudio.js +61 -0
  28. package/dist/TheatreStudio.d.ts +426 -0
  29. package/dist/TheatreStudio.d.ts.map +1 -0
  30. package/dist/TheatreStudio.js +154 -0
  31. package/dist/UI/UI.d.ts +14 -0
  32. package/dist/UI/UI.d.ts.map +1 -0
  33. package/dist/UI/UI.js +65 -0
  34. package/dist/UI/UINonSSRBits.d.ts +10 -0
  35. package/dist/UI/UINonSSRBits.d.ts.map +1 -0
  36. package/dist/UI/UINonSSRBits.js +60 -0
  37. package/dist/UIRoot/PanelsRoot.d.ts +4 -0
  38. package/dist/UIRoot/PanelsRoot.d.ts.map +1 -0
  39. package/dist/UIRoot/PanelsRoot.js +19 -0
  40. package/dist/UIRoot/PointerCapturing.d.ts +46 -0
  41. package/dist/UIRoot/PointerCapturing.d.ts.map +1 -0
  42. package/dist/UIRoot/PointerCapturing.js +96 -0
  43. package/dist/UIRoot/ProvideTheme.d.ts +6 -0
  44. package/dist/UIRoot/ProvideTheme.d.ts.map +1 -0
  45. package/dist/UIRoot/ProvideTheme.js +9 -0
  46. package/dist/UIRoot/UIRoot.d.ts +5 -0
  47. package/dist/UIRoot/UIRoot.d.ts.map +1 -0
  48. package/dist/UIRoot/UIRoot.js +79 -0
  49. package/dist/UIRoot/useKeyboardShortcuts.d.ts +7 -0
  50. package/dist/UIRoot/useKeyboardShortcuts.d.ts.map +1 -0
  51. package/dist/UIRoot/useKeyboardShortcuts.js +158 -0
  52. package/dist/checkForUpdates.d.ts +2 -0
  53. package/dist/checkForUpdates.d.ts.map +1 -0
  54. package/dist/checkForUpdates.js +86 -0
  55. package/dist/css.d.ts +39 -0
  56. package/dist/css.d.ts.map +1 -0
  57. package/dist/css.js +116 -0
  58. package/dist/getStudio.d.ts +7 -0
  59. package/dist/getStudio.d.ts.map +1 -0
  60. package/dist/getStudio.js +10 -0
  61. package/dist/index.d.ts +6 -9
  62. package/dist/index.d.ts.map +1 -0
  63. package/dist/index.js +56 -105
  64. package/dist/notify.d.ts +12 -0
  65. package/dist/notify.d.ts.map +1 -0
  66. package/dist/notify.js +328 -0
  67. package/dist/panels/BasePanel/BasePanel.d.ts +35 -0
  68. package/dist/panels/BasePanel/BasePanel.d.ts.map +1 -0
  69. package/dist/panels/BasePanel/BasePanel.js +74 -0
  70. package/dist/panels/BasePanel/ExtensionPaneWrapper.d.ts +8 -0
  71. package/dist/panels/BasePanel/ExtensionPaneWrapper.d.ts.map +1 -0
  72. package/dist/panels/BasePanel/ExtensionPaneWrapper.js +138 -0
  73. package/dist/panels/BasePanel/PanelDragZone.d.ts +4 -0
  74. package/dist/panels/BasePanel/PanelDragZone.d.ts.map +1 -0
  75. package/dist/panels/BasePanel/PanelDragZone.js +88 -0
  76. package/dist/panels/BasePanel/PanelResizeHandle.d.ts +7 -0
  77. package/dist/panels/BasePanel/PanelResizeHandle.d.ts.map +1 -0
  78. package/dist/panels/BasePanel/PanelResizeHandle.js +184 -0
  79. package/dist/panels/BasePanel/PanelResizers.d.ts +4 -0
  80. package/dist/panels/BasePanel/PanelResizers.d.ts.map +1 -0
  81. package/dist/panels/BasePanel/PanelResizers.js +14 -0
  82. package/dist/panels/BasePanel/PanelWrapper.d.ts +4 -0
  83. package/dist/panels/BasePanel/PanelWrapper.d.ts.map +1 -0
  84. package/dist/panels/BasePanel/PanelWrapper.js +34 -0
  85. package/dist/panels/BasePanel/common.d.ts +15 -0
  86. package/dist/panels/BasePanel/common.d.ts.map +1 -0
  87. package/dist/panels/BasePanel/common.js +52 -0
  88. package/dist/panels/DetailPanel/DetailPanel.d.ts +6 -0
  89. package/dist/panels/DetailPanel/DetailPanel.d.ts.map +1 -0
  90. package/dist/panels/DetailPanel/DetailPanel.js +146 -0
  91. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailCompoundPropEditor.d.ts +14 -0
  92. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailCompoundPropEditor.d.ts.map +1 -0
  93. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailCompoundPropEditor.js +169 -0
  94. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailSimplePropEditor.d.ts +20 -0
  95. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailSimplePropEditor.d.ts.map +1 -0
  96. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/DetailSimplePropEditor.js +22 -0
  97. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/SingleRowPropEditor.d.ts +14 -0
  98. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/SingleRowPropEditor.d.ts.map +1 -0
  99. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/SingleRowPropEditor.js +89 -0
  100. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/getDetailRowHighlightBackground.d.ts +5 -0
  101. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/getDetailRowHighlightBackground.d.ts.map +1 -0
  102. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/getDetailRowHighlightBackground.js +7 -0
  103. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/rowIndentationFormulaCSS.d.ts +2 -0
  104. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/rowIndentationFormulaCSS.d.ts.map +1 -0
  105. package/dist/panels/DetailPanel/DeterminePropEditorForDetail/rowIndentationFormulaCSS.js +1 -0
  106. package/dist/panels/DetailPanel/DeterminePropEditorForDetail.d.ts +26 -0
  107. package/dist/panels/DetailPanel/DeterminePropEditorForDetail.d.ts.map +1 -0
  108. package/dist/panels/DetailPanel/DeterminePropEditorForDetail.js +28 -0
  109. package/dist/panels/DetailPanel/EmptyState.d.ts +4 -0
  110. package/dist/panels/DetailPanel/EmptyState.d.ts.map +1 -0
  111. package/dist/panels/DetailPanel/EmptyState.js +36 -0
  112. package/dist/panels/DetailPanel/ObjectDetails.d.ts +8 -0
  113. package/dist/panels/DetailPanel/ObjectDetails.d.ts.map +1 -0
  114. package/dist/panels/DetailPanel/ObjectDetails.js +52 -0
  115. package/dist/panels/DetailPanel/ProjectDetails/StateConflictRow.d.ts +7 -0
  116. package/dist/panels/DetailPanel/ProjectDetails/StateConflictRow.d.ts.map +1 -0
  117. package/dist/panels/DetailPanel/ProjectDetails/StateConflictRow.js +86 -0
  118. package/dist/panels/DetailPanel/ProjectDetails.d.ts +7 -0
  119. package/dist/panels/DetailPanel/ProjectDetails.d.ts.map +1 -0
  120. package/dist/panels/DetailPanel/ProjectDetails.js +98 -0
  121. package/dist/panels/OutlinePanel/BaseItem.d.ts +18 -0
  122. package/dist/panels/OutlinePanel/BaseItem.d.ts.map +1 -0
  123. package/dist/panels/OutlinePanel/BaseItem.js +136 -0
  124. package/dist/panels/OutlinePanel/ObjectsList/ObjectItem.d.ts +8 -0
  125. package/dist/panels/OutlinePanel/ObjectsList/ObjectItem.d.ts.map +1 -0
  126. package/dist/panels/OutlinePanel/ObjectsList/ObjectItem.js +14 -0
  127. package/dist/panels/OutlinePanel/ObjectsList/ObjectsList.d.ts +11 -0
  128. package/dist/panels/OutlinePanel/ObjectsList/ObjectsList.d.ts.map +1 -0
  129. package/dist/panels/OutlinePanel/ObjectsList/ObjectsList.js +85 -0
  130. package/dist/panels/OutlinePanel/OutlinePanel.d.ts +5 -0
  131. package/dist/panels/OutlinePanel/OutlinePanel.d.ts.map +1 -0
  132. package/dist/panels/OutlinePanel/OutlinePanel.js +73 -0
  133. package/dist/panels/OutlinePanel/ProjectsList/ProjectListItem.d.ts +8 -0
  134. package/dist/panels/OutlinePanel/ProjectsList/ProjectListItem.d.ts.map +1 -0
  135. package/dist/panels/OutlinePanel/ProjectsList/ProjectListItem.js +38 -0
  136. package/dist/panels/OutlinePanel/ProjectsList/ProjectsList.d.ts +4 -0
  137. package/dist/panels/OutlinePanel/ProjectsList/ProjectsList.d.ts.map +1 -0
  138. package/dist/panels/OutlinePanel/ProjectsList/ProjectsList.js +22 -0
  139. package/dist/panels/OutlinePanel/SheetsList/SheetInstanceItem.d.ts +7 -0
  140. package/dist/panels/OutlinePanel/SheetsList/SheetInstanceItem.d.ts.map +1 -0
  141. package/dist/panels/OutlinePanel/SheetsList/SheetInstanceItem.js +36 -0
  142. package/dist/panels/OutlinePanel/SheetsList/SheetItem.d.ts +8 -0
  143. package/dist/panels/OutlinePanel/SheetsList/SheetItem.d.ts.map +1 -0
  144. package/dist/panels/OutlinePanel/SheetsList/SheetItem.js +23 -0
  145. package/dist/panels/OutlinePanel/SheetsList/SheetsList.d.ts +8 -0
  146. package/dist/panels/OutlinePanel/SheetsList/SheetsList.d.ts.map +1 -0
  147. package/dist/panels/OutlinePanel/SheetsList/SheetsList.js +15 -0
  148. package/dist/panels/OutlinePanel/outlinePanelUtils.d.ts +11 -0
  149. package/dist/panels/OutlinePanel/outlinePanelUtils.d.ts.map +1 -0
  150. package/dist/panels/OutlinePanel/outlinePanelUtils.js +23 -0
  151. package/dist/panels/SequenceEditorPanel/DopeSheet/DopeSheet.d.ts +8 -0
  152. package/dist/panels/SequenceEditorPanel/DopeSheet/DopeSheet.d.ts.map +1 -0
  153. package/dist/panels/SequenceEditorPanel/DopeSheet/DopeSheet.js +21 -0
  154. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/AnyCompositeRow.d.ts +21 -0
  155. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/AnyCompositeRow.d.ts.map +1 -0
  156. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/AnyCompositeRow.js +74 -0
  157. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/Left.d.ts +8 -0
  158. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/Left.d.ts.map +1 -0
  159. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/Left.js +25 -0
  160. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PrimitivePropRow.d.ts +7 -0
  161. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PrimitivePropRow.d.ts.map +1 -0
  162. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PrimitivePropRow.js +97 -0
  163. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PropWithChildrenRow.d.ts +8 -0
  164. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PropWithChildrenRow.d.ts.map +1 -0
  165. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/PropWithChildrenRow.js +15 -0
  166. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetObjectRow.d.ts +7 -0
  167. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetObjectRow.d.ts.map +1 -0
  168. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetObjectRow.js +19 -0
  169. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetRow.d.ts +7 -0
  170. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetRow.d.ts.map +1 -0
  171. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/SheetRow.js +20 -0
  172. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/usePropHighlightMouseEnter.d.ts +4 -0
  173. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/usePropHighlightMouseEnter.d.ts.map +1 -0
  174. package/dist/panels/SequenceEditorPanel/DopeSheet/Left/usePropHighlightMouseEnter.js +33 -0
  175. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeConnector.d.ts +13 -0
  176. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeConnector.d.ts.map +1 -0
  177. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeConnector.js +187 -0
  178. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeDot.d.ts +10 -0
  179. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeDot.d.ts.map +1 -0
  180. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeDot.js +158 -0
  181. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeEditor.d.ts +44 -0
  182. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeEditor.d.ts.map +1 -0
  183. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeEditor.js +32 -0
  184. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeVisualDot.d.ts +10 -0
  185. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeVisualDot.d.ts.map +1 -0
  186. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/AggregateKeyframeVisualDot.js +61 -0
  187. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/iif.d.ts +2 -0
  188. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/iif.d.ts.map +1 -0
  189. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/iif.js +3 -0
  190. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/useAggregateKeyframeEditorUtils.d.ts +23 -0
  191. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/useAggregateKeyframeEditorUtils.d.ts.map +1 -0
  192. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregateKeyframeEditor/useAggregateKeyframeEditorUtils.js +73 -0
  193. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregatedKeyframeTrack.d.ts +19 -0
  194. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregatedKeyframeTrack.d.ts.map +1 -0
  195. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/AggregatedKeyframeTrack/AggregatedKeyframeTrack.js +407 -0
  196. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/BasicKeyframedTrack.d.ts +13 -0
  197. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/BasicKeyframedTrack.d.ts.map +1 -0
  198. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/BasicKeyframedTrack.js +108 -0
  199. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/BasicKeyframeConnector.d.ts +6 -0
  200. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/BasicKeyframeConnector.d.ts.map +1 -0
  201. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/BasicKeyframeConnector.js +185 -0
  202. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveEditorPopover.d.ts +21 -0
  203. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveEditorPopover.d.ts.map +1 -0
  204. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveEditorPopover.js +397 -0
  205. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveSegmentEditor.d.ts +12 -0
  206. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveSegmentEditor.d.ts.map +1 -0
  207. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/CurveSegmentEditor.js +136 -0
  208. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/EasingOption.d.ts +15 -0
  209. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/EasingOption.d.ts.map +1 -0
  210. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/EasingOption.js +52 -0
  211. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/SVGCurveSegment.d.ts +9 -0
  212. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/SVGCurveSegment.d.ts.map +1 -0
  213. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/SVGCurveSegment.js +43 -0
  214. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/colors.d.ts +4 -0
  215. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/colors.d.ts.map +1 -0
  216. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/colors.js +3 -0
  217. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/shared.d.ts +43 -0
  218. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/shared.d.ts.map +1 -0
  219. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/shared.js +84 -0
  220. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useFreezableMemo.d.ts +10 -0
  221. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useFreezableMemo.d.ts.map +1 -0
  222. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useFreezableMemo.js +16 -0
  223. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useUIOptionGrid.d.ts +32 -0
  224. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useUIOptionGrid.d.ts.map +1 -0
  225. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/CurveEditorPopover/useUIOptionGrid.js +82 -0
  226. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/DeterminePropEditorForSingleKeyframe.d.ts +17 -0
  227. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/DeterminePropEditorForSingleKeyframe.d.ts.map +1 -0
  228. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/DeterminePropEditorForSingleKeyframe.js +93 -0
  229. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeDot.d.ts +8 -0
  230. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeDot.d.ts.map +1 -0
  231. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeDot.js +254 -0
  232. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeEditor.d.ts +19 -0
  233. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeEditor.d.ts.map +1 -0
  234. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/SingleKeyframeEditor.js +22 -0
  235. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useSingleKeyframeInlineEditorPopover.d.ts +29 -0
  236. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useSingleKeyframeInlineEditorPopover.d.ts.map +1 -0
  237. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useSingleKeyframeInlineEditorPopover.js +11 -0
  238. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useTempTransactionEditingTools.d.ts +18 -0
  239. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useTempTransactionEditingTools.d.ts.map +1 -0
  240. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/BasicKeyframedTrack/KeyframeEditor/useTempTransactionEditingTools.js +43 -0
  241. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetBackground.d.ts +8 -0
  242. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetBackground.d.ts.map +1 -0
  243. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetBackground.js +24 -0
  244. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetSelectionView.d.ts +10 -0
  245. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetSelectionView.d.ts.map +1 -0
  246. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/DopeSheetSelectionView.js +272 -0
  247. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/FocusRangeCurtains.d.ts +8 -0
  248. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/FocusRangeCurtains.d.ts.map +1 -0
  249. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/FocusRangeCurtains.js +88 -0
  250. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/HorizontallyScrollableArea.d.ts +10 -0
  251. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/HorizontallyScrollableArea.d.ts.map +1 -0
  252. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/HorizontallyScrollableArea.js +215 -0
  253. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/KeyframeSnapTarget.d.ts +36 -0
  254. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/KeyframeSnapTarget.d.ts.map +1 -0
  255. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/KeyframeSnapTarget.js +55 -0
  256. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthEditorPopover.d.ts +12 -0
  257. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthEditorPopover.d.ts.map +1 -0
  258. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthEditorPopover.js +69 -0
  259. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthIndicator.d.ts +13 -0
  260. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthIndicator.d.ts.map +1 -0
  261. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/LengthIndicator/LengthIndicator.js +217 -0
  262. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PrimitivePropRow.d.ts +10 -0
  263. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PrimitivePropRow.d.ts.map +1 -0
  264. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PrimitivePropRow.js +25 -0
  265. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PropWithChildrenRow.d.ts +11 -0
  266. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PropWithChildrenRow.d.ts.map +1 -0
  267. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/PropWithChildrenRow.js +18 -0
  268. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Right.d.ts +9 -0
  269. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Right.d.ts.map +1 -0
  270. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Right.js +30 -0
  271. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Row.d.ts +21 -0
  272. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Row.d.ts.map +1 -0
  273. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/Row.js +50 -0
  274. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetObjectRow.d.ts +10 -0
  275. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetObjectRow.d.ts.map +1 -0
  276. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetObjectRow.js +14 -0
  277. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetRow.d.ts +10 -0
  278. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetRow.d.ts.map +1 -0
  279. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/SheetRow.js +14 -0
  280. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/collectAggregateKeyframes.d.ts +58 -0
  281. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/collectAggregateKeyframes.d.ts.map +1 -0
  282. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/collectAggregateKeyframes.js +92 -0
  283. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/keyframeRowUI/ConnectorLine.d.ts +20 -0
  284. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/keyframeRowUI/ConnectorLine.d.ts.map +1 -0
  285. package/dist/panels/SequenceEditorPanel/DopeSheet/Right/keyframeRowUI/ConnectorLine.js +62 -0
  286. package/dist/panels/SequenceEditorPanel/DopeSheet/selections.d.ts +82 -0
  287. package/dist/panels/SequenceEditorPanel/DopeSheet/selections.d.ts.map +1 -0
  288. package/dist/panels/SequenceEditorPanel/DopeSheet/selections.js +149 -0
  289. package/dist/panels/SequenceEditorPanel/DopeSheet/setCollapsedSheetObjectOrCompoundProp.d.ts +7 -0
  290. package/dist/panels/SequenceEditorPanel/DopeSheet/setCollapsedSheetObjectOrCompoundProp.d.ts.map +1 -0
  291. package/dist/panels/SequenceEditorPanel/DopeSheet/setCollapsedSheetObjectOrCompoundProp.js +10 -0
  292. package/dist/panels/SequenceEditorPanel/FrameGrid/FrameGrid.d.ts +10 -0
  293. package/dist/panels/SequenceEditorPanel/FrameGrid/FrameGrid.d.ts.map +1 -0
  294. package/dist/panels/SequenceEditorPanel/FrameGrid/FrameGrid.js +92 -0
  295. package/dist/panels/SequenceEditorPanel/FrameGrid/StampsGrid.d.ts +15 -0
  296. package/dist/panels/SequenceEditorPanel/FrameGrid/StampsGrid.d.ts.map +1 -0
  297. package/dist/panels/SequenceEditorPanel/FrameGrid/StampsGrid.js +99 -0
  298. package/dist/panels/SequenceEditorPanel/FrameGrid/createGrid.d.ts +23 -0
  299. package/dist/panels/SequenceEditorPanel/FrameGrid/createGrid.d.ts.map +1 -0
  300. package/dist/panels/SequenceEditorPanel/FrameGrid/createGrid.js +49 -0
  301. package/dist/panels/SequenceEditorPanel/FrameStampPositionProvider.d.ts +52 -0
  302. package/dist/panels/SequenceEditorPanel/FrameStampPositionProvider.d.ts.map +1 -0
  303. package/dist/panels/SequenceEditorPanel/FrameStampPositionProvider.js +189 -0
  304. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/BasicKeyframedTrack.d.ts +25 -0
  305. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/BasicKeyframedTrack.d.ts.map +1 -0
  306. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/BasicKeyframedTrack.js +91 -0
  307. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/Curve.d.ts +14 -0
  308. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/Curve.d.ts.map +1 -0
  309. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/Curve.js +87 -0
  310. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/CurveHandle.d.ts +10 -0
  311. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/CurveHandle.d.ts.map +1 -0
  312. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/CurveHandle.js +186 -0
  313. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotNonScalar.d.ts +9 -0
  314. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotNonScalar.d.ts.map +1 -0
  315. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotNonScalar.js +162 -0
  316. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotScalar.d.ts +7 -0
  317. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotScalar.d.ts.map +1 -0
  318. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorDotScalar.js +209 -0
  319. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorNonScalarDash.d.ts +7 -0
  320. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorNonScalarDash.d.ts.map +1 -0
  321. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/GraphEditorNonScalarDash.js +23 -0
  322. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/KeyframeEditor.d.ts +27 -0
  323. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/KeyframeEditor.d.ts.map +1 -0
  324. package/dist/panels/SequenceEditorPanel/GraphEditor/BasicKeyframedTrack/KeyframeEditor/KeyframeEditor.js +30 -0
  325. package/dist/panels/SequenceEditorPanel/GraphEditor/GraphEditor.d.ts +28 -0
  326. package/dist/panels/SequenceEditorPanel/GraphEditor/GraphEditor.d.ts.map +1 -0
  327. package/dist/panels/SequenceEditorPanel/GraphEditor/GraphEditor.js +73 -0
  328. package/dist/panels/SequenceEditorPanel/GraphEditor/PrimitivePropGraph.d.ts +16 -0
  329. package/dist/panels/SequenceEditorPanel/GraphEditor/PrimitivePropGraph.d.ts.map +1 -0
  330. package/dist/panels/SequenceEditorPanel/GraphEditor/PrimitivePropGraph.js +20 -0
  331. package/dist/panels/SequenceEditorPanel/GraphEditorToggle.d.ts +8 -0
  332. package/dist/panels/SequenceEditorPanel/GraphEditorToggle.d.ts.map +1 -0
  333. package/dist/panels/SequenceEditorPanel/GraphEditorToggle.js +59 -0
  334. package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnap.d.ts +21 -0
  335. package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnap.d.ts.map +1 -0
  336. package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnap.js +36 -0
  337. package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnapHitZoneUI.d.ts +18 -0
  338. package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnapHitZoneUI.d.ts.map +1 -0
  339. package/dist/panels/SequenceEditorPanel/RightOverlay/DopeSnapHitZoneUI.js +57 -0
  340. package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeStrip.d.ts +32 -0
  341. package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeStrip.d.ts.map +1 -0
  342. package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeStrip.js +233 -0
  343. package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeThumb.d.ts +10 -0
  344. package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeThumb.d.ts.map +1 -0
  345. package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeThumb.js +217 -0
  346. package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeZone.d.ts +8 -0
  347. package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeZone.d.ts.map +1 -0
  348. package/dist/panels/SequenceEditorPanel/RightOverlay/FocusRangeZone/FocusRangeZone.js +181 -0
  349. package/dist/panels/SequenceEditorPanel/RightOverlay/FrameStamp.d.ts +8 -0
  350. package/dist/panels/SequenceEditorPanel/RightOverlay/FrameStamp.d.ts.map +1 -0
  351. package/dist/panels/SequenceEditorPanel/RightOverlay/FrameStamp.js +65 -0
  352. package/dist/panels/SequenceEditorPanel/RightOverlay/HorizontalScrollbar.d.ts +11 -0
  353. package/dist/panels/SequenceEditorPanel/RightOverlay/HorizontalScrollbar.d.ts.map +1 -0
  354. package/dist/panels/SequenceEditorPanel/RightOverlay/HorizontalScrollbar.js +235 -0
  355. package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerDot.d.ts +11 -0
  356. package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerDot.d.ts.map +1 -0
  357. package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerDot.js +184 -0
  358. package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerEditorPopover.d.ts +14 -0
  359. package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerEditorPopover.d.ts.map +1 -0
  360. package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/MarkerEditorPopover.js +65 -0
  361. package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/Markers.d.ts +8 -0
  362. package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/Markers.d.ts.map +1 -0
  363. package/dist/panels/SequenceEditorPanel/RightOverlay/Markers/Markers.js +13 -0
  364. package/dist/panels/SequenceEditorPanel/RightOverlay/Playhead.d.ts +8 -0
  365. package/dist/panels/SequenceEditorPanel/RightOverlay/Playhead.d.ts.map +1 -0
  366. package/dist/panels/SequenceEditorPanel/RightOverlay/Playhead.js +265 -0
  367. package/dist/panels/SequenceEditorPanel/RightOverlay/PlayheadPositionPopover.d.ts +12 -0
  368. package/dist/panels/SequenceEditorPanel/RightOverlay/PlayheadPositionPopover.d.ts.map +1 -0
  369. package/dist/panels/SequenceEditorPanel/RightOverlay/PlayheadPositionPopover.js +64 -0
  370. package/dist/panels/SequenceEditorPanel/RightOverlay/RightOverlay.d.ts +8 -0
  371. package/dist/panels/SequenceEditorPanel/RightOverlay/RightOverlay.d.ts.map +1 -0
  372. package/dist/panels/SequenceEditorPanel/RightOverlay/RightOverlay.js +35 -0
  373. package/dist/panels/SequenceEditorPanel/RightOverlay/TopStrip.d.ts +13 -0
  374. package/dist/panels/SequenceEditorPanel/RightOverlay/TopStrip.d.ts.map +1 -0
  375. package/dist/panels/SequenceEditorPanel/RightOverlay/TopStrip.js +31 -0
  376. package/dist/panels/SequenceEditorPanel/SequenceEditorPanel.d.ts +15 -0
  377. package/dist/panels/SequenceEditorPanel/SequenceEditorPanel.d.ts.map +1 -0
  378. package/dist/panels/SequenceEditorPanel/SequenceEditorPanel.js +179 -0
  379. package/dist/panels/SequenceEditorPanel/VerticalScrollContainer.d.ts +19 -0
  380. package/dist/panels/SequenceEditorPanel/VerticalScrollContainer.d.ts.map +1 -0
  381. package/dist/panels/SequenceEditorPanel/VerticalScrollContainer.js +42 -0
  382. package/dist/panels/SequenceEditorPanel/layout/layout.d.ts +146 -0
  383. package/dist/panels/SequenceEditorPanel/layout/layout.d.ts.map +1 -0
  384. package/dist/panels/SequenceEditorPanel/layout/layout.js +166 -0
  385. package/dist/panels/SequenceEditorPanel/layout/tree.d.ts +71 -0
  386. package/dist/panels/SequenceEditorPanel/layout/tree.d.ts.map +1 -0
  387. package/dist/panels/SequenceEditorPanel/layout/tree.js +139 -0
  388. package/dist/panels/SequenceEditorPanel/whatPropIsHighlighted.d.ts +10 -0
  389. package/dist/panels/SequenceEditorPanel/whatPropIsHighlighted.d.ts.map +1 -0
  390. package/dist/panels/SequenceEditorPanel/whatPropIsHighlighted.js +58 -0
  391. package/dist/propEditors/DefaultValueIndicator.d.ts +12 -0
  392. package/dist/propEditors/DefaultValueIndicator.d.ts.map +1 -0
  393. package/dist/propEditors/DefaultValueIndicator.js +64 -0
  394. package/dist/propEditors/NextPrevKeyframeCursors.d.ts +29 -0
  395. package/dist/propEditors/NextPrevKeyframeCursors.d.ts.map +1 -0
  396. package/dist/propEditors/NextPrevKeyframeCursors.js +135 -0
  397. package/dist/propEditors/getNearbyKeyframesOfTrack.d.ts +9 -0
  398. package/dist/propEditors/getNearbyKeyframesOfTrack.d.ts.map +1 -0
  399. package/dist/propEditors/getNearbyKeyframesOfTrack.js +46 -0
  400. package/dist/propEditors/simpleEditors/BooleanPropEditor.d.ts +6 -0
  401. package/dist/propEditors/simpleEditors/BooleanPropEditor.d.ts.map +1 -0
  402. package/dist/propEditors/simpleEditors/BooleanPropEditor.js +17 -0
  403. package/dist/propEditors/simpleEditors/FilePropEditor.d.ts +6 -0
  404. package/dist/propEditors/simpleEditors/FilePropEditor.d.ts.map +1 -0
  405. package/dist/propEditors/simpleEditors/FilePropEditor.js +118 -0
  406. package/dist/propEditors/simpleEditors/ISimplePropEditorReactProps.d.ts +10 -0
  407. package/dist/propEditors/simpleEditors/ISimplePropEditorReactProps.d.ts.map +1 -0
  408. package/dist/propEditors/simpleEditors/ISimplePropEditorReactProps.js +1 -0
  409. package/dist/propEditors/simpleEditors/ImagePropEditor.d.ts +6 -0
  410. package/dist/propEditors/simpleEditors/ImagePropEditor.d.ts.map +1 -0
  411. package/dist/propEditors/simpleEditors/ImagePropEditor.js +126 -0
  412. package/dist/propEditors/simpleEditors/NumberPropEditor.d.ts +6 -0
  413. package/dist/propEditors/simpleEditors/NumberPropEditor.d.ts.map +1 -0
  414. package/dist/propEditors/simpleEditors/NumberPropEditor.js +9 -0
  415. package/dist/propEditors/simpleEditors/RgbaPropEditor.d.ts +6 -0
  416. package/dist/propEditors/simpleEditors/RgbaPropEditor.d.ts.map +1 -0
  417. package/dist/propEditors/simpleEditors/RgbaPropEditor.js +73 -0
  418. package/dist/propEditors/simpleEditors/StringLiteralPropEditor.d.ts +6 -0
  419. package/dist/propEditors/simpleEditors/StringLiteralPropEditor.d.ts.map +1 -0
  420. package/dist/propEditors/simpleEditors/StringLiteralPropEditor.js +10 -0
  421. package/dist/propEditors/simpleEditors/StringPropEditor.d.ts +6 -0
  422. package/dist/propEditors/simpleEditors/StringPropEditor.d.ts.map +1 -0
  423. package/dist/propEditors/simpleEditors/StringPropEditor.js +6 -0
  424. package/dist/propEditors/simpleEditors/simplePropEditorByPropType.d.ts +10 -0
  425. package/dist/propEditors/simpleEditors/simplePropEditorByPropType.d.ts.map +1 -0
  426. package/dist/propEditors/simpleEditors/simplePropEditorByPropType.js +16 -0
  427. package/dist/propEditors/useEditingToolsForCompoundProp.d.ts +27 -0
  428. package/dist/propEditors/useEditingToolsForCompoundProp.d.ts.map +1 -0
  429. package/dist/propEditors/useEditingToolsForCompoundProp.js +228 -0
  430. package/dist/propEditors/useEditingToolsForSimpleProp.d.ts +47 -0
  431. package/dist/propEditors/useEditingToolsForSimpleProp.d.ts.map +1 -0
  432. package/dist/propEditors/useEditingToolsForSimpleProp.js +229 -0
  433. package/dist/propEditors/utils/IEditingTools.d.ts +9 -0
  434. package/dist/propEditors/utils/IEditingTools.d.ts.map +1 -0
  435. package/dist/propEditors/utils/IEditingTools.js +1 -0
  436. package/dist/propEditors/utils/PropConfigForType.d.ts +5 -0
  437. package/dist/propEditors/utils/PropConfigForType.d.ts.map +1 -0
  438. package/dist/propEditors/utils/PropConfigForType.js +1 -0
  439. package/dist/propEditors/utils/getPropTypeByPointer.d.ts +19 -0
  440. package/dist/propEditors/utils/getPropTypeByPointer.d.ts.map +1 -0
  441. package/dist/propEditors/utils/getPropTypeByPointer.js +48 -0
  442. package/dist/propEditors/utils/propNameTextCSS.d.ts +5 -0
  443. package/dist/propEditors/utils/propNameTextCSS.d.ts.map +1 -0
  444. package/dist/propEditors/utils/propNameTextCSS.js +7 -0
  445. package/dist/selectors.d.ts +13 -0
  446. package/dist/selectors.d.ts.map +1 -0
  447. package/dist/selectors.js +63 -0
  448. package/dist/store/index.d.ts +210 -0
  449. package/dist/store/index.d.ts.map +1 -0
  450. package/dist/store/index.js +184 -0
  451. package/dist/store/stateEditors.d.ts +300 -0
  452. package/dist/store/stateEditors.d.ts.map +1 -0
  453. package/dist/store/stateEditors.js +774 -0
  454. package/dist/store/types/ahistoric.d.ts +79 -0
  455. package/dist/store/types/ahistoric.d.ts.map +1 -0
  456. package/dist/store/types/ahistoric.js +1 -0
  457. package/dist/store/types/ephemeral.d.ts +53 -0
  458. package/dist/store/types/ephemeral.d.ts.map +1 -0
  459. package/dist/store/types/ephemeral.js +1 -0
  460. package/dist/store/types/historic.d.ts +104 -0
  461. package/dist/store/types/historic.d.ts.map +1 -0
  462. package/dist/store/types/historic.js +1 -0
  463. package/dist/store/types/index.d.ts +25 -0
  464. package/dist/store/types/index.d.ts.map +1 -0
  465. package/dist/store/types/index.js +3 -0
  466. package/dist/toolbars/ExtensionToolbar/ExtensionToolbar.d.ts +7 -0
  467. package/dist/toolbars/ExtensionToolbar/ExtensionToolbar.d.ts.map +1 -0
  468. package/dist/toolbars/ExtensionToolbar/ExtensionToolbar.js +51 -0
  469. package/dist/toolbars/ExtensionToolbar/Toolset.d.ts +7 -0
  470. package/dist/toolbars/ExtensionToolbar/Toolset.d.ts.map +1 -0
  471. package/dist/toolbars/ExtensionToolbar/Toolset.js +27 -0
  472. package/dist/toolbars/ExtensionToolbar/tools/ExtensionFlyoutMenu.d.ts +7 -0
  473. package/dist/toolbars/ExtensionToolbar/tools/ExtensionFlyoutMenu.d.ts.map +1 -0
  474. package/dist/toolbars/ExtensionToolbar/tools/ExtensionFlyoutMenu.js +51 -0
  475. package/dist/toolbars/ExtensionToolbar/tools/IconButton.d.ts +8 -0
  476. package/dist/toolbars/ExtensionToolbar/tools/IconButton.d.ts.map +1 -0
  477. package/dist/toolbars/ExtensionToolbar/tools/IconButton.js +16 -0
  478. package/dist/toolbars/ExtensionToolbar/tools/Switch.d.ts +7 -0
  479. package/dist/toolbars/ExtensionToolbar/tools/Switch.d.ts.map +1 -0
  480. package/dist/toolbars/ExtensionToolbar/tools/Switch.js +20 -0
  481. package/dist/toolbars/GlobalToolbar.d.ts +4 -0
  482. package/dist/toolbars/GlobalToolbar.d.ts.map +1 -0
  483. package/dist/toolbars/GlobalToolbar.js +142 -0
  484. package/dist/toolbars/MoreMenu/MoreMenu.d.ts +4 -0
  485. package/dist/toolbars/MoreMenu/MoreMenu.d.ts.map +1 -0
  486. package/dist/toolbars/MoreMenu/MoreMenu.js +133 -0
  487. package/dist/toolbars/PinButton.d.ts +12 -0
  488. package/dist/toolbars/PinButton.d.ts.map +1 -0
  489. package/dist/toolbars/PinButton.js +26 -0
  490. package/dist/uiComponents/DetailPanelButton.d.ts +5 -0
  491. package/dist/uiComponents/DetailPanelButton.d.ts.map +1 -0
  492. package/dist/uiComponents/DetailPanelButton.js +21 -0
  493. package/dist/uiComponents/PointerEventsHandler.d.ts +31 -0
  494. package/dist/uiComponents/PointerEventsHandler.d.ts.map +1 -0
  495. package/dist/uiComponents/PointerEventsHandler.js +80 -0
  496. package/dist/uiComponents/Popover/ArrowContext.d.ts +4 -0
  497. package/dist/uiComponents/Popover/ArrowContext.d.ts.map +1 -0
  498. package/dist/uiComponents/Popover/ArrowContext.js +3 -0
  499. package/dist/uiComponents/Popover/BasicPopover.d.ts +9 -0
  500. package/dist/uiComponents/Popover/BasicPopover.d.ts.map +1 -0
  501. package/dist/uiComponents/Popover/BasicPopover.js +35 -0
  502. package/dist/uiComponents/Popover/BasicTooltip.d.ts +8 -0
  503. package/dist/uiComponents/Popover/BasicTooltip.d.ts.map +1 -0
  504. package/dist/uiComponents/Popover/BasicTooltip.js +10 -0
  505. package/dist/uiComponents/Popover/ErrorTooltip.d.ts +8 -0
  506. package/dist/uiComponents/Popover/ErrorTooltip.d.ts.map +1 -0
  507. package/dist/uiComponents/Popover/ErrorTooltip.js +9 -0
  508. package/dist/uiComponents/Popover/MinimalTooltip.d.ts +8 -0
  509. package/dist/uiComponents/Popover/MinimalTooltip.d.ts.map +1 -0
  510. package/dist/uiComponents/Popover/MinimalTooltip.js +6 -0
  511. package/dist/uiComponents/Popover/PopoverArrow.d.ts +8 -0
  512. package/dist/uiComponents/Popover/PopoverArrow.d.ts.map +1 -0
  513. package/dist/uiComponents/Popover/PopoverArrow.js +38 -0
  514. package/dist/uiComponents/Popover/TooltipContext.d.ts +7 -0
  515. package/dist/uiComponents/Popover/TooltipContext.d.ts.map +1 -0
  516. package/dist/uiComponents/Popover/TooltipContext.js +46 -0
  517. package/dist/uiComponents/Popover/TooltipWrapper.d.ts +21 -0
  518. package/dist/uiComponents/Popover/TooltipWrapper.d.ts.map +1 -0
  519. package/dist/uiComponents/Popover/TooltipWrapper.js +103 -0
  520. package/dist/uiComponents/Popover/usePopover.d.ts +29 -0
  521. package/dist/uiComponents/Popover/usePopover.d.ts.map +1 -0
  522. package/dist/uiComponents/Popover/usePopover.js +132 -0
  523. package/dist/uiComponents/Popover/useTooltip.d.ts +14 -0
  524. package/dist/uiComponents/Popover/useTooltip.d.ts.map +1 -0
  525. package/dist/uiComponents/Popover/useTooltip.js +33 -0
  526. package/dist/uiComponents/RoomToClick.d.ts +6 -0
  527. package/dist/uiComponents/RoomToClick.d.ts.map +1 -0
  528. package/dist/uiComponents/RoomToClick.js +10 -0
  529. package/dist/uiComponents/SVGIcon.d.ts +8 -0
  530. package/dist/uiComponents/SVGIcon.d.ts.map +1 -0
  531. package/dist/uiComponents/SVGIcon.js +19 -0
  532. package/dist/uiComponents/ShowMousePosition.d.ts +4 -0
  533. package/dist/uiComponents/ShowMousePosition.d.ts.map +1 -0
  534. package/dist/uiComponents/ShowMousePosition.js +30 -0
  535. package/dist/uiComponents/colorPicker/components/EditingProvider.d.ts +15 -0
  536. package/dist/uiComponents/colorPicker/components/EditingProvider.d.ts.map +1 -0
  537. package/dist/uiComponents/colorPicker/components/EditingProvider.js +15 -0
  538. package/dist/uiComponents/colorPicker/components/RgbaColorPicker.d.ts +3 -0
  539. package/dist/uiComponents/colorPicker/components/RgbaColorPicker.d.ts.map +1 -0
  540. package/dist/uiComponents/colorPicker/components/RgbaColorPicker.js +31 -0
  541. package/dist/uiComponents/colorPicker/components/common/Alpha.d.ts +11 -0
  542. package/dist/uiComponents/colorPicker/components/common/Alpha.d.ts.map +1 -0
  543. package/dist/uiComponents/colorPicker/components/common/Alpha.js +54 -0
  544. package/dist/uiComponents/colorPicker/components/common/AlphaColorPicker.d.ts +7 -0
  545. package/dist/uiComponents/colorPicker/components/common/AlphaColorPicker.d.ts.map +1 -0
  546. package/dist/uiComponents/colorPicker/components/common/AlphaColorPicker.js +28 -0
  547. package/dist/uiComponents/colorPicker/components/common/Hue.d.ts +11 -0
  548. package/dist/uiComponents/colorPicker/components/common/Hue.d.ts.map +1 -0
  549. package/dist/uiComponents/colorPicker/components/common/Hue.js +41 -0
  550. package/dist/uiComponents/colorPicker/components/common/Interactive.d.ts +13 -0
  551. package/dist/uiComponents/colorPicker/components/common/Interactive.d.ts.map +1 -0
  552. package/dist/uiComponents/colorPicker/components/common/Interactive.js +142 -0
  553. package/dist/uiComponents/colorPicker/components/common/Pointer.d.ts +10 -0
  554. package/dist/uiComponents/colorPicker/components/common/Pointer.d.ts.map +1 -0
  555. package/dist/uiComponents/colorPicker/components/common/Pointer.js +39 -0
  556. package/dist/uiComponents/colorPicker/components/common/Saturation.d.ts +12 -0
  557. package/dist/uiComponents/colorPicker/components/common/Saturation.d.ts.map +1 -0
  558. package/dist/uiComponents/colorPicker/components/common/Saturation.js +44 -0
  559. package/dist/uiComponents/colorPicker/hooks/useColorManipulation.d.ts +3 -0
  560. package/dist/uiComponents/colorPicker/hooks/useColorManipulation.d.ts.map +1 -0
  561. package/dist/uiComponents/colorPicker/hooks/useColorManipulation.js +77 -0
  562. package/dist/uiComponents/colorPicker/hooks/useEventCallback.d.ts +2 -0
  563. package/dist/uiComponents/colorPicker/hooks/useEventCallback.d.ts.map +1 -0
  564. package/dist/uiComponents/colorPicker/hooks/useEventCallback.js +10 -0
  565. package/dist/uiComponents/colorPicker/hooks/useIsomorphicLayoutEffect.d.ts +3 -0
  566. package/dist/uiComponents/colorPicker/hooks/useIsomorphicLayoutEffect.d.ts.map +1 -0
  567. package/dist/uiComponents/colorPicker/hooks/useIsomorphicLayoutEffect.js +5 -0
  568. package/dist/uiComponents/colorPicker/index.d.ts +3 -0
  569. package/dist/uiComponents/colorPicker/index.d.ts.map +1 -0
  570. package/dist/uiComponents/colorPicker/index.js +1 -0
  571. package/dist/uiComponents/colorPicker/types.d.ts +47 -0
  572. package/dist/uiComponents/colorPicker/types.d.ts.map +1 -0
  573. package/dist/uiComponents/colorPicker/types.js +1 -0
  574. package/dist/uiComponents/colorPicker/utils/clamp.d.ts +2 -0
  575. package/dist/uiComponents/colorPicker/utils/clamp.d.ts.map +1 -0
  576. package/dist/uiComponents/colorPicker/utils/clamp.js +6 -0
  577. package/dist/uiComponents/colorPicker/utils/compare.d.ts +5 -0
  578. package/dist/uiComponents/colorPicker/utils/compare.d.ts.map +1 -0
  579. package/dist/uiComponents/colorPicker/utils/compare.js +25 -0
  580. package/dist/uiComponents/colorPicker/utils/convert.d.ts +27 -0
  581. package/dist/uiComponents/colorPicker/utils/convert.d.ts.map +1 -0
  582. package/dist/uiComponents/colorPicker/utils/convert.js +165 -0
  583. package/dist/uiComponents/colorPicker/utils/round.d.ts +2 -0
  584. package/dist/uiComponents/colorPicker/utils/round.d.ts.map +1 -0
  585. package/dist/uiComponents/colorPicker/utils/round.js +3 -0
  586. package/dist/uiComponents/colorPicker/utils/validate.d.ts +2 -0
  587. package/dist/uiComponents/colorPicker/utils/validate.d.ts.map +1 -0
  588. package/dist/uiComponents/colorPicker/utils/validate.js +10 -0
  589. package/dist/uiComponents/createCursorLock.d.ts +2 -0
  590. package/dist/uiComponents/createCursorLock.d.ts.map +1 -0
  591. package/dist/uiComponents/createCursorLock.js +2 -0
  592. package/dist/uiComponents/form/BasicCheckbox.d.ts +5 -0
  593. package/dist/uiComponents/form/BasicCheckbox.d.ts.map +1 -0
  594. package/dist/uiComponents/form/BasicCheckbox.js +5 -0
  595. package/dist/uiComponents/form/BasicNumberInput.d.ts +26 -0
  596. package/dist/uiComponents/form/BasicNumberInput.d.ts.map +1 -0
  597. package/dist/uiComponents/form/BasicNumberInput.js +261 -0
  598. package/dist/uiComponents/form/BasicSelect.d.ts +10 -0
  599. package/dist/uiComponents/form/BasicSelect.d.ts.map +1 -0
  600. package/dist/uiComponents/form/BasicSelect.js +58 -0
  601. package/dist/uiComponents/form/BasicStringInput.d.ts +19 -0
  602. package/dist/uiComponents/form/BasicStringInput.d.ts.map +1 -0
  603. package/dist/uiComponents/form/BasicStringInput.js +151 -0
  604. package/dist/uiComponents/form/BasicSwitch.d.ts +9 -0
  605. package/dist/uiComponents/form/BasicSwitch.d.ts.map +1 -0
  606. package/dist/uiComponents/form/BasicSwitch.js +60 -0
  607. package/dist/uiComponents/icons/AddImage.d.ts +4 -0
  608. package/dist/uiComponents/icons/AddImage.d.ts.map +1 -0
  609. package/dist/uiComponents/icons/AddImage.js +6 -0
  610. package/dist/uiComponents/icons/ArrowClockwise.d.ts +4 -0
  611. package/dist/uiComponents/icons/ArrowClockwise.d.ts.map +1 -0
  612. package/dist/uiComponents/icons/ArrowClockwise.js +6 -0
  613. package/dist/uiComponents/icons/ArrowsOutCardinal.d.ts +4 -0
  614. package/dist/uiComponents/icons/ArrowsOutCardinal.d.ts.map +1 -0
  615. package/dist/uiComponents/icons/ArrowsOutCardinal.js +6 -0
  616. package/dist/uiComponents/icons/Bell.d.ts +4 -0
  617. package/dist/uiComponents/icons/Bell.d.ts.map +1 -0
  618. package/dist/uiComponents/icons/Bell.js +6 -0
  619. package/dist/uiComponents/icons/Camera.d.ts +4 -0
  620. package/dist/uiComponents/icons/Camera.d.ts.map +1 -0
  621. package/dist/uiComponents/icons/Camera.js +7 -0
  622. package/dist/uiComponents/icons/ChevronDown.d.ts +4 -0
  623. package/dist/uiComponents/icons/ChevronDown.d.ts.map +1 -0
  624. package/dist/uiComponents/icons/ChevronDown.js +6 -0
  625. package/dist/uiComponents/icons/ChevronLeft.d.ts +4 -0
  626. package/dist/uiComponents/icons/ChevronLeft.d.ts.map +1 -0
  627. package/dist/uiComponents/icons/ChevronLeft.js +6 -0
  628. package/dist/uiComponents/icons/ChevronRight.d.ts +4 -0
  629. package/dist/uiComponents/icons/ChevronRight.d.ts.map +1 -0
  630. package/dist/uiComponents/icons/ChevronRight.js +6 -0
  631. package/dist/uiComponents/icons/Cube.d.ts +4 -0
  632. package/dist/uiComponents/icons/Cube.d.ts.map +1 -0
  633. package/dist/uiComponents/icons/Cube.js +6 -0
  634. package/dist/uiComponents/icons/CubeFull.d.ts +4 -0
  635. package/dist/uiComponents/icons/CubeFull.d.ts.map +1 -0
  636. package/dist/uiComponents/icons/CubeFull.js +6 -0
  637. package/dist/uiComponents/icons/CubeHalf.d.ts +4 -0
  638. package/dist/uiComponents/icons/CubeHalf.d.ts.map +1 -0
  639. package/dist/uiComponents/icons/CubeHalf.js +6 -0
  640. package/dist/uiComponents/icons/CubeRendered.d.ts +4 -0
  641. package/dist/uiComponents/icons/CubeRendered.d.ts.map +1 -0
  642. package/dist/uiComponents/icons/CubeRendered.js +7 -0
  643. package/dist/uiComponents/icons/Details.d.ts +4 -0
  644. package/dist/uiComponents/icons/Details.d.ts.map +1 -0
  645. package/dist/uiComponents/icons/Details.js +6 -0
  646. package/dist/uiComponents/icons/DoubleChevronLeft.d.ts +4 -0
  647. package/dist/uiComponents/icons/DoubleChevronLeft.d.ts.map +1 -0
  648. package/dist/uiComponents/icons/DoubleChevronLeft.js +6 -0
  649. package/dist/uiComponents/icons/DoubleChevronRight.d.ts +4 -0
  650. package/dist/uiComponents/icons/DoubleChevronRight.d.ts.map +1 -0
  651. package/dist/uiComponents/icons/DoubleChevronRight.js +6 -0
  652. package/dist/uiComponents/icons/Ellipsis.d.ts +4 -0
  653. package/dist/uiComponents/icons/Ellipsis.d.ts.map +1 -0
  654. package/dist/uiComponents/icons/Ellipsis.js +6 -0
  655. package/dist/uiComponents/icons/EllipsisFill.d.ts +4 -0
  656. package/dist/uiComponents/icons/EllipsisFill.d.ts.map +1 -0
  657. package/dist/uiComponents/icons/EllipsisFill.js +6 -0
  658. package/dist/uiComponents/icons/GlobeSimple.d.ts +4 -0
  659. package/dist/uiComponents/icons/GlobeSimple.d.ts.map +1 -0
  660. package/dist/uiComponents/icons/GlobeSimple.js +6 -0
  661. package/dist/uiComponents/icons/Outline.d.ts +4 -0
  662. package/dist/uiComponents/icons/Outline.d.ts.map +1 -0
  663. package/dist/uiComponents/icons/Outline.js +6 -0
  664. package/dist/uiComponents/icons/Package.d.ts +4 -0
  665. package/dist/uiComponents/icons/Package.d.ts.map +1 -0
  666. package/dist/uiComponents/icons/Package.js +6 -0
  667. package/dist/uiComponents/icons/Resize.d.ts +4 -0
  668. package/dist/uiComponents/icons/Resize.d.ts.map +1 -0
  669. package/dist/uiComponents/icons/Resize.js +7 -0
  670. package/dist/uiComponents/icons/Trash.d.ts +4 -0
  671. package/dist/uiComponents/icons/Trash.d.ts.map +1 -0
  672. package/dist/uiComponents/icons/Trash.js +6 -0
  673. package/dist/uiComponents/icons/index.d.ts +21 -0
  674. package/dist/uiComponents/icons/index.d.ts.map +1 -0
  675. package/dist/uiComponents/icons/index.js +20 -0
  676. package/dist/uiComponents/isSafari.d.ts +2 -0
  677. package/dist/uiComponents/isSafari.d.ts.map +1 -0
  678. package/dist/uiComponents/isSafari.js +2 -0
  679. package/dist/uiComponents/onPointerOutside.d.ts +6 -0
  680. package/dist/uiComponents/onPointerOutside.d.ts.map +1 -0
  681. package/dist/uiComponents/onPointerOutside.js +19 -0
  682. package/dist/uiComponents/selects/BasicSelect.d.ts +15 -0
  683. package/dist/uiComponents/selects/BasicSelect.d.ts.map +1 -0
  684. package/dist/uiComponents/selects/BasicSelect.js +24 -0
  685. package/dist/uiComponents/simpleContextMenu/ContextMenu/BaseMenu.d.ts +16 -0
  686. package/dist/uiComponents/simpleContextMenu/ContextMenu/BaseMenu.d.ts.map +1 -0
  687. package/dist/uiComponents/simpleContextMenu/ContextMenu/BaseMenu.js +40 -0
  688. package/dist/uiComponents/simpleContextMenu/ContextMenu/ContextMenu.d.ts +27 -0
  689. package/dist/uiComponents/simpleContextMenu/ContextMenu/ContextMenu.d.ts.map +1 -0
  690. package/dist/uiComponents/simpleContextMenu/ContextMenu/ContextMenu.js +87 -0
  691. package/dist/uiComponents/simpleContextMenu/ContextMenu/Item.d.ts +10 -0
  692. package/dist/uiComponents/simpleContextMenu/ContextMenu/Item.d.ts.map +1 -0
  693. package/dist/uiComponents/simpleContextMenu/ContextMenu/Item.js +37 -0
  694. package/dist/uiComponents/simpleContextMenu/useContextMenu.d.ts +11 -0
  695. package/dist/uiComponents/simpleContextMenu/useContextMenu.d.ts.map +1 -0
  696. package/dist/uiComponents/simpleContextMenu/useContextMenu.js +20 -0
  697. package/dist/uiComponents/simpleContextMenu/useRequestContextMenu.d.ts +13 -0
  698. package/dist/uiComponents/simpleContextMenu/useRequestContextMenu.d.ts.map +1 -0
  699. package/dist/uiComponents/simpleContextMenu/useRequestContextMenu.js +22 -0
  700. package/dist/uiComponents/toolbar/ToolbarDropdownSelect.d.ts +16 -0
  701. package/dist/uiComponents/toolbar/ToolbarDropdownSelect.d.ts.map +1 -0
  702. package/dist/uiComponents/toolbar/ToolbarDropdownSelect.js +7 -0
  703. package/dist/uiComponents/toolbar/ToolbarIconButton.d.ts +4 -0
  704. package/dist/uiComponents/toolbar/ToolbarIconButton.d.ts.map +1 -0
  705. package/dist/uiComponents/toolbar/ToolbarIconButton.js +74 -0
  706. package/dist/uiComponents/toolbar/ToolbarSwitchSelect.d.ts +15 -0
  707. package/dist/uiComponents/toolbar/ToolbarSwitchSelect.d.ts.map +1 -0
  708. package/dist/uiComponents/toolbar/ToolbarSwitchSelect.js +12 -0
  709. package/dist/uiComponents/toolbar/ToolbarSwitchSelectContainer.d.ts +3 -0
  710. package/dist/uiComponents/toolbar/ToolbarSwitchSelectContainer.d.ts.map +1 -0
  711. package/dist/uiComponents/toolbar/ToolbarSwitchSelectContainer.js +9 -0
  712. package/dist/uiComponents/useBoundingClientRect.d.ts +2 -0
  713. package/dist/uiComponents/useBoundingClientRect.d.ts.map +1 -0
  714. package/dist/uiComponents/useBoundingClientRect.js +13 -0
  715. package/dist/uiComponents/useDebugRefreshEvery.d.ts +9 -0
  716. package/dist/uiComponents/useDebugRefreshEvery.d.ts.map +1 -0
  717. package/dist/uiComponents/useDebugRefreshEvery.js +19 -0
  718. package/dist/uiComponents/useDrag.d.ts +76 -0
  719. package/dist/uiComponents/useDrag.d.ts.map +1 -0
  720. package/dist/uiComponents/useDrag.js +199 -0
  721. package/dist/uiComponents/useHotspot.d.ts +2 -0
  722. package/dist/uiComponents/useHotspot.d.ts.map +1 -0
  723. package/dist/uiComponents/useHotspot.js +30 -0
  724. package/dist/uiComponents/useHover.d.ts +2 -0
  725. package/dist/uiComponents/useHover.d.ts.map +1 -0
  726. package/dist/uiComponents/useHover.js +23 -0
  727. package/dist/uiComponents/useHoverWithoutDescendants.d.ts +5 -0
  728. package/dist/uiComponents/useHoverWithoutDescendants.d.ts.map +1 -0
  729. package/dist/uiComponents/useHoverWithoutDescendants.js +33 -0
  730. package/dist/uiComponents/useKeyDown.d.ts +3 -0
  731. package/dist/uiComponents/useKeyDown.d.ts.map +1 -0
  732. package/dist/uiComponents/useKeyDown.js +9 -0
  733. package/dist/uiComponents/useKeyDownCallback.d.ts +7 -0
  734. package/dist/uiComponents/useKeyDownCallback.d.ts.map +1 -0
  735. package/dist/uiComponents/useKeyDownCallback.js +28 -0
  736. package/dist/uiComponents/useLockSet.d.ts +5 -0
  737. package/dist/uiComponents/useLockSet.d.ts.map +1 -0
  738. package/dist/uiComponents/useLockSet.js +17 -0
  739. package/dist/uiComponents/useLogger.d.ts +7 -0
  740. package/dist/uiComponents/useLogger.d.ts.map +1 -0
  741. package/dist/uiComponents/useLogger.js +16 -0
  742. package/dist/uiComponents/useOnClickOutside.d.ts +2 -0
  743. package/dist/uiComponents/useOnClickOutside.d.ts.map +1 -0
  744. package/dist/uiComponents/useOnClickOutside.js +25 -0
  745. package/dist/uiComponents/useOnKeyDown.d.ts +2 -0
  746. package/dist/uiComponents/useOnKeyDown.d.ts.map +1 -0
  747. package/dist/uiComponents/useOnKeyDown.js +12 -0
  748. package/dist/uiComponents/usePresence.d.ts +30 -0
  749. package/dist/uiComponents/usePresence.d.ts.map +1 -0
  750. package/dist/uiComponents/usePresence.js +156 -0
  751. package/dist/uiComponents/useValToAtom.d.ts +3 -0
  752. package/dist/uiComponents/useValToAtom.d.ts.map +1 -0
  753. package/dist/uiComponents/useValToAtom.js +11 -0
  754. package/dist/utils/absoluteDims.d.ts +3 -0
  755. package/dist/utils/absoluteDims.d.ts.map +1 -0
  756. package/dist/utils/absoluteDims.js +7 -0
  757. package/dist/utils/contextualWebComponents.d.ts +5 -0
  758. package/dist/utils/contextualWebComponents.d.ts.map +1 -0
  759. package/dist/utils/contextualWebComponents.js +44 -0
  760. package/dist/utils/copyToClipboard.d.ts +2 -0
  761. package/dist/utils/copyToClipboard.d.ts.map +1 -0
  762. package/dist/utils/copyToClipboard.js +28 -0
  763. package/dist/utils/derive-utils.d.ts +21 -0
  764. package/dist/utils/derive-utils.d.ts.map +1 -0
  765. package/dist/utils/derive-utils.js +61 -0
  766. package/dist/utils/devStringify.d.ts +7 -0
  767. package/dist/utils/devStringify.d.ts.map +1 -0
  768. package/dist/utils/devStringify.js +20 -0
  769. package/dist/utils/invariant.d.ts +35 -0
  770. package/dist/utils/invariant.d.ts.map +1 -0
  771. package/dist/utils/invariant.js +79 -0
  772. package/dist/utils/isMac.d.ts +2 -0
  773. package/dist/utils/isMac.d.ts.map +1 -0
  774. package/dist/utils/isMac.js +2 -0
  775. package/dist/utils/keyboardUtils.d.ts +9 -0
  776. package/dist/utils/keyboardUtils.d.ts.map +1 -0
  777. package/dist/utils/keyboardUtils.js +23 -0
  778. package/dist/utils/mousePositionD.d.ts +6 -0
  779. package/dist/utils/mousePositionD.d.ts.map +1 -0
  780. package/dist/utils/mousePositionD.js +18 -0
  781. package/dist/utils/redux/actionCreator.d.ts +49 -0
  782. package/dist/utils/redux/actionCreator.d.ts.map +1 -0
  783. package/dist/utils/redux/actionCreator.js +15 -0
  784. package/dist/utils/redux/actionCreator.test.d.ts +2 -0
  785. package/dist/utils/redux/actionCreator.test.d.ts.map +1 -0
  786. package/dist/utils/redux/actionCreator.test.js +35 -0
  787. package/dist/utils/redux/actionReducersBundle.d.ts +18 -0
  788. package/dist/utils/redux/actionReducersBundle.d.ts.map +1 -0
  789. package/dist/utils/redux/actionReducersBundle.js +18 -0
  790. package/dist/utils/redux/atomFromReduxStore.d.ts +4 -0
  791. package/dist/utils/redux/atomFromReduxStore.d.ts.map +1 -0
  792. package/dist/utils/redux/atomFromReduxStore.js +11 -0
  793. package/dist/utils/redux/configureStore.d.ts +9 -0
  794. package/dist/utils/redux/configureStore.d.ts.map +1 -0
  795. package/dist/utils/redux/configureStore.js +18 -0
  796. package/dist/utils/redux/pointerFriendlySelector.d.ts +10 -0
  797. package/dist/utils/redux/pointerFriendlySelector.d.ts.map +1 -0
  798. package/dist/utils/redux/pointerFriendlySelector.js +8 -0
  799. package/dist/utils/redux/withHistory/withBatchActions.d.ts +19 -0
  800. package/dist/utils/redux/withHistory/withBatchActions.d.ts.map +1 -0
  801. package/dist/utils/redux/withHistory/withBatchActions.js +13 -0
  802. package/dist/utils/redux/withHistory/withHistory.d.ts +127 -0
  803. package/dist/utils/redux/withHistory/withHistory.d.ts.map +1 -0
  804. package/dist/utils/redux/withHistory/withHistory.js +157 -0
  805. package/dist/utils/renderInPortalInContext.d.ts +7 -0
  806. package/dist/utils/renderInPortalInContext.d.ts.map +1 -0
  807. package/dist/utils/renderInPortalInContext.js +38 -0
  808. package/dist/utils/selectClosestHTMLAncestor.d.ts +5 -0
  809. package/dist/utils/selectClosestHTMLAncestor.d.ts.map +1 -0
  810. package/dist/utils/selectClosestHTMLAncestor.js +13 -0
  811. package/dist/utils/tightJsonStringify.d.ts +23 -0
  812. package/dist/utils/tightJsonStringify.d.ts.map +1 -0
  813. package/dist/utils/tightJsonStringify.js +27 -0
  814. package/dist/utils/tightJsonStringify.test.d.ts +2 -0
  815. package/dist/utils/tightJsonStringify.test.d.ts.map +1 -0
  816. package/dist/utils/tightJsonStringify.test.js +25 -0
  817. package/dist/utils/useRefAndState.d.ts +18 -0
  818. package/dist/utils/useRefAndState.d.ts.map +1 -0
  819. package/dist/utils/useRefAndState.js +32 -0
  820. package/package.json +1 -1
  821. package/dist/index.mjs +0 -105
  822. package/dist/index.mjs.map +0 -7
@@ -0,0 +1,184 @@
1
+ import actionCreator from '@tomorrowevening/theatre-studio/utils/redux/actionCreator';
2
+ import { historicActions, withHistory, } from '@tomorrowevening/theatre-studio/utils/redux/withHistory/withHistory';
3
+ import logger from '@tomorrowevening/theatre-shared/logger';
4
+ const initialState = {
5
+ ahistoric: {
6
+ visibilityState: 'everythingIsVisible',
7
+ theTrigger: {
8
+ position: {
9
+ closestCorner: 'bottomLeft',
10
+ distanceFromHorizontalEdge: 0.02,
11
+ distanceFromVerticalEdge: 0.02,
12
+ },
13
+ },
14
+ coreByProject: {},
15
+ projects: {
16
+ stateByProjectId: {},
17
+ },
18
+ },
19
+ historic: {
20
+ projects: {
21
+ stateByProjectId: {},
22
+ },
23
+ autoKey: true,
24
+ coreByProject: {},
25
+ panelInstanceDesceriptors: {},
26
+ },
27
+ ephemeral: {
28
+ initialised: false,
29
+ coreByProject: {},
30
+ projects: {
31
+ stateByProjectId: {},
32
+ },
33
+ extensions: {
34
+ byId: {},
35
+ paneClasses: {},
36
+ },
37
+ showOutline: false,
38
+ },
39
+ };
40
+ const replacePersistentState = actionCreator('@storeBundle/replacePersistentState', (s) => s);
41
+ const reduceParts = actionCreator('@storeBundle/reduceParts', (fn) => fn);
42
+ export const studioActions = {
43
+ historic: historicActions,
44
+ replacePersistentState,
45
+ reduceParts,
46
+ };
47
+ const setInnerHistoricState = actionCreator('@storeBundle/setInnerHistoricState', (s) => s);
48
+ const historicInnerReducer = (s = initialState.historic, action) => {
49
+ if (setInnerHistoricState.is(action)) {
50
+ return action.payload;
51
+ }
52
+ else {
53
+ return s;
54
+ }
55
+ };
56
+ const historicWrappedReducer = withHistory(historicInnerReducer);
57
+ const permanentReducer = (prevState, action) => {
58
+ if (replacePersistentState.is(action)) {
59
+ const { historic, ahistoric } = action.payload;
60
+ const ephemeral = prevState?.ephemeral || initialState.ephemeral;
61
+ return {
62
+ $persistent: { historic, ahistoric },
63
+ ephemeral,
64
+ };
65
+ }
66
+ else if (!prevState) {
67
+ const historic = historicWrappedReducer(undefined, {});
68
+ const ahistoric = initialState.ahistoric;
69
+ const ephemeral = initialState.ephemeral;
70
+ return {
71
+ $persistent: { historic, ahistoric },
72
+ ephemeral,
73
+ };
74
+ }
75
+ else {
76
+ let { historic, ahistoric } = prevState.$persistent;
77
+ let { ephemeral } = prevState;
78
+ if (reduceParts.is(action)) {
79
+ const wholeState = {
80
+ historic: prevState.$persistent.historic.innerState,
81
+ ahistoric: prevState.$persistent.ahistoric,
82
+ ephemeral: prevState.ephemeral,
83
+ };
84
+ const reduced = action.payload(wholeState);
85
+ if (reduced === wholeState)
86
+ return prevState;
87
+ if (historic.innerState !== reduced.historic) {
88
+ historic = historicWrappedReducer(historic, setInnerHistoricState(reduced.historic));
89
+ }
90
+ ahistoric = reduced.ahistoric;
91
+ ephemeral = reduced.ephemeral;
92
+ }
93
+ else {
94
+ const newHistoric = historicWrappedReducer(historic, action);
95
+ if (newHistoric === historic)
96
+ return prevState;
97
+ historic = newHistoric;
98
+ }
99
+ const persistent = historic === prevState.$persistent.historic &&
100
+ ahistoric === prevState.$persistent.ahistoric
101
+ ? prevState.$persistent
102
+ : { historic, ahistoric };
103
+ return {
104
+ $persistent: persistent,
105
+ ephemeral,
106
+ };
107
+ }
108
+ };
109
+ export const _pushTemporaryAction = actionCreator('@history/pushTempAction', (input) => input);
110
+ export const _discardTemporaryAction = actionCreator('@history/discardTempAction', (id) => id);
111
+ export const _commitTemporaryAction = actionCreator('@history/commitTempAction', (id) => id);
112
+ let lastTempActionGroupId = 0;
113
+ export const tempActionGroup = () => {
114
+ const id = lastTempActionGroupId++;
115
+ const push = (originalAction) => _pushTemporaryAction({
116
+ id,
117
+ originalAction: originalAction,
118
+ });
119
+ const discard = () => _discardTemporaryAction(id);
120
+ const commit = () => _commitTemporaryAction(id);
121
+ return {
122
+ push,
123
+ discard,
124
+ commit,
125
+ };
126
+ };
127
+ export const studioReducer = (prevState, action) => {
128
+ if (!prevState) {
129
+ const permanent = permanentReducer(undefined, action);
130
+ return {
131
+ $temps: {
132
+ permanent: permanent,
133
+ tempActions: [],
134
+ },
135
+ $persistent: permanent.$persistent,
136
+ historic: permanent.$persistent.historic.innerState,
137
+ ahistoric: permanent.$persistent.ahistoric,
138
+ ephemeral: permanent.ephemeral,
139
+ };
140
+ }
141
+ else {
142
+ let { tempActions, permanent } = prevState.$temps;
143
+ let actionToPassInToPermanentReducer = undefined;
144
+ if (_pushTemporaryAction.is(action)) {
145
+ tempActions = [...tempActions, action];
146
+ }
147
+ else if (_commitTemporaryAction.is(action)) {
148
+ const toCommit = tempActions.find((a) => a.payload.id === action.payload);
149
+ if (!toCommit) {
150
+ logger.error(`Comitting temp action group ${action.payload} isn't possible as this group doesn't exist`);
151
+ }
152
+ else {
153
+ actionToPassInToPermanentReducer = toCommit.payload.originalAction;
154
+ tempActions = tempActions.filter((a) => a.payload.id !== action.payload);
155
+ }
156
+ }
157
+ else if (_discardTemporaryAction.is(action)) {
158
+ tempActions = tempActions.filter((a) => a.payload.id !== action.payload);
159
+ }
160
+ else {
161
+ actionToPassInToPermanentReducer = action;
162
+ }
163
+ if (actionToPassInToPermanentReducer) {
164
+ permanent = permanentReducer(prevState.$temps.permanent, actionToPassInToPermanentReducer);
165
+ }
166
+ let surface = {
167
+ historic: permanent.$persistent.historic.innerState,
168
+ ahistoric: permanent.$persistent.ahistoric,
169
+ ephemeral: permanent.ephemeral,
170
+ };
171
+ for (const tempAction of tempActions) {
172
+ const orig = tempAction.payload.originalAction;
173
+ surface = orig.payload(surface);
174
+ }
175
+ return {
176
+ $temps: {
177
+ tempActions,
178
+ permanent,
179
+ },
180
+ $persistent: permanent.$persistent,
181
+ ...surface,
182
+ };
183
+ }
184
+ };
@@ -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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"}