Skip to content

Commit

Permalink
release: v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvxd committed Jul 4, 2023
1 parent f47482e commit ac34b99
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 8 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

<!--__CHANGELOG_ENTRY__-->

## [0.2.0](https://github.com/measuredco/puck/compare/v0.1.3...v0.2.0) (2023-07-04)


### Bug Fixes

* inject react into libraries ([7e10d91](https://github.com/measuredco/puck/commit/7e10d9141901aaf79ae4ebfa3a7b60b589c6c715))
* render drag and drop correctly when using margins ([f88025b](https://github.com/measuredco/puck/commit/f88025bf27479036426305a1004acfe8f0ab6644))


### Features

* add icons to inputs ([f47482e](https://github.com/measuredco/puck/commit/f47482e8cabd334360666ea90d2e6a12b3648cf9))
* improve UI for fields ([aa0d2fe](https://github.com/measuredco/puck/commit/aa0d2fe56ff633b9c2cff2023ae00c8b9ec04df3))
* rename "group" field type to "array" ([4f99c7d](https://github.com/measuredco/puck/commit/4f99c7d761b8e1cfa280fb5e74f6f369be84d7a2))




## [0.1.6](https://github.com/measuredco/puck/compare/v0.1.3...v0.1.6) (2023-07-04)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"packages/core",
"packages/plugin-heading-analyzer"
],
"version": "0.1.6",
"version": "0.2.0",
"npmClient": "yarn"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
"packages/*",
"recipes/*"
],
"version": "0.1.6"
"version": "0.2.0"
}
2 changes: 1 addition & 1 deletion packages/adaptor-strapi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@measured/puck-adaptor-strapi",
"version": "0.1.6",
"version": "0.2.0",
"private": false,
"main": "./index.ts",
"types": "./index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@measured/puck",
"version": "0.1.6",
"version": "0.2.0",
"private": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-heading-analyzer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@measured/puck-plugin-heading-analyzer",
"version": "0.1.6",
"version": "0.2.0",
"private": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand All @@ -14,7 +14,7 @@
"dist"
],
"devDependencies": {
"@measured/puck": "^0.1.6",
"@measured/puck": "^0.2.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"eslint": "^7.32.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-heading-analyzer/src/HeadingAnalyzer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function buildHierarchy(): Block[] {
return root.children;
}

const HeadingOutlineAnalyzer = ({
const HeadingOutlineAnalyer = ({
children,
data,
}: {
Expand Down Expand Up @@ -195,7 +195,7 @@ const HeadingOutlineAnalyzer = ({
};

const HeadingAnalyzer: Plugin = {
renderPageFields: HeadingOutlineAnalyzer,
renderPageFields: HeadingOutlineAnalyer,
};

export default HeadingAnalyzer;

0 comments on commit ac34b99

Please sign in to comment.