@decaf-ts/ui-decorators 0.7.3 → 0.7.5

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/lib/cjs/index.cjs CHANGED
@@ -33,7 +33,7 @@ __exportStar(require("./ui/index.cjs"), exports);
33
33
  * @const VERSION
34
34
  * @memberOf module:ui-decorators
35
35
  */
36
- exports.VERSION = "0.7.2";
36
+ exports.VERSION = "0.7.4";
37
37
  exports.PACKAGE_NAME = "@decaf-ts/ui-decorators";
38
38
  decoration_1.Metadata.registerLibrary(exports.PACKAGE_NAME, exports.VERSION);
39
39
  //# sourceMappingURL=index.js.map
package/lib/esm/index.js CHANGED
@@ -16,7 +16,7 @@ export * from "./ui/index.js";
16
16
  * @const VERSION
17
17
  * @memberOf module:ui-decorators
18
18
  */
19
- export const VERSION = "0.7.2";
19
+ export const VERSION = "0.7.4";
20
20
  export const PACKAGE_NAME = "@decaf-ts/ui-decorators";
21
21
  Metadata.registerLibrary(PACKAGE_NAME, VERSION);
22
22
  //# sourceMappingURL=index.js.map
@@ -15,5 +15,5 @@ export * from "./ui";
15
15
  * @const VERSION
16
16
  * @memberOf module:ui-decorators
17
17
  */
18
- export declare const VERSION = "0.7.2";
18
+ export declare const VERSION = "0.7.4";
19
19
  export declare const PACKAGE_NAME = "@decaf-ts/ui-decorators";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/ui-decorators",
3
- "version": "0.7.3",
3
+ "version": "0.7.5",
4
4
  "description": "Extension of decorator validation to ui elements to allow for web integration",
5
5
  "type": "module",
6
6
  "exports": {
@@ -98,5 +98,8 @@
98
98
  },
99
99
  "main": "./lib/cjs/index.cjs",
100
100
  "module": "./lib/esm/index.js",
101
- "sideEffects": false
101
+ "sideEffects": [
102
+ "./lib/esm/overrides/index.js",
103
+ "./lib/cjs/overrides/index.cjs"
104
+ ]
102
105
  }