@webref/idl 3.71.1 → 3.72.1
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/autofill-event.idl +22 -0
- package/crash-reporting.idl +12 -0
- package/credential-management.idl +0 -1
- package/css-mixins.idl +26 -0
- package/package.json +1 -1
- package/real-world-meshing.idl +1 -1
- package/serial.idl +2 -2
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: Autofill Event (https://wicg.github.io/autofill-event/)
|
|
5
|
+
|
|
6
|
+
[Exposed=Window]
|
|
7
|
+
interface AutofillEvent : Event {
|
|
8
|
+
constructor(DOMString type, optional AutofillEventInit eventInitDict = {});
|
|
9
|
+
readonly attribute FrozenArray<AutofillValueEntry> autofillValues;
|
|
10
|
+
readonly attribute RefillCallback? refill;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
callback RefillCallback = Promise<undefined> ();
|
|
14
|
+
|
|
15
|
+
dictionary AutofillEventInit : EventInit {
|
|
16
|
+
sequence<AutofillValueEntry> autofillValues = [];
|
|
17
|
+
boolean allowRefill = true;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
typedef sequence<any> AutofillValueEntry;
|
|
21
|
+
// AutofillValueEntry is a tuple of [HTMLElement, DOMString]
|
|
22
|
+
// where the first element is the form control and the second is the value to fill
|
package/crash-reporting.idl
CHANGED
|
@@ -8,4 +8,16 @@ dictionary CrashReportBody : ReportBody {
|
|
|
8
8
|
DOMString stack;
|
|
9
9
|
boolean is_top_level;
|
|
10
10
|
DocumentVisibilityState visibility_state;
|
|
11
|
+
object crash_report_api;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
partial interface Window {
|
|
15
|
+
readonly attribute CrashReportContext crashReport;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
[Exposed=Window]
|
|
19
|
+
interface CrashReportContext {
|
|
20
|
+
Promise<undefined> initialize(unsigned long long length);
|
|
21
|
+
undefined set(DOMString key, DOMString value);
|
|
22
|
+
undefined delete(DOMString key);
|
|
11
23
|
};
|
package/css-mixins.idl
CHANGED
|
@@ -25,3 +25,29 @@ interface CSSFunctionDescriptors : CSSStyleDeclaration {
|
|
|
25
25
|
interface CSSFunctionDeclarations : CSSRule {
|
|
26
26
|
[SameObject, PutForwards=cssText] readonly attribute CSSFunctionDescriptors style;
|
|
27
27
|
};
|
|
28
|
+
|
|
29
|
+
[Exposed=Window]
|
|
30
|
+
interface CSSMixinRule : CSSGroupingRule {
|
|
31
|
+
readonly attribute CSSOMString name;
|
|
32
|
+
sequence<FunctionParameter> getParameters();
|
|
33
|
+
readonly attribute boolean contents;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
[Exposed=Window]
|
|
37
|
+
interface CSSApplyBlockRule : CSSGroupingRule {
|
|
38
|
+
readonly attribute CSSOMString name;
|
|
39
|
+
sequence<CSSOMString> getArguments();
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
[Exposed=Window]
|
|
43
|
+
interface CSSApplyStatementRule : CSSRule {
|
|
44
|
+
|
|
45
|
+
readonly attribute CSSOMString name;
|
|
46
|
+
sequence<CSSOMString> getArguments();
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
[Exposed=Window]
|
|
50
|
+
interface CSSContentsBlockRule : CSSGroupingRule { };
|
|
51
|
+
|
|
52
|
+
[Exposed=Window]
|
|
53
|
+
interface CSSContentsStatementRule : CSSRule { };
|
package/package.json
CHANGED
package/real-world-meshing.idl
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[Exposed=Window] interface XRMesh {
|
|
7
7
|
[SameObject] readonly attribute XRSpace meshSpace;
|
|
8
8
|
|
|
9
|
-
readonly attribute
|
|
9
|
+
readonly attribute Float32Array vertices;
|
|
10
10
|
readonly attribute Uint32Array indices;
|
|
11
11
|
readonly attribute DOMHighResTimeStamp lastChangedTime;
|
|
12
12
|
readonly attribute DOMString? semanticLabel;
|
package/serial.idl
CHANGED
|
@@ -37,8 +37,8 @@ interface SerialPort : EventTarget {
|
|
|
37
37
|
attribute EventHandler onconnect;
|
|
38
38
|
attribute EventHandler ondisconnect;
|
|
39
39
|
readonly attribute boolean connected;
|
|
40
|
-
readonly attribute ReadableStream readable;
|
|
41
|
-
readonly attribute WritableStream writable;
|
|
40
|
+
readonly attribute ReadableStream? readable;
|
|
41
|
+
readonly attribute WritableStream? writable;
|
|
42
42
|
|
|
43
43
|
SerialPortInfo getInfo();
|
|
44
44
|
|