- Fix router import path in main.js - Handle Django REST Framework pagination format in API calls - Add getTemplates function to project API - Restart frontend development server
16 lines
637 B
TypeScript
16 lines
637 B
TypeScript
import { UseNamespaceReturn } from "../../../hooks/use-namespace/index.js";
|
|
import { CSSProperties, ComputedRef, InjectionKey, Ref } from "vue";
|
|
|
|
//#region ../../packages/components/dialog/src/constants.d.ts
|
|
type DialogContext = {
|
|
dialogRef: Ref<HTMLElement | undefined>;
|
|
headerRef: Ref<HTMLElement | undefined>;
|
|
bodyId: Ref<string>;
|
|
ns: UseNamespaceReturn;
|
|
rendered: Ref<boolean>;
|
|
style: ComputedRef<CSSProperties>;
|
|
};
|
|
declare const dialogInjectionKey: InjectionKey<DialogContext>;
|
|
declare const DEFAULT_DIALOG_TRANSITION = "dialog-fade";
|
|
//#endregion
|
|
export { DEFAULT_DIALOG_TRANSITION, DialogContext, dialogInjectionKey }; |