@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,121 @@
1
+ define("dojox/lang/utils", ["..", "dojo/_base/lang"],
2
+ function(dojox, lang){
3
+ var du = lang.getObject("lang.utils", true, dojox);
4
+
5
+ var empty = {}, opts = Object.prototype.toString;
6
+
7
+ var clone = function(o){
8
+ if(o){
9
+ switch(opts.call(o)){
10
+ case "[object Array]":
11
+ return o.slice(0);
12
+ case "[object Object]":
13
+ return lang.delegate(o);
14
+ }
15
+ }
16
+ return o;
17
+ }
18
+
19
+ lang.mixin(du, {
20
+ coerceType: function(target, source){
21
+ // summary:
22
+ // Coerces one object to the type of another.
23
+ // target: Object
24
+ // object, which typeof result is used to coerce "source" object.
25
+ // source: Object
26
+ // object, which will be forced to change type.
27
+ switch(typeof target){
28
+ case "number": return Number(eval("(" + source + ")"));
29
+ case "string": return String(source);
30
+ case "boolean": return Boolean(eval("(" + source + ")"));
31
+ }
32
+ return eval("(" + source + ")");
33
+ },
34
+
35
+ updateWithObject: function(target, source, conv){
36
+ // summary:
37
+ // Updates an existing object in place with properties from an "source" object.
38
+ // target: Object
39
+ // the "target" object to be updated
40
+ // source: Object
41
+ // the "source" object, whose properties will be used to source the existed object.
42
+ // conv: Boolean?
43
+ // force conversion to the original type
44
+ if(!source){ return target; }
45
+ for(var x in target){
46
+ if(x in source && !(x in empty)){
47
+ var t = target[x];
48
+ if(t && typeof t == "object"){
49
+ du.updateWithObject(t, source[x], conv);
50
+ }else{
51
+ target[x] = conv ? du.coerceType(t, source[x]) : clone(source[x]);
52
+ }
53
+ }
54
+ }
55
+ return target; // Object
56
+ },
57
+
58
+ updateWithPattern: function(target, source, pattern, conv){
59
+ // summary:
60
+ // Updates an existing object in place with properties from an "source" object.
61
+ // target: Object
62
+ // the "target" object to be updated
63
+ // source: Object
64
+ // the "source" object, whose properties will be used to source the existed object.
65
+ // pattern: Object
66
+ // object, whose properties will be used to pull values from the "source"
67
+ // conv: Boolean?
68
+ // force conversion to the original type
69
+ if(!source || !pattern){ return target; }
70
+ for(var x in pattern){
71
+ if(x in source && !(x in empty)){
72
+ target[x] = conv ? du.coerceType(pattern[x], source[x]) : clone(source[x]);
73
+ }
74
+ }
75
+ return target; // Object
76
+ },
77
+
78
+ merge: function(object, mixin){
79
+ // summary:
80
+ // Merge two objects structurally, mixin properties will override object's properties.
81
+ // object: Object
82
+ // original object.
83
+ // mixin: Object
84
+ // additional object, which properties will override object's properties.
85
+ if(mixin){
86
+ var otype = opts.call(object), mtype = opts.call(mixin), t, i, l, m;
87
+ switch(mtype){
88
+ case "[object Array]":
89
+ if(mtype == otype){
90
+ t = new Array(Math.max(object.length, mixin.length));
91
+ for(i = 0, l = t.length; i < l; ++i){
92
+ t[i] = du.merge(object[i], mixin[i]);
93
+ }
94
+ return t;
95
+ }
96
+ return mixin.slice(0);
97
+ case "[object Object]":
98
+ if(mtype == otype && object){
99
+ t = lang.delegate(object);
100
+ for(i in mixin){
101
+ if(i in object){
102
+ l = object[i];
103
+ m = mixin[i];
104
+ if(m !== l){
105
+ t[i] = du.merge(l, m);
106
+ }
107
+ }else{
108
+ t[i] = lang.clone(mixin[i]);
109
+ }
110
+ }
111
+ return t;
112
+ }
113
+ return lang.clone(mixin);
114
+ }
115
+ }
116
+ return mixin;
117
+ }
118
+ });
119
+
120
+ return du;
121
+ });
@@ -0,0 +1,4 @@
1
+ //>>built
2
+ define("dojox/main",["dojo/_base/kernel"],function(_1){
3
+ return _1.dojox;
4
+ });
@@ -0,0 +1,14 @@
1
+ define("dojox/main", ["dojo/_base/kernel"], function(dojo) {
2
+ // module:
3
+ // dojox/main
4
+
5
+ /*=====
6
+ return {
7
+ // summary:
8
+ // The dojox package main module; dojox package is somewhat unusual in that the main module currently just provides an empty object.
9
+ // Apps should require modules from the dojox packages directly, rather than loading this module.
10
+ };
11
+ =====*/
12
+
13
+ return dojo.dojox;
14
+ });
@@ -0,0 +1,112 @@
1
+ //>>built
2
+ define("dojox/storage/LocalStorageProvider",["dojo","dijit","dojox","dojo/require!dojox/storage/Provider,dojox/storage/manager"],function(_1,_2,_3){
3
+ _1.provide("dojox.storage.LocalStorageProvider");
4
+ _1.require("dojox.storage.Provider");
5
+ _1.require("dojox.storage.manager");
6
+ _1.declare("dojox.storage.LocalStorageProvider",[_3.storage.Provider],{store:null,initialize:function(){
7
+ this.store=localStorage;
8
+ this.initialized=true;
9
+ _3.storage.manager.loaded();
10
+ },isAvailable:function(){
11
+ return typeof localStorage!="undefined";
12
+ },put:function(_4,_5,_6,_7){
13
+ this._assertIsValidKey(_4);
14
+ _7=_7||this.DEFAULT_NAMESPACE;
15
+ this._assertIsValidNamespace(_7);
16
+ var _8=this.getFullKey(_4,_7);
17
+ _5=_1.toJson(_5);
18
+ try{
19
+ this.store.setItem(_8,_5);
20
+ if(_6){
21
+ _6(this.SUCCESS,_4,null,_7);
22
+ }
23
+ }
24
+ catch(e){
25
+ if(_6){
26
+ _6(this.FAILED,_4,e.toString(),_7);
27
+ }
28
+ }
29
+ },get:function(_9,_a){
30
+ this._assertIsValidKey(_9);
31
+ _a=_a||this.DEFAULT_NAMESPACE;
32
+ this._assertIsValidNamespace(_a);
33
+ _9=this.getFullKey(_9,_a);
34
+ return _1.fromJson(this.store.getItem(_9));
35
+ },getKeys:function(_b){
36
+ _b=_b||this.DEFAULT_NAMESPACE;
37
+ this._assertIsValidNamespace(_b);
38
+ _b="__"+_b+"_";
39
+ var _c=[];
40
+ for(var i=0;i<this.store.length;i++){
41
+ var _d=this.store.key(i);
42
+ if(this._beginsWith(_d,_b)){
43
+ _d=_d.substring(_b.length);
44
+ _c.push(_d);
45
+ }
46
+ }
47
+ return _c;
48
+ },clear:function(_e){
49
+ _e=_e||this.DEFAULT_NAMESPACE;
50
+ this._assertIsValidNamespace(_e);
51
+ _e="__"+_e+"_";
52
+ var _f=[];
53
+ for(var i=0;i<this.store.length;i++){
54
+ if(this._beginsWith(this.store.key(i),_e)){
55
+ _f.push(this.store.key(i));
56
+ }
57
+ }
58
+ _1.forEach(_f,_1.hitch(this.store,"removeItem"));
59
+ },remove:function(key,_10){
60
+ _10=_10||this.DEFAULT_NAMESPACE;
61
+ this._assertIsValidNamespace(_10);
62
+ this.store.removeItem(this.getFullKey(key,_10));
63
+ },getNamespaces:function(){
64
+ var _11=[this.DEFAULT_NAMESPACE];
65
+ var _12={};
66
+ _12[this.DEFAULT_NAMESPACE]=true;
67
+ var _13=/^__([^_]*)_/;
68
+ for(var i=0;i<this.store.length;i++){
69
+ var _14=this.store.key(i);
70
+ if(_13.test(_14)==true){
71
+ var _15=_14.match(_13)[1];
72
+ if(typeof _12[_15]=="undefined"){
73
+ _12[_15]=true;
74
+ _11.push(_15);
75
+ }
76
+ }
77
+ }
78
+ return _11;
79
+ },isPermanent:function(){
80
+ return true;
81
+ },getMaximumSize:function(){
82
+ return _3.storage.SIZE_NO_LIMIT;
83
+ },hasSettingsUI:function(){
84
+ return false;
85
+ },isValidKey:function(_16){
86
+ if(_16===null||_16===undefined){
87
+ return false;
88
+ }
89
+ return /^[0-9A-Za-z_-]*$/.test(_16);
90
+ },isValidNamespace:function(_17){
91
+ if(_17===null||_17===undefined){
92
+ return false;
93
+ }
94
+ return /^[0-9A-Za-z-]*$/.test(_17);
95
+ },getFullKey:function(key,_18){
96
+ return "__"+_18+"_"+key;
97
+ },_beginsWith:function(_19,_1a){
98
+ if(_1a.length>_19.length){
99
+ return false;
100
+ }
101
+ return _19.substring(0,_1a.length)===_1a;
102
+ },_assertIsValidNamespace:function(_1b){
103
+ if(this.isValidNamespace(_1b)===false){
104
+ throw new Error("Invalid namespace given: "+_1b);
105
+ }
106
+ },_assertIsValidKey:function(key){
107
+ if(this.isValidKey(key)===false){
108
+ throw new Error("Invalid key given: "+key);
109
+ }
110
+ }});
111
+ _3.storage.manager.register("dojox.storage.LocalStorageProvider",new _3.storage.LocalStorageProvider());
112
+ });
@@ -0,0 +1,208 @@
1
+ // wrapped by build app
2
+ define("dojox/storage/LocalStorageProvider", ["dojo","dijit","dojox","dojo/require!dojox/storage/Provider,dojox/storage/manager"], function(dojo,dijit,dojox){
3
+ dojo.provide("dojox.storage.LocalStorageProvider");
4
+
5
+ dojo.require("dojox.storage.Provider");
6
+ dojo.require("dojox.storage.manager");
7
+
8
+ dojo.declare(
9
+ "dojox.storage.LocalStorageProvider",
10
+ [dojox.storage.Provider],
11
+ {
12
+ store: null,
13
+
14
+ initialize: function(){
15
+
16
+ this.store = localStorage;
17
+
18
+ this.initialized = true;
19
+ dojox.storage.manager.loaded();
20
+ },
21
+
22
+ isAvailable: function(){ /*Boolean*/
23
+ return typeof localStorage != 'undefined';
24
+ },
25
+
26
+ put: function( /*string*/ key,
27
+ /*object*/ value,
28
+ /*function*/ resultsHandler,
29
+ /*string?*/ namespace){
30
+
31
+ // TODO: Use the events as specified in http://dev.w3.org/html5/webstorage/#the-storage-event ?
32
+ // Currently, the storage event is not reliable around browsers.
33
+
34
+ this._assertIsValidKey(key);
35
+
36
+ namespace = namespace||this.DEFAULT_NAMESPACE;
37
+ this._assertIsValidNamespace(namespace);
38
+
39
+ var fullKey = this.getFullKey(key,namespace);
40
+
41
+ // prepending a prefix to a string value
42
+ // will result in that prefix not being
43
+ // usable as a value, so we better use
44
+ // toJson() always.
45
+ value = dojo.toJson(value);
46
+
47
+ try { // ua may raise an QUOTA_EXCEEDED_ERR exception
48
+ this.store.setItem(fullKey,value);
49
+
50
+ if(resultsHandler){
51
+ resultsHandler(this.SUCCESS, key, null, namespace);
52
+ }
53
+ } catch(e) {
54
+ if(resultsHandler){
55
+ resultsHandler(this.FAILED, key, e.toString(), namespace);
56
+ }
57
+ }
58
+ },
59
+
60
+ get: function(/*string*/ key, /*string?*/ namespace){ /*Object*/
61
+ this._assertIsValidKey(key);
62
+
63
+ namespace = namespace||this.DEFAULT_NAMESPACE;
64
+ this._assertIsValidNamespace(namespace);
65
+
66
+ // get our full key name, which is namespace + key
67
+ key = this.getFullKey(key, namespace);
68
+
69
+ return dojo.fromJson(this.store.getItem(key));
70
+ },
71
+
72
+ getKeys: function(/*string?*/ namespace){ /*Array*/
73
+ namespace = namespace||this.DEFAULT_NAMESPACE;
74
+ this._assertIsValidNamespace(namespace);
75
+
76
+ namespace = '__'+namespace+'_'
77
+
78
+ var keys = [];
79
+ for(var i = 0; i < this.store.length; i++){
80
+ var currentKey = this.store.key(i);
81
+ if(this._beginsWith(currentKey,namespace)){
82
+ currentKey = currentKey.substring(namespace.length);
83
+ keys.push(currentKey);
84
+ }
85
+ }
86
+
87
+ return keys;
88
+ },
89
+
90
+ clear: function(/*string?*/ namespace){
91
+ // Um, well, the 'specs' in Provider.js say that if
92
+ // no namespace is given, this method should nuke
93
+ // the *complete* storage. As other components might
94
+ // be using localStorage too, this might not be a
95
+ // good idea, so this method won't do it.
96
+
97
+ namespace = namespace||this.DEFAULT_NAMESPACE;
98
+ this._assertIsValidNamespace(namespace);
99
+
100
+ namespace = '__'+namespace+'_';
101
+
102
+ var keys = [];
103
+ for(var i = 0; i < this.store.length; i++){
104
+ if(this._beginsWith(this.store.key(i),namespace)){
105
+ keys.push(this.store.key(i));
106
+ }
107
+ }
108
+
109
+ dojo.forEach(keys, dojo.hitch(this.store, "removeItem"));
110
+ },
111
+
112
+ remove: function(/*string*/ key, /*string?*/ namespace){
113
+ namespace = namespace||this.DEFAULT_NAMESPACE;
114
+ this._assertIsValidNamespace(namespace);
115
+
116
+ this.store.removeItem(this.getFullKey(key, namespace));
117
+ },
118
+
119
+ getNamespaces: function(){ /*string[]*/
120
+ // There must be a better way than
121
+ // to execute a regex on *every*
122
+ // item in the store.
123
+
124
+ var results = [ this.DEFAULT_NAMESPACE];
125
+
126
+ var found = {};
127
+ found[this.DEFAULT_NAMESPACE] = true;
128
+ var tester = /^__([^_]*)_/;
129
+
130
+ for(var i = 0; i < this.store.length; i++){
131
+ var currentKey = this.store.key(i);
132
+ if(tester.test(currentKey) == true){
133
+ var currentNS = currentKey.match(tester)[1];
134
+ if(typeof found[currentNS] == "undefined"){
135
+ found[currentNS] = true;
136
+ results.push(currentNS);
137
+ }
138
+ }
139
+ }
140
+
141
+ return results;
142
+ },
143
+
144
+ isPermanent: function(){ /*Boolean*/
145
+ return true;
146
+ },
147
+
148
+ getMaximumSize: function(){ /* mixed */
149
+ return dojox.storage.SIZE_NO_LIMIT;
150
+ },
151
+
152
+ hasSettingsUI: function(){ /*Boolean*/
153
+ return false;
154
+ },
155
+
156
+ isValidKey: function(/*string*/ keyName){ /*Boolean*/
157
+ if(keyName === null || keyName === undefined){
158
+ return false;
159
+ }
160
+
161
+ return /^[0-9A-Za-z_-]*$/.test(keyName);
162
+ },
163
+
164
+ isValidNamespace: function(/*string*/ keyName){ /*Boolean*/
165
+ // we *must* prevent namespaces from having
166
+ // underscores - else lookup of namespaces
167
+ // via RegEx (e.g. in getNamespaces ) would
168
+ // return wrong results.
169
+ //
170
+ // The only way around this would be to
171
+ // disallow underscores in keys.
172
+
173
+ if(keyName === null || keyName === undefined){
174
+ return false;
175
+ }
176
+
177
+ return /^[0-9A-Za-z-]*$/.test(keyName);
178
+ },
179
+
180
+ getFullKey: function(key, namespace){
181
+ // checks for valid namespace and
182
+ // key are already performed.
183
+ return "__" + namespace + "_" + key;
184
+ },
185
+
186
+ _beginsWith: function(/* string */ haystack, /* string */ needle) {
187
+ if(needle.length > haystack.length) {
188
+ return false;
189
+ }
190
+ return haystack.substring(0,needle.length) === needle;
191
+ },
192
+
193
+ _assertIsValidNamespace: function(/* string */ namespace){
194
+ if(this.isValidNamespace(namespace) === false){
195
+ throw new Error("Invalid namespace given: " + namespace);
196
+ }
197
+ },
198
+
199
+ _assertIsValidKey: function(/* string */ key){
200
+ if(this.isValidKey(key) === false){
201
+ throw new Error("Invalid key given: " + key);
202
+ }
203
+ }
204
+ }
205
+ );
206
+
207
+ dojox.storage.manager.register("dojox.storage.LocalStorageProvider", new dojox.storage.LocalStorageProvider());
208
+ });
@@ -0,0 +1,62 @@
1
+ //>>built
2
+ define("dojox/storage/Provider",["dojo","dijit","dojox"],function(_1,_2,_3){
3
+ _1.provide("dojox.storage.Provider");
4
+ _1.declare("dojox.storage.Provider",null,{constructor:function(){
5
+ },SUCCESS:"success",FAILED:"failed",PENDING:"pending",SIZE_NOT_AVAILABLE:"Size not available",SIZE_NO_LIMIT:"No size limit",DEFAULT_NAMESPACE:"default",onHideSettingsUI:null,initialize:function(){
6
+ console.warn("dojox.storage.initialize not implemented");
7
+ },isAvailable:function(){
8
+ console.warn("dojox.storage.isAvailable not implemented");
9
+ },put:function(_4,_5,_6,_7){
10
+ console.warn("dojox.storage.put not implemented");
11
+ },get:function(_8,_9){
12
+ console.warn("dojox.storage.get not implemented");
13
+ },hasKey:function(_a,_b){
14
+ return !!this.get(_a,_b);
15
+ },getKeys:function(_c){
16
+ console.warn("dojox.storage.getKeys not implemented");
17
+ },clear:function(_d){
18
+ console.warn("dojox.storage.clear not implemented");
19
+ },remove:function(_e,_f){
20
+ console.warn("dojox.storage.remove not implemented");
21
+ },getNamespaces:function(){
22
+ console.warn("dojox.storage.getNamespaces not implemented");
23
+ },isPermanent:function(){
24
+ console.warn("dojox.storage.isPermanent not implemented");
25
+ },getMaximumSize:function(){
26
+ console.warn("dojox.storage.getMaximumSize not implemented");
27
+ },putMultiple:function(_10,_11,_12,_13){
28
+ for(var i=0;i<_10.length;i++){
29
+ _3.storage.put(_10[i],_11[i],_12,_13);
30
+ }
31
+ },getMultiple:function(_14,_15){
32
+ var _16=[];
33
+ for(var i=0;i<_14.length;i++){
34
+ _16.push(_3.storage.get(_14[i],_15));
35
+ }
36
+ return _16;
37
+ },removeMultiple:function(_17,_18){
38
+ for(var i=0;i<_17.length;i++){
39
+ _3.storage.remove(_17[i],_18);
40
+ }
41
+ },isValidKeyArray:function(_19){
42
+ if(_19===null||_19===undefined||!_1.isArray(_19)){
43
+ return false;
44
+ }
45
+ return !_1.some(_19,function(key){
46
+ return !this.isValidKey(key);
47
+ },this);
48
+ },hasSettingsUI:function(){
49
+ return false;
50
+ },showSettingsUI:function(){
51
+ console.warn("dojox.storage.showSettingsUI not implemented");
52
+ },hideSettingsUI:function(){
53
+ console.warn("dojox.storage.hideSettingsUI not implemented");
54
+ },isValidKey:function(_1a){
55
+ if(_1a===null||_1a===undefined){
56
+ return false;
57
+ }
58
+ return /^[0-9A-Za-z_]*$/.test(_1a);
59
+ },getResourceList:function(){
60
+ return [];
61
+ }});
62
+ });