2021-02-22 20:27:58 +00:00
|
|
|
import {
|
|
|
|
widgetFactory
|
2021-03-16 14:27:30 +00:00
|
|
|
} from 'https://cdn.skypack.dev/@startinblox/core@0.16';
|
2020-05-20 14:42:11 +00:00
|
|
|
|
|
|
|
const HublSearchUsers = widgetFactory(
|
|
|
|
'hubl-search-users',
|
|
|
|
`<input
|
|
|
|
data-holder
|
|
|
|
autocomplete="off"
|
2020-08-24 11:40:35 +00:00
|
|
|
placeholder="\${label} (^ + K)"
|
2020-05-20 14:42:11 +00:00
|
|
|
type="text"
|
|
|
|
name="\${name}"
|
|
|
|
value="\${escapedValue}"
|
|
|
|
>`
|
|
|
|
);
|
|
|
|
|
2021-02-22 20:27:58 +00:00
|
|
|
export {
|
|
|
|
HublSearchUsers
|
|
|
|
}
|