sprof 0.0.140 → 0.0.142
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/ftsp/FilterModel.d.ts +0 -1
- package/dist/core/ftsp/index.d.ts +8 -0
- package/dist/core/index.d.ts +17 -2
- package/dist/sprof.js +1697 -1683
- package/dist/sprof.umd.cjs +12 -12
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as FilterModel } from './FilterModel';
|
|
2
|
+
import { default as FTSP } from './FTSP';
|
|
3
|
+
import { default as SortModel } from './SortModel';
|
|
4
|
+
export default abstract class F {
|
|
5
|
+
static SortModel: typeof SortModel;
|
|
6
|
+
static FilterModel: typeof FilterModel;
|
|
7
|
+
static FTSP: typeof FTSP;
|
|
8
|
+
}
|
package/dist/core/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as C } from './classes/index';
|
|
2
|
-
import { default as
|
|
2
|
+
import { default as F } from './ftsp/index';
|
|
3
3
|
import { default as H } from './helpers/index';
|
|
4
4
|
import { default as S } from './store/index';
|
|
5
5
|
import { default as T } from './types/index';
|
|
@@ -273,9 +273,24 @@ export default abstract class PF {
|
|
|
273
273
|
pagesCount: () => number;
|
|
274
274
|
reset: () => void;
|
|
275
275
|
};
|
|
276
|
-
|
|
276
|
+
/**
|
|
277
|
+
* Stores
|
|
278
|
+
*/
|
|
277
279
|
static S: typeof S;
|
|
280
|
+
/**
|
|
281
|
+
* Helpers
|
|
282
|
+
*/
|
|
278
283
|
static H: typeof H;
|
|
284
|
+
/**
|
|
285
|
+
* Classes
|
|
286
|
+
*/
|
|
279
287
|
static C: typeof C;
|
|
288
|
+
/**
|
|
289
|
+
* Types
|
|
290
|
+
*/
|
|
280
291
|
static T: typeof T;
|
|
292
|
+
/**
|
|
293
|
+
* FTSP
|
|
294
|
+
*/
|
|
295
|
+
static F: typeof F;
|
|
281
296
|
}
|