@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,1321 @@
1
+ [
2
+ {
3
+ "pack": "oj-c",
4
+ "id": "oj-c.InputNumber",
5
+ "name": "InputNumber",
6
+ "memberof": "oj-c",
7
+ "longname": "oj-c.InputNumber",
8
+ "kind": "class",
9
+ "classdesc": "<h3 id=\"inputNumberOverview-section\">\n JET InputNumber Component\n <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#inputNumberOverview-section\"></a>\n</h3>\n\n<p>Description: The JET Input Number component enhances a browser input element into one that\nholds numbers and it has a spinbox to quickly increment or decrement the number.\nThe value attribute must be a number and must be within the min and max range..</p>\n\n<pre class=\"prettyprint\"><code>&lt;oj-c-input-number value=\"20\" label-hint=\"Input Number\">&lt;/oj-c-input-number></code></pre>\n\n<h3 id=\"validation-section\">\n Validation and Messaging\n <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#validation-section\"></a>\n</h3>\n\n<p>\nAn editable component runs validation (normal or deferred) based on the action performed on it\n(either by end-user or page author), and the state it was in when the action occurred. Examples\nof actions are - creating a component, user changing the value of the component by interacting\nwith it, the app setting a value programmatically, the app calling the validate() method etc. At\nthe time the action occurs, the component could already be showing errors, or can have a deferred\nerror or have no errors.\n</p>\n<p>\nThese factors also determine whether validation errors/messages get shown to the user immediately\nor get deferred. The following sections highlight the kinds of validation that are run and how\nmessages get handled.\n</p>\n\n<h4 id=\"normal-validation-section\">\n Normal Validation\n <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#normal-validation-section\"></a>\n</h4>\nNormal validation is run in the following cases on the display value, using the converter and\nvalidators (this includes async-validators) set on the component,\nand validation errors are reported to user immediately.\n<ul>\n<li>When value changes as a result of user interaction all messages are cleared, including custom\nmessages added by the app, and full validation is run on the UI value. The steps performed are\noutlined below.\n<ol>\n<li>All messages are cleared and <code class=\"prettyprint\">messagesCustom</code> property is cleared</li>\n<li>If no converter is present then processing continues to next step. If a converter is\npresent, the UI value is first converted (i.e., parsed). If there is a parse error then\nthe messages are shown and processing returns.</li>\n<li>If there are no validators setup for the component then the value is set on the component.\nOtherwise all validators are run in sequence using the parsed value from the previous step. The\nimplicit required is run first if the component is marked required. When a validation error is\nencountered it is remembered and the next validator in the sequence is run.\n<ul><li>NOTE: The value is trimmed before required validation is run</li></ul>\n</li>\n<li>At the end of the validation run if there are errors, the messages are shown\nand processing returns. If there are async-validators, those errors are shown as soon as they\ncome in, and not until all validators, sync and async validators, are complete, does processing\nreturn, that is, value and valid are updated. If there are no errors, then the\n<code class=\"prettyprint\">value</code> property is updated and the formatted value displayed on the\nUI.</li>\n</ol>\n</li>\n<li>When the <code class=\"prettyprint\">validate</code> method is called by app, all messages are\ncleared and full validation run using the display value. See <code class=\"prettyprint\">validate</code>\nmethod on the sub-classes for details. Note: JET validation is designed to catch user input errors, and not invalid\ndata passed from the server; this should be caught on the server.</li>\n<li>When certain properties change through programmatic intervention by app, the component\ndetermines whether it needs to run normal validation based on the state the component is in.\nRefer to the <a href=\"#mixed-validation-section\">Mixed Validation</a> section below for details. </li>\n</ul>\n\n<h4 id=\"deferred-validation-section\">\n Deferred Validation\n <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#deferred-validation-section\"></a>\n</h4>\nDeferred validation is run in the following cases on the component value using the implicit\nrequired validator if required is true, and validation errors are deferred, i.e., not shown to user immediately.\nRefer to the <a href=\"#deferred-messages-section\">Showing Deferred Messages</a> section to\nunderstand how deferred messages can be shown.\n<ul>\n <li>When a component is created and it is required deferred validation is run and no messages are cleared\n prior to running validation.\n Refer to the <a href=\"#deferred-validators-section\">Validators\n Participating in Deferred Validation</a> section for details.</li>\n <li>When the <code class=\"prettyprint\">value</code> property changes due to programmatic\n intervention deferred validation is run, after all messages and messagesCustom property are cleared.</li>\n <li>When the <code class=\"prettyprint\">reset</code> method is called, deferred validation is run\n after all messages and messagesCustom property are cleared.</li>\n <li>When certain properties change through programmatic intervention by app, the component\n determines whether it needs to run deferred validation based on the state the component is in.\n Refer to the <a href=\"#mixed-validation-section\">Mixed Validation</a> section below for details.</li>\n</ul>\n\n<h4 id=\"mixed-validation-section\">\n Mixed Validation\n <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#mixed-validation-section\"></a>\n</h4>\nEither deferred or normal validation is run in the following cases based on the state the\ncomponent is in and any validation errors encountered are either hidden or shown to user.\n<ul>\n <li>when disabled property changes. See <a href=\"#disabled\">disabled</a> property for details.</li>\n <li>when converter property changes. See <a href=\"#converter\">converter</a> property for details.</li>\n <li>when required property changes. See <a href=\"#required\">required</a> property for details.</li>\n <li>when validators property changes. See <a href=\"#validators\">validators</a> property for details.</li>\n</ul>\n\n<h3 id=\"deferred-messages-section\">\n Showing Deferred Messages\n <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#deferred-messages-section\"></a>\n</h3>\nDeferred validation messages are displayed only when page author requests for it explicitly in\none of the following ways:\n<ul>\n<li>calls the <a href=\"#showMessages\"><code class=\"prettyprint\">showMessages</code></a> method on the component</li>\n</ul>\n\n<h3 id=\"deferred-validators-section\">\n Validators Participating in Deferred Validation\n <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#deferred-validators-section\"></a>\n</h3>\nThe required validator is the only validator type that participates in deferred validation.\nThe required property needs to be set to true for the required validator to run.\n\n<h3 id=\"user-assistance-text-section\">\n User Assistance Text\n <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#user-assistance-text-section\"></a>\n</h3>\n<p>\nUser assistive text provides guidance to help the user understand what data to enter or select.\n</p>\n<p>\nBy default all user assistance text shows inline.\nFor input components, it shows when the field takes focus. In other components\nit shows all the time. See the user-assistance-density property for other ways\nthe user assistance text can render, like in 'compact' mode, it will render as an icon on the label\nwhich when clicked will show the user assistance text in a notewindow.\n</p>\n<p>\nThe JET form component properties that are used for user assistance text are help.instruction,\nvalidator and converter hints, and help-hints.\nIn the Redwood theme for clarity only one user assistance text shows to the user.\nThe precedence rules are:\n<ul>\n<li>help.instruction shows;</li>\n<li>if no help.instruction, then validator hint shows;</li>\n<li>if no help.instruction or validator hint, then help-hints.definition shows;</li>\n<li>if no help.instruction, validator hint, or help-hints.definition, then converter hint shows.</li>\n<li>help-hints.source always shows along side the above.</li>\n</ul>\n</p>\n<p>Sometimes a validator or converter hint shows that you do not want to show. To not show it,\n set the display-options.validator-hint and/or display-options.converter-hint property to 'none'.\n</p>\n<p>required and placeholder properties also can be used to guide the user.\nIn Redwood, a required field shows the word Required under the field\nwhen the field is empty and does not have focus.\nPlaceholder is shown when the field is empty and has focus.\n</p>\n\n<h3 id=\"touch-section\">\n Touch End User Information\n <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#touch-section\"></a>\n</h3>\n\n<table class=\"keyboard-table\">\n <thead>\n <tr>\n <th>Target</th>\n <th>Gesture</th>\n <th>Action</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>Up Button</td>\n <td><kbd>Tap</kbd></td>\n <td>Increment the number.</td>\n </tr>\n <tr>\n <td>Down Button</td>\n <td><kbd>Tap</kbd></td>\n <td>Decrement the number.</td>\n </tr>\n <tr>\n <td>Input</td>\n <td><kbd>Tap</kbd></td>\n <td>Set focus to the input. Show user assistance text. This may be inline or in a notewindow\ndepending upon theme and property settings.</td>\n </tr>\n <tr>\n <td>Elsewhere on Page</td>\n <td><kbd>Touch</kbd></td>\n <td>Submit the value you typed in the input field.</td>\n </tr>\n </tbody>\n</table>\n\n<h3 id=\"keyboard-section\">\n Keyboard End User Information\n <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#keyboard-section\"></a>\n</h3>\n\n<table class=\"keyboard-table\">\n <thead>\n <tr>\n <th>Target</th>\n <th>Key</th>\n <th>Action</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td rowspan=\"4\">Input</td>\n <td><kbd>Enter</kbd> or <kbd>Tab</kbd></td>\n <td>Submit the value you typed in the input field.</td>\n </tr>\n <tr>\n <td><kbd>Tab In</kbd></td>\n <td>Set focus to input. Show user assistance text. This may be inline or in a notewindow\ndepending upon theme and property settings.</td>\n </tr>\n <tr>\n <td><kbd>UpArrow</kbd></td>\n <td>Increment the number.</td>\n </tr>\n <tr>\n <td><kbd>DownArrow</kbd></td>\n <td>Decrement the number.</td>\n </tr>\n </tbody>\n</table>\n\n<h3 id=\"a11y-section\">\n Accessibility\n <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#a11y-section\"></a>\n</h3>\n\n<p>\nFor accessibility, set the <a href=\"#labelHint\">label-hint</a> property.\nIf there is no visible label, then to make this accessible to screen reader users,\nset the <a href=\"#labelHint\">label-hint</a> and <a href=\"#labelEdge\">label-edge</a>='none'\nwhich renders an aria-label with the label-hint text.\n</p>\n\n<p>\nThe placeholder text is not read reliably by the screen reader. For accessibility reasons,\nyou need to associate the text to its JET form component using aria-describedby.\n</p>\n\n<p>\nDisabled content: JET supports an accessible luminosity contrast ratio,\nas specified in <a href=\"http://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast\">WCAG 2.0 - Section 1.4.3 \"Contrast\"</a>,\nin the themes that are accessible. (See the \"Theming\" chapter of the JET Developer Guide for more information on which\nthemes are accessible.) Note that Section 1.4.3 says that text or images of text that are part of an inactive user\ninterface component have no contrast requirement. Because disabled content may not meet the minimum contrast ratio\nrequired of enabled content, it cannot be used to convey meaningful information.\n</p>",
10
+ "scope": "static",
11
+ "tagWithoutBrackets": "oj-c-input-number",
12
+ "tagWithBrackets": "<oj-c-input-number>",
13
+ "domInterface": "CInputNumberElement",
14
+ "ojPageTitle": "&lt;oj-c-input-number>",
15
+ "ojcomponent": true,
16
+ "isvcomponent": true,
17
+ "camelCaseName": "InputNumber",
18
+ "ojPageTitlePrefix": "Element: ",
19
+ "ojtsvcomponent": true,
20
+ "tstype": {
21
+ "target": "Type",
22
+ "value": "interface CInputNumberElement extends JetElement<InputNumberElementSettableProperties>"
23
+ },
24
+ "ojsignature": [
25
+ {
26
+ "target": "Type",
27
+ "value": "interface CInputNumberElement extends JetElement<InputNumberElementSettableProperties>"
28
+ }
29
+ ],
30
+ "since": "14.0.0",
31
+ "meta": {
32
+ "filename": "input-number.tsx",
33
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
34
+ },
35
+ "ojmodule": "input-number"
36
+ },
37
+ {
38
+ "memberof": "oj-c.InputNumber",
39
+ "id": "oj-c.InputNumber#autocomplete",
40
+ "name": "autocomplete",
41
+ "kind": "member",
42
+ "longname": "oj-c.InputNumber#autocomplete",
43
+ "optional": true,
44
+ "scope": "instance",
45
+ "description": "Dictates component's autocomplete state. This attribute indicates whether the value of\nthe control can be automatically completed by the browser. The common values are 'on' and 'off'.\n\nSince this attribute passes through to the input element unchanged, you can look at the html specs for\ndetailed information for how browsers behave and what values besides 'on' and 'off' you can set.\nThe html spec says the default is 'on', so when autocomplete is not explicitly set, the browsers treat it as 'on'.",
46
+ "meta": {
47
+ "filename": "input-number.tsx",
48
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
49
+ },
50
+ "defaultvalue": "\"on\"",
51
+ "type": {
52
+ "names": [
53
+ "string"
54
+ ]
55
+ }
56
+ },
57
+ {
58
+ "memberof": "oj-c.InputNumber",
59
+ "id": "oj-c.InputNumber#containerReadonly",
60
+ "name": "containerReadonly",
61
+ "kind": "member",
62
+ "longname": "oj-c.InputNumber#containerReadonly",
63
+ "optional": true,
64
+ "scope": "instance",
65
+ "description": "Specifies whether an ancestor container, like oj-form-layout, is readonly.\nThis affects whether a readonly component renders in full or mixed readonly mode.",
66
+ "meta": {
67
+ "filename": "input-number.tsx",
68
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
69
+ },
70
+ "type": {
71
+ "names": [
72
+ "boolean"
73
+ ]
74
+ }
75
+ },
76
+ {
77
+ "memberof": "oj-c.InputNumber",
78
+ "id": "oj-c.InputNumber#converter",
79
+ "name": "converter",
80
+ "kind": "member",
81
+ "longname": "oj-c.InputNumber#converter",
82
+ "optional": true,
83
+ "scope": "instance",
84
+ "description": "A converter instance or one that duck types oj.Converter.\n<p>\nWhen no converter is specified, an instance of NumberConverter with no options will be used.\n</p>\n<p>\nWhen <code class=\"prettyprint\">converter</code> property changes due to programmatic\nintervention, the element performs various tasks based on the current state it is in. </br>\n\n<h4>Steps Performed Always</h4>\n<ul>\n<li>Any cached converter instance is cleared and new converter created. The converter hint is\npushed to messaging. E.g., notewindow displays the new hint(s).\n</li>\n</ul>\n\n<h4>Running Validation</h4>\n<ul>\n<li>if element is valid when <code class=\"prettyprint\">converter</code> property changes, the\n display value is refreshed.</li>\n<li>if element is invalid and is showing messages when\n<code class=\"prettyprint\">converter</code> property changes then all element messages are\ncleared and full validation run using the current display value on the element.\n<ul>\n <li>if there are validation errors, then <code class=\"prettyprint\">value</code>\n property is not updated, and the error is shown.\n The display value is not refreshed in this case. </li>\n <li>if no errors result from the validation, the <code class=\"prettyprint\">value</code>\n property is updated; page author can listen to the <code class=\"prettyprint\">valueChanged</code>\n event to clear custom errors. The\n display value is refreshed with the formatted value provided by converter.</li>\n</ul>\n</li>\n<li>if element is invalid and has deferred messages when converter property changes, the\n display value is again refreshed with the formatted value provided by converter.</li>\n</ul>\n\n<h4>Clearing Messages</h4>\n<ul>\n<li>Only messages created by the element are cleared.</li>\n<li><code class=\"prettyprint\">messagesCustom</code> property is not cleared.\nPage authors can\nchoose to clear it explicitly when setting the converter option.</li>\n</ul>\n</p>\n<p>\n During validation, the converter takes the input value which is a string\n and parses it into the type of the component's value property\n (e.g. a number)\n before it passes it to the validator. It then takes the validated value property\n and formats it into a string to be displayed and puts it into the input.\n If the converter's format or parse functions\n throw an error, it will be displayed to the user inline on the field.\n</p>\n<p>\nThe hint exposed by the converter is shown inline by default in the Redwood theme when\nthe field has focus.\nYou can turn off showing converter hints by using the\n'converterHint' property set to 'none' on the <code class=\"prettyprint\">display-options</code>\nattribute.\n</p>\n<p>\nIn the Redwood theme, only one hint shows at a time, so the precedence rules are:\nhelp.instruction shows; if no help.instruction then validator hints show;\nif none, then help-hints.definition shows; if none, then converter hint shows.\nhelp-hints.source always shows along with the other help or hint.\n</p>",
85
+ "meta": {
86
+ "filename": "input-number.tsx",
87
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
88
+ },
89
+ "defaultvalue": null,
90
+ "type": {
91
+ "names": [
92
+ "object|null"
93
+ ]
94
+ },
95
+ "tstype": [
96
+ {
97
+ "target": "Type",
98
+ "value": "Converter<number>|null",
99
+ "jsdocOverride": true
100
+ }
101
+ ]
102
+ },
103
+ {
104
+ "memberof": "oj-c.InputNumber",
105
+ "id": "oj-c.InputNumber#disabled",
106
+ "name": "disabled",
107
+ "kind": "member",
108
+ "longname": "oj-c.InputNumber#disabled",
109
+ "optional": true,
110
+ "scope": "instance",
111
+ "description": "Whether the component is disabled. The default is false.\n\n<p>\nWhen the <code class=\"prettyprint\">disabled</code> property changes due to programmatic\nintervention, the component may clear messages and run validation in some cases. </br>\n<ul>\n<li>when a required component is initialized as disabled\n<code class=\"prettyprint\">value=\"{{currentValue}}\" required disabled</code>,\ndeferred validation is skipped.</li>\n<li>when a disabled component is enabled,\n <ul>\n <li>if component is invalid and showing messages then all component messages are cleared,\n and full validation run using the display value.\n <ul>\n <li>if there are validation errors, they are shown.</li>\n <li>if no errors result from the validation, the <code class=\"prettyprint\">value</code>\n property is updated. Page authors can listen to the <code class=\"prettyprint\">valueChanged</code>\n event to clear custom errors.</li>\n </ul>\n </li>\n\n <li>if component is valid and has no errors then deferred validation is run.\n <ul>\n <li>if there is a deferred validation error, then the valid property is updated. </li>\n </ul>\n </li>\n <li>if component is invalid and deferred errors then component messages are cleared and\n deferred validation re-run.\n <ul>\n <li>if there is a deferred validation error, then the valid property is updated.</li>\n </ul>\n </li>\n </ul>\n</li>\n<li>when enabled component is disabled then no validation is run and the component appears\ndisabled.</li>\n</ul>\n</p>",
112
+ "meta": {
113
+ "filename": "input-number.tsx",
114
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
115
+ },
116
+ "defaultvalue": false,
117
+ "type": {
118
+ "names": [
119
+ "boolean"
120
+ ]
121
+ }
122
+ },
123
+ {
124
+ "memberof": "oj-c.InputNumber",
125
+ "id": "oj-c.InputNumber#displayOptions",
126
+ "name": "displayOptions",
127
+ "kind": "member",
128
+ "longname": "oj-c.InputNumber#displayOptions",
129
+ "optional": true,
130
+ "scope": "instance",
131
+ "description": "Display options for auxiliary content that determines whether or not it should be displayed.",
132
+ "meta": {
133
+ "filename": "input-number.tsx",
134
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
135
+ },
136
+ "type": {
137
+ "names": [
138
+ "Object"
139
+ ]
140
+ }
141
+ },
142
+ {
143
+ "memberof": "oj-c.InputNumber",
144
+ "id": "oj-c.InputNumber#displayOptions.converterHint",
145
+ "name": "displayOptions.converterHint",
146
+ "kind": "member",
147
+ "longname": "oj-c.InputNumber#displayOptions.converterHint",
148
+ "optional": true,
149
+ "scope": "instance",
150
+ "description": "Display options for auxiliary converter hint text.",
151
+ "meta": {
152
+ "filename": "input-number.tsx",
153
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
154
+ },
155
+ "defaultvalue": "\"display\"",
156
+ "type": {
157
+ "names": [
158
+ "\"display\"",
159
+ "\"none\""
160
+ ]
161
+ }
162
+ },
163
+ {
164
+ "memberof": "oj-c.InputNumber",
165
+ "id": "oj-c.InputNumber#displayOptions.messages",
166
+ "name": "displayOptions.messages",
167
+ "kind": "member",
168
+ "longname": "oj-c.InputNumber#displayOptions.messages",
169
+ "optional": true,
170
+ "scope": "instance",
171
+ "description": "Display options for auxiliary message text.",
172
+ "meta": {
173
+ "filename": "input-number.tsx",
174
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
175
+ },
176
+ "defaultvalue": "\"display\"",
177
+ "type": {
178
+ "names": [
179
+ "\"display\"",
180
+ "\"none\""
181
+ ]
182
+ }
183
+ },
184
+ {
185
+ "memberof": "oj-c.InputNumber",
186
+ "id": "oj-c.InputNumber#displayOptions.validatorHint",
187
+ "name": "displayOptions.validatorHint",
188
+ "kind": "member",
189
+ "longname": "oj-c.InputNumber#displayOptions.validatorHint",
190
+ "optional": true,
191
+ "scope": "instance",
192
+ "description": "Display options for auxiliary validator hint text.",
193
+ "meta": {
194
+ "filename": "input-number.tsx",
195
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
196
+ },
197
+ "defaultvalue": "\"display\"",
198
+ "type": {
199
+ "names": [
200
+ "\"display\"",
201
+ "\"none\""
202
+ ]
203
+ }
204
+ },
205
+ {
206
+ "memberof": "oj-c.InputNumber",
207
+ "id": "oj-c.InputNumber#help",
208
+ "name": "help",
209
+ "kind": "member",
210
+ "longname": "oj-c.InputNumber#help",
211
+ "optional": true,
212
+ "scope": "instance",
213
+ "description": "Form component help information.",
214
+ "meta": {
215
+ "filename": "input-number.tsx",
216
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
217
+ },
218
+ "type": {
219
+ "names": [
220
+ "Object"
221
+ ]
222
+ }
223
+ },
224
+ {
225
+ "memberof": "oj-c.InputNumber",
226
+ "id": "oj-c.InputNumber#help.instruction",
227
+ "name": "help.instruction",
228
+ "kind": "member",
229
+ "longname": "oj-c.InputNumber#help.instruction",
230
+ "optional": true,
231
+ "scope": "instance",
232
+ "description": "A type of user assistance text. User assistance text is used to provide guidance to\nhelp the user understand what data to enter or select.",
233
+ "meta": {
234
+ "filename": "input-number.tsx",
235
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
236
+ },
237
+ "defaultvalue": "\"\"",
238
+ "type": {
239
+ "names": [
240
+ "string"
241
+ ]
242
+ }
243
+ },
244
+ {
245
+ "memberof": "oj-c.InputNumber",
246
+ "id": "oj-c.InputNumber#helpHints",
247
+ "name": "helpHints",
248
+ "kind": "member",
249
+ "longname": "oj-c.InputNumber#helpHints",
250
+ "optional": true,
251
+ "scope": "instance",
252
+ "description": "The helpHints object contains a definition property and a source property.",
253
+ "meta": {
254
+ "filename": "input-number.tsx",
255
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
256
+ },
257
+ "type": {
258
+ "names": [
259
+ "Object"
260
+ ]
261
+ }
262
+ },
263
+ {
264
+ "memberof": "oj-c.InputNumber",
265
+ "id": "oj-c.InputNumber#helpHints.definition",
266
+ "name": "helpHints.definition",
267
+ "kind": "member",
268
+ "longname": "oj-c.InputNumber#helpHints.definition",
269
+ "optional": true,
270
+ "scope": "instance",
271
+ "description": "A type of user assistance text. User assistance text is used to provide guidance to help\nthe user understand what data to enter or select. help-hints could come from a help system.",
272
+ "meta": {
273
+ "filename": "input-number.tsx",
274
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
275
+ },
276
+ "defaultvalue": "\"\"",
277
+ "type": {
278
+ "names": [
279
+ "string"
280
+ ]
281
+ }
282
+ },
283
+ {
284
+ "memberof": "oj-c.InputNumber",
285
+ "id": "oj-c.InputNumber#helpHints.source",
286
+ "name": "helpHints.source",
287
+ "kind": "member",
288
+ "longname": "oj-c.InputNumber#helpHints.source",
289
+ "optional": true,
290
+ "scope": "instance",
291
+ "description": "Help source URL associated with the component.",
292
+ "meta": {
293
+ "filename": "input-number.tsx",
294
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
295
+ },
296
+ "defaultvalue": "\"\"",
297
+ "type": {
298
+ "names": [
299
+ "string"
300
+ ]
301
+ }
302
+ },
303
+ {
304
+ "memberof": "oj-c.InputNumber",
305
+ "id": "oj-c.InputNumber#helpHints.sourceText",
306
+ "name": "helpHints.sourceText",
307
+ "kind": "member",
308
+ "longname": "oj-c.InputNumber#helpHints.sourceText",
309
+ "optional": true,
310
+ "scope": "instance",
311
+ "description": "Custom text to be used for the source link.",
312
+ "meta": {
313
+ "filename": "input-number.tsx",
314
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
315
+ },
316
+ "type": {
317
+ "names": [
318
+ "string"
319
+ ]
320
+ }
321
+ },
322
+ {
323
+ "memberof": "oj-c.InputNumber",
324
+ "id": "oj-c.InputNumber#inputPrefix",
325
+ "name": "inputPrefix",
326
+ "kind": "member",
327
+ "longname": "oj-c.InputNumber#inputPrefix",
328
+ "optional": true,
329
+ "scope": "instance",
330
+ "description": "The inputPrefix displays as regular text before the input text.\nThe inputPrefix is not editable or focusable.",
331
+ "meta": {
332
+ "filename": "input-number.tsx",
333
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
334
+ },
335
+ "type": {
336
+ "names": [
337
+ "string"
338
+ ]
339
+ }
340
+ },
341
+ {
342
+ "memberof": "oj-c.InputNumber",
343
+ "id": "oj-c.InputNumber#inputSuffix",
344
+ "name": "inputSuffix",
345
+ "kind": "member",
346
+ "longname": "oj-c.InputNumber#inputSuffix",
347
+ "optional": true,
348
+ "scope": "instance",
349
+ "description": "The inputSuffix displays as regular text after the input text.\nThe inputSuffix is not editable or focusable.",
350
+ "meta": {
351
+ "filename": "input-number.tsx",
352
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
353
+ },
354
+ "type": {
355
+ "names": [
356
+ "string"
357
+ ]
358
+ }
359
+ },
360
+ {
361
+ "memberof": "oj-c.InputNumber",
362
+ "id": "oj-c.InputNumber#labelEdge",
363
+ "name": "labelEdge",
364
+ "kind": "member",
365
+ "longname": "oj-c.InputNumber#labelEdge",
366
+ "optional": true,
367
+ "scope": "instance",
368
+ "description": "Specifies how the label of the component is positioned when the label-hint\nattribute is set on the component.",
369
+ "meta": {
370
+ "filename": "input-number.tsx",
371
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
372
+ },
373
+ "ojvalues": [
374
+ {
375
+ "name": "inside",
376
+ "description": "The label floats over the input element, but moves up on focus or when the component has a value (default, if unspecified).",
377
+ "displayName": "Inside",
378
+ "type": {
379
+ "names": [
380
+ "string"
381
+ ]
382
+ }
383
+ },
384
+ {
385
+ "name": "none",
386
+ "description": "The component will not create a label, but instead set the aria-label property on the input element.",
387
+ "displayName": "None",
388
+ "type": {
389
+ "names": [
390
+ "string"
391
+ ]
392
+ }
393
+ },
394
+ {
395
+ "name": "start",
396
+ "description": "The label will be placed before the start of the component.",
397
+ "displayName": "Start",
398
+ "type": {
399
+ "names": [
400
+ "string"
401
+ ]
402
+ }
403
+ },
404
+ {
405
+ "name": "top",
406
+ "description": "The label will be placed on top of the component.",
407
+ "displayName": "Top",
408
+ "type": {
409
+ "names": [
410
+ "string"
411
+ ]
412
+ }
413
+ }
414
+ ],
415
+ "type": {
416
+ "names": [
417
+ "\"start\"",
418
+ "\"none\"",
419
+ "\"top\"",
420
+ "\"inside\""
421
+ ]
422
+ }
423
+ },
424
+ {
425
+ "memberof": "oj-c.InputNumber",
426
+ "id": "oj-c.InputNumber#labelHint",
427
+ "name": "labelHint",
428
+ "kind": "member",
429
+ "longname": "oj-c.InputNumber#labelHint",
430
+ "optional": false,
431
+ "scope": "instance",
432
+ "description": "Represents a hint for rendering a label on the component.\nThis is used in combination with the label-edge attribute to control how the label should be rendered.",
433
+ "meta": {
434
+ "filename": "input-number.tsx",
435
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
436
+ },
437
+ "type": {
438
+ "names": [
439
+ "string"
440
+ ]
441
+ }
442
+ },
443
+ {
444
+ "memberof": "oj-c.InputNumber",
445
+ "id": "oj-c.InputNumber#labelStartWidth",
446
+ "name": "labelStartWidth",
447
+ "kind": "member",
448
+ "longname": "oj-c.InputNumber#labelStartWidth",
449
+ "optional": true,
450
+ "scope": "instance",
451
+ "description": "The width of the label when labelEdge is 'start'.",
452
+ "meta": {
453
+ "filename": "input-number.tsx",
454
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
455
+ },
456
+ "type": {
457
+ "names": [
458
+ "string"
459
+ ]
460
+ }
461
+ },
462
+ {
463
+ "memberof": "oj-c.InputNumber",
464
+ "id": "oj-c.InputNumber#labelWrapping",
465
+ "name": "labelWrapping",
466
+ "kind": "member",
467
+ "longname": "oj-c.InputNumber#labelWrapping",
468
+ "optional": true,
469
+ "scope": "instance",
470
+ "description": "Should the labels wrap or truncate when there is not enough available space.",
471
+ "meta": {
472
+ "filename": "input-number.tsx",
473
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
474
+ },
475
+ "ojvalues": [
476
+ {
477
+ "name": "truncate",
478
+ "description": "Label will truncate if needed.",
479
+ "displayName": "Truncate",
480
+ "type": {
481
+ "names": [
482
+ "string"
483
+ ]
484
+ }
485
+ },
486
+ {
487
+ "name": "wrap",
488
+ "description": "Label will wrap if needed.",
489
+ "displayName": "Wrap",
490
+ "type": {
491
+ "names": [
492
+ "string"
493
+ ]
494
+ }
495
+ }
496
+ ],
497
+ "type": {
498
+ "names": [
499
+ "\"wrap\"",
500
+ "\"truncate\""
501
+ ]
502
+ }
503
+ },
504
+ {
505
+ "memberof": "oj-c.InputNumber",
506
+ "id": "oj-c.InputNumber#max",
507
+ "name": "max",
508
+ "kind": "member",
509
+ "longname": "oj-c.InputNumber#max",
510
+ "optional": true,
511
+ "scope": "instance",
512
+ "description": "The maximum allowed value. This number is used in the range validator; if the\n<code class=\"prettyprint\">value</code> is greater than the <code class=\"prettyprint\">max</code>,\nthen the range validator flags an error to the user. The up arrow\n is disabled when the maximum value is reached.\n<p>\nThe <code class=\"prettyprint\">max</code> must not be less than the\n<code class=\"prettyprint\">min</code>, else an Error is thrown during initialization.\n</p>",
513
+ "meta": {
514
+ "filename": "input-number.tsx",
515
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
516
+ },
517
+ "type": {
518
+ "names": [
519
+ "number|null"
520
+ ]
521
+ }
522
+ },
523
+ {
524
+ "memberof": "oj-c.InputNumber",
525
+ "id": "oj-c.InputNumber#min",
526
+ "name": "min",
527
+ "kind": "member",
528
+ "longname": "oj-c.InputNumber#min",
529
+ "optional": true,
530
+ "scope": "instance",
531
+ "description": "The minimum allowed value. This number is used in the range validator; if the\n<code class=\"prettyprint\">value</code> is less than the <code class=\"prettyprint\">min</code>,\nthen the range validator flags an error to the user. The down arrow\n is disabled when the minimum value is reached.\nThe <code class=\"prettyprint\">min</code> must not be greater than the\n<code class=\"prettyprint\">max</code>, else an Error is thrown during initialization.",
532
+ "meta": {
533
+ "filename": "input-number.tsx",
534
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
535
+ },
536
+ "type": {
537
+ "names": [
538
+ "number|null"
539
+ ]
540
+ }
541
+ },
542
+ {
543
+ "memberof": "oj-c.InputNumber",
544
+ "id": "oj-c.InputNumber#messagesCustom",
545
+ "name": "messagesCustom",
546
+ "kind": "member",
547
+ "longname": "oj-c.InputNumber#messagesCustom",
548
+ "optional": true,
549
+ "scope": "instance",
550
+ "ojwriteback": true,
551
+ "description": "List of messages an app would add to the component when it has business/custom validation\nerrors that it wants the component to show. This allows the app to perform further validation\nbefore sending data to the server. When this option is set the message shows to the\nuser right away. To clear the custom message, set <code class=\"prettyprint\">messagesCustom</code>\nback to an empty array.<br/>\n<p>\nSee the <a href=\"#validation-section\">Validation and Messages</a> section\nfor details on when the component clears <code class=\"prettyprint\">messagesCustom</code>;\nfor example, when full validation is run.\n</p>",
552
+ "meta": {
553
+ "filename": "input-number.tsx",
554
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
555
+ },
556
+ "defaultvalue": "[]",
557
+ "type": {
558
+ "names": [
559
+ "Array<object>"
560
+ ]
561
+ },
562
+ "tstype": [
563
+ {
564
+ "target": "Type",
565
+ "value": "Array<ComponentMessageItem>",
566
+ "jsdocOverride": true
567
+ }
568
+ ]
569
+ },
570
+ {
571
+ "memberof": "oj-c.InputNumber",
572
+ "id": "oj-c.InputNumber#messagesCustom[].summary",
573
+ "name": "messagesCustom[].summary",
574
+ "kind": "member",
575
+ "longname": "oj-c.InputNumber#messagesCustom[].summary",
576
+ "optional": true,
577
+ "scope": "instance",
578
+ "description": "",
579
+ "meta": {
580
+ "filename": "input-number.tsx",
581
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
582
+ },
583
+ "type": {
584
+ "names": [
585
+ "string"
586
+ ]
587
+ }
588
+ },
589
+ {
590
+ "memberof": "oj-c.InputNumber",
591
+ "id": "oj-c.InputNumber#messagesCustom[].detail",
592
+ "name": "messagesCustom[].detail",
593
+ "kind": "member",
594
+ "longname": "oj-c.InputNumber#messagesCustom[].detail",
595
+ "optional": true,
596
+ "scope": "instance",
597
+ "description": "",
598
+ "meta": {
599
+ "filename": "input-number.tsx",
600
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
601
+ },
602
+ "type": {
603
+ "names": [
604
+ "string"
605
+ ]
606
+ }
607
+ },
608
+ {
609
+ "memberof": "oj-c.InputNumber",
610
+ "id": "oj-c.InputNumber#messagesCustom[].severity",
611
+ "name": "messagesCustom[].severity",
612
+ "kind": "member",
613
+ "longname": "oj-c.InputNumber#messagesCustom[].severity",
614
+ "optional": true,
615
+ "scope": "instance",
616
+ "description": "",
617
+ "meta": {
618
+ "filename": "input-number.tsx",
619
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
620
+ },
621
+ "type": {
622
+ "names": [
623
+ "\"error\"",
624
+ "\"confirmation\"",
625
+ "\"info\"",
626
+ "\"warning\""
627
+ ]
628
+ }
629
+ },
630
+ {
631
+ "memberof": "oj-c.InputNumber",
632
+ "id": "oj-c.InputNumber#numberRangeExactMessageDetail",
633
+ "name": "numberRangeExactMessageDetail",
634
+ "kind": "member",
635
+ "longname": "oj-c.InputNumber#numberRangeExactMessageDetail",
636
+ "optional": true,
637
+ "scope": "instance",
638
+ "description": "<p>\nThe component-specific message detail when the number range validation fails when the input value is not between min and max\nwhen min and max are equal.\nIf the component needs a number range validation error message for an exact number that is different from the default,\nset this property. It should be a translated string.\n</p>\nTokens:<br/>\n{num} - the allowed value<p>\nUsage: <br/>\nThe number must be {num}.",
639
+ "meta": {
640
+ "filename": "input-number.tsx",
641
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
642
+ },
643
+ "type": {
644
+ "names": [
645
+ "string"
646
+ ]
647
+ }
648
+ },
649
+ {
650
+ "memberof": "oj-c.InputNumber",
651
+ "id": "oj-c.InputNumber#numberRangeOverflowMessageDetail",
652
+ "name": "numberRangeOverflowMessageDetail",
653
+ "kind": "member",
654
+ "longname": "oj-c.InputNumber#numberRangeOverflowMessageDetail",
655
+ "optional": true,
656
+ "scope": "instance",
657
+ "description": "<p>\nThe component-specific message detail when the number range validation fails when the input value is greater than the max.\nIf the component needs a number range validation error message for overflow that is different from the default,\nset this property. It should be a translated string.\n</p>\nTokens:<br/>\n{value} - value entered by the user<br/>\n{max} - the maximum allowed value<p>\nUsage: <br/>\nThe number must be less than or equal to {max}.",
658
+ "meta": {
659
+ "filename": "input-number.tsx",
660
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
661
+ },
662
+ "type": {
663
+ "names": [
664
+ "string"
665
+ ]
666
+ }
667
+ },
668
+ {
669
+ "memberof": "oj-c.InputNumber",
670
+ "id": "oj-c.InputNumber#numberRangeUnderflowMessageDetail",
671
+ "name": "numberRangeUnderflowMessageDetail",
672
+ "kind": "member",
673
+ "longname": "oj-c.InputNumber#numberRangeUnderflowMessageDetail",
674
+ "optional": true,
675
+ "scope": "instance",
676
+ "description": "<p>\nThe component-specific message detail when the number range validation fails when the input value is less than the min.\nIf the component needs a number range validation error message for underflow that is different from the default,\nset this property. It should be a translated string.\n</p>\nTokens:<br/>\n{value} - value entered by the user<br/>\n{min} - the minimum allowed value<p>\nUsage: <br/>\nThe number must be greater than or equal to {min}.",
677
+ "meta": {
678
+ "filename": "input-number.tsx",
679
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
680
+ },
681
+ "type": {
682
+ "names": [
683
+ "string"
684
+ ]
685
+ }
686
+ },
687
+ {
688
+ "memberof": "oj-c.InputNumber",
689
+ "id": "oj-c.InputNumber#placeholder",
690
+ "name": "placeholder",
691
+ "kind": "member",
692
+ "longname": "oj-c.InputNumber#placeholder",
693
+ "optional": true,
694
+ "scope": "instance",
695
+ "description": "The placeholder text to set on the element.",
696
+ "meta": {
697
+ "filename": "input-number.tsx",
698
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
699
+ },
700
+ "type": {
701
+ "names": [
702
+ "string"
703
+ ]
704
+ }
705
+ },
706
+ {
707
+ "memberof": "oj-c.InputNumber",
708
+ "id": "oj-c.InputNumber#readonly",
709
+ "name": "readonly",
710
+ "kind": "member",
711
+ "longname": "oj-c.InputNumber#readonly",
712
+ "optional": true,
713
+ "scope": "instance",
714
+ "description": "Whether the component is readonly. The readonly property sets or returns whether an element\nis readonly, or not. A readonly element cannot be modified. However, a user can tab to it,\nhighlight it, focus on it, and copy the text from it. If you want to prevent the user from\ninteracting with the element, use the disabled property instead.",
715
+ "meta": {
716
+ "filename": "input-number.tsx",
717
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
718
+ },
719
+ "defaultvalue": false,
720
+ "type": {
721
+ "names": [
722
+ "boolean"
723
+ ]
724
+ }
725
+ },
726
+ {
727
+ "memberof": "oj-c.InputNumber",
728
+ "id": "oj-c.InputNumber#required",
729
+ "name": "required",
730
+ "kind": "member",
731
+ "longname": "oj-c.InputNumber#required",
732
+ "optional": true,
733
+ "scope": "instance",
734
+ "description": "<p>\nThis property set to <code class=\"prettyprint\">false</code> implies that a value is not required to be provided by the user.\nThis is the default.\nThis property set to <code class=\"prettyprint\">true</code> implies that a value is required to be provided by the user.\n</p>\n<p>\nIn the Redwood theme, by default, a Required text is rendered inline when the field is empty.\nIf user-assistance-density is 'compact', it will show on the label as an icon.\n</p>\n<p>The Required error text is based on Redwood UX designs, and it is not recommended that\nit be changed.\nTo override the required error message,\nuse the <code class=\"prettyprint\">required-message-detail</code> attribute.\nThe component's label text is passed in as a token {label} and can be used in the message detail.\n</p>\n<p>When required is set to true, an implicit\nrequired validator is created, i.e.,\n<code class=\"prettyprint\">new RequiredValidator()</code>. The required validator is the only\nvalidator to run during initial render, and its error is not shown to the user at this time;\nthis is called deferred validation. The required validator also runs during normal validation;\nthis is when the errors are shown to the user.\nSee the <a href=\"#validation-section\">Validation and Messaging</a> section for details.\n</p>\n<p>\nWhen the <code class=\"prettyprint\">required</code> property changes due to programmatic intervention,\nthe component may clear component messages and run validation, based on the current state it's in. </br>\n\n<h4>Running Validation when required property changes</h4>\n<ul>\n<li>if component is valid when required is set to true, then it runs deferred validation on\nthe value property. If the field is empty, the valid state is invalidHidden. No errors are\nshown to the user.\n</li>\n<li>if component is invalid and has deferred messages when required is set to false, then\ncomponent messages are cleared (messages-custom messages are not cleared)\nbut no deferred validation is run because required is false.\n</li>\n<li>if component is invalid and currently showing invalid messages when required is set, then\ncomponent messages are cleared and normal validation is run using the current display value.\n<ul>\n <li>if there are validation errors, then <code class=\"prettyprint\">value</code>\n property is not updated and the error is shown.\n </li>\n <li>if no errors result from the validation, the <code class=\"prettyprint\">value</code>\n property is updated; page author can listen to the <code class=\"prettyprint\">valueChanged</code>\n event on the component to clear custom errors.</li>\n</ul>\n</li>\n</ul>\n\n<h4>Clearing Messages when required property changes</h4>\n<ul>\n<li>Only messages created by the component, like validation messages, are cleared when the required property changes.</li>\n<li><code class=\"prettyprint\">messagesCustom</code> property is not cleared.</li>\n</ul>\n\n</p>",
735
+ "meta": {
736
+ "filename": "input-number.tsx",
737
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
738
+ },
739
+ "defaultvalue": false,
740
+ "type": {
741
+ "names": [
742
+ "boolean"
743
+ ]
744
+ }
745
+ },
746
+ {
747
+ "memberof": "oj-c.InputNumber",
748
+ "id": "oj-c.InputNumber#requiredMessageDetail",
749
+ "name": "requiredMessageDetail",
750
+ "kind": "member",
751
+ "longname": "oj-c.InputNumber#requiredMessageDetail",
752
+ "optional": true,
753
+ "scope": "instance",
754
+ "description": "<p>\nThe component-specific message detail when the required validation fails.\nIf the component needs a required validation error message that is different from the default,\nset this property. It should be a translated string.\n</p>",
755
+ "meta": {
756
+ "filename": "input-number.tsx",
757
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
758
+ },
759
+ "type": {
760
+ "names": [
761
+ "string"
762
+ ]
763
+ }
764
+ },
765
+ {
766
+ "memberof": "oj-c.InputNumber",
767
+ "id": "oj-c.InputNumber#step",
768
+ "name": "step",
769
+ "kind": "member",
770
+ "longname": "oj-c.InputNumber#step",
771
+ "optional": true,
772
+ "scope": "instance",
773
+ "description": "The size of the step to take when spinning via buttons or via the up/down arrows.\nIf step is 0, inputNumber will not have buttons or up/down spin functionality.\nIf step is less than 0, an exception is thrown.\n<p><code class=\"prettyprint\">step</code> defaults to <code class=\"prettyprint\">0</code>.\n</p>\n<p>\n<p>\nThe <code class=\"prettyprint\">step</code> attribute can be used together\nwith the <code class=\"prettyprint\">min</code> and\n<code class=\"prettyprint\">max</code> attributes\nto create a range of values the up/down arrows will step through. For example,\nif min is 0 and step is 3, the range of values is 0, 3, 6, etc.\n</p>\n<p>\nThe up/down arrows will spin the value and adjust it to keep it a\n'step match' value.\nA 'step match' value is when the value is a multiple\nof <code class=\"prettyprint\">step</code>,\nstarting at the <code class=\"prettyprint\">min</code>, and if\n<code class=\"prettyprint\">min</code> is not set,\nthen starting at the initial <code class=\"prettyprint\">value</code>,\nand if neither <code class=\"prettyprint\">min</code> and initial\n<code class=\"prettyprint\">value</code> are set,\nthen starting at 0.\n</p>\n<p>When using step > 1 with min and/or max,\nmake sure the initial value and max are both a 'step match' value,\notherwise the first step will adjust the value in a way\nthat could confuse the user.</p>\n</p>\n<p>\nA value can be a step mismatch; if the <code class=\"prettyprint\">value</code> is set\nto be a step mismatch, it will not be flagged as a validation error.\n</p>",
774
+ "meta": {
775
+ "filename": "input-number.tsx",
776
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
777
+ },
778
+ "type": {
779
+ "names": [
780
+ "number"
781
+ ]
782
+ }
783
+ },
784
+ {
785
+ "memberof": "oj-c.InputNumber",
786
+ "id": "oj-c.InputNumber#textAlign",
787
+ "name": "textAlign",
788
+ "kind": "member",
789
+ "longname": "oj-c.InputNumber#textAlign",
790
+ "optional": true,
791
+ "scope": "instance",
792
+ "description": "Specifies how the text is aligned within the text field",
793
+ "meta": {
794
+ "filename": "input-number.tsx",
795
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
796
+ },
797
+ "ojvalues": [
798
+ {
799
+ "name": "start",
800
+ "description": "Aligns text left when reading direction is ltr and right when reading direction is rtl (default, if unspecified).",
801
+ "displayName": "Start",
802
+ "type": {
803
+ "names": [
804
+ "string"
805
+ ]
806
+ }
807
+ },
808
+ {
809
+ "name": "end",
810
+ "description": "Aligns text right when reading direction is ltr and left when reading direction is rtl.",
811
+ "displayName": "End",
812
+ "type": {
813
+ "names": [
814
+ "string"
815
+ ]
816
+ }
817
+ },
818
+ {
819
+ "name": "right",
820
+ "description": "Aligns text right regardless of reading direction, often used for numbers.",
821
+ "displayName": "Right",
822
+ "type": {
823
+ "names": [
824
+ "string"
825
+ ]
826
+ }
827
+ }
828
+ ],
829
+ "type": {
830
+ "names": [
831
+ "\"start\"",
832
+ "\"right\"",
833
+ "\"end\""
834
+ ]
835
+ }
836
+ },
837
+ {
838
+ "memberof": "oj-c.InputNumber",
839
+ "id": "oj-c.InputNumber#userAssistanceDensity",
840
+ "name": "userAssistanceDensity",
841
+ "kind": "member",
842
+ "longname": "oj-c.InputNumber#userAssistanceDensity",
843
+ "optional": true,
844
+ "scope": "instance",
845
+ "description": "Specifies the density of the form component's user assistance presentation. It can be shown inline with\nreserved rows to prevent reflow if a user assistance text shows up, inline without reserved rows that would\nreflow if a user assistance text shows up, or it can be shown compactly in a popup instead.",
846
+ "meta": {
847
+ "filename": "input-number.tsx",
848
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
849
+ },
850
+ "ojvalues": [
851
+ {
852
+ "name": "reflow",
853
+ "description": "Messages, help, hints, and required are all shown inline under the field with no reserved space.",
854
+ "displayName": "Reflow",
855
+ "type": {
856
+ "names": [
857
+ "string"
858
+ ]
859
+ }
860
+ },
861
+ {
862
+ "name": "efficient",
863
+ "description": "Messages, help, hints, and required are all shown inline under the field with reserved space.",
864
+ "displayName": "Efficient",
865
+ "type": {
866
+ "names": [
867
+ "string"
868
+ ]
869
+ }
870
+ }
871
+ ],
872
+ "defaultvalue": "\"reflow\"",
873
+ "type": {
874
+ "names": [
875
+ "\"reflow\"",
876
+ "\"efficient\""
877
+ ]
878
+ }
879
+ },
880
+ {
881
+ "memberof": "oj-c.InputNumber",
882
+ "id": "oj-c.InputNumber#validators",
883
+ "name": "validators",
884
+ "kind": "member",
885
+ "longname": "oj-c.InputNumber#validators",
886
+ "optional": true,
887
+ "scope": "instance",
888
+ "description": "List of validators, synchronous or asynchronous,\nused by the component\nand the implicit component validators when performing validation. Each item is either an\ninstance that duck types oj.Validator or oj.AsyncValidator.\n<p>\nImplicit validators are created by the element when certain attributes are present.\nFor example, if the <code class=\"prettyprint\">required</code> attribute\nis set, an implicit oj.RequiredValidator is created.\nAt runtime when the component runs validation, it\ncombines all the implicit validators with all the validators\nspecified through this <code class=\"prettyprint\">validators</code> attribute\nand the <code class=\"prettyprint\">async-validators</code> attribute, and\nruns all of them.\n</p>\n<p>\nHints exposed by validators are shown inline by default in the Redwood theme when the\nfield has focus.\nYou can turn off showing validator hints by using the\n'validatorHint' property set to 'none' on the <code class=\"prettyprint\">display-options</code>\nattribute.\n</p>\n<p>\nIn the Redwood theme, only one hint shows at a time, so the precedence rules are:\nhelp.instruction shows; if no help.instruction then validator hints show;\nif none, then help-hints.definition shows; if none, then converter hint shows.\nhelp-hints.source always shows along with the other help or hint.\n</p>\n\n<p>\nWhen <code class=\"prettyprint\">validators</code> property changes due to programmatic\nintervention, the component may decide to clear messages and run validation, based on the\ncurrent state it is in. </br>\n\n<h4>Steps Performed Always</h4>\n<ul>\n<li>The cached list of validator instances are cleared and new validator hints is pushed to\nmessaging.\n</li>\n</ul>\n\n<h4>Running Validation</h4>\n<ul>\n<li>if component is valid when validators changes, component does nothing other than the\nsteps it always performs.</li>\n<li>if component is invalid and is showing messages when\n<code class=\"prettyprint\">validators</code> or\n<code class=\"prettyprint\">async-validators</code> changes then all component messages\n are cleared and full validation run using the display value on the component.\n<ul>\n <li>if there are validation errors, then <code class=\"prettyprint\">value</code>\n property is not updated and the error is shown.\n </li>\n <li>if no errors result from the validation, the <code class=\"prettyprint\">value</code>\n property is updated; page author can listen to the <code class=\"prettyprint\">valueChanged</code>\n event to clear custom errors.</li>\n</ul>\n</li>\n<li>if component is invalid and has deferred messages when validators changes, it does\nnothing other than the steps it performs always.</li>\n</ul>\n</p>\n\n<h4>Clearing Messages</h4>\n<ul>\n<li>Only messages created by the component are cleared.</li>\n<li><code class=\"prettyprint\">messagesCustom</code> property is not cleared.</li>\n</ul>\n</p>",
889
+ "meta": {
890
+ "filename": "input-number.tsx",
891
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
892
+ },
893
+ "defaultvalue": "[]",
894
+ "type": {
895
+ "names": [
896
+ "Array<object>|null"
897
+ ]
898
+ },
899
+ "tstype": [
900
+ {
901
+ "target": "Type",
902
+ "value": "Array<AsyncValidator<number>|Validator<number>>|null",
903
+ "jsdocOverride": true
904
+ }
905
+ ]
906
+ },
907
+ {
908
+ "memberof": "oj-c.InputNumber",
909
+ "id": "oj-c.InputNumber#value",
910
+ "name": "value",
911
+ "kind": "member",
912
+ "longname": "oj-c.InputNumber#value",
913
+ "optional": true,
914
+ "scope": "instance",
915
+ "ojwriteback": true,
916
+ "description": "The value of the component.\n\n<p>\nWhen <code class=\"prettyprint\">value</code> property changes due to programmatic\nintervention, the component always clears all messages\nincluding <code class=\"prettyprint\">messagesCustom</code>, runs deferred validation, and\nalways refreshes UI display value.\n</p>\n\n<p>\nWhen the input field is cleared and the value is committed, the <code class=\"prettyprint\">value</code>\nproperty is set to <code>null</code>.\n</p>\n\n<h4>Running Validation</h4>\n<ul>\n<li>component always runs deferred validation; the\n<code class=\"prettyprint\">valid</code> property is updated with the result.</li>\n</ul>",
917
+ "meta": {
918
+ "filename": "input-number.tsx",
919
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
920
+ },
921
+ "defaultvalue": null,
922
+ "type": {
923
+ "names": [
924
+ "number|null"
925
+ ]
926
+ }
927
+ },
928
+ {
929
+ "memberof": "oj-c.InputNumber",
930
+ "id": "oj-c.InputNumber#virtualKeyboard",
931
+ "name": "virtualKeyboard",
932
+ "kind": "member",
933
+ "longname": "oj-c.InputNumber#virtualKeyboard",
934
+ "optional": true,
935
+ "scope": "instance",
936
+ "description": "The type of virtual keyboard to display for entering a value on mobile browsers. This attribute has no effect on desktop browsers.",
937
+ "meta": {
938
+ "filename": "input-number.tsx",
939
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
940
+ },
941
+ "ojvalues": [
942
+ {
943
+ "name": "number",
944
+ "description": "Use a mobile virtual keyboard for entering numbers. If using 'number', you must set the converter attribute to a converter that formats to numeric characters only, otherwise the value will not be shown. The reason for this is oj-c-input-number uses the browser native input type='number' and when you set a value that contains a non-numeric character, browsers do not display the value. For example, '1,000' would not be shown. Note that on Android and Windows Mobile, the 'number' keyboard does not contain the minus sign. This value should not be used on fields that accept negative values.",
945
+ "displayName": "Number",
946
+ "type": {
947
+ "names": [
948
+ "string"
949
+ ]
950
+ }
951
+ },
952
+ {
953
+ "name": "auto",
954
+ "description": "The component will determine the best mobile virtual keyboard to use (default, if unspecified).",
955
+ "displayName": "Auto",
956
+ "type": {
957
+ "names": [
958
+ "string"
959
+ ]
960
+ }
961
+ },
962
+ {
963
+ "name": "text",
964
+ "description": "Use a mobile virtual keyboard for entering text.",
965
+ "displayName": "Text",
966
+ "type": {
967
+ "names": [
968
+ "string"
969
+ ]
970
+ }
971
+ }
972
+ ],
973
+ "defaultvalue": "\"auto\"",
974
+ "type": {
975
+ "names": [
976
+ "\"number\"",
977
+ "\"text\"",
978
+ "\"auto\""
979
+ ]
980
+ }
981
+ },
982
+ {
983
+ "memberof": "oj-c.InputNumber",
984
+ "id": "oj-c.InputNumber#rawValue",
985
+ "name": "rawValue",
986
+ "kind": "member",
987
+ "longname": "oj-c.InputNumber#rawValue",
988
+ "optional": true,
989
+ "scope": "instance",
990
+ "ojwriteback": true,
991
+ "readonly": true,
992
+ "description": "<p>The <code class=\"prettyprint\">rawValue</code> is the read-only property for retrieving\nthe current value from the input field in string form. The main consumer of\n<code class=\"prettyprint\">rawValue</code> is a converter.</p>\n<p>\nThe <code class=\"prettyprint\">rawValue</code> updates on the 'input' javascript event,\nso the <code class=\"prettyprint\">rawValue</code> changes as the value of the input is changed.\nIf the user types in '1,200' into the field, the rawValue will be '1', then '1,', then '1,2',\n..., and finally '1,200'. Then when the user blurs or presses\nEnter the <code class=\"prettyprint\">value</code> property gets converted and validated\n(if there is a converter or validators) and then gets updated if valid.\n</p>\n<p>This is a read-only attribute so page authors cannot set or change it directly.</p>",
993
+ "meta": {
994
+ "filename": "input-number.tsx",
995
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
996
+ },
997
+ "type": {
998
+ "names": [
999
+ "string"
1000
+ ]
1001
+ }
1002
+ },
1003
+ {
1004
+ "memberof": "oj-c.InputNumber",
1005
+ "id": "oj-c.InputNumber#transientValue",
1006
+ "name": "transientValue",
1007
+ "kind": "member",
1008
+ "longname": "oj-c.InputNumber#transientValue",
1009
+ "optional": true,
1010
+ "scope": "instance",
1011
+ "ojwriteback": true,
1012
+ "readonly": true,
1013
+ "description": "<p>The <code class=\"prettyprint\">transientValue</code> is the read-only property for retrieving\nthe current transient value.</p>\n<p>\nThe <code class=\"prettyprint\">transientValue</code> updates to display the transient\nchanges from pressing the up or down arrow (subject to the step constraints).\n<code class=\"prettyprint\">transientValue</code> will update only if it passes\nvalidation.\n</p>\n<p>\nThe difference in behavior is\n<code class=\"prettyprint\">transientValue</code> will be updated\nas the up or down arrow is pressed (and only if validation succeeds),\nwhereas <code class=\"prettyprint\">value</code>\nis updated only after the up or down arrow is released\n(and only if validation succeeds).\n</p>\n<p>This is a read-only attribute so page authors cannot set or change it directly.</p>",
1014
+ "meta": {
1015
+ "filename": "input-number.tsx",
1016
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1017
+ },
1018
+ "type": {
1019
+ "names": [
1020
+ "number"
1021
+ ]
1022
+ }
1023
+ },
1024
+ {
1025
+ "memberof": "oj-c.InputNumber",
1026
+ "id": "oj-c.InputNumber#valid",
1027
+ "name": "valid",
1028
+ "kind": "member",
1029
+ "longname": "oj-c.InputNumber#valid",
1030
+ "optional": true,
1031
+ "scope": "instance",
1032
+ "ojwriteback": true,
1033
+ "readonly": true,
1034
+ "description": "<p>\nThe current valid state of the component. It is evaluated on initial render.\nIt is re-evaluated\n<ul>\n <li>after each validator (validators or async-validators) is run (full or deferred)</li>\n <li>when messagesCustom is updated,\n since messagesCustom can be added by the app developer any time.</li>\n <li>when showMessages() is called. Since showMessages() moves the\n hidden messages into messages shown,\n if the valid state was \"invalidHidden\" then it would become \"invalidShown\".</li>\n <li>when the required property has changed. If a component is empty and has required\n set, the valid state may be \"invalidHidden\" (if no invalid messages are being shown as well).\n If required property is removed, the valid state would change to \"valid\".</li>\n</ul>\n</p>\n<p>\n Note: New valid states may be added to the list of valid values in future releases.\n Any new values will start with \"invalid\"\n if it is an invalid state, \"pending\" if it is pending state,\n and \"valid\" if it is a valid state.\n</p>",
1035
+ "meta": {
1036
+ "filename": "input-number.tsx",
1037
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1038
+ },
1039
+ "ojvalues": [
1040
+ {
1041
+ "name": "valid",
1042
+ "description": "The component is valid",
1043
+ "displayName": "Valid",
1044
+ "type": {
1045
+ "names": [
1046
+ "string"
1047
+ ]
1048
+ }
1049
+ },
1050
+ {
1051
+ "name": "pending",
1052
+ "description": "The component is waiting for the validation state to be determined. The 'pending' state is set at the start of the convert/validate process.",
1053
+ "displayName": "Pending",
1054
+ "type": {
1055
+ "names": [
1056
+ "string"
1057
+ ]
1058
+ }
1059
+ },
1060
+ {
1061
+ "name": "invalidHidden",
1062
+ "description": "The component has invalid messages hidden and no invalid messages showing. An invalid message is one with severity 'error'.",
1063
+ "displayName": "Invalid Hidden",
1064
+ "type": {
1065
+ "names": [
1066
+ "string"
1067
+ ]
1068
+ }
1069
+ },
1070
+ {
1071
+ "name": "invalidShown",
1072
+ "description": "The component has invalid messages showing. An invalid message is one with severity 'error'.",
1073
+ "displayName": "Invalid Shown",
1074
+ "type": {
1075
+ "names": [
1076
+ "string"
1077
+ ]
1078
+ }
1079
+ }
1080
+ ],
1081
+ "type": {
1082
+ "names": [
1083
+ "\"valid\"",
1084
+ "\"pending\"",
1085
+ "\"invalidHidden\"",
1086
+ "\"invalidShown\""
1087
+ ]
1088
+ }
1089
+ },
1090
+ {
1091
+ "memberof": "oj-c.InputNumber",
1092
+ "id": "oj-c.InputNumber#reset",
1093
+ "name": "reset",
1094
+ "kind": "function",
1095
+ "longname": "oj-c.InputNumber#reset",
1096
+ "description": "Resets the component by clearing all messages and messagesCustom attribute\nand updates the component's display value using the attribute value.\nUser entered values will be erased when this method is called.",
1097
+ "meta": {
1098
+ "filename": "input-number.tsx",
1099
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1100
+ },
1101
+ "scope": "instance",
1102
+ "returns": [
1103
+ {
1104
+ "type": {
1105
+ "names": [
1106
+ "any"
1107
+ ]
1108
+ }
1109
+ }
1110
+ ]
1111
+ },
1112
+ {
1113
+ "memberof": "oj-c.InputNumber",
1114
+ "id": "oj-c.InputNumber#showMessages",
1115
+ "name": "showMessages",
1116
+ "kind": "function",
1117
+ "longname": "oj-c.InputNumber#showMessages",
1118
+ "description": "Takes all deferred messages and shows them.\nIt then updates the valid property;\ne.g., if the valid state was \"invalidHidden\" before showMessages(),\nthe valid state will become \"invalidShown\" after showMessages().\nIf there were no deferred messages this method simply returns.",
1119
+ "meta": {
1120
+ "filename": "input-number.tsx",
1121
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1122
+ },
1123
+ "scope": "instance",
1124
+ "returns": [
1125
+ {
1126
+ "type": {
1127
+ "names": [
1128
+ "any"
1129
+ ]
1130
+ }
1131
+ }
1132
+ ]
1133
+ },
1134
+ {
1135
+ "memberof": "oj-c.InputNumber",
1136
+ "id": "oj-c.InputNumber#validate",
1137
+ "name": "validate",
1138
+ "kind": "function",
1139
+ "longname": "oj-c.InputNumber#validate",
1140
+ "description": "Validates the component's display value using the converter and\nall validators registered on the component and updates the value\noption by performing the following steps.\n<ol>\n<li>All messages are cleared, including custom messages added by the app.<li>\n<li>\n If no converter is present then processing continues to next step. If a converter is present,\n the UI value is first converted (i.e., parsed). If there is a parse error then the messages are shown.\n</li>\n<li>\n If there are no validators setup for the component the value option is updated using the display value.\n Otherwise all validators are run in sequence using the parsed value from the previous step.\n The implicit required validator is run first if the component is marked required.\n When a validation error is encountered it is remembered and the next validator in the sequence is run.\n</li>\n<li>\n At the end of validation if there are errors, the messages are shown.\n If there were no errors, then the value option is updated.\n</li>\n</ol>",
1141
+ "meta": {
1142
+ "filename": "input-number.tsx",
1143
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1144
+ },
1145
+ "scope": "instance",
1146
+ "returns": [
1147
+ {
1148
+ "type": {
1149
+ "names": [
1150
+ "Promise"
1151
+ ]
1152
+ },
1153
+ "description": "Promise resolves to \"valid\" if there were no converter parse errors and the component\npassed all validations. The Promise resolves to \"invalid\" if there were converter\nparse errors or if there were validation errors."
1154
+ }
1155
+ ]
1156
+ },
1157
+ {
1158
+ "memberof": "oj-c.InputNumber",
1159
+ "id": "oj-c.InputNumber#blur",
1160
+ "name": "blur",
1161
+ "kind": "function",
1162
+ "longname": "oj-c.InputNumber#blur",
1163
+ "description": "blurs the input field",
1164
+ "ojhidden": true,
1165
+ "meta": {
1166
+ "filename": "input-number.tsx",
1167
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1168
+ },
1169
+ "scope": "instance",
1170
+ "returns": [
1171
+ {
1172
+ "type": {
1173
+ "names": [
1174
+ "any"
1175
+ ]
1176
+ }
1177
+ }
1178
+ ]
1179
+ },
1180
+ {
1181
+ "memberof": "oj-c.InputNumber",
1182
+ "id": "oj-c.InputNumber#focus",
1183
+ "name": "focus",
1184
+ "kind": "function",
1185
+ "longname": "oj-c.InputNumber#focus",
1186
+ "description": "focuses the input field",
1187
+ "ojhidden": true,
1188
+ "meta": {
1189
+ "filename": "input-number.tsx",
1190
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1191
+ },
1192
+ "scope": "instance",
1193
+ "returns": [
1194
+ {
1195
+ "type": {
1196
+ "names": [
1197
+ "any"
1198
+ ]
1199
+ }
1200
+ }
1201
+ ]
1202
+ },
1203
+ {
1204
+ "memberof": "oj-c.InputNumber",
1205
+ "id": "oj-c.InputNumber#setProperty",
1206
+ "name": "setProperty",
1207
+ "kind": "function",
1208
+ "longname": "oj-c.InputNumber#setProperty",
1209
+ "description": "Sets a property or a single subproperty for complex properties and notifies the component of the change, triggering a corresponding event.",
1210
+ "meta": {
1211
+ "filename": "input-number.tsx",
1212
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1213
+ },
1214
+ "scope": "instance",
1215
+ "params": [
1216
+ {
1217
+ "name": "property",
1218
+ "description": "The property name to set. Supports dot notation for subproperty access.",
1219
+ "type": "string"
1220
+ },
1221
+ {
1222
+ "name": "value",
1223
+ "description": "The new value to set the property to.",
1224
+ "type": "any"
1225
+ }
1226
+ ],
1227
+ "returns": [
1228
+ {
1229
+ "type": {
1230
+ "names": [
1231
+ "void"
1232
+ ]
1233
+ }
1234
+ }
1235
+ ]
1236
+ },
1237
+ {
1238
+ "memberof": "oj-c.InputNumber",
1239
+ "id": "oj-c.InputNumber#getProperty",
1240
+ "name": "getProperty",
1241
+ "kind": "function",
1242
+ "longname": "oj-c.InputNumber#getProperty",
1243
+ "description": "Retrieves the value of a property or a subproperty.",
1244
+ "meta": {
1245
+ "filename": "input-number.tsx",
1246
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1247
+ },
1248
+ "scope": "instance",
1249
+ "params": [
1250
+ {
1251
+ "name": "property",
1252
+ "description": "The property name to get. Supports dot notation for subproperty access.",
1253
+ "type": "string"
1254
+ }
1255
+ ],
1256
+ "returns": [
1257
+ {
1258
+ "type": {
1259
+ "names": [
1260
+ "any"
1261
+ ]
1262
+ }
1263
+ }
1264
+ ]
1265
+ },
1266
+ {
1267
+ "memberof": "oj-c.InputNumber",
1268
+ "id": "oj-c.InputNumber#setProperties",
1269
+ "name": "setProperties",
1270
+ "kind": "function",
1271
+ "longname": "oj-c.InputNumber#setProperties",
1272
+ "description": "Performs a batch set of properties.",
1273
+ "meta": {
1274
+ "filename": "input-number.tsx",
1275
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1276
+ },
1277
+ "scope": "instance",
1278
+ "params": [
1279
+ {
1280
+ "name": "properties",
1281
+ "description": "An object containing the property and value pairs to set.",
1282
+ "type": "object"
1283
+ }
1284
+ ],
1285
+ "returns": [
1286
+ {
1287
+ "type": {
1288
+ "names": [
1289
+ "void"
1290
+ ]
1291
+ }
1292
+ }
1293
+ ]
1294
+ },
1295
+ {
1296
+ "id": "oj-c.InputNumber.touchDoc",
1297
+ "name": "touchDoc",
1298
+ "kind": "member",
1299
+ "longname": "oj-c.InputNumber.touchDoc",
1300
+ "description": "<table class=\"keyboard-table\">\n <thead>\n <tr>\n <th>Target</th>\n <th>Gesture</th>\n <th>Action</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>Up Button</td>\n <td><kbd>Tap</kbd></td>\n <td>Increment the number.</td>\n </tr>\n <tr>\n <td>Down Button</td>\n <td><kbd>Tap</kbd></td>\n <td>Decrement the number.</td>\n </tr>\n <tr>\n <td>Input</td>\n <td><kbd>Tap</kbd></td>\n <td>Set focus to the input. Show user assistance text. This may be inline or in a notewindow\ndepending upon theme and property settings.</td>\n </tr>\n <tr>\n <td>Elsewhere on Page</td>\n <td><kbd>Touch</kbd></td>\n <td>Submit the value you typed in the input field.</td>\n </tr>\n </tbody>\n</table>",
1301
+ "memberof": "oj-c.InputNumber",
1302
+ "meta": {
1303
+ "filename": "input-number.tsx",
1304
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1305
+ },
1306
+ "ojfragment": true
1307
+ },
1308
+ {
1309
+ "id": "oj-c.InputNumber.keyboardDoc",
1310
+ "name": "keyboardDoc",
1311
+ "kind": "member",
1312
+ "longname": "oj-c.InputNumber.keyboardDoc",
1313
+ "description": "<table class=\"keyboard-table\">\n <thead>\n <tr>\n <th>Target</th>\n <th>Key</th>\n <th>Action</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td rowspan=\"4\">Input</td>\n <td><kbd>Enter</kbd> or <kbd>Tab</kbd></td>\n <td>Submit the value you typed in the input field.</td>\n </tr>\n <tr>\n <td><kbd>Tab In</kbd></td>\n <td>Set focus to input. Show user assistance text. This may be inline or in a notewindow\ndepending upon theme and property settings.</td>\n </tr>\n <tr>\n <td><kbd>UpArrow</kbd></td>\n <td>Increment the number.</td>\n </tr>\n <tr>\n <td><kbd>DownArrow</kbd></td>\n <td>Decrement the number.</td>\n </tr>\n </tbody>\n</table>",
1314
+ "memberof": "oj-c.InputNumber",
1315
+ "meta": {
1316
+ "filename": "input-number.tsx",
1317
+ "path": "/home/jenkins/uitech/workspace/OJET_Code_14.0.0/packages/oraclejet-core-pack/web/components/oj-c/input-number"
1318
+ },
1319
+ "ojfragment": true
1320
+ }
1321
+ ]