@hug/ngx-layout 1.1.7 → 1.1.8

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/CHANGELOG.md +20 -0
  2. package/package.json +18 -12
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## 1.1.8 (2024-07-24)
2
+
3
+
4
+ ### 🐛 Fixes
5
+
6
+ - **ngx-layout:** update patch version ([2a03908](https://github.com/DSI-HUG/ngx-components/commit/2a03908))
7
+
8
+
9
+ ### 🌱 Dependencies
10
+
11
+ - **@hug/ngx-sidenav:** upgrade to v1.1.6 ([72246b0](https://github.com/DSI-HUG/ngx-components/commit/72246b0))
12
+
13
+ - **@hug/ngx-core:** upgrade to v1.1.12 ([78a2936](https://github.com/DSI-HUG/ngx-components/commit/78a2936))
14
+
15
+
16
+ ### ❤️ Thank You
17
+
18
+ - dsi-hug-bot @dsi-hug-bot
19
+ - Serge
20
+
1
21
  ## 1.1.7 (2024-07-24)
2
22
 
3
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hug/ngx-layout",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "HUG Angular - layout component",
5
5
  "homepage": "https://github.com/dsi-hug/ngx-components",
6
6
  "license": "GPL-3.0-only",
@@ -22,18 +22,18 @@
22
22
  "sideEffects": false,
23
23
  "exports": {
24
24
  ".": {
25
- "sass": "./_layout-theme.scss"
25
+ "sass": "./_layout-theme.scss",
26
+ "types": "./index.d.ts",
27
+ "esm2020": "./esm2020/hug-ngx-layout.mjs",
28
+ "es2020": "./fesm2020/hug-ngx-layout.mjs",
29
+ "es2015": "./fesm2015/hug-ngx-layout.mjs",
30
+ "node": "./fesm2015/hug-ngx-layout.mjs",
31
+ "default": "./fesm2020/hug-ngx-layout.mjs"
32
+ },
33
+ "./package.json": {
34
+ "default": "./package.json"
26
35
  }
27
36
  },
28
- "scripts": {
29
- "lint": "eslint . --fix",
30
- "test": "ng test layout",
31
- "test:ci": "ng test layout --watch=false --browsers=ChromeHeadless",
32
- "build:ng": "ng build layout -c=production",
33
- "build": "nx build:ng @hug/ngx-layout --verbose",
34
- "release": "node -r @swc-node/register ../../scripts/release.ts --projects=@hug/ngx-layout --verbose",
35
- "release:dry-run": "npm run release -- --dry-run"
36
- },
37
37
  "peerDependencies": {
38
38
  "@angular/common": ">= 14",
39
39
  "@angular/core": ">= 14",
@@ -47,5 +47,11 @@
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"
50
- }
50
+ },
51
+ "module": "fesm2015/hug-ngx-layout.mjs",
52
+ "es2020": "fesm2020/hug-ngx-layout.mjs",
53
+ "esm2020": "esm2020/hug-ngx-layout.mjs",
54
+ "fesm2020": "fesm2020/hug-ngx-layout.mjs",
55
+ "fesm2015": "fesm2015/hug-ngx-layout.mjs",
56
+ "typings": "index.d.ts"
51
57
  }