-
Notifications
You must be signed in to change notification settings - Fork 21
/
manifest.json
1398 lines (1398 loc) · 45.3 KB
/
manifest.json
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
[
{
"path": "samples.customization.application.Customization",
"title": "Application Customization",
"categories": "Customization/Application",
"desc": "This page shows some customization features of Aria Templates. To customize an application, the customization descriptor can be used to replace a template by another one, or to add a custom sub-template to a parent template. On this page, you can edit the customization descriptor and/or start a basic sample application (in a dialog).",
"release": false
},
{
"path": "samples.customization.flow.FlowCustomization",
"title": "Flow Customization",
"categories": "Customization/Flow",
"desc": "This page shows flow customization features of Aria Templates.",
"release": false
},
{
"path": "samples.features.autoselect.AutoSelect",
"title": "AutoSelect Feature",
"categories": "Features/Autoselect",
"desc": "This sample shows how the autoselect works for a specific input widget (TextField, NumberField).",
"release": false
},
{
"path": "samples.features.clickbuster.ClickSample",
"title": "Click buster",
"categories": "Features/Click Buster",
"desc": "It shows how the click buster works.",
"release": false
},
{
"path": "samples.features.prefill.basic.PrefillSample",
"title": "Basic Prefill Feature",
"categories": "Features/Prefill",
"desc": "It shows the basic prefill feature applied to TextInput-based widgets.",
"release": true
},
{
"path": "samples.features.prefill.usecase.PrefillSample",
"title": "Reservation flow example with prefill",
"categories": "Features/Prefill",
"desc": "It shows the basic prefill feature used in a specific use case like the reservation of a multiple segment trip.",
"release": false
},
{
"path": "samples.features.print.PrintTestPage",
"title": "Print Page",
"categories": "Features/Print",
"desc": "It shows how to use the print page feature.",
"release": false
},
{
"path": "samples.features.refresh.TemplateRefresh",
"title": "Refresh Feature",
"categories": "Features/Refresh",
"desc": "It demonstrate refreshing a whole template or individual parts of it",
"release": false
},
{
"path": "samples.html.custom.gallery.Images",
"title": "Image Gallery",
"categories": "Widgets/Custom",
"desc": "It shows an example of an image gallery.",
"release": false
},
{
"path": "samples.intro.SgtGreeters",
"title": "Hello world example",
"categories": "Templates",
"desc": "It shows a very basic sample to display stuff with aria templates.",
"release": false
},
{
"path": "samples.modules.standard.MyView",
"title": "Controller Case Study",
"categories": "Modules",
"desc": "It shows how to use a controller with a template.",
"release": false
},
{
"path": "samples.pageEngine.PageEngineRedirect",
"title": "Page Engine",
"categories": "Page engine",
"desc": "It shows a very basic sample to demonstrate the page engine.",
"release": true
},
{
"path": "samples.templates.cdata.CDATATemplate",
"title": "Code sample display with CDATA",
"categories": "Templates",
"desc": "This is to demonstrate how to display code sample using CDATA",
"release": false
},
{
"path": "samples.templates.cssTemplates.MainTemplate",
"title": "CSS templates",
"categories": "Templates/CssTemplates",
"desc": "This sample shows how the CSS Templates work, giving some different styles to elements.",
"release": false
},
{
"path": "samples.templates.domInteractions.focushandling.MainTemplate",
"title": "Focus handling",
"categories": "Templates/Dom",
"desc": "It shows how the focus handling works, using two different subtemplates.",
"release": false
},
{
"path": "samples.templates.domInteractions.focushandling.templateAPI.APIMainTemplate",
"title": "Focus handling for a template",
"categories": "Templates/Dom",
"desc": "It shows how the focus can be returned to the same element in a template after that template has been refreshed.",
"release": false
},
{
"path": "samples.templates.domInteractions.processingIndicator.Sample",
"title": "Processing indicators",
"categories": [
"Templates/Dom",
"Wai-aria/Dom"
],
"desc": "It shows how the processing indicator works, using it with different sections and with the whole page.",
"release": true
},
{
"path": "samples.templates.htmltemplate.SimpleTemplate",
"title": "Basic HTML Template",
"categories": "Templates/Htmltemplate",
"desc": "This is to demonstrate a basic HTML template",
"release": false
},
{
"path": "samples.templates.i18n.LocalizedTemplate",
"title": "Localization and internazionalization (18n)",
"categories": "Templates/I18n",
"desc": "It shows how the Localization works in aria templates.",
"release": false
},
{
"path": "samples.templates.keyboardnavigation.applicationLevelKeyMap.KeyMap",
"title": "Keymaps assigned at application level",
"categories": "Templates/Keyboard navigation",
"desc": "It shows how a Key Map defined at global level works, using different sections.",
"release": false
},
{
"path": "samples.templates.keyboardnavigation.bubbleKeyMap.KeyMap",
"title": "Keyboard event bubble",
"categories": "Templates/Keyboard navigation",
"desc": "It shows how to propagate a Key Map between sections.",
"release": false
},
{
"path": "samples.templates.keyboardnavigation.sectionkeyMap.KeyMap",
"title": "Keymaps at section level",
"categories": "Templates/Keyboard navigation",
"desc": "It shows the KeyMap functionality with a section, mapping the F3 key.",
"release": false
},
{
"path": "samples.templates.keyboardnavigation.subTemplate.MainTemplate",
"title": "Tab Navigation demo in mutliple Template",
"categories": "Templates/Keyboard navigation",
"desc": "It shows how Tab Navigation works in a template with subtemplates.",
"release": false
},
{
"path": "samples.templates.keyboardnavigation.tableNavigation.TableNavigation",
"title": "Table Navigation",
"categories": "Templates/Keyboard navigation",
"desc": "It shows a Table Navigation using a table and some widgets.",
"release": false
},
{
"path": "samples.templates.keyboardnavigation.tableNavigationFocus.TableNavigationMultiFocusableItem",
"title": "Table Navigation with multiple focusable item",
"categories": "Templates/Keyboard navigation",
"desc": "It shows a Table Navigation using a table with multiple focusable items.",
"release": false
},
{
"path": "samples.templates.keyboardnavigation.tableNavigationInherit.TableNavInherit",
"title": "Table Navigation inheritance between section and subsections",
"categories": "Templates/Keyboard navigation",
"desc": "It shows a Table Navigation with focusable items and a subsection that inherits the tab navigation.",
"release": true
},
{
"path": "samples.templates.keyboardnavigation.tabnavigation.TabNavigation",
"title": "Tab Navigation",
"categories": "Templates/Keyboard navigation",
"desc": "It shows how the Tab Navigation works in aria templates.",
"release": false
},
{
"path": "samples.templates.keyboardnavigation.wildcardKeyMap.KeyMap",
"title": "Wildcard character in a keymap",
"categories": "Templates/Keyboard navigation",
"desc": "It shows how to use the wildcard character in a Key Map with different sections.",
"release": false
},
{
"path": "samples.templates.macros.simpleMacro.MyTemplate",
"title": "Simple Macro Usage",
"categories": "Templates/Macros",
"desc": "It shows how to use Macro Libraries in aria templates.",
"release": false
},
{
"path": "samples.templates.modifiers.ModifiersTemplate",
"title": "Modifiers template",
"categories": "Templates/Modifiers",
"desc": "This is to demonstrate how to modify data to display in a template",
"release": false
},
{
"path": "samples.templates.refresh.animate.AnimatedRefresh",
"title": "Animated Refresh",
"categories": "Templates/Refresh",
"desc": "It shows how the Animated Refresh works in aria templates.",
"release": false
},
{
"path": "samples.templates.refresh.automatic.AutomaticRefresh",
"title": "Automatic Refresh",
"categories": "Templates/Refresh",
"desc": "It shows how the Automatic Refresh works in aria templates.",
"release": false
},
{
"path": "samples.templates.refresh.full.FullRefresh",
"title": "Full Refresh",
"categories": "Templates/Refresh",
"desc": "It shows the manual full template refresh in aria templates.",
"release": false
},
{
"path": "samples.templates.refresh.partial.PartialRefresh",
"title": "Partial Refresh",
"categories": "Templates/Refresh",
"desc": "It shows the manual partial template refresh in aria templates",
"release": false
},
{
"path": "samples.templates.refresh.repeater.Repeater",
"title": "Repeater",
"categories": "Templates/Refresh",
"desc": "It shows how the Repeater statement works, creating refreshable sections.",
"release": false
},
{
"path": "samples.templates.refresh.stopresume.StopResume",
"title": "Stop/Resume refreshes",
"categories": "Templates/Refresh",
"desc": "It shows how the stop and resume refresh works in aria templates.",
"release": false
},
{
"path": "samples.templates.repeater.RepeaterStepOne",
"title": "Repeater with Array",
"categories": "Templates/Repeater",
"desc": "It shows how to use the repeater statement with an array.",
"release": false
},
{
"path": "samples.templates.templateScripts.clickhandler.ClickSample",
"title": "Click handler",
"categories": "Templates/Template scripts",
"desc": "It shows how the Click handler works.",
"release": false
},
{
"path": "samples.templates.tplinheritance.step1.ChildTemplate",
"title": "Macro inheritance",
"categories": "Templates/Inheritance",
"desc": "This sample shows the inheritance between macros.",
"release": false
},
{
"path": "samples.templates.tplinheritance.step2.ChildTemplate",
"title": "Script methods inheritance",
"categories": "Templates/Inheritance",
"desc": "This sample shows the inheritance between script methods.",
"release": false
},
{
"path": "samples.templates.tplinheritance.step3.ChildTemplate",
"title": "Macro libraries inheritance",
"categories": "Templates/Inheritance",
"desc": "This sample shows the inheritance between macro libraries.",
"release": false
},
{
"path": "samples.templates.tplinheritance.step4.SecondChildTemplate",
"title": "CSS inheritance",
"categories": "Templates/Inheritance",
"desc": "This sample shows the CSS inheritance.",
"release": false
},
{
"path": "samples.templates.tplinheritance.step5.FirstChildTemplate",
"title": "Overriding CSS",
"categories": "Templates/Inheritance",
"desc": "This sample shows how to override the CSS in a child template.",
"release": false
},
{
"path": "samples.templates.views.filtering.FilterTemplate",
"title": "Filtering data with views",
"categories": "Templates/Views",
"desc": "It shows how the View class handle the filtering operation.",
"release": false
},
{
"path": "samples.templates.views.pagination.PagingTemplate",
"title": "Paginating data with views",
"categories": "Templates/Views",
"desc": "It shows how the View class handle the paginating operation.",
"release": false
},
{
"path": "samples.templates.views.ViewTemplate",
"title": "Sorting, filtering & paginating data with views",
"categories": "Templates/Views",
"desc": "It shows all the different operations (filtering, sorting and paginating) applied to the View class.",
"release": true
},
{
"path": "samples.templates.views.sorting.SortingTemplate",
"title": "Sorting data with views",
"categories": "Templates/Views",
"desc": "It shows how the View class handle the sorting operation.",
"release": false
},
{
"path": "samples.utils.autoresize.AutoresizeTemplate",
"title": "Auto resize",
"categories": "Utils/Autoresize",
"desc": "It shows how content can be automatically resized when the browser is resized.",
"release": true
},
{
"path": "samples.utils.css.animations.callbacks.Animations",
"title": "Animation with callback",
"categories": "Utils/Animations",
"desc": "It shows how to use an animation with a callback",
"release": false
},
{
"path": "samples.utils.css.animations.complex.Animations",
"title": "Complex scenario with Animations",
"categories": "Utils/Animations",
"desc": "This is a complex example of animations",
"release": false
},
{
"path": "samples.utils.css.animations.easing1.Animations",
"title": "Easing functions: ease-in-out",
"categories": "Utils/Animations",
"desc": "Example of the \"ease-in-out\" built-in.",
"release": false
},
{
"path": "samples.utils.css.animations.easing2.Animations",
"title": "Custom easing function: Math.pow(x, 4)",
"categories": "Utils/Animations",
"desc": "It shows how to set up a custom easing fucntion.",
"release": false
},
{
"path": "samples.utils.css.animations.multiple.Animations",
"title": "Multiple concurrent animations",
"categories": "Utils/Animations",
"desc": "It shows how to animate several properties with one single instruction.",
"release": false
},
{
"path": "samples.utils.css.animations.queue1.Animations",
"title": "Global queue for Animations",
"categories": "Utils/Animations",
"desc": "It shows how to queue animations.",
"release": false
},
{
"path": "samples.utils.css.animations.Animations",
"title": "Animations sample",
"categories": "Utils/Animations",
"desc": "Animation utility allows to animate a lot of CSS properties.",
"release": true
},
{
"path": "samples.utils.css.animations.scroll.Animations",
"title": "Custom properties animation",
"categories": "",
"desc": "Animation utility allows to animate an element on a set of CSS properties.",
"release": false
},
{
"path": "samples.utils.css.animations.units.Animations",
"title": "Units translation",
"categories": "Utils/Animations",
"desc": "This is an example of animation using non pixel units.",
"release": false
},
{
"path": "samples.utils.devtools.filesgenerator.MainTemplate",
"title": "Files Generator",
"categories": "Utils/FilesGenerator",
"desc": "This page shows how to use the files generator helper class to generate skeleton of AT resources.",
"release": true
},
{
"path": "samples.utils.devtools.stresstest.MainTemplate",
"title": "CSS Stress Test",
"categories": "Utils/StressTest",
"desc": "This page describes how to use the CSS Stress Test tools in order to identify the slowest CSS Selectors in the page.",
"release": false
},
{
"path": "samples.utils.domevents.eventsingleton.UtilsEvents",
"title": "Event singleton",
"categories": "Utils/Dom events",
"desc": "It demonstrate event singleton to help not to refresh entire template.",
"release": false
},
{
"path": "samples.utils.domevents.keyboardevents.step1.KeyboardEvents",
"title": "Keyboard Events Step 1",
"categories": "Utils/Dom events",
"desc": "Use the arrows to navigate between boxes.",
"release": false
},
{
"path": "samples.utils.domevents.keyboardevents.step2.KeyboardEvents",
"title": "Keyboard Events Step 2",
"categories": "Utils/Dom events",
"desc": "Checkbox selections are now preserved after a refresh.",
"release": false
},
{
"path": "samples.utils.domevents.keyboardevents.step3.KeyboardEvents",
"title": "Keyboard Events Step 3",
"categories": "Utils/Dom events",
"desc": "Use TAB and shift+TAB to navigate between boxes.",
"release": false
},
{
"path": "samples.utils.domevents.keyboardevents.step4.KeyboardEvents",
"title": "Keyboard Events Step 4",
"categories": "Utils/Dom events",
"desc": "Optimization of step 3 with event delegation.",
"release": false
},
{
"path": "samples.utils.domevents.keyboardevents.step5.KeyboardEvents",
"title": "Keyboard Events Step 5",
"categories": "Utils/Dom events",
"desc": "Optimization of step 4 with DomElementWrapper to avoid useless refresh.",
"release": false
},
{
"path": "samples.utils.domevents.mouseevents.MouseEvents",
"title": "Mouse Events",
"categories": "Utils/Dom events",
"desc": "Demonstration of Mouse Events using a box example",
"release": false
},
{
"path": "samples.utils.domevents.mouseeventsimple.DomEventsTemplate",
"title": "Mouse Events Simple Syntax",
"categories": "Utils/Dom events",
"desc": "Mouse event examples using simple syntax",
"release": false
},
{
"path": "samples.utils.domevents.mousewheel.MouseWheel",
"title": "Mouse Wheel Event",
"categories": "Utils/Dom events",
"desc": "Demonstration of Callback using onmousewheel event",
"release": false
},
{
"path": "samples.utils.dragdrop.DragDrop",
"title": "Dragdrop",
"categories": "Utils/Dragdrop",
"desc": "It shows how an element could be dragged in different modes in aria templates.",
"release": false
},
{
"path": "samples.utils.fileupload.FileUpload",
"title": "File Upload Request",
"categories": "Utils/Fileupload",
"desc": "Sample to demonstrate a file upload request.",
"release": false
},
{
"path": "samples.utils.filters.delay.TemplateFilterDelay",
"title": "Filter Delay",
"categories": "Utils/Filters",
"desc": "This utility allows to set filters delay to simulate BE processes in a mocked environment.",
"release": false
},
{
"path": "samples.utils.jsonp.JsonP",
"title": "JSON-P Request",
"categories": "Utils/Jsonp",
"desc": "Sample to demonstrate JSON-P request by simulating a scenario.",
"release": false
},
{
"path": "samples.utils.keynav.KeyboardNavigation",
"title": "Table Navigation using keyboard",
"categories": "Utils/Keyboard navigation",
"desc": "Table navigation provides advanced keyboard navigation in the HTML table.",
"release": false
},
{
"path": "samples.utils.scrollcontrol.ScrollControlTwo",
"title": "Scroll Control",
"categories": "Utils/Scroll control",
"desc": "It shows how scroll control works.",
"release": false
},
{
"path": "samples.utils.storage.Persist",
"title": "Persistence Storage",
"categories": "Utils/Storage",
"desc": "Allows to store data in local storage.",
"release": false
},
{
"path": "samples.utils.touch.gestures.Gestures",
"title": "Gesture Events",
"categories": "Utils/Touch",
"desc": "An example of gesture events.",
"release": false
},
{
"path": "samples.utils.touch.swipe.Swipe",
"title": "Swipe Event",
"categories": "Utils/Touch",
"desc": "It shows swipe event example.",
"release": false
},
{
"path": "samples.utils.touch.tap.Tap",
"title": "Tap Event",
"categories": "Utils/Touch",
"desc": "It shows tap event example.",
"release": false
},
{
"path": "samples.utils.touch.touchend.TouchEnd",
"title": "TouchEnd Event",
"categories": "Utils/Touch",
"desc": "It shows touchend event example.",
"release": false
},
{
"path": "samples.utils.touch.touchmove.TouchMove",
"title": "TouchMove Event",
"categories": "Utils/Touch",
"desc": "It shows touchmove event example.",
"release": false
},
{
"path": "samples.utils.touch.touchstart.TouchStart",
"title": "TouchStart Event",
"categories": "Utils/Touch",
"desc": "It shows touchstart event example.",
"release": false
},
{
"path": "samples.utils.validators.basic.Basic",
"title": "Validators",
"categories": "Utils/Validators",
"desc": "It shows the default aria templates Validator.",
"release": false
},
{
"path": "samples.utils.validators.event.Events",
"title": "Validators Event",
"categories": "Utils/Validators",
"desc": "It shows the Validator used with the events.",
"release": false
},
{
"path": "samples.utils.validators.group.Groups",
"title": "Validators Groups",
"categories": "Utils/Validators",
"desc": "It shows how to group the Validators.",
"release": false
},
{
"path": "samples.utils.visualfocus.VisualFocus",
"title": "Visual Focus",
"categories": "Utils/Focus",
"desc": "This utility allows to highlight the element currently on focus.",
"release": false
},
{
"path": "samples.utils.xdr.CrossDomain",
"title": "Cross-domain request",
"categories": "Utils/CrossDomain",
"desc": "This utility allows to make cross domain requests.",
"release": false
},
{
"path": "samples.widgets.autocomplete.basic.Basic",
"title": "AutoComplete Widget - Basic Label-Code Resource Handler",
"categories": [
"Widgets/Autocomplete"
],
"desc": "It shows the basic functionality of the autocomplete widget, using different thresholds.",
"release": false
},
{
"path": "samples.widgets.autocomplete.http.Http",
"title": "AutoComplete Widget - Sample with http request to retrieve suggestions",
"categories": [
"Widgets/Autocomplete"
],
"desc": "It shows how to use the autocomplete widget with suggestions coming from a remote server.",
"release": false
},
{
"path": "samples.widgets.autocomplete.onchange.OnChange",
"title": "AutoComplete Widget - OnChange Action",
"categories": "Widgets/Autocomplete",
"desc": "It shows how the onchange callback works inside the autocomplete widget.",
"release": false
},
{
"path": "samples.widgets.autocomplete.preselectAutofill.PreselectAutofill",
"title": "AutoComplete Widget - Preselect, freeText, autoFill",
"categories": "Widgets/Autocomplete",
"desc": "It shows how to set the preselect, freeText and autoFill options in the widget configuration.",
"release": false
},
{
"path": "samples.widgets.autocomplete.spellcheck.Main",
"title": "AutoComplete Widget - Spell Check",
"categories": "Widgets/Autocomplete",
"desc": "It shows how the spellcheck works with the autocomplete. It gives suggestions if the user makes errors, like doubling a letter in a word.",
"release": false
},
{
"path": "samples.widgets.autocomplete.wai.WaiAutoComplete",
"title": "AutoComplete Widget - Wai-aria support",
"categories": [
"Widgets/Autocomplete",
"Wai-aria/Autocomplete"
],
"desc": "It shows how to set Wai-aria-related properties.",
"release": false
},
{
"path": "samples.widgets.bindings.Default",
"title": "Widget Bindings",
"categories": "Widgets/Bindings",
"desc": "It shows how binding is done in a widget.",
"release": false
},
{
"path": "samples.widgets.bindings.transform.Transform",
"title": "Widget Bindings with Transform",
"categories": "Widgets/Bindings",
"desc": "It shows how to bind a widget with a text transformation",
"release": false
},
{
"path": "samples.widgets.button.action.Action",
"title": "Button Widget - User Action",
"categories": "Widgets/Button",
"desc": "It shows how the actions work with the Button Widget, managing specific callbacks.",
"release": false
},
{
"path": "samples.widgets.button.binding.Binding",
"title": "Button Widget - Binding",
"categories": "Widgets/Button",
"desc": "It shows a Button Widget bound to other widgets.",
"release": false
},
{
"path": "samples.widgets.button.skinning.disabled.Action",
"title": "Skinning system - Button",
"categories": "",
"desc": "It shows Button in a disabled state.",
"release": false
},
{
"path": "samples.widgets.button.skinning.Action",
"title": "Skinning system - Button",
"categories": "",
"desc": "It shows sclass works with the Button Widget.",
"release": false
},
{
"path": "samples.widgets.button.style.Simple",
"title": "Button Widget - Style",
"categories": "Widgets/Button",
"desc": "It shows how Buttons with style look like.",
"release": false
},
{
"path": "samples.widgets.calendar.binding.Binding",
"title": "Calendar Widget - Binding",
"categories": "Widgets/Calendar",
"desc": "It shows two calendars bound to each other, so navigating inside one calendar changes the other.",
"release": false
},
{
"path": "samples.widgets.calendar.ranges.Sample",
"title": "Calendar Widget - Ranges",
"categories": "Widgets/Calendar",
"desc": "It shows how to style ranges of dates in the calendar.",
"release": true
},
{
"path": "samples.widgets.calendar.Samples",
"title": "Calendar Widget - Label format",
"categories": "Widgets/Calendar",
"desc": "It shows how the Calendar Widget looks like with different label format.",
"release": false
},
{
"path": "samples.widgets.checkbox.binding.BindableCheckbox",
"title": "Checkbox Widget - Binding",
"categories": [
"Widgets/Checkbox",
"Wai-aria/Checkbox"
],
"desc": "It shows different modes to bing a Checkbox Widget, using the data model for example.",
"release": false
},
{
"path": "samples.widgets.checkbox.SimpleCheckbox",
"title": "Checkbox Widget - Onchange event",
"categories": "Widgets/Checkbox",
"desc": "It shows a simple Checkbox Widget with the onchange event attached to it.",
"release": false
},
{
"path": "samples.widgets.checkbox.styling.CheckboxStyling",
"title": "Checkbox Widget - Styling",
"categories": "Widgets/Checkbox",
"desc": "It shows different possible styles that can be applied to the Checkbox Widget.",
"release": false
},
{
"path": "samples.widgets.customMap.CustomMap",
"title": "Custom Map Widget",
"categories": "Widgets/CustomMap",
"desc": "This is to demonstrate Custom Map widget",
"release": false
},
{
"path": "samples.widgets.customSlider.DemoTemplate",
"title": "Custom Slider Widget Library",
"categories": "Widgets/CustomSlider",
"desc": "This is to demonstrate a Custom Slider Widget Library",
"release": false
},
{
"path": "samples.widgets.datefield.binding.DateFieldBindable",
"title": "DateField Widget - With reference date",
"categories": "Widgets/Datefield",
"desc": "It shows two Datefield Widgets bound to the data model.",
"release": false
},
{
"path": "samples.widgets.datefield.TemplateDateField",
"title": "Datefield Widget",
"categories": "Widgets/Datefield",
"desc": "It shows the Datefield Widget.",
"release": false
},
{
"path": "samples.widgets.datepicker.customized.CustomizedDatePicker",
"title": "DatePicker Widget - Customized template",
"categories": "Widgets/Datepicker",
"desc": "It shows a DatePicker Widget with a customized layout.",
"release": true
},
{
"path": "samples.widgets.datepicker.reference.ReferenceDatePicker",
"title": "DatePicker Widget - With date reference",
"categories": "Widgets/Datepicker",
"desc": "It shows a DatePicker Widget with date reference.",
"release": false
},
{
"path": "samples.widgets.datepicker.TemplateDatePicker",
"title": "DatePicker Widget - Binding",
"categories": [
"Widgets/Datepicker"
],
"desc": "It shows the default DatePicker Widget.",
"release": false
},
{
"path": "samples.widgets.datepicker.validation.TemplateDatePickerValidation",
"title": "DatePicker Widget - Validation",
"categories": "Widgets/Datepicker",
"desc": "It shows the validation on DatePicker Widget.",
"release": false
},
{
"path": "samples.widgets.datepicker.wai.WaiDatePicker",
"title": "DatePicker Widget - Wai-aria support",
"categories": [
"Widgets/Datepicker",
"Wai-aria/Datepicker"
],
"desc": "It shows how to set Wai-aria-related properties.",
"release": false
},
{
"path": "samples.widgets.dialog.action.DialogActionSample",
"title": "Dialog Widget - Actions",
"categories": "Widgets/Dialog",
"desc": "It shows how the actions work with the Dialog.",
"release": false
},
{
"path": "samples.widgets.dialog.binding.DialogBindingSample",
"title": "Dialog Widget - Binding",
"categories": [
"Widgets/Dialog"
],
"desc": "It shows which properties are bindable and how they work for the Dialog.",
"release": false
},
{
"path": "samples.widgets.dialog.movable.TemplateMovableDialog",
"title": "Dialog Widget - Movable",
"categories": "Widgets/Dialog",
"desc": "It shows a Movable Dialog.",
"release": false
},
{
"path": "samples.widgets.dialog.resizable.TemplateResizableDialog",
"title": "Dialog Widget - Resizable",
"categories": "Widgets/Dialog",
"desc": "It shows a Resizable Dialog.",
"release": false
},
{
"path": "samples.widgets.dialog.TemplateDialog",
"title": "Dialog Widget",
"categories": "Widgets/Dialog",
"desc": "It shows the default Dialog popping out after a mouse click.",
"release": false
},
{
"path": "samples.widgets.dialog.wai.Dialog",
"title": "Dialog Widget - Wai-aria support",
"categories": [
"Widgets/Dialog",
"Wai-aria/Dialog"
],
"desc": "It demonstrates Wai-aria capabilities of the Dialog widget.",
"release": false
},
{
"path": "samples.widgets.div.binding.DivWgtBinding",
"title": "Div Widget - Binding",
"categories": "Widgets/Div",
"desc": "It shows how the tooltip property works when is bound to another element.",
"release": false
},
{
"path": "samples.widgets.div.DivWgtSample",
"title": "Div Widget",
"categories": "Widgets/Div",
"desc": "It shows how a Div Widget look like.",
"release": false
},
{
"path": "samples.widgets.div.styling.DivWidgetStyling",
"title": "Div Widget - Styling",
"categories": "Widgets/Div",
"desc": "It shows different uses of the 'sclass' property with the Div Widget.",
"release": true
},
{
"path": "samples.widgets.embed.Embed",
"title": "Embed Widget",
"categories": "Widgets/Embed",
"desc": "This is to demonstrate the Embed Element",
"release": false
},
{
"path": "samples.widgets.errorlist.binding.ErrorListBinding",
"title": "ErrorList Widget - Binding",
"categories": [
"Widgets/Errorlist",
"Wai-aria/Errors"
],
"desc": "It shows how the ErrorList Widget works when is bound to something.",
"release": false
},
{
"path": "samples.widgets.errorlist.custom.ErrorListCustomizedTemplate",
"title": "ErrorList Widget - Customized template",
"categories": "Widgets/Errorlist",
"desc": "It shows a customized ErrorList Widget.",
"release": false
},
{
"path": "samples.widgets.errorlist.filtering.ErrorListFilterTemplate",
"title": "ErrorList Widget - Using filters",
"categories": "Widgets/Errorlist",
"desc": "It shows the different message layouts for the ErrorList Widget (Information, Success, Error, Warning) using the filter property.",
"release": false
},
{
"path": "samples.widgets.errorlist.standard.ErrorListTemplate",
"title": "ErrorList Widget",
"categories": "Widgets/Errorlist",
"desc": "It shows how the ErrorList Widget looks like, showing the information layout.",
"release": false
},
{
"path": "samples.widgets.fieldset.action.FieldsetAction",
"title": "Fieldset Widget - Event bubble",
"categories": "Widgets/Fieldset",
"desc": "It shows Fieldset Widgets executing callback actions.",
"release": false
},
{
"path": "samples.widgets.fieldset.binding.FieldsetBinding",
"title": "Fieldset Widget - Binding",
"categories": "Widgets/Fieldset",
"desc": "It shows a Fieldset Widget with the property tooltip bound to the data model.",
"release": false
},
{
"path": "samples.widgets.fieldset.nested.FieldsetNested",
"title": "Fieldset Widget - Nested",
"categories": "Widgets/Fieldset",
"desc": "It shows a nested Fieldset Widget with the default configuration.",
"release": false
},
{
"path": "samples.widgets.fieldset.FieldsetSimple",
"title": "Fieldset Widget",
"categories": "Widgets/Fieldset",
"desc": "It shows two Fieldset Widgets with the default configuration.",
"release": false
},
{
"path": "samples.widgets.gauge.SampleUsage",
"title": "Gauge Widget",
"categories": "Widgets/Gauge",
"desc": "It shows the Gauge Widget working with a specific value or in searching mode.",
"release": false
},
{
"path": "samples.widgets.icon.library.SampleLibraryUsage",
"title": "Icon Widget - Library",
"categories": "Widgets/Icon",
"desc": "It shows some different icons for many uses, like info, error, undo, redo, help, arrows, etc.",
"release": false
},
{
"path": "samples.widgets.icon.SampleUsage",
"title": "Icon Widget",
"categories": "Widgets/Icon",
"desc": "It shows different layouts for the Icon Widget, with Inline style, tooltip and margin.",
"release": false
},
{
"path": "samples.widgets.iconbutton.binding.IconButtonBinding",
"title": "IconButton Widget - Binding",
"categories": "Widgets/Iconbutton",
"desc": "It shows an IconButton Widget bound to a checkbox that manage the icon button enabled state.",
"release": false
},
{
"path": "samples.widgets.iconbutton.Simple",
"title": "IconButton Widget",
"categories": "Widgets/Iconbutton",
"desc": "It shows an IconButton Widget in normal mode and disabled.",
"release": false
},
{
"path": "samples.widgets.iconbutton.styling.IconButtonStyle",
"title": "IconButton Widget - Styling",
"categories": "Widgets/Iconbutton",
"desc": "It shows some IconButton Widgets with different styles.",
"release": false
},
{
"path": "samples.widgets.link.LinkWgtSample",
"title": "Link Widget",
"categories": "Widgets/Link",
"desc": "It shows how the Link Widget works, calling a user defined callback after a click.",
"release": false
},