sprof 0.0.141 → 0.0.143

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,8 +255,8 @@ declare class Auth<UserT> {
255
255
  Actualize: () => void;
256
256
  };
257
257
  get Modal(): {
258
- IsClosable: () => boolean;
259
- IsVisible: () => boolean;
258
+ readonly Closable: boolean;
259
+ readonly Visible: boolean;
260
260
  Close: () => void;
261
261
  Open: (closable?: boolean | undefined) => void;
262
262
  };
@@ -1,8 +1,8 @@
1
1
  export default class AuthModal {
2
2
  private visible;
3
3
  private closable;
4
- IsClosable(): boolean;
5
- IsVisible(): boolean;
4
+ get Closable(): boolean;
5
+ get Visible(): boolean;
6
6
  Close(): void;
7
7
  Open(closable?: boolean): void;
8
8
  }
@@ -31,7 +31,6 @@ export default class FilterModel {
31
31
  isBetweenFilter(): boolean;
32
32
  isSetFilter(): boolean;
33
33
  static Create(model: ClassNameGetter, col: unknown, type: DataTypes): FilterModel;
34
- static CreateFilterModel(model: string | ClassNameGetter, col: unknown, type: DataTypes): FilterModel;
35
34
  static CreateFilterModelWithJoin(table: string, col: string, joinTable: string, joinTablePk: string, joinTableFk: string, type: DataTypes, joinTableId?: string, joinTableIdCol?: string): FilterModel;
36
35
  static CreateFilterModelWithJoinV2(model: string, col: string, joinTableModel: string, joinTablePk: string, joinTableFk: string, joinTableId?: string, joinTableIdCol?: string): FilterModel;
37
36
  static OnlyIfSecondModelExists(firstClass: ClassNameGetter, secondClass: ClassNameGetter): FilterModel;
@@ -257,8 +257,8 @@ export default abstract class PF {
257
257
  Actualize: () => void;
258
258
  };
259
259
  readonly Modal: {
260
- IsClosable: () => boolean;
261
- IsVisible: () => boolean;
260
+ readonly Closable: boolean;
261
+ readonly Visible: boolean;
262
262
  Close: () => void;
263
263
  Open: (closable?: boolean | undefined) => void;
264
264
  };