piral-core 1.8.3-beta.7916 → 1.8.3-beta.7924

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-core",
3
- "version": "1.8.3-beta.7916",
3
+ "version": "1.8.3-beta.7924",
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.3-beta.7916",
67
- "piral-debug-utils": "1.8.3-beta.7916",
66
+ "piral-base": "1.8.3-beta.7924",
67
+ "piral-debug-utils": "1.8.3-beta.7924",
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": "43f9a1f40e3e6d2de09de5c40b9ab2424ddbc818"
87
+ "gitHead": "0d07048816a9d439792ef1809dda10576a75044a"
88
88
  }
@@ -2,6 +2,9 @@
2
2
  * The mapping of breakpoints to layout type index.
3
3
  * Choose up to three breakpoints.
4
4
  * In case of no breakpoint a default layout will be chosen.
5
+
6
+ @example
7
+ `['(min-width: 991px)', '(min-width: 481px)', '(max-width: 480px)']` for desktop, tablet, mobile.
5
8
  */
6
9
  export type LayoutBreakpoints = [string?, string?, string?];
7
10