diff --git a/.changeset/eighty-snails-watch.md b/.changeset/eighty-snails-watch.md deleted file mode 100644 index 5cdbc7c84e..0000000000 --- a/.changeset/eighty-snails-watch.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@twilio-paste/toast": minor -"@twilio-paste/core": minor ---- - -[Toast]: adds ability to display multiple toasts from a single call diff --git a/.changeset/four-bulldogs-join.md b/.changeset/four-bulldogs-join.md deleted file mode 100644 index f648a0f1ab..0000000000 --- a/.changeset/four-bulldogs-join.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@twilio-paste/date-picker": patch -"@twilio-paste/core": patch ---- - -[DatePicker] limit the max year to 9999 by default. This is overwritable. diff --git a/.changeset/healthy-bulldogs-matter.md b/.changeset/healthy-bulldogs-matter.md deleted file mode 100644 index f8c4d0d076..0000000000 --- a/.changeset/healthy-bulldogs-matter.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@twilio-paste/textarea": minor -"@twilio-paste/core": minor ---- - -[Textarea] add `maxRows` prop which sets a max height the textarea can grow based on its content. diff --git a/packages/paste-core/components/date-picker/CHANGELOG.md b/packages/paste-core/components/date-picker/CHANGELOG.md index 912e933fd5..5aedb28d51 100644 --- a/packages/paste-core/components/date-picker/CHANGELOG.md +++ b/packages/paste-core/components/date-picker/CHANGELOG.md @@ -1,5 +1,11 @@ # @twilio-paste/date-picker +## 6.1.1 + +### Patch Changes + +- [`8d042fe67`](https://github.com/twilio-labs/paste/commit/8d042fe67a6dc1b451af4be8156bd009309b6fd9) [#3747](https://github.com/twilio-labs/paste/pull/3747) Thanks [@TheSisb](https://github.com/TheSisb)! - [DatePicker] limit the max year to 9999 by default. This is overwritable. + ## 6.1.0 ### Minor Changes diff --git a/packages/paste-core/components/date-picker/package.json b/packages/paste-core/components/date-picker/package.json index 9bc1d812ff..1abe9d011b 100644 --- a/packages/paste-core/components/date-picker/package.json +++ b/packages/paste-core/components/date-picker/package.json @@ -1,6 +1,6 @@ { "name": "@twilio-paste/date-picker", - "version": "6.1.0", + "version": "6.1.1", "category": "user input", "status": "production", "description": "A Date Picker is a form element used to select a date.", diff --git a/packages/paste-core/components/textarea/CHANGELOG.md b/packages/paste-core/components/textarea/CHANGELOG.md index 68f6f88b5c..8d6e1e7dff 100644 --- a/packages/paste-core/components/textarea/CHANGELOG.md +++ b/packages/paste-core/components/textarea/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 10.2.0 + +### Minor Changes + +- [`3c3ec9b76`](https://github.com/twilio-labs/paste/commit/3c3ec9b765e22892674a09132987017881724e89) [#3746](https://github.com/twilio-labs/paste/pull/3746) Thanks [@TheSisb](https://github.com/TheSisb)! - [Textarea] add `maxRows` prop which sets a max height the textarea can grow based on its content. + ## 10.1.1 ### Patch Changes diff --git a/packages/paste-core/components/textarea/package.json b/packages/paste-core/components/textarea/package.json index 61030d0c69..27fcecb38e 100644 --- a/packages/paste-core/components/textarea/package.json +++ b/packages/paste-core/components/textarea/package.json @@ -1,6 +1,6 @@ { "name": "@twilio-paste/textarea", - "version": "10.1.1", + "version": "10.2.0", "category": "user input", "status": "production", "description": "A Textarea is a form element that allows users to enter text on multiple lines.", diff --git a/packages/paste-core/components/toast/CHANGELOG.md b/packages/paste-core/components/toast/CHANGELOG.md index 335c9f3515..82589004b9 100644 --- a/packages/paste-core/components/toast/CHANGELOG.md +++ b/packages/paste-core/components/toast/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 12.2.0 + +### Minor Changes + +- [`33116f9c9`](https://github.com/twilio-labs/paste/commit/33116f9c9ef5211959dd844668c803095d202098) [#3749](https://github.com/twilio-labs/paste/pull/3749) Thanks [@SiTaggart](https://github.com/SiTaggart)! - [Toast]: adds ability to display multiple toasts from a single call + ## 12.1.1 ### Patch Changes diff --git a/packages/paste-core/components/toast/package.json b/packages/paste-core/components/toast/package.json index 7b2e6c119b..6b9a80fb25 100644 --- a/packages/paste-core/components/toast/package.json +++ b/packages/paste-core/components/toast/package.json @@ -1,6 +1,6 @@ { "name": "@twilio-paste/toast", - "version": "12.1.1", + "version": "12.2.0", "category": "feedback", "status": "production", "description": "A Toast is an animated, temporary banner that communicates an immediate and direct response to a user action.", diff --git a/packages/paste-core/core-bundle/CHANGELOG.md b/packages/paste-core/core-bundle/CHANGELOG.md index 7959a01c70..f75ae06f7e 100644 --- a/packages/paste-core/core-bundle/CHANGELOG.md +++ b/packages/paste-core/core-bundle/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## 20.9.0 + +### Minor Changes + +- [`33116f9c9`](https://github.com/twilio-labs/paste/commit/33116f9c9ef5211959dd844668c803095d202098) [#3749](https://github.com/twilio-labs/paste/pull/3749) Thanks [@SiTaggart](https://github.com/SiTaggart)! - [Toast]: adds ability to display multiple toasts from a single call + +* [`3c3ec9b76`](https://github.com/twilio-labs/paste/commit/3c3ec9b765e22892674a09132987017881724e89) [#3746](https://github.com/twilio-labs/paste/pull/3746) Thanks [@TheSisb](https://github.com/TheSisb)! - [Textarea] add `maxRows` prop which sets a max height the textarea can grow based on its content. + +### Patch Changes + +- [`8d042fe67`](https://github.com/twilio-labs/paste/commit/8d042fe67a6dc1b451af4be8156bd009309b6fd9) [#3747](https://github.com/twilio-labs/paste/pull/3747) Thanks [@TheSisb](https://github.com/TheSisb)! - [DatePicker] limit the max year to 9999 by default. This is overwritable. + +- Updated dependencies [[`33116f9c9`](https://github.com/twilio-labs/paste/commit/33116f9c9ef5211959dd844668c803095d202098), [`8d042fe67`](https://github.com/twilio-labs/paste/commit/8d042fe67a6dc1b451af4be8156bd009309b6fd9), [`3c3ec9b76`](https://github.com/twilio-labs/paste/commit/3c3ec9b765e22892674a09132987017881724e89)]: + - @twilio-paste/toast@12.2.0 + - @twilio-paste/date-picker@6.1.1 + - @twilio-paste/textarea@10.2.0 + ## 20.8.0 ### Minor Changes diff --git a/packages/paste-core/core-bundle/package.json b/packages/paste-core/core-bundle/package.json index 19749ddd21..277daf3f70 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.8.0", + "version": "20.9.0", "status": "production", "description": "Core contains all the packages from the Paste design system.", "author": "Twilio Inc.", @@ -98,7 +98,7 @@ "@twilio-paste/customization": "^8.2.0", "@twilio-paste/data-grid": "^8.3.0", "@twilio-paste/data-visualization-library": "^5.0.0", - "@twilio-paste/date-picker": "^6.1.0", + "@twilio-paste/date-picker": "^6.1.1", "@twilio-paste/description-list": "^4.2.0", "@twilio-paste/design-tokens": "^10.4.1", "@twilio-paste/detail-text": "^3.1.0", @@ -165,10 +165,10 @@ "@twilio-paste/tabs": "^8.2.1", "@twilio-paste/tabs-primitive": "^2.0.1", "@twilio-paste/text": "^10.1.1", - "@twilio-paste/textarea": "^10.1.1", + "@twilio-paste/textarea": "^10.2.0", "@twilio-paste/theme": "^11.1.0", "@twilio-paste/time-picker": "^6.1.1", - "@twilio-paste/toast": "^12.1.1", + "@twilio-paste/toast": "^12.2.0", "@twilio-paste/tooltip": "^11.1.1", "@twilio-paste/tooltip-primitive": "^2.0.1", "@twilio-paste/topbar": "^1.2.0", diff --git a/yarn.lock b/yarn.lock index b92e3e2f31..b83ec36c9a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12221,7 +12221,7 @@ __metadata: "@twilio-paste/customization": ^8.2.0 "@twilio-paste/data-grid": ^8.3.0 "@twilio-paste/data-visualization-library": ^5.0.0 - "@twilio-paste/date-picker": ^6.1.0 + "@twilio-paste/date-picker": ^6.1.1 "@twilio-paste/description-list": ^4.2.0 "@twilio-paste/design-tokens": ^10.4.1 "@twilio-paste/detail-text": ^3.1.0 @@ -12289,10 +12289,10 @@ __metadata: "@twilio-paste/tabs": ^8.2.1 "@twilio-paste/tabs-primitive": ^2.0.1 "@twilio-paste/text": ^10.1.1 - "@twilio-paste/textarea": ^10.1.1 + "@twilio-paste/textarea": ^10.2.0 "@twilio-paste/theme": ^11.1.0 "@twilio-paste/time-picker": ^6.1.1 - "@twilio-paste/toast": ^12.1.1 + "@twilio-paste/toast": ^12.2.0 "@twilio-paste/tooltip": ^11.1.1 "@twilio-paste/tooltip-primitive": ^2.0.1 "@twilio-paste/topbar": ^1.2.0 @@ -12438,7 +12438,7 @@ __metadata: languageName: unknown linkType: soft -"@twilio-paste/date-picker@^6.1.0, @twilio-paste/date-picker@workspace:packages/paste-core/components/date-picker": +"@twilio-paste/date-picker@^6.1.0, @twilio-paste/date-picker@^6.1.1, @twilio-paste/date-picker@workspace:packages/paste-core/components/date-picker": version: 0.0.0-use.local resolution: "@twilio-paste/date-picker@workspace:packages/paste-core/components/date-picker" dependencies: @@ -15167,7 +15167,7 @@ __metadata: languageName: unknown linkType: soft -"@twilio-paste/textarea@^10.1.1, @twilio-paste/textarea@workspace:packages/paste-core/components/textarea": +"@twilio-paste/textarea@^10.1.1, @twilio-paste/textarea@^10.2.0, @twilio-paste/textarea@workspace:packages/paste-core/components/textarea": version: 0.0.0-use.local resolution: "@twilio-paste/textarea@workspace:packages/paste-core/components/textarea" dependencies: @@ -15306,7 +15306,7 @@ __metadata: languageName: unknown linkType: soft -"@twilio-paste/toast@^12.1.1, @twilio-paste/toast@workspace:packages/paste-core/components/toast": +"@twilio-paste/toast@^12.1.1, @twilio-paste/toast@^12.2.0, @twilio-paste/toast@workspace:packages/paste-core/components/toast": version: 0.0.0-use.local resolution: "@twilio-paste/toast@workspace:packages/paste-core/components/toast" dependencies: