Update npm packages (73 packages including @jqhtml 2.3.36)
Update npm registry domain from privatenpm.hanson.xyz to npm.internal.hanson.xyz 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
9
node_modules/terser/CHANGELOG.md
generated
vendored
9
node_modules/terser/CHANGELOG.md
generated
vendored
@@ -1,5 +1,14 @@
|
||||
# Changelog
|
||||
|
||||
## v5.46.0
|
||||
|
||||
- Add "observedAttributes" domprop (#1652)
|
||||
- More domprops (mostly `Temporal` related) suggested in #1652
|
||||
|
||||
## v5.45.0
|
||||
|
||||
- Produce `void 0` instead of `undefined`, which is more safe
|
||||
|
||||
## v5.44.1
|
||||
|
||||
- fix bitwise optimization changing the result of `&&`, `||`
|
||||
|
||||
249
node_modules/terser/dist/bundle.min.js
generated
vendored
249
node_modules/terser/dist/bundle.min.js
generated
vendored
File diff suppressed because it is too large
Load Diff
4
node_modules/terser/lib/compress/common.js
generated
vendored
4
node_modules/terser/lib/compress/common.js
generated
vendored
@@ -87,7 +87,7 @@ import {
|
||||
walk_abort,
|
||||
walk_parent,
|
||||
} from "../ast.js";
|
||||
import { make_node, regexp_source_fix, string_template, makePredicate } from "../utils/index.js";
|
||||
import { make_node, make_void_0, regexp_source_fix, string_template, makePredicate } from "../utils/index.js";
|
||||
import { first_in_statement } from "../utils/first_in_statement.js";
|
||||
import { has_flag, TOP } from "./compressor-flags.js";
|
||||
|
||||
@@ -148,7 +148,7 @@ export function make_node_from_constant(val, orig) {
|
||||
case "boolean":
|
||||
return make_node(val ? AST_True : AST_False, orig);
|
||||
case "undefined":
|
||||
return make_node(AST_Undefined, orig);
|
||||
return make_void_0(orig);
|
||||
default:
|
||||
if (val === null) {
|
||||
return make_node(AST_Null, orig, { value: null });
|
||||
|
||||
46
node_modules/terser/lib/compress/index.js
generated
vendored
46
node_modules/terser/lib/compress/index.js
generated
vendored
@@ -146,6 +146,7 @@ import {
|
||||
defaults,
|
||||
HOP,
|
||||
make_node,
|
||||
make_void_0,
|
||||
makePredicate,
|
||||
MAP,
|
||||
remove,
|
||||
@@ -562,7 +563,7 @@ AST_Toplevel.DEFMETHOD("drop_console", function(options) {
|
||||
set_flag(exp.expression, SQUEEZED);
|
||||
self.args = [];
|
||||
} else {
|
||||
return make_node(AST_Undefined, self);
|
||||
return make_void_0(self);
|
||||
}
|
||||
}
|
||||
});
|
||||
@@ -590,12 +591,7 @@ AST_Scope.DEFMETHOD("process_expression", function(insert, compressor) {
|
||||
: make_node(AST_EmptyStatement, node);
|
||||
}
|
||||
return make_node(AST_SimpleStatement, node, {
|
||||
body: node.value || make_node(AST_UnaryPrefix, node, {
|
||||
operator: "void",
|
||||
expression: make_node(AST_Number, node, {
|
||||
value: 0
|
||||
})
|
||||
})
|
||||
body: node.value || make_void_0(node)
|
||||
});
|
||||
}
|
||||
if (node instanceof AST_Class || node instanceof AST_Lambda && node !== self) {
|
||||
@@ -1198,8 +1194,8 @@ def_optimize(AST_If, function(self, compressor) {
|
||||
return make_node(self.body.CTOR, self, {
|
||||
value: make_node(AST_Conditional, self, {
|
||||
condition : self.condition,
|
||||
consequent : self.body.value || make_node(AST_Undefined, self.body),
|
||||
alternative : self.alternative.value || make_node(AST_Undefined, self.alternative)
|
||||
consequent : self.body.value || make_void_0(self.body),
|
||||
alternative : self.alternative.value || make_void_0(self.alternative),
|
||||
}).transform(compressor)
|
||||
}).optimize(compressor);
|
||||
}
|
||||
@@ -1752,7 +1748,7 @@ def_optimize(AST_Call, function(self, compressor) {
|
||||
const value = condition.evaluate(compressor);
|
||||
|
||||
if (value === 1 || value === true) {
|
||||
return make_node(AST_Undefined, self);
|
||||
return make_void_0(self).optimize(compressor);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -2114,6 +2110,10 @@ def_optimize(AST_UnaryPrefix, function(self, compressor) {
|
||||
) {
|
||||
return make_sequence(self, [e, make_node(AST_True, self)]).optimize(compressor);
|
||||
}
|
||||
// Short-circuit common `void 0`
|
||||
if (self.operator === "void" && e instanceof AST_Number && e.value === 0) {
|
||||
return unsafe_undefined_ref(self, compressor) || self;
|
||||
}
|
||||
var seq = self.lift_sequences(compressor);
|
||||
if (seq !== self) {
|
||||
return seq;
|
||||
@@ -2124,7 +2124,7 @@ def_optimize(AST_UnaryPrefix, function(self, compressor) {
|
||||
self.expression = e;
|
||||
return self;
|
||||
} else {
|
||||
return make_node(AST_Undefined, self).optimize(compressor);
|
||||
return make_void_0(self).optimize(compressor);
|
||||
}
|
||||
}
|
||||
if (compressor.in_boolean_context()) {
|
||||
@@ -2310,7 +2310,7 @@ def_optimize(AST_Binary, function(self, compressor) {
|
||||
if (expr instanceof AST_SymbolRef ? expr.is_declared(compressor)
|
||||
: !(expr instanceof AST_PropAccess && compressor.option("ie8"))) {
|
||||
self.right = expr;
|
||||
self.left = make_node(AST_Undefined, self.left).optimize(compressor);
|
||||
self.left = make_void_0(self.left).optimize(compressor);
|
||||
if (self.operator.length == 2) self.operator += "=";
|
||||
}
|
||||
} else if (compressor.option("typeofs")
|
||||
@@ -2323,7 +2323,7 @@ def_optimize(AST_Binary, function(self, compressor) {
|
||||
if (expr instanceof AST_SymbolRef ? expr.is_declared(compressor)
|
||||
: !(expr instanceof AST_PropAccess && compressor.option("ie8"))) {
|
||||
self.left = expr;
|
||||
self.right = make_node(AST_Undefined, self.right).optimize(compressor);
|
||||
self.right = make_void_0(self.right).optimize(compressor);
|
||||
if (self.operator.length == 2) self.operator += "=";
|
||||
}
|
||||
} else if (self.left instanceof AST_SymbolRef
|
||||
@@ -2964,7 +2964,8 @@ function is_atomic(lhs, self) {
|
||||
return lhs instanceof AST_SymbolRef || lhs.TYPE === self.TYPE;
|
||||
}
|
||||
|
||||
def_optimize(AST_Undefined, function(self, compressor) {
|
||||
/** Apply the `unsafe_undefined` option: find a variable called `undefined` and turn `self` into a reference to it. */
|
||||
function unsafe_undefined_ref(self, compressor) {
|
||||
if (compressor.option("unsafe_undefined")) {
|
||||
var undef = find_variable(compressor, "undefined");
|
||||
if (undef) {
|
||||
@@ -2977,14 +2978,15 @@ def_optimize(AST_Undefined, function(self, compressor) {
|
||||
return ref;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
def_optimize(AST_Undefined, function(self, compressor) {
|
||||
var symbolref = unsafe_undefined_ref(self, compressor);
|
||||
if (symbolref) return symbolref;
|
||||
var lhs = compressor.is_lhs();
|
||||
if (lhs && is_atomic(lhs, self)) return self;
|
||||
return make_node(AST_UnaryPrefix, self, {
|
||||
operator: "void",
|
||||
expression: make_node(AST_Number, self, {
|
||||
value: 0
|
||||
})
|
||||
});
|
||||
return make_void_0(self);
|
||||
});
|
||||
|
||||
def_optimize(AST_Infinity, function(self, compressor) {
|
||||
@@ -3671,7 +3673,7 @@ def_optimize(AST_Sub, function(self, compressor) {
|
||||
}
|
||||
}
|
||||
if (retValue instanceof AST_Expansion) break FLATTEN;
|
||||
retValue = retValue instanceof AST_Hole ? make_node(AST_Undefined, retValue) : retValue;
|
||||
retValue = retValue instanceof AST_Hole ? make_void_0(retValue) : retValue;
|
||||
if (!flatten) values.unshift(retValue);
|
||||
while (--i >= 0) {
|
||||
var value = elements[i];
|
||||
@@ -3710,7 +3712,7 @@ def_optimize(AST_Chain, function (self, compressor) {
|
||||
if (parent instanceof AST_UnaryPrefix && parent.operator === "delete") {
|
||||
return make_node_from_constant(0, self);
|
||||
}
|
||||
return make_node(AST_Undefined, self);
|
||||
return make_void_0(self).optimize(compressor);
|
||||
}
|
||||
if (
|
||||
self.expression instanceof AST_PropAccess
|
||||
|
||||
17
node_modules/terser/lib/compress/inline.js
generated
vendored
17
node_modules/terser/lib/compress/inline.js
generated
vendored
@@ -76,7 +76,6 @@ import {
|
||||
AST_This,
|
||||
AST_Toplevel,
|
||||
AST_UnaryPrefix,
|
||||
AST_Undefined,
|
||||
AST_Var,
|
||||
AST_VarDef,
|
||||
|
||||
@@ -86,7 +85,7 @@ import {
|
||||
_NOINLINE,
|
||||
_PURE,
|
||||
} from "../ast.js";
|
||||
import { make_node, has_annotation } from "../utils/index.js";
|
||||
import { make_node, make_void_0, has_annotation } from "../utils/index.js";
|
||||
import "../size.js";
|
||||
|
||||
import "./evaluate.js";
|
||||
@@ -358,7 +357,7 @@ export function inline_into_call(self, compressor) {
|
||||
if (returned) {
|
||||
returned = returned.clone(true);
|
||||
} else {
|
||||
returned = make_node(AST_Undefined, self);
|
||||
returned = make_void_0(self);
|
||||
}
|
||||
const args = self.args.concat(returned);
|
||||
return make_sequence(self, args).optimize(compressor);
|
||||
@@ -374,7 +373,7 @@ export function inline_into_call(self, compressor) {
|
||||
&& returned.name === fn.argnames[0].name
|
||||
) {
|
||||
const replacement =
|
||||
(self.args[0] || make_node(AST_Undefined)).optimize(compressor);
|
||||
(self.args[0] || make_void_0()).optimize(compressor);
|
||||
|
||||
let parent;
|
||||
if (
|
||||
@@ -456,7 +455,7 @@ export function inline_into_call(self, compressor) {
|
||||
|
||||
const can_drop_this_call = is_regular_func && compressor.option("side_effects") && fn.body.every(is_empty);
|
||||
if (can_drop_this_call) {
|
||||
var args = self.args.concat(make_node(AST_Undefined, self));
|
||||
var args = self.args.concat(make_void_0(self));
|
||||
return make_sequence(self, args).optimize(compressor);
|
||||
}
|
||||
|
||||
@@ -475,9 +474,9 @@ export function inline_into_call(self, compressor) {
|
||||
return self;
|
||||
|
||||
function return_value(stat) {
|
||||
if (!stat) return make_node(AST_Undefined, self);
|
||||
if (!stat) return make_void_0(self);
|
||||
if (stat instanceof AST_Return) {
|
||||
if (!stat.value) return make_node(AST_Undefined, self);
|
||||
if (!stat.value) return make_void_0(self);
|
||||
return stat.value.clone(true);
|
||||
}
|
||||
if (stat instanceof AST_SimpleStatement) {
|
||||
@@ -623,7 +622,7 @@ export function inline_into_call(self, compressor) {
|
||||
} else {
|
||||
var symbol = make_node(AST_SymbolVar, name, name);
|
||||
name.definition().orig.push(symbol);
|
||||
if (!value && in_loop) value = make_node(AST_Undefined, self);
|
||||
if (!value && in_loop) value = make_void_0(self);
|
||||
append_var(decls, expressions, symbol, value);
|
||||
}
|
||||
}
|
||||
@@ -650,7 +649,7 @@ export function inline_into_call(self, compressor) {
|
||||
operator: "=",
|
||||
logical: false,
|
||||
left: sym,
|
||||
right: make_node(AST_Undefined, name)
|
||||
right: make_void_0(name),
|
||||
}));
|
||||
}
|
||||
}
|
||||
|
||||
7
node_modules/terser/lib/compress/reduce-vars.js
generated
vendored
7
node_modules/terser/lib/compress/reduce-vars.js
generated
vendored
@@ -87,7 +87,6 @@ import {
|
||||
AST_Try,
|
||||
AST_Unary,
|
||||
AST_UnaryPrefix,
|
||||
AST_Undefined,
|
||||
AST_UsingDef,
|
||||
AST_VarDef,
|
||||
AST_VarDefLike,
|
||||
@@ -98,7 +97,7 @@ import {
|
||||
walk_body,
|
||||
walk_parent,
|
||||
} from "../ast.js";
|
||||
import { HOP, make_node, noop } from "../utils/index.js";
|
||||
import { HOP, make_node, make_void_0, noop } from "../utils/index.js";
|
||||
|
||||
import { lazy_op, is_modified, is_lhs } from "./inference.js";
|
||||
import { INLINED, clear_flag } from "./compressor-flags.js";
|
||||
@@ -172,7 +171,7 @@ function safe_to_read(tw, def) {
|
||||
if (def.fixed == null) {
|
||||
var orig = def.orig[0];
|
||||
if (orig instanceof AST_SymbolFunarg || orig.name == "arguments") return false;
|
||||
def.fixed = make_node(AST_Undefined, orig);
|
||||
def.fixed = make_void_0(orig);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
@@ -470,7 +469,7 @@ function mark_lambda(tw, descend, compressor) {
|
||||
if (d.orig.length > 1) return;
|
||||
if (d.fixed === undefined && (!this.uses_arguments || tw.has_directive("use strict"))) {
|
||||
d.fixed = function() {
|
||||
return iife.args[i] || make_node(AST_Undefined, iife);
|
||||
return iife.args[i] || make_void_0(iife);
|
||||
};
|
||||
tw.loop_ids.set(d.id, tw.in_loop);
|
||||
mark(tw, d, true);
|
||||
|
||||
8
node_modules/terser/lib/compress/tighten-body.js
generated
vendored
8
node_modules/terser/lib/compress/tighten-body.js
generated
vendored
@@ -106,7 +106,6 @@ import {
|
||||
AST_Unary,
|
||||
AST_UnaryPostfix,
|
||||
AST_UnaryPrefix,
|
||||
AST_Undefined,
|
||||
AST_Using,
|
||||
AST_Var,
|
||||
AST_VarDef,
|
||||
@@ -122,6 +121,7 @@ import {
|
||||
} from "../ast.js";
|
||||
import {
|
||||
make_node,
|
||||
make_void_0,
|
||||
MAP,
|
||||
member,
|
||||
remove,
|
||||
@@ -635,7 +635,7 @@ export function tighten_body(statements, compressor) {
|
||||
}
|
||||
} else {
|
||||
if (!arg) {
|
||||
arg = make_node(AST_Undefined, sym).transform(compressor);
|
||||
arg = make_void_0(sym).transform(compressor);
|
||||
} else if (arg instanceof AST_Lambda && arg.pinned()
|
||||
|| has_overlapping_symbol(fn, arg, fn_strict)) {
|
||||
arg = null;
|
||||
@@ -875,7 +875,7 @@ export function tighten_body(statements, compressor) {
|
||||
found = true;
|
||||
if (node instanceof AST_VarDef) {
|
||||
node.value = node.name instanceof AST_SymbolConst
|
||||
? make_node(AST_Undefined, node.value) // `const` always needs value.
|
||||
? make_void_0(node.value) // `const` always needs value.
|
||||
: null;
|
||||
return node;
|
||||
}
|
||||
@@ -1314,7 +1314,7 @@ export function tighten_body(statements, compressor) {
|
||||
var stat = statements[i];
|
||||
if (prev) {
|
||||
if (stat instanceof AST_Exit) {
|
||||
stat.value = cons_seq(stat.value || make_node(AST_Undefined, stat).transform(compressor));
|
||||
stat.value = cons_seq(stat.value || make_void_0(stat).transform(compressor));
|
||||
} else if (stat instanceof AST_For) {
|
||||
if (!(stat.init instanceof AST_DefinitionsLike)) {
|
||||
const abort = walk(prev.body, node => {
|
||||
|
||||
12
node_modules/terser/lib/utils/index.js
generated
vendored
12
node_modules/terser/lib/utils/index.js
generated
vendored
@@ -43,7 +43,7 @@
|
||||
|
||||
"use strict";
|
||||
|
||||
import { AST_Node } from "../ast.js";
|
||||
import { AST_Node, AST_Number, AST_UnaryPrefix } from "../ast.js";
|
||||
|
||||
function characters(str) {
|
||||
return str.split("");
|
||||
@@ -130,6 +130,15 @@ function make_node(ctor, orig, props) {
|
||||
return new ctor(props);
|
||||
}
|
||||
|
||||
/** Makes a `void 0` expression. Use instead of AST_Undefined which may conflict
|
||||
* with an existing variable called `undefined` */
|
||||
function make_void_0(orig) {
|
||||
return make_node(AST_UnaryPrefix, orig, {
|
||||
operator: "void",
|
||||
expression: make_node(AST_Number, orig, { value: 0 })
|
||||
});
|
||||
}
|
||||
|
||||
function push_uniq(array, el) {
|
||||
if (!array.includes(el))
|
||||
array.push(el);
|
||||
@@ -272,6 +281,7 @@ export {
|
||||
HOP,
|
||||
keep_name,
|
||||
make_node,
|
||||
make_void_0,
|
||||
makePredicate,
|
||||
map_add,
|
||||
map_from_object,
|
||||
|
||||
6
node_modules/terser/package.json
generated
vendored
6
node_modules/terser/package.json
generated
vendored
@@ -4,7 +4,7 @@
|
||||
"homepage": "https://terser.org",
|
||||
"author": "Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/)",
|
||||
"license": "BSD-2-Clause",
|
||||
"version": "5.44.1",
|
||||
"version": "5.46.0",
|
||||
"engines": {
|
||||
"node": ">=10"
|
||||
},
|
||||
@@ -61,6 +61,10 @@
|
||||
"semver": "^7.5.1",
|
||||
"source-map": "~0.8.0-beta.0"
|
||||
},
|
||||
"overrides": {
|
||||
"serialize-javascript": "6.0.2",
|
||||
"js-yaml": "4.1.1"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test/compress.js && mocha test/mocha",
|
||||
"test:compress": "node test/compress.js",
|
||||
|
||||
169
node_modules/terser/tools/domprops.js
generated
vendored
169
node_modules/terser/tools/domprops.js
generated
vendored
@@ -195,6 +195,7 @@ export var domprops = [
|
||||
"Array",
|
||||
"ArrayBuffer",
|
||||
"ArrayType",
|
||||
"AsyncDisposableStack",
|
||||
"Atomics",
|
||||
"Attr",
|
||||
"Audio",
|
||||
@@ -333,6 +334,7 @@ export var domprops = [
|
||||
"COPY_WRITE_BUFFER",
|
||||
"COPY_WRITE_BUFFER_BINDING",
|
||||
"COUNTER_STYLE_RULE",
|
||||
"CSPViolationReportBody",
|
||||
"CSS",
|
||||
"CSS2Properties",
|
||||
"CSSAnimation",
|
||||
@@ -343,6 +345,9 @@ export var domprops = [
|
||||
"CSSFontFaceRule",
|
||||
"CSSFontFeatureValuesRule",
|
||||
"CSSFontPaletteValuesRule",
|
||||
"CSSFunctionDeclarations",
|
||||
"CSSFunctionDescriptors",
|
||||
"CSSFunctionRule",
|
||||
"CSSGroupingRule",
|
||||
"CSSImageValue",
|
||||
"CSSImportRule",
|
||||
@@ -386,6 +391,7 @@ export var domprops = [
|
||||
"CSSSkewY",
|
||||
"CSSStartingStyleRule",
|
||||
"CSSStyleDeclaration",
|
||||
"CSSStyleProperties",
|
||||
"CSSStyleRule",
|
||||
"CSSStyleSheet",
|
||||
"CSSStyleValue",
|
||||
@@ -519,6 +525,7 @@ export var domprops = [
|
||||
"CookieStoreManager",
|
||||
"CountQueuingStrategy",
|
||||
"Counter",
|
||||
"CreateMonitor",
|
||||
"CreateType",
|
||||
"Credential",
|
||||
"CredentialsContainer",
|
||||
@@ -1028,11 +1035,14 @@ export var domprops = [
|
||||
"DeviceMotionEventAcceleration",
|
||||
"DeviceMotionEventRotationRate",
|
||||
"DeviceOrientationEvent",
|
||||
"DevicePosture",
|
||||
"DeviceProximityEvent",
|
||||
"DeviceStorage",
|
||||
"DeviceStorageChangeEvent",
|
||||
"DigitalCredential",
|
||||
"Directory",
|
||||
"DisplayNames",
|
||||
"DisposableStack",
|
||||
"Document",
|
||||
"DocumentFragment",
|
||||
"DocumentPictureInPicture",
|
||||
@@ -1040,6 +1050,7 @@ export var domprops = [
|
||||
"DocumentTimeline",
|
||||
"DocumentType",
|
||||
"DragEvent",
|
||||
"Duration",
|
||||
"DurationFormat",
|
||||
"DynamicsCompressorNode",
|
||||
"E",
|
||||
@@ -1147,6 +1158,7 @@ export var domprops = [
|
||||
"FeedEntry",
|
||||
"Fence",
|
||||
"FencedFrameConfig",
|
||||
"FetchLaterResult",
|
||||
"File",
|
||||
"FileError",
|
||||
"FileList",
|
||||
@@ -1159,6 +1171,7 @@ export var domprops = [
|
||||
"FileSystemFileEntry",
|
||||
"FileSystemFileHandle",
|
||||
"FileSystemHandle",
|
||||
"FileSystemObserver",
|
||||
"FileSystemWritableFileStream",
|
||||
"FinalizationRegistry",
|
||||
"FindInPage",
|
||||
@@ -1324,6 +1337,7 @@ export var domprops = [
|
||||
"HTMLQuoteElement",
|
||||
"HTMLScriptElement",
|
||||
"HTMLSelectElement",
|
||||
"HTMLSelectedContentElement",
|
||||
"HTMLShadowElement",
|
||||
"HTMLSlotElement",
|
||||
"HTMLSourceElement",
|
||||
@@ -1368,6 +1382,7 @@ export var domprops = [
|
||||
"IDBMutableFile",
|
||||
"IDBObjectStore",
|
||||
"IDBOpenDBRequest",
|
||||
"IDBRecord",
|
||||
"IDBRequest",
|
||||
"IDBTransaction",
|
||||
"IDBVersionChangeEvent",
|
||||
@@ -1430,10 +1445,13 @@ export var domprops = [
|
||||
"InstallTrigger",
|
||||
"InstallTriggerImpl",
|
||||
"Instance",
|
||||
"Instant",
|
||||
"Int16Array",
|
||||
"Int32Array",
|
||||
"Int8Array",
|
||||
"IntegrityViolationReportBody",
|
||||
"Intent",
|
||||
"InterestEvent",
|
||||
"InternalError",
|
||||
"IntersectionObserver",
|
||||
"IntersectionObserverEntry",
|
||||
@@ -1483,6 +1501,7 @@ export var domprops = [
|
||||
"LUMINANCE",
|
||||
"LUMINANCE_ALPHA",
|
||||
"LanguageCode",
|
||||
"LanguageDetector",
|
||||
"LargestContentfulPaint",
|
||||
"LaunchParams",
|
||||
"LaunchQueue",
|
||||
@@ -1812,6 +1831,7 @@ export var domprops = [
|
||||
"NavigationCurrentEntryChangeEvent",
|
||||
"NavigationDestination",
|
||||
"NavigationHistoryEntry",
|
||||
"NavigationPrecommitController",
|
||||
"NavigationPreloadManager",
|
||||
"NavigationTransition",
|
||||
"Navigator",
|
||||
@@ -1829,6 +1849,7 @@ export var domprops = [
|
||||
"Notation",
|
||||
"Notification",
|
||||
"NotifyPaintEvent",
|
||||
"Now",
|
||||
"Number",
|
||||
"NumberFormat",
|
||||
"OBJECT_TYPE",
|
||||
@@ -1850,6 +1871,7 @@ export var domprops = [
|
||||
"OTPCredential",
|
||||
"OUT_OF_MEMORY",
|
||||
"Object",
|
||||
"Observable",
|
||||
"OfflineAudioCompletionEvent",
|
||||
"OfflineAudioContext",
|
||||
"OfflineResourceList",
|
||||
@@ -1951,6 +1973,11 @@ export var domprops = [
|
||||
"PhotoCapabilities",
|
||||
"PictureInPictureEvent",
|
||||
"PictureInPictureWindow",
|
||||
"PlainDate",
|
||||
"PlainDateTime",
|
||||
"PlainMonthDay",
|
||||
"PlainTime",
|
||||
"PlainYearMonth",
|
||||
"PlatformArch",
|
||||
"PlatformInfo",
|
||||
"PlatformNaclArch",
|
||||
@@ -1991,6 +2018,7 @@ export var domprops = [
|
||||
"QUOTA_ERR",
|
||||
"QUOTA_EXCEEDED_ERR",
|
||||
"QueryInterface",
|
||||
"QuotaExceededError",
|
||||
"R11F_G11F_B10F",
|
||||
"R16F",
|
||||
"R16I",
|
||||
@@ -2131,6 +2159,7 @@ export var domprops = [
|
||||
"ResizeObserverEntry",
|
||||
"ResizeObserverSize",
|
||||
"Response",
|
||||
"RestrictionTarget",
|
||||
"RuntimeError",
|
||||
"SAMPLER_2D",
|
||||
"SAMPLER_2D_ARRAY",
|
||||
@@ -2537,6 +2566,11 @@ export var domprops = [
|
||||
"ShadowRoot",
|
||||
"SharedArrayBuffer",
|
||||
"SharedStorage",
|
||||
"SharedStorageAppendMethod",
|
||||
"SharedStorageClearMethod",
|
||||
"SharedStorageDeleteMethod",
|
||||
"SharedStorageModifierMethod",
|
||||
"SharedStorageSetMethod",
|
||||
"SharedStorageWorklet",
|
||||
"SharedWorker",
|
||||
"SharingState",
|
||||
@@ -2544,6 +2578,12 @@ export var domprops = [
|
||||
"SnapEvent",
|
||||
"SourceBuffer",
|
||||
"SourceBufferList",
|
||||
"SpeechGrammar",
|
||||
"SpeechGrammarList",
|
||||
"SpeechRecognition",
|
||||
"SpeechRecognitionErrorEvent",
|
||||
"SpeechRecognitionEvent",
|
||||
"SpeechRecognitionPhrase",
|
||||
"SpeechSynthesis",
|
||||
"SpeechSynthesisErrorEvent",
|
||||
"SpeechSynthesisEvent",
|
||||
@@ -2564,7 +2604,12 @@ export var domprops = [
|
||||
"StyleSheet",
|
||||
"StyleSheetList",
|
||||
"SubmitEvent",
|
||||
"Subscriber",
|
||||
"SubtleCrypto",
|
||||
"Summarizer",
|
||||
"SuppressedError",
|
||||
"SuspendError",
|
||||
"Suspending",
|
||||
"Symbol",
|
||||
"SyncManager",
|
||||
"SyntaxError",
|
||||
@@ -2675,6 +2720,7 @@ export var domprops = [
|
||||
"TaskController",
|
||||
"TaskPriorityChangeEvent",
|
||||
"TaskSignal",
|
||||
"Temporal",
|
||||
"Text",
|
||||
"TextDecoder",
|
||||
"TextDecoderStream",
|
||||
@@ -2699,6 +2745,7 @@ export var domprops = [
|
||||
"TransformStream",
|
||||
"TransformStreamDefaultController",
|
||||
"TransitionEvent",
|
||||
"Translator",
|
||||
"TreeWalker",
|
||||
"TrustedHTML",
|
||||
"TrustedScript",
|
||||
@@ -2843,6 +2890,7 @@ export var domprops = [
|
||||
"ViewTransition",
|
||||
"ViewTransitionTypeSet",
|
||||
"ViewType",
|
||||
"Viewport",
|
||||
"VirtualKeyboard",
|
||||
"VirtualKeyboardGeometryChangeEvent",
|
||||
"VisibilityStateEntry",
|
||||
@@ -3052,6 +3100,7 @@ export var domprops = [
|
||||
"XRWebGLLayer",
|
||||
"XSLTProcessor",
|
||||
"ZERO",
|
||||
"ZonedDateTime",
|
||||
"ZoomSettings",
|
||||
"ZoomSettingsMode",
|
||||
"ZoomSettingsScope",
|
||||
@@ -3101,6 +3150,7 @@ export var domprops = [
|
||||
"activeSourceCount",
|
||||
"activeTexture",
|
||||
"activeVRDisplays",
|
||||
"activeViewTransition",
|
||||
"activityLog",
|
||||
"actualBoundingBoxAscent",
|
||||
"actualBoundingBoxDescent",
|
||||
@@ -3108,6 +3158,7 @@ export var domprops = [
|
||||
"actualBoundingBoxRight",
|
||||
"adAuctionComponents",
|
||||
"adAuctionHeaders",
|
||||
"adapterInfo",
|
||||
"add",
|
||||
"addAll",
|
||||
"addBehavior",
|
||||
@@ -3133,6 +3184,7 @@ export var domprops = [
|
||||
"addSearchEngine",
|
||||
"addSourceBuffer",
|
||||
"addStream",
|
||||
"addTeardown",
|
||||
"addTextTrack",
|
||||
"addTrack",
|
||||
"addTransceiver",
|
||||
@@ -3147,6 +3199,7 @@ export var domprops = [
|
||||
"addressModeU",
|
||||
"addressModeV",
|
||||
"addressModeW",
|
||||
"adopt",
|
||||
"adoptNode",
|
||||
"adoptedCallback",
|
||||
"adoptedStyleSheets",
|
||||
@@ -3194,8 +3247,10 @@ export var domprops = [
|
||||
"amplitude",
|
||||
"ancestorOrigins",
|
||||
"anchor",
|
||||
"anchorName",
|
||||
"anchorNode",
|
||||
"anchorOffset",
|
||||
"anchorScope",
|
||||
"anchorSpace",
|
||||
"anchors",
|
||||
"and",
|
||||
@@ -3231,6 +3286,7 @@ export var domprops = [
|
||||
"animationTimingFunction",
|
||||
"animationsPaused",
|
||||
"anniversary",
|
||||
"annotation",
|
||||
"antialias",
|
||||
"anticipatedRemoval",
|
||||
"any",
|
||||
@@ -3265,6 +3321,7 @@ export var domprops = [
|
||||
"archive",
|
||||
"areas",
|
||||
"arguments",
|
||||
"ariaActiveDescendantElement",
|
||||
"ariaAtomic",
|
||||
"ariaAutoComplete",
|
||||
"ariaBrailleLabel",
|
||||
@@ -3275,21 +3332,29 @@ export var domprops = [
|
||||
"ariaColIndex",
|
||||
"ariaColIndexText",
|
||||
"ariaColSpan",
|
||||
"ariaControlsElements",
|
||||
"ariaCurrent",
|
||||
"ariaDescribedByElements",
|
||||
"ariaDescription",
|
||||
"ariaDetailsElements",
|
||||
"ariaDisabled",
|
||||
"ariaErrorMessageElements",
|
||||
"ariaExpanded",
|
||||
"ariaFlowToElements",
|
||||
"ariaHasPopup",
|
||||
"ariaHidden",
|
||||
"ariaInvalid",
|
||||
"ariaKeyShortcuts",
|
||||
"ariaLabel",
|
||||
"ariaLabelledByElements",
|
||||
"ariaLevel",
|
||||
"ariaLive",
|
||||
"ariaModal",
|
||||
"ariaMultiLine",
|
||||
"ariaMultiSelectable",
|
||||
"ariaNotify",
|
||||
"ariaOrientation",
|
||||
"ariaOwnsElements",
|
||||
"ariaPlaceholder",
|
||||
"ariaPosInSet",
|
||||
"ariaPressed",
|
||||
@@ -3432,6 +3497,7 @@ export var domprops = [
|
||||
"baseline-source",
|
||||
"baselineShift",
|
||||
"baselineSource",
|
||||
"batchUpdate",
|
||||
"battery",
|
||||
"bday",
|
||||
"before",
|
||||
@@ -3484,6 +3550,7 @@ export var domprops = [
|
||||
"blockDirection",
|
||||
"blockSize",
|
||||
"blockedURI",
|
||||
"blockedURL",
|
||||
"blocking",
|
||||
"blockingDuration",
|
||||
"blue",
|
||||
@@ -3494,6 +3561,7 @@ export var domprops = [
|
||||
"bold",
|
||||
"bookmarks",
|
||||
"booleanValue",
|
||||
"boost",
|
||||
"border",
|
||||
"border-block",
|
||||
"border-block-color",
|
||||
@@ -3759,6 +3827,7 @@ export var domprops = [
|
||||
"characterData",
|
||||
"characterDataOldValue",
|
||||
"characterSet",
|
||||
"characterVariant",
|
||||
"characteristic",
|
||||
"charging",
|
||||
"chargingTime",
|
||||
@@ -3845,6 +3914,7 @@ export var domprops = [
|
||||
"closeCode",
|
||||
"closePath",
|
||||
"closed",
|
||||
"closedBy",
|
||||
"closest",
|
||||
"clz",
|
||||
"clz32",
|
||||
@@ -3902,11 +3972,13 @@ export var domprops = [
|
||||
"columnWidth",
|
||||
"columns",
|
||||
"command",
|
||||
"commandForElement",
|
||||
"commands",
|
||||
"commit",
|
||||
"commitLoadTime",
|
||||
"commitPreferences",
|
||||
"commitStyles",
|
||||
"committed",
|
||||
"commonAncestorContainer",
|
||||
"compact",
|
||||
"compare",
|
||||
@@ -3942,6 +4014,7 @@ export var domprops = [
|
||||
"coneOuterAngle",
|
||||
"coneOuterGain",
|
||||
"config",
|
||||
"configURL",
|
||||
"configurable",
|
||||
"configuration",
|
||||
"configurationName",
|
||||
@@ -3960,6 +4033,7 @@ export var domprops = [
|
||||
"connectStart",
|
||||
"connected",
|
||||
"connectedCallback",
|
||||
"connectedMoveCallback",
|
||||
"connection",
|
||||
"connectionInfo",
|
||||
"connectionList",
|
||||
@@ -4000,6 +4074,7 @@ export var domprops = [
|
||||
"contentBoxSize",
|
||||
"contentDocument",
|
||||
"contentEditable",
|
||||
"contentEncoding",
|
||||
"contentHint",
|
||||
"contentOverflow",
|
||||
"contentRect",
|
||||
@@ -4280,6 +4355,7 @@ export var domprops = [
|
||||
"decodedBodySize",
|
||||
"decoding",
|
||||
"decodingInfo",
|
||||
"decreaseZoomLevel",
|
||||
"decrypt",
|
||||
"default",
|
||||
"defaultCharset",
|
||||
@@ -4350,6 +4426,7 @@ export var domprops = [
|
||||
"deprecatedReplaceInURN",
|
||||
"deprecatedRunAdAuctionEnforcesKAnonymity",
|
||||
"deprecatedURNToURL",
|
||||
"depthActive",
|
||||
"depthBias",
|
||||
"depthBiasClamp",
|
||||
"depthBiasSlopeScale",
|
||||
@@ -4369,6 +4446,7 @@ export var domprops = [
|
||||
"depthStencilAttachment",
|
||||
"depthStencilFormat",
|
||||
"depthStoreOp",
|
||||
"depthType",
|
||||
"depthUsage",
|
||||
"depthWriteEnabled",
|
||||
"deref",
|
||||
@@ -4397,6 +4475,7 @@ export var domprops = [
|
||||
"deviceMemory",
|
||||
"devicePixelContentBoxSize",
|
||||
"devicePixelRatio",
|
||||
"devicePosture",
|
||||
"deviceProtocol",
|
||||
"deviceSubclass",
|
||||
"deviceVersionMajor",
|
||||
@@ -4436,6 +4515,8 @@ export var domprops = [
|
||||
"displayName",
|
||||
"displayWidth",
|
||||
"dispose",
|
||||
"disposeAsync",
|
||||
"disposed",
|
||||
"disposition",
|
||||
"distanceModel",
|
||||
"div",
|
||||
@@ -4457,6 +4538,7 @@ export var domprops = [
|
||||
"documentOrigins",
|
||||
"documentPictureInPicture",
|
||||
"documentURI",
|
||||
"documentURL",
|
||||
"documentUrl",
|
||||
"documentUrls",
|
||||
"dolphin",
|
||||
@@ -4643,7 +4725,9 @@ export var domprops = [
|
||||
"expandEntityReferences",
|
||||
"expando",
|
||||
"expansion",
|
||||
"expectedContextLanguages",
|
||||
"expectedImprovement",
|
||||
"expectedInputLanguages",
|
||||
"experiments",
|
||||
"expiration",
|
||||
"expirationTime",
|
||||
@@ -4686,6 +4770,7 @@ export var domprops = [
|
||||
"fence",
|
||||
"fenceSync",
|
||||
"fetch",
|
||||
"fetchLater",
|
||||
"fetchPriority",
|
||||
"fetchStart",
|
||||
"fftSize",
|
||||
@@ -4717,6 +4802,7 @@ export var domprops = [
|
||||
"filterResY",
|
||||
"filterUnits",
|
||||
"filters",
|
||||
"finalResponseHeadersStart",
|
||||
"finally",
|
||||
"find",
|
||||
"findIndex",
|
||||
@@ -4730,6 +4816,7 @@ export var domprops = [
|
||||
"finished",
|
||||
"fireEvent",
|
||||
"firesTouchEvents",
|
||||
"first",
|
||||
"firstChild",
|
||||
"firstElementChild",
|
||||
"firstInterimResponseStart",
|
||||
@@ -4754,6 +4841,7 @@ export var domprops = [
|
||||
"flexGrow",
|
||||
"flexShrink",
|
||||
"flexWrap",
|
||||
"flip",
|
||||
"flipX",
|
||||
"flipY",
|
||||
"float",
|
||||
@@ -4815,6 +4903,7 @@ export var domprops = [
|
||||
"fontVariantAlternates",
|
||||
"fontVariantCaps",
|
||||
"fontVariantEastAsian",
|
||||
"fontVariantEmoji",
|
||||
"fontVariantLigatures",
|
||||
"fontVariantNumeric",
|
||||
"fontVariantPosition",
|
||||
@@ -4844,6 +4933,7 @@ export var domprops = [
|
||||
"formatToParts",
|
||||
"forms",
|
||||
"forward",
|
||||
"forwardWheel",
|
||||
"forwardX",
|
||||
"forwardY",
|
||||
"forwardZ",
|
||||
@@ -4920,6 +5010,7 @@ export var domprops = [
|
||||
"getAdjacentText",
|
||||
"getAll",
|
||||
"getAllKeys",
|
||||
"getAllRecords",
|
||||
"getAllResponseHeaders",
|
||||
"getAllowlistForFeature",
|
||||
"getAnimations",
|
||||
@@ -4968,11 +5059,13 @@ export var domprops = [
|
||||
"getCharNumAtPosition",
|
||||
"getCharacteristic",
|
||||
"getCharacteristics",
|
||||
"getClientCapabilities",
|
||||
"getClientExtensionResults",
|
||||
"getClientRect",
|
||||
"getClientRects",
|
||||
"getCoalescedEvents",
|
||||
"getCompilationInfo",
|
||||
"getComposedRanges",
|
||||
"getCompositionAlternatives",
|
||||
"getComputedStyle",
|
||||
"getComputedTextLength",
|
||||
@@ -5096,6 +5189,8 @@ export var domprops = [
|
||||
"getNotifier",
|
||||
"getNumberOfChars",
|
||||
"getOffsetReferenceSpace",
|
||||
"getOrInsert",
|
||||
"getOrInsertComputed",
|
||||
"getOutputTimestamp",
|
||||
"getOverrideHistoryNavigationMode",
|
||||
"getOverrideStyle",
|
||||
@@ -5107,7 +5202,9 @@ export var domprops = [
|
||||
"getParameter",
|
||||
"getParameters",
|
||||
"getParent",
|
||||
"getPathData",
|
||||
"getPathSegAtLength",
|
||||
"getPathSegmentAtLength",
|
||||
"getPermissionWarningsByManifest",
|
||||
"getPhotoCapabilities",
|
||||
"getPhotoSettings",
|
||||
@@ -5189,6 +5286,7 @@ export var domprops = [
|
||||
"getSupportedConstraints",
|
||||
"getSupportedExtensions",
|
||||
"getSupportedFormats",
|
||||
"getSupportedZoomLevels",
|
||||
"getSyncParameter",
|
||||
"getSynchronizationSources",
|
||||
"getTags",
|
||||
@@ -5361,6 +5459,7 @@ export var domprops = [
|
||||
"highWaterMark",
|
||||
"highlight",
|
||||
"highlights",
|
||||
"highlightsFromPoint",
|
||||
"hint",
|
||||
"hints",
|
||||
"history",
|
||||
@@ -5382,6 +5481,7 @@ export var domprops = [
|
||||
"hwTimestamp",
|
||||
"hyphenate-character",
|
||||
"hyphenateCharacter",
|
||||
"hyphenateLimitChars",
|
||||
"hyphens",
|
||||
"hypot",
|
||||
"i18n",
|
||||
@@ -5435,6 +5535,7 @@ export var domprops = [
|
||||
"incomingHighWaterMark",
|
||||
"incomingMaxAge",
|
||||
"incomingUnidirectionalStreams",
|
||||
"increaseZoomLevel",
|
||||
"incremental",
|
||||
"indeterminate",
|
||||
"index",
|
||||
@@ -5512,6 +5613,7 @@ export var domprops = [
|
||||
"inputEncoding",
|
||||
"inputMethod",
|
||||
"inputMode",
|
||||
"inputQuota",
|
||||
"inputSource",
|
||||
"inputSources",
|
||||
"inputType",
|
||||
@@ -5541,6 +5643,7 @@ export var domprops = [
|
||||
"insetInline",
|
||||
"insetInlineEnd",
|
||||
"insetInlineStart",
|
||||
"inspect",
|
||||
"install",
|
||||
"installing",
|
||||
"instanceRoot",
|
||||
@@ -5551,9 +5654,11 @@ export var domprops = [
|
||||
"int32",
|
||||
"int8",
|
||||
"integrity",
|
||||
"interactionCount",
|
||||
"interactionId",
|
||||
"interactionMode",
|
||||
"intercept",
|
||||
"interestForElement",
|
||||
"interfaceClass",
|
||||
"interfaceName",
|
||||
"interfaceNumber",
|
||||
@@ -5603,6 +5708,7 @@ export var domprops = [
|
||||
"isEnabled",
|
||||
"isEqual",
|
||||
"isEqualNode",
|
||||
"isError",
|
||||
"isExtended",
|
||||
"isExtensible",
|
||||
"isExternalCTAP2SecurityKeySupported",
|
||||
@@ -5726,6 +5832,7 @@ export var domprops = [
|
||||
"language",
|
||||
"languages",
|
||||
"largeArcFlag",
|
||||
"last",
|
||||
"lastChild",
|
||||
"lastElementChild",
|
||||
"lastError",
|
||||
@@ -5958,6 +6065,7 @@ export var domprops = [
|
||||
"math-depth",
|
||||
"math-style",
|
||||
"mathDepth",
|
||||
"mathShift",
|
||||
"mathStyle",
|
||||
"matrix",
|
||||
"matrixTransform",
|
||||
@@ -6020,6 +6128,7 @@ export var domprops = [
|
||||
"maxWidth",
|
||||
"maximumLatency",
|
||||
"measure",
|
||||
"measureInputUsage",
|
||||
"measureText",
|
||||
"media",
|
||||
"mediaCapabilities",
|
||||
@@ -6081,6 +6190,7 @@ export var domprops = [
|
||||
"module",
|
||||
"mount",
|
||||
"move",
|
||||
"moveBefore",
|
||||
"moveBy",
|
||||
"moveEnd",
|
||||
"moveFirst",
|
||||
@@ -6424,6 +6534,7 @@ export var domprops = [
|
||||
"objectStoreNames",
|
||||
"objectType",
|
||||
"observe",
|
||||
"observedAttributes",
|
||||
"occlusionQuerySet",
|
||||
"of",
|
||||
"off",
|
||||
@@ -6554,6 +6665,7 @@ export var domprops = [
|
||||
"onclick",
|
||||
"onclose",
|
||||
"onclosing",
|
||||
"oncommand",
|
||||
"oncompassneedscalibration",
|
||||
"oncomplete",
|
||||
"oncompositionend",
|
||||
@@ -6591,6 +6703,7 @@ export var domprops = [
|
||||
"ondisplay",
|
||||
"ondispose",
|
||||
"ondownloading",
|
||||
"ondownloadprogress",
|
||||
"ondrag",
|
||||
"ondragend",
|
||||
"ondragenter",
|
||||
@@ -6867,6 +6980,7 @@ export var domprops = [
|
||||
"onwebkittransitionend",
|
||||
"onwheel",
|
||||
"onzoom",
|
||||
"onzoomlevelchange",
|
||||
"opacity",
|
||||
"open",
|
||||
"openCursor",
|
||||
@@ -6902,6 +7016,7 @@ export var domprops = [
|
||||
"originAgentCluster",
|
||||
"originalPolicy",
|
||||
"originalTarget",
|
||||
"ornaments",
|
||||
"orphans",
|
||||
"os",
|
||||
"oscpu",
|
||||
@@ -6922,8 +7037,10 @@ export var domprops = [
|
||||
"outlineWidth",
|
||||
"outputBuffer",
|
||||
"outputChannelCount",
|
||||
"outputLanguage",
|
||||
"outputLatency",
|
||||
"outputs",
|
||||
"overallProgress",
|
||||
"overflow",
|
||||
"overflow-anchor",
|
||||
"overflow-block",
|
||||
@@ -7012,6 +7129,7 @@ export var domprops = [
|
||||
"paint-order",
|
||||
"paintOrder",
|
||||
"paintRequests",
|
||||
"paintTime",
|
||||
"paintType",
|
||||
"paintWorklet",
|
||||
"palette",
|
||||
@@ -7053,6 +7171,7 @@ export var domprops = [
|
||||
"patternUnits",
|
||||
"pause",
|
||||
"pauseAnimations",
|
||||
"pauseDepthSensing",
|
||||
"pauseDuration",
|
||||
"pauseOnExit",
|
||||
"pauseProfilers",
|
||||
@@ -7085,6 +7204,8 @@ export var domprops = [
|
||||
"phoneticFamilyName",
|
||||
"phoneticGivenName",
|
||||
"photo",
|
||||
"phrase",
|
||||
"phrases",
|
||||
"pictureInPictureChild",
|
||||
"pictureInPictureElement",
|
||||
"pictureInPictureEnabled",
|
||||
@@ -7095,6 +7216,7 @@ export var domprops = [
|
||||
"pitch",
|
||||
"pixelBottom",
|
||||
"pixelDepth",
|
||||
"pixelFormat",
|
||||
"pixelHeight",
|
||||
"pixelLeft",
|
||||
"pixelRight",
|
||||
@@ -7165,6 +7287,9 @@ export var domprops = [
|
||||
"positionAlign",
|
||||
"positionAnchor",
|
||||
"positionArea",
|
||||
"positionTry",
|
||||
"positionTryFallbacks",
|
||||
"positionVisibility",
|
||||
"positionX",
|
||||
"positionY",
|
||||
"positionZ",
|
||||
@@ -7191,6 +7316,7 @@ export var domprops = [
|
||||
"presentation",
|
||||
"presentationArea",
|
||||
"presentationStyle",
|
||||
"presentationTime",
|
||||
"preserveAlpha",
|
||||
"preserveAspectRatio",
|
||||
"preserveAspectRatioString",
|
||||
@@ -7229,6 +7355,7 @@ export var domprops = [
|
||||
"probeSpace",
|
||||
"process",
|
||||
"processIceMessage",
|
||||
"processLocally",
|
||||
"processingEnd",
|
||||
"processingStart",
|
||||
"processorOptions",
|
||||
@@ -7241,6 +7368,7 @@ export var domprops = [
|
||||
"profiles",
|
||||
"projectionMatrix",
|
||||
"promise",
|
||||
"promising",
|
||||
"prompt",
|
||||
"properties",
|
||||
"propertyIsEnumerable",
|
||||
@@ -7285,6 +7413,7 @@ export var domprops = [
|
||||
"querySet",
|
||||
"queue",
|
||||
"queueMicrotask",
|
||||
"quota",
|
||||
"quote",
|
||||
"quotes",
|
||||
"r",
|
||||
@@ -7463,6 +7592,7 @@ export var domprops = [
|
||||
"reportError",
|
||||
"reportEvent",
|
||||
"reportId",
|
||||
"reportOnly",
|
||||
"reportValidity",
|
||||
"request",
|
||||
"requestAdapter",
|
||||
@@ -7498,6 +7628,7 @@ export var domprops = [
|
||||
"requestVideoFrameCallback",
|
||||
"requestViewportScale",
|
||||
"requestWindow",
|
||||
"requested",
|
||||
"requestingWindow",
|
||||
"requireInteraction",
|
||||
"required",
|
||||
@@ -7508,6 +7639,7 @@ export var domprops = [
|
||||
"resetLatency",
|
||||
"resetPose",
|
||||
"resetTransform",
|
||||
"resetZoomLevel",
|
||||
"resizable",
|
||||
"resize",
|
||||
"resizeBy",
|
||||
@@ -7532,14 +7664,17 @@ export var domprops = [
|
||||
"restartAfterDelay",
|
||||
"restartIce",
|
||||
"restore",
|
||||
"restrictTo",
|
||||
"result",
|
||||
"resultIndex",
|
||||
"resultType",
|
||||
"results",
|
||||
"resume",
|
||||
"resumeDepthSensing",
|
||||
"resumeProfilers",
|
||||
"resumeTransformFeedback",
|
||||
"retry",
|
||||
"returnType",
|
||||
"returnValue",
|
||||
"rev",
|
||||
"reverse",
|
||||
@@ -7738,12 +7873,14 @@ export var domprops = [
|
||||
"searchParams",
|
||||
"sectionRowIndex",
|
||||
"secureConnectionStart",
|
||||
"securePaymentConfirmationAvailability",
|
||||
"security",
|
||||
"seed",
|
||||
"seek",
|
||||
"seekToNextFrame",
|
||||
"seekable",
|
||||
"seeking",
|
||||
"segments",
|
||||
"select",
|
||||
"selectAllChildren",
|
||||
"selectAlternateInterface",
|
||||
@@ -7878,6 +8015,7 @@ export var domprops = [
|
||||
"setPaint",
|
||||
"setParameter",
|
||||
"setParameters",
|
||||
"setPathData",
|
||||
"setPeriodicWave",
|
||||
"setPipeline",
|
||||
"setPointerCapture",
|
||||
@@ -7976,6 +8114,7 @@ export var domprops = [
|
||||
"shapeOutside",
|
||||
"shapeRendering",
|
||||
"share",
|
||||
"sharedContext",
|
||||
"sharedStorage",
|
||||
"sharedStorageWritable",
|
||||
"sheet",
|
||||
@@ -8000,6 +8139,9 @@ export var domprops = [
|
||||
"sidebarAction",
|
||||
"sign",
|
||||
"signal",
|
||||
"signalAllAcceptedCredentials",
|
||||
"signalCurrentUserDetails",
|
||||
"signalUnknownCredential",
|
||||
"signalingState",
|
||||
"signature",
|
||||
"silent",
|
||||
@@ -8041,9 +8183,11 @@ export var domprops = [
|
||||
"sourceBuffers",
|
||||
"sourceCapabilities",
|
||||
"sourceCharPosition",
|
||||
"sourceElement",
|
||||
"sourceFile",
|
||||
"sourceFunctionName",
|
||||
"sourceIndex",
|
||||
"sourceLanguage",
|
||||
"sourceMap",
|
||||
"sourceURL",
|
||||
"sources",
|
||||
@@ -8184,8 +8328,12 @@ export var domprops = [
|
||||
"styleSheet",
|
||||
"styleSheetSets",
|
||||
"styleSheets",
|
||||
"styleset",
|
||||
"stylistic",
|
||||
"sub",
|
||||
"subarray",
|
||||
"subgroupMaxSize",
|
||||
"subgroupMinSize",
|
||||
"subject",
|
||||
"submit",
|
||||
"submitFrame",
|
||||
@@ -8198,6 +8346,9 @@ export var domprops = [
|
||||
"subtree",
|
||||
"suffix",
|
||||
"suffixes",
|
||||
"sumPrecise",
|
||||
"summarize",
|
||||
"summarizeStreaming",
|
||||
"summary",
|
||||
"sup",
|
||||
"supported",
|
||||
@@ -8208,6 +8359,7 @@ export var domprops = [
|
||||
"supportsFiber",
|
||||
"supportsSession",
|
||||
"supportsText",
|
||||
"suppressed",
|
||||
"surfaceScale",
|
||||
"surroundContents",
|
||||
"suspend",
|
||||
@@ -8220,7 +8372,9 @@ export var domprops = [
|
||||
"svw",
|
||||
"swapCache",
|
||||
"swapNode",
|
||||
"swash",
|
||||
"sweepFlag",
|
||||
"switchMap",
|
||||
"symbols",
|
||||
"symmetricDifference",
|
||||
"sync",
|
||||
@@ -8254,12 +8408,14 @@ export var domprops = [
|
||||
"take",
|
||||
"takePhoto",
|
||||
"takeRecords",
|
||||
"takeUntil",
|
||||
"tan",
|
||||
"tangentialPressure",
|
||||
"tanh",
|
||||
"target",
|
||||
"targetAddressSpace",
|
||||
"targetElement",
|
||||
"targetLanguage",
|
||||
"targetRayMode",
|
||||
"targetRaySpace",
|
||||
"targetTouches",
|
||||
@@ -8318,6 +8474,7 @@ export var domprops = [
|
||||
"textDecoration",
|
||||
"textDecorationBlink",
|
||||
"textDecorationColor",
|
||||
"textDecorationInset",
|
||||
"textDecorationLine",
|
||||
"textDecorationLineThrough",
|
||||
"textDecorationNone",
|
||||
@@ -8408,6 +8565,7 @@ export var domprops = [
|
||||
"toString",
|
||||
"toStringTag",
|
||||
"toSum",
|
||||
"toTemporalInstant",
|
||||
"toTimeString",
|
||||
"toUTCString",
|
||||
"toUpperCase",
|
||||
@@ -8479,6 +8637,7 @@ export var domprops = [
|
||||
"transitionTimingFunction",
|
||||
"translate",
|
||||
"translateSelf",
|
||||
"translateStreaming",
|
||||
"translationX",
|
||||
"translationY",
|
||||
"transport",
|
||||
@@ -8627,6 +8786,7 @@ export var domprops = [
|
||||
"usbVersionMajor",
|
||||
"usbVersionMinor",
|
||||
"usbVersionSubminor",
|
||||
"use",
|
||||
"useCurrentView",
|
||||
"useMap",
|
||||
"useProgram",
|
||||
@@ -8634,6 +8794,7 @@ export var domprops = [
|
||||
"user-select",
|
||||
"userActivation",
|
||||
"userAgent",
|
||||
"userAgentAllowsProtocol",
|
||||
"userAgentData",
|
||||
"userChoice",
|
||||
"userHandle",
|
||||
@@ -8717,6 +8878,8 @@ export var domprops = [
|
||||
"viewTarget",
|
||||
"viewTargetString",
|
||||
"viewTransition",
|
||||
"viewTransitionClass",
|
||||
"viewTransitionName",
|
||||
"viewport",
|
||||
"viewportAnchorX",
|
||||
"viewportAnchorY",
|
||||
@@ -8951,6 +9114,7 @@ export var domprops = [
|
||||
"wheelDelta",
|
||||
"wheelDeltaX",
|
||||
"wheelDeltaY",
|
||||
"when",
|
||||
"whenDefined",
|
||||
"which",
|
||||
"white-space",
|
||||
@@ -8978,6 +9142,10 @@ export var domprops = [
|
||||
"wordBreak",
|
||||
"wordSpacing",
|
||||
"wordWrap",
|
||||
"workerCacheLookupStart",
|
||||
"workerFinalSourceType",
|
||||
"workerMatchedSourceType",
|
||||
"workerRouterEvaluationStart",
|
||||
"workerStart",
|
||||
"worklet",
|
||||
"wow64",
|
||||
@@ -9022,5 +9190,6 @@ export var domprops = [
|
||||
"zIndex",
|
||||
"zoom",
|
||||
"zoomAndPan",
|
||||
"zoomLevel",
|
||||
"zoomRectScreen",
|
||||
];
|
||||
|
||||
14
node_modules/terser/tools/props.html
generated
vendored
14
node_modules/terser/tools/props.html
generated
vendored
@@ -49,7 +49,19 @@
|
||||
addObject(new Event("pointercancel"));
|
||||
addObject(new Event("pointerenter"));
|
||||
addObject(new Event("pointerleave"));
|
||||
} catch(ex) {}
|
||||
} catch(ex) {console.error(ex)}
|
||||
|
||||
try {
|
||||
addObject(Temporal.Duration.from({ years: 1 }));
|
||||
addObject(new Temporal.Instant());
|
||||
addObject(Temporal.Now);
|
||||
addObject(new Temporal.PlainDate(2021, 7, 1));
|
||||
addObject(new Temporal.ZonedDateTime(0n, "America/New_York"));
|
||||
addObject(new Temporal.PlainYearMonth(2021, 7));
|
||||
addObject(new Temporal.PlainTime());
|
||||
addObject(new Temporal.PlainMonthDay(7, 1));
|
||||
addObject(new Temporal.PlainDateTime(2021, 7, 1));
|
||||
} catch(ex) {console.error(ex)}
|
||||
|
||||
var ta = document.createElement("textarea");
|
||||
ta.style.width = "100%";
|
||||
|
||||
Reference in New Issue
Block a user