@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,130 @@
1
+ require({cache:{
2
+ 'url:dijit/form/templates/Button.html':"<span class=\"dijit dijitReset dijitInline\" role=\"presentation\"\n\t><span class=\"dijitReset dijitInline dijitButtonNode\"\n\t\tdata-dojo-attach-event=\"ondijitclick:__onClick\" role=\"presentation\"\n\t\t><span class=\"dijitReset dijitStretch dijitButtonContents\"\n\t\t\tdata-dojo-attach-point=\"titleNode,focusNode\"\n\t\t\trole=\"button\" aria-labelledby=\"${id}_label\"\n\t\t\t><span class=\"dijitReset dijitInline dijitIcon\" data-dojo-attach-point=\"iconNode\"></span\n\t\t\t><span class=\"dijitReset dijitToggleButtonIconChar\">&#x25CF;</span\n\t\t\t><span class=\"dijitReset dijitInline dijitButtonText\"\n\t\t\t\tid=\"${id}_label\"\n\t\t\t\tdata-dojo-attach-point=\"containerNode\"\n\t\t\t></span\n\t\t></span\n\t></span\n\t><input ${!nameAttrSetting} type=\"${type}\" value=\"${value}\" class=\"dijitOffScreen\"\n\t\tdata-dojo-attach-event=\"onclick:_onClick\"\n\t\ttabIndex=\"-1\" aria-hidden=\"true\" data-dojo-attach-point=\"valueNode\"\n/></span>\n"}});
3
+ define("dijit/form/Button", [
4
+ "require",
5
+ "dojo/_base/declare", // declare
6
+ "dojo/dom-class", // domClass.toggle
7
+ "dojo/has", // has("dijit-legacy-requires")
8
+ "dojo/_base/kernel", // kernel.deprecated
9
+ "dojo/_base/lang", // lang.trim
10
+ "dojo/ready",
11
+ "./_FormWidget",
12
+ "./_ButtonMixin",
13
+ "dojo/text!./templates/Button.html",
14
+ "../a11yclick" // template uses ondijitclick
15
+ ], function(require, declare, domClass, has, kernel, lang, ready, _FormWidget, _ButtonMixin, template){
16
+
17
+ // module:
18
+ // dijit/form/Button
19
+
20
+ // Back compat w/1.6, remove for 2.0
21
+ if(has("dijit-legacy-requires")){
22
+ ready(0, function(){
23
+ var requires = ["dijit/form/DropDownButton", "dijit/form/ComboButton", "dijit/form/ToggleButton"];
24
+ require(requires); // use indirection so modules not rolled into a build
25
+ });
26
+ }
27
+
28
+ var Button = declare("dijit.form.Button" + (has("dojo-bidi") ? "_NoBidi" : ""), [_FormWidget, _ButtonMixin], {
29
+ // summary:
30
+ // Basically the same thing as a normal HTML button, but with special styling.
31
+ // description:
32
+ // Buttons can display a label, an icon, or both.
33
+ // A label should always be specified (through innerHTML) or the label
34
+ // attribute. It can be hidden via showLabel=false.
35
+ // example:
36
+ // | <button data-dojo-type="dijit/form/Button" onClick="...">Hello world</button>
37
+ //
38
+ // example:
39
+ // | var button1 = new Button({label: "hello world", onClick: foo});
40
+ // | dojo.body().appendChild(button1.domNode);
41
+
42
+ // showLabel: Boolean
43
+ // Set this to true to hide the label text and display only the icon.
44
+ // (If showLabel=false then iconClass must be specified.)
45
+ // Especially useful for toolbars.
46
+ // If showLabel=true, the label will become the title (a.k.a. tooltip/hint) of the icon.
47
+ //
48
+ // The exception case is for computers in high-contrast mode, where the label
49
+ // will still be displayed, since the icon doesn't appear.
50
+ showLabel: true,
51
+
52
+ // iconClass: String
53
+ // Class to apply to DOMNode in button to make it display an icon
54
+ iconClass: "dijitNoIcon",
55
+ _setIconClassAttr: { node: "iconNode", type: "class" },
56
+
57
+ baseClass: "dijitButton",
58
+
59
+ templateString: template,
60
+
61
+ // Map widget attributes to DOMNode attributes.
62
+ _setValueAttr: "valueNode",
63
+ _setNameAttr: function(name){
64
+ // avoid breaking existing subclasses where valueNode undefined. Perhaps in 2.0 require it to be defined?
65
+ if(this.valueNode){
66
+ this.valueNode.setAttribute("name", name);
67
+ }
68
+ },
69
+
70
+ _fillContent: function(/*DomNode*/ source){
71
+ // Overrides _Templated._fillContent().
72
+ // If button label is specified as srcNodeRef.innerHTML rather than
73
+ // this.params.label, handle it here.
74
+ // TODO: remove the method in 2.0, parser will do it all for me
75
+ if(source && (!this.params || !("label" in this.params))){
76
+ var sourceLabel = lang.trim(source.innerHTML);
77
+ if(sourceLabel){
78
+ this.label = sourceLabel; // _applyAttributes will be called after buildRendering completes to update the DOM
79
+ }
80
+ }
81
+ },
82
+
83
+ _setShowLabelAttr: function(val){
84
+ if(this.containerNode){
85
+ domClass.toggle(this.containerNode, "dijitDisplayNone", !val);
86
+ }
87
+ this._set("showLabel", val);
88
+ },
89
+
90
+ setLabel: function(/*String*/ content){
91
+ // summary:
92
+ // Deprecated. Use set('label', ...) instead.
93
+ kernel.deprecated("dijit.form.Button.setLabel() is deprecated. Use set('label', ...) instead.", "", "2.0");
94
+ this.set("label", content);
95
+ },
96
+
97
+ _setLabelAttr: function(/*String*/ content){
98
+ // summary:
99
+ // Hook for set('label', ...) to work.
100
+ // description:
101
+ // Set the label (text) of the button; takes an HTML string.
102
+ // If the label is hidden (showLabel=false) then and no title has
103
+ // been specified, then label is also set as title attribute of icon.
104
+ this.inherited(arguments);
105
+ if(!this.showLabel && !("title" in this.params)){
106
+ this.titleNode.title = lang.trim(this.containerNode.innerText || this.containerNode.textContent || '');
107
+ }
108
+ }
109
+ });
110
+
111
+ if(has("dojo-bidi")){
112
+ Button = declare("dijit.form.Button", Button, {
113
+ _setLabelAttr: function(/*String*/ content){
114
+ this.inherited(arguments);
115
+ if(this.titleNode.title){
116
+ this.applyTextDir(this.titleNode, this.titleNode.title);
117
+ }
118
+ },
119
+
120
+ _setTextDirAttr: function(/*String*/ textDir){
121
+ if(this._created && this.textDir != textDir){
122
+ this._set("textDir", textDir);
123
+ this._setLabelAttr(this.label); // call applyTextDir on both focusNode and titleNode
124
+ }
125
+ }
126
+ });
127
+ }
128
+
129
+ return Button;
130
+ });
@@ -0,0 +1,4 @@
1
+ //>>built
2
+ define("dijit/form/ComboBox",["dojo/_base/declare","./ValidationTextBox","./ComboBoxMixin"],function(_1,_2,_3){
3
+ return _1("dijit.form.ComboBox",[_2,_3],{});
4
+ });
@@ -0,0 +1,27 @@
1
+ define("dijit/form/ComboBox", [
2
+ "dojo/_base/declare", // declare
3
+ "./ValidationTextBox",
4
+ "./ComboBoxMixin"
5
+ ], function(declare, ValidationTextBox, ComboBoxMixin){
6
+
7
+ // module:
8
+ // dijit/form/ComboBox
9
+
10
+ return declare("dijit.form.ComboBox", [ValidationTextBox, ComboBoxMixin], {
11
+ // summary:
12
+ // Auto-completing text box
13
+ //
14
+ // description:
15
+ // The drop down box's values are populated from an class called
16
+ // a data provider, which returns a list of values based on the characters
17
+ // that the user has typed into the input box.
18
+ // If OPTION tags are used as the data provider via markup,
19
+ // then the OPTION tag's child text node is used as the widget value
20
+ // when selected. The OPTION tag's value attribute is ignored.
21
+ // To set the default value when using OPTION tags, specify the selected
22
+ // attribute on 1 of the child OPTION tags.
23
+ //
24
+ // Some of the options to the ComboBox are actually arguments to the data
25
+ // provider.
26
+ });
27
+ });
@@ -0,0 +1,21 @@
1
+ //>>built
2
+ require({cache:{"url:dijit/form/templates/ComboButton.html":"<table class=\"dijit dijitReset dijitInline dijitLeft\"\n\tcellspacing='0' cellpadding='0' role=\"presentation\"\n\t><tbody role=\"presentation\"><tr role=\"presentation\"\n\t\t><td class=\"dijitReset dijitStretch dijitButtonNode\" data-dojo-attach-point=\"buttonNode\" data-dojo-attach-event=\"ondijitclick:__onClick,onkeydown:_onButtonKeyDown\"\n\t\t><div id=\"${id}_button\" class=\"dijitReset dijitButtonContents\"\n\t\t\tdata-dojo-attach-point=\"titleNode\"\n\t\t\trole=\"button\" aria-labelledby=\"${id}_label\"\n\t\t\t><div class=\"dijitReset dijitInline dijitIcon\" data-dojo-attach-point=\"iconNode\" role=\"presentation\"></div\n\t\t\t><div class=\"dijitReset dijitInline dijitButtonText\" id=\"${id}_label\" data-dojo-attach-point=\"containerNode\" role=\"presentation\"></div\n\t\t></div\n\t\t></td\n\t\t><td id=\"${id}_arrow\" class='dijitReset dijitRight dijitButtonNode dijitArrowButton'\n\t\t\tdata-dojo-attach-point=\"_popupStateNode,focusNode,_buttonNode\"\n\t\t\tdata-dojo-attach-event=\"onkeydown:_onArrowKeyDown\"\n\t\t\ttitle=\"${optionsTitle}\"\n\t\t\trole=\"button\" aria-haspopup=\"true\"\n\t\t\t><div class=\"dijitReset dijitArrowButtonInner\" role=\"presentation\"></div\n\t\t\t><div class=\"dijitReset dijitArrowButtonChar\" role=\"presentation\">&#9660;</div\n\t\t></td\n\t\t><td style=\"display:none !important;\"\n\t\t\t><input ${!nameAttrSetting} type=\"${type}\" value=\"${value}\" data-dojo-attach-point=\"valueNode\"\n\t\t\t\tclass=\"dijitOffScreen\" aria-hidden=\"true\" data-dojo-attach-event=\"onclick:_onClick\"\n\t\t/></td></tr></tbody\n></table>\n"}});
3
+ define("dijit/form/ComboButton",["dojo/_base/declare","dojo/keys","../focus","./DropDownButton","dojo/text!./templates/ComboButton.html","../a11yclick"],function(_1,_2,_3,_4,_5){
4
+ return _1("dijit.form.ComboButton",_4,{templateString:_5,_setIdAttr:"",_setTabIndexAttr:["focusNode","titleNode"],_setTitleAttr:"titleNode",optionsTitle:"",baseClass:"dijitComboButton",cssStateNodes:{"buttonNode":"dijitButtonNode","titleNode":"dijitButtonContents","_popupStateNode":"dijitDownArrowButton"},_focusedNode:null,_onButtonKeyDown:function(_6){
5
+ if(_6.keyCode==_2[this.isLeftToRight()?"RIGHT_ARROW":"LEFT_ARROW"]){
6
+ _3.focus(this._popupStateNode);
7
+ _6.stopPropagation();
8
+ _6.preventDefault();
9
+ }
10
+ },_onArrowKeyDown:function(_7){
11
+ if(_7.keyCode==_2[this.isLeftToRight()?"LEFT_ARROW":"RIGHT_ARROW"]){
12
+ _3.focus(this.titleNode);
13
+ _7.stopPropagation();
14
+ _7.preventDefault();
15
+ }
16
+ },focus:function(_8){
17
+ if(!this.disabled){
18
+ _3.focus(_8=="start"?this.titleNode:this._popupStateNode);
19
+ }
20
+ }});
21
+ });
@@ -0,0 +1,86 @@
1
+ require({cache:{
2
+ 'url:dijit/form/templates/ComboButton.html':"<table class=\"dijit dijitReset dijitInline dijitLeft\"\n\tcellspacing='0' cellpadding='0' role=\"presentation\"\n\t><tbody role=\"presentation\"><tr role=\"presentation\"\n\t\t><td class=\"dijitReset dijitStretch dijitButtonNode\" data-dojo-attach-point=\"buttonNode\" data-dojo-attach-event=\"ondijitclick:__onClick,onkeydown:_onButtonKeyDown\"\n\t\t><div id=\"${id}_button\" class=\"dijitReset dijitButtonContents\"\n\t\t\tdata-dojo-attach-point=\"titleNode\"\n\t\t\trole=\"button\" aria-labelledby=\"${id}_label\"\n\t\t\t><div class=\"dijitReset dijitInline dijitIcon\" data-dojo-attach-point=\"iconNode\" role=\"presentation\"></div\n\t\t\t><div class=\"dijitReset dijitInline dijitButtonText\" id=\"${id}_label\" data-dojo-attach-point=\"containerNode\" role=\"presentation\"></div\n\t\t></div\n\t\t></td\n\t\t><td id=\"${id}_arrow\" class='dijitReset dijitRight dijitButtonNode dijitArrowButton'\n\t\t\tdata-dojo-attach-point=\"_popupStateNode,focusNode,_buttonNode\"\n\t\t\tdata-dojo-attach-event=\"onkeydown:_onArrowKeyDown\"\n\t\t\ttitle=\"${optionsTitle}\"\n\t\t\trole=\"button\" aria-haspopup=\"true\"\n\t\t\t><div class=\"dijitReset dijitArrowButtonInner\" role=\"presentation\"></div\n\t\t\t><div class=\"dijitReset dijitArrowButtonChar\" role=\"presentation\">&#9660;</div\n\t\t></td\n\t\t><td style=\"display:none !important;\"\n\t\t\t><input ${!nameAttrSetting} type=\"${type}\" value=\"${value}\" data-dojo-attach-point=\"valueNode\"\n\t\t\t\tclass=\"dijitOffScreen\" aria-hidden=\"true\" data-dojo-attach-event=\"onclick:_onClick\"\n\t\t/></td></tr></tbody\n></table>\n"}});
3
+ define("dijit/form/ComboButton", [
4
+ "dojo/_base/declare", // declare
5
+ "dojo/keys", // keys
6
+ "../focus", // focus.focus()
7
+ "./DropDownButton",
8
+ "dojo/text!./templates/ComboButton.html",
9
+ "../a11yclick" // template uses ondijitclick
10
+ ], function(declare, keys, focus, DropDownButton, template){
11
+
12
+ // module:
13
+ // dijit/form/ComboButton
14
+
15
+ return declare("dijit.form.ComboButton", DropDownButton, {
16
+ // summary:
17
+ // A combination button and drop-down button.
18
+ // Users can click one side to "press" the button, or click an arrow
19
+ // icon to display the drop down.
20
+ //
21
+ // example:
22
+ // | <button data-dojo-type="dijit/form/ComboButton" onClick="...">
23
+ // | <span>Hello world</span>
24
+ // | <div data-dojo-type="dijit/Menu">...</div>
25
+ // | </button>
26
+ //
27
+ // example:
28
+ // | var button1 = new ComboButton({label: "hello world", onClick: foo, dropDown: "myMenu"});
29
+ // | dojo.body().appendChild(button1.domNode);
30
+ //
31
+
32
+ templateString: template,
33
+
34
+ // Map widget attributes to DOMNode attributes.
35
+ _setIdAttr: "", // override _FormWidgetMixin which puts id on the focusNode
36
+ _setTabIndexAttr: ["focusNode", "titleNode"],
37
+ _setTitleAttr: "titleNode",
38
+
39
+ // optionsTitle: String
40
+ // Text that describes the options menu (accessibility)
41
+ optionsTitle: "",
42
+
43
+ baseClass: "dijitComboButton",
44
+
45
+ // Set classes like dijitButtonContentsHover or dijitArrowButtonActive depending on
46
+ // mouse action over specified node
47
+ cssStateNodes: {
48
+ "buttonNode": "dijitButtonNode",
49
+ "titleNode": "dijitButtonContents",
50
+ "_popupStateNode": "dijitDownArrowButton"
51
+ },
52
+
53
+ _focusedNode: null,
54
+
55
+ _onButtonKeyDown: function(/*Event*/ evt){
56
+ // summary:
57
+ // Handler for right arrow key when focus is on left part of button
58
+ if(evt.keyCode == keys[this.isLeftToRight() ? "RIGHT_ARROW" : "LEFT_ARROW"]){
59
+ focus.focus(this._popupStateNode);
60
+ evt.stopPropagation();
61
+ evt.preventDefault();
62
+ }
63
+ },
64
+
65
+ _onArrowKeyDown: function(/*Event*/ evt){
66
+ // summary:
67
+ // Handler for left arrow key when focus is on right part of button
68
+ if(evt.keyCode == keys[this.isLeftToRight() ? "LEFT_ARROW" : "RIGHT_ARROW"]){
69
+ focus.focus(this.titleNode);
70
+ evt.stopPropagation();
71
+ evt.preventDefault();
72
+ }
73
+ },
74
+
75
+ focus: function(/*String*/ position){
76
+ // summary:
77
+ // Focuses this widget to according to position, if specified,
78
+ // otherwise on arrow node
79
+ // position:
80
+ // "start" or "end"
81
+ if(!this.disabled){
82
+ focus.focus(position == "start" ? this.titleNode : this._popupStateNode);
83
+ }
84
+ }
85
+ });
86
+ });
@@ -0,0 +1,38 @@
1
+ //>>built
2
+ require({cache:{"url:dijit/form/templates/DropDownButton.html":"<span class=\"dijit dijitReset dijitInline\"\n\t><span class='dijitReset dijitInline dijitButtonNode'\n\t\tdata-dojo-attach-event=\"ondijitclick:__onClick\" data-dojo-attach-point=\"_buttonNode\"\n\t\t><span class=\"dijitReset dijitStretch dijitButtonContents\"\n\t\t\tdata-dojo-attach-point=\"focusNode,titleNode,_arrowWrapperNode,_popupStateNode\"\n\t\t\trole=\"button\" aria-haspopup=\"true\" aria-labelledby=\"${id}_label\"\n\t\t\t><span class=\"dijitReset dijitInline dijitIcon\"\n\t\t\t\tdata-dojo-attach-point=\"iconNode\"\n\t\t\t></span\n\t\t\t><span class=\"dijitReset dijitInline dijitButtonText\"\n\t\t\t\tdata-dojo-attach-point=\"containerNode\"\n\t\t\t\tid=\"${id}_label\"\n\t\t\t></span\n\t\t\t><span class=\"dijitReset dijitInline dijitArrowButtonInner\"></span\n\t\t\t><span class=\"dijitReset dijitInline dijitArrowButtonChar\">&#9660;</span\n\t\t></span\n\t></span\n\t><input ${!nameAttrSetting} type=\"${type}\" value=\"${value}\" class=\"dijitOffScreen\" tabIndex=\"-1\"\n\t\tdata-dojo-attach-event=\"onclick:_onClick\" data-dojo-attach-point=\"valueNode\" aria-hidden=\"true\"\n/></span>\n"}});
3
+ define("dijit/form/DropDownButton",["dojo/_base/declare","dojo/_base/lang","dojo/query","../registry","../popup","./Button","../_Container","../_HasDropDown","dojo/text!./templates/DropDownButton.html","../a11yclick"],function(_1,_2,_3,_4,_5,_6,_7,_8,_9){
4
+ return _1("dijit.form.DropDownButton",[_6,_7,_8],{baseClass:"dijitDropDownButton",templateString:_9,_fillContent:function(){
5
+ if(this.srcNodeRef){
6
+ var _a=_3("*",this.srcNodeRef);
7
+ this.inherited(arguments,[_a[0]]);
8
+ this.dropDownContainer=this.srcNodeRef;
9
+ }
10
+ },startup:function(){
11
+ if(this._started){
12
+ return;
13
+ }
14
+ if(!this.dropDown&&this.dropDownContainer){
15
+ var _b=_3("[widgetId]",this.dropDownContainer)[0];
16
+ if(_b){
17
+ this.dropDown=_4.byNode(_b);
18
+ }
19
+ delete this.dropDownContainer;
20
+ }
21
+ if(this.dropDown){
22
+ _5.hide(this.dropDown);
23
+ }
24
+ this.inherited(arguments);
25
+ },isLoaded:function(){
26
+ var _c=this.dropDown;
27
+ return (!!_c&&(!_c.href||_c.isLoaded));
28
+ },loadDropDown:function(_d){
29
+ var _e=this.dropDown;
30
+ var _f=_e.on("load",_2.hitch(this,function(){
31
+ _f.remove();
32
+ _d();
33
+ }));
34
+ _e.refresh();
35
+ },isFocusable:function(){
36
+ return this.inherited(arguments)&&!this._mouseDown;
37
+ }});
38
+ });
@@ -0,0 +1,102 @@
1
+ require({cache:{
2
+ 'url:dijit/form/templates/DropDownButton.html':"<span class=\"dijit dijitReset dijitInline\"\n\t><span class='dijitReset dijitInline dijitButtonNode'\n\t\tdata-dojo-attach-event=\"ondijitclick:__onClick\" data-dojo-attach-point=\"_buttonNode\"\n\t\t><span class=\"dijitReset dijitStretch dijitButtonContents\"\n\t\t\tdata-dojo-attach-point=\"focusNode,titleNode,_arrowWrapperNode,_popupStateNode\"\n\t\t\trole=\"button\" aria-haspopup=\"true\" aria-labelledby=\"${id}_label\"\n\t\t\t><span class=\"dijitReset dijitInline dijitIcon\"\n\t\t\t\tdata-dojo-attach-point=\"iconNode\"\n\t\t\t></span\n\t\t\t><span class=\"dijitReset dijitInline dijitButtonText\"\n\t\t\t\tdata-dojo-attach-point=\"containerNode\"\n\t\t\t\tid=\"${id}_label\"\n\t\t\t></span\n\t\t\t><span class=\"dijitReset dijitInline dijitArrowButtonInner\"></span\n\t\t\t><span class=\"dijitReset dijitInline dijitArrowButtonChar\">&#9660;</span\n\t\t></span\n\t></span\n\t><input ${!nameAttrSetting} type=\"${type}\" value=\"${value}\" class=\"dijitOffScreen\" tabIndex=\"-1\"\n\t\tdata-dojo-attach-event=\"onclick:_onClick\" data-dojo-attach-point=\"valueNode\" aria-hidden=\"true\"\n/></span>\n"}});
3
+ define("dijit/form/DropDownButton", [
4
+ "dojo/_base/declare", // declare
5
+ "dojo/_base/lang", // hitch
6
+ "dojo/query", // query
7
+ "../registry", // registry.byNode
8
+ "../popup", // dijit.popup2.hide
9
+ "./Button",
10
+ "../_Container",
11
+ "../_HasDropDown",
12
+ "dojo/text!./templates/DropDownButton.html",
13
+ "../a11yclick" // template uses ondijitclick
14
+ ], function(declare, lang, query, registry, popup, Button, _Container, _HasDropDown, template){
15
+
16
+ // module:
17
+ // dijit/form/DropDownButton
18
+
19
+ return declare("dijit.form.DropDownButton", [Button, _Container, _HasDropDown], {
20
+ // summary:
21
+ // A button with a drop down
22
+ //
23
+ // example:
24
+ // | <button data-dojo-type="dijit/form/DropDownButton">
25
+ // | Hello world
26
+ // | <div data-dojo-type="dijit/Menu">...</div>
27
+ // | </button>
28
+ //
29
+ // example:
30
+ // | var button1 = new DropDownButton({ label: "hi", dropDown: new dijit.Menu(...) });
31
+ // | win.body().appendChild(button1);
32
+ //
33
+
34
+ baseClass: "dijitDropDownButton",
35
+
36
+ templateString: template,
37
+
38
+ _fillContent: function(){
39
+ // Overrides Button._fillContent().
40
+ //
41
+ // My inner HTML contains both the button contents and a drop down widget, like
42
+ // <DropDownButton> <span>push me</span> <Menu> ... </Menu> </DropDownButton>
43
+ // The first node is assumed to be the button content. The widget is the popup.
44
+
45
+ if(this.srcNodeRef){ // programatically created buttons might not define srcNodeRef
46
+ //FIXME: figure out how to filter out the widget and use all remaining nodes as button
47
+ // content, not just nodes[0]
48
+ var nodes = query("*", this.srcNodeRef);
49
+ this.inherited(arguments, [nodes[0]]);
50
+
51
+ // save pointer to srcNode so we can grab the drop down widget after it's instantiated
52
+ this.dropDownContainer = this.srcNodeRef;
53
+ }
54
+ },
55
+
56
+ startup: function(){
57
+ if(this._started){
58
+ return;
59
+ }
60
+
61
+ // the child widget from srcNodeRef is the dropdown widget. Insert it in the page DOM,
62
+ // make it invisible, and store a reference to pass to the popup code.
63
+ if(!this.dropDown && this.dropDownContainer){
64
+ var dropDownNode = query("[widgetId]", this.dropDownContainer)[0];
65
+ if(dropDownNode){
66
+ this.dropDown = registry.byNode(dropDownNode);
67
+ }
68
+ delete this.dropDownContainer;
69
+ }
70
+ if(this.dropDown){
71
+ popup.hide(this.dropDown);
72
+ }
73
+
74
+ this.inherited(arguments);
75
+ },
76
+
77
+ isLoaded: function(){
78
+ // Returns whether or not we are loaded - if our dropdown has an href,
79
+ // then we want to check that.
80
+ var dropDown = this.dropDown;
81
+ return (!!dropDown && (!dropDown.href || dropDown.isLoaded));
82
+ },
83
+
84
+ loadDropDown: function(/*Function*/ callback){
85
+ // Default implementation assumes that drop down already exists,
86
+ // but hasn't loaded it's data (ex: ContentPane w/href).
87
+ // App must override if the drop down is lazy-created.
88
+ var dropDown = this.dropDown;
89
+ var handler = dropDown.on("load", lang.hitch(this, function(){
90
+ handler.remove();
91
+ callback();
92
+ }));
93
+ dropDown.refresh(); // tell it to load
94
+ },
95
+
96
+ isFocusable: function(){
97
+ // Overridden so that focus is handled by the _HasDropDown mixin, not by
98
+ // the _FormWidget mixin.
99
+ return this.inherited(arguments) && !this._mouseDown;
100
+ }
101
+ });
102
+ });
@@ -0,0 +1,7 @@
1
+ //>>built
2
+ define("dijit/form/ToggleButton",["dojo/_base/declare","dojo/_base/kernel","./Button","./_ToggleButtonMixin"],function(_1,_2,_3,_4){
3
+ return _1("dijit.form.ToggleButton",[_3,_4],{baseClass:"dijitToggleButton",setChecked:function(_5){
4
+ _2.deprecated("setChecked("+_5+") is deprecated. Use set('checked',"+_5+") instead.","","2.0");
5
+ this.set("checked",_5);
6
+ }});
7
+ });
@@ -0,0 +1,26 @@
1
+ define("dijit/form/ToggleButton", [
2
+ "dojo/_base/declare", // declare
3
+ "dojo/_base/kernel", // kernel.deprecated
4
+ "./Button",
5
+ "./_ToggleButtonMixin"
6
+ ], function(declare, kernel, Button, _ToggleButtonMixin){
7
+
8
+ // module:
9
+ // dijit/form/ToggleButton
10
+
11
+
12
+ return declare("dijit.form.ToggleButton", [Button, _ToggleButtonMixin], {
13
+ // summary:
14
+ // A templated button widget that can be in two states (checked or not).
15
+ // Can be base class for things like tabs or checkbox or radio buttons.
16
+
17
+ baseClass: "dijitToggleButton",
18
+
19
+ setChecked: function(/*Boolean*/ checked){
20
+ // summary:
21
+ // Deprecated. Use set('checked', true/false) instead.
22
+ kernel.deprecated("setChecked("+checked+") is deprecated. Use set('checked',"+checked+") instead.", "", "2.0");
23
+ this.set('checked', checked);
24
+ }
25
+ });
26
+ });
@@ -0,0 +1,50 @@
1
+ //>>built
2
+ define("dijit/form/_ButtonMixin",["dojo/_base/declare","dojo/dom","dojo/has","../registry"],function(_1,_2,_3,_4){
3
+ var _5=_1("dijit.form._ButtonMixin"+(_3("dojo-bidi")?"_NoBidi":""),null,{label:"",type:"button",__onClick:function(e){
4
+ e.stopPropagation();
5
+ e.preventDefault();
6
+ if(!this.disabled){
7
+ this.valueNode.click(e);
8
+ }
9
+ return false;
10
+ },_onClick:function(e){
11
+ if(this.disabled){
12
+ e.stopPropagation();
13
+ e.preventDefault();
14
+ return false;
15
+ }
16
+ if(this.onClick(e)===false){
17
+ e.preventDefault();
18
+ }
19
+ var _6=e.defaultPrevented;
20
+ if(!_6&&this.type=="submit"&&!(this.valueNode||this.focusNode).form){
21
+ for(var _7=this.domNode;_7.parentNode;_7=_7.parentNode){
22
+ var _8=_4.byNode(_7);
23
+ if(_8&&typeof _8._onSubmit=="function"){
24
+ _8._onSubmit(e);
25
+ e.preventDefault();
26
+ _6=true;
27
+ break;
28
+ }
29
+ }
30
+ }
31
+ return !_6;
32
+ },postCreate:function(){
33
+ this.inherited(arguments);
34
+ _2.setSelectable(this.focusNode,false);
35
+ },onClick:function(){
36
+ return true;
37
+ },_setLabelAttr:function(_9){
38
+ this._set("label",_9);
39
+ var _a=this.containerNode||this.focusNode;
40
+ _a.innerHTML=_9;
41
+ }});
42
+ if(_3("dojo-bidi")){
43
+ _5=_1("dijit.form._ButtonMixin",_5,{_setLabelAttr:function(){
44
+ this.inherited(arguments);
45
+ var _b=this.containerNode||this.focusNode;
46
+ this.applyTextDir(_b);
47
+ }});
48
+ }
49
+ return _5;
50
+ });
@@ -0,0 +1,116 @@
1
+ define("dijit/form/_ButtonMixin", [
2
+ "dojo/_base/declare", // declare
3
+ "dojo/dom", // dom.setSelectable
4
+ "dojo/has",
5
+ "../registry" // registry.byNode
6
+ ], function(declare, dom, has, registry){
7
+
8
+ // module:
9
+ // dijit/form/_ButtonMixin
10
+
11
+ var ButtonMixin = declare("dijit.form._ButtonMixin" + (has("dojo-bidi") ? "_NoBidi" : ""), null, {
12
+ // summary:
13
+ // A mixin to add a thin standard API wrapper to a normal HTML button
14
+ // description:
15
+ // A label should always be specified (through innerHTML) or the label attribute.
16
+ //
17
+ // Attach points:
18
+ //
19
+ // - focusNode (required): this node receives focus
20
+ // - valueNode (optional): this node's value gets submitted with FORM elements
21
+ // - containerNode (optional): this node gets the innerHTML assignment for label
22
+ // example:
23
+ // | <button data-dojo-type="dijit/form/Button" onClick="...">Hello world</button>
24
+ // example:
25
+ // | var button1 = new Button({label: "hello world", onClick: foo});
26
+ // | dojo.body().appendChild(button1.domNode);
27
+
28
+ // label: HTML String
29
+ // Content to display in button.
30
+ label: "",
31
+
32
+ // type: [const] String
33
+ // Type of button (submit, reset, button, checkbox, radio)
34
+ type: "button",
35
+
36
+ __onClick: function(/*Event*/ e){
37
+ // summary:
38
+ // Internal function to divert the real click onto the hidden INPUT that has a native default action associated with it
39
+ // type:
40
+ // private
41
+ e.stopPropagation();
42
+ e.preventDefault();
43
+ if(!this.disabled){
44
+ // cannot use on.emit since button default actions won't occur
45
+ this.valueNode.click(e);
46
+ }
47
+ return false;
48
+ },
49
+
50
+ _onClick: function(/*Event*/ e){
51
+ // summary:
52
+ // Internal function to handle click actions
53
+ if(this.disabled){
54
+ e.stopPropagation();
55
+ e.preventDefault();
56
+ return false;
57
+ }
58
+ if(this.onClick(e) === false){
59
+ e.preventDefault();
60
+ }
61
+ var cancelled = e.defaultPrevented;
62
+
63
+ // Signal Form/Dialog to submit/close. For 2.0, consider removing this code and instead making the Form/Dialog
64
+ // listen for bubbled click events where evt.target.type == "submit" && !evt.defaultPrevented.
65
+ if(!cancelled && this.type == "submit" && !(this.valueNode || this.focusNode).form){
66
+ for(var node = this.domNode; node.parentNode; node = node.parentNode){
67
+ var widget = registry.byNode(node);
68
+ if(widget && typeof widget._onSubmit == "function"){
69
+ widget._onSubmit(e);
70
+ e.preventDefault(); // action has already occurred
71
+ cancelled = true;
72
+ break;
73
+ }
74
+ }
75
+ }
76
+
77
+ return !cancelled;
78
+ },
79
+
80
+ postCreate: function(){
81
+ this.inherited(arguments);
82
+ dom.setSelectable(this.focusNode, false);
83
+ },
84
+
85
+ onClick: function(/*Event*/ /*===== e =====*/){
86
+ // summary:
87
+ // Callback for when button is clicked.
88
+ // If type="submit", return true to perform submit, or false to cancel it.
89
+ // type:
90
+ // callback
91
+ return true; // Boolean
92
+ },
93
+
94
+ _setLabelAttr: function(/*String*/ content){
95
+ // summary:
96
+ // Hook for set('label', ...) to work.
97
+ // description:
98
+ // Set the label (text) of the button; takes an HTML string.
99
+ this._set("label", content);
100
+ var labelNode = this.containerNode || this.focusNode;
101
+ labelNode.innerHTML = content;
102
+ }
103
+ });
104
+
105
+ if(has("dojo-bidi")){
106
+ ButtonMixin = declare("dijit.form._ButtonMixin", ButtonMixin, {
107
+ _setLabelAttr: function(){
108
+ this.inherited(arguments);
109
+ var labelNode = this.containerNode || this.focusNode;
110
+ this.applyTextDir(labelNode);
111
+ }
112
+ });
113
+ }
114
+
115
+ return ButtonMixin;
116
+ });
@@ -0,0 +1,26 @@
1
+ //>>built
2
+ define("dijit/form/_FormValueMixin",["dojo/_base/declare","dojo/dom-attr","dojo/keys","dojo/_base/lang","dojo/on","dojo/sniff","./_FormWidgetMixin"],function(_1,_2,_3,_4,on,_5,_6){
3
+ return _1("dijit.form._FormValueMixin",_6,{readOnly:false,_setReadOnlyAttr:function(_7){
4
+ if(_5("trident")&&"disabled" in this){
5
+ _2.set(this.focusNode,"readOnly",_7||this.disabled);
6
+ }else{
7
+ _2.set(this.focusNode,"readOnly",_7);
8
+ }
9
+ this._set("readOnly",_7);
10
+ },postCreate:function(){
11
+ this.inherited(arguments);
12
+ if(this._resetValue===undefined){
13
+ this._lastValueReported=this._resetValue=this.value;
14
+ }
15
+ },_setValueAttr:function(_8,_9){
16
+ this._handleOnChange(_8,_9);
17
+ },_handleOnChange:function(_a,_b){
18
+ this._set("value",_a);
19
+ this.inherited(arguments);
20
+ },undo:function(){
21
+ this._setValueAttr(this._lastValueReported,false);
22
+ },reset:function(){
23
+ this._hasBeenBlurred=false;
24
+ this._setValueAttr(this._resetValue,true);
25
+ }});
26
+ });