-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathtemplates.js
More file actions
1100 lines (1099 loc) · 28.5 KB
/
templates.js
File metadata and controls
1100 lines (1099 loc) · 28.5 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
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
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { Notification } from 'grommet';
import {
ContentLayoutPreview,
CodeBlocksPreview,
EmptyStatePreview,
FeedbackPreview,
StatusIndicatorPreview,
ToastPreview,
SelectorPreview,
PopoverPreview,
} from '../../../examples/cardPreviews';
export const templates = [
{
name: 'Ascending navigation',
available: true,
cardOrder: 101,
description: `Ascending navigation enables users
to move up one level in an application’s hierarchy,
from a child page back to its parent.`,
preview: {
image: {
src: {
light: '/templateImages/ascending-navigation.svg',
dark: '/templateImages/ascending-navigation-invert.svg',
},
alt: 'Ascending navigation diagram',
fit: 'contain',
},
},
seoDescription: `Allows the user to navigate to a parent
page from a child page by moving upward in the application
or website hierarchy.`,
sections: ['Guidance', 'When to use', 'Ascending Navigation Example'],
relatedContent: [
'Navigation',
'Side to side navigation',
'Matrix navigation',
'Drill down navigation',
],
tags: [],
},
{
name: 'Content layouts',
available: true,
cardOrder: 3,
description: `Creating responsive, adaptable content layouts is central to
the user experience.`,
seoDescription: `Creating responsive, adaptable content layouts is central
to the user experience.`,
preview: {
component: () => <ContentLayoutPreview />,
},
sections: [
'Designing for Responsiveness',
'Prioritizing Content Needs',
'Breakpoints',
'Page Margin',
'Templates',
'Single Column Layouts',
'2 Column Layouts',
'3 Column Layouts',
'Multi-column Layout',
],
tags: [
'content',
'layout',
'page layouts',
'responsiveness',
'responsive',
'content layout',
'content structure',
'content design',
'layout arrangement',
'information structure',
'content organization',
'layout framework',
'information display',
'structure design',
'content presentation',
'display layout',
'information composition',
],
relatedContent: ['Page layouts', 'Grid'],
},
{
name: 'Dashboards',
available: true,
cardOrder: 100,
description: `At-a-glance preview for operation critical information
with easy access to areas requiring attention.`,
preview: {
image: {
src: {
light: '/templateImages/template-preview-dashboard.svg',
dark: '/templateImages/template-preview-dashboard-invert.svg',
},
alt: 'HPE Dashboards Preview',
},
},
seoDescription: `HPE Design System dashboard template for screens
featuring content within cards.`,
sections: [],
relatedContent: [
'Grid',
'Page layouts',
'Content layouts',
'Card',
'Lists',
],
tags: [
'dashboard',
'control panel',
'overview',
'home screen',
'analytics board',
'data hub',
'command center',
'performance dashboard',
'information dashboard',
'status panel',
'monitoring center',
'metrics board',
],
},
{
name: 'Drill down navigation',
available: true,
cardOrder: 100,
description: `Allows users to progressively descend 'down'
branches of a hierarchical tree into a child
screen to drill down into more granular details.
`,
preview: {
image: {
src: {
light: '/templateImages/DrillDown.svg',
dark: '/templateImages/DrillDown-invert.svg',
},
alt: 'HPE Dashboards Preview',
fit: 'contain',
},
},
seoDescription: `Allows users to progressively descend 'down'
branches of a hierarchical tree into a child
screen to drill down into more granular details.
`,
sections: ['When to Use', 'Guidelines', 'Drill Down Navigation Examples'],
relatedContent: [
'Navigation',
'Side to side navigation',
'Matrix navigation',
],
tags: [
'drill down navigation',
'hierarchical navigation',
'nested navigation',
'submenu navigation',
'multi-level navigation',
'expandable navigation',
'tiered navigation',
'cascading navigation',
'tree navigation',
'hierarchical menu',
'nested menu',
'submenu system',
'layered navigation',
],
},
{
name: 'Filtering',
available: true,
cardOrder: 4,
description: `Allows users to create a focused data set by specifying
data attributes and values of interest.`,
preview: {
image: {
alt: 'HPE Filtering Preview',
fit: 'contain',
src: {
light: '/templateImages/template-preview-filtering.svg',
dark: '/templateImages/template-preview-filtering-invert.svg',
},
},
},
seoDescription: `Allows users to create a focused data set by specifying
data attributes and values of interest.`,
sections: [
'What makes up filtering',
'Filters',
'Filters in a center Layer',
'Filtering with selectable results',
'More examples of filtering',
'Filtering with RangeSelector',
'Filtering with Select',
],
relatedContent: ['DataTable', 'Lists', 'Card'],
tags: [
'filter controls',
'table filter',
'list filter',
'card filter',
'search table',
'filters layer',
'filter guidelines',
'filtered results',
'pagination',
'results',
'filters',
'fliter',
'filtering',
'sort',
'sorting',
'refinement',
'selection',
'search criteria',
'data filter',
'filter options',
'filtering tool',
'refine tool',
'search options',
'data refinement',
'sorting criteria',
],
},
{
name: 'Selector',
available: true,
cardOrder: 4,
description: `A selection control that allows users to choose one or
more related options to access information, filter, and make selections.`,
preview: {
component: () => <SelectorPreview />,
},
seoDescription: `A selection control that allows users to choose one or
more related options to access information, filter, and make selections`,
relatedContent: [
'RadioButtonGroup',
'CheckBoxGroup',
'Select',
'SelectMultiple',
],
sections: [],
tags: [],
},
{
name: 'Popover',
available: true,
cardOrder: 5,
description: `A Popover is an overlay presenting contextual information
related to a specific UI element.`,
preview: {
component: () => <PopoverPreview />,
},
seoDescription: `A Popover is an overlay presenting contextual information
related to a specific UI element. It is revealed and closed by click
events.`,
relatedContent: ['Tip'],
sections: ['Use cases', 'Anatomy', 'Content guidelines', 'Accessibility'],
tags: [
'popup',
'pop up',
'popover',
'tip',
'tooltip',
'modal',
'popover menu',
'inline popover',
],
},
{
name: 'User feedback collection',
available: true,
description: `Improve customer experiences and make impactful,
data-driven decisions by collecting feedback directly from users.`,
preview: {
component: () => <FeedbackPreview />,
},
seoDescription: `Improve customer experiences and make impactful,
data-driven decisions by collecting feedback directly from users.
`,
sections: [],
relatedContent: ['Forms'],
tags: [
'feedback',
'survey',
'customer experience',
'user experience',
'analytics',
'qualtrics',
'feedback',
'response',
'comment',
'reaction',
'user comment',
'review',
'user feedback',
'input',
'user response',
'evaluation',
'user review',
'comment box',
'input field',
'user comment',
'reaction box',
'user feedback collection',
'feedback compilation',
'response collection',
'aggregation',
'user insights',
'comments',
'response',
'vote',
'voting',
'sentiment indicator',
'rate',
'rating',
'star',
'thumb toggle',
'opinion',
'review',
],
},
{
name: 'Forms',
available: true,
cardOrder: 1,
description: `Common form use cases from application configuration
to payment acceptance.`,
preview: {
image: {
src: {
light: '/templateImages/template-preview-form.svg',
dark: '/templateImages/template-preview-form-invert.svg',
},
alt: 'HPE Forms Preview',
fit: 'contain',
},
},
seoDescription: 'HPE Design System form examples and templates.',
sections: [
'When to use',
'When not to use',
'Accessibility',
'Terms and Conditions',
'Single field forms',
'Use cases',
'Sign up',
'Sign in',
'Filter',
'Sort',
'Change Password',
'Settings',
'Pay',
'Shipping',
'Customize',
'Required vs. optional fields',
'Single required FormField',
'Fields with character limits',
'Exceptions and how to address them',
'Where to present a form',
'Full-page forms',
'Avoid using multiple column layouts',
'Managing child objects',
],
relatedContent: [
'TextInput',
'Button',
'MaskedInput',
'CheckBox',
'CheckBoxGroup',
'RadioButtonGroup',
],
tags: [
'forms',
'validation',
'messaging',
'form examples',
'form',
'forms',
'input form',
'data form',
'submission form',
'entry form',
'input sheet',
'information form',
'data entry',
'response form',
'query form',
'interaction form',
'data capture',
],
},
{
name: 'Managing child objects',
parentPage: 'Forms',
available: true,
description: `How to show, hide, and edit details of child
objects related to a parent within a form context.`,
preview: {
image: {
src: {
light: '/templateImages/template-preview-child objects.svg',
dark: '/templateImages/template-preview-child objects-invert.svg',
},
alt: 'HPE Forms Preview',
fit: 'contain',
},
},
seoDescription: `HPE Design System guidance for how to show, hide, and
edit details of child objects related to a parent within a form context.`,
sections: [],
relatedContent: ['Forms'],
tags: [],
},
{
name: 'Global header',
available: true,
cardOrder: 8,
description: `A standardized header for use when building applications and
services that live in the HPE ecosystem.`,
preview: {
image: {
src: {
light: '/templateImages/template-preview-global-header.svg',
dark: '/templateImages/template-preview-global-header-invert.svg',
},
alt: 'HPE Design System Global Header',
fit: 'contain',
},
},
seoDescription: `A standardized header for use when building applications
and services that live in the HPE ecosystem.`,
sections: [
'What makes up the Global Header',
'App Identity',
'Header Main Navigation',
'Shopping Cart',
'Country Selector',
'Cube Menu',
'Color Scheme',
'What makes up the Global footer',
'Privacy Link',
'Terms of Use Link',
'Ad Choices and Cookies Link',
'Do Not Sell My Personal Information Link',
],
relatedContent: ['Page layouts', 'Header', 'Navigation'],
tags: [
'common header',
'CHFWS',
'HPE Common Header and Footer Web Service',
'HFWS test page',
'global header',
'global footer',
'header service',
'site header',
'website header',
'top bar',
'page header',
'main header',
'header navigation',
'top navigation',
'header bar',
'top banner',
'header section',
'site banner',
],
},
{
name: 'Internationalization',
available: true,
description: `How to internationalize a site or application that uses the
HPE Design System.`,
preview: {
image: {
src: {
light: '/templateImages/template-preview-i18n.svg',
dark: '/templateImages/template-preview-i18n-invert.svg',
},
alt: 'Internationalization',
fit: 'contain',
},
},
seoDescription: `How to internationalize a site or application that uses
the HPE Design System`,
sections: ['Localizing Grommet'],
relatedContent: [],
tags: [
'localization',
'internationalization',
'localisation',
'internationalisation',
'localize',
'localise',
'I18N',
'react-intl',
'react-i18next',
'messages',
'global users',
'localization',
'multilingual support',
'language adaptation',
'regionalization',
'language customization',
],
},
{
name: 'Lists',
available: true,
cardOrder: 100,
description:
'Go-to patterns for displaying many services, devices, users, and more.',
preview: {
image: {
src: {
light: '/templateImages/template-preview-list.svg',
dark: '/templateImages/template-preview-list-invert.svg',
},
alt: 'HPE Lists Preview',
fit: 'contain',
},
},
relatedContent: ['Dashboards', 'Card', 'Page layouts', 'Pagination'],
seoDescription:
'HPE Design System template for providing a list of information.',
sections: [
'About Lists',
'Types of Lists',
'Selection',
'Action Menu in List Item',
'Long Lists',
'Wrapping vs Truncation:',
'List vs Table',
'Icon + Name + Option',
'Name + Description + Option',
'Name + Option + Action',
'Image + Name + Description',
'Paginated',
'Item order',
],
tags: [
'ul',
'ol',
'li',
'styled lists',
'infinitescroll',
'infinite scroll',
'paginated lists',
'list',
'lists',
'item list',
'data list',
'collection',
'scrollable list',
'item collection',
'listing',
'scroll list',
'entry list',
'item group',
'content list',
'scrollable content',
'list',
'ol',
'ul',
'li',
'dl',
'dd',
'dt',
],
},
{
name: 'Matrix navigation',
description: `Matrix navigation is not a path
that you can define for the user,
rather the user defines it themselves.`,
available: true,
cardOrder: 100,
preview: {
pad: { horizontal: 'small' },
image: {
src: {
light: '/templateImages/MatrixNavigation.svg',
dark: '/templateImages/MatrixNavigation-invert.svg',
},
alt: 'HPE Lists Preview',
fit: 'contain',
},
},
relatedContent: [],
seoDescription: `Martix Navigation is not a path that
you can define for the user,
rather the user defines it themselves.`,
sections: [
'When a User would Use',
'Matrix within a Music App Example',
'Matrix within App Example',
],
tags: [
'matrix view',
'table menu',
'grid selector',
'grid menu',
'grid navigator',
'array navigation',
'multi navigation',
'matrix selector',
],
},
{
name: 'Navigation',
available: true,
cardOrder: 7,
description: 'The entry point for the expansive topic of Navigation.',
preview: {
image: {
src: {
light: '/templateImages/template-preview-navigation.svg',
dark: '/templateImages/template-preview-navigation-invert.svg',
},
alt: 'HPE Navigation Preview',
fit: 'contain',
},
},
seoDescription: `Navigation pattern guidance and recommendations for a
variety of UI use cases.`,
sections: ['Navigation Within an Application'],
relatedContent: [],
tags: [
'navigation patterns',
'navigation',
'menu',
'navigation menu',
'nav bar',
'nav panel',
'links',
'menu bar',
'site navigation',
'site menu',
],
},
{
name: 'Page layouts',
available: true,
cardOrder: 2,
description: `Choosing a layout is an important first step in designing
a user interface. These guidelines will help create a consistent user
experience across HPE applications and services.`,
preview: {
image: {
src: {
light: '/templateImages/template-preview-pagelayout.svg',
dark: '/templateImages/template-preview-pagelayout-invert.svg',
},
alt: 'HPE Page Layouts Preview',
fit: 'contain',
},
},
relatedContent: [
'Content layouts',
'Navigation',
'Dashboards',
'Global header',
'Header',
'Footer',
],
seoDescription:
'HPE Design System page layout options, anatomies, and behaviors.',
sections: [
'Elements of an App UI',
'Page Container',
'Page Container Widths',
'Wide (default)',
'Narrow',
'Full',
],
tags: [
'common layouts',
'responsive',
'responsive layouts',
'shells',
'application layouts',
'app layouts',
'page layouts',
'page layout',
'layout structure',
'page structure',
'page design',
'screen layout',
'content arrangement',
'page organization',
'layout framework',
'screen structure',
'page presentation',
'display layout',
'page composition',
],
},
{
name: 'Side to side navigation',
available: true,
cardOrder: 100,
description: `Allows users to access sibling screens sequentially from
the same level of the hierarchy.`,
preview: {
pad: { horizontal: 'small' },
image: {
src: {
light: '/templateImages/Side-to-Side.svg',
dark: '/templateImages/SideToSide-invert.svg',
},
alt: 'Side-to-Side Navigation Preview',
fit: 'contain',
},
},
seoDescription: `Allows users to access sibling screens sequentially from
the same level of the hierarchy.`,
relatedContent: [
'Navigation',
'Drill down navigation',
'Matrix navigation',
'Tabs',
],
sections: [
'When to use',
'HPE Local Header Example',
'HPE Global Header Example',
'Header Guidelines',
'Persistent Sidebar',
'Tabs Example',
'Tabs Guidelines',
],
tags: [
'navigation',
'lateral',
'peer',
'peer to peer',
'sibling',
'side to side navigation',
'horizontal navigation',
'lateral navigation',
'sideways navigation',
],
},
{
name: 'Status indicator',
available: true,
description: `Quickly provide peace-of-mind or call attention to items
requiring a user's action.`,
preview: {
component: () => <StatusIndicatorPreview />,
},
seoDescription: `Highlight notification messages and alerts which
require a user's attention. Status indicators provide peace-of-mind
when all is well or call attention to items when a user needs to take
action`,
relatedContent: ['Notification', 'Toast notifications'],
sections: ['What makes up a status indicator', 'Icons and Shapes'],
tags: [
'displaying status',
'display status',
'status colors',
'status icons',
'status WCAG',
],
},
{
name: 'DataTable customization',
available: true,
cardOrder: 100,
description: `Allows users to customize which columns are visible in a data
table and in what order they appear.`,
preview: {
image: {
src: {
light: '/templateImages/template-preview-table-customize.svg',
dark: '/templateImages/template-preview-table-customize-invert.svg',
},
alt: 'HPE Table Customization Preview',
fit: 'contain',
},
},
seoDescription: `Allows users to customize table column order and
visibility to best suit their needs.`,
sections: [
'What makes up the customizable table',
'An action to display column visibility and order controls.',
'Column visibility',
'Column order',
],
relatedContent: ['DataTable', 'Lists', 'Filtering'],
tags: [
'ordering columns',
'order columns',
'reorder',
're-order',
'column order',
'table configuration panel',
'tabulr data',
'data table',
'table sorting',
'table filtering',
'table display',
'data grid',
'table data configuration',
'presets',
'views',
],
},
{
name: 'Inline notifications',
available: true,
description: `Inline notifications help application users by delivering
timely, contextual information and feedback related to their actions.`,
preview: {
component: () => (
<Notification
message="Nearing your allotted budget."
status="warning"
/>
),
background: 'background-back',
},
seoDescription: `Inline notifications help application users by delivering
timely, contextual information and feedback related to their actions.`,
sections: [],
relatedContent: [
'Notification',
'Toast notifications',
'Status indicator',
'Global notifications',
],
tags: [
'inline',
'inline notification',
'inline notifications',
'inline notifications',
'in-content notifications',
'alerts',
'messages',
'on-screen alerts',
'feedback',
],
},
{
name: 'Toast notifications',
available: true,
description: `Toast notifications are used to communicate low severity
level information to users in an unobtrusive way.`,
preview: {
component: () => (
<ToastPreview card title="Hooray" message="Your toast is done!" />
),
background: 'background-back',
},
seoDescription: `Toast notifications are used to communicate low
severity level information to users in an unobtrusive way.`,
sections: [
'Guidance',
'When should you use a Toast Notification',
'Handling multiple Toast Notifications',
'Persistence',
'Anatomy',
'Status Indicator',
'Content (Title + Message)',
'Close Button',
'Accessibility',
'Placement',
'Top-right Aligned Toast',
],
relatedContent: [
'Notification',
'Status indicator',
'Inline notifications',
'Global notifications',
],
tags: [
'feedback',
'messages',
'messaging',
'toast',
'pop up',
'popup',
'status',
'confirmation',
'toast notification',
'pop-up',
'snack notification',
'alert notification',
'temporary notification',
'popup alert',
'notification bar',
'transient message',
'brief message',
'pop notification',
'flyout message',
],
},
{
name: 'Wizard',
available: true,
cardOrder: 6,
description: 'Wizards are an effective way to handle multi-step forms.',
preview: {
image: {
src: {
light: '/templateImages/template-preview-wizard.svg',
dark: '/templateImages/template-preview-wizard-invert.svg',
},
alt: 'HPE Wizard Preview',
fit: 'contain',
},
},
seoDescription: 'Wizards are an effective way to handle multi-step forms.',
sections: [
'Header and Footer behavior',
'Providing guidance for a form step',
'Indicating progress',
'Validation',
'Summarizing what was accomplished or configured',
'Cancellation',
'Single Column vs Two Column Wizards',
'Two-column Wizard',
'Alignment',
'Previous step button',
'Cancel button',
'Title',
'Next step button',
],
relatedContent: ['Forms'],
tags: [
'multi-step form',
'mutliple steps',
'multistep form',
'stepped form',
'task wizard',
'progress indicators',
'step sequencing',
'form input',
'sequiential workflow',
'task flow',
'form wizard',
'stepped workflow',
'progressive dialog',
'progressive dialog',
'progressive form',
],
},
{
name: 'Code blocks',
available: true,
cardOrder: 100,
description: 'A standardized style for displaying code.',
preview: {
component: () => <CodeBlocksPreview />,
background: 'background-back',
},
seoDescription: 'A standardized style for displaying code.',
sections: ['Guidance', 'Theming', 'Scrolling', 'Line Wrapping'],
tags: [
'code',
'syntax highlighting',
'code block',
'code blocks',
'code snippet',
'code sample',
'code display',
'source code box',
'code segment',
'code section',
'code example',
'code view',
'code window',
'code listing',
'code fragment',
],
},
{
name: 'Scrolling and pagination',
available: false,
cardOrder: 100,
description: `When and how to apply techniques such as scrollable regions
and pagination.`,
seoDescription: `When and how to apply techniques such as scrollable
regions or pagination.`,
sections: [],
relatedContent: ['Pagination', 'Lists', 'Card', 'DataTable'],
tags: ['scrolling', 'scroll regions', 'pagination', 'scroll vs. paginate'],
preview: {
image: {
src: {
light: '/templateImages/template-preview-scrolling-pagination.svg',
// eslint-disable-next-line max-len
dark: '/templateImages/template-preview-scrolling-pagination-invert.svg',
},
alt: 'Global notifications under HPE Global Application header.',
fit: 'contain',
},
},
},