diff --git a/editor/src/components/canvas/dom-walker-caching.spec.browser2.tsx b/editor/src/components/canvas/dom-walker-caching.spec.browser2.tsx index 74885bd1b35e..59e5616b5dc3 100644 --- a/editor/src/components/canvas/dom-walker-caching.spec.browser2.tsx +++ b/editor/src/components/canvas/dom-walker-caching.spec.browser2.tsx @@ -107,12 +107,18 @@ describe('Dom-walker Caching', () => { UPDATE_FROM_WORKER ], SAVE_DOM_REPORT, + UPDATE_TOP_LEVEL_ELEMENTS_FROM_COLLABORATION_UPDATE, + UPDATE_EXPORTS_DETAIL_FROM_COLLABORATION_UPDATE, + UPDATE_IMPORTS_FROM_COLLABORATION_UPDATE, SET_CANVAS_FRAMES, SAVE_DOM_REPORT, MERGE_WITH_PREV_UNDO: [ UPDATE_FROM_WORKER ], - SAVE_DOM_REPORT + SAVE_DOM_REPORT, + UPDATE_TOP_LEVEL_ELEMENTS_FROM_COLLABORATION_UPDATE, + UPDATE_EXPORTS_DETAIL_FROM_COLLABORATION_UPDATE, + UPDATE_IMPORTS_FROM_COLLABORATION_UPDATE ]`) const saveDomReportActions = renderResult @@ -211,12 +217,18 @@ describe('Dom-walker Caching', () => { UPDATE_FROM_WORKER ], SAVE_DOM_REPORT, + UPDATE_TOP_LEVEL_ELEMENTS_FROM_COLLABORATION_UPDATE, + UPDATE_EXPORTS_DETAIL_FROM_COLLABORATION_UPDATE, + UPDATE_IMPORTS_FROM_COLLABORATION_UPDATE, SET_CANVAS_FRAMES, SAVE_DOM_REPORT, MERGE_WITH_PREV_UNDO: [ UPDATE_FROM_WORKER ], - SAVE_DOM_REPORT + SAVE_DOM_REPORT, + UPDATE_TOP_LEVEL_ELEMENTS_FROM_COLLABORATION_UPDATE, + UPDATE_EXPORTS_DETAIL_FROM_COLLABORATION_UPDATE, + UPDATE_IMPORTS_FROM_COLLABORATION_UPDATE ]`) expect(saveDomReportActions.length).toBe(4) diff --git a/editor/src/components/editor/collaborative-endpoints.ts b/editor/src/components/editor/collaborative-endpoints.ts index 190b25e05c34..8934ad3f2253 100644 --- a/editor/src/components/editor/collaborative-endpoints.ts +++ b/editor/src/components/editor/collaborative-endpoints.ts @@ -1,7 +1,6 @@ import { v4 as UUID } from 'uuid' import { IS_TEST_ENVIRONMENT, UTOPIA_BACKEND } from '../../common/env-vars' import { HEADERS, MODE } from '../../common/server' -import { isFeatureEnabled } from '../../utils/feature-switches' import type { EditorDispatch } from './action-types' import { showToast } from './actions/action-creators' import { notice } from '../common/notice' @@ -109,7 +108,7 @@ async function claimControlOverProject(projectID: string | null): Promise { if (IS_TEST_ENVIRONMENT) { return } - if (isFeatureEnabled('Baton Passing For Control')) { - const request = clearAllOfCollaboratorsControl(collaborationEditor) + const request = clearAllOfCollaboratorsControl(collaborationEditor) - const response = await callCollaborationEndpoint(request) - if (response.type !== 'RELEASE_CONTROL_RESULT') { - throw new Error(`Unexpected response: ${JSON.stringify(response)}`) - } + const response = await callCollaborationEndpoint(request) + if (response.type !== 'RELEASE_CONTROL_RESULT') { + throw new Error(`Unexpected response: ${JSON.stringify(response)}`) } } diff --git a/editor/src/components/editor/global-shortcuts.tsx b/editor/src/components/editor/global-shortcuts.tsx index 47643b2c506b..f4b5e6c7a72f 100644 --- a/editor/src/components/editor/global-shortcuts.tsx +++ b/editor/src/components/editor/global-shortcuts.tsx @@ -145,10 +145,9 @@ import { isRight } from '../../core/shared/either' import type { ElementPathTrees } from '../../core/shared/element-path-tree' import { createPasteToReplacePostActionActions } from '../canvas/canvas-strategies/post-action-options/post-action-options' import { wrapInDivStrategy } from './wrap-in-callbacks' -import { isFeatureEnabled } from '../../utils/feature-switches' import { type ProjectServerState } from './store/project-server-state' import { allowedToEditProject } from './store/collaborative-editing' -import { hasCommentPermission, getPermissions } from './store/permissions' +import { hasCommentPermission } from './store/permissions' function updateKeysPressed( keysPressed: KeysPressed, @@ -368,7 +367,7 @@ export function handleKeyDown( preventBrowserShortcuts(editor, event) const allowedToEdit = allowedToEditProject(loginState, projectServerState) - const canComment = isFeatureEnabled('Multiplayer') && hasCommentPermission(loginState) + const canComment = hasCommentPermission(loginState) // Ensure that any key presses are appropriately recorded. const key = Keyboard.keyCharacterForCode(event.keyCode) diff --git a/editor/src/components/editor/liveblocks-utils.ts b/editor/src/components/editor/liveblocks-utils.ts index dc6069cf3c27..671c8359bc8d 100644 --- a/editor/src/components/editor/liveblocks-utils.ts +++ b/editor/src/components/editor/liveblocks-utils.ts @@ -1,7 +1,6 @@ import { IS_TEST_ENVIRONMENT, UTOPIA_BACKEND } from '../../common/env-vars' import { HEADERS, MODE } from '../../common/server' import { cachedPromise } from '../../core/shared/promise-utils' -import { isFeatureEnabled } from '../../utils/feature-switches' let isLiveblocksEnabledOnServer: boolean = false @@ -41,5 +40,5 @@ export async function checkLiveblocksEnabledOnServer(): Promise { } export function isLiveblocksEnabled(): boolean { - return isLiveblocksEnabledOnServer && isFeatureEnabled('Multiplayer') + return isLiveblocksEnabledOnServer } diff --git a/editor/src/components/editor/store/collaborative-editing.spec.ts b/editor/src/components/editor/store/collaborative-editing.spec.ts index edf6585dbd68..21d1fe7ee179 100644 --- a/editor/src/components/editor/store/collaborative-editing.spec.ts +++ b/editor/src/components/editor/store/collaborative-editing.spec.ts @@ -1,4 +1,3 @@ -import { setFeatureForUnitTestsUseInDescribeBlockOnly, wait } from '../../../utils/utils.test-utils' import { Y } from '../../../core/shared/yjs' import { RevisionsState, @@ -22,7 +21,6 @@ import { testParseCode } from '../../../core/workers/parser-printer/parser-print import { deleteFileFromCollaboration, updateExportsDetailFromCollaborationUpdate, - updateFile, updateFileFromCollaboration, updateImportsFromCollaborationUpdate, updateTopLevelElementsFromCollaborationUpdate, @@ -111,8 +109,6 @@ async function runAddHookForProjectChangesTest(test: AddHookForProjectChangesTes } describe('addHookForProjectChanges', () => { - setFeatureForUnitTestsUseInDescribeBlockOnly('Multiplayer', true) - it('adding file causes it to be added to the project contents', async () => { const code = 'export const A =
' const newParsedCode = testParseCode(code) diff --git a/editor/src/components/editor/store/collaborative-editing.ts b/editor/src/components/editor/store/collaborative-editing.ts index 696047d3d6f5..71a9e2c0f0e8 100644 --- a/editor/src/components/editor/store/collaborative-editing.ts +++ b/editor/src/components/editor/store/collaborative-editing.ts @@ -155,10 +155,8 @@ export function collateCollaborativeProjectChanges( } } } - if (isFeatureEnabled('Multiplayer')) { - if (oldContents != newContents) { - zipContentsTree(oldContents, newContents, onElement) - } + if (oldContents != newContents) { + zipContentsTree(oldContents, newContents, onElement) } return changesToProcess @@ -773,12 +771,8 @@ export function allowedToEditProject( loginState: LoginState, serverState: ProjectServerState, ): boolean { - if (isFeatureEnabled('Baton Passing For Control')) { - if (isLoggedIn(loginState)) { - return serverState.currentlyHolderOfTheBaton - } else { - return checkIsMyProject(serverState) - } + if (isLoggedIn(loginState)) { + return serverState.currentlyHolderOfTheBaton } else { return checkIsMyProject(serverState) } diff --git a/editor/src/components/editor/store/editor-state.ts b/editor/src/components/editor/store/editor-state.ts index 57147b23c29b..9007fe71cc15 100644 --- a/editor/src/components/editor/store/editor-state.ts +++ b/editor/src/components/editor/store/editor-state.ts @@ -180,7 +180,6 @@ import type { ProjectServerState } from './project-server-state' import type { ReparentTargetForPaste } from '../../canvas/canvas-strategies/strategies/reparent-utils' import { GridMenuWidth } from '../../canvas/stored-layout' import type { VariablesInScope } from '../../canvas/ui-jsx-canvas' -import { isFeatureEnabled } from '../../../utils/feature-switches' import type { ActiveFrame } from '../../canvas/commands/set-active-frames-command' import { Y } from '../../../core/shared/yjs' import { removeUnusedImportsForRemovedElement } from '../import-utils' @@ -442,12 +441,8 @@ export function emptyCollaborativeEditingSupportSession(): CollaborativeEditingS } export function emptyCollaborativeEditingSupport(): CollaborativeEditingSupport { - let session: CollaborativeEditingSupportSession | null = null - if (isFeatureEnabled('Multiplayer')) { - session = emptyCollaborativeEditingSupportSession() - } return { - session: session, + session: emptyCollaborativeEditingSupportSession(), } } diff --git a/editor/src/components/editor/store/project-server-state.tsx b/editor/src/components/editor/store/project-server-state.tsx index 4d9ae09be8f1..67dc3284bf46 100644 --- a/editor/src/components/editor/store/project-server-state.tsx +++ b/editor/src/components/editor/store/project-server-state.tsx @@ -1,12 +1,10 @@ import * as React from 'react' import type { ProjectListing } from '../../../common/persistence' -import { IS_TEST_ENVIRONMENT } from '../../../common/env-vars' import { fetchProjectMetadata } from '../../../common/server' import type { EditorDispatch } from '../action-types' import { updateProjectServerState } from '../actions/action-creators' import { checkProjectOwned, projectIsStoredLocally } from '../persistence/persistence-backend' import type { ProjectOwnership } from '../persistence/generic/persistence-types' -import { isFeatureEnabled } from '../../../utils/feature-switches' import { CollaborationEndpoints } from '../collaborative-endpoints' export interface ProjectMetadataFromServer { @@ -174,22 +172,17 @@ function restartServerStateWatcher( forkedFromProjectId: string | null, dispatch: EditorDispatch, ): void { - if (isFeatureEnabled('Baton Passing For Control')) { - void updateProjectServerStateInStore(loggedIn, projectId, forkedFromProjectId, dispatch) - // Reset the multiplier if triggered from outside of `restartWatcherInterval`. - currentWatcherIntervalMultiplier = 1 - - function restartWatcherInterval(): void { - if (serverStateWatcherInstance != null) { - window.clearInterval(serverStateWatcherInstance) - } - serverStateWatcherInstance = window.setInterval(() => { - void updateProjectServerStateInStore( - loggedIn, - projectId, - forkedFromProjectId, - dispatch, - ).then((result) => { + void updateProjectServerStateInStore(loggedIn, projectId, forkedFromProjectId, dispatch) + // Reset the multiplier if triggered from outside of `restartWatcherInterval`. + currentWatcherIntervalMultiplier = 1 + + function restartWatcherInterval(): void { + if (serverStateWatcherInstance != null) { + window.clearInterval(serverStateWatcherInstance) + } + serverStateWatcherInstance = window.setInterval(() => { + void updateProjectServerStateInStore(loggedIn, projectId, forkedFromProjectId, dispatch).then( + (result) => { // If there's a failure, then double the multiplier and recreate the interval. if (result === 'failure') { if (currentWatcherIntervalMultiplier < 10) { @@ -206,13 +199,11 @@ function restartServerStateWatcher( restartWatcherInterval() } } - }) - }, baseWatcherIntervalTime * currentWatcherIntervalMultiplier) - } - restartWatcherInterval() - } else { - void updateProjectServerStateInStore(loggedIn, projectId, forkedFromProjectId, dispatch) + }, + ) + }, baseWatcherIntervalTime * currentWatcherIntervalMultiplier) } + restartWatcherInterval() } export const ProjectServerStateUpdater = React.memo( diff --git a/editor/src/core/commenting/comment-hooks.tsx b/editor/src/core/commenting/comment-hooks.tsx index 21b06497bde2..b8b6647db428 100644 --- a/editor/src/core/commenting/comment-hooks.tsx +++ b/editor/src/core/commenting/comment-hooks.tsx @@ -35,7 +35,6 @@ import * as EP from '../shared/element-path' import { getCurrentTheme } from '../../components/editor/store/editor-state' import { useMyUserId } from '../shared/multiplayer-hooks' import { usePermissions } from '../../components/editor/store/permissions' -import { isFeatureEnabled } from '../../utils/feature-switches' import { modify, toFirst } from '../shared/optics/optic-utilities' import { filtered, fromObjectField, traverseArray } from '../shared/optics/optic-creators' import { foldEither } from '../shared/either' @@ -458,7 +457,7 @@ export function useCanComment() { const isStatusOk = connectionLostStatus == null || connectionLostStatus === 'restored' - return isFeatureEnabled('Multiplayer') && canComment && isStatusOk + return canComment && isStatusOk } export function getThreadLocationOnCanvas( diff --git a/editor/src/core/performance/__snapshots__/performance-regression-tests.spec.tsx.snap b/editor/src/core/performance/__snapshots__/performance-regression-tests.spec.tsx.snap index acdaad94ebe0..467da65f7b11 100644 --- a/editor/src/core/performance/__snapshots__/performance-regression-tests.spec.tsx.snap +++ b/editor/src/core/performance/__snapshots__/performance-regression-tests.spec.tsx.snap @@ -1539,6 +1539,49 @@ Array [ "/ComponentSectionInner/UtopiaSpiedExoticType(Symbol(react.fragment))/Symbol(react.forward_ref)(Styled(div))/div", "/Symbol(react.forward_ref)(Styled(div))/div/Symbol(react.forward_ref)(Styled(div))/div", "/Symbol(react.forward_ref)(Styled(div))/div/Symbol(react.forward_ref)(Styled(div))/div", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedExoticType(Symbol(react.fragment))", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/div/null//Symbol(react.memo)()", + "/null///span", + "/null///UtopiaSpiedClass(Tooltip)", + "/null///Symbol(react.memo)(PropertyLabel)", + "/null///Symbol(react.memo)()", + "/null///UtopiaSpiedFunctionComponent(UIGridRow)", + "/null///UtopiaSpiedClass(InspectorContextMenuWrapper)", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal):data-testid='context-menu-for-onMouseDown'", + "//UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div:data-testid='context-menu-for-onMouseDown'", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/UtopiaSpiedFunctionComponent(MenuProvider)/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedClass(Tooltip)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/UtopiaSpiedClass(Tooltip)/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.forward_ref)(TippyWrapper)", + "/UtopiaSpiedClass(Tooltip)/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.forward_ref)(TippyWrapper)/UtopiaSpiedFunctionComponent(Tippy)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.forward_ref)(TippyWrapper)/UtopiaSpiedFunctionComponent(Tippy)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div//Symbol(react.memo)(ExpressionInputPropertyControl)", + "/div//ExpressionInputPropertyControl/Symbol(react.memo)(Symbol(react.forward_ref)())", + "/ExpressionInputPropertyControl/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.memo)(Symbol(react.forward_ref)())", + "/Symbol(react.forward_ref)()/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.forward_ref)(EmotionCssPropInternal):data-testid='onMouseDown-expression-input-property-control'", + "/Symbol(react.forward_ref)()/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)()/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/form", + "/Symbol(react.forward_ref)()/form/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.forward_ref)():data-testid='onMouseDown-expression-input-property-control'", + "/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.forward_ref)()/input:data-testid='onMouseDown-expression-input-property-control'", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/span", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/span", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)/UtopiaSpiedExoticType(Symbol(react.provider))", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FixedHugDropdown/Symbol(react.memo)(Symbol(react.forward_ref)())", "/FixedHugDropdown/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/UtopiaSpiedClass(StateManager)", "/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/UtopiaSpiedClass(StateManager)/UtopiaSpiedClass(Select)", @@ -1746,6 +1789,290 @@ Array [ "/UtopiaSpiedFunctionComponent(MenuProvider)/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/UtopiaSpiedFunctionComponent(SliderControl)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/Symbol(react.memo)(NumberInput)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/UtopiaSpiedFunctionComponent(UIGridRow)", + "/div/SliderNumberControl/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/SliderNumberControl/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(SliderControl)/UtopiaSpiedClass(ComponentEnhancer(undefined))", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(SliderControl)/Symbol(react.forward_ref)(Styled(div))", + "/div/UtopiaSpiedFunctionComponent(SliderControl)/Symbol(react.forward_ref)(Styled(div))/div", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/UtopiaSpiedClass(Handle)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/UtopiaSpiedFunctionComponent(Track)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/div", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/UtopiaSpiedFunctionComponent(Steps)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/UtopiaSpiedFunctionComponent(Marks)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/div", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedFunctionComponent(Track)/div", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedFunctionComponent(Steps)/span", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedFunctionComponent(Steps)/div", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedClass(Handle)/div", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedFunctionComponent(Marks)/span", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedFunctionComponent(Marks)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.memo)(Icon)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.memo)(Icon)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/div", + "/NumberInput/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.memo)(Symbol(react.forward_ref)())", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.forward_ref)(Styled(input)):data-testid='opacity-number-input'", + "/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.forward_ref)(Styled(input))/input:data-testid='opacity-number-input'", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/span", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/span", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)/UtopiaSpiedExoticType(Symbol(react.provider))", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)(PropertyLabel)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(UIGridRow)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)(PropertyLabel)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//div", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(UIGridRow)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div//Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedFunctionComponent(FlexRow)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-text-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)(NumberInput)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedFunctionComponent(PropertyRow)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedFunctionComponent(PropertyRow)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//div", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.forward_ref)(Styled(div))", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(PropertyRow)", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//Symbol(react.memo)(Symbol(react.forward_ref)())", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(Tooltip)", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-transform-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.memo)(Icon)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/div", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Animated(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/div", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-background-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)(Icon)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)(NumberInput)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(UIGridRow)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-border-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)(Icon)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-shadow-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.memo)(Icon)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/div", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-text-shadow-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/div", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/EventHandlersSection/Symbol(react.forward_ref)(Styled(div))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/EventHandlersSection/Symbol(react.memo)()", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/EventHandlersSection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/EventHandlersSection/UtopiaSpiedExoticType(Symbol(react.fragment))/Symbol(react.forward_ref)(Styled(div))/div", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//UtopiaSpiedClass(EditorCanvas)", + "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//Symbol(react.memo)(FloatingPostActionMenu)", + "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//div", + "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//Symbol(react.forward_ref)(Styled(div))", + "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//Symbol(react.forward_ref)(Styled(div))", + "/div//Symbol(react.forward_ref)(Styled(div))/div", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/div", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/Symbol(react.memo)(NewCanvasControls)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/Symbol(react.memo)()", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/Symbol(react.memo)()", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/UtopiaSpiedFunctionComponent(EditorCommon)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/div:data-testid='canvas-root'", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/div:data-testid='new-canvas-controls-container'", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)(SelectionAreaRectangle)", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/Symbol(react.forward_ref)(Styled(div))/div/Symbol(react.forward_ref)(Styled(div))/div", + "////UtopiaSpiedFunctionComponent()", + "////UtopiaSpiedExoticType(Symbol(react.provider))", + "/UtopiaSpiedExoticType(Symbol(react.provider))/Symbol(react.provider)/UtopiaSpiedFunctionComponent()/UtopiaSpiedExoticType(Symbol(react.provider))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.memo)()", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/div", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.forward_ref)(Styled(div))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.memo)()", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.forward_ref)(Styled(div))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.forward_ref)(Styled(div))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.memo)()", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/ComponentSectionInner/UtopiaSpiedExoticType(Symbol(react.fragment))/Symbol(react.forward_ref)(Styled(div))/div", + "/Symbol(react.forward_ref)(Styled(div))/div/Symbol(react.forward_ref)(Styled(div))/div", + "/Symbol(react.forward_ref)(Styled(div))/div/Symbol(react.forward_ref)(Styled(div))/div", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedExoticType(Symbol(react.fragment))", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/div/null//Symbol(react.memo)()", + "/null///span", + "/null///UtopiaSpiedClass(Tooltip)", + "/null///Symbol(react.memo)(PropertyLabel)", + "/null///Symbol(react.memo)()", + "/null///UtopiaSpiedFunctionComponent(UIGridRow)", + "/null///UtopiaSpiedClass(InspectorContextMenuWrapper)", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal):data-testid='context-menu-for-onMouseDown'", + "//UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div:data-testid='context-menu-for-onMouseDown'", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/UtopiaSpiedFunctionComponent(MenuProvider)/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedClass(Tooltip)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/UtopiaSpiedClass(Tooltip)/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.forward_ref)(TippyWrapper)", + "/UtopiaSpiedClass(Tooltip)/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.forward_ref)(TippyWrapper)/UtopiaSpiedFunctionComponent(Tippy)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.forward_ref)(TippyWrapper)/UtopiaSpiedFunctionComponent(Tippy)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div//Symbol(react.memo)(ExpressionInputPropertyControl)", + "/div//ExpressionInputPropertyControl/Symbol(react.memo)(Symbol(react.forward_ref)())", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/span", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/span", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)/UtopiaSpiedExoticType(Symbol(react.provider))", + "/null///span", + "/null///UtopiaSpiedClass(Tooltip)", + "/null///Symbol(react.memo)(PropertyLabel)", + "/null///Symbol(react.memo)()", + "/null///UtopiaSpiedFunctionComponent(UIGridRow)", + "/null///UtopiaSpiedClass(InspectorContextMenuWrapper)", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "///UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal):data-testid='context-menu-for-onMouseDown'", + "//UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div:data-testid='context-menu-for-onMouseDown'", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/UtopiaSpiedFunctionComponent(MenuProvider)/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedClass(Tooltip)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/UtopiaSpiedClass(Tooltip)/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.forward_ref)(TippyWrapper)", + "/UtopiaSpiedClass(Tooltip)/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.forward_ref)(TippyWrapper)/UtopiaSpiedFunctionComponent(Tippy)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.forward_ref)(TippyWrapper)/UtopiaSpiedFunctionComponent(Tippy)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div//Symbol(react.memo)(ExpressionInputPropertyControl)", + "/div//ExpressionInputPropertyControl/Symbol(react.memo)(Symbol(react.forward_ref)())", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/span", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/span", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)/UtopiaSpiedExoticType(Symbol(react.provider))", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/Symbol(react.memo)(NumberInput)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/Symbol(react.memo)(NumberInput)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/Symbol(react.memo)(NumberInput)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/Symbol(react.memo)(NumberInput)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(Styled(div))/div//Symbol(react.memo)(PropertyLabel)", + "/Symbol(react.forward_ref)(Styled(div))/div//Symbol(react.memo)()", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(UIGridRow)", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div//Symbol(react.memo)()", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(BooleanControl)", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedExoticType(Symbol(react.fragment))", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/ChildPinControl/Symbol(react.memo)()", + "/Symbol(react.forward_ref)(Styled(div))/div//Symbol(react.memo)(Symbol(react.forward_ref)())", + "/Symbol(react.forward_ref)(Styled(div))/div//Symbol(react.memo)(Symbol(react.forward_ref)())", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/Symbol(react.memo)(PropertyLabel)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/Symbol(react.memo)(SliderNumberControl)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(UIGridRow)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/UtopiaSpiedFunctionComponent(MenuProvider)/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/UtopiaSpiedFunctionComponent(SliderControl)", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/Symbol(react.memo)(NumberInput)", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/UtopiaSpiedFunctionComponent(UIGridRow)", @@ -1883,7 +2210,6 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/EventHandlersSection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/EventHandlersSection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/EventHandlersSection/UtopiaSpiedExoticType(Symbol(react.fragment))", - "/EventHandlersSection/UtopiaSpiedExoticType(Symbol(react.fragment))/Symbol(react.forward_ref)(Styled(div))/div", "//UtopiaSpiedExoticType(Symbol(react.fragment))/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", "/UtopiaSpiedFunctionComponent(Provider)/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(ComponentRenderer(storyboard))/Symbol(react.forward_ref)(SpyWrapper)", @@ -2280,6 +2606,12 @@ Array [ "/ComponentSectionInner/UtopiaSpiedExoticType(Symbol(react.fragment))/Symbol(react.forward_ref)(Styled(div))/div", "/Symbol(react.forward_ref)(Styled(div))/div/Symbol(react.forward_ref)(Styled(div))/div", "/Symbol(react.forward_ref)(Styled(div))/div/Symbol(react.forward_ref)(Styled(div))/div", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedExoticType(Symbol(react.fragment))", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.forward_ref)(EmotionCssPropInternal)/div", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FixedHugDropdown/Symbol(react.memo)(Symbol(react.forward_ref)())", "/FixedHugDropdown/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/UtopiaSpiedClass(StateManager)", "/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/UtopiaSpiedClass(StateManager)/UtopiaSpiedClass(Select)", @@ -2459,6 +2791,226 @@ Array [ "/UtopiaSpiedFunctionComponent(MenuProvider)/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/UtopiaSpiedFunctionComponent(SliderControl)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/Symbol(react.memo)(NumberInput)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/UtopiaSpiedFunctionComponent(UIGridRow)", + "/div/SliderNumberControl/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/SliderNumberControl/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(SliderControl)/UtopiaSpiedClass(ComponentEnhancer(undefined))", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(SliderControl)/Symbol(react.forward_ref)(Styled(div))", + "/div/UtopiaSpiedFunctionComponent(SliderControl)/Symbol(react.forward_ref)(Styled(div))/div", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/UtopiaSpiedClass(Handle)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/UtopiaSpiedFunctionComponent(Track)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/div", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/UtopiaSpiedFunctionComponent(Steps)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/UtopiaSpiedFunctionComponent(Marks)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(ComponentEnhancer(undefined))/div", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedFunctionComponent(Track)/div", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedFunctionComponent(Steps)/span", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedFunctionComponent(Steps)/div", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedClass(Handle)/div", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedFunctionComponent(Marks)/span", + "/UtopiaSpiedClass(ComponentEnhancer(undefined))/div/UtopiaSpiedFunctionComponent(Marks)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.memo)(Icon)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.memo)(Icon)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/NumberInput/div", + "/NumberInput/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.memo)(Symbol(react.forward_ref)())", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.forward_ref)(Styled(input)):data-testid='opacity-number-input'", + "/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.forward_ref)(Styled(input))/input:data-testid='opacity-number-input'", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/span", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/span", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedClass(MomentumContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)/UtopiaSpiedExoticType(Symbol(react.provider))", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)(PropertyLabel)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(UIGridRow)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)(PropertyLabel)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//div", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(UIGridRow)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div//Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedFunctionComponent(FlexRow)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-text-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)(NumberInput)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedFunctionComponent(PropertyRow)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedFunctionComponent(PropertyRow)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//div", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.forward_ref)(Styled(div))", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(PropertyRow)", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//Symbol(react.memo)(Symbol(react.forward_ref)())", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(Tooltip)", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-transform-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.memo)(Icon)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/div", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Animated(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/div", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-background-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)(Icon)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)(NumberInput)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(UIGridRow)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-border-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)(Icon)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-shadow-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.memo)(Icon)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/div", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/span", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div)):data-testid='inspector-text-shadow-remove-all'", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.memo)()", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/div", + "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//UtopiaSpiedClass(EditorCanvas)", + "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//Symbol(react.memo)(FloatingPostActionMenu)", + "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//div", + "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//Symbol(react.forward_ref)(Styled(div))", + "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//Symbol(react.forward_ref)(Styled(div))", + "/div//Symbol(react.forward_ref)(Styled(div))/div", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/div", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/Symbol(react.memo)(NewCanvasControls)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/Symbol(react.memo)()", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/Symbol(react.memo)()", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/UtopiaSpiedFunctionComponent(EditorCommon)", + "/Symbol(react.forward_ref)(Styled(div))/div/UtopiaSpiedClass(EditorCanvas)/div:data-testid='canvas-root'", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)()", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/div:data-testid='new-canvas-controls-container'", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/Symbol(react.memo)(SelectionAreaRectangle)", + "/div/div/UtopiaSpiedFunctionComponent(NewCanvasControlsInner)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/Symbol(react.forward_ref)(Styled(div))/div/Symbol(react.forward_ref)(Styled(div))/div", + "////UtopiaSpiedFunctionComponent()", + "////UtopiaSpiedExoticType(Symbol(react.provider))", + "/UtopiaSpiedExoticType(Symbol(react.provider))/Symbol(react.provider)/UtopiaSpiedFunctionComponent()/UtopiaSpiedExoticType(Symbol(react.provider))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.memo)()", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/div", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.forward_ref)(Styled(div))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.memo)()", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.forward_ref)(Styled(div))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.forward_ref)(Styled(div))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/Symbol(react.memo)()", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedClass(ComponentSection)/ComponentSectionInner/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/ComponentSectionInner/UtopiaSpiedExoticType(Symbol(react.fragment))/Symbol(react.forward_ref)(Styled(div))/div", + "/Symbol(react.forward_ref)(Styled(div))/div/Symbol(react.forward_ref)(Styled(div))/div", + "/Symbol(react.forward_ref)(Styled(div))/div/Symbol(react.forward_ref)(Styled(div))/div", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedExoticType(Symbol(react.fragment))", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/Symbol(react.memo)(NumberInput)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/Symbol(react.memo)(NumberInput)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/Symbol(react.memo)(NumberInput)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/Symbol(react.memo)(NumberInput)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(Styled(div))/div//Symbol(react.memo)(PropertyLabel)", + "/Symbol(react.forward_ref)(Styled(div))/div//Symbol(react.memo)()", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(UIGridRow)", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div//Symbol(react.memo)()", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(BooleanControl)", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedExoticType(Symbol(react.fragment))", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/ChildPinControl/Symbol(react.memo)()", + "/Symbol(react.forward_ref)(Styled(div))/div//Symbol(react.memo)(Symbol(react.forward_ref)())", + "/Symbol(react.forward_ref)(Styled(div))/div//Symbol(react.memo)(Symbol(react.forward_ref)())", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/Symbol(react.memo)(PropertyLabel)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/Symbol(react.memo)(SliderNumberControl)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(UIGridRow)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/OpacityRow/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/UtopiaSpiedFunctionComponent(MenuProvider)/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/UtopiaSpiedFunctionComponent(UIGridRow)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/UtopiaSpiedFunctionComponent(SliderControl)", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/Symbol(react.memo)(NumberInput)", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/SliderNumberControl/UtopiaSpiedFunctionComponent(UIGridRow)", diff --git a/editor/src/core/performance/performance-regression-tests.spec.tsx b/editor/src/core/performance/performance-regression-tests.spec.tsx index 7e051486f32b..17e23a10eccc 100644 --- a/editor/src/core/performance/performance-regression-tests.spec.tsx +++ b/editor/src/core/performance/performance-regression-tests.spec.tsx @@ -65,7 +65,7 @@ describe('React Render Count Tests -', () => { const renderCountAfter = renderResult.getNumberOfRenders() // if this breaks, GREAT NEWS but update the test please :) - expect(renderCountAfter - renderCountBefore).toMatchInlineSnapshot(`702`) + expect(renderCountAfter - renderCountBefore).toMatchInlineSnapshot(`928`) expect(renderResult.getRenderInfo()).toMatchSnapshot() }) @@ -127,7 +127,7 @@ describe('React Render Count Tests -', () => { const renderCountAfter = renderResult.getNumberOfRenders() // if this breaks, GREAT NEWS but update the test please :) - expect(renderCountAfter - renderCountBefore).toMatchInlineSnapshot(`747`) + expect(renderCountAfter - renderCountBefore).toMatchInlineSnapshot(`1073`) expect(renderResult.getRenderInfo()).toMatchSnapshot() }) diff --git a/editor/src/utils/feature-switches.ts b/editor/src/utils/feature-switches.ts index 91145a95cfec..35c70b1a8274 100644 --- a/editor/src/utils/feature-switches.ts +++ b/editor/src/utils/feature-switches.ts @@ -14,8 +14,6 @@ export type FeatureName = | 'Project Thumbnail Generation' | 'Debug - Print UIDs' | 'Steganography' - | 'Multiplayer' - | 'Baton Passing For Control' | 'Debug – Connections' export const AllFeatureNames: FeatureName[] = [ @@ -31,8 +29,6 @@ export const AllFeatureNames: FeatureName[] = [ 'Project Thumbnail Generation', 'Debug - Print UIDs', 'Steganography', - 'Multiplayer', - 'Baton Passing For Control', 'Debug – Connections', ] @@ -48,8 +44,6 @@ let FeatureSwitches: { [feature in FeatureName]: boolean } = { 'Project Thumbnail Generation': false, 'Debug - Print UIDs': false, Steganography: false, - Multiplayer: false, - 'Baton Passing For Control': false, 'Debug – Connections': false, } diff --git a/puppeteer-tests/src/comments/collaboration-test.spec.tsx b/puppeteer-tests/src/comments/collaboration-test.spec.tsx index 86a60c8819e8..35880c9741ab 100644 --- a/puppeteer-tests/src/comments/collaboration-test.spec.tsx +++ b/puppeteer-tests/src/comments/collaboration-test.spec.tsx @@ -28,7 +28,7 @@ describe('Collaboration test', () => { 'can collaboratively add an element', async () => { const { page: page1 } = await utopiaBrowser1.setup({ - url: `${BASE_URL}/p/?fakeUser=alice&Multiplayer=true${BRANCH_NAME}`, + url: `${BASE_URL}/p/?fakeUser=alice${BRANCH_NAME}`, timeout: PUPPETEER_TIMEOUT, }) @@ -48,7 +48,7 @@ describe('Collaboration test', () => { const newProjectUrl = new url.URL(page1.url()).pathname const { page: page2 } = await utopiaBrowser2.setup({ - url: `${BASE_URL}${newProjectUrl}?fakeUser=bob&Multiplayer=true${BRANCH_NAME}`, + url: `${BASE_URL}${newProjectUrl}?fakeUser=bob${BRANCH_NAME}`, timeout: PUPPETEER_TIMEOUT, }) diff --git a/puppeteer-tests/src/comments/comment-utils.ts b/puppeteer-tests/src/comments/comment-utils.ts index b36710b8d71e..cac722b1ef62 100644 --- a/puppeteer-tests/src/comments/comment-utils.ts +++ b/puppeteer-tests/src/comments/comment-utils.ts @@ -18,7 +18,7 @@ export async function getElementWithSelector( export async function initBrowserTest(utopiaBrowser: UtopiaPuppeteerBrowser) { const { page } = await utopiaBrowser.setup({ - url: `${BASE_URL}/p/?fakeUser=alice&Multiplayer=true${BRANCH_NAME}`, + url: `${BASE_URL}/p/?fakeUser=alice${BRANCH_NAME}`, timeout: PUPPETEER_TIMEOUT, }) await getElementWithSelector(page, '#playground-scene') // wait for the scene to render @@ -28,7 +28,7 @@ export async function initBrowserTest(utopiaBrowser: UtopiaPuppeteerBrowser) { export async function initSignedInBrowserTest(utopiaBrowser: UtopiaPuppeteerBrowser) { const { page } = await utopiaBrowser.setup({ - url: `${BASE_URL}/p/?fakeUser=alice&Multiplayer=true${BRANCH_NAME}`, + url: `${BASE_URL}/p/?fakeUser=alice${BRANCH_NAME}`, timeout: PUPPETEER_TIMEOUT, })