@teselagen/ove 0.3.8 → 0.3.9
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/index.js +196864 -0
- package/index.mjs +196810 -0
- package/index.umd.js +19 -18
- package/package.json +10 -3
package/index.umd.js
CHANGED
|
@@ -57318,11 +57318,11 @@
|
|
|
57318
57318
|
).split(',');
|
|
57319
57319
|
|
|
57320
57320
|
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
|
57321
|
-
var $keys$
|
|
57321
|
+
var $keys$3 = _objectKeysInternal;
|
|
57322
57322
|
var enumBugKeys$1 = _enumBugKeys;
|
|
57323
57323
|
|
|
57324
57324
|
var _objectKeys = Object.keys || function keys(O) {
|
|
57325
|
-
return $keys$
|
|
57325
|
+
return $keys$3(O, enumBugKeys$1);
|
|
57326
57326
|
};
|
|
57327
57327
|
|
|
57328
57328
|
var _objectGops = {};
|
|
@@ -58094,24 +58094,17 @@
|
|
|
58094
58094
|
|
|
58095
58095
|
var _objectGopn = {};
|
|
58096
58096
|
|
|
58097
|
-
|
|
58098
|
-
|
|
58099
|
-
|
|
58100
|
-
if (hasRequired_objectGopn) return _objectGopn;
|
|
58101
|
-
hasRequired_objectGopn = 1;
|
|
58102
|
-
// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)
|
|
58103
|
-
var $keys = _objectKeysInternal;
|
|
58104
|
-
var hiddenKeys = _enumBugKeys.concat('length', 'prototype');
|
|
58097
|
+
// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)
|
|
58098
|
+
var $keys$2 = _objectKeysInternal;
|
|
58099
|
+
var hiddenKeys = _enumBugKeys.concat('length', 'prototype');
|
|
58105
58100
|
|
|
58106
|
-
|
|
58107
|
-
|
|
58108
|
-
|
|
58109
|
-
return _objectGopn;
|
|
58110
|
-
}
|
|
58101
|
+
_objectGopn.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
58102
|
+
return $keys$2(O, hiddenKeys);
|
|
58103
|
+
};
|
|
58111
58104
|
|
|
58112
58105
|
// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
|
|
58113
58106
|
var toIObject$2 = _toIobject;
|
|
58114
|
-
var gOPN$1 =
|
|
58107
|
+
var gOPN$1 = _objectGopn.f;
|
|
58115
58108
|
var toString$3 = {}.toString;
|
|
58116
58109
|
|
|
58117
58110
|
var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames
|
|
@@ -58298,7 +58291,7 @@
|
|
|
58298
58291
|
|
|
58299
58292
|
$GOPD.f = $getOwnPropertyDescriptor;
|
|
58300
58293
|
$DP.f = $defineProperty;
|
|
58301
|
-
|
|
58294
|
+
_objectGopn.f = gOPNExt.f = $getOwnPropertyNames;
|
|
58302
58295
|
require_objectPie().f = $propertyIsEnumerable;
|
|
58303
58296
|
$GOPS.f = $getOwnPropertySymbols;
|
|
58304
58297
|
|
|
@@ -188649,8 +188642,15 @@ double click --> edit`}`;
|
|
|
188649
188642
|
}
|
|
188650
188643
|
|
|
188651
188644
|
const name = "@teselagen/ove";
|
|
188652
|
-
const version = "0.3.
|
|
188645
|
+
const version = "0.3.8";
|
|
188653
188646
|
const main = "./src/index.js";
|
|
188647
|
+
const exports$1 = {
|
|
188648
|
+
".": {
|
|
188649
|
+
"import": "./index.mjs",
|
|
188650
|
+
require: "./index.js"
|
|
188651
|
+
},
|
|
188652
|
+
"./style.css": "./style.css"
|
|
188653
|
+
};
|
|
188654
188654
|
const volta = {
|
|
188655
188655
|
node: "16.20.2"
|
|
188656
188656
|
};
|
|
@@ -188658,6 +188658,7 @@ double click --> edit`}`;
|
|
|
188658
188658
|
name: name,
|
|
188659
188659
|
version: version,
|
|
188660
188660
|
main: main,
|
|
188661
|
+
exports: exports$1,
|
|
188661
188662
|
volta: volta
|
|
188662
188663
|
};
|
|
188663
188664
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teselagen/ove",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
4
4
|
"main": "./src/index.js",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"import": "./index.mjs",
|
|
8
|
+
"require": "./index.js"
|
|
9
|
+
},
|
|
10
|
+
"./style.css": "./style.css"
|
|
11
|
+
},
|
|
5
12
|
"volta": {
|
|
6
13
|
"node": "16.20.2"
|
|
7
14
|
},
|
|
@@ -37,8 +44,8 @@
|
|
|
37
44
|
"dom-to-image": "^2.6.0",
|
|
38
45
|
"downloadjs": "^1.4.7",
|
|
39
46
|
"escape-string-regexp": "1.0.5",
|
|
40
|
-
"fast-xml-parser": "4.2.
|
|
41
|
-
"fflate": "0.
|
|
47
|
+
"fast-xml-parser": "4.2.7",
|
|
48
|
+
"fflate": "0.8.0",
|
|
42
49
|
"file-saver": "^2.0.5",
|
|
43
50
|
"fuse.js": "^6.6.2",
|
|
44
51
|
"fuzzysearch": "^1.0.3",
|