forked from patternfly/patternfly-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Demos.ts
811 lines (808 loc) · 19.9 KB
/
Demos.ts
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
import * as Examples from './components/demos';
interface DemoInterface {
/** ID for the demo, it will be used to help generate general ids to help with testing */
id: string;
/** The name of the demo */
name: string;
/** Demo component associated with the demo */
componentType: any;
}
/** Add the name of the demo and it's component here to have them show up in the demo app */
export const Demos: DemoInterface[] = [
{
id: 'about-modal-demo',
name: 'About Modal Demo',
componentType: Examples.AboutModalDemo
},
{
id: 'accordion-demo',
name: 'Accordion Demo',
componentType: Examples.AccordionDemo
},
{
id: 'action-list-demo',
name: 'Action List Demo',
componentType: Examples.ActionListDemo
},
{
id: 'alert-timeout-close-button-demo',
name: 'Alert Timeout Close Button Demo',
componentType: Examples.AlertTimeoutCloseButtonDemo
},
{
id: 'alert-demo',
name: 'Alert Demo',
componentType: Examples.AlertDemo
},
{
id: 'alert-group-demo',
name: 'Alert Group Demo',
componentType: Examples.AlertGroupDemo
},
{
id: 'alert-custom-timeout-demo',
name: 'Alert Custom Timeout Demo',
componentType: Examples.AlertCustomTimeoutDemo
},
{
id: 'alert-default-timeout-demo',
name: 'Alert Default Timeout Demo',
componentType: Examples.AlertDefaultTimeoutDemo
},
{
id: 'application-launcher-demo',
name: 'Application Launcher Demo',
componentType: Examples.ApplicationLauncherDemo
},
{
id: 'application-launcher-favorites-demo',
name: 'Application Launcher Favorites Demo',
componentType: Examples.ApplicationLauncherFavoritesDemo
},
{
id: 'area-chart-color-demo',
name: 'Area Chart Color with Bottom Legend Demo',
componentType: Examples.ColorAreaBottomLegendDemo
},
{
id: 'area-chart-cyan-demo',
name: 'Area Chart Cyan Demo',
componentType: Examples.CyanAreaDemo
},
{
id: 'sparkline-chart-demo',
name: 'Area Sparkline Chart Demo',
componentType: Examples.SparklineDemo
},
{
id: 'stacked-area-chart-demo',
name: 'Area Stacked Chart Demo',
componentType: Examples.StackedAreaDemo
},
{
id: 'avatar-demo',
name: 'Avatar Demo',
componentType: Examples.AvatarDemo
},
{
id: 'backdrop-demo',
name: 'Backdrop Demo',
componentType: Examples.BackdropDemo
},
{
id: 'backgroundimage-demo',
name: 'Background Image Demo',
componentType: Examples.BackgroundImageDemo
},
{
id: 'badge-demo',
name: 'Badge Demo',
componentType: Examples.BadgeDemo
},
{
id: 'banner-demo',
name: 'Banner Demo',
componentType: Examples.BannerDemo
},
{
id: 'purple-bar-grouped-demo',
name: 'Bar Chart Grouped Purple Demo',
componentType: Examples.PurpleBarGroupedDemo
},
{
id: 'color-bar-zoom-demo',
name: 'Bar Chart Multi-color, horizontal with Zoom and Bottom-aligned Legend Demo',
componentType: Examples.ColorBarZoomDemo
},
{
id: 'bar-chart-simple-demo',
name: 'Bar Chart Simple Demo',
componentType: Examples.SimpleBarDemo
},
{
id: 'brand-demo',
name: 'Brand Demo',
componentType: Examples.BrandDemo
},
{
id: 'breadcrumb-demo',
name: 'Breadcrumb Demo',
componentType: Examples.BreadcrumbDemo
},
{
id: 'bullseye-demo',
name: 'Bullseye Demo',
componentType: Examples.BullseyeDemo
},
{
id: 'button-demo',
name: 'Button Demo',
componentType: Examples.ButtonDemo
},
{
id: 'card-demo',
name: 'Card Demo',
componentType: Examples.CardDemo
},
{
id: 'checkbox-demo',
name: 'Checkbox Demo',
componentType: Examples.CheckboxDemo
},
{
id: 'chipgroup-demo',
name: 'ChipGroup Demo',
componentType: Examples.ChipGroupDemo
},
{
id: 'chipgroup-default-is-open-demo',
name: 'ChipGroup Default is Open Demo',
componentType: Examples.ChipGroupDefaultIsOpenDemo
},
{
id: 'chipgroup-with-category-demo',
name: 'ChipGroup With Category Demo',
componentType: Examples.ChipWithCategoryGroupDemo
},
{
id: 'clipboard-copy-demo',
name: 'ClipboardCopy Demo',
componentType: Examples.ClipboardCopyDemo
},
{
id: 'clipboard-copy-expanded-demo',
name: 'ClipboardCopy Expanded Demo',
componentType: Examples.ClipboardCopyExpandedDemo
},
{
id: 'consoles-demo',
name: 'Consoles Demo',
componentType: Examples.ConsolesDemo
},
{
id: 'context-selector-demo',
name: 'ContextSelector Demo',
componentType: Examples.ContextSelectorDemo
},
{
id: 'data-list-demo',
name: 'Data List Demo',
componentType: Examples.DataListDemo
},
{
id: 'data-list-draggable-demo',
name: 'Data List Draggable Demo',
componentType: Examples.DataListDraggableDemo
},
{
id: 'data-list-compact-demo',
name: 'Data List Compact Demo',
componentType: Examples.DataListCompactDemo
},
{
id: 'description-list-demo',
name: 'Description List Demo',
componentType: Examples.DescriptionListDemo
},
{
id: 'description-list-breakpoints-demo',
name: 'Description List Breakpoints Demo',
componentType: Examples.DescriptionListBreakpointsDemo
},
{
id: 'divider-demo',
name: 'Divider Demo',
componentType: Examples.DividerDemo
},
{
id: 'divider-inset-demo',
name: 'Divider Inset Demo',
componentType: Examples.DividerInsetDemo
},
{
id: 'donut-chart-bottom-legend-demo',
name: 'Donut Chart with Bottom Aligned Legend Demo',
componentType: Examples.DonutBottomAlignedLegendDemo
},
{
id: 'donut-chart-small-bottom-legend-demo',
name: 'Donut Chart Small with Bottom Aligned Legend Demo',
componentType: Examples.DonutSmallBottomAlignedLegend
},
{
id: 'donut-chart-small-demo',
name: 'Donut Chart Small Demo',
componentType: Examples.DonutSmallDemo
},
{
id: 'donut-chart-small-right-legend-demo',
name: 'Donut Chart Small with Right Aligned Legend Demo',
componentType: Examples.DonutSmallRightAlignedLegendDemo
},
{
id: 'donut-chart-right-legend-color-demo',
name: 'Donut Chart Multi-colored with Right Aligned Legend Demo',
componentType: Examples.DonutRightAlignedLegendColorDemo
},
{
id: 'donut-chart-right-legend-demo',
name: 'Donut Chart with Right Aligned Legend Demo',
componentType: Examples.DonutRightAlignedLegendDemo
},
{
id: 'donut-utilization-green-static-right-demo',
name: 'Donut Utilization Green Static Right Demo',
componentType: Examples.DonutUtilizationGreenStaticRightDemo
},
{
id: 'donut-utilization-inverted-right-demo',
name: 'Donut Utilization Inverted Right Demo',
componentType: Examples.DonutUtilizationInvertedRightDemo
},
{
id: 'donut-utilization-simple-bottom-demo',
name: 'Donut Utilization Simple Chart, Bottom-aligned Legend Demo',
componentType: Examples.DonutUtilizationSimpleBottomDemo
},
{
id: 'donut-utilization-simple-demo',
name: 'Donut Utilization Simple Chart Demo',
componentType: Examples.DonutUtilizationSimpleDemo
},
{
id: 'donut-utilization-simple-right-demo',
name: 'Donut Utilization Simple Right Demo',
componentType: Examples.DonutUtilizationSimpleRightDemo
},
{
id: 'donut-utilization-simple-right-green-demo',
name: 'Donut Utilization Simple Right Green Demo',
componentType: Examples.DonutUtilizationSimpleRightGreenDemo
},
{
id: 'donut-utilization-sm-demo',
name: 'Donut Utilization Small Demo',
componentType: Examples.DonutUtilizationSmallDemo
},
{
id: 'donut-utilization-sm-right-demo',
name: 'Donut Utilization Small Right Demo',
componentType: Examples.DonutUtilizationSmallRightDemo
},
{
id: 'donut-utilization-sm-static-bottom-demo',
name: 'Donut Utilization Small Static Bottom Demo',
componentType: Examples.DonutUtilizationSmallStaticBottomDemo
},
{
id: 'donut-utilization-sm-static-demo',
name: 'Donut Utilization Small Static Demo',
componentType: Examples.DonutUtilizationSmallStaticDemo
},
{
id: 'donut-utilization-sm-static-right-demo',
name: 'Donut Utilization Small Static Right Demo',
componentType: Examples.DonutUtilizationSmallStaticRightDemo
},
{
id: 'donut-utilization-static-bottom-demo',
name: 'Donut Utilization Static Bottom Demo',
componentType: Examples.DonutUtilizationStaticBottomDemo
},
{
id: 'donut-utilization-static-demo',
name: 'Donut Utilization Static Demo',
componentType: Examples.DonutUtilizationStaticDemo
},
{
id: 'donut-utilization-static-inverted-right-demo',
name: 'Donut Utilization Static Inverted Right Demo',
componentType: Examples.DonutUtilizationStaticInvertedRightDemo
},
{
id: 'donut-utilization-static-right-demo',
name: 'Donut Utilization Static Right Demo',
componentType: Examples.DonutUtilizationStaticRightDemo
},
{
id: 'drawer-demo',
name: 'Drawer Demo',
componentType: Examples.DrawerDemo
},
{
id: 'dropdown-demo',
name: 'Dropdown Demo',
componentType: Examples.DropdownDemo
},
{
id: 'dual-list-selector-basic-demo',
name: 'DualListSelector basic Demo',
componentType: Examples.DualListSelectorBasicDemo
},
{
id: 'dual-list-selector-with-actions-demo',
name: 'DualListSelector with actions Demo',
componentType: Examples.DualListSelectorWithActionsDemo
},
{
id: 'empty-state-demo',
name: 'Empty State Demo',
componentType: Examples.EmptyStateDemo
},
{
id: 'expandable-section-demo',
name: 'Expandable Section Demo',
componentType: Examples.ExpandableSectionDemo
},
{
id: 'flex-demo',
name: 'Flex Demo',
componentType: Examples.FlexDemo
},
{
id: 'form-demo',
name: 'Form Demo',
componentType: Examples.FormDemo
},
{
id: 'form-select-demo',
name: 'Form Select Demo',
componentType: Examples.FormSelectDemo
},
{
id: 'gallery-demo',
name: 'Gallery Demo',
componentType: Examples.GalleryDemo
},
{
id: 'grid-demo',
name: 'Grid Demo',
componentType: Examples.GridDemo
},
{
id: 'hint-demo',
name: 'Hint Demo',
componentType: Examples.HintDemo
},
{
id: 'jump-links-demo',
name: 'Jump Links Demo',
componentType: Examples.JumpLinksDemo
},
{
id: 'input-group-demo',
name: 'Input Group Demo',
componentType: Examples.InputGroupDemo
},
{
id: 'label-demo',
name: 'Label Demo',
componentType: Examples.LabelDemo
},
{
id: 'labelgroup-demo',
name: 'LabelGroup Demo',
componentType: Examples.LabelGroupDemo
},
{
id: 'labelgroup-default-is-open-demo',
name: 'LabelGroup Default is Open Demo',
componentType: Examples.LabelGroupDefaultIsOpenDemo
},
{
id: 'labelgroup-vertical-demo',
name: 'LabelGroup Vertical Demo',
componentType: Examples.LabelGroupVerticalDemo
},
{
id: 'labelgroup-with-category-demo',
name: 'LabelGroup With Category Demo',
componentType: Examples.LabelGroupWithCategoryDemo
},
{
id: 'level-demo',
name: 'Level Demo',
componentType: Examples.LevelDemo
},
{
id: 'line-chart-green-demo',
name: 'Line Chart Green Demo',
componentType: Examples.LineChartGreenDemo
},
{
id: 'line-chart-color-demo',
name: 'Line Chart Multi-color Demo',
componentType: Examples.LineChartColorDemo
},
{
id: 'line-chart-simple-demo',
name: 'Line Chart Simple Demo',
componentType: Examples.LineChartSimpleDemo
},
{
id: 'list-demo',
name: 'List Demo',
componentType: Examples.ListDemo
},
{
id: 'login-page-demo',
name: 'Login Page Demo',
componentType: Examples.LoginPageDemo
},
{
id: 'modal-demo',
name: 'Modal Demo',
componentType: Examples.ModalDemo
},
{
id: 'nav-demo',
name: 'Nav Demo',
componentType: Examples.NavDemo
},
{
id: 'notification-badge-demo',
name: 'Notification Badge Demo',
componentType: Examples.NotificationBadgeDemo
},
{
id: 'notification-drawer-lightweight-demo',
name: 'Notification Drawer Lightweight Demo',
componentType: Examples.LightweightNotificationDrawerDemo
},
{
id: 'notification-drawer-basic-demo',
name: 'Notification Drawer Basic Demo',
componentType: Examples.BasicNotificationDrawerDemo
},
{
id: 'notification-drawer-groups-demo',
name: 'Notification Drawer Groups Demo',
componentType: Examples.GroupsNotificationDrawerDemo
},
{
id: 'options-menu-demo',
name: 'Options Menu Demo',
componentType: Examples.OptionsMenuDemo
},
{
id: 'ouia-demo',
name: 'Ouia Demo',
componentType: Examples.OuiaDemo
},
{
id: 'overflow-menu-demo',
name: 'Overflow Menu Demo',
componentType: Examples.OverflowMenuDemo
},
{
id: 'page-demo',
name: 'Page Demo',
componentType: Examples.PageDemo
},
{
id: 'page-breadcrumb-and-tertiary-nav-demo',
name: 'Page Breadcrumb and Tertiary Nav Demo',
componentType: Examples.PageBreadcrumbAndTertiaryNavDemo
},
{
id: 'page-managed-sidebar-demo',
name: 'Page Managed Sidebar Demo',
componentType: Examples.PageManagedSidebarDemo
},
{
id: 'page-managed-sidebar-closed-demo',
name: 'Page Managed Sidebar Closed Demo',
componentType: Examples.PageManagedSidebarClosedDemo
},
{
id: 'pagination-demo',
name: 'Pagination Demo',
componentType: Examples.PaginationDemo
},
{
id: 'pie-blue-demo',
name: 'Pie Chart Blue Demo',
componentType: Examples.PieBlueDemo
},
{
id: 'pie-color-demo',
name: 'Pie Chart Multi-color Demo',
componentType: Examples.PieColorDemo
},
{
id: 'pie-orange-demo',
name: 'Pie Chart Orange Demo',
componentType: Examples.PieOrangeDemo
},
{
id: 'popover-demo',
name: 'Popover Demo',
componentType: Examples.PopoverDemo
},
{
id: 'progress-demo',
name: 'Progress Demo',
componentType: Examples.ProgressDemo
},
{
id: 'radio-demo',
name: 'Radio Demo',
componentType: Examples.RadioDemo
},
{
id: 'search-input-demo',
name: 'Search Input Demo',
componentType: Examples.SearchInputDemo
},
{
id: 'select-demo',
name: 'Select Demo',
componentType: Examples.SelectDemo
},
{
id: 'select-demo-filtering',
name: 'Select Demo with Filtering',
componentType: Examples.FilteringSelectDemo
},
{
id: 'select-favorites-demo',
name: 'Select Favorites Demo',
componentType: Examples.SelectFavoritesDemo
},
{
id: 'simple-list-demo',
name: 'Simple List Demo',
componentType: Examples.SimpleListDemo
},
{
id: 'skeleton-demo',
name: 'Skeleton Demo',
componentType: Examples.SkeletonDemo
},
{
id: 'spinner-demo',
name: 'Spinner Demo',
componentType: Examples.SpinnerDemo
},
{
id: 'split-demo',
name: 'Split Demo',
componentType: Examples.SplitDemo
},
{
id: 'stack-demo',
name: 'Stack Demo',
componentType: Examples.StackDemo
},
{
id: 'stack-blue-demo',
name: 'Stack Chart Blue Demo',
componentType: Examples.StackBlueDemo
},
{
id: 'stack-gold-bottom-legend-demo',
name: 'Stack Chart Gold with Bottom Legend Demo',
componentType: Examples.StackGoldBottomLegendDemo
},
{
id: 'stack-color-zoom-demo',
name: 'Stack Chart Color Demo',
componentType: Examples.StackColorZoomDemo
},
{
id: 'switch-demo',
name: 'Switch Demo',
componentType: Examples.SwitchDemo
},
{
id: 'tab-demo',
name: 'Tab Demo',
componentType: Examples.TabDemo
},
{
id: 'tabs-inset-demo',
name: 'Tabs Inset Demo',
componentType: Examples.TabsInsetDemo
},
{
id: 'table-actions-demo',
name: 'Table Actions Demo',
componentType: Examples.TableActionsDemo
},
{
id: 'table-breakpoint-modifers-demo',
name: 'Table Breakpoint Modifers Demo',
componentType: Examples.TableBreakpointModifersDemo
},
{
id: 'table-collapsible-demo',
name: 'Table Collapsible Demo',
componentType: Examples.TableCollapsibleDemo
},
{
id: 'table-compact-borderless-rows-demo',
name: 'Table Compact Borderless Rows Demo',
componentType: Examples.TableCompactBorderlessRowsDemo
},
{
id: 'table-compact-demo',
name: 'Table Compact Demo',
componentType: Examples.TableCompactDemo
},
{
id: 'table-compact-expandable-demo',
name: 'Table Compact Expandable Demo',
componentType: Examples.TableCompactExpandableDemo
},
{
id: 'table-compound-expandable-demo',
name: 'Table Compound Expandable Demo',
componentType: Examples.TableCompoundExpandableDemo
},
{
id: 'table-control-text-demo',
name: 'Table Control Text Demo',
componentType: Examples.TableControlTextDemo
},
{
id: 'table-editable-demo',
name: 'Table Editable Demo',
componentType: Examples.TableEditableDemo
},
{
id: 'table-editable-compound-expandable-demo',
name: 'Table Editable Compound Expandable Demo',
componentType: Examples.TableEditableCompoundExpandableDemo
},
{
id: 'table-first-cell-as-header-demo',
name: 'Table First Cell As Header Demo',
componentType: Examples.TableFirstCellAsHeaderDemo
},
{
id: 'table-headers-wrappable-demo',
name: 'Table Headers Wrappable Demo',
componentType: Examples.TableHeadersWrappableDemo
},
{
id: 'table-row-wrapper-demo',
name: 'Table Row Wrapper Demo',
componentType: Examples.TableRowWrapperDemo
},
{
id: 'table-row-click-demo',
name: 'Table Row Click Demo',
componentType: Examples.TableRowClickDemo
},
{
id: 'table-selectable-demo',
name: 'Table Selectable Demo',
componentType: Examples.TableSelectableDemo
},
{
id: 'table-simple-actions-demo',
name: 'Table Simple Actions Demo',
componentType: Examples.TableSimpleActionsDemo
},
{
id: 'table-simple-demo',
name: 'Table Simple Demo',
componentType: Examples.TableSimpleDemo
},
{
id: 'table-sortable-demo',
name: 'Table Sortable Demo',
componentType: Examples.TableSortableDemo
},
{
id: 'table-sticky-header-demo',
name: 'Table Sticky Header Demo',
componentType: Examples.TableStickyHeaderDemo
},
{
id: 'table-width-modifiers-demo',
name: 'Table Width Modifers Demo',
componentType: Examples.TableWidthModifiersDemo
},
{
id: 'table-composable-demo',
name: 'Table Composable Demo',
componentType: Examples.TableComposableDemo
},
{
id: 'tab-string-event-key-demo',
name: 'Tab String Event Key Demo',
componentType: Examples.TabsStringEventKeyDemo
},
{
id: 'text-area',
name: 'Text Area Demo',
componentType: Examples.TextAreaDemo
},
{
id: 'text-demo',
name: 'Text Demo',
componentType: Examples.TextDemo
},
{
id: 'text-input-demo',
name: 'Text Input Demo',
componentType: Examples.TextInputDemo
},
{
id: 'tile-demo',
name: 'Tile Demo',
componentType: Examples.TileDemo
},
{
id: 'title-demo',
name: 'Title Demo',
componentType: Examples.TitleDemo
},
{
id: 'toggle-group-demo',
name: 'Toggle Group Demo',
componentType: Examples.ToggleGroupDemo
},
{
id: 'toolbar-demo',
name: 'Toolbar Demo',
componentType: Examples.ToolbarDemo
},
{
id: 'toolbar-visibility-demo',
name: 'Toolbar Visibility Demo',
componentType: Examples.ToolbarVisibilityDemo
},
{
id: 'toolbar-visiblity-demo',
name: 'Toolbar Visiblity Demo (Deprecated)',
componentType: Examples.ToolbarVisiblityDemo
},
{
id: 'tooltip-demo',
name: 'Tooltip Demo',
componentType: Examples.TooltipDemo
},
{
id: 'topology-demo',
name: 'Topology Demo',
componentType: Examples.TopologyDemo
},
{
id: 'touchspin-demo',
name: 'Touchspin Demo',
componentType: Examples.TouchspinDemo
},
{
id: 'treeview-demo',
name: 'Tree View Demo',
componentType: Examples.TreeViewDemo
},
{
id: 'wizard-demo',
name: 'Wizard Demo',
componentType: Examples.WizardDemo
}
];
export default Demos;