hoeditor-web 3.1.67 → 3.1.68
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.umd.935.js +90 -90
- package/lib/hoeditor.umd.js +23194 -23407
- package/lib/hoeditor.umd.min.935.js +1 -1
- package/lib/hoeditor.umd.min.js +45 -31
- package/package.json +1 -1
package/lib/hoeditor.umd.935.js
CHANGED
|
@@ -7,18 +7,18 @@
|
|
|
7
7
|
|
|
8
8
|
/* eslint-disable es/no-array-prototype-indexof -- required for testing */
|
|
9
9
|
var $ = __webpack_require__(82109);
|
|
10
|
-
var uncurryThis = __webpack_require__(
|
|
10
|
+
var uncurryThis = __webpack_require__(1702);
|
|
11
11
|
var $indexOf = (__webpack_require__(41318).indexOf);
|
|
12
12
|
var arrayMethodIsStrict = __webpack_require__(9341);
|
|
13
13
|
|
|
14
14
|
var nativeIndexOf = uncurryThis([].indexOf);
|
|
15
15
|
|
|
16
16
|
var NEGATIVE_ZERO = !!nativeIndexOf && 1 / nativeIndexOf([1], 1, -0) < 0;
|
|
17
|
-
var
|
|
17
|
+
var STRICT_METHOD = arrayMethodIsStrict('indexOf');
|
|
18
18
|
|
|
19
19
|
// `Array.prototype.indexOf` method
|
|
20
20
|
// https://tc39.es/ecma262/#sec-array.prototype.indexof
|
|
21
|
-
$({ target: 'Array', proto: true, forced:
|
|
21
|
+
$({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD }, {
|
|
22
22
|
indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
|
|
23
23
|
var fromIndex = arguments.length > 1 ? arguments[1] : undefined;
|
|
24
24
|
return NEGATIVE_ZERO
|
|
@@ -42,14 +42,14 @@ var arrayMethodIsStrict = __webpack_require__(9341);
|
|
|
42
42
|
var CHROME_VERSION = __webpack_require__(7392);
|
|
43
43
|
var IS_NODE = __webpack_require__(35268);
|
|
44
44
|
|
|
45
|
+
var STRICT_METHOD = arrayMethodIsStrict('reduce');
|
|
45
46
|
// Chrome 80-82 has a critical bug
|
|
46
47
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=1049982
|
|
47
48
|
var CHROME_BUG = !IS_NODE && CHROME_VERSION > 79 && CHROME_VERSION < 83;
|
|
48
|
-
var FORCED = CHROME_BUG || !arrayMethodIsStrict('reduce');
|
|
49
49
|
|
|
50
50
|
// `Array.prototype.reduce` method
|
|
51
51
|
// https://tc39.es/ecma262/#sec-array.prototype.reduce
|
|
52
|
-
$({ target: 'Array', proto: true, forced:
|
|
52
|
+
$({ target: 'Array', proto: true, forced: !STRICT_METHOD || CHROME_BUG }, {
|
|
53
53
|
reduce: function reduce(callbackfn /* , initialValue */) {
|
|
54
54
|
var length = arguments.length;
|
|
55
55
|
return $reduce(this, callbackfn, length, length > 1 ? arguments[1] : undefined);
|
|
@@ -404,92 +404,92 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
404
404
|
|
|
405
405
|
// EXPORTS
|
|
406
406
|
__webpack_require__.d(__webpack_exports__, {
|
|
407
|
-
AElement: function() { return /* binding */ AElement; },
|
|
408
|
-
AnimateColorElement: function() { return /* binding */ AnimateColorElement; },
|
|
409
|
-
AnimateElement: function() { return /* binding */ AnimateElement; },
|
|
410
|
-
AnimateTransformElement: function() { return /* binding */ AnimateTransformElement; },
|
|
411
|
-
BoundingBox: function() { return /* binding */ BoundingBox; },
|
|
412
|
-
CB1: function() { return /* binding */ CB1; },
|
|
413
|
-
CB2: function() { return /* binding */ CB2; },
|
|
414
|
-
CB3: function() { return /* binding */ CB3; },
|
|
415
|
-
CB4: function() { return /* binding */ CB4; },
|
|
416
|
-
Canvg: function() { return /* binding */ Canvg; },
|
|
417
|
-
CircleElement: function() { return /* binding */ CircleElement; },
|
|
418
|
-
ClipPathElement: function() { return /* binding */ ClipPathElement; },
|
|
419
|
-
DefsElement: function() { return /* binding */ DefsElement; },
|
|
420
|
-
DescElement: function() { return /* binding */ DescElement; },
|
|
421
|
-
Document: function() { return /* binding */ Document; },
|
|
422
|
-
Element: function() { return /* binding */ Element; },
|
|
423
|
-
EllipseElement: function() { return /* binding */ EllipseElement; },
|
|
424
|
-
FeColorMatrixElement: function() { return /* binding */ FeColorMatrixElement; },
|
|
425
|
-
FeCompositeElement: function() { return /* binding */ FeCompositeElement; },
|
|
426
|
-
FeDropShadowElement: function() { return /* binding */ FeDropShadowElement; },
|
|
427
|
-
FeGaussianBlurElement: function() { return /* binding */ FeGaussianBlurElement; },
|
|
428
|
-
FeMorphologyElement: function() { return /* binding */ FeMorphologyElement; },
|
|
429
|
-
FilterElement: function() { return /* binding */ FilterElement; },
|
|
430
|
-
Font: function() { return /* binding */ Font; },
|
|
431
|
-
FontElement: function() { return /* binding */ FontElement; },
|
|
432
|
-
FontFaceElement: function() { return /* binding */ FontFaceElement; },
|
|
433
|
-
GElement: function() { return /* binding */ GElement; },
|
|
434
|
-
GlyphElement: function() { return /* binding */ GlyphElement; },
|
|
435
|
-
GradientElement: function() { return /* binding */ GradientElement; },
|
|
436
|
-
ImageElement: function() { return /* binding */ ImageElement; },
|
|
437
|
-
LineElement: function() { return /* binding */ LineElement; },
|
|
438
|
-
LinearGradientElement: function() { return /* binding */ LinearGradientElement; },
|
|
439
|
-
MarkerElement: function() { return /* binding */ MarkerElement; },
|
|
440
|
-
MaskElement: function() { return /* binding */ MaskElement; },
|
|
441
|
-
Matrix: function() { return /* binding */ Matrix; },
|
|
442
|
-
MissingGlyphElement: function() { return /* binding */ MissingGlyphElement; },
|
|
443
|
-
Mouse: function() { return /* binding */ Mouse; },
|
|
444
|
-
PSEUDO_ZERO: function() { return /* binding */ PSEUDO_ZERO; },
|
|
445
|
-
Parser: function() { return /* binding */ Parser; },
|
|
446
|
-
PathElement: function() { return /* binding */ PathElement; },
|
|
447
|
-
PathParser: function() { return /* binding */ PathParser; },
|
|
448
|
-
PatternElement: function() { return /* binding */ PatternElement; },
|
|
449
|
-
Point: function() { return /* binding */ Point; },
|
|
450
|
-
PolygonElement: function() { return /* binding */ PolygonElement; },
|
|
451
|
-
PolylineElement: function() { return /* binding */ PolylineElement; },
|
|
452
|
-
Property: function() { return /* binding */ Property; },
|
|
453
|
-
QB1: function() { return /* binding */ QB1; },
|
|
454
|
-
QB2: function() { return /* binding */ QB2; },
|
|
455
|
-
QB3: function() { return /* binding */ QB3; },
|
|
456
|
-
RadialGradientElement: function() { return /* binding */ RadialGradientElement; },
|
|
457
|
-
RectElement: function() { return /* binding */ RectElement; },
|
|
458
|
-
RenderedElement: function() { return /* binding */ RenderedElement; },
|
|
459
|
-
Rotate: function() { return /* binding */ Rotate; },
|
|
460
|
-
SVGElement: function() { return /* binding */ SVGElement; },
|
|
461
|
-
SVGFontLoader: function() { return /* binding */ SVGFontLoader; },
|
|
462
|
-
Scale: function() { return /* binding */ Scale; },
|
|
463
|
-
Screen: function() { return /* binding */ Screen; },
|
|
464
|
-
Skew: function() { return /* binding */ Skew; },
|
|
465
|
-
SkewX: function() { return /* binding */ SkewX; },
|
|
466
|
-
SkewY: function() { return /* binding */ SkewY; },
|
|
467
|
-
StopElement: function() { return /* binding */ StopElement; },
|
|
468
|
-
StyleElement: function() { return /* binding */ StyleElement; },
|
|
469
|
-
SymbolElement: function() { return /* binding */ SymbolElement; },
|
|
470
|
-
TRefElement: function() { return /* binding */ TRefElement; },
|
|
471
|
-
TSpanElement: function() { return /* binding */ TSpanElement; },
|
|
472
|
-
TextElement: function() { return /* binding */ TextElement; },
|
|
473
|
-
TextPathElement: function() { return /* binding */ TextPathElement; },
|
|
474
|
-
TitleElement: function() { return /* binding */ TitleElement; },
|
|
475
|
-
Transform: function() { return /* binding */ Transform; },
|
|
476
|
-
Translate: function() { return /* binding */ Translate; },
|
|
477
|
-
UnknownElement: function() { return /* binding */ UnknownElement; },
|
|
478
|
-
UseElement: function() { return /* binding */ UseElement; },
|
|
479
|
-
ViewPort: function() { return /* binding */ ViewPort; },
|
|
480
|
-
compressSpaces: function() { return /* binding */ compressSpaces; },
|
|
407
|
+
"AElement": function() { return /* binding */ AElement; },
|
|
408
|
+
"AnimateColorElement": function() { return /* binding */ AnimateColorElement; },
|
|
409
|
+
"AnimateElement": function() { return /* binding */ AnimateElement; },
|
|
410
|
+
"AnimateTransformElement": function() { return /* binding */ AnimateTransformElement; },
|
|
411
|
+
"BoundingBox": function() { return /* binding */ BoundingBox; },
|
|
412
|
+
"CB1": function() { return /* binding */ CB1; },
|
|
413
|
+
"CB2": function() { return /* binding */ CB2; },
|
|
414
|
+
"CB3": function() { return /* binding */ CB3; },
|
|
415
|
+
"CB4": function() { return /* binding */ CB4; },
|
|
416
|
+
"Canvg": function() { return /* binding */ Canvg; },
|
|
417
|
+
"CircleElement": function() { return /* binding */ CircleElement; },
|
|
418
|
+
"ClipPathElement": function() { return /* binding */ ClipPathElement; },
|
|
419
|
+
"DefsElement": function() { return /* binding */ DefsElement; },
|
|
420
|
+
"DescElement": function() { return /* binding */ DescElement; },
|
|
421
|
+
"Document": function() { return /* binding */ Document; },
|
|
422
|
+
"Element": function() { return /* binding */ Element; },
|
|
423
|
+
"EllipseElement": function() { return /* binding */ EllipseElement; },
|
|
424
|
+
"FeColorMatrixElement": function() { return /* binding */ FeColorMatrixElement; },
|
|
425
|
+
"FeCompositeElement": function() { return /* binding */ FeCompositeElement; },
|
|
426
|
+
"FeDropShadowElement": function() { return /* binding */ FeDropShadowElement; },
|
|
427
|
+
"FeGaussianBlurElement": function() { return /* binding */ FeGaussianBlurElement; },
|
|
428
|
+
"FeMorphologyElement": function() { return /* binding */ FeMorphologyElement; },
|
|
429
|
+
"FilterElement": function() { return /* binding */ FilterElement; },
|
|
430
|
+
"Font": function() { return /* binding */ Font; },
|
|
431
|
+
"FontElement": function() { return /* binding */ FontElement; },
|
|
432
|
+
"FontFaceElement": function() { return /* binding */ FontFaceElement; },
|
|
433
|
+
"GElement": function() { return /* binding */ GElement; },
|
|
434
|
+
"GlyphElement": function() { return /* binding */ GlyphElement; },
|
|
435
|
+
"GradientElement": function() { return /* binding */ GradientElement; },
|
|
436
|
+
"ImageElement": function() { return /* binding */ ImageElement; },
|
|
437
|
+
"LineElement": function() { return /* binding */ LineElement; },
|
|
438
|
+
"LinearGradientElement": function() { return /* binding */ LinearGradientElement; },
|
|
439
|
+
"MarkerElement": function() { return /* binding */ MarkerElement; },
|
|
440
|
+
"MaskElement": function() { return /* binding */ MaskElement; },
|
|
441
|
+
"Matrix": function() { return /* binding */ Matrix; },
|
|
442
|
+
"MissingGlyphElement": function() { return /* binding */ MissingGlyphElement; },
|
|
443
|
+
"Mouse": function() { return /* binding */ Mouse; },
|
|
444
|
+
"PSEUDO_ZERO": function() { return /* binding */ PSEUDO_ZERO; },
|
|
445
|
+
"Parser": function() { return /* binding */ Parser; },
|
|
446
|
+
"PathElement": function() { return /* binding */ PathElement; },
|
|
447
|
+
"PathParser": function() { return /* binding */ PathParser; },
|
|
448
|
+
"PatternElement": function() { return /* binding */ PatternElement; },
|
|
449
|
+
"Point": function() { return /* binding */ Point; },
|
|
450
|
+
"PolygonElement": function() { return /* binding */ PolygonElement; },
|
|
451
|
+
"PolylineElement": function() { return /* binding */ PolylineElement; },
|
|
452
|
+
"Property": function() { return /* binding */ Property; },
|
|
453
|
+
"QB1": function() { return /* binding */ QB1; },
|
|
454
|
+
"QB2": function() { return /* binding */ QB2; },
|
|
455
|
+
"QB3": function() { return /* binding */ QB3; },
|
|
456
|
+
"RadialGradientElement": function() { return /* binding */ RadialGradientElement; },
|
|
457
|
+
"RectElement": function() { return /* binding */ RectElement; },
|
|
458
|
+
"RenderedElement": function() { return /* binding */ RenderedElement; },
|
|
459
|
+
"Rotate": function() { return /* binding */ Rotate; },
|
|
460
|
+
"SVGElement": function() { return /* binding */ SVGElement; },
|
|
461
|
+
"SVGFontLoader": function() { return /* binding */ SVGFontLoader; },
|
|
462
|
+
"Scale": function() { return /* binding */ Scale; },
|
|
463
|
+
"Screen": function() { return /* binding */ Screen; },
|
|
464
|
+
"Skew": function() { return /* binding */ Skew; },
|
|
465
|
+
"SkewX": function() { return /* binding */ SkewX; },
|
|
466
|
+
"SkewY": function() { return /* binding */ SkewY; },
|
|
467
|
+
"StopElement": function() { return /* binding */ StopElement; },
|
|
468
|
+
"StyleElement": function() { return /* binding */ StyleElement; },
|
|
469
|
+
"SymbolElement": function() { return /* binding */ SymbolElement; },
|
|
470
|
+
"TRefElement": function() { return /* binding */ TRefElement; },
|
|
471
|
+
"TSpanElement": function() { return /* binding */ TSpanElement; },
|
|
472
|
+
"TextElement": function() { return /* binding */ TextElement; },
|
|
473
|
+
"TextPathElement": function() { return /* binding */ TextPathElement; },
|
|
474
|
+
"TitleElement": function() { return /* binding */ TitleElement; },
|
|
475
|
+
"Transform": function() { return /* binding */ Transform; },
|
|
476
|
+
"Translate": function() { return /* binding */ Translate; },
|
|
477
|
+
"UnknownElement": function() { return /* binding */ UnknownElement; },
|
|
478
|
+
"UseElement": function() { return /* binding */ UseElement; },
|
|
479
|
+
"ViewPort": function() { return /* binding */ ViewPort; },
|
|
480
|
+
"compressSpaces": function() { return /* binding */ compressSpaces; },
|
|
481
481
|
"default": function() { return /* binding */ Canvg; },
|
|
482
|
-
getSelectorSpecificity: function() { return /* binding */ getSelectorSpecificity; },
|
|
483
|
-
normalizeAttributeName: function() { return /* binding */ normalizeAttributeName; },
|
|
484
|
-
normalizeColor: function() { return /* binding */ normalizeColor; },
|
|
485
|
-
parseExternalUrl: function() { return /* binding */ parseExternalUrl; },
|
|
486
|
-
presets: function() { return /* binding */ index; },
|
|
487
|
-
toNumbers: function() { return /* binding */ toNumbers; },
|
|
488
|
-
trimLeft: function() { return /* binding */ trimLeft; },
|
|
489
|
-
trimRight: function() { return /* binding */ trimRight; },
|
|
490
|
-
vectorMagnitude: function() { return /* binding */ vectorMagnitude; },
|
|
491
|
-
vectorsAngle: function() { return /* binding */ vectorsAngle; },
|
|
492
|
-
vectorsRatio: function() { return /* binding */ vectorsRatio; }
|
|
482
|
+
"getSelectorSpecificity": function() { return /* binding */ getSelectorSpecificity; },
|
|
483
|
+
"normalizeAttributeName": function() { return /* binding */ normalizeAttributeName; },
|
|
484
|
+
"normalizeColor": function() { return /* binding */ normalizeColor; },
|
|
485
|
+
"parseExternalUrl": function() { return /* binding */ parseExternalUrl; },
|
|
486
|
+
"presets": function() { return /* binding */ index; },
|
|
487
|
+
"toNumbers": function() { return /* binding */ toNumbers; },
|
|
488
|
+
"trimLeft": function() { return /* binding */ trimLeft; },
|
|
489
|
+
"trimRight": function() { return /* binding */ trimRight; },
|
|
490
|
+
"vectorMagnitude": function() { return /* binding */ vectorMagnitude; },
|
|
491
|
+
"vectorsAngle": function() { return /* binding */ vectorsAngle; },
|
|
492
|
+
"vectorsRatio": function() { return /* binding */ vectorsRatio; }
|
|
493
493
|
});
|
|
494
494
|
|
|
495
495
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.promise.js
|