Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
35 lines
1.7 KiB
TypeScript
35 lines
1.7 KiB
TypeScript
import { SealedInitialState } from "reakit-utils/useSealedState";
|
|
import { SetState } from "reakit-utils/types";
|
|
import { unstable_GridState as GridState, unstable_GridActions as GridActions, unstable_GridInitialState as GridInitialState } from "../Grid/GridState";
|
|
import { ComboboxBaseState, ComboboxBaseActions, ComboboxBaseInitialState } from "./__utils/ComboboxBaseState";
|
|
export declare function unstable_useComboboxListGridState(initialState?: SealedInitialState<unstable_ComboboxListGridInitialState>): unstable_ComboboxListGridStateReturn;
|
|
export declare type unstable_ComboboxListGridState = Omit<ComboboxBaseState<GridState>, "matches"> & {
|
|
/**
|
|
* Number of columns by which `values` will be splitted to generate the
|
|
* `matches` 2D array.
|
|
*/
|
|
columns: number;
|
|
/**
|
|
* Result of filtering `values` based on `inputValue`.
|
|
* @default []
|
|
* @example
|
|
* const combobox = useComboboxState({
|
|
* values: ["Red", "Green", "Blue"],
|
|
* columns: 2,
|
|
* });
|
|
* combobox.matches; // [["Red", "Green"], ["Blue"]]
|
|
* combobox.setInputValue("g");
|
|
* // On next render
|
|
* combobox.matches; // [["Green"]]
|
|
*/
|
|
matches: string[][];
|
|
};
|
|
export declare type unstable_ComboboxListGridActions = ComboboxBaseActions<GridActions> & {
|
|
/**
|
|
* Sets `columns`.
|
|
*/
|
|
setColumns: SetState<unstable_ComboboxListGridState["columns"]>;
|
|
};
|
|
export declare type unstable_ComboboxListGridInitialState = Omit<GridInitialState, "unstable_virtual" | "unstable_includesBaseElement"> & ComboboxBaseInitialState & Pick<Partial<unstable_ComboboxListGridState>, "columns">;
|
|
export declare type unstable_ComboboxListGridStateReturn = unstable_ComboboxListGridState & unstable_ComboboxListGridActions;
|