@net7/boilerplate-muruca 5.2.1 → 5.2.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.
@@ -1,4 +1,5 @@
1
1
  import { DataSource } from '@net7/core';
2
+ import { MetadataGroup } from '@net7/components';
2
3
  type collectionResponse = {
3
4
  header: {
4
5
  title?: string;
@@ -15,6 +16,7 @@ type collectionResponse = {
15
16
  title?: string;
16
17
  type?: string;
17
18
  payload?: any;
19
+ metadata?: MetadataGroup[];
18
20
  }[];
19
21
  };
20
22
  export declare class MrCollectionDS extends DataSource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@net7/boilerplate-muruca",
3
- "version": "5.2.1",
3
+ "version": "5.2.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.11",
6
6
  "@angular/core": "^17.3.11"
@@ -150,21 +150,22 @@
150
150
  }
151
151
 
152
152
  /* Center alignment, 700px max width */
153
- .aligncenter {
153
+ &.aligncenter {
154
154
  text-align: center;
155
155
 
156
156
  img {
157
157
  max-width: $page-readable-width;
158
158
  }
159
+
159
160
  }
160
161
 
161
162
  /* Left alignment */
162
- .alignleft {
163
+ &.alignleft {
163
164
  float: left;
164
165
  }
165
166
 
166
167
  /* Right alignment */
167
- .alignright {
168
+ &.alignright {
168
169
  float: right;
169
170
  }
170
171