@decaf-ts/ui-decorators 0.8.0 → 0.10.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/lib/cjs/index.cjs +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/types/index.d.ts +1 -1
- package/package.json +10 -5
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.
|
|
36
|
+
exports.VERSION = "0.9.0";
|
|
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.
|
|
19
|
+
export const VERSION = "0.9.0";
|
|
20
20
|
export const PACKAGE_NAME = "@decaf-ts/ui-decorators";
|
|
21
21
|
Metadata.registerLibrary(PACKAGE_NAME, VERSION);
|
|
22
22
|
//# sourceMappingURL=index.js.map
|
package/lib/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/ui-decorators",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Extension of decorator validation to ui elements to allow for web integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
"import": {
|
|
9
|
+
"types": "./lib/types/index.d.mts",
|
|
10
|
+
"default": "./lib/esm/index.js"
|
|
11
|
+
},
|
|
12
|
+
"require": {
|
|
13
|
+
"types": "./lib/types/index.d.cts",
|
|
14
|
+
"default": "./lib/cjs/index.cjs"
|
|
15
|
+
},
|
|
11
16
|
"default": "./lib/esm/index.js"
|
|
12
17
|
}
|
|
13
18
|
},
|
|
14
|
-
"types": "./lib/types/index.d.
|
|
19
|
+
"types": "./lib/types/index.d.mts",
|
|
15
20
|
"scripts": {
|
|
16
21
|
"do-install": "NPM_TOKEN=$(cat .npmtoken) npm install",
|
|
17
22
|
"update-dependencies": "PREFIX=\"decaf-ts\"; npm ls | grep \"$PREFIX\" | awk -F/ '{print $NF}' | sed 's/@.*//' | xargs -I package npm update @\"$PREFIX\"/package",
|