@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.
- package/CHANGELOG.md +20 -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 +211 -69
- package/src/package.ts +10 -71
- package/src/tests/findMonomers-tests.ts +2 -1
- package/src/tests/get-monomer-tests.ts +1 -49
- package/src/tests/helm-input-tests.ts +31 -20
- 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,319 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dojox/gfx/path",["./_base","dojo/_base/lang","dojo/_base/declare","./matrix","./shape"],function(g,_1,_2,_3,_4){
|
|
3
|
+
var _5=_2("dojox.gfx.path.Path",_4.Shape,{constructor:function(_6){
|
|
4
|
+
this.shape=_1.clone(g.defaultPath);
|
|
5
|
+
this.segments=[];
|
|
6
|
+
this.tbbox=null;
|
|
7
|
+
this.absolute=true;
|
|
8
|
+
this.last={};
|
|
9
|
+
this.rawNode=_6;
|
|
10
|
+
this.segmented=false;
|
|
11
|
+
},setAbsoluteMode:function(_7){
|
|
12
|
+
this._confirmSegmented();
|
|
13
|
+
this.absolute=typeof _7=="string"?(_7=="absolute"):_7;
|
|
14
|
+
return this;
|
|
15
|
+
},getAbsoluteMode:function(){
|
|
16
|
+
this._confirmSegmented();
|
|
17
|
+
return this.absolute;
|
|
18
|
+
},getBoundingBox:function(){
|
|
19
|
+
this._confirmSegmented();
|
|
20
|
+
return (this.bbox&&("l" in this.bbox))?{x:this.bbox.l,y:this.bbox.t,width:this.bbox.r-this.bbox.l,height:this.bbox.b-this.bbox.t}:null;
|
|
21
|
+
},_getRealBBox:function(){
|
|
22
|
+
this._confirmSegmented();
|
|
23
|
+
if(this.tbbox){
|
|
24
|
+
return this.tbbox;
|
|
25
|
+
}
|
|
26
|
+
var _8=this.bbox,_3=this._getRealMatrix();
|
|
27
|
+
this.bbox=null;
|
|
28
|
+
for(var i=0,_9=this.segments.length;i<_9;++i){
|
|
29
|
+
this._updateWithSegment(this.segments[i],_3);
|
|
30
|
+
}
|
|
31
|
+
var t=this.bbox;
|
|
32
|
+
this.bbox=_8;
|
|
33
|
+
this.tbbox=t?[{x:t.l,y:t.t},{x:t.r,y:t.t},{x:t.r,y:t.b},{x:t.l,y:t.b}]:null;
|
|
34
|
+
return this.tbbox;
|
|
35
|
+
},getLastPosition:function(){
|
|
36
|
+
this._confirmSegmented();
|
|
37
|
+
return "x" in this.last?this.last:null;
|
|
38
|
+
},_applyTransform:function(){
|
|
39
|
+
this.tbbox=null;
|
|
40
|
+
return this.inherited(arguments);
|
|
41
|
+
},_updateBBox:function(x,y,m){
|
|
42
|
+
if(m){
|
|
43
|
+
var t=_3.multiplyPoint(m,x,y);
|
|
44
|
+
x=t.x;
|
|
45
|
+
y=t.y;
|
|
46
|
+
}
|
|
47
|
+
if(this.bbox&&("l" in this.bbox)){
|
|
48
|
+
if(this.bbox.l>x){
|
|
49
|
+
this.bbox.l=x;
|
|
50
|
+
}
|
|
51
|
+
if(this.bbox.r<x){
|
|
52
|
+
this.bbox.r=x;
|
|
53
|
+
}
|
|
54
|
+
if(this.bbox.t>y){
|
|
55
|
+
this.bbox.t=y;
|
|
56
|
+
}
|
|
57
|
+
if(this.bbox.b<y){
|
|
58
|
+
this.bbox.b=y;
|
|
59
|
+
}
|
|
60
|
+
}else{
|
|
61
|
+
this.bbox={l:x,b:y,r:x,t:y};
|
|
62
|
+
}
|
|
63
|
+
},_updateWithSegment:function(_a,_b){
|
|
64
|
+
var n=_a.args,l=n.length,i;
|
|
65
|
+
switch(_a.action){
|
|
66
|
+
case "M":
|
|
67
|
+
case "L":
|
|
68
|
+
case "C":
|
|
69
|
+
case "S":
|
|
70
|
+
case "Q":
|
|
71
|
+
case "T":
|
|
72
|
+
for(i=0;i<l;i+=2){
|
|
73
|
+
this._updateBBox(n[i],n[i+1],_b);
|
|
74
|
+
}
|
|
75
|
+
this.last.x=n[l-2];
|
|
76
|
+
this.last.y=n[l-1];
|
|
77
|
+
this.absolute=true;
|
|
78
|
+
break;
|
|
79
|
+
case "H":
|
|
80
|
+
for(i=0;i<l;++i){
|
|
81
|
+
this._updateBBox(n[i],this.last.y,_b);
|
|
82
|
+
}
|
|
83
|
+
this.last.x=n[l-1];
|
|
84
|
+
this.absolute=true;
|
|
85
|
+
break;
|
|
86
|
+
case "V":
|
|
87
|
+
for(i=0;i<l;++i){
|
|
88
|
+
this._updateBBox(this.last.x,n[i],_b);
|
|
89
|
+
}
|
|
90
|
+
this.last.y=n[l-1];
|
|
91
|
+
this.absolute=true;
|
|
92
|
+
break;
|
|
93
|
+
case "m":
|
|
94
|
+
var _c=0;
|
|
95
|
+
if(!("x" in this.last)){
|
|
96
|
+
this._updateBBox(this.last.x=n[0],this.last.y=n[1],_b);
|
|
97
|
+
_c=2;
|
|
98
|
+
}
|
|
99
|
+
for(i=_c;i<l;i+=2){
|
|
100
|
+
this._updateBBox(this.last.x+=n[i],this.last.y+=n[i+1],_b);
|
|
101
|
+
}
|
|
102
|
+
this.absolute=false;
|
|
103
|
+
break;
|
|
104
|
+
case "l":
|
|
105
|
+
case "t":
|
|
106
|
+
for(i=0;i<l;i+=2){
|
|
107
|
+
this._updateBBox(this.last.x+=n[i],this.last.y+=n[i+1],_b);
|
|
108
|
+
}
|
|
109
|
+
this.absolute=false;
|
|
110
|
+
break;
|
|
111
|
+
case "h":
|
|
112
|
+
for(i=0;i<l;++i){
|
|
113
|
+
this._updateBBox(this.last.x+=n[i],this.last.y,_b);
|
|
114
|
+
}
|
|
115
|
+
this.absolute=false;
|
|
116
|
+
break;
|
|
117
|
+
case "v":
|
|
118
|
+
for(i=0;i<l;++i){
|
|
119
|
+
this._updateBBox(this.last.x,this.last.y+=n[i],_b);
|
|
120
|
+
}
|
|
121
|
+
this.absolute=false;
|
|
122
|
+
break;
|
|
123
|
+
case "c":
|
|
124
|
+
for(i=0;i<l;i+=6){
|
|
125
|
+
this._updateBBox(this.last.x+n[i],this.last.y+n[i+1],_b);
|
|
126
|
+
this._updateBBox(this.last.x+n[i+2],this.last.y+n[i+3],_b);
|
|
127
|
+
this._updateBBox(this.last.x+=n[i+4],this.last.y+=n[i+5],_b);
|
|
128
|
+
}
|
|
129
|
+
this.absolute=false;
|
|
130
|
+
break;
|
|
131
|
+
case "s":
|
|
132
|
+
case "q":
|
|
133
|
+
for(i=0;i<l;i+=4){
|
|
134
|
+
this._updateBBox(this.last.x+n[i],this.last.y+n[i+1],_b);
|
|
135
|
+
this._updateBBox(this.last.x+=n[i+2],this.last.y+=n[i+3],_b);
|
|
136
|
+
}
|
|
137
|
+
this.absolute=false;
|
|
138
|
+
break;
|
|
139
|
+
case "A":
|
|
140
|
+
for(i=0;i<l;i+=7){
|
|
141
|
+
this._updateBBox(n[i+5],n[i+6],_b);
|
|
142
|
+
}
|
|
143
|
+
this.last.x=n[l-2];
|
|
144
|
+
this.last.y=n[l-1];
|
|
145
|
+
this.absolute=true;
|
|
146
|
+
break;
|
|
147
|
+
case "a":
|
|
148
|
+
for(i=0;i<l;i+=7){
|
|
149
|
+
this._updateBBox(this.last.x+=n[i+5],this.last.y+=n[i+6],_b);
|
|
150
|
+
}
|
|
151
|
+
this.absolute=false;
|
|
152
|
+
break;
|
|
153
|
+
}
|
|
154
|
+
var _d=[_a.action];
|
|
155
|
+
for(i=0;i<l;++i){
|
|
156
|
+
_d.push(g.formatNumber(n[i],true));
|
|
157
|
+
}
|
|
158
|
+
if(typeof this.shape.path=="string"){
|
|
159
|
+
this.shape.path+=_d.join("");
|
|
160
|
+
}else{
|
|
161
|
+
for(i=0,l=_d.length;i<l;++i){
|
|
162
|
+
this.shape.path.push(_d[i]);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
},_validSegments:{m:2,l:2,h:1,v:1,c:6,s:4,q:4,t:2,a:7,z:0},_pushSegment:function(_e,_f){
|
|
166
|
+
this.tbbox=null;
|
|
167
|
+
var _10=this._validSegments[_e.toLowerCase()],_11;
|
|
168
|
+
if(typeof _10=="number"){
|
|
169
|
+
if(_10){
|
|
170
|
+
if(_f.length>=_10){
|
|
171
|
+
_11={action:_e,args:_f.slice(0,_f.length-_f.length%_10)};
|
|
172
|
+
this.segments.push(_11);
|
|
173
|
+
this._updateWithSegment(_11);
|
|
174
|
+
}
|
|
175
|
+
}else{
|
|
176
|
+
_11={action:_e,args:[]};
|
|
177
|
+
this.segments.push(_11);
|
|
178
|
+
this._updateWithSegment(_11);
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
},_collectArgs:function(_12,_13){
|
|
182
|
+
for(var i=0;i<_13.length;++i){
|
|
183
|
+
var t=_13[i];
|
|
184
|
+
if(typeof t=="boolean"){
|
|
185
|
+
_12.push(t?1:0);
|
|
186
|
+
}else{
|
|
187
|
+
if(typeof t=="number"){
|
|
188
|
+
_12.push(t);
|
|
189
|
+
}else{
|
|
190
|
+
if(t instanceof Array){
|
|
191
|
+
this._collectArgs(_12,t);
|
|
192
|
+
}else{
|
|
193
|
+
if("x" in t&&"y" in t){
|
|
194
|
+
_12.push(t.x,t.y);
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
},moveTo:function(){
|
|
201
|
+
this._confirmSegmented();
|
|
202
|
+
var _14=[];
|
|
203
|
+
this._collectArgs(_14,arguments);
|
|
204
|
+
this._pushSegment(this.absolute?"M":"m",_14);
|
|
205
|
+
return this;
|
|
206
|
+
},lineTo:function(){
|
|
207
|
+
this._confirmSegmented();
|
|
208
|
+
var _15=[];
|
|
209
|
+
this._collectArgs(_15,arguments);
|
|
210
|
+
this._pushSegment(this.absolute?"L":"l",_15);
|
|
211
|
+
return this;
|
|
212
|
+
},hLineTo:function(){
|
|
213
|
+
this._confirmSegmented();
|
|
214
|
+
var _16=[];
|
|
215
|
+
this._collectArgs(_16,arguments);
|
|
216
|
+
this._pushSegment(this.absolute?"H":"h",_16);
|
|
217
|
+
return this;
|
|
218
|
+
},vLineTo:function(){
|
|
219
|
+
this._confirmSegmented();
|
|
220
|
+
var _17=[];
|
|
221
|
+
this._collectArgs(_17,arguments);
|
|
222
|
+
this._pushSegment(this.absolute?"V":"v",_17);
|
|
223
|
+
return this;
|
|
224
|
+
},curveTo:function(){
|
|
225
|
+
this._confirmSegmented();
|
|
226
|
+
var _18=[];
|
|
227
|
+
this._collectArgs(_18,arguments);
|
|
228
|
+
this._pushSegment(this.absolute?"C":"c",_18);
|
|
229
|
+
return this;
|
|
230
|
+
},smoothCurveTo:function(){
|
|
231
|
+
this._confirmSegmented();
|
|
232
|
+
var _19=[];
|
|
233
|
+
this._collectArgs(_19,arguments);
|
|
234
|
+
this._pushSegment(this.absolute?"S":"s",_19);
|
|
235
|
+
return this;
|
|
236
|
+
},qCurveTo:function(){
|
|
237
|
+
this._confirmSegmented();
|
|
238
|
+
var _1a=[];
|
|
239
|
+
this._collectArgs(_1a,arguments);
|
|
240
|
+
this._pushSegment(this.absolute?"Q":"q",_1a);
|
|
241
|
+
return this;
|
|
242
|
+
},qSmoothCurveTo:function(){
|
|
243
|
+
this._confirmSegmented();
|
|
244
|
+
var _1b=[];
|
|
245
|
+
this._collectArgs(_1b,arguments);
|
|
246
|
+
this._pushSegment(this.absolute?"T":"t",_1b);
|
|
247
|
+
return this;
|
|
248
|
+
},arcTo:function(){
|
|
249
|
+
this._confirmSegmented();
|
|
250
|
+
var _1c=[];
|
|
251
|
+
this._collectArgs(_1c,arguments);
|
|
252
|
+
this._pushSegment(this.absolute?"A":"a",_1c);
|
|
253
|
+
return this;
|
|
254
|
+
},closePath:function(){
|
|
255
|
+
this._confirmSegmented();
|
|
256
|
+
this._pushSegment("Z",[]);
|
|
257
|
+
return this;
|
|
258
|
+
},_confirmSegmented:function(){
|
|
259
|
+
if(!this.segmented){
|
|
260
|
+
var _1d=this.shape.path;
|
|
261
|
+
this.shape.path=[];
|
|
262
|
+
this._setPath(_1d);
|
|
263
|
+
this.shape.path=this.shape.path.join("");
|
|
264
|
+
this.segmented=true;
|
|
265
|
+
}
|
|
266
|
+
},_setPath:function(_1e){
|
|
267
|
+
var p=_1.isArray(_1e)?_1e:_1e.match(g.pathSvgRegExp);
|
|
268
|
+
this.segments=[];
|
|
269
|
+
this.absolute=true;
|
|
270
|
+
this.bbox={};
|
|
271
|
+
this.last={};
|
|
272
|
+
if(!p){
|
|
273
|
+
return;
|
|
274
|
+
}
|
|
275
|
+
var _1f="",_20=[],l=p.length;
|
|
276
|
+
for(var i=0;i<l;++i){
|
|
277
|
+
var t=p[i],x=parseFloat(t);
|
|
278
|
+
if(isNaN(x)){
|
|
279
|
+
if(_1f){
|
|
280
|
+
this._pushSegment(_1f,_20);
|
|
281
|
+
}
|
|
282
|
+
_20=[];
|
|
283
|
+
_1f=t;
|
|
284
|
+
}else{
|
|
285
|
+
_20.push(x);
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
this._pushSegment(_1f,_20);
|
|
289
|
+
},setShape:function(_21){
|
|
290
|
+
this.inherited(arguments,[typeof _21=="string"?{path:_21}:_21]);
|
|
291
|
+
this.segmented=false;
|
|
292
|
+
this.segments=[];
|
|
293
|
+
if(!g.lazyPathSegmentation){
|
|
294
|
+
this._confirmSegmented();
|
|
295
|
+
}
|
|
296
|
+
return this;
|
|
297
|
+
},_2PI:Math.PI*2});
|
|
298
|
+
var _22=_2("dojox.gfx.path.TextPath",_5,{constructor:function(_23){
|
|
299
|
+
if(!("text" in this)){
|
|
300
|
+
this.text=_1.clone(g.defaultTextPath);
|
|
301
|
+
}
|
|
302
|
+
if(!("fontStyle" in this)){
|
|
303
|
+
this.fontStyle=_1.clone(g.defaultFont);
|
|
304
|
+
}
|
|
305
|
+
},getText:function(){
|
|
306
|
+
return this.text;
|
|
307
|
+
},setText:function(_24){
|
|
308
|
+
this.text=g.makeParameters(this.text,typeof _24=="string"?{text:_24}:_24);
|
|
309
|
+
this._setText();
|
|
310
|
+
return this;
|
|
311
|
+
},getFont:function(){
|
|
312
|
+
return this.fontStyle;
|
|
313
|
+
},setFont:function(_25){
|
|
314
|
+
this.fontStyle=typeof _25=="string"?g.splitFontString(_25):g.makeParameters(g.defaultFont,_25);
|
|
315
|
+
this._setFont();
|
|
316
|
+
return this;
|
|
317
|
+
}});
|
|
318
|
+
return g.path={Path:_5,TextPath:_22};
|
|
319
|
+
});
|