@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,612 @@
1
+ require({cache:{
2
+ 'url:dijit/templates/Tooltip.html':"<div class=\"dijitTooltip dijitTooltipLeft\" id=\"dojoTooltip\" data-dojo-attach-event=\"mouseenter:onMouseEnter,mouseleave:onMouseLeave\"\n\t><div class=\"dijitTooltipConnector\" data-dojo-attach-point=\"connectorNode\"></div\n\t><div class=\"dijitTooltipContainer dijitTooltipContents\" data-dojo-attach-point=\"containerNode\" role='alert'></div\n></div>\n"}});
3
+ define("dijit/Tooltip", [
4
+ "dojo/_base/array", // array.forEach array.indexOf array.map
5
+ "dojo/_base/declare", // declare
6
+ "dojo/_base/fx", // fx.fadeIn fx.fadeOut
7
+ "dojo/dom", // dom.byId
8
+ "dojo/dom-class", // domClass.add
9
+ "dojo/dom-geometry", // domGeometry.position
10
+ "dojo/dom-style", // domStyle.set, domStyle.get
11
+ "dojo/_base/lang", // lang.hitch lang.isArrayLike
12
+ "dojo/mouse",
13
+ "dojo/on",
14
+ "dojo/sniff", // has("ie"), has("trident")
15
+ "./_base/manager", // manager.defaultDuration
16
+ "./place",
17
+ "./_Widget",
18
+ "./_TemplatedMixin",
19
+ "./BackgroundIframe",
20
+ "dojo/text!./templates/Tooltip.html",
21
+ "./main" // sets dijit.showTooltip etc. for back-compat
22
+ ], function(array, declare, fx, dom, domClass, domGeometry, domStyle, lang, mouse, on, has,
23
+ manager, place, _Widget, _TemplatedMixin, BackgroundIframe, template, dijit){
24
+
25
+ // module:
26
+ // dijit/Tooltip
27
+
28
+
29
+ // TODO: Tooltip should really share more positioning code with TooltipDialog, like:
30
+ // - the orient() method
31
+ // - the connector positioning code in show()
32
+ // - the dijitTooltip[Dialog] class
33
+ //
34
+ // The problem is that Tooltip's implementation supplies it's own <iframe> and interacts directly
35
+ // with dijit/place, rather than going through dijit/popup like TooltipDialog and other popups (ex: Menu).
36
+
37
+ var MasterTooltip = declare("dijit._MasterTooltip", [_Widget, _TemplatedMixin], {
38
+ // summary:
39
+ // Internal widget that holds the actual tooltip markup,
40
+ // which occurs once per page.
41
+ // Called by Tooltip widgets which are just containers to hold
42
+ // the markup
43
+ // tags:
44
+ // protected
45
+
46
+ // duration: Integer
47
+ // Milliseconds to fade in/fade out
48
+ duration: manager.defaultDuration,
49
+
50
+ templateString: template,
51
+
52
+ postCreate: function(){
53
+ this.ownerDocumentBody.appendChild(this.domNode);
54
+
55
+ this.bgIframe = new BackgroundIframe(this.domNode);
56
+
57
+ // Setup fade-in and fade-out functions.
58
+ this.fadeIn = fx.fadeIn({ node: this.domNode, duration: this.duration, onEnd: lang.hitch(this, "_onShow") });
59
+ this.fadeOut = fx.fadeOut({ node: this.domNode, duration: this.duration, onEnd: lang.hitch(this, "_onHide") });
60
+ },
61
+
62
+ show: function(innerHTML, aroundNode, position, rtl, textDir, onMouseEnter, onMouseLeave){
63
+ // summary:
64
+ // Display tooltip w/specified contents to right of specified node
65
+ // (To left if there's no space on the right, or if rtl == true)
66
+ // innerHTML: String
67
+ // Contents of the tooltip
68
+ // aroundNode: DomNode|dijit/place.__Rectangle
69
+ // Specifies that tooltip should be next to this node / area
70
+ // position: String[]?
71
+ // List of positions to try to position tooltip (ex: ["right", "above"])
72
+ // rtl: Boolean?
73
+ // Corresponds to `WidgetBase.dir` attribute, where false means "ltr" and true
74
+ // means "rtl"; specifies GUI direction, not text direction.
75
+ // textDir: String?
76
+ // Corresponds to `WidgetBase.textdir` attribute; specifies direction of text.
77
+ // onMouseEnter: Function?
78
+ // Callback function for mouse enter on tooltip
79
+ // onMouseLeave: Function?
80
+ // Callback function for mouse leave on tooltip
81
+
82
+ if(this.aroundNode && this.aroundNode === aroundNode && this.containerNode.innerHTML == innerHTML){
83
+ return;
84
+ }
85
+
86
+ if(this.fadeOut.status() == "playing"){
87
+ // previous tooltip is being hidden; wait until the hide completes then show new one
88
+ this._onDeck=arguments;
89
+ return;
90
+ }
91
+ this.containerNode.innerHTML=innerHTML;
92
+
93
+ if(textDir){
94
+ this.set("textDir", textDir);
95
+ }
96
+
97
+ this.containerNode.align = rtl? "right" : "left"; //fix the text alignment
98
+
99
+ var pos = place.around(this.domNode, aroundNode,
100
+ position && position.length ? position : Tooltip.defaultPosition, !rtl, lang.hitch(this, "orient"));
101
+
102
+ // Position the tooltip connector for middle alignment.
103
+ // This could not have been done in orient() since the tooltip wasn't positioned at that time.
104
+ var aroundNodeCoords = pos.aroundNodePos;
105
+ if(pos.corner.charAt(0) == 'M' && pos.aroundCorner.charAt(0) == 'M'){
106
+ this.connectorNode.style.top = aroundNodeCoords.y + ((aroundNodeCoords.h - this.connectorNode.offsetHeight) >> 1) - pos.y + "px";
107
+ this.connectorNode.style.left = "";
108
+ }else if(pos.corner.charAt(1) == 'M' && pos.aroundCorner.charAt(1) == 'M'){
109
+ this.connectorNode.style.left = aroundNodeCoords.x + ((aroundNodeCoords.w - this.connectorNode.offsetWidth) >> 1) - pos.x + "px";
110
+ }else{
111
+ // Not *-centered, but just above/below/after/before
112
+ this.connectorNode.style.left = "";
113
+ this.connectorNode.style.top = "";
114
+ }
115
+
116
+ // show it
117
+ domStyle.set(this.domNode, "opacity", 0);
118
+ this.fadeIn.play();
119
+ this.isShowingNow = true;
120
+ this.aroundNode = aroundNode;
121
+
122
+ this.onMouseEnter = onMouseEnter || noop;
123
+ this.onMouseLeave = onMouseLeave || noop;
124
+ },
125
+
126
+ orient: function(/*DomNode*/ node, /*String*/ aroundCorner, /*String*/ tooltipCorner, /*Object*/ spaceAvailable, /*Object*/ aroundNodeCoords){
127
+ // summary:
128
+ // Private function to set CSS for tooltip node based on which position it's in.
129
+ // This is called by the dijit popup code. It will also reduce the tooltip's
130
+ // width to whatever width is available
131
+ // tags:
132
+ // protected
133
+
134
+ this.connectorNode.style.top = ""; //reset to default
135
+
136
+ var heightAvailable = spaceAvailable.h,
137
+ widthAvailable = spaceAvailable.w;
138
+
139
+ node.className = "dijitTooltip " +
140
+ {
141
+ "MR-ML": "dijitTooltipRight",
142
+ "ML-MR": "dijitTooltipLeft",
143
+ "TM-BM": "dijitTooltipAbove",
144
+ "BM-TM": "dijitTooltipBelow",
145
+ "BL-TL": "dijitTooltipBelow dijitTooltipABLeft",
146
+ "TL-BL": "dijitTooltipAbove dijitTooltipABLeft",
147
+ "BR-TR": "dijitTooltipBelow dijitTooltipABRight",
148
+ "TR-BR": "dijitTooltipAbove dijitTooltipABRight",
149
+ "BR-BL": "dijitTooltipRight",
150
+ "BL-BR": "dijitTooltipLeft"
151
+ }[aroundCorner + "-" + tooltipCorner];
152
+
153
+ // reset width; it may have been set by orient() on a previous tooltip show()
154
+ this.domNode.style.width = "auto";
155
+
156
+ // Reduce tooltip's width to the amount of width available, so that it doesn't overflow screen.
157
+ // Note that sometimes widthAvailable is negative, but we guard against setting style.width to a
158
+ // negative number since that causes an exception on IE.
159
+ var size = domGeometry.position(this.domNode);
160
+ if(has("ie") || has("trident")){
161
+ // workaround strange IE bug where setting width to offsetWidth causes words to wrap
162
+ size.w += 2;
163
+ }
164
+
165
+ var width = Math.min((Math.max(widthAvailable,1)), size.w);
166
+
167
+ domGeometry.setMarginBox(this.domNode, {w: width});
168
+
169
+ // Reposition the tooltip connector.
170
+ if(tooltipCorner.charAt(0) == 'B' && aroundCorner.charAt(0) == 'B'){
171
+ var bb = domGeometry.position(node);
172
+ var tooltipConnectorHeight = this.connectorNode.offsetHeight;
173
+ if(bb.h > heightAvailable){
174
+ // The tooltip starts at the top of the page and will extend past the aroundNode
175
+ var aroundNodePlacement = heightAvailable - ((aroundNodeCoords.h + tooltipConnectorHeight) >> 1);
176
+ this.connectorNode.style.top = aroundNodePlacement + "px";
177
+ this.connectorNode.style.bottom = "";
178
+ }else{
179
+ // Align center of connector with center of aroundNode, except don't let bottom
180
+ // of connector extend below bottom of tooltip content, or top of connector
181
+ // extend past top of tooltip content
182
+ this.connectorNode.style.bottom = Math.min(
183
+ Math.max(aroundNodeCoords.h/2 - tooltipConnectorHeight/2, 0),
184
+ bb.h - tooltipConnectorHeight) + "px";
185
+ this.connectorNode.style.top = "";
186
+ }
187
+ }else{
188
+ // reset the tooltip back to the defaults
189
+ this.connectorNode.style.top = "";
190
+ this.connectorNode.style.bottom = "";
191
+ }
192
+
193
+ return Math.max(0, size.w - widthAvailable);
194
+ },
195
+
196
+ _onShow: function(){
197
+ // summary:
198
+ // Called at end of fade-in operation
199
+ // tags:
200
+ // protected
201
+ if(has("ie")){
202
+ // the arrow won't show up on a node w/an opacity filter
203
+ this.domNode.style.filter="";
204
+ }
205
+ },
206
+
207
+ hide: function(aroundNode){
208
+ // summary:
209
+ // Hide the tooltip
210
+
211
+ if(this._onDeck && this._onDeck[1] == aroundNode){
212
+ // this hide request is for a show() that hasn't even started yet;
213
+ // just cancel the pending show()
214
+ this._onDeck=null;
215
+ }else if(this.aroundNode === aroundNode){
216
+ // this hide request is for the currently displayed tooltip
217
+ this.fadeIn.stop();
218
+ this.isShowingNow = false;
219
+ this.aroundNode = null;
220
+ this.fadeOut.play();
221
+ }else{
222
+ // just ignore the call, it's for a tooltip that has already been erased
223
+ }
224
+
225
+ this.onMouseEnter = this.onMouseLeave = noop;
226
+ },
227
+
228
+ _onHide: function(){
229
+ // summary:
230
+ // Called at end of fade-out operation
231
+ // tags:
232
+ // protected
233
+
234
+ this.domNode.style.cssText=""; // to position offscreen again
235
+ this.containerNode.innerHTML="";
236
+ if(this._onDeck){
237
+ // a show request has been queued up; do it now
238
+ this.show.apply(this, this._onDeck);
239
+ this._onDeck=null;
240
+ }
241
+ }
242
+ });
243
+
244
+ if(has("dojo-bidi")){
245
+ MasterTooltip.extend({
246
+ _setAutoTextDir: function(/*Object*/node){
247
+ // summary:
248
+ // Resolve "auto" text direction for children nodes
249
+ // tags:
250
+ // private
251
+
252
+ this.applyTextDir(node);
253
+ array.forEach(node.children, function(child){ this._setAutoTextDir(child); }, this);
254
+ },
255
+
256
+ _setTextDirAttr: function(/*String*/ textDir){
257
+ // summary:
258
+ // Setter for textDir.
259
+ // description:
260
+ // Users shouldn't call this function; they should be calling
261
+ // set('textDir', value)
262
+ // tags:
263
+ // private
264
+
265
+ this._set("textDir", textDir);
266
+
267
+ if (textDir == "auto"){
268
+ this._setAutoTextDir(this.containerNode);
269
+ }else{
270
+ this.containerNode.dir = this.textDir;
271
+ }
272
+ }
273
+ });
274
+ }
275
+
276
+ dijit.showTooltip = function(innerHTML, aroundNode, position, rtl, textDir, onMouseEnter, onMouseLeave){
277
+ // summary:
278
+ // Static method to display tooltip w/specified contents in specified position.
279
+ // See description of dijit/Tooltip.defaultPosition for details on position parameter.
280
+ // If position is not specified then dijit/Tooltip.defaultPosition is used.
281
+ // innerHTML: String
282
+ // Contents of the tooltip
283
+ // aroundNode: place.__Rectangle
284
+ // Specifies that tooltip should be next to this node / area
285
+ // position: String[]?
286
+ // List of positions to try to position tooltip (ex: ["right", "above"])
287
+ // rtl: Boolean?
288
+ // Corresponds to `WidgetBase.dir` attribute, where false means "ltr" and true
289
+ // means "rtl"; specifies GUI direction, not text direction.
290
+ // textDir: String?
291
+ // Corresponds to `WidgetBase.textdir` attribute; specifies direction of text.
292
+ // onMouseEnter: Function?
293
+ // Callback function for mouse over on tooltip
294
+ // onMouseLeave: Function?
295
+ // Callback function for mouse leave on tooltip
296
+
297
+ // After/before don't work, but for back-compat convert them to the working after-centered, before-centered.
298
+ // Possibly remove this in 2.0. Alternately, get before/after to work.
299
+ if(position){
300
+ position = array.map(position, function(val){
301
+ return {after: "after-centered", before: "before-centered"}[val] || val;
302
+ });
303
+ }
304
+
305
+ if(!Tooltip._masterTT){ dijit._masterTT = Tooltip._masterTT = new MasterTooltip(); }
306
+ return Tooltip._masterTT.show(innerHTML, aroundNode, position, rtl, textDir, onMouseEnter, onMouseLeave);
307
+ };
308
+
309
+ dijit.hideTooltip = function(aroundNode){
310
+ // summary:
311
+ // Static method to hide the tooltip displayed via showTooltip()
312
+ return Tooltip._masterTT && Tooltip._masterTT.hide(aroundNode);
313
+ };
314
+
315
+ // Possible states for a tooltip, see Tooltip.state property for definitions
316
+ var DORMANT = "DORMANT",
317
+ SHOW_TIMER = "SHOW TIMER",
318
+ SHOWING = "SHOWING",
319
+ HIDE_TIMER = "HIDE TIMER";
320
+
321
+ function noop(){}
322
+
323
+ var Tooltip = declare("dijit.Tooltip", _Widget, {
324
+ // summary:
325
+ // Pops up a tooltip (a help message) when you hover over a node.
326
+ // Also provides static show() and hide() methods that can be used without instantiating a dijit/Tooltip.
327
+
328
+ // label: String
329
+ // HTML to display in the tooltip.
330
+ // Specified as innerHTML when creating the widget from markup.
331
+ label: "",
332
+
333
+ // showDelay: Integer
334
+ // Number of milliseconds to wait after hovering over/focusing on the object, before
335
+ // the tooltip is displayed.
336
+ showDelay: 400,
337
+
338
+ // hideDelay: Integer
339
+ // Number of milliseconds to wait after unhovering the object, before
340
+ // the tooltip is hidden. Note that blurring an object hides the tooltip immediately.
341
+ hideDelay: 400,
342
+
343
+ // connectId: String|String[]|DomNode|DomNode[]
344
+ // Id of domNode(s) to attach the tooltip to.
345
+ // When user hovers over specified dom node(s), the tooltip will appear.
346
+ connectId: [],
347
+
348
+ // position: String[]
349
+ // See description of `dijit/Tooltip.defaultPosition` for details on position parameter.
350
+ position: [],
351
+
352
+ // selector: String?
353
+ // CSS expression to apply this Tooltip to descendants of connectIds, rather than to
354
+ // the nodes specified by connectIds themselves. Useful for applying a Tooltip to
355
+ // a range of rows in a table, tree, etc. Use in conjunction with getContent() parameter.
356
+ // Ex: connectId: myTable, selector: "tr", getContent: function(node){ return ...; }
357
+ //
358
+ // The application must require() an appropriate level of dojo/query to handle the selector.
359
+ selector: "",
360
+
361
+ // TODO: in 2.0 remove support for multiple connectIds. selector gives the same effect.
362
+ // So, change connectId to a "", remove addTarget()/removeTarget(), etc.
363
+
364
+ _setConnectIdAttr: function(/*String|String[]|DomNode|DomNode[]*/ newId){
365
+ // summary:
366
+ // Connect to specified node(s)
367
+
368
+ // Remove connections to old nodes (if there are any)
369
+ array.forEach(this._connections || [], function(nested){
370
+ array.forEach(nested, function(handle){ handle.remove(); });
371
+ }, this);
372
+
373
+ // Make array of id's to connect to, excluding entries for nodes that don't exist yet, see startup()
374
+ this._connectIds = array.filter(lang.isArrayLike(newId) ? newId : (newId ? [newId] : []),
375
+ function(id){ return dom.byId(id, this.ownerDocument); }, this);
376
+
377
+ // Make connections
378
+ this._connections = array.map(this._connectIds, function(id){
379
+ var node = dom.byId(id, this.ownerDocument),
380
+ selector = this.selector,
381
+ delegatedEvent = selector ?
382
+ function(eventType){ return on.selector(selector, eventType); } :
383
+ function(eventType){ return eventType; },
384
+ self = this;
385
+ return [
386
+ on(node, delegatedEvent(mouse.enter), function(){
387
+ self._onHover(this);
388
+ }),
389
+ on(node, delegatedEvent("focusin"), function(){
390
+ self._onHover(this);
391
+ }),
392
+ on(node, delegatedEvent(mouse.leave), lang.hitch(self, "_onUnHover")),
393
+ on(node, delegatedEvent("focusout"), lang.hitch(self, "set", "state", DORMANT))
394
+ ];
395
+ }, this);
396
+
397
+ this._set("connectId", newId);
398
+ },
399
+
400
+ addTarget: function(/*OomNode|String*/ node){
401
+ // summary:
402
+ // Attach tooltip to specified node if it's not already connected
403
+
404
+ // TODO: remove in 2.0 and just use set("connectId", ...) interface
405
+
406
+ var id = node.id || node;
407
+ if(array.indexOf(this._connectIds, id) == -1){
408
+ this.set("connectId", this._connectIds.concat(id));
409
+ }
410
+ },
411
+
412
+ removeTarget: function(/*DomNode|String*/ node){
413
+ // summary:
414
+ // Detach tooltip from specified node
415
+
416
+ // TODO: remove in 2.0 and just use set("connectId", ...) interface
417
+
418
+ var id = node.id || node, // map from DOMNode back to plain id string
419
+ idx = array.indexOf(this._connectIds, id);
420
+ if(idx >= 0){
421
+ // remove id (modifies original this._connectIds but that's OK in this case)
422
+ this._connectIds.splice(idx, 1);
423
+ this.set("connectId", this._connectIds);
424
+ }
425
+ },
426
+
427
+ buildRendering: function(){
428
+ this.inherited(arguments);
429
+ domClass.add(this.domNode,"dijitTooltipData");
430
+ },
431
+
432
+ startup: function(){
433
+ this.inherited(arguments);
434
+
435
+ // If this tooltip was created in a template, or for some other reason the specified connectId[s]
436
+ // didn't exist during the widget's initialization, then connect now.
437
+ var ids = this.connectId;
438
+ array.forEach(lang.isArrayLike(ids) ? ids : [ids], this.addTarget, this);
439
+ },
440
+
441
+ getContent: function(/*DomNode*/ node){
442
+ // summary:
443
+ // User overridable function that return the text to display in the tooltip.
444
+ // tags:
445
+ // extension
446
+ return this.label || this.domNode.innerHTML;
447
+ },
448
+
449
+ // state: [private readonly] String
450
+ // One of:
451
+ //
452
+ // - DORMANT: tooltip not SHOWING
453
+ // - SHOW TIMER: tooltip not SHOWING but timer set to show it
454
+ // - SHOWING: tooltip displayed
455
+ // - HIDE TIMER: tooltip displayed, but timer set to hide it
456
+ state: DORMANT,
457
+ _setStateAttr: function(val){
458
+ if(this.state == val ||
459
+ (val == SHOW_TIMER && this.state == SHOWING) ||
460
+ (val == HIDE_TIMER && this.state == DORMANT)){
461
+ return;
462
+ }
463
+
464
+ if(this._hideTimer){
465
+ this._hideTimer.remove();
466
+ delete this._hideTimer;
467
+ }
468
+ if(this._showTimer){
469
+ this._showTimer.remove();
470
+ delete this._showTimer;
471
+ }
472
+
473
+ switch(val){
474
+ case DORMANT:
475
+ if(this._connectNode){
476
+ Tooltip.hide(this._connectNode);
477
+ delete this._connectNode;
478
+ this.onHide();
479
+ }
480
+ break;
481
+ case SHOW_TIMER: // set timer to show tooltip
482
+ // should only get here from a DORMANT state, i.e. tooltip can't be already SHOWING
483
+ if(this.state != SHOWING){
484
+ this._showTimer = this.defer(function(){ this.set("state", SHOWING); }, this.showDelay);
485
+ }
486
+ break;
487
+ case SHOWING: // show tooltip and clear timers
488
+ var content = this.getContent(this._connectNode);
489
+ if(!content){
490
+ this.set("state", DORMANT);
491
+ return;
492
+ }
493
+
494
+ // Show tooltip and setup callbacks for mouseenter/mouseleave of tooltip itself
495
+ Tooltip.show(content, this._connectNode, this.position, !this.isLeftToRight(), this.textDir,
496
+ lang.hitch(this, "set", "state", SHOWING), lang.hitch(this, "set", "state", HIDE_TIMER));
497
+
498
+ this.onShow(this._connectNode, this.position);
499
+ break;
500
+ case HIDE_TIMER: // set timer set to hide tooltip
501
+ this._hideTimer = this.defer(function(){ this.set("state", DORMANT); }, this.hideDelay);
502
+ break;
503
+ }
504
+
505
+ this._set("state", val);
506
+ },
507
+
508
+ _onHover: function(/*DomNode*/ target){
509
+ // summary:
510
+ // Despite the name of this method, it actually handles both hover and focus
511
+ // events on the target node, setting a timer to show the tooltip.
512
+ // tags:
513
+ // private
514
+
515
+ if(this._connectNode && target != this._connectNode){
516
+ // Tooltip is displaying for another node
517
+ this.set("state", DORMANT);
518
+ }
519
+ this._connectNode = target; // _connectNode means "tooltip currently displayed for this node"
520
+
521
+ this.set("state", SHOW_TIMER); // no-op if show-timer already set, or if already showing
522
+ },
523
+
524
+ _onUnHover: function(/*DomNode*/ target){
525
+ // summary:
526
+ // Handles mouseleave event on the target node, hiding the tooltip.
527
+ // tags:
528
+ // private
529
+
530
+ this.set("state", HIDE_TIMER); // no-op if already dormant, or if hide-timer already set
531
+ },
532
+
533
+ // open() and close() aren't used anymore, except from the _BidiSupport/misc/Tooltip test.
534
+ // Should probably remove for 2.0, but leaving for now.
535
+ open: function(/*DomNode*/ target){
536
+ // summary:
537
+ // Display the tooltip; usually not called directly.
538
+ // tags:
539
+ // private
540
+
541
+ this.set("state", DORMANT);
542
+ this._connectNode = target; // _connectNode means "tooltip currently displayed for this node"
543
+ this.set("state", SHOWING);
544
+ },
545
+
546
+ close: function(){
547
+ // summary:
548
+ // Hide the tooltip or cancel timer for show of tooltip
549
+ // tags:
550
+ // private
551
+
552
+ this.set("state", DORMANT);
553
+ },
554
+
555
+ onShow: function(/*===== target, position =====*/){
556
+ // summary:
557
+ // Called when the tooltip is shown
558
+ // tags:
559
+ // callback
560
+ },
561
+
562
+ onHide: function(){
563
+ // summary:
564
+ // Called when the tooltip is hidden
565
+ // tags:
566
+ // callback
567
+ },
568
+
569
+ destroy: function(){
570
+ this.set("state", DORMANT);
571
+
572
+ // Remove connections manually since they aren't registered to be removed by _WidgetBase
573
+ array.forEach(this._connections || [], function(nested){
574
+ array.forEach(nested, function(handle){ handle.remove(); });
575
+ }, this);
576
+
577
+ this.inherited(arguments);
578
+ }
579
+ });
580
+
581
+ Tooltip._MasterTooltip = MasterTooltip; // for monkey patching
582
+ Tooltip.show = dijit.showTooltip; // export function through module return value
583
+ Tooltip.hide = dijit.hideTooltip; // export function through module return value
584
+
585
+ Tooltip.defaultPosition = ["after-centered", "before-centered"];
586
+
587
+ /*=====
588
+ lang.mixin(Tooltip, {
589
+ // defaultPosition: String[]
590
+ // This variable controls the position of tooltips, if the position is not specified to
591
+ // the Tooltip widget or *TextBox widget itself. It's an array of strings with the values
592
+ // possible for `dijit/place.around()`. The recommended values are:
593
+ //
594
+ // - before-centered: centers tooltip to the left of the anchor node/widget, or to the right
595
+ // in the case of RTL scripts like Hebrew and Arabic
596
+ // - after-centered: centers tooltip to the right of the anchor node/widget, or to the left
597
+ // in the case of RTL scripts like Hebrew and Arabic
598
+ // - above-centered: tooltip is centered above anchor node
599
+ // - below-centered: tooltip is centered above anchor node
600
+ //
601
+ // The list is positions is tried, in order, until a position is found where the tooltip fits
602
+ // within the viewport.
603
+ //
604
+ // Be careful setting this parameter. A value of "above-centered" may work fine until the user scrolls
605
+ // the screen so that there's no room above the target node. Nodes with drop downs, like
606
+ // DropDownButton or FilteringSelect, are especially problematic, in that you need to be sure
607
+ // that the drop down and tooltip don't overlap, even when the viewport is scrolled so that there
608
+ // is only room below (or above) the target node, but not both.
609
+ });
610
+ =====*/
611
+ return Tooltip;
612
+ });
@@ -0,0 +1,44 @@
1
+ //>>built
2
+ define("dijit/Viewport",["dojo/Evented","dojo/on","dojo/domReady","dojo/sniff","dojo/window"],function(_1,on,_2,_3,_4){
3
+ var _5=new _1();
4
+ var _6;
5
+ _2(function(){
6
+ var _7=_4.getBox();
7
+ _5._rlh=on(window,"resize",function(){
8
+ var _8=_4.getBox();
9
+ if(_7.h==_8.h&&_7.w==_8.w){
10
+ return;
11
+ }
12
+ _7=_8;
13
+ _5.emit("resize");
14
+ });
15
+ if(_3("ie")==8){
16
+ var _9=screen.deviceXDPI;
17
+ setInterval(function(){
18
+ if(screen.deviceXDPI!=_9){
19
+ _9=screen.deviceXDPI;
20
+ _5.emit("resize");
21
+ }
22
+ },500);
23
+ }
24
+ if(_3("ios")){
25
+ on(document,"focusin",function(_a){
26
+ _6=_a.target;
27
+ });
28
+ on(document,"focusout",function(_b){
29
+ _6=null;
30
+ });
31
+ }
32
+ });
33
+ _5.getEffectiveBox=function(_c){
34
+ var _d=_4.getBox(_c);
35
+ var _e=_6&&_6.tagName&&_6.tagName.toLowerCase();
36
+ if(_3("ios")&&_6&&!_6.readOnly&&(_e=="textarea"||(_e=="input"&&/^(color|email|number|password|search|tel|text|url)$/.test(_6.type)))){
37
+ _d.h*=(orientation==0||orientation==180?0.66:0.4);
38
+ var _f=_6.getBoundingClientRect();
39
+ _d.h=Math.max(_d.h,_f.top+_f.height);
40
+ }
41
+ return _d;
42
+ };
43
+ return _5;
44
+ });