@hug/ngx-layout 1.1.2 → 1.1.3

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/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## 1.1.3 (2024-07-08)
2
+
3
+
4
+ ### 🐛 Fixes
5
+
6
+ - theming ([79feb6e](https://github.com/DSI-HUG/ngx-components/commit/79feb6e))
7
+
8
+
9
+ ### 🌱 Dependencies
10
+
11
+ - **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9))
12
+
13
+ - **@hug/ngx-sidenav:** upgrade to v1.1.2 ([92ee575](https://github.com/DSI-HUG/ngx-components/commit/92ee575))
14
+
15
+
16
+ ### ❤️ Thank You
17
+
18
+ - dsi-hug-bot @dsi-hug-bot
19
+ - Serge
20
+
1
21
  ## 1.1.0 (2024-06-26)
2
22
 
3
23
 
@@ -1,6 +1,6 @@
1
1
  @use '@angular/material'as mat;
2
2
 
3
- @mixin layout-theme($theme) {
3
+ @mixin theme($theme) {
4
4
  $primary: map-get($theme, primary);
5
5
  $accent: map-get($theme, accent);
6
6
  $background: map-get($theme, background);
package/package.json CHANGED
@@ -1,56 +1,51 @@
1
1
  {
2
- "name": "@hug/ngx-layout",
3
- "version": "1.1.2",
4
- "description": "HUG Angular - layout component",
5
- "homepage": "https://github.com/dsi-hug/ngx-components",
6
- "license": "GPL-3.0-only",
7
- "author": "HUG - Hôpitaux Universitaires Genève",
8
- "contributors": [
9
- "badisi (https://github.com/badisi)",
10
- "vapkse (https://github.com/vapkse)"
11
- ],
12
- "repository": {
13
- "type": "git",
14
- "url": "git+https://github.com/dsi-hug/ngx-components.git"
15
- },
16
- "keywords": [
17
- "angular",
18
- "material",
19
- "material design",
20
- "components"
21
- ],
22
- "sideEffects": false,
23
- "peerDependencies": {
24
- "@angular/common": ">= 14",
25
- "@angular/core": ">= 14",
26
- "@angular/cdk": ">= 14",
27
- "@angular/material": ">= 14",
28
- "@hug/ngx-core": "1.1.6",
29
- "@hug/ngx-sidenav": "1.1.1"
30
- },
31
- "dependencies": {
32
- "tslib": "^2.6.3"
33
- },
34
- "publishConfig": {
35
- "access": "public"
36
- },
37
- "module": "fesm2015/hug-ngx-layout.mjs",
38
- "es2020": "fesm2020/hug-ngx-layout.mjs",
39
- "esm2020": "esm2020/hug-ngx-layout.mjs",
40
- "fesm2020": "fesm2020/hug-ngx-layout.mjs",
41
- "fesm2015": "fesm2015/hug-ngx-layout.mjs",
42
- "typings": "index.d.ts",
43
- "exports": {
44
- "./package.json": {
45
- "default": "./package.json"
2
+ "name": "@hug/ngx-layout",
3
+ "version": "1.1.3",
4
+ "description": "HUG Angular - layout component",
5
+ "homepage": "https://github.com/dsi-hug/ngx-components",
6
+ "license": "GPL-3.0-only",
7
+ "author": "HUG - Hôpitaux Universitaires Genève",
8
+ "contributors": [
9
+ "badisi (https://github.com/badisi)",
10
+ "vapkse (https://github.com/vapkse)"
11
+ ],
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/dsi-hug/ngx-components.git"
46
15
  },
47
- ".": {
48
- "types": "./index.d.ts",
49
- "esm2020": "./esm2020/hug-ngx-layout.mjs",
50
- "es2020": "./fesm2020/hug-ngx-layout.mjs",
51
- "es2015": "./fesm2015/hug-ngx-layout.mjs",
52
- "node": "./fesm2015/hug-ngx-layout.mjs",
53
- "default": "./fesm2020/hug-ngx-layout.mjs"
16
+ "keywords": [
17
+ "angular",
18
+ "material",
19
+ "material design",
20
+ "components"
21
+ ],
22
+ "sideEffects": false,
23
+ "exports": {
24
+ ".": {
25
+ "sass": "./_layout-theme.scss"
26
+ }
27
+ },
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
+ "peerDependencies": {
38
+ "@angular/common": ">= 14",
39
+ "@angular/core": ">= 14",
40
+ "@angular/cdk": ">= 14",
41
+ "@angular/material": ">= 14",
42
+ "@hug/ngx-core": "1.1.7",
43
+ "@hug/ngx-sidenav": "1.1.2"
44
+ },
45
+ "dependencies": {
46
+ "tslib": "^2.6.3"
47
+ },
48
+ "publishConfig": {
49
+ "access": "public"
54
50
  }
55
- }
56
51
  }