hoeditor-web 3.1.195 → 3.1.196
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 +21 -0
- package/lib/hoeditor.umd.132.js +0 -27
- package/lib/hoeditor.umd.js +10585 -11200
- package/lib/hoeditor.umd.min.132.js +1 -1
- package/lib/hoeditor.umd.min.js +20 -20
- package/package.json +1 -1
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;
|
package/lib/hoeditor.umd.132.js
CHANGED
|
@@ -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:
|