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.
- package/dist/core/auth/Auth.d.ts +2 -2
- package/dist/core/auth/AuthModal.d.ts +2 -2
- package/dist/core/ftsp/FilterModel.d.ts +0 -1
- package/dist/core/index.d.ts +2 -2
- package/dist/sprof.js +287 -291
- package/dist/sprof.umd.cjs +10 -10
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/core/auth/Auth.d.ts
CHANGED
|
@@ -255,8 +255,8 @@ declare class Auth<UserT> {
|
|
|
255
255
|
Actualize: () => void;
|
|
256
256
|
};
|
|
257
257
|
get Modal(): {
|
|
258
|
-
|
|
259
|
-
|
|
258
|
+
readonly Closable: boolean;
|
|
259
|
+
readonly Visible: boolean;
|
|
260
260
|
Close: () => void;
|
|
261
261
|
Open: (closable?: boolean | undefined) => void;
|
|
262
262
|
};
|
|
@@ -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;
|
package/dist/core/index.d.ts
CHANGED
|
@@ -257,8 +257,8 @@ export default abstract class PF {
|
|
|
257
257
|
Actualize: () => void;
|
|
258
258
|
};
|
|
259
259
|
readonly Modal: {
|
|
260
|
-
|
|
261
|
-
|
|
260
|
+
readonly Closable: boolean;
|
|
261
|
+
readonly Visible: boolean;
|
|
262
262
|
Close: () => void;
|
|
263
263
|
Open: (closable?: boolean | undefined) => void;
|
|
264
264
|
};
|