project init

This commit is contained in:
limqhz
2022-11-17 17:05:46 +08:00
parent 597b107cf7
commit eec0e5575f
108 changed files with 4483 additions and 36 deletions

24
components/popup/popup.d.ts vendored Normal file
View File

@@ -0,0 +1,24 @@
import { TdPopupProps } from './type';
import { SuperComponent } from '../common/src/index';
export declare type PopupProps = TdPopupProps;
export default class Popup extends SuperComponent {
externalClasses: string[];
behaviors: string[];
options: {
multipleSlots: boolean;
};
properties: TdPopupProps;
data: {
prefix: string;
classPrefix: string;
className: string;
};
lifetimes: {
attached(): void;
};
methods: {
setClass(): void;
handleOverlayClick(): void;
handleClose(): void;
};
}