@datagrok/helm 2.3.2 → 2.3.3

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 (323) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/package-test.js +1 -1
  3. package/dist/package-test.js.map +1 -1
  4. package/dist/package.js +1 -1
  5. package/dist/package.js.map +1 -1
  6. package/package.json +4 -4
  7. package/src/cell-renderer.ts +5 -4
  8. package/src/helm-helper.ts +6 -6
  9. package/src/helm-monomer-placer.ts +1 -1
  10. package/src/helm-web-editor.ts +5 -5
  11. package/src/package-test.ts +0 -1
  12. package/src/package-utils.ts +228 -69
  13. package/src/package.ts +7 -69
  14. package/src/tests/findMonomers-tests.ts +2 -1
  15. package/src/tests/get-monomer-tests.ts +1 -49
  16. package/src/utils/get-monomer.ts +49 -1
  17. package/src/utils/helm-grid-cell-renderer.ts +8 -9
  18. package/src/utils/index.ts +2 -3
  19. package/src/widgets/helm-input.ts +4 -4
  20. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js +63 -0
  21. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js.uncompressed.js +116 -0
  22. package/vendor/dojo-1.10.10/dijit/Destroyable.js +35 -0
  23. package/vendor/dojo-1.10.10/dijit/Destroyable.js.uncompressed.js +83 -0
  24. package/vendor/dojo-1.10.10/dijit/Tooltip.js +240 -0
  25. package/vendor/dojo-1.10.10/dijit/Tooltip.js.uncompressed.js +612 -0
  26. package/vendor/dojo-1.10.10/dijit/Viewport.js +44 -0
  27. package/vendor/dojo-1.10.10/dijit/Viewport.js.uncompressed.js +87 -0
  28. package/vendor/dojo-1.10.10/dijit/WidgetSet.js +76 -0
  29. package/vendor/dojo-1.10.10/dijit/WidgetSet.js.uncompressed.js +247 -0
  30. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js +94 -0
  31. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js.uncompressed.js +238 -0
  32. package/vendor/dojo-1.10.10/dijit/_Contained.js +17 -0
  33. package/vendor/dojo-1.10.10/dijit/_Contained.js.uncompressed.js +56 -0
  34. package/vendor/dojo-1.10.10/dijit/_Container.js +47 -0
  35. package/vendor/dojo-1.10.10/dijit/_Container.js.uncompressed.js +108 -0
  36. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js +198 -0
  37. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js.uncompressed.js +372 -0
  38. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js +11 -0
  39. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js.uncompressed.js +66 -0
  40. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js +188 -0
  41. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js.uncompressed.js +472 -0
  42. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js +8 -0
  43. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js.uncompressed.js +31 -0
  44. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js +90 -0
  45. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js.uncompressed.js +205 -0
  46. package/vendor/dojo-1.10.10/dijit/_Widget.js +66 -0
  47. package/vendor/dojo-1.10.10/dijit/_Widget.js.uncompressed.js +352 -0
  48. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js +353 -0
  49. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js.uncompressed.js +1200 -0
  50. package/vendor/dojo-1.10.10/dijit/_base/focus.js +68 -0
  51. package/vendor/dojo-1.10.10/dijit/_base/focus.js.uncompressed.js +207 -0
  52. package/vendor/dojo-1.10.10/dijit/_base/manager.js +10 -0
  53. package/vendor/dojo-1.10.10/dijit/_base/manager.js.uncompressed.js +35 -0
  54. package/vendor/dojo-1.10.10/dijit/_base/place.js +52 -0
  55. package/vendor/dojo-1.10.10/dijit/_base/place.js.uncompressed.js +131 -0
  56. package/vendor/dojo-1.10.10/dijit/_base/popup.js +23 -0
  57. package/vendor/dojo-1.10.10/dijit/_base/popup.js.uncompressed.js +58 -0
  58. package/vendor/dojo-1.10.10/dijit/_base/scroll.js +6 -0
  59. package/vendor/dojo-1.10.10/dijit/_base/scroll.js.uncompressed.js +22 -0
  60. package/vendor/dojo-1.10.10/dijit/_base/sniff.js +3 -0
  61. package/vendor/dojo-1.10.10/dijit/_base/sniff.js.uncompressed.js +12 -0
  62. package/vendor/dojo-1.10.10/dijit/_base/typematic.js +3 -0
  63. package/vendor/dojo-1.10.10/dijit/_base/typematic.js.uncompressed.js +10 -0
  64. package/vendor/dojo-1.10.10/dijit/_base/wai.js +32 -0
  65. package/vendor/dojo-1.10.10/dijit/_base/wai.js.uncompressed.js +109 -0
  66. package/vendor/dojo-1.10.10/dijit/_base/window.js +6 -0
  67. package/vendor/dojo-1.10.10/dijit/_base/window.js.uncompressed.js +18 -0
  68. package/vendor/dojo-1.10.10/dijit/_base.js +4 -0
  69. package/vendor/dojo-1.10.10/dijit/a11y.js +109 -0
  70. package/vendor/dojo-1.10.10/dijit/a11y.js.uncompressed.js +191 -0
  71. package/vendor/dojo-1.10.10/dijit/a11yclick.js +66 -0
  72. package/vendor/dojo-1.10.10/dijit/a11yclick.js.uncompressed.js +139 -0
  73. package/vendor/dojo-1.10.10/dijit/focus.js +188 -0
  74. package/vendor/dojo-1.10.10/dijit/focus.js.uncompressed.js +371 -0
  75. package/vendor/dojo-1.10.10/dijit/form/Button.js +49 -0
  76. package/vendor/dojo-1.10.10/dijit/form/Button.js.uncompressed.js +130 -0
  77. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js +4 -0
  78. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js.uncompressed.js +27 -0
  79. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js +21 -0
  80. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js.uncompressed.js +86 -0
  81. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js +38 -0
  82. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js.uncompressed.js +102 -0
  83. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js +7 -0
  84. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js.uncompressed.js +26 -0
  85. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js +50 -0
  86. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js.uncompressed.js +116 -0
  87. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js +26 -0
  88. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js.uncompressed.js +81 -0
  89. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js +24 -0
  90. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js.uncompressed.js +51 -0
  91. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js +22 -0
  92. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js.uncompressed.js +67 -0
  93. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js +111 -0
  94. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js.uncompressed.js +254 -0
  95. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js +32 -0
  96. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js.uncompressed.js +69 -0
  97. package/vendor/dojo-1.10.10/dijit/hccss.js +9 -0
  98. package/vendor/dojo-1.10.10/dijit/hccss.js.uncompressed.js +21 -0
  99. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js +215 -0
  100. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js.uncompressed.js +550 -0
  101. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js +7 -0
  102. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js.uncompressed.js +25 -0
  103. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js +235 -0
  104. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js.uncompressed.js +653 -0
  105. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js +171 -0
  106. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js.uncompressed.js +411 -0
  107. package/vendor/dojo-1.10.10/dijit/layout/StackController.js +194 -0
  108. package/vendor/dojo-1.10.10/dijit/layout/StackController.js.uncompressed.js +410 -0
  109. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js +99 -0
  110. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js.uncompressed.js +236 -0
  111. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js +47 -0
  112. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js.uncompressed.js +190 -0
  113. package/vendor/dojo-1.10.10/dijit/layout/utils.js +77 -0
  114. package/vendor/dojo-1.10.10/dijit/layout/utils.js.uncompressed.js +151 -0
  115. package/vendor/dojo-1.10.10/dijit/main.js +4 -0
  116. package/vendor/dojo-1.10.10/dijit/main.js.uncompressed.js +16 -0
  117. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js +2 -0
  118. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js.uncompressed.js +21 -0
  119. package/vendor/dojo-1.10.10/dijit/nls/loading.js +2 -0
  120. package/vendor/dojo-1.10.10/dijit/nls/loading.js.uncompressed.js +47 -0
  121. package/vendor/dojo-1.10.10/dijit/place.js +142 -0
  122. package/vendor/dojo-1.10.10/dijit/place.js.uncompressed.js +407 -0
  123. package/vendor/dojo-1.10.10/dijit/popup.js +162 -0
  124. package/vendor/dojo-1.10.10/dijit/popup.js.uncompressed.js +441 -0
  125. package/vendor/dojo-1.10.10/dijit/registry.js +79 -0
  126. package/vendor/dojo-1.10.10/dijit/registry.js.uncompressed.js +159 -0
  127. package/vendor/dojo-1.10.10/dijit/selection.js +364 -0
  128. package/vendor/dojo-1.10.10/dijit/selection.js.uncompressed.js +525 -0
  129. package/vendor/dojo-1.10.10/dijit/typematic.js +96 -0
  130. package/vendor/dojo-1.10.10/dijit/typematic.js.uncompressed.js +211 -0
  131. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js +195 -0
  132. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js.uncompressed.js +761 -0
  133. package/vendor/dojo-1.10.10/dojo/Stateful.js +90 -0
  134. package/vendor/dojo-1.10.10/dojo/Stateful.js.uncompressed.js +218 -0
  135. package/vendor/dojo-1.10.10/dojo/_base/url.js +87 -0
  136. package/vendor/dojo-1.10.10/dojo/_base/url.js.uncompressed.js +109 -0
  137. package/vendor/dojo-1.10.10/dojo/cache.js +9 -0
  138. package/vendor/dojo-1.10.10/dojo/cache.js.uncompressed.js +7 -0
  139. package/vendor/dojo-1.10.10/dojo/colors.js +74 -0
  140. package/vendor/dojo-1.10.10/dojo/colors.js.uncompressed.js +232 -0
  141. package/vendor/dojo-1.10.10/dojo/cookie.js +48 -0
  142. package/vendor/dojo-1.10.10/dojo/cookie.js.uncompressed.js +98 -0
  143. package/vendor/dojo-1.10.10/dojo/date/stamp.js +82 -0
  144. package/vendor/dojo-1.10.10/dojo/date/stamp.js.uncompressed.js +144 -0
  145. package/vendor/dojo-1.10.10/dojo/dojo.js +7 -0
  146. package/vendor/dojo-1.10.10/dojo/dojo.js.uncompressed.js +18680 -0
  147. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js +27 -0
  148. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js.uncompressed.js +101 -0
  149. package/vendor/dojo-1.10.10/dojo/fx/easing.js +165 -0
  150. package/vendor/dojo-1.10.10/dojo/fx/easing.js.uncompressed.js +276 -0
  151. package/vendor/dojo-1.10.10/dojo/fx.js +271 -0
  152. package/vendor/dojo-1.10.10/dojo/fx.js.uncompressed.js +443 -0
  153. package/vendor/dojo-1.10.10/dojo/hccss.js +26 -0
  154. package/vendor/dojo-1.10.10/dojo/hccss.js.uncompressed.js +52 -0
  155. package/vendor/dojo-1.10.10/dojo/html.js +161 -0
  156. package/vendor/dojo-1.10.10/dojo/html.js.uncompressed.js +370 -0
  157. package/vendor/dojo-1.10.10/dojo/io/iframe.js +71 -0
  158. package/vendor/dojo-1.10.10/dojo/io/iframe.js.uncompressed.js +190 -0
  159. package/vendor/dojo-1.10.10/dojo/io/script.js +112 -0
  160. package/vendor/dojo-1.10.10/dojo/io/script.js.uncompressed.js +280 -0
  161. package/vendor/dojo-1.10.10/dojo/parser.js +437 -0
  162. package/vendor/dojo-1.10.10/dojo/parser.js.uncompressed.js +915 -0
  163. package/vendor/dojo-1.10.10/dojo/promise/all.js +59 -0
  164. package/vendor/dojo-1.10.10/dojo/promise/all.js.uncompressed.js +77 -0
  165. package/vendor/dojo-1.10.10/dojo/regexp.js +32 -0
  166. package/vendor/dojo-1.10.10/dojo/regexp.js.uncompressed.js +70 -0
  167. package/vendor/dojo-1.10.10/dojo/request/iframe.js +291 -0
  168. package/vendor/dojo-1.10.10/dojo/request/iframe.js.uncompressed.js +438 -0
  169. package/vendor/dojo-1.10.10/dojo/request/script.js +129 -0
  170. package/vendor/dojo-1.10.10/dojo/request/script.js.uncompressed.js +237 -0
  171. package/vendor/dojo-1.10.10/dojo/require.js +11 -0
  172. package/vendor/dojo-1.10.10/dojo/require.js.uncompressed.js +7 -0
  173. package/vendor/dojo-1.10.10/dojo/resources/blank.gif +0 -0
  174. package/vendor/dojo-1.10.10/dojo/string.js +67 -0
  175. package/vendor/dojo-1.10.10/dojo/string.js.uncompressed.js +181 -0
  176. package/vendor/dojo-1.10.10/dojo/touch.js +191 -0
  177. package/vendor/dojo-1.10.10/dojo/touch.js.uncompressed.js +468 -0
  178. package/vendor/dojo-1.10.10/dojo/uacss.js +36 -0
  179. package/vendor/dojo-1.10.10/dojo/uacss.js.uncompressed.js +85 -0
  180. package/vendor/dojo-1.10.10/dojo/window.js +141 -0
  181. package/vendor/dojo-1.10.10/dojo/window.js.uncompressed.js +241 -0
  182. package/vendor/dojo-1.10.10/dojox/charting/Chart.js +626 -0
  183. package/vendor/dojo-1.10.10/dojox/charting/Chart.js.uncompressed.js +1220 -0
  184. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js +5 -0
  185. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js.uncompressed.js +16 -0
  186. package/vendor/dojo-1.10.10/dojox/charting/Element.js +247 -0
  187. package/vendor/dojo-1.10.10/dojox/charting/Element.js.uncompressed.js +402 -0
  188. package/vendor/dojo-1.10.10/dojox/charting/Series.js +24 -0
  189. package/vendor/dojo-1.10.10/dojox/charting/Series.js.uncompressed.js +58 -0
  190. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js +191 -0
  191. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js.uncompressed.js +577 -0
  192. package/vendor/dojo-1.10.10/dojox/charting/Theme.js +42 -0
  193. package/vendor/dojo-1.10.10/dojox/charting/Theme.js.uncompressed.js +120 -0
  194. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js +11 -0
  195. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js.uncompressed.js +36 -0
  196. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js +77 -0
  197. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js.uncompressed.js +144 -0
  198. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js +58 -0
  199. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js.uncompressed.js +123 -0
  200. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js +54 -0
  201. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js.uncompressed.js +124 -0
  202. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js +28 -0
  203. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js.uncompressed.js +74 -0
  204. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js +116 -0
  205. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js.uncompressed.js +178 -0
  206. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js +24 -0
  207. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js.uncompressed.js +83 -0
  208. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js +557 -0
  209. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js.uncompressed.js +980 -0
  210. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js +65 -0
  211. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js.uncompressed.js +224 -0
  212. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js +91 -0
  213. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js.uncompressed.js +164 -0
  214. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js +7 -0
  215. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js.uncompressed.js +14 -0
  216. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js +168 -0
  217. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js.uncompressed.js +311 -0
  218. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js +61 -0
  219. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js.uncompressed.js +161 -0
  220. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js +141 -0
  221. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js.uncompressed.js +242 -0
  222. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js +126 -0
  223. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js.uncompressed.js +243 -0
  224. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js +108 -0
  225. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js.uncompressed.js +290 -0
  226. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js +13 -0
  227. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js.uncompressed.js +14 -0
  228. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js +13 -0
  229. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js.uncompressed.js +14 -0
  230. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js +153 -0
  231. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js.uncompressed.js +249 -0
  232. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js +253 -0
  233. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js.uncompressed.js +472 -0
  234. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js +182 -0
  235. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js.uncompressed.js +356 -0
  236. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js +6 -0
  237. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js.uncompressed.js +12 -0
  238. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js +6 -0
  239. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js.uncompressed.js +12 -0
  240. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js +7 -0
  241. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js.uncompressed.js +13 -0
  242. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js +110 -0
  243. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js.uncompressed.js +208 -0
  244. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js +303 -0
  245. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js.uncompressed.js +547 -0
  246. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js +134 -0
  247. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js.uncompressed.js +207 -0
  248. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js +299 -0
  249. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js.uncompressed.js +537 -0
  250. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js +24 -0
  251. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js.uncompressed.js +44 -0
  252. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js +7 -0
  253. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js.uncompressed.js +14 -0
  254. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js +22 -0
  255. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js.uncompressed.js +33 -0
  256. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js +20 -0
  257. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js.uncompressed.js +31 -0
  258. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js +6 -0
  259. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js.uncompressed.js +12 -0
  260. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js +68 -0
  261. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js.uncompressed.js +120 -0
  262. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js +209 -0
  263. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js.uncompressed.js +214 -0
  264. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js +76 -0
  265. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js.uncompressed.js +77 -0
  266. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js +59 -0
  267. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js.uncompressed.js +70 -0
  268. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js +220 -0
  269. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js.uncompressed.js +262 -0
  270. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js +23 -0
  271. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js.uncompressed.js +36 -0
  272. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js +39 -0
  273. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js.uncompressed.js +106 -0
  274. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js +5 -0
  275. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js.uncompressed.js +12 -0
  276. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js +4 -0
  277. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js.uncompressed.js +3 -0
  278. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js +102 -0
  279. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js.uncompressed.js +165 -0
  280. package/vendor/dojo-1.10.10/dojox/color/Palette.js +163 -0
  281. package/vendor/dojo-1.10.10/dojox/color/Palette.js.uncompressed.js +460 -0
  282. package/vendor/dojo-1.10.10/dojox/color/_base.js +174 -0
  283. package/vendor/dojo-1.10.10/dojox/color/_base.js.uncompressed.js +196 -0
  284. package/vendor/dojo-1.10.10/dojox/gfx/fx.js +297 -0
  285. package/vendor/dojo-1.10.10/dojox/gfx/fx.js.uncompressed.js +350 -0
  286. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js +63 -0
  287. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js.uncompressed.js +91 -0
  288. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js +170 -0
  289. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js.uncompressed.js +501 -0
  290. package/vendor/dojo-1.10.10/dojox/gfx/path.js +319 -0
  291. package/vendor/dojo-1.10.10/dojox/gfx/path.js.uncompressed.js +478 -0
  292. package/vendor/dojo-1.10.10/dojox/gfx/shape.js +459 -0
  293. package/vendor/dojo-1.10.10/dojox/gfx/shape.js.uncompressed.js +1091 -0
  294. package/vendor/dojo-1.10.10/dojox/gfx/svg.js +662 -0
  295. package/vendor/dojo-1.10.10/dojox/gfx/svg.js.uncompressed.js +1023 -0
  296. package/vendor/dojo-1.10.10/dojox/gfx/utils.js +199 -0
  297. package/vendor/dojo-1.10.10/dojox/gfx/utils.js.uncompressed.js +322 -0
  298. package/vendor/dojo-1.10.10/dojox/gfx.js +2 -0
  299. package/vendor/dojo-1.10.10/dojox/gfx.js.uncompressed.js +1136 -0
  300. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js +151 -0
  301. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js.uncompressed.js +169 -0
  302. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js +93 -0
  303. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js.uncompressed.js +125 -0
  304. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js +81 -0
  305. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js.uncompressed.js +132 -0
  306. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js +54 -0
  307. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js.uncompressed.js +78 -0
  308. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js +61 -0
  309. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js.uncompressed.js +77 -0
  310. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js +87 -0
  311. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js.uncompressed.js +107 -0
  312. package/vendor/dojo-1.10.10/dojox/lang/functional.js +4 -0
  313. package/vendor/dojo-1.10.10/dojox/lang/functional.js.uncompressed.js +3 -0
  314. package/vendor/dojo-1.10.10/dojox/lang/utils.js +86 -0
  315. package/vendor/dojo-1.10.10/dojox/lang/utils.js.uncompressed.js +121 -0
  316. package/vendor/dojo-1.10.10/dojox/main.js +4 -0
  317. package/vendor/dojo-1.10.10/dojox/main.js.uncompressed.js +14 -0
  318. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js +112 -0
  319. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js.uncompressed.js +208 -0
  320. package/vendor/dojo-1.10.10/dojox/storage/Provider.js +62 -0
  321. package/vendor/dojo-1.10.10/dojox/storage/Provider.js.uncompressed.js +344 -0
  322. package/vendor/dojo-1.10.10/dojox/storage/manager.js +110 -0
  323. package/vendor/dojo-1.10.10/dojox/storage/manager.js.uncompressed.js +263 -0
@@ -0,0 +1,81 @@
1
+ define("dijit/form/_FormValueMixin", [
2
+ "dojo/_base/declare", // declare
3
+ "dojo/dom-attr", // domAttr.set
4
+ "dojo/keys", // keys.ESCAPE
5
+ "dojo/_base/lang",
6
+ "dojo/on",
7
+ "dojo/sniff", // has("webkit")
8
+ "./_FormWidgetMixin"
9
+ ], function(declare, domAttr, keys, lang, on, has, _FormWidgetMixin){
10
+
11
+ // module:
12
+ // dijit/form/_FormValueMixin
13
+
14
+ return declare("dijit.form._FormValueMixin", _FormWidgetMixin, {
15
+ // summary:
16
+ // Mixin for widgets corresponding to native HTML elements such as `<input>` or `<select>`
17
+ // that have user changeable values.
18
+ // description:
19
+ // Each _FormValueMixin represents a single input value, and has a (possibly hidden) `<input>` element,
20
+ // to which it serializes it's input value, so that form submission (either normal submission or via FormBind?)
21
+ // works as expected.
22
+
23
+ // readOnly: Boolean
24
+ // Should this widget respond to user input?
25
+ // In markup, this is specified as "readOnly".
26
+ // Similar to disabled except readOnly form values are submitted.
27
+ readOnly: false,
28
+
29
+ _setReadOnlyAttr: function(/*Boolean*/ value){
30
+ // IE has a Caret Browsing mode (hit F7 to activate) where disabled textboxes can be modified
31
+ // focusNode enforced readonly if currently disabled to avoid this issue.
32
+ if (has('trident') && 'disabled' in this) {
33
+ domAttr.set(this.focusNode, 'readOnly', value || this.disabled);
34
+ } else {
35
+ domAttr.set(this.focusNode, 'readOnly', value);
36
+ }
37
+ this._set("readOnly", value);
38
+ },
39
+
40
+ postCreate: function(){
41
+ this.inherited(arguments);
42
+
43
+ // Update our reset value if it hasn't yet been set (because this.set()
44
+ // is only called when there *is* a value)
45
+ if(this._resetValue === undefined){
46
+ this._lastValueReported = this._resetValue = this.value;
47
+ }
48
+ },
49
+
50
+ _setValueAttr: function(/*anything*/ newValue, /*Boolean?*/ priorityChange){
51
+ // summary:
52
+ // Hook so set('value', value) works.
53
+ // description:
54
+ // Sets the value of the widget.
55
+ // If the value has changed, then fire onChange event, unless priorityChange
56
+ // is specified as null (or false?)
57
+ this._handleOnChange(newValue, priorityChange);
58
+ },
59
+
60
+ _handleOnChange: function(/*anything*/ newValue, /*Boolean?*/ priorityChange){
61
+ // summary:
62
+ // Called when the value of the widget has changed. Saves the new value in this.value,
63
+ // and calls onChange() if appropriate. See _FormWidget._handleOnChange() for details.
64
+ this._set("value", newValue);
65
+ this.inherited(arguments);
66
+ },
67
+
68
+ undo: function(){
69
+ // summary:
70
+ // Restore the value to the last value passed to onChange
71
+ this._setValueAttr(this._lastValueReported, false);
72
+ },
73
+
74
+ reset: function(){
75
+ // summary:
76
+ // Reset the widget's value to what it was at initialization time
77
+ this._hasBeenBlurred = false;
78
+ this._setValueAttr(this._resetValue, true);
79
+ }
80
+ });
81
+ });
@@ -0,0 +1,24 @@
1
+ //>>built
2
+ define("dijit/form/_FormValueWidget",["dojo/_base/declare","dojo/sniff","./_FormWidget","./_FormValueMixin"],function(_1,_2,_3,_4){
3
+ return _1("dijit.form._FormValueWidget",[_3,_4],{_layoutHackIE7:function(){
4
+ if(_2("ie")==7){
5
+ var _5=this.domNode;
6
+ var _6=_5.parentNode;
7
+ var _7=_5.firstChild||_5;
8
+ var _8=_7.style.filter;
9
+ var _9=this;
10
+ while(_6&&_6.clientHeight==0){
11
+ (function ping(){
12
+ var _a=_9.connect(_6,"onscroll",function(){
13
+ _9.disconnect(_a);
14
+ _7.style.filter=(new Date()).getMilliseconds();
15
+ _9.defer(function(){
16
+ _7.style.filter=_8;
17
+ });
18
+ });
19
+ })();
20
+ _6=_6.parentNode;
21
+ }
22
+ }
23
+ }});
24
+ });
@@ -0,0 +1,51 @@
1
+ define("dijit/form/_FormValueWidget", [
2
+ "dojo/_base/declare", // declare
3
+ "dojo/sniff", // has("ie")
4
+ "./_FormWidget",
5
+ "./_FormValueMixin"
6
+ ], function(declare, has, _FormWidget, _FormValueMixin){
7
+
8
+ // module:
9
+ // dijit/form/_FormValueWidget
10
+
11
+ return declare("dijit.form._FormValueWidget", [_FormWidget, _FormValueMixin], {
12
+ // summary:
13
+ // Base class for widgets corresponding to native HTML elements such as `<input>` or `<select>`
14
+ // that have user changeable values.
15
+ // description:
16
+ // Each _FormValueWidget represents a single input value, and has a (possibly hidden) `<input>` element,
17
+ // to which it serializes it's input value, so that form submission (either normal submission or via FormBind?)
18
+ // works as expected.
19
+
20
+ // Don't attempt to mixin the 'type', 'name' attributes here programatically -- they must be declared
21
+ // directly in the template as read by the parser in order to function. IE is known to specifically
22
+ // require the 'name' attribute at element creation time. See #8484, #8660.
23
+
24
+ _layoutHackIE7: function(){
25
+ // summary:
26
+ // Work around table sizing bugs on IE7 by forcing redraw
27
+
28
+ if(has("ie") == 7){ // fix IE7 layout bug when the widget is scrolled out of sight
29
+ var domNode = this.domNode;
30
+ var parent = domNode.parentNode;
31
+ var pingNode = domNode.firstChild || domNode; // target node most unlikely to have a custom filter
32
+ var origFilter = pingNode.style.filter; // save custom filter, most likely nothing
33
+ var _this = this;
34
+ while(parent && parent.clientHeight == 0){ // search for parents that haven't rendered yet
35
+ (function ping(){
36
+ var disconnectHandle = _this.connect(parent, "onscroll",
37
+ function(){
38
+ _this.disconnect(disconnectHandle); // only call once
39
+ pingNode.style.filter = (new Date()).getMilliseconds(); // set to anything that's unique
40
+ _this.defer(function(){
41
+ pingNode.style.filter = origFilter;
42
+ }); // restore custom filter, if any
43
+ }
44
+ );
45
+ })();
46
+ parent = parent.parentNode;
47
+ }
48
+ }
49
+ }
50
+ });
51
+ });
@@ -0,0 +1,22 @@
1
+ //>>built
2
+ define("dijit/form/_FormWidget",["dojo/_base/declare","dojo/sniff","dojo/_base/kernel","dojo/ready","../_Widget","../_CssStateMixin","../_TemplatedMixin","./_FormWidgetMixin"],function(_1,_2,_3,_4,_5,_6,_7,_8){
3
+ if(_2("dijit-legacy-requires")){
4
+ _4(0,function(){
5
+ var _9=["dijit/form/_FormValueWidget"];
6
+ require(_9);
7
+ });
8
+ }
9
+ return _1("dijit.form._FormWidget",[_5,_7,_6,_8],{setDisabled:function(_a){
10
+ _3.deprecated("setDisabled("+_a+") is deprecated. Use set('disabled',"+_a+") instead.","","2.0");
11
+ this.set("disabled",_a);
12
+ },setValue:function(_b){
13
+ _3.deprecated("dijit.form._FormWidget:setValue("+_b+") is deprecated. Use set('value',"+_b+") instead.","","2.0");
14
+ this.set("value",_b);
15
+ },getValue:function(){
16
+ _3.deprecated(this.declaredClass+"::getValue() is deprecated. Use get('value') instead.","","2.0");
17
+ return this.get("value");
18
+ },postMixInProperties:function(){
19
+ this.nameAttrSetting=(this.name&&!_2("msapp"))?("name=\""+this.name.replace(/"/g,"&quot;")+"\""):"";
20
+ this.inherited(arguments);
21
+ }});
22
+ });
@@ -0,0 +1,67 @@
1
+ define("dijit/form/_FormWidget", [
2
+ "dojo/_base/declare", // declare
3
+ "dojo/sniff", // has("dijit-legacy-requires"), has("msapp")
4
+ "dojo/_base/kernel", // kernel.deprecated
5
+ "dojo/ready",
6
+ "../_Widget",
7
+ "../_CssStateMixin",
8
+ "../_TemplatedMixin",
9
+ "./_FormWidgetMixin"
10
+ ], function(declare, has, kernel, ready, _Widget, _CssStateMixin, _TemplatedMixin, _FormWidgetMixin){
11
+
12
+ // module:
13
+ // dijit/form/_FormWidget
14
+
15
+ // Back compat w/1.6, remove for 2.0
16
+ if(has("dijit-legacy-requires")){
17
+ ready(0, function(){
18
+ var requires = ["dijit/form/_FormValueWidget"];
19
+ require(requires); // use indirection so modules not rolled into a build
20
+ });
21
+ }
22
+
23
+ return declare("dijit.form._FormWidget", [_Widget, _TemplatedMixin, _CssStateMixin, _FormWidgetMixin], {
24
+ // summary:
25
+ // Base class for widgets corresponding to native HTML elements such as `<checkbox>` or `<button>`,
26
+ // which can be children of a `<form>` node or a `dijit/form/Form` widget.
27
+ //
28
+ // description:
29
+ // Represents a single HTML element.
30
+ // All these widgets should have these attributes just like native HTML input elements.
31
+ // You can set them during widget construction or afterwards, via `dijit/_WidgetBase.set()`.
32
+ //
33
+ // They also share some common methods.
34
+
35
+ setDisabled: function(/*Boolean*/ disabled){
36
+ // summary:
37
+ // Deprecated. Use set('disabled', ...) instead.
38
+ kernel.deprecated("setDisabled(" + disabled + ") is deprecated. Use set('disabled'," + disabled + ") instead.", "", "2.0");
39
+ this.set('disabled', disabled);
40
+ },
41
+
42
+ setValue: function(/*String*/ value){
43
+ // summary:
44
+ // Deprecated. Use set('value', ...) instead.
45
+ kernel.deprecated("dijit.form._FormWidget:setValue(" + value + ") is deprecated. Use set('value'," + value + ") instead.", "", "2.0");
46
+ this.set('value', value);
47
+ },
48
+
49
+ getValue: function(){
50
+ // summary:
51
+ // Deprecated. Use get('value') instead.
52
+ kernel.deprecated(this.declaredClass + "::getValue() is deprecated. Use get('value') instead.", "", "2.0");
53
+ return this.get('value');
54
+ },
55
+
56
+ postMixInProperties: function(){
57
+ // Setup name=foo string to be referenced from the template (but only if a name has been specified).
58
+ // Unfortunately we can't use _setNameAttr to set the name in IE due to IE limitations, see #8484, #8660.
59
+ // But when IE6 and IE7 are desupported, then we probably don't need this anymore, so should remove it in 2.0.
60
+ // Also, don't do this for Windows 8 Store Apps because it causes a security exception (see #16452).
61
+ // Regarding escaping, see heading "Attribute values" in
62
+ // http://www.w3.org/TR/REC-html40/appendix/notes.html#h-B.3.2
63
+ this.nameAttrSetting = (this.name && !has("msapp")) ? ('name="' + this.name.replace(/"/g, "&quot;") + '"') : '';
64
+ this.inherited(arguments);
65
+ }
66
+ });
67
+ });
@@ -0,0 +1,111 @@
1
+ //>>built
2
+ define("dijit/form/_FormWidgetMixin",["dojo/_base/array","dojo/_base/declare","dojo/dom-attr","dojo/dom-style","dojo/_base/lang","dojo/mouse","dojo/on","dojo/sniff","dojo/window","../a11y"],function(_1,_2,_3,_4,_5,_6,on,_7,_8,_9){
3
+ return _2("dijit.form._FormWidgetMixin",null,{name:"",alt:"",value:"",type:"text","aria-label":"focusNode",tabIndex:"0",_setTabIndexAttr:"focusNode",disabled:false,intermediateChanges:false,scrollOnFocus:true,_setIdAttr:"focusNode",_setDisabledAttr:function(_a){
4
+ this._set("disabled",_a);
5
+ if(/^(button|input|select|textarea|optgroup|option|fieldset)$/i.test(this.focusNode.tagName)){
6
+ _3.set(this.focusNode,"disabled",_a);
7
+ if(_7("trident")&&"readOnly" in this){
8
+ _3.set(this.focusNode,"readonly",_a||this.readOnly);
9
+ }
10
+ }else{
11
+ this.focusNode.setAttribute("aria-disabled",_a?"true":"false");
12
+ }
13
+ if(this.valueNode){
14
+ _3.set(this.valueNode,"disabled",_a);
15
+ }
16
+ if(_a){
17
+ this._set("hovering",false);
18
+ this._set("active",false);
19
+ var _b="tabIndex" in this.attributeMap?this.attributeMap.tabIndex:("_setTabIndexAttr" in this)?this._setTabIndexAttr:"focusNode";
20
+ _1.forEach(_5.isArray(_b)?_b:[_b],function(_c){
21
+ var _d=this[_c];
22
+ if(_7("webkit")||_9.hasDefaultTabStop(_d)){
23
+ _d.setAttribute("tabIndex","-1");
24
+ }else{
25
+ _d.removeAttribute("tabIndex");
26
+ }
27
+ },this);
28
+ }else{
29
+ if(this.tabIndex!=""){
30
+ this.set("tabIndex",this.tabIndex);
31
+ }
32
+ }
33
+ },_onFocus:function(by){
34
+ if(by=="mouse"&&this.isFocusable()){
35
+ var _e=this.own(on(this.focusNode,"focus",function(){
36
+ _f.remove();
37
+ _e.remove();
38
+ }))[0];
39
+ var _10=_7("pointer-events")?"pointerup":_7("MSPointer")?"MSPointerUp":_7("touch-events")?"touchend, mouseup":"mouseup";
40
+ var _f=this.own(on(this.ownerDocumentBody,_10,_5.hitch(this,function(evt){
41
+ _f.remove();
42
+ _e.remove();
43
+ if(this.focused){
44
+ if(evt.type=="touchend"){
45
+ this.defer("focus");
46
+ }else{
47
+ this.focus();
48
+ }
49
+ }
50
+ })))[0];
51
+ }
52
+ if(this.scrollOnFocus){
53
+ this.defer(function(){
54
+ _8.scrollIntoView(this.domNode);
55
+ });
56
+ }
57
+ this.inherited(arguments);
58
+ },isFocusable:function(){
59
+ return !this.disabled&&this.focusNode&&(_4.get(this.domNode,"display")!="none");
60
+ },focus:function(){
61
+ if(!this.disabled&&this.focusNode.focus){
62
+ try{
63
+ this.focusNode.focus();
64
+ }
65
+ catch(e){
66
+ }
67
+ }
68
+ },compare:function(_11,_12){
69
+ if(typeof _11=="number"&&typeof _12=="number"){
70
+ return (isNaN(_11)&&isNaN(_12))?0:_11-_12;
71
+ }else{
72
+ if(_11>_12){
73
+ return 1;
74
+ }else{
75
+ if(_11<_12){
76
+ return -1;
77
+ }else{
78
+ return 0;
79
+ }
80
+ }
81
+ }
82
+ },onChange:function(){
83
+ },_onChangeActive:false,_handleOnChange:function(_13,_14){
84
+ if(this._lastValueReported==undefined&&(_14===null||!this._onChangeActive)){
85
+ this._resetValue=this._lastValueReported=_13;
86
+ }
87
+ this._pendingOnChange=this._pendingOnChange||(typeof _13!=typeof this._lastValueReported)||(this.compare(_13,this._lastValueReported)!=0);
88
+ if((this.intermediateChanges||_14||_14===undefined)&&this._pendingOnChange){
89
+ this._lastValueReported=_13;
90
+ this._pendingOnChange=false;
91
+ if(this._onChangeActive){
92
+ if(this._onChangeHandle){
93
+ this._onChangeHandle.remove();
94
+ }
95
+ this._onChangeHandle=this.defer(function(){
96
+ this._onChangeHandle=null;
97
+ this.onChange(_13);
98
+ });
99
+ }
100
+ }
101
+ },create:function(){
102
+ this.inherited(arguments);
103
+ this._onChangeActive=true;
104
+ },destroy:function(){
105
+ if(this._onChangeHandle){
106
+ this._onChangeHandle.remove();
107
+ this.onChange(this._lastValueReported);
108
+ }
109
+ this.inherited(arguments);
110
+ }});
111
+ });
@@ -0,0 +1,254 @@
1
+ define("dijit/form/_FormWidgetMixin", [
2
+ "dojo/_base/array", // array.forEach
3
+ "dojo/_base/declare", // declare
4
+ "dojo/dom-attr", // domAttr.set
5
+ "dojo/dom-style", // domStyle.get
6
+ "dojo/_base/lang", // lang.hitch lang.isArray
7
+ "dojo/mouse", // mouse.isLeft
8
+ "dojo/on",
9
+ "dojo/sniff", // has("webkit")
10
+ "dojo/window", // winUtils.scrollIntoView
11
+ "../a11y" // a11y.hasDefaultTabStop
12
+ ], function(array, declare, domAttr, domStyle, lang, mouse, on, has, winUtils, a11y){
13
+
14
+ // module:
15
+ // dijit/form/_FormWidgetMixin
16
+
17
+ return declare("dijit.form._FormWidgetMixin", null, {
18
+ // summary:
19
+ // Mixin for widgets corresponding to native HTML elements such as `<checkbox>` or `<button>`,
20
+ // which can be children of a `<form>` node or a `dijit/form/Form` widget.
21
+ //
22
+ // description:
23
+ // Represents a single HTML element.
24
+ // All these widgets should have these attributes just like native HTML input elements.
25
+ // You can set them during widget construction or afterwards, via `dijit/_WidgetBase.set()`.
26
+ //
27
+ // They also share some common methods.
28
+
29
+ // name: [const] String
30
+ // Name used when submitting form; same as "name" attribute or plain HTML elements
31
+ name: "",
32
+
33
+ // alt: String
34
+ // Corresponds to the native HTML `<input>` element's attribute.
35
+ alt: "",
36
+
37
+ // value: String
38
+ // Corresponds to the native HTML `<input>` element's attribute.
39
+ value: "",
40
+
41
+ // type: [const] String
42
+ // Corresponds to the native HTML `<input>` element's attribute.
43
+ type: "text",
44
+
45
+ // type: String
46
+ // Apply aria-label in markup to the widget's focusNode
47
+ "aria-label": "focusNode",
48
+
49
+ // tabIndex: String
50
+ // Order fields are traversed when user hits the tab key
51
+ tabIndex: "0",
52
+ _setTabIndexAttr: "focusNode", // force copy even when tabIndex default value, needed since Button is <span>
53
+
54
+ // disabled: Boolean
55
+ // Should this widget respond to user input?
56
+ // In markup, this is specified as "disabled='disabled'", or just "disabled".
57
+ disabled: false,
58
+
59
+ // intermediateChanges: Boolean
60
+ // Fires onChange for each value change or only on demand
61
+ intermediateChanges: false,
62
+
63
+ // scrollOnFocus: Boolean
64
+ // On focus, should this widget scroll into view?
65
+ scrollOnFocus: true,
66
+
67
+ // Override _WidgetBase mapping id to this.domNode, needs to be on focusNode so <label> etc.
68
+ // works with screen reader
69
+ _setIdAttr: "focusNode",
70
+
71
+ _setDisabledAttr: function(/*Boolean*/ value){
72
+ this._set("disabled", value);
73
+
74
+ // Set disabled property if focusNode is an <input>, but aria-disabled attribute if focusNode is a <span>.
75
+ // Can't use "disabled" in this.focusNode as a test because on IE, that's true for all nodes.
76
+ if(/^(button|input|select|textarea|optgroup|option|fieldset)$/i.test(this.focusNode.tagName)){
77
+ domAttr.set(this.focusNode, 'disabled', value);
78
+ // IE has a Caret Browsing mode (hit F7 to activate) where disabled textboxes can be modified
79
+ // textboxes marked readonly if disabled to avoid this issue.
80
+ if (has('trident') && 'readOnly' in this) {
81
+ domAttr.set(this.focusNode, 'readonly', value || this.readOnly);
82
+ }
83
+ }else{
84
+ this.focusNode.setAttribute("aria-disabled", value ? "true" : "false");
85
+ }
86
+
87
+ // And also set disabled on the hidden <input> node
88
+ if(this.valueNode){
89
+ domAttr.set(this.valueNode, 'disabled', value);
90
+ }
91
+
92
+ if(value){
93
+ // reset these, because after the domNode is disabled, we can no longer receive
94
+ // mouse related events, see #4200
95
+ this._set("hovering", false);
96
+ this._set("active", false);
97
+
98
+ // clear tab stop(s) on this widget's focusable node(s) (ComboBox has two focusable nodes)
99
+ var attachPointNames = "tabIndex" in this.attributeMap ? this.attributeMap.tabIndex :
100
+ ("_setTabIndexAttr" in this) ? this._setTabIndexAttr : "focusNode";
101
+ array.forEach(lang.isArray(attachPointNames) ? attachPointNames : [attachPointNames], function(attachPointName){
102
+ var node = this[attachPointName];
103
+ // complex code because tabIndex=-1 on a <div> doesn't work on FF
104
+ if(has("webkit") || a11y.hasDefaultTabStop(node)){ // see #11064 about webkit bug
105
+ node.setAttribute('tabIndex', "-1");
106
+ }else{
107
+ node.removeAttribute('tabIndex');
108
+ }
109
+ }, this);
110
+ }else{
111
+ if(this.tabIndex != ""){
112
+ this.set('tabIndex', this.tabIndex);
113
+ }
114
+ }
115
+ },
116
+
117
+ _onFocus: function(/*String*/ by){
118
+ // If user clicks on the widget, even if the mouse is released outside of it,
119
+ // this widget's focusNode should get focus (to mimic native browser behavior).
120
+ // Browsers often need help to make sure the focus via mouse actually gets to the focusNode.
121
+ // TODO: consider removing all of this for 2.0 or sooner, see #16622 etc.
122
+ if(by == "mouse" && this.isFocusable()){
123
+ // IE exhibits strange scrolling behavior when refocusing a node so only do it when !focused.
124
+ var focusHandle = this.own(on(this.focusNode, "focus", function(){
125
+ mouseUpHandle.remove();
126
+ focusHandle.remove();
127
+ }))[0];
128
+ // Set a global event to handle mouseup, so it fires properly
129
+ // even if the cursor leaves this.domNode before the mouse up event.
130
+ var event = has("pointer-events") ? "pointerup" : has("MSPointer") ? "MSPointerUp" :
131
+ has("touch-events") ? "touchend, mouseup" : // seems like overkill but see #16622, #16725
132
+ "mouseup";
133
+ var mouseUpHandle = this.own(on(this.ownerDocumentBody, event, lang.hitch(this, function(evt){
134
+ mouseUpHandle.remove();
135
+ focusHandle.remove();
136
+ // if here, then the mousedown did not focus the focusNode as the default action
137
+ if(this.focused){
138
+ if(evt.type == "touchend"){
139
+ this.defer("focus"); // native focus hasn't occurred yet
140
+ }else{
141
+ this.focus(); // native focus already occurred on mousedown
142
+ }
143
+ }
144
+ })))[0];
145
+ }
146
+ if(this.scrollOnFocus){
147
+ this.defer(function(){
148
+ winUtils.scrollIntoView(this.domNode);
149
+ }); // without defer, the input caret position can change on mouse click
150
+ }
151
+ this.inherited(arguments);
152
+ },
153
+
154
+ isFocusable: function(){
155
+ // summary:
156
+ // Tells if this widget is focusable or not. Used internally by dijit.
157
+ // tags:
158
+ // protected
159
+ return !this.disabled && this.focusNode && (domStyle.get(this.domNode, "display") != "none");
160
+ },
161
+
162
+ focus: function(){
163
+ // summary:
164
+ // Put focus on this widget
165
+ if(!this.disabled && this.focusNode.focus){
166
+ try{
167
+ this.focusNode.focus();
168
+ }catch(e){
169
+ }
170
+ /*squelch errors from hidden nodes*/
171
+ }
172
+ },
173
+
174
+ compare: function(/*anything*/ val1, /*anything*/ val2){
175
+ // summary:
176
+ // Compare 2 values (as returned by get('value') for this widget).
177
+ // tags:
178
+ // protected
179
+ if(typeof val1 == "number" && typeof val2 == "number"){
180
+ return (isNaN(val1) && isNaN(val2)) ? 0 : val1 - val2;
181
+ }else if(val1 > val2){
182
+ return 1;
183
+ }else if(val1 < val2){
184
+ return -1;
185
+ }else{
186
+ return 0;
187
+ }
188
+ },
189
+
190
+ onChange: function(/*===== newValue =====*/){
191
+ // summary:
192
+ // Callback when this widget's value is changed.
193
+ // tags:
194
+ // callback
195
+ },
196
+
197
+ // _onChangeActive: [private] Boolean
198
+ // Indicates that changes to the value should call onChange() callback.
199
+ // This is false during widget initialization, to avoid calling onChange()
200
+ // when the initial value is set.
201
+ _onChangeActive: false,
202
+
203
+ _handleOnChange: function(/*anything*/ newValue, /*Boolean?*/ priorityChange){
204
+ // summary:
205
+ // Called when the value of the widget is set. Calls onChange() if appropriate
206
+ // newValue:
207
+ // the new value
208
+ // priorityChange:
209
+ // For a slider, for example, dragging the slider is priorityChange==false,
210
+ // but on mouse up, it's priorityChange==true. If intermediateChanges==false,
211
+ // onChange is only called form priorityChange=true events.
212
+ // tags:
213
+ // private
214
+ if(this._lastValueReported == undefined && (priorityChange === null || !this._onChangeActive)){
215
+ // this block executes not for a change, but during initialization,
216
+ // and is used to store away the original value (or for ToggleButton, the original checked state)
217
+ this._resetValue = this._lastValueReported = newValue;
218
+ }
219
+ this._pendingOnChange = this._pendingOnChange
220
+ || (typeof newValue != typeof this._lastValueReported)
221
+ || (this.compare(newValue, this._lastValueReported) != 0);
222
+ if((this.intermediateChanges || priorityChange || priorityChange === undefined) && this._pendingOnChange){
223
+ this._lastValueReported = newValue;
224
+ this._pendingOnChange = false;
225
+ if(this._onChangeActive){
226
+ if(this._onChangeHandle){
227
+ this._onChangeHandle.remove();
228
+ }
229
+ // defer allows hidden value processing to run and
230
+ // also the onChange handler can safely adjust focus, etc
231
+ this._onChangeHandle = this.defer(
232
+ function(){
233
+ this._onChangeHandle = null;
234
+ this.onChange(newValue);
235
+ }); // try to collapse multiple onChange's fired faster than can be processed
236
+ }
237
+ }
238
+ },
239
+
240
+ create: function(){
241
+ // Overrides _Widget.create()
242
+ this.inherited(arguments);
243
+ this._onChangeActive = true;
244
+ },
245
+
246
+ destroy: function(){
247
+ if(this._onChangeHandle){ // destroy called before last onChange has fired
248
+ this._onChangeHandle.remove();
249
+ this.onChange(this._lastValueReported);
250
+ }
251
+ this.inherited(arguments);
252
+ }
253
+ });
254
+ });
@@ -0,0 +1,32 @@
1
+ //>>built
2
+ define("dijit/form/_ToggleButtonMixin",["dojo/_base/declare","dojo/dom-attr"],function(_1,_2){
3
+ return _1("dijit.form._ToggleButtonMixin",null,{checked:false,_aria_attr:"aria-pressed",_onClick:function(_3){
4
+ var _4=this.checked;
5
+ this._set("checked",!_4);
6
+ var _5=this.inherited(arguments);
7
+ this.set("checked",_5?this.checked:_4);
8
+ return _5;
9
+ },_setCheckedAttr:function(_6,_7){
10
+ this._set("checked",_6);
11
+ var _8=this.focusNode||this.domNode;
12
+ if(this._created){
13
+ if(_2.get(_8,"checked")!=!!_6){
14
+ _2.set(_8,"checked",!!_6);
15
+ }
16
+ }
17
+ _8.setAttribute(this._aria_attr,String(_6));
18
+ this._handleOnChange(_6,_7);
19
+ },postCreate:function(){
20
+ this.inherited(arguments);
21
+ var _9=this.focusNode||this.domNode;
22
+ if(this.checked){
23
+ _9.setAttribute("checked","checked");
24
+ }
25
+ if(this._resetValue===undefined){
26
+ this._lastValueReported=this._resetValue=this.checked;
27
+ }
28
+ },reset:function(){
29
+ this._hasBeenBlurred=false;
30
+ this.set("checked",this.params.checked||false);
31
+ }});
32
+ });