Skip to content

Commit

Permalink
updated the api
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieu-fournier committed Jan 3, 2025
1 parent 4e48f00 commit 3d99ce0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/api/appui-react.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export interface AccuDrawInputFieldProps extends CommonProps {
labelStyle?: React_2.CSSProperties;
onEnterPressed?: () => void;
onEscPressed?: () => void;
onTabPressed?: (field: ItemField) => void;
onTabPressed?: () => void;
onValueChanged: (stringValue: string) => void;
ref?: React_2.Ref<HTMLInputElement>;
}
Expand Down Expand Up @@ -2069,7 +2069,7 @@ export interface FrameworkKeyboardShortcuts {
export const FrameworkReducer: Reducer_2< {
configurableUiState: ConfigurableUiState;
sessionState: DeepReadonlyObject_2<SessionState>;
}, SessionStateActionsUnion_2 | ConfigurableUiActionsUnion_2, Partial<{
}, ConfigurableUiActionsUnion_2 | SessionStateActionsUnion_2, Partial<{
configurableUiState: never;
sessionState: never;
}>>;
Expand Down Expand Up @@ -5353,7 +5353,7 @@ export function useUiStateStorageHandler(): UiStateStorage;
// @alpha
export function useWidget(): {
state: WidgetState;
widgetLocation: "popout" | "floating" | "docked";
widgetLocation: "docked" | "floating" | "popout";
setState: (widgetState: Omit<WidgetState, WidgetState.Floating>) => void;
};

Expand Down

0 comments on commit 3d99ce0

Please sign in to comment.