@hug/ngx-layout 1.1.7 → 1.1.9

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 +32 -0
  2. package/package.json +20 -14
package/CHANGELOG.md CHANGED
@@ -1,3 +1,35 @@
1
+ ## 1.1.9 (2024-07-25)
2
+
3
+
4
+ ### 🌱 Dependencies
5
+
6
+ - **@hug/ngx-core:** upgrade to v1.1.13 ([15e11d7](https://github.com/DSI-HUG/ngx-components/commit/15e11d7))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - dsi-hug-bot @dsi-hug-bot
12
+
13
+ ## 1.1.8 (2024-07-24)
14
+
15
+
16
+ ### 🐛 Fixes
17
+
18
+ - **ngx-layout:** update patch version ([2a03908](https://github.com/DSI-HUG/ngx-components/commit/2a03908))
19
+
20
+
21
+ ### 🌱 Dependencies
22
+
23
+ - **@hug/ngx-sidenav:** upgrade to v1.1.6 ([72246b0](https://github.com/DSI-HUG/ngx-components/commit/72246b0))
24
+
25
+ - **@hug/ngx-core:** upgrade to v1.1.12 ([78a2936](https://github.com/DSI-HUG/ngx-components/commit/78a2936))
26
+
27
+
28
+ ### ❤️ Thank You
29
+
30
+ - dsi-hug-bot @dsi-hug-bot
31
+ - Serge
32
+
1
33
  ## 1.1.7 (2024-07-24)
2
34
 
3
35
 
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.9",
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,30 +22,36 @@
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",
40
40
  "@angular/cdk": ">= 14",
41
41
  "@angular/material": ">= 14",
42
- "@hug/ngx-core": "1.1.11",
43
- "@hug/ngx-sidenav": "1.1.5"
42
+ "@hug/ngx-core": "1.1.13",
43
+ "@hug/ngx-sidenav": "1.1.6"
44
44
  },
45
45
  "dependencies": {
46
46
  "tslib": "^2.6.3"
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
  }