@sproutsocial/seeds-react-menu 1.11.2 → 1.11.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -105,6 +105,11 @@ const generateBooks = (count: number): Book[] => {
105
105
 
106
106
  export const largeBookSet = generateBooks(1000);
107
107
 
108
+ export const booksWithDisabled: Book[] = books.map((book) => ({
109
+ ...book,
110
+ disabled: book.id === "book-3" || book.id === "book-7",
111
+ }));
112
+
108
113
  export const itemToString = (item: Book | null) => item?.title ?? "";
109
114
 
110
115
  export const renderItem = (item: Book) => (