2021-09-03 10:46:32 +02:00
|
|
|
import SingleSelectComponent from "select-kit/components/single-select";
|
|
|
|
|
|
|
|
export default SingleSelectComponent.extend({
|
2021-09-24 11:58:42 +02:00
|
|
|
classNames: ["combo-box", "wizard-subscription-selector"],
|
2021-09-03 10:46:32 +02:00
|
|
|
|
|
|
|
selectKitOptions: {
|
|
|
|
autoFilterable: false,
|
|
|
|
filterable: false,
|
|
|
|
showFullTitle: true,
|
2021-10-19 14:49:06 +02:00
|
|
|
headerComponent:
|
|
|
|
"wizard-subscription-selector/wizard-subscription-selector-header",
|
2021-09-03 10:46:32 +02:00
|
|
|
caretUpIcon: "caret-up",
|
2021-09-07 14:13:01 +02:00
|
|
|
caretDownIcon: "caret-down",
|
2021-09-03 10:46:32 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
modifyComponentForRow() {
|
2021-09-24 11:58:42 +02:00
|
|
|
return "wizard-subscription-selector/wizard-subscription-selector-row";
|
2021-09-07 14:13:01 +02:00
|
|
|
},
|
|
|
|
});
|