@1024pix/pix-ui 51.6.0 → 52.0.0

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,3 +1,5 @@
1
1
  <div class={{this.classNames}} ...attributes>
2
- {{yield}}
2
+ {{yield to="navigation"}}
3
+ {{yield to="main"}}
4
+ {{yield to="footer"}}
3
5
  </div>
@@ -1,9 +1,26 @@
1
1
  .pix-app-layout {
2
2
  display: grid;
3
+ grid-template-areas:
4
+ "navigation main main"
5
+ "navigation footer footer";
6
+ grid-template-rows: 1fr min-content;
3
7
  grid-template-columns: min-content 1fr;
4
8
  gap: var(--pix-spacing-6x);
9
+ min-height: 100dvh;
5
10
  padding: var(--pix-spacing-6x);
6
11
 
12
+ & > *:first-child {
13
+ grid-area: navigation;
14
+ }
15
+
16
+ & > *:nth-child(2) {
17
+ grid-area: main;
18
+ }
19
+
20
+ & > *:nth-child(3) {
21
+ grid-area: footer;
22
+ }
23
+
7
24
  @include device-is('mobile') {
8
25
  display: block
9
26
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1024pix/pix-ui",
3
- "version": "51.6.0",
3
+ "version": "52.0.0",
4
4
  "description": "Pix-UI is the implementation of Pix design principles and guidelines for its products.",
5
5
  "keywords": [
6
6
  "ember-addon"