@datagrok/helm 2.3.2 → 2.3.4

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 (324) hide show
  1. package/CHANGELOG.md +20 -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 +211 -69
  13. package/src/package.ts +10 -71
  14. package/src/tests/findMonomers-tests.ts +2 -1
  15. package/src/tests/get-monomer-tests.ts +1 -49
  16. package/src/tests/helm-input-tests.ts +31 -20
  17. package/src/utils/get-monomer.ts +49 -1
  18. package/src/utils/helm-grid-cell-renderer.ts +8 -9
  19. package/src/utils/index.ts +2 -3
  20. package/src/widgets/helm-input.ts +4 -4
  21. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js +63 -0
  22. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js.uncompressed.js +116 -0
  23. package/vendor/dojo-1.10.10/dijit/Destroyable.js +35 -0
  24. package/vendor/dojo-1.10.10/dijit/Destroyable.js.uncompressed.js +83 -0
  25. package/vendor/dojo-1.10.10/dijit/Tooltip.js +240 -0
  26. package/vendor/dojo-1.10.10/dijit/Tooltip.js.uncompressed.js +612 -0
  27. package/vendor/dojo-1.10.10/dijit/Viewport.js +44 -0
  28. package/vendor/dojo-1.10.10/dijit/Viewport.js.uncompressed.js +87 -0
  29. package/vendor/dojo-1.10.10/dijit/WidgetSet.js +76 -0
  30. package/vendor/dojo-1.10.10/dijit/WidgetSet.js.uncompressed.js +247 -0
  31. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js +94 -0
  32. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js.uncompressed.js +238 -0
  33. package/vendor/dojo-1.10.10/dijit/_Contained.js +17 -0
  34. package/vendor/dojo-1.10.10/dijit/_Contained.js.uncompressed.js +56 -0
  35. package/vendor/dojo-1.10.10/dijit/_Container.js +47 -0
  36. package/vendor/dojo-1.10.10/dijit/_Container.js.uncompressed.js +108 -0
  37. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js +198 -0
  38. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js.uncompressed.js +372 -0
  39. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js +11 -0
  40. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js.uncompressed.js +66 -0
  41. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js +188 -0
  42. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js.uncompressed.js +472 -0
  43. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js +8 -0
  44. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js.uncompressed.js +31 -0
  45. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js +90 -0
  46. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js.uncompressed.js +205 -0
  47. package/vendor/dojo-1.10.10/dijit/_Widget.js +66 -0
  48. package/vendor/dojo-1.10.10/dijit/_Widget.js.uncompressed.js +352 -0
  49. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js +353 -0
  50. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js.uncompressed.js +1200 -0
  51. package/vendor/dojo-1.10.10/dijit/_base/focus.js +68 -0
  52. package/vendor/dojo-1.10.10/dijit/_base/focus.js.uncompressed.js +207 -0
  53. package/vendor/dojo-1.10.10/dijit/_base/manager.js +10 -0
  54. package/vendor/dojo-1.10.10/dijit/_base/manager.js.uncompressed.js +35 -0
  55. package/vendor/dojo-1.10.10/dijit/_base/place.js +52 -0
  56. package/vendor/dojo-1.10.10/dijit/_base/place.js.uncompressed.js +131 -0
  57. package/vendor/dojo-1.10.10/dijit/_base/popup.js +23 -0
  58. package/vendor/dojo-1.10.10/dijit/_base/popup.js.uncompressed.js +58 -0
  59. package/vendor/dojo-1.10.10/dijit/_base/scroll.js +6 -0
  60. package/vendor/dojo-1.10.10/dijit/_base/scroll.js.uncompressed.js +22 -0
  61. package/vendor/dojo-1.10.10/dijit/_base/sniff.js +3 -0
  62. package/vendor/dojo-1.10.10/dijit/_base/sniff.js.uncompressed.js +12 -0
  63. package/vendor/dojo-1.10.10/dijit/_base/typematic.js +3 -0
  64. package/vendor/dojo-1.10.10/dijit/_base/typematic.js.uncompressed.js +10 -0
  65. package/vendor/dojo-1.10.10/dijit/_base/wai.js +32 -0
  66. package/vendor/dojo-1.10.10/dijit/_base/wai.js.uncompressed.js +109 -0
  67. package/vendor/dojo-1.10.10/dijit/_base/window.js +6 -0
  68. package/vendor/dojo-1.10.10/dijit/_base/window.js.uncompressed.js +18 -0
  69. package/vendor/dojo-1.10.10/dijit/_base.js +4 -0
  70. package/vendor/dojo-1.10.10/dijit/a11y.js +109 -0
  71. package/vendor/dojo-1.10.10/dijit/a11y.js.uncompressed.js +191 -0
  72. package/vendor/dojo-1.10.10/dijit/a11yclick.js +66 -0
  73. package/vendor/dojo-1.10.10/dijit/a11yclick.js.uncompressed.js +139 -0
  74. package/vendor/dojo-1.10.10/dijit/focus.js +188 -0
  75. package/vendor/dojo-1.10.10/dijit/focus.js.uncompressed.js +371 -0
  76. package/vendor/dojo-1.10.10/dijit/form/Button.js +49 -0
  77. package/vendor/dojo-1.10.10/dijit/form/Button.js.uncompressed.js +130 -0
  78. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js +4 -0
  79. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js.uncompressed.js +27 -0
  80. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js +21 -0
  81. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js.uncompressed.js +86 -0
  82. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js +38 -0
  83. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js.uncompressed.js +102 -0
  84. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js +7 -0
  85. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js.uncompressed.js +26 -0
  86. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js +50 -0
  87. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js.uncompressed.js +116 -0
  88. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js +26 -0
  89. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js.uncompressed.js +81 -0
  90. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js +24 -0
  91. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js.uncompressed.js +51 -0
  92. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js +22 -0
  93. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js.uncompressed.js +67 -0
  94. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js +111 -0
  95. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js.uncompressed.js +254 -0
  96. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js +32 -0
  97. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js.uncompressed.js +69 -0
  98. package/vendor/dojo-1.10.10/dijit/hccss.js +9 -0
  99. package/vendor/dojo-1.10.10/dijit/hccss.js.uncompressed.js +21 -0
  100. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js +215 -0
  101. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js.uncompressed.js +550 -0
  102. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js +7 -0
  103. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js.uncompressed.js +25 -0
  104. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js +235 -0
  105. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js.uncompressed.js +653 -0
  106. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js +171 -0
  107. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js.uncompressed.js +411 -0
  108. package/vendor/dojo-1.10.10/dijit/layout/StackController.js +194 -0
  109. package/vendor/dojo-1.10.10/dijit/layout/StackController.js.uncompressed.js +410 -0
  110. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js +99 -0
  111. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js.uncompressed.js +236 -0
  112. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js +47 -0
  113. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js.uncompressed.js +190 -0
  114. package/vendor/dojo-1.10.10/dijit/layout/utils.js +77 -0
  115. package/vendor/dojo-1.10.10/dijit/layout/utils.js.uncompressed.js +151 -0
  116. package/vendor/dojo-1.10.10/dijit/main.js +4 -0
  117. package/vendor/dojo-1.10.10/dijit/main.js.uncompressed.js +16 -0
  118. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js +2 -0
  119. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js.uncompressed.js +21 -0
  120. package/vendor/dojo-1.10.10/dijit/nls/loading.js +2 -0
  121. package/vendor/dojo-1.10.10/dijit/nls/loading.js.uncompressed.js +47 -0
  122. package/vendor/dojo-1.10.10/dijit/place.js +142 -0
  123. package/vendor/dojo-1.10.10/dijit/place.js.uncompressed.js +407 -0
  124. package/vendor/dojo-1.10.10/dijit/popup.js +162 -0
  125. package/vendor/dojo-1.10.10/dijit/popup.js.uncompressed.js +441 -0
  126. package/vendor/dojo-1.10.10/dijit/registry.js +79 -0
  127. package/vendor/dojo-1.10.10/dijit/registry.js.uncompressed.js +159 -0
  128. package/vendor/dojo-1.10.10/dijit/selection.js +364 -0
  129. package/vendor/dojo-1.10.10/dijit/selection.js.uncompressed.js +525 -0
  130. package/vendor/dojo-1.10.10/dijit/typematic.js +96 -0
  131. package/vendor/dojo-1.10.10/dijit/typematic.js.uncompressed.js +211 -0
  132. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js +195 -0
  133. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js.uncompressed.js +761 -0
  134. package/vendor/dojo-1.10.10/dojo/Stateful.js +90 -0
  135. package/vendor/dojo-1.10.10/dojo/Stateful.js.uncompressed.js +218 -0
  136. package/vendor/dojo-1.10.10/dojo/_base/url.js +87 -0
  137. package/vendor/dojo-1.10.10/dojo/_base/url.js.uncompressed.js +109 -0
  138. package/vendor/dojo-1.10.10/dojo/cache.js +9 -0
  139. package/vendor/dojo-1.10.10/dojo/cache.js.uncompressed.js +7 -0
  140. package/vendor/dojo-1.10.10/dojo/colors.js +74 -0
  141. package/vendor/dojo-1.10.10/dojo/colors.js.uncompressed.js +232 -0
  142. package/vendor/dojo-1.10.10/dojo/cookie.js +48 -0
  143. package/vendor/dojo-1.10.10/dojo/cookie.js.uncompressed.js +98 -0
  144. package/vendor/dojo-1.10.10/dojo/date/stamp.js +82 -0
  145. package/vendor/dojo-1.10.10/dojo/date/stamp.js.uncompressed.js +144 -0
  146. package/vendor/dojo-1.10.10/dojo/dojo.js +7 -0
  147. package/vendor/dojo-1.10.10/dojo/dojo.js.uncompressed.js +18680 -0
  148. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js +27 -0
  149. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js.uncompressed.js +101 -0
  150. package/vendor/dojo-1.10.10/dojo/fx/easing.js +165 -0
  151. package/vendor/dojo-1.10.10/dojo/fx/easing.js.uncompressed.js +276 -0
  152. package/vendor/dojo-1.10.10/dojo/fx.js +271 -0
  153. package/vendor/dojo-1.10.10/dojo/fx.js.uncompressed.js +443 -0
  154. package/vendor/dojo-1.10.10/dojo/hccss.js +26 -0
  155. package/vendor/dojo-1.10.10/dojo/hccss.js.uncompressed.js +52 -0
  156. package/vendor/dojo-1.10.10/dojo/html.js +161 -0
  157. package/vendor/dojo-1.10.10/dojo/html.js.uncompressed.js +370 -0
  158. package/vendor/dojo-1.10.10/dojo/io/iframe.js +71 -0
  159. package/vendor/dojo-1.10.10/dojo/io/iframe.js.uncompressed.js +190 -0
  160. package/vendor/dojo-1.10.10/dojo/io/script.js +112 -0
  161. package/vendor/dojo-1.10.10/dojo/io/script.js.uncompressed.js +280 -0
  162. package/vendor/dojo-1.10.10/dojo/parser.js +437 -0
  163. package/vendor/dojo-1.10.10/dojo/parser.js.uncompressed.js +915 -0
  164. package/vendor/dojo-1.10.10/dojo/promise/all.js +59 -0
  165. package/vendor/dojo-1.10.10/dojo/promise/all.js.uncompressed.js +77 -0
  166. package/vendor/dojo-1.10.10/dojo/regexp.js +32 -0
  167. package/vendor/dojo-1.10.10/dojo/regexp.js.uncompressed.js +70 -0
  168. package/vendor/dojo-1.10.10/dojo/request/iframe.js +291 -0
  169. package/vendor/dojo-1.10.10/dojo/request/iframe.js.uncompressed.js +438 -0
  170. package/vendor/dojo-1.10.10/dojo/request/script.js +129 -0
  171. package/vendor/dojo-1.10.10/dojo/request/script.js.uncompressed.js +237 -0
  172. package/vendor/dojo-1.10.10/dojo/require.js +11 -0
  173. package/vendor/dojo-1.10.10/dojo/require.js.uncompressed.js +7 -0
  174. package/vendor/dojo-1.10.10/dojo/resources/blank.gif +0 -0
  175. package/vendor/dojo-1.10.10/dojo/string.js +67 -0
  176. package/vendor/dojo-1.10.10/dojo/string.js.uncompressed.js +181 -0
  177. package/vendor/dojo-1.10.10/dojo/touch.js +191 -0
  178. package/vendor/dojo-1.10.10/dojo/touch.js.uncompressed.js +468 -0
  179. package/vendor/dojo-1.10.10/dojo/uacss.js +36 -0
  180. package/vendor/dojo-1.10.10/dojo/uacss.js.uncompressed.js +85 -0
  181. package/vendor/dojo-1.10.10/dojo/window.js +141 -0
  182. package/vendor/dojo-1.10.10/dojo/window.js.uncompressed.js +241 -0
  183. package/vendor/dojo-1.10.10/dojox/charting/Chart.js +626 -0
  184. package/vendor/dojo-1.10.10/dojox/charting/Chart.js.uncompressed.js +1220 -0
  185. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js +5 -0
  186. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js.uncompressed.js +16 -0
  187. package/vendor/dojo-1.10.10/dojox/charting/Element.js +247 -0
  188. package/vendor/dojo-1.10.10/dojox/charting/Element.js.uncompressed.js +402 -0
  189. package/vendor/dojo-1.10.10/dojox/charting/Series.js +24 -0
  190. package/vendor/dojo-1.10.10/dojox/charting/Series.js.uncompressed.js +58 -0
  191. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js +191 -0
  192. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js.uncompressed.js +577 -0
  193. package/vendor/dojo-1.10.10/dojox/charting/Theme.js +42 -0
  194. package/vendor/dojo-1.10.10/dojox/charting/Theme.js.uncompressed.js +120 -0
  195. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js +11 -0
  196. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js.uncompressed.js +36 -0
  197. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js +77 -0
  198. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js.uncompressed.js +144 -0
  199. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js +58 -0
  200. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js.uncompressed.js +123 -0
  201. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js +54 -0
  202. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js.uncompressed.js +124 -0
  203. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js +28 -0
  204. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js.uncompressed.js +74 -0
  205. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js +116 -0
  206. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js.uncompressed.js +178 -0
  207. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js +24 -0
  208. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js.uncompressed.js +83 -0
  209. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js +557 -0
  210. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js.uncompressed.js +980 -0
  211. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js +65 -0
  212. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js.uncompressed.js +224 -0
  213. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js +91 -0
  214. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js.uncompressed.js +164 -0
  215. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js +7 -0
  216. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js.uncompressed.js +14 -0
  217. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js +168 -0
  218. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js.uncompressed.js +311 -0
  219. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js +61 -0
  220. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js.uncompressed.js +161 -0
  221. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js +141 -0
  222. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js.uncompressed.js +242 -0
  223. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js +126 -0
  224. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js.uncompressed.js +243 -0
  225. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js +108 -0
  226. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js.uncompressed.js +290 -0
  227. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js +13 -0
  228. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js.uncompressed.js +14 -0
  229. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js +13 -0
  230. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js.uncompressed.js +14 -0
  231. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js +153 -0
  232. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js.uncompressed.js +249 -0
  233. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js +253 -0
  234. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js.uncompressed.js +472 -0
  235. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js +182 -0
  236. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js.uncompressed.js +356 -0
  237. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js +6 -0
  238. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js.uncompressed.js +12 -0
  239. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js +6 -0
  240. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js.uncompressed.js +12 -0
  241. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js +7 -0
  242. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js.uncompressed.js +13 -0
  243. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js +110 -0
  244. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js.uncompressed.js +208 -0
  245. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js +303 -0
  246. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js.uncompressed.js +547 -0
  247. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js +134 -0
  248. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js.uncompressed.js +207 -0
  249. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js +299 -0
  250. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js.uncompressed.js +537 -0
  251. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js +24 -0
  252. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js.uncompressed.js +44 -0
  253. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js +7 -0
  254. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js.uncompressed.js +14 -0
  255. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js +22 -0
  256. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js.uncompressed.js +33 -0
  257. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js +20 -0
  258. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js.uncompressed.js +31 -0
  259. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js +6 -0
  260. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js.uncompressed.js +12 -0
  261. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js +68 -0
  262. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js.uncompressed.js +120 -0
  263. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js +209 -0
  264. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js.uncompressed.js +214 -0
  265. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js +76 -0
  266. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js.uncompressed.js +77 -0
  267. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js +59 -0
  268. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js.uncompressed.js +70 -0
  269. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js +220 -0
  270. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js.uncompressed.js +262 -0
  271. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js +23 -0
  272. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js.uncompressed.js +36 -0
  273. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js +39 -0
  274. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js.uncompressed.js +106 -0
  275. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js +5 -0
  276. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js.uncompressed.js +12 -0
  277. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js +4 -0
  278. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js.uncompressed.js +3 -0
  279. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js +102 -0
  280. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js.uncompressed.js +165 -0
  281. package/vendor/dojo-1.10.10/dojox/color/Palette.js +163 -0
  282. package/vendor/dojo-1.10.10/dojox/color/Palette.js.uncompressed.js +460 -0
  283. package/vendor/dojo-1.10.10/dojox/color/_base.js +174 -0
  284. package/vendor/dojo-1.10.10/dojox/color/_base.js.uncompressed.js +196 -0
  285. package/vendor/dojo-1.10.10/dojox/gfx/fx.js +297 -0
  286. package/vendor/dojo-1.10.10/dojox/gfx/fx.js.uncompressed.js +350 -0
  287. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js +63 -0
  288. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js.uncompressed.js +91 -0
  289. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js +170 -0
  290. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js.uncompressed.js +501 -0
  291. package/vendor/dojo-1.10.10/dojox/gfx/path.js +319 -0
  292. package/vendor/dojo-1.10.10/dojox/gfx/path.js.uncompressed.js +478 -0
  293. package/vendor/dojo-1.10.10/dojox/gfx/shape.js +459 -0
  294. package/vendor/dojo-1.10.10/dojox/gfx/shape.js.uncompressed.js +1091 -0
  295. package/vendor/dojo-1.10.10/dojox/gfx/svg.js +662 -0
  296. package/vendor/dojo-1.10.10/dojox/gfx/svg.js.uncompressed.js +1023 -0
  297. package/vendor/dojo-1.10.10/dojox/gfx/utils.js +199 -0
  298. package/vendor/dojo-1.10.10/dojox/gfx/utils.js.uncompressed.js +322 -0
  299. package/vendor/dojo-1.10.10/dojox/gfx.js +2 -0
  300. package/vendor/dojo-1.10.10/dojox/gfx.js.uncompressed.js +1136 -0
  301. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js +151 -0
  302. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js.uncompressed.js +169 -0
  303. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js +93 -0
  304. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js.uncompressed.js +125 -0
  305. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js +81 -0
  306. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js.uncompressed.js +132 -0
  307. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js +54 -0
  308. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js.uncompressed.js +78 -0
  309. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js +61 -0
  310. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js.uncompressed.js +77 -0
  311. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js +87 -0
  312. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js.uncompressed.js +107 -0
  313. package/vendor/dojo-1.10.10/dojox/lang/functional.js +4 -0
  314. package/vendor/dojo-1.10.10/dojox/lang/functional.js.uncompressed.js +3 -0
  315. package/vendor/dojo-1.10.10/dojox/lang/utils.js +86 -0
  316. package/vendor/dojo-1.10.10/dojox/lang/utils.js.uncompressed.js +121 -0
  317. package/vendor/dojo-1.10.10/dojox/main.js +4 -0
  318. package/vendor/dojo-1.10.10/dojox/main.js.uncompressed.js +14 -0
  319. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js +112 -0
  320. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js.uncompressed.js +208 -0
  321. package/vendor/dojo-1.10.10/dojox/storage/Provider.js +62 -0
  322. package/vendor/dojo-1.10.10/dojox/storage/Provider.js.uncompressed.js +344 -0
  323. package/vendor/dojo-1.10.10/dojox/storage/manager.js +110 -0
  324. package/vendor/dojo-1.10.10/dojox/storage/manager.js.uncompressed.js +263 -0
@@ -0,0 +1,205 @@
1
+ define("dijit/_TemplatedMixin", [
2
+ "dojo/cache", // dojo.cache
3
+ "dojo/_base/declare", // declare
4
+ "dojo/dom-construct", // domConstruct.destroy, domConstruct.toDom
5
+ "dojo/_base/lang", // lang.getObject
6
+ "dojo/on",
7
+ "dojo/sniff", // has("ie")
8
+ "dojo/string", // string.substitute string.trim
9
+ "./_AttachMixin"
10
+ ], function(cache, declare, domConstruct, lang, on, has, string, _AttachMixin){
11
+
12
+ // module:
13
+ // dijit/_TemplatedMixin
14
+
15
+ var _TemplatedMixin = declare("dijit._TemplatedMixin", _AttachMixin, {
16
+ // summary:
17
+ // Mixin for widgets that are instantiated from a template
18
+
19
+ // templateString: [protected] String
20
+ // A string that represents the widget template.
21
+ // Use in conjunction with dojo.cache() to load from a file.
22
+ templateString: null,
23
+
24
+ // templatePath: [protected deprecated] String
25
+ // Path to template (HTML file) for this widget relative to dojo.baseUrl.
26
+ // Deprecated: use templateString with require([... "dojo/text!..."], ...) instead
27
+ templatePath: null,
28
+
29
+ // skipNodeCache: [protected] Boolean
30
+ // If using a cached widget template nodes poses issues for a
31
+ // particular widget class, it can set this property to ensure
32
+ // that its template is always re-built from a string
33
+ _skipNodeCache: false,
34
+
35
+ /*=====
36
+ // _rendered: Boolean
37
+ // Not normally use, but this flag can be set by the app if the server has already rendered the template,
38
+ // i.e. already inlining the template for the widget into the main page. Reduces _TemplatedMixin to
39
+ // just function like _AttachMixin.
40
+ _rendered: false,
41
+ =====*/
42
+
43
+ // Set _AttachMixin.searchContainerNode to true for back-compat for widgets that have data-dojo-attach-point's
44
+ // and events inside this.containerNode. Remove for 2.0.
45
+ searchContainerNode: true,
46
+
47
+ _stringRepl: function(tmpl){
48
+ // summary:
49
+ // Does substitution of ${foo} type properties in template string
50
+ // tags:
51
+ // private
52
+ var className = this.declaredClass, _this = this;
53
+ // Cache contains a string because we need to do property replacement
54
+ // do the property replacement
55
+ return string.substitute(tmpl, this, function(value, key){
56
+ if(key.charAt(0) == '!'){ value = lang.getObject(key.substr(1), false, _this); }
57
+ if(typeof value == "undefined"){ throw new Error(className+" template:"+key); } // a debugging aide
58
+ if(value == null){ return ""; }
59
+
60
+ // Substitution keys beginning with ! will skip the transform step,
61
+ // in case a user wishes to insert unescaped markup, e.g. ${!foo}
62
+ return key.charAt(0) == "!" ? value : this._escapeValue("" + value);
63
+ }, this);
64
+ },
65
+
66
+ _escapeValue: function(/*String*/ val){
67
+ // summary:
68
+ // Escape a value to be inserted into the template, either into an attribute value
69
+ // (ex: foo="${bar}") or as inner text of an element (ex: <span>${foo}</span>)
70
+
71
+ // Safer substitution, see heading "Attribute values" in
72
+ // http://www.w3.org/TR/REC-html40/appendix/notes.html#h-B.3.2
73
+ // and also https://www.owasp.org/index.php/XSS_%28Cross_Site_Scripting%29_Prevention_Cheat_Sheet#RULE_.231_-_HTML_Escape_Before_Inserting_Untrusted_Data_into_HTML_Element_Content
74
+ return val.replace(/["'<>&]/g, function(val){
75
+ return {
76
+ "&": "&amp;",
77
+ "<": "&lt;",
78
+ ">": "&gt;",
79
+ "\"": "&quot;",
80
+ "'": "&#x27;"
81
+ }[val];
82
+ });
83
+ },
84
+
85
+ buildRendering: function(){
86
+ // summary:
87
+ // Construct the UI for this widget from a template, setting this.domNode.
88
+ // tags:
89
+ // protected
90
+
91
+ if(!this._rendered){
92
+ if(!this.templateString){
93
+ this.templateString = cache(this.templatePath, {sanitize: true});
94
+ }
95
+
96
+ // Lookup cached version of template, and download to cache if it
97
+ // isn't there already. Returns either a DomNode or a string, depending on
98
+ // whether or not the template contains ${foo} replacement parameters.
99
+ var cached = _TemplatedMixin.getCachedTemplate(this.templateString, this._skipNodeCache, this.ownerDocument);
100
+
101
+ var node;
102
+ if(lang.isString(cached)){
103
+ node = domConstruct.toDom(this._stringRepl(cached), this.ownerDocument);
104
+ if(node.nodeType != 1){
105
+ // Flag common problems such as templates with multiple top level nodes (nodeType == 11)
106
+ throw new Error("Invalid template: " + cached);
107
+ }
108
+ }else{
109
+ // if it's a node, all we have to do is clone it
110
+ node = cached.cloneNode(true);
111
+ }
112
+
113
+ this.domNode = node;
114
+ }
115
+
116
+ // Call down to _WidgetBase.buildRendering() to get base classes assigned
117
+ // TODO: change the baseClass assignment to _setBaseClassAttr
118
+ this.inherited(arguments);
119
+
120
+ if(!this._rendered){
121
+ this._fillContent(this.srcNodeRef);
122
+ }
123
+
124
+ this._rendered = true;
125
+ },
126
+
127
+ _fillContent: function(/*DomNode*/ source){
128
+ // summary:
129
+ // Relocate source contents to templated container node.
130
+ // this.containerNode must be able to receive children, or exceptions will be thrown.
131
+ // tags:
132
+ // protected
133
+ var dest = this.containerNode;
134
+ if(source && dest){
135
+ while(source.hasChildNodes()){
136
+ dest.appendChild(source.firstChild);
137
+ }
138
+ }
139
+ }
140
+
141
+ });
142
+
143
+ // key is templateString; object is either string or DOM tree
144
+ _TemplatedMixin._templateCache = {};
145
+
146
+ _TemplatedMixin.getCachedTemplate = function(templateString, alwaysUseString, doc){
147
+ // summary:
148
+ // Static method to get a template based on the templatePath or
149
+ // templateString key
150
+ // templateString: String
151
+ // The template
152
+ // alwaysUseString: Boolean
153
+ // Don't cache the DOM tree for this template, even if it doesn't have any variables
154
+ // doc: Document?
155
+ // The target document. Defaults to document global if unspecified.
156
+ // returns: Mixed
157
+ // Either string (if there are ${} variables that need to be replaced) or just
158
+ // a DOM tree (if the node can be cloned directly)
159
+
160
+ // is it already cached?
161
+ var tmplts = _TemplatedMixin._templateCache;
162
+ var key = templateString;
163
+ var cached = tmplts[key];
164
+ if(cached){
165
+ try{
166
+ // if the cached value is an innerHTML string (no ownerDocument) or a DOM tree created within the
167
+ // current document, then use the current cached value
168
+ if(!cached.ownerDocument || cached.ownerDocument == (doc || document)){
169
+ // string or node of the same document
170
+ return cached;
171
+ }
172
+ }catch(e){ /* squelch */ } // IE can throw an exception if cached.ownerDocument was reloaded
173
+ domConstruct.destroy(cached);
174
+ }
175
+
176
+ templateString = string.trim(templateString);
177
+
178
+ if(alwaysUseString || templateString.match(/\$\{([^\}]+)\}/g)){
179
+ // there are variables in the template so all we can do is cache the string
180
+ return (tmplts[key] = templateString); //String
181
+ }else{
182
+ // there are no variables in the template so we can cache the DOM tree
183
+ var node = domConstruct.toDom(templateString, doc);
184
+ if(node.nodeType != 1){
185
+ throw new Error("Invalid template: " + templateString);
186
+ }
187
+ return (tmplts[key] = node); //Node
188
+ }
189
+ };
190
+
191
+ if(has("ie")){
192
+ on(window, "unload", function(){
193
+ var cache = _TemplatedMixin._templateCache;
194
+ for(var key in cache){
195
+ var value = cache[key];
196
+ if(typeof value == "object"){ // value is either a string or a DOM node template
197
+ domConstruct.destroy(value);
198
+ }
199
+ delete cache[key];
200
+ }
201
+ });
202
+ }
203
+
204
+ return _TemplatedMixin;
205
+ });
@@ -0,0 +1,66 @@
1
+ //>>built
2
+ define("dijit/_Widget",["dojo/aspect","dojo/_base/config","dojo/_base/connect","dojo/_base/declare","dojo/has","dojo/_base/kernel","dojo/_base/lang","dojo/query","dojo/ready","./registry","./_WidgetBase","./_OnDijitClickMixin","./_FocusMixin","dojo/uacss","./hccss"],function(_1,_2,_3,_4,_5,_6,_7,_8,_9,_a,_b,_c,_d){
3
+ function _e(){
4
+ };
5
+ function _f(_10){
6
+ return function(obj,_11,_12,_13){
7
+ if(obj&&typeof _11=="string"&&obj[_11]==_e){
8
+ return obj.on(_11.substring(2).toLowerCase(),_7.hitch(_12,_13));
9
+ }
10
+ return _10.apply(_3,arguments);
11
+ };
12
+ };
13
+ _1.around(_3,"connect",_f);
14
+ if(_6.connect){
15
+ _1.around(_6,"connect",_f);
16
+ }
17
+ var _14=_4("dijit._Widget",[_b,_c,_d],{onClick:_e,onDblClick:_e,onKeyDown:_e,onKeyPress:_e,onKeyUp:_e,onMouseDown:_e,onMouseMove:_e,onMouseOut:_e,onMouseOver:_e,onMouseLeave:_e,onMouseEnter:_e,onMouseUp:_e,constructor:function(_15){
18
+ this._toConnect={};
19
+ for(var _16 in _15){
20
+ if(this[_16]===_e){
21
+ this._toConnect[_16.replace(/^on/,"").toLowerCase()]=_15[_16];
22
+ delete _15[_16];
23
+ }
24
+ }
25
+ },postCreate:function(){
26
+ this.inherited(arguments);
27
+ for(var _17 in this._toConnect){
28
+ this.on(_17,this._toConnect[_17]);
29
+ }
30
+ delete this._toConnect;
31
+ },on:function(_18,_19){
32
+ if(this[this._onMap(_18)]===_e){
33
+ return _3.connect(this.domNode,_18.toLowerCase(),this,_19);
34
+ }
35
+ return this.inherited(arguments);
36
+ },_setFocusedAttr:function(val){
37
+ this._focused=val;
38
+ this._set("focused",val);
39
+ },setAttribute:function(_1a,_1b){
40
+ _6.deprecated(this.declaredClass+"::setAttribute(attr, value) is deprecated. Use set() instead.","","2.0");
41
+ this.set(_1a,_1b);
42
+ },attr:function(_1c,_1d){
43
+ var _1e=arguments.length;
44
+ if(_1e>=2||typeof _1c==="object"){
45
+ return this.set.apply(this,arguments);
46
+ }else{
47
+ return this.get(_1c);
48
+ }
49
+ },getDescendants:function(){
50
+ _6.deprecated(this.declaredClass+"::getDescendants() is deprecated. Use getChildren() instead.","","2.0");
51
+ return this.containerNode?_8("[widgetId]",this.containerNode).map(_a.byNode):[];
52
+ },_onShow:function(){
53
+ this.onShow();
54
+ },onShow:function(){
55
+ },onHide:function(){
56
+ },onClose:function(){
57
+ return true;
58
+ }});
59
+ if(_5("dijit-legacy-requires")){
60
+ _9(0,function(){
61
+ var _1f=["dijit/_base"];
62
+ require(_1f);
63
+ });
64
+ }
65
+ return _14;
66
+ });
@@ -0,0 +1,352 @@
1
+ define("dijit/_Widget", [
2
+ "dojo/aspect", // aspect.around
3
+ "dojo/_base/config", // config.isDebug
4
+ "dojo/_base/connect", // connect.connect
5
+ "dojo/_base/declare", // declare
6
+ "dojo/has",
7
+ "dojo/_base/kernel", // kernel.deprecated
8
+ "dojo/_base/lang", // lang.hitch
9
+ "dojo/query",
10
+ "dojo/ready",
11
+ "./registry", // registry.byNode
12
+ "./_WidgetBase",
13
+ "./_OnDijitClickMixin",
14
+ "./_FocusMixin",
15
+ "dojo/uacss", // browser sniffing (included for back-compat; subclasses may be using)
16
+ "./hccss" // high contrast mode sniffing (included to set CSS classes on <body>, module ret value unused)
17
+ ], function(aspect, config, connect, declare, has, kernel, lang, query, ready,
18
+ registry, _WidgetBase, _OnDijitClickMixin, _FocusMixin){
19
+
20
+
21
+ // module:
22
+ // dijit/_Widget
23
+
24
+
25
+ function connectToDomNode(){
26
+ // summary:
27
+ // If user connects to a widget method === this function, then they will
28
+ // instead actually be connecting the equivalent event on this.domNode
29
+ }
30
+
31
+ // Trap dojo.connect() calls to connectToDomNode methods, and redirect to _Widget.on()
32
+ function aroundAdvice(originalConnect){
33
+ return function(obj, event, scope, method){
34
+ if(obj && typeof event == "string" && obj[event] == connectToDomNode){
35
+ return obj.on(event.substring(2).toLowerCase(), lang.hitch(scope, method));
36
+ }
37
+ return originalConnect.apply(connect, arguments);
38
+ };
39
+ }
40
+ aspect.around(connect, "connect", aroundAdvice);
41
+ if(kernel.connect){
42
+ aspect.around(kernel, "connect", aroundAdvice);
43
+ }
44
+
45
+ var _Widget = declare("dijit._Widget", [_WidgetBase, _OnDijitClickMixin, _FocusMixin], {
46
+ // summary:
47
+ // Old base class for widgets. New widgets should extend `dijit/_WidgetBase` instead
48
+ // description:
49
+ // Old Base class for Dijit widgets.
50
+ //
51
+ // Extends _WidgetBase, adding support for:
52
+ //
53
+ // - declaratively/programatically specifying widget initialization parameters like
54
+ // onMouseMove="foo" that call foo when this.domNode gets a mousemove event
55
+ // - ondijitclick:
56
+ // Support new data-dojo-attach-event="ondijitclick: ..." that is triggered by a mouse click or a SPACE/ENTER keypress
57
+ // - focus related functions:
58
+ // In particular, the onFocus()/onBlur() callbacks. Driven internally by
59
+ // dijit/_base/focus.js.
60
+ // - deprecated methods
61
+ // - onShow(), onHide(), onClose()
62
+ //
63
+ // Also, by loading code in dijit/_base, turns on:
64
+ //
65
+ // - browser sniffing (putting browser class like `dj_ie` on `<html>` node)
66
+ // - high contrast mode sniffing (add `dijit_a11y` class to `<body>` if machine is in high contrast mode)
67
+
68
+
69
+ ////////////////// DEFERRED CONNECTS ///////////////////
70
+
71
+ onClick: connectToDomNode,
72
+ /*=====
73
+ onClick: function(event){
74
+ // summary:
75
+ // Connect to this function to receive notifications of mouse click events.
76
+ // event:
77
+ // mouse Event
78
+ // tags:
79
+ // callback
80
+ },
81
+ =====*/
82
+ onDblClick: connectToDomNode,
83
+ /*=====
84
+ onDblClick: function(event){
85
+ // summary:
86
+ // Connect to this function to receive notifications of mouse double click events.
87
+ // event:
88
+ // mouse Event
89
+ // tags:
90
+ // callback
91
+ },
92
+ =====*/
93
+ onKeyDown: connectToDomNode,
94
+ /*=====
95
+ onKeyDown: function(event){
96
+ // summary:
97
+ // Connect to this function to receive notifications of keys being pressed down.
98
+ // event:
99
+ // key Event
100
+ // tags:
101
+ // callback
102
+ },
103
+ =====*/
104
+ onKeyPress: connectToDomNode,
105
+ /*=====
106
+ onKeyPress: function(event){
107
+ // summary:
108
+ // Connect to this function to receive notifications of printable keys being typed.
109
+ // event:
110
+ // key Event
111
+ // tags:
112
+ // callback
113
+ },
114
+ =====*/
115
+ onKeyUp: connectToDomNode,
116
+ /*=====
117
+ onKeyUp: function(event){
118
+ // summary:
119
+ // Connect to this function to receive notifications of keys being released.
120
+ // event:
121
+ // key Event
122
+ // tags:
123
+ // callback
124
+ },
125
+ =====*/
126
+ onMouseDown: connectToDomNode,
127
+ /*=====
128
+ onMouseDown: function(event){
129
+ // summary:
130
+ // Connect to this function to receive notifications of when the mouse button is pressed down.
131
+ // event:
132
+ // mouse Event
133
+ // tags:
134
+ // callback
135
+ },
136
+ =====*/
137
+ onMouseMove: connectToDomNode,
138
+ /*=====
139
+ onMouseMove: function(event){
140
+ // summary:
141
+ // Connect to this function to receive notifications of when the mouse moves over nodes contained within this widget.
142
+ // event:
143
+ // mouse Event
144
+ // tags:
145
+ // callback
146
+ },
147
+ =====*/
148
+ onMouseOut: connectToDomNode,
149
+ /*=====
150
+ onMouseOut: function(event){
151
+ // summary:
152
+ // Connect to this function to receive notifications of when the mouse moves off of nodes contained within this widget.
153
+ // event:
154
+ // mouse Event
155
+ // tags:
156
+ // callback
157
+ },
158
+ =====*/
159
+ onMouseOver: connectToDomNode,
160
+ /*=====
161
+ onMouseOver: function(event){
162
+ // summary:
163
+ // Connect to this function to receive notifications of when the mouse moves onto nodes contained within this widget.
164
+ // event:
165
+ // mouse Event
166
+ // tags:
167
+ // callback
168
+ },
169
+ =====*/
170
+ onMouseLeave: connectToDomNode,
171
+ /*=====
172
+ onMouseLeave: function(event){
173
+ // summary:
174
+ // Connect to this function to receive notifications of when the mouse moves off of this widget.
175
+ // event:
176
+ // mouse Event
177
+ // tags:
178
+ // callback
179
+ },
180
+ =====*/
181
+ onMouseEnter: connectToDomNode,
182
+ /*=====
183
+ onMouseEnter: function(event){
184
+ // summary:
185
+ // Connect to this function to receive notifications of when the mouse moves onto this widget.
186
+ // event:
187
+ // mouse Event
188
+ // tags:
189
+ // callback
190
+ },
191
+ =====*/
192
+ onMouseUp: connectToDomNode,
193
+ /*=====
194
+ onMouseUp: function(event){
195
+ // summary:
196
+ // Connect to this function to receive notifications of when the mouse button is released.
197
+ // event:
198
+ // mouse Event
199
+ // tags:
200
+ // callback
201
+ },
202
+ =====*/
203
+
204
+ constructor: function(params /*===== ,srcNodeRef =====*/){
205
+ // summary:
206
+ // Create the widget.
207
+ // params: Object|null
208
+ // Hash of initialization parameters for widget, including scalar values (like title, duration etc.)
209
+ // and functions, typically callbacks like onClick.
210
+ // The hash can contain any of the widget's properties, excluding read-only properties.
211
+ // srcNodeRef: DOMNode|String?
212
+ // If a srcNodeRef (DOM node) is specified:
213
+ //
214
+ // - use srcNodeRef.innerHTML as my contents
215
+ // - if this is a behavioral widget then apply behavior to that srcNodeRef
216
+ // - otherwise, replace srcNodeRef with my generated DOM tree
217
+
218
+ // extract parameters like onMouseMove that should connect directly to this.domNode
219
+ this._toConnect = {};
220
+ for(var name in params){
221
+ if(this[name] === connectToDomNode){
222
+ this._toConnect[name.replace(/^on/, "").toLowerCase()] = params[name];
223
+ delete params[name];
224
+ }
225
+ }
226
+ },
227
+
228
+ postCreate: function(){
229
+ this.inherited(arguments);
230
+
231
+ // perform connection from this.domNode to user specified handlers (ex: onMouseMove)
232
+ for(var name in this._toConnect){
233
+ this.on(name, this._toConnect[name]);
234
+ }
235
+ delete this._toConnect;
236
+ },
237
+
238
+ on: function(/*String|Function*/ type, /*Function*/ func){
239
+ if(this[this._onMap(type)] === connectToDomNode){
240
+ // Use connect.connect() rather than on() to get handling for "onmouseenter" on non-IE,
241
+ // normalization of onkeypress/onkeydown to behave like firefox, etc.
242
+ // Also, need to specify context as "this" rather than the default context of the DOMNode
243
+ // Remove in 2.0.
244
+ return connect.connect(this.domNode, type.toLowerCase(), this, func);
245
+ }
246
+ return this.inherited(arguments);
247
+ },
248
+
249
+ _setFocusedAttr: function(val){
250
+ // Remove this method in 2.0 (or sooner), just here to set _focused == focused, for back compat
251
+ // (but since it's a private variable we aren't required to keep supporting it).
252
+ this._focused = val;
253
+ this._set("focused", val);
254
+ },
255
+
256
+ ////////////////// DEPRECATED METHODS ///////////////////
257
+
258
+ setAttribute: function(/*String*/ attr, /*anything*/ value){
259
+ // summary:
260
+ // Deprecated. Use set() instead.
261
+ // tags:
262
+ // deprecated
263
+ kernel.deprecated(this.declaredClass+"::setAttribute(attr, value) is deprecated. Use set() instead.", "", "2.0");
264
+ this.set(attr, value);
265
+ },
266
+
267
+ attr: function(/*String|Object*/name, /*Object?*/value){
268
+ // summary:
269
+ // This method is deprecated, use get() or set() directly.
270
+ // name:
271
+ // The property to get or set. If an object is passed here and not
272
+ // a string, its keys are used as names of attributes to be set
273
+ // and the value of the object as values to set in the widget.
274
+ // value:
275
+ // Optional. If provided, attr() operates as a setter. If omitted,
276
+ // the current value of the named property is returned.
277
+ // tags:
278
+ // deprecated
279
+
280
+ var args = arguments.length;
281
+ if(args >= 2 || typeof name === "object"){ // setter
282
+ return this.set.apply(this, arguments);
283
+ }else{ // getter
284
+ return this.get(name);
285
+ }
286
+ },
287
+
288
+ getDescendants: function(){
289
+ // summary:
290
+ // Returns all the widgets contained by this, i.e., all widgets underneath this.containerNode.
291
+ // This method should generally be avoided as it returns widgets declared in templates, which are
292
+ // supposed to be internal/hidden, but it's left here for back-compat reasons.
293
+
294
+ kernel.deprecated(this.declaredClass+"::getDescendants() is deprecated. Use getChildren() instead.", "", "2.0");
295
+ return this.containerNode ? query('[widgetId]', this.containerNode).map(registry.byNode) : []; // dijit/_WidgetBase[]
296
+ },
297
+
298
+ ////////////////// MISCELLANEOUS METHODS ///////////////////
299
+
300
+ _onShow: function(){
301
+ // summary:
302
+ // Internal method called when this widget is made visible.
303
+ // See `onShow` for details.
304
+ this.onShow();
305
+ },
306
+
307
+ onShow: function(){
308
+ // summary:
309
+ // Called when this widget becomes the selected pane in a
310
+ // `dijit/layout/TabContainer`, `dijit/layout/StackContainer`,
311
+ // `dijit/layout/AccordionContainer`, etc.
312
+ //
313
+ // Also called to indicate display of a `dijit.Dialog`, `dijit.TooltipDialog`, or `dijit.TitlePane`.
314
+ // tags:
315
+ // callback
316
+ },
317
+
318
+ onHide: function(){
319
+ // summary:
320
+ // Called when another widget becomes the selected pane in a
321
+ // `dijit/layout/TabContainer`, `dijit/layout/StackContainer`,
322
+ // `dijit/layout/AccordionContainer`, etc.
323
+ //
324
+ // Also called to indicate hide of a `dijit.Dialog`, `dijit.TooltipDialog`, or `dijit.TitlePane`.
325
+ // tags:
326
+ // callback
327
+ },
328
+
329
+ onClose: function(){
330
+ // summary:
331
+ // Called when this widget is being displayed as a popup (ex: a Calendar popped
332
+ // up from a DateTextBox), and it is hidden.
333
+ // This is called from the dijit.popup code, and should not be called directly.
334
+ //
335
+ // Also used as a parameter for children of `dijit/layout/StackContainer` or subclasses.
336
+ // Callback if a user tries to close the child. Child will be closed if this function returns true.
337
+ // tags:
338
+ // extension
339
+
340
+ return true; // Boolean
341
+ }
342
+ });
343
+
344
+ // For back-compat, remove in 2.0.
345
+ if(has("dijit-legacy-requires")){
346
+ ready(0, function(){
347
+ var requires = ["dijit/_base"];
348
+ require(requires); // use indirection so modules not rolled into a build
349
+ });
350
+ }
351
+ return _Widget;
352
+ });