@sumaris-net/ngx-components 18.23.63 → 18.23.64
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/doc/build.md +3 -5
- package/doc/changelog.md +3 -0
- package/esm2022/src/app/core/home/home.mjs +3 -3
- package/esm2022/src/app/shared/functions.mjs +58 -16
- package/esm2022/src/app/shared/pipes/pipes.module.mjs +5 -2
- package/esm2022/src/app/shared/pipes/string.pipes.mjs +15 -2
- package/esm2022/src/app/social/feed/feed.component.mjs +3 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +78 -20
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/functions.d.ts +26 -2
- package/src/app/shared/inputs.d.ts +1 -1
- package/src/app/shared/pipes/pipes.module.d.ts +1 -1
- package/src/app/shared/pipes/string.pipes.d.ts +5 -0
- package/src/assets/manifest.json +1 -1
package/doc/build.md
CHANGED
|
@@ -8,9 +8,9 @@ This article will explain how to install your environment, then build the librar
|
|
|
8
8
|
|
|
9
9
|
1. Install [NVM](https://github.com/nvm-sh/nvm)
|
|
10
10
|
|
|
11
|
-
2. Install Node (
|
|
11
|
+
2. Install Node (v20+) (e.g 20.17.0)
|
|
12
12
|
```bash
|
|
13
|
-
nvm install
|
|
13
|
+
nvm install 20.17.0
|
|
14
14
|
```
|
|
15
15
|
> Check versions in `package.json`
|
|
16
16
|
|
|
@@ -39,7 +39,7 @@ This article will explain how to install your environment, then build the librar
|
|
|
39
39
|
cd ngx-sumaris-components
|
|
40
40
|
npm start
|
|
41
41
|
```
|
|
42
|
-
By default, the app should be accessible at [http://localhost:
|
|
42
|
+
By default, the app should be accessible at [http://localhost:4201](http://localhost:4201)
|
|
43
43
|
|
|
44
44
|
To change the default port, use this command instead:
|
|
45
45
|
|
|
@@ -48,8 +48,6 @@ This article will explain how to install your environment, then build the librar
|
|
|
48
48
|
ng serve --port [port]
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
The application should be accessible at [localhost:4200](http://localhost:4200)
|
|
52
|
-
|
|
53
51
|
### Publish new release
|
|
54
52
|
|
|
55
53
|
1. Create the release:
|
package/doc/changelog.md
CHANGED
|
@@ -2188,3 +2188,6 @@ enh: Environment: add useHash property to configure Angular router to use hash U
|
|
|
2188
2188
|
## 18.23.61
|
|
2189
2189
|
- enh(home): Support badge display on injectable toolbar buttons via `matBadge` directive, using `MenuItem.$badge` and `$badgeColor`
|
|
2190
2190
|
- enh(menu): Update `ifProperty` handling to support negation logic for configuration checks
|
|
2191
|
+
|
|
2192
|
+
## 18.23.64
|
|
2193
|
+
- enh(shared): Add new pipe `changeCaseToUnderscore` to convert camelCase to underscore_case in templates
|