-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.ts
More file actions
26 lines (25 loc) · 1.34 KB
/
index.ts
File metadata and controls
26 lines (25 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { ItemInfo } from '@/common/components/gallery/components/model';
export const mockWidgetCollection: ItemInfo[] = [
{ thumbnailSrc: '/widgets/button.svg', type: 'button' },
{ thumbnailSrc: '/widgets/checkbox.svg', type: 'checkbox' },
{ thumbnailSrc: '/widgets/combobox.svg', type: 'combobox' },
{ thumbnailSrc: '/widgets/datepicker.svg', type: 'datepickerinput' },
{
thumbnailSrc: '/widgets/horizontalscrollbar.svg',
type: 'horizontalScrollBar',
},
{ thumbnailSrc: '/widgets/icon.svg', type: 'icon' },
{ thumbnailSrc: '/widgets/input.svg', type: 'input' },
{ thumbnailSrc: '/widgets/label.svg', type: 'label' },
{ thumbnailSrc: '/widgets/listbox.svg', type: 'listbox' },
{ thumbnailSrc: '/widgets/progressbar.svg', type: 'progressbar' },
{ thumbnailSrc: '/widgets/radiobutton.svg', type: 'radiobutton' },
{ thumbnailSrc: '/widgets/chip.svg', type: 'chip' },
{ thumbnailSrc: '/widgets/slider.svg', type: 'slider' },
{ thumbnailSrc: '/widgets/textarea.svg', type: 'textarea' },
{ thumbnailSrc: '/widgets/timepicker.svg', type: 'timepickerinput' },
{ thumbnailSrc: '/widgets/toggleswitch.svg', type: 'toggleswitch' },
{ thumbnailSrc: '/widgets/tooltip.svg', type: 'tooltip' },
{ thumbnailSrc: '/widgets/verticalscrollbar.svg', type: 'verticalScrollBar' },
{ thumbnailSrc: '/icons/cursor.svg', type: 'mousecursor' },
];