zova-jsx 1.1.46 → 1.1.47

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.
Files changed (3) hide show
  1. package/LICENSE +0 -0
  2. package/dist/index.js +3 -1
  3. package/package.json +12 -9
package/LICENSE CHANGED
File without changes
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import { h, createTextVNode } from 'vue';
5
5
  import { BeanSimple, objectAssignReactive, cast, BeanControllerIdentifier } from 'zova-core';
6
6
 
7
7
  const renderFieldJsxPropsSystem = ['children', 'v-slot', 'v-slot-scope', 'v-if', 'v-for', 'v-each'
8
- //'key', // need key
8
+ // 'key', // need key
9
9
  ];
10
10
 
11
11
  const __propsMapper = {
@@ -381,8 +381,10 @@ class ZovaJsx extends BeanSimple {
381
381
  const name = cast(props).name;
382
382
  const message = cast(props).message;
383
383
  if (isNil(name)) {
384
+ // eslint-disable-next-line
384
385
  console.log(message);
385
386
  } else {
387
+ // eslint-disable-next-line
386
388
  console.log(name, message);
387
389
  }
388
390
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zova-jsx",
3
- "version": "1.1.46",
4
- "gitHead": "6f675a8cc46d596142c591c28a40cc4d82fcc6cc",
3
+ "version": "1.1.47",
4
+ "gitHead": "09d901d17140a80ee0764211b441cda72fd94663",
5
5
  "description": "Zova JSX",
6
6
  "keywords": [
7
7
  "ioc",
@@ -32,16 +32,19 @@
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
+ "scripts": {
36
+ "clean": "rimraf dist tsconfig.tsbuildinfo",
37
+ "tsc:publish": "npm run clean && vona :bin:buildGeneral && tsc",
38
+ "prepublishOnly": "npm run tsc:publish",
39
+ "prepack": "clean-package",
40
+ "postpack": "clean-package restore"
41
+ },
35
42
  "dependencies": {
36
43
  "@cabloy/compose": "^2.1.5",
37
44
  "@cabloy/utils": "^2.1.19",
38
- "@cabloy/word-utils": "^2.1.12",
45
+ "@cabloy/word-utils": "^2.1.13",
39
46
  "typestyle": "^2.4.0",
40
47
  "vue": "^3.5.32",
41
- "zova-core": "^5.1.40"
42
- },
43
- "scripts": {
44
- "clean": "rimraf dist tsconfig.tsbuildinfo",
45
- "tsc:publish": "npm run clean && vona :bin:buildGeneral && tsc"
48
+ "zova-core": "^5.1.41"
46
49
  }
47
- }
50
+ }