mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00

Fix image-source test for API 27 setupAsRootView now makes the component styleScope set css, addCss & addCssFile makes view to be styleScopeHost which cannot be overriden later from parent Android modals now call setupAsRootView Small fixes on ios layouts launch event fired in andriod too Moved some requestLayout calls to ios files where they belongs
14 lines
508 B
TypeScript
14 lines
508 B
TypeScript
/**
|
|
* @module "ui/builder/component-builder"
|
|
*/ /** */
|
|
|
|
import { View } from "../../core/view";
|
|
|
|
export function getComponentModule(elementName: string, namespace: string, attributes: Object, exports: Object, moduleNamePath?: string, isRootComponent?: boolean): ComponentModule;
|
|
export function setPropertyValue(instance: View, instanceModuleExports: Object, pageExports: Object, propertyName: string, propertyValue: any): void;
|
|
|
|
export interface ComponentModule {
|
|
component: View;
|
|
exports: any;
|
|
}
|