mirror of https://github.com/status-im/consul.git
16 lines
332 B
JavaScript
16 lines
332 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
export default (clickable, collection) =>
|
|
(scope = '.popover-select') => {
|
|
return {
|
|
scope: scope,
|
|
selected: clickable('button'),
|
|
options: collection('li[role="none"]', {
|
|
button: clickable('button'),
|
|
}),
|
|
};
|
|
};
|