@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,123 @@
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
10
+ var __rest = (this && this.__rest) || function (s, e) {
11
+ var t = {};
12
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
13
+ t[p] = s[p];
14
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
15
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
16
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
17
+ t[p[i]] = s[p[i]];
18
+ }
19
+ return t;
20
+ };
21
+ define(["require", "exports", "oj-c/editable-value/UNSAFE_useEditableValue/useEditableValue", "oj-c/editable-value/UNSAFE_useValidators/useValidators", "oj-c/hooks/UNSAFE_useListData/useListData", "oj-c/select-common/UNSAFE_useDataProviderListeners/useDataProviderListeners", "oj-c/select-common/UNSAFE_useWrapDataProvider/useWrapDataProvider", "oj-c/select-common/UNSAFE_useWrapValueState/useWrapValueState", "oj-c/select-common/utils/utils", "ojs/ojdataprovider", "preact/hooks", "./useSyncValueAndValueItems", "./useValueItems"], function (require, exports, useEditableValue_1, useValidators_1, useListData_1, useDataProviderListeners_1, useWrapDataProvider_1, useWrapValueState_1, utils_1, ojdataprovider_1, hooks_1, useSyncValueAndValueItems_1, useValueItems_1) {
22
+ "use strict";
23
+ Object.defineProperty(exports, "__esModule", { value: true });
24
+ exports.useSelectMultiplePreact = void 0;
25
+ function useSelectMultiplePreact(_a, addBusyState) {
26
+ var { data: propData, disabled, displayOptions, itemText, labelEdge, labelHint, labelStartWidth, messagesCustom, placeholder, readonly, required, textAlign, userAssistanceDensity, value: propValue, valueItems: propValueItems, virtualKeyboard, onMessagesCustomChanged, onValidChanged, onValueChanged, onValueItemsChanged } = _a, otherProps = __rest(_a, ["data", "disabled", "displayOptions", "itemText", "labelEdge", "labelHint", "labelStartWidth", "messagesCustom", "placeholder", "readonly", "required", "textAlign", "userAssistanceDensity", "value", "valueItems", "virtualKeyboard", "onMessagesCustomChanged", "onValidChanged", "onValueChanged", "onValueItemsChanged"]);
27
+ const [filterCriterion, setFilterCriterion] = (0, hooks_1.useState)(undefined);
28
+ const [isLoading, setIsLoading] = (0, hooks_1.useState)(false);
29
+ const { valueItems, setValueItems, preactValueItems: arItemContexts } = (0, useValueItems_1.useValueItems)(propValueItems, onValueItemsChanged);
30
+ const [preactValueItems, setPreactValueItems] = (0, hooks_1.useState)(arItemContexts);
31
+ (0, hooks_1.useEffect)(() => {
32
+ setPreactValueItems(arItemContexts);
33
+ }, [arItemContexts]);
34
+ const { wrapValueState } = (0, useWrapValueState_1.useWrapValueState)({
35
+ arItemContexts,
36
+ isLoading,
37
+ preactValueItems,
38
+ setPreactValueItems
39
+ });
40
+ const { methods, onCommitValue, setValue, textFieldProps, value } = (0, useEditableValue_1.useEditableValue)({
41
+ ariaDescribedBy: otherProps['aria-describedby'],
42
+ displayOptions,
43
+ messagesCustom,
44
+ required,
45
+ value: propValue,
46
+ addBusyState,
47
+ onMessagesCustomChanged,
48
+ onValidChanged,
49
+ onValueChanged,
50
+ wrapValueState
51
+ });
52
+ const { ariaDescribedBy, messages } = textFieldProps;
53
+ const hasNoValue = value === null || (value instanceof Set && value.size === 0);
54
+ const dataProvider = (0, useWrapDataProvider_1.useWrapDataProvider)(propData);
55
+ const [valueToSync, setValueToSync] = (0, hooks_1.useState)(value);
56
+ const [valueItemsToSync, setValueItemsToSync] = (0, hooks_1.useState)(valueItems);
57
+ (0, hooks_1.useEffect)(() => {
58
+ setValueToSync(value);
59
+ }, [value]);
60
+ (0, hooks_1.useEffect)(() => {
61
+ setValueItemsToSync(valueItems);
62
+ }, [valueItems]);
63
+ (0, useDataProviderListeners_1.useDataProviderListeners)({
64
+ dataProvider,
65
+ setValue: setValue,
66
+ setValueToSync: setValueToSync,
67
+ setValueItemsToSync,
68
+ value: value,
69
+ valueItems
70
+ });
71
+ (0, useSyncValueAndValueItems_1.useSyncValueAndValueItems)({
72
+ addBusyState,
73
+ dataProvider: dataProvider,
74
+ setIsLoading,
75
+ setValue: setValue,
76
+ setValueItems,
77
+ value: valueToSync,
78
+ valueItems: valueItemsToSync
79
+ });
80
+ const [listDataState, onLoadRange] = (0, useListData_1.useListData)(dataProvider, {
81
+ filterCriterion,
82
+ initialRowsFetched: 0
83
+ });
84
+ const onCommit = (0, hooks_1.useCallback)((detail) => __awaiter(this, void 0, void 0, function* () {
85
+ const validationResult = yield onCommitValue((detail.value && detail.value.size > 0 ? detail.value : utils_1.DEFAULT_VALUE));
86
+ if (validationResult === useValidators_1.ValidationResult.INVALID) {
87
+ setPreactValueItems(undefined);
88
+ }
89
+ }), [onCommitValue]);
90
+ const onFilter = (0, hooks_1.useCallback)(({ searchText }) => {
91
+ const fc = searchText && searchText.length > 0
92
+ ? ojdataprovider_1.FilterFactory.getFilter({ filterDef: { text: searchText } })
93
+ : undefined;
94
+ setFilterCriterion(fc);
95
+ }, []);
96
+ return {
97
+ methods,
98
+ selectMultipleProps: {
99
+ ariaDescribedBy,
100
+ data: listDataState.data,
101
+ isDisabled: disabled,
102
+ isLoading,
103
+ isReadonly: readonly,
104
+ isRequired: required,
105
+ isRequiredShown: required && hasNoValue,
106
+ itemText,
107
+ label: labelHint,
108
+ labelEdge,
109
+ labelStartWidth,
110
+ messages,
111
+ onCommit,
112
+ onFilter,
113
+ onLoadRange,
114
+ placeholder,
115
+ textAlign,
116
+ userAssistanceDensity,
117
+ valueItems: preactValueItems,
118
+ virtualKeyboard
119
+ }
120
+ };
121
+ }
122
+ exports.useSelectMultiplePreact = useSelectMultiplePreact;
123
+ });
@@ -0,0 +1,125 @@
1
+ define(["require", "exports", "@oracle/oraclejet-preact/utils/UNSAFE_logger", "oj-c/select-common/utils/utils", "preact/hooks"], function (require, exports, UNSAFE_logger_1, utils_1, hooks_1) {
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.useSyncValueAndValueItems = void 0;
5
+ function useSyncValueAndValueItems({ addBusyState, dataProvider, setIsLoading, setValue, setValueItems, value, valueItems }) {
6
+ const prevValueRef = (0, hooks_1.useRef)(value);
7
+ const prevValueItemsRef = (0, hooks_1.useRef)(valueItems);
8
+ const hasValue = value && value instanceof Set && value.size > 0;
9
+ const hasValueItems = valueItems && valueItems.size > 0;
10
+ const latestFetchRef = (0, hooks_1.useRef)(null);
11
+ const syncValueItemsToValue = (0, hooks_1.useCallback)(() => {
12
+ if (!hasValue) {
13
+ if (hasValueItems) {
14
+ setValueItems(utils_1.DEFAULT_VALUE_ITEMS);
15
+ }
16
+ return;
17
+ }
18
+ const arValues = Array.from(value.keys());
19
+ const valuesToFetch = arValues.reduce((accum, currKey) => {
20
+ if (!hasValueItems || !valueItems.has(currKey)) {
21
+ accum.push(currKey);
22
+ }
23
+ return accum;
24
+ }, []);
25
+ if (valuesToFetch.length === 0) {
26
+ const newValItems = new Map();
27
+ value.forEach((currKey) => {
28
+ newValItems.set(currKey, valueItems.get(currKey));
29
+ });
30
+ setValueItems(newValItems);
31
+ return;
32
+ }
33
+ setIsLoading(true);
34
+ const resolveBusyState = addBusyState('useSyncValueItems: calling fetchByKeys');
35
+ const latestFetch = {};
36
+ latestFetchRef.current = latestFetch;
37
+ dataProvider
38
+ .fetchByKeys({ keys: new Set(valuesToFetch) })
39
+ .then((fbkResults) => {
40
+ if (latestFetch === latestFetchRef.current) {
41
+ const newValueItems = handleFetchByKeysResults(value, valueItems, fbkResults.results);
42
+ setValueItems(newValueItems);
43
+ }
44
+ })
45
+ .catch((reason) => {
46
+ if (latestFetch === latestFetchRef.current) {
47
+ UNSAFE_logger_1.Logger.error(`SelectMultiple: fetchByKeys promise rejected: ${reason}`);
48
+ }
49
+ })
50
+ .finally(() => {
51
+ if (latestFetch === latestFetchRef.current) {
52
+ setIsLoading(false);
53
+ }
54
+ resolveBusyState();
55
+ });
56
+ }, [dataProvider, hasValue, hasValueItems, value, valueItems]);
57
+ const syncValueToValueItems = (0, hooks_1.useCallback)(() => {
58
+ if (!hasValueItems) {
59
+ if (hasValue) {
60
+ setValue(utils_1.DEFAULT_VALUE);
61
+ }
62
+ return;
63
+ }
64
+ const arValueItemsKeys = Array.from(valueItems.keys());
65
+ const valueItemsKeys = new Set(arValueItemsKeys);
66
+ if (!value || !(value instanceof Set) || value.size !== valueItemsKeys.size) {
67
+ setValue(valueItemsKeys);
68
+ return;
69
+ }
70
+ const arValueKeys = Array.from(value.keys());
71
+ const isDifferent = arValueItemsKeys.some((key, index) => key !== arValueKeys[index]);
72
+ if (isDifferent) {
73
+ setValue(valueItemsKeys);
74
+ }
75
+ }, [hasValue, hasValueItems, value, valueItems]);
76
+ (0, hooks_1.useEffect)(() => {
77
+ if (hasValue) {
78
+ syncValueItemsToValue();
79
+ }
80
+ else if (hasValueItems) {
81
+ syncValueToValueItems();
82
+ }
83
+ }, []);
84
+ (0, hooks_1.useEffect)(() => {
85
+ if (value !== prevValueRef.current && valueItems !== prevValueItemsRef.current) {
86
+ prevValueRef.current = value;
87
+ prevValueItemsRef.current = valueItems;
88
+ if (value) {
89
+ syncValueItemsToValue();
90
+ }
91
+ else {
92
+ syncValueToValueItems();
93
+ }
94
+ }
95
+ else if (value !== prevValueRef.current) {
96
+ prevValueRef.current = value;
97
+ syncValueItemsToValue();
98
+ }
99
+ else if (valueItems !== prevValueItemsRef.current) {
100
+ prevValueItemsRef.current = valueItems;
101
+ syncValueToValueItems();
102
+ }
103
+ }, [value, valueItems]);
104
+ }
105
+ exports.useSyncValueAndValueItems = useSyncValueAndValueItems;
106
+ function handleFetchByKeysResults(value, valueItems, fetchByKeysResults) {
107
+ const arKeys = Array.from(value.keys());
108
+ return arKeys.reduce((accumMap, currKey) => {
109
+ if (valueItems && valueItems.has(currKey)) {
110
+ accumMap.set(currKey, valueItems.get(currKey));
111
+ return accumMap;
112
+ }
113
+ const item = fetchByKeysResults.get(currKey);
114
+ if (!item) {
115
+ throw new Error(`oj-c-select-multiple: could not fetch data for key ${currKey}`);
116
+ }
117
+ accumMap.set(currKey, {
118
+ key: currKey,
119
+ data: item.data,
120
+ metadata: item.metadata ? item.metadata : { currKey }
121
+ });
122
+ return accumMap;
123
+ }, new Map());
124
+ }
125
+ });
@@ -0,0 +1,22 @@
1
+ define(["require", "exports", "@oracle/oraclejet-preact/hooks/UNSAFE_useUncontrolledState", "preact/hooks"], function (require, exports, UNSAFE_useUncontrolledState_1, hooks_1) {
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.useValueItems = void 0;
5
+ function useValueItems(propValueItems, onValueItemsChanged) {
6
+ const [valueItems, setValueItems] = (0, UNSAFE_useUncontrolledState_1.useUncontrolledState)(propValueItems, onValueItemsChanged);
7
+ (0, hooks_1.useEffect)(() => {
8
+ if (valueItems !== propValueItems) {
9
+ setValueItems(propValueItems);
10
+ }
11
+ }, [propValueItems]);
12
+ const preactValueItems = (0, hooks_1.useMemo)(() => {
13
+ return valueItems ? Array.from(valueItems.values()) : undefined;
14
+ }, [valueItems]);
15
+ return {
16
+ valueItems,
17
+ setValueItems,
18
+ preactValueItems
19
+ };
20
+ }
21
+ exports.useValueItems = useValueItems;
22
+ });
@@ -0,0 +1,6 @@
1
+ define(["require", "exports", "./select-multiple/select-multiple"], function (require, exports, select_multiple_1) {
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.SelectMultiple = void 0;
5
+ Object.defineProperty(exports, "SelectMultiple", { enumerable: true, get: function () { return select_multiple_1.SelectMultiple; } });
6
+ });
@@ -0,0 +1,30 @@
1
+ import { ArgsTable, Canvas, Meta, Story } from '@storybook/addon-docs';
2
+ import 'oj-c/select-single';
3
+
4
+ <Meta title="SelectSingle" component="oj-c-select-single" />
5
+
6
+ # Select Multiple
7
+
8
+ The `oj-c-select-single` component provides support for multi-select and search filtering.
9
+
10
+ ## Import
11
+
12
+ ```js
13
+ //To typecheck the element APIs, import as below.
14
+ import { CSelectSingleElement } from 'oj-c/select-single';
15
+
16
+ //For the transpiled javascript to load the element's module, import as below
17
+ import 'oj-c/select-single';
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ Here's how to implement a basic `oj-c-select-single`.
23
+
24
+ <Canvas>
25
+ <Story id="form-selectsingle--basic" name="Basic" height={350} />
26
+ </Canvas>
27
+
28
+ ## Props
29
+
30
+ <ArgsTable of="oj-c-select-single" />
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ exports.__esModule = true;
18
+ exports.SelectSingleWebElement = void 0;
19
+ var SelectSingleWebElementBase_1 = require("./SelectSingleWebElementBase");
20
+ /**
21
+ * The component WebElement for [oj-c-select-single](../../../oj-c/docs/oj.SelectSingle.html).
22
+ * Do not instantiate this class directly, instead, use
23
+ * [findSelectSingle](../modules.html#findSelectSingle).
24
+ */
25
+ var SelectSingleWebElement = /** @class */ (function (_super) {
26
+ __extends(SelectSingleWebElement, _super);
27
+ function SelectSingleWebElement() {
28
+ return _super !== null && _super.apply(this, arguments) || this;
29
+ }
30
+ return SelectSingleWebElement;
31
+ }(SelectSingleWebElementBase_1.SelectSingleWebElementBase));
32
+ exports.SelectSingleWebElement = SelectSingleWebElement;
@@ -0,0 +1,258 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ exports.__esModule = true;
18
+ exports.SelectSingleWebElementBase = void 0;
19
+ var elements_1 = require("@oracle/oraclejet-webdriver/elements");
20
+ /**
21
+ * This is the base class for oj-c-select-single WebElement, and is generated from the
22
+ * component's metadata. Do not modify these contents since they'll be replaced
23
+ * during the next generation.
24
+ * Put overrides into the WebElements's subclass, SelectSingleWebElement.ts.
25
+ */
26
+ var SelectSingleWebElementBase = /** @class */ (function (_super) {
27
+ __extends(SelectSingleWebElementBase, _super);
28
+ function SelectSingleWebElementBase() {
29
+ return _super !== null && _super.apply(this, arguments) || this;
30
+ }
31
+ /**
32
+ * Gets the value of <code>containerReadonly</code> property.
33
+ * Specifies whether an ancestor container, like oj-form-layout, is readonly.
34
+ * @return The value of <code>containerReadonly</code> property.
35
+ *
36
+ */
37
+ SelectSingleWebElementBase.prototype.getContainerReadonly = function () {
38
+ return this.getProperty('containerReadonly');
39
+ };
40
+ /**
41
+ * Gets the value of <code>data</code> property.
42
+ * Specifies whether the component is disabled.
43
+ * @return The value of <code>data</code> property.
44
+ *
45
+ */
46
+ SelectSingleWebElementBase.prototype.getData = function () {
47
+ return this.getProperty('data');
48
+ };
49
+ /**
50
+ * Gets the value of <code>disabled</code> property.
51
+ * Specifies whether the component is disabled.
52
+ * @return The value of <code>disabled</code> property.
53
+ *
54
+ */
55
+ SelectSingleWebElementBase.prototype.getDisabled = function () {
56
+ return this.getProperty('disabled');
57
+ };
58
+ /**
59
+ * Gets the value of <code>displayOptions</code> property.
60
+ * Display options for auxiliary content that determines whether or not it should be displayed.
61
+ * @return The value of <code>displayOptions</code> property.
62
+ *
63
+ */
64
+ SelectSingleWebElementBase.prototype.getDisplayOptions = function () {
65
+ return this.getProperty('displayOptions');
66
+ };
67
+ /**
68
+ * Gets the value of <code>help</code> property.
69
+ * Form component help information.
70
+ * @return The value of <code>help</code> property.
71
+ *
72
+ */
73
+ SelectSingleWebElementBase.prototype.getHelp = function () {
74
+ return this.getProperty('help');
75
+ };
76
+ /**
77
+ * Gets the value of <code>helpHints</code> property.
78
+ * The helpHints object contains a definition property and a source property.
79
+ * @return The value of <code>helpHints</code> property.
80
+ *
81
+ */
82
+ SelectSingleWebElementBase.prototype.getHelpHints = function () {
83
+ return this.getProperty('helpHints');
84
+ };
85
+ /**
86
+ * Gets the value of <code>itemText</code> property.
87
+ * Specifies how to get the text string to render for a data item.
88
+ * @return The value of <code>itemText</code> property.
89
+ *
90
+ */
91
+ SelectSingleWebElementBase.prototype.getItemText = function () {
92
+ return this.getProperty('itemText');
93
+ };
94
+ /**
95
+ * Gets the value of <code>labelEdge</code> property.
96
+ * Specifies how the label is positioned for the component
97
+ * @return The value of <code>labelEdge</code> property.
98
+ *
99
+ */
100
+ SelectSingleWebElementBase.prototype.getLabelEdge = function () {
101
+ return this.getProperty('labelEdge');
102
+ };
103
+ /**
104
+ * Gets the value of <code>labelHint</code> property.
105
+ * Represents a hint for rendering a label on the component.
106
+ * @return The value of <code>labelHint</code> property.
107
+ *
108
+ */
109
+ SelectSingleWebElementBase.prototype.getLabelHint = function () {
110
+ return this.getProperty('labelHint');
111
+ };
112
+ /**
113
+ * Gets the value of <code>labelStartWidth</code> property.
114
+ * The width of the label when labelEdge is 'start'
115
+ * @return The value of <code>labelStartWidth</code> property.
116
+ *
117
+ */
118
+ SelectSingleWebElementBase.prototype.getLabelStartWidth = function () {
119
+ return this.getProperty('labelStartWidth');
120
+ };
121
+ /**
122
+ * Gets the value of <code>labelWrapping</code> property.
123
+ * Should the labels wrap or truncate when there is not enough available space.
124
+ * @return The value of <code>labelWrapping</code> property.
125
+ *
126
+ */
127
+ SelectSingleWebElementBase.prototype.getLabelWrapping = function () {
128
+ return this.getProperty('labelWrapping');
129
+ };
130
+ /**
131
+ * Sets the value of <code>messagesCustom</code> property.
132
+ * List of custom component messages
133
+ * @param messagesCustom The value to set for <code>messagesCustom</code>
134
+ *
135
+ */
136
+ SelectSingleWebElementBase.prototype.changeMessagesCustom = function (messagesCustom) {
137
+ return this.setProperty('messagesCustom', messagesCustom);
138
+ };
139
+ /**
140
+ * Gets the value of <code>messagesCustom</code> property.
141
+ * List of custom component messages
142
+ * @return The value of <code>messagesCustom</code> property.
143
+ *
144
+ */
145
+ SelectSingleWebElementBase.prototype.getMessagesCustom = function () {
146
+ return this.getProperty('messagesCustom');
147
+ };
148
+ /**
149
+ * Gets the value of <code>placeholder</code> property.
150
+ * The placeholder text to set on the element.
151
+ * @return The value of <code>placeholder</code> property.
152
+ *
153
+ */
154
+ SelectSingleWebElementBase.prototype.getPlaceholder = function () {
155
+ return this.getProperty('placeholder');
156
+ };
157
+ /**
158
+ * Gets the value of <code>readonly</code> property.
159
+ * Whether the component is readonly
160
+ * @return The value of <code>readonly</code> property.
161
+ *
162
+ */
163
+ SelectSingleWebElementBase.prototype.getReadonly = function () {
164
+ return this.getProperty('readonly');
165
+ };
166
+ /**
167
+ * Gets the value of <code>required</code> property.
168
+ * Specifies whether or not the component is required.
169
+ * @return The value of <code>required</code> property.
170
+ *
171
+ */
172
+ SelectSingleWebElementBase.prototype.getRequired = function () {
173
+ return this.getProperty('required');
174
+ };
175
+ /**
176
+ * Gets the value of <code>requiredMessageDetail</code> property.
177
+ * Overrides the default Required error message.
178
+ * @return The value of <code>requiredMessageDetail</code> property.
179
+ *
180
+ */
181
+ SelectSingleWebElementBase.prototype.getRequiredMessageDetail = function () {
182
+ return this.getProperty('requiredMessageDetail');
183
+ };
184
+ /**
185
+ * Gets the value of <code>textAlign</code> property.
186
+ * Specifies how the text is aligned within the text field
187
+ * @return The value of <code>textAlign</code> property.
188
+ *
189
+ */
190
+ SelectSingleWebElementBase.prototype.getTextAlign = function () {
191
+ return this.getProperty('textAlign');
192
+ };
193
+ /**
194
+ * Gets the value of <code>userAssistanceDensity</code> property.
195
+ * Specifies the density of the form component's user assistance presentation.
196
+ * @return The value of <code>userAssistanceDensity</code> property.
197
+ *
198
+ */
199
+ SelectSingleWebElementBase.prototype.getUserAssistanceDensity = function () {
200
+ return this.getProperty('userAssistanceDensity');
201
+ };
202
+ /**
203
+ * Sets the value of <code>value</code> property.
204
+ * The value of the component.
205
+ * @param value The value to set for <code>value</code>
206
+ *
207
+ */
208
+ SelectSingleWebElementBase.prototype.changeValue = function (value) {
209
+ return this.setProperty('value', value);
210
+ };
211
+ /**
212
+ * Gets the value of <code>value</code> property.
213
+ * The value of the component.
214
+ * @return The value of <code>value</code> property.
215
+ *
216
+ */
217
+ SelectSingleWebElementBase.prototype.getValue = function () {
218
+ return this.getProperty('value');
219
+ };
220
+ /**
221
+ * Sets the value of <code>valueItem</code> property.
222
+ * The current value of the element and its associated data.
223
+ * @param valueItem The value to set for <code>valueItem</code>
224
+ *
225
+ */
226
+ SelectSingleWebElementBase.prototype.changeValueItem = function (valueItem) {
227
+ return this.setProperty('valueItem', valueItem);
228
+ };
229
+ /**
230
+ * Gets the value of <code>valueItem</code> property.
231
+ * The current value of the element and its associated data.
232
+ * @return The value of <code>valueItem</code> property.
233
+ *
234
+ */
235
+ SelectSingleWebElementBase.prototype.getValueItem = function () {
236
+ return this.getProperty('valueItem');
237
+ };
238
+ /**
239
+ * Gets the value of <code>virtualKeyboard</code> property.
240
+ * The type of virtual keyboard to display for entering a value on mobile browsers
241
+ * @return The value of <code>virtualKeyboard</code> property.
242
+ *
243
+ */
244
+ SelectSingleWebElementBase.prototype.getVirtualKeyboard = function () {
245
+ return this.getProperty('virtualKeyboard');
246
+ };
247
+ /**
248
+ * Gets the value of <code>valid</code> property.
249
+ * Specifies how the valid state of the component
250
+ * @return The value of <code>valid</code> property.
251
+ *
252
+ */
253
+ SelectSingleWebElementBase.prototype.getValid = function () {
254
+ return this.getProperty('valid');
255
+ };
256
+ return SelectSingleWebElementBase;
257
+ }(elements_1.OjWebElement));
258
+ exports.SelectSingleWebElementBase = SelectSingleWebElementBase;
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __generator = (this && this.__generator) || function (thisArg, body) {
12
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
+ function verb(n) { return function (v) { return step([n, v]); }; }
15
+ function step(op) {
16
+ if (f) throw new TypeError("Generator is already executing.");
17
+ while (_) try {
18
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
+ if (y = 0, t) op = [op[0] & 2, t.value];
20
+ switch (op[0]) {
21
+ case 0: case 1: t = op; break;
22
+ case 4: _.label++; return { value: op[1], done: false };
23
+ case 5: _.label++; y = op[1]; op = [0]; continue;
24
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
+ default:
26
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
+ if (t[2]) _.ops.pop();
31
+ _.trys.pop(); continue;
32
+ }
33
+ op = body.call(thisArg, _);
34
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
+ }
37
+ };
38
+ exports.__esModule = true;
39
+ exports.findSelectSingle = exports.SelectSingleWebElement = void 0;
40
+ var oraclejet_webdriver_1 = require("@oracle/oraclejet-webdriver");
41
+ var SelectSingleWebElement_1 = require("./SelectSingleWebElement");
42
+ exports.SelectSingleWebElement = SelectSingleWebElement_1.SelectSingleWebElement;
43
+ /**
44
+ * Retrieve an instance of [[SelectSingleWebElement]].
45
+ * @example
46
+ * ```javascript
47
+ * import { findSelectSingle } from '@oracle/oraclejet-core-pack/webdriver';
48
+ * const el = await findSelectSingle(driver, By.id('my-oj-c-select-single'));
49
+ * ```
50
+ * @param driver A WebDriver/WebElement instance from where the element will be
51
+ * searched. If WebDriver is passed, the element will be searched globally in the
52
+ * document. If WebElement is passed, the search will be relative to this element.
53
+ * @param by The locator with which to find the element
54
+ */
55
+ function findSelectSingle(driver, by) {
56
+ return __awaiter(this, void 0, void 0, function () {
57
+ var webEl, tagName;
58
+ return __generator(this, function (_a) {
59
+ switch (_a.label) {
60
+ case 0: return [4 /*yield*/, driver.findElement(by)];
61
+ case 1:
62
+ webEl = _a.sent();
63
+ if (!!(webEl instanceof SelectSingleWebElement_1.SelectSingleWebElement)) return [3 /*break*/, 3];
64
+ return [4 /*yield*/, webEl.getTagName()];
65
+ case 2:
66
+ tagName = _a.sent();
67
+ throw Error("findSelectSingle(".concat(by, ") created ").concat(webEl.constructor.name, " for <").concat(tagName, ">, but expected ").concat(SelectSingleWebElement_1.SelectSingleWebElement.name));
68
+ case 3: return [2 /*return*/, webEl];
69
+ }
70
+ });
71
+ });
72
+ }
73
+ exports.findSelectSingle = findSelectSingle;
74
+ (0, oraclejet_webdriver_1.register)('oj-c-select-single', SelectSingleWebElement_1.SelectSingleWebElement);