Skip to content

Commit

Permalink
Merge pull request #203 from infor-cloud/fix-util-export
Browse files Browse the repository at this point in the history
Add missing exports for utility classes
  • Loading branch information
jehrnstrom authored Oct 25, 2024
2 parents e09baa6 + 7daba67 commit 83ebbc0
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 16 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 7.1.1

- Export of MIUtil and Bookmark classes.

# 7.1.0

## Updated dependencies
Expand Down
4 changes: 2 additions & 2 deletions cli/boilerplate/angular-soho/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dependencies": {
"@infor-up/m3-odin": "7.1.0",
"@infor-up/m3-odin-angular": "7.1.0",
"@infor-up/m3-odin": "7.1.1-next.2",
"@infor-up/m3-odin-angular": "7.1.1-next.2",
"ids-enterprise-ng": "18.2.4"
},
"devDependencies": {}
Expand Down
4 changes: 2 additions & 2 deletions cli/boilerplate/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dependencies": {
"@infor-up/m3-odin": "7.1.0",
"@infor-up/m3-odin-angular": "7.1.0"
"@infor-up/m3-odin": "7.1.1-next.2",
"@infor-up/m3-odin-angular": "7.1.1-next.2"
},
"devDependencies": {}
}
4 changes: 2 additions & 2 deletions cli/boilerplate/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"author": "",
"license": "UNLICENSED",
"devDependencies": {
"@infor-up/m3-odin-cli": "7.1.0",
"@infor-up/m3-odin": "7.1.0",
"@infor-up/m3-odin-cli": "7.1.1-next.2",
"@infor-up/m3-odin": "7.1.1-next.2",
"rxjs": "^7.8.0",
"typescript": "~5.2.2"
}
Expand Down
4 changes: 2 additions & 2 deletions cli/package-lock.json

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

2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infor-up/m3-odin-cli",
"version": "7.1.0",
"version": "7.1.1-next.2",
"description": "Odin CLI",
"scripts": {
"build": "tsc",
Expand Down
4 changes: 2 additions & 2 deletions m3-odin/package-lock.json

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

2 changes: 1 addition & 1 deletion m3-odin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "m3-odin-samples",
"version": "7.1.0",
"version": "7.1.1-next.2",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
Expand Down
4 changes: 2 additions & 2 deletions m3-odin/projects/infor-up/m3-odin-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@infor-up/m3-odin-angular",
"private": false,
"version": "7.1.0",
"version": "7.1.1-next.2",
"description": "Odin Angular for M3 web application development.",
"author": {
"name": "Fredrik Eriksson",
Expand All @@ -18,7 +18,7 @@
"peerDependencies": {
"@angular/common": "^18.2.4",
"@angular/core": "^18.2.4",
"@infor-up/m3-odin": "7.1.0",
"@infor-up/m3-odin": "7.1.1-next.2",
"rxjs": "^7.8.0"
}
}
2 changes: 1 addition & 1 deletion m3-odin/projects/infor-up/m3-odin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@infor-up/m3-odin",
"private": false,
"version": "7.1.0",
"version": "7.1.1-next.2",
"description": "Odin for M3 web application development.",
"author": {
"name": "Fredrik Eriksson",
Expand Down
1 change: 1 addition & 0 deletions m3-odin/projects/infor-up/m3-odin/src/lib/form/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export * from './types';
export * from './elements';
export {
Bookmark,
IFormRequest,
IFormResponse,
ITranslationItem,
Expand Down
3 changes: 2 additions & 1 deletion m3-odin/projects/infor-up/m3-odin/src/lib/mi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ export {
} from './base';
export {
MIRecord,
MIServiceCore
MIServiceCore,
MIUtil
} from './runtime';

0 comments on commit 83ebbc0

Please sign in to comment.