@floegence/floe-webapp-core 0.36.47 → 0.36.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  import { type Accessor, type JSX } from 'solid-js';
2
2
  import { type ResolvedWorkbenchInteractionAdapter } from './workbenchInteractionAdapter';
3
- import type { WorkbenchViewport, WorkbenchInteractionAdapter, WorkbenchWidgetDefinition, WorkbenchWidgetItem, WorkbenchWidgetRenderMode, WorkbenchWidgetType } from './types';
3
+ import type { WorkbenchViewport, WorkbenchInteractionAdapter, WorkbenchWidgetDefinition, WorkbenchWidgetItem, WorkbenchWidgetMotionIntent, WorkbenchWidgetRenderMode, WorkbenchWidgetType } from './types';
4
4
  export interface WorkbenchWidgetProps {
5
5
  definition: WorkbenchWidgetDefinition;
6
6
  widgetId: string;
@@ -14,6 +14,7 @@ export interface WorkbenchWidgetProps {
14
14
  itemSnapshot: () => WorkbenchWidgetItem;
15
15
  selected: boolean;
16
16
  optimisticFront: boolean;
17
+ motion?: WorkbenchWidgetMotionIntent | null;
17
18
  topRenderLayer: number;
18
19
  viewportScale: number;
19
20
  locked: boolean;