@pantheon-systems/create-p1-starter-kit 0.4.3 → 0.4.4

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": "@pantheon-systems/create-p1-starter-kit",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Scaffold a new P1 starter project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,5 +1,14 @@
1
1
  # @pantheon-systems/p1-starter
2
2
 
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @pantheon-systems/puck-css@0.4.4
9
+ - @pantheon-systems/p1-next-sdk@0.4.4
10
+ - @pantheon-systems/css-client@0.4.4
11
+
3
12
  ## 1.0.2
4
13
 
5
14
  ### Patch Changes
@@ -10,6 +10,7 @@ import {
10
10
  useP1Plugins,
11
11
  wrapConfigForEditorPreview,
12
12
  P1QueryProvider,
13
+ editorPathHref,
13
14
  } from "@pantheon-systems/puck-css";
14
15
  import { P1NextRouterProvider } from "@pantheon-systems/p1-next-sdk";
15
16
  import type { Checkpoint } from "@pantheon-systems/puck-css";
@@ -129,7 +130,7 @@ function EditorContent({
129
130
 
130
131
  const handleDocumentSelect = useCallback(
131
132
  (docPath: string) => {
132
- router.push(`/p1/${docPath}`);
133
+ router.push(editorPathHref(docPath));
133
134
  },
134
135
  [router],
135
136
  );
@@ -11,9 +11,9 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@pantheon-systems/cpub-react-sdk": "^5.2.1",
14
- "@pantheon-systems/css-client": "^0.4.3",
15
- "@pantheon-systems/p1-next-sdk": "^0.4.3",
16
- "@pantheon-systems/puck-css": "^0.4.3",
14
+ "@pantheon-systems/css-client": "^0.4.4",
15
+ "@pantheon-systems/p1-next-sdk": "^0.4.4",
16
+ "@pantheon-systems/puck-css": "^0.4.4",
17
17
  "@puckeditor/core": "^0.21.1",
18
18
  "@tailwindcss/postcss": "^4.2.2",
19
19
  "classnames": "^2.5.1",