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