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>
38 lines
3.0 KiB
TypeScript
38 lines
3.0 KiB
TypeScript
export { useFormStore } from "@ariakit/react-core/form/form-store";
|
|
export { useFormContext } from "@ariakit/react-core/form/form-context";
|
|
export { Form } from "@ariakit/react-core/form/form";
|
|
export { FormProvider } from "@ariakit/react-core/form/form-provider";
|
|
export { FormControl } from "@ariakit/react-core/form/form-control";
|
|
export { FormCheckbox } from "@ariakit/react-core/form/form-checkbox";
|
|
export { FormDescription } from "@ariakit/react-core/form/form-description";
|
|
export { FormError } from "@ariakit/react-core/form/form-error";
|
|
export { FormField } from "@ariakit/react-core/form/form-field";
|
|
export { FormGroupLabel } from "@ariakit/react-core/form/form-group-label";
|
|
export { FormGroup } from "@ariakit/react-core/form/form-group";
|
|
export { FormInput } from "@ariakit/react-core/form/form-input";
|
|
export { FormLabel } from "@ariakit/react-core/form/form-label";
|
|
export { FormPush } from "@ariakit/react-core/form/form-push";
|
|
export { FormRadioGroup } from "@ariakit/react-core/form/form-radio-group";
|
|
export { FormRadio } from "@ariakit/react-core/form/form-radio";
|
|
export { FormRemove } from "@ariakit/react-core/form/form-remove";
|
|
export { FormReset } from "@ariakit/react-core/form/form-reset";
|
|
export { FormSubmit } from "@ariakit/react-core/form/form-submit";
|
|
export type { FormStore, FormStoreState, FormStoreProps, } from "@ariakit/react-core/form/form-store";
|
|
export type { FormOptions, FormProps } from "@ariakit/react-core/form/form";
|
|
export type { FormProviderProps } from "@ariakit/react-core/form/form-provider";
|
|
export type { FormControlOptions, FormControlProps, } from "@ariakit/react-core/form/form-control";
|
|
export type { FormCheckboxOptions, FormCheckboxProps, } from "@ariakit/react-core/form/form-checkbox";
|
|
export type { FormDescriptionOptions, FormDescriptionProps, } from "@ariakit/react-core/form/form-description";
|
|
export type { FormErrorOptions, FormErrorProps, } from "@ariakit/react-core/form/form-error";
|
|
export type { FormFieldOptions, FormFieldProps, } from "@ariakit/react-core/form/form-field";
|
|
export type { FormGroupLabelOptions, FormGroupLabelProps, } from "@ariakit/react-core/form/form-group-label";
|
|
export type { FormGroupOptions, FormGroupProps, } from "@ariakit/react-core/form/form-group";
|
|
export type { FormInputOptions, FormInputProps, } from "@ariakit/react-core/form/form-input";
|
|
export type { FormLabelOptions, FormLabelProps, } from "@ariakit/react-core/form/form-label";
|
|
export type { FormPushOptions, FormPushProps, } from "@ariakit/react-core/form/form-push";
|
|
export type { FormRadioGroupOptions, FormRadioGroupProps, } from "@ariakit/react-core/form/form-radio-group";
|
|
export type { FormRadioOptions, FormRadioProps, } from "@ariakit/react-core/form/form-radio";
|
|
export type { FormRemoveOptions, FormRemoveProps, } from "@ariakit/react-core/form/form-remove";
|
|
export type { FormResetOptions, FormResetProps, } from "@ariakit/react-core/form/form-reset";
|
|
export type { FormSubmitOptions, FormSubmitProps, } from "@ariakit/react-core/form/form-submit";
|