• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "name": "picker",
3  "version": [
4    {
5      "name": "v3.0"
6    }
7  ],
8  "supportedDevices": ["phone", "tablet", "tv"],
9  "description": [
10    {
11      "name": "The <picker> component supports common, date, time, data and time, and multi-column text selectors.",
12      "supportedDevices": ["phone", "tablet", "tv"]
13    }
14  ],
15  "attributes": [
16    {
17      "name": "type",
18      "supportedDevices": ["phone", "tablet", "tv"],
19      "required": false,
20      "description": [
21        {
22          "name": "Dynamic modification is not supported. Available values include: text: text selector. date: date selector. time: time selector. datetime: date and time selector. multi-text: multi-column text selector.",
23          "supportedDevices": ["phone", "tablet", "tv"]
24        }
25      ],
26      "type": "enum",
27      "options": [
28        {
29          "name": "text"
30        },
31        {
32          "name": "date"
33        },
34        {
35          "name": "time"
36        },
37        {
38          "name": "datetime"
39        },
40        {
41          "name": "multi-text"
42        }
43      ]
44    },
45    {
46      "name": "range",
47      "supportedDevices": ["phone", "tablet", "tv"],
48      "required": false,
49      "description": [
50        {
51          "name": "Value range of the common selector, for example, ['15', '20', '25']. NOTE Use the data binding mode, for example, range = {{data}}. Declare the corresponding variable data: ['15', '20', '25'] in the JavaScript file.",
52          "supportedDevices": ["phone", "tablet", "tv"]
53        }
54      ],
55      "type": "string"
56    },
57    {
58      "name": "selected",
59      "supportedDevices": ["phone", "tablet", "tv"],
60      "required": false,
61      "description": [
62        {
63          "name": "Default value of the common selector. The value should be the index of range.",
64          "supportedDevices": ["phone", "tablet", "tv"]
65        }
66      ],
67      "type": "string"
68    },
69    {
70      "name": "value",
71      "supportedDevices": ["phone", "tablet", "tv"],
72      "required": true,
73      "description": [
74        {
75          "name": "Value of the common selector.",
76          "supportedDevices": ["phone", "tablet", "tv"]
77        }
78      ],
79      "type": "string"
80    },
81    {
82      "name": "start",
83      "supportedDevices": ["phone", "tablet", "tv"],
84      "required": false,
85      "description": [
86        {
87          "name": "Start date, in format of YYYY-MM-DD.",
88          "supportedDevices": ["phone", "tablet", "tv"]
89        }
90      ],
91      "type": "string"
92    },
93    {
94      "name": "end",
95      "supportedDevices": ["phone", "tablet", "tv"],
96      "required": false,
97      "description": [
98        {
99          "name": "End date, in format of YYYY-MM-DD.",
100          "supportedDevices": ["phone", "tablet", "tv"]
101        }
102      ],
103      "type": "string"
104    },
105    {
106      "name": "lunar",
107      "supportedDevices": ["phone", "tablet", "tv"],
108      "version": [
109        {
110          "name": "v5.0"
111        }
112      ],
113      "required": false,
114      "description": [
115        {
116          "name": "Whether the pop-up window displays the lunar calendar.",
117          "supportedDevices": ["phone", "tablet", "tv"]
118        }
119      ],
120      "type": "enum",
121      "options": [
122        {
123          "name": "true"
124        },
125        {
126          "name": "false"
127        }
128      ]
129    },
130    {
131      "name": "vibrate",
132      "supportedDevices": ["phone", "tablet", "tv"],
133      "version": [
134        {
135          "name": "v7.0"
136        }
137      ],
138      "required": false,
139      "description": [
140        {
141          "name": "Whether the device vibrates when the picker is scrolled. true: The device vibrates when the picker is scrolled; false: The device does not vibrate when the picker is scrolled.",
142          "supportedDevices": ["phone", "tablet", "tv"]
143        }
144      ],
145      "type": "enum",
146      "options": [
147        {
148          "name": "true"
149        },
150        {
151          "name": "false"
152        }
153      ]
154    },
155    {
156      "name": "lunarswitch",
157      "supportedDevices": ["phone","tablet"],
158      "required": false,
159      "description": [
160        {
161          "name": "Whether the date selector pop-up window displays the lunar calendar. Whether to display the lunar calendar switch in the date selector. When this switch is displayed, you can switch between the lunar calendar and Gregorian calendar. Turn on the switch to display the lunar calendar, and turn off the switch to hide the lunar calendar. This attribute is available for smartphones.",
162          "supportedDevices": ["phone","tablet"]
163        }
164      ],
165      "type": "enum",
166      "options": [
167        {
168          "name": "true"
169        },
170        {
171          "name": "false"
172        }
173      ]
174    },
175    {
176      "name": "containsecond",
177      "supportedDevices": ["phone", "tablet", "tv"],
178      "required": false,
179      "description": [
180        {
181          "name": "Whether seconds are contained.",
182          "supportedDevices": ["phone", "tablet", "tv"]
183        }
184      ],
185      "type": "enum",
186      "options": [
187        {
188          "name": "true"
189        },
190        {
191          "name": "false"
192        }
193      ]
194    },
195    {
196      "name": "hours",
197      "supportedDevices": ["phone", "tablet", "tv"],
198      "version": [
199        {
200          "name": "v5.0"
201        }
202      ],
203      "required": false,
204      "description": [
205        {
206          "name": "Time format used by the date and time selector. Available values include: 12: displayed in 12-hour format and distinguished by morninga.m. and afternoonp.m. 24: displayed in 24-hour format.",
207          "supportedDevices": ["phone", "tablet", "tv"]
208        }
209      ],
210      "type": "enum",
211      "options": [
212        {
213          "name": "12"
214        },
215        {
216          "name": "24"
217        }
218      ]
219    },
220    {
221      "name": "columns",
222      "supportedDevices": ["phone", "tablet", "tv"],
223      "required": true,
224      "description": [
225        {
226          "name": "Number of columns in the multi-column text selector.",
227          "supportedDevices": ["phone", "tablet", "tv"]
228        }
229      ],
230      "type": "string"
231    },
232    {
233      "name": "shareid",
234      "supportedDevices": ["phone", "tablet", "tv", "wearable"],
235      "required": false,
236      "description": [
237        {
238          "name": "Used for the transition of shared elements and takes effect only when it is configured. This attribute cannot be modified after being set. list-item, image, text, button, label components are supported for the transition of shared elements.",
239          "supportedDevices": ["phone", "tablet", "tv", "wearable"]
240        }
241      ],
242      "type": "string"
243    },
244    {
245      "name": "id",
246      "supportedDevices": [
247        "phone",
248        "tablet",
249        "tv",
250        "liteWearable",
251        "wearable",
252        "smartVision"
253      ],
254      "required": false,
255      "version": [
256        {
257          "name": "v4.0"
258        }
259      ],
260      "description": [
261        {
262          "name": "Unique ID of a component.",
263          "supportedDevices": [
264            "phone",
265            "tablet",
266            "tv",
267            "liteWearable",
268            "wearable",
269            "smartVision"
270          ]
271        }
272      ],
273      "type": "string"
274    },
275    {
276      "name": "style",
277      "supportedDevices": [
278        "phone",
279        "tablet",
280        "tv",
281        "liteWearable",
282        "wearable",
283        "smartVision"
284      ],
285      "required": false,
286      "version": [
287        {
288          "name": "v4.0"
289        }
290      ],
291      "description": [
292        {
293          "name": "Style declaration of a component.",
294          "supportedDevices": [
295            "phone",
296            "tablet",
297            "tv",
298            "liteWearable",
299            "wearable",
300            "smartVision"
301          ]
302        }
303      ],
304      "type": "string"
305    },
306    {
307      "name": "class",
308      "supportedDevices": [
309        "phone",
310        "tablet",
311        "tv",
312        "liteWearable",
313        "wearable",
314        "smartVision"
315      ],
316      "required": false,
317      "version": [
318        {
319          "name": "v4.0"
320        }
321      ],
322      "description": [
323        {
324          "name": "Style class of a component, which is used to refer to a style table.",
325          "supportedDevices": [
326            "phone",
327            "tablet",
328            "tv",
329            "liteWearable",
330            "wearable",
331            "smartVision"
332          ]
333        }
334      ],
335      "type": "string"
336    },
337    {
338      "name": "ref",
339      "supportedDevices": [
340        "phone",
341        "tablet",
342        "tv",
343        "liteWearable",
344        "wearable",
345        "smartVision"
346      ],
347      "required": false,
348      "version": [
349        {
350          "name": "v4.0"
351        }
352      ],
353      "description": [
354        {
355          "name": "Used to register reference information of child elements or child components. The reference information is registered with the parent component on $refs.",
356          "supportedDevices": [
357            "phone",
358            "tablet",
359            "tv",
360            "liteWearable",
361            "wearable",
362            "smartVision"
363          ]
364        }
365      ],
366      "type": "string"
367    },
368    {
369      "name": "disabled",
370      "supportedDevices": [
371        "phone",
372        "tablet",
373        "tv",
374        "wearable"
375      ],
376      "required": false,
377      "version": [
378        {
379          "name": "v4.0"
380        }
381      ],
382      "description": [
383        {
384          "name": "Whether a component is disabled. If it is disabled, it cannot respond to user interaction.",
385          "supportedDevices": [
386            "phone",
387            "tablet",
388            "tv",
389            "wearable"
390          ]
391        }
392      ],
393      "type": "enum",
394      "options": [
395        {
396          "name": "true"
397        },
398        {
399          "name": "false"
400        }
401      ]
402    },
403    {
404      "name": "focusable",
405      "supportedDevices": [
406        "phone",
407        "tablet",
408        "tv",
409        "wearable"
410      ],
411      "required": false,
412      "version": [
413        {
414          "name": "v4.0"
415        }
416      ],
417      "description": [
418        {
419          "name": "Whether a component can gain focus. When focusable is set to true, the component can respond to focus events and key events. If a key event or click event is set for the component, this attribute is set to true automatically.",
420          "supportedDevices": [
421            "phone",
422            "tablet",
423            "tv",
424            "wearable"
425          ]
426        }
427      ],
428      "type": "enum",
429      "options": [
430        {
431          "name": "true"
432        },
433        {
434          "name": "false"
435        }
436      ]
437    },
438    {
439      "name": "data-*",
440      "supportedDevices": [
441        "phone",
442        "tablet",
443        "tv",
444        "wearable"
445      ],
446      "required": false,
447      "version": [
448        {
449          "name": "v4.0"
450        }
451      ],
452      "description": [
453        {
454          "name": "Attribute set for a component to facilitate data storage and reading.",
455          "supportedDevices": [
456            "phone",
457            "tablet",
458            "tv",
459            "wearable"
460          ]
461        }
462      ],
463      "type": "string"
464    },
465    {
466      "name": "click-effect",
467      "supportedDevices": [
468        "phone",
469        "tablet",
470        "tv",
471        "wearable"
472      ],
473      "required": false,
474      "version": [
475        {
476          "name": "v5.0"
477        }
478      ],
479      "description": [
480        {
481          "name": "Click effect complying with spring physics. Available values are as follows:\nspring-small: The button icon scales down to 90% of its size when it is selected. This is appropriate for small icons.\nspring-medium: The component scales down to 95% of its size when it is selected. This is appropriate for medium-sized components.spring-large: The button icon scales down and up by 95% of its size, which is appropriate to large icons.",
482          "supportedDevices": [
483            "phone",
484            "tablet",
485            "tv",
486            "wearable"
487          ]
488        }
489      ],
490      "type": "enum",
491      "options": [
492        {
493          "name": "spring-small"
494        },
495        {
496          "name": "spring-medium"
497        },
498        {
499          "name": "spring-large"
500        }
501      ]
502    },
503    {
504      "name": "voicelabel",
505      "supportedDevices": [
506        "phone",
507        "tablet",
508        "tv",
509        "wearable"
510      ],
511      "required": false,
512      "version": [
513        {
514          "name": "v4.0"
515        }
516      ],
517      "description": [
518        {
519          "name": "Voice label. When a voice label is triggered, the click event of the component is triggered.",
520          "supportedDevices": [
521            "phone",
522            "tablet",
523            "tv",
524            "wearable"
525          ]
526        }
527      ],
528      "type": "string"
529    },
530    {
531      "name": "subscriptflag",
532      "supportedDevices": [
533        "phone",
534        "tablet",
535        "tv",
536        "wearable"
537      ],
538      "required": false,
539      "version": [
540        {
541          "name": "v4.0"
542        }
543      ],
544      "description": [
545        {
546          "name": "Voice subscript switch. Available values are as follows:\nauto: For the <image> and <list-item> components, if subscriptflag is set to auto, the voice subscript is turned on. For other components, if subscriptflag is set to auto, the voice subscript is turned off.\non: Turn on the voice subscript.\noff: Turn off the voice subscript.If no customized subscript is set, the subscript is automatically accumulated from 1.",
547          "supportedDevices": [
548            "phone",
549            "tablet",
550            "tv",
551            "wearable"
552          ]
553        }
554      ],
555      "type": "enum",
556      "options": [
557        {
558          "name": "auto"
559        },
560        {
561          "name": "on"
562        },
563        {
564          "name": "off"
565        }
566      ]
567    },
568    {
569      "name": "subscriptlabel",
570      "supportedDevices": [
571        "phone",
572        "tablet",
573        "tv",
574        "wearable"
575      ],
576      "required": false,
577      "version": [
578        {
579          "name": "v4.0"
580        }
581      ],
582      "description": [
583        {
584          "name": "Custom subscript. After it is set, the subscript is displayed in the way you specified. To make this attribute take effect, you need to turn on the voice subscript.",
585          "supportedDevices": [
586            "phone",
587            "tablet",
588            "tv",
589            "wearable"
590          ]
591        }
592      ],
593      "type": "string"
594    },
595    {
596      "name": "scenelabel",
597      "supportedDevices": [
598        "phone",
599        "tablet",
600        "tv",
601        "wearable"
602      ],
603      "required": false,
604      "version": [
605        {
606          "name": "v4.0"
607        }
608      ],
609      "description": [
610        {
611          "name": "Available values are as follows:\nvideo: Video scenario. For example, to watch a video, a user can say the voiceLabel (usually the video name), play voiceLabel, see voiceLabel, or watch voiceLabel, etc.\naudio: Music scenario. For example, to listen to a song, a user can say the voiceLabel (usually the song name), play voiceLabel, or listen voiceLabel, etc.\npage: Page scenario. For example, to go to a page, a user can say the voiceLabel (usually the page name), switch to voiceLabel, go to voiceLabel, or jump to voiceLabel, etc.\nswitch: Switch scenario. For example, to turn on or turn off a switch, a user can say the voiceLabel (usually the switch name), turn on voiceLabel, open voiceLabel, turn off voiceLabel, close voiceLabel, etc.common: Common scenario, which is triggered by the voiceLabel.",
612          "supportedDevices": [
613            "phone",
614            "tablet",
615            "tv",
616            "wearable"
617          ]
618        }
619      ],
620      "type": "enum",
621      "options": [
622        {
623          "name": "video"
624        },
625        {
626          "name": "audio"
627        },
628        {
629          "name": "page"
630        },
631        {
632          "name": "switch"
633        },
634        {
635          "name": "common"
636        }
637      ]
638    },
639    {
640      "name": "accessibilitygroup",
641      "supportedDevices": [
642        "phone",
643        "tablet",
644        "tv",
645        "wearable"
646      ],
647      "required": false,
648      "version": [
649        {
650          "name": "v4.0"
651        }
652      ],
653      "description": [
654        {
655          "name": "Accessibility group. If this attribute is set to true, the component and all its child components form an entire selectable component, and the accessibility service will no longer available for the content of its child components.",
656          "supportedDevices": [
657            "phone",
658            "tablet",
659            "tv",
660            "wearable"
661          ]
662        }
663      ],
664      "type": "enum",
665      "options": [
666        {
667          "name": "true"
668        },
669        {
670          "name": "false"
671        }
672      ]
673    },
674    {
675      "name": "accessibilitytext",
676      "supportedDevices": [
677        "phone",
678        "tablet",
679        "tv",
680        "wearable"
681      ],
682      "required": false,
683      "version": [
684        {
685          "name": "v4.0"
686        }
687      ],
688      "description": [
689        {
690          "name": "Accessibility text. If a component does not contain text information, it will not be read when the component is selected by the screen reader. In this case, the screen reader user cannot know which component is selected. To solve this problem, you can set this attribute for components without text information. When the component is selected by the screen reader, the specified accessibility text will be read, informing the user which component is selected. If a component with this attribute set contains text information, only the accessibility text will be read.",
691          "supportedDevices": [
692            "phone",
693            "tablet",
694            "tv",
695            "wearable"
696          ]
697        }
698      ],
699      "type": "string"
700    },
701    {
702      "name": "accessibilitydescription",
703      "supportedDevices": [
704        "phone",
705        "tablet",
706        "tv",
707        "wearable"
708      ],
709      "required": false,
710      "version": [
711        {
712          "name": "v4.0"
713        }
714      ],
715      "description": [
716        {
717          "name": "Accessibility description. You can specify further explanation of the current component, for example, possible operation consequences, especially those cannot be learned from component attributes and accessibility text. You can set a detailed description text for the attribute of the component to help users understand the operation to be performed. If a component contains both text information and the accessibility description, the text is read first and then the accessibility description, when the component is selected.",
718          "supportedDevices": [
719            "phone",
720            "tablet",
721            "tv",
722            "wearable"
723          ]
724        }
725      ],
726      "type": "string"
727    },
728    {
729      "name": "accessibilityimportance",
730      "supportedDevices": [
731        "phone",
732        "tablet",
733        "tv",
734        "wearable"
735      ],
736      "required": false,
737      "version": [
738        {
739          "name": "v4.0"
740        }
741      ],
742      "description": [
743        {
744          "name": "Accessibility importance, which is used to decide whether a component can be identified by the accessibility service. The value can be auto, yes, no, or no-hide-descendants. The last value forces the screen reader to ignore the current component and all its subcomponents.\nyes: The current component is selectable for the accessibility service.no: The current component is not selectable for the accessibility service.",
745          "supportedDevices": [
746            "phone",
747            "tablet",
748            "tv",
749            "wearable"
750          ]
751        }
752      ],
753      "type": "string"
754    },
755    {
756      "name": "for",
757      "supportedDevices": [
758        "phone",
759        "tablet",
760        "tv",
761        "liteWearable",
762        "wearable",
763        "smartVision"
764      ],
765      "required": false,
766      "version": [
767        {
768          "name": "v4.0"
769        }
770      ],
771      "description": [
772        {
773          "name": "Expands the current element based on the configured data list.",
774          "supportedDevices": [
775            "phone",
776            "tablet",
777            "tv",
778            "liteWearable",
779            "wearable",
780            "smartVision"
781          ]
782        }
783      ],
784      "type": "string"
785    },
786    {
787      "name": "tid",
788      "supportedDevices": [
789        "phone",
790        "tablet",
791        "tv",
792        "liteWearable",
793        "wearable",
794        "smartVision"
795      ],
796      "required": false,
797      "version": [
798        {
799          "name": "v4.0"
800        }
801      ],
802      "description": [
803        {
804          "name": "The tid attribute accelerates the for loop and improves the re-rendering efficiency when data in a loop changes.\nThe tid attribute specifies the unique ID of each element in the array. If it is not specified, the index of each element in the array is used as the ID. For example, tid=\"id\" indicates that the id attribute of each element is its unique ID.",
805          "supportedDevices": [
806            "phone",
807            "tablet",
808            "tv",
809            "liteWearable",
810            "wearable",
811            "smartVision"
812          ]
813        }
814      ],
815      "type": "string"
816    },
817    {
818      "name": "if",
819      "supportedDevices": [
820        "phone",
821        "tablet",
822        "tv",
823        "liteWearable",
824        "wearable",
825        "smartVision"
826      ],
827      "required": false,
828      "version": [
829        {
830          "name": "v4.0"
831        }
832      ],
833      "description": [
834        {
835          "name": "Whether the element is added or removed.",
836          "supportedDevices": [
837            "phone",
838            "tablet",
839            "tv",
840            "liteWearable",
841            "wearable",
842            "smartVision"
843          ]
844        }
845      ],
846      "type": "enum",
847      "options": [
848        {
849          "name": "true"
850        },
851        {
852          "name": "false"
853        }
854      ]
855    },
856    {
857      "name": "dir",
858      "supportedDevices": [
859        "phone",
860        "tablet",
861        "tv",
862        "wearable"
863      ],
864      "version": [
865        {
866          "name": "v6.0"
867        }
868      ],
869      "required": false,
870      "description": [
871        {
872          "name": "Sets the element layout mode. The rtl, ltr, and auto attributes can be set.",
873          "supportedDevices": [
874            "phone",
875            "tablet",
876            "tv",
877            "wearable"
878          ]
879        }
880      ],
881      "type": "enum",
882      "options": [
883        {
884          "name": "ltr"
885        },
886        {
887          "name": "rtl"
888        },
889        {
890          "name": "auto"
891        }
892      ]
893    },
894    {
895      "name": "elif",
896      "supportedDevices": [
897        "phone",
898        "tablet",
899        "tv",
900        "liteWearable",
901        "wearable",
902        "smartVision"
903      ],
904      "required": false,
905      "version": [
906        {
907          "name": "v4.0"
908        }
909      ],
910      "description": [],
911      "type": "enum",
912      "options": [
913        {
914          "name": "true"
915        },
916        {
917          "name": "false"
918        }
919      ]
920    },
921    {
922      "name": "else",
923      "supportedDevices": [
924        "phone",
925        "tablet",
926        "tv",
927        "liteWearable",
928        "wearable",
929        "smartVision"
930      ],
931      "required": false,
932      "version": [
933        {
934          "name": "v4.0"
935        }
936      ],
937      "description": [],
938      "type": "string"
939    },
940    {
941      "name": "show",
942      "supportedDevices": [
943        "phone",
944        "tablet",
945        "tv",
946        "liteWearable",
947        "wearable",
948        "smartVision"
949      ],
950      "required": false,
951      "version": [
952        {
953          "name": "v4.0"
954        }
955      ],
956      "description": [
957        {
958          "name": "Whether the element is displayed or hidden.",
959          "supportedDevices": [
960            "phone",
961            "tablet",
962            "tv",
963            "liteWearable",
964            "wearable",
965            "smartVision"
966          ]
967        }
968      ],
969      "type": "enum",
970      "options": [
971        {
972          "name": "true"
973        },
974        {
975          "name": "false"
976        }
977      ]
978    }
979  ],
980  "events": [
981    {
982      "name": "change",
983      "supportedDevices": ["phone", "tablet", "tv"],
984      "description": [
985        {
986          "name": "Triggered when the content entered in the text box changes.",
987          "supportedDevices": ["phone", "tablet", "tv"]
988        }
989      ]
990    },
991    {
992      "name": "cancel",
993      "supportedDevices": ["phone", "tablet", "tv"],
994      "description": [
995        {
996          "name": "Triggered when the cancel button is clicked.",
997          "supportedDevices": ["phone", "tablet", "tv"]
998        }
999      ]
1000    },
1001    {
1002      "name": "columnchange",
1003      "supportedDevices": ["phone", "tablet", "tv"],
1004      "description": [
1005        {
1006          "name": "Triggered when the value of a column in the multi-column text selector changes. column indicates the column whose value has changed. newValue indicates the selected value. newSelected indicates the index of the selected value.",
1007          "supportedDevices": ["phone", "tablet", "tv"]
1008        }
1009      ]
1010    },
1011    {
1012      "name": "touchstart",
1013      "supportedDevices": [
1014        "phone",
1015        "tablet",
1016        "tv",
1017        "wearable"
1018      ],
1019      "version": [
1020        {
1021          "name": "v4.0"
1022        }
1023      ],
1024      "description": [
1025        {
1026          "name": "The tapping starts",
1027          "supportedDevices": [
1028            "phone",
1029            "tablet",
1030            "tv",
1031            "wearable"
1032          ]
1033        }
1034      ]
1035    },
1036    {
1037      "name": "touchmove",
1038      "supportedDevices": [
1039        "phone",
1040        "tablet",
1041        "tv",
1042        "wearable"
1043      ],
1044      "version": [
1045        {
1046          "name": "v4.0"
1047        }
1048      ],
1049      "description": [
1050        {
1051          "name": "The tapping moves.",
1052          "supportedDevices": [
1053            "phone",
1054            "tablet",
1055            "tv",
1056            "wearable"
1057          ]
1058        }
1059      ]
1060    },
1061    {
1062      "name": "touchcancel",
1063      "supportedDevices": [
1064        "phone",
1065        "tablet",
1066        "tv",
1067        "wearable"
1068      ],
1069      "version": [
1070        {
1071          "name": "v4.0"
1072        }
1073      ],
1074      "description": [
1075        {
1076          "name": "The tapping is interrupted.",
1077          "supportedDevices": [
1078            "phone",
1079            "tablet",
1080            "tv",
1081            "wearable"
1082          ]
1083        }
1084      ]
1085    },
1086    {
1087      "name": "touchend",
1088      "supportedDevices": [
1089        "phone",
1090        "tablet",
1091        "tv",
1092        "wearable"
1093      ],
1094      "version": [
1095        {
1096          "name": "v4.0"
1097        }
1098      ],
1099      "description": [
1100        {
1101          "name": "The tapping ends.",
1102          "supportedDevices": [
1103            "phone",
1104            "tablet",
1105            "tv",
1106            "wearable"
1107          ]
1108        }
1109      ]
1110    },
1111    {
1112      "name": "click",
1113      "supportedDevices": [
1114        "phone",
1115        "tablet",
1116        "tv",
1117        "liteWearable",
1118        "wearable",
1119        "smartVision"
1120      ],
1121      "version": [
1122        {
1123          "name": "v4.0"
1124        }
1125      ],
1126      "description": [
1127        {
1128          "name": "A component is clicked.",
1129          "supportedDevices": [
1130            "phone",
1131            "tablet",
1132            "tv",
1133            "liteWearable",
1134            "wearable",
1135            "smartVision"
1136          ]
1137        }
1138      ]
1139    },
1140    {
1141      "name": "longpress",
1142      "supportedDevices": [
1143        "phone",
1144        "tablet",
1145        "tv",
1146        "liteWearable",
1147        "wearable",
1148        "smartVision"
1149      ],
1150      "version": [
1151        {
1152          "name": "v4.0"
1153        }
1154      ],
1155      "description": [
1156        {
1157          "name": "A component is long pressed.",
1158          "supportedDevices": [
1159            "phone",
1160            "tablet",
1161            "tv",
1162            "liteWearable",
1163            "wearable",
1164            "smartVision"
1165          ]
1166        }
1167      ]
1168    },
1169    {
1170      "name": "doubleclick",
1171      "supportedDevices": [
1172        "phone",
1173        "tablet",
1174        "tv",
1175        "liteWearable",
1176        "wearable",
1177        "smartVision"
1178      ],
1179      "version": [
1180        {
1181          "name": "v4.0"
1182        }
1183      ],
1184      "description": [
1185        {
1186          "name": "A component is double clicked.",
1187          "supportedDevices": [
1188            "phone",
1189            "tablet",
1190            "tv",
1191            "liteWearable",
1192            "wearable",
1193            "smartVision"
1194          ]
1195        }
1196      ]
1197    },
1198    {
1199      "name": "pinchstart",
1200      "supportedDevices": [
1201        "phone",
1202        "tablet",
1203        "tv",
1204        "liteWearable",
1205        "wearable",
1206        "smartVision"
1207      ],
1208      "version": [
1209        {
1210          "name": "v4.0"
1211        }
1212      ],
1213      "description": [
1214        {
1215          "name": "The pinch starts.",
1216          "supportedDevices": [
1217            "phone",
1218            "tablet",
1219            "tv",
1220            "liteWearable",
1221            "wearable",
1222            "smartVision"
1223          ]
1224        }
1225      ]
1226    },
1227    {
1228      "name": "pinchupdate",
1229      "supportedDevices": [
1230        "phone",
1231        "tablet",
1232        "tv",
1233        "liteWearable",
1234        "wearable",
1235        "smartVision"
1236      ],
1237      "version": [
1238        {
1239          "name": "v4.0"
1240        }
1241      ],
1242      "description": [
1243        {
1244          "name": "The pinch updates.",
1245          "supportedDevices": [
1246            "phone",
1247            "tablet",
1248            "tv",
1249            "liteWearable",
1250            "wearable",
1251            "smartVision"
1252          ]
1253        }
1254      ]
1255    },
1256    {
1257      "name": "pinchend",
1258      "supportedDevices": [
1259        "phone",
1260        "tablet",
1261        "tv",
1262        "liteWearable",
1263        "wearable",
1264        "smartVision"
1265      ],
1266      "version": [
1267        {
1268          "name": "v4.0"
1269        }
1270      ],
1271      "description": [
1272        {
1273          "name": "The pinch ends.",
1274          "supportedDevices": [
1275            "phone",
1276            "tablet",
1277            "tv",
1278            "liteWearable",
1279            "wearable",
1280            "smartVision"
1281          ]
1282        }
1283      ]
1284    },
1285    {
1286      "name": "pinchcancel",
1287      "supportedDevices": [
1288        "phone",
1289        "tablet",
1290        "tv",
1291        "liteWearable",
1292        "wearable",
1293        "smartVision"
1294      ],
1295      "version": [
1296        {
1297          "name": "v4.0"
1298        }
1299      ],
1300      "description": [
1301        {
1302          "name": "The pinch is interrupted.",
1303          "supportedDevices": [
1304            "phone",
1305            "tablet",
1306            "tv",
1307            "liteWearable",
1308            "wearable",
1309            "smartVision"
1310          ]
1311        }
1312      ]
1313    },
1314    {
1315      "name": "drag",
1316      "supportedDevices": [
1317        "phone",
1318        "tablet",
1319        "tv",
1320        "liteWearable",
1321        "wearable",
1322        "smartVision"
1323      ],
1324      "version": [
1325        {
1326          "name": "v7.0"
1327        }
1328      ],
1329      "description": [
1330        {
1331          "name": "The duration of drag.",
1332          "supportedDevices": [
1333            "phone",
1334            "tablet",
1335            "tv",
1336            "liteWearable",
1337            "wearable",
1338            "smartVision"
1339          ]
1340        }
1341      ]
1342    },
1343    {
1344      "name": "dragstart",
1345      "supportedDevices": [
1346        "phone",
1347        "tablet",
1348        "tv",
1349        "liteWearable",
1350        "wearable",
1351        "smartVision"
1352      ],
1353      "version": [
1354        {
1355          "name": "v7.0"
1356        }
1357      ],
1358      "description": [
1359        {
1360          "name": "The drag starts.",
1361          "supportedDevices": [
1362            "phone",
1363            "tablet",
1364            "tv",
1365            "liteWearable",
1366            "wearable",
1367            "smartVision"
1368          ]
1369        }
1370      ]
1371    },
1372    {
1373      "name": "dragend",
1374      "supportedDevices": [
1375        "phone",
1376        "tablet",
1377        "tv",
1378        "liteWearable",
1379        "wearable",
1380        "smartVision"
1381      ],
1382      "version": [
1383        {
1384          "name": "v7.0"
1385        }
1386      ],
1387      "description": [
1388        {
1389          "name": "The drag ends.",
1390          "supportedDevices": [
1391            "phone",
1392            "tablet",
1393            "tv",
1394            "liteWearable",
1395            "wearable",
1396            "smartVision"
1397          ]
1398        }
1399      ]
1400    },
1401    {
1402      "name": "dragenter",
1403      "supportedDevices": [
1404        "phone",
1405        "tablet",
1406        "tv",
1407        "liteWearable",
1408        "wearable",
1409        "smartVision"
1410      ],
1411      "version": [
1412        {
1413          "name": "v7.0"
1414        }
1415      ],
1416      "description": [
1417        {
1418          "name": "The drag enters.",
1419          "supportedDevices": [
1420            "phone",
1421            "tablet",
1422            "tv",
1423            "liteWearable",
1424            "wearable",
1425            "smartVision"
1426          ]
1427        }
1428      ]
1429    },
1430    {
1431      "name": "dragover",
1432      "supportedDevices": [
1433        "phone",
1434        "tablet",
1435        "tv",
1436        "liteWearable",
1437        "wearable",
1438        "smartVision"
1439      ],
1440      "version": [
1441        {
1442          "name": "v7.0"
1443        }
1444      ],
1445      "description": [
1446        {
1447          "name": "The drag overs.",
1448          "supportedDevices": [
1449            "phone",
1450            "tablet",
1451            "tv",
1452            "liteWearable",
1453            "wearable",
1454            "smartVision"
1455          ]
1456        }
1457      ]
1458    },
1459    {
1460      "name": "dragleave",
1461      "supportedDevices": [
1462        "phone",
1463        "tablet",
1464        "tv",
1465        "liteWearable",
1466        "wearable",
1467        "smartVision"
1468      ],
1469      "version": [
1470        {
1471          "name": "v7.0"
1472        }
1473      ],
1474      "description": [
1475        {
1476          "name": "The drag leaves.",
1477          "supportedDevices": [
1478            "phone",
1479            "tablet",
1480            "tv",
1481            "liteWearable",
1482            "wearable",
1483            "smartVision"
1484          ]
1485        }
1486      ]
1487    },
1488    {
1489      "name": "drop",
1490      "supportedDevices": [
1491        "phone",
1492        "tablet",
1493        "tv",
1494        "liteWearable",
1495        "wearable",
1496        "smartVision"
1497      ],
1498      "version": [
1499        {
1500          "name": "v7.0"
1501        }
1502      ],
1503      "description": [
1504        {
1505          "name": "The drag drops.",
1506          "supportedDevices": [
1507            "phone",
1508            "tablet",
1509            "tv",
1510            "liteWearable",
1511            "wearable",
1512            "smartVision"
1513          ]
1514        }
1515      ]
1516    },
1517    {
1518      "name": "focus",
1519      "supportedDevices": [
1520        "phone",
1521        "tablet",
1522        "tv",
1523        "wearable"
1524      ],
1525      "version": [
1526        {
1527          "name": "v4.0"
1528        }
1529      ],
1530      "description": [
1531        {
1532          "name": "A component gains focus. The <span> component cannot gain focus.",
1533          "supportedDevices": [
1534            "phone",
1535            "tablet",
1536            "tv",
1537            "wearable"
1538          ]
1539        }
1540      ]
1541    },
1542    {
1543      "name": "blur",
1544      "supportedDevices": [
1545        "phone",
1546        "tablet",
1547        "tv",
1548        "wearable"
1549      ],
1550      "version": [
1551        {
1552          "name": "v4.0"
1553        }
1554      ],
1555      "description": [
1556        {
1557          "name": "A component loses focus. The <span> component cannot lose focus.",
1558          "supportedDevices": [
1559            "phone",
1560            "tablet",
1561            "tv",
1562            "wearable"
1563          ]
1564        }
1565      ]
1566    },
1567    {
1568      "name": "key",
1569      "supportedDevices": [
1570        "phone",
1571        "tablet",
1572        "tv",
1573        "wearable"
1574      ],
1575      "version": [
1576        {
1577          "name": "v4.0"
1578        }
1579      ],
1580      "description": [
1581        {
1582          "name": "A user presses a key on the remote control. Available return values are as follows:\ntrue: returned if the page processes the key event.\nfalse: returned if the default logic is used to process the key event.\nIf no value is returned, false is used as the return value.",
1583          "supportedDevices": [
1584            "phone",
1585            "tablet",
1586            "tv",
1587            "wearable"
1588          ]
1589        }
1590      ]
1591    },
1592    {
1593      "name": "swipe",
1594      "supportedDevices": [
1595        "phone",
1596        "tablet",
1597        "tv",
1598        "liteWearable",
1599        "wearable",
1600        "smartVision"
1601      ],
1602      "version": [
1603        {
1604          "name": "v5.0"
1605        }
1606      ],
1607      "description": [
1608        {
1609          "name": "A user quickly swipes on a component.",
1610          "supportedDevices": [
1611            "phone",
1612            "tablet",
1613            "tv",
1614            "liteWearable",
1615            "wearable",
1616            "smartVision"
1617          ]
1618        }
1619      ]
1620    },
1621    {
1622      "name": "attached",
1623      "supportedDevices": [
1624        "phone",
1625        "tablet",
1626        "tv",
1627        "wearable"
1628      ],
1629      "version": [
1630        {
1631          "name": "v6.0"
1632        }
1633      ],
1634      "description": [
1635        {
1636          "name": "The current component is mounted to the render tree.",
1637          "supportedDevices": [
1638            "phone",
1639            "tablet",
1640            "tv",
1641            "wearable"
1642          ]
1643        }
1644      ]
1645    },
1646    {
1647      "name": "detached",
1648      "supportedDevices": [
1649        "phone",
1650        "tablet",
1651        "tv",
1652        "wearable"
1653      ],
1654      "version": [
1655        {
1656          "name": "v6.0"
1657        }
1658      ],
1659      "description": [
1660        {
1661          "name": "The current component is removed from the render tree.",
1662          "supportedDevices": [
1663            "phone",
1664            "tablet",
1665            "tv",
1666            "wearable"
1667          ]
1668        }
1669      ]
1670    },
1671    {
1672      "name": "accessibility",
1673      "supportedDevices": [
1674        "phone",
1675        "tablet",
1676        "tv",
1677        "wearable"
1678      ],
1679      "version": [
1680        {
1681          "name": "v4.0"
1682        }
1683      ],
1684      "description": [
1685        {
1686          "name": "Event dispatched by the accessibility service.",
1687          "supportedDevices": [
1688            "phone",
1689            "tablet",
1690            "tv",
1691            "wearable"
1692          ]
1693        }
1694      ]
1695    }
1696  ],
1697  "supportedSubComponents": false,
1698  "supportedSubComponentsRestriction": [],
1699  "unSupportSubComponentsRestriction": [],
1700  "parentComponentsRestriction": []
1701}
1702