android: add requestPermissions API

This commit is contained in:
pengfei.zhou 2021-08-05 15:48:05 +08:00 committed by osborn
parent 9cb8df5372
commit 57cfdd38e1
9 changed files with 111 additions and 256 deletions

View File

@ -18,6 +18,7 @@ package pub.doric;
import android.content.Intent; import android.content.Intent;
import android.os.Bundle; import android.os.Bundle;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.app.AppCompatActivity;
@ -70,4 +71,13 @@ public class DoricActivity extends AppCompatActivity {
mDoricFragment.onActivityResult(requestCode, resultCode, data); mDoricFragment.onActivityResult(requestCode, resultCode, data);
} }
} }
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
int requestIndex = requestCode >> 16;
if (requestIndex == 0 && mDoricFragment != null) {
mDoricFragment.onRequestPermissionsResult(requestCode, permissions, grantResults);
}
}
} }

View File

@ -20,6 +20,7 @@ import android.content.Context;
import android.content.Intent; import android.content.Intent;
import android.text.TextUtils; import android.text.TextUtils;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment; import androidx.fragment.app.Fragment;
import com.github.pengfeizhou.jscore.JSDecoder; import com.github.pengfeizhou.jscore.JSDecoder;
@ -310,4 +311,25 @@ public class DoricContext {
public void onEnvChanged() { public void onEnvChanged() {
callEntity(DoricConstant.DORIC_ENTITY_ENV_CHANGE); callEntity(DoricConstant.DORIC_ENTITY_ENV_CHANGE);
} }
/**
* Use this to take effect of {@link #onRequestPermissionsResult(int, String[], int[])}
*/
public void requestPermissions(@NonNull String[] permissions, int requestCode) {
if (doricNavigator instanceof Fragment) {
((Fragment) doricNavigator).requestPermissions(permissions, requestCode);
}
}
/**
* To use this,
* you should use {@link #requestPermissions(String[], int)}.
*/
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
for (DoricJavaPlugin javaPlugin : mPluginMap.values()) {
if (javaPlugin != null) {
javaPlugin.onRequestPermissionsResult(requestCode, permissions, grantResults);
}
}
}
} }

View File

@ -106,4 +106,15 @@ public class DoricFragment extends Fragment {
} }
} }
} }
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
for (Fragment fragment : getChildFragmentManager().getFragments()) {
fragment.onRequestPermissionsResult(requestCode, permissions, grantResults);
for (Fragment childFragment : fragment.getChildFragmentManager().getFragments()) {
childFragment.onRequestPermissionsResult(requestCode, permissions, grantResults);
}
}
}
} }

View File

@ -131,6 +131,12 @@ public class DoricPanel extends FrameLayout implements LifecycleObserver {
} }
} }
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
if (mDoricContext != null) {
mDoricContext.onRequestPermissionsResult(requestCode, permissions, grantResults);
}
}
public interface FrameChangedListener { public interface FrameChangedListener {
void onFrameChanged(int width, int height); void onFrameChanged(int width, int height);
} }

View File

@ -231,4 +231,9 @@ public class DoricPanelFragment extends Fragment implements IDoricNavigator {
public void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) { public void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
doricPanel.onActivityResult(requestCode, resultCode, data); doricPanel.onActivityResult(requestCode, resultCode, data);
} }
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
doricPanel.onRequestPermissionsResult(requestCode, permissions, grantResults);
}
} }

View File

@ -40,4 +40,11 @@ public abstract class DoricJavaPlugin extends DoricContextHolder {
public void onActivityResult(int requestCode, int resultCode, Intent data) { public void onActivityResult(int requestCode, int resultCode, Intent data) {
} }
/**
* Called when use {@link DoricContext#requestPermissions(String[], int)}
*/
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
}
} }

View File

@ -1677,7 +1677,7 @@ var doric = (function (exports) {
var hasOwnProperty = {}.hasOwnProperty; var hasOwnProperty = {}.hasOwnProperty;
var has$1 = Object.hasOwn || function hasOwn(it, key) { var has$1 = function hasOwn(it, key) {
return hasOwnProperty.call(toObject(it), key); return hasOwnProperty.call(toObject(it), key);
}; };
@ -1764,7 +1764,7 @@ var doric = (function (exports) {
var functionToString = Function.toString; var functionToString = Function.toString;
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper // this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper
if (typeof sharedStore.inspectSource != 'function') { if (typeof sharedStore.inspectSource != 'function') {
sharedStore.inspectSource = function (it) { sharedStore.inspectSource = function (it) {
return functionToString.call(it); return functionToString.call(it);
@ -1783,7 +1783,7 @@ var doric = (function (exports) {
(module.exports = function (key, value) { (module.exports = function (key, value) {
return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {}); return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
})('versions', []).push({ })('versions', []).push({
version: '3.14.0', version: '3.12.1',
mode: 'global', mode: 'global',
copyright: '© 2021 Denis Pushkarev (zloirock.ru)' copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
}); });
@ -1911,12 +1911,12 @@ var doric = (function (exports) {
}; };
var ceil$2 = Math.ceil; var ceil$2 = Math.ceil;
var floor$a = Math.floor; var floor$9 = Math.floor;
// `ToInteger` abstract operation // `ToInteger` abstract operation
// https://tc39.es/ecma262/#sec-tointeger // https://tc39.es/ecma262/#sec-tointeger
var toInteger = function (argument) { var toInteger = function (argument) {
return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor$a : ceil$2)(argument); return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor$9 : ceil$2)(argument);
}; };
var min$9 = Math.min; var min$9 = Math.min;
@ -2131,10 +2131,8 @@ var doric = (function (exports) {
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () { var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
var symbol = Symbol(); return !String(Symbol()) ||
// Chrome 38 Symbol has incorrect toString conversion // Chrome 38 Symbol has incorrect toString conversion
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
!Symbol.sham && engineV8Version && engineV8Version < 41; !Symbol.sham && engineV8Version && engineV8Version < 41;
}); });
@ -3288,6 +3286,7 @@ var doric = (function (exports) {
var callWithSafeIterationClosing = function (iterator, fn, value, ENTRIES) { var callWithSafeIterationClosing = function (iterator, fn, value, ENTRIES) {
try { try {
return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value); return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
// 7.4.6 IteratorClose(iterator, completion)
} catch (error) { } catch (error) {
iteratorClose(iterator); iteratorClose(iterator);
throw error; throw error;
@ -3444,8 +3443,7 @@ var doric = (function (exports) {
if (NEW_ITERATOR_PROTOTYPE) { IteratorPrototype$3 = {}; } if (NEW_ITERATOR_PROTOTYPE) { IteratorPrototype$3 = {}; }
// `%IteratorPrototype%[@@iterator]()` method // 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
if (!has$1(IteratorPrototype$3, ITERATOR$5)) { if (!has$1(IteratorPrototype$3, ITERATOR$5)) {
createNonEnumerableProperty(IteratorPrototype$3, ITERATOR$5, returnThis$2); createNonEnumerableProperty(IteratorPrototype$3, ITERATOR$5, returnThis$2);
} }
@ -3519,7 +3517,7 @@ var doric = (function (exports) {
} }
} }
// fix Array.prototype.{ values, @@iterator }.name in V8 / FF // fix Array#{values, @@iterator}.name in V8 / FF
if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) { if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
INCORRECT_VALUES_NAME = true; INCORRECT_VALUES_NAME = true;
defaultIterator = function values() { return nativeIterator.call(this); }; defaultIterator = function values() { return nativeIterator.call(this); };
@ -3816,64 +3814,8 @@ var doric = (function (exports) {
} }
}); });
// TODO: use something more complex like timsort?
var floor$9 = Math.floor;
var mergeSort = function (array, comparefn) {
var length = array.length;
var middle = floor$9(length / 2);
return length < 8 ? insertionSort(array, comparefn) : merge(
mergeSort(array.slice(0, middle), comparefn),
mergeSort(array.slice(middle), comparefn),
comparefn
);
};
var insertionSort = function (array, comparefn) {
var length = array.length;
var i = 1;
var element, j;
while (i < length) {
j = i;
element = array[i];
while (j && comparefn(array[j - 1], element) > 0) {
array[j] = array[--j];
}
if (j !== i++) { array[j] = element; }
} return array;
};
var merge = function (left, right, comparefn) {
var llength = left.length;
var rlength = right.length;
var lindex = 0;
var rindex = 0;
var result = [];
while (lindex < llength || rindex < rlength) {
if (lindex < llength && rindex < rlength) {
result.push(comparefn(left[lindex], right[rindex]) <= 0 ? left[lindex++] : right[rindex++]);
} else {
result.push(lindex < llength ? left[lindex++] : right[rindex++]);
}
} return result;
};
var arraySort = mergeSort;
var firefox = engineUserAgent.match(/firefox\/(\d+)/i);
var engineFfVersion = !!firefox && +firefox[1];
var engineIsIeOrEdge = /MSIE|Trident/.test(engineUserAgent);
var webkit = engineUserAgent.match(/AppleWebKit\/(\d+)\./);
var engineWebkitVersion = !!webkit && +webkit[1];
var test = []; var test = [];
var nativeSort$1 = test.sort; var nativeSort = test.sort;
// IE8- // IE8-
var FAILS_ON_UNDEFINED = fails(function () { var FAILS_ON_UNDEFINED = fails(function () {
@ -3886,78 +3828,15 @@ var doric = (function (exports) {
// Old WebKit // Old WebKit
var STRICT_METHOD = arrayMethodIsStrict('sort'); var STRICT_METHOD = arrayMethodIsStrict('sort');
var STABLE_SORT$1 = !fails(function () { var FORCED$l = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD;
// feature detection can be too slow, so check engines versions
if (engineV8Version) { return engineV8Version < 70; }
if (engineFfVersion && engineFfVersion > 3) { return; }
if (engineIsIeOrEdge) { return true; }
if (engineWebkitVersion) { return engineWebkitVersion < 603; }
var result = '';
var code, chr, value, index;
// generate an array with more 512 elements (Chakra and old V8 fails only in this case)
for (code = 65; code < 76; code++) {
chr = String.fromCharCode(code);
switch (code) {
case 66: case 69: case 70: case 72: value = 3; break;
case 68: case 71: value = 4; break;
default: value = 2;
}
for (index = 0; index < 47; index++) {
test.push({ k: chr + index, v: value });
}
}
test.sort(function (a, b) { return b.v - a.v; });
for (index = 0; index < test.length; index++) {
chr = test[index].k.charAt(0);
if (result.charAt(result.length - 1) !== chr) { result += chr; }
}
return result !== 'DGBEFHACIJK';
});
var FORCED$l = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD || !STABLE_SORT$1;
var getSortCompare$1 = function (comparefn) {
return function (x, y) {
if (y === undefined) { return -1; }
if (x === undefined) { return 1; }
if (comparefn !== undefined) { return +comparefn(x, y) || 0; }
return String(x) > String(y) ? 1 : -1;
};
};
// `Array.prototype.sort` method // `Array.prototype.sort` method
// https://tc39.es/ecma262/#sec-array.prototype.sort // https://tc39.es/ecma262/#sec-array.prototype.sort
_export({ target: 'Array', proto: true, forced: FORCED$l }, { _export({ target: 'Array', proto: true, forced: FORCED$l }, {
sort: function sort(comparefn) { sort: function sort(comparefn) {
if (comparefn !== undefined) { aFunction(comparefn); } return comparefn === undefined
? nativeSort.call(toObject(this))
var array = toObject(this); : nativeSort.call(toObject(this), aFunction(comparefn));
if (STABLE_SORT$1) { return comparefn === undefined ? nativeSort$1.call(array) : nativeSort$1.call(array, comparefn); }
var items = [];
var arrayLength = toLength(array.length);
var itemsLength, index;
for (index = 0; index < arrayLength; index++) {
if (index in array) { items.push(array[index]); }
}
items = arraySort(items, getSortCompare$1(comparefn));
itemsLength = items.length;
index = 0;
while (index < itemsLength) { array[index] = items[index++]; }
while (index < arrayLength) { delete array[index++]; }
return array;
} }
}); });
@ -4707,8 +4586,6 @@ var doric = (function (exports) {
} }
}); });
// `Date.prototype[@@toPrimitive](hint)` method implementation
// https://tc39.es/ecma262/#sec-date.prototype-@@toprimitive
var dateToPrimitive = function (hint) { var dateToPrimitive = function (hint) {
if (hint !== 'string' && hint !== 'number' && hint !== 'default') { if (hint !== 'string' && hint !== 'number' && hint !== 'default') {
throw TypeError('Incorrect hint'); throw TypeError('Incorrect hint');
@ -5091,9 +4968,8 @@ var doric = (function (exports) {
}; };
redefineAll(C.prototype, { redefineAll(C.prototype, {
// `{ Map, Set }.prototype.clear()` methods // 23.1.3.1 Map.prototype.clear()
// https://tc39.es/ecma262/#sec-map.prototype.clear // 23.2.3.2 Set.prototype.clear()
// https://tc39.es/ecma262/#sec-set.prototype.clear
clear: function clear() { clear: function clear() {
var that = this; var that = this;
var state = getInternalState(that); var state = getInternalState(that);
@ -5109,9 +4985,8 @@ var doric = (function (exports) {
if (descriptors) { state.size = 0; } if (descriptors) { state.size = 0; }
else { that.size = 0; } else { that.size = 0; }
}, },
// `{ Map, Set }.prototype.delete(key)` methods // 23.1.3.3 Map.prototype.delete(key)
// https://tc39.es/ecma262/#sec-map.prototype.delete // 23.2.3.4 Set.prototype.delete(value)
// https://tc39.es/ecma262/#sec-set.prototype.delete
'delete': function (key) { 'delete': function (key) {
var that = this; var that = this;
var state = getInternalState(that); var state = getInternalState(that);
@ -5129,9 +5004,8 @@ var doric = (function (exports) {
else { that.size--; } else { that.size--; }
} return !!entry; } return !!entry;
}, },
// `{ Map, Set }.prototype.forEach(callbackfn, thisArg = undefined)` methods // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)
// https://tc39.es/ecma262/#sec-map.prototype.foreach // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)
// https://tc39.es/ecma262/#sec-set.prototype.foreach
forEach: function forEach(callbackfn /* , that = undefined */) { forEach: function forEach(callbackfn /* , that = undefined */) {
var state = getInternalState(this); var state = getInternalState(this);
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3); var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
@ -5142,29 +5016,25 @@ var doric = (function (exports) {
while (entry && entry.removed) { entry = entry.previous; } while (entry && entry.removed) { entry = entry.previous; }
} }
}, },
// `{ Map, Set}.prototype.has(key)` methods // 23.1.3.7 Map.prototype.has(key)
// https://tc39.es/ecma262/#sec-map.prototype.has // 23.2.3.7 Set.prototype.has(value)
// https://tc39.es/ecma262/#sec-set.prototype.has
has: function has(key) { has: function has(key) {
return !!getEntry(this, key); return !!getEntry(this, key);
} }
}); });
redefineAll(C.prototype, IS_MAP ? { redefineAll(C.prototype, IS_MAP ? {
// `Map.prototype.get(key)` method // 23.1.3.6 Map.prototype.get(key)
// https://tc39.es/ecma262/#sec-map.prototype.get
get: function get(key) { get: function get(key) {
var entry = getEntry(this, key); var entry = getEntry(this, key);
return entry && entry.value; return entry && entry.value;
}, },
// `Map.prototype.set(key, value)` method // 23.1.3.9 Map.prototype.set(key, value)
// https://tc39.es/ecma262/#sec-map.prototype.set
set: function set(key, value) { set: function set(key, value) {
return define(this, key === 0 ? 0 : key, value); return define(this, key === 0 ? 0 : key, value);
} }
} : { } : {
// `Set.prototype.add(value)` method // 23.2.3.1 Set.prototype.add(value)
// https://tc39.es/ecma262/#sec-set.prototype.add
add: function add(value) { add: function add(value) {
return define(this, value = value === 0 ? 0 : value, value); return define(this, value = value === 0 ? 0 : value, value);
} }
@ -5180,15 +5050,8 @@ var doric = (function (exports) {
var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator'; var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';
var getInternalCollectionState = internalStateGetterFor$1(CONSTRUCTOR_NAME); var getInternalCollectionState = internalStateGetterFor$1(CONSTRUCTOR_NAME);
var getInternalIteratorState = internalStateGetterFor$1(ITERATOR_NAME); var getInternalIteratorState = internalStateGetterFor$1(ITERATOR_NAME);
// `{ Map, Set }.prototype.{ keys, values, entries, @@iterator }()` methods // add .keys, .values, .entries, [@@iterator]
// https://tc39.es/ecma262/#sec-map.prototype.entries // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11
// https://tc39.es/ecma262/#sec-map.prototype.keys
// https://tc39.es/ecma262/#sec-map.prototype.values
// https://tc39.es/ecma262/#sec-map.prototype-@@iterator
// https://tc39.es/ecma262/#sec-set.prototype.entries
// https://tc39.es/ecma262/#sec-set.prototype.keys
// https://tc39.es/ecma262/#sec-set.prototype.values
// https://tc39.es/ecma262/#sec-set.prototype-@@iterator
defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) { defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {
setInternalState$d(this, { setInternalState$d(this, {
type: ITERATOR_NAME, type: ITERATOR_NAME,
@ -5215,9 +5078,7 @@ var doric = (function (exports) {
return { value: [entry.key, entry.value], done: false }; return { value: [entry.key, entry.value], done: false };
}, IS_MAP ? 'entries' : 'values', !IS_MAP, true); }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);
// `{ Map, Set }.prototype[@@species]` accessors // add [@@species], 23.1.2.2, 23.2.2.2
// https://tc39.es/ecma262/#sec-get-map-@@species
// https://tc39.es/ecma262/#sec-get-set-@@species
setSpecies(CONSTRUCTOR_NAME); setSpecies(CONSTRUCTOR_NAME);
} }
}; };
@ -5934,9 +5795,6 @@ var doric = (function (exports) {
// Forced replacement object prototype accessors methods // Forced replacement object prototype accessors methods
var objectPrototypeAccessorsForced = !fails(function () { var objectPrototypeAccessorsForced = !fails(function () {
// This feature detection crashes old WebKit
// https://github.com/zloirock/core-js/issues/232
if (engineWebkitVersion && engineWebkitVersion < 535) { return; }
var key = Math.random(); var key = Math.random();
// In FF throws only define methods // In FF throws only define methods
// eslint-disable-next-line no-undef, no-useless-call -- required for testing // eslint-disable-next-line no-undef, no-useless-call -- required for testing
@ -6462,8 +6320,7 @@ var doric = (function (exports) {
this.reject = aFunction(reject); this.reject = aFunction(reject);
}; };
// `NewPromiseCapability` abstract operation // 25.4.1.5 NewPromiseCapability(C)
// https://tc39.es/ecma262/#sec-newpromisecapability
var f = function (C) { var f = function (C) {
return new PromiseCapability(C); return new PromiseCapability(C);
}; };
@ -8041,7 +7898,6 @@ var doric = (function (exports) {
var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g; var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g; var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
// `GetSubstitution` abstract operation
// https://tc39.es/ecma262/#sec-getsubstitution // https://tc39.es/ecma262/#sec-getsubstitution
var getSubstitution = function (matched, str, position, captures, namedCaptures, replacement) { var getSubstitution = function (matched, str, position, captures, namedCaptures, replacement) {
var tailPos = position + matched.length; var tailPos = position + matched.length;
@ -8464,7 +8320,7 @@ var doric = (function (exports) {
var quot = /"/g; var quot = /"/g;
// `CreateHTML` abstract operation // B.2.3.2.1 CreateHTML(string, tag, attribute, value)
// https://tc39.es/ecma262/#sec-createhtml // https://tc39.es/ecma262/#sec-createhtml
var createHtml = function (string, tag, attribute, value) { var createHtml = function (string, tag, attribute, value) {
var S = String(requireObjectCoercible(string)); var S = String(requireObjectCoercible(string));
@ -9251,78 +9107,13 @@ var doric = (function (exports) {
var aTypedArray$7 = arrayBufferViewCore.aTypedArray; var aTypedArray$7 = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$8 = arrayBufferViewCore.exportTypedArrayMethod; var exportTypedArrayMethod$8 = arrayBufferViewCore.exportTypedArrayMethod;
var Uint16Array = global_1.Uint16Array; var $sort = [].sort;
var nativeSort = Uint16Array && Uint16Array.prototype.sort;
// WebKit
var ACCEPT_INCORRECT_ARGUMENTS = !!nativeSort && !fails(function () {
var array = new Uint16Array(2);
array.sort(null);
array.sort({});
});
var STABLE_SORT = !!nativeSort && !fails(function () {
// feature detection can be too slow, so check engines versions
if (engineV8Version) { return engineV8Version < 74; }
if (engineFfVersion) { return engineFfVersion < 67; }
if (engineIsIeOrEdge) { return true; }
if (engineWebkitVersion) { return engineWebkitVersion < 602; }
var array = new Uint16Array(516);
var expected = Array(516);
var index, mod;
for (index = 0; index < 516; index++) {
mod = index % 4;
array[index] = 515 - index;
expected[index] = index - 2 * mod + 3;
}
array.sort(function (a, b) {
return (a / 4 | 0) - (b / 4 | 0);
});
for (index = 0; index < 516; index++) {
if (array[index] !== expected[index]) { return true; }
}
});
var getSortCompare = function (comparefn) {
return function (x, y) {
if (comparefn !== undefined) { return +comparefn(x, y) || 0; }
// eslint-disable-next-line no-self-compare -- NaN check
if (y !== y) { return -1; }
// eslint-disable-next-line no-self-compare -- NaN check
if (x !== x) { return 1; }
if (x === 0 && y === 0) { return 1 / x > 0 && 1 / y < 0 ? 1 : -1; }
return x > y;
};
};
// `%TypedArray%.prototype.sort` method // `%TypedArray%.prototype.sort` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.sort // https://tc39.es/ecma262/#sec-%typedarray%.prototype.sort
exportTypedArrayMethod$8('sort', function sort(comparefn) { exportTypedArrayMethod$8('sort', function sort(comparefn) {
var array = this; return $sort.call(aTypedArray$7(this), comparefn);
if (comparefn !== undefined) { aFunction(comparefn); } });
if (STABLE_SORT) { return nativeSort.call(array, comparefn); }
aTypedArray$7(array);
var arrayLength = toLength(array.length);
var items = Array(arrayLength);
var index;
for (index = 0; index < arrayLength; index++) {
items[index] = array[index];
}
items = arraySort(array, getSortCompare(comparefn));
for (index = 0; index < arrayLength; index++) {
array[index] = items[index];
}
return array;
}, !STABLE_SORT || ACCEPT_INCORRECT_ARGUMENTS);
var aTypedArray$6 = arrayBufferViewCore.aTypedArray; var aTypedArray$6 = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$7 = arrayBufferViewCore.exportTypedArrayMethod; var exportTypedArrayMethod$7 = arrayBufferViewCore.exportTypedArrayMethod;
@ -9459,9 +9250,8 @@ var doric = (function (exports) {
}; };
redefineAll(C.prototype, { redefineAll(C.prototype, {
// `{ WeakMap, WeakSet }.prototype.delete(key)` methods // 23.3.3.2 WeakMap.prototype.delete(key)
// https://tc39.es/ecma262/#sec-weakmap.prototype.delete // 23.4.3.3 WeakSet.prototype.delete(value)
// https://tc39.es/ecma262/#sec-weakset.prototype.delete
'delete': function (key) { 'delete': function (key) {
var state = getInternalState(this); var state = getInternalState(this);
if (!isObject(key)) { return false; } if (!isObject(key)) { return false; }
@ -9469,9 +9259,8 @@ var doric = (function (exports) {
if (data === true) { return uncaughtFrozenStore(state)['delete'](key); } if (data === true) { return uncaughtFrozenStore(state)['delete'](key); }
return data && has$1(data, state.id) && delete data[state.id]; return data && has$1(data, state.id) && delete data[state.id];
}, },
// `{ WeakMap, WeakSet }.prototype.has(key)` methods // 23.3.3.4 WeakMap.prototype.has(key)
// https://tc39.es/ecma262/#sec-weakmap.prototype.has // 23.4.3.4 WeakSet.prototype.has(value)
// https://tc39.es/ecma262/#sec-weakset.prototype.has
has: function has(key) { has: function has(key) {
var state = getInternalState(this); var state = getInternalState(this);
if (!isObject(key)) { return false; } if (!isObject(key)) { return false; }
@ -9482,8 +9271,7 @@ var doric = (function (exports) {
}); });
redefineAll(C.prototype, IS_MAP ? { redefineAll(C.prototype, IS_MAP ? {
// `WeakMap.prototype.get(key)` method // 23.3.3.3 WeakMap.prototype.get(key)
// https://tc39.es/ecma262/#sec-weakmap.prototype.get
get: function get(key) { get: function get(key) {
var state = getInternalState(this); var state = getInternalState(this);
if (isObject(key)) { if (isObject(key)) {
@ -9492,14 +9280,12 @@ var doric = (function (exports) {
return data ? data[state.id] : undefined; return data ? data[state.id] : undefined;
} }
}, },
// `WeakMap.prototype.set(key, value)` method // 23.3.3.5 WeakMap.prototype.set(key, value)
// https://tc39.es/ecma262/#sec-weakmap.prototype.set
set: function set(key, value) { set: function set(key, value) {
return define(this, key, value); return define(this, key, value);
} }
} : { } : {
// `WeakSet.prototype.add(value)` method // 23.4.3.1 WeakSet.prototype.add(value)
// https://tc39.es/ecma262/#sec-weakset.prototype.add
add: function add(value) { add: function add(value) {
return define(this, value, true); return define(this, value, true);
} }

View File

@ -3868,6 +3868,14 @@ __decorate$3([
Property, Property,
__metadata$3("design:type", Function) __metadata$3("design:type", Function)
], Input.prototype, "onSubmitEditing", void 0); ], Input.prototype, "onSubmitEditing", void 0);
__decorate$3([
Property,
__metadata$3("design:type", Boolean)
], Input.prototype, "enableHorizontalScrollBar", void 0);
__decorate$3([
Property,
__metadata$3("design:type", Boolean)
], Input.prototype, "enableVerticalScrollBar", void 0);
__decorate$3([ __decorate$3([
Property, Property,
__metadata$3("design:type", Function) __metadata$3("design:type", Function)

File diff suppressed because one or more lines are too long