github.com/manicqin/nomad@v0.9.5/ui/app/components/freestyle/sg-boxed-section.js (about)

     1  import Component from '@ember/component';
     2  import { computed } from '@ember/object';
     3  
     4  export default Component.extend({
     5    variants: computed(() => [
     6      {
     7        key: 'Normal',
     8        title: 'Normal',
     9        slug: '',
    10      },
    11      {
    12        key: 'Info',
    13        title: 'Info',
    14        slug: 'is-info',
    15      },
    16      {
    17        key: 'Warning',
    18        title: 'Warning',
    19        slug: 'is-warning',
    20      },
    21      {
    22        key: 'Danger',
    23        title: 'Danger',
    24        slug: 'is-danger',
    25      },
    26    ]),
    27  });