@fkui/vue-labs 6.5.0 → 6.7.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/dist/cjs/index.cjs.js +109 -32
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/index.esm.js +109 -32
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/tsdoc-metadata.json +1 -1
- package/package.json +6 -6
package/dist/cjs/index.cjs.js
CHANGED
|
@@ -419,10 +419,10 @@ function requireSharedStore() {
|
|
|
419
419
|
var SHARED = "__core-js_shared__";
|
|
420
420
|
var store = sharedStore.exports = globalThis2[SHARED] || defineGlobalProperty2(SHARED, {});
|
|
421
421
|
(store.versions || (store.versions = [])).push({
|
|
422
|
-
version: "3.
|
|
422
|
+
version: "3.42.0",
|
|
423
423
|
mode: IS_PURE ? "pure" : "global",
|
|
424
424
|
copyright: "© 2014-2025 Denis Pushkarev (zloirock.ru)",
|
|
425
|
-
license: "https://github.com/zloirock/core-js/blob/v3.
|
|
425
|
+
license: "https://github.com/zloirock/core-js/blob/v3.42.0/LICENSE",
|
|
426
426
|
source: "https://github.com/zloirock/core-js"
|
|
427
427
|
});
|
|
428
428
|
return sharedStore.exports;
|
|
@@ -1418,23 +1418,62 @@ function requireGetIteratorDirect() {
|
|
|
1418
1418
|
};
|
|
1419
1419
|
return getIteratorDirect;
|
|
1420
1420
|
}
|
|
1421
|
+
var iteratorHelperWithoutClosingOnEarlyError;
|
|
1422
|
+
var hasRequiredIteratorHelperWithoutClosingOnEarlyError;
|
|
1423
|
+
function requireIteratorHelperWithoutClosingOnEarlyError() {
|
|
1424
|
+
if (hasRequiredIteratorHelperWithoutClosingOnEarlyError) return iteratorHelperWithoutClosingOnEarlyError;
|
|
1425
|
+
hasRequiredIteratorHelperWithoutClosingOnEarlyError = 1;
|
|
1426
|
+
var globalThis2 = requireGlobalThis();
|
|
1427
|
+
iteratorHelperWithoutClosingOnEarlyError = function(METHOD_NAME, ExpectedError) {
|
|
1428
|
+
var Iterator = globalThis2.Iterator;
|
|
1429
|
+
var IteratorPrototype = Iterator && Iterator.prototype;
|
|
1430
|
+
var method = IteratorPrototype && IteratorPrototype[METHOD_NAME];
|
|
1431
|
+
var CLOSED = false;
|
|
1432
|
+
if (method) try {
|
|
1433
|
+
method.call({
|
|
1434
|
+
next: function() {
|
|
1435
|
+
return {
|
|
1436
|
+
done: true
|
|
1437
|
+
};
|
|
1438
|
+
},
|
|
1439
|
+
"return": function() {
|
|
1440
|
+
CLOSED = true;
|
|
1441
|
+
}
|
|
1442
|
+
}, -1);
|
|
1443
|
+
} catch (error) {
|
|
1444
|
+
if (!(error instanceof ExpectedError)) CLOSED = false;
|
|
1445
|
+
}
|
|
1446
|
+
if (!CLOSED) return method;
|
|
1447
|
+
};
|
|
1448
|
+
return iteratorHelperWithoutClosingOnEarlyError;
|
|
1449
|
+
}
|
|
1421
1450
|
var hasRequiredEs_iterator_forEach;
|
|
1422
1451
|
function requireEs_iterator_forEach() {
|
|
1423
1452
|
if (hasRequiredEs_iterator_forEach) return es_iterator_forEach;
|
|
1424
1453
|
hasRequiredEs_iterator_forEach = 1;
|
|
1425
1454
|
var $ = require_export();
|
|
1455
|
+
var call = requireFunctionCall();
|
|
1426
1456
|
var iterate2 = requireIterate();
|
|
1427
1457
|
var aCallable2 = requireACallable();
|
|
1428
1458
|
var anObject2 = requireAnObject();
|
|
1429
1459
|
var getIteratorDirect2 = requireGetIteratorDirect();
|
|
1460
|
+
var iteratorClose2 = requireIteratorClose();
|
|
1461
|
+
var iteratorHelperWithoutClosingOnEarlyError2 = requireIteratorHelperWithoutClosingOnEarlyError();
|
|
1462
|
+
var forEachWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError2("forEach", TypeError);
|
|
1430
1463
|
$({
|
|
1431
1464
|
target: "Iterator",
|
|
1432
1465
|
proto: true,
|
|
1433
|
-
real: true
|
|
1466
|
+
real: true,
|
|
1467
|
+
forced: forEachWithoutClosingOnEarlyError
|
|
1434
1468
|
}, {
|
|
1435
1469
|
forEach: function forEach(fn) {
|
|
1436
1470
|
anObject2(this);
|
|
1437
|
-
|
|
1471
|
+
try {
|
|
1472
|
+
aCallable2(fn);
|
|
1473
|
+
} catch (error) {
|
|
1474
|
+
iteratorClose2(this, "throw", error);
|
|
1475
|
+
}
|
|
1476
|
+
if (forEachWithoutClosingOnEarlyError) return call(forEachWithoutClosingOnEarlyError, this, fn);
|
|
1438
1477
|
var record = getIteratorDirect2(this);
|
|
1439
1478
|
var counter = 0;
|
|
1440
1479
|
iterate2(record, function(value) {
|
|
@@ -1871,6 +1910,9 @@ function requireEs_iterator_filter() {
|
|
|
1871
1910
|
var createIteratorProxy = requireIteratorCreateProxy();
|
|
1872
1911
|
var callWithSafeIterationClosing2 = requireCallWithSafeIterationClosing();
|
|
1873
1912
|
var IS_PURE = requireIsPure();
|
|
1913
|
+
var iteratorClose2 = requireIteratorClose();
|
|
1914
|
+
var iteratorHelperWithoutClosingOnEarlyError2 = requireIteratorHelperWithoutClosingOnEarlyError();
|
|
1915
|
+
var filterWithoutClosingOnEarlyError = !IS_PURE && iteratorHelperWithoutClosingOnEarlyError2("filter", TypeError);
|
|
1874
1916
|
var IteratorProxy = createIteratorProxy(function() {
|
|
1875
1917
|
var iterator = this.iterator;
|
|
1876
1918
|
var predicate = this.predicate;
|
|
@@ -1888,11 +1930,16 @@ function requireEs_iterator_filter() {
|
|
|
1888
1930
|
target: "Iterator",
|
|
1889
1931
|
proto: true,
|
|
1890
1932
|
real: true,
|
|
1891
|
-
forced: IS_PURE
|
|
1933
|
+
forced: IS_PURE || filterWithoutClosingOnEarlyError
|
|
1892
1934
|
}, {
|
|
1893
1935
|
filter: function filter(predicate) {
|
|
1894
1936
|
anObject2(this);
|
|
1895
|
-
|
|
1937
|
+
try {
|
|
1938
|
+
aCallable2(predicate);
|
|
1939
|
+
} catch (error) {
|
|
1940
|
+
iteratorClose2(this, "throw", error);
|
|
1941
|
+
}
|
|
1942
|
+
if (filterWithoutClosingOnEarlyError) return call(filterWithoutClosingOnEarlyError, this, predicate);
|
|
1896
1943
|
return new IteratorProxy(getIteratorDirect2(this), {
|
|
1897
1944
|
predicate
|
|
1898
1945
|
});
|
|
@@ -1902,51 +1949,64 @@ function requireEs_iterator_filter() {
|
|
|
1902
1949
|
}
|
|
1903
1950
|
requireEs_iterator_filter();
|
|
1904
1951
|
var es_iterator_map = {};
|
|
1905
|
-
var
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1952
|
+
var hasRequiredEs_iterator_map;
|
|
1953
|
+
function requireEs_iterator_map() {
|
|
1954
|
+
if (hasRequiredEs_iterator_map) return es_iterator_map;
|
|
1955
|
+
hasRequiredEs_iterator_map = 1;
|
|
1956
|
+
var $ = require_export();
|
|
1910
1957
|
var call = requireFunctionCall();
|
|
1911
1958
|
var aCallable2 = requireACallable();
|
|
1912
1959
|
var anObject2 = requireAnObject();
|
|
1913
1960
|
var getIteratorDirect2 = requireGetIteratorDirect();
|
|
1914
1961
|
var createIteratorProxy = requireIteratorCreateProxy();
|
|
1915
1962
|
var callWithSafeIterationClosing2 = requireCallWithSafeIterationClosing();
|
|
1963
|
+
var iteratorClose2 = requireIteratorClose();
|
|
1964
|
+
var iteratorHelperWithoutClosingOnEarlyError2 = requireIteratorHelperWithoutClosingOnEarlyError();
|
|
1965
|
+
var IS_PURE = requireIsPure();
|
|
1966
|
+
var mapWithoutClosingOnEarlyError = !IS_PURE && iteratorHelperWithoutClosingOnEarlyError2("map", TypeError);
|
|
1916
1967
|
var IteratorProxy = createIteratorProxy(function() {
|
|
1917
1968
|
var iterator = this.iterator;
|
|
1918
1969
|
var result = anObject2(call(this.next, iterator));
|
|
1919
1970
|
var done = this.done = !!result.done;
|
|
1920
1971
|
if (!done) return callWithSafeIterationClosing2(iterator, this.mapper, [result.value, this.counter++], true);
|
|
1921
1972
|
});
|
|
1922
|
-
iteratorMap = function map(mapper) {
|
|
1923
|
-
anObject2(this);
|
|
1924
|
-
aCallable2(mapper);
|
|
1925
|
-
return new IteratorProxy(getIteratorDirect2(this), {
|
|
1926
|
-
mapper
|
|
1927
|
-
});
|
|
1928
|
-
};
|
|
1929
|
-
return iteratorMap;
|
|
1930
|
-
}
|
|
1931
|
-
var hasRequiredEs_iterator_map;
|
|
1932
|
-
function requireEs_iterator_map() {
|
|
1933
|
-
if (hasRequiredEs_iterator_map) return es_iterator_map;
|
|
1934
|
-
hasRequiredEs_iterator_map = 1;
|
|
1935
|
-
var $ = require_export();
|
|
1936
|
-
var map = requireIteratorMap();
|
|
1937
|
-
var IS_PURE = requireIsPure();
|
|
1938
1973
|
$({
|
|
1939
1974
|
target: "Iterator",
|
|
1940
1975
|
proto: true,
|
|
1941
1976
|
real: true,
|
|
1942
|
-
forced: IS_PURE
|
|
1977
|
+
forced: IS_PURE || mapWithoutClosingOnEarlyError
|
|
1943
1978
|
}, {
|
|
1944
|
-
map
|
|
1979
|
+
map: function map(mapper) {
|
|
1980
|
+
anObject2(this);
|
|
1981
|
+
try {
|
|
1982
|
+
aCallable2(mapper);
|
|
1983
|
+
} catch (error) {
|
|
1984
|
+
iteratorClose2(this, "throw", error);
|
|
1985
|
+
}
|
|
1986
|
+
if (mapWithoutClosingOnEarlyError) return call(mapWithoutClosingOnEarlyError, this, mapper);
|
|
1987
|
+
return new IteratorProxy(getIteratorDirect2(this), {
|
|
1988
|
+
mapper
|
|
1989
|
+
});
|
|
1990
|
+
}
|
|
1945
1991
|
});
|
|
1946
1992
|
return es_iterator_map;
|
|
1947
1993
|
}
|
|
1948
1994
|
requireEs_iterator_map();
|
|
1949
1995
|
var es_iterator_reduce = {};
|
|
1996
|
+
var functionApply;
|
|
1997
|
+
var hasRequiredFunctionApply;
|
|
1998
|
+
function requireFunctionApply() {
|
|
1999
|
+
if (hasRequiredFunctionApply) return functionApply;
|
|
2000
|
+
hasRequiredFunctionApply = 1;
|
|
2001
|
+
var NATIVE_BIND = requireFunctionBindNative();
|
|
2002
|
+
var FunctionPrototype = Function.prototype;
|
|
2003
|
+
var apply = FunctionPrototype.apply;
|
|
2004
|
+
var call = FunctionPrototype.call;
|
|
2005
|
+
functionApply = typeof Reflect == "object" && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function() {
|
|
2006
|
+
return call.apply(apply, arguments);
|
|
2007
|
+
});
|
|
2008
|
+
return functionApply;
|
|
2009
|
+
}
|
|
1950
2010
|
var hasRequiredEs_iterator_reduce;
|
|
1951
2011
|
function requireEs_iterator_reduce() {
|
|
1952
2012
|
if (hasRequiredEs_iterator_reduce) return es_iterator_reduce;
|
|
@@ -1956,18 +2016,35 @@ function requireEs_iterator_reduce() {
|
|
|
1956
2016
|
var aCallable2 = requireACallable();
|
|
1957
2017
|
var anObject2 = requireAnObject();
|
|
1958
2018
|
var getIteratorDirect2 = requireGetIteratorDirect();
|
|
2019
|
+
var iteratorClose2 = requireIteratorClose();
|
|
2020
|
+
var iteratorHelperWithoutClosingOnEarlyError2 = requireIteratorHelperWithoutClosingOnEarlyError();
|
|
2021
|
+
var apply = requireFunctionApply();
|
|
2022
|
+
var fails2 = requireFails();
|
|
1959
2023
|
var $TypeError = TypeError;
|
|
2024
|
+
var FAILS_ON_INITIAL_UNDEFINED = fails2(function() {
|
|
2025
|
+
[].keys().reduce(function() {
|
|
2026
|
+
}, void 0);
|
|
2027
|
+
});
|
|
2028
|
+
var reduceWithoutClosingOnEarlyError = !FAILS_ON_INITIAL_UNDEFINED && iteratorHelperWithoutClosingOnEarlyError2("reduce", $TypeError);
|
|
1960
2029
|
$({
|
|
1961
2030
|
target: "Iterator",
|
|
1962
2031
|
proto: true,
|
|
1963
|
-
real: true
|
|
2032
|
+
real: true,
|
|
2033
|
+
forced: FAILS_ON_INITIAL_UNDEFINED || reduceWithoutClosingOnEarlyError
|
|
1964
2034
|
}, {
|
|
1965
2035
|
reduce: function reduce(reducer) {
|
|
1966
2036
|
anObject2(this);
|
|
1967
|
-
|
|
1968
|
-
|
|
2037
|
+
try {
|
|
2038
|
+
aCallable2(reducer);
|
|
2039
|
+
} catch (error) {
|
|
2040
|
+
iteratorClose2(this, "throw", error);
|
|
2041
|
+
}
|
|
1969
2042
|
var noInitial = arguments.length < 2;
|
|
1970
2043
|
var accumulator = noInitial ? void 0 : arguments[1];
|
|
2044
|
+
if (reduceWithoutClosingOnEarlyError) {
|
|
2045
|
+
return apply(reduceWithoutClosingOnEarlyError, this, noInitial ? [reducer] : [reducer, accumulator]);
|
|
2046
|
+
}
|
|
2047
|
+
var record = getIteratorDirect2(this);
|
|
1971
2048
|
var counter = 0;
|
|
1972
2049
|
iterate2(record, function(value) {
|
|
1973
2050
|
if (noInitial) {
|