@webref/idl 3.64.2 → 3.65.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/dom.idl +1 -1
- package/html.idl +1 -1
- package/package.json +1 -1
- package/pointer-animations.idl +23 -0
- package/secure-payment-confirmation.idl +20 -1
package/dom.idl
CHANGED
|
@@ -324,7 +324,7 @@ dictionary ImportNodeOptions {
|
|
|
324
324
|
|
|
325
325
|
[Exposed=Window]
|
|
326
326
|
interface DOMImplementation {
|
|
327
|
-
[NewObject] DocumentType createDocumentType(DOMString
|
|
327
|
+
[NewObject] DocumentType createDocumentType(DOMString name, DOMString publicId, DOMString systemId);
|
|
328
328
|
[NewObject] XMLDocument createDocument(DOMString? namespace, [LegacyNullToEmptyString] DOMString qualifiedName, optional DocumentType? doctype = null);
|
|
329
329
|
[NewObject] Document createHTMLDocument(optional DOMString title);
|
|
330
330
|
|
package/html.idl
CHANGED
|
@@ -1695,7 +1695,7 @@ interface ToggleEvent : Event {
|
|
|
1695
1695
|
constructor(DOMString type, optional ToggleEventInit eventInitDict = {});
|
|
1696
1696
|
readonly attribute DOMString oldState;
|
|
1697
1697
|
readonly attribute DOMString newState;
|
|
1698
|
-
readonly attribute Element source;
|
|
1698
|
+
readonly attribute Element? source;
|
|
1699
1699
|
};
|
|
1700
1700
|
|
|
1701
1701
|
dictionary ToggleEventInit : EventInit {
|
package/package.json
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: Pointer-driven Animations (https://drafts.csswg.org/pointer-animations-1/)
|
|
5
|
+
|
|
6
|
+
enum PointerAxis {
|
|
7
|
+
"block",
|
|
8
|
+
"inline",
|
|
9
|
+
"x",
|
|
10
|
+
"y"
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
dictionary PointerTimelineOptions {
|
|
14
|
+
Element? source;
|
|
15
|
+
PointerAxis axis = "block";
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
[Exposed=Window]
|
|
19
|
+
interface PointerTimeline : AnimationTimeline {
|
|
20
|
+
constructor(optional PointerTimelineOptions options = {});
|
|
21
|
+
readonly attribute Element? source;
|
|
22
|
+
readonly attribute PointerAxis axis;
|
|
23
|
+
};
|
|
@@ -13,6 +13,7 @@ dictionary SecurePaymentConfirmationRequest {
|
|
|
13
13
|
USVString payeeOrigin;
|
|
14
14
|
sequence<PaymentEntityLogo> paymentEntitiesLogos;
|
|
15
15
|
AuthenticationExtensionsClientInputs extensions;
|
|
16
|
+
sequence<PublicKeyCredentialParameters> browserBoundPubKeyCredParams;
|
|
16
17
|
sequence<USVString> locale;
|
|
17
18
|
boolean showOptOut;
|
|
18
19
|
};
|
|
@@ -35,6 +36,7 @@ partial dictionary AuthenticationExtensionsClientInputs {
|
|
|
35
36
|
|
|
36
37
|
dictionary AuthenticationExtensionsPaymentInputs {
|
|
37
38
|
boolean isPayment;
|
|
39
|
+
sequence<PublicKeyCredentialParameters> browserBoundPubKeyCredParams;
|
|
38
40
|
|
|
39
41
|
// Only used for authentication.
|
|
40
42
|
USVString rpId;
|
|
@@ -46,8 +48,20 @@ dictionary AuthenticationExtensionsPaymentInputs {
|
|
|
46
48
|
PaymentCredentialInstrument instrument;
|
|
47
49
|
};
|
|
48
50
|
|
|
51
|
+
partial dictionary AuthenticationExtensionsClientOutputs {
|
|
52
|
+
AuthenticationExtensionsPaymentOutputs payment;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
dictionary AuthenticationExtensionsPaymentOutputs {
|
|
56
|
+
BrowserBoundSignature browserBoundSignature;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
dictionary BrowserBoundSignature {
|
|
60
|
+
required ArrayBuffer signature;
|
|
61
|
+
};
|
|
62
|
+
|
|
49
63
|
dictionary CollectedClientPaymentData : CollectedClientData {
|
|
50
|
-
required CollectedClientAdditionalPaymentData payment;
|
|
64
|
+
required (CollectedClientAdditionalPaymentData or CollectedClientAdditionalPaymentRegistrationData) payment;
|
|
51
65
|
};
|
|
52
66
|
|
|
53
67
|
dictionary CollectedClientAdditionalPaymentData {
|
|
@@ -58,6 +72,11 @@ dictionary CollectedClientAdditionalPaymentData {
|
|
|
58
72
|
sequence<PaymentEntityLogo> paymentEntitiesLogos;
|
|
59
73
|
required PaymentCurrencyAmount total;
|
|
60
74
|
required PaymentCredentialInstrument instrument;
|
|
75
|
+
USVString browserBoundPublicKey;
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
dictionary CollectedClientAdditionalPaymentRegistrationData {
|
|
79
|
+
USVString browserBoundPublicKey;
|
|
61
80
|
};
|
|
62
81
|
|
|
63
82
|
dictionary PaymentCredentialInstrument {
|