@datagrok/helm 2.3.2 → 2.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (323) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/package-test.js +1 -1
  3. package/dist/package-test.js.map +1 -1
  4. package/dist/package.js +1 -1
  5. package/dist/package.js.map +1 -1
  6. package/package.json +4 -4
  7. package/src/cell-renderer.ts +5 -4
  8. package/src/helm-helper.ts +6 -6
  9. package/src/helm-monomer-placer.ts +1 -1
  10. package/src/helm-web-editor.ts +5 -5
  11. package/src/package-test.ts +0 -1
  12. package/src/package-utils.ts +228 -69
  13. package/src/package.ts +7 -69
  14. package/src/tests/findMonomers-tests.ts +2 -1
  15. package/src/tests/get-monomer-tests.ts +1 -49
  16. package/src/utils/get-monomer.ts +49 -1
  17. package/src/utils/helm-grid-cell-renderer.ts +8 -9
  18. package/src/utils/index.ts +2 -3
  19. package/src/widgets/helm-input.ts +4 -4
  20. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js +63 -0
  21. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js.uncompressed.js +116 -0
  22. package/vendor/dojo-1.10.10/dijit/Destroyable.js +35 -0
  23. package/vendor/dojo-1.10.10/dijit/Destroyable.js.uncompressed.js +83 -0
  24. package/vendor/dojo-1.10.10/dijit/Tooltip.js +240 -0
  25. package/vendor/dojo-1.10.10/dijit/Tooltip.js.uncompressed.js +612 -0
  26. package/vendor/dojo-1.10.10/dijit/Viewport.js +44 -0
  27. package/vendor/dojo-1.10.10/dijit/Viewport.js.uncompressed.js +87 -0
  28. package/vendor/dojo-1.10.10/dijit/WidgetSet.js +76 -0
  29. package/vendor/dojo-1.10.10/dijit/WidgetSet.js.uncompressed.js +247 -0
  30. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js +94 -0
  31. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js.uncompressed.js +238 -0
  32. package/vendor/dojo-1.10.10/dijit/_Contained.js +17 -0
  33. package/vendor/dojo-1.10.10/dijit/_Contained.js.uncompressed.js +56 -0
  34. package/vendor/dojo-1.10.10/dijit/_Container.js +47 -0
  35. package/vendor/dojo-1.10.10/dijit/_Container.js.uncompressed.js +108 -0
  36. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js +198 -0
  37. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js.uncompressed.js +372 -0
  38. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js +11 -0
  39. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js.uncompressed.js +66 -0
  40. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js +188 -0
  41. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js.uncompressed.js +472 -0
  42. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js +8 -0
  43. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js.uncompressed.js +31 -0
  44. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js +90 -0
  45. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js.uncompressed.js +205 -0
  46. package/vendor/dojo-1.10.10/dijit/_Widget.js +66 -0
  47. package/vendor/dojo-1.10.10/dijit/_Widget.js.uncompressed.js +352 -0
  48. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js +353 -0
  49. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js.uncompressed.js +1200 -0
  50. package/vendor/dojo-1.10.10/dijit/_base/focus.js +68 -0
  51. package/vendor/dojo-1.10.10/dijit/_base/focus.js.uncompressed.js +207 -0
  52. package/vendor/dojo-1.10.10/dijit/_base/manager.js +10 -0
  53. package/vendor/dojo-1.10.10/dijit/_base/manager.js.uncompressed.js +35 -0
  54. package/vendor/dojo-1.10.10/dijit/_base/place.js +52 -0
  55. package/vendor/dojo-1.10.10/dijit/_base/place.js.uncompressed.js +131 -0
  56. package/vendor/dojo-1.10.10/dijit/_base/popup.js +23 -0
  57. package/vendor/dojo-1.10.10/dijit/_base/popup.js.uncompressed.js +58 -0
  58. package/vendor/dojo-1.10.10/dijit/_base/scroll.js +6 -0
  59. package/vendor/dojo-1.10.10/dijit/_base/scroll.js.uncompressed.js +22 -0
  60. package/vendor/dojo-1.10.10/dijit/_base/sniff.js +3 -0
  61. package/vendor/dojo-1.10.10/dijit/_base/sniff.js.uncompressed.js +12 -0
  62. package/vendor/dojo-1.10.10/dijit/_base/typematic.js +3 -0
  63. package/vendor/dojo-1.10.10/dijit/_base/typematic.js.uncompressed.js +10 -0
  64. package/vendor/dojo-1.10.10/dijit/_base/wai.js +32 -0
  65. package/vendor/dojo-1.10.10/dijit/_base/wai.js.uncompressed.js +109 -0
  66. package/vendor/dojo-1.10.10/dijit/_base/window.js +6 -0
  67. package/vendor/dojo-1.10.10/dijit/_base/window.js.uncompressed.js +18 -0
  68. package/vendor/dojo-1.10.10/dijit/_base.js +4 -0
  69. package/vendor/dojo-1.10.10/dijit/a11y.js +109 -0
  70. package/vendor/dojo-1.10.10/dijit/a11y.js.uncompressed.js +191 -0
  71. package/vendor/dojo-1.10.10/dijit/a11yclick.js +66 -0
  72. package/vendor/dojo-1.10.10/dijit/a11yclick.js.uncompressed.js +139 -0
  73. package/vendor/dojo-1.10.10/dijit/focus.js +188 -0
  74. package/vendor/dojo-1.10.10/dijit/focus.js.uncompressed.js +371 -0
  75. package/vendor/dojo-1.10.10/dijit/form/Button.js +49 -0
  76. package/vendor/dojo-1.10.10/dijit/form/Button.js.uncompressed.js +130 -0
  77. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js +4 -0
  78. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js.uncompressed.js +27 -0
  79. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js +21 -0
  80. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js.uncompressed.js +86 -0
  81. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js +38 -0
  82. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js.uncompressed.js +102 -0
  83. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js +7 -0
  84. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js.uncompressed.js +26 -0
  85. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js +50 -0
  86. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js.uncompressed.js +116 -0
  87. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js +26 -0
  88. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js.uncompressed.js +81 -0
  89. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js +24 -0
  90. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js.uncompressed.js +51 -0
  91. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js +22 -0
  92. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js.uncompressed.js +67 -0
  93. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js +111 -0
  94. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js.uncompressed.js +254 -0
  95. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js +32 -0
  96. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js.uncompressed.js +69 -0
  97. package/vendor/dojo-1.10.10/dijit/hccss.js +9 -0
  98. package/vendor/dojo-1.10.10/dijit/hccss.js.uncompressed.js +21 -0
  99. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js +215 -0
  100. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js.uncompressed.js +550 -0
  101. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js +7 -0
  102. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js.uncompressed.js +25 -0
  103. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js +235 -0
  104. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js.uncompressed.js +653 -0
  105. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js +171 -0
  106. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js.uncompressed.js +411 -0
  107. package/vendor/dojo-1.10.10/dijit/layout/StackController.js +194 -0
  108. package/vendor/dojo-1.10.10/dijit/layout/StackController.js.uncompressed.js +410 -0
  109. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js +99 -0
  110. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js.uncompressed.js +236 -0
  111. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js +47 -0
  112. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js.uncompressed.js +190 -0
  113. package/vendor/dojo-1.10.10/dijit/layout/utils.js +77 -0
  114. package/vendor/dojo-1.10.10/dijit/layout/utils.js.uncompressed.js +151 -0
  115. package/vendor/dojo-1.10.10/dijit/main.js +4 -0
  116. package/vendor/dojo-1.10.10/dijit/main.js.uncompressed.js +16 -0
  117. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js +2 -0
  118. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js.uncompressed.js +21 -0
  119. package/vendor/dojo-1.10.10/dijit/nls/loading.js +2 -0
  120. package/vendor/dojo-1.10.10/dijit/nls/loading.js.uncompressed.js +47 -0
  121. package/vendor/dojo-1.10.10/dijit/place.js +142 -0
  122. package/vendor/dojo-1.10.10/dijit/place.js.uncompressed.js +407 -0
  123. package/vendor/dojo-1.10.10/dijit/popup.js +162 -0
  124. package/vendor/dojo-1.10.10/dijit/popup.js.uncompressed.js +441 -0
  125. package/vendor/dojo-1.10.10/dijit/registry.js +79 -0
  126. package/vendor/dojo-1.10.10/dijit/registry.js.uncompressed.js +159 -0
  127. package/vendor/dojo-1.10.10/dijit/selection.js +364 -0
  128. package/vendor/dojo-1.10.10/dijit/selection.js.uncompressed.js +525 -0
  129. package/vendor/dojo-1.10.10/dijit/typematic.js +96 -0
  130. package/vendor/dojo-1.10.10/dijit/typematic.js.uncompressed.js +211 -0
  131. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js +195 -0
  132. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js.uncompressed.js +761 -0
  133. package/vendor/dojo-1.10.10/dojo/Stateful.js +90 -0
  134. package/vendor/dojo-1.10.10/dojo/Stateful.js.uncompressed.js +218 -0
  135. package/vendor/dojo-1.10.10/dojo/_base/url.js +87 -0
  136. package/vendor/dojo-1.10.10/dojo/_base/url.js.uncompressed.js +109 -0
  137. package/vendor/dojo-1.10.10/dojo/cache.js +9 -0
  138. package/vendor/dojo-1.10.10/dojo/cache.js.uncompressed.js +7 -0
  139. package/vendor/dojo-1.10.10/dojo/colors.js +74 -0
  140. package/vendor/dojo-1.10.10/dojo/colors.js.uncompressed.js +232 -0
  141. package/vendor/dojo-1.10.10/dojo/cookie.js +48 -0
  142. package/vendor/dojo-1.10.10/dojo/cookie.js.uncompressed.js +98 -0
  143. package/vendor/dojo-1.10.10/dojo/date/stamp.js +82 -0
  144. package/vendor/dojo-1.10.10/dojo/date/stamp.js.uncompressed.js +144 -0
  145. package/vendor/dojo-1.10.10/dojo/dojo.js +7 -0
  146. package/vendor/dojo-1.10.10/dojo/dojo.js.uncompressed.js +18680 -0
  147. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js +27 -0
  148. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js.uncompressed.js +101 -0
  149. package/vendor/dojo-1.10.10/dojo/fx/easing.js +165 -0
  150. package/vendor/dojo-1.10.10/dojo/fx/easing.js.uncompressed.js +276 -0
  151. package/vendor/dojo-1.10.10/dojo/fx.js +271 -0
  152. package/vendor/dojo-1.10.10/dojo/fx.js.uncompressed.js +443 -0
  153. package/vendor/dojo-1.10.10/dojo/hccss.js +26 -0
  154. package/vendor/dojo-1.10.10/dojo/hccss.js.uncompressed.js +52 -0
  155. package/vendor/dojo-1.10.10/dojo/html.js +161 -0
  156. package/vendor/dojo-1.10.10/dojo/html.js.uncompressed.js +370 -0
  157. package/vendor/dojo-1.10.10/dojo/io/iframe.js +71 -0
  158. package/vendor/dojo-1.10.10/dojo/io/iframe.js.uncompressed.js +190 -0
  159. package/vendor/dojo-1.10.10/dojo/io/script.js +112 -0
  160. package/vendor/dojo-1.10.10/dojo/io/script.js.uncompressed.js +280 -0
  161. package/vendor/dojo-1.10.10/dojo/parser.js +437 -0
  162. package/vendor/dojo-1.10.10/dojo/parser.js.uncompressed.js +915 -0
  163. package/vendor/dojo-1.10.10/dojo/promise/all.js +59 -0
  164. package/vendor/dojo-1.10.10/dojo/promise/all.js.uncompressed.js +77 -0
  165. package/vendor/dojo-1.10.10/dojo/regexp.js +32 -0
  166. package/vendor/dojo-1.10.10/dojo/regexp.js.uncompressed.js +70 -0
  167. package/vendor/dojo-1.10.10/dojo/request/iframe.js +291 -0
  168. package/vendor/dojo-1.10.10/dojo/request/iframe.js.uncompressed.js +438 -0
  169. package/vendor/dojo-1.10.10/dojo/request/script.js +129 -0
  170. package/vendor/dojo-1.10.10/dojo/request/script.js.uncompressed.js +237 -0
  171. package/vendor/dojo-1.10.10/dojo/require.js +11 -0
  172. package/vendor/dojo-1.10.10/dojo/require.js.uncompressed.js +7 -0
  173. package/vendor/dojo-1.10.10/dojo/resources/blank.gif +0 -0
  174. package/vendor/dojo-1.10.10/dojo/string.js +67 -0
  175. package/vendor/dojo-1.10.10/dojo/string.js.uncompressed.js +181 -0
  176. package/vendor/dojo-1.10.10/dojo/touch.js +191 -0
  177. package/vendor/dojo-1.10.10/dojo/touch.js.uncompressed.js +468 -0
  178. package/vendor/dojo-1.10.10/dojo/uacss.js +36 -0
  179. package/vendor/dojo-1.10.10/dojo/uacss.js.uncompressed.js +85 -0
  180. package/vendor/dojo-1.10.10/dojo/window.js +141 -0
  181. package/vendor/dojo-1.10.10/dojo/window.js.uncompressed.js +241 -0
  182. package/vendor/dojo-1.10.10/dojox/charting/Chart.js +626 -0
  183. package/vendor/dojo-1.10.10/dojox/charting/Chart.js.uncompressed.js +1220 -0
  184. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js +5 -0
  185. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js.uncompressed.js +16 -0
  186. package/vendor/dojo-1.10.10/dojox/charting/Element.js +247 -0
  187. package/vendor/dojo-1.10.10/dojox/charting/Element.js.uncompressed.js +402 -0
  188. package/vendor/dojo-1.10.10/dojox/charting/Series.js +24 -0
  189. package/vendor/dojo-1.10.10/dojox/charting/Series.js.uncompressed.js +58 -0
  190. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js +191 -0
  191. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js.uncompressed.js +577 -0
  192. package/vendor/dojo-1.10.10/dojox/charting/Theme.js +42 -0
  193. package/vendor/dojo-1.10.10/dojox/charting/Theme.js.uncompressed.js +120 -0
  194. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js +11 -0
  195. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js.uncompressed.js +36 -0
  196. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js +77 -0
  197. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js.uncompressed.js +144 -0
  198. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js +58 -0
  199. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js.uncompressed.js +123 -0
  200. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js +54 -0
  201. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js.uncompressed.js +124 -0
  202. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js +28 -0
  203. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js.uncompressed.js +74 -0
  204. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js +116 -0
  205. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js.uncompressed.js +178 -0
  206. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js +24 -0
  207. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js.uncompressed.js +83 -0
  208. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js +557 -0
  209. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js.uncompressed.js +980 -0
  210. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js +65 -0
  211. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js.uncompressed.js +224 -0
  212. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js +91 -0
  213. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js.uncompressed.js +164 -0
  214. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js +7 -0
  215. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js.uncompressed.js +14 -0
  216. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js +168 -0
  217. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js.uncompressed.js +311 -0
  218. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js +61 -0
  219. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js.uncompressed.js +161 -0
  220. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js +141 -0
  221. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js.uncompressed.js +242 -0
  222. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js +126 -0
  223. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js.uncompressed.js +243 -0
  224. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js +108 -0
  225. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js.uncompressed.js +290 -0
  226. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js +13 -0
  227. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js.uncompressed.js +14 -0
  228. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js +13 -0
  229. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js.uncompressed.js +14 -0
  230. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js +153 -0
  231. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js.uncompressed.js +249 -0
  232. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js +253 -0
  233. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js.uncompressed.js +472 -0
  234. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js +182 -0
  235. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js.uncompressed.js +356 -0
  236. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js +6 -0
  237. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js.uncompressed.js +12 -0
  238. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js +6 -0
  239. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js.uncompressed.js +12 -0
  240. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js +7 -0
  241. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js.uncompressed.js +13 -0
  242. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js +110 -0
  243. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js.uncompressed.js +208 -0
  244. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js +303 -0
  245. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js.uncompressed.js +547 -0
  246. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js +134 -0
  247. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js.uncompressed.js +207 -0
  248. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js +299 -0
  249. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js.uncompressed.js +537 -0
  250. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js +24 -0
  251. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js.uncompressed.js +44 -0
  252. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js +7 -0
  253. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js.uncompressed.js +14 -0
  254. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js +22 -0
  255. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js.uncompressed.js +33 -0
  256. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js +20 -0
  257. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js.uncompressed.js +31 -0
  258. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js +6 -0
  259. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js.uncompressed.js +12 -0
  260. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js +68 -0
  261. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js.uncompressed.js +120 -0
  262. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js +209 -0
  263. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js.uncompressed.js +214 -0
  264. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js +76 -0
  265. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js.uncompressed.js +77 -0
  266. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js +59 -0
  267. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js.uncompressed.js +70 -0
  268. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js +220 -0
  269. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js.uncompressed.js +262 -0
  270. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js +23 -0
  271. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js.uncompressed.js +36 -0
  272. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js +39 -0
  273. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js.uncompressed.js +106 -0
  274. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js +5 -0
  275. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js.uncompressed.js +12 -0
  276. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js +4 -0
  277. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js.uncompressed.js +3 -0
  278. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js +102 -0
  279. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js.uncompressed.js +165 -0
  280. package/vendor/dojo-1.10.10/dojox/color/Palette.js +163 -0
  281. package/vendor/dojo-1.10.10/dojox/color/Palette.js.uncompressed.js +460 -0
  282. package/vendor/dojo-1.10.10/dojox/color/_base.js +174 -0
  283. package/vendor/dojo-1.10.10/dojox/color/_base.js.uncompressed.js +196 -0
  284. package/vendor/dojo-1.10.10/dojox/gfx/fx.js +297 -0
  285. package/vendor/dojo-1.10.10/dojox/gfx/fx.js.uncompressed.js +350 -0
  286. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js +63 -0
  287. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js.uncompressed.js +91 -0
  288. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js +170 -0
  289. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js.uncompressed.js +501 -0
  290. package/vendor/dojo-1.10.10/dojox/gfx/path.js +319 -0
  291. package/vendor/dojo-1.10.10/dojox/gfx/path.js.uncompressed.js +478 -0
  292. package/vendor/dojo-1.10.10/dojox/gfx/shape.js +459 -0
  293. package/vendor/dojo-1.10.10/dojox/gfx/shape.js.uncompressed.js +1091 -0
  294. package/vendor/dojo-1.10.10/dojox/gfx/svg.js +662 -0
  295. package/vendor/dojo-1.10.10/dojox/gfx/svg.js.uncompressed.js +1023 -0
  296. package/vendor/dojo-1.10.10/dojox/gfx/utils.js +199 -0
  297. package/vendor/dojo-1.10.10/dojox/gfx/utils.js.uncompressed.js +322 -0
  298. package/vendor/dojo-1.10.10/dojox/gfx.js +2 -0
  299. package/vendor/dojo-1.10.10/dojox/gfx.js.uncompressed.js +1136 -0
  300. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js +151 -0
  301. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js.uncompressed.js +169 -0
  302. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js +93 -0
  303. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js.uncompressed.js +125 -0
  304. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js +81 -0
  305. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js.uncompressed.js +132 -0
  306. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js +54 -0
  307. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js.uncompressed.js +78 -0
  308. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js +61 -0
  309. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js.uncompressed.js +77 -0
  310. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js +87 -0
  311. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js.uncompressed.js +107 -0
  312. package/vendor/dojo-1.10.10/dojox/lang/functional.js +4 -0
  313. package/vendor/dojo-1.10.10/dojox/lang/functional.js.uncompressed.js +3 -0
  314. package/vendor/dojo-1.10.10/dojox/lang/utils.js +86 -0
  315. package/vendor/dojo-1.10.10/dojox/lang/utils.js.uncompressed.js +121 -0
  316. package/vendor/dojo-1.10.10/dojox/main.js +4 -0
  317. package/vendor/dojo-1.10.10/dojox/main.js.uncompressed.js +14 -0
  318. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js +112 -0
  319. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js.uncompressed.js +208 -0
  320. package/vendor/dojo-1.10.10/dojox/storage/Provider.js +62 -0
  321. package/vendor/dojo-1.10.10/dojox/storage/Provider.js.uncompressed.js +344 -0
  322. package/vendor/dojo-1.10.10/dojox/storage/manager.js +110 -0
  323. package/vendor/dojo-1.10.10/dojox/storage/manager.js.uncompressed.js +263 -0
@@ -0,0 +1,132 @@
1
+ define("dojox/lang/functional/lambda", ["../..", "dojo/_base/lang", "dojo/_base/array"], function(dojox, lang, arr){
2
+ var df = lang.getObject("lang.functional", true, dojox);
3
+
4
+ // This module adds high-level functions and related constructs:
5
+ // - anonymous functions built from the string
6
+
7
+ // Acknowledgements:
8
+ // - lambda() is based on work by Oliver Steele
9
+ // (http://osteele.com/sources/javascript/functional/functional.js)
10
+ // which was published under MIT License
11
+
12
+ // Notes:
13
+ // - lambda() produces functions, which after the compilation step are
14
+ // as fast as regular JS functions (at least theoretically).
15
+
16
+ // Lambda input values:
17
+ // - returns functions unchanged
18
+ // - converts strings to functions
19
+ // - converts arrays to a functional composition
20
+
21
+ var lcache = {};
22
+
23
+ // split() is augmented on IE6 to ensure the uniform behavior
24
+ var split = "ab".split(/a*/).length > 1 ? String.prototype.split :
25
+ function(sep){
26
+ var r = this.split.call(this, sep),
27
+ m = sep.exec(this);
28
+ if(m && m.index == 0){ r.unshift(""); }
29
+ return r;
30
+ };
31
+
32
+ var lambda = function(/*String*/ s){
33
+ var args = [], sects = split.call(s, /\s*->\s*/m);
34
+ if(sects.length > 1){
35
+ while(sects.length){
36
+ s = sects.pop();
37
+ args = sects.pop().split(/\s*,\s*|\s+/m);
38
+ if(sects.length){ sects.push("(function(" + args.join(", ") + "){ return (" + s + "); })"); }
39
+ }
40
+ }else if(s.match(/\b_\b/)){
41
+ args = ["_"];
42
+ }else{
43
+ var l = s.match(/^\s*(?:[+*\/%&|\^\.=<>]|!=)/m),
44
+ r = s.match(/[+\-*\/%&|\^\.=<>!]\s*$/m);
45
+ if(l || r){
46
+ if(l){
47
+ args.push("$1");
48
+ s = "$1" + s;
49
+ }
50
+ if(r){
51
+ args.push("$2");
52
+ s = s + "$2";
53
+ }
54
+ }else{
55
+ // the point of the long regex below is to exclude all well-known
56
+ // lower-case words from the list of potential arguments
57
+ var vars = s.
58
+ replace(/(?:\b[A-Z]|\.[a-zA-Z_$])[a-zA-Z_$\d]*|[a-zA-Z_$][a-zA-Z_$\d]*:|this|true|false|null|undefined|typeof|instanceof|in|delete|new|void|arguments|decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|escape|eval|isFinite|isNaN|parseFloat|parseInt|unescape|dojo|dijit|dojox|window|document|'(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"/g, "").
59
+ match(/([a-z_$][a-z_$\d]*)/gi) || [], t = {};
60
+ arr.forEach(vars, function(v){
61
+ if(!t.hasOwnProperty(v)){
62
+ args.push(v);
63
+ t[v] = 1;
64
+ }
65
+ });
66
+ }
67
+ }
68
+ return {args: args, body: s}; // Object
69
+ };
70
+
71
+ var compose = function(/*Array*/ a){
72
+ return a.length ?
73
+ function(){
74
+ var i = a.length - 1, x = df.lambda(a[i]).apply(this, arguments);
75
+ for(--i; i >= 0; --i){ x = df.lambda(a[i]).call(this, x); }
76
+ return x;
77
+ }
78
+ :
79
+ // identity
80
+ function(x){ return x; };
81
+ };
82
+
83
+ lang.mixin(df, {
84
+ // lambda
85
+ rawLambda: function(/*String*/ s){
86
+ // summary:
87
+ // builds a function from a snippet, or array (composing),
88
+ // returns an object describing the function; functions are
89
+ // passed through unmodified.
90
+ // description:
91
+ // This method is to normalize a functional representation (a
92
+ // text snippet) to an object that contains an array of
93
+ // arguments, and a body , which is used to calculate the
94
+ // returning value.
95
+ return lambda(s); // Object
96
+ },
97
+ buildLambda: function(/*String*/ s){
98
+ // summary:
99
+ // builds a function from a snippet, returns a string, which
100
+ // represents the function.
101
+ // description:
102
+ // This method returns a textual representation of a function
103
+ // built from the snippet. It is meant to be evaled in the
104
+ // proper context, so local variables can be pulled from the
105
+ // environment.
106
+ var l = lambda(s);
107
+ return "function(" + l.args.join(",") + "){return (" + l.body + ");}"; // String
108
+ },
109
+ lambda: function(/*Function|String|Array*/ s){
110
+ // summary:
111
+ // builds a function from a snippet, or array (composing),
112
+ // returns a function object; functions are passed through
113
+ // unmodified.
114
+ // description:
115
+ // This method is used to normalize a functional
116
+ // representation (a text snippet, an array, or a function) to
117
+ // a function object.
118
+ if(typeof s == "function"){ return s; }
119
+ if(s instanceof Array){ return compose(s); }
120
+ if(lcache.hasOwnProperty(s)){ return lcache[s]; }
121
+ var l = lambda(s);
122
+ return lcache[s] = new Function(l.args, "return (" + l.body + ");"); // Function
123
+ },
124
+ clearLambdaCache: function(){
125
+ // summary:
126
+ // clears internal cache of lambdas
127
+ lcache = {};
128
+ }
129
+ });
130
+
131
+ return df;
132
+ });
@@ -0,0 +1,54 @@
1
+ //>>built
2
+ define("dojox/lang/functional/object",["dojo/_base/kernel","dojo/_base/lang","./lambda"],function(_1,_2,df){
3
+ var _3={};
4
+ _2.mixin(df,{keys:function(_4){
5
+ var t=[];
6
+ for(var i in _4){
7
+ if(!(i in _3)){
8
+ t.push(i);
9
+ }
10
+ }
11
+ return t;
12
+ },values:function(_5){
13
+ var t=[];
14
+ for(var i in _5){
15
+ if(!(i in _3)){
16
+ t.push(_5[i]);
17
+ }
18
+ }
19
+ return t;
20
+ },filterIn:function(_6,f,o){
21
+ o=o||_1.global;
22
+ f=df.lambda(f);
23
+ var t={},v,i;
24
+ for(i in _6){
25
+ if(!(i in _3)){
26
+ v=_6[i];
27
+ if(f.call(o,v,i,_6)){
28
+ t[i]=v;
29
+ }
30
+ }
31
+ }
32
+ return t;
33
+ },forIn:function(_7,f,o){
34
+ o=o||_1.global;
35
+ f=df.lambda(f);
36
+ for(var i in _7){
37
+ if(!(i in _3)){
38
+ f.call(o,_7[i],i,_7);
39
+ }
40
+ }
41
+ return o;
42
+ },mapIn:function(_8,f,o){
43
+ o=o||_1.global;
44
+ f=df.lambda(f);
45
+ var t={},i;
46
+ for(i in _8){
47
+ if(!(i in _3)){
48
+ t[i]=f.call(o,_8[i],i,_8);
49
+ }
50
+ }
51
+ return t;
52
+ }});
53
+ return df;
54
+ });
@@ -0,0 +1,78 @@
1
+ define("dojox/lang/functional/object", ["dojo/_base/kernel", "dojo/_base/lang", "./lambda"], function(kernel, lang, df){
2
+
3
+ // This module adds high-level functions and related constructs:
4
+ // - object/dictionary helpers
5
+
6
+ // Defined methods:
7
+ // - take any valid lambda argument as the functional argument
8
+ // - skip all attributes that are present in the empty object
9
+ // (IE and/or 3rd-party libraries).
10
+
11
+ var empty = {};
12
+
13
+ lang.mixin(df, {
14
+ // object helpers
15
+ keys: function(/*Object*/ obj){
16
+ // summary:
17
+ // returns an array of all keys in the object
18
+ var t = [];
19
+ for(var i in obj){
20
+ if(!(i in empty)){
21
+ t.push(i);
22
+ }
23
+ }
24
+ return t; // Array
25
+ },
26
+ values: function(/*Object*/ obj){
27
+ // summary:
28
+ // returns an array of all values in the object
29
+ var t = [];
30
+ for(var i in obj){
31
+ if(!(i in empty)){
32
+ t.push(obj[i]);
33
+ }
34
+ }
35
+ return t; // Array
36
+ },
37
+ filterIn: function(/*Object*/ obj, /*Function|String|Array*/ f, /*Object?*/ o){
38
+ // summary:
39
+ // creates new object with all attributes that pass the test
40
+ // implemented by the provided function.
41
+ o = o || kernel.global; f = df.lambda(f);
42
+ var t = {}, v, i;
43
+ for(i in obj){
44
+ if(!(i in empty)){
45
+ v = obj[i];
46
+ if(f.call(o, v, i, obj)){ t[i] = v; }
47
+ }
48
+ }
49
+ return t; // Object
50
+ },
51
+ forIn: function(/*Object*/ obj, /*Function|String|Array*/ f, /*Object?*/ o){
52
+ // summary:
53
+ // iterates over all object attributes.
54
+ o = o || kernel.global; f = df.lambda(f);
55
+ for(var i in obj){
56
+ if(!(i in empty)){
57
+ f.call(o, obj[i], i, obj);
58
+ }
59
+ }
60
+ return o; // Object
61
+ },
62
+ mapIn: function(/*Object*/ obj, /*Function|String|Array*/ f, /*Object?*/ o){
63
+ // summary:
64
+ // creates new object with the results of calling
65
+ // a provided function on every attribute in this object.
66
+ o = o || kernel.global; f = df.lambda(f);
67
+ var t = {}, i;
68
+ for(i in obj){
69
+ if(!(i in empty)){
70
+ t[i] = f.call(o, obj[i], i, obj);
71
+ }
72
+ }
73
+ return t; // Object
74
+ }
75
+ });
76
+
77
+ return df;
78
+ });
@@ -0,0 +1,61 @@
1
+ //>>built
2
+ define("dojox/lang/functional/reversed",["dojo/_base/lang","dojo/_base/kernel","./lambda"],function(_1,_2,df){
3
+ _1.mixin(df,{filterRev:function(a,f,o){
4
+ if(typeof a=="string"){
5
+ a=a.split("");
6
+ }
7
+ o=o||_2.global;
8
+ f=df.lambda(f);
9
+ var t=[],v,i=a.length-1;
10
+ for(;i>=0;--i){
11
+ v=a[i];
12
+ if(f.call(o,v,i,a)){
13
+ t.push(v);
14
+ }
15
+ }
16
+ return t;
17
+ },forEachRev:function(a,f,o){
18
+ if(typeof a=="string"){
19
+ a=a.split("");
20
+ }
21
+ o=o||_2.global;
22
+ f=df.lambda(f);
23
+ for(var i=a.length-1;i>=0;f.call(o,a[i],i,a),--i){
24
+ }
25
+ },mapRev:function(a,f,o){
26
+ if(typeof a=="string"){
27
+ a=a.split("");
28
+ }
29
+ o=o||_2.global;
30
+ f=df.lambda(f);
31
+ var n=a.length,t=new Array(n),i=n-1,j=0;
32
+ for(;i>=0;t[j++]=f.call(o,a[i],i,a),--i){
33
+ }
34
+ return t;
35
+ },everyRev:function(a,f,o){
36
+ if(typeof a=="string"){
37
+ a=a.split("");
38
+ }
39
+ o=o||_2.global;
40
+ f=df.lambda(f);
41
+ for(var i=a.length-1;i>=0;--i){
42
+ if(!f.call(o,a[i],i,a)){
43
+ return false;
44
+ }
45
+ }
46
+ return true;
47
+ },someRev:function(a,f,o){
48
+ if(typeof a=="string"){
49
+ a=a.split("");
50
+ }
51
+ o=o||_2.global;
52
+ f=df.lambda(f);
53
+ for(var i=a.length-1;i>=0;--i){
54
+ if(f.call(o,a[i],i,a)){
55
+ return true;
56
+ }
57
+ }
58
+ return false;
59
+ }});
60
+ return df;
61
+ });
@@ -0,0 +1,77 @@
1
+ define("dojox/lang/functional/reversed", ["dojo/_base/lang", "dojo/_base/kernel" ,"./lambda"],
2
+ function(lang, kernel, df){
3
+ // This module adds high-level functions and related constructs:
4
+ // - reversed versions of array-processing functions similar to standard JS functions
5
+
6
+ // Notes:
7
+ // - this module provides reversed versions of standard array-processing functions:
8
+ // forEachRev, mapRev, filterRev
9
+
10
+ // Defined methods:
11
+ // - take any valid lambda argument as the functional argument
12
+ // - operate on dense arrays
13
+ // - take a string as the array argument
14
+
15
+ lang.mixin(df, {
16
+ // JS 1.6 standard array functions, which can take a lambda as a parameter.
17
+ // Consider using dojo._base.array functions, if you don't need the lambda support.
18
+ filterRev: function(/*Array|String*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
19
+ // summary:
20
+ // creates a new array with all elements that pass the test
21
+ // implemented by the provided function.
22
+ if(typeof a == "string"){ a = a.split(""); }
23
+ o = o || kernel.global; f = df.lambda(f);
24
+ var t = [], v, i = a.length - 1;
25
+ for(; i >= 0; --i){
26
+ v = a[i];
27
+ if(f.call(o, v, i, a)){ t.push(v); }
28
+ }
29
+ return t; // Array
30
+ },
31
+ forEachRev: function(/*Array|String*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
32
+ // summary:
33
+ // executes a provided function once per array element.
34
+ if(typeof a == "string"){ a = a.split(""); }
35
+ o = o || kernel.global; f = df.lambda(f);
36
+ for(var i = a.length - 1; i >= 0; f.call(o, a[i], i, a), --i);
37
+ },
38
+ mapRev: function(/*Array|String*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
39
+ // summary:
40
+ // creates a new array with the results of calling
41
+ // a provided function on every element in this array.
42
+ if(typeof a == "string"){ a = a.split(""); }
43
+ o = o || kernel.global; f = df.lambda(f);
44
+ var n = a.length, t = new Array(n), i = n - 1, j = 0;
45
+ for(; i >= 0; t[j++] = f.call(o, a[i], i, a), --i);
46
+ return t; // Array
47
+ },
48
+ everyRev: function(/*Array|String*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
49
+ // summary:
50
+ // tests whether all elements in the array pass the test
51
+ // implemented by the provided function.
52
+ if(typeof a == "string"){ a = a.split(""); }
53
+ o = o || kernel.global; f = df.lambda(f);
54
+ for(var i = a.length - 1; i >= 0; --i){
55
+ if(!f.call(o, a[i], i, a)){
56
+ return false; // Boolean
57
+ }
58
+ }
59
+ return true; // Boolean
60
+ },
61
+ someRev: function(/*Array|String*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
62
+ // summary:
63
+ // tests whether some element in the array passes the test
64
+ // implemented by the provided function.
65
+ if(typeof a == "string"){ a = a.split(""); }
66
+ o = o || kernel.global; f = df.lambda(f);
67
+ for(var i = a.length - 1; i >= 0; --i){
68
+ if(f.call(o, a[i], i, a)){
69
+ return true; // Boolean
70
+ }
71
+ }
72
+ return false; // Boolean
73
+ }
74
+ });
75
+
76
+ return df;
77
+ });
@@ -0,0 +1,87 @@
1
+ //>>built
2
+ define("dojox/lang/functional/scan",["dojo/_base/kernel","dojo/_base/lang","./lambda"],function(_1,_2,df){
3
+ var _3={};
4
+ _2.mixin(df,{scanl:function(a,f,z,o){
5
+ if(typeof a=="string"){
6
+ a=a.split("");
7
+ }
8
+ o=o||_1.global;
9
+ f=df.lambda(f);
10
+ var t,n,i;
11
+ if(_2.isArray(a)){
12
+ t=new Array((n=a.length)+1);
13
+ t[0]=z;
14
+ for(i=0;i<n;z=f.call(o,z,a[i],i,a),t[++i]=z){
15
+ }
16
+ }else{
17
+ if(typeof a.hasNext=="function"&&typeof a.next=="function"){
18
+ t=[z];
19
+ for(i=0;a.hasNext();t.push(z=f.call(o,z,a.next(),i++,a))){
20
+ }
21
+ }else{
22
+ t=[z];
23
+ for(i in a){
24
+ if(!(i in _3)){
25
+ t.push(z=f.call(o,z,a[i],i,a));
26
+ }
27
+ }
28
+ }
29
+ }
30
+ return t;
31
+ },scanl1:function(a,f,o){
32
+ if(typeof a=="string"){
33
+ a=a.split("");
34
+ }
35
+ o=o||_1.global;
36
+ f=df.lambda(f);
37
+ var t,n,z,_4=true;
38
+ if(_2.isArray(a)){
39
+ t=new Array(n=a.length);
40
+ t[0]=z=a[0];
41
+ for(var i=1;i<n;t[i]=z=f.call(o,z,a[i],i,a),++i){
42
+ }
43
+ }else{
44
+ if(typeof a.hasNext=="function"&&typeof a.next=="function"){
45
+ if(a.hasNext()){
46
+ t=[z=a.next()];
47
+ for(i=1;a.hasNext();t.push(z=f.call(o,z,a.next(),i++,a))){
48
+ }
49
+ }
50
+ }else{
51
+ for(i in a){
52
+ if(!(i in _3)){
53
+ if(_4){
54
+ t=[z=a[i]];
55
+ _4=false;
56
+ }else{
57
+ t.push(z=f.call(o,z,a[i],i,a));
58
+ }
59
+ }
60
+ }
61
+ }
62
+ }
63
+ return t;
64
+ },scanr:function(a,f,z,o){
65
+ if(typeof a=="string"){
66
+ a=a.split("");
67
+ }
68
+ o=o||_1.global;
69
+ f=df.lambda(f);
70
+ var n=a.length,t=new Array(n+1),i=n;
71
+ t[n]=z;
72
+ for(;i>0;--i,z=f.call(o,z,a[i],i,a),t[i]=z){
73
+ }
74
+ return t;
75
+ },scanr1:function(a,f,o){
76
+ if(typeof a=="string"){
77
+ a=a.split("");
78
+ }
79
+ o=o||_1.global;
80
+ f=df.lambda(f);
81
+ var n=a.length,t=new Array(n),z=a[n-1],i=n-1;
82
+ t[i]=z;
83
+ for(;i>0;--i,z=f.call(o,z,a[i],i,a),t[i]=z){
84
+ }
85
+ return t;
86
+ }});
87
+ });
@@ -0,0 +1,107 @@
1
+ define("dojox/lang/functional/scan", ["dojo/_base/kernel", "dojo/_base/lang", "./lambda"], function(kernel, lang, df){
2
+
3
+ // This module adds high-level functions and related constructs:
4
+ // - "scan" family of functions
5
+
6
+ // Notes:
7
+ // - missing high-level functions are provided with the compatible API:
8
+ // scanl, scanl1, scanr, scanr1
9
+
10
+ // Defined methods:
11
+ // - take any valid lambda argument as the functional argument
12
+ // - operate on dense arrays
13
+ // - take a string as the array argument
14
+ // - take an iterator objects as the array argument (only scanl, and scanl1)
15
+
16
+ var empty = {};
17
+
18
+ lang.mixin(df, {
19
+ // classic reduce-class functions
20
+ scanl: function(/*Array|String|Object*/ a, /*Function|String|Array*/ f, /*Object*/ z, /*Object?*/ o){
21
+ // summary:
22
+ // repeatedly applies a binary function to an array from left
23
+ // to right using a seed value as a starting point; returns an array
24
+ // of values produced by foldl() at that point.
25
+ if(typeof a == "string"){ a = a.split(""); }
26
+ o = o || kernel.global; f = df.lambda(f);
27
+ var t, n, i;
28
+ if(lang.isArray(a)){
29
+ // array
30
+ t = new Array((n = a.length) + 1);
31
+ t[0] = z;
32
+ for(i = 0; i < n; z = f.call(o, z, a[i], i, a), t[++i] = z);
33
+ }else if(typeof a.hasNext == "function" && typeof a.next == "function"){
34
+ // iterator
35
+ t = [z];
36
+ for(i = 0; a.hasNext(); t.push(z = f.call(o, z, a.next(), i++, a)));
37
+ }else{
38
+ // object/dictionary
39
+ t = [z];
40
+ for(i in a){
41
+ if(!(i in empty)){
42
+ t.push(z = f.call(o, z, a[i], i, a));
43
+ }
44
+ }
45
+ }
46
+ return t; // Array
47
+ },
48
+ scanl1: function(/*Array|String|Object*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
49
+ // summary:
50
+ // repeatedly applies a binary function to an array from left
51
+ // to right; returns an array of values produced by foldl1() at that
52
+ // point.
53
+ if(typeof a == "string"){ a = a.split(""); }
54
+ o = o || kernel.global; f = df.lambda(f);
55
+ var t, n, z, first = true;
56
+ if(lang.isArray(a)){
57
+ // array
58
+ t = new Array(n = a.length);
59
+ t[0] = z = a[0];
60
+ for(var i = 1; i < n; t[i] = z = f.call(o, z, a[i], i, a), ++i);
61
+ }else if(typeof a.hasNext == "function" && typeof a.next == "function"){
62
+ // iterator
63
+ if(a.hasNext()){
64
+ t = [z = a.next()];
65
+ for(i = 1; a.hasNext(); t.push(z = f.call(o, z, a.next(), i++, a)));
66
+ }
67
+ }else{
68
+ // object/dictionary
69
+ for(i in a){
70
+ if(!(i in empty)){
71
+ if(first){
72
+ t = [z = a[i]];
73
+ first = false;
74
+ }else{
75
+ t.push(z = f.call(o, z, a[i], i, a));
76
+ }
77
+ }
78
+ }
79
+ }
80
+ return t; // Array
81
+ },
82
+ scanr: function(/*Array|String*/ a, /*Function|String|Array*/ f, /*Object*/ z, /*Object?*/ o){
83
+ // summary:
84
+ // repeatedly applies a binary function to an array from right
85
+ // to left using a seed value as a starting point; returns an array
86
+ // of values produced by foldr() at that point.
87
+ if(typeof a == "string"){ a = a.split(""); }
88
+ o = o || kernel.global; f = df.lambda(f);
89
+ var n = a.length, t = new Array(n + 1), i = n;
90
+ t[n] = z;
91
+ for(; i > 0; --i, z = f.call(o, z, a[i], i, a), t[i] = z);
92
+ return t; // Array
93
+ },
94
+ scanr1: function(/*Array|String*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
95
+ // summary:
96
+ // repeatedly applies a binary function to an array from right
97
+ // to left; returns an array of values produced by foldr1() at that
98
+ // point.
99
+ if(typeof a == "string"){ a = a.split(""); }
100
+ o = o || kernel.global; f = df.lambda(f);
101
+ var n = a.length, t = new Array(n), z = a[n - 1], i = n - 1;
102
+ t[i] = z;
103
+ for(; i > 0; --i, z = f.call(o, z, a[i], i, a), t[i] = z);
104
+ return t; // Array
105
+ }
106
+ });
107
+ });
@@ -0,0 +1,4 @@
1
+ //>>built
2
+ define("dojox/lang/functional",["./functional/lambda","./functional/array","./functional/object"],function(df){
3
+ return df;
4
+ });
@@ -0,0 +1,3 @@
1
+ define("dojox/lang/functional", ["./functional/lambda", "./functional/array", "./functional/object"], function(df){
2
+ return df;
3
+ });
@@ -0,0 +1,86 @@
1
+ //>>built
2
+ define("dojox/lang/utils",["..","dojo/_base/lang"],function(_1,_2){
3
+ var du=_2.getObject("lang.utils",true,_1);
4
+ var _3={},_4=Object.prototype.toString;
5
+ var _5=function(o){
6
+ if(o){
7
+ switch(_4.call(o)){
8
+ case "[object Array]":
9
+ return o.slice(0);
10
+ case "[object Object]":
11
+ return _2.delegate(o);
12
+ }
13
+ }
14
+ return o;
15
+ };
16
+ _2.mixin(du,{coerceType:function(_6,_7){
17
+ switch(typeof _6){
18
+ case "number":
19
+ return Number(eval("("+_7+")"));
20
+ case "string":
21
+ return String(_7);
22
+ case "boolean":
23
+ return Boolean(eval("("+_7+")"));
24
+ }
25
+ return eval("("+_7+")");
26
+ },updateWithObject:function(_8,_9,_a){
27
+ if(!_9){
28
+ return _8;
29
+ }
30
+ for(var x in _8){
31
+ if(x in _9&&!(x in _3)){
32
+ var t=_8[x];
33
+ if(t&&typeof t=="object"){
34
+ du.updateWithObject(t,_9[x],_a);
35
+ }else{
36
+ _8[x]=_a?du.coerceType(t,_9[x]):_5(_9[x]);
37
+ }
38
+ }
39
+ }
40
+ return _8;
41
+ },updateWithPattern:function(_b,_c,_d,_e){
42
+ if(!_c||!_d){
43
+ return _b;
44
+ }
45
+ for(var x in _d){
46
+ if(x in _c&&!(x in _3)){
47
+ _b[x]=_e?du.coerceType(_d[x],_c[x]):_5(_c[x]);
48
+ }
49
+ }
50
+ return _b;
51
+ },merge:function(_f,_10){
52
+ if(_10){
53
+ var _11=_4.call(_f),_12=_4.call(_10),t,i,l,m;
54
+ switch(_12){
55
+ case "[object Array]":
56
+ if(_12==_11){
57
+ t=new Array(Math.max(_f.length,_10.length));
58
+ for(i=0,l=t.length;i<l;++i){
59
+ t[i]=du.merge(_f[i],_10[i]);
60
+ }
61
+ return t;
62
+ }
63
+ return _10.slice(0);
64
+ case "[object Object]":
65
+ if(_12==_11&&_f){
66
+ t=_2.delegate(_f);
67
+ for(i in _10){
68
+ if(i in _f){
69
+ l=_f[i];
70
+ m=_10[i];
71
+ if(m!==l){
72
+ t[i]=du.merge(l,m);
73
+ }
74
+ }else{
75
+ t[i]=_2.clone(_10[i]);
76
+ }
77
+ }
78
+ return t;
79
+ }
80
+ return _2.clone(_10);
81
+ }
82
+ }
83
+ return _10;
84
+ }});
85
+ return du;
86
+ });