x25 17.4.48 → 17.4.50
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/Async/types.d.ts +3 -3
- package/package.json +2 -1
package/Async/types.d.ts
CHANGED
|
@@ -16,9 +16,9 @@ export type PaginatorsTypes = Array<PaginatorType> | PaginatorType;
|
|
|
16
16
|
export type ModuleParts = {
|
|
17
17
|
module: string;
|
|
18
18
|
Component: any;
|
|
19
|
-
reducers
|
|
20
|
-
modals
|
|
21
|
-
paginators
|
|
19
|
+
reducers?: ReducersTypes;
|
|
20
|
+
modals?: ModalsTypes;
|
|
21
|
+
paginators?: PaginatorsTypes;
|
|
22
22
|
};
|
|
23
23
|
export type Loaded = {
|
|
24
24
|
default: ModuleParts;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "17.4.
|
|
2
|
+
"version": "17.4.50",
|
|
3
3
|
"name": "x25",
|
|
4
4
|
"description": "x25",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"intern-pre": "npm run eslint && npm run intern-clean && npm run intern-build",
|
|
11
11
|
"intern-build-scss": "node-sass --output-style compressed src -o dist",
|
|
12
12
|
"intern-copy": " copy package.json dist",
|
|
13
|
+
"lint": "npm run ts:check & npm run eslint",
|
|
13
14
|
"intern-build": "npm run intern-build-scss",
|
|
14
15
|
"intern-clean": "rimraf dist dist",
|
|
15
16
|
"intern-test": "vitest",
|