Skip to content

Commit

Permalink
extract api
Browse files Browse the repository at this point in the history
  • Loading branch information
MBudreviciusBentley committed Jan 6, 2025
1 parent 3cb9238 commit ebb84bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions common/api/appui-react.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2234,7 +2234,7 @@ export interface FrontstageDeactivatedEventArgs {

// @public
export class FrontstageDef {
// (undocumented)
// @internal (undocumented)
get activeToolEmptyNode(): React_2.ReactNode | undefined;
// @deprecated (undocumented)
addFloatingContentControl(contentControl?: ContentControl): void;
Expand Down Expand Up @@ -3836,7 +3836,7 @@ export const SessionStateActions: {
setNumItemsSelected: (numSelected: number) => ActionWithPayload_2<SessionStateActionId.SetNumItemsSelected, number>;
setIModelConnection: (iModelConnection: any) => ActionWithPayload_2<SessionStateActionId.SetIModelConnection, any>;
setSelectionScope: (activeSelectionScope: string) => ActionWithPayload_2<SessionStateActionId.SetSelectionScope, string>;
updateCursorMenu: (cursorMenuData: CursorMenuData | CursorMenuPayload) => ActionWithPayload_2<SessionStateActionId.UpdateCursorMenu, DeepReadonlyObject_2<CursorMenuData> | DeepReadonlyObject_2<CursorMenuPayload>>;
updateCursorMenu: (cursorMenuData: CursorMenuData | CursorMenuPayload) => ActionWithPayload_2<SessionStateActionId.UpdateCursorMenu, DeepReadonlyObject_2<CursorMenuPayload> | DeepReadonlyObject_2<CursorMenuData>>;
};

// @beta @deprecated
Expand Down Expand Up @@ -3874,7 +3874,7 @@ export const sessionStateMapDispatchToProps: {
setNumItemsSelected: (numSelected: number) => ActionWithPayload_2<SessionStateActionId.SetNumItemsSelected, number>;
setIModelConnection: (iModelConnection: any) => ActionWithPayload_2<SessionStateActionId.SetIModelConnection, any>;
setSelectionScope: (activeSelectionScope: string) => ActionWithPayload_2<SessionStateActionId.SetSelectionScope, string>;
updateCursorMenu: (cursorMenuData: CursorMenuData | CursorMenuPayload) => ActionWithPayload_2<SessionStateActionId.UpdateCursorMenu, DeepReadonlyObject_2<CursorMenuData> | DeepReadonlyObject_2<CursorMenuPayload>>;
updateCursorMenu: (cursorMenuData: CursorMenuData | CursorMenuPayload) => ActionWithPayload_2<SessionStateActionId.UpdateCursorMenu, DeepReadonlyObject_2<CursorMenuPayload> | DeepReadonlyObject_2<CursorMenuData>>;
};

// @public @deprecated
Expand Down Expand Up @@ -5355,7 +5355,7 @@ export function useUiStateStorageHandler(): UiStateStorage;
// @alpha
export function useWidget(): {
state: WidgetState;
widgetLocation: "docked" | "popout" | "floating";
widgetLocation: "docked" | "floating" | "popout";
setState: (widgetState: Omit<WidgetState, WidgetState.Floating>) => void;
};

Expand Down

0 comments on commit ebb84bf

Please sign in to comment.