12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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;
- };
- }
|