gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
32 lines (31 loc) • 1.12 kB
TypeScript
import { type StyleValue } from 'vue';
import { type CalendarProps } from '../calendar/common';
import { type TransitionHookEmits } from '../popup/common';
export interface CalendarPopoutProps extends CalendarProps {
visible?: boolean;
title?: string;
showConfirm?: boolean;
validateEvent?: boolean;
popoutClass?: string;
popoutStyle?: StyleValue;
}
export declare const defaultCalendarPopoutProps: () => {
showConfirm: boolean;
validateEvent: boolean;
type: CalendarProps["type"];
maxDays: number;
weekStartsOn: number;
};
export interface CalendarPopoutSlots {
default?(props: Record<string, never>): any;
title?(props: Record<string, never>): any;
'title-prepend'?(props: Record<string, never>): any;
}
export interface CalendarPopoutEmits extends TransitionHookEmits {
(e: 'update:visible', visible: boolean): void;
(e: 'update:model-value', value: Date | Date[] | string | string[] | undefined): void;
(e: 'change', value: Date | Date[] | string | string[] | undefined): void;
(e: 'confirm'): void;
}
export interface CalendarPopoutExpose {
}