@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.
- package/esm2022/lib/data-sources/collection.ds.mjs +17 -2
- package/esm2022/lib/data-sources/static-metadata.ds.mjs +11 -5
- package/esm2022/lib/layouts/resource-layout/resource-layout.eh.mjs +9 -9
- package/fesm2022/net7-boilerplate-muruca.mjs +33 -12
- package/fesm2022/net7-boilerplate-muruca.mjs.map +1 -1
- package/lib/data-sources/collection.ds.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/styles/muruca/components/_wp-content.scss +4 -3
|
@@ -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
|
@@ -150,21 +150,22 @@
|
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
/* Center alignment, 700px max width */
|
|
153
|
-
|
|
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
|
-
|
|
163
|
+
&.alignleft {
|
|
163
164
|
float: left;
|
|
164
165
|
}
|
|
165
166
|
|
|
166
167
|
/* Right alignment */
|
|
167
|
-
|
|
168
|
+
&.alignright {
|
|
168
169
|
float: right;
|
|
169
170
|
}
|
|
170
171
|
|