igniteui-webcomponents
Version:
Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
14 lines (13 loc) • 810 B
TypeScript
import type { LitElement } from 'lit';
import type { Constructor } from '../constructor.js';
import type { FormAssociatedCheckboxElementInterface, FormAssociatedElementInterface, FormRequiredInterface } from './types.js';
/**
* Mixes the passed class into a form associated custom element with an
* additional `required` attribute.
*/
export declare function FormAssociatedRequiredMixin<T extends Constructor<LitElement>>(base: T): Constructor<FormRequiredInterface & FormAssociatedElementInterface> & T;
/**
* Mixes the passed class into a form associated custom element with an
* additional `required` attribute.
*/
export declare function FormAssociatedCheckboxRequiredMixin<T extends Constructor<LitElement>>(base: T): Constructor<FormRequiredInterface & FormAssociatedCheckboxElementInterface> & T;