@opentiny/vue-divider 3.11.0-alpha.2 → 3.12.0
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/index.js +1 -1
- package/lib/pc.js +5 -5
- package/package.json +3 -3
package/lib/index.js
CHANGED
package/lib/pc.js
CHANGED
|
@@ -5,7 +5,7 @@ function _createForOfIteratorHelperLoose_tiny(o, allowArrayLike) {
|
|
|
5
5
|
var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
|
|
6
6
|
if (it)
|
|
7
7
|
return (it = it.call(o)).next.bind(it);
|
|
8
|
-
if (Array.isArray(o) || (it =
|
|
8
|
+
if (Array.isArray(o) || (it = _unsupportedIterableToArray_tiny(o)) || allowArrayLike && o && typeof o.length === "number") {
|
|
9
9
|
if (it)
|
|
10
10
|
o = it;
|
|
11
11
|
var i = 0;
|
|
@@ -17,20 +17,20 @@ function _createForOfIteratorHelperLoose_tiny(o, allowArrayLike) {
|
|
|
17
17
|
}
|
|
18
18
|
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
19
19
|
}
|
|
20
|
-
function
|
|
20
|
+
function _unsupportedIterableToArray_tiny(o, minLen) {
|
|
21
21
|
if (!o)
|
|
22
22
|
return;
|
|
23
23
|
if (typeof o === "string")
|
|
24
|
-
return
|
|
24
|
+
return _arrayLikeToArray_tiny(o, minLen);
|
|
25
25
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
26
26
|
if (n === "Object" && o.constructor)
|
|
27
27
|
n = o.constructor.name;
|
|
28
28
|
if (n === "Map" || n === "Set")
|
|
29
29
|
return Array.from(o);
|
|
30
30
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))
|
|
31
|
-
return
|
|
31
|
+
return _arrayLikeToArray_tiny(o, minLen);
|
|
32
32
|
}
|
|
33
|
-
function
|
|
33
|
+
function _arrayLikeToArray_tiny(arr, len) {
|
|
34
34
|
if (len == null || len > arr.length)
|
|
35
35
|
len = arr.length;
|
|
36
36
|
for (var i = 0, arr2 = new Array(len); i < len; i++)
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/vue-divider",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"type": "module",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@opentiny/vue-common": "~3.
|
|
11
|
-
"@opentiny/vue-renderless": "~3.
|
|
10
|
+
"@opentiny/vue-common": "~3.12.0",
|
|
11
|
+
"@opentiny/vue-renderless": "~3.12.0"
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"types": "index.d.ts"
|