diff --git a/.changeset/itchy-taxis-rhyme.md b/.changeset/itchy-taxis-rhyme.md deleted file mode 100644 index 7cc476a7..00000000 --- a/.changeset/itchy-taxis-rhyme.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -'playroom': minor ---- - -Add support for specifying default subsets of themes and screen widths via the config. - -#### Example usage - -```js -// playroom.config.js -module.exports = { - ..., - defaultVisibleWidths: [ - // subset of widths to display on first load - ], - defaultVisibleThemes: [ - // subset of themes to display on first load - ], -} -``` diff --git a/.changeset/wicked-chairs-wait.md b/.changeset/wicked-chairs-wait.md deleted file mode 100644 index 249a0dd9..00000000 --- a/.changeset/wicked-chairs-wait.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'playroom': minor ---- - -Add ability to customise tab titles via a "Title" section in the settings panel. diff --git a/.changeset/young-turkeys-turn.md b/.changeset/young-turkeys-turn.md deleted file mode 100644 index b71d975b..00000000 --- a/.changeset/young-turkeys-turn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'playroom': patch ---- - -Fix bug in "Wrap selection in tag" command that caused the start cursor to occasionally be placed in the wrong postion. diff --git a/CHANGELOG.md b/CHANGELOG.md index e26b5916..e3756638 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # playroom +## 0.35.0 + +### Minor Changes + +- ad60e01: Add support for specifying default subsets of themes and screen widths via the config. + + #### Example usage + + ```js + // playroom.config.js + module.exports = { + ..., + defaultVisibleWidths: [ + // subset of widths to display on first load + ], + defaultVisibleThemes: [ + // subset of themes to display on first load + ], + } + ``` + +- f45dd04: Add ability to customise tab titles via a "Title" section in the settings panel. + +### Patch Changes + +- f491105: Fix bug in "Wrap selection in tag" command that caused the start cursor to occasionally be placed in the wrong postion. + ## 0.34.2 ### Patch Changes diff --git a/package.json b/package.json index 339c13de..41d62122 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "playroom", - "version": "0.34.2", + "version": "0.35.0", "description": "Design with code, powered by your own component library", "main": "utils/index.js", "types": "utils/index.d.ts",