@oracle/oraclejet-core-pack 14.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (517) hide show
  1. package/oj-c/Avatar.json +458 -0
  2. package/oj-c/Button.json +536 -0
  3. package/oj-c/Collapsible.json +396 -0
  4. package/oj-c/FilePicker.json +555 -0
  5. package/oj-c/InputNumber.json +1321 -0
  6. package/oj-c/InputPassword.json +1164 -0
  7. package/oj-c/InputText.json +1411 -0
  8. package/oj-c/ListItemLayout.json +313 -0
  9. package/oj-c/MessageToast.json +334 -0
  10. package/oj-c/MeterBar.json +735 -0
  11. package/oj-c/MeterCircle.json +797 -0
  12. package/oj-c/ProgressBar.json +212 -0
  13. package/oj-c/ProgressCircle.json +223 -0
  14. package/oj-c/RatingGauge.json +495 -0
  15. package/oj-c/SelectMultiple.json +1143 -0
  16. package/oj-c/SelectSingle.json +1450 -0
  17. package/oj-c/SplitMenuButton.json +495 -0
  18. package/oj-c/TextArea.json +1283 -0
  19. package/oj-c/avatar/__webdriver__/AvatarWebElement.js +32 -0
  20. package/oj-c/avatar/__webdriver__/AvatarWebElementBase.js +87 -0
  21. package/oj-c/avatar/__webdriver__/index.js +74 -0
  22. package/oj-c/avatar/avatar-styles.css +10 -0
  23. package/oj-c/avatar/avatar.js +27 -0
  24. package/oj-c/avatar/component.json +227 -0
  25. package/oj-c/avatar/index.js +6 -0
  26. package/oj-c/avatar.js +6 -0
  27. package/oj-c/button/__tests__/button.test.js +20 -0
  28. package/oj-c/button/__webdriver__/ButtonWebElement.js +96 -0
  29. package/oj-c/button/__webdriver__/ButtonWebElementBase.js +96 -0
  30. package/oj-c/button/__webdriver__/index.js +74 -0
  31. package/oj-c/button/button-styles.css +11 -0
  32. package/oj-c/button/button.js +71 -0
  33. package/oj-c/button/component.json +243 -0
  34. package/oj-c/button/index.js +6 -0
  35. package/oj-c/button.js +6 -0
  36. package/oj-c/collapsible/__webdriver__/CollapsibleWebElement.js +116 -0
  37. package/oj-c/collapsible/__webdriver__/CollapsibleWebElementBase.js +60 -0
  38. package/oj-c/collapsible/__webdriver__/index.js +74 -0
  39. package/oj-c/collapsible/collapsible-styles.css +11 -0
  40. package/oj-c/collapsible/collapsible.js +69 -0
  41. package/oj-c/collapsible/component.json +184 -0
  42. package/oj-c/collapsible/index.js +6 -0
  43. package/oj-c/collapsible.js +6 -0
  44. package/oj-c/component.json +104 -0
  45. package/oj-c/corepackbundle.js +4049 -0
  46. package/oj-c/docs/avatar.html +149 -0
  47. package/oj-c/docs/button.html +149 -0
  48. package/oj-c/docs/collapsible.html +149 -0
  49. package/oj-c/docs/file-picker.html +149 -0
  50. package/oj-c/docs/index.html +168 -0
  51. package/oj-c/docs/input-number.html +149 -0
  52. package/oj-c/docs/input-password.html +149 -0
  53. package/oj-c/docs/input-text.html +149 -0
  54. package/oj-c/docs/jsDocMd.json +1 -0
  55. package/oj-c/docs/list-item-layout.html +149 -0
  56. package/oj-c/docs/message-toast.html +149 -0
  57. package/oj-c/docs/meter-bar.html +149 -0
  58. package/oj-c/docs/meter-circle.html +149 -0
  59. package/oj-c/docs/oj-c.Avatar.html +1778 -0
  60. package/oj-c/docs/oj-c.Button.html +2065 -0
  61. package/oj-c/docs/oj-c.Collapsible.html +1990 -0
  62. package/oj-c/docs/oj-c.FilePicker.html +2380 -0
  63. package/oj-c/docs/oj-c.InputNumber.html +5850 -0
  64. package/oj-c/docs/oj-c.InputPassword.html +4891 -0
  65. package/oj-c/docs/oj-c.InputText.html +5772 -0
  66. package/oj-c/docs/oj-c.ListItemLayout.html +1549 -0
  67. package/oj-c/docs/oj-c.MessageToast.html +1574 -0
  68. package/oj-c/docs/oj-c.MeterBar.html +3193 -0
  69. package/oj-c/docs/oj-c.MeterCircle.html +3502 -0
  70. package/oj-c/docs/oj-c.ProgressBar.html +1122 -0
  71. package/oj-c/docs/oj-c.ProgressCircle.html +1138 -0
  72. package/oj-c/docs/oj-c.RatingGauge.html +2320 -0
  73. package/oj-c/docs/oj-c.SelectMultiple.html +4720 -0
  74. package/oj-c/docs/oj-c.SelectSingle.html +5920 -0
  75. package/oj-c/docs/oj-c.SplitMenuButton.html +1891 -0
  76. package/oj-c/docs/oj-c.TextArea.html +5447 -0
  77. package/oj-c/docs/progress-bar.html +149 -0
  78. package/oj-c/docs/progress-circle.html +149 -0
  79. package/oj-c/docs/rating-gauge.html +149 -0
  80. package/oj-c/docs/scripts/deprecated.js +268 -0
  81. package/oj-c/docs/scripts/prettify/Apache-License-2.0.txt +202 -0
  82. package/oj-c/docs/scripts/prettify/lang-css.js +9 -0
  83. package/oj-c/docs/scripts/prettify/prettify.js +35 -0
  84. package/oj-c/docs/select-multiple.html +149 -0
  85. package/oj-c/docs/select-single.html +149 -0
  86. package/oj-c/docs/split-menu-button.html +149 -0
  87. package/oj-c/docs/styles/images/bookmark.png +0 -0
  88. package/oj-c/docs/styles/images/linesarrowup.png +0 -0
  89. package/oj-c/docs/styles/images/linesarrowup_blue.png +0 -0
  90. package/oj-c/docs/styles/images/linesarrowup_hov.png +0 -0
  91. package/oj-c/docs/styles/images/linesarrowup_white.png +0 -0
  92. package/oj-c/docs/styles/images/oracle_logo_sm.png +0 -0
  93. package/oj-c/docs/styles/jsdoc-default.css +851 -0
  94. package/oj-c/docs/styles/prettify-jsdoc.css +111 -0
  95. package/oj-c/docs/styles/prettify-tomorrow.css +132 -0
  96. package/oj-c/docs/text-area.html +149 -0
  97. package/oj-c/editable-value/UNSAFE_useAssistiveText/useAssistiveText.js +57 -0
  98. package/oj-c/editable-value/UNSAFE_useComponentMessaging/useComponentMessaging.js +80 -0
  99. package/oj-c/editable-value/UNSAFE_useConverter/useConverter.js +56 -0
  100. package/oj-c/editable-value/UNSAFE_useConverterLifecycle/useConverterLifecycle.js +26 -0
  101. package/oj-c/editable-value/UNSAFE_useDeferredValidators/useDeferredValidators.js +22 -0
  102. package/oj-c/editable-value/UNSAFE_useEditableValue/useEditableValue.js +154 -0
  103. package/oj-c/editable-value/UNSAFE_useStaleIdentity/useStaleIdentity.js +17 -0
  104. package/oj-c/editable-value/UNSAFE_useValidationLifecycle/useValidationLifecycle.js +118 -0
  105. package/oj-c/editable-value/UNSAFE_useValidators/useValidators.js +153 -0
  106. package/oj-c/editable-value/UNSAFE_useValue/useValue.js +42 -0
  107. package/oj-c/editable-value/UNSAFE_useValueLifecycle/useValueLifecycle.js +27 -0
  108. package/oj-c/editable-value/component.json +9 -0
  109. package/oj-c/editable-value/utils/utils.js +31 -0
  110. package/oj-c/file-picker/__webdriver__/FilePickerWebElement.js +32 -0
  111. package/oj-c/file-picker/__webdriver__/FilePickerWebElementBase.js +87 -0
  112. package/oj-c/file-picker/__webdriver__/index.js +74 -0
  113. package/oj-c/file-picker/component.json +209 -0
  114. package/oj-c/file-picker/file-picker-styles.css +17 -0
  115. package/oj-c/file-picker/file-picker.js +59 -0
  116. package/oj-c/file-picker/index.js +6 -0
  117. package/oj-c/file-picker.js +6 -0
  118. package/oj-c/hooks/UNSAFE_useDataProvider/DataProviderHandler.js +89 -0
  119. package/oj-c/hooks/UNSAFE_useDataProvider/useDataProvider.js +25 -0
  120. package/oj-c/hooks/UNSAFE_useDataProvider/utils.js +202 -0
  121. package/oj-c/hooks/UNSAFE_useListData/__tests__/useListData.test.js +124 -0
  122. package/oj-c/hooks/UNSAFE_useListData/useListData.js +297 -0
  123. package/oj-c/hooks/UNSAFE_useTreeData/__tests__/useTreeData.test.js +62 -0
  124. package/oj-c/hooks/UNSAFE_useTreeData/useTreeData.js +130 -0
  125. package/oj-c/hooks/component.json +9 -0
  126. package/oj-c/input-number/__dev__/input-number.doc.mdx +31 -0
  127. package/oj-c/input-number/__webdriver__/InputNumberWebElement.js +32 -0
  128. package/oj-c/input-number/__webdriver__/InputNumberWebElementBase.js +339 -0
  129. package/oj-c/input-number/__webdriver__/index.js +74 -0
  130. package/oj-c/input-number/component.json +536 -0
  131. package/oj-c/input-number/index.js +6 -0
  132. package/oj-c/input-number/input-number-styles.css +13 -0
  133. package/oj-c/input-number/input-number.js +119 -0
  134. package/oj-c/input-number/stepBasisUtils.js +76 -0
  135. package/oj-c/input-number/useImplicitNumberConverter.js +12 -0
  136. package/oj-c/input-number/useImplicitNumberRangeValidator.js +28 -0
  137. package/oj-c/input-number/useNumberInputTextPreact.js +153 -0
  138. package/oj-c/input-number.js +6 -0
  139. package/oj-c/input-password/__webdriver__/InputPasswordWebElement.js +32 -0
  140. package/oj-c/input-password/__webdriver__/InputPasswordWebElementBase.js +258 -0
  141. package/oj-c/input-password/__webdriver__/index.js +74 -0
  142. package/oj-c/input-password/component.json +488 -0
  143. package/oj-c/input-password/index.js +6 -0
  144. package/oj-c/input-password/input-password-styles.css +13 -0
  145. package/oj-c/input-password/input-password.js +112 -0
  146. package/oj-c/input-password/useInputPasswordPreact.js +46 -0
  147. package/oj-c/input-password.js +6 -0
  148. package/oj-c/input-text/__dev__/input-text.doc.mdx +30 -0
  149. package/oj-c/input-text/__tests__/input-text.test.js +70 -0
  150. package/oj-c/input-text/__webdriver__/InputTextWebElement.js +32 -0
  151. package/oj-c/input-text/__webdriver__/InputTextWebElementBase.js +294 -0
  152. package/oj-c/input-text/__webdriver__/index.js +74 -0
  153. package/oj-c/input-text/component.json +580 -0
  154. package/oj-c/input-text/index.js +6 -0
  155. package/oj-c/input-text/input-text-styles.css +13 -0
  156. package/oj-c/input-text/input-text.js +118 -0
  157. package/oj-c/input-text/useInputTextPreact.js +46 -0
  158. package/oj-c/input-text.js +6 -0
  159. package/oj-c/list-item-layout/__webdriver__/ListItemLayoutWebElement.js +32 -0
  160. package/oj-c/list-item-layout/__webdriver__/ListItemLayoutWebElementBase.js +42 -0
  161. package/oj-c/list-item-layout/__webdriver__/index.js +74 -0
  162. package/oj-c/list-item-layout/component.json +139 -0
  163. package/oj-c/list-item-layout/index.js +6 -0
  164. package/oj-c/list-item-layout/list-item-layout-styles.css +12 -0
  165. package/oj-c/list-item-layout/list-item-layout.js +30 -0
  166. package/oj-c/list-item-layout.js +6 -0
  167. package/oj-c/message-toast/__webdriver__/MessageToastWebElement.js +32 -0
  168. package/oj-c/message-toast/__webdriver__/MessageToastWebElementBase.js +78 -0
  169. package/oj-c/message-toast/__webdriver__/index.js +74 -0
  170. package/oj-c/message-toast/component.json +244 -0
  171. package/oj-c/message-toast/index.js +6 -0
  172. package/oj-c/message-toast/message-toast-styles.css +8 -0
  173. package/oj-c/message-toast/message-toast.js +35 -0
  174. package/oj-c/message-toast.js +6 -0
  175. package/oj-c/metadata/allComponents.json +5552 -0
  176. package/oj-c/meter-bar/__webdriver__/MeterBarWebElement.js +32 -0
  177. package/oj-c/meter-bar/__webdriver__/MeterBarWebElementBase.js +195 -0
  178. package/oj-c/meter-bar/__webdriver__/index.js +74 -0
  179. package/oj-c/meter-bar/component.json +246 -0
  180. package/oj-c/meter-bar/index.js +6 -0
  181. package/oj-c/meter-bar/meter-bar-styles.css +21 -0
  182. package/oj-c/meter-bar/meter-bar.js +44 -0
  183. package/oj-c/meter-bar.js +6 -0
  184. package/oj-c/meter-circle/__webdriver__/MeterCircleWebElement.js +32 -0
  185. package/oj-c/meter-circle/__webdriver__/MeterCircleWebElementBase.js +213 -0
  186. package/oj-c/meter-circle/__webdriver__/index.js +74 -0
  187. package/oj-c/meter-circle/component.json +289 -0
  188. package/oj-c/meter-circle/index.js +6 -0
  189. package/oj-c/meter-circle/meter-circle-styles.css +14 -0
  190. package/oj-c/meter-circle/meter-circle.js +47 -0
  191. package/oj-c/meter-circle.js +6 -0
  192. package/oj-c/min/avatar/avatar-styles.css +10 -0
  193. package/oj-c/min/avatar.js +2 -0
  194. package/oj-c/min/avatar.js.map +1 -0
  195. package/oj-c/min/button/button-styles.css +11 -0
  196. package/oj-c/min/button.js +2 -0
  197. package/oj-c/min/button.js.map +1 -0
  198. package/oj-c/min/collapsible/collapsible-styles.css +11 -0
  199. package/oj-c/min/collapsible.js +2 -0
  200. package/oj-c/min/collapsible.js.map +1 -0
  201. package/oj-c/min/corepackbundle.css +226 -0
  202. package/oj-c/min/corepackbundle.js +6 -0
  203. package/oj-c/min/corepackbundle.js.map +1 -0
  204. package/oj-c/min/editable-value/UNSAFE_useAssistiveText/useAssistiveText.d.ts +32 -0
  205. package/oj-c/min/editable-value/UNSAFE_useAssistiveText/useAssistiveText.js +57 -0
  206. package/oj-c/min/editable-value/UNSAFE_useComponentMessaging/useComponentMessaging.d.ts +24 -0
  207. package/oj-c/min/editable-value/UNSAFE_useComponentMessaging/useComponentMessaging.js +80 -0
  208. package/oj-c/min/editable-value/UNSAFE_useConverter/useConverter.d.ts +14 -0
  209. package/oj-c/min/editable-value/UNSAFE_useConverter/useConverter.js +56 -0
  210. package/oj-c/min/editable-value/UNSAFE_useConverterLifecycle/useConverterLifecycle.d.ts +11 -0
  211. package/oj-c/min/editable-value/UNSAFE_useConverterLifecycle/useConverterLifecycle.js +26 -0
  212. package/oj-c/min/editable-value/UNSAFE_useDeferredValidators/useDeferredValidators.d.ts +8 -0
  213. package/oj-c/min/editable-value/UNSAFE_useDeferredValidators/useDeferredValidators.js +22 -0
  214. package/oj-c/min/editable-value/UNSAFE_useEditableValue/useEditableValue.d.ts +47 -0
  215. package/oj-c/min/editable-value/UNSAFE_useEditableValue/useEditableValue.js +154 -0
  216. package/oj-c/min/editable-value/UNSAFE_useStaleIdentity/useStaleIdentity.d.ts +5 -0
  217. package/oj-c/min/editable-value/UNSAFE_useStaleIdentity/useStaleIdentity.js +17 -0
  218. package/oj-c/min/editable-value/UNSAFE_useValidationLifecycle/useValidationLifecycle.d.ts +15 -0
  219. package/oj-c/min/editable-value/UNSAFE_useValidationLifecycle/useValidationLifecycle.js +118 -0
  220. package/oj-c/min/editable-value/UNSAFE_useValidators/useValidators.d.ts +35 -0
  221. package/oj-c/min/editable-value/UNSAFE_useValidators/useValidators.js +153 -0
  222. package/oj-c/min/editable-value/UNSAFE_useValue/useValue.d.ts +23 -0
  223. package/oj-c/min/editable-value/UNSAFE_useValue/useValue.js +42 -0
  224. package/oj-c/min/editable-value/UNSAFE_useValueLifecycle/useValueLifecycle.d.ts +9 -0
  225. package/oj-c/min/editable-value/UNSAFE_useValueLifecycle/useValueLifecycle.js +27 -0
  226. package/oj-c/min/editable-value/component.json +9 -0
  227. package/oj-c/min/editable-value/utils/utils.d.ts +6 -0
  228. package/oj-c/min/editable-value/utils/utils.js +31 -0
  229. package/oj-c/min/file-picker/file-picker-styles.css +17 -0
  230. package/oj-c/min/file-picker.js +2 -0
  231. package/oj-c/min/file-picker.js.map +1 -0
  232. package/oj-c/min/hooks/UNSAFE_useDataProvider/DataProviderHandler.d.ts +18 -0
  233. package/oj-c/min/hooks/UNSAFE_useDataProvider/DataProviderHandler.js +89 -0
  234. package/oj-c/min/hooks/UNSAFE_useDataProvider/useDataProvider.d.ts +10 -0
  235. package/oj-c/min/hooks/UNSAFE_useDataProvider/useDataProvider.js +25 -0
  236. package/oj-c/min/hooks/UNSAFE_useDataProvider/utils.d.ts +3 -0
  237. package/oj-c/min/hooks/UNSAFE_useDataProvider/utils.js +202 -0
  238. package/oj-c/min/hooks/UNSAFE_useListData/__tests__/useListData.test.d.ts +1 -0
  239. package/oj-c/min/hooks/UNSAFE_useListData/__tests__/useListData.test.js +124 -0
  240. package/oj-c/min/hooks/UNSAFE_useListData/useListData.d.ts +21 -0
  241. package/oj-c/min/hooks/UNSAFE_useListData/useListData.js +297 -0
  242. package/oj-c/min/hooks/UNSAFE_useTreeData/__tests__/useTreeData.test.d.ts +1 -0
  243. package/oj-c/min/hooks/UNSAFE_useTreeData/__tests__/useTreeData.test.js +62 -0
  244. package/oj-c/min/hooks/UNSAFE_useTreeData/useTreeData.d.ts +27 -0
  245. package/oj-c/min/hooks/UNSAFE_useTreeData/useTreeData.js +130 -0
  246. package/oj-c/min/hooks/component.json +9 -0
  247. package/oj-c/min/input-number/input-number-styles.css +13 -0
  248. package/oj-c/min/input-number.js +2 -0
  249. package/oj-c/min/input-number.js.map +1 -0
  250. package/oj-c/min/input-password/input-password-styles.css +13 -0
  251. package/oj-c/min/input-password.js +2 -0
  252. package/oj-c/min/input-password.js.map +1 -0
  253. package/oj-c/min/input-text/input-text-styles.css +13 -0
  254. package/oj-c/min/input-text.js +2 -0
  255. package/oj-c/min/input-text.js.map +1 -0
  256. package/oj-c/min/list-item-layout/list-item-layout-styles.css +12 -0
  257. package/oj-c/min/list-item-layout.js +2 -0
  258. package/oj-c/min/list-item-layout.js.map +1 -0
  259. package/oj-c/min/message-toast/message-toast-styles.css +8 -0
  260. package/oj-c/min/message-toast.js +2 -0
  261. package/oj-c/min/message-toast.js.map +1 -0
  262. package/oj-c/min/meter-bar/meter-bar-styles.css +21 -0
  263. package/oj-c/min/meter-bar.js +2 -0
  264. package/oj-c/min/meter-bar.js.map +1 -0
  265. package/oj-c/min/meter-circle/meter-circle-styles.css +14 -0
  266. package/oj-c/min/meter-circle.js +2 -0
  267. package/oj-c/min/meter-circle.js.map +1 -0
  268. package/oj-c/min/progress-bar/progress-bar-styles.css +11 -0
  269. package/oj-c/min/progress-bar.js +2 -0
  270. package/oj-c/min/progress-bar.js.map +1 -0
  271. package/oj-c/min/progress-circle/progress-circle-styles.css +14 -0
  272. package/oj-c/min/progress-circle.js +2 -0
  273. package/oj-c/min/progress-circle.js.map +1 -0
  274. package/oj-c/min/rating-gauge/rating-gauge-styles.css +12 -0
  275. package/oj-c/min/rating-gauge.js +2 -0
  276. package/oj-c/min/rating-gauge.js.map +1 -0
  277. package/oj-c/min/select-common/UNSAFE_useDataProviderListeners/index.d.ts +2 -0
  278. package/oj-c/min/select-common/UNSAFE_useDataProviderListeners/index.js +6 -0
  279. package/oj-c/min/select-common/UNSAFE_useDataProviderListeners/useDataProviderListeners.d.ts +13 -0
  280. package/oj-c/min/select-common/UNSAFE_useDataProviderListeners/useDataProviderListeners.js +96 -0
  281. package/oj-c/min/select-common/UNSAFE_useWrapDataProvider/index.d.ts +1 -0
  282. package/oj-c/min/select-common/UNSAFE_useWrapDataProvider/index.js +6 -0
  283. package/oj-c/min/select-common/UNSAFE_useWrapDataProvider/useWrapDataProvider.d.ts +3 -0
  284. package/oj-c/min/select-common/UNSAFE_useWrapDataProvider/useWrapDataProvider.js +16 -0
  285. package/oj-c/min/select-common/UNSAFE_useWrapValueState/index.d.ts +1 -0
  286. package/oj-c/min/select-common/UNSAFE_useWrapValueState/index.js +6 -0
  287. package/oj-c/min/select-common/UNSAFE_useWrapValueState/useWrapValueState.d.ts +23 -0
  288. package/oj-c/min/select-common/UNSAFE_useWrapValueState/useWrapValueState.js +23 -0
  289. package/oj-c/min/select-common/component.json +9 -0
  290. package/oj-c/min/select-common/utils/utils.d.ts +10 -0
  291. package/oj-c/min/select-common/utils/utils.js +19 -0
  292. package/oj-c/min/select-multiple/select-multiple-styles.css +13 -0
  293. package/oj-c/min/select-multiple.js +3 -0
  294. package/oj-c/min/select-multiple.js.map +1 -0
  295. package/oj-c/min/select-single/select-single-styles.css +22 -0
  296. package/oj-c/min/select-single.js +3 -0
  297. package/oj-c/min/select-single.js.map +1 -0
  298. package/oj-c/min/split-menu-button/split-menu-button-styles.css +11 -0
  299. package/oj-c/min/split-menu-button.js +2 -0
  300. package/oj-c/min/split-menu-button.js.map +1 -0
  301. package/oj-c/min/text-area/text-area-styles.css +13 -0
  302. package/oj-c/min/text-area.js +2 -0
  303. package/oj-c/min/text-area.js.map +1 -0
  304. package/oj-c/min/utils/UNSAFE_focusTabUtils/focusUtils.d.ts +2 -0
  305. package/oj-c/min/utils/UNSAFE_focusTabUtils/focusUtils.js +23 -0
  306. package/oj-c/min/utils/UNSAFE_focusTabUtils/index.d.ts +1 -0
  307. package/oj-c/min/utils/UNSAFE_focusTabUtils/index.js +6 -0
  308. package/oj-c/min/utils/UNSAFE_keyUtils/index.d.ts +1 -0
  309. package/oj-c/min/utils/UNSAFE_keyUtils/index.js +19 -0
  310. package/oj-c/min/utils/UNSAFE_keyUtils/keySetUtils.d.ts +4 -0
  311. package/oj-c/min/utils/UNSAFE_keyUtils/keySetUtils.js +33 -0
  312. package/oj-c/min/utils/UNSAFE_meterUtils/index.d.ts +1 -0
  313. package/oj-c/min/utils/UNSAFE_meterUtils/index.js +6 -0
  314. package/oj-c/min/utils/UNSAFE_meterUtils/meterUtils.d.ts +2 -0
  315. package/oj-c/min/utils/UNSAFE_meterUtils/meterUtils.js +12 -0
  316. package/oj-c/min/utils/component.json +9 -0
  317. package/oj-c/progress-bar/__webdriver__/ProgressBarWebElement.js +32 -0
  318. package/oj-c/progress-bar/__webdriver__/ProgressBarWebElementBase.js +60 -0
  319. package/oj-c/progress-bar/__webdriver__/index.js +74 -0
  320. package/oj-c/progress-bar/component.json +123 -0
  321. package/oj-c/progress-bar/index.js +6 -0
  322. package/oj-c/progress-bar/progress-bar-styles.css +11 -0
  323. package/oj-c/progress-bar/progress-bar.js +26 -0
  324. package/oj-c/progress-bar.js +6 -0
  325. package/oj-c/progress-circle/__webdriver__/ProgressCircleWebElement.js +32 -0
  326. package/oj-c/progress-circle/__webdriver__/ProgressCircleWebElementBase.js +60 -0
  327. package/oj-c/progress-circle/__webdriver__/index.js +74 -0
  328. package/oj-c/progress-circle/component.json +128 -0
  329. package/oj-c/progress-circle/index.js +6 -0
  330. package/oj-c/progress-circle/progress-circle-styles.css +14 -0
  331. package/oj-c/progress-circle/progress-circle.js +26 -0
  332. package/oj-c/progress-circle.js +6 -0
  333. package/oj-c/rating-gauge/__webdriver__/RatingGaugeWebElement.js +32 -0
  334. package/oj-c/rating-gauge/__webdriver__/RatingGaugeWebElementBase.js +168 -0
  335. package/oj-c/rating-gauge/__webdriver__/index.js +74 -0
  336. package/oj-c/rating-gauge/component.json +188 -0
  337. package/oj-c/rating-gauge/index.js +6 -0
  338. package/oj-c/rating-gauge/rating-gauge-styles.css +12 -0
  339. package/oj-c/rating-gauge/rating-gauge.js +44 -0
  340. package/oj-c/rating-gauge.js +6 -0
  341. package/oj-c/select-common/UNSAFE_useDataProviderListeners/index.js +6 -0
  342. package/oj-c/select-common/UNSAFE_useDataProviderListeners/useDataProviderListeners.js +96 -0
  343. package/oj-c/select-common/UNSAFE_useWrapDataProvider/index.js +6 -0
  344. package/oj-c/select-common/UNSAFE_useWrapDataProvider/useWrapDataProvider.js +16 -0
  345. package/oj-c/select-common/UNSAFE_useWrapValueState/index.js +6 -0
  346. package/oj-c/select-common/UNSAFE_useWrapValueState/useWrapValueState.js +23 -0
  347. package/oj-c/select-common/component.json +9 -0
  348. package/oj-c/select-common/utils/utils.js +19 -0
  349. package/oj-c/select-multiple/__dev__/select-multiple.doc.mdx +30 -0
  350. package/oj-c/select-multiple/__webdriver__/SelectMultipleWebElement.js +32 -0
  351. package/oj-c/select-multiple/__webdriver__/SelectMultipleWebElementBase.js +258 -0
  352. package/oj-c/select-multiple/__webdriver__/index.js +74 -0
  353. package/oj-c/select-multiple/component.json +475 -0
  354. package/oj-c/select-multiple/index.js +6 -0
  355. package/oj-c/select-multiple/select-multiple-styles.css +13 -0
  356. package/oj-c/select-multiple/select-multiple.js +108 -0
  357. package/oj-c/select-multiple/useSelectMultiplePreact.js +123 -0
  358. package/oj-c/select-multiple/useSyncValueAndValueItems.js +125 -0
  359. package/oj-c/select-multiple/useValueItems.js +22 -0
  360. package/oj-c/select-multiple.js +6 -0
  361. package/oj-c/select-single/__dev__/select-single.doc.mdx +30 -0
  362. package/oj-c/select-single/__webdriver__/SelectSingleWebElement.js +32 -0
  363. package/oj-c/select-single/__webdriver__/SelectSingleWebElementBase.js +258 -0
  364. package/oj-c/select-single/__webdriver__/index.js +74 -0
  365. package/oj-c/select-single/component.json +545 -0
  366. package/oj-c/select-single/index.js +6 -0
  367. package/oj-c/select-single/select-single-styles.css +22 -0
  368. package/oj-c/select-single/select-single.js +108 -0
  369. package/oj-c/select-single/useSelectSinglePreact.js +157 -0
  370. package/oj-c/select-single/useSyncValueAndValueItem.js +110 -0
  371. package/oj-c/select-single/useValueItem.js +18 -0
  372. package/oj-c/select-single.js +6 -0
  373. package/oj-c/split-menu-button/__dev__/split-menu-button.doc.mdx +32 -0
  374. package/oj-c/split-menu-button/__tests__/split-menu-button.test.js +17 -0
  375. package/oj-c/split-menu-button/__webdriver__/SplitMenuButtonWebElement.js +32 -0
  376. package/oj-c/split-menu-button/__webdriver__/SplitMenuButtonWebElementBase.js +87 -0
  377. package/oj-c/split-menu-button/__webdriver__/index.js +74 -0
  378. package/oj-c/split-menu-button/component.json +205 -0
  379. package/oj-c/split-menu-button/index.js +6 -0
  380. package/oj-c/split-menu-button/split-menu-button-styles.css +11 -0
  381. package/oj-c/split-menu-button/split-menu-button.js +76 -0
  382. package/oj-c/split-menu-button.js +6 -0
  383. package/oj-c/text-area/__webdriver__/TextAreaWebElement.js +32 -0
  384. package/oj-c/text-area/__webdriver__/TextAreaWebElementBase.js +285 -0
  385. package/oj-c/text-area/__webdriver__/index.js +74 -0
  386. package/oj-c/text-area/component.json +497 -0
  387. package/oj-c/text-area/index.js +6 -0
  388. package/oj-c/text-area/text-area-styles.css +13 -0
  389. package/oj-c/text-area/text-area.js +138 -0
  390. package/oj-c/text-area/useTextAreaAutosizePreact.js +44 -0
  391. package/oj-c/text-area/useTextAreaPreact.js +46 -0
  392. package/oj-c/text-area.js +6 -0
  393. package/oj-c/types/avatar/avatar.d.ts +68 -0
  394. package/oj-c/types/avatar/index.d.ts +2 -0
  395. package/oj-c/types/button/__tests__/button.test.d.ts +1 -0
  396. package/oj-c/types/button/button.d.ts +91 -0
  397. package/oj-c/types/button/index.d.ts +2 -0
  398. package/oj-c/types/collapsible/collapsible.d.ts +88 -0
  399. package/oj-c/types/collapsible/index.d.ts +2 -0
  400. package/oj-c/types/editable-value/UNSAFE_useAssistiveText/useAssistiveText.d.ts +32 -0
  401. package/oj-c/types/editable-value/UNSAFE_useComponentMessaging/useComponentMessaging.d.ts +24 -0
  402. package/oj-c/types/editable-value/UNSAFE_useConverter/useConverter.d.ts +14 -0
  403. package/oj-c/types/editable-value/UNSAFE_useConverterLifecycle/useConverterLifecycle.d.ts +11 -0
  404. package/oj-c/types/editable-value/UNSAFE_useDeferredValidators/useDeferredValidators.d.ts +8 -0
  405. package/oj-c/types/editable-value/UNSAFE_useEditableValue/useEditableValue.d.ts +47 -0
  406. package/oj-c/types/editable-value/UNSAFE_useStaleIdentity/useStaleIdentity.d.ts +5 -0
  407. package/oj-c/types/editable-value/UNSAFE_useValidationLifecycle/useValidationLifecycle.d.ts +15 -0
  408. package/oj-c/types/editable-value/UNSAFE_useValidators/useValidators.d.ts +35 -0
  409. package/oj-c/types/editable-value/UNSAFE_useValue/useValue.d.ts +23 -0
  410. package/oj-c/types/editable-value/UNSAFE_useValueLifecycle/useValueLifecycle.d.ts +9 -0
  411. package/oj-c/types/editable-value/utils/utils.d.ts +6 -0
  412. package/oj-c/types/file-picker/file-picker.d.ts +103 -0
  413. package/oj-c/types/file-picker/index.d.ts +2 -0
  414. package/oj-c/types/hooks/UNSAFE_useDataProvider/DataProviderHandler.d.ts +18 -0
  415. package/oj-c/types/hooks/UNSAFE_useDataProvider/useDataProvider.d.ts +10 -0
  416. package/oj-c/types/hooks/UNSAFE_useDataProvider/utils.d.ts +3 -0
  417. package/oj-c/types/hooks/UNSAFE_useListData/__tests__/useListData.test.d.ts +1 -0
  418. package/oj-c/types/hooks/UNSAFE_useListData/useListData.d.ts +21 -0
  419. package/oj-c/types/hooks/UNSAFE_useTreeData/__tests__/useTreeData.test.d.ts +1 -0
  420. package/oj-c/types/hooks/UNSAFE_useTreeData/useTreeData.d.ts +27 -0
  421. package/oj-c/types/input-number/index.d.ts +2 -0
  422. package/oj-c/types/input-number/input-number.d.ts +231 -0
  423. package/oj-c/types/input-number/stepBasisUtils.d.ts +1 -0
  424. package/oj-c/types/input-number/useImplicitNumberConverter.d.ts +10 -0
  425. package/oj-c/types/input-number/useImplicitNumberRangeValidator.d.ts +17 -0
  426. package/oj-c/types/input-number/useNumberInputTextPreact.d.ts +54 -0
  427. package/oj-c/types/input-password/index.d.ts +2 -0
  428. package/oj-c/types/input-password/input-password.d.ts +183 -0
  429. package/oj-c/types/input-password/useInputPasswordPreact.d.ts +40 -0
  430. package/oj-c/types/input-text/__tests__/input-text.test.d.ts +1 -0
  431. package/oj-c/types/input-text/index.d.ts +2 -0
  432. package/oj-c/types/input-text/input-text.d.ts +212 -0
  433. package/oj-c/types/input-text/useInputTextPreact.d.ts +47 -0
  434. package/oj-c/types/list-item-layout/index.d.ts +2 -0
  435. package/oj-c/types/list-item-layout/list-item-layout.d.ts +53 -0
  436. package/oj-c/types/message-toast/index.d.ts +2 -0
  437. package/oj-c/types/message-toast/message-toast.d.ts +83 -0
  438. package/oj-c/types/meter-bar/index.d.ts +2 -0
  439. package/oj-c/types/meter-bar/meter-bar.d.ts +133 -0
  440. package/oj-c/types/meter-circle/index.d.ts +2 -0
  441. package/oj-c/types/meter-circle/meter-circle.d.ts +148 -0
  442. package/oj-c/types/progress-bar/index.d.ts +2 -0
  443. package/oj-c/types/progress-bar/progress-bar.d.ts +53 -0
  444. package/oj-c/types/progress-circle/index.d.ts +2 -0
  445. package/oj-c/types/progress-circle/progress-circle.d.ts +53 -0
  446. package/oj-c/types/rating-gauge/index.d.ts +2 -0
  447. package/oj-c/types/rating-gauge/rating-gauge.d.ts +109 -0
  448. package/oj-c/types/select-common/UNSAFE_useDataProviderListeners/index.d.ts +2 -0
  449. package/oj-c/types/select-common/UNSAFE_useDataProviderListeners/useDataProviderListeners.d.ts +13 -0
  450. package/oj-c/types/select-common/UNSAFE_useWrapDataProvider/index.d.ts +1 -0
  451. package/oj-c/types/select-common/UNSAFE_useWrapDataProvider/useWrapDataProvider.d.ts +3 -0
  452. package/oj-c/types/select-common/UNSAFE_useWrapValueState/index.d.ts +1 -0
  453. package/oj-c/types/select-common/UNSAFE_useWrapValueState/useWrapValueState.d.ts +23 -0
  454. package/oj-c/types/select-common/utils/utils.d.ts +10 -0
  455. package/oj-c/types/select-multiple/index.d.ts +2 -0
  456. package/oj-c/types/select-multiple/select-multiple.d.ts +176 -0
  457. package/oj-c/types/select-multiple/useSelectMultiplePreact.d.ts +42 -0
  458. package/oj-c/types/select-multiple/useSyncValueAndValueItems.d.ts +17 -0
  459. package/oj-c/types/select-multiple/useValueItems.d.ts +6 -0
  460. package/oj-c/types/select-single/index.d.ts +2 -0
  461. package/oj-c/types/select-single/select-single.d.ts +186 -0
  462. package/oj-c/types/select-single/useSelectSinglePreact.d.ts +42 -0
  463. package/oj-c/types/select-single/useSyncValueAndValueItem.d.ts +17 -0
  464. package/oj-c/types/select-single/useValueItem.d.ts +5 -0
  465. package/oj-c/types/split-menu-button/__tests__/split-menu-button.test.d.ts +1 -0
  466. package/oj-c/types/split-menu-button/index.d.ts +2 -0
  467. package/oj-c/types/split-menu-button/split-menu-button.d.ts +93 -0
  468. package/oj-c/types/text-area/index.d.ts +2 -0
  469. package/oj-c/types/text-area/text-area.d.ts +209 -0
  470. package/oj-c/types/text-area/useTextAreaAutosizePreact.d.ts +44 -0
  471. package/oj-c/types/text-area/useTextAreaPreact.d.ts +44 -0
  472. package/oj-c/types/utils/UNSAFE_focusTabUtils/focusUtils.d.ts +2 -0
  473. package/oj-c/types/utils/UNSAFE_focusTabUtils/index.d.ts +1 -0
  474. package/oj-c/types/utils/UNSAFE_keyUtils/index.d.ts +1 -0
  475. package/oj-c/types/utils/UNSAFE_keyUtils/keySetUtils.d.ts +4 -0
  476. package/oj-c/types/utils/UNSAFE_meterUtils/index.d.ts +1 -0
  477. package/oj-c/types/utils/UNSAFE_meterUtils/meterUtils.d.ts +2 -0
  478. package/oj-c/utils/UNSAFE_focusTabUtils/focusUtils.js +23 -0
  479. package/oj-c/utils/UNSAFE_focusTabUtils/index.js +6 -0
  480. package/oj-c/utils/UNSAFE_keyUtils/index.js +19 -0
  481. package/oj-c/utils/UNSAFE_keyUtils/keySetUtils.js +33 -0
  482. package/oj-c/utils/UNSAFE_meterUtils/index.js +6 -0
  483. package/oj-c/utils/UNSAFE_meterUtils/meterUtils.js +12 -0
  484. package/oj-c/utils/component.json +9 -0
  485. package/package.json +22 -0
  486. package/webdriver/docs/.nojekyll +1 -0
  487. package/webdriver/docs/assets/highlight.css +78 -0
  488. package/webdriver/docs/assets/icons.css +1043 -0
  489. package/webdriver/docs/assets/icons.png +0 -0
  490. package/webdriver/docs/assets/icons@2x.png +0 -0
  491. package/webdriver/docs/assets/main.js +52 -0
  492. package/webdriver/docs/assets/search.js +1 -0
  493. package/webdriver/docs/assets/style.css +1414 -0
  494. package/webdriver/docs/assets/widgets.png +0 -0
  495. package/webdriver/docs/assets/widgets@2x.png +0 -0
  496. package/webdriver/docs/classes/AvatarWebElement.html +117 -0
  497. package/webdriver/docs/classes/ButtonWebElement.html +163 -0
  498. package/webdriver/docs/classes/CollapsibleWebElement.html +111 -0
  499. package/webdriver/docs/classes/FilePickerWebElement.html +117 -0
  500. package/webdriver/docs/classes/InputNumberWebElement.html +231 -0
  501. package/webdriver/docs/classes/InputPasswordWebElement.html +195 -0
  502. package/webdriver/docs/classes/InputTextWebElement.html +211 -0
  503. package/webdriver/docs/classes/ListItemLayoutWebElement.html +97 -0
  504. package/webdriver/docs/classes/MessageToastWebElement.html +113 -0
  505. package/webdriver/docs/classes/MeterBarWebElement.html +153 -0
  506. package/webdriver/docs/classes/MeterCircleWebElement.html +159 -0
  507. package/webdriver/docs/classes/ProgressBarWebElement.html +105 -0
  508. package/webdriver/docs/classes/ProgressCircleWebElement.html +105 -0
  509. package/webdriver/docs/classes/RatingGaugeWebElement.html +147 -0
  510. package/webdriver/docs/classes/SelectMultipleWebElement.html +196 -0
  511. package/webdriver/docs/classes/SelectSingleWebElement.html +196 -0
  512. package/webdriver/docs/classes/SplitMenuButtonWebElement.html +117 -0
  513. package/webdriver/docs/classes/TextAreaWebElement.html +207 -0
  514. package/webdriver/docs/index.html +16 -0
  515. package/webdriver/docs/modules.html +181 -0
  516. package/webdriver/index.js +34 -0
  517. package/webdriver/index.ts +18 -0
@@ -0,0 +1,2380 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Element: &lt;oj-c-file-picker></title>
6
+
7
+ <script src="scripts/prettify/prettify.js"> </script>
8
+ <script src="scripts/prettify/lang-css.js"> </script>
9
+ <!--[if lt IE 9]>
10
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
11
+ <![endif]-->
12
+ <script src="scripts/deprecated.js"></script>
13
+
14
+ <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
15
+ <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
16
+ </head>
17
+
18
+ <body>
19
+
20
+
21
+ <nav id="nav" data-current-item="navItem21">
22
+ <h2>Oracle® JET</h2>
23
+ <h2>Core Pack Components</h2>
24
+ <h3>14.0.0</h3
25
+ <div class="deprecation-checkboxes" style="display: none">
26
+ <ul style="list-style: none; display: none;">
27
+ <li style="margin-top:0px">
28
+ <label for="deprecated">
29
+ <div class="deprecated-cb-common"><input type="checkbox" id="deprecated"><span style="padding:2px">Show Deprecated APIs</span></div>
30
+ </label>
31
+ </li>
32
+ <li style="margin-top:0px">
33
+ <label for="jsonly"></label>
34
+ <div class="deprecated-cb-common"><input type="checkbox" id="jsonly"><span style="padding:2px 12px 2px 2px">Javascript Only APIs</span></div>
35
+ </li>
36
+ </ul>
37
+ </div>
38
+ <ul><li id="idx"><h2 id="navIndex"><a href="index.html" id="navIndexFocusable">Index</a></h2></li><li><div id="nav_toggle">
39
+ <input type="radio" id="elements_rb" name="toggle" value="Elements">
40
+ <label for="elements">Elements</label>
41
+ <input type="radio" id="modules_rb" name="toggle" value="Modules">
42
+ <label for="modules">Modules</label><br>
43
+ </div></li><li id="nav_elements" style="display: none"><h3 id="navElements">Elements</h3><ul class="subList"><li id="navItem0"><a href="oj-c.Avatar.html">&lt;oj-c-avatar></a></li><li id="navItem1"><a href="oj-c.Button.html">&lt;oj-c-button></a></li><li id="navItem2"><a href="oj-c.Collapsible.html">&lt;oj-c-collapsible></a></li><li id="navItem3"><a href="oj-c.FilePicker.html">&lt;oj-c-file-picker></a></li><li id="navItem4"><a href="oj-c.InputNumber.html">&lt;oj-c-input-number></a></li><li id="navItem5"><a href="oj-c.InputPassword.html">&lt;oj-c-input-password></a></li><li id="navItem6"><a href="oj-c.InputText.html">&lt;oj-c-input-text></a></li><li id="navItem7"><a href="oj-c.ListItemLayout.html">&lt;oj-c-list-item-layout></a></li><li id="navItem8"><a href="oj-c.MessageToast.html">&lt;oj-c-message-toast></a></li><li id="navItem9"><a href="oj-c.MeterBar.html">&lt;oj-c-meter-bar></a></li><li id="navItem10"><a href="oj-c.MeterCircle.html">&lt;oj-c-meter-circle></a></li><li id="navItem11"><a href="oj-c.ProgressBar.html">&lt;oj-c-progress-bar></a></li><li id="navItem12"><a href="oj-c.ProgressCircle.html">&lt;oj-c-progress-circle></a></li><li id="navItem13"><a href="oj-c.RatingGauge.html">&lt;oj-c-rating-gauge></a></li><li id="navItem14"><a href="oj-c.SelectMultiple.html">&lt;oj-c-select-multiple></a></li><li id="navItem15"><a href="oj-c.SelectSingle.html">&lt;oj-c-select-single></a></li><li id="navItem16"><a href="oj-c.SplitMenuButton.html">&lt;oj-c-split-menu-button></a></li><li id="navItem17"><a href="oj-c.TextArea.html">&lt;oj-c-text-area></a></li></ul></li><li id="nav_modules" style="display: none"><h3 id="navElements">Modules</h3><ul class="subList_lev2"><li class="module">
44
+ <div id="avatar" class="module_element">
45
+ <a href="avatar.html">avatar</a>
46
+ </div><ul class="subList_lev3"><li id="navItem18"><a href="oj-c.Avatar.html">&lt;oj-c-avatar></a></li></ul></li><li class="module">
47
+ <div id="button" class="module_element">
48
+ <a href="button.html">button</a>
49
+ </div><ul class="subList_lev3"><li id="navItem19"><a href="oj-c.Button.html">&lt;oj-c-button></a></li></ul></li><li class="module">
50
+ <div id="collapsible" class="module_element">
51
+ <a href="collapsible.html">collapsible</a>
52
+ </div><ul class="subList_lev3"><li id="navItem20"><a href="oj-c.Collapsible.html">&lt;oj-c-collapsible></a></li></ul></li><li class="module">
53
+ <div id="file-picker" class="module_element">
54
+ <a href="file-picker.html">file-picker</a>
55
+ </div><ul class="subList_lev3"><li id="navItem21"><a href="oj-c.FilePicker.html">&lt;oj-c-file-picker></a></li></ul></li><li class="module">
56
+ <div id="input-number" class="module_element">
57
+ <a href="input-number.html">input-number</a>
58
+ </div><ul class="subList_lev3"><li id="navItem22"><a href="oj-c.InputNumber.html">&lt;oj-c-input-number></a></li></ul></li><li class="module">
59
+ <div id="input-password" class="module_element">
60
+ <a href="input-password.html">input-password</a>
61
+ </div><ul class="subList_lev3"><li id="navItem23"><a href="oj-c.InputPassword.html">&lt;oj-c-input-password></a></li></ul></li><li class="module">
62
+ <div id="input-text" class="module_element">
63
+ <a href="input-text.html">input-text</a>
64
+ </div><ul class="subList_lev3"><li id="navItem24"><a href="oj-c.InputText.html">&lt;oj-c-input-text></a></li></ul></li><li class="module">
65
+ <div id="list-item-layout" class="module_element">
66
+ <a href="list-item-layout.html">list-item-layout</a>
67
+ </div><ul class="subList_lev3"><li id="navItem25"><a href="oj-c.ListItemLayout.html">&lt;oj-c-list-item-layout></a></li></ul></li><li class="module">
68
+ <div id="message-toast" class="module_element">
69
+ <a href="message-toast.html">message-toast</a>
70
+ </div><ul class="subList_lev3"><li id="navItem26"><a href="oj-c.MessageToast.html">&lt;oj-c-message-toast></a></li></ul></li><li class="module">
71
+ <div id="meter-bar" class="module_element">
72
+ <a href="meter-bar.html">meter-bar</a>
73
+ </div><ul class="subList_lev3"><li id="navItem27"><a href="oj-c.MeterBar.html">&lt;oj-c-meter-bar></a></li></ul></li><li class="module">
74
+ <div id="meter-circle" class="module_element">
75
+ <a href="meter-circle.html">meter-circle</a>
76
+ </div><ul class="subList_lev3"><li id="navItem28"><a href="oj-c.MeterCircle.html">&lt;oj-c-meter-circle></a></li></ul></li><li class="module">
77
+ <div id="progress-bar" class="module_element">
78
+ <a href="progress-bar.html">progress-bar</a>
79
+ </div><ul class="subList_lev3"><li id="navItem29"><a href="oj-c.ProgressBar.html">&lt;oj-c-progress-bar></a></li></ul></li><li class="module">
80
+ <div id="progress-circle" class="module_element">
81
+ <a href="progress-circle.html">progress-circle</a>
82
+ </div><ul class="subList_lev3"><li id="navItem30"><a href="oj-c.ProgressCircle.html">&lt;oj-c-progress-circle></a></li></ul></li><li class="module">
83
+ <div id="rating-gauge" class="module_element">
84
+ <a href="rating-gauge.html">rating-gauge</a>
85
+ </div><ul class="subList_lev3"><li id="navItem31"><a href="oj-c.RatingGauge.html">&lt;oj-c-rating-gauge></a></li></ul></li><li class="module">
86
+ <div id="select-multiple" class="module_element">
87
+ <a href="select-multiple.html">select-multiple</a>
88
+ </div><ul class="subList_lev3"><li id="navItem32"><a href="oj-c.SelectMultiple.html">&lt;oj-c-select-multiple></a></li></ul></li><li class="module">
89
+ <div id="select-single" class="module_element">
90
+ <a href="select-single.html">select-single</a>
91
+ </div><ul class="subList_lev3"><li id="navItem33"><a href="oj-c.SelectSingle.html">&lt;oj-c-select-single></a></li></ul></li><li class="module">
92
+ <div id="split-menu-button" class="module_element">
93
+ <a href="split-menu-button.html">split-menu-button</a>
94
+ </div><ul class="subList_lev3"><li id="navItem34"><a href="oj-c.SplitMenuButton.html">&lt;oj-c-split-menu-button></a></li></ul></li><li class="module">
95
+ <div id="text-area" class="module_element">
96
+ <a href="text-area.html">text-area</a>
97
+ </div><ul class="subList_lev3"><li id="navItem35"><a href="oj-c.TextArea.html">&lt;oj-c-text-area></a></li></ul></li></ul></li></ul>
98
+ </nav>
99
+
100
+ <div id="main">
101
+
102
+ <button onclick="topFunction()" id="jump-to-top-btn" title="Go to top"></button>
103
+ <div class="page-title">
104
+ <h1>Element: &lt;oj-c-file-picker></h1>
105
+ </div>
106
+
107
+ <p class="product-docs-header">
108
+ <span style="font-weight:bold">Oracle® JavaScript Extension Toolkit (JET)<br>
109
+ 14.0.0</span><br>
110
+ </p>
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+ <dl class="details">
124
+
125
+ <dt class="tag-module">Module:</dt>
126
+ <dd class="tag-module"><ul class="dummy"><li>file-picker</li></ul></dd>
127
+
128
+ </dl>
129
+
130
+ <section id="quick-nav" class="">
131
+ <header><h2>QuickNav</h2></header>
132
+
133
+ <div class="quick-nav-section4">
134
+
135
+ <h3> <a href="#slots-section">Slots</a></h3>
136
+ <ul class="subList">
137
+
138
+
139
+ <li><a href="#trigger">trigger</a></li>
140
+
141
+ </ul>
142
+
143
+ </div>
144
+
145
+
146
+
147
+ <div class="quick-nav-section4">
148
+ <h3> <a href="#members-section">Attributes</a></h3>
149
+ <ul class="optionsSubList">
150
+
151
+ <li><div><a href="#accept">accept</a></div>
152
+
153
+ </li>
154
+
155
+ <li><div><a href="#capture">capture</a></div>
156
+
157
+ </li>
158
+
159
+ <li><div><a href="#disabled">disabled</a></div>
160
+
161
+ </li>
162
+
163
+ <li><div><a href="#primaryText">primary-text</a></div>
164
+
165
+ </li>
166
+
167
+ <li><div><a href="#secondaryText">secondary-text</a></div>
168
+
169
+ </li>
170
+
171
+ <li><div><a href="#selectionMode">selection-mode</a></div>
172
+
173
+ </ul>
174
+ <script type="text/javascript" >
175
+ var innerSubLists = document.getElementsByClassName('optionsInnerSubList');
176
+ for (var i=0; i<innerSubLists.length; i++) {
177
+ innerSubLists[i].parentNode.onclick=function(event) {
178
+ event.stopPropagation();
179
+ // Only interpret the click event if the <a> element is the target and do nothing if click occurred elsewhere on the div
180
+ if (event.target.parentNode == this.firstChild.firstChild) {
181
+ // toggle only the clicked sub properties list and not any nested ones
182
+ var subProperties = this.getElementsByClassName('optionsInnerSubList');
183
+ subProperties[0].style.display = (subProperties[0].style.display=='block' ? 'none' : 'block');
184
+ }
185
+ }
186
+ }
187
+ </script>
188
+
189
+
190
+
191
+
192
+
193
+ </div>
194
+
195
+
196
+
197
+ <div class="quick-nav-section4">
198
+ <h3><a href="#events-section">Events</a></h3>
199
+ <ul class="subList">
200
+
201
+ <li><a href="#event:ojBeforeSelect">ojBeforeSelect</a></li>
202
+
203
+ <li><a href="#event:ojInvalidSelect">ojInvalidSelect</a></li>
204
+
205
+ <li><a href="#event:ojSelect">ojSelect</a></li>
206
+
207
+ </ul>
208
+ </div>
209
+
210
+
211
+
212
+ <div class="quick-nav-section4">
213
+ <h3><a href="#methods-section">Methods</a></h3>
214
+ <ul class="subList">
215
+
216
+ <li><a href="#blur">blur</a></li>
217
+
218
+ <li><a href="#focus">focus</a></li>
219
+
220
+ <li><a href="#getProperty">getProperty</a></li>
221
+
222
+ <li><a href="#setProperties">setProperties</a></li>
223
+
224
+ <li><a href="#setProperty">setProperty</a></li>
225
+
226
+ </ul>
227
+
228
+ </div>
229
+
230
+
231
+
232
+ </section>
233
+
234
+ <section class="">
235
+ <header>
236
+
237
+ </br>
238
+
239
+ </header>
240
+
241
+
242
+ <article>
243
+ <div class="container-overview">
244
+
245
+
246
+ <div class="usage-section">
247
+ <h3 id="usage-section">Usage<a class="bookmarkable-link" title="Bookmarkable Link" href="#usage-section"></a></h3>
248
+
249
+ <dt class="null" style="margin-right: 100px;"><h5><span>Signature: </span><p> <span class="name type-signature">interface CFilePickerElement</span></p></h5></dt>
250
+
251
+ <dl>
252
+ <dt><h5>Typescript Import Format</h5></dt>
253
+ <dd><pre class="prettyprint"><code>//To typecheck the element APIs, import as below.<br>import {CFilePickerElement} from "oj-c/file-picker";<br><br>//For the transpiled javascript to load the element's module, import as below<br>import "oj-c/file-picker";</code></pre></dd>
254
+ </dl>
255
+
256
+ <p>For additional information visit:</p>
257
+ <ul>
258
+
259
+ <li><a href="../../../jsdocs/CustomElementOverview.html" target="_blank">Using JET Custom Elements</a></li>
260
+
261
+ <li><a href="../../../jsdocs/TypescriptOverview.html" target="_blank">Using JET with TypeScript</a></li>
262
+ <li><a href="../../../jsdocs/ModuleLoadingOverview.html" target="_blank">JET Module Loading</a></li>
263
+ </ul>
264
+
265
+ <p class="important">Note: Application logic should not interact with the component's properties or invoke its methods
266
+ until the <a href="../../../jsdocs/oj.BusyContext.html" target="_blank">BusyContext</a> indicates that the component is ready for interaction.</p>
267
+
268
+ </div>
269
+ <br>
270
+
271
+
272
+
273
+
274
+
275
+
276
+
277
+ <dl class="details">
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
+ </dl>
308
+
309
+
310
+
311
+ </div>
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+
320
+
321
+
322
+
323
+
324
+
325
+ <h3 id="slots-section" class="subsection-title">
326
+ Slots
327
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#slots-section"></a>
328
+ </h3>
329
+
330
+ <p>JET components that allow child content support slots.
331
+ Please see the <a href="../../../jsdocs/CustomElementOverview.html#ce-slots-section " target="_blank">slots section</a>
332
+ of the JET component overview doc for more information on allowed slot content and slot types.</p>
333
+
334
+ <dl>
335
+
336
+
337
+ <dt class="">
338
+
339
+ <h4 id="trigger" class="name">
340
+
341
+ <span class="type-signature"></span>trigger<span class="type-signature"></span>
342
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#trigger"></a>
343
+
344
+ </h4>
345
+
346
+
347
+ </dt>
348
+
349
+ <dd class="">
350
+
351
+ <div class="description">
352
+ <p>The <code class="prettyprint">trigger</code> slot is used to replace the default content of the file picker.
353
+ File picker will add click and drag and drop listeners to the slot content.
354
+ The application is responsible for setting the tabindex attribute for keyboard accessibility.</p>
355
+ </div>
356
+
357
+
358
+
359
+
360
+ <dl class="details">
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
+ </dl>
391
+
392
+
393
+
394
+ </dd>
395
+
396
+ </dl>
397
+
398
+
399
+ <h3 id="members-section" class="subsection-title">
400
+ Attributes
401
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#members-section"></a>
402
+ </h3>
403
+
404
+ <dl>
405
+
406
+
407
+ <dt class="">
408
+
409
+ <h4 id="accept" class="name">
410
+
411
+ <span class="type-signature"></span>accept<span class="type-signature"> :Array&lt;string></span>
412
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#accept"></a>
413
+
414
+ </h4>
415
+
416
+
417
+ </dt>
418
+
419
+ <dd class="">
420
+
421
+ <div class="description">
422
+ An array of strings of allowed MIME types or file extensions that can be uploaded; this is unlike the accept attribute of the html &lt;input> element that accepts a simple comma-delimited string. If not specified, accept all file types.
423
+ <p>Note: If accept is specified, files with empty string type will be rejected if no match found in the "accept" value.
424
+ </div>
425
+
426
+
427
+
428
+
429
+ <dl class="details">
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
+ </dl>
460
+
461
+
462
+
463
+ <h5>Names</h5>
464
+ <table class="keyboard-table">
465
+ <thead>
466
+ <tr>
467
+ <th>Item</th>
468
+ <th>Name</th>
469
+ </tr>
470
+ </thead>
471
+ <tbody>
472
+ <tr>
473
+ <td>Property</td>
474
+ <td><code class="prettyprint">accept</code></td>
475
+ </tr>
476
+
477
+ <tr>
478
+ <td>Property change event</td>
479
+ <td><code class="prettyprint">acceptChanged</code></td>
480
+ </tr>
481
+ <tr>
482
+ <td>Property change listener attribute (<span class="important">must be of type function, see <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.</span>)</td>
483
+ <td><code class="pretty-print-noprettify">on-accept-changed</code></td>
484
+ </tr>
485
+
486
+ </tbody>
487
+ </table>
488
+
489
+ </dd>
490
+
491
+
492
+ <dt class="">
493
+
494
+ <h4 id="capture" class="name">
495
+
496
+ <span class="type-signature"></span>capture<span class="type-signature"> :"user"|"environment"|"implementation"|"none"</span>
497
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#capture"></a>
498
+
499
+ </h4>
500
+
501
+
502
+ </dt>
503
+
504
+ <dd class="">
505
+
506
+ <div class="description">
507
+ Specifies the preferred facing mode for the device's
508
+ <a href="https://www.w3.org/TR/html-media-capture/#dom-htmlinputelement-capture">media capture</a> mechanism;
509
+ This is most often used to provide direct camera access on mobile devices. Note that the accept attribute must
510
+ be specified and have an associated capture control type (e.g.["image/*"]) for the capture attribute to take effect. Support may vary by browser.
511
+ </div>
512
+
513
+
514
+
515
+
516
+ <dl class="details">
517
+
518
+
519
+
520
+
521
+ <h5 class="subsection-title">Supported Values:</h5>
522
+
523
+ <dl>
524
+
525
+ <table class="props">
526
+ <thead>
527
+ <tr>
528
+
529
+ <th>Value</th>
530
+
531
+
532
+
533
+
534
+
535
+
536
+
537
+ <th class="last">Description</th>
538
+
539
+ </tr>
540
+ </thead>
541
+
542
+ <tbody>
543
+
544
+
545
+ <tr>
546
+
547
+ <td class="name"><code>environment</code></td>
548
+
549
+
550
+
551
+
552
+
553
+
554
+
555
+ <td class="description last">Specifies environment-facing as the preferred mode
556
+ </td>
557
+
558
+ </tr>
559
+
560
+
561
+
562
+ <tr>
563
+
564
+ <td class="name"><code>implementation</code></td>
565
+
566
+
567
+
568
+
569
+
570
+
571
+
572
+ <td class="description last">Specifies an implementation-specific default as the preferred facing mode
573
+ </td>
574
+
575
+ </tr>
576
+
577
+
578
+
579
+ <tr>
580
+
581
+ <td class="name"><code>none</code></td>
582
+
583
+
584
+
585
+
586
+
587
+
588
+
589
+ <td class="description last">No capture mechanism is used
590
+ </td>
591
+
592
+ </tr>
593
+
594
+
595
+
596
+ <tr>
597
+
598
+ <td class="name"><code>user</code></td>
599
+
600
+
601
+
602
+
603
+
604
+
605
+
606
+ <td class="description last">Specifies user-facing as the preferred mode
607
+ </td>
608
+
609
+ </tr>
610
+
611
+
612
+ </tbody>
613
+ </table></dl>
614
+
615
+
616
+
617
+
618
+ <dt class="tag-default">Default Value:</dt>
619
+ <dd class="tag-default"><ul class="dummy"><li><code class="prettyprint">"none"</code></li></ul></dd>
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
+ </dl>
646
+
647
+
648
+
649
+ <h5>Names</h5>
650
+ <table class="keyboard-table">
651
+ <thead>
652
+ <tr>
653
+ <th>Item</th>
654
+ <th>Name</th>
655
+ </tr>
656
+ </thead>
657
+ <tbody>
658
+ <tr>
659
+ <td>Property</td>
660
+ <td><code class="prettyprint">capture</code></td>
661
+ </tr>
662
+
663
+ <tr>
664
+ <td>Property change event</td>
665
+ <td><code class="prettyprint">captureChanged</code></td>
666
+ </tr>
667
+ <tr>
668
+ <td>Property change listener attribute (<span class="important">must be of type function, see <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.</span>)</td>
669
+ <td><code class="pretty-print-noprettify">on-capture-changed</code></td>
670
+ </tr>
671
+
672
+ </tbody>
673
+ </table>
674
+
675
+ </dd>
676
+
677
+
678
+ <dt class="">
679
+
680
+ <h4 id="disabled" class="name">
681
+
682
+ <span class="type-signature"></span>disabled<span class="type-signature"> :boolean</span>
683
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#disabled"></a>
684
+
685
+ </h4>
686
+
687
+
688
+ </dt>
689
+
690
+ <dd class="">
691
+
692
+ <div class="description">
693
+ Disables the filepicker if set to <code class="prettyprint">true</code>.
694
+ </div>
695
+
696
+
697
+
698
+
699
+ <dl class="details">
700
+
701
+
702
+
703
+
704
+
705
+ <dt class="tag-default">Default Value:</dt>
706
+ <dd class="tag-default"><ul class="dummy"><li><code class="prettyprint">false</code></li></ul></dd>
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
+ </dl>
733
+
734
+
735
+
736
+ <h5>Names</h5>
737
+ <table class="keyboard-table">
738
+ <thead>
739
+ <tr>
740
+ <th>Item</th>
741
+ <th>Name</th>
742
+ </tr>
743
+ </thead>
744
+ <tbody>
745
+ <tr>
746
+ <td>Property</td>
747
+ <td><code class="prettyprint">disabled</code></td>
748
+ </tr>
749
+
750
+ <tr>
751
+ <td>Property change event</td>
752
+ <td><code class="prettyprint">disabledChanged</code></td>
753
+ </tr>
754
+ <tr>
755
+ <td>Property change listener attribute (<span class="important">must be of type function, see <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.</span>)</td>
756
+ <td><code class="pretty-print-noprettify">on-disabled-changed</code></td>
757
+ </tr>
758
+
759
+ </tbody>
760
+ </table>
761
+
762
+ </dd>
763
+
764
+
765
+ <dt class="">
766
+
767
+ <h4 id="primaryText" class="name">
768
+
769
+ <span class="type-signature"></span>primary-text<span class="type-signature"> :string|() => string</span>
770
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#primaryText"></a>
771
+
772
+ </h4>
773
+
774
+
775
+ </dt>
776
+
777
+ <dd class="">
778
+
779
+ <div class="description">
780
+ The primary text for the default file picker. It is either a string or a formatting function that returns the string to be displayed.
781
+ </div>
782
+
783
+
784
+
785
+
786
+ <dl class="details">
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
+ </dl>
817
+
818
+
819
+
820
+ <h5>Names</h5>
821
+ <table class="keyboard-table">
822
+ <thead>
823
+ <tr>
824
+ <th>Item</th>
825
+ <th>Name</th>
826
+ </tr>
827
+ </thead>
828
+ <tbody>
829
+ <tr>
830
+ <td>Property</td>
831
+ <td><code class="prettyprint">primaryText</code></td>
832
+ </tr>
833
+
834
+ <tr>
835
+ <td>Property change event</td>
836
+ <td><code class="prettyprint">primaryTextChanged</code></td>
837
+ </tr>
838
+ <tr>
839
+ <td>Property change listener attribute (<span class="important">must be of type function, see <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.</span>)</td>
840
+ <td><code class="pretty-print-noprettify">on-primary-text-changed</code></td>
841
+ </tr>
842
+
843
+ </tbody>
844
+ </table>
845
+
846
+ </dd>
847
+
848
+
849
+ <dt class="">
850
+
851
+ <h4 id="secondaryText" class="name">
852
+
853
+ <span class="type-signature"></span>secondary-text<span class="type-signature"> :string|(fileOptions: { selectionMode: "multiple" | "single"; }) => string</span>
854
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#secondaryText"></a>
855
+
856
+ </h4>
857
+
858
+
859
+ </dt>
860
+
861
+ <dd class="">
862
+
863
+ <div class="description">
864
+ The secondary text for the default file picker. It is either a string or a formatting function that returns the string to be displayed.
865
+ The formatting function takes in a property object that contains the selection mode of the filepicker.
866
+ </div>
867
+
868
+
869
+
870
+
871
+ <dl class="details">
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
+ </dl>
902
+
903
+
904
+
905
+ <h5>Names</h5>
906
+ <table class="keyboard-table">
907
+ <thead>
908
+ <tr>
909
+ <th>Item</th>
910
+ <th>Name</th>
911
+ </tr>
912
+ </thead>
913
+ <tbody>
914
+ <tr>
915
+ <td>Property</td>
916
+ <td><code class="prettyprint">secondaryText</code></td>
917
+ </tr>
918
+
919
+ <tr>
920
+ <td>Property change event</td>
921
+ <td><code class="prettyprint">secondaryTextChanged</code></td>
922
+ </tr>
923
+ <tr>
924
+ <td>Property change listener attribute (<span class="important">must be of type function, see <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.</span>)</td>
925
+ <td><code class="pretty-print-noprettify">on-secondary-text-changed</code></td>
926
+ </tr>
927
+
928
+ </tbody>
929
+ </table>
930
+
931
+ </dd>
932
+
933
+
934
+ <dt class="">
935
+
936
+ <h4 id="selectionMode" class="name">
937
+
938
+ <span class="type-signature"></span>selection-mode<span class="type-signature"> :"multiple"|"single"</span>
939
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#selectionMode"></a>
940
+
941
+ </h4>
942
+
943
+
944
+ </dt>
945
+
946
+ <dd class="">
947
+
948
+ <div class="description">
949
+ Whether to allow single or multiple file selection.
950
+ </div>
951
+
952
+
953
+
954
+
955
+ <dl class="details">
956
+
957
+
958
+
959
+
960
+ <h5 class="subsection-title">Supported Values:</h5>
961
+
962
+ <dl>
963
+
964
+ <table class="props">
965
+ <thead>
966
+ <tr>
967
+
968
+ <th>Value</th>
969
+
970
+
971
+
972
+
973
+
974
+
975
+
976
+ <th class="last">Description</th>
977
+
978
+ </tr>
979
+ </thead>
980
+
981
+ <tbody>
982
+
983
+
984
+ <tr>
985
+
986
+ <td class="name"><code>multiple</code></td>
987
+
988
+
989
+
990
+
991
+
992
+
993
+
994
+ <td class="description last">multiple file selection
995
+ </td>
996
+
997
+ </tr>
998
+
999
+
1000
+
1001
+ <tr>
1002
+
1003
+ <td class="name"><code>single</code></td>
1004
+
1005
+
1006
+
1007
+
1008
+
1009
+
1010
+
1011
+ <td class="description last">single file selection
1012
+ </td>
1013
+
1014
+ </tr>
1015
+
1016
+
1017
+ </tbody>
1018
+ </table></dl>
1019
+
1020
+
1021
+
1022
+
1023
+ <dt class="tag-default">Default Value:</dt>
1024
+ <dd class="tag-default"><ul class="dummy"><li><code class="prettyprint">"multiple"</code></li></ul></dd>
1025
+
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+
1034
+
1035
+
1036
+
1037
+
1038
+
1039
+
1040
+
1041
+
1042
+
1043
+
1044
+
1045
+
1046
+
1047
+
1048
+
1049
+
1050
+ </dl>
1051
+
1052
+
1053
+
1054
+ <h5>Names</h5>
1055
+ <table class="keyboard-table">
1056
+ <thead>
1057
+ <tr>
1058
+ <th>Item</th>
1059
+ <th>Name</th>
1060
+ </tr>
1061
+ </thead>
1062
+ <tbody>
1063
+ <tr>
1064
+ <td>Property</td>
1065
+ <td><code class="prettyprint">selectionMode</code></td>
1066
+ </tr>
1067
+
1068
+ <tr>
1069
+ <td>Property change event</td>
1070
+ <td><code class="prettyprint">selectionModeChanged</code></td>
1071
+ </tr>
1072
+ <tr>
1073
+ <td>Property change listener attribute (<span class="important">must be of type function, see <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.</span>)</td>
1074
+ <td><code class="pretty-print-noprettify">on-selection-mode-changed</code></td>
1075
+ </tr>
1076
+
1077
+ </tbody>
1078
+ </table>
1079
+
1080
+ </dd>
1081
+
1082
+ </dl>
1083
+
1084
+
1085
+ <h3 id="events-section" class="subsection-title">
1086
+ Events
1087
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#events-section"></a>
1088
+ </h3>
1089
+
1090
+ <dl>
1091
+
1092
+
1093
+ <dt class="">
1094
+
1095
+
1096
+
1097
+ <h4 id="event:ojBeforeSelect" class="name">
1098
+
1099
+ ojBeforeSelect
1100
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#event:ojBeforeSelect"></a>
1101
+
1102
+ </h4>
1103
+
1104
+
1105
+
1106
+
1107
+
1108
+ </dt>
1109
+ <dd class="">
1110
+
1111
+
1112
+ <div class="description">
1113
+ Triggered before files are selected to allow for custom validation. To reject the selected files, the application can either call event.preventDefault() or pass a rejected Promise to the accept detail property. The latter approach is recommended because this allows the application to send a message stating why the files were rejected.
1114
+
1115
+ </div>
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+ <dl class="details">
1130
+
1131
+ <h5 class="subsection-title notoc">Properties:</h5>
1132
+
1133
+
1134
+ <p>All of the event payloads listed below can be found under <code class="prettyprint">event.detail</code>.
1135
+ See <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.
1136
+ </p>
1137
+
1138
+
1139
+ <dl>
1140
+
1141
+ <table class="props">
1142
+ <thead>
1143
+ <tr>
1144
+
1145
+ <th>Name</th>
1146
+
1147
+
1148
+ <th>Type</th>
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+
1155
+ <th class="last">Description</th>
1156
+
1157
+ </tr>
1158
+ </thead>
1159
+
1160
+ <tbody>
1161
+
1162
+ <tr>
1163
+
1164
+ <td class="name"><code>accept</code></td>
1165
+
1166
+
1167
+
1168
+ <td class="type">
1169
+
1170
+
1171
+
1172
+ <span class="param-type">(param: Promise&lt;void>) => void</span>
1173
+
1174
+
1175
+
1176
+
1177
+ </td>
1178
+
1179
+
1180
+
1181
+
1182
+
1183
+
1184
+ <td class="description last">This method can be called with an application-created Promise to cancel this event asynchronously. The Promise should be resolved or rejected to accept or cancel the event, respectively.
1185
+ </td>
1186
+
1187
+ </tr>
1188
+
1189
+
1190
+ <tr>
1191
+
1192
+ <td class="name"><code>files</code></td>
1193
+
1194
+
1195
+
1196
+ <td class="type">
1197
+
1198
+
1199
+
1200
+ <span class="param-type">FileList</span>
1201
+
1202
+
1203
+
1204
+
1205
+ </td>
1206
+
1207
+
1208
+
1209
+
1210
+
1211
+
1212
+ <td class="description last">The selected files
1213
+ </td>
1214
+
1215
+ </tr>
1216
+
1217
+
1218
+ </tbody>
1219
+ </table></dl>
1220
+
1221
+
1222
+
1223
+
1224
+
1225
+
1226
+
1227
+
1228
+
1229
+
1230
+
1231
+
1232
+
1233
+
1234
+
1235
+
1236
+
1237
+
1238
+
1239
+
1240
+
1241
+
1242
+
1243
+
1244
+
1245
+
1246
+
1247
+
1248
+
1249
+
1250
+ </dl>
1251
+
1252
+
1253
+
1254
+
1255
+
1256
+
1257
+
1258
+
1259
+
1260
+ </dd>
1261
+
1262
+
1263
+
1264
+ <dt class="">
1265
+
1266
+
1267
+
1268
+ <h4 id="event:ojInvalidSelect" class="name">
1269
+
1270
+ ojInvalidSelect
1271
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#event:ojInvalidSelect"></a>
1272
+
1273
+ </h4>
1274
+
1275
+
1276
+
1277
+
1278
+
1279
+ </dt>
1280
+ <dd class="">
1281
+
1282
+
1283
+ <div class="description">
1284
+ Triggered when invalid files are selected. This event provides the application with a list of messages that should be displayed to give the user feedback about the
1285
+ problems with their selection. This feedback can be safely cleared when a subsequent ojBeforeSelect, ojInvalidSelect, or ojSelect event is received. Additionally the
1286
+ event.detail.until property may be populated with a Promise to provide short-term feedback during a user interaction (typically drag and drop); the feedback should be cleared upon resolution
1287
+ of this Promise.
1288
+
1289
+ </div>
1290
+
1291
+
1292
+
1293
+
1294
+
1295
+
1296
+
1297
+
1298
+
1299
+
1300
+
1301
+
1302
+
1303
+ <dl class="details">
1304
+
1305
+ <h5 class="subsection-title notoc">Properties:</h5>
1306
+
1307
+
1308
+ <p>All of the event payloads listed below can be found under <code class="prettyprint">event.detail</code>.
1309
+ See <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.
1310
+ </p>
1311
+
1312
+
1313
+ <dl>
1314
+
1315
+ <table class="props">
1316
+ <thead>
1317
+ <tr>
1318
+
1319
+ <th>Name</th>
1320
+
1321
+
1322
+ <th>Type</th>
1323
+
1324
+
1325
+
1326
+
1327
+
1328
+
1329
+ <th class="last">Description</th>
1330
+
1331
+ </tr>
1332
+ </thead>
1333
+
1334
+ <tbody>
1335
+
1336
+ <tr>
1337
+
1338
+ <td class="name"><code>messages</code></td>
1339
+
1340
+
1341
+
1342
+ <td class="type">
1343
+
1344
+
1345
+
1346
+ <table class="props">
1347
+ <thead>
1348
+ <tr>
1349
+
1350
+ <th>Name</th>
1351
+
1352
+
1353
+ <th>Type</th>
1354
+
1355
+
1356
+ <th>Argument</th>
1357
+
1358
+
1359
+
1360
+
1361
+
1362
+ </tr>
1363
+ </thead>
1364
+
1365
+ <tbody>
1366
+
1367
+ <tr>
1368
+
1369
+ <td class="name"><code>detail</code></td>
1370
+
1371
+
1372
+
1373
+ <td class="type">
1374
+
1375
+
1376
+
1377
+ <span class="param-type">string</span>
1378
+
1379
+
1380
+
1381
+
1382
+ </td>
1383
+
1384
+
1385
+ <td class="attributes">
1386
+
1387
+ &lt;optional><br>
1388
+
1389
+
1390
+
1391
+ </td>
1392
+
1393
+
1394
+
1395
+
1396
+
1397
+ </tr>
1398
+
1399
+
1400
+ <tr>
1401
+
1402
+ <td class="name"><code>severity</code></td>
1403
+
1404
+
1405
+
1406
+ <td class="type">
1407
+
1408
+
1409
+
1410
+ <span class="param-type">error</span>
1411
+ |
1412
+
1413
+ <span class="param-type">confirmation</span>
1414
+ |
1415
+
1416
+ <span class="param-type">info</span>
1417
+ |
1418
+
1419
+ <span class="param-type">warning</span>
1420
+
1421
+
1422
+
1423
+
1424
+ </td>
1425
+
1426
+
1427
+ <td class="attributes">
1428
+
1429
+ &lt;optional><br>
1430
+
1431
+
1432
+
1433
+ </td>
1434
+
1435
+
1436
+
1437
+
1438
+
1439
+ </tr>
1440
+
1441
+
1442
+ <tr>
1443
+
1444
+ <td class="name"><code>summary</code></td>
1445
+
1446
+
1447
+
1448
+ <td class="type">
1449
+
1450
+
1451
+
1452
+ <span class="param-type">string</span>
1453
+
1454
+
1455
+
1456
+
1457
+ </td>
1458
+
1459
+
1460
+ <td class="attributes">
1461
+
1462
+ &lt;optional><br>
1463
+
1464
+
1465
+
1466
+ </td>
1467
+
1468
+
1469
+
1470
+
1471
+
1472
+ </tr>
1473
+
1474
+
1475
+ </tbody>
1476
+ </table>
1477
+
1478
+ </td>
1479
+
1480
+
1481
+
1482
+
1483
+
1484
+
1485
+ <td class="description last">Messages that should be displayed to the user describing invalid files.
1486
+ </td>
1487
+
1488
+ </tr>
1489
+
1490
+
1491
+ <tr>
1492
+
1493
+ <td class="name"><code>until</code></td>
1494
+
1495
+
1496
+
1497
+ <td class="type">
1498
+
1499
+
1500
+
1501
+ <span class="param-type">Promise&lt;void></span>
1502
+ |
1503
+
1504
+ <span class="param-type">null</span>
1505
+
1506
+
1507
+
1508
+
1509
+ </td>
1510
+
1511
+
1512
+
1513
+
1514
+
1515
+
1516
+ <td class="description last">This property may be populated with a Promise to provide short-term feedback during a user interaction (typically drag and drop); the feedback should be cleared upon the resolution of this Promise.
1517
+ </td>
1518
+
1519
+ </tr>
1520
+
1521
+
1522
+ </tbody>
1523
+ </table></dl>
1524
+
1525
+
1526
+
1527
+
1528
+
1529
+
1530
+
1531
+
1532
+
1533
+
1534
+
1535
+
1536
+
1537
+
1538
+
1539
+
1540
+
1541
+
1542
+
1543
+
1544
+
1545
+
1546
+
1547
+
1548
+
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+ </dl>
1555
+
1556
+
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+
1563
+
1564
+ </dd>
1565
+
1566
+
1567
+
1568
+ <dt class="">
1569
+
1570
+
1571
+
1572
+ <h4 id="event:ojSelect" class="name">
1573
+
1574
+ ojSelect
1575
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#event:ojSelect"></a>
1576
+
1577
+ </h4>
1578
+
1579
+
1580
+
1581
+
1582
+
1583
+ </dt>
1584
+ <dd class="">
1585
+
1586
+
1587
+ <div class="description">
1588
+ Triggered after the files are selected
1589
+
1590
+ </div>
1591
+
1592
+
1593
+
1594
+
1595
+
1596
+
1597
+
1598
+
1599
+
1600
+
1601
+
1602
+
1603
+
1604
+ <dl class="details">
1605
+
1606
+ <h5 class="subsection-title notoc">Properties:</h5>
1607
+
1608
+
1609
+ <p>All of the event payloads listed below can be found under <code class="prettyprint">event.detail</code>.
1610
+ See <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.
1611
+ </p>
1612
+
1613
+
1614
+ <dl>
1615
+
1616
+ <table class="props">
1617
+ <thead>
1618
+ <tr>
1619
+
1620
+ <th>Name</th>
1621
+
1622
+
1623
+ <th>Type</th>
1624
+
1625
+
1626
+
1627
+
1628
+
1629
+
1630
+ <th class="last">Description</th>
1631
+
1632
+ </tr>
1633
+ </thead>
1634
+
1635
+ <tbody>
1636
+
1637
+ <tr>
1638
+
1639
+ <td class="name"><code>files</code></td>
1640
+
1641
+
1642
+
1643
+ <td class="type">
1644
+
1645
+
1646
+
1647
+ <span class="param-type">FileList</span>
1648
+
1649
+
1650
+
1651
+
1652
+ </td>
1653
+
1654
+
1655
+
1656
+
1657
+
1658
+
1659
+ <td class="description last">The files that were just selected.
1660
+ </td>
1661
+
1662
+ </tr>
1663
+
1664
+
1665
+ </tbody>
1666
+ </table></dl>
1667
+
1668
+
1669
+
1670
+
1671
+
1672
+
1673
+
1674
+
1675
+
1676
+
1677
+
1678
+
1679
+
1680
+
1681
+
1682
+
1683
+
1684
+
1685
+
1686
+
1687
+
1688
+
1689
+
1690
+
1691
+
1692
+
1693
+
1694
+
1695
+
1696
+
1697
+ </dl>
1698
+
1699
+
1700
+
1701
+
1702
+
1703
+
1704
+
1705
+
1706
+
1707
+ </dd>
1708
+
1709
+
1710
+ </dl>
1711
+
1712
+
1713
+ <h3 id="methods-section" class="subsection-title">
1714
+ Methods
1715
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#methods-section"></a>
1716
+ </h3>
1717
+
1718
+ <dl>
1719
+
1720
+
1721
+ <dt class="">
1722
+
1723
+
1724
+
1725
+ <h4 id="blur" class="name">
1726
+
1727
+ <span class="type-signature"></span>blur<span class="signature"></span><span class="type-signature"> : {void}</span>
1728
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#blur"></a>
1729
+
1730
+ </h4>
1731
+
1732
+
1733
+
1734
+
1735
+
1736
+ </dt>
1737
+ <dd class="">
1738
+
1739
+
1740
+ <div class="description">
1741
+ Blurs the file picker
1742
+
1743
+ </div>
1744
+
1745
+
1746
+
1747
+
1748
+
1749
+
1750
+
1751
+
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+ <dl class="details">
1758
+
1759
+
1760
+
1761
+
1762
+
1763
+
1764
+
1765
+
1766
+
1767
+
1768
+
1769
+
1770
+
1771
+
1772
+
1773
+
1774
+
1775
+
1776
+
1777
+
1778
+
1779
+
1780
+
1781
+
1782
+
1783
+
1784
+
1785
+
1786
+
1787
+ </dl>
1788
+
1789
+
1790
+
1791
+
1792
+
1793
+
1794
+
1795
+ <h5>Returns:</h5>
1796
+
1797
+
1798
+
1799
+
1800
+ <dl>
1801
+ <dt>
1802
+ Type
1803
+ </dt>
1804
+ <dd>
1805
+
1806
+ <span class="param-type">void</span>
1807
+
1808
+
1809
+ </dd>
1810
+ </dl>
1811
+
1812
+
1813
+
1814
+
1815
+
1816
+ </dd>
1817
+
1818
+
1819
+
1820
+ <dt class="">
1821
+
1822
+
1823
+
1824
+ <h4 id="focus" class="name">
1825
+
1826
+ <span class="type-signature"></span>focus<span class="signature"></span><span class="type-signature"> : {void}</span>
1827
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#focus"></a>
1828
+
1829
+ </h4>
1830
+
1831
+
1832
+
1833
+
1834
+
1835
+ </dt>
1836
+ <dd class="">
1837
+
1838
+
1839
+ <div class="description">
1840
+ Sets focus on the file picker or the first tabbable element for file picker with custom content.
1841
+
1842
+ </div>
1843
+
1844
+
1845
+
1846
+
1847
+
1848
+
1849
+
1850
+
1851
+
1852
+
1853
+
1854
+
1855
+
1856
+ <dl class="details">
1857
+
1858
+
1859
+
1860
+
1861
+
1862
+
1863
+
1864
+
1865
+
1866
+
1867
+
1868
+
1869
+
1870
+
1871
+
1872
+
1873
+
1874
+
1875
+
1876
+
1877
+
1878
+
1879
+
1880
+
1881
+
1882
+
1883
+
1884
+
1885
+
1886
+ </dl>
1887
+
1888
+
1889
+
1890
+
1891
+
1892
+
1893
+
1894
+ <h5>Returns:</h5>
1895
+
1896
+
1897
+
1898
+
1899
+ <dl>
1900
+ <dt>
1901
+ Type
1902
+ </dt>
1903
+ <dd>
1904
+
1905
+ <span class="param-type">void</span>
1906
+
1907
+
1908
+ </dd>
1909
+ </dl>
1910
+
1911
+
1912
+
1913
+
1914
+
1915
+ </dd>
1916
+
1917
+
1918
+
1919
+ <dt class="">
1920
+
1921
+
1922
+
1923
+ <h4 id="getProperty" class="name">
1924
+
1925
+ <span class="type-signature"></span>getProperty<span class="signature">(property)</span><span class="type-signature"> : {<a href="CustomElementOverview.html#ce-attrs-any-section">any</a>}</span>
1926
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#getProperty"></a>
1927
+
1928
+ </h4>
1929
+
1930
+
1931
+
1932
+
1933
+
1934
+ </dt>
1935
+ <dd class="">
1936
+
1937
+
1938
+ <div class="description">
1939
+ Retrieves the value of a property or a subproperty.
1940
+
1941
+ </div>
1942
+
1943
+
1944
+
1945
+
1946
+
1947
+
1948
+
1949
+
1950
+
1951
+
1952
+
1953
+ <h5>Parameters:</h5>
1954
+
1955
+
1956
+ <table class="params">
1957
+ <thead>
1958
+ <tr>
1959
+
1960
+ <th>Name</th>
1961
+
1962
+
1963
+ <th>Type</th>
1964
+
1965
+
1966
+
1967
+
1968
+
1969
+ <th class="last">Description</th>
1970
+ </tr>
1971
+ </thead>
1972
+
1973
+ <tbody>
1974
+
1975
+
1976
+ <tr>
1977
+
1978
+ <td class="name"><code>property</code></td>
1979
+
1980
+
1981
+ <td class="type">
1982
+
1983
+ </td>
1984
+
1985
+
1986
+
1987
+
1988
+ <td class="description last">The property name to get. Supports dot notation for subproperty access.
1989
+ </td>
1990
+ </tr>
1991
+
1992
+
1993
+ </tbody>
1994
+ </table>
1995
+
1996
+
1997
+
1998
+ <dl class="details">
1999
+
2000
+
2001
+
2002
+
2003
+
2004
+
2005
+
2006
+
2007
+
2008
+
2009
+
2010
+
2011
+
2012
+
2013
+
2014
+
2015
+
2016
+
2017
+
2018
+
2019
+
2020
+
2021
+
2022
+
2023
+
2024
+
2025
+
2026
+
2027
+
2028
+ </dl>
2029
+
2030
+
2031
+
2032
+
2033
+
2034
+
2035
+
2036
+ <h5>Returns:</h5>
2037
+
2038
+
2039
+
2040
+
2041
+ <dl>
2042
+ <dt>
2043
+ Type
2044
+ </dt>
2045
+ <dd>
2046
+
2047
+ <span class="param-type"><a href="CustomElementOverview.html#ce-attrs-any-section">any</a></span>
2048
+
2049
+
2050
+ </dd>
2051
+ </dl>
2052
+
2053
+
2054
+
2055
+
2056
+
2057
+ </dd>
2058
+
2059
+
2060
+
2061
+ <dt class="">
2062
+
2063
+
2064
+
2065
+ <h4 id="setProperties" class="name">
2066
+
2067
+ <span class="type-signature"></span>setProperties<span class="signature">(properties)</span><span class="type-signature"> : {void}</span>
2068
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#setProperties"></a>
2069
+
2070
+ </h4>
2071
+
2072
+
2073
+
2074
+
2075
+
2076
+ </dt>
2077
+ <dd class="">
2078
+
2079
+
2080
+ <div class="description">
2081
+ Performs a batch set of properties.
2082
+
2083
+ </div>
2084
+
2085
+
2086
+
2087
+
2088
+
2089
+
2090
+
2091
+
2092
+
2093
+
2094
+
2095
+ <h5>Parameters:</h5>
2096
+
2097
+
2098
+ <table class="params">
2099
+ <thead>
2100
+ <tr>
2101
+
2102
+ <th>Name</th>
2103
+
2104
+
2105
+ <th>Type</th>
2106
+
2107
+
2108
+
2109
+
2110
+
2111
+ <th class="last">Description</th>
2112
+ </tr>
2113
+ </thead>
2114
+
2115
+ <tbody>
2116
+
2117
+
2118
+ <tr>
2119
+
2120
+ <td class="name"><code>properties</code></td>
2121
+
2122
+
2123
+ <td class="type">
2124
+
2125
+ </td>
2126
+
2127
+
2128
+
2129
+
2130
+ <td class="description last">An object containing the property and value pairs to set.
2131
+ </td>
2132
+ </tr>
2133
+
2134
+
2135
+ </tbody>
2136
+ </table>
2137
+
2138
+
2139
+
2140
+ <dl class="details">
2141
+
2142
+
2143
+
2144
+
2145
+
2146
+
2147
+
2148
+
2149
+
2150
+
2151
+
2152
+
2153
+
2154
+
2155
+
2156
+
2157
+
2158
+
2159
+
2160
+
2161
+
2162
+
2163
+
2164
+
2165
+
2166
+
2167
+
2168
+
2169
+
2170
+ </dl>
2171
+
2172
+
2173
+
2174
+
2175
+
2176
+
2177
+
2178
+ <h5>Returns:</h5>
2179
+
2180
+
2181
+
2182
+
2183
+ <dl>
2184
+ <dt>
2185
+ Type
2186
+ </dt>
2187
+ <dd>
2188
+
2189
+ <span class="param-type">void</span>
2190
+
2191
+
2192
+ </dd>
2193
+ </dl>
2194
+
2195
+
2196
+
2197
+
2198
+
2199
+ </dd>
2200
+
2201
+
2202
+
2203
+ <dt class="">
2204
+
2205
+
2206
+
2207
+ <h4 id="setProperty" class="name">
2208
+
2209
+ <span class="type-signature"></span>setProperty<span class="signature">(property, value)</span><span class="type-signature"> : {void}</span>
2210
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#setProperty"></a>
2211
+
2212
+ </h4>
2213
+
2214
+
2215
+
2216
+
2217
+
2218
+ </dt>
2219
+ <dd class="">
2220
+
2221
+
2222
+ <div class="description">
2223
+ Sets a property or a single subproperty for complex properties and notifies the component of the change, triggering a corresponding event.
2224
+
2225
+ </div>
2226
+
2227
+
2228
+
2229
+
2230
+
2231
+
2232
+
2233
+
2234
+
2235
+
2236
+
2237
+ <h5>Parameters:</h5>
2238
+
2239
+
2240
+ <table class="params">
2241
+ <thead>
2242
+ <tr>
2243
+
2244
+ <th>Name</th>
2245
+
2246
+
2247
+ <th>Type</th>
2248
+
2249
+
2250
+
2251
+
2252
+
2253
+ <th class="last">Description</th>
2254
+ </tr>
2255
+ </thead>
2256
+
2257
+ <tbody>
2258
+
2259
+
2260
+ <tr>
2261
+
2262
+ <td class="name"><code>property</code></td>
2263
+
2264
+
2265
+ <td class="type">
2266
+
2267
+ </td>
2268
+
2269
+
2270
+
2271
+
2272
+ <td class="description last">The property name to set. Supports dot notation for subproperty access.
2273
+ </td>
2274
+ </tr>
2275
+
2276
+
2277
+
2278
+ <tr>
2279
+
2280
+ <td class="name"><code>value</code></td>
2281
+
2282
+
2283
+ <td class="type">
2284
+
2285
+ </td>
2286
+
2287
+
2288
+
2289
+
2290
+ <td class="description last">The new value to set the property to.
2291
+ </td>
2292
+ </tr>
2293
+
2294
+
2295
+ </tbody>
2296
+ </table>
2297
+
2298
+
2299
+
2300
+ <dl class="details">
2301
+
2302
+
2303
+
2304
+
2305
+
2306
+
2307
+
2308
+
2309
+
2310
+
2311
+
2312
+
2313
+
2314
+
2315
+
2316
+
2317
+
2318
+
2319
+
2320
+
2321
+
2322
+
2323
+
2324
+
2325
+
2326
+
2327
+
2328
+
2329
+
2330
+ </dl>
2331
+
2332
+
2333
+
2334
+
2335
+
2336
+
2337
+
2338
+ <h5>Returns:</h5>
2339
+
2340
+
2341
+
2342
+
2343
+ <dl>
2344
+ <dt>
2345
+ Type
2346
+ </dt>
2347
+ <dd>
2348
+
2349
+ <span class="param-type">void</span>
2350
+
2351
+
2352
+ </dd>
2353
+ </dl>
2354
+
2355
+
2356
+
2357
+
2358
+
2359
+ </dd>
2360
+
2361
+
2362
+ </dl>
2363
+
2364
+ </article>
2365
+
2366
+
2367
+ </section>
2368
+
2369
+
2370
+
2371
+
2372
+ <footer>
2373
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Fri Jan 06 2023 02:37:41 GMT+0000 (Coordinated Universal Time)<br>
2374
+ <span class="product-docs-footer">Copyright © 2014, 2023 Oracle. All rights reserved.<span>
2375
+ </footer>
2376
+ </div>
2377
+
2378
+ <script> prettyPrint(); </script>
2379
+ </body>
2380
+ </html>