@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,199 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dojox/gfx/utils",["dojo/_base/kernel","dojo/_base/lang","./_base","dojo/_base/html","dojo/_base/array","dojo/_base/window","dojo/_base/json","dojo/_base/Deferred","dojo/_base/sniff","require","dojo/_base/config"],function(_1,_2,g,_3,_4,_5,_6,_7,_8,_9,_a){
|
|
3
|
+
var gu=g.utils={};
|
|
4
|
+
_2.mixin(gu,{forEach:function(_b,f,o){
|
|
5
|
+
o=o||_1.global;
|
|
6
|
+
f.call(o,_b);
|
|
7
|
+
if(_b instanceof g.Surface||_b instanceof g.Group){
|
|
8
|
+
_4.forEach(_b.children,function(_c){
|
|
9
|
+
gu.forEach(_c,f,o);
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
},serialize:function(_d){
|
|
13
|
+
var t={},v,_e=_d instanceof g.Surface;
|
|
14
|
+
if(_e||_d instanceof g.Group){
|
|
15
|
+
t.children=_4.map(_d.children,gu.serialize);
|
|
16
|
+
if(_e){
|
|
17
|
+
return t.children;
|
|
18
|
+
}
|
|
19
|
+
}else{
|
|
20
|
+
t.shape=_d.getShape();
|
|
21
|
+
}
|
|
22
|
+
if(_d.getTransform){
|
|
23
|
+
v=_d.getTransform();
|
|
24
|
+
if(v){
|
|
25
|
+
t.transform=v;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
if(_d.getStroke){
|
|
29
|
+
v=_d.getStroke();
|
|
30
|
+
if(v){
|
|
31
|
+
t.stroke=v;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
if(_d.getFill){
|
|
35
|
+
v=_d.getFill();
|
|
36
|
+
if(v){
|
|
37
|
+
t.fill=v;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
if(_d.getFont){
|
|
41
|
+
v=_d.getFont();
|
|
42
|
+
if(v){
|
|
43
|
+
t.font=v;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
return t;
|
|
47
|
+
},toJson:function(_f,_10){
|
|
48
|
+
return _6.toJson(gu.serialize(_f),_10);
|
|
49
|
+
},deserialize:function(_11,_12){
|
|
50
|
+
if(_12 instanceof Array){
|
|
51
|
+
return _4.map(_12,_2.hitch(null,gu.deserialize,_11));
|
|
52
|
+
}
|
|
53
|
+
var _13=("shape" in _12)?_11.createShape(_12.shape):_11.createGroup();
|
|
54
|
+
if("transform" in _12){
|
|
55
|
+
_13.setTransform(_12.transform);
|
|
56
|
+
}
|
|
57
|
+
if("stroke" in _12){
|
|
58
|
+
_13.setStroke(_12.stroke);
|
|
59
|
+
}
|
|
60
|
+
if("fill" in _12){
|
|
61
|
+
_13.setFill(_12.fill);
|
|
62
|
+
}
|
|
63
|
+
if("font" in _12){
|
|
64
|
+
_13.setFont(_12.font);
|
|
65
|
+
}
|
|
66
|
+
if("children" in _12){
|
|
67
|
+
_4.forEach(_12.children,_2.hitch(null,gu.deserialize,_13));
|
|
68
|
+
}
|
|
69
|
+
return _13;
|
|
70
|
+
},fromJson:function(_14,_15){
|
|
71
|
+
return gu.deserialize(_14,_6.fromJson(_15));
|
|
72
|
+
},toSvg:function(_16){
|
|
73
|
+
var _17=new _7();
|
|
74
|
+
if(g.renderer==="svg"){
|
|
75
|
+
try{
|
|
76
|
+
var svg=gu._cleanSvg(gu._innerXML(_16.rawNode));
|
|
77
|
+
_17.callback(svg);
|
|
78
|
+
}
|
|
79
|
+
catch(e){
|
|
80
|
+
_17.errback(e);
|
|
81
|
+
}
|
|
82
|
+
}else{
|
|
83
|
+
if(!gu._initSvgSerializerDeferred){
|
|
84
|
+
gu._initSvgSerializer();
|
|
85
|
+
}
|
|
86
|
+
var _18=gu.toJson(_16);
|
|
87
|
+
var _19=function(){
|
|
88
|
+
try{
|
|
89
|
+
var _1a=_16.getDimensions();
|
|
90
|
+
var _1b=_1a.width;
|
|
91
|
+
var _1c=_1a.height;
|
|
92
|
+
var _1d=gu._gfxSvgProxy.document.createElement("div");
|
|
93
|
+
gu._gfxSvgProxy.document.body.appendChild(_1d);
|
|
94
|
+
_5.withDoc(gu._gfxSvgProxy.document,function(){
|
|
95
|
+
_3.style(_1d,"width",_1b);
|
|
96
|
+
_3.style(_1d,"height",_1c);
|
|
97
|
+
},this);
|
|
98
|
+
var ts=gu._gfxSvgProxy[dojox._scopeName].gfx.createSurface(_1d,_1b,_1c);
|
|
99
|
+
var _1e=function(_1f){
|
|
100
|
+
try{
|
|
101
|
+
gu._gfxSvgProxy[dojox._scopeName].gfx.utils.fromJson(_1f,_18);
|
|
102
|
+
var svg=gu._cleanSvg(_1d.innerHTML);
|
|
103
|
+
_1f.clear();
|
|
104
|
+
_1f.destroy();
|
|
105
|
+
gu._gfxSvgProxy.document.body.removeChild(_1d);
|
|
106
|
+
_17.callback(svg);
|
|
107
|
+
}
|
|
108
|
+
catch(e){
|
|
109
|
+
_17.errback(e);
|
|
110
|
+
}
|
|
111
|
+
};
|
|
112
|
+
ts.whenLoaded(null,_1e);
|
|
113
|
+
}
|
|
114
|
+
catch(ex){
|
|
115
|
+
_17.errback(ex);
|
|
116
|
+
}
|
|
117
|
+
};
|
|
118
|
+
if(gu._initSvgSerializerDeferred.fired>0){
|
|
119
|
+
_19();
|
|
120
|
+
}else{
|
|
121
|
+
gu._initSvgSerializerDeferred.addCallback(_19);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
return _17;
|
|
125
|
+
},_gfxSvgProxy:null,_initSvgSerializerDeferred:null,_svgSerializerInitialized:function(){
|
|
126
|
+
gu._initSvgSerializerDeferred.callback(true);
|
|
127
|
+
},_initSvgSerializer:function(){
|
|
128
|
+
if(!gu._initSvgSerializerDeferred){
|
|
129
|
+
gu._initSvgSerializerDeferred=new _7();
|
|
130
|
+
var f=_5.doc.createElement("iframe");
|
|
131
|
+
_3.style(f,{display:"none",position:"absolute",width:"1em",height:"1em",top:"-10000px"});
|
|
132
|
+
var _20;
|
|
133
|
+
if(_8("ie")){
|
|
134
|
+
f.onreadystatechange=function(){
|
|
135
|
+
if(f.contentWindow.document.readyState=="complete"){
|
|
136
|
+
f.onreadystatechange=function(){
|
|
137
|
+
};
|
|
138
|
+
_20=setInterval(function(){
|
|
139
|
+
if(f.contentWindow[_1.scopeMap["dojo"][1]._scopeName]&&f.contentWindow[_1.scopeMap["dojox"][1]._scopeName].gfx&&f.contentWindow[_1.scopeMap["dojox"][1]._scopeName].gfx.utils){
|
|
140
|
+
clearInterval(_20);
|
|
141
|
+
f.contentWindow.parent[_1.scopeMap["dojox"][1]._scopeName].gfx.utils._gfxSvgProxy=f.contentWindow;
|
|
142
|
+
f.contentWindow.parent[_1.scopeMap["dojox"][1]._scopeName].gfx.utils._svgSerializerInitialized();
|
|
143
|
+
}
|
|
144
|
+
},50);
|
|
145
|
+
}
|
|
146
|
+
};
|
|
147
|
+
}else{
|
|
148
|
+
f.onload=function(){
|
|
149
|
+
f.onload=function(){
|
|
150
|
+
};
|
|
151
|
+
_20=setInterval(function(){
|
|
152
|
+
if(f.contentWindow[_1.scopeMap["dojo"][1]._scopeName]&&f.contentWindow[_1.scopeMap["dojox"][1]._scopeName].gfx&&f.contentWindow[_1.scopeMap["dojox"][1]._scopeName].gfx.utils){
|
|
153
|
+
clearInterval(_20);
|
|
154
|
+
f.contentWindow.parent[_1.scopeMap["dojox"][1]._scopeName].gfx.utils._gfxSvgProxy=f.contentWindow;
|
|
155
|
+
f.contentWindow.parent[_1.scopeMap["dojox"][1]._scopeName].gfx.utils._svgSerializerInitialized();
|
|
156
|
+
}
|
|
157
|
+
},50);
|
|
158
|
+
};
|
|
159
|
+
}
|
|
160
|
+
var uri=(_a["dojoxGfxSvgProxyFrameUrl"]||_9.toUrl("dojox/gfx/resources/gfxSvgProxyFrame.html"));
|
|
161
|
+
f.setAttribute("src",uri.toString());
|
|
162
|
+
_5.body().appendChild(f);
|
|
163
|
+
}
|
|
164
|
+
},_innerXML:function(_21){
|
|
165
|
+
if(_21.innerXML){
|
|
166
|
+
return _21.innerXML;
|
|
167
|
+
}else{
|
|
168
|
+
if(_21.xml){
|
|
169
|
+
return _21.xml;
|
|
170
|
+
}else{
|
|
171
|
+
if(typeof XMLSerializer!="undefined"){
|
|
172
|
+
return (new XMLSerializer()).serializeToString(_21);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
return null;
|
|
177
|
+
},_cleanSvg:function(svg){
|
|
178
|
+
if(svg){
|
|
179
|
+
if(svg.indexOf("xmlns=\"http://www.w3.org/2000/svg\"")==-1){
|
|
180
|
+
svg=svg.substring(4,svg.length);
|
|
181
|
+
svg="<svg xmlns=\"http://www.w3.org/2000/svg\""+svg;
|
|
182
|
+
}
|
|
183
|
+
if(svg.indexOf("xmlns:xlink=\"http://www.w3.org/1999/xlink\"")==-1){
|
|
184
|
+
svg=svg.substring(4,svg.length);
|
|
185
|
+
svg="<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\""+svg;
|
|
186
|
+
}
|
|
187
|
+
if(svg.indexOf("xlink:href")===-1){
|
|
188
|
+
svg=svg.replace(/href\s*=/g,"xlink:href=");
|
|
189
|
+
}
|
|
190
|
+
svg=svg.replace(/<img\b([^>]*)>/gi,"<image $1 />");
|
|
191
|
+
svg=svg.replace(/\bdojoGfx\w*\s*=\s*(['"])\w*\1/g,"");
|
|
192
|
+
svg=svg.replace(/\b__gfxObject__\s*=\s*(['"])\w*\1/g,"");
|
|
193
|
+
svg=svg.replace(/[=]([^"']+?)(\s|>)/g,"=\"$1\"$2");
|
|
194
|
+
svg=svg.replace(/\bstroke-opacity\w*\s*=\s*(['"])undefined\1/g,"");
|
|
195
|
+
}
|
|
196
|
+
return svg;
|
|
197
|
+
}});
|
|
198
|
+
return gu;
|
|
199
|
+
});
|
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
define("dojox/gfx/utils", ["dojo/_base/kernel","dojo/_base/lang","./_base", "dojo/_base/html","dojo/_base/array", "dojo/_base/window", "dojo/_base/json",
|
|
2
|
+
"dojo/_base/Deferred", "dojo/_base/sniff", "require","dojo/_base/config"],
|
|
3
|
+
function(kernel, lang, g, html, arr, win, jsonLib, Deferred, has, require, config){
|
|
4
|
+
var gu = g.utils = {};
|
|
5
|
+
|
|
6
|
+
lang.mixin(gu, {
|
|
7
|
+
forEach: function(
|
|
8
|
+
/*dojox/gfx/shape.Surface|dojox/gfx/shape.Shape*/ object,
|
|
9
|
+
/*Function|String|Array*/ f, /*Object?*/ o
|
|
10
|
+
){
|
|
11
|
+
// summary:
|
|
12
|
+
// Takes a shape or a surface and applies a function "f" to in the context of "o"
|
|
13
|
+
// (or global, if missing). If "shape" was a surface or a group, it applies the same
|
|
14
|
+
// function to all children recursively effectively visiting all shapes of the underlying scene graph.
|
|
15
|
+
// object:
|
|
16
|
+
// The gfx container to iterate.
|
|
17
|
+
// f:
|
|
18
|
+
// The function to apply.
|
|
19
|
+
// o:
|
|
20
|
+
// The scope.
|
|
21
|
+
o = o || kernel.global;
|
|
22
|
+
f.call(o, object);
|
|
23
|
+
if(object instanceof g.Surface || object instanceof g.Group){
|
|
24
|
+
arr.forEach(object.children, function(shape){
|
|
25
|
+
gu.forEach(shape, f, o);
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
|
|
30
|
+
serialize: function(object){
|
|
31
|
+
// summary:
|
|
32
|
+
// Takes a shape or a surface and returns an object, which describes underlying shapes.
|
|
33
|
+
// object: dojox/gfx/shape.Surface|dojox/gfx/shape.Shape
|
|
34
|
+
// The container to serialize.
|
|
35
|
+
|
|
36
|
+
var t = {}, v, isSurface = object instanceof g.Surface;
|
|
37
|
+
if(isSurface || object instanceof g.Group){
|
|
38
|
+
t.children = arr.map(object.children, gu.serialize);
|
|
39
|
+
if(isSurface){
|
|
40
|
+
return t.children; // Array
|
|
41
|
+
}
|
|
42
|
+
}else{
|
|
43
|
+
t.shape = object.getShape();
|
|
44
|
+
}
|
|
45
|
+
if(object.getTransform){
|
|
46
|
+
v = object.getTransform();
|
|
47
|
+
if(v){ t.transform = v; }
|
|
48
|
+
}
|
|
49
|
+
if(object.getStroke){
|
|
50
|
+
v = object.getStroke();
|
|
51
|
+
if(v){ t.stroke = v; }
|
|
52
|
+
}
|
|
53
|
+
if(object.getFill){
|
|
54
|
+
v = object.getFill();
|
|
55
|
+
if(v){ t.fill = v; }
|
|
56
|
+
}
|
|
57
|
+
if(object.getFont){
|
|
58
|
+
v = object.getFont();
|
|
59
|
+
if(v){ t.font = v; }
|
|
60
|
+
}
|
|
61
|
+
return t; // Object
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
toJson: function(object, prettyPrint){
|
|
65
|
+
// summary:
|
|
66
|
+
// Works just like serialize() but returns a JSON string. If prettyPrint is true, the string is pretty-printed to make it more human-readable.
|
|
67
|
+
// object: dojox/gfx/shape.Surface|dojox/gfx/shape.Shape
|
|
68
|
+
// The container to serialize.
|
|
69
|
+
// prettyPrint: Boolean?
|
|
70
|
+
// Indicates whether the output string should be formatted.
|
|
71
|
+
// returns: String
|
|
72
|
+
|
|
73
|
+
return jsonLib.toJson(gu.serialize(object), prettyPrint); // String
|
|
74
|
+
},
|
|
75
|
+
|
|
76
|
+
deserialize: function(parent, object){
|
|
77
|
+
// summary:
|
|
78
|
+
// Takes a surface or a shape and populates it with an object produced by serialize().
|
|
79
|
+
// parent: dojox/gfx/shape.Surface|dojox/gfx/shape.Shape
|
|
80
|
+
// The destination container for the deserialized shapes.
|
|
81
|
+
// object: dojox/gfx/shape.Shape|Array
|
|
82
|
+
// The shapes to deserialize.
|
|
83
|
+
|
|
84
|
+
if(object instanceof Array){
|
|
85
|
+
return arr.map(object, lang.hitch(null, gu.deserialize, parent)); // Array
|
|
86
|
+
}
|
|
87
|
+
var shape = ("shape" in object) ? parent.createShape(object.shape) : parent.createGroup();
|
|
88
|
+
if("transform" in object){
|
|
89
|
+
shape.setTransform(object.transform);
|
|
90
|
+
}
|
|
91
|
+
if("stroke" in object){
|
|
92
|
+
shape.setStroke(object.stroke);
|
|
93
|
+
}
|
|
94
|
+
if("fill" in object){
|
|
95
|
+
shape.setFill(object.fill);
|
|
96
|
+
}
|
|
97
|
+
if("font" in object){
|
|
98
|
+
shape.setFont(object.font);
|
|
99
|
+
}
|
|
100
|
+
if("children" in object){
|
|
101
|
+
arr.forEach(object.children, lang.hitch(null, gu.deserialize, shape));
|
|
102
|
+
}
|
|
103
|
+
return shape; // dojox/gfx/shape.Shape
|
|
104
|
+
},
|
|
105
|
+
|
|
106
|
+
fromJson: function(parent, json){
|
|
107
|
+
// summary:
|
|
108
|
+
// Works just like deserialize() but takes a JSON representation of the object.
|
|
109
|
+
// parent: dojox/gfx/shape.Surface|dojox/gfx/shape.Shape
|
|
110
|
+
// The destination container for the deserialized shapes.
|
|
111
|
+
// json: String
|
|
112
|
+
// The shapes to deserialize.
|
|
113
|
+
|
|
114
|
+
return gu.deserialize(parent, jsonLib.fromJson(json)); // Array|dojox/gfx/shape.Shape
|
|
115
|
+
},
|
|
116
|
+
|
|
117
|
+
toSvg: function(/*dojox/gfx/shape.Surface*/surface){
|
|
118
|
+
// summary:
|
|
119
|
+
// Function to serialize a GFX surface to SVG text.
|
|
120
|
+
// description:
|
|
121
|
+
// Function to serialize a GFX surface to SVG text. The value of this output
|
|
122
|
+
// is that there are numerous serverside parser libraries that can render
|
|
123
|
+
// SVG into images in various formats. This provides a way that GFX objects
|
|
124
|
+
// can be captured in a known format and sent serverside for serialization
|
|
125
|
+
// into an image.
|
|
126
|
+
// surface:
|
|
127
|
+
// The GFX surface to serialize.
|
|
128
|
+
// returns:
|
|
129
|
+
// Deferred object that will be called when SVG serialization is complete.
|
|
130
|
+
|
|
131
|
+
//Since the init and even surface creation can be async, we need to
|
|
132
|
+
//return a deferred that will be called when content has serialized.
|
|
133
|
+
var deferred = new Deferred();
|
|
134
|
+
|
|
135
|
+
if(g.renderer === "svg"){
|
|
136
|
+
//If we're already in SVG mode, this is easy and quick.
|
|
137
|
+
try{
|
|
138
|
+
var svg = gu._cleanSvg(gu._innerXML(surface.rawNode));
|
|
139
|
+
deferred.callback(svg);
|
|
140
|
+
}catch(e){
|
|
141
|
+
deferred.errback(e);
|
|
142
|
+
}
|
|
143
|
+
}else{
|
|
144
|
+
//Okay, now we have to get creative with hidden iframes and the like to
|
|
145
|
+
//serialize SVG.
|
|
146
|
+
if (!gu._initSvgSerializerDeferred) {
|
|
147
|
+
gu._initSvgSerializer();
|
|
148
|
+
}
|
|
149
|
+
var jsonForm = gu.toJson(surface);
|
|
150
|
+
var serializer = function(){
|
|
151
|
+
try{
|
|
152
|
+
var sDim = surface.getDimensions();
|
|
153
|
+
var width = sDim.width;
|
|
154
|
+
var height = sDim.height;
|
|
155
|
+
|
|
156
|
+
//Create an attach point in the iframe for the contents.
|
|
157
|
+
var node = gu._gfxSvgProxy.document.createElement("div");
|
|
158
|
+
gu._gfxSvgProxy.document.body.appendChild(node);
|
|
159
|
+
//Set the node scaling.
|
|
160
|
+
win.withDoc(gu._gfxSvgProxy.document, function() {
|
|
161
|
+
html.style(node, "width", width);
|
|
162
|
+
html.style(node, "height", height);
|
|
163
|
+
}, this);
|
|
164
|
+
|
|
165
|
+
//Create temp surface to render object to and render.
|
|
166
|
+
var ts = gu._gfxSvgProxy[dojox._scopeName].gfx.createSurface(node, width, height);
|
|
167
|
+
|
|
168
|
+
//It's apparently possible that a suface creation is async, so we need to use
|
|
169
|
+
//the whenLoaded function. Probably not needed for SVG, but making it common
|
|
170
|
+
var draw = function(surface) {
|
|
171
|
+
try{
|
|
172
|
+
gu._gfxSvgProxy[dojox._scopeName].gfx.utils.fromJson(surface, jsonForm);
|
|
173
|
+
|
|
174
|
+
//Get contents and remove temp surface.
|
|
175
|
+
var svg = gu._cleanSvg(node.innerHTML);
|
|
176
|
+
surface.clear();
|
|
177
|
+
surface.destroy();
|
|
178
|
+
gu._gfxSvgProxy.document.body.removeChild(node);
|
|
179
|
+
deferred.callback(svg);
|
|
180
|
+
}catch(e){
|
|
181
|
+
deferred.errback(e);
|
|
182
|
+
}
|
|
183
|
+
};
|
|
184
|
+
ts.whenLoaded(null,draw);
|
|
185
|
+
}catch (ex) {
|
|
186
|
+
deferred.errback(ex);
|
|
187
|
+
}
|
|
188
|
+
};
|
|
189
|
+
//See if we can call it directly or pass it to the deferred to be
|
|
190
|
+
//called on initialization.
|
|
191
|
+
if(gu._initSvgSerializerDeferred.fired > 0){
|
|
192
|
+
serializer();
|
|
193
|
+
}else{
|
|
194
|
+
gu._initSvgSerializerDeferred.addCallback(serializer);
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
return deferred; //dojo.Deferred that will be called when serialization finishes.
|
|
198
|
+
},
|
|
199
|
+
|
|
200
|
+
//iFrame document used for handling SVG serialization.
|
|
201
|
+
_gfxSvgProxy: null,
|
|
202
|
+
|
|
203
|
+
//Serializer loaded.
|
|
204
|
+
_initSvgSerializerDeferred: null,
|
|
205
|
+
|
|
206
|
+
_svgSerializerInitialized: function() {
|
|
207
|
+
// summary:
|
|
208
|
+
// Internal function to call when the serializer init completed.
|
|
209
|
+
// tags:
|
|
210
|
+
// private
|
|
211
|
+
gu._initSvgSerializerDeferred.callback(true);
|
|
212
|
+
},
|
|
213
|
+
|
|
214
|
+
_initSvgSerializer: function(){
|
|
215
|
+
// summary:
|
|
216
|
+
// Internal function to initialize the hidden iframe where SVG rendering
|
|
217
|
+
// will occur.
|
|
218
|
+
// tags:
|
|
219
|
+
// private
|
|
220
|
+
if(!gu._initSvgSerializerDeferred){
|
|
221
|
+
gu._initSvgSerializerDeferred = new Deferred();
|
|
222
|
+
var f = win.doc.createElement("iframe");
|
|
223
|
+
html.style(f, {
|
|
224
|
+
display: "none",
|
|
225
|
+
position: "absolute",
|
|
226
|
+
width: "1em",
|
|
227
|
+
height: "1em",
|
|
228
|
+
top: "-10000px"
|
|
229
|
+
});
|
|
230
|
+
var intv;
|
|
231
|
+
if(has("ie")){
|
|
232
|
+
f.onreadystatechange = function(){
|
|
233
|
+
if(f.contentWindow.document.readyState == "complete"){
|
|
234
|
+
f.onreadystatechange = function() {};
|
|
235
|
+
intv = setInterval(function() {
|
|
236
|
+
if(f.contentWindow[kernel.scopeMap["dojo"][1]._scopeName] &&
|
|
237
|
+
f.contentWindow[kernel.scopeMap["dojox"][1]._scopeName].gfx &&
|
|
238
|
+
f.contentWindow[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils){
|
|
239
|
+
clearInterval(intv);
|
|
240
|
+
f.contentWindow.parent[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils._gfxSvgProxy = f.contentWindow;
|
|
241
|
+
f.contentWindow.parent[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils._svgSerializerInitialized();
|
|
242
|
+
}
|
|
243
|
+
}, 50);
|
|
244
|
+
}
|
|
245
|
+
};
|
|
246
|
+
}else{
|
|
247
|
+
f.onload = function(){
|
|
248
|
+
f.onload = function() {};
|
|
249
|
+
intv = setInterval(function() {
|
|
250
|
+
if(f.contentWindow[kernel.scopeMap["dojo"][1]._scopeName] &&
|
|
251
|
+
f.contentWindow[kernel.scopeMap["dojox"][1]._scopeName].gfx &&
|
|
252
|
+
f.contentWindow[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils){
|
|
253
|
+
clearInterval(intv);
|
|
254
|
+
f.contentWindow.parent[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils._gfxSvgProxy = f.contentWindow;
|
|
255
|
+
f.contentWindow.parent[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils._svgSerializerInitialized();
|
|
256
|
+
}
|
|
257
|
+
}, 50);
|
|
258
|
+
};
|
|
259
|
+
}
|
|
260
|
+
//We have to load the GFX SVG proxy frame. Default is to use the one packaged in dojox.
|
|
261
|
+
var uri = (config["dojoxGfxSvgProxyFrameUrl"]||require.toUrl("dojox/gfx/resources/gfxSvgProxyFrame.html"));
|
|
262
|
+
f.setAttribute("src", uri.toString());
|
|
263
|
+
win.body().appendChild(f);
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
|
|
267
|
+
_innerXML: function(/*Node*/node){
|
|
268
|
+
// summary:
|
|
269
|
+
// Implementation of MS's innerXML function, borrowed from dojox.xml.parser.
|
|
270
|
+
// node:
|
|
271
|
+
// The node from which to generate the XML text representation.
|
|
272
|
+
// tags:
|
|
273
|
+
// private
|
|
274
|
+
if(node.innerXML){
|
|
275
|
+
return node.innerXML; //String
|
|
276
|
+
}else if(node.xml){
|
|
277
|
+
return node.xml; //String
|
|
278
|
+
}else if(typeof XMLSerializer != "undefined"){
|
|
279
|
+
return (new XMLSerializer()).serializeToString(node); //String
|
|
280
|
+
}
|
|
281
|
+
return null;
|
|
282
|
+
},
|
|
283
|
+
|
|
284
|
+
_cleanSvg: function(svg) {
|
|
285
|
+
// summary:
|
|
286
|
+
// Internal function that cleans up artifacts in extracted SVG content.
|
|
287
|
+
// tags:
|
|
288
|
+
// private
|
|
289
|
+
if(svg){
|
|
290
|
+
//Make sure the namespace is set.
|
|
291
|
+
if(svg.indexOf("xmlns=\"http://www.w3.org/2000/svg\"") == -1){
|
|
292
|
+
svg = svg.substring(4, svg.length);
|
|
293
|
+
svg = "<svg xmlns=\"http://www.w3.org/2000/svg\"" + svg;
|
|
294
|
+
}
|
|
295
|
+
//Same for xmlns:xlink (missing in Chrome and Safari)
|
|
296
|
+
if(svg.indexOf("xmlns:xlink=\"http://www.w3.org/1999/xlink\"") == -1){
|
|
297
|
+
svg = svg.substring(4, svg.length);
|
|
298
|
+
svg = "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\"" + svg;
|
|
299
|
+
}
|
|
300
|
+
//and add namespace to href attribute if not done yet
|
|
301
|
+
//(FF 5+ adds xlink:href but not the xmlns def)
|
|
302
|
+
if(svg.indexOf("xlink:href") === -1){
|
|
303
|
+
svg = svg.replace(/href\s*=/g, "xlink:href=");
|
|
304
|
+
}
|
|
305
|
+
// in IE, <image are serialized as <img>
|
|
306
|
+
svg = svg.replace(/<img\b([^>]*)>/gi,"<image $1 />");
|
|
307
|
+
//Do some other cleanup, like stripping out the
|
|
308
|
+
//dojoGfx attributes and quoting ids.
|
|
309
|
+
svg = svg.replace(/\bdojoGfx\w*\s*=\s*(['"])\w*\1/g, "");
|
|
310
|
+
svg = svg.replace(/\b__gfxObject__\s*=\s*(['"])\w*\1/g, "");
|
|
311
|
+
svg = svg.replace(/[=]([^"']+?)(\s|>)/g,'="$1"$2');
|
|
312
|
+
|
|
313
|
+
// Undefined strokes (IE 8 seralization weirdness) should be removed to
|
|
314
|
+
// allow default. 'undefined' is not a valid value.
|
|
315
|
+
svg = svg.replace(/\bstroke-opacity\w*\s*=\s*(['"])undefined\1/g, "");
|
|
316
|
+
}
|
|
317
|
+
return svg; //Cleaned SVG text.
|
|
318
|
+
}
|
|
319
|
+
});
|
|
320
|
+
|
|
321
|
+
return gu;
|
|
322
|
+
});
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
require({cache:{"dojox/gfx/_base":function(){define(["dojo/_base/kernel","dojo/_base/lang","dojo/_base/Color","dojo/_base/sniff","dojo/_base/window","dojo/_base/array","dojo/dom","dojo/dom-construct","dojo/dom-geometry"],function(_1,_2,_3,_4,_5,_6,_7,_8,_9){var g=_2.getObject("dojox.gfx",true),b=g._base={};g._hasClass=function(_a,_b){var _c=_a.getAttribute("className");return _c&&(" "+_c+" ").indexOf(" "+_b+" ")>=0;};g._addClass=function(_d,_e){var _f=_d.getAttribute("className")||"";if(!_f||(" "+_f+" ").indexOf(" "+_e+" ")<0){_d.setAttribute("className",_f+(_f?" ":"")+_e);}};g._removeClass=function(_10,_11){var cls=_10.getAttribute("className");if(cls){_10.setAttribute("className",cls.replace(new RegExp("(^|\\s+)"+_11+"(\\s+|$)"),"$1$2"));}};b._getFontMeasurements=function(){var _12={"1em":0,"1ex":0,"100%":0,"12pt":0,"16px":0,"xx-small":0,"x-small":0,"small":0,"medium":0,"large":0,"x-large":0,"xx-large":0};var p,_13;if(_4("ie")){_13=_5.doc.documentElement.style.fontSize||"";if(!_13){_5.doc.documentElement.style.fontSize="100%";}}var div=_8.create("div",{style:{position:"absolute",left:"0",top:"-100px",width:"30px",height:"1000em",borderWidth:"0",margin:"0",padding:"0",outline:"none",lineHeight:"1",overflow:"hidden"}},_5.body());for(p in _12){div.style.fontSize=p;_12[p]=Math.round(div.offsetHeight*12/16)*16/12/1000;}if(_4("ie")){_5.doc.documentElement.style.fontSize=_13;}_5.body().removeChild(div);return _12;};var _14=null;b._getCachedFontMeasurements=function(_15){if(_15||!_14){_14=b._getFontMeasurements();}return _14;};var _16=null,_17={};b._getTextBox=function(_18,_19,_1a){var m,s,al=arguments.length;var i,box;if(!_16){_16=_8.create("div",{style:{position:"absolute",top:"-10000px",left:"0",visibility:"hidden"}},_5.body());}m=_16;m.className="";s=m.style;s.borderWidth="0";s.margin="0";s.padding="0";s.outline="0";if(al>1&&_19){for(i in _19){if(i in _17){continue;}s[i]=_19[i];}}if(al>2&&_1a){m.className=_1a;}m.innerHTML=_18;if(m.getBoundingClientRect){var bcr=m.getBoundingClientRect();box={l:bcr.left,t:bcr.top,w:bcr.width||(bcr.right-bcr.left),h:bcr.height||(bcr.bottom-bcr.top)};}else{box=_9.getMarginBox(m);}m.innerHTML="";return box;};b._computeTextLocation=function(_1b,_1c,_1d,_1e){var loc={},_1f=_1b.align;switch(_1f){case "end":loc.x=_1b.x-_1c;break;case "middle":loc.x=_1b.x-_1c/2;break;default:loc.x=_1b.x;break;}var c=_1e?0.75:1;loc.y=_1b.y-_1d*c;return loc;};b._computeTextBoundingBox=function(s){if(!g._base._isRendered(s)){return {x:0,y:0,width:0,height:0};}var loc,_20=s.getShape(),_21=s.getFont()||g.defaultFont,w=s.getTextWidth(),h=g.normalizedLength(_21.size);loc=b._computeTextLocation(_20,w,h,true);return {x:loc.x,y:loc.y,width:w,height:h};};b._isRendered=function(s){var p=s.parent;while(p&&p.getParent){p=p.parent;}return p!==null;};var _22=0;b._getUniqueId=function(){var id;do{id=_1._scopeName+"xUnique"+(++_22);}while(_7.byId(id));return id;};var _23=_4("pointer-events")?"touchAction":_4("MSPointer")?"msTouchAction":null;b._fixMsTouchAction=_23?function(_24){_24.rawNode.style[_23]="none";}:function(){};_2.mixin(g,{defaultPath:{type:"path",path:""},defaultPolyline:{type:"polyline",points:[]},defaultRect:{type:"rect",x:0,y:0,width:100,height:100,r:0},defaultEllipse:{type:"ellipse",cx:0,cy:0,rx:200,ry:100},defaultCircle:{type:"circle",cx:0,cy:0,r:100},defaultLine:{type:"line",x1:0,y1:0,x2:100,y2:100},defaultImage:{type:"image",x:0,y:0,width:0,height:0,src:""},defaultText:{type:"text",x:0,y:0,text:"",align:"start",decoration:"none",rotated:false,kerning:true},defaultTextPath:{type:"textpath",text:"",align:"start",decoration:"none",rotated:false,kerning:true},defaultStroke:{type:"stroke",color:"black",style:"solid",width:1,cap:"butt",join:4},defaultLinearGradient:{type:"linear",x1:0,y1:0,x2:100,y2:100,colors:[{offset:0,color:"black"},{offset:1,color:"white"}]},defaultRadialGradient:{type:"radial",cx:0,cy:0,r:100,colors:[{offset:0,color:"black"},{offset:1,color:"white"}]},defaultPattern:{type:"pattern",x:0,y:0,width:0,height:0,src:""},defaultFont:{type:"font",style:"normal",variant:"normal",weight:"normal",size:"10pt",family:"serif"},getDefault:(function(){var _25={};return function(_26){var t=_25[_26];if(t){return new t();}t=_25[_26]=new Function();t.prototype=g["default"+_26];return new t();};})(),normalizeColor:function(_27){return (_27 instanceof _3)?_27:new _3(_27);},normalizeParameters:function(_28,_29){var x;if(_29){var _2a={};for(x in _28){if(x in _29&&!(x in _2a)){_28[x]=_29[x];}}}return _28;},makeParameters:function(_2b,_2c){var i=null;if(!_2c){return _2.delegate(_2b);}var _2d={};for(i in _2b){if(!(i in _2d)){_2d[i]=_2.clone((i in _2c)?_2c[i]:_2b[i]);}}return _2d;},formatNumber:function(x,_2e){var val=x.toString();if(val.indexOf("e")>=0){val=x.toFixed(4);}else{var _2f=val.indexOf(".");if(_2f>=0&&val.length-_2f>5){val=x.toFixed(4);}}if(x<0){return val;}return _2e?" "+val:val;},makeFontString:function(_30){return _30.style+" "+_30.variant+" "+_30.weight+" "+_30.size+" "+_30.family;},splitFontString:function(str){var _31=g.getDefault("Font");var t=str.split(/\s+/);do{if(t.length<5){break;}_31.style=t[0];_31.variant=t[1];_31.weight=t[2];var i=t[3].indexOf("/");_31.size=i<0?t[3]:t[3].substring(0,i);var j=4;if(i<0){if(t[4]=="/"){j=6;}else{if(t[4].charAt(0)=="/"){j=5;}}}if(j<t.length){_31.family=t.slice(j).join(" ");}}while(false);return _31;},cm_in_pt:72/2.54,mm_in_pt:7.2/2.54,px_in_pt:function(){return g._base._getCachedFontMeasurements()["12pt"]/12;},pt2px:function(len){return len*g.px_in_pt();},px2pt:function(len){return len/g.px_in_pt();},normalizedLength:function(len){if(len.length===0){return 0;}if(len.length>2){var _32=g.px_in_pt();var val=parseFloat(len);switch(len.slice(-2)){case "px":return val;case "pt":return val*_32;case "in":return val*72*_32;case "pc":return val*12*_32;case "mm":return val*g.mm_in_pt*_32;case "cm":return val*g.cm_in_pt*_32;}}return parseFloat(len);},pathVmlRegExp:/([A-Za-z]+)|(\d+(\.\d+)?)|(\.\d+)|(-\d+(\.\d+)?)|(-\.\d+)/g,pathSvgRegExp:/([A-DF-Za-df-z])|([-+]?\d*[.]?\d+(?:[eE][-+]?\d+)?)/g,equalSources:function(a,b){return a&&b&&a===b;},switchTo:function(_33){var ns=typeof _33=="string"?g[_33]:_33;if(ns){_6.forEach(["Group","Rect","Ellipse","Circle","Line","Polyline","Image","Text","Path","TextPath","Surface","createSurface","fixTarget"],function(_34){g[_34]=ns[_34];});if(typeof _33=="string"){g.renderer=_33;}else{_6.some(["svg","vml","canvas","canvasWithEvents","silverlight"],function(r){return (g.renderer=g[r]&&g[r].Surface===g.Surface?r:null);});}}}});return g;});},"dojox/gfx/renderer":function(){define(["./_base","dojo/_base/lang","dojo/_base/sniff","dojo/_base/window","dojo/_base/config"],function(g,_35,has,win,_36){var _37=null;has.add("vml",function(_38,_39,_3a){_3a.innerHTML="<v:shape adj=\"1\"/>";var _3b=("adj" in _3a.firstChild);_3a.innerHTML="";return _3b;});return {load:function(id,_3c,_3d){if(_37&&id!="force"){_3d(_37);return;}var _3e=_36.forceGfxRenderer,_3f=!_3e&&(_35.isString(_36.gfxRenderer)?_36.gfxRenderer:"svg,vml,canvas,silverlight").split(","),_40,_41;while(!_3e&&_3f.length){switch(_3f.shift()){case "svg":if("SVGAngle" in win.global){_3e="svg";}break;case "vml":if(has("vml")){_3e="vml";}break;case "silverlight":try{if(has("ie")){_40=new ActiveXObject("AgControl.AgControl");if(_40&&_40.IsVersionSupported("1.0")){_41=true;}}else{if(navigator.plugins["Silverlight Plug-In"]){_41=true;}}}catch(e){_41=false;}finally{_40=null;}if(_41){_3e="silverlight";}break;case "canvas":if(win.global.CanvasRenderingContext2D){_3e="canvas";}break;}}if(_3e==="canvas"&&_36.canvasEvents!==false){_3e="canvasWithEvents";}if(_36.isDebug){}function _42(){_3c(["dojox/gfx/"+_3e],function(_43){g.renderer=_3e;_37=_43;_3d(_43);});};if(_3e=="svg"&&typeof window.svgweb!="undefined"){window.svgweb.addOnLoad(_42);}else{_42();}}};});}}});define("dojox/gfx",["dojo/_base/lang","./gfx/_base","./gfx/renderer!"],function(_44,_45,_46){_45.switchTo(_46);return _45;});
|