Skip to content

Commit

Permalink
0.21.1. (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
b4rtaz authored May 19, 2024
1 parent 1b2d319 commit 97876eb
Show file tree
Hide file tree
Showing 12 changed files with 3,310 additions and 2,467 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.21.1

Added support for Angular 17 [#145](https://github.com/nocode-js/sequential-workflow-designer/issues/145).

## 0.21.0

This version introduces several changes related with the collapsible regions in the pro version.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ Add the below code to your head section in HTML document.
```html
<head>
...
<link href="https://cdn.jsdelivr.net/npm/[email protected].0/css/designer.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected].0/css/designer-light.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected].0/css/designer-dark.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/index.umd.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected].1/css/designer.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected].1/css/designer-light.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected].1/css/designer-dark.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/index.umd.js"></script>
```

Call the designer by:
Expand Down
8 changes: 4 additions & 4 deletions angular/designer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sequential-workflow-designer-angular",
"description": "Angular wrapper for Sequential Workflow Designer component.",
"version": "0.21.0",
"version": "0.21.1",
"author": {
"name": "NoCode JS",
"url": "https://nocode-js.com/"
Expand All @@ -13,9 +13,9 @@
"url": "https://github.com/nocode-js/sequential-workflow-designer.git"
},
"peerDependencies": {
"@angular/common": "12 - 16",
"@angular/core": "12 - 16",
"sequential-workflow-designer": "^0.21.0"
"@angular/common": "12 - 18",
"@angular/core": "12 - 18",
"sequential-workflow-designer": "^0.21.1"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
6 changes: 3 additions & 3 deletions demos/angular-app/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,18 +63,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "angular-app:build:production"
"buildTarget": "angular-app:build:production"
},
"development": {
"browserTarget": "angular-app:build:development"
"buildTarget": "angular-app:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "angular-app:build"
"buildTarget": "angular-app:build"
}
},
"test": {
Expand Down
34 changes: 17 additions & 17 deletions demos/angular-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.9",
"@angular/cdk": "15.2.9",
"@angular/common": "^15.2.9",
"@angular/compiler": "^15.2.9",
"@angular/core": "^15.2.9",
"@angular/forms": "^15.2.9",
"@angular/material": "15.2.9",
"@angular/platform-browser": "^15.2.9",
"@angular/platform-browser-dynamic": "^15.2.9",
"@angular/router": "^15.2.9",
"@angular/animations": "^17.3.9",
"@angular/cdk": "^17.3.9",
"@angular/common": "^17.3.9",
"@angular/compiler": "^17.3.9",
"@angular/core": "^17.3.9",
"@angular/forms": "^17.3.9",
"@angular/material": "^17.3.9",
"@angular/platform-browser": "^17.3.9",
"@angular/platform-browser-dynamic": "^17.3.9",
"@angular/router": "^17.3.9",
"rxjs": "~7.8.0",
"sequential-workflow-designer": "^0.21.0",
"sequential-workflow-designer-angular": "^0.21.0",
"sequential-workflow-designer": "^0.21.1",
"sequential-workflow-designer-angular": "^0.21.1",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
"zone.js": "~0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.9",
"@angular/cli": "~15.2.9",
"@angular/compiler-cli": "^15.2.9",
"@angular-devkit/build-angular": "^17.3.7",
"@angular/cli": "~17.3.7",
"@angular/compiler-cli": "^17.3.9",
"@types/jasmine": "~4.3.1",
"jasmine-core": "~4.5.0",
"karma": "~6.4.1",
Expand All @@ -43,6 +43,6 @@
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"prettier": "^3.2.5",
"typescript": "~4.9.5"
"typescript": "~5.4.5"
}
}
Loading

0 comments on commit 97876eb

Please sign in to comment.