bpm-core 0.0.134 → 0.0.136
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -8
- package/cli/generate/new/angular-template/package.json.ejs +19 -19
- package/cli/generate/new/service-data.js +2 -0
- package/cli/index.js +2 -1
- package/cli/utilities/current-version.js +4 -0
- package/fesm2022/bpm-core.mjs +7 -5
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/shared-components/form-field/input/input.component.d.ts +1 -0
- package/lib/components/shared-components/form-field/select/select.component.d.ts +1 -1
- package/lib/components/shared-components/form-field/shared-imports.d.ts +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
> Starting from **`bpm-core@0.0.121`**, **Angular 19** is required.
|
|
1
|
+
## ⚠️ Read Before Upgrading
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
- Update your project to **Angular 19** to avoid compatibility issues.
|
|
4
|
+
- Review the [Changes Log](#changes-log) for breaking changes and apply necessary updates.
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
##
|
|
19
|
+
## Recently Added Features
|
|
20
|
+
|
|
20
21
|
- ### [BPM Core CLI](#bpm-core-cli)
|
|
21
22
|
A command-line interface tool that provides helper scripts to speed up common tasks.
|
|
22
23
|
|
|
@@ -247,18 +248,22 @@
|
|
|
247
248
|
```
|
|
248
249
|
</details>
|
|
249
250
|
|
|
250
|
-
##
|
|
251
|
+
## Changes Log
|
|
252
|
+
|
|
253
|
+
<a id="bpm-core00132-2025-10-06"></a>
|
|
254
|
+
### [bpm-core@0.0.132 — 2025-10-06](#bpm-core00132-2025-10-06)
|
|
255
|
+
- fix(npm): resolve npm install issues.
|
|
251
256
|
|
|
252
257
|
<a id="bpm-core00130-2025-09-18"></a>
|
|
253
258
|
### [bpm-core@0.0.130 — 2025-09-18](#bpm-core00130-2025-09-18)
|
|
254
259
|
- feat(cli): add `generate new` command to generate an initial service from a config like the form builder.
|
|
255
260
|
- fix(cli/mock-data): restructure LOVs in payload and enhance logged path generation.
|
|
256
|
-
- [BREAKING CHANGE] fix(custom-searchable): update the default value of the `key` input property to 'value' (was 'description').
|
|
261
|
+
- **[BREAKING CHANGE]** fix(custom-searchable): update the default value of the `key` input property to 'value' (was 'description').
|
|
257
262
|
- feat(radio): activate and enhance radio component.
|
|
258
263
|
- refactor: remove ngx-translate package.
|
|
259
|
-
- [BREAKING CHANGE] refactor(input & textarea): remove 'enOnly' and 'arOnly' type values, use filterFn instead.
|
|
264
|
+
- **[BREAKING CHANGE]** refactor(input & textarea): remove 'enOnly' and 'arOnly' type values, use filterFn instead.
|
|
260
265
|
- fix(input-number): prevent dropping text into input number.
|
|
261
|
-
- [BREAKING CHANGE] refactor(attachment-section): replace `isRequired` input with `descriptionRequired` input and add `commentsRequired` input.
|
|
266
|
+
- **[BREAKING CHANGE]** refactor(attachment-section): replace `isRequired` input with `descriptionRequired` input and add `commentsRequired` input.
|
|
262
267
|
- fix(attachment-section): hide label in read-only mode if no attachments.
|
|
263
268
|
- fix(custom-searchable): add padding for search and clear icons in RTL.
|
|
264
269
|
- feat(input): add `maxLength` input property.
|
|
@@ -13,22 +13,22 @@
|
|
|
13
13
|
"private": true,
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@angular-builders/custom-webpack": "^19.0.0",
|
|
16
|
-
"@angular/animations": "^19.
|
|
17
|
-
"@angular/cdk": "^19.
|
|
18
|
-
"@angular/common": "^19.
|
|
19
|
-
"@angular/compiler": "^19.
|
|
20
|
-
"@angular/core": "^19.
|
|
21
|
-
"@angular/forms": "^19.
|
|
22
|
-
"@angular/localize": "^19.
|
|
23
|
-
"@angular/material": "^19.
|
|
24
|
-
"@angular/platform-browser": "^19.
|
|
25
|
-
"@angular/platform-browser-dynamic": "^19.
|
|
26
|
-
"@angular/platform-server": "^19.
|
|
27
|
-
"@angular/router": "^19.
|
|
28
|
-
"@ncstate/sat-popover": "^
|
|
16
|
+
"@angular/animations": "^19.2.15",
|
|
17
|
+
"@angular/cdk": "^19.2.15",
|
|
18
|
+
"@angular/common": "^19.2.15",
|
|
19
|
+
"@angular/compiler": "^19.2.15",
|
|
20
|
+
"@angular/core": "^19.2.15",
|
|
21
|
+
"@angular/forms": "^19.2.15",
|
|
22
|
+
"@angular/localize": "^19.2.15",
|
|
23
|
+
"@angular/material": "^19.2.15",
|
|
24
|
+
"@angular/platform-browser": "^19.2.15",
|
|
25
|
+
"@angular/platform-browser-dynamic": "^19.2.15",
|
|
26
|
+
"@angular/platform-server": "^19.2.15",
|
|
27
|
+
"@angular/router": "^19.2.15",
|
|
28
|
+
"@ncstate/sat-popover": "^14.0.0",
|
|
29
29
|
"basic-ui-components": "^0.0.6992",
|
|
30
30
|
"bootstrap": "^5.3.3",
|
|
31
|
-
"bpm-core": "
|
|
31
|
+
"bpm-core": "<%=CURRENT_VERSION%>",
|
|
32
32
|
"date-fns": "^4.1.0",
|
|
33
33
|
"express": "^4.18.2",
|
|
34
34
|
"file-saver": "^2.0.5",
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"ngx-toastr": "^19.0.0",
|
|
46
46
|
"rxjs": "~7.8.0",
|
|
47
47
|
"tslib": "^2.3.0",
|
|
48
|
-
"zone.js": "
|
|
48
|
+
"zone.js": "^0.15.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@angular-devkit/build-angular": "^19.
|
|
52
|
-
"@angular/cli": "^19.
|
|
53
|
-
"@angular/compiler-cli": "^19.
|
|
51
|
+
"@angular-devkit/build-angular": "^19.2.15",
|
|
52
|
+
"@angular/cli": "^19.2.15",
|
|
53
|
+
"@angular/compiler-cli": "^19.2.15",
|
|
54
54
|
"@types/express": "^4.17.17",
|
|
55
55
|
"@types/jasmine": "~5.1.0",
|
|
56
56
|
"@types/node": "^18.18.0",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"karma-coverage": "~2.2.0",
|
|
61
61
|
"karma-jasmine": "~5.1.0",
|
|
62
62
|
"karma-jasmine-html-reporter": "~2.1.0",
|
|
63
|
-
"ng-packagr": "^
|
|
63
|
+
"ng-packagr": "^19.0.0",
|
|
64
64
|
"typescript": "~5.5.2"
|
|
65
65
|
}
|
|
66
66
|
}
|
|
@@ -24,6 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.ServiceData = void 0;
|
|
27
|
+
const current_version_1 = require("../../utilities/current-version");
|
|
27
28
|
const changeCase = __importStar(require("change-case"));
|
|
28
29
|
class ServiceData {
|
|
29
30
|
constructor(serviceCode, stages) {
|
|
@@ -31,6 +32,7 @@ class ServiceData {
|
|
|
31
32
|
this.stages = stages;
|
|
32
33
|
this.visibilityCodeLOVEnums = this.parseLOVEnums();
|
|
33
34
|
this.changeCase = changeCase;
|
|
35
|
+
this.CURRENT_VERSION = current_version_1.CURRENT_VERSION;
|
|
34
36
|
this.en = {};
|
|
35
37
|
this.ar = {};
|
|
36
38
|
this.addI18n();
|
package/cli/index.js
CHANGED
|
@@ -4,11 +4,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
4
4
|
const commander_1 = require("commander");
|
|
5
5
|
const deploy_1 = require("./deploy");
|
|
6
6
|
const generate_1 = require("./generate");
|
|
7
|
+
const current_version_1 = require("./utilities/current-version");
|
|
7
8
|
const program = new commander_1.Command();
|
|
8
9
|
program
|
|
9
10
|
.name("bpm-core")
|
|
10
11
|
.description("BPM Core CLI tool.")
|
|
11
|
-
.version(
|
|
12
|
+
.version(current_version_1.CURRENT_VERSION, '-v, --version', 'output the version number');
|
|
12
13
|
program.addCommand(deploy_1.deployCommand);
|
|
13
14
|
program.addCommand(generate_1.generateCommand);
|
|
14
15
|
program.parse(process.argv);
|