@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,1990 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Element: &lt;oj-c-collapsible></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="navItem20">
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-collapsible></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-since">Since:</dt>
126
+ <dd class="tag-since"><ul class="dummy"><li>14.0.0</li></ul></dd>
127
+
128
+ <dt class="tag-module">Module:</dt>
129
+ <dd class="tag-module"><ul class="dummy"><li>collapsible</li></ul></dd>
130
+
131
+ </dl>
132
+
133
+ <section id="quick-nav" class="">
134
+ <header><h2>QuickNav</h2></header>
135
+
136
+ <div class="quick-nav-section5">
137
+
138
+ <h3> <a href="#slots-section">Slots</a></h3>
139
+ <ul class="subList">
140
+
141
+ <li><a href="#Default">Default</a></li>
142
+
143
+
144
+ <li><a href="#header">header</a></li>
145
+
146
+ </ul>
147
+
148
+ </div>
149
+
150
+
151
+
152
+ <div class="quick-nav-section5">
153
+ <h3> <a href="#members-section">Attributes</a></h3>
154
+ <ul class="optionsSubList">
155
+
156
+ <li><div><a href="#disabled">disabled</a></div>
157
+
158
+ </li>
159
+
160
+ <li><div><a href="#expanded">expanded</a></div>
161
+
162
+ </li>
163
+
164
+ <li><div><a href="#iconPosition">icon-position</a></div>
165
+
166
+ </li>
167
+
168
+ <li><div><a href="#variant">variant</a></div>
169
+
170
+ </ul>
171
+ <script type="text/javascript" >
172
+ var innerSubLists = document.getElementsByClassName('optionsInnerSubList');
173
+ for (var i=0; i<innerSubLists.length; i++) {
174
+ innerSubLists[i].parentNode.onclick=function(event) {
175
+ event.stopPropagation();
176
+ // Only interpret the click event if the <a> element is the target and do nothing if click occurred elsewhere on the div
177
+ if (event.target.parentNode == this.firstChild.firstChild) {
178
+ // toggle only the clicked sub properties list and not any nested ones
179
+ var subProperties = this.getElementsByClassName('optionsInnerSubList');
180
+ subProperties[0].style.display = (subProperties[0].style.display=='block' ? 'none' : 'block');
181
+ }
182
+ }
183
+ }
184
+ </script>
185
+
186
+
187
+
188
+
189
+
190
+ </div>
191
+
192
+
193
+
194
+ <div class="quick-nav-section5">
195
+ <h3><a href="#events-section">Events</a></h3>
196
+ <ul class="subList">
197
+
198
+ <li><a href="#event:ojBeforeCollapse">ojBeforeCollapse</a></li>
199
+
200
+ <li><a href="#event:ojBeforeExpand">ojBeforeExpand</a></li>
201
+
202
+ <li><a href="#event:ojCollapse">ojCollapse</a></li>
203
+
204
+ <li><a href="#event:ojExpand">ojExpand</a></li>
205
+
206
+ </ul>
207
+ </div>
208
+
209
+
210
+
211
+ <div class="quick-nav-section5">
212
+ <h3><a href="#methods-section">Methods</a></h3>
213
+ <ul class="subList">
214
+
215
+ <li><a href="#getProperty">getProperty</a></li>
216
+
217
+ <li><a href="#setProperties">setProperties</a></li>
218
+
219
+ <li><a href="#setProperty">setProperty</a></li>
220
+
221
+ </ul>
222
+
223
+ </div>
224
+
225
+
226
+
227
+ <div class="quick-nav-section5">
228
+ <h3>Other Topics</h3>
229
+ <ul class="subList">
230
+
231
+ <li><a href="#migration-section">Migration Section</a></li>
232
+
233
+ </ul>
234
+ </div>
235
+
236
+ </section>
237
+
238
+ <section class="">
239
+ <header>
240
+
241
+ </br>
242
+
243
+ <div class="class-description">
244
+ <p><h3 id="collapsibleOverview-section">
245
+ JET Collapsible
246
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#collapsibleOverview-section"></a>
247
+ </h3>
248
+
249
+ <p>Description: A JET Collapsible displays a header that can be expanded to show additional content beneath it.
250
+ The child element of the oj-c-collapsible in the named <a href="#header">header</a> slot is displayed in the header, while the child element in the <a href="#Default">default</a> slot is displayed as the content.
251
+
252
+ <p>Note for performance reasons, if the collapsible content is expensive to render, you should wrap it in an <code class="prettyprint">oj-defer</code> element to defer the rendering of that content.<br/>
253
+ See the Collapsible - Deferred Rendering demo for an example.</p>
254
+
255
+ <pre class="prettyprint"><code>
256
+ &lt;oj-c-collapsible>
257
+ &lt;h3 slot='header'>Header 1&lt;/h3>
258
+ &lt;p>Content 1&lt;/p>
259
+ &lt;/oj-c-collapsible>
260
+ </code></pre>
261
+
262
+ <h3 id="migration-section">
263
+ Migration
264
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#migration-section"></a>
265
+ </h3>
266
+ To migrate from oj-collapsible to oj-c-collapsible, you need to revise the import statement and references to oj-c-collapsible in your app.
267
+ In addition, please note the changes between the two components below.
268
+ <h5>oj-header-border style class</h5>
269
+ <p>The <code class="prettyprint">oj-header-border</code> style class should no longer be used with oj-c-collapsible.
270
+ To display a divider between the collapsible header and content, set the <code class="prettyprint">variant</code> property value
271
+ to <code class="prettyprint">horizontal-rule</code>
272
+ </p>
273
+ <h5>Child margins</h5>
274
+ <p>By default, <code class="prettyprint">oj-c-collapsible</code> removes margins from children passed
275
+ in the <code class="prettyprint">header</code> and default (content) slots. To preserve the margins,
276
+ wrap the header or content elements in an extra <code class="prettyprint">div</code>.
277
+ </p>
278
+
279
+ <h3 id="data-attributes-section">
280
+ Custom Data Attributes
281
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#data-attributes-section"></a>
282
+ </h3>
283
+
284
+ <p>Collapsible supports the following custom data attributes.
285
+ <table class="keyboard-table">
286
+ <thead>
287
+ <tr>
288
+ <th>Name</th>
289
+ <th>Description</th>
290
+ <th>Example</th>
291
+ </tr>
292
+ </thead>
293
+ <tbody>
294
+ <tr>
295
+ <td><kbd>data-oj-clickthrough</kbd></td>
296
+ <td><p>Specify on any element inside the header where you want to control whether Collapsible should toggle disclosure by
297
+ an event originating from the element or one of its descendants.</p>
298
+ <p>For example, if you specify this attribute with a value of "disabled" on a button inside the header, then Collapsible
299
+ will not trigger disclosure when user clicks on the button.</p>
300
+ </td>
301
+ <td>
302
+ <pre class="prettyprint"><code>&lt;oj-c-collapsible>
303
+ &lt;div slot="header">
304
+ &lt;h3>Header 3&lt;/h3>
305
+ &lt;oj-c-button data-oj-clickthrough="disabled">&lt;/oj-c-button
306
+ &lt;/div>
307
+ &lt;p>Content&lt;/p>
308
+ &lt;/oj-c-collapsible></code></pre>
309
+ </td>
310
+ </tr>
311
+ </tbody>
312
+ </table></p>
313
+ </div>
314
+ </br>
315
+
316
+ </header>
317
+
318
+
319
+ <article>
320
+ <div class="container-overview">
321
+
322
+
323
+ <div class="usage-section">
324
+ <h3 id="usage-section">Usage<a class="bookmarkable-link" title="Bookmarkable Link" href="#usage-section"></a></h3>
325
+
326
+ <dt class="null" style="margin-right: 100px;"><h5><span>Signature: </span><p> <span class="name type-signature">interface CCollapsibleElement</span></p></h5></dt>
327
+
328
+ <dl>
329
+ <dt><h5>Typescript Import Format</h5></dt>
330
+ <dd><pre class="prettyprint"><code>//To typecheck the element APIs, import as below.<br>import {CCollapsibleElement} from "oj-c/collapsible";<br><br>//For the transpiled javascript to load the element's module, import as below<br>import "oj-c/collapsible";</code></pre></dd>
331
+ </dl>
332
+
333
+ <p>For additional information visit:</p>
334
+ <ul>
335
+
336
+ <li><a href="../../../jsdocs/CustomElementOverview.html" target="_blank">Using JET Custom Elements</a></li>
337
+
338
+ <li><a href="../../../jsdocs/TypescriptOverview.html" target="_blank">Using JET with TypeScript</a></li>
339
+ <li><a href="../../../jsdocs/ModuleLoadingOverview.html" target="_blank">JET Module Loading</a></li>
340
+ </ul>
341
+
342
+ <p class="important">Note: Application logic should not interact with the component's properties or invoke its methods
343
+ until the <a href="../../../jsdocs/oj.BusyContext.html" target="_blank">BusyContext</a> indicates that the component is ready for interaction.</p>
344
+
345
+ </div>
346
+ <br>
347
+
348
+
349
+
350
+
351
+
352
+
353
+
354
+ <dl class="details">
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+
370
+
371
+
372
+
373
+
374
+
375
+
376
+
377
+
378
+
379
+
380
+
381
+
382
+
383
+
384
+ </dl>
385
+
386
+
387
+
388
+ </div>
389
+
390
+
391
+
392
+
393
+
394
+
395
+
396
+
397
+
398
+
399
+
400
+
401
+
402
+ <h3 id="slots-section" class="subsection-title">
403
+ Slots
404
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#slots-section"></a>
405
+ </h3>
406
+
407
+ <p>JET components that allow child content support slots.
408
+ Please see the <a href="../../../jsdocs/CustomElementOverview.html#ce-slots-section " target="_blank">slots section</a>
409
+ of the JET component overview doc for more information on allowed slot content and slot types.</p>
410
+
411
+ <dl>
412
+
413
+
414
+ <dt class="">
415
+
416
+ <h4 id="Default" class="name">
417
+
418
+ <span class="type-signature"></span>Default<span class="type-signature"></span>
419
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#Default"></a>
420
+
421
+ </h4>
422
+
423
+
424
+ </dt>
425
+
426
+ <dd class="">
427
+
428
+ <div class="description">
429
+ The default slot is the content of the collapsible. The oj-c-collapsible element accepts plain text or DOM nodes as children for the default slot.
430
+ </div>
431
+
432
+
433
+
434
+
435
+ <dl class="details">
436
+
437
+
438
+
439
+
440
+
441
+
442
+
443
+
444
+
445
+
446
+
447
+
448
+
449
+
450
+
451
+
452
+
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+
463
+
464
+
465
+ </dl>
466
+
467
+
468
+
469
+ </dd>
470
+
471
+
472
+ <dt class="">
473
+
474
+ <h4 id="header" class="name">
475
+
476
+ <span class="type-signature"></span>header<span class="type-signature"></span>
477
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#header"></a>
478
+
479
+ </h4>
480
+
481
+
482
+ </dt>
483
+
484
+ <dd class="">
485
+
486
+ <div class="description">
487
+ The header slot is the collapsible's header. If not specified, the header contains only an open/close icon. Note that the header text is required for JET collapsible for accessibility purposes.
488
+ </div>
489
+
490
+
491
+
492
+
493
+ <dl class="details">
494
+
495
+
496
+
497
+
498
+
499
+
500
+
501
+
502
+
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+
511
+
512
+
513
+
514
+
515
+
516
+
517
+
518
+
519
+
520
+
521
+
522
+
523
+ </dl>
524
+
525
+
526
+
527
+ </dd>
528
+
529
+ </dl>
530
+
531
+
532
+ <h3 id="members-section" class="subsection-title">
533
+ Attributes
534
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#members-section"></a>
535
+ </h3>
536
+
537
+ <dl>
538
+
539
+
540
+ <dt class="">
541
+
542
+ <h4 id="disabled" class="name">
543
+
544
+ <span class="type-signature"></span>disabled<span class="type-signature"> :boolean</span>
545
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#disabled"></a>
546
+
547
+ </h4>
548
+
549
+
550
+ </dt>
551
+
552
+ <dd class="">
553
+
554
+ <div class="description">
555
+ Disables the collapsible if set to <code class="prettyprint">true</code>.
556
+ </div>
557
+
558
+
559
+
560
+
561
+ <dl class="details">
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+
571
+
572
+
573
+
574
+
575
+
576
+
577
+
578
+
579
+
580
+
581
+
582
+
583
+
584
+
585
+
586
+
587
+
588
+
589
+
590
+
591
+ </dl>
592
+
593
+
594
+
595
+ <h5>Names</h5>
596
+ <table class="keyboard-table">
597
+ <thead>
598
+ <tr>
599
+ <th>Item</th>
600
+ <th>Name</th>
601
+ </tr>
602
+ </thead>
603
+ <tbody>
604
+ <tr>
605
+ <td>Property</td>
606
+ <td><code class="prettyprint">disabled</code></td>
607
+ </tr>
608
+
609
+ <tr>
610
+ <td>Property change event</td>
611
+ <td><code class="prettyprint">disabledChanged</code></td>
612
+ </tr>
613
+ <tr>
614
+ <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>
615
+ <td><code class="pretty-print-noprettify">on-disabled-changed</code></td>
616
+ </tr>
617
+
618
+ </tbody>
619
+ </table>
620
+
621
+ </dd>
622
+
623
+
624
+ <dt class="">
625
+
626
+ <h4 id="expanded" class="name">
627
+
628
+ <span class="type-signature"></span>expanded<span class="type-signature"> :boolean</span>
629
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#expanded"></a>
630
+
631
+ </h4>
632
+
633
+
634
+ </dt>
635
+
636
+ <dd class="">
637
+
638
+ <div class="description">
639
+ Specifies if the content is expanded.
640
+ </div>
641
+
642
+
643
+
644
+
645
+ <dl class="details">
646
+
647
+
648
+
649
+
650
+
651
+
652
+
653
+ <dt class="tag-default">Supports writeback:</dt>
654
+ <dd class="tag-default"><ul class="dummy"><li><code class="prettyprint">true</code></li></ul></dd>
655
+
656
+
657
+
658
+
659
+
660
+
661
+
662
+
663
+
664
+
665
+
666
+
667
+
668
+
669
+
670
+
671
+
672
+
673
+
674
+
675
+
676
+
677
+
678
+ </dl>
679
+
680
+
681
+
682
+ <h5>Names</h5>
683
+ <table class="keyboard-table">
684
+ <thead>
685
+ <tr>
686
+ <th>Item</th>
687
+ <th>Name</th>
688
+ </tr>
689
+ </thead>
690
+ <tbody>
691
+ <tr>
692
+ <td>Property</td>
693
+ <td><code class="prettyprint">expanded</code></td>
694
+ </tr>
695
+
696
+ <tr>
697
+ <td>Property change event</td>
698
+ <td><code class="prettyprint">expandedChanged</code></td>
699
+ </tr>
700
+ <tr>
701
+ <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>
702
+ <td><code class="pretty-print-noprettify">on-expanded-changed</code></td>
703
+ </tr>
704
+
705
+ </tbody>
706
+ </table>
707
+
708
+ </dd>
709
+
710
+
711
+ <dt class="">
712
+
713
+ <h4 id="iconPosition" class="name">
714
+
715
+ <span class="type-signature"></span>icon-position<span class="type-signature"> :"start"|"end"</span>
716
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#iconPosition"></a>
717
+
718
+ </h4>
719
+
720
+
721
+ </dt>
722
+
723
+ <dd class="">
724
+
725
+ <div class="description">
726
+ Controls placement of the icon in the header.
727
+ </div>
728
+
729
+
730
+
731
+
732
+ <dl class="details">
733
+
734
+
735
+
736
+
737
+
738
+
739
+
740
+
741
+
742
+
743
+
744
+
745
+
746
+
747
+
748
+
749
+
750
+
751
+
752
+
753
+
754
+
755
+
756
+
757
+
758
+
759
+
760
+
761
+
762
+ </dl>
763
+
764
+
765
+
766
+ <h5>Names</h5>
767
+ <table class="keyboard-table">
768
+ <thead>
769
+ <tr>
770
+ <th>Item</th>
771
+ <th>Name</th>
772
+ </tr>
773
+ </thead>
774
+ <tbody>
775
+ <tr>
776
+ <td>Property</td>
777
+ <td><code class="prettyprint">iconPosition</code></td>
778
+ </tr>
779
+
780
+ <tr>
781
+ <td>Property change event</td>
782
+ <td><code class="prettyprint">iconPositionChanged</code></td>
783
+ </tr>
784
+ <tr>
785
+ <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>
786
+ <td><code class="pretty-print-noprettify">on-icon-position-changed</code></td>
787
+ </tr>
788
+
789
+ </tbody>
790
+ </table>
791
+
792
+ </dd>
793
+
794
+
795
+ <dt class="">
796
+
797
+ <h4 id="variant" class="name">
798
+
799
+ <span class="type-signature"></span>variant<span class="type-signature"> :"basic"|"horizontal-rule"</span>
800
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#variant"></a>
801
+
802
+ </h4>
803
+
804
+
805
+ </dt>
806
+
807
+ <dd class="">
808
+
809
+ <div class="description">
810
+ Controls display of the optional divider below the header.
811
+ </div>
812
+
813
+
814
+
815
+
816
+ <dl class="details">
817
+
818
+
819
+
820
+
821
+
822
+
823
+
824
+
825
+
826
+
827
+
828
+
829
+
830
+
831
+
832
+
833
+
834
+
835
+
836
+
837
+
838
+
839
+
840
+
841
+
842
+
843
+
844
+
845
+
846
+ </dl>
847
+
848
+
849
+
850
+ <h5>Names</h5>
851
+ <table class="keyboard-table">
852
+ <thead>
853
+ <tr>
854
+ <th>Item</th>
855
+ <th>Name</th>
856
+ </tr>
857
+ </thead>
858
+ <tbody>
859
+ <tr>
860
+ <td>Property</td>
861
+ <td><code class="prettyprint">variant</code></td>
862
+ </tr>
863
+
864
+ <tr>
865
+ <td>Property change event</td>
866
+ <td><code class="prettyprint">variantChanged</code></td>
867
+ </tr>
868
+ <tr>
869
+ <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>
870
+ <td><code class="pretty-print-noprettify">on-variant-changed</code></td>
871
+ </tr>
872
+
873
+ </tbody>
874
+ </table>
875
+
876
+ </dd>
877
+
878
+ </dl>
879
+
880
+
881
+ <h3 id="events-section" class="subsection-title">
882
+ Events
883
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#events-section"></a>
884
+ </h3>
885
+
886
+ <dl>
887
+
888
+
889
+ <dt class="">
890
+
891
+
892
+
893
+ <h4 id="event:ojBeforeCollapse" class="name">
894
+
895
+ ojBeforeCollapse
896
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#event:ojBeforeCollapse"></a>
897
+
898
+ </h4>
899
+
900
+
901
+
902
+
903
+
904
+ </dt>
905
+ <dd class="">
906
+
907
+
908
+ <div class="description">
909
+ Triggered immediately before the collapsible is collapsed.
910
+
911
+ </div>
912
+
913
+
914
+
915
+
916
+
917
+
918
+
919
+
920
+
921
+
922
+
923
+
924
+
925
+ <dl class="details">
926
+
927
+ <h5 class="subsection-title notoc">Properties:</h5>
928
+
929
+
930
+ <p>All of the event payloads listed below can be found under <code class="prettyprint">event.detail</code>.
931
+ See <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.
932
+ </p>
933
+
934
+
935
+ <dl>
936
+
937
+ <table class="props">
938
+ <thead>
939
+ <tr>
940
+
941
+ <th>Name</th>
942
+
943
+
944
+ <th>Type</th>
945
+
946
+
947
+
948
+
949
+
950
+
951
+ <th class="last">Description</th>
952
+
953
+ </tr>
954
+ </thead>
955
+
956
+ <tbody>
957
+
958
+ <tr>
959
+
960
+ <td class="name"><code>accept</code></td>
961
+
962
+
963
+
964
+ <td class="type">
965
+
966
+
967
+
968
+ <span class="param-type">(param: Promise&lt;void>) => void</span>
969
+
970
+
971
+
972
+
973
+ </td>
974
+
975
+
976
+
977
+
978
+
979
+
980
+ <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.
981
+ </td>
982
+
983
+ </tr>
984
+
985
+
986
+ <tr>
987
+
988
+ <td class="name"><code>target</code></td>
989
+
990
+
991
+
992
+ <td class="type">
993
+
994
+
995
+
996
+ <span class="param-type"><a href="https://developer.mozilla.org/en-US/docs/Web/API/EventTarget">EventTarget</a></span>
997
+ |
998
+
999
+ <span class="param-type">null</span>
1000
+
1001
+
1002
+
1003
+
1004
+ </td>
1005
+
1006
+
1007
+
1008
+
1009
+
1010
+
1011
+ <td class="description last">
1012
+ </td>
1013
+
1014
+ </tr>
1015
+
1016
+
1017
+ </tbody>
1018
+ </table></dl>
1019
+
1020
+
1021
+
1022
+
1023
+
1024
+
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
+ </dl>
1050
+
1051
+
1052
+
1053
+
1054
+
1055
+
1056
+
1057
+
1058
+
1059
+ </dd>
1060
+
1061
+
1062
+
1063
+ <dt class="">
1064
+
1065
+
1066
+
1067
+ <h4 id="event:ojBeforeExpand" class="name">
1068
+
1069
+ ojBeforeExpand
1070
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#event:ojBeforeExpand"></a>
1071
+
1072
+ </h4>
1073
+
1074
+
1075
+
1076
+
1077
+
1078
+ </dt>
1079
+ <dd class="">
1080
+
1081
+
1082
+ <div class="description">
1083
+ Triggered immediately before the collapsible is expanded.
1084
+
1085
+ </div>
1086
+
1087
+
1088
+
1089
+
1090
+
1091
+
1092
+
1093
+
1094
+
1095
+
1096
+
1097
+
1098
+
1099
+ <dl class="details">
1100
+
1101
+ <h5 class="subsection-title notoc">Properties:</h5>
1102
+
1103
+
1104
+ <p>All of the event payloads listed below can be found under <code class="prettyprint">event.detail</code>.
1105
+ See <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.
1106
+ </p>
1107
+
1108
+
1109
+ <dl>
1110
+
1111
+ <table class="props">
1112
+ <thead>
1113
+ <tr>
1114
+
1115
+ <th>Name</th>
1116
+
1117
+
1118
+ <th>Type</th>
1119
+
1120
+
1121
+
1122
+
1123
+
1124
+
1125
+ <th class="last">Description</th>
1126
+
1127
+ </tr>
1128
+ </thead>
1129
+
1130
+ <tbody>
1131
+
1132
+ <tr>
1133
+
1134
+ <td class="name"><code>accept</code></td>
1135
+
1136
+
1137
+
1138
+ <td class="type">
1139
+
1140
+
1141
+
1142
+ <span class="param-type">(param: Promise&lt;void>) => void</span>
1143
+
1144
+
1145
+
1146
+
1147
+ </td>
1148
+
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+ <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.
1155
+ </td>
1156
+
1157
+ </tr>
1158
+
1159
+
1160
+ <tr>
1161
+
1162
+ <td class="name"><code>target</code></td>
1163
+
1164
+
1165
+
1166
+ <td class="type">
1167
+
1168
+
1169
+
1170
+ <span class="param-type"><a href="https://developer.mozilla.org/en-US/docs/Web/API/EventTarget">EventTarget</a></span>
1171
+ |
1172
+
1173
+ <span class="param-type">null</span>
1174
+
1175
+
1176
+
1177
+
1178
+ </td>
1179
+
1180
+
1181
+
1182
+
1183
+
1184
+
1185
+ <td class="description last">
1186
+ </td>
1187
+
1188
+ </tr>
1189
+
1190
+
1191
+ </tbody>
1192
+ </table></dl>
1193
+
1194
+
1195
+
1196
+
1197
+
1198
+
1199
+
1200
+
1201
+
1202
+
1203
+
1204
+
1205
+
1206
+
1207
+
1208
+
1209
+
1210
+
1211
+
1212
+
1213
+
1214
+
1215
+
1216
+
1217
+
1218
+
1219
+
1220
+
1221
+
1222
+
1223
+ </dl>
1224
+
1225
+
1226
+
1227
+
1228
+
1229
+
1230
+
1231
+
1232
+
1233
+ </dd>
1234
+
1235
+
1236
+
1237
+ <dt class="">
1238
+
1239
+
1240
+
1241
+ <h4 id="event:ojCollapse" class="name">
1242
+
1243
+ ojCollapse
1244
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#event:ojCollapse"></a>
1245
+
1246
+ </h4>
1247
+
1248
+
1249
+
1250
+
1251
+
1252
+ </dt>
1253
+ <dd class="">
1254
+
1255
+
1256
+ <div class="description">
1257
+ Triggered after the collapsible has been collapsed.
1258
+
1259
+ </div>
1260
+
1261
+
1262
+
1263
+
1264
+
1265
+
1266
+
1267
+
1268
+
1269
+
1270
+
1271
+
1272
+
1273
+ <dl class="details">
1274
+
1275
+ <h5 class="subsection-title notoc">Properties:</h5>
1276
+
1277
+
1278
+ <p>All of the event payloads listed below can be found under <code class="prettyprint">event.detail</code>.
1279
+ See <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.
1280
+ </p>
1281
+
1282
+
1283
+ <dl>
1284
+
1285
+ <table class="props">
1286
+ <thead>
1287
+ <tr>
1288
+
1289
+ <th>Name</th>
1290
+
1291
+
1292
+ <th>Type</th>
1293
+
1294
+
1295
+
1296
+
1297
+
1298
+
1299
+ </tr>
1300
+ </thead>
1301
+
1302
+ <tbody>
1303
+
1304
+ <tr>
1305
+
1306
+ <td class="name"><code>target</code></td>
1307
+
1308
+
1309
+
1310
+ <td class="type">
1311
+
1312
+
1313
+
1314
+ <span class="param-type"><a href="https://developer.mozilla.org/en-US/docs/Web/API/EventTarget">EventTarget</a></span>
1315
+ |
1316
+
1317
+ <span class="param-type">null</span>
1318
+
1319
+
1320
+
1321
+
1322
+ </td>
1323
+
1324
+
1325
+
1326
+
1327
+
1328
+
1329
+ </tr>
1330
+
1331
+
1332
+ </tbody>
1333
+ </table></dl>
1334
+
1335
+
1336
+
1337
+
1338
+
1339
+
1340
+
1341
+
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+
1348
+
1349
+
1350
+
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+
1359
+
1360
+
1361
+
1362
+
1363
+
1364
+ </dl>
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+
1371
+
1372
+
1373
+
1374
+ </dd>
1375
+
1376
+
1377
+
1378
+ <dt class="">
1379
+
1380
+
1381
+
1382
+ <h4 id="event:ojExpand" class="name">
1383
+
1384
+ ojExpand
1385
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#event:ojExpand"></a>
1386
+
1387
+ </h4>
1388
+
1389
+
1390
+
1391
+
1392
+
1393
+ </dt>
1394
+ <dd class="">
1395
+
1396
+
1397
+ <div class="description">
1398
+ Triggered after the collapsible has been expanded (after animation completes).
1399
+
1400
+ </div>
1401
+
1402
+
1403
+
1404
+
1405
+
1406
+
1407
+
1408
+
1409
+
1410
+
1411
+
1412
+
1413
+
1414
+ <dl class="details">
1415
+
1416
+ <h5 class="subsection-title notoc">Properties:</h5>
1417
+
1418
+
1419
+ <p>All of the event payloads listed below can be found under <code class="prettyprint">event.detail</code>.
1420
+ See <a href="../../../jsdocs/CustomElementOverview.html#ce-events-section" target="_blank">Events and Listeners</a> for additional information.
1421
+ </p>
1422
+
1423
+
1424
+ <dl>
1425
+
1426
+ <table class="props">
1427
+ <thead>
1428
+ <tr>
1429
+
1430
+ <th>Name</th>
1431
+
1432
+
1433
+ <th>Type</th>
1434
+
1435
+
1436
+
1437
+
1438
+
1439
+
1440
+ </tr>
1441
+ </thead>
1442
+
1443
+ <tbody>
1444
+
1445
+ <tr>
1446
+
1447
+ <td class="name"><code>target</code></td>
1448
+
1449
+
1450
+
1451
+ <td class="type">
1452
+
1453
+
1454
+
1455
+ <span class="param-type"><a href="https://developer.mozilla.org/en-US/docs/Web/API/EventTarget">EventTarget</a></span>
1456
+ |
1457
+
1458
+ <span class="param-type">null</span>
1459
+
1460
+
1461
+
1462
+
1463
+ </td>
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+ </tr>
1471
+
1472
+
1473
+ </tbody>
1474
+ </table></dl>
1475
+
1476
+
1477
+
1478
+
1479
+
1480
+
1481
+
1482
+
1483
+
1484
+
1485
+
1486
+
1487
+
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+
1494
+
1495
+
1496
+
1497
+
1498
+
1499
+
1500
+
1501
+
1502
+
1503
+
1504
+
1505
+ </dl>
1506
+
1507
+
1508
+
1509
+
1510
+
1511
+
1512
+
1513
+
1514
+
1515
+ </dd>
1516
+
1517
+
1518
+ </dl>
1519
+
1520
+
1521
+ <h3 id="methods-section" class="subsection-title">
1522
+ Methods
1523
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#methods-section"></a>
1524
+ </h3>
1525
+
1526
+ <dl>
1527
+
1528
+
1529
+ <dt class="">
1530
+
1531
+
1532
+
1533
+ <h4 id="getProperty" class="name">
1534
+
1535
+ <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>
1536
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#getProperty"></a>
1537
+
1538
+ </h4>
1539
+
1540
+
1541
+
1542
+
1543
+
1544
+ </dt>
1545
+ <dd class="">
1546
+
1547
+
1548
+ <div class="description">
1549
+ Retrieves the value of a property or a subproperty.
1550
+
1551
+ </div>
1552
+
1553
+
1554
+
1555
+
1556
+
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+
1563
+ <h5>Parameters:</h5>
1564
+
1565
+
1566
+ <table class="params">
1567
+ <thead>
1568
+ <tr>
1569
+
1570
+ <th>Name</th>
1571
+
1572
+
1573
+ <th>Type</th>
1574
+
1575
+
1576
+
1577
+
1578
+
1579
+ <th class="last">Description</th>
1580
+ </tr>
1581
+ </thead>
1582
+
1583
+ <tbody>
1584
+
1585
+
1586
+ <tr>
1587
+
1588
+ <td class="name"><code>property</code></td>
1589
+
1590
+
1591
+ <td class="type">
1592
+
1593
+ </td>
1594
+
1595
+
1596
+
1597
+
1598
+ <td class="description last">The property name to get. Supports dot notation for subproperty access.
1599
+ </td>
1600
+ </tr>
1601
+
1602
+
1603
+ </tbody>
1604
+ </table>
1605
+
1606
+
1607
+
1608
+ <dl class="details">
1609
+
1610
+
1611
+
1612
+
1613
+
1614
+
1615
+
1616
+
1617
+
1618
+
1619
+
1620
+
1621
+
1622
+
1623
+
1624
+
1625
+
1626
+
1627
+
1628
+
1629
+
1630
+
1631
+
1632
+
1633
+
1634
+
1635
+
1636
+
1637
+
1638
+ </dl>
1639
+
1640
+
1641
+
1642
+
1643
+
1644
+
1645
+
1646
+ <h5>Returns:</h5>
1647
+
1648
+
1649
+
1650
+
1651
+ <dl>
1652
+ <dt>
1653
+ Type
1654
+ </dt>
1655
+ <dd>
1656
+
1657
+ <span class="param-type"><a href="CustomElementOverview.html#ce-attrs-any-section">any</a></span>
1658
+
1659
+
1660
+ </dd>
1661
+ </dl>
1662
+
1663
+
1664
+
1665
+
1666
+
1667
+ </dd>
1668
+
1669
+
1670
+
1671
+ <dt class="">
1672
+
1673
+
1674
+
1675
+ <h4 id="setProperties" class="name">
1676
+
1677
+ <span class="type-signature"></span>setProperties<span class="signature">(properties)</span><span class="type-signature"> : {void}</span>
1678
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#setProperties"></a>
1679
+
1680
+ </h4>
1681
+
1682
+
1683
+
1684
+
1685
+
1686
+ </dt>
1687
+ <dd class="">
1688
+
1689
+
1690
+ <div class="description">
1691
+ Performs a batch set of properties.
1692
+
1693
+ </div>
1694
+
1695
+
1696
+
1697
+
1698
+
1699
+
1700
+
1701
+
1702
+
1703
+
1704
+
1705
+ <h5>Parameters:</h5>
1706
+
1707
+
1708
+ <table class="params">
1709
+ <thead>
1710
+ <tr>
1711
+
1712
+ <th>Name</th>
1713
+
1714
+
1715
+ <th>Type</th>
1716
+
1717
+
1718
+
1719
+
1720
+
1721
+ <th class="last">Description</th>
1722
+ </tr>
1723
+ </thead>
1724
+
1725
+ <tbody>
1726
+
1727
+
1728
+ <tr>
1729
+
1730
+ <td class="name"><code>properties</code></td>
1731
+
1732
+
1733
+ <td class="type">
1734
+
1735
+ </td>
1736
+
1737
+
1738
+
1739
+
1740
+ <td class="description last">An object containing the property and value pairs to set.
1741
+ </td>
1742
+ </tr>
1743
+
1744
+
1745
+ </tbody>
1746
+ </table>
1747
+
1748
+
1749
+
1750
+ <dl class="details">
1751
+
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+
1758
+
1759
+
1760
+
1761
+
1762
+
1763
+
1764
+
1765
+
1766
+
1767
+
1768
+
1769
+
1770
+
1771
+
1772
+
1773
+
1774
+
1775
+
1776
+
1777
+
1778
+
1779
+
1780
+ </dl>
1781
+
1782
+
1783
+
1784
+
1785
+
1786
+
1787
+
1788
+ <h5>Returns:</h5>
1789
+
1790
+
1791
+
1792
+
1793
+ <dl>
1794
+ <dt>
1795
+ Type
1796
+ </dt>
1797
+ <dd>
1798
+
1799
+ <span class="param-type">void</span>
1800
+
1801
+
1802
+ </dd>
1803
+ </dl>
1804
+
1805
+
1806
+
1807
+
1808
+
1809
+ </dd>
1810
+
1811
+
1812
+
1813
+ <dt class="">
1814
+
1815
+
1816
+
1817
+ <h4 id="setProperty" class="name">
1818
+
1819
+ <span class="type-signature"></span>setProperty<span class="signature">(property, value)</span><span class="type-signature"> : {void}</span>
1820
+ <a class="bookmarkable-link" title="Bookmarkable Link" href="#setProperty"></a>
1821
+
1822
+ </h4>
1823
+
1824
+
1825
+
1826
+
1827
+
1828
+ </dt>
1829
+ <dd class="">
1830
+
1831
+
1832
+ <div class="description">
1833
+ Sets a property or a single subproperty for complex properties and notifies the component of the change, triggering a corresponding event.
1834
+
1835
+ </div>
1836
+
1837
+
1838
+
1839
+
1840
+
1841
+
1842
+
1843
+
1844
+
1845
+
1846
+
1847
+ <h5>Parameters:</h5>
1848
+
1849
+
1850
+ <table class="params">
1851
+ <thead>
1852
+ <tr>
1853
+
1854
+ <th>Name</th>
1855
+
1856
+
1857
+ <th>Type</th>
1858
+
1859
+
1860
+
1861
+
1862
+
1863
+ <th class="last">Description</th>
1864
+ </tr>
1865
+ </thead>
1866
+
1867
+ <tbody>
1868
+
1869
+
1870
+ <tr>
1871
+
1872
+ <td class="name"><code>property</code></td>
1873
+
1874
+
1875
+ <td class="type">
1876
+
1877
+ </td>
1878
+
1879
+
1880
+
1881
+
1882
+ <td class="description last">The property name to set. Supports dot notation for subproperty access.
1883
+ </td>
1884
+ </tr>
1885
+
1886
+
1887
+
1888
+ <tr>
1889
+
1890
+ <td class="name"><code>value</code></td>
1891
+
1892
+
1893
+ <td class="type">
1894
+
1895
+ </td>
1896
+
1897
+
1898
+
1899
+
1900
+ <td class="description last">The new value to set the property to.
1901
+ </td>
1902
+ </tr>
1903
+
1904
+
1905
+ </tbody>
1906
+ </table>
1907
+
1908
+
1909
+
1910
+ <dl class="details">
1911
+
1912
+
1913
+
1914
+
1915
+
1916
+
1917
+
1918
+
1919
+
1920
+
1921
+
1922
+
1923
+
1924
+
1925
+
1926
+
1927
+
1928
+
1929
+
1930
+
1931
+
1932
+
1933
+
1934
+
1935
+
1936
+
1937
+
1938
+
1939
+
1940
+ </dl>
1941
+
1942
+
1943
+
1944
+
1945
+
1946
+
1947
+
1948
+ <h5>Returns:</h5>
1949
+
1950
+
1951
+
1952
+
1953
+ <dl>
1954
+ <dt>
1955
+ Type
1956
+ </dt>
1957
+ <dd>
1958
+
1959
+ <span class="param-type">void</span>
1960
+
1961
+
1962
+ </dd>
1963
+ </dl>
1964
+
1965
+
1966
+
1967
+
1968
+
1969
+ </dd>
1970
+
1971
+
1972
+ </dl>
1973
+
1974
+ </article>
1975
+
1976
+
1977
+ </section>
1978
+
1979
+
1980
+
1981
+
1982
+ <footer>
1983
+ 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>
1984
+ <span class="product-docs-footer">Copyright © 2014, 2023 Oracle. All rights reserved.<span>
1985
+ </footer>
1986
+ </div>
1987
+
1988
+ <script> prettyPrint(); </script>
1989
+ </body>
1990
+ </html>