hoeditor-web 3.1.195 → 3.1.197

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/hoeditor.css CHANGED
@@ -15845,10 +15845,31 @@ legend {
15845
15845
  margin: 0 13px;
15846
15846
  }
15847
15847
 
15848
+ .ho-skin-svg-checkbox-group {
15849
+ display: flex;
15850
+ flex-direction: row;
15851
+ }
15852
+ .ho-skin-svg-checkbox-group-item {
15853
+ width: 160px;
15854
+ display: flex;
15855
+ flex-direction: column;
15856
+ justify-content: space-around;
15857
+ }
15858
+ .ho-skin-svg-checkbox-group-item .ant-checkbox-wrapper {
15859
+ margin: 0;
15860
+ }
15861
+ .ho-skin-svg-checkbox-group-item p {
15862
+ font-size: 18px;
15863
+ font-weight: bold;
15864
+ }
15865
+
15848
15866
  .ho-figure-modal li #ho-figure {
15849
15867
  width: 400px;
15850
15868
  height: 440px;
15851
15869
  }
15870
+ .ho-figure-modal .control-item .ho-skin-svg-checkbox-group .ant-checkbox-wrapper {
15871
+ margin: 0;
15872
+ }
15852
15873
 
15853
15874
  .ho-figure-modal li #ho-figure {
15854
15875
  width: 330px;
@@ -16152,8 +16173,7 @@ legend {
16152
16173
  color: #409eff;
16153
16174
  border: 1px solid #d9ecff;
16154
16175
  border-radius: 4px;
16155
- -webkit-box-sizing: border-box;
16156
- box-sizing: border-box;
16176
+ box-sizing: border-box;
16157
16177
  white-space: nowrap;
16158
16178
  }
16159
16179
  .radio-checkbox-modal .tags i {
@@ -17905,7 +17925,6 @@ legend {
17905
17925
  display: inline-block;
17906
17926
  width: 100%;
17907
17927
  height: 100%;
17908
- -webkit-transition: all 0.3s ease-in-out;
17909
17928
  transition: all 0.3s ease-in-out;
17910
17929
  }
17911
17930
  .print-selected {
@@ -17923,8 +17942,7 @@ legend {
17923
17942
  .pop-list li {
17924
17943
  height: 26px;
17925
17944
  line-height: 26px;
17926
- -webkit-box-sizing: border-box;
17927
- box-sizing: border-box;
17945
+ box-sizing: border-box;
17928
17946
  width: 100%;
17929
17947
  text-align: left;
17930
17948
  padding: 0 12px;
@@ -17950,13 +17968,11 @@ legend {
17950
17968
  }
17951
17969
  .item-hover .ho-emr-tool-item svg {
17952
17970
  margin: 0 8px 0 0;
17953
- -webkit-transform: translateY(5px);
17954
- transform: translateY(5px);
17971
+ transform: translateY(5px);
17955
17972
  }
17956
17973
  .item-hover .ho-emr-tool-item:hover {
17957
17974
  color: #2d7aff;
17958
17975
  background: #ecf5ff;
17959
- -webkit-transition: all 0.3s ease-in-out;
17960
17976
  transition: all 0.3s ease-in-out;
17961
17977
  }
17962
17978
  .item-hover .ho-emr-tool-item:hover input {
@@ -366,33 +366,6 @@ $({ target: 'Array', proto: true, forced: FORCED }, {
366
366
  });
367
367
 
368
368
 
369
- /***/ }),
370
-
371
- /***/ 94490:
372
- /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
373
-
374
- "use strict";
375
-
376
- var $ = __webpack_require__(46518);
377
- var uncurryThis = __webpack_require__(79504);
378
- var isArray = __webpack_require__(34376);
379
-
380
- var nativeReverse = uncurryThis([].reverse);
381
- var test = [1, 2];
382
-
383
- // `Array.prototype.reverse` method
384
- // https://tc39.es/ecma262/#sec-array.prototype.reverse
385
- // fix for Safari 12.0 bug
386
- // https://bugs.webkit.org/show_bug.cgi?id=188794
387
- $({ target: 'Array', proto: true, forced: String(test) === String(test.reverse()) }, {
388
- reverse: function reverse() {
389
- // eslint-disable-next-line no-self-assign -- dirty hack
390
- if (isArray(this)) this.length = this.length;
391
- return nativeReverse(this);
392
- }
393
- });
394
-
395
-
396
369
  /***/ }),
397
370
 
398
371
  /***/ 61132: