fastapi-rtk
Version:
A React component library for FastAPI in combination with FastAPI React Toolkit backend, built with Mantine, JsonForms, and Zustand.
39 lines (38 loc) • 1.06 kB
TypeScript
export const DEFAULT_PAGE: 0;
export const DEFAULT_PAGE_SIZE: 25;
export const DEFAULT_PAGE_SIZE_OPTIONS: string[];
export const DEBOUNCE_DELAY: 400;
export const DEBOUNCE_LOADING_DELAY: 50;
export const DEBOUNCE_JSONFORMS_DELAY: 100;
export const DEFAULT_DELIMITER: ",";
export const DELIMITER_DATA: {
value: string;
label: string;
}[];
export const DEFAULT_QUOTECHAR: any;
export const QUOTECHAR_DATA: {
value: string;
label: string;
}[];
export namespace initialState {
let errors: any[];
let data: any;
}
export namespace VIEW_MODE {
let NORMAL: string;
let FULL_SCREEN: string;
let OVERLAY: string;
}
export const BASE_LANGUAGES: {
value: string;
label: string;
}[];
export namespace LANG_LOCAL_STORAGE_PROPS {
let key: string;
let defaultValue: string;
let getInitialValueInEffect: boolean;
}
export namespace MRT_LOCALIZATION_IMPORT_MAP {
function de(): Promise<import("mantine-react-table").MRT_Localization>;
function en(): Promise<import("mantine-react-table").MRT_Localization>;
}