jpf 5.0.16 → 5.0.18

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.
@@ -1,6 +1,6 @@
1
1
  import { Element } from "../../../framework/element";
2
2
  import { IProperties } from "../../../framework/properties";
3
- import { PatternUnits } from "../../../framework/types";
3
+ import { PatternUnits } from "../../../framework/css";
4
4
  import { ISubscribable } from "../../../framework/observableInterfaces";
5
5
  import { CircleElement } from "../Circle/Circle";
6
6
  import { EllipseElement } from "../Ellipse/Ellipse";
@@ -1,6 +1,6 @@
1
1
  import { Element, IElement } from "../../../framework/element";
2
2
  import { IProperties } from "../../../framework/properties";
3
- import { PreserveAspectRatio } from "../../../framework/types";
3
+ import { PreserveAspectRatio } from "../../../framework/css";
4
4
  import { ISubscribable } from "../../../framework/observableInterfaces";
5
5
  export interface ISvgProperties extends IProperties {
6
6
  x?: number | string | ISubscribable<number | string>;
@@ -1,4 +1,4 @@
1
- import { PreserveAspectRatio } from "./types";
1
+ import { PreserveAspectRatio } from "./css";
2
2
  import { ISubscribable } from "./observableInterfaces";
3
3
  export interface IAttributes {
4
4
  alt?: string;
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=css.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"css.js","sourceRoot":"","sources":["../../src/framework/css.ts"],"names":[],"mappings":""}
@@ -19,7 +19,7 @@ export interface IObservableArray<TItem = any, TSetter = Array<TItem>> extends A
19
19
  setInternalInAction(items: Array<TItem> | null): void;
20
20
  }
21
21
  export interface IComputed<TValue> extends ISubscribable<TValue> {
22
- (): TValue;
22
+ get(): TValue;
23
23
  }
24
24
  export interface IObservableMap<TKey, TValue> {
25
25
  }