project init & fix ui

This commit is contained in:
2023-01-06 14:24:11 +08:00
parent abc4f65a8e
commit ac9b479805
866 changed files with 39916 additions and 53 deletions

View File

@@ -0,0 +1,40 @@
import { SuperComponent } from '../common/src/index';
export default class Overlay extends SuperComponent {
properties: {
zIndex: {
type: NumberConstructor;
value: number;
};
duration: {
type: NumberConstructor;
value: number;
};
backgroundColor: {
type: StringConstructor;
value: string;
};
preventScrollThrough: {
type: BooleanConstructor;
value: boolean;
};
customStyle: {
type: StringConstructor;
value: string;
};
};
behaviors: string[];
data: {
prefix: string;
classPrefix: string;
computedStyle: string;
_zIndex: number;
};
observers: {
backgroundColor(v: any): void;
zIndex(v: any): void;
};
methods: {
handleClick(): void;
noop(): void;
};
}