@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,472 @@
1
+ define("dijit/_HasDropDown", [
2
+ "dojo/_base/declare", // declare
3
+ "dojo/_base/Deferred",
4
+ "dojo/dom", // dom.isDescendant
5
+ "dojo/dom-attr", // domAttr.set
6
+ "dojo/dom-class", // domClass.add domClass.contains domClass.remove
7
+ "dojo/dom-geometry", // domGeometry.marginBox domGeometry.position
8
+ "dojo/dom-style", // domStyle.set
9
+ "dojo/has", // has("touch")
10
+ "dojo/keys", // keys.DOWN_ARROW keys.ENTER keys.ESCAPE
11
+ "dojo/_base/lang", // lang.hitch lang.isFunction
12
+ "dojo/on",
13
+ "dojo/touch",
14
+ "./registry", // registry.byNode()
15
+ "./focus",
16
+ "./popup",
17
+ "./_FocusMixin"
18
+ ], function(declare, Deferred, dom, domAttr, domClass, domGeometry, domStyle, has, keys, lang, on, touch,
19
+ registry, focus, popup, _FocusMixin){
20
+
21
+
22
+ // module:
23
+ // dijit/_HasDropDown
24
+
25
+ return declare("dijit._HasDropDown", _FocusMixin, {
26
+ // summary:
27
+ // Mixin for widgets that need drop down ability.
28
+
29
+ // _buttonNode: [protected] DomNode
30
+ // The button/icon/node to click to display the drop down.
31
+ // Can be set via a data-dojo-attach-point assignment.
32
+ // If missing, then either focusNode or domNode (if focusNode is also missing) will be used.
33
+ _buttonNode: null,
34
+
35
+ // _arrowWrapperNode: [protected] DomNode
36
+ // Will set CSS class dijitUpArrow, dijitDownArrow, dijitRightArrow etc. on this node depending
37
+ // on where the drop down is set to be positioned.
38
+ // Can be set via a data-dojo-attach-point assignment.
39
+ // If missing, then _buttonNode will be used.
40
+ _arrowWrapperNode: null,
41
+
42
+ // _popupStateNode: [protected] DomNode
43
+ // The node to set the aria-expanded class on.
44
+ // Also sets popupActive class but that will be removed in 2.0.
45
+ // Can be set via a data-dojo-attach-point assignment.
46
+ // If missing, then focusNode or _buttonNode (if focusNode is missing) will be used.
47
+ _popupStateNode: null,
48
+
49
+ // _aroundNode: [protected] DomNode
50
+ // The node to display the popup around.
51
+ // Can be set via a data-dojo-attach-point assignment.
52
+ // If missing, then domNode will be used.
53
+ _aroundNode: null,
54
+
55
+ // dropDown: [protected] Widget
56
+ // The widget to display as a popup. This widget *must* be
57
+ // defined before the startup function is called.
58
+ dropDown: null,
59
+
60
+ // autoWidth: [protected] Boolean
61
+ // Set to true to make the drop down at least as wide as this
62
+ // widget. Set to false if the drop down should just be its
63
+ // default width.
64
+ autoWidth: true,
65
+
66
+ // forceWidth: [protected] Boolean
67
+ // Set to true to make the drop down exactly as wide as this
68
+ // widget. Overrides autoWidth.
69
+ forceWidth: false,
70
+
71
+ // maxHeight: [protected] Integer
72
+ // The max height for our dropdown.
73
+ // Any dropdown taller than this will have scrollbars.
74
+ // Set to 0 for no max height, or -1 to limit height to available space in viewport
75
+ maxHeight: -1,
76
+
77
+ // dropDownPosition: [const] String[]
78
+ // This variable controls the position of the drop down.
79
+ // It's an array of strings with the following values:
80
+ //
81
+ // - before: places drop down to the left of the target node/widget, or to the right in
82
+ // the case of RTL scripts like Hebrew and Arabic
83
+ // - after: places drop down to the right of the target node/widget, or to the left in
84
+ // the case of RTL scripts like Hebrew and Arabic
85
+ // - above: drop down goes above target node
86
+ // - below: drop down goes below target node
87
+ //
88
+ // The list is positions is tried, in order, until a position is found where the drop down fits
89
+ // within the viewport.
90
+ //
91
+ dropDownPosition: ["below", "above"],
92
+
93
+ // _stopClickEvents: Boolean
94
+ // When set to false, the click events will not be stopped, in
95
+ // case you want to use them in your subclass
96
+ _stopClickEvents: true,
97
+
98
+ _onDropDownMouseDown: function(/*Event*/ e){
99
+ // summary:
100
+ // Callback when the user mousedown/touchstart on the arrow icon.
101
+
102
+ if(this.disabled || this.readOnly){
103
+ return;
104
+ }
105
+
106
+ // Prevent default to stop things like text selection, but don't stop propagation, so that:
107
+ // 1. TimeTextBox etc. can focus the <input> on mousedown
108
+ // 2. dropDownButtonActive class applied by _CssStateMixin (on button depress)
109
+ // 3. user defined onMouseDown handler fires
110
+ //
111
+ // Also, don't call preventDefault() on MSPointerDown event (on IE10) because that prevents the button
112
+ // from getting focus, and then the focus manager doesn't know what's going on (#17262)
113
+ if(e.type != "MSPointerDown"){
114
+ e.preventDefault();
115
+ }
116
+
117
+ this.own(on.once(this.ownerDocument, touch.release, lang.hitch(this, "_onDropDownMouseUp")));
118
+
119
+ this.toggleDropDown();
120
+ },
121
+
122
+ _onDropDownMouseUp: function(/*Event?*/ e){
123
+ // summary:
124
+ // Callback on mouseup/touchend after mousedown/touchstart on the arrow icon.
125
+ // Note that this function is called regardless of what node the event occurred on (but only after
126
+ // a mousedown/touchstart on the arrow).
127
+ //
128
+ // If the drop down is a simple menu and the cursor is over the menu, we execute it, otherwise, we focus our
129
+ // drop down widget. If the event is missing, then we are not
130
+ // a mouseup event.
131
+ //
132
+ // This is useful for the common mouse movement pattern
133
+ // with native browser `<select>` nodes:
134
+ //
135
+ // 1. mouse down on the select node (probably on the arrow)
136
+ // 2. move mouse to a menu item while holding down the mouse button
137
+ // 3. mouse up. this selects the menu item as though the user had clicked it.
138
+
139
+ var dropDown = this.dropDown, overMenu = false;
140
+
141
+ if(e && this._opened){
142
+ // This code deals with the corner-case when the drop down covers the original widget,
143
+ // because it's so large. In that case mouse-up shouldn't select a value from the menu.
144
+ // Find out if our target is somewhere in our dropdown widget,
145
+ // but not over our _buttonNode (the clickable node)
146
+ var c = domGeometry.position(this._buttonNode, true);
147
+ if(!(e.pageX >= c.x && e.pageX <= c.x + c.w) || !(e.pageY >= c.y && e.pageY <= c.y + c.h)){
148
+ var t = e.target;
149
+ while(t && !overMenu){
150
+ if(domClass.contains(t, "dijitPopup")){
151
+ overMenu = true;
152
+ }else{
153
+ t = t.parentNode;
154
+ }
155
+ }
156
+ if(overMenu){
157
+ t = e.target;
158
+ if(dropDown.onItemClick){
159
+ var menuItem;
160
+ while(t && !(menuItem = registry.byNode(t))){
161
+ t = t.parentNode;
162
+ }
163
+ if(menuItem && menuItem.onClick && menuItem.getParent){
164
+ menuItem.getParent().onItemClick(menuItem, e);
165
+ }
166
+ }
167
+ return;
168
+ }
169
+ }
170
+ }
171
+ if(this._opened){
172
+ // Focus the dropdown widget unless it's a menu (in which case autoFocus is set to false).
173
+ // Even if it's a menu, we need to focus it if this is a fake mouse event caused by the user typing
174
+ // SPACE/ENTER while using JAWS. Jaws converts the SPACE/ENTER key into mousedown/mouseup events.
175
+ // If this.hovering is false then it's presumably actually a keyboard event.
176
+ if(dropDown.focus && (dropDown.autoFocus !== false || (e.type == "mouseup" && !this.hovering))){
177
+ // Do it on a delay so that we don't steal back focus from the dropdown.
178
+ this._focusDropDownTimer = this.defer(function(){
179
+ dropDown.focus();
180
+ delete this._focusDropDownTimer;
181
+ });
182
+ }
183
+ }else{
184
+ // The drop down arrow icon probably can't receive focus, but widget itself should get focus.
185
+ // defer() needed to make it work on IE (test DateTextBox)
186
+ if(this.focus){
187
+ this.defer("focus");
188
+ }
189
+ }
190
+ },
191
+
192
+ _onDropDownClick: function(/*Event*/ e){
193
+ // The drop down was already opened on mousedown/keydown; just need to stop the event
194
+ if(this._stopClickEvents){
195
+ e.stopPropagation();
196
+ e.preventDefault();
197
+ }
198
+ },
199
+
200
+ buildRendering: function(){
201
+ this.inherited(arguments);
202
+
203
+ this._buttonNode = this._buttonNode || this.focusNode || this.domNode;
204
+ this._popupStateNode = this._popupStateNode || this.focusNode || this._buttonNode;
205
+
206
+ // Add a class to the "dijitDownArrowButton" type class to _buttonNode so theme can set direction of arrow
207
+ // based on where drop down will normally appear
208
+ var defaultPos = {
209
+ "after": this.isLeftToRight() ? "Right" : "Left",
210
+ "before": this.isLeftToRight() ? "Left" : "Right",
211
+ "above": "Up",
212
+ "below": "Down",
213
+ "left": "Left",
214
+ "right": "Right"
215
+ }[this.dropDownPosition[0]] || this.dropDownPosition[0] || "Down";
216
+ domClass.add(this._arrowWrapperNode || this._buttonNode, "dijit" + defaultPos + "ArrowButton");
217
+ },
218
+
219
+ postCreate: function(){
220
+ // summary:
221
+ // set up nodes and connect our mouse and keyboard events
222
+
223
+ this.inherited(arguments);
224
+
225
+ var keyboardEventNode = this.focusNode || this.domNode;
226
+ this.own(
227
+ on(this._buttonNode, touch.press, lang.hitch(this, "_onDropDownMouseDown")),
228
+ on(this._buttonNode, "click", lang.hitch(this, "_onDropDownClick")),
229
+ on(keyboardEventNode, "keydown", lang.hitch(this, "_onKey")),
230
+ on(keyboardEventNode, "keyup", lang.hitch(this, "_onKeyUp"))
231
+ );
232
+ },
233
+
234
+ destroy: function(){
235
+ // If dropdown is open, close it, to avoid leaving dijit/focus in a strange state.
236
+ // Put focus back on me to avoid the focused node getting destroyed, which flummoxes IE.
237
+ if(this._opened){
238
+ this.closeDropDown(true);
239
+ }
240
+
241
+ if(this.dropDown){
242
+ // Destroy the drop down, unless it's already been destroyed. This can happen because
243
+ // the drop down is a direct child of <body> even though it's logically my child.
244
+ if(!this.dropDown._destroyed){
245
+ this.dropDown.destroyRecursive();
246
+ }
247
+ delete this.dropDown;
248
+ }
249
+ this.inherited(arguments);
250
+ },
251
+
252
+ _onKey: function(/*Event*/ e){
253
+ // summary:
254
+ // Callback when the user presses a key while focused on the button node
255
+
256
+ if(this.disabled || this.readOnly){
257
+ return;
258
+ }
259
+ var d = this.dropDown, target = e.target;
260
+ if(d && this._opened && d.handleKey){
261
+ if(d.handleKey(e) === false){
262
+ /* false return code means that the drop down handled the key */
263
+ e.stopPropagation();
264
+ e.preventDefault();
265
+ return;
266
+ }
267
+ }
268
+ if(d && this._opened && e.keyCode == keys.ESCAPE){
269
+ this.closeDropDown();
270
+ e.stopPropagation();
271
+ e.preventDefault();
272
+ }else if(!this._opened &&
273
+ (e.keyCode == keys.DOWN_ARROW ||
274
+ // ignore unmodified SPACE if _KeyNavMixin has active searching in progress
275
+ ( (e.keyCode == keys.ENTER || (e.keyCode == keys.SPACE && (!this._searchTimer || (e.ctrlKey || e.altKey || e.metaKey)))) &&
276
+ //ignore enter and space if the event is for a text input
277
+ ((target.tagName || "").toLowerCase() !== 'input' ||
278
+ (target.type && target.type.toLowerCase() !== 'text'))))){
279
+ // Toggle the drop down, but wait until keyup so that the drop down doesn't
280
+ // get a stray keyup event, or in the case of key-repeat (because user held
281
+ // down key for too long), stray keydown events
282
+ this._toggleOnKeyUp = true;
283
+ e.stopPropagation();
284
+ e.preventDefault();
285
+ }
286
+ },
287
+
288
+ _onKeyUp: function(){
289
+ if(this._toggleOnKeyUp){
290
+ delete this._toggleOnKeyUp;
291
+ this.toggleDropDown();
292
+ var d = this.dropDown; // drop down may not exist until toggleDropDown() call
293
+ if(d && d.focus){
294
+ this.defer(lang.hitch(d, "focus"), 1);
295
+ }
296
+ }
297
+ },
298
+
299
+ _onBlur: function(){
300
+ // summary:
301
+ // Called magically when focus has shifted away from this widget and it's dropdown
302
+
303
+ // Close dropdown but don't focus my <input>. User may have focused somewhere else (ex: clicked another
304
+ // input), and even if they just clicked a blank area of the screen, focusing my <input> will unwantedly
305
+ // popup the keyboard on mobile.
306
+ this.closeDropDown(false);
307
+
308
+ this.inherited(arguments);
309
+ },
310
+
311
+ isLoaded: function(){
312
+ // summary:
313
+ // Returns true if the dropdown exists and it's data is loaded. This can
314
+ // be overridden in order to force a call to loadDropDown().
315
+ // tags:
316
+ // protected
317
+
318
+ return true;
319
+ },
320
+
321
+ loadDropDown: function(/*Function*/ loadCallback){
322
+ // summary:
323
+ // Creates the drop down if it doesn't exist, loads the data
324
+ // if there's an href and it hasn't been loaded yet, and then calls
325
+ // the given callback.
326
+ // tags:
327
+ // protected
328
+
329
+ // TODO: for 2.0, change API to return a Deferred, instead of calling loadCallback?
330
+ loadCallback();
331
+ },
332
+
333
+ loadAndOpenDropDown: function(){
334
+ // summary:
335
+ // Creates the drop down if it doesn't exist, loads the data
336
+ // if there's an href and it hasn't been loaded yet, and
337
+ // then opens the drop down. This is basically a callback when the
338
+ // user presses the down arrow button to open the drop down.
339
+ // returns: Deferred
340
+ // Deferred for the drop down widget that
341
+ // fires when drop down is created and loaded
342
+ // tags:
343
+ // protected
344
+ var d = new Deferred(),
345
+ afterLoad = lang.hitch(this, function(){
346
+ this.openDropDown();
347
+ d.resolve(this.dropDown);
348
+ });
349
+ if(!this.isLoaded()){
350
+ this.loadDropDown(afterLoad);
351
+ }else{
352
+ afterLoad();
353
+ }
354
+ return d;
355
+ },
356
+
357
+ toggleDropDown: function(){
358
+ // summary:
359
+ // Callback when the user presses the down arrow button or presses
360
+ // the down arrow key to open/close the drop down.
361
+ // Toggle the drop-down widget; if it is up, close it, if not, open it
362
+ // tags:
363
+ // protected
364
+
365
+ if(this.disabled || this.readOnly){
366
+ return;
367
+ }
368
+ if(!this._opened){
369
+ this.loadAndOpenDropDown();
370
+ }else{
371
+ this.closeDropDown(true); // refocus button to avoid hiding node w/focus
372
+ }
373
+ },
374
+
375
+ openDropDown: function(){
376
+ // summary:
377
+ // Opens the dropdown for this widget. To be called only when this.dropDown
378
+ // has been created and is ready to display (ie, it's data is loaded).
379
+ // returns:
380
+ // return value of dijit/popup.open()
381
+ // tags:
382
+ // protected
383
+
384
+ var dropDown = this.dropDown,
385
+ ddNode = dropDown.domNode,
386
+ aroundNode = this._aroundNode || this.domNode,
387
+ self = this;
388
+
389
+ var retVal = popup.open({
390
+ parent: this,
391
+ popup: dropDown,
392
+ around: aroundNode,
393
+ orient: this.dropDownPosition,
394
+ maxHeight: this.maxHeight,
395
+ onExecute: function(){
396
+ self.closeDropDown(true);
397
+ },
398
+ onCancel: function(){
399
+ self.closeDropDown(true);
400
+ },
401
+ onClose: function(){
402
+ domAttr.set(self._popupStateNode, "popupActive", false);
403
+ domClass.remove(self._popupStateNode, "dijitHasDropDownOpen");
404
+ self._set("_opened", false); // use set() because _CssStateMixin is watching
405
+ }
406
+ });
407
+
408
+ // Set width of drop down if necessary, so that dropdown width + width of scrollbar (from popup wrapper)
409
+ // matches width of aroundNode
410
+ if(this.forceWidth || (this.autoWidth && aroundNode.offsetWidth > dropDown._popupWrapper.offsetWidth)){
411
+ var widthAdjust = aroundNode.offsetWidth - dropDown._popupWrapper.offsetWidth;
412
+ var resizeArgs = {
413
+ w: dropDown.domNode.offsetWidth + widthAdjust
414
+ };
415
+ this._origStyle = ddNode.style.cssText;
416
+ if(lang.isFunction(dropDown.resize)){
417
+ dropDown.resize(resizeArgs);
418
+ }else{
419
+ domGeometry.setMarginBox(ddNode, resizeArgs);
420
+ }
421
+
422
+ // If dropdown is right-aligned then compensate for width change by changing horizontal position
423
+ if(retVal.corner[1] == "R"){
424
+ dropDown._popupWrapper.style.left =
425
+ (dropDown._popupWrapper.style.left.replace("px", "") - widthAdjust) + "px";
426
+ }
427
+ }
428
+
429
+ domAttr.set(this._popupStateNode, "popupActive", "true");
430
+ domClass.add(this._popupStateNode, "dijitHasDropDownOpen");
431
+ this._set("_opened", true); // use set() because _CssStateMixin is watching
432
+
433
+ this._popupStateNode.setAttribute("aria-expanded", "true");
434
+ this._popupStateNode.setAttribute("aria-owns", dropDown.id);
435
+
436
+ // Set aria-labelledby on dropdown if it's not already set to something more meaningful
437
+ if(ddNode.getAttribute("role") !== "presentation" && !ddNode.getAttribute("aria-labelledby")){
438
+ ddNode.setAttribute("aria-labelledby", this.id);
439
+ }
440
+
441
+ return retVal;
442
+ },
443
+
444
+ closeDropDown: function(/*Boolean*/ focus){
445
+ // summary:
446
+ // Closes the drop down on this widget
447
+ // focus:
448
+ // If true, refocuses the button widget
449
+ // tags:
450
+ // protected
451
+
452
+ if(this._focusDropDownTimer){
453
+ this._focusDropDownTimer.remove();
454
+ delete this._focusDropDownTimer;
455
+ }
456
+
457
+ if(this._opened){
458
+ this._popupStateNode.setAttribute("aria-expanded", "false");
459
+ if(focus && this.focus){
460
+ this.focus();
461
+ }
462
+ popup.close(this.dropDown);
463
+ this._opened = false;
464
+ }
465
+
466
+ if(this._origStyle){
467
+ this.dropDown.domNode.style.cssText = this._origStyle;
468
+ delete this._origStyle;
469
+ }
470
+ }
471
+ });
472
+ });
@@ -0,0 +1,8 @@
1
+ //>>built
2
+ define("dijit/_OnDijitClickMixin",["dojo/on","dojo/_base/array","dojo/keys","dojo/_base/declare","dojo/has","./a11yclick"],function(on,_1,_2,_3,_4,_5){
3
+ var _6=_3("dijit._OnDijitClickMixin",null,{connect:function(_7,_8,_9){
4
+ return this.inherited(arguments,[_7,_8=="ondijitclick"?_5:_8,_9]);
5
+ }});
6
+ _6.a11yclick=_5;
7
+ return _6;
8
+ });
@@ -0,0 +1,31 @@
1
+ define("dijit/_OnDijitClickMixin", [
2
+ "dojo/on",
3
+ "dojo/_base/array", // array.forEach
4
+ "dojo/keys", // keys.ENTER keys.SPACE
5
+ "dojo/_base/declare", // declare
6
+ "dojo/has", // has("dom-addeventlistener")
7
+ "./a11yclick"
8
+ ], function(on, array, keys, declare, has, a11yclick){
9
+
10
+ // module:
11
+ // dijit/_OnDijitClickMixin
12
+
13
+ var ret = declare("dijit._OnDijitClickMixin", null, {
14
+ // summary:
15
+ // Deprecated. New code should access the dijit/a11yclick event directly, ex:
16
+ // | this.own(on(node, a11yclick, function(){ ... }));
17
+ //
18
+ // Mixing in this class will make _WidgetBase.connect(node, "ondijitclick", ...) work.
19
+ // It also used to be necessary to make templates with ondijitclick work, but now you can just require
20
+ // dijit/a11yclick.
21
+
22
+ connect: function(obj, event, method){
23
+ // override _WidgetBase.connect() to make this.connect(node, "ondijitclick", ...) work
24
+ return this.inherited(arguments, [obj, event == "ondijitclick" ? a11yclick : event, method]);
25
+ }
26
+ });
27
+
28
+ ret.a11yclick = a11yclick; // back compat
29
+
30
+ return ret;
31
+ });
@@ -0,0 +1,90 @@
1
+ //>>built
2
+ define("dijit/_TemplatedMixin",["dojo/cache","dojo/_base/declare","dojo/dom-construct","dojo/_base/lang","dojo/on","dojo/sniff","dojo/string","./_AttachMixin"],function(_1,_2,_3,_4,on,_5,_6,_7){
3
+ var _8=_2("dijit._TemplatedMixin",_7,{templateString:null,templatePath:null,_skipNodeCache:false,searchContainerNode:true,_stringRepl:function(_9){
4
+ var _a=this.declaredClass,_b=this;
5
+ return _6.substitute(_9,this,function(_c,_d){
6
+ if(_d.charAt(0)=="!"){
7
+ _c=_4.getObject(_d.substr(1),false,_b);
8
+ }
9
+ if(typeof _c=="undefined"){
10
+ throw new Error(_a+" template:"+_d);
11
+ }
12
+ if(_c==null){
13
+ return "";
14
+ }
15
+ return _d.charAt(0)=="!"?_c:this._escapeValue(""+_c);
16
+ },this);
17
+ },_escapeValue:function(_e){
18
+ return _e.replace(/["'<>&]/g,function(_f){
19
+ return {"&":"&amp;","<":"&lt;",">":"&gt;","\"":"&quot;","'":"&#x27;"}[_f];
20
+ });
21
+ },buildRendering:function(){
22
+ if(!this._rendered){
23
+ if(!this.templateString){
24
+ this.templateString=_1(this.templatePath,{sanitize:true});
25
+ }
26
+ var _10=_8.getCachedTemplate(this.templateString,this._skipNodeCache,this.ownerDocument);
27
+ var _11;
28
+ if(_4.isString(_10)){
29
+ _11=_3.toDom(this._stringRepl(_10),this.ownerDocument);
30
+ if(_11.nodeType!=1){
31
+ throw new Error("Invalid template: "+_10);
32
+ }
33
+ }else{
34
+ _11=_10.cloneNode(true);
35
+ }
36
+ this.domNode=_11;
37
+ }
38
+ this.inherited(arguments);
39
+ if(!this._rendered){
40
+ this._fillContent(this.srcNodeRef);
41
+ }
42
+ this._rendered=true;
43
+ },_fillContent:function(_12){
44
+ var _13=this.containerNode;
45
+ if(_12&&_13){
46
+ while(_12.hasChildNodes()){
47
+ _13.appendChild(_12.firstChild);
48
+ }
49
+ }
50
+ }});
51
+ _8._templateCache={};
52
+ _8.getCachedTemplate=function(_14,_15,doc){
53
+ var _16=_8._templateCache;
54
+ var key=_14;
55
+ var _17=_16[key];
56
+ if(_17){
57
+ try{
58
+ if(!_17.ownerDocument||_17.ownerDocument==(doc||document)){
59
+ return _17;
60
+ }
61
+ }
62
+ catch(e){
63
+ }
64
+ _3.destroy(_17);
65
+ }
66
+ _14=_6.trim(_14);
67
+ if(_15||_14.match(/\$\{([^\}]+)\}/g)){
68
+ return (_16[key]=_14);
69
+ }else{
70
+ var _18=_3.toDom(_14,doc);
71
+ if(_18.nodeType!=1){
72
+ throw new Error("Invalid template: "+_14);
73
+ }
74
+ return (_16[key]=_18);
75
+ }
76
+ };
77
+ if(_5("ie")){
78
+ on(window,"unload",function(){
79
+ var _19=_8._templateCache;
80
+ for(var key in _19){
81
+ var _1a=_19[key];
82
+ if(typeof _1a=="object"){
83
+ _3.destroy(_1a);
84
+ }
85
+ delete _19[key];
86
+ }
87
+ });
88
+ }
89
+ return _8;
90
+ });