@akinon/pz-theme 2.0.0-beta.27 → 2.0.1
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/CHANGELOG.md +29 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @akinon/pz-theme
|
|
2
2
|
|
|
3
|
+
## 2.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @akinon/next@2.0.1
|
|
8
|
+
|
|
9
|
+
## 2.0.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 5d44ff77: ZERO-4312: Extract ThemePlaceholder system into new @akinon/pz-theme package and strip native widget code
|
|
14
|
+
|
|
15
|
+
Introduce a dedicated `@akinon/pz-theme` package that contains the ThemePlaceholder system (CMS-driven sections/blocks, designer features, utilities). Remove native widget registration infrastructure from both `@akinon/pz-theme` and `projectzeronext` so the beta branch can be merged to main with only stable ThemePlaceholder functionality. Native widget integrations will be reintroduced via `@akinon/pz-theme` once they stabilize on the `theme-editor` branch.
|
|
16
|
+
|
|
17
|
+
Consumers should update imports:
|
|
18
|
+
|
|
19
|
+
- `@akinon/next/components/theme-editor/*` -> `@akinon/pz-theme/src/*`
|
|
20
|
+
- Add `@akinon/pz-theme` to package.json dependencies (matching `@akinon/next` version)
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [05c19ad0]
|
|
23
|
+
- Updated dependencies [09ccd457]
|
|
24
|
+
- Updated dependencies [cf3a9901]
|
|
25
|
+
- Updated dependencies [9076e50e]
|
|
26
|
+
- Updated dependencies [d0e1ef78]
|
|
27
|
+
- Updated dependencies [1d10dde2]
|
|
28
|
+
- Updated dependencies [74c6a237]
|
|
29
|
+
- Updated dependencies [5d44ff77]
|
|
30
|
+
- @akinon/next@2.0.0
|
|
31
|
+
|
|
3
32
|
## 2.0.0-beta.27
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akinon/pz-theme",
|
|
3
3
|
"description": "Theme package for Project Zero Next — ThemePlaceholder system and theme editor infrastructure",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@akinon/next": "2.0.
|
|
8
|
+
"@akinon/next": "2.0.1",
|
|
9
9
|
"react": "^18.0.0 || ^19.0.0",
|
|
10
10
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
11
11
|
},
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"tailwind-merge": "^2.5.4"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@akinon/next": "2.0.
|
|
18
|
+
"@akinon/next": "2.0.1",
|
|
19
19
|
"@types/node": "^18.7.8",
|
|
20
20
|
"@types/react": "^18.0.17",
|
|
21
21
|
"@types/react-dom": "^18.0.6",
|