2021-01-25 11:21:25 +00:00
|
|
|
import { widgetFactory } from 'https://cdn.skypack.dev/@startinblox/core@0.15';
|
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}"
|
|
|
|
>`
|
|
|
|
);
|
|
|
|
|
|
|
|
export { HublSearchUsers }
|