@webiny/app-utils 6.0.0-beta.0 → 6.0.0-rc.0
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/README.md +6 -13
- package/features/List/FilterFeature.d.ts +11 -0
- package/features/List/FilterFeature.js +25 -0
- package/features/List/FilterFeature.js.map +1 -0
- package/features/List/ListQueryParamsRepository.d.ts +18 -0
- package/features/List/ListQueryParamsRepository.js +70 -0
- package/features/List/ListQueryParamsRepository.js.map +1 -0
- package/features/List/LoadMoreFeature.d.ts +13 -0
- package/features/List/LoadMoreFeature.js +30 -0
- package/features/List/LoadMoreFeature.js.map +1 -0
- package/features/List/LoadingRepository.d.ts +15 -0
- package/features/List/LoadingRepository.js +50 -0
- package/features/List/LoadingRepository.js.map +1 -0
- package/features/List/SearchFeature.d.ts +10 -0
- package/features/List/SearchFeature.js +17 -0
- package/features/List/SearchFeature.js.map +1 -0
- package/features/List/SortFeature.d.ts +10 -0
- package/features/List/SortFeature.js +20 -0
- package/features/List/SortFeature.js.map +1 -0
- package/features/List/abstractions.d.ts +73 -0
- package/features/List/abstractions.js +34 -0
- package/features/List/abstractions.js.map +1 -0
- package/features/List/feature.d.ts +8 -0
- package/features/List/feature.js +34 -0
- package/features/List/feature.js.map +1 -0
- package/fta/Domain/Models/Meta/Meta.js +13 -28
- package/fta/Domain/Models/Meta/Meta.js.map +1 -1
- package/fta/Domain/Models/Meta/MetaMapper.d.ts +1 -1
- package/fta/Domain/Models/Meta/MetaMapper.js +8 -23
- package/fta/Domain/Models/Meta/MetaMapper.js.map +1 -1
- package/fta/Domain/Models/Meta/index.d.ts +2 -2
- package/fta/Domain/Models/Meta/index.js +2 -27
- package/fta/Domain/Models/Meta/index.js.map +1 -1
- package/fta/Domain/Models/Sorting/Sorting.js +6 -19
- package/fta/Domain/Models/Sorting/Sorting.js.map +1 -1
- package/fta/Domain/Models/Sorting/SortingMapper.d.ts +2 -2
- package/fta/Domain/Models/Sorting/SortingMapper.js +40 -53
- package/fta/Domain/Models/Sorting/SortingMapper.js.map +1 -1
- package/fta/Domain/Models/Sorting/index.d.ts +2 -2
- package/fta/Domain/Models/Sorting/index.js +2 -27
- package/fta/Domain/Models/Sorting/index.js.map +1 -1
- package/fta/Domain/Models/index.d.ts +2 -2
- package/fta/Domain/Models/index.js +2 -27
- package/fta/Domain/Models/index.js.map +1 -1
- package/fta/Domain/Repositories/Loading/ILoadingRepository.d.ts +4 -0
- package/fta/Domain/Repositories/Loading/ILoadingRepository.js +1 -5
- package/fta/Domain/Repositories/Loading/ILoadingRepository.js.map +1 -1
- package/fta/Domain/Repositories/Loading/LoadingRepository.d.ts +5 -1
- package/fta/Domain/Repositories/Loading/LoadingRepository.js +31 -32
- package/fta/Domain/Repositories/Loading/LoadingRepository.js.map +1 -1
- package/fta/Domain/Repositories/Loading/LoadingRepositoryFactory.d.ts +2 -2
- package/fta/Domain/Repositories/Loading/LoadingRepositoryFactory.js +14 -32
- package/fta/Domain/Repositories/Loading/LoadingRepositoryFactory.js.map +1 -1
- package/fta/Domain/Repositories/Loading/index.d.ts +3 -3
- package/fta/Domain/Repositories/Loading/index.js +2 -38
- package/fta/Domain/Repositories/Loading/index.js.map +1 -1
- package/fta/Domain/Repositories/Meta/IMetaRepository.d.ts +1 -1
- package/fta/Domain/Repositories/Meta/IMetaRepository.js +1 -5
- package/fta/Domain/Repositories/Meta/IMetaRepository.js.map +1 -1
- package/fta/Domain/Repositories/Meta/MetaRepository.d.ts +2 -2
- package/fta/Domain/Repositories/Meta/MetaRepository.js +38 -59
- package/fta/Domain/Repositories/Meta/MetaRepository.js.map +1 -1
- package/fta/Domain/Repositories/Meta/MetaRepositoryFactory.d.ts +2 -2
- package/fta/Domain/Repositories/Meta/MetaRepositoryFactory.js +14 -32
- package/fta/Domain/Repositories/Meta/MetaRepositoryFactory.js.map +1 -1
- package/fta/Domain/Repositories/Meta/index.d.ts +3 -3
- package/fta/Domain/Repositories/Meta/index.js +2 -38
- package/fta/Domain/Repositories/Meta/index.js.map +1 -1
- package/fta/Domain/Repositories/Sorting/ISortingRepository.d.ts +2 -2
- package/fta/Domain/Repositories/Sorting/ISortingRepository.js +1 -5
- package/fta/Domain/Repositories/Sorting/ISortingRepository.js.map +1 -1
- package/fta/Domain/Repositories/Sorting/SortingRepository.d.ts +3 -3
- package/fta/Domain/Repositories/Sorting/SortingRepository.js +12 -28
- package/fta/Domain/Repositories/Sorting/SortingRepository.js.map +1 -1
- package/fta/Domain/Repositories/Sorting/SortingRepositoryFactory.d.ts +2 -2
- package/fta/Domain/Repositories/Sorting/SortingRepositoryFactory.js +14 -32
- package/fta/Domain/Repositories/Sorting/SortingRepositoryFactory.js.map +1 -1
- package/fta/Domain/Repositories/Sorting/index.d.ts +3 -3
- package/fta/Domain/Repositories/Sorting/index.js +2 -38
- package/fta/Domain/Repositories/Sorting/index.js.map +1 -1
- package/fta/Domain/Repositories/index.d.ts +3 -3
- package/fta/Domain/Repositories/index.js +3 -38
- package/fta/Domain/Repositories/index.js.map +1 -1
- package/fta/Domain/index.d.ts +2 -2
- package/fta/Domain/index.js +2 -27
- package/fta/Domain/index.js.map +1 -1
- package/fta/index.d.ts +1 -1
- package/fta/index.js +1 -16
- package/fta/index.js.map +1 -1
- package/index.d.ts +1 -1
- package/index.js +1 -16
- package/index.js.map +1 -1
- package/package.json +8 -18
package/fta/index.js
CHANGED
|
@@ -1,18 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
var _Domain = require("./Domain");
|
|
7
|
-
Object.keys(_Domain).forEach(function (key) {
|
|
8
|
-
if (key === "default" || key === "__esModule") return;
|
|
9
|
-
if (key in exports && exports[key] === _Domain[key]) return;
|
|
10
|
-
Object.defineProperty(exports, key, {
|
|
11
|
-
enumerable: true,
|
|
12
|
-
get: function get() {
|
|
13
|
-
return _Domain[key];
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
});
|
|
1
|
+
export * from "./Domain/index.js";
|
|
17
2
|
|
|
18
3
|
//# sourceMappingURL=index.js.map
|
package/fta/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./Domain/index.js\";\n"],"mappings":"AAAA","ignoreList":[]}
|
package/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./fta";
|
|
1
|
+
export * from "./fta/index.js";
|
package/index.js
CHANGED
|
@@ -1,18 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
var _fta = require("./fta");
|
|
7
|
-
Object.keys(_fta).forEach(function (key) {
|
|
8
|
-
if (key === "default" || key === "__esModule") return;
|
|
9
|
-
if (key in exports && exports[key] === _fta[key]) return;
|
|
10
|
-
Object.defineProperty(exports, key, {
|
|
11
|
-
enumerable: true,
|
|
12
|
-
get: function get() {
|
|
13
|
-
return _fta[key];
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
});
|
|
1
|
+
export * from "./fta/index.js";
|
|
17
2
|
|
|
18
3
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./fta/index.js\";\n"],"mappings":"AAAA","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-utils",
|
|
3
|
-
"version": "6.0.0-
|
|
3
|
+
"version": "6.0.0-rc.0",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"main": "index.js",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
@@ -10,28 +11,17 @@
|
|
|
10
11
|
"author": "Webiny Ltd.",
|
|
11
12
|
"license": "MIT",
|
|
12
13
|
"dependencies": {
|
|
13
|
-
"@webiny/
|
|
14
|
-
"
|
|
14
|
+
"@webiny/feature": "6.0.0-rc.0",
|
|
15
|
+
"@webiny/utils": "6.0.0-rc.0",
|
|
16
|
+
"mobx": "6.15.0"
|
|
15
17
|
},
|
|
16
18
|
"devDependencies": {
|
|
17
|
-
"@
|
|
18
|
-
"
|
|
19
|
-
"@babel/preset-env": "7.24.3",
|
|
20
|
-
"@babel/preset-react": "7.24.1",
|
|
21
|
-
"@babel/preset-typescript": "7.24.1",
|
|
22
|
-
"@babel/runtime": "7.24.1",
|
|
23
|
-
"@webiny/cli": "6.0.0-beta.0",
|
|
24
|
-
"@webiny/project-utils": "6.0.0-beta.0",
|
|
25
|
-
"ttypescript": "1.5.15",
|
|
26
|
-
"typescript": "4.7.4"
|
|
19
|
+
"@webiny/build-tools": "6.0.0-rc.0",
|
|
20
|
+
"typescript": "5.9.3"
|
|
27
21
|
},
|
|
28
22
|
"publishConfig": {
|
|
29
23
|
"access": "public",
|
|
30
24
|
"directory": "dist"
|
|
31
25
|
},
|
|
32
|
-
"
|
|
33
|
-
"build": "yarn webiny run build",
|
|
34
|
-
"watch": "yarn webiny run watch"
|
|
35
|
-
},
|
|
36
|
-
"gitHead": "aa8dbfbbd5ad13ec271adba6f2431e02991a300f"
|
|
26
|
+
"gitHead": "0f2aa699f4642e550ab62c96fcd050e8d02345c9"
|
|
37
27
|
}
|