Skip to content

Commit

Permalink
chore: ae up
Browse files Browse the repository at this point in the history
  • Loading branch information
matej21 committed Dec 8, 2023
1 parent 691e423 commit 448a5f5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build/api/admin.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1374,10 +1374,13 @@ export type DataGridProps<ComponentExtraProps extends {}> = DataGridContainerPub
});

// @public (undocumented)
export const DataGridScope: <StateProps>({ stateComponent, stateProps, ...props }: DataGridScopeProps<StateProps>) => JSX.Element;
export const DataGridScope: <StateProps>({ stateComponent, stateProps, skipBindingStateUpdateAfterPersist, refreshDataBindingOnPersist, ...props }: DataGridScopeProps<StateProps>) => JSX.Element;

// @public (undocumented)
export type DataGridScopeProps<StateProps> = PropsWithChildren<DataGridProps<{}>> & DataBindingProviderStateComponent<StateProps>;
export type DataGridScopeProps<StateProps> = PropsWithChildren<DataGridProps<{}>> & DataBindingProviderStateComponent<StateProps> & {
refreshDataBindingOnPersist?: boolean;
skipBindingStateUpdateAfterPersist?: boolean;
};

// @public (undocumented)
export type DataGridSetColumnFilter<FA extends DataGridFilterArtifact = DataGridFilterArtifact> = (columnKey: DataGridColumnKey, columnFilter: FA | undefined) => void;
Expand Down

0 comments on commit 448a5f5

Please sign in to comment.