-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.ts
More file actions
51 lines (50 loc) · 1.87 KB
/
index.ts
File metadata and controls
51 lines (50 loc) · 1.87 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { ItemInfo } from '@/common/components/gallery/components/model';
export const mockRichComponentsCollection: ItemInfo[] = [
{ thumbnailSrc: '/rich-components/accordion.svg', type: 'accordion' },
{ thumbnailSrc: '/rich-components/appBar.svg', type: 'appBar' },
{ thumbnailSrc: '/rich-components/audioPlayer.svg', type: 'audioPlayer' },
{ thumbnailSrc: '/rich-components/barchart.svg', type: 'bar' },
{ thumbnailSrc: '/rich-components/breadcrumb.svg', type: 'breadcrumb' },
{ thumbnailSrc: '/rich-components/button-bar-group.svg', type: 'buttonBar' },
{ thumbnailSrc: '/rich-components/calendar.svg', type: 'calendar' },
{
thumbnailSrc: '/rich-components/horizontal-menu.svg',
type: 'horizontal-menu',
},
{
thumbnailSrc: '/rich-components/vertical-menu.svg',
type: 'vertical-menu',
},
{ thumbnailSrc: '/rich-components/modal.svg', type: 'modal' },
{ thumbnailSrc: '/rich-components/line-chart.svg', type: 'linechart' },
{
thumbnailSrc: '/rich-components/loading-indicator.svg',
type: 'loading-indicator',
},
{ thumbnailSrc: '/rich-components/map.svg', type: 'map' },
{
thumbnailSrc: '/rich-components/gauge.svg',
type: 'gauge',
},
{ thumbnailSrc: '/rich-components/pie.svg', type: 'pie' },
{ thumbnailSrc: '/rich-components/table.svg', type: 'table' },
{ thumbnailSrc: '/rich-components/tabsbar.svg', type: 'tabsBar' },
{ thumbnailSrc: '/widgets/togglelightdark.svg', type: 'toggleLightDark' },
{ thumbnailSrc: '/rich-components/videoPlayer.svg', type: 'videoPlayer' },
{
thumbnailSrc: '/rich-components/videoconference.svg',
type: 'videoconference',
},
{
thumbnailSrc: '/rich-components/fab-button.svg',
type: 'fabButton',
},
{
thumbnailSrc: '/rich-components/file-tree.svg',
type: 'fileTree',
},
{
thumbnailSrc: '/rich-components/input-stepper.svg',
type: 'input-stepper',
},
];