list-view progress

This commit is contained in:
Hristo Hristov
2016-11-29 01:32:52 +02:00
committed by Hristo Hristov
parent d795ee94e4
commit 0f45a0df5e
5 changed files with 233 additions and 343 deletions

View File

@@ -329,6 +329,11 @@ declare module "ui/core/view" {
cssClasses: Set<string>;
cssPseudoClasses: Set<string>;
/**
* Gets the parent view. This property is read-only.
*/
public parent: View;
/**
* Gets owner page. This is a read-only property.
*/
@@ -776,7 +781,7 @@ declare module "ui/core/view" {
export const fontFamilyProperty: InheritedCssProperty<Style, string>;
export const fontStyleProperty: InheritedCssProperty<Style, string>;
export const fontWeightProperty: InheritedCssProperty<Style, string>;
export const backgroundInternalProperty: CssProperty<Style, Background>;
export const fontInternalProperty: InheritedCssProperty<Style, Font>;
}