diff --git a/editor/src/components/context-menu-wrapper.tsx b/editor/src/components/context-menu-wrapper.tsx index a5daf10868d1..73d9c119ea49 100644 --- a/editor/src/components/context-menu-wrapper.tsx +++ b/editor/src/components/context-menu-wrapper.tsx @@ -1,8 +1,7 @@ /** @jsxRuntime classic */ /** @jsx jsx */ import { jsx } from '@emotion/react' -import fastDeepEquals from 'fast-deep-equal' -import React, { Component as ReactComponent } from 'react' +import React from 'react' import { contextMenu, Item, @@ -10,7 +9,7 @@ import { Submenu as SubmenuComponent, useContextMenu, } from 'react-contexify' -import { colorTheme, Icons } from '../uuiui' +import { colorTheme, Icons, UtopiaStyles } from '../uuiui' import { getControlStyles } from '../uuiui-deps' import type { ContextMenuItem } from './context-menu-items' import type { EditorDispatch } from './editor/action-types' @@ -18,206 +17,198 @@ import type { WindowPoint } from '../core/shared/math-utils' import { windowPoint } from '../core/shared/math-utils' import { BodyMenuOpenClass } from '../core/shared/utils' +interface Submenu { + items: Item[] + label: string | React.ReactNode + type: 'submenu' +} + +interface SimpleItem { + item: Item + type: 'simple' +} + +type MenuItem = Submenu | SimpleItem | null + +export type Item = ContextMenuItem | null + +export type ContextMenuData = Item[] | null + export interface ContextMenuWrapperProps { - id: string - items: Array> - dispatch?: EditorDispatch - data: T - renderTag?: string + children?: React.ReactNode className?: string + data: T + dispatch?: EditorDispatch + forwardRef?: React.RefObject + id: string innerClassName?: string - style?: React.CSSProperties + items: ContextMenuItem[] providerStyle?: React.CSSProperties + renderTag?: string + style?: React.CSSProperties testId?: string - forwardRef?: React.RefObject } export interface ContextMenuProps { - id: string - items: Array> dispatch?: EditorDispatch getData: () => T + id: string + items: ContextMenuItem[] } -interface Submenu { - type: 'submenu' - label: string | React.ReactNode - items: Array> -} - -interface SimpleItem { - type: 'simple' - item: ContextMenuItem -} +const onShown = () => document.body.classList.add(BodyMenuOpenClass) +const onHidden = () => document.body.classList.remove(BodyMenuOpenClass) -export class MomentumContextMenu extends ReactComponent> { - shouldComponentUpdate(nextProps: ContextMenuProps) { - const result = !fastDeepEquals(this.props.items, nextProps.items) - return result - } +export const ContextMenu = ({ dispatch, getData, id, items }: ContextMenuProps) => { + const splitItems = React.useMemo(() => { + const tempItems: MenuItem[] = [] - splitItemsForSubmenu(items: Array>): Array | SimpleItem> { - let splitItems: Array | SimpleItem> = [] for (const item of items) { - if (item.submenuName != null) { - const alreadyAdded = splitItems.find( - (alreadySplit: any) => - alreadySplit.type === 'submenu' && alreadySplit.label === item.submenuName, + if (item?.submenuName != null) { + const alreadyAdded = tempItems.find( + (alreadySplit) => + alreadySplit?.type === 'submenu' && alreadySplit.label === item.submenuName, ) if (alreadyAdded != null && alreadyAdded.type === 'submenu') { alreadyAdded.items.push(item) } else { - splitItems.push({ + tempItems.push({ type: 'submenu', - label: item.submenuName!, + label: item.submenuName, items: [item], }) } } else { - splitItems.push({ + tempItems.push({ type: 'simple', item: item, }) } } - return splitItems - } + return tempItems + }, [items]) - isHidden = (item: ContextMenuItem): (() => boolean) => { - return () => { - if (item.isHidden == null) { - return false - } else if (typeof item.isHidden === 'function') { - return item.isHidden(this.props.getData()) - } else { - return item.isHidden - } - } - } - - isDisabled = (item: ContextMenuItem): (() => boolean) => { - return () => { - if (typeof item.enabled === 'function') { - return !item.enabled(this.props.getData()) - } else { - return !item.enabled + const isHidden = React.useCallback( + (item: Item): (() => boolean) => { + return () => { + if (typeof item?.isHidden === 'function') { + return item.isHidden(getData()) + } + return item?.isHidden ?? false } - } - } + }, + [getData], + ) - renderItem(item: ContextMenuItem, index: number) { - return ( - { - event.stopPropagation() - const rightClickCoordinate: WindowPoint | null = (() => { - if (!(triggerEvent instanceof MouseEvent)) { - return null - } - return windowPoint({ x: triggerEvent.clientX, y: triggerEvent.clientY }) - })() - item.action(this.props.getData(), this.props.dispatch, rightClickCoordinate, event) - contextMenu.hideAll() - }} - hidden={this.isHidden(item)} - style={{ - height: item.isSeparator ? 9 : 28, - display: 'flex', - alignItems: 'center', - borderRadius: 4, - }} - > - - {item.name} - - - {item.shortcut} - - - ) - } + const isDisabled = React.useCallback( + (item: Item): (() => boolean) => + () => { + return typeof item?.enabled === 'function' ? !item.enabled(getData?.()) : !item?.enabled + }, + [getData], + ) - onShown = () => { - document.body.classList.add(BodyMenuOpenClass) - } - onHidden = () => { - document.body.classList.remove(BodyMenuOpenClass) - } + const renderItem = React.useCallback( + (item: Item, index: number) => { + return ( + { + event.stopPropagation() + const rightClickCoordinate: WindowPoint | null = (() => { + if (!(triggerEvent instanceof MouseEvent)) { + return null + } + return windowPoint({ x: triggerEvent.clientX, y: triggerEvent.clientY }) + })() + item?.action(getData(), dispatch, rightClickCoordinate, event) + contextMenu.hideAll() + }} + hidden={isHidden(item)} + style={{ + ...UtopiaStyles.flexRow, + height: item?.isSeparator ? 9 : 28, + borderRadius: UtopiaStyles.popup.borderRadius, + }} + > + + {item?.name} + + + {item?.shortcut} + + + ) + }, + [getData, dispatch, isDisabled, isHidden], + ) - render() { - const { id } = this.props - const items = this.splitItemsForSubmenu(this.props.items) - return ( - - {items.map((item: Submenu | SimpleItem, index: number) => { - if (item.type === 'submenu') { - return ( - - {item.label} - - } - arrow={} - > - {item.items.map((submenuItem, submenuIndex) => - this.renderItem(submenuItem, submenuIndex), - )} - - ) - } else { - return this.renderItem(item.item, index) + return ( + + {splitItems.map((item, index) => { + if (item?.type === 'submenu') { + return ( + + {item.label} + + } + arrow={} + > + {item.items.map(renderItem)} + + ) + } else { + if (item === null) { + return null } - })} - - ) - } + return renderItem(item.item, index) + } + })} + + ) } -export class ContextMenuWrapper extends ReactComponent< - ContextMenuWrapperProps & { - dispatch?: EditorDispatch - children?: React.ReactNode - } -> { - getData = () => this.props.data - wrapperStopPropagation = (event: React.MouseEvent) => { - event.stopPropagation() - } - render() { - const name = `${this.props.id}-context-menu-wrapper` - return ( -
- - {this.props.children} - - -
- ) - } +export const ContextMenuWrapper = ({ + children, + className = '', + data, + dispatch, + forwardRef, + id, + items, + providerStyle, + style, +}: ContextMenuWrapperProps) => { + const name = `${id}-context-menu-wrapper` + + const stopPropagation = React.useCallback( + (event: React.MouseEvent) => event.stopPropagation(), + [], + ) + + const getData = React.useCallback(() => data, [data]) + + return ( +
+ + {children} + + +
+ ) } export const InspectorRowHoverCSS = { @@ -238,75 +229,81 @@ export const InspectorRowHoverCSS = { '--control-styles-interactive-unset-rail-color': getControlStyles('simple').railColor, }, } -export class InspectorContextMenuWrapper extends ReactComponent< - React.PropsWithChildren> -> { - getData = () => this.props.data - render() { - const name = `${this.props.id}-context-menu-wrapper` - return ( -
({ + children, + className = '', + data, + id, + items, + style, + testId, +}: ContextMenuWrapperProps) => { + const name = `${id}-context-menu-wrapper` + + const getData = React.useCallback(() => data, [data]) + + return ( +
), + ...InspectorRowHoverCSS, + }} + > + - - - {this.props.children} - - - -
- ) - } + {children} + + +
+ ) } interface MenuProviderProps { + children: React.ReactNode id: string itemsLength: number style?: React.CSSProperties - localXHack_KILLME?: 'local-x-coord-KILLME' | 'default' // FIXME: remove this, this is just here because react-contexify positions the context menu to the global position of the mouse, so MomentumContextMenu should in the root + localXHack_KILLME?: 'local-x-coord-KILLME' | 'default' // FIXME: remove this, this is just here because react-contexify positions the context menu to the global position of the mouse, so ContextMenu should in the root } -export const MenuProvider: React.FunctionComponent> = ( - props, -) => { - const { show } = useContextMenu({ id: props.id }) +export const MenuProvider = ({ + children, + id, + itemsLength, + localXHack_KILLME, + style, +}: MenuProviderProps) => { + const { show } = useContextMenu({ id }) + const onContextMenu = React.useCallback( (event: React.MouseEvent) => { - if (props.itemsLength > 0) { - if (props.localXHack_KILLME === 'local-x-coord-KILLME') { - show(event, { position: { x: event.nativeEvent.offsetX, y: event.nativeEvent.pageY } }) - } else { - show(event) - } + if (itemsLength <= 0) { + return } + + show( + event, + localXHack_KILLME === 'local-x-coord-KILLME' + ? { position: { x: event.nativeEvent.offsetX, y: event.nativeEvent.pageY } } + : undefined, + ) }, - [props.itemsLength, props.localXHack_KILLME, show], + [itemsLength, localXHack_KILLME, show], ) return ( -
- {props.children} +
+ {children}
) } diff --git a/editor/src/components/element-context-menu.tsx b/editor/src/components/element-context-menu.tsx index ab3599de3e7d..7bd1349d8992 100644 --- a/editor/src/components/element-context-menu.tsx +++ b/editor/src/components/element-context-menu.tsx @@ -31,7 +31,7 @@ import { pasteHere, replace, } from './context-menu-items' -import { MomentumContextMenu } from './context-menu-wrapper' +import { ContextMenu } from './context-menu-wrapper' import { useRefEditorState, useEditorState, Substores } from './editor/store/store-hook' import { CanvasContextMenuPortalTargetID } from '../core/shared/utils' import type { EditorDispatch } from './editor/action-types' @@ -241,7 +241,7 @@ export const ElementContextMenu = React.memo(({ contextMenuInstance }: ElementCo return null } else { return ReactDOM.createPortal( - - + ) } diff --git a/editor/src/components/navigator/external-resources/generic-external-resources-list-item.tsx b/editor/src/components/navigator/external-resources/generic-external-resources-list-item.tsx index a457ca54fb28..7e38901f94e3 100644 --- a/editor/src/components/navigator/external-resources/generic-external-resources-list-item.tsx +++ b/editor/src/components/navigator/external-resources/generic-external-resources-list-item.tsx @@ -4,7 +4,7 @@ import type { ExternalResources, } from '../../../printer-parsers/html/external-resources-parser' import { useExternalResources } from '../../../printer-parsers/html/external-resources-parser' -import { MenuProvider, MomentumContextMenu } from '../../../uuiui-deps' +import { MenuProvider, ContextMenu } from '../../../uuiui-deps' import { UIGridRow } from '../../inspector/widgets/ui-grid-row' import { ResourcesListGridRowConfig } from './generic-external-resources-list' import type { ContextMenuItem } from '../../context-menu-items' @@ -83,7 +83,7 @@ export const GenericExternalResourcesListItem = React.memo {value.rel}
- + ) diff --git a/editor/src/components/navigator/left-pane/github-pane/github-file-changes-list.tsx b/editor/src/components/navigator/left-pane/github-pane/github-file-changes-list.tsx index a7c21b8b2c1b..0ef586916816 100644 --- a/editor/src/components/navigator/left-pane/github-pane/github-file-changes-list.tsx +++ b/editor/src/components/navigator/left-pane/github-pane/github-file-changes-list.tsx @@ -18,7 +18,7 @@ import * as EditorActions from '../../../editor/actions/action-creators' import { Substores, useEditorState } from '../../../editor/store/store-hook' import { GithubFileStatusLetter } from '../../../filebrowser/fileitem' import { when } from '../../../../utils/react-conditionals' -import { MenuProvider, MomentumContextMenu } from '../../../../components/context-menu-wrapper' +import { MenuProvider, ContextMenu } from '../../../../components/context-menu-wrapper' import { NO_OP } from '../../../../core/shared/utils' import { useContextMenu } from 'react-contexify' import { getConflictMenuItems } from '../../../../core/shared/github-ui' @@ -148,7 +148,7 @@ const ConflictButton = React.memo((props: ConflictButtonProps) => { > Action... - + ) }) diff --git a/editor/src/components/navigator/left-pane/pages-pane.tsx b/editor/src/components/navigator/left-pane/pages-pane.tsx index 3c247177a772..349822df25c2 100644 --- a/editor/src/components/navigator/left-pane/pages-pane.tsx +++ b/editor/src/components/navigator/left-pane/pages-pane.tsx @@ -41,7 +41,7 @@ import { } from '../../../printer-parsers/html/external-resources-parser' import { defaultEither } from '../../../core/shared/either' import { unless, when } from '../../../utils/react-conditionals' -import { MomentumContextMenu } from '../../context-menu-wrapper' +import { ContextMenu } from '../../context-menu-wrapper' import { useDispatch } from '../../editor/store/dispatch-context' import { addNewPage, @@ -533,7 +533,7 @@ export const AddPageContextMenu = React.memo( } return ReactDOM.createPortal( - ({ diff --git a/editor/src/components/navigator/navigator-item/component-picker-context-menu.tsx b/editor/src/components/navigator/navigator-item/component-picker-context-menu.tsx index 48106403063e..55f602365513 100644 --- a/editor/src/components/navigator/navigator-item/component-picker-context-menu.tsx +++ b/editor/src/components/navigator/navigator-item/component-picker-context-menu.tsx @@ -45,7 +45,7 @@ import type { PreferredChildComponentDescriptor } from '../../custom-code/intern import { fixUtopiaElement, generateConsistentUID } from '../../../core/shared/uid-utils' import { getAllUniqueUids } from '../../../core/model/get-unique-ids' import { elementFromInsertMenuItem } from '../../editor/insert-callbacks' -import { ContextMenuWrapper, MomentumContextMenu } from '../../context-menu-wrapper' +import { ContextMenuWrapper, ContextMenu } from '../../context-menu-wrapper' import { BodyMenuOpenClass, NO_OP, assertNever } from '../../../core/shared/utils' import { type ContextMenuItem } from '../../context-menu-items' import { FlexRow, Icn, type IcnProps } from '../../../uuiui' 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 6466aa0712fe..1a1ad2d42d20 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 @@ -158,13 +158,12 @@ Array [ "/null///Symbol(react.memo)()", "/null///div", "/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", + "/null///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal):data-testid='context-menu-for-onMouseDown'", + "//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div:data-testid='context-menu-for-onMouseDown'", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/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)", @@ -196,12 +195,12 @@ Array [ "/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)(Styled(div))/div/Icon/img", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)/UtopiaSpiedExoticType(Symbol(react.provider))", "/Symbol(react.forward_ref)(Styled(div))/div/EditorContractDropdown/Symbol(react.memo)(Symbol(react.forward_ref)())", "/Symbol(react.forward_ref)(Styled(div))/div/EditorContractDropdown/Symbol(react.forward_ref)(Styled(div)):data-testid='editor-fix-problems-button'", "/Symbol(react.forward_ref)(Styled(div))/div/EditorContractDropdown/UtopiaSpiedClass(Tooltip)", @@ -417,13 +416,12 @@ Array [ "/null///Symbol(react.memo)()", "/null///div", "/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", + "/null///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal):data-testid='context-menu-for-onMouseDown'", + "//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div:data-testid='context-menu-for-onMouseDown'", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/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)", @@ -451,20 +449,19 @@ Array [ "/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))", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/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)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", - "/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", - "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(MenuProvider)/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", @@ -474,20 +471,19 @@ Array [ "/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='frame-left-number-input'", "/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.forward_ref)(Styled(input))/input:data-testid='frame-left-number-input'", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/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)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", - "/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", - "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(MenuProvider)/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", @@ -497,20 +493,20 @@ Array [ "/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='frame-top-number-input'", "/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.forward_ref)(Styled(input))/input:data-testid='frame-top-number-input'", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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//div", - "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(BooleanControl)", @@ -521,19 +517,19 @@ Array [ "//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/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", "//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)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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))//div", - "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/span", @@ -542,27 +538,27 @@ Array [ "/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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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(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(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)(EmotionCssPropInternal)", - "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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)", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.memo)(Icon)", @@ -572,7 +568,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Animated(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/div", @@ -584,7 +580,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)(NumberInput)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(UIGridRow)", @@ -596,7 +592,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.memo)(Icon)", @@ -606,7 +602,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.memo)(Icon)", @@ -616,7 +612,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedFunctionComponent(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))", @@ -631,7 +627,7 @@ Array [ "/null///Symbol(react.memo)()", "/null///div", "/null///UtopiaSpiedFunctionComponent(UIGridRow)", - "/null///UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/null///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/Symbol(react.forward_ref)(Styled(div))/div/IndicatorArrow/div:data-testid='indicator-elements-outside-visible-area'", ] `; @@ -996,13 +992,12 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", "//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)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", - "/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", - "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(MenuProvider)/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", @@ -1012,20 +1007,19 @@ Array [ "/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='frame-left-number-input'", "/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.forward_ref)(Styled(input))/input:data-testid='frame-left-number-input'", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/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)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", - "/div/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", - "/FrameUpdatingLayoutControl/UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", - "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/div/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/FrameUpdatingLayoutControl/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(MenuProvider)/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/div/NumberInput/Symbol(react.forward_ref)(EmotionCssPropInternal)", @@ -1035,20 +1029,20 @@ Array [ "/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='frame-top-number-input'", "/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.forward_ref)(Styled(input))/input:data-testid='frame-top-number-input'", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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//div", - "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(BooleanControl)", @@ -1059,19 +1053,19 @@ Array [ "//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/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", "//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)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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))//div", - "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/span", @@ -1080,27 +1074,27 @@ Array [ "/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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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(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(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)(EmotionCssPropInternal)", - "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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)", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.memo)(Icon)", @@ -1110,7 +1104,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Animated(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/div", @@ -1122,7 +1116,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)(NumberInput)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(UIGridRow)", @@ -1134,7 +1128,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.memo)(Icon)", @@ -1144,7 +1138,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.memo)(Icon)", @@ -1154,7 +1148,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/Symbol(react.provider)///Symbol(react.memo)(Inspector)", "/Symbol(react.provider)///Symbol(react.memo)()", "/Symbol(react.forward_ref)(Styled(div))/div/IndicatorArrow/div:data-testid='indicator-elements-outside-visible-area'", @@ -1219,13 +1213,12 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.provider))/Symbol(react.provider)/UtopiaSpiedFunctionComponent()/UtopiaSpiedExoticType(Symbol(react.provider))", "/UtopiaSpiedFunctionComponent(PropertyRow)/div//Symbol(react.memo)(Symbol(react.forward_ref)())", "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(Tooltip)", - "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", - "//UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", - "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(MenuProvider)/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/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)", @@ -1273,6 +1266,9 @@ Array [ "/div/UtopiaSpiedFunctionComponent(DropdownIndicator)/UtopiaSpiedFunctionComponent(DropdownIndicator)/Symbol(react.forward_ref)(render)", "/UtopiaSpiedFunctionComponent(DropdownIndicator)/UtopiaSpiedFunctionComponent(DropdownIndicator)/Symbol(react.forward_ref)(render)/UtopiaSpiedExoticType(Symbol(react.context))", "/Symbol(react.forward_ref)(render)/UtopiaSpiedExoticType(Symbol(react.context))/Symbol(react.context)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)/UtopiaSpiedExoticType(Symbol(react.provider))", "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(Menu)", "/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", @@ -1283,20 +1279,20 @@ Array [ "/null///Symbol(react.memo)()", "/null///div", "/null///UtopiaSpiedFunctionComponent(UIGridRow)", - "/null///UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/null///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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//div", - "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(BooleanControl)", @@ -1307,13 +1303,12 @@ Array [ "//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", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/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)", @@ -1353,22 +1348,22 @@ Array [ "/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'", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/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)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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))//div", - "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/span", @@ -1377,27 +1372,27 @@ Array [ "/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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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(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(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)(EmotionCssPropInternal)", - "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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)", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.memo)(Icon)", @@ -1407,7 +1402,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Animated(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/div", @@ -1419,7 +1414,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)(NumberInput)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(UIGridRow)", @@ -1431,7 +1426,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.memo)(Icon)", @@ -1441,7 +1436,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.memo)(Icon)", @@ -1451,7 +1446,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedFunctionComponent(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))", @@ -1559,13 +1554,12 @@ Array [ "/null///Symbol(react.memo)()", "/null///div", "/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", + "/null///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal):data-testid='context-menu-for-onMouseDown'", + "//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div:data-testid='context-menu-for-onMouseDown'", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/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)", @@ -1594,12 +1588,12 @@ Array [ "/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)(Styled(div))/div/Icon/img", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/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)()/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/Symbol(react.memo)(Symbol(react.forward_ref)())/Symbol(react.forward_ref)()/Symbol(react.forward_ref)(EmotionCssPropInternal)/UtopiaSpiedClass(StateManager)", @@ -1696,13 +1690,12 @@ Array [ "/Symbol(react.forward_ref)(render)/UtopiaSpiedExoticType(Symbol(react.context))/Symbol(react.context)/div", "/UtopiaSpiedFunctionComponent(PropertyRow)/div//Symbol(react.memo)(Symbol(react.forward_ref)())", "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(Tooltip)", - "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", - "//UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", - "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(MenuProvider)/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/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)", @@ -1750,6 +1743,9 @@ Array [ "/div/UtopiaSpiedFunctionComponent(DropdownIndicator)/UtopiaSpiedFunctionComponent(DropdownIndicator)/Symbol(react.forward_ref)(render)", "/UtopiaSpiedFunctionComponent(DropdownIndicator)/UtopiaSpiedFunctionComponent(DropdownIndicator)/Symbol(react.forward_ref)(render)/UtopiaSpiedExoticType(Symbol(react.context))", "/Symbol(react.forward_ref)(render)/UtopiaSpiedExoticType(Symbol(react.context))/Symbol(react.context)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)/UtopiaSpiedExoticType(Symbol(react.provider))", "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(Menu)", "/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", @@ -1760,13 +1756,12 @@ Array [ "/null///Symbol(react.memo)()", "/null///div", "/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", + "/null///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal):data-testid='context-menu-for-onMouseDown'", + "//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div:data-testid='context-menu-for-onMouseDown'", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/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)", @@ -1794,24 +1789,24 @@ Array [ "/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))", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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//div", - "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(BooleanControl)", @@ -1822,13 +1817,12 @@ Array [ "//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", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/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)", @@ -1868,22 +1862,22 @@ Array [ "/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'", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/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)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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))//div", - "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/span", @@ -1892,27 +1886,27 @@ Array [ "/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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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(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(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)(EmotionCssPropInternal)", - "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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)", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.memo)(Icon)", @@ -1922,7 +1916,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Animated(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/div", @@ -1934,7 +1928,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)(NumberInput)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(UIGridRow)", @@ -1946,7 +1940,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.memo)(Icon)", @@ -1956,7 +1950,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.memo)(Icon)", @@ -1966,7 +1960,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedFunctionComponent(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))", @@ -2010,13 +2004,12 @@ Array [ "/null///Symbol(react.memo)()", "/null///div", "/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", + "/null///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "///UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal):data-testid='context-menu-for-onMouseDown'", + "//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div:data-testid='context-menu-for-onMouseDown'", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/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)", @@ -2044,12 +2037,12 @@ Array [ "/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))", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)/UtopiaSpiedExoticType(Symbol(react.provider))", "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(Menu)", "/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", @@ -2131,13 +2124,12 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.provider))/Symbol(react.provider)/UtopiaSpiedFunctionComponent()/UtopiaSpiedExoticType(Symbol(react.provider))", "/UtopiaSpiedFunctionComponent(PropertyRow)/div//Symbol(react.memo)(Symbol(react.forward_ref)())", "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(Tooltip)", - "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", - "//UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", - "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(MenuProvider)/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/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)", @@ -2185,22 +2177,25 @@ Array [ "/div/UtopiaSpiedFunctionComponent(DropdownIndicator)/UtopiaSpiedFunctionComponent(DropdownIndicator)/Symbol(react.forward_ref)(render)", "/UtopiaSpiedFunctionComponent(DropdownIndicator)/UtopiaSpiedFunctionComponent(DropdownIndicator)/Symbol(react.forward_ref)(render)/UtopiaSpiedExoticType(Symbol(react.context))", "/Symbol(react.forward_ref)(render)/UtopiaSpiedExoticType(Symbol(react.context))/Symbol(react.context)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)/UtopiaSpiedExoticType(Symbol(react.provider))", "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(Menu)", "/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", "//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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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//div", - "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(BooleanControl)", @@ -2211,13 +2206,12 @@ Array [ "//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", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/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)", @@ -2257,22 +2251,22 @@ Array [ "/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'", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/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)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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))//div", - "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/span", @@ -2281,27 +2275,27 @@ Array [ "/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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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(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(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)(EmotionCssPropInternal)", - "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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)", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.memo)(Icon)", @@ -2311,7 +2305,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Animated(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/div", @@ -2323,7 +2317,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)(NumberInput)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(UIGridRow)", @@ -2335,7 +2329,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.memo)(Icon)", @@ -2345,7 +2339,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.memo)(Icon)", @@ -2355,7 +2349,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.provider))/Symbol(react.provider)//Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.provider))/Symbol(react.provider)//UtopiaSpiedFunctionComponent(DomWalkerWrapper)", "/UtopiaSpiedExoticType(Symbol(react.provider))/Symbol(react.provider)//UtopiaSpiedClass(RemoteDependencyBoundary)", @@ -2547,13 +2541,12 @@ Array [ "/Symbol(react.forward_ref)(render)/UtopiaSpiedExoticType(Symbol(react.context))/Symbol(react.context)/div", "/UtopiaSpiedFunctionComponent(PropertyRow)/div//Symbol(react.memo)(Symbol(react.forward_ref)())", "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(Tooltip)", - "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedClass(MomentumContextMenu)", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/UtopiaSpiedExoticType(Symbol(react.fragment))", - "/div//UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", - "//UtopiaSpiedClass(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", - "/div/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedFunctionComponent(MenuProvider)/div", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(MenuProvider)/div", "/UtopiaSpiedFunctionComponent(MenuProvider)/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)", @@ -2601,22 +2594,25 @@ Array [ "/div/UtopiaSpiedFunctionComponent(DropdownIndicator)/UtopiaSpiedFunctionComponent(DropdownIndicator)/Symbol(react.forward_ref)(render)", "/UtopiaSpiedFunctionComponent(DropdownIndicator)/UtopiaSpiedFunctionComponent(DropdownIndicator)/Symbol(react.forward_ref)(render)/UtopiaSpiedExoticType(Symbol(react.context))", "/Symbol(react.forward_ref)(render)/UtopiaSpiedExoticType(Symbol(react.context))/Symbol(react.context)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)/UtopiaSpiedExoticType(Symbol(react.provider))", "//UtopiaSpiedExoticType(Symbol(react.fragment))//Symbol(react.memo)()", "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(Menu)", "/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", "//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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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//div", - "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/Symbol(react.forward_ref)(Styled(div))/div//UtopiaSpiedFunctionComponent(BooleanControl)", @@ -2627,13 +2623,12 @@ Array [ "//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", + "//UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(MenuProvider)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/UtopiaSpiedFunctionComponent(ContextMenu)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)", + "/OpacityRow/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)/Symbol(react.forward_ref)(EmotionCssPropInternal)/div", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/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)", @@ -2673,22 +2668,22 @@ Array [ "/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'", - "/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/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/span", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Item)", + "/Symbol(react.forward_ref)(EmotionCssPropInternal)/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)", + "/div/UtopiaSpiedFunctionComponent(ContextMenu)/UtopiaSpiedFunctionComponent(Menu)/UtopiaSpiedFunctionComponent(RefTrackerProvider)", + "/UtopiaSpiedFunctionComponent(ContextMenu)/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)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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))//div", - "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "//UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/div/div/PropertyLabel/Symbol(react.forward_ref)(EmotionCssPropInternal)", "/div/div//Symbol(react.memo)()", "/StyleSection/UtopiaSpiedExoticType(Symbol(react.fragment))/TextSubsection/span", @@ -2697,27 +2692,27 @@ Array [ "/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/UtopiaSpiedFunctionComponent(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/UtopiaSpiedFunctionComponent(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(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(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)(EmotionCssPropInternal)", - "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/TextSubsection/UtopiaSpiedExoticType(Symbol(react.fragment))//UtopiaSpiedFunctionComponent(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)", + "/UtopiaSpiedFunctionComponent(PropertyRow)/div//UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.memo)(Icon)", @@ -2727,7 +2722,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TransformSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Animated(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/div", @@ -2739,7 +2734,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BackgroundSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)()", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.memo)(NumberInput)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(UIGridRow)", @@ -2751,7 +2746,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/Symbol(react.forward_ref)(Styled(div))", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/BorderSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.memo)(Icon)", @@ -2761,7 +2756,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/ShadowSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/span", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.memo)(Icon)", @@ -2771,7 +2766,7 @@ Array [ "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/Symbol(react.forward_ref)(Styled(div))", "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/div", - "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedClass(InspectorContextMenuWrapper)", + "/UtopiaSpiedExoticType(Symbol(react.fragment))/UtopiaSpiedExoticType(Symbol(react.fragment))/TextShadowSubsection/UtopiaSpiedFunctionComponent(InspectorContextMenuWrapper)", "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//UtopiaSpiedClass(EditorCanvas)", "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//Symbol(react.memo)(FloatingPostActionMenu)", "/UtopiaSpiedFunctionComponent(SimpleFlexColumn)/div//div", diff --git a/editor/src/core/performance/performance-regression-tests.spec.tsx b/editor/src/core/performance/performance-regression-tests.spec.tsx index 9d20c74add22..7ea0b4a38f9a 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(`748`) + expect(renderCountAfter - renderCountBefore).toMatchInlineSnapshot(`750`) 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(`907`) + expect(renderCountAfter - renderCountBefore).toMatchInlineSnapshot(`906`) expect(renderResult.getRenderInfo()).toMatchSnapshot() }) @@ -183,7 +183,7 @@ describe('React Render Count Tests -', () => { const renderCountAfter = renderResult.getNumberOfRenders() // if this breaks, GREAT NEWS but update the test please :) - expect(renderCountAfter - renderCountBefore).toMatchInlineSnapshot(`520`) + expect(renderCountAfter - renderCountBefore).toMatchInlineSnapshot(`518`) expect(renderResult.getRenderInfo()).toMatchSnapshot() }) @@ -249,7 +249,7 @@ describe('React Render Count Tests -', () => { const renderCountAfter = renderResult.getNumberOfRenders() // if this breaks, GREAT NEWS but update the test please :) - expect(renderCountAfter - renderCountBefore).toMatchInlineSnapshot(`631`) + expect(renderCountAfter - renderCountBefore).toMatchInlineSnapshot(`627`) expect(renderResult.getRenderInfo()).toMatchSnapshot() }) })