piral-core 1.8.2 → 1.8.3-beta.7883

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,7 +1,9 @@
1
1
  /**
2
2
  * The mapping of breakpoints to layout type index.
3
+ * Choose up to three breakpoints.
4
+ * In case of no breakpoint a default layout will be chosen.
3
5
  */
4
- export type LayoutBreakpoints = [string, string, string];
6
+ export type LayoutBreakpoints = [string?, string?, string?];
5
7
  /**
6
8
  * The different known layout types.
7
9
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-core",
3
- "version": "1.8.2",
3
+ "version": "1.8.3-beta.7883",
4
4
  "description": "The core library for creating a Piral instance.",
5
5
  "keywords": [
6
6
  "portal",
@@ -63,8 +63,8 @@
63
63
  "test": "echo \"Error: run tests from root\" && exit 1"
64
64
  },
65
65
  "dependencies": {
66
- "piral-base": "^1.8.2",
67
- "piral-debug-utils": "^1.8.2",
66
+ "piral-base": "1.8.3-beta.7883",
67
+ "piral-debug-utils": "1.8.3-beta.7883",
68
68
  "zustand": "^3.0.0"
69
69
  },
70
70
  "devDependencies": {
@@ -84,5 +84,5 @@
84
84
  "react-router-dom",
85
85
  "tslib"
86
86
  ],
87
- "gitHead": "e0e2400ff9b12c033dae6b1b63d9e5d4e5667fbc"
87
+ "gitHead": "4a8bf2806e87bbb1c0897fbb0f3818433f90bb30"
88
88
  }
@@ -1,7 +1,9 @@
1
1
  /**
2
2
  * The mapping of breakpoints to layout type index.
3
+ * Choose up to three breakpoints.
4
+ * In case of no breakpoint a default layout will be chosen.
3
5
  */
4
- export type LayoutBreakpoints = [string, string, string];
6
+ export type LayoutBreakpoints = [string?, string?, string?];
5
7
 
6
8
  /**
7
9
  * The different known layout types.