resolver-egretimp-plus 0.1.99 → 0.1.101

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.99",
3
+ "version": "0.1.101",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -39,7 +39,8 @@
39
39
  height: 16px;
40
40
  word-break: break-word;
41
41
  .custom-label-require {
42
- &::first-letter {
42
+ &::before {
43
+ content: '*';
43
44
  color: #f5222d;
44
45
  margin-right: 3px
45
46
  }
@@ -985,7 +985,7 @@ function createFormLable(config, lang = 'zh') {
985
985
  onClick={() => config.onLabelClick && config.onLabelClick?.(config)}
986
986
  >
987
987
  {/* {required ? <span style="color: #f5222d; margin-right: 3px">*</span> : null} */}
988
- {required ? '*' : null}
988
+ {/* {required ? '*' : null} */}
989
989
  {lang.indexOf('zh') > -1 ? (config.labelZh || config.metaNameZh) : (config.labelEn || config.metaNameEn)}
990
990
  </span>
991
991
  {