@verisoft/ui-core 18.5.0 → 18.7.0

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 CHANGED
@@ -1,7 +1,56 @@
1
1
  # ui-core
2
2
 
3
- This library was generated with [Nx](https://nx.dev).
3
+ The `ui-core` library provides shared UI components, utilities, and base styles for the Verisoft Frontend workspace.
4
4
 
5
- ## Running unit tests
5
+ ## Features
6
6
 
7
- Run `nx test ui-core` to execute the unit tests.
7
+ - Reusable Angular UI components
8
+ - Shared UI utilities and helpers
9
+ - Base styles and theming support
10
+
11
+ ## Installation
12
+
13
+ This package is intended for internal use within the monorepo. To use it in another library or app, add it as a dependency in your `project.json`:
14
+
15
+ ```json
16
+ "dependencies": {
17
+ "ui-core": "*"
18
+ }
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ Import the required modules or components from `ui-core`:
24
+
25
+ ```typescript
26
+ import { UiButtonComponent } from '@verisoft/ui-core';
27
+ ```
28
+
29
+ ## Development
30
+
31
+ ### Building
32
+
33
+ Run the following command to build the library:
34
+
35
+ ```sh
36
+ nx build ui-core
37
+ ```
38
+
39
+ ### Running Unit Tests
40
+
41
+ To execute the unit tests for this library:
42
+
43
+ ```sh
44
+ nx test ui-core
45
+ ```
46
+
47
+ ## Contributing
48
+
49
+ 1. Fork the repository and create your branch from `master`.
50
+ 2. Make your changes and add tests if needed.
51
+ 3. Run `nx test ui-core` to ensure all tests pass.
52
+ 4. Submit a pull request.
53
+
54
+ ## License
55
+
56
+ This project is licensed under the MIT License.
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@verisoft/ui-core",
3
- "version": "18.5.0",
3
+ "version": "18.7.0",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^18.2.8",
6
6
  "@angular/router": "18.2.8",
7
- "@verisoft/core": "18.5.0",
7
+ "@verisoft/core": "18.7.0",
8
8
  "@angular/forms": "18.2.8",
9
9
  "rxjs": "~7.8.0",
10
10
  "@angular/common": "^18.2.8",
11
11
  "lodash-es": "^4.17.21",
12
- "@verisoft/store": "18.5.0",
12
+ "@verisoft/store": "18.7.0",
13
13
  "@ngrx/store": "18.0.2",
14
14
  "@angular/platform-browser": "18.2.8",
15
15
  "uuid": "^10.0.0",
package/project.json CHANGED
@@ -31,13 +31,6 @@
31
31
  },
32
32
  "lint": {
33
33
  "executor": "@nx/eslint:lint"
34
- },
35
- "publish": {
36
- "executor": "@nrwl/js:publish",
37
- "options": {
38
- "access": "public",
39
- "publishDir": "dist/src/libs/ui-core"
40
- }
41
34
  }
42
35
  }
43
36
  }
package/tsconfig.json CHANGED
@@ -23,8 +23,6 @@
23
23
  "enableI18nLegacyMessageIdFormat": false,
24
24
  "strictInjectionParameters": true,
25
25
  "strictInputAccessModifiers": true,
26
- "strictTemplates": true,
27
- "compilationMode": "partial",
28
- "enableIvy": true
26
+ "strictTemplates": true
29
27
  }
30
28
  }
@@ -4,7 +4,6 @@
4
4
  "declarationMap": false
5
5
  },
6
6
  "angularCompilerOptions": {
7
- "compilationMode": "partial",
8
- "enableIvy": true
7
+ "compilationMode": "partial"
9
8
  }
10
9
  }