@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,372 @@
1
+ define("dijit/_CssStateMixin", [
2
+ "dojo/_base/array", // array.forEach array.map
3
+ "dojo/_base/declare", // declare
4
+ "dojo/dom", // dom.isDescendant()
5
+ "dojo/dom-class", // domClass.toggle
6
+ "dojo/has",
7
+ "dojo/_base/lang", // lang.hitch
8
+ "dojo/on",
9
+ "dojo/domReady",
10
+ "dojo/touch",
11
+ "dojo/_base/window", // win.body
12
+ "./a11yclick",
13
+ "./registry"
14
+ ], function(array, declare, dom, domClass, has, lang, on, domReady, touch, win, a11yclick, registry){
15
+
16
+ // module:
17
+ // dijit/_CssStateMixin
18
+
19
+ var CssStateMixin = declare("dijit._CssStateMixin", [], {
20
+ // summary:
21
+ // Mixin for widgets to set CSS classes on the widget DOM nodes depending on hover/mouse press/focus
22
+ // state changes, and also higher-level state changes such becoming disabled or selected.
23
+ //
24
+ // description:
25
+ // By mixing this class into your widget, and setting the this.baseClass attribute, it will automatically
26
+ // maintain CSS classes on the widget root node (this.domNode) depending on hover,
27
+ // active, focus, etc. state. Ex: with a baseClass of dijitButton, it will apply the classes
28
+ // dijitButtonHovered and dijitButtonActive, as the user moves the mouse over the widget and clicks it.
29
+ //
30
+ // It also sets CSS like dijitButtonDisabled based on widget semantic state.
31
+ //
32
+ // By setting the cssStateNodes attribute, a widget can also track events on subnodes (like buttons
33
+ // within the widget).
34
+
35
+ /*=====
36
+ // cssStateNodes: [protected] Object
37
+ // Subclasses may define a cssStateNodes property that lists sub-nodes within the widget that
38
+ // need CSS classes applied on mouse hover/press and focus.
39
+ //
40
+ // Each entry in this optional hash is a an attach-point name (like "upArrowButton") mapped to a CSS class name
41
+ // (like "dijitUpArrowButton"). Example:
42
+ // | {
43
+ // | "upArrowButton": "dijitUpArrowButton",
44
+ // | "downArrowButton": "dijitDownArrowButton"
45
+ // | }
46
+ // The above will set the CSS class dijitUpArrowButton to the this.upArrowButton DOMNode when it
47
+ // is hovered, etc.
48
+ cssStateNodes: {},
49
+ =====*/
50
+
51
+ // hovering: [readonly] Boolean
52
+ // True if cursor is over this widget
53
+ hovering: false,
54
+
55
+ // active: [readonly] Boolean
56
+ // True if mouse was pressed while over this widget, and hasn't been released yet
57
+ active: false,
58
+
59
+ _applyAttributes: function(){
60
+ // This code would typically be in postCreate(), but putting in _applyAttributes() for
61
+ // performance: so the class changes happen before DOM is inserted into the document.
62
+ // Change back to postCreate() in 2.0. See #11635.
63
+
64
+ this.inherited(arguments);
65
+
66
+ // Monitoring changes to disabled, readonly, etc. state, and update CSS class of root node
67
+ array.forEach(["disabled", "readOnly", "checked", "selected", "focused", "state", "hovering", "active", "_opened"], function(attr){
68
+ this.watch(attr, lang.hitch(this, "_setStateClass"));
69
+ }, this);
70
+
71
+ // Track hover and active mouse events on widget root node, plus possibly on subnodes
72
+ for(var ap in this.cssStateNodes || {}){
73
+ this._trackMouseState(this[ap], this.cssStateNodes[ap]);
74
+ }
75
+ this._trackMouseState(this.domNode, this.baseClass);
76
+
77
+ // Set state initially; there's probably no hover/active/focus state but widget might be
78
+ // disabled/readonly/checked/selected so we want to set CSS classes for those conditions.
79
+ this._setStateClass();
80
+ },
81
+
82
+ _cssMouseEvent: function(/*Event*/ event){
83
+ // summary:
84
+ // Handler for CSS event on this.domNode. Sets hovering and active properties depending on mouse state,
85
+ // which triggers _setStateClass() to set appropriate CSS classes for this.domNode.
86
+
87
+ if(!this.disabled){
88
+ switch(event.type){
89
+ case "mouseover":
90
+ case "MSPointerOver":
91
+ case "pointerover":
92
+ this._set("hovering", true);
93
+ this._set("active", this._mouseDown);
94
+ break;
95
+ case "mouseout":
96
+ case "MSPointerOut":
97
+ case "pointerout":
98
+ this._set("hovering", false);
99
+ this._set("active", false);
100
+ break;
101
+ case "mousedown":
102
+ case "touchstart":
103
+ case "MSPointerDown":
104
+ case "pointerdown":
105
+ case "keydown":
106
+ this._set("active", true);
107
+ break;
108
+ case "mouseup":
109
+ case "dojotouchend":
110
+ case "MSPointerUp":
111
+ case "pointerup":
112
+ case "keyup":
113
+ this._set("active", false);
114
+ break;
115
+ }
116
+ }
117
+ },
118
+
119
+ _setStateClass: function(){
120
+ // summary:
121
+ // Update the visual state of the widget by setting the css classes on this.domNode
122
+ // (or this.stateNode if defined) by combining this.baseClass with
123
+ // various suffixes that represent the current widget state(s).
124
+ //
125
+ // description:
126
+ // In the case where a widget has multiple
127
+ // states, it sets the class based on all possible
128
+ // combinations. For example, an invalid form widget that is being hovered
129
+ // will be "dijitInput dijitInputInvalid dijitInputHover dijitInputInvalidHover".
130
+ //
131
+ // The widget may have one or more of the following states, determined
132
+ // by this.state, this.checked, this.valid, and this.selected:
133
+ //
134
+ // - Error - ValidationTextBox sets this.state to "Error" if the current input value is invalid
135
+ // - Incomplete - ValidationTextBox sets this.state to "Incomplete" if the current input value is not finished yet
136
+ // - Checked - ex: a checkmark or a ToggleButton in a checked state, will have this.checked==true
137
+ // - Selected - ex: currently selected tab will have this.selected==true
138
+ //
139
+ // In addition, it may have one or more of the following states,
140
+ // based on this.disabled and flags set in _onMouse (this.active, this.hovering) and from focus manager (this.focused):
141
+ //
142
+ // - Disabled - if the widget is disabled
143
+ // - Active - if the mouse (or space/enter key?) is being pressed down
144
+ // - Focused - if the widget has focus
145
+ // - Hover - if the mouse is over the widget
146
+
147
+ // Compute new set of classes
148
+ var newStateClasses = this.baseClass.split(" ");
149
+
150
+ function multiply(modifier){
151
+ newStateClasses = newStateClasses.concat(array.map(newStateClasses, function(c){
152
+ return c + modifier;
153
+ }), "dijit" + modifier);
154
+ }
155
+
156
+ if(!this.isLeftToRight()){
157
+ // For RTL mode we need to set an addition class like dijitTextBoxRtl.
158
+ multiply("Rtl");
159
+ }
160
+
161
+ var checkedState = this.checked == "mixed" ? "Mixed" : (this.checked ? "Checked" : "");
162
+ if(this.checked){
163
+ multiply(checkedState);
164
+ }
165
+ if(this.state){
166
+ multiply(this.state);
167
+ }
168
+ if(this.selected){
169
+ multiply("Selected");
170
+ }
171
+ if(this._opened){
172
+ multiply("Opened");
173
+ }
174
+
175
+ if(this.disabled){
176
+ multiply("Disabled");
177
+ }else if(this.readOnly){
178
+ multiply("ReadOnly");
179
+ }else{
180
+ if(this.active){
181
+ multiply("Active");
182
+ }else if(this.hovering){
183
+ multiply("Hover");
184
+ }
185
+ }
186
+
187
+ if(this.focused){
188
+ multiply("Focused");
189
+ }
190
+
191
+ // Remove old state classes and add new ones.
192
+ // For performance concerns we only write into domNode.className once.
193
+ var tn = this.stateNode || this.domNode,
194
+ classHash = {}; // set of all classes (state and otherwise) for node
195
+
196
+ array.forEach(tn.className.split(" "), function(c){
197
+ classHash[c] = true;
198
+ });
199
+
200
+ if("_stateClasses" in this){
201
+ array.forEach(this._stateClasses, function(c){
202
+ delete classHash[c];
203
+ });
204
+ }
205
+
206
+ array.forEach(newStateClasses, function(c){
207
+ classHash[c] = true;
208
+ });
209
+
210
+ var newClasses = [];
211
+ for(var c in classHash){
212
+ newClasses.push(c);
213
+ }
214
+ tn.className = newClasses.join(" ");
215
+
216
+ this._stateClasses = newStateClasses;
217
+ },
218
+
219
+ _subnodeCssMouseEvent: function(node, clazz, evt){
220
+ // summary:
221
+ // Handler for hover/active mouse event on widget's subnode
222
+ if(this.disabled || this.readOnly){
223
+ return;
224
+ }
225
+
226
+ function hover(isHovering){
227
+ domClass.toggle(node, clazz + "Hover", isHovering);
228
+ }
229
+
230
+ function active(isActive){
231
+ domClass.toggle(node, clazz + "Active", isActive);
232
+ }
233
+
234
+ function focused(isFocused){
235
+ domClass.toggle(node, clazz + "Focused", isFocused);
236
+ }
237
+
238
+ switch(evt.type){
239
+ case "mouseover":
240
+ case "MSPointerOver":
241
+ case "pointerover":
242
+ hover(true);
243
+ break;
244
+ case "mouseout":
245
+ case "MSPointerOut":
246
+ case "pointerout":
247
+ hover(false);
248
+ active(false);
249
+ break;
250
+ case "mousedown":
251
+ case "touchstart":
252
+ case "MSPointerDown":
253
+ case "pointerdown":
254
+ case "keydown":
255
+ active(true);
256
+ break;
257
+ case "mouseup":
258
+ case "MSPointerUp":
259
+ case "pointerup":
260
+ case "dojotouchend":
261
+ case "keyup":
262
+ active(false);
263
+ break;
264
+ case "focus":
265
+ case "focusin":
266
+ focused(true);
267
+ break;
268
+ case "blur":
269
+ case "focusout":
270
+ focused(false);
271
+ break;
272
+ }
273
+ },
274
+
275
+ _trackMouseState: function(/*DomNode*/ node, /*String*/ clazz){
276
+ // summary:
277
+ // Track mouse/focus events on specified node and set CSS class on that node to indicate
278
+ // current state. Usually not called directly, but via cssStateNodes attribute.
279
+ // description:
280
+ // Given class=foo, will set the following CSS class on the node
281
+ //
282
+ // - fooActive: if the user is currently pressing down the mouse button while over the node
283
+ // - fooHover: if the user is hovering the mouse over the node, but not pressing down a button
284
+ // - fooFocus: if the node is focused
285
+ //
286
+ // Note that it won't set any classes if the widget is disabled.
287
+ // node: DomNode
288
+ // Should be a sub-node of the widget, not the top node (this.domNode), since the top node
289
+ // is handled specially and automatically just by mixing in this class.
290
+ // clazz: String
291
+ // CSS class name (ex: dijitSliderUpArrow)
292
+
293
+ // Flag for listener code below to call this._cssMouseEvent() or this._subnodeCssMouseEvent()
294
+ // when node is hovered/active
295
+ node._cssState = clazz;
296
+ }
297
+ });
298
+
299
+ domReady(function(){
300
+ // Document level listener to catch hover etc. events on widget root nodes and subnodes.
301
+ // Note that when the mouse is moved quickly, a single onmouseenter event could signal that multiple widgets
302
+ // have been hovered or unhovered (try test_Accordion.html)
303
+
304
+ function pointerHandler(evt, target, relatedTarget){
305
+ // Handler for mouseover, mouseout, a11yclick.press and a11click.release events
306
+
307
+ // Poor man's event propagation. Don't propagate event to ancestors of evt.relatedTarget,
308
+ // to avoid processing mouseout events moving from a widget's domNode to a descendant node;
309
+ // such events shouldn't be interpreted as a mouseleave on the widget.
310
+ if(relatedTarget && dom.isDescendant(relatedTarget, target)){
311
+ return;
312
+ }
313
+
314
+ for(var node = target; node && node != relatedTarget; node = node.parentNode){
315
+ // Process any nodes with _cssState property. They are generally widget root nodes,
316
+ // but could also be sub-nodes within a widget
317
+ if(node._cssState){
318
+ var widget = registry.getEnclosingWidget(node);
319
+ if(widget){
320
+ if(node == widget.domNode){
321
+ // event on the widget's root node
322
+ widget._cssMouseEvent(evt);
323
+ }else{
324
+ // event on widget's sub-node
325
+ widget._subnodeCssMouseEvent(node, node._cssState, evt);
326
+ }
327
+ }
328
+ }
329
+ }
330
+ }
331
+
332
+ var body = win.body(), activeNode;
333
+
334
+ // Handle pointer related events (i.e. mouse or touch)
335
+ on(body, touch.over, function(evt){
336
+ // Using touch.over rather than mouseover mainly to ignore phantom mouse events on iOS.
337
+ pointerHandler(evt, evt.target, evt.relatedTarget);
338
+ });
339
+ on(body, touch.out, function(evt){
340
+ // Using touch.out rather than mouseout mainly to ignore phantom mouse events on iOS.
341
+ pointerHandler(evt, evt.target, evt.relatedTarget);
342
+ });
343
+ on(body, a11yclick.press, function(evt){
344
+ // Save the a11yclick.press target to reference when the a11yclick.release comes.
345
+ activeNode = evt.target;
346
+ pointerHandler(evt, activeNode)
347
+ });
348
+ on(body, a11yclick.release, function(evt){
349
+ // The release event could come on a separate node than the press event, if for example user slid finger.
350
+ // Reference activeNode to reset the state of the node that got state set in the a11yclick.press handler.
351
+ pointerHandler(evt, activeNode);
352
+ activeNode = null;
353
+ });
354
+
355
+ // Track focus events on widget sub-nodes that have been registered via _trackMouseState().
356
+ // However, don't track focus events on the widget root nodes, because focus is tracked via the
357
+ // focus manager (and it's not really tracking focus, but rather tracking that focus is on one of the widget's
358
+ // nodes or a subwidget's node or a popup node, etc.)
359
+ // Remove for 2.0 (if focus CSS needed, just use :focus pseudo-selector).
360
+ on(body, "focusin, focusout", function(evt){
361
+ var node = evt.target;
362
+ if(node._cssState && !node.getAttribute("widgetId")){
363
+ var widget = registry.getEnclosingWidget(node);
364
+ if(widget){
365
+ widget._subnodeCssMouseEvent(node, node._cssState, evt);
366
+ }
367
+ }
368
+ });
369
+ });
370
+
371
+ return CssStateMixin;
372
+ });
@@ -0,0 +1,11 @@
1
+ //>>built
2
+ define("dijit/_FocusMixin",["./focus","./_WidgetBase","dojo/_base/declare","dojo/_base/lang"],function(_1,_2,_3,_4){
3
+ _4.extend(_2,{focused:false,onFocus:function(){
4
+ },onBlur:function(){
5
+ },_onFocus:function(){
6
+ this.onFocus();
7
+ },_onBlur:function(){
8
+ this.onBlur();
9
+ }});
10
+ return _3("dijit._FocusMixin",null,{_focusManager:_1});
11
+ });
@@ -0,0 +1,66 @@
1
+ define("dijit/_FocusMixin", [
2
+ "./focus",
3
+ "./_WidgetBase",
4
+ "dojo/_base/declare", // declare
5
+ "dojo/_base/lang" // lang.extend
6
+ ], function(focus, _WidgetBase, declare, lang){
7
+
8
+ // module:
9
+ // dijit/_FocusMixin
10
+
11
+ // We don't know where _FocusMixin will occur in the inheritance chain, but we need the _onFocus()/_onBlur() below
12
+ // to be last in the inheritance chain, so mixin to _WidgetBase.
13
+ lang.extend(_WidgetBase, {
14
+ // focused: [readonly] Boolean
15
+ // This widget or a widget it contains has focus, or is "active" because
16
+ // it was recently clicked.
17
+ focused: false,
18
+
19
+ onFocus: function(){
20
+ // summary:
21
+ // Called when the widget becomes "active" because
22
+ // it or a widget inside of it either has focus, or has recently
23
+ // been clicked.
24
+ // tags:
25
+ // callback
26
+ },
27
+
28
+ onBlur: function(){
29
+ // summary:
30
+ // Called when the widget stops being "active" because
31
+ // focus moved to something outside of it, or the user
32
+ // clicked somewhere outside of it, or the widget was
33
+ // hidden.
34
+ // tags:
35
+ // callback
36
+ },
37
+
38
+ _onFocus: function(){
39
+ // summary:
40
+ // This is where widgets do processing for when they are active,
41
+ // such as changing CSS classes. See onFocus() for more details.
42
+ // tags:
43
+ // protected
44
+ this.onFocus();
45
+ },
46
+
47
+ _onBlur: function(){
48
+ // summary:
49
+ // This is where widgets do processing for when they stop being active,
50
+ // such as changing CSS classes. See onBlur() for more details.
51
+ // tags:
52
+ // protected
53
+ this.onBlur();
54
+ }
55
+ });
56
+
57
+ return declare("dijit._FocusMixin", null, {
58
+ // summary:
59
+ // Mixin to widget to provide _onFocus() and _onBlur() methods that
60
+ // fire when a widget or its descendants get/lose focus
61
+
62
+ // flag that I want _onFocus()/_onBlur() notifications from focus manager
63
+ _focusManager: focus
64
+ });
65
+
66
+ });
@@ -0,0 +1,188 @@
1
+ //>>built
2
+ define("dijit/_HasDropDown",["dojo/_base/declare","dojo/_base/Deferred","dojo/dom","dojo/dom-attr","dojo/dom-class","dojo/dom-geometry","dojo/dom-style","dojo/has","dojo/keys","dojo/_base/lang","dojo/on","dojo/touch","./registry","./focus","./popup","./_FocusMixin"],function(_1,_2,_3,_4,_5,_6,_7,_8,_9,_a,on,_b,_c,_d,_e,_f){
3
+ return _1("dijit._HasDropDown",_f,{_buttonNode:null,_arrowWrapperNode:null,_popupStateNode:null,_aroundNode:null,dropDown:null,autoWidth:true,forceWidth:false,maxHeight:-1,dropDownPosition:["below","above"],_stopClickEvents:true,_onDropDownMouseDown:function(e){
4
+ if(this.disabled||this.readOnly){
5
+ return;
6
+ }
7
+ if(e.type!="MSPointerDown"){
8
+ e.preventDefault();
9
+ }
10
+ this.own(on.once(this.ownerDocument,_b.release,_a.hitch(this,"_onDropDownMouseUp")));
11
+ this.toggleDropDown();
12
+ },_onDropDownMouseUp:function(e){
13
+ var _10=this.dropDown,_11=false;
14
+ if(e&&this._opened){
15
+ var c=_6.position(this._buttonNode,true);
16
+ if(!(e.pageX>=c.x&&e.pageX<=c.x+c.w)||!(e.pageY>=c.y&&e.pageY<=c.y+c.h)){
17
+ var t=e.target;
18
+ while(t&&!_11){
19
+ if(_5.contains(t,"dijitPopup")){
20
+ _11=true;
21
+ }else{
22
+ t=t.parentNode;
23
+ }
24
+ }
25
+ if(_11){
26
+ t=e.target;
27
+ if(_10.onItemClick){
28
+ var _12;
29
+ while(t&&!(_12=_c.byNode(t))){
30
+ t=t.parentNode;
31
+ }
32
+ if(_12&&_12.onClick&&_12.getParent){
33
+ _12.getParent().onItemClick(_12,e);
34
+ }
35
+ }
36
+ return;
37
+ }
38
+ }
39
+ }
40
+ if(this._opened){
41
+ if(_10.focus&&(_10.autoFocus!==false||(e.type=="mouseup"&&!this.hovering))){
42
+ this._focusDropDownTimer=this.defer(function(){
43
+ _10.focus();
44
+ delete this._focusDropDownTimer;
45
+ });
46
+ }
47
+ }else{
48
+ if(this.focus){
49
+ this.defer("focus");
50
+ }
51
+ }
52
+ },_onDropDownClick:function(e){
53
+ if(this._stopClickEvents){
54
+ e.stopPropagation();
55
+ e.preventDefault();
56
+ }
57
+ },buildRendering:function(){
58
+ this.inherited(arguments);
59
+ this._buttonNode=this._buttonNode||this.focusNode||this.domNode;
60
+ this._popupStateNode=this._popupStateNode||this.focusNode||this._buttonNode;
61
+ var _13={"after":this.isLeftToRight()?"Right":"Left","before":this.isLeftToRight()?"Left":"Right","above":"Up","below":"Down","left":"Left","right":"Right"}[this.dropDownPosition[0]]||this.dropDownPosition[0]||"Down";
62
+ _5.add(this._arrowWrapperNode||this._buttonNode,"dijit"+_13+"ArrowButton");
63
+ },postCreate:function(){
64
+ this.inherited(arguments);
65
+ var _14=this.focusNode||this.domNode;
66
+ this.own(on(this._buttonNode,_b.press,_a.hitch(this,"_onDropDownMouseDown")),on(this._buttonNode,"click",_a.hitch(this,"_onDropDownClick")),on(_14,"keydown",_a.hitch(this,"_onKey")),on(_14,"keyup",_a.hitch(this,"_onKeyUp")));
67
+ },destroy:function(){
68
+ if(this._opened){
69
+ this.closeDropDown(true);
70
+ }
71
+ if(this.dropDown){
72
+ if(!this.dropDown._destroyed){
73
+ this.dropDown.destroyRecursive();
74
+ }
75
+ delete this.dropDown;
76
+ }
77
+ this.inherited(arguments);
78
+ },_onKey:function(e){
79
+ if(this.disabled||this.readOnly){
80
+ return;
81
+ }
82
+ var d=this.dropDown,_15=e.target;
83
+ if(d&&this._opened&&d.handleKey){
84
+ if(d.handleKey(e)===false){
85
+ e.stopPropagation();
86
+ e.preventDefault();
87
+ return;
88
+ }
89
+ }
90
+ if(d&&this._opened&&e.keyCode==_9.ESCAPE){
91
+ this.closeDropDown();
92
+ e.stopPropagation();
93
+ e.preventDefault();
94
+ }else{
95
+ if(!this._opened&&(e.keyCode==_9.DOWN_ARROW||((e.keyCode==_9.ENTER||(e.keyCode==_9.SPACE&&(!this._searchTimer||(e.ctrlKey||e.altKey||e.metaKey))))&&((_15.tagName||"").toLowerCase()!=="input"||(_15.type&&_15.type.toLowerCase()!=="text"))))){
96
+ this._toggleOnKeyUp=true;
97
+ e.stopPropagation();
98
+ e.preventDefault();
99
+ }
100
+ }
101
+ },_onKeyUp:function(){
102
+ if(this._toggleOnKeyUp){
103
+ delete this._toggleOnKeyUp;
104
+ this.toggleDropDown();
105
+ var d=this.dropDown;
106
+ if(d&&d.focus){
107
+ this.defer(_a.hitch(d,"focus"),1);
108
+ }
109
+ }
110
+ },_onBlur:function(){
111
+ this.closeDropDown(false);
112
+ this.inherited(arguments);
113
+ },isLoaded:function(){
114
+ return true;
115
+ },loadDropDown:function(_16){
116
+ _16();
117
+ },loadAndOpenDropDown:function(){
118
+ var d=new _2(),_17=_a.hitch(this,function(){
119
+ this.openDropDown();
120
+ d.resolve(this.dropDown);
121
+ });
122
+ if(!this.isLoaded()){
123
+ this.loadDropDown(_17);
124
+ }else{
125
+ _17();
126
+ }
127
+ return d;
128
+ },toggleDropDown:function(){
129
+ if(this.disabled||this.readOnly){
130
+ return;
131
+ }
132
+ if(!this._opened){
133
+ this.loadAndOpenDropDown();
134
+ }else{
135
+ this.closeDropDown(true);
136
+ }
137
+ },openDropDown:function(){
138
+ var _18=this.dropDown,_19=_18.domNode,_1a=this._aroundNode||this.domNode,_1b=this;
139
+ var _1c=_e.open({parent:this,popup:_18,around:_1a,orient:this.dropDownPosition,maxHeight:this.maxHeight,onExecute:function(){
140
+ _1b.closeDropDown(true);
141
+ },onCancel:function(){
142
+ _1b.closeDropDown(true);
143
+ },onClose:function(){
144
+ _4.set(_1b._popupStateNode,"popupActive",false);
145
+ _5.remove(_1b._popupStateNode,"dijitHasDropDownOpen");
146
+ _1b._set("_opened",false);
147
+ }});
148
+ if(this.forceWidth||(this.autoWidth&&_1a.offsetWidth>_18._popupWrapper.offsetWidth)){
149
+ var _1d=_1a.offsetWidth-_18._popupWrapper.offsetWidth;
150
+ var _1e={w:_18.domNode.offsetWidth+_1d};
151
+ this._origStyle=_19.style.cssText;
152
+ if(_a.isFunction(_18.resize)){
153
+ _18.resize(_1e);
154
+ }else{
155
+ _6.setMarginBox(_19,_1e);
156
+ }
157
+ if(_1c.corner[1]=="R"){
158
+ _18._popupWrapper.style.left=(_18._popupWrapper.style.left.replace("px","")-_1d)+"px";
159
+ }
160
+ }
161
+ _4.set(this._popupStateNode,"popupActive","true");
162
+ _5.add(this._popupStateNode,"dijitHasDropDownOpen");
163
+ this._set("_opened",true);
164
+ this._popupStateNode.setAttribute("aria-expanded","true");
165
+ this._popupStateNode.setAttribute("aria-owns",_18.id);
166
+ if(_19.getAttribute("role")!=="presentation"&&!_19.getAttribute("aria-labelledby")){
167
+ _19.setAttribute("aria-labelledby",this.id);
168
+ }
169
+ return _1c;
170
+ },closeDropDown:function(_1f){
171
+ if(this._focusDropDownTimer){
172
+ this._focusDropDownTimer.remove();
173
+ delete this._focusDropDownTimer;
174
+ }
175
+ if(this._opened){
176
+ this._popupStateNode.setAttribute("aria-expanded","false");
177
+ if(_1f&&this.focus){
178
+ this.focus();
179
+ }
180
+ _e.close(this.dropDown);
181
+ this._opened=false;
182
+ }
183
+ if(this._origStyle){
184
+ this.dropDown.domNode.style.cssText=this._origStyle;
185
+ delete this._origStyle;
186
+ }
187
+ }});
188
+ });