├── .dockerignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── babel.config.js ├── docker-compose.yml ├── docs ├── api │ ├── model.md │ ├── plotly_chart.md │ ├── range.md │ └── toggle.md ├── introduction.md ├── mo_compilation.md ├── plan.md ├── pvloops │ ├── 10_buttons.md │ ├── 11_finishing_touches.md │ ├── 1_pressure_volume_cardiac_simulator.md │ ├── 2_creating_the_layout.md │ ├── 3_adding_the_heart.md │ ├── 4_heart_beat.md │ ├── 5_controls.md │ ├── 6_phases.md │ ├── 7_pressure_volume_chart.md │ ├── 8_rolling_charts.md │ └── 9_custom_actions.md ├── simple_project │ ├── 1_creating_a_simple_project.md │ ├── 2_adding_the_model.md │ ├── 3_visualisation.md │ ├── 4_controls.md │ └── 5_events_and_actions.md └── technology.md ├── icons ├── button.svg ├── chart.svg ├── css.svg ├── flexblocks-column-container.svg ├── flexblocks-row-container.svg ├── fmi.svg ├── javascript.svg ├── label.svg ├── logo_dark.svg ├── logo_light.svg ├── range.svg └── toggle.svg ├── lib └── createjs-2015.11.26.min.js ├── package.json ├── src ├── actions │ ├── actions.js │ ├── creators │ │ ├── FunctionEditor.js │ │ ├── app.js │ │ ├── config.js │ │ ├── editor.js │ │ ├── sidebar.js │ │ └── widget │ │ │ ├── action.js │ │ │ ├── animate.js │ │ │ ├── button.js │ │ │ ├── chart.js │ │ │ ├── css.js │ │ │ ├── javascript.js │ │ │ ├── label.js │ │ │ ├── model.js │ │ │ ├── range.js │ │ │ └── toggle.js │ ├── package.json │ └── types.js ├── components │ ├── BusySignal.jsx │ ├── ButtonLink.jsx │ ├── Collapsable.jsx │ ├── ColorPicker.jsx │ ├── ComplexAttribute.jsx │ ├── DropZone.jsx │ ├── FunctionEditor │ │ ├── Editor.jsx │ │ ├── EditorMenu.jsx │ │ ├── EditorSettings.jsx │ │ ├── FunctionEditor.jsx │ │ ├── Parser.js │ │ ├── Validator.js │ │ └── package.json │ ├── GridRow.jsx │ ├── InputFloat.jsx │ ├── ModalDropdown.jsx │ ├── ModalIndexPicker.jsx │ ├── ModelTree │ │ ├── ModelTree.jsx │ │ └── package.json │ ├── NegativeOrPositiveButton.jsx │ ├── PendingChangesButton.jsx │ ├── ProviderDropdown.jsx │ ├── SimpleList.jsx │ └── SimpleListSegment.jsx ├── configureStore.js ├── exceptions │ └── AnimateError.js ├── helpers │ ├── AnimateAnimMode.js │ ├── enum │ │ ├── ArgumentType.js │ │ ├── ButtonMode.js │ │ ├── ModelMode.js │ │ ├── ProviderType.js │ │ ├── SidebarType.js │ │ └── WidgetType.js │ ├── generateHash.js │ └── generateID.js ├── index.jsx ├── migrations │ ├── add-migration.sh │ ├── migrations.js │ ├── migrations │ │ ├── 20190805T151302-add-version.js │ │ ├── 20190805T191212-add-vertical-to-range.js │ │ ├── 20190805T225927-add-support-for-multiple-axes.js │ │ ├── 20190810T122103-fix-plotly-offset.js │ │ └── 20190810T192729-add-axes-to-dataset.js │ └── package.json ├── reducers │ ├── app │ │ ├── functionEditorConfig.js │ │ ├── name.js │ │ ├── preview.js │ │ ├── sidebar.js │ │ └── version.js │ ├── application │ │ ├── application.js │ │ └── package.json │ ├── config │ │ ├── commons │ │ │ ├── actions.js │ │ │ └── widget.js │ │ ├── config.js │ │ ├── package.json │ │ └── reducers │ │ │ ├── actions.js │ │ │ ├── animateAnims │ │ │ ├── animateAnims.js │ │ │ ├── config │ │ │ │ └── default.js │ │ │ └── package.json │ │ │ ├── animateTexts.js │ │ │ ├── animates.js │ │ │ ├── buttons.js │ │ │ ├── charts │ │ │ ├── charts.js │ │ │ ├── config │ │ │ │ ├── default.js │ │ │ │ └── plotly │ │ │ │ │ ├── gamblegram │ │ │ │ │ ├── addOption.js │ │ │ │ │ ├── config │ │ │ │ │ │ ├── annotation.js │ │ │ │ │ │ ├── column.js │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ ├── image.js │ │ │ │ │ │ ├── item.js │ │ │ │ │ │ ├── legend.js │ │ │ │ │ │ ├── margin.js │ │ │ │ │ │ ├── shape.js │ │ │ │ │ │ ├── xaxis.js │ │ │ │ │ │ └── yaxis.js │ │ │ │ │ ├── gamblegram.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── removeOption.js │ │ │ │ │ └── line │ │ │ │ │ ├── addOption.js │ │ │ │ │ ├── config │ │ │ │ │ ├── annotation.js │ │ │ │ │ ├── axis.js │ │ │ │ │ ├── dataset.js │ │ │ │ │ ├── default.js │ │ │ │ │ ├── image.js │ │ │ │ │ ├── legend.js │ │ │ │ │ ├── margin.js │ │ │ │ │ └── shape.js │ │ │ │ │ ├── line.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── removeOption.js │ │ │ └── package.json │ │ │ ├── labels.js │ │ │ ├── models.js │ │ │ ├── ranges.js │ │ │ └── toggles.js │ ├── editor │ │ └── editorStorage.js │ ├── package.json │ ├── reducers.js │ └── widgets │ │ ├── commons │ │ ├── config.js │ │ └── widget.js │ │ ├── package.json │ │ ├── reducers │ │ ├── actions.js │ │ ├── animates.js │ │ ├── app.js │ │ ├── buttons.js │ │ ├── charts.js │ │ ├── csss.js │ │ ├── javascripts.js │ │ ├── labels.js │ │ ├── models.js │ │ ├── ranges.js │ │ └── toggles.js │ │ └── widgets.js ├── runtime │ ├── Builder.js │ ├── builders │ │ ├── api │ │ │ └── build.js │ │ ├── application │ │ │ ├── animateFps │ │ │ │ ├── animateFps.js │ │ │ │ └── build.js │ │ │ ├── init │ │ │ │ ├── build.js │ │ │ │ └── init.js │ │ │ ├── initAnimates │ │ │ │ ├── build.js │ │ │ │ └── initAnimates.js │ │ │ ├── initValueProviders │ │ │ │ ├── build.js │ │ │ │ └── initValueProviders.js │ │ │ ├── initWidgets │ │ │ │ ├── build.js │ │ │ │ └── initWidgets.js │ │ │ └── resolveValueProviders │ │ │ │ ├── build.js │ │ │ │ └── resolveValueProviders.js │ │ ├── editor │ │ │ ├── css.js │ │ │ └── html.js │ │ ├── generateTemplate.js │ │ ├── getDefinition.js │ │ └── widgets │ │ │ ├── Action │ │ │ ├── build.js │ │ │ └── configuration.js │ │ │ ├── Animate │ │ │ ├── AnimateRuntime.js │ │ │ ├── build.js │ │ │ ├── configuration.js │ │ │ └── createAnimateRuntime.js │ │ │ ├── AnimateAnim │ │ │ ├── build.js │ │ │ ├── configuration.js │ │ │ └── template │ │ │ │ ├── continuous │ │ │ │ ├── AnimateAnimContinuous.js │ │ │ │ └── init.js │ │ │ │ └── controlled │ │ │ │ ├── AnimateAnimControlled.js │ │ │ │ └── init.js │ │ │ ├── AnimatePlay │ │ │ ├── build.js │ │ │ └── template │ │ │ │ └── init.js │ │ │ ├── AnimateText │ │ │ ├── build.js │ │ │ ├── configuration.js │ │ │ └── template │ │ │ │ ├── AnimateText.js │ │ │ │ └── init.js │ │ │ ├── Button │ │ │ ├── build.js │ │ │ ├── configuration.js │ │ │ └── template │ │ │ │ ├── Button.js │ │ │ │ └── init.js │ │ │ ├── Chart │ │ │ ├── build.js │ │ │ ├── configuration.js │ │ │ └── template │ │ │ │ ├── Chartjs.js │ │ │ │ ├── Gamblegram.js │ │ │ │ ├── PlotlyBase.js │ │ │ │ ├── PlotlyChart.js │ │ │ │ └── init.js │ │ │ ├── Css │ │ │ ├── build.js │ │ │ └── configuration.js │ │ │ ├── Javascript │ │ │ ├── build.js │ │ │ └── configuration.js │ │ │ ├── Label │ │ │ ├── build.js │ │ │ ├── configuration.js │ │ │ └── template │ │ │ │ ├── Label.js │ │ │ │ └── init.js │ │ │ ├── Model │ │ │ ├── build.js │ │ │ ├── configuration.js │ │ │ ├── createModelRuntime.js │ │ │ ├── models.js │ │ │ └── template │ │ │ │ ├── OutputValues.js │ │ │ │ ├── api │ │ │ │ └── setSpeed.js │ │ │ │ ├── consoleLogger.js │ │ │ │ ├── continuous │ │ │ │ ├── modelTick.js │ │ │ │ ├── pause.js │ │ │ │ ├── play.js │ │ │ │ ├── setValue.js │ │ │ │ ├── stageTick.js │ │ │ │ └── updateValueListeners.js │ │ │ │ ├── cwrapFunctions.js │ │ │ │ ├── disableListener.js │ │ │ │ ├── enableListener.js │ │ │ │ ├── getReferenceFromName.js │ │ │ │ ├── getValueByName.js │ │ │ │ ├── gettersAndSetters.js │ │ │ │ ├── init.js │ │ │ │ ├── instantiate.js │ │ │ │ ├── oneshot │ │ │ │ ├── pause.js │ │ │ │ ├── play.js │ │ │ │ ├── setValue.js │ │ │ │ └── updateValueListeners.js │ │ │ │ ├── registerArrayListener.js │ │ │ │ ├── registerInitialValueListener.js │ │ │ │ ├── registerValueListener.js │ │ │ │ ├── registerValueSetter.js │ │ │ │ ├── reset.js │ │ │ │ ├── setInitialValueByName.js │ │ │ │ ├── setInitialValues.js │ │ │ │ ├── setup.js │ │ │ │ ├── updateInitialValueListeners.js │ │ │ │ └── updateValueByName.js │ │ │ ├── Performance │ │ │ ├── build.js │ │ │ └── template │ │ │ │ ├── PerformanceOff.js │ │ │ │ ├── PerformanceOn.js │ │ │ │ ├── PerformanceWindow.js │ │ │ │ ├── css.js │ │ │ │ └── html.js │ │ │ ├── Range │ │ │ ├── build.js │ │ │ ├── configuration.js │ │ │ └── template │ │ │ │ ├── Range.js │ │ │ │ └── init.js │ │ │ ├── Spinner │ │ │ ├── build.js │ │ │ └── template │ │ │ │ ├── Spinner.jsx │ │ │ │ ├── css.js │ │ │ │ └── html.js │ │ │ ├── Toggle │ │ │ ├── build.js │ │ │ ├── configuration.js │ │ │ └── template │ │ │ │ ├── Toggle.js │ │ │ │ └── init.js │ │ │ ├── Widget │ │ │ ├── build.js │ │ │ └── template │ │ │ │ └── Widget.js │ │ │ ├── floatize.js │ │ │ ├── functionalize.js │ │ │ ├── functionalizeTree.js │ │ │ └── processAction.js │ └── package.json ├── scenes │ ├── Connect │ │ ├── Connect.jsx │ │ ├── Export │ │ │ ├── Export.jsx │ │ │ └── package.json │ │ ├── Open │ │ │ ├── Open.jsx │ │ │ └── package.json │ │ ├── Save │ │ │ ├── Save.jsx │ │ │ └── package.json │ │ ├── Widget │ │ │ ├── ConfigAction │ │ │ │ ├── Args.jsx │ │ │ │ ├── ConfigAction.jsx │ │ │ │ └── package.json │ │ │ ├── ConfigAnimate │ │ │ │ ├── ConfigAnimate.jsx │ │ │ │ ├── components │ │ │ │ │ ├── AnimateInfo.jsx │ │ │ │ │ └── Upload │ │ │ │ │ │ ├── Updater.jsx │ │ │ │ │ │ ├── Upload.jsx │ │ │ │ │ │ ├── Uploader.jsx │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── preprocess.js │ │ │ │ └── package.json │ │ │ ├── ConfigAnimateAnim │ │ │ │ ├── ConfigAnimateAnim.jsx │ │ │ │ ├── ContinuousMode.jsx │ │ │ │ ├── ControlledMode.jsx │ │ │ │ ├── ValueProviderDropdown.jsx │ │ │ │ └── package.json │ │ │ ├── ConfigAnimateText │ │ │ │ ├── ConfigAnimateText.jsx │ │ │ │ └── package.json │ │ │ ├── ConfigButton │ │ │ │ ├── ConfigButton.jsx │ │ │ │ └── package.json │ │ │ ├── ConfigChart │ │ │ │ ├── Chartjs │ │ │ │ │ ├── Chartjs.jsx │ │ │ │ │ ├── Datasets │ │ │ │ │ │ ├── Dataset.jsx │ │ │ │ │ │ ├── Datasets.jsx │ │ │ │ │ │ ├── Line.jsx │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── ConfigChart.jsx │ │ │ │ ├── Gamblegram │ │ │ │ │ ├── Columns │ │ │ │ │ │ ├── Column │ │ │ │ │ │ │ ├── Column.jsx │ │ │ │ │ │ │ ├── Items │ │ │ │ │ │ │ │ ├── Item.jsx │ │ │ │ │ │ │ │ ├── Items.jsx │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── Columns.jsx │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── Gamblegram.jsx │ │ │ │ │ └── package.json │ │ │ │ ├── PlotlyChart │ │ │ │ │ ├── Datasets │ │ │ │ │ │ ├── Dataset.jsx │ │ │ │ │ │ ├── Datasets.jsx │ │ │ │ │ │ ├── Line.jsx │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── PlotlyChart.jsx │ │ │ │ │ └── package.json │ │ │ │ ├── components │ │ │ │ │ └── Plotly │ │ │ │ │ │ ├── Annotations │ │ │ │ │ │ ├── Annotation.jsx │ │ │ │ │ │ ├── Annotations.jsx │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── Axes │ │ │ │ │ │ ├── Axes.jsx │ │ │ │ │ │ ├── Axis.jsx │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── Axis │ │ │ │ │ │ ├── Axis.jsx │ │ │ │ │ │ ├── Range.jsx │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── Image.jsx │ │ │ │ │ │ ├── Images.jsx │ │ │ │ │ │ ├── Source.jsx │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── Legend.jsx │ │ │ │ │ │ ├── Margin.jsx │ │ │ │ │ │ └── Shapes │ │ │ │ │ │ ├── Shape.jsx │ │ │ │ │ │ ├── Shapes.jsx │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── ConfigCss │ │ │ │ ├── ConfigCss.jsx │ │ │ │ └── package.json │ │ │ ├── ConfigJavascript │ │ │ │ ├── ConfigJavascript.jsx │ │ │ │ └── package.json │ │ │ ├── ConfigLabel │ │ │ │ ├── ConfigLabel.jsx │ │ │ │ └── package.json │ │ │ ├── ConfigModel │ │ │ │ ├── ConfigModel.jsx │ │ │ │ ├── ModelInfo.jsx │ │ │ │ ├── components │ │ │ │ │ └── Upload │ │ │ │ │ │ ├── Upload.jsx │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── parseModelDescription.js │ │ │ │ │ │ └── unzipAndValidate.js │ │ │ │ └── package.json │ │ │ ├── ConfigRange │ │ │ │ ├── ConfigRange.jsx │ │ │ │ └── package.json │ │ │ ├── ConfigToggle │ │ │ │ ├── ConfigToggle.jsx │ │ │ │ └── package.json │ │ │ └── Events │ │ │ │ ├── EventLine │ │ │ │ ├── Actions.jsx │ │ │ │ ├── Args.jsx │ │ │ │ ├── EventLine.jsx │ │ │ │ ├── Events.jsx │ │ │ │ └── package.json │ │ │ │ ├── Events.jsx │ │ │ │ └── package.json │ │ └── package.json │ ├── Design │ │ ├── Design.jsx │ │ ├── blocks │ │ │ ├── Action │ │ │ │ ├── Components │ │ │ │ │ └── Action.js │ │ │ │ ├── Traits │ │ │ │ │ └── ActionID.js │ │ │ │ ├── action.js │ │ │ │ ├── package.json │ │ │ │ └── types.js │ │ │ ├── Animate │ │ │ │ ├── Components │ │ │ │ │ └── Animate.js │ │ │ │ ├── Traits │ │ │ │ │ └── AnimateID.js │ │ │ │ ├── animate.js │ │ │ │ ├── package.json │ │ │ │ └── types.js │ │ │ ├── Button │ │ │ │ ├── Components │ │ │ │ │ └── Button.js │ │ │ │ ├── Traits │ │ │ │ │ └── ButtonID.js │ │ │ │ ├── button.js │ │ │ │ ├── package.json │ │ │ │ └── types.js │ │ │ ├── Chart │ │ │ │ ├── Components │ │ │ │ │ └── Chart.js │ │ │ │ ├── Traits │ │ │ │ │ └── ChartID.js │ │ │ │ ├── chart.js │ │ │ │ ├── package.json │ │ │ │ └── types.js │ │ │ ├── Css │ │ │ │ ├── Components │ │ │ │ │ └── Css.js │ │ │ │ ├── Traits │ │ │ │ │ └── CssID.js │ │ │ │ ├── css.js │ │ │ │ ├── package.json │ │ │ │ └── types.js │ │ │ ├── Flexblocks │ │ │ │ ├── Components │ │ │ │ │ ├── ColumnContainer.js │ │ │ │ │ ├── Item.js │ │ │ │ │ └── RowContainer.js │ │ │ │ ├── attrsToString.js │ │ │ │ ├── classes.js │ │ │ │ ├── index.js │ │ │ │ ├── resizers.js │ │ │ │ └── styles.js │ │ │ ├── Javascript │ │ │ │ ├── Components │ │ │ │ │ └── Javascript.js │ │ │ │ ├── Traits │ │ │ │ │ └── JavascriptID.js │ │ │ │ ├── javascript.js │ │ │ │ ├── package.json │ │ │ │ └── types.js │ │ │ ├── Label │ │ │ │ ├── Components │ │ │ │ │ └── Label.js │ │ │ │ ├── Traits │ │ │ │ │ └── LabelID.js │ │ │ │ ├── label.js │ │ │ │ ├── package.json │ │ │ │ └── types.js │ │ │ ├── Model │ │ │ │ ├── Components │ │ │ │ │ └── Model.js │ │ │ │ ├── Traits │ │ │ │ │ └── ModelID.js │ │ │ │ ├── model.js │ │ │ │ ├── package.json │ │ │ │ └── types.js │ │ │ ├── Range │ │ │ │ ├── Components │ │ │ │ │ └── Range.js │ │ │ │ ├── Traits │ │ │ │ │ └── RangeID.js │ │ │ │ ├── package.json │ │ │ │ ├── range.js │ │ │ │ └── types.js │ │ │ ├── Toggle │ │ │ │ ├── Components │ │ │ │ │ └── Toggle.js │ │ │ │ ├── Traits │ │ │ │ │ └── ToggleID.js │ │ │ │ ├── package.json │ │ │ │ ├── toggle.js │ │ │ │ └── types.js │ │ │ └── commons │ │ │ │ ├── Components │ │ │ │ ├── component.js │ │ │ │ └── package.json │ │ │ │ └── Traits │ │ │ │ └── id.js │ │ ├── package.json │ │ ├── panels │ │ │ └── connect │ │ │ │ ├── connect.js │ │ │ │ ├── openConnectPanel.jsx │ │ │ │ └── package.json │ │ └── storage │ │ │ └── redux.js │ ├── DisplayContainer │ │ ├── DisplayContainer.jsx │ │ └── package.json │ ├── Menu │ │ ├── Menu.jsx │ │ ├── components │ │ │ ├── MenuHeader.jsx │ │ │ └── ScreenSelector.jsx │ │ └── package.json │ ├── Preview │ │ ├── Preview.jsx │ │ └── package.json │ └── Tree │ │ ├── Tree.jsx │ │ ├── components │ │ ├── Animates.jsx │ │ ├── Items.jsx │ │ ├── Models.jsx │ │ └── TreeNode.jsx │ │ └── package.json ├── template.hbs └── theme │ ├── base.scss │ ├── site │ ├── elements │ │ └── button.variables │ └── globals │ │ └── site.variables │ ├── theme.config │ └── variables.scss ├── webpack.config.js ├── webpack.config.prod.js └── website ├── blog ├── 2016-03-11-blog-post.md ├── 2017-04-10-blog-post-two.md ├── 2017-09-25-testing-rss.md ├── 2017-09-26-adding-rss.md └── 2017-10-24-new-version-1.0.0.md ├── core └── Footer.js ├── i18n └── en.json ├── package.json ├── pages └── en │ ├── help.js │ ├── index.js │ └── users.js ├── sidebars.json ├── siteConfig.js ├── static ├── css │ └── custom.css ├── docs │ ├── examples │ │ ├── introduction │ │ │ ├── Basics.mo │ │ │ ├── Basics.zip │ │ │ ├── introduction_2.bjp │ │ │ └── introduction_2.html │ │ ├── pvloops │ │ │ ├── 1.bjp │ │ │ ├── 10.bjp │ │ │ ├── 2.bjp │ │ │ ├── 3.bjp │ │ │ ├── 4.bjp │ │ │ ├── 5.bjp │ │ │ ├── 6.bjp │ │ │ ├── 7.bjp │ │ │ ├── 8.bjp │ │ │ ├── 9.bjp │ │ │ ├── CardiovascularModelBodylightCardiovascularBodyLight_CardioVascular.zip │ │ │ ├── Heart.js │ │ │ └── heart.html │ │ └── simple_project │ │ │ ├── Lissajous.bjp │ │ │ ├── Lissajous.zip │ │ │ ├── simple_project_1.html │ │ │ ├── simple_project_2.bjp │ │ │ ├── simple_project_2.html │ │ │ ├── simple_project_3.bjp │ │ │ ├── simple_project_3.html │ │ │ ├── simple_project_4.bjp │ │ │ └── simple_project_4.html │ └── img │ │ ├── introduction │ │ ├── composer.png │ │ └── nephron.png │ │ ├── mo_compilation │ │ └── dymola_fmu_settings.png │ │ └── simple_project │ │ ├── actionresetmodel.mp4 │ │ ├── actionresetmodel.webm │ │ ├── addcolumn.mp4 │ │ ├── addcolumn.webm │ │ ├── clearchartaction.mp4 │ │ ├── clearchartaction.webm │ │ ├── columncontainer.mp4 │ │ ├── columncontainer.webm │ │ ├── configureaction.mp4 │ │ ├── configureaction.webm │ │ ├── connectaction.mp4 │ │ ├── connectaction.webm │ │ ├── controls.mp4 │ │ ├── controls.webm │ │ ├── cosinus.mp4 │ │ ├── cosinus.webm │ │ ├── cosinusconfig.mp4 │ │ ├── cosinusconfig.webm │ │ ├── cosinuslimit.mp4 │ │ ├── cosinuslimit.webm │ │ ├── createaction.mp4 │ │ ├── createaction.webm │ │ ├── dndmodel.mp4 │ │ ├── dndmodel.webm │ │ ├── flexbasis.png │ │ ├── label.mp4 │ │ ├── label.webm │ │ ├── maximumsamples.mp4 │ │ ├── maximumsamples.webm │ │ ├── modelparameters.png │ │ ├── previewreset.mp4 │ │ ├── previewreset.webm │ │ ├── range.mp4 │ │ ├── range.webm │ │ ├── resetadd.mp4 │ │ ├── resetadd.webm │ │ ├── resizecontainer.mp4 │ │ └── resizecontainer.webm └── img │ ├── ModelicaLogo.svg │ ├── bodylight_logo.svg │ ├── bodylight_logo_text.svg │ ├── composer.png │ ├── easeljs-logo-horizontal-gray-darker.svg │ ├── favicon.png │ ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── html_code.html │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest │ ├── logo_dark.svg │ ├── logo_light.svg │ ├── nephron.png │ └── web-assembly-logo.svg └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | */node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/babel.config.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/api/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/api/model.md -------------------------------------------------------------------------------- /docs/api/plotly_chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/api/plotly_chart.md -------------------------------------------------------------------------------- /docs/api/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/api/range.md -------------------------------------------------------------------------------- /docs/api/toggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/api/toggle.md -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/mo_compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/mo_compilation.md -------------------------------------------------------------------------------- /docs/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/plan.md -------------------------------------------------------------------------------- /docs/pvloops/10_buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/pvloops/10_buttons.md -------------------------------------------------------------------------------- /docs/pvloops/11_finishing_touches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/pvloops/11_finishing_touches.md -------------------------------------------------------------------------------- /docs/pvloops/1_pressure_volume_cardiac_simulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/pvloops/1_pressure_volume_cardiac_simulator.md -------------------------------------------------------------------------------- /docs/pvloops/2_creating_the_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/pvloops/2_creating_the_layout.md -------------------------------------------------------------------------------- /docs/pvloops/3_adding_the_heart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/pvloops/3_adding_the_heart.md -------------------------------------------------------------------------------- /docs/pvloops/4_heart_beat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/pvloops/4_heart_beat.md -------------------------------------------------------------------------------- /docs/pvloops/5_controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/pvloops/5_controls.md -------------------------------------------------------------------------------- /docs/pvloops/6_phases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/pvloops/6_phases.md -------------------------------------------------------------------------------- /docs/pvloops/7_pressure_volume_chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/pvloops/7_pressure_volume_chart.md -------------------------------------------------------------------------------- /docs/pvloops/8_rolling_charts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/pvloops/8_rolling_charts.md -------------------------------------------------------------------------------- /docs/pvloops/9_custom_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/pvloops/9_custom_actions.md -------------------------------------------------------------------------------- /docs/simple_project/1_creating_a_simple_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/simple_project/1_creating_a_simple_project.md -------------------------------------------------------------------------------- /docs/simple_project/2_adding_the_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/simple_project/2_adding_the_model.md -------------------------------------------------------------------------------- /docs/simple_project/3_visualisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/simple_project/3_visualisation.md -------------------------------------------------------------------------------- /docs/simple_project/4_controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/simple_project/4_controls.md -------------------------------------------------------------------------------- /docs/simple_project/5_events_and_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/simple_project/5_events_and_actions.md -------------------------------------------------------------------------------- /docs/technology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/docs/technology.md -------------------------------------------------------------------------------- /icons/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/button.svg -------------------------------------------------------------------------------- /icons/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/chart.svg -------------------------------------------------------------------------------- /icons/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/css.svg -------------------------------------------------------------------------------- /icons/flexblocks-column-container.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/flexblocks-column-container.svg -------------------------------------------------------------------------------- /icons/flexblocks-row-container.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/flexblocks-row-container.svg -------------------------------------------------------------------------------- /icons/fmi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/fmi.svg -------------------------------------------------------------------------------- /icons/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/javascript.svg -------------------------------------------------------------------------------- /icons/label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/label.svg -------------------------------------------------------------------------------- /icons/logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/logo_dark.svg -------------------------------------------------------------------------------- /icons/logo_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/logo_light.svg -------------------------------------------------------------------------------- /icons/range.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/range.svg -------------------------------------------------------------------------------- /icons/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/icons/toggle.svg -------------------------------------------------------------------------------- /lib/createjs-2015.11.26.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/lib/createjs-2015.11.26.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/actions.js -------------------------------------------------------------------------------- /src/actions/creators/FunctionEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/FunctionEditor.js -------------------------------------------------------------------------------- /src/actions/creators/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/app.js -------------------------------------------------------------------------------- /src/actions/creators/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/config.js -------------------------------------------------------------------------------- /src/actions/creators/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/editor.js -------------------------------------------------------------------------------- /src/actions/creators/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/sidebar.js -------------------------------------------------------------------------------- /src/actions/creators/widget/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/widget/action.js -------------------------------------------------------------------------------- /src/actions/creators/widget/animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/widget/animate.js -------------------------------------------------------------------------------- /src/actions/creators/widget/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/widget/button.js -------------------------------------------------------------------------------- /src/actions/creators/widget/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/widget/chart.js -------------------------------------------------------------------------------- /src/actions/creators/widget/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/widget/css.js -------------------------------------------------------------------------------- /src/actions/creators/widget/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/widget/javascript.js -------------------------------------------------------------------------------- /src/actions/creators/widget/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/widget/label.js -------------------------------------------------------------------------------- /src/actions/creators/widget/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/widget/model.js -------------------------------------------------------------------------------- /src/actions/creators/widget/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/widget/range.js -------------------------------------------------------------------------------- /src/actions/creators/widget/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/creators/widget/toggle.js -------------------------------------------------------------------------------- /src/actions/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "actions.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/actions/types.js -------------------------------------------------------------------------------- /src/components/BusySignal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/BusySignal.jsx -------------------------------------------------------------------------------- /src/components/ButtonLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/ButtonLink.jsx -------------------------------------------------------------------------------- /src/components/Collapsable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/Collapsable.jsx -------------------------------------------------------------------------------- /src/components/ColorPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/ColorPicker.jsx -------------------------------------------------------------------------------- /src/components/ComplexAttribute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/ComplexAttribute.jsx -------------------------------------------------------------------------------- /src/components/DropZone.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/DropZone.jsx -------------------------------------------------------------------------------- /src/components/FunctionEditor/Editor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/FunctionEditor/Editor.jsx -------------------------------------------------------------------------------- /src/components/FunctionEditor/EditorMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/FunctionEditor/EditorMenu.jsx -------------------------------------------------------------------------------- /src/components/FunctionEditor/EditorSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/FunctionEditor/EditorSettings.jsx -------------------------------------------------------------------------------- /src/components/FunctionEditor/FunctionEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/FunctionEditor/FunctionEditor.jsx -------------------------------------------------------------------------------- /src/components/FunctionEditor/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/FunctionEditor/Parser.js -------------------------------------------------------------------------------- /src/components/FunctionEditor/Validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/FunctionEditor/Validator.js -------------------------------------------------------------------------------- /src/components/FunctionEditor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "FunctionEditor.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/GridRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/GridRow.jsx -------------------------------------------------------------------------------- /src/components/InputFloat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/InputFloat.jsx -------------------------------------------------------------------------------- /src/components/ModalDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/ModalDropdown.jsx -------------------------------------------------------------------------------- /src/components/ModalIndexPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/ModalIndexPicker.jsx -------------------------------------------------------------------------------- /src/components/ModelTree/ModelTree.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/ModelTree/ModelTree.jsx -------------------------------------------------------------------------------- /src/components/ModelTree/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "TreeModel.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/NegativeOrPositiveButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/NegativeOrPositiveButton.jsx -------------------------------------------------------------------------------- /src/components/PendingChangesButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/PendingChangesButton.jsx -------------------------------------------------------------------------------- /src/components/ProviderDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/ProviderDropdown.jsx -------------------------------------------------------------------------------- /src/components/SimpleList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/SimpleList.jsx -------------------------------------------------------------------------------- /src/components/SimpleListSegment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/components/SimpleListSegment.jsx -------------------------------------------------------------------------------- /src/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/configureStore.js -------------------------------------------------------------------------------- /src/exceptions/AnimateError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/exceptions/AnimateError.js -------------------------------------------------------------------------------- /src/helpers/AnimateAnimMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/helpers/AnimateAnimMode.js -------------------------------------------------------------------------------- /src/helpers/enum/ArgumentType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/helpers/enum/ArgumentType.js -------------------------------------------------------------------------------- /src/helpers/enum/ButtonMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/helpers/enum/ButtonMode.js -------------------------------------------------------------------------------- /src/helpers/enum/ModelMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/helpers/enum/ModelMode.js -------------------------------------------------------------------------------- /src/helpers/enum/ProviderType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/helpers/enum/ProviderType.js -------------------------------------------------------------------------------- /src/helpers/enum/SidebarType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/helpers/enum/SidebarType.js -------------------------------------------------------------------------------- /src/helpers/enum/WidgetType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/helpers/enum/WidgetType.js -------------------------------------------------------------------------------- /src/helpers/generateHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/helpers/generateHash.js -------------------------------------------------------------------------------- /src/helpers/generateID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/helpers/generateID.js -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/migrations/add-migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/migrations/add-migration.sh -------------------------------------------------------------------------------- /src/migrations/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/migrations/migrations.js -------------------------------------------------------------------------------- /src/migrations/migrations/20190805T151302-add-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/migrations/migrations/20190805T151302-add-version.js -------------------------------------------------------------------------------- /src/migrations/migrations/20190805T191212-add-vertical-to-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/migrations/migrations/20190805T191212-add-vertical-to-range.js -------------------------------------------------------------------------------- /src/migrations/migrations/20190805T225927-add-support-for-multiple-axes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/migrations/migrations/20190805T225927-add-support-for-multiple-axes.js -------------------------------------------------------------------------------- /src/migrations/migrations/20190810T122103-fix-plotly-offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/migrations/migrations/20190810T122103-fix-plotly-offset.js -------------------------------------------------------------------------------- /src/migrations/migrations/20190810T192729-add-axes-to-dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/migrations/migrations/20190810T192729-add-axes-to-dataset.js -------------------------------------------------------------------------------- /src/migrations/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "migrations.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/reducers/app/functionEditorConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/app/functionEditorConfig.js -------------------------------------------------------------------------------- /src/reducers/app/name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/app/name.js -------------------------------------------------------------------------------- /src/reducers/app/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/app/preview.js -------------------------------------------------------------------------------- /src/reducers/app/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/app/sidebar.js -------------------------------------------------------------------------------- /src/reducers/app/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/app/version.js -------------------------------------------------------------------------------- /src/reducers/application/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/application/application.js -------------------------------------------------------------------------------- /src/reducers/application/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "application.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/reducers/config/commons/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/commons/actions.js -------------------------------------------------------------------------------- /src/reducers/config/commons/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/commons/widget.js -------------------------------------------------------------------------------- /src/reducers/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/config.js -------------------------------------------------------------------------------- /src/reducers/config/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "config.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/reducers/config/reducers/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/actions.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/animateAnims/animateAnims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/animateAnims/animateAnims.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/animateAnims/config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/animateAnims/config/default.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/animateAnims/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "animateAnims.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/reducers/config/reducers/animateTexts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/animateTexts.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/animates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/animates.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/buttons.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/charts.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/default.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/addOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/addOption.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/config/annotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/config/annotation.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/config/column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/config/column.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/config/default.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/config/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/config/image.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/config/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/config/item.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/config/legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/config/legend.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/config/margin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/config/margin.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/config/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/config/shape.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/config/xaxis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/config/xaxis.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/config/yaxis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/config/yaxis.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/gamblegram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/gamblegram.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "gamblegram.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/gamblegram/removeOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/gamblegram/removeOption.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/addOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/line/addOption.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/config/annotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/line/config/annotation.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/config/axis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/line/config/axis.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/config/dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/line/config/dataset.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/line/config/default.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/config/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/line/config/image.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/config/legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/line/config/legend.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/config/margin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/line/config/margin.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/config/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/line/config/shape.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/line/line.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "line.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/config/plotly/line/removeOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/charts/config/plotly/line/removeOption.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/charts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "charts.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/reducers/config/reducers/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/labels.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/models.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/ranges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/ranges.js -------------------------------------------------------------------------------- /src/reducers/config/reducers/toggles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/config/reducers/toggles.js -------------------------------------------------------------------------------- /src/reducers/editor/editorStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/editor/editorStorage.js -------------------------------------------------------------------------------- /src/reducers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "reducers.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/reducers/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/reducers.js -------------------------------------------------------------------------------- /src/reducers/widgets/commons/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/commons/config.js -------------------------------------------------------------------------------- /src/reducers/widgets/commons/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/commons/widget.js -------------------------------------------------------------------------------- /src/reducers/widgets/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "widgets.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/reducers/widgets/reducers/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/reducers/actions.js -------------------------------------------------------------------------------- /src/reducers/widgets/reducers/animates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/reducers/animates.js -------------------------------------------------------------------------------- /src/reducers/widgets/reducers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/reducers/app.js -------------------------------------------------------------------------------- /src/reducers/widgets/reducers/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/reducers/buttons.js -------------------------------------------------------------------------------- /src/reducers/widgets/reducers/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/reducers/charts.js -------------------------------------------------------------------------------- /src/reducers/widgets/reducers/csss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/reducers/csss.js -------------------------------------------------------------------------------- /src/reducers/widgets/reducers/javascripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/reducers/javascripts.js -------------------------------------------------------------------------------- /src/reducers/widgets/reducers/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/reducers/labels.js -------------------------------------------------------------------------------- /src/reducers/widgets/reducers/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/reducers/models.js -------------------------------------------------------------------------------- /src/reducers/widgets/reducers/ranges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/reducers/ranges.js -------------------------------------------------------------------------------- /src/reducers/widgets/reducers/toggles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/reducers/toggles.js -------------------------------------------------------------------------------- /src/reducers/widgets/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/reducers/widgets/widgets.js -------------------------------------------------------------------------------- /src/runtime/Builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/Builder.js -------------------------------------------------------------------------------- /src/runtime/builders/api/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/api/build.js -------------------------------------------------------------------------------- /src/runtime/builders/application/animateFps/animateFps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/animateFps/animateFps.js -------------------------------------------------------------------------------- /src/runtime/builders/application/animateFps/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/animateFps/build.js -------------------------------------------------------------------------------- /src/runtime/builders/application/init/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/init/build.js -------------------------------------------------------------------------------- /src/runtime/builders/application/init/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/init/init.js -------------------------------------------------------------------------------- /src/runtime/builders/application/initAnimates/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/initAnimates/build.js -------------------------------------------------------------------------------- /src/runtime/builders/application/initAnimates/initAnimates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/initAnimates/initAnimates.js -------------------------------------------------------------------------------- /src/runtime/builders/application/initValueProviders/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/initValueProviders/build.js -------------------------------------------------------------------------------- /src/runtime/builders/application/initValueProviders/initValueProviders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/initValueProviders/initValueProviders.js -------------------------------------------------------------------------------- /src/runtime/builders/application/initWidgets/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/initWidgets/build.js -------------------------------------------------------------------------------- /src/runtime/builders/application/initWidgets/initWidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/initWidgets/initWidgets.js -------------------------------------------------------------------------------- /src/runtime/builders/application/resolveValueProviders/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/resolveValueProviders/build.js -------------------------------------------------------------------------------- /src/runtime/builders/application/resolveValueProviders/resolveValueProviders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/application/resolveValueProviders/resolveValueProviders.js -------------------------------------------------------------------------------- /src/runtime/builders/editor/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/editor/css.js -------------------------------------------------------------------------------- /src/runtime/builders/editor/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/editor/html.js -------------------------------------------------------------------------------- /src/runtime/builders/generateTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/generateTemplate.js -------------------------------------------------------------------------------- /src/runtime/builders/getDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/getDefinition.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Action/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Action/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Action/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Action/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Animate/AnimateRuntime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Animate/AnimateRuntime.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Animate/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Animate/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Animate/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Animate/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Animate/createAnimateRuntime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Animate/createAnimateRuntime.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimateAnim/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimateAnim/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimateAnim/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimateAnim/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimateAnim/template/continuous/AnimateAnimContinuous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimateAnim/template/continuous/AnimateAnimContinuous.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimateAnim/template/continuous/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimateAnim/template/continuous/init.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimateAnim/template/controlled/AnimateAnimControlled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimateAnim/template/controlled/AnimateAnimControlled.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimateAnim/template/controlled/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimateAnim/template/controlled/init.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimatePlay/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimatePlay/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimatePlay/template/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimatePlay/template/init.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimateText/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimateText/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimateText/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimateText/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimateText/template/AnimateText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimateText/template/AnimateText.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/AnimateText/template/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/AnimateText/template/init.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Button/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Button/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Button/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Button/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Button/template/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Button/template/Button.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Button/template/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Button/template/init.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Chart/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Chart/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Chart/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Chart/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Chart/template/Chartjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Chart/template/Chartjs.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Chart/template/Gamblegram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Chart/template/Gamblegram.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Chart/template/PlotlyBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Chart/template/PlotlyBase.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Chart/template/PlotlyChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Chart/template/PlotlyChart.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Chart/template/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Chart/template/init.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Css/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Css/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Css/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Css/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Javascript/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Javascript/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Javascript/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Javascript/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Label/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Label/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Label/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Label/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Label/template/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Label/template/Label.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Label/template/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Label/template/init.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/createModelRuntime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/createModelRuntime.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/models.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/OutputValues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/OutputValues.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/api/setSpeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/api/setSpeed.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/consoleLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/consoleLogger.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/continuous/modelTick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/continuous/modelTick.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/continuous/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/continuous/pause.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/continuous/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/continuous/play.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/continuous/setValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/continuous/setValue.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/continuous/stageTick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/continuous/stageTick.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/continuous/updateValueListeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/continuous/updateValueListeners.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/cwrapFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/cwrapFunctions.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/disableListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/disableListener.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/enableListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/enableListener.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/getReferenceFromName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/getReferenceFromName.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/getValueByName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/getValueByName.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/gettersAndSetters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/gettersAndSetters.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/init.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/instantiate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/instantiate.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/oneshot/pause.js: -------------------------------------------------------------------------------- 1 | export default function pause () { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/oneshot/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/oneshot/play.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/oneshot/setValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/oneshot/setValue.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/oneshot/updateValueListeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/oneshot/updateValueListeners.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/registerArrayListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/registerArrayListener.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/registerInitialValueListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/registerInitialValueListener.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/registerValueListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/registerValueListener.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/registerValueSetter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/registerValueSetter.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/reset.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/setInitialValueByName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/setInitialValueByName.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/setInitialValues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/setInitialValues.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/setup.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/updateInitialValueListeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/updateInitialValueListeners.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Model/template/updateValueByName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Model/template/updateValueByName.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Performance/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Performance/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Performance/template/PerformanceOff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Performance/template/PerformanceOff.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Performance/template/PerformanceOn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Performance/template/PerformanceOn.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Performance/template/PerformanceWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Performance/template/PerformanceWindow.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Performance/template/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Performance/template/css.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Performance/template/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Performance/template/html.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Range/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Range/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Range/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Range/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Range/template/Range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Range/template/Range.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Range/template/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Range/template/init.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Spinner/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Spinner/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Spinner/template/Spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Spinner/template/Spinner.jsx -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Spinner/template/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Spinner/template/css.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Spinner/template/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Spinner/template/html.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Toggle/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Toggle/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Toggle/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Toggle/configuration.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Toggle/template/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Toggle/template/Toggle.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Toggle/template/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Toggle/template/init.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Widget/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Widget/build.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/Widget/template/Widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/Widget/template/Widget.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/floatize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/floatize.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/functionalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/functionalize.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/functionalizeTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/functionalizeTree.js -------------------------------------------------------------------------------- /src/runtime/builders/widgets/processAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/runtime/builders/widgets/processAction.js -------------------------------------------------------------------------------- /src/runtime/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Builder.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Connect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Connect.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Export/Export.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Export/Export.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Export/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Export.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Open/Open.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Open/Open.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Open/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Open.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Save/Save.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Save/Save.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Save/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Save.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAction/Args.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAction/Args.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAction/ConfigAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAction/ConfigAction.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAction/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "ConfigAction.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimate/ConfigAnimate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimate/ConfigAnimate.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimate/components/AnimateInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimate/components/AnimateInfo.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimate/components/Upload/Updater.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimate/components/Upload/Updater.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimate/components/Upload/Upload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimate/components/Upload/Upload.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimate/components/Upload/Uploader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimate/components/Upload/Uploader.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimate/components/Upload/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Upload.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimate/components/Upload/preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimate/components/Upload/preprocess.js -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "ConfigAnimate.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimateAnim/ConfigAnimateAnim.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimateAnim/ConfigAnimateAnim.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimateAnim/ContinuousMode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimateAnim/ContinuousMode.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimateAnim/ControlledMode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimateAnim/ControlledMode.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimateAnim/ValueProviderDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimateAnim/ValueProviderDropdown.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimateAnim/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimateAnim/package.json -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimateText/ConfigAnimateText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigAnimateText/ConfigAnimateText.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigAnimateText/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "ConfigAnimateText.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigButton/ConfigButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigButton/ConfigButton.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigButton/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "ConfigButton.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Chartjs/Chartjs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/Chartjs/Chartjs.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Chartjs/Datasets/Dataset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/Chartjs/Datasets/Dataset.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Chartjs/Datasets/Datasets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/Chartjs/Datasets/Datasets.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Chartjs/Datasets/Line.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/Chartjs/Datasets/Line.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Chartjs/Datasets/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Datasets.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Chartjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Chartjs.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/ConfigChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/ConfigChart.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Gamblegram/Columns/Column/Column.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/Gamblegram/Columns/Column/Column.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Gamblegram/Columns/Column/Items/Item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/Gamblegram/Columns/Column/Items/Item.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Gamblegram/Columns/Column/Items/Items.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/Gamblegram/Columns/Column/Items/Items.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Gamblegram/Columns/Column/Items/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Items.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Gamblegram/Columns/Column/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Column.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Gamblegram/Columns/Columns.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/Gamblegram/Columns/Columns.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Gamblegram/Columns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Columns.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Gamblegram/Gamblegram.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/Gamblegram/Gamblegram.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/Gamblegram/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Gamblegram.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/PlotlyChart/Datasets/Dataset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/PlotlyChart/Datasets/Dataset.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/PlotlyChart/Datasets/Datasets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/PlotlyChart/Datasets/Datasets.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/PlotlyChart/Datasets/Line.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/PlotlyChart/Datasets/Line.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/PlotlyChart/Datasets/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Datasets.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/PlotlyChart/PlotlyChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/PlotlyChart/PlotlyChart.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/PlotlyChart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "PlotlyChart.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Annotations/Annotation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Annotations/Annotation.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Annotations/Annotations.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Annotations/Annotations.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Annotations/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Annotations.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Axes/Axes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Axes/Axes.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Axes/Axis.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Axes/Axis.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Axes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Axes.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Axis/Axis.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Axis/Axis.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Axis/Range.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Axis/Range.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Axis/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Axis.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Images/Image.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Images/Image.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Images/Images.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Images/Images.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Images/Source.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Images/Source.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Images/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Images.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Legend.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Legend.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Margin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Margin.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Shapes/Shape.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Shapes/Shape.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Shapes/Shapes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigChart/components/Plotly/Shapes/Shapes.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/components/Plotly/Shapes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Shapes.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigChart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "ConfigChart.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigCss/ConfigCss.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigCss/ConfigCss.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigCss/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "ConfigCss.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigJavascript/ConfigJavascript.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigJavascript/ConfigJavascript.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigJavascript/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "ConfigJavascript.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigLabel/ConfigLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigLabel/ConfigLabel.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigLabel/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "ConfigLabel.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigModel/ConfigModel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigModel/ConfigModel.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigModel/ModelInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigModel/ModelInfo.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigModel/components/Upload/Upload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigModel/components/Upload/Upload.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigModel/components/Upload/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Upload.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigModel/components/Upload/parseModelDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigModel/components/Upload/parseModelDescription.js -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigModel/components/Upload/unzipAndValidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigModel/components/Upload/unzipAndValidate.js -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigModel/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "ConfigModel.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigRange/ConfigRange.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigRange/ConfigRange.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigRange/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "ConfigRange.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigToggle/ConfigToggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/ConfigToggle/ConfigToggle.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/ConfigToggle/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "ConfigToggle.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/Events/EventLine/Actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/Events/EventLine/Actions.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/Events/EventLine/Args.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/Events/EventLine/Args.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/Events/EventLine/EventLine.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/Events/EventLine/EventLine.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/Events/EventLine/Events.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/Events/EventLine/Events.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/Events/EventLine/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "EventLine.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/Events/Events.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Connect/Widget/Events/Events.jsx -------------------------------------------------------------------------------- /src/scenes/Connect/Widget/Events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Events.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Connect/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Connect.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/Design.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/Design.jsx -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Action/Components/Action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Action/Components/Action.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Action/Traits/ActionID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Action/Traits/ActionID.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Action/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Action/action.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Action/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "action.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Action/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Action/types.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Animate/Components/Animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Animate/Components/Animate.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Animate/Traits/AnimateID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Animate/Traits/AnimateID.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Animate/animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Animate/animate.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Animate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "animate.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Animate/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Animate/types.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Button/Components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Button/Components/Button.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Button/Traits/ButtonID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Button/Traits/ButtonID.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Button/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Button/button.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Button/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "button.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Button/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Button/types.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Chart/Components/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Chart/Components/Chart.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Chart/Traits/ChartID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Chart/Traits/ChartID.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Chart/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Chart/chart.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Chart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "chart.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Chart/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Chart/types.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Css/Components/Css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Css/Components/Css.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Css/Traits/CssID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Css/Traits/CssID.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Css/css.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Css/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "css.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Css/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Css/types.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Flexblocks/Components/ColumnContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Flexblocks/Components/ColumnContainer.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Flexblocks/Components/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Flexblocks/Components/Item.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Flexblocks/Components/RowContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Flexblocks/Components/RowContainer.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Flexblocks/attrsToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Flexblocks/attrsToString.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Flexblocks/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Flexblocks/classes.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Flexblocks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Flexblocks/index.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Flexblocks/resizers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Flexblocks/resizers.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Flexblocks/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Flexblocks/styles.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Javascript/Components/Javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Javascript/Components/Javascript.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Javascript/Traits/JavascriptID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Javascript/Traits/JavascriptID.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Javascript/javascript.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Javascript/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "javascript.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Javascript/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Javascript/types.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Label/Components/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Label/Components/Label.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Label/Traits/LabelID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Label/Traits/LabelID.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Label/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Label/label.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Label/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "label.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Label/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Label/types.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Model/Components/Model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Model/Components/Model.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Model/Traits/ModelID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Model/Traits/ModelID.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Model/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Model/model.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Model/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "model.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Model/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Model/types.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Range/Components/Range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Range/Components/Range.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Range/Traits/RangeID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Range/Traits/RangeID.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Range/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "range.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Range/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Range/range.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Range/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Range/types.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Toggle/Components/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Toggle/Components/Toggle.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Toggle/Traits/ToggleID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Toggle/Traits/ToggleID.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Toggle/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "toggle.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Toggle/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Toggle/toggle.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/Toggle/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/Toggle/types.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/commons/Components/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/commons/Components/component.js -------------------------------------------------------------------------------- /src/scenes/Design/blocks/commons/Components/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "component.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/blocks/commons/Traits/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/blocks/commons/Traits/id.js -------------------------------------------------------------------------------- /src/scenes/Design/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Design.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/panels/connect/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/panels/connect/connect.js -------------------------------------------------------------------------------- /src/scenes/Design/panels/connect/openConnectPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/panels/connect/openConnectPanel.jsx -------------------------------------------------------------------------------- /src/scenes/Design/panels/connect/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "connect.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Design/storage/redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Design/storage/redux.js -------------------------------------------------------------------------------- /src/scenes/DisplayContainer/DisplayContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/DisplayContainer/DisplayContainer.jsx -------------------------------------------------------------------------------- /src/scenes/DisplayContainer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "DisplayContainer.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Menu/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Menu/Menu.jsx -------------------------------------------------------------------------------- /src/scenes/Menu/components/MenuHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Menu/components/MenuHeader.jsx -------------------------------------------------------------------------------- /src/scenes/Menu/components/ScreenSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Menu/components/ScreenSelector.jsx -------------------------------------------------------------------------------- /src/scenes/Menu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Menu.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Preview/Preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Preview/Preview.jsx -------------------------------------------------------------------------------- /src/scenes/Preview/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Preview.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/scenes/Tree/Tree.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Tree/Tree.jsx -------------------------------------------------------------------------------- /src/scenes/Tree/components/Animates.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Tree/components/Animates.jsx -------------------------------------------------------------------------------- /src/scenes/Tree/components/Items.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Tree/components/Items.jsx -------------------------------------------------------------------------------- /src/scenes/Tree/components/Models.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Tree/components/Models.jsx -------------------------------------------------------------------------------- /src/scenes/Tree/components/TreeNode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/scenes/Tree/components/TreeNode.jsx -------------------------------------------------------------------------------- /src/scenes/Tree/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "Tree.jsx" 3 | } 4 | -------------------------------------------------------------------------------- /src/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/template.hbs -------------------------------------------------------------------------------- /src/theme/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/theme/base.scss -------------------------------------------------------------------------------- /src/theme/site/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/theme/site/elements/button.variables -------------------------------------------------------------------------------- /src/theme/site/globals/site.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/theme/site/globals/site.variables -------------------------------------------------------------------------------- /src/theme/theme.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/src/theme/theme.config -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- 1 | 2 | $base-line-height: 16px; 3 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/webpack.config.prod.js -------------------------------------------------------------------------------- /website/blog/2016-03-11-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/blog/2016-03-11-blog-post.md -------------------------------------------------------------------------------- /website/blog/2017-04-10-blog-post-two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/blog/2017-04-10-blog-post-two.md -------------------------------------------------------------------------------- /website/blog/2017-09-25-testing-rss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/blog/2017-09-25-testing-rss.md -------------------------------------------------------------------------------- /website/blog/2017-09-26-adding-rss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/blog/2017-09-26-adding-rss.md -------------------------------------------------------------------------------- /website/blog/2017-10-24-new-version-1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/blog/2017-10-24-new-version-1.0.0.md -------------------------------------------------------------------------------- /website/core/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/core/Footer.js -------------------------------------------------------------------------------- /website/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/i18n/en.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pages/en/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/pages/en/help.js -------------------------------------------------------------------------------- /website/pages/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/pages/en/index.js -------------------------------------------------------------------------------- /website/pages/en/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/pages/en/users.js -------------------------------------------------------------------------------- /website/sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/sidebars.json -------------------------------------------------------------------------------- /website/siteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/siteConfig.js -------------------------------------------------------------------------------- /website/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/css/custom.css -------------------------------------------------------------------------------- /website/static/docs/examples/introduction/Basics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/introduction/Basics.mo -------------------------------------------------------------------------------- /website/static/docs/examples/introduction/Basics.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/introduction/Basics.zip -------------------------------------------------------------------------------- /website/static/docs/examples/introduction/introduction_2.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/introduction/introduction_2.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/introduction/introduction_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/introduction/introduction_2.html -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/1.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/1.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/10.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/10.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/2.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/2.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/3.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/3.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/4.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/4.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/5.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/5.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/6.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/6.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/7.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/7.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/8.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/8.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/9.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/9.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/CardiovascularModelBodylightCardiovascularBodyLight_CardioVascular.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/CardiovascularModelBodylightCardiovascularBodyLight_CardioVascular.zip -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/Heart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/Heart.js -------------------------------------------------------------------------------- /website/static/docs/examples/pvloops/heart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/pvloops/heart.html -------------------------------------------------------------------------------- /website/static/docs/examples/simple_project/Lissajous.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/simple_project/Lissajous.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/simple_project/Lissajous.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/simple_project/Lissajous.zip -------------------------------------------------------------------------------- /website/static/docs/examples/simple_project/simple_project_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/simple_project/simple_project_1.html -------------------------------------------------------------------------------- /website/static/docs/examples/simple_project/simple_project_2.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/simple_project/simple_project_2.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/simple_project/simple_project_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/simple_project/simple_project_2.html -------------------------------------------------------------------------------- /website/static/docs/examples/simple_project/simple_project_3.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/simple_project/simple_project_3.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/simple_project/simple_project_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/simple_project/simple_project_3.html -------------------------------------------------------------------------------- /website/static/docs/examples/simple_project/simple_project_4.bjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/simple_project/simple_project_4.bjp -------------------------------------------------------------------------------- /website/static/docs/examples/simple_project/simple_project_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/examples/simple_project/simple_project_4.html -------------------------------------------------------------------------------- /website/static/docs/img/introduction/composer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/introduction/composer.png -------------------------------------------------------------------------------- /website/static/docs/img/introduction/nephron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/introduction/nephron.png -------------------------------------------------------------------------------- /website/static/docs/img/mo_compilation/dymola_fmu_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/mo_compilation/dymola_fmu_settings.png -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/actionresetmodel.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/actionresetmodel.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/actionresetmodel.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/actionresetmodel.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/addcolumn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/addcolumn.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/addcolumn.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/addcolumn.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/clearchartaction.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/clearchartaction.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/clearchartaction.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/clearchartaction.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/columncontainer.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/columncontainer.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/columncontainer.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/columncontainer.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/configureaction.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/configureaction.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/configureaction.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/configureaction.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/connectaction.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/connectaction.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/connectaction.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/connectaction.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/controls.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/controls.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/controls.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/controls.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/cosinus.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/cosinus.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/cosinus.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/cosinus.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/cosinusconfig.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/cosinusconfig.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/cosinusconfig.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/cosinusconfig.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/cosinuslimit.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/cosinuslimit.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/cosinuslimit.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/cosinuslimit.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/createaction.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/createaction.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/createaction.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/createaction.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/dndmodel.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/dndmodel.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/dndmodel.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/dndmodel.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/flexbasis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/flexbasis.png -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/label.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/label.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/label.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/label.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/maximumsamples.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/maximumsamples.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/maximumsamples.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/maximumsamples.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/modelparameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/modelparameters.png -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/previewreset.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/previewreset.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/previewreset.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/previewreset.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/range.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/range.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/range.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/range.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/resetadd.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/resetadd.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/resetadd.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/resetadd.webm -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/resizecontainer.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/resizecontainer.mp4 -------------------------------------------------------------------------------- /website/static/docs/img/simple_project/resizecontainer.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/docs/img/simple_project/resizecontainer.webm -------------------------------------------------------------------------------- /website/static/img/ModelicaLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/ModelicaLogo.svg -------------------------------------------------------------------------------- /website/static/img/bodylight_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/bodylight_logo.svg -------------------------------------------------------------------------------- /website/static/img/bodylight_logo_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/bodylight_logo_text.svg -------------------------------------------------------------------------------- /website/static/img/composer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/composer.png -------------------------------------------------------------------------------- /website/static/img/easeljs-logo-horizontal-gray-darker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/easeljs-logo-horizontal-gray-darker.svg -------------------------------------------------------------------------------- /website/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon.png -------------------------------------------------------------------------------- /website/static/img/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /website/static/img/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /website/static/img/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /website/static/img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/browserconfig.xml -------------------------------------------------------------------------------- /website/static/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /website/static/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /website/static/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/favicon.ico -------------------------------------------------------------------------------- /website/static/img/favicon/html_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/html_code.html -------------------------------------------------------------------------------- /website/static/img/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /website/static/img/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /website/static/img/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /website/static/img/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /website/static/img/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /website/static/img/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /website/static/img/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/favicon/site.webmanifest -------------------------------------------------------------------------------- /website/static/img/logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/logo_dark.svg -------------------------------------------------------------------------------- /website/static/img/logo_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/logo_light.svg -------------------------------------------------------------------------------- /website/static/img/nephron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/nephron.png -------------------------------------------------------------------------------- /website/static/img/web-assembly-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/static/img/web-assembly-logo.svg -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-connections/Bodylight.js-Composer/HEAD/website/yarn.lock --------------------------------------------------------------------------------