resolver-egretimp-plus 0.0.274 → 0.0.276

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resolver-egretimp-plus",
3
- "version": "0.0.274",
3
+ "version": "0.0.276",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -47,8 +47,9 @@
47
47
  // bottom: 0;
48
48
  // left: 0;
49
49
  position: unset;
50
- height: 1px;
51
- background-color: #d0d3d6;
50
+ height: 0px;
51
+ border-bottom: 1px solid #d0d3d6;
52
+ // background-color: #d0d3d6;
52
53
  // margin-bottom: var(--prmary-marign);
53
54
  }
54
55
  .el-collapse-item__content {
@@ -1,5 +1,5 @@
1
1
  import { getCodeMapRules } from '../rules/rulesDriver.js'
2
- import { resolveAssetComponents, findComponent, compareComponet, normalPixel, isPlainObject, hasOwn, isFnStr, normalCapitalizeComponent, capitalize, camelize, formatDate} from './common.js'
2
+ import { resolveAssetComponents, findComponent, compareComponet, normalPixel, isPlainObject, hasOwn, isFnStr, normalCapitalizeComponent, capitalize, camelize, formatDate, definePrivatelyProp} from './common.js'
3
3
  import { resolveComponent, inject } from 'vue'
4
4
  import CustomComponentColH5 from '../components/packages-H5/CustomComponentColH5.vue'
5
5
  import {
@@ -714,7 +714,7 @@ function generateFormItemPc (config, lang, compProps, params,) {
714
714
  slots.label = () => createFormLable(config, lang)
715
715
  }
716
716
  return (
717
- <formItemComp key={config.requiredFlag} class="custom-form-item" {...props}>{slots}</formItemComp>
717
+ <formItemComp ref={(e) => {definePrivatelyProp(config, 'formItemVm', e)}} key={config.requiredFlag} class="custom-form-item" {...props}>{slots}</formItemComp>
718
718
  )
719
719
  }
720
720
  }