mftsccs-browser 2.1.63-beta → 2.1.65-beta

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.
@@ -16,6 +16,7 @@ export declare class FreeschemaQuery {
16
16
  name: string;
17
17
  reverse: boolean;
18
18
  limit: boolean;
19
+ isSecure: boolean;
19
20
  includeInFilter: boolean;
20
21
  isOldConnectionType: boolean;
21
22
  }
@@ -1,5 +1,9 @@
1
1
  import { BaseObserver } from "./BaseObserver";
2
2
  export declare class BaseWidget extends BaseObserver {
3
+ /**
4
+ * This is the element that is a copy of the element that is mounted.
5
+ */
6
+ element: HTMLElement | null;
3
7
  /**
4
8
  * This is a random identifier to the widget that is used to identify the widget and other elements
5
9
  * inside of it.
@@ -23,10 +23,6 @@ export declare class StatefulWidget extends BaseWidget {
23
23
  * This is the id of the parentElement of this widget.
24
24
  */
25
25
  parentElement: string;
26
- /**
27
- * This is the element that is a copy of the element that is mounted.
28
- */
29
- element: HTMLElement | null;
30
26
  getElement(): HTMLElement | null;
31
27
  setTitle(title: string): void;
32
28
  /**
@@ -1,7 +1,6 @@
1
1
  import { FreeschemaQuery } from "../app";
2
2
  import { DependencyObserver } from "./DepenedencyObserver";
3
3
  export declare class SearchLinkMultipleAllObservable extends DependencyObserver {
4
- mainCompositionIds: number[];
5
4
  query: FreeschemaQuery;
6
5
  countInfoStrings: string[];
7
6
  order: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mftsccs-browser",
3
- "version": "2.1.63-beta",
3
+ "version": "2.1.65-beta",
4
4
  "environment": "production",
5
5
  "description": "Full Pack of concept and connection system",
6
6
  "main": "dist/main.bundle.js",