@katlux/providers 0.1.0-beta.6 → 0.1.0-beta.9
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/index.cjs +9 -9
- package/dist/index.d.cts +14 -14
- package/dist/index.d.mts +14 -14
- package/dist/index.d.ts +14 -14
- package/dist/index.mjs +9 -9
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2,15 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
const providers = require('@katlux/providers');
|
|
4
4
|
|
|
5
|
-
var ECacheStrategy = /* @__PURE__ */ ((ECacheStrategy2) => {
|
|
6
|
-
ECacheStrategy2["Application"] = "Application";
|
|
7
|
-
ECacheStrategy2["Session"] = "Session";
|
|
8
|
-
ECacheStrategy2["Memory"] = "Memory";
|
|
9
|
-
ECacheStrategy2["LocalStorage"] = "LocalStorage";
|
|
10
|
-
ECacheStrategy2["IndexedDB"] = "IndexedDB";
|
|
11
|
-
ECacheStrategy2["Cookie"] = "Cookie";
|
|
12
|
-
return ECacheStrategy2;
|
|
13
|
-
})(ECacheStrategy || {});
|
|
14
5
|
var EDataFilterOperator = /* @__PURE__ */ ((EDataFilterOperator2) => {
|
|
15
6
|
EDataFilterOperator2["Equal"] = "==";
|
|
16
7
|
EDataFilterOperator2["NotEqual"] = "!=";
|
|
@@ -26,6 +17,15 @@ var EDataFilterOperator = /* @__PURE__ */ ((EDataFilterOperator2) => {
|
|
|
26
17
|
EDataFilterOperator2["Nor"] = "nor";
|
|
27
18
|
return EDataFilterOperator2;
|
|
28
19
|
})(EDataFilterOperator || {});
|
|
20
|
+
var ECacheStrategy = /* @__PURE__ */ ((ECacheStrategy2) => {
|
|
21
|
+
ECacheStrategy2["Application"] = "Application";
|
|
22
|
+
ECacheStrategy2["Session"] = "Session";
|
|
23
|
+
ECacheStrategy2["Memory"] = "Memory";
|
|
24
|
+
ECacheStrategy2["LocalStorage"] = "LocalStorage";
|
|
25
|
+
ECacheStrategy2["IndexedDB"] = "IndexedDB";
|
|
26
|
+
ECacheStrategy2["Cookie"] = "Cookie";
|
|
27
|
+
return ECacheStrategy2;
|
|
28
|
+
})(ECacheStrategy || {});
|
|
29
29
|
|
|
30
30
|
/**
|
|
31
31
|
* @vue/shared v3.5.24
|
package/dist/index.d.cts
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
declare enum EDataFilterOperator {
|
|
2
|
+
Equal = "==",
|
|
3
|
+
NotEqual = "!=",
|
|
4
|
+
GreaterThan = ">",
|
|
5
|
+
LessThan = "<",
|
|
6
|
+
GreaterThanOrEqual = ">=",
|
|
7
|
+
LessThanOrEqual = "<=",
|
|
8
|
+
In = "in",
|
|
9
|
+
NotIn = "nin",
|
|
10
|
+
And = "and",
|
|
11
|
+
Or = "or",
|
|
12
|
+
Nand = "nand",
|
|
13
|
+
Nor = "nor"
|
|
14
|
+
}
|
|
1
15
|
declare enum ECacheStrategy {
|
|
2
16
|
Application = "Application",
|
|
3
17
|
Session = "Session",
|
|
@@ -31,20 +45,6 @@ interface IKDatatableAction {
|
|
|
31
45
|
type TDataRow = {
|
|
32
46
|
[key: string]: any;
|
|
33
47
|
};
|
|
34
|
-
declare enum EDataFilterOperator {
|
|
35
|
-
Equal = "==",
|
|
36
|
-
NotEqual = "!=",
|
|
37
|
-
GreaterThan = ">",
|
|
38
|
-
LessThan = "<",
|
|
39
|
-
GreaterThanOrEqual = ">=",
|
|
40
|
-
LessThanOrEqual = "<=",
|
|
41
|
-
In = "in",
|
|
42
|
-
NotIn = "nin",
|
|
43
|
-
And = "and",
|
|
44
|
-
Or = "or",
|
|
45
|
-
Nand = "nand",
|
|
46
|
-
Nor = "nor"
|
|
47
|
-
}
|
|
48
48
|
interface IDataFilter {
|
|
49
49
|
operator: EDataFilterOperator;
|
|
50
50
|
field: TDataRow | IDataFilter[];
|
package/dist/index.d.mts
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
declare enum EDataFilterOperator {
|
|
2
|
+
Equal = "==",
|
|
3
|
+
NotEqual = "!=",
|
|
4
|
+
GreaterThan = ">",
|
|
5
|
+
LessThan = "<",
|
|
6
|
+
GreaterThanOrEqual = ">=",
|
|
7
|
+
LessThanOrEqual = "<=",
|
|
8
|
+
In = "in",
|
|
9
|
+
NotIn = "nin",
|
|
10
|
+
And = "and",
|
|
11
|
+
Or = "or",
|
|
12
|
+
Nand = "nand",
|
|
13
|
+
Nor = "nor"
|
|
14
|
+
}
|
|
1
15
|
declare enum ECacheStrategy {
|
|
2
16
|
Application = "Application",
|
|
3
17
|
Session = "Session",
|
|
@@ -31,20 +45,6 @@ interface IKDatatableAction {
|
|
|
31
45
|
type TDataRow = {
|
|
32
46
|
[key: string]: any;
|
|
33
47
|
};
|
|
34
|
-
declare enum EDataFilterOperator {
|
|
35
|
-
Equal = "==",
|
|
36
|
-
NotEqual = "!=",
|
|
37
|
-
GreaterThan = ">",
|
|
38
|
-
LessThan = "<",
|
|
39
|
-
GreaterThanOrEqual = ">=",
|
|
40
|
-
LessThanOrEqual = "<=",
|
|
41
|
-
In = "in",
|
|
42
|
-
NotIn = "nin",
|
|
43
|
-
And = "and",
|
|
44
|
-
Or = "or",
|
|
45
|
-
Nand = "nand",
|
|
46
|
-
Nor = "nor"
|
|
47
|
-
}
|
|
48
48
|
interface IDataFilter {
|
|
49
49
|
operator: EDataFilterOperator;
|
|
50
50
|
field: TDataRow | IDataFilter[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
declare enum EDataFilterOperator {
|
|
2
|
+
Equal = "==",
|
|
3
|
+
NotEqual = "!=",
|
|
4
|
+
GreaterThan = ">",
|
|
5
|
+
LessThan = "<",
|
|
6
|
+
GreaterThanOrEqual = ">=",
|
|
7
|
+
LessThanOrEqual = "<=",
|
|
8
|
+
In = "in",
|
|
9
|
+
NotIn = "nin",
|
|
10
|
+
And = "and",
|
|
11
|
+
Or = "or",
|
|
12
|
+
Nand = "nand",
|
|
13
|
+
Nor = "nor"
|
|
14
|
+
}
|
|
1
15
|
declare enum ECacheStrategy {
|
|
2
16
|
Application = "Application",
|
|
3
17
|
Session = "Session",
|
|
@@ -31,20 +45,6 @@ interface IKDatatableAction {
|
|
|
31
45
|
type TDataRow = {
|
|
32
46
|
[key: string]: any;
|
|
33
47
|
};
|
|
34
|
-
declare enum EDataFilterOperator {
|
|
35
|
-
Equal = "==",
|
|
36
|
-
NotEqual = "!=",
|
|
37
|
-
GreaterThan = ">",
|
|
38
|
-
LessThan = "<",
|
|
39
|
-
GreaterThanOrEqual = ">=",
|
|
40
|
-
LessThanOrEqual = "<=",
|
|
41
|
-
In = "in",
|
|
42
|
-
NotIn = "nin",
|
|
43
|
-
And = "and",
|
|
44
|
-
Or = "or",
|
|
45
|
-
Nand = "nand",
|
|
46
|
-
Nor = "nor"
|
|
47
|
-
}
|
|
48
48
|
interface IDataFilter {
|
|
49
49
|
operator: EDataFilterOperator;
|
|
50
50
|
field: TDataRow | IDataFilter[];
|
package/dist/index.mjs
CHANGED
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
import { EDataFilterOperator as EDataFilterOperator$1 } from '@katlux/providers';
|
|
2
2
|
|
|
3
|
-
var ECacheStrategy = /* @__PURE__ */ ((ECacheStrategy2) => {
|
|
4
|
-
ECacheStrategy2["Application"] = "Application";
|
|
5
|
-
ECacheStrategy2["Session"] = "Session";
|
|
6
|
-
ECacheStrategy2["Memory"] = "Memory";
|
|
7
|
-
ECacheStrategy2["LocalStorage"] = "LocalStorage";
|
|
8
|
-
ECacheStrategy2["IndexedDB"] = "IndexedDB";
|
|
9
|
-
ECacheStrategy2["Cookie"] = "Cookie";
|
|
10
|
-
return ECacheStrategy2;
|
|
11
|
-
})(ECacheStrategy || {});
|
|
12
3
|
var EDataFilterOperator = /* @__PURE__ */ ((EDataFilterOperator2) => {
|
|
13
4
|
EDataFilterOperator2["Equal"] = "==";
|
|
14
5
|
EDataFilterOperator2["NotEqual"] = "!=";
|
|
@@ -24,6 +15,15 @@ var EDataFilterOperator = /* @__PURE__ */ ((EDataFilterOperator2) => {
|
|
|
24
15
|
EDataFilterOperator2["Nor"] = "nor";
|
|
25
16
|
return EDataFilterOperator2;
|
|
26
17
|
})(EDataFilterOperator || {});
|
|
18
|
+
var ECacheStrategy = /* @__PURE__ */ ((ECacheStrategy2) => {
|
|
19
|
+
ECacheStrategy2["Application"] = "Application";
|
|
20
|
+
ECacheStrategy2["Session"] = "Session";
|
|
21
|
+
ECacheStrategy2["Memory"] = "Memory";
|
|
22
|
+
ECacheStrategy2["LocalStorage"] = "LocalStorage";
|
|
23
|
+
ECacheStrategy2["IndexedDB"] = "IndexedDB";
|
|
24
|
+
ECacheStrategy2["Cookie"] = "Cookie";
|
|
25
|
+
return ECacheStrategy2;
|
|
26
|
+
})(ECacheStrategy || {});
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
29
|
* @vue/shared v3.5.24
|