resolver-egretimp-plus 0.1.33 → 0.1.35

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.1.33",
3
+ "version": "0.1.35",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -88,13 +88,22 @@
88
88
  .el-input {
89
89
  display: flex;
90
90
  }
91
+ .el-input {
92
+ --el-input-height: 24px;
93
+ }
94
+ .el-form-item__label {
95
+ height: 24px;
96
+ }
97
+ .el-form-item__content {
98
+ min-height: 24px;
99
+ }
91
100
  .el-select__wrapper, .el-input__wrapper {
92
101
  box-shadow: none;
93
102
  border-bottom: 1px solid var(--el-border-color);
94
103
  padding: 0;
95
104
  border-radius: 0;
96
105
  background-color: transparent;
97
- min-height: 32px;
106
+ min-height: 24px;
98
107
  &.is-focused {
99
108
  border-color: var(--el-color-primary);
100
109
  }
@@ -24,10 +24,10 @@ export function useVModel(config, props, emit, modelKey = 'update:modelValue') {
24
24
  }
25
25
  const val = (metaCodeKey ? props.modelValue?.[metaCodeKey] : props.modelValue) ?? null
26
26
  if (modelKey === 'update:modelValue' && (val === undefined || val === null)) {
27
- // defaultVal(config)
28
- setTimeout(() => {
29
- defaultVal(config)
30
- }, 0)
27
+ defaultVal(config)
28
+ // setTimeout(() => {
29
+ // defaultVal(config)
30
+ // }, 0)
31
31
  }
32
32
  config && (config.bindValue = val)
33
33
  if (config) {
@@ -62,6 +62,9 @@
62
62
  .label-position-left {
63
63
  .el-form-item__label {
64
64
  justify-content: flex-start;
65
+ .custom-label-content {
66
+ text-align: left;
67
+ }
65
68
  }
66
69
  }
67
70
  .label-position-top {