@v4fire/client
Version:
V4Fire client core library
36 lines (28 loc) • 658 B
text/typescript
/*!
* V4Fire Client Core
* https://github.com/V4Fire/Client
*
* Released under the MIT license
* https://github.com/V4Fire/Client/blob/master/LICENSE
*/
/**
* [[include:form/b-input-hidden/README.md]]
* @packageDocumentation
*/
//#if demo
import 'models/demo/input';
//#endif
import iInput, { component } from 'super/i-input/i-input';
export * from 'super/i-input/i-input';
/**
* Component to create a hidden input
*/
({
functional: {
dataProvider: undefined
}
})
export default class bInputHidden extends iInput {
override readonly rootTag: string = 'span';
protected override readonly $refs!: {input: HTMLInputElement};
}