@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
|
@@ -19,12 +19,8 @@ import {
|
|
|
19
19
|
} from '@datagrok-libraries/bio/src/monomer-works/lib-settings';
|
|
20
20
|
import {defaultMonomerLibSummary, expectMonomerLib} from '@datagrok-libraries/bio/src/tests/monomer-lib-tests';
|
|
21
21
|
|
|
22
|
-
import {getMonomerHandleArgs} from '../utils/get-monomer';
|
|
22
|
+
import {getMonomerHandleArgs, rewriteLibraries} from '../utils/get-monomer';
|
|
23
23
|
import {JSDraw2HelmModule, OrgHelmModule} from '../types';
|
|
24
|
-
|
|
25
|
-
import {HelmHelper} from '../helm-helper';
|
|
26
|
-
import {RGROUP_CAP_GROUP_NAME, RGROUP_LABEL, SMILES} from '../constants';
|
|
27
|
-
import {getRS} from '../utils/get-monomer-dummy';
|
|
28
24
|
import {initHelmMainPackage} from './utils';
|
|
29
25
|
|
|
30
26
|
import {_package} from '../package-test';
|
|
@@ -233,47 +229,3 @@ export function expectObjectWithNull(actual: { [key: string]: any }, expected: {
|
|
|
233
229
|
}
|
|
234
230
|
}
|
|
235
231
|
}
|
|
236
|
-
|
|
237
|
-
/** Fills org.helm.webeditor.Monomers dictionary for WebEditor */
|
|
238
|
-
function rewriteLibraries(monomerLib: IMonomerLib): void {
|
|
239
|
-
org.helm.webeditor.Monomers.clear();
|
|
240
|
-
monomerLib!.getPolymerTypes().forEach((polymerType) => {
|
|
241
|
-
const monomerSymbols = monomerLib!.getMonomerSymbolsByType(polymerType);
|
|
242
|
-
monomerSymbols.forEach((monomerSymbol) => {
|
|
243
|
-
let isBroken = false;
|
|
244
|
-
const monomer: Monomer = monomerLib!.getMonomer(polymerType, monomerSymbol)!;
|
|
245
|
-
const webEditorMonomer: IWebEditorMonomer = {
|
|
246
|
-
id: monomerSymbol,
|
|
247
|
-
m: monomer.molfile,
|
|
248
|
-
n: monomer.name,
|
|
249
|
-
na: monomer.naturalAnalog,
|
|
250
|
-
rs: monomer.rgroups.length,
|
|
251
|
-
type: monomer.polymerType,
|
|
252
|
-
mt: monomer.monomerType,
|
|
253
|
-
at: {},
|
|
254
|
-
};
|
|
255
|
-
|
|
256
|
-
if (monomer.rgroups.length > 0) {
|
|
257
|
-
// @ts-ignore
|
|
258
|
-
webEditorMonomer.rs = monomer.rgroups.length;
|
|
259
|
-
const at: { [prop: string]: any } = {};
|
|
260
|
-
monomer.rgroups.forEach((it) => {
|
|
261
|
-
at[it[RGROUP_LABEL]] = it[RGROUP_CAP_GROUP_NAME];
|
|
262
|
-
});
|
|
263
|
-
webEditorMonomer.at = at;
|
|
264
|
-
} else if (monomer[SMILES] != null) {
|
|
265
|
-
// @ts-ignore
|
|
266
|
-
webEditorMonomer.rs = Object.keys(getRS(monomer[SMILES].toString())).length;
|
|
267
|
-
webEditorMonomer.at = getRS(monomer[SMILES].toString());
|
|
268
|
-
} else
|
|
269
|
-
isBroken = true;
|
|
270
|
-
|
|
271
|
-
if (!isBroken)
|
|
272
|
-
org.helm.webeditor.Monomers.addOneMonomer(webEditorMonomer);
|
|
273
|
-
});
|
|
274
|
-
});
|
|
275
|
-
|
|
276
|
-
// Obsolete
|
|
277
|
-
const grid: DG.Grid = grok.shell.tv?.grid;
|
|
278
|
-
if (grid) grid.invalidate();
|
|
279
|
-
}
|
package/src/utils/get-monomer.ts
CHANGED
|
@@ -11,9 +11,13 @@ import {
|
|
|
11
11
|
} from '@datagrok-libraries/bio/src/utils/const';
|
|
12
12
|
import {HelmTypes} from '@datagrok-libraries/bio/src/helm/consts';
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
|
|
15
|
+
import {
|
|
16
|
+
AmbiguousWebEditorMonomer, GapWebEditorMonomer, getRS, MissingWebEditorMonomer
|
|
17
|
+
} from './get-monomer-dummy';
|
|
15
18
|
import {LibraryWebEditorMonomer} from './get-monomer-of-library';
|
|
16
19
|
import {OrgHelmModule, ScilModule} from '../types';
|
|
20
|
+
import {RGROUP_CAP_GROUP_NAME, RGROUP_LABEL, SMILES} from '../constants';
|
|
17
21
|
|
|
18
22
|
import {_package} from '../package';
|
|
19
23
|
|
|
@@ -111,3 +115,47 @@ export function getWebEditorMonomer(
|
|
|
111
115
|
|
|
112
116
|
return resWem;
|
|
113
117
|
}
|
|
118
|
+
|
|
119
|
+
/** Fills org.helm.webeditor.Monomers dictionary for WebEditor */
|
|
120
|
+
export function rewriteLibraries(monomerLib: IMonomerLib): void {
|
|
121
|
+
org.helm.webeditor.Monomers.clear();
|
|
122
|
+
monomerLib!.getPolymerTypes().forEach((polymerType) => {
|
|
123
|
+
const monomerSymbols = monomerLib!.getMonomerSymbolsByType(polymerType);
|
|
124
|
+
monomerSymbols.forEach((monomerSymbol) => {
|
|
125
|
+
let isBroken = false;
|
|
126
|
+
const monomer: Monomer = monomerLib!.getMonomer(polymerType, monomerSymbol)!;
|
|
127
|
+
const webEditorMonomer: IWebEditorMonomer = {
|
|
128
|
+
id: monomerSymbol,
|
|
129
|
+
m: monomer.molfile,
|
|
130
|
+
n: monomer.name,
|
|
131
|
+
na: monomer.naturalAnalog,
|
|
132
|
+
rs: monomer.rgroups.length,
|
|
133
|
+
type: monomer.polymerType,
|
|
134
|
+
mt: monomer.monomerType,
|
|
135
|
+
at: {},
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
if (monomer.rgroups.length > 0) {
|
|
139
|
+
// @ts-ignore
|
|
140
|
+
webEditorMonomer.rs = monomer.rgroups.length;
|
|
141
|
+
const at: { [prop: string]: any } = {};
|
|
142
|
+
monomer.rgroups.forEach((it) => {
|
|
143
|
+
at[it[RGROUP_LABEL]] = it[RGROUP_CAP_GROUP_NAME];
|
|
144
|
+
});
|
|
145
|
+
webEditorMonomer.at = at;
|
|
146
|
+
} else if (monomer[SMILES] != null) {
|
|
147
|
+
// @ts-ignore
|
|
148
|
+
webEditorMonomer.rs = Object.keys(getRS(monomer[SMILES].toString())).length;
|
|
149
|
+
webEditorMonomer.at = getRS(monomer[SMILES].toString());
|
|
150
|
+
} else
|
|
151
|
+
isBroken = true;
|
|
152
|
+
|
|
153
|
+
if (!isBroken)
|
|
154
|
+
org.helm.webeditor.Monomers.addOneMonomer(webEditorMonomer);
|
|
155
|
+
});
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
// Obsolete
|
|
159
|
+
const grid: DG.Grid = grok.shell.tv?.grid;
|
|
160
|
+
if (grid) grid.invalidate();
|
|
161
|
+
}
|
|
@@ -9,16 +9,15 @@ import {
|
|
|
9
9
|
CellRendererBackAsyncBase, RenderServiceBase
|
|
10
10
|
} from '@datagrok-libraries/bio/src/utils/cell-renderer-async-base';
|
|
11
11
|
import {HelmAux, HelmProps} from '@datagrok-libraries/bio/src/viewers/helm-service';
|
|
12
|
-
|
|
13
|
-
import {getHoveredMonomerFromEditorMol} from './get-hovered';
|
|
14
|
-
import {_getHelmService} from '../package-utils';
|
|
15
12
|
import {errInfo} from '@datagrok-libraries/bio/src/utils/err-info';
|
|
16
13
|
import {ILogger} from '@datagrok-libraries/bio/src/utils/logger';
|
|
17
14
|
import {getGridCellRendererBack} from '@datagrok-libraries/bio/src/utils/cell-renderer-back-base';
|
|
18
|
-
|
|
19
|
-
import {_package, getMonomerLib} from '../package';
|
|
20
15
|
import {IMonomerLib} from '@datagrok-libraries/bio/src/types/index';
|
|
21
|
-
|
|
16
|
+
|
|
17
|
+
import {getHoveredMonomerFromEditorMol} from './get-hovered';
|
|
18
|
+
import {_getHelmService} from '../package-utils';
|
|
19
|
+
|
|
20
|
+
import {_package} from '../package';
|
|
22
21
|
|
|
23
22
|
class WrapLogger implements ILogger {
|
|
24
23
|
constructor(
|
|
@@ -146,7 +145,7 @@ export class HelmGridCellRendererBack extends CellRendererBackAsyncBase<HelmProp
|
|
|
146
145
|
getHoveredMonomerFromEditorMol(argsX, argsY, editorMol, gridCell.bounds.height);
|
|
147
146
|
|
|
148
147
|
if (seqMonomer) {
|
|
149
|
-
const monomerLib =
|
|
148
|
+
const monomerLib = _package.monomerLib;
|
|
150
149
|
const tooltipEl = monomerLib ? monomerLib.getTooltip(seqMonomer.polymerType, seqMonomer.symbol) :
|
|
151
150
|
ui.divText('Monomer library is not available');
|
|
152
151
|
ui.tooltip.show(tooltipEl, e.x + 16, e.y + 16);
|
|
@@ -158,9 +157,9 @@ export class HelmGridCellRendererBack extends CellRendererBackAsyncBase<HelmProp
|
|
|
158
157
|
|
|
159
158
|
public override render(g: CanvasRenderingContext2D,
|
|
160
159
|
x: number, y: number, w: number, h: number,
|
|
161
|
-
gridCell: GridCell, cellStyle: GridCellStyle) {
|
|
160
|
+
gridCell: DG.GridCell, cellStyle: DG.GridCellStyle) {
|
|
162
161
|
if (!this.monomerLib) {
|
|
163
|
-
this.monomerLib =
|
|
162
|
+
this.monomerLib = _package.monomerLib;
|
|
164
163
|
if (this.monomerLib) {
|
|
165
164
|
this.subs.push(this.monomerLib.onChanged.subscribe(this.monomerLibOnChanged.bind(this)));
|
|
166
165
|
}
|
package/src/utils/index.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as grok from 'datagrok-api/grok';
|
|
|
2
2
|
import * as ui from 'datagrok-api/ui';
|
|
3
3
|
import * as DG from 'datagrok-api/dg';
|
|
4
4
|
|
|
5
|
+
import {IMonomerLib} from '@datagrok-libraries/bio/src/types/index';
|
|
5
6
|
import {OrgHelmModule, ScilModule} from '../types';
|
|
6
7
|
|
|
7
8
|
import {
|
|
@@ -15,7 +16,6 @@ import {
|
|
|
15
16
|
SDF_MONOMER_NAME
|
|
16
17
|
} from '../constants';
|
|
17
18
|
|
|
18
|
-
import {getMonomerLib} from '../package';
|
|
19
19
|
|
|
20
20
|
declare const scil: ScilModule;
|
|
21
21
|
declare const org: OrgHelmModule;
|
|
@@ -113,8 +113,7 @@ export function parseHelm(s: string): string[] {
|
|
|
113
113
|
// }
|
|
114
114
|
|
|
115
115
|
/** Searches monomers of helmString for missed. */
|
|
116
|
-
export function findMonomers(seqMonomerSymbolList: string[]): Set<string> {
|
|
117
|
-
const monomerLib = getMonomerLib();
|
|
116
|
+
export function findMonomers(seqMonomerSymbolList: string[], monomerLib: IMonomerLib): Set<string> {
|
|
118
117
|
return new Set(seqMonomerSymbolList.filter((s) => monomerLib?.getMonomer(null, s)));
|
|
119
118
|
}
|
|
120
119
|
|
|
@@ -12,7 +12,7 @@ import {HelmMol, IHelmWebEditor} from '@datagrok-libraries/bio/src/helm/types';
|
|
|
12
12
|
import {defaultErrorHandler} from '../utils/err-info';
|
|
13
13
|
import {getHoveredMonomerFromEditorMol} from '../utils/get-hovered';
|
|
14
14
|
|
|
15
|
-
import {_package
|
|
15
|
+
import {_package} from '../package';
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
export class HelmInput extends DG.JsInputBase<HelmMol> {
|
|
@@ -150,12 +150,12 @@ export class HelmInput extends DG.JsInputBase<HelmMol> {
|
|
|
150
150
|
.add(webEditorHost!)
|
|
151
151
|
.onOK(() => {
|
|
152
152
|
try {
|
|
153
|
-
const webEditorValue = webEditorApp!.
|
|
153
|
+
const webEditorValue = webEditorApp.canvas!.getHelm(true)
|
|
154
154
|
.replace(/<\/span>/g, '').replace(/<span style='background:#bbf;'>/g, '');
|
|
155
155
|
this.viewer.editor.setHelm(webEditorValue);
|
|
156
156
|
this.helmString = webEditorValue;
|
|
157
157
|
|
|
158
|
-
const selection = webEditorApp!.
|
|
158
|
+
const selection = webEditorApp.canvas!.helm!.jsd.m.atoms;
|
|
159
159
|
this.helmSelection = [];
|
|
160
160
|
for (let i = 0; i < selection.length; i++) {
|
|
161
161
|
if (selection[i].selected)
|
|
@@ -185,7 +185,7 @@ export class HelmInput extends DG.JsInputBase<HelmMol> {
|
|
|
185
185
|
const mol = this.viewer.editor.m;
|
|
186
186
|
const seqMonomer = getHoveredMonomerFromEditorMol(argsX, argsY, mol, this.viewer.editor.div.clientHeight);
|
|
187
187
|
if (seqMonomer) {
|
|
188
|
-
const monomerLib =
|
|
188
|
+
const monomerLib = _package.monomerLib;
|
|
189
189
|
const tooltipEl = monomerLib ? monomerLib.getTooltip(seqMonomer.polymerType, seqMonomer.symbol) :
|
|
190
190
|
ui.divText('Monomer library is not available');
|
|
191
191
|
ui.tooltip.show(tooltipEl, event.x + 16, event.y + 16);
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dijit/BackgroundIframe",["require","./main","dojo/_base/config","dojo/dom-construct","dojo/dom-style","dojo/_base/lang","dojo/on","dojo/sniff"],function(_1,_2,_3,_4,_5,_6,on,_7){
|
|
3
|
+
_7.add("config-bgIframe",(_7("ie")||_7("trident"))&&!/IEMobile\/10\.0/.test(navigator.userAgent));
|
|
4
|
+
var _8=new function(){
|
|
5
|
+
var _9=[];
|
|
6
|
+
this.pop=function(){
|
|
7
|
+
var _a;
|
|
8
|
+
if(_9.length){
|
|
9
|
+
_a=_9.pop();
|
|
10
|
+
_a.style.display="";
|
|
11
|
+
}else{
|
|
12
|
+
if(_7("ie")<9){
|
|
13
|
+
var _b=_3["dojoBlankHtmlUrl"]||_1.toUrl("dojo/resources/blank.html")||"javascript:\"\"";
|
|
14
|
+
var _c="<iframe src='"+_b+"' role='presentation'"+" style='position: absolute; left: 0px; top: 0px;"+"z-index: -1; filter:Alpha(Opacity=\"0\");'>";
|
|
15
|
+
_a=document.createElement(_c);
|
|
16
|
+
}else{
|
|
17
|
+
_a=_4.create("iframe");
|
|
18
|
+
_a.src="javascript:\"\"";
|
|
19
|
+
_a.className="dijitBackgroundIframe";
|
|
20
|
+
_a.setAttribute("role","presentation");
|
|
21
|
+
_5.set(_a,"opacity",0.1);
|
|
22
|
+
}
|
|
23
|
+
_a.tabIndex=-1;
|
|
24
|
+
}
|
|
25
|
+
return _a;
|
|
26
|
+
};
|
|
27
|
+
this.push=function(_d){
|
|
28
|
+
_d.style.display="none";
|
|
29
|
+
_9.push(_d);
|
|
30
|
+
};
|
|
31
|
+
}();
|
|
32
|
+
_2.BackgroundIframe=function(_e){
|
|
33
|
+
if(!_e.id){
|
|
34
|
+
throw new Error("no id");
|
|
35
|
+
}
|
|
36
|
+
if(_7("config-bgIframe")){
|
|
37
|
+
var _f=(this.iframe=_8.pop());
|
|
38
|
+
_e.appendChild(_f);
|
|
39
|
+
if(_7("ie")<7||_7("quirks")){
|
|
40
|
+
this.resize(_e);
|
|
41
|
+
this._conn=on(_e,"resize",_6.hitch(this,"resize",_e));
|
|
42
|
+
}else{
|
|
43
|
+
_5.set(_f,{width:"100%",height:"100%"});
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
_6.extend(_2.BackgroundIframe,{resize:function(_10){
|
|
48
|
+
if(this.iframe){
|
|
49
|
+
_5.set(this.iframe,{width:_10.offsetWidth+"px",height:_10.offsetHeight+"px"});
|
|
50
|
+
}
|
|
51
|
+
},destroy:function(){
|
|
52
|
+
if(this._conn){
|
|
53
|
+
this._conn.remove();
|
|
54
|
+
this._conn=null;
|
|
55
|
+
}
|
|
56
|
+
if(this.iframe){
|
|
57
|
+
this.iframe.parentNode.removeChild(this.iframe);
|
|
58
|
+
_8.push(this.iframe);
|
|
59
|
+
delete this.iframe;
|
|
60
|
+
}
|
|
61
|
+
}});
|
|
62
|
+
return _2.BackgroundIframe;
|
|
63
|
+
});
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
define("dijit/BackgroundIframe", [
|
|
2
|
+
"require", // require.toUrl
|
|
3
|
+
"./main", // to export dijit.BackgroundIframe
|
|
4
|
+
"dojo/_base/config",
|
|
5
|
+
"dojo/dom-construct", // domConstruct.create
|
|
6
|
+
"dojo/dom-style", // domStyle.set
|
|
7
|
+
"dojo/_base/lang", // lang.extend lang.hitch
|
|
8
|
+
"dojo/on",
|
|
9
|
+
"dojo/sniff" // has("ie"), has("trident"), has("quirks")
|
|
10
|
+
], function(require, dijit, config, domConstruct, domStyle, lang, on, has){
|
|
11
|
+
|
|
12
|
+
// module:
|
|
13
|
+
// dijit/BackgroundIFrame
|
|
14
|
+
|
|
15
|
+
// Flag for whether to create background iframe behind popups like Menus and Dialog.
|
|
16
|
+
// A background iframe is useful to prevent problems with popups appearing behind applets/pdf files,
|
|
17
|
+
// and is also useful on older versions of IE (IE6 and IE7) to prevent the "bleed through select" problem.
|
|
18
|
+
// By default, it's enabled for IE6-11, excluding Windows Phone 8.
|
|
19
|
+
// TODO: For 2.0, make this false by default. Also, possibly move definition to has.js so that this module can be
|
|
20
|
+
// conditionally required via dojo/has!bgIfame?dijit/BackgroundIframe
|
|
21
|
+
has.add("config-bgIframe",
|
|
22
|
+
(has("ie") || has("trident")) && !/IEMobile\/10\.0/.test(navigator.userAgent)); // No iframe on WP8, to match 1.9 behavior
|
|
23
|
+
|
|
24
|
+
var _frames = new function(){
|
|
25
|
+
// summary:
|
|
26
|
+
// cache of iframes
|
|
27
|
+
|
|
28
|
+
var queue = [];
|
|
29
|
+
|
|
30
|
+
this.pop = function(){
|
|
31
|
+
var iframe;
|
|
32
|
+
if(queue.length){
|
|
33
|
+
iframe = queue.pop();
|
|
34
|
+
iframe.style.display="";
|
|
35
|
+
}else{
|
|
36
|
+
// transparency needed for DialogUnderlay and for tooltips on IE (to see screen near connector)
|
|
37
|
+
if(has("ie") < 9){
|
|
38
|
+
var burl = config["dojoBlankHtmlUrl"] || require.toUrl("dojo/resources/blank.html") || "javascript:\"\"";
|
|
39
|
+
var html="<iframe src='" + burl + "' role='presentation'"
|
|
40
|
+
+ " style='position: absolute; left: 0px; top: 0px;"
|
|
41
|
+
+ "z-index: -1; filter:Alpha(Opacity=\"0\");'>";
|
|
42
|
+
iframe = document.createElement(html);
|
|
43
|
+
}else{
|
|
44
|
+
iframe = domConstruct.create("iframe");
|
|
45
|
+
iframe.src = 'javascript:""';
|
|
46
|
+
iframe.className = "dijitBackgroundIframe";
|
|
47
|
+
iframe.setAttribute("role", "presentation");
|
|
48
|
+
domStyle.set(iframe, "opacity", 0.1);
|
|
49
|
+
}
|
|
50
|
+
iframe.tabIndex = -1; // Magic to prevent iframe from getting focus on tab keypress - as style didn't work.
|
|
51
|
+
}
|
|
52
|
+
return iframe;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
this.push = function(iframe){
|
|
56
|
+
iframe.style.display="none";
|
|
57
|
+
queue.push(iframe);
|
|
58
|
+
}
|
|
59
|
+
}();
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
dijit.BackgroundIframe = function(/*DomNode*/ node){
|
|
63
|
+
// summary:
|
|
64
|
+
// For IE/FF z-index shenanigans. id attribute is required.
|
|
65
|
+
//
|
|
66
|
+
// description:
|
|
67
|
+
// new dijit.BackgroundIframe(node).
|
|
68
|
+
//
|
|
69
|
+
// Makes a background iframe as a child of node, that fills
|
|
70
|
+
// area (and position) of node
|
|
71
|
+
|
|
72
|
+
if(!node.id){ throw new Error("no id"); }
|
|
73
|
+
if(has("config-bgIframe")){
|
|
74
|
+
var iframe = (this.iframe = _frames.pop());
|
|
75
|
+
node.appendChild(iframe);
|
|
76
|
+
if(has("ie")<7 || has("quirks")){
|
|
77
|
+
this.resize(node);
|
|
78
|
+
this._conn = on(node, 'resize', lang.hitch(this, "resize", node));
|
|
79
|
+
}else{
|
|
80
|
+
domStyle.set(iframe, {
|
|
81
|
+
width: '100%',
|
|
82
|
+
height: '100%'
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
lang.extend(dijit.BackgroundIframe, {
|
|
89
|
+
resize: function(node){
|
|
90
|
+
// summary:
|
|
91
|
+
// Resize the iframe so it's the same size as node.
|
|
92
|
+
// Needed on IE6 and IE/quirks because height:100% doesn't work right.
|
|
93
|
+
if(this.iframe){
|
|
94
|
+
domStyle.set(this.iframe, {
|
|
95
|
+
width: node.offsetWidth + 'px',
|
|
96
|
+
height: node.offsetHeight + 'px'
|
|
97
|
+
});
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
destroy: function(){
|
|
101
|
+
// summary:
|
|
102
|
+
// destroy the iframe
|
|
103
|
+
if(this._conn){
|
|
104
|
+
this._conn.remove();
|
|
105
|
+
this._conn = null;
|
|
106
|
+
}
|
|
107
|
+
if(this.iframe){
|
|
108
|
+
this.iframe.parentNode.removeChild(this.iframe);
|
|
109
|
+
_frames.push(this.iframe);
|
|
110
|
+
delete this.iframe;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
});
|
|
114
|
+
|
|
115
|
+
return dijit.BackgroundIframe;
|
|
116
|
+
});
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dijit/Destroyable",["dojo/_base/array","dojo/aspect","dojo/_base/declare"],function(_1,_2,_3){
|
|
3
|
+
return _3("dijit.Destroyable",null,{destroy:function(_4){
|
|
4
|
+
this._destroyed=true;
|
|
5
|
+
},own:function(){
|
|
6
|
+
var _5=["destroyRecursive","destroy","remove"];
|
|
7
|
+
_1.forEach(arguments,function(_6){
|
|
8
|
+
var _7;
|
|
9
|
+
var _8=_2.before(this,"destroy",function(_9){
|
|
10
|
+
_6[_7](_9);
|
|
11
|
+
});
|
|
12
|
+
var _a=[];
|
|
13
|
+
function _b(){
|
|
14
|
+
_8.remove();
|
|
15
|
+
_1.forEach(_a,function(_c){
|
|
16
|
+
_c.remove();
|
|
17
|
+
});
|
|
18
|
+
};
|
|
19
|
+
if(_6.then){
|
|
20
|
+
_7="cancel";
|
|
21
|
+
_6.then(_b,_b);
|
|
22
|
+
}else{
|
|
23
|
+
_1.forEach(_5,function(_d){
|
|
24
|
+
if(typeof _6[_d]==="function"){
|
|
25
|
+
if(!_7){
|
|
26
|
+
_7=_d;
|
|
27
|
+
}
|
|
28
|
+
_a.push(_2.after(_6,_d,_b,true));
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
},this);
|
|
33
|
+
return arguments;
|
|
34
|
+
}});
|
|
35
|
+
});
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
define("dijit/Destroyable", [
|
|
2
|
+
"dojo/_base/array", // array.forEach array.map
|
|
3
|
+
"dojo/aspect",
|
|
4
|
+
"dojo/_base/declare"
|
|
5
|
+
], function(array, aspect, declare){
|
|
6
|
+
|
|
7
|
+
// module:
|
|
8
|
+
// dijit/Destroyable
|
|
9
|
+
|
|
10
|
+
return declare("dijit.Destroyable", null, {
|
|
11
|
+
// summary:
|
|
12
|
+
// Mixin to track handles and release them when instance is destroyed.
|
|
13
|
+
// description:
|
|
14
|
+
// Call this.own(...) on list of handles (returned from dojo/aspect, dojo/on,
|
|
15
|
+
// dojo/Stateful::watch, or any class (including widgets) with a destroyRecursive() or destroy() method.
|
|
16
|
+
// Then call destroy() later to destroy this instance and release the resources.
|
|
17
|
+
|
|
18
|
+
destroy: function(/*Boolean*/ preserveDom){
|
|
19
|
+
// summary:
|
|
20
|
+
// Destroy this class, releasing any resources registered via own().
|
|
21
|
+
this._destroyed = true;
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
own: function(){
|
|
25
|
+
// summary:
|
|
26
|
+
// Track specified handles and remove/destroy them when this instance is destroyed, unless they were
|
|
27
|
+
// already removed/destroyed manually.
|
|
28
|
+
// tags:
|
|
29
|
+
// protected
|
|
30
|
+
// returns:
|
|
31
|
+
// The array of specified handles, so you can do for example:
|
|
32
|
+
// | var handle = this.own(on(...))[0];
|
|
33
|
+
|
|
34
|
+
var cleanupMethods = [
|
|
35
|
+
"destroyRecursive",
|
|
36
|
+
"destroy",
|
|
37
|
+
"remove"
|
|
38
|
+
];
|
|
39
|
+
|
|
40
|
+
array.forEach(arguments, function(handle){
|
|
41
|
+
// When this.destroy() is called, destroy handle. Since I'm using aspect.before(),
|
|
42
|
+
// the handle will be destroyed before a subclass's destroy() method starts running, before it calls
|
|
43
|
+
// this.inherited() or even if it doesn't call this.inherited() at all. If that's an issue, make an
|
|
44
|
+
// onDestroy() method and connect to that instead.
|
|
45
|
+
var destroyMethodName;
|
|
46
|
+
var odh = aspect.before(this, "destroy", function (preserveDom){
|
|
47
|
+
handle[destroyMethodName](preserveDom);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
// Callback for when handle is manually destroyed.
|
|
51
|
+
var hdhs = [];
|
|
52
|
+
function onManualDestroy(){
|
|
53
|
+
odh.remove();
|
|
54
|
+
array.forEach(hdhs, function(hdh){
|
|
55
|
+
hdh.remove();
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// Setup listeners for manual destroy of handle.
|
|
60
|
+
// Also computes destroyMethodName, used in listener above.
|
|
61
|
+
if(handle.then){
|
|
62
|
+
// Special path for Promises. Detect when Promise is resolved, rejected, or
|
|
63
|
+
// canceled (nb: cancelling a Promise causes it to be rejected).
|
|
64
|
+
destroyMethodName = "cancel";
|
|
65
|
+
handle.then(onManualDestroy, onManualDestroy);
|
|
66
|
+
}else{
|
|
67
|
+
// Path for other handles. Just use AOP to detect when handle is manually destroyed.
|
|
68
|
+
array.forEach(cleanupMethods, function(cleanupMethod){
|
|
69
|
+
if(typeof handle[cleanupMethod] === "function"){
|
|
70
|
+
if(!destroyMethodName){
|
|
71
|
+
// Use first matching method name in above listener (prefer destroyRecursive() to destroy())
|
|
72
|
+
destroyMethodName = cleanupMethod;
|
|
73
|
+
}
|
|
74
|
+
hdhs.push(aspect.after(handle, cleanupMethod, onManualDestroy, true));
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
}, this);
|
|
79
|
+
|
|
80
|
+
return arguments; // handle
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
});
|