Skip to content

Commit

Permalink
Merge pull request #1037 from ds-wizard/release/4.2.0
Browse files Browse the repository at this point in the history
Release 4.2.0
  • Loading branch information
vknaisl committed Jan 2, 2024
2 parents 764d0f4 + 043a348 commit 1727bf8
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: npm run build:${{ matrix.component }}

- name: '[release] Create artifact'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.component }}
path: dist/engine-${{ matrix.component }}
2 changes: 1 addition & 1 deletion elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"jinjor/elm-debounce": "3.0.0",
"jinjor/elm-diff": "1.0.6",
"justinmimbs/time-extra": "1.1.1",
"kuon/elm-string-normalize": "1.0.5",
"kuon/elm-string-normalize": "1.0.6",
"myrho/elm-round": "1.0.5",
"noahzgordon/elm-color-extra": "1.0.2",
"pablohirafuji/elm-syntax-highlight": "3.5.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1550,7 +1550,7 @@ viewIntegrationEditor { appState, wrapMsg, eventMsg, integrationPrefabs, editorB
}
in
[ widgetUrlInput
, FormExtra.mdAfter (gettext "The URL of the widget implemented using [DSW Integration Widget SDK](https://github.com/ds-wizard/dsw-integration-widget-sdk)." appState.locale)
, FormExtra.mdAfter (gettext "The URL of the widget implemented using [DSW Integration SDK](https://github.com/ds-wizard/dsw-integration-sdk)." appState.locale)
, itemUrl
, FormExtra.mdAfter (gettext "Defines the URL to the selected item. Use `${id}` value returned from the widget, for example `https://example.com/${id}`." appState.locale)
]
Expand Down Expand Up @@ -1974,7 +1974,7 @@ viewEmptyEditor appState =

editor : String -> List (Html msg) -> Html msg
editor editorId =
div [ id editorId, class "editor-content col-xl-10 col-lg-12" ]
div [ id editorId, class "editor-content col-xl-10 col-12" ]


editorRoute : EditorBranch -> String -> Routes.Route
Expand Down
3 changes: 3 additions & 0 deletions engine-wizard/elm/Wizard/Routes.elm
Original file line number Diff line number Diff line change
Expand Up @@ -683,6 +683,9 @@ isProjectSubroute route =
ProjectsRoute _ ->
True

ProjectActionsRoute _ ->
True

ProjectImportersRoute _ ->
True

Expand Down
14 changes: 14 additions & 0 deletions engine-wizard/scss/modules/KMEditor/Editor/_KMEditor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,25 @@ $breadcrumbs-height: 40px;
justify-content: space-between;
align-items: center;

@include media-breakpoint-down(lg) {
display: block;

&-buttons {
display: flex;
justify-content: flex-end;
}
}


h3 {
margin: 0;
}

&-buttons {
.btn {
white-space: nowrap;
}

.btn-link {
color: $secondary;
text-decoration: none;
Expand Down
46 changes: 23 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "engine-frontend",
"version": "4.1.1",
"version": "4.2.0",
"repository": "https://github.com/ds-wizard/engine-frontend",
"license": "Apache-2.0",
"scripts": {
Expand Down Expand Up @@ -32,7 +32,7 @@
"elm-review": "^2.10.3",
"elm-test": "^0.19.1-revision12",
"elm-webpack-loader": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"html-webpack-plugin": "^5.5.4",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.7.6",
"sass": "^1.69.5",
Expand All @@ -46,11 +46,11 @@
"dependencies": {
"@codemirror/commands": "^6.3.2",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.6",
"@codemirror/lang-html": "^6.4.7",
"@codemirror/lang-xml": "^6.0.2",
"@codemirror/language": "^6.9.3",
"@codemirror/legacy-modes": "^6.3.3",
"@codemirror/state": "^6.3.2",
"@codemirror/state": "^6.3.3",
"@codemirror/view": "^6.22.1",
"@fortawesome/fontawesome-free": "^5.15.4",
"axios": "1.6.2",
Expand Down

0 comments on commit 1727bf8

Please sign in to comment.