1 | var Placeholder_1;
|
2 | import { View, CSSType } from '../core/view';
|
3 | export * from './placeholder-common';
|
4 | let Placeholder = Placeholder_1 = class Placeholder extends View {
|
5 | createNativeView() {
|
6 | const args = {
|
7 | eventName: Placeholder_1.creatingViewEvent,
|
8 | object: this,
|
9 | view: undefined,
|
10 | context: this._context,
|
11 | };
|
12 | this.notify(args);
|
13 | return args.view;
|
14 | }
|
15 | };
|
16 | Placeholder.creatingViewEvent = 'creatingView';
|
17 | Placeholder = Placeholder_1 = __decorate([
|
18 | CSSType('Placeholder')
|
19 | ], Placeholder);
|
20 | export { Placeholder };
|
21 |
|
\ | No newline at end of file |