jpf 4.1.67 → 4.1.69
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.
|
@@ -6,7 +6,7 @@ export interface SvgViewModelOptions extends ViewModelOptions {
|
|
|
6
6
|
y?: number | string | Subscribable<number | string>;
|
|
7
7
|
height?: number | string | Subscribable<number | string>;
|
|
8
8
|
width?: number | string | Subscribable<number | string>;
|
|
9
|
-
viewBox
|
|
9
|
+
viewBox?: string;
|
|
10
10
|
children?: Array<IView> | ObservableArray<IView> | Computed<Array<IView>>;
|
|
11
11
|
}
|
|
12
12
|
export declare class SvgView extends View<SvgViewModelOptions> {
|
|
@@ -6,7 +6,7 @@ export interface TextViewModelOptions extends ViewModelOptions {
|
|
|
6
6
|
y?: number | string | Subscribable<number | string>;
|
|
7
7
|
dx?: number | string | Subscribable<number | string>;
|
|
8
8
|
dy?: number | string | Subscribable<number | string>;
|
|
9
|
-
rotate
|
|
9
|
+
rotate?: string | Subscribable<string>;
|
|
10
10
|
}
|
|
11
11
|
export declare class TextView extends View<TextViewModelOptions> {
|
|
12
12
|
constructor(viewModel: TextViewModelOptions);
|