@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,237 @@
1
+ define("dojo/request/script", [
2
+ 'module',
3
+ './watch',
4
+ './util',
5
+ '../_base/kernel',
6
+ '../_base/array',
7
+ '../_base/lang',
8
+ '../on',
9
+ '../dom',
10
+ '../dom-construct',
11
+ '../has',
12
+ '../_base/window'/*=====,
13
+ '../request',
14
+ '../_base/declare' =====*/
15
+ ], function(module, watch, util, kernel, array, lang, on, dom, domConstruct, has, win/*=====, request, declare =====*/){
16
+ has.add('script-readystatechange', function(global, document){
17
+ var script = document.createElement('script');
18
+ return typeof script['onreadystatechange'] !== 'undefined' &&
19
+ (typeof global['opera'] === 'undefined' || global['opera'].toString() !== '[object Opera]');
20
+ });
21
+
22
+ var mid = module.id.replace(/[\/\.\-]/g, '_'),
23
+ counter = 0,
24
+ loadEvent = has('script-readystatechange') ? 'readystatechange' : 'load',
25
+ readyRegExp = /complete|loaded/,
26
+ callbacks = kernel.global[mid + '_callbacks'] = {},
27
+ deadScripts = [];
28
+
29
+ function attach(id, url, frameDoc, errorHandler){
30
+ var doc = (frameDoc || win.doc),
31
+ element = doc.createElement('script');
32
+
33
+ if (errorHandler) {
34
+ on.once(element, 'error', errorHandler);
35
+ }
36
+
37
+ element.type = 'text/javascript';
38
+ try {
39
+ element.src = url;
40
+ } catch(err) {
41
+ errorHandler && errorHandler(element);
42
+ }
43
+
44
+ element.id = id;
45
+ element.async = true;
46
+ element.charset = 'utf-8';
47
+
48
+ return doc.getElementsByTagName('head')[0].appendChild(element);
49
+ }
50
+
51
+ function remove(id, frameDoc, cleanup){
52
+ domConstruct.destroy(dom.byId(id, frameDoc));
53
+
54
+ if(callbacks[id]){
55
+ if(cleanup){
56
+ // set callback to a function that deletes itself so requests that
57
+ // are in-flight don't error out when returning and also
58
+ // clean up after themselves
59
+ callbacks[id] = function(){
60
+ delete callbacks[id];
61
+ };
62
+ }else{
63
+ delete callbacks[id];
64
+ }
65
+ }
66
+ }
67
+
68
+ function _addDeadScript(dfd){
69
+ // Be sure to check ioArgs because it can dynamically change in the dojox/io plugins.
70
+ // See http://bugs.dojotoolkit.org/ticket/15890.
71
+ var options = dfd.response.options,
72
+ frameDoc = options.ioArgs ? options.ioArgs.frameDoc : options.frameDoc;
73
+
74
+ deadScripts.push({ id: dfd.id, frameDoc: frameDoc });
75
+
76
+ if(options.ioArgs){
77
+ options.ioArgs.frameDoc = null;
78
+ }
79
+ options.frameDoc = null;
80
+ }
81
+
82
+ function canceler(dfd, response){
83
+ if(dfd.canDelete){
84
+ //For timeouts and cancels, remove the script element immediately to
85
+ //avoid a response from it coming back later and causing trouble.
86
+ script._remove(dfd.id, response.options.frameDoc, true);
87
+ }
88
+ }
89
+ function isValid(response){
90
+ //Do script cleanup here. We wait for one inflight pass
91
+ //to make sure we don't get any weird things by trying to remove a script
92
+ //tag that is part of the call chain (IE 6 has been known to
93
+ //crash in that case).
94
+ if(deadScripts && deadScripts.length){
95
+ array.forEach(deadScripts, function(_script){
96
+ script._remove(_script.id, _script.frameDoc);
97
+ _script.frameDoc = null;
98
+ });
99
+ deadScripts = [];
100
+ }
101
+
102
+ return response.options.jsonp ? !response.data : true;
103
+ }
104
+ function isReadyScript(response){
105
+ return !!this.scriptLoaded;
106
+ }
107
+ function isReadyCheckString(response){
108
+ var checkString = response.options.checkString;
109
+
110
+ return checkString && eval('typeof(' + checkString + ') !== "undefined"');
111
+ }
112
+ function handleResponse(response, error){
113
+ if(this.canDelete){
114
+ _addDeadScript(this);
115
+ }
116
+ if(error){
117
+ this.reject(error);
118
+ }else{
119
+ this.resolve(response);
120
+ }
121
+ }
122
+
123
+ function script(url, options, returnDeferred){
124
+ var response = util.parseArgs(url, util.deepCopy({}, options));
125
+ url = response.url;
126
+ options = response.options;
127
+
128
+ var dfd = util.deferred(
129
+ response,
130
+ canceler,
131
+ isValid,
132
+ options.jsonp ? null : (options.checkString ? isReadyCheckString : isReadyScript),
133
+ handleResponse
134
+ );
135
+
136
+ lang.mixin(dfd, {
137
+ id: mid + (counter++),
138
+ canDelete: false
139
+ });
140
+
141
+ if(options.jsonp){
142
+ var queryParameter = new RegExp('[?&]' + options.jsonp + '=');
143
+ if(!queryParameter.test(url)){
144
+ url += (~url.indexOf('?') ? '&' : '?') +
145
+ options.jsonp + '=' +
146
+ (options.frameDoc ? 'parent.' : '') +
147
+ mid + '_callbacks.' + dfd.id;
148
+ }
149
+
150
+ dfd.canDelete = true;
151
+ callbacks[dfd.id] = function(json){
152
+ response.data = json;
153
+ dfd.handleResponse(response);
154
+ };
155
+ }
156
+
157
+ if(util.notify){
158
+ util.notify.emit('send', response, dfd.promise.cancel);
159
+ }
160
+
161
+ if(!options.canAttach || options.canAttach(dfd)){
162
+ var node = script._attach(dfd.id, url, options.frameDoc, function (error) {
163
+ if (!(error instanceof Error)) {
164
+ var newError = new Error('Error loading ' + (error.target ? error.target.src : 'script'));
165
+ newError.source = error;
166
+ error = newError;
167
+ }
168
+ dfd.reject(error);
169
+ script._remove(dfd.id, options.frameDoc, true);
170
+ });
171
+
172
+ if(!options.jsonp && !options.checkString){
173
+ var handle = on(node, loadEvent, function(evt){
174
+ if(evt.type === 'load' || readyRegExp.test(node.readyState)){
175
+ handle.remove();
176
+ dfd.scriptLoaded = evt;
177
+ }
178
+ });
179
+ }
180
+ }
181
+
182
+ watch(dfd);
183
+
184
+ return returnDeferred ? dfd : dfd.promise;
185
+ }
186
+ script.get = script;
187
+ /*=====
188
+ script = function(url, options){
189
+ // summary:
190
+ // Sends a request using a script element with the given URL and options.
191
+ // url: String
192
+ // URL to request
193
+ // options: dojo/request/script.__Options?
194
+ // Options for the request.
195
+ // returns: dojo/request.__Promise
196
+ };
197
+ script.__BaseOptions = declare(request.__BaseOptions, {
198
+ // jsonp: String?
199
+ // The URL parameter name that indicates the JSONP callback string.
200
+ // For instance, when using Yahoo JSONP calls it is normally,
201
+ // jsonp: "callback". For AOL JSONP calls it is normally
202
+ // jsonp: "c".
203
+ // checkString: String?
204
+ // A string of JavaScript that when evaluated like so:
205
+ // "typeof(" + checkString + ") != 'undefined'"
206
+ // being true means that the script fetched has been loaded.
207
+ // Do not use this if doing a JSONP type of call (use `jsonp` instead).
208
+ // frameDoc: Document?
209
+ // The Document object of a child iframe. If this is passed in, the script
210
+ // will be attached to that document. This can be helpful in some comet long-polling
211
+ // scenarios with Firefox and Opera.
212
+ });
213
+ script.__MethodOptions = declare(null, {
214
+ // method: String?
215
+ // This option is ignored. All requests using this transport are
216
+ // GET requests.
217
+ });
218
+ script.__Options = declare([script.__BaseOptions, script.__MethodOptions]);
219
+
220
+ script.get = function(url, options){
221
+ // summary:
222
+ // Send an HTTP GET request using a script element with the given URL and options.
223
+ // url: String
224
+ // URL to request
225
+ // options: dojo/request/script.__BaseOptions?
226
+ // Options for the request.
227
+ // returns: dojo/request.__Promise
228
+ };
229
+ =====*/
230
+
231
+ // TODO: Remove in 2.0
232
+ script._attach = attach;
233
+ script._remove = remove;
234
+ script._callbacksProperty = mid + '_callbacks';
235
+
236
+ return script;
237
+ });
@@ -0,0 +1,11 @@
1
+ /*
2
+ Copyright (c) 2004-2017, The JS Foundation All Rights Reserved.
3
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
4
+ see: http://dojotoolkit.org/license for details
5
+ */
6
+ //>>built
7
+ define("dojo/require",["./_base/loader"],function(_1){
8
+ return {dynamic:0,normalize:function(id){
9
+ return id;
10
+ },load:_1.require};
11
+ });
@@ -0,0 +1,7 @@
1
+ define("dojo/require", ["./_base/loader"], function(loader){
2
+ return {
3
+ dynamic:0,
4
+ normalize:function(id){return id;},
5
+ load:loader.require
6
+ };
7
+ });
@@ -0,0 +1,67 @@
1
+ /*
2
+ Copyright (c) 2004-2017, The JS Foundation All Rights Reserved.
3
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
4
+ see: http://dojotoolkit.org/license for details
5
+ */
6
+ //>>built
7
+ define("dojo/string",["./_base/kernel","./_base/lang"],function(_1,_2){
8
+ var _3=/[&<>'"\/]/g;
9
+ var _4={"&":"&amp;","<":"&lt;",">":"&gt;","\"":"&quot;","'":"&#x27;","/":"&#x2F;"};
10
+ var _5={};
11
+ _2.setObject("dojo.string",_5);
12
+ _5.escape=function(_6){
13
+ if(!_6){
14
+ return "";
15
+ }
16
+ return _6.replace(_3,function(c){
17
+ return _4[c];
18
+ });
19
+ };
20
+ _5.rep=function(_7,_8){
21
+ if(_8<=0||!_7){
22
+ return "";
23
+ }
24
+ var _9=[];
25
+ for(;;){
26
+ if(_8&1){
27
+ _9.push(_7);
28
+ }
29
+ if(!(_8>>=1)){
30
+ break;
31
+ }
32
+ _7+=_7;
33
+ }
34
+ return _9.join("");
35
+ };
36
+ _5.pad=function(_a,_b,ch,_c){
37
+ if(!ch){
38
+ ch="0";
39
+ }
40
+ var _d=String(_a),_e=_5.rep(ch,Math.ceil((_b-_d.length)/ch.length));
41
+ return _c?_d+_e:_e+_d;
42
+ };
43
+ _5.substitute=function(_f,map,_10,_11){
44
+ _11=_11||_1.global;
45
+ _10=_10?_2.hitch(_11,_10):function(v){
46
+ return v;
47
+ };
48
+ return _f.replace(/\$\{([^\s\:\}]+)(?:\:([^\s\:\}]+))?\}/g,function(_12,key,_13){
49
+ var _14=_2.getObject(key,false,map);
50
+ if(_13){
51
+ _14=_2.getObject(_13,false,_11).call(_11,_14,key);
52
+ }
53
+ return _10(_14,key).toString();
54
+ });
55
+ };
56
+ _5.trim=String.prototype.trim?_2.trim:function(str){
57
+ str=str.replace(/^\s+/,"");
58
+ for(var i=str.length-1;i>=0;i--){
59
+ if(/\S/.test(str.charAt(i))){
60
+ str=str.substring(0,i+1);
61
+ break;
62
+ }
63
+ }
64
+ return str;
65
+ };
66
+ return _5;
67
+ });
@@ -0,0 +1,181 @@
1
+ define("dojo/string", [
2
+ "./_base/kernel", // kernel.global
3
+ "./_base/lang"
4
+ ], function(kernel, lang){
5
+
6
+ // module:
7
+ // dojo/string
8
+ var ESCAPE_REGEXP = /[&<>'"\/]/g;
9
+ var ESCAPE_MAP = {
10
+ '&': '&amp;',
11
+ '<': '&lt;',
12
+ '>': '&gt;',
13
+ '"': '&quot;',
14
+ "'": '&#x27;',
15
+ '/': '&#x2F;'
16
+ };
17
+ var string = {
18
+ // summary:
19
+ // String utilities for Dojo
20
+ };
21
+ lang.setObject("dojo.string", string);
22
+
23
+ string.escape = function(/*String*/str){
24
+ // summary:
25
+ // Efficiently escape a string for insertion into HTML (innerHTML or attributes), replacing &, <, >, ", ', and / characters.
26
+ // str:
27
+ // the string to escape
28
+ if(!str){ return ""; }
29
+ return str.replace(ESCAPE_REGEXP, function(c) {
30
+ return ESCAPE_MAP[c];
31
+ });
32
+ };
33
+
34
+ string.rep = function(/*String*/str, /*Integer*/num){
35
+ // summary:
36
+ // Efficiently replicate a string `n` times.
37
+ // str:
38
+ // the string to replicate
39
+ // num:
40
+ // number of times to replicate the string
41
+
42
+ if(num <= 0 || !str){ return ""; }
43
+
44
+ var buf = [];
45
+ for(;;){
46
+ if(num & 1){
47
+ buf.push(str);
48
+ }
49
+ if(!(num >>= 1)){ break; }
50
+ str += str;
51
+ }
52
+ return buf.join(""); // String
53
+ };
54
+
55
+ string.pad = function(/*String*/text, /*Integer*/size, /*String?*/ch, /*Boolean?*/end){
56
+ // summary:
57
+ // Pad a string to guarantee that it is at least `size` length by
58
+ // filling with the character `ch` at either the start or end of the
59
+ // string. Pads at the start, by default.
60
+ // text:
61
+ // the string to pad
62
+ // size:
63
+ // length to provide padding
64
+ // ch:
65
+ // character to pad, defaults to '0'
66
+ // end:
67
+ // adds padding at the end if true, otherwise pads at start
68
+ // example:
69
+ // | // Fill the string to length 10 with "+" characters on the right. Yields "Dojo++++++".
70
+ // | string.pad("Dojo", 10, "+", true);
71
+
72
+ if(!ch){
73
+ ch = '0';
74
+ }
75
+ var out = String(text),
76
+ pad = string.rep(ch, Math.ceil((size - out.length) / ch.length));
77
+ return end ? out + pad : pad + out; // String
78
+ };
79
+
80
+ string.substitute = function( /*String*/ template,
81
+ /*Object|Array*/map,
82
+ /*Function?*/ transform,
83
+ /*Object?*/ thisObject){
84
+ // summary:
85
+ // Performs parameterized substitutions on a string. Throws an
86
+ // exception if any parameter is unmatched.
87
+ // template:
88
+ // a string with expressions in the form `${key}` to be replaced or
89
+ // `${key:format}` which specifies a format function. keys are case-sensitive.
90
+ // map:
91
+ // hash to search for substitutions
92
+ // transform:
93
+ // a function to process all parameters before substitution takes
94
+ // place, e.g. mylib.encodeXML
95
+ // thisObject:
96
+ // where to look for optional format function; default to the global
97
+ // namespace
98
+ // example:
99
+ // Substitutes two expressions in a string from an Array or Object
100
+ // | // returns "File 'foo.html' is not found in directory '/temp'."
101
+ // | // by providing substitution data in an Array
102
+ // | string.substitute(
103
+ // | "File '${0}' is not found in directory '${1}'.",
104
+ // | ["foo.html","/temp"]
105
+ // | );
106
+ // |
107
+ // | // also returns "File 'foo.html' is not found in directory '/temp'."
108
+ // | // but provides substitution data in an Object structure. Dotted
109
+ // | // notation may be used to traverse the structure.
110
+ // | string.substitute(
111
+ // | "File '${name}' is not found in directory '${info.dir}'.",
112
+ // | { name: "foo.html", info: { dir: "/temp" } }
113
+ // | );
114
+ // example:
115
+ // Use a transform function to modify the values:
116
+ // | // returns "file 'foo.html' is not found in directory '/temp'."
117
+ // | string.substitute(
118
+ // | "${0} is not found in ${1}.",
119
+ // | ["foo.html","/temp"],
120
+ // | function(str){
121
+ // | // try to figure out the type
122
+ // | var prefix = (str.charAt(0) == "/") ? "directory": "file";
123
+ // | return prefix + " '" + str + "'";
124
+ // | }
125
+ // | );
126
+ // example:
127
+ // Use a formatter
128
+ // | // returns "thinger -- howdy"
129
+ // | string.substitute(
130
+ // | "${0:postfix}", ["thinger"], null, {
131
+ // | postfix: function(value, key){
132
+ // | return value + " -- howdy";
133
+ // | }
134
+ // | }
135
+ // | );
136
+
137
+ thisObject = thisObject || kernel.global;
138
+ transform = transform ?
139
+ lang.hitch(thisObject, transform) : function(v){ return v; };
140
+
141
+ return template.replace(/\$\{([^\s\:\}]+)(?:\:([^\s\:\}]+))?\}/g,
142
+ function(match, key, format){
143
+ var value = lang.getObject(key, false, map);
144
+ if(format){
145
+ value = lang.getObject(format, false, thisObject).call(thisObject, value, key);
146
+ }
147
+ return transform(value, key).toString();
148
+ }); // String
149
+ };
150
+
151
+ string.trim = String.prototype.trim ?
152
+ lang.trim : // aliasing to the native function
153
+ function(str){
154
+ str = str.replace(/^\s+/, '');
155
+ for(var i = str.length - 1; i >= 0; i--){
156
+ if(/\S/.test(str.charAt(i))){
157
+ str = str.substring(0, i + 1);
158
+ break;
159
+ }
160
+ }
161
+ return str;
162
+ };
163
+
164
+ /*=====
165
+ string.trim = function(str){
166
+ // summary:
167
+ // Trims whitespace from both sides of the string
168
+ // str: String
169
+ // String to be trimmed
170
+ // returns: String
171
+ // Returns the trimmed string
172
+ // description:
173
+ // This version of trim() was taken from [Steven Levithan's blog](http://blog.stevenlevithan.com/archives/faster-trim-javascript).
174
+ // The short yet performant version of this function is dojo/_base/lang.trim(),
175
+ // which is part of Dojo base. Uses String.prototype.trim instead, if available.
176
+ return ""; // String
177
+ };
178
+ =====*/
179
+
180
+ return string;
181
+ });
@@ -0,0 +1,191 @@
1
+ /*
2
+ Copyright (c) 2004-2017, The JS Foundation All Rights Reserved.
3
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
4
+ see: http://dojotoolkit.org/license for details
5
+ */
6
+ //>>built
7
+ define("dojo/touch",["./_base/kernel","./aspect","./dom","./dom-class","./_base/lang","./on","./has","./mouse","./domReady","./_base/window"],function(_1,_2,_3,_4,_5,on,_6,_7,_8,_9){
8
+ var _a=_6("ios")<5;
9
+ var _b=_6("pointer-events")||_6("MSPointer"),_c=(function(){
10
+ var _d={};
11
+ for(var _e in {down:1,move:1,up:1,cancel:1,over:1,out:1}){
12
+ _d[_e]=_6("MSPointer")?"MSPointer"+_e.charAt(0).toUpperCase()+_e.slice(1):"pointer"+_e;
13
+ }
14
+ return _d;
15
+ })();
16
+ var _f=_6("touch-events");
17
+ var _10,_11,_12=false,_13,_14,_15,_16,_17,_18;
18
+ var _19;
19
+ function _1a(_1b,_1c,_1d){
20
+ if(_b&&_1d){
21
+ return function(_1e,_1f){
22
+ return on(_1e,_1d,_1f);
23
+ };
24
+ }else{
25
+ if(_f){
26
+ return function(_20,_21){
27
+ var _22=on(_20,_1c,function(evt){
28
+ _21.call(this,evt);
29
+ _19=(new Date()).getTime();
30
+ }),_23=on(_20,_1b,function(evt){
31
+ if(!_19||(new Date()).getTime()>_19+1000){
32
+ _21.call(this,evt);
33
+ }
34
+ });
35
+ return {remove:function(){
36
+ _22.remove();
37
+ _23.remove();
38
+ }};
39
+ };
40
+ }else{
41
+ return function(_24,_25){
42
+ return on(_24,_1b,_25);
43
+ };
44
+ }
45
+ }
46
+ };
47
+ function _26(_27){
48
+ do{
49
+ if(_27.dojoClick!==undefined){
50
+ return _27;
51
+ }
52
+ }while(_27=_27.parentNode);
53
+ };
54
+ function _28(e,_29,_2a){
55
+ if(_7.isRight(e)){
56
+ return;
57
+ }
58
+ var _2b=_26(e.target);
59
+ _11=!e.target.disabled&&_2b&&_2b.dojoClick;
60
+ if(_11){
61
+ _12=(_11=="useTarget");
62
+ _13=(_12?_2b:e.target);
63
+ if(_12){
64
+ e.preventDefault();
65
+ }
66
+ _14=e.changedTouches?e.changedTouches[0].pageX-_9.global.pageXOffset:e.clientX;
67
+ _15=e.changedTouches?e.changedTouches[0].pageY-_9.global.pageYOffset:e.clientY;
68
+ _16=(typeof _11=="object"?_11.x:(typeof _11=="number"?_11:0))||4;
69
+ _17=(typeof _11=="object"?_11.y:(typeof _11=="number"?_11:0))||4;
70
+ if(!_10){
71
+ _10=true;
72
+ function _2c(e){
73
+ if(_12){
74
+ _11=_3.isDescendant(_9.doc.elementFromPoint((e.changedTouches?e.changedTouches[0].pageX-_9.global.pageXOffset:e.clientX),(e.changedTouches?e.changedTouches[0].pageY-_9.global.pageYOffset:e.clientY)),_13);
75
+ }else{
76
+ _11=_11&&(e.changedTouches?e.changedTouches[0].target:e.target)==_13&&Math.abs((e.changedTouches?e.changedTouches[0].pageX-_9.global.pageXOffset:e.clientX)-_14)<=_16&&Math.abs((e.changedTouches?e.changedTouches[0].pageY-_9.global.pageYOffset:e.clientY)-_15)<=_17;
77
+ }
78
+ };
79
+ _9.doc.addEventListener(_29,function(e){
80
+ if(_7.isRight(e)){
81
+ return;
82
+ }
83
+ _2c(e);
84
+ if(_12){
85
+ e.preventDefault();
86
+ }
87
+ },true);
88
+ _9.doc.addEventListener(_2a,function(e){
89
+ if(_7.isRight(e)){
90
+ return;
91
+ }
92
+ _2c(e);
93
+ if(_11){
94
+ _18=(new Date()).getTime();
95
+ var _2d=(_12?_13:e.target);
96
+ if(_2d.tagName==="LABEL"){
97
+ _2d=_3.byId(_2d.getAttribute("for"))||_2d;
98
+ }
99
+ var src=(e.changedTouches)?e.changedTouches[0]:e;
100
+ function _2e(_2f){
101
+ var evt=document.createEvent("MouseEvents");
102
+ evt._dojo_click=true;
103
+ evt.initMouseEvent(_2f,true,true,e.view,e.detail,src.screenX,src.screenY,src.clientX,src.clientY,e.ctrlKey,e.altKey,e.shiftKey,e.metaKey,0,null);
104
+ return evt;
105
+ };
106
+ var _30=_2e("mousedown");
107
+ var _31=_2e("mouseup");
108
+ var _32=_2e("click");
109
+ setTimeout(function(){
110
+ on.emit(_2d,"mousedown",_30);
111
+ on.emit(_2d,"mouseup",_31);
112
+ on.emit(_2d,"click",_32);
113
+ _18=(new Date()).getTime();
114
+ },0);
115
+ }
116
+ },true);
117
+ function _33(_34){
118
+ _9.doc.addEventListener(_34,function(e){
119
+ if(_11&&!e._dojo_click&&(new Date()).getTime()<=_18+1000&&!(e.target.tagName=="INPUT"&&_4.contains(e.target,"dijitOffScreen"))){
120
+ e.stopPropagation();
121
+ e.stopImmediatePropagation&&e.stopImmediatePropagation();
122
+ if(_34=="click"&&(e.target.tagName!="INPUT"||e.target.type=="radio"||e.target.type=="checkbox")&&e.target.tagName!="TEXTAREA"&&e.target.tagName!="AUDIO"&&e.target.tagName!="VIDEO"){
123
+ e.preventDefault();
124
+ }
125
+ }
126
+ },true);
127
+ };
128
+ _33("click");
129
+ _33("mousedown");
130
+ _33("mouseup");
131
+ }
132
+ }
133
+ };
134
+ var _35;
135
+ if(_6("touch")){
136
+ if(_b){
137
+ _8(function(){
138
+ _9.doc.addEventListener(_c.down,function(evt){
139
+ _28(evt,_c.move,_c.up);
140
+ },true);
141
+ });
142
+ }else{
143
+ _8(function(){
144
+ _35=_9.body();
145
+ _9.doc.addEventListener("touchstart",function(evt){
146
+ _19=(new Date()).getTime();
147
+ var _36=_35;
148
+ _35=evt.target;
149
+ on.emit(_36,"dojotouchout",{relatedTarget:_35,bubbles:true});
150
+ on.emit(_35,"dojotouchover",{relatedTarget:_36,bubbles:true});
151
+ _28(evt,"touchmove","touchend");
152
+ },true);
153
+ function _37(evt){
154
+ var _38=_5.delegate(evt,{bubbles:true});
155
+ if(_6("ios")>=6){
156
+ _38.touches=evt.touches;
157
+ _38.altKey=evt.altKey;
158
+ _38.changedTouches=evt.changedTouches;
159
+ _38.ctrlKey=evt.ctrlKey;
160
+ _38.metaKey=evt.metaKey;
161
+ _38.shiftKey=evt.shiftKey;
162
+ _38.targetTouches=evt.targetTouches;
163
+ }
164
+ return _38;
165
+ };
166
+ on(_9.doc,"touchmove",function(evt){
167
+ _19=(new Date()).getTime();
168
+ var _39=_9.doc.elementFromPoint(evt.pageX-(_a?0:_9.global.pageXOffset),evt.pageY-(_a?0:_9.global.pageYOffset));
169
+ if(_39){
170
+ if(_35!==_39){
171
+ on.emit(_35,"dojotouchout",{relatedTarget:_39,bubbles:true});
172
+ on.emit(_39,"dojotouchover",{relatedTarget:_35,bubbles:true});
173
+ _35=_39;
174
+ }
175
+ if(!on.emit(_39,"dojotouchmove",_37(evt))){
176
+ evt.preventDefault();
177
+ }
178
+ }
179
+ });
180
+ on(_9.doc,"touchend",function(evt){
181
+ _19=(new Date()).getTime();
182
+ var _3a=_9.doc.elementFromPoint(evt.pageX-(_a?0:_9.global.pageXOffset),evt.pageY-(_a?0:_9.global.pageYOffset))||_9.body();
183
+ on.emit(_3a,"dojotouchend",_37(evt));
184
+ });
185
+ });
186
+ }
187
+ }
188
+ var _3b={press:_1a("mousedown","touchstart",_c.down),move:_1a("mousemove","dojotouchmove",_c.move),release:_1a("mouseup","dojotouchend",_c.up),cancel:_1a(_7.leave,"touchcancel",_b?_c.cancel:null),over:_1a("mouseover","dojotouchover",_c.over),out:_1a("mouseout","dojotouchout",_c.out),enter:_7._eventHandler(_1a("mouseover","dojotouchover",_c.over)),leave:_7._eventHandler(_1a("mouseout","dojotouchout",_c.out))};
189
+ 1&&(_1.touch=_3b);
190
+ return _3b;
191
+ });