mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-04 17:04:59 +03:00
0106a21e3c
closes https://github.com/TryGhost/Ghost/issues/6458 - swap `ember-sortable` for `ember-drag-drop` in navigation UI - extract PSM tag input into new `{{gh-psm-tags-input}}` - add new `{{gh-token-input}}` that wraps `ember-power-select` and `ember-drag-drop` to replicate the previous selectize based tags input - enhance `{{gh-psm-tags-input}}` behaviour to highlight selected primary tag and show "primary/internal" in selected tag titles - 🔥 remove `selectize` - 🔥 remove `jquery-ui` - 🔥 remove unused `{{gh-navigation}}` component
10 lines
284 B
JavaScript
10 lines
284 B
JavaScript
// NOTE: This is only here because we wanted to override the `eventType` attr.
|
|
// DO NOT add any functionality here, this will hopefully disappear after an
|
|
// upstream PR
|
|
|
|
import PowerSelect from 'ember-power-select/components/power-select';
|
|
|
|
export default PowerSelect.extend({
|
|
|
|
});
|