We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1114a1 commit 2efd060Copy full SHA for 2efd060
src/components/button/button-base.ts
@@ -87,6 +87,8 @@ export abstract class IgcButtonBaseComponent extends EventEmitterMixin<
87
this.toggleAttribute('disabled', Boolean(this._disabled));
88
}
89
90
+ /* blazorCSSuppress */
91
+ /* alternateType: object */
92
/** Returns the HTMLFormElement associated with this element. */
93
public get form() {
94
return this.__internals.form;
src/components/common/validators.ts
@@ -11,6 +11,7 @@ import {
11
type ValidatorHandler<T> = (host: T) => boolean;
12
type ValidatorMessageFormat<T> = (host: T) => string;
13
14
+/** @ignore */
15
export interface Validator<T = any> {
16
key: keyof ValidityStateFlags;
17
message: string | ValidatorMessageFormat<T>;
0 commit comments