19 lines
332 B
JavaScript
19 lines
332 B
JavaScript
import {
|
|
widgetFactory
|
|
} from 'https://cdn.skypack.dev/@startinblox/core@0.16';
|
|
|
|
const HublSearchUsers = widgetFactory(
|
|
'hubl-search-users',
|
|
`<input
|
|
data-holder
|
|
autocomplete="off"
|
|
placeholder="\${label} (^ + K)"
|
|
type="text"
|
|
name="\${name}"
|
|
value="\${escapedValue}"
|
|
>`
|
|
);
|
|
|
|
export {
|
|
HublSearchUsers
|
|
} |