data()

in src/components/base/new_dropdowns/listbox/listbox.stories.js [841:857]


  data() {
    return {
      selected: mockOptions[1].value,
      items: [
        {
          text: 'People',
          options: [{ text: 'John Smith', value: 'John Smith' }],
        },
        {
          text: 'Departments',
          options: departmentsPage1,
        },
      ],
      infiniteScrollLoading: false,
      infiniteScroll: true,
    };
  },