asajs 4.1.4 → 4.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -255,7 +255,7 @@ export function StackPanel(properties, namespace, name, allowObfuscate) {
|
|
|
255
255
|
export function InputPanel(properties, namespace, name, allowObfuscate) {
|
|
256
256
|
return new UI(Type.INPUT_PANEL, name, namespace, undefined, allowObfuscate).setProperties(properties || {});
|
|
257
257
|
}
|
|
258
|
-
export function
|
|
258
|
+
export function Grid(properties, namespace, name, allowObfuscate) {
|
|
259
259
|
return new UI(Type.GRID, name, namespace, undefined, allowObfuscate).setProperties(properties || {});
|
|
260
260
|
}
|
|
261
261
|
export function Screen(properties, namespace, name, allowObfuscate) {
|
|
@@ -39,7 +39,7 @@ export declare function Panel(properties?: Panel, namespace?: string, name?: str
|
|
|
39
39
|
export declare function CollectionPanel(properties?: CollectionPanel, namespace?: string, name?: string, allowObfuscate?: boolean): UI<Type.COLLECTION_PANEL, null>;
|
|
40
40
|
export declare function StackPanel(properties?: StackPanel, namespace?: string, name?: string, allowObfuscate?: boolean): UI<Type.STACK_PANEL, null>;
|
|
41
41
|
export declare function InputPanel(properties?: InputPanel, namespace?: string, name?: string, allowObfuscate?: boolean): UI<Type.INPUT_PANEL, null>;
|
|
42
|
-
export declare function
|
|
42
|
+
export declare function Grid(properties?: Grid, namespace?: string, name?: string, allowObfuscate?: boolean): UI<Type.GRID, null>;
|
|
43
43
|
export declare function Screen(properties?: Screen, namespace?: string, name?: string, allowObfuscate?: boolean): UI<Type.SCREEN, null>;
|
|
44
44
|
export declare function Image(properties?: Image, namespace?: string, name?: string, allowObfuscate?: boolean): UI<Type.IMAGE, null>;
|
|
45
45
|
export declare function Label(properties?: Label, namespace?: string, name?: string, allowObfuscate?: boolean): UI<Type.LABEL, null>;
|