diff --git a/.changeset/fifty-pandas-joke.md b/.changeset/fifty-pandas-joke.md deleted file mode 100644 index 88b0b8920d..0000000000 --- a/.changeset/fifty-pandas-joke.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@twilio-paste/codemods": minor -"@twilio-paste/list": minor -"@twilio-paste/core": minor ---- - -[List] add `OrderedDisplayList`, `OrderedDisplayListItem`, and `OrderedDisplayListHeading` components. - -These new components provide a visually enhanced numbered list to improve the scannability of sequential steps. diff --git a/.changeset/fluffy-grapes-prove.md b/.changeset/fluffy-grapes-prove.md deleted file mode 100644 index 2180166d2e..0000000000 --- a/.changeset/fluffy-grapes-prove.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@twilio-paste/reakit-library": patch -"@twilio-paste/core": patch ---- - -[Reakit Library] fix `PopoverArrow` rendering on theme toggles diff --git a/.changeset/small-lamps-flow.md b/.changeset/small-lamps-flow.md deleted file mode 100644 index 150b71337a..0000000000 --- a/.changeset/small-lamps-flow.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@twilio-paste/core": patch -"@twilio-paste/code-block": patch ---- - -[Codeblock] fix an error when triggering the copy button while using React v18. diff --git a/.changeset/stupid-hats-check.md b/.changeset/stupid-hats-check.md deleted file mode 100644 index 3192c03545..0000000000 --- a/.changeset/stupid-hats-check.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@twilio-paste/spinner": patch -"@twilio-paste/core": patch ---- - -[Spinner] Fix a bug that previously occured when a Safari user zoomed in on a page with a Spinner. The animated track moving around the Spinner circle would lose its center and appear off of the circle. This was due to the fact that Safari does not accept "center" as a value for the `transformOrigin` property. The fix was to remove the extra animations for Safari windows only. diff --git a/packages/paste-codemods/CHANGELOG.md b/packages/paste-codemods/CHANGELOG.md index 9649c28fba..c566277c69 100644 --- a/packages/paste-codemods/CHANGELOG.md +++ b/packages/paste-codemods/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 0.8.0 + +### Minor Changes + +- [`33800d2f9`](https://github.com/twilio-labs/paste/commit/33800d2f9a07114793ab9daa0e52baa4ca2df686) [#3835](https://github.com/twilio-labs/paste/pull/3835) Thanks [@TheSisb](https://github.com/TheSisb)! - [List] add `OrderedDisplayList`, `OrderedDisplayListItem`, and `OrderedDisplayListHeading` components. + + These new components provide a visually enhanced numbered list to improve the scannability of sequential steps. + ## 0.7.0 ### Minor Changes diff --git a/packages/paste-codemods/package.json b/packages/paste-codemods/package.json index 62e98161f3..c94a67d9d8 100644 --- a/packages/paste-codemods/package.json +++ b/packages/paste-codemods/package.json @@ -1,6 +1,6 @@ { "name": "@twilio-paste/codemods", - "version": "0.7.0", + "version": "0.8.0", "status": "production", "description": "A collection of codemods for maintaining projects built with Paste.", "author": "Twilio Inc.", @@ -25,7 +25,7 @@ "@babel/core": "^7.21.4", "@babel/plugin-proposal-object-rest-spread": "^7.20.7", "@babel/preset-env": "^7.21.4", - "@twilio-paste/core": "^20.8.0", + "@twilio-paste/core": "^20.12.0", "tsx": "^4.0.0" } } diff --git a/packages/paste-core/components/code-block/CHANGELOG.md b/packages/paste-core/components/code-block/CHANGELOG.md index 3786945456..dfae329a8c 100644 --- a/packages/paste-core/components/code-block/CHANGELOG.md +++ b/packages/paste-core/components/code-block/CHANGELOG.md @@ -1,5 +1,11 @@ # @twilio-paste/code-block +## 4.1.1 + +### Patch Changes + +- [`9d096e572`](https://github.com/twilio-labs/paste/commit/9d096e5722c236df9cde766efb9c00318c79dba5) [#3841](https://github.com/twilio-labs/paste/pull/3841) Thanks [@TheSisb](https://github.com/TheSisb)! - [Codeblock] fix an error when triggering the copy button while using React v18. + ## 4.1.0 ### Minor Changes diff --git a/packages/paste-core/components/code-block/package.json b/packages/paste-core/components/code-block/package.json index c2c5c999f0..9c61bc889a 100644 --- a/packages/paste-core/components/code-block/package.json +++ b/packages/paste-core/components/code-block/package.json @@ -1,6 +1,6 @@ { "name": "@twilio-paste/code-block", - "version": "4.1.0", + "version": "4.1.1", "category": "data display", "status": "production", "description": "A Code Block is a component used to display readable blocks of code.", @@ -68,9 +68,9 @@ "@twilio-paste/flex": "^8.1.0", "@twilio-paste/heading": "^11.1.0", "@twilio-paste/icons": "^12.2.0", - "@twilio-paste/reakit-library": "^2.1.0", + "@twilio-paste/reakit-library": "^2.1.1", "@twilio-paste/screen-reader-only": "^13.1.0", - "@twilio-paste/spinner": "^14.1.0", + "@twilio-paste/spinner": "^14.1.2", "@twilio-paste/stack": "^8.1.0", "@twilio-paste/style-props": "^9.1.0", "@twilio-paste/styling-library": "^3.0.0", diff --git a/packages/paste-core/components/list/CHANGELOG.md b/packages/paste-core/components/list/CHANGELOG.md index fd836a0d8d..224c980fc4 100644 --- a/packages/paste-core/components/list/CHANGELOG.md +++ b/packages/paste-core/components/list/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 8.2.0 + +### Minor Changes + +- [`33800d2f9`](https://github.com/twilio-labs/paste/commit/33800d2f9a07114793ab9daa0e52baa4ca2df686) [#3835](https://github.com/twilio-labs/paste/pull/3835) Thanks [@TheSisb](https://github.com/TheSisb)! - [List] add `OrderedDisplayList`, `OrderedDisplayListItem`, and `OrderedDisplayListHeading` components. + + These new components provide a visually enhanced numbered list to improve the scannability of sequential steps. + ## 8.1.2 ### Patch Changes diff --git a/packages/paste-core/components/list/package.json b/packages/paste-core/components/list/package.json index 26e8a04414..8809ee787b 100644 --- a/packages/paste-core/components/list/package.json +++ b/packages/paste-core/components/list/package.json @@ -1,6 +1,6 @@ { "name": "@twilio-paste/list", - "version": "8.1.2", + "version": "8.2.0", "category": "typography", "status": "production", "description": "A List is a set of text objects in a bulleted or numbered format.", diff --git a/packages/paste-core/components/spinner/CHANGELOG.md b/packages/paste-core/components/spinner/CHANGELOG.md index 30e28ecdc7..306a93e2d7 100644 --- a/packages/paste-core/components/spinner/CHANGELOG.md +++ b/packages/paste-core/components/spinner/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 14.1.2 + +### Patch Changes + +- [`c020edefc`](https://github.com/twilio-labs/paste/commit/c020edefcf15f5cb227e79248702e2a72be82e88) [#3834](https://github.com/twilio-labs/paste/pull/3834) Thanks [@nkrantz](https://github.com/nkrantz)! - [Spinner] Fix a bug that previously occured when a Safari user zoomed in on a page with a Spinner. The animated track moving around the Spinner circle would lose its center and appear off of the circle. This was due to the fact that Safari does not accept "center" as a value for the `transformOrigin` property. The fix was to remove the extra animations for Safari windows only. + ## 14.1.1 ### Patch Changes diff --git a/packages/paste-core/components/spinner/package.json b/packages/paste-core/components/spinner/package.json index ab6981a90b..7e3f88bd9b 100644 --- a/packages/paste-core/components/spinner/package.json +++ b/packages/paste-core/components/spinner/package.json @@ -1,6 +1,6 @@ { "name": "@twilio-paste/spinner", - "version": "14.1.1", + "version": "14.1.2", "category": "feedback", "status": "production", "description": "A Spinner is an animation that communicates a loading state to users.", diff --git a/packages/paste-core/core-bundle/CHANGELOG.md b/packages/paste-core/core-bundle/CHANGELOG.md index 883751d42f..e6016a75d7 100644 --- a/packages/paste-core/core-bundle/CHANGELOG.md +++ b/packages/paste-core/core-bundle/CHANGELOG.md @@ -1,5 +1,27 @@ # Change Log +## 20.12.0 + +### Minor Changes + +- [`33800d2f9`](https://github.com/twilio-labs/paste/commit/33800d2f9a07114793ab9daa0e52baa4ca2df686) [#3835](https://github.com/twilio-labs/paste/pull/3835) Thanks [@TheSisb](https://github.com/TheSisb)! - [List] add `OrderedDisplayList`, `OrderedDisplayListItem`, and `OrderedDisplayListHeading` components. + + These new components provide a visually enhanced numbered list to improve the scannability of sequential steps. + +### Patch Changes + +- [`9ab72f5b6`](https://github.com/twilio-labs/paste/commit/9ab72f5b6f84b3c7100c5dee51b6c6d9a80fbc6c) [#3829](https://github.com/twilio-labs/paste/pull/3829) Thanks [@TheSisb](https://github.com/TheSisb)! - [Reakit Library] fix `PopoverArrow` rendering on theme toggles + +* [`9d096e572`](https://github.com/twilio-labs/paste/commit/9d096e5722c236df9cde766efb9c00318c79dba5) [#3841](https://github.com/twilio-labs/paste/pull/3841) Thanks [@TheSisb](https://github.com/TheSisb)! - [Codeblock] fix an error when triggering the copy button while using React v18. + +- [`c020edefc`](https://github.com/twilio-labs/paste/commit/c020edefcf15f5cb227e79248702e2a72be82e88) [#3834](https://github.com/twilio-labs/paste/pull/3834) Thanks [@nkrantz](https://github.com/nkrantz)! - [Spinner] Fix a bug that previously occured when a Safari user zoomed in on a page with a Spinner. The animated track moving around the Spinner circle would lose its center and appear off of the circle. This was due to the fact that Safari does not accept "center" as a value for the `transformOrigin` property. The fix was to remove the extra animations for Safari windows only. + +- Updated dependencies [[`33800d2f9`](https://github.com/twilio-labs/paste/commit/33800d2f9a07114793ab9daa0e52baa4ca2df686), [`9ab72f5b6`](https://github.com/twilio-labs/paste/commit/9ab72f5b6f84b3c7100c5dee51b6c6d9a80fbc6c), [`9d096e572`](https://github.com/twilio-labs/paste/commit/9d096e5722c236df9cde766efb9c00318c79dba5), [`c020edefc`](https://github.com/twilio-labs/paste/commit/c020edefcf15f5cb227e79248702e2a72be82e88)]: + - @twilio-paste/list@8.2.0 + - @twilio-paste/reakit-library@2.1.1 + - @twilio-paste/code-block@4.1.1 + - @twilio-paste/spinner@14.1.2 + ## 20.11.0 ### Minor Changes diff --git a/packages/paste-core/core-bundle/package.json b/packages/paste-core/core-bundle/package.json index d8417cf259..546d2e2c41 100644 --- a/packages/paste-core/core-bundle/package.json +++ b/packages/paste-core/core-bundle/package.json @@ -1,6 +1,6 @@ { "name": "@twilio-paste/core", - "version": "20.11.0", + "version": "20.12.0", "status": "production", "description": "Core contains all the packages from the Paste design system.", "author": "Twilio Inc.", @@ -90,7 +90,7 @@ "@twilio-paste/chat-log": "^5.2.1", "@twilio-paste/checkbox": "^13.1.1", "@twilio-paste/clipboard-copy-library": "^3.0.0", - "@twilio-paste/code-block": "^4.1.0", + "@twilio-paste/code-block": "^4.1.1", "@twilio-paste/code-editor-library": "^2.0.0", "@twilio-paste/color-contrast-utils": "^5.0.0", "@twilio-paste/combobox": "^16.2.1", @@ -123,7 +123,7 @@ "@twilio-paste/input-box": "^10.1.1", "@twilio-paste/label": "^13.1.1", "@twilio-paste/lexical-library": "^4.1.0", - "@twilio-paste/list": "^8.1.2", + "@twilio-paste/list": "^8.2.0", "@twilio-paste/listbox-primitive": "^3.0.1", "@twilio-paste/media-object": "^10.1.0", "@twilio-paste/menu": "^14.1.3", @@ -144,7 +144,7 @@ "@twilio-paste/radio-group": "^13.1.1", "@twilio-paste/react-spectrum-library": "^2.2.0", "@twilio-paste/react-textarea-autosize-library": "^3.0.0", - "@twilio-paste/reakit-library": "^2.1.0", + "@twilio-paste/reakit-library": "^2.1.1", "@twilio-paste/screen-reader-only": "^13.1.1", "@twilio-paste/select": "^12.1.2", "@twilio-paste/separator": "^8.1.1", @@ -153,7 +153,7 @@ "@twilio-paste/sidebar": "^1.1.1", "@twilio-paste/skeleton-loader": "^6.1.1", "@twilio-paste/slider": "^3.0.1", - "@twilio-paste/spinner": "^14.1.1", + "@twilio-paste/spinner": "^14.1.2", "@twilio-paste/stack": "^8.1.0", "@twilio-paste/status": "^2.1.1", "@twilio-paste/style-props": "^9.1.1", diff --git a/packages/paste-libraries/reakit/CHANGELOG.md b/packages/paste-libraries/reakit/CHANGELOG.md index 7e2b609b4f..7eb676474f 100644 --- a/packages/paste-libraries/reakit/CHANGELOG.md +++ b/packages/paste-libraries/reakit/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 2.1.1 + +### Patch Changes + +- [`9ab72f5b6`](https://github.com/twilio-labs/paste/commit/9ab72f5b6f84b3c7100c5dee51b6c6d9a80fbc6c) [#3829](https://github.com/twilio-labs/paste/pull/3829) Thanks [@TheSisb](https://github.com/TheSisb)! - [Reakit Library] fix `PopoverArrow` rendering on theme toggles + ## 2.1.0 ### Minor Changes diff --git a/packages/paste-libraries/reakit/package.json b/packages/paste-libraries/reakit/package.json index e9d2e0a4fe..f3c7a15a02 100644 --- a/packages/paste-libraries/reakit/package.json +++ b/packages/paste-libraries/reakit/package.json @@ -1,6 +1,6 @@ { "name": "@twilio-paste/reakit-library", - "version": "2.1.0", + "version": "2.1.1", "category": "library", "status": "production", "description": "The reakit third-party library.", diff --git a/yarn.lock b/yarn.lock index fdcb27b88f..5d5fac83e8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11980,7 +11980,7 @@ __metadata: languageName: unknown linkType: soft -"@twilio-paste/code-block@^4.1.0, @twilio-paste/code-block@workspace:packages/paste-core/components/code-block": +"@twilio-paste/code-block@^4.1.0, @twilio-paste/code-block@^4.1.1, @twilio-paste/code-block@workspace:packages/paste-core/components/code-block": version: 0.0.0-use.local resolution: "@twilio-paste/code-block@workspace:packages/paste-core/components/code-block" dependencies: @@ -11995,9 +11995,9 @@ __metadata: "@twilio-paste/flex": ^8.1.0 "@twilio-paste/heading": ^11.1.0 "@twilio-paste/icons": ^12.2.0 - "@twilio-paste/reakit-library": ^2.1.0 + "@twilio-paste/reakit-library": ^2.1.1 "@twilio-paste/screen-reader-only": ^13.1.0 - "@twilio-paste/spinner": ^14.1.0 + "@twilio-paste/spinner": ^14.1.2 "@twilio-paste/stack": ^8.1.0 "@twilio-paste/style-props": ^9.1.0 "@twilio-paste/styling-library": ^3.0.0 @@ -12071,7 +12071,7 @@ __metadata: "@babel/core": ^7.21.4 "@babel/plugin-proposal-object-rest-spread": ^7.20.7 "@babel/preset-env": ^7.21.4 - "@twilio-paste/core": ^20.8.0 + "@twilio-paste/core": ^20.12.0 chalk: 4.1.2 execa: 3.2.0 globby: "npm:globby@10.0.1" @@ -12190,7 +12190,7 @@ __metadata: languageName: unknown linkType: soft -"@twilio-paste/core@^20.0.0, @twilio-paste/core@^20.4.0, @twilio-paste/core@^20.8.0, @twilio-paste/core@workspace:packages/paste-core/core-bundle": +"@twilio-paste/core@^20.0.0, @twilio-paste/core@^20.12.0, @twilio-paste/core@^20.4.0, @twilio-paste/core@workspace:packages/paste-core/core-bundle": version: 0.0.0-use.local resolution: "@twilio-paste/core@workspace:packages/paste-core/core-bundle" dependencies: @@ -12213,7 +12213,7 @@ __metadata: "@twilio-paste/chat-log": ^5.2.1 "@twilio-paste/checkbox": ^13.1.1 "@twilio-paste/clipboard-copy-library": ^3.0.0 - "@twilio-paste/code-block": ^4.1.0 + "@twilio-paste/code-block": ^4.1.1 "@twilio-paste/code-editor-library": ^2.0.0 "@twilio-paste/color-contrast-utils": ^5.0.0 "@twilio-paste/combobox": ^16.2.1 @@ -12247,7 +12247,7 @@ __metadata: "@twilio-paste/input-box": ^10.1.1 "@twilio-paste/label": ^13.1.1 "@twilio-paste/lexical-library": ^4.1.0 - "@twilio-paste/list": ^8.1.2 + "@twilio-paste/list": ^8.2.0 "@twilio-paste/listbox-primitive": ^3.0.1 "@twilio-paste/media-object": ^10.1.0 "@twilio-paste/menu": ^14.1.3 @@ -12268,7 +12268,7 @@ __metadata: "@twilio-paste/radio-group": ^13.1.1 "@twilio-paste/react-spectrum-library": ^2.2.0 "@twilio-paste/react-textarea-autosize-library": ^3.0.0 - "@twilio-paste/reakit-library": ^2.1.0 + "@twilio-paste/reakit-library": ^2.1.1 "@twilio-paste/screen-reader-only": ^13.1.1 "@twilio-paste/select": ^12.1.2 "@twilio-paste/separator": ^8.1.1 @@ -12277,7 +12277,7 @@ __metadata: "@twilio-paste/sidebar": ^1.1.1 "@twilio-paste/skeleton-loader": ^6.1.1 "@twilio-paste/slider": ^3.0.1 - "@twilio-paste/spinner": ^14.1.1 + "@twilio-paste/spinner": ^14.1.2 "@twilio-paste/stack": ^8.1.0 "@twilio-paste/status": ^2.1.1 "@twilio-paste/style-props": ^9.1.1 @@ -13467,7 +13467,7 @@ __metadata: languageName: unknown linkType: soft -"@twilio-paste/list@^8.1.2, @twilio-paste/list@workspace:packages/paste-core/components/list": +"@twilio-paste/list@^8.1.2, @twilio-paste/list@^8.2.0, @twilio-paste/list@workspace:packages/paste-core/components/list": version: 0.0.0-use.local resolution: "@twilio-paste/list@workspace:packages/paste-core/components/list" dependencies: @@ -14350,7 +14350,7 @@ __metadata: languageName: unknown linkType: soft -"@twilio-paste/reakit-library@^2.0.0, @twilio-paste/reakit-library@^2.1.0, @twilio-paste/reakit-library@workspace:packages/paste-libraries/reakit": +"@twilio-paste/reakit-library@^2.0.0, @twilio-paste/reakit-library@^2.1.0, @twilio-paste/reakit-library@^2.1.1, @twilio-paste/reakit-library@workspace:packages/paste-libraries/reakit": version: 0.0.0-use.local resolution: "@twilio-paste/reakit-library@workspace:packages/paste-libraries/reakit" dependencies: @@ -14723,7 +14723,7 @@ __metadata: languageName: unknown linkType: soft -"@twilio-paste/spinner@^14.0.0, @twilio-paste/spinner@^14.1.0, @twilio-paste/spinner@^14.1.1, @twilio-paste/spinner@workspace:packages/paste-core/components/spinner": +"@twilio-paste/spinner@^14.0.0, @twilio-paste/spinner@^14.1.0, @twilio-paste/spinner@^14.1.1, @twilio-paste/spinner@^14.1.2, @twilio-paste/spinner@workspace:packages/paste-core/components/spinner": version: 0.0.0-use.local resolution: "@twilio-paste/spinner@workspace:packages/paste-core/components/spinner" dependencies: