You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** If true, this means the parent <form> is pending submission. Otherwise, false. */
pending: bool,
/** An object implementing the FormData interface that contains the data the parent <form> is submitting. If there is no active submission or no parent <form>, it will be null. */
data: FormData.t,
/** This represents whether the parent <form> is submitting with either a GET or POST HTTP method. By default, a <form> will use the GET method and can be specified by the method property. */
method: [#get | #post],
/** A reference to the function passed to the action prop on the parent <form>. If there is no parent <form>, the property is null. If there is a URI value provided to the action prop, or no action prop specified, status.action will be null. */
/** Required with stylesheets. Says where to insert the stylesheet relative to others. Stylesheets with higher precedence can override those with lower precedence. */
precedence?: [#reset | #low | #medium | #high],
/** The CORS policy to use. It is required when as is set to "fetch". */
crossOrigin?: crossOrigin,
/** The Referrer header to send when fetching. */
referrerPolicy?: referrerPolicy,
/** A cryptographic hash of the resource, to verify its authenticity. */
integrity?: string,
nonce?: string,
/** Suggests a relative priority for fetching the resource. */
fetchPriority?: fetchPriority,
}
/** `preinit` lets you eagerly fetch and evaluate a stylesheet or external script. */