@etsoo/shared 1.1.82 → 1.1.83

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.
@@ -5,11 +5,13 @@ export * from './types/EventClass';
5
5
  export * from './types/FormData';
6
6
  export * from './storage/IStorage';
7
7
  export * from './storage/WindowStorage';
8
+ export * from './ActionResult';
8
9
  export * from './DataTypes';
9
10
  export * from './ColorUtils';
10
11
  export * from './DateUtils';
11
12
  export * from './DomUtils';
12
13
  export * from './ExtendUtils';
14
+ export * from './IActionResult';
13
15
  export * from './Keyboard';
14
16
  export * from './NumberUtils';
15
17
  export * from './StorageUtils';
package/lib/cjs/index.js CHANGED
@@ -21,11 +21,13 @@ __exportStar(require("./types/EventClass"), exports);
21
21
  __exportStar(require("./types/FormData"), exports);
22
22
  __exportStar(require("./storage/IStorage"), exports);
23
23
  __exportStar(require("./storage/WindowStorage"), exports);
24
+ __exportStar(require("./ActionResult"), exports);
24
25
  __exportStar(require("./DataTypes"), exports);
25
26
  __exportStar(require("./ColorUtils"), exports);
26
27
  __exportStar(require("./DateUtils"), exports);
27
28
  __exportStar(require("./DomUtils"), exports);
28
29
  __exportStar(require("./ExtendUtils"), exports);
30
+ __exportStar(require("./IActionResult"), exports);
29
31
  __exportStar(require("./Keyboard"), exports);
30
32
  __exportStar(require("./NumberUtils"), exports);
31
33
  __exportStar(require("./StorageUtils"), exports);
@@ -5,11 +5,13 @@ export * from './types/EventClass';
5
5
  export * from './types/FormData';
6
6
  export * from './storage/IStorage';
7
7
  export * from './storage/WindowStorage';
8
+ export * from './ActionResult';
8
9
  export * from './DataTypes';
9
10
  export * from './ColorUtils';
10
11
  export * from './DateUtils';
11
12
  export * from './DomUtils';
12
13
  export * from './ExtendUtils';
14
+ export * from './IActionResult';
13
15
  export * from './Keyboard';
14
16
  export * from './NumberUtils';
15
17
  export * from './StorageUtils';
package/lib/mjs/index.js CHANGED
@@ -5,11 +5,13 @@ export * from './types/EventClass';
5
5
  export * from './types/FormData';
6
6
  export * from './storage/IStorage';
7
7
  export * from './storage/WindowStorage';
8
+ export * from './ActionResult';
8
9
  export * from './DataTypes';
9
10
  export * from './ColorUtils';
10
11
  export * from './DateUtils';
11
12
  export * from './DomUtils';
12
13
  export * from './ExtendUtils';
14
+ export * from './IActionResult';
13
15
  export * from './Keyboard';
14
16
  export * from './NumberUtils';
15
17
  export * from './StorageUtils';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/shared",
3
- "version": "1.1.82",
3
+ "version": "1.1.83",
4
4
  "description": "TypeScript shared utilities and functions",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
package/src/index.ts CHANGED
@@ -7,11 +7,13 @@ export * from './types/FormData';
7
7
  export * from './storage/IStorage';
8
8
  export * from './storage/WindowStorage';
9
9
 
10
+ export * from './ActionResult';
10
11
  export * from './DataTypes';
11
12
  export * from './ColorUtils';
12
13
  export * from './DateUtils';
13
14
  export * from './DomUtils';
14
15
  export * from './ExtendUtils';
16
+ export * from './IActionResult';
15
17
  export * from './Keyboard';
16
18
  export * from './NumberUtils';
17
19
  export * from './StorageUtils';