@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.
- package/CHANGELOG.md +12 -0
- package/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +4 -4
- package/src/cell-renderer.ts +5 -4
- package/src/helm-helper.ts +6 -6
- package/src/helm-monomer-placer.ts +1 -1
- package/src/helm-web-editor.ts +5 -5
- package/src/package-test.ts +0 -1
- package/src/package-utils.ts +228 -69
- package/src/package.ts +7 -69
- package/src/tests/findMonomers-tests.ts +2 -1
- package/src/tests/get-monomer-tests.ts +1 -49
- package/src/utils/get-monomer.ts +49 -1
- package/src/utils/helm-grid-cell-renderer.ts +8 -9
- package/src/utils/index.ts +2 -3
- package/src/widgets/helm-input.ts +4 -4
- package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js +63 -0
- package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js.uncompressed.js +116 -0
- package/vendor/dojo-1.10.10/dijit/Destroyable.js +35 -0
- package/vendor/dojo-1.10.10/dijit/Destroyable.js.uncompressed.js +83 -0
- package/vendor/dojo-1.10.10/dijit/Tooltip.js +240 -0
- package/vendor/dojo-1.10.10/dijit/Tooltip.js.uncompressed.js +612 -0
- package/vendor/dojo-1.10.10/dijit/Viewport.js +44 -0
- package/vendor/dojo-1.10.10/dijit/Viewport.js.uncompressed.js +87 -0
- package/vendor/dojo-1.10.10/dijit/WidgetSet.js +76 -0
- package/vendor/dojo-1.10.10/dijit/WidgetSet.js.uncompressed.js +247 -0
- package/vendor/dojo-1.10.10/dijit/_AttachMixin.js +94 -0
- package/vendor/dojo-1.10.10/dijit/_AttachMixin.js.uncompressed.js +238 -0
- package/vendor/dojo-1.10.10/dijit/_Contained.js +17 -0
- package/vendor/dojo-1.10.10/dijit/_Contained.js.uncompressed.js +56 -0
- package/vendor/dojo-1.10.10/dijit/_Container.js +47 -0
- package/vendor/dojo-1.10.10/dijit/_Container.js.uncompressed.js +108 -0
- package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js +198 -0
- package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js.uncompressed.js +372 -0
- package/vendor/dojo-1.10.10/dijit/_FocusMixin.js +11 -0
- package/vendor/dojo-1.10.10/dijit/_FocusMixin.js.uncompressed.js +66 -0
- package/vendor/dojo-1.10.10/dijit/_HasDropDown.js +188 -0
- package/vendor/dojo-1.10.10/dijit/_HasDropDown.js.uncompressed.js +472 -0
- package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js +8 -0
- package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js.uncompressed.js +31 -0
- package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js +90 -0
- package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js.uncompressed.js +205 -0
- package/vendor/dojo-1.10.10/dijit/_Widget.js +66 -0
- package/vendor/dojo-1.10.10/dijit/_Widget.js.uncompressed.js +352 -0
- package/vendor/dojo-1.10.10/dijit/_WidgetBase.js +353 -0
- package/vendor/dojo-1.10.10/dijit/_WidgetBase.js.uncompressed.js +1200 -0
- package/vendor/dojo-1.10.10/dijit/_base/focus.js +68 -0
- package/vendor/dojo-1.10.10/dijit/_base/focus.js.uncompressed.js +207 -0
- package/vendor/dojo-1.10.10/dijit/_base/manager.js +10 -0
- package/vendor/dojo-1.10.10/dijit/_base/manager.js.uncompressed.js +35 -0
- package/vendor/dojo-1.10.10/dijit/_base/place.js +52 -0
- package/vendor/dojo-1.10.10/dijit/_base/place.js.uncompressed.js +131 -0
- package/vendor/dojo-1.10.10/dijit/_base/popup.js +23 -0
- package/vendor/dojo-1.10.10/dijit/_base/popup.js.uncompressed.js +58 -0
- package/vendor/dojo-1.10.10/dijit/_base/scroll.js +6 -0
- package/vendor/dojo-1.10.10/dijit/_base/scroll.js.uncompressed.js +22 -0
- package/vendor/dojo-1.10.10/dijit/_base/sniff.js +3 -0
- package/vendor/dojo-1.10.10/dijit/_base/sniff.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dijit/_base/typematic.js +3 -0
- package/vendor/dojo-1.10.10/dijit/_base/typematic.js.uncompressed.js +10 -0
- package/vendor/dojo-1.10.10/dijit/_base/wai.js +32 -0
- package/vendor/dojo-1.10.10/dijit/_base/wai.js.uncompressed.js +109 -0
- package/vendor/dojo-1.10.10/dijit/_base/window.js +6 -0
- package/vendor/dojo-1.10.10/dijit/_base/window.js.uncompressed.js +18 -0
- package/vendor/dojo-1.10.10/dijit/_base.js +4 -0
- package/vendor/dojo-1.10.10/dijit/a11y.js +109 -0
- package/vendor/dojo-1.10.10/dijit/a11y.js.uncompressed.js +191 -0
- package/vendor/dojo-1.10.10/dijit/a11yclick.js +66 -0
- package/vendor/dojo-1.10.10/dijit/a11yclick.js.uncompressed.js +139 -0
- package/vendor/dojo-1.10.10/dijit/focus.js +188 -0
- package/vendor/dojo-1.10.10/dijit/focus.js.uncompressed.js +371 -0
- package/vendor/dojo-1.10.10/dijit/form/Button.js +49 -0
- package/vendor/dojo-1.10.10/dijit/form/Button.js.uncompressed.js +130 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboBox.js +4 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboBox.js.uncompressed.js +27 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboButton.js +21 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboButton.js.uncompressed.js +86 -0
- package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js +38 -0
- package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js.uncompressed.js +102 -0
- package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js +7 -0
- package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js.uncompressed.js +26 -0
- package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js +50 -0
- package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js.uncompressed.js +116 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js +26 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js.uncompressed.js +81 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js +24 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js.uncompressed.js +51 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js +22 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js.uncompressed.js +67 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js +111 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js.uncompressed.js +254 -0
- package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js +32 -0
- package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js.uncompressed.js +69 -0
- package/vendor/dojo-1.10.10/dijit/hccss.js +9 -0
- package/vendor/dojo-1.10.10/dijit/hccss.js.uncompressed.js +21 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js +215 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js.uncompressed.js +550 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js +7 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js.uncompressed.js +25 -0
- package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js +235 -0
- package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js.uncompressed.js +653 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js +171 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js.uncompressed.js +411 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackController.js +194 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackController.js.uncompressed.js +410 -0
- package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js +99 -0
- package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js.uncompressed.js +236 -0
- package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js +47 -0
- package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js.uncompressed.js +190 -0
- package/vendor/dojo-1.10.10/dijit/layout/utils.js +77 -0
- package/vendor/dojo-1.10.10/dijit/layout/utils.js.uncompressed.js +151 -0
- package/vendor/dojo-1.10.10/dijit/main.js +4 -0
- package/vendor/dojo-1.10.10/dijit/main.js.uncompressed.js +16 -0
- package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js +2 -0
- package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js.uncompressed.js +21 -0
- package/vendor/dojo-1.10.10/dijit/nls/loading.js +2 -0
- package/vendor/dojo-1.10.10/dijit/nls/loading.js.uncompressed.js +47 -0
- package/vendor/dojo-1.10.10/dijit/place.js +142 -0
- package/vendor/dojo-1.10.10/dijit/place.js.uncompressed.js +407 -0
- package/vendor/dojo-1.10.10/dijit/popup.js +162 -0
- package/vendor/dojo-1.10.10/dijit/popup.js.uncompressed.js +441 -0
- package/vendor/dojo-1.10.10/dijit/registry.js +79 -0
- package/vendor/dojo-1.10.10/dijit/registry.js.uncompressed.js +159 -0
- package/vendor/dojo-1.10.10/dijit/selection.js +364 -0
- package/vendor/dojo-1.10.10/dijit/selection.js.uncompressed.js +525 -0
- package/vendor/dojo-1.10.10/dijit/typematic.js +96 -0
- package/vendor/dojo-1.10.10/dijit/typematic.js.uncompressed.js +211 -0
- package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js +195 -0
- package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js.uncompressed.js +761 -0
- package/vendor/dojo-1.10.10/dojo/Stateful.js +90 -0
- package/vendor/dojo-1.10.10/dojo/Stateful.js.uncompressed.js +218 -0
- package/vendor/dojo-1.10.10/dojo/_base/url.js +87 -0
- package/vendor/dojo-1.10.10/dojo/_base/url.js.uncompressed.js +109 -0
- package/vendor/dojo-1.10.10/dojo/cache.js +9 -0
- package/vendor/dojo-1.10.10/dojo/cache.js.uncompressed.js +7 -0
- package/vendor/dojo-1.10.10/dojo/colors.js +74 -0
- package/vendor/dojo-1.10.10/dojo/colors.js.uncompressed.js +232 -0
- package/vendor/dojo-1.10.10/dojo/cookie.js +48 -0
- package/vendor/dojo-1.10.10/dojo/cookie.js.uncompressed.js +98 -0
- package/vendor/dojo-1.10.10/dojo/date/stamp.js +82 -0
- package/vendor/dojo-1.10.10/dojo/date/stamp.js.uncompressed.js +144 -0
- package/vendor/dojo-1.10.10/dojo/dojo.js +7 -0
- package/vendor/dojo-1.10.10/dojo/dojo.js.uncompressed.js +18680 -0
- package/vendor/dojo-1.10.10/dojo/fx/Toggler.js +27 -0
- package/vendor/dojo-1.10.10/dojo/fx/Toggler.js.uncompressed.js +101 -0
- package/vendor/dojo-1.10.10/dojo/fx/easing.js +165 -0
- package/vendor/dojo-1.10.10/dojo/fx/easing.js.uncompressed.js +276 -0
- package/vendor/dojo-1.10.10/dojo/fx.js +271 -0
- package/vendor/dojo-1.10.10/dojo/fx.js.uncompressed.js +443 -0
- package/vendor/dojo-1.10.10/dojo/hccss.js +26 -0
- package/vendor/dojo-1.10.10/dojo/hccss.js.uncompressed.js +52 -0
- package/vendor/dojo-1.10.10/dojo/html.js +161 -0
- package/vendor/dojo-1.10.10/dojo/html.js.uncompressed.js +370 -0
- package/vendor/dojo-1.10.10/dojo/io/iframe.js +71 -0
- package/vendor/dojo-1.10.10/dojo/io/iframe.js.uncompressed.js +190 -0
- package/vendor/dojo-1.10.10/dojo/io/script.js +112 -0
- package/vendor/dojo-1.10.10/dojo/io/script.js.uncompressed.js +280 -0
- package/vendor/dojo-1.10.10/dojo/parser.js +437 -0
- package/vendor/dojo-1.10.10/dojo/parser.js.uncompressed.js +915 -0
- package/vendor/dojo-1.10.10/dojo/promise/all.js +59 -0
- package/vendor/dojo-1.10.10/dojo/promise/all.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojo/regexp.js +32 -0
- package/vendor/dojo-1.10.10/dojo/regexp.js.uncompressed.js +70 -0
- package/vendor/dojo-1.10.10/dojo/request/iframe.js +291 -0
- package/vendor/dojo-1.10.10/dojo/request/iframe.js.uncompressed.js +438 -0
- package/vendor/dojo-1.10.10/dojo/request/script.js +129 -0
- package/vendor/dojo-1.10.10/dojo/request/script.js.uncompressed.js +237 -0
- package/vendor/dojo-1.10.10/dojo/require.js +11 -0
- package/vendor/dojo-1.10.10/dojo/require.js.uncompressed.js +7 -0
- package/vendor/dojo-1.10.10/dojo/resources/blank.gif +0 -0
- package/vendor/dojo-1.10.10/dojo/string.js +67 -0
- package/vendor/dojo-1.10.10/dojo/string.js.uncompressed.js +181 -0
- package/vendor/dojo-1.10.10/dojo/touch.js +191 -0
- package/vendor/dojo-1.10.10/dojo/touch.js.uncompressed.js +468 -0
- package/vendor/dojo-1.10.10/dojo/uacss.js +36 -0
- package/vendor/dojo-1.10.10/dojo/uacss.js.uncompressed.js +85 -0
- package/vendor/dojo-1.10.10/dojo/window.js +141 -0
- package/vendor/dojo-1.10.10/dojo/window.js.uncompressed.js +241 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart.js +626 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart.js.uncompressed.js +1220 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js +5 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js.uncompressed.js +16 -0
- package/vendor/dojo-1.10.10/dojox/charting/Element.js +247 -0
- package/vendor/dojo-1.10.10/dojox/charting/Element.js.uncompressed.js +402 -0
- package/vendor/dojo-1.10.10/dojox/charting/Series.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/Series.js.uncompressed.js +58 -0
- package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js +191 -0
- package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js.uncompressed.js +577 -0
- package/vendor/dojo-1.10.10/dojox/charting/Theme.js +42 -0
- package/vendor/dojo-1.10.10/dojox/charting/Theme.js.uncompressed.js +120 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js +11 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js.uncompressed.js +36 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js +77 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js.uncompressed.js +144 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js +58 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js.uncompressed.js +123 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js +54 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js.uncompressed.js +124 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js +28 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js.uncompressed.js +74 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js +116 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js.uncompressed.js +178 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js.uncompressed.js +83 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js +557 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js.uncompressed.js +980 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js +65 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js.uncompressed.js +224 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js +91 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js.uncompressed.js +164 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js +168 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js.uncompressed.js +311 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js +61 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js.uncompressed.js +161 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js +141 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js.uncompressed.js +242 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js +126 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js.uncompressed.js +243 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js +108 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js.uncompressed.js +290 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js +153 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js.uncompressed.js +249 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js +253 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js.uncompressed.js +472 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js +182 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js.uncompressed.js +356 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js.uncompressed.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js +110 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js.uncompressed.js +208 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js +303 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js.uncompressed.js +547 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js +134 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js.uncompressed.js +207 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js +299 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js.uncompressed.js +537 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js.uncompressed.js +44 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js +22 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js.uncompressed.js +33 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js +20 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js.uncompressed.js +31 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js +68 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js.uncompressed.js +120 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js +209 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js.uncompressed.js +214 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js +76 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js +59 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js.uncompressed.js +70 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js +220 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js.uncompressed.js +262 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js +23 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js.uncompressed.js +36 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js +39 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js.uncompressed.js +106 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js +5 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/common.js +4 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/common.js.uncompressed.js +3 -0
- package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js +102 -0
- package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js.uncompressed.js +165 -0
- package/vendor/dojo-1.10.10/dojox/color/Palette.js +163 -0
- package/vendor/dojo-1.10.10/dojox/color/Palette.js.uncompressed.js +460 -0
- package/vendor/dojo-1.10.10/dojox/color/_base.js +174 -0
- package/vendor/dojo-1.10.10/dojox/color/_base.js.uncompressed.js +196 -0
- package/vendor/dojo-1.10.10/dojox/gfx/fx.js +297 -0
- package/vendor/dojo-1.10.10/dojox/gfx/fx.js.uncompressed.js +350 -0
- package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js +63 -0
- package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js.uncompressed.js +91 -0
- package/vendor/dojo-1.10.10/dojox/gfx/matrix.js +170 -0
- package/vendor/dojo-1.10.10/dojox/gfx/matrix.js.uncompressed.js +501 -0
- package/vendor/dojo-1.10.10/dojox/gfx/path.js +319 -0
- package/vendor/dojo-1.10.10/dojox/gfx/path.js.uncompressed.js +478 -0
- package/vendor/dojo-1.10.10/dojox/gfx/shape.js +459 -0
- package/vendor/dojo-1.10.10/dojox/gfx/shape.js.uncompressed.js +1091 -0
- package/vendor/dojo-1.10.10/dojox/gfx/svg.js +662 -0
- package/vendor/dojo-1.10.10/dojox/gfx/svg.js.uncompressed.js +1023 -0
- package/vendor/dojo-1.10.10/dojox/gfx/utils.js +199 -0
- package/vendor/dojo-1.10.10/dojox/gfx/utils.js.uncompressed.js +322 -0
- package/vendor/dojo-1.10.10/dojox/gfx.js +2 -0
- package/vendor/dojo-1.10.10/dojox/gfx.js.uncompressed.js +1136 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/array.js +151 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/array.js.uncompressed.js +169 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js +93 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js.uncompressed.js +125 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js +81 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js.uncompressed.js +132 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/object.js +54 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/object.js.uncompressed.js +78 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js +61 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js +87 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js.uncompressed.js +107 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional.js +4 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional.js.uncompressed.js +3 -0
- package/vendor/dojo-1.10.10/dojox/lang/utils.js +86 -0
- package/vendor/dojo-1.10.10/dojox/lang/utils.js.uncompressed.js +121 -0
- package/vendor/dojo-1.10.10/dojox/main.js +4 -0
- package/vendor/dojo-1.10.10/dojox/main.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js +112 -0
- package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js.uncompressed.js +208 -0
- package/vendor/dojo-1.10.10/dojox/storage/Provider.js +62 -0
- package/vendor/dojo-1.10.10/dojox/storage/Provider.js.uncompressed.js +344 -0
- package/vendor/dojo-1.10.10/dojox/storage/manager.js +110 -0
- 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
|
+
});
|
|
Binary file
|
|
@@ -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={"&":"&","<":"<",">":">","\"":""","'":"'","/":"/"};
|
|
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
|
+
'&': '&',
|
|
11
|
+
'<': '<',
|
|
12
|
+
'>': '>',
|
|
13
|
+
'"': '"',
|
|
14
|
+
"'": ''',
|
|
15
|
+
'/': '/'
|
|
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
|
+
});
|