@genesislcap/foundation-utils 14.179.0 → 14.180.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.
Files changed (2) hide show
  1. package/README.md +31 -23
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -1,41 +1,49 @@
1
1
  # Genesis Foundation Utils
2
2
 
3
- Shared utils for foundation packages. *Please note that this shouldn't have any cross dependencies to other parts of
4
- foundation.*
5
-
6
- ### [Module Federation Details](https://webpack.js.org/concepts/module-federation):
7
-
8
- | Remote Name | Port |
9
- | --------------------- | ----- |
10
- | foundationUtils | 3040 |
11
-
12
- [![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/)
13
- [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](https://www.typescriptlang.org/)
14
-
3
+ The `@genesislcap/foundation-utils` package provides a collection of utility services and helpers designed to facilitate common development tasks within Genesis applications. It aims to enhance productivity by offering reusable solutions for patterns and problems encountered across different projects.
4
+
5
+ ## API Documentation
6
+
7
+ For more detailed information on API and configurations, please refer to the [API documentation](docs/api/index.md) in the `docs/api` directory.
8
+
9
+ ## Features
10
+
11
+ The library encompasses a broad range of features, including:
12
+
13
+ - **[Data](src/data/README.md)** - Manages in-memory databases and data storage solutions.
14
+ - **[Decorators](src/decorators/README.md)** - Provides decorators for enhancing class functionalities, such as rendering on change.
15
+ - **[Design System](src/design-system/README.md)** - Holds the design system configurations and utilities.
16
+ - **[Directives](src/directives/README.md)** - Offers Angular-like directives for DOM manipulations, including conditional rendering and synchronization functionalities.
17
+ - **[ENV](src/env/README.md)** - Contains utilities for environment variable management and detection of development environments.
18
+ - **[Error](src/error/README.md)** - Deals with error mapping and handling strategies.
19
+ - **[Formatters](src/formatters/README.md)** - Includes functions for formatting dates and numbers according to locale settings.
20
+ - **[Logger](src/logger/README.md)** - A simple logging utility for debugging and information tracking.
21
+ - **[Mappers](src/mappers/README.md)** - Focuses on data transformation, especially for DTOs (Data Transfer Objects).
22
+ - **[Mixins](src/mixins/README.md)** - Provides mixins for common functionalities like lifecycle hooks and state management.
23
+ - **[Observer](src/observer/README.md)** - Implements the Observer pattern for reactive programming.
24
+ - **[Resource](src/observer/README.md)** - Defines types and interfaces for resource management.
25
+ - **[Serializers](src/serializers/README.md)** - Contains serializers, particularly for JSON data handling.
26
+ - **[State](src/state/README.md)** - Manages reactive state and provides utilities for state observation.
27
+ - **[Styles](src/styles/README.md)** - Includes utilities for styling, dealing with colors, typography, and DOM styles.
28
+ - **[UUID](src/uuid/README.md)** - Utilities for generating and managing UUIDs.
29
+ - **[Window](src/window/README.md)** - Provides abstractions and utilities for window object manipulations.
15
30
 
16
31
  ## Installation
17
32
 
18
- To enable this module in your application, follow the steps below.
19
-
20
- 1. Add `@genesislcap/foundation-utils` as a dependency in your `package.json` file. Whenever you change the dependencies of your project, ensure you run the `$ npm run bootstrap` command again. You can find more information in the [package.json basics](https://learn.genesis.global/secure/web/basics/package-json-basics/) page.
33
+ To include `@genesislcap/foundation-utils` in your project, add it as a dependency in your `package.json` file and follow your project's routine for dependency installation.
21
34
 
22
35
  ```json
23
36
  {
24
- ...
25
37
  "dependencies": {
26
- ...
27
38
  "@genesislcap/foundation-utils": "latest"
28
- ...
29
- },
30
- ...
39
+ }
31
40
  }
32
41
  ```
33
42
 
34
- ## [API Docs](./docs/api/index.md)
35
-
36
43
  ## License
37
44
 
38
45
  Note: this project provides front-end dependencies and uses licensed components listed in the next section; thus, licenses for those components are required during development. Contact [Genesis Global](https://genesis.global/contact-us/) for more details.
39
46
 
40
47
  ### Licensed components
41
- Genesis low-code platform
48
+
49
+ Genesis low-code platform
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-utils",
3
3
  "description": "Genesis Foundation Utils",
4
- "version": "14.179.0",
4
+ "version": "14.180.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -19,17 +19,17 @@
19
19
  "test": "genx test"
20
20
  },
21
21
  "devDependencies": {
22
- "@genesislcap/foundation-testing": "14.179.0",
23
- "@genesislcap/genx": "14.179.0",
24
- "@genesislcap/rollup-builder": "14.179.0",
25
- "@genesislcap/ts-builder": "14.179.0",
26
- "@genesislcap/uvu-playwright-builder": "14.179.0",
27
- "@genesislcap/vite-builder": "14.179.0",
28
- "@genesislcap/webpack-builder": "14.179.0",
22
+ "@genesislcap/foundation-testing": "14.180.0",
23
+ "@genesislcap/genx": "14.180.0",
24
+ "@genesislcap/rollup-builder": "14.180.0",
25
+ "@genesislcap/ts-builder": "14.180.0",
26
+ "@genesislcap/uvu-playwright-builder": "14.180.0",
27
+ "@genesislcap/vite-builder": "14.180.0",
28
+ "@genesislcap/webpack-builder": "14.180.0",
29
29
  "rimraf": "^3.0.2"
30
30
  },
31
31
  "dependencies": {
32
- "@genesislcap/foundation-logger": "14.179.0",
32
+ "@genesislcap/foundation-logger": "14.180.0",
33
33
  "@microsoft/fast-components": "^2.30.6",
34
34
  "@microsoft/fast-element": "^1.12.0",
35
35
  "@microsoft/fast-foundation": "^2.49.4",
@@ -47,5 +47,5 @@
47
47
  "access": "public"
48
48
  },
49
49
  "customElements": "dist/custom-elements.json",
50
- "gitHead": "fbb42975b9ecb82eac233685b37b0fa8118e2467"
50
+ "gitHead": "24ddbaf4c43ccfe2c323ec1178b1829451b1721a"
51
51
  }