From 517f2410985eed7e2f0110638c6c36e3f2284414 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 28 Apr 2023 12:44:21 +0000 Subject: [PATCH] Version Packages --- .changeset/giant-bugs-smile.md | 7 -- .changeset/hot-lions-tie.md | 5 -- .changeset/light-olives-notice.md | 38 --------- .changeset/long-months-leave.md | 63 --------------- packages/ember-toucan-core/CHANGELOG.md | 10 +++ packages/ember-toucan-core/package.json | 2 +- packages/ember-toucan-form/CHANGELOG.md | 102 ++++++++++++++++++++++++ packages/ember-toucan-form/package.json | 4 +- 8 files changed, 115 insertions(+), 116 deletions(-) delete mode 100644 .changeset/giant-bugs-smile.md delete mode 100644 .changeset/hot-lions-tie.md delete mode 100644 .changeset/light-olives-notice.md delete mode 100644 .changeset/long-months-leave.md diff --git a/.changeset/giant-bugs-smile.md b/.changeset/giant-bugs-smile.md deleted file mode 100644 index 7e8ffc522..000000000 --- a/.changeset/giant-bugs-smile.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@crowdstrike/ember-toucan-core': patch ---- - -Added Character Count in InputField - -Added optional character count in the Input Field component, along with related base demo and tests. diff --git a/.changeset/hot-lions-tie.md b/.changeset/hot-lions-tie.md deleted file mode 100644 index e806e6e93..000000000 --- a/.changeset/hot-lions-tie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@crowdstrike/ember-toucan-core': patch ---- - -Added the `@isReadOnly` component argument to all form components. It will apply read only styling and the `readonly` attribute. This requires the latest release of [@crowdstrike/tailwind-toucan-base](https://github.com/CrowdStrike/tailwind-toucan-base/releases/tag/%40crowdstrike%2Ftailwind-toucan-base%403.5.0). diff --git a/.changeset/light-olives-notice.md b/.changeset/light-olives-notice.md deleted file mode 100644 index d54fd3057..000000000 --- a/.changeset/light-olives-notice.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -'@crowdstrike/ember-toucan-form': patch ---- - -Exposed named blocks from the underlying `toucan-core` components. This allows users to add custom content in `:hint` or `:label` named blocks. You can combine the arguments and named blocks as well! Below are some examples. - -```hbs - - - <:label>Label - <:hint>Hint - - -``` - -```hbs - - - <:hint>Hint - - -``` - -```hbs - - - <:label>Label - - -``` - -Or you can continue to use the arguments if you're only working with strings! - -```hbs - - - -``` diff --git a/.changeset/long-months-leave.md b/.changeset/long-months-leave.md deleted file mode 100644 index 8081833e0..000000000 --- a/.changeset/long-months-leave.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -'@crowdstrike/ember-toucan-form': patch ---- - -Added `@isReadOnly` component argument support. - -```hbs - - - - - - - - - - - - - - - - -``` - -For CheckboxGroup and RadioGroup, the argument can be set on the root component, or on individual CheckboxFields / RadioFields directly. diff --git a/packages/ember-toucan-core/CHANGELOG.md b/packages/ember-toucan-core/CHANGELOG.md index 75651fbf5..93e350b51 100644 --- a/packages/ember-toucan-core/CHANGELOG.md +++ b/packages/ember-toucan-core/CHANGELOG.md @@ -1,5 +1,15 @@ # @crowdstrike/ember-toucan-core +## 0.1.2 + +### Patch Changes + +- [#115](https://github.com/CrowdStrike/ember-toucan-core/pull/115) [`6a08b45`](https://github.com/CrowdStrike/ember-toucan-core/commit/6a08b4501dce48408278f68d4883a20b9012c3a7) Thanks [@nicolechung](https://github.com/nicolechung)! - Added Character Count in InputField + + Added optional character count in the Input Field component, along with related base demo and tests. + +- [#132](https://github.com/CrowdStrike/ember-toucan-core/pull/132) [`b4f6861`](https://github.com/CrowdStrike/ember-toucan-core/commit/b4f6861bc2384dc3144c5b5a6aef18bca48f2b15) Thanks [@ynotdraw](https://github.com/ynotdraw)! - Added the `@isReadOnly` component argument to all form components. It will apply read only styling and the `readonly` attribute. This requires the latest release of [@crowdstrike/tailwind-toucan-base](https://github.com/CrowdStrike/tailwind-toucan-base/releases/tag/%40crowdstrike%2Ftailwind-toucan-base%403.5.0). + ## 0.1.1 ### Patch Changes diff --git a/packages/ember-toucan-core/package.json b/packages/ember-toucan-core/package.json index 117d9dab6..bf8dcb952 100644 --- a/packages/ember-toucan-core/package.json +++ b/packages/ember-toucan-core/package.json @@ -1,6 +1,6 @@ { "name": "@crowdstrike/ember-toucan-core", - "version": "0.1.1", + "version": "0.1.2", "description": "CrowdStrike's Toucan Design System", "keywords": [ "ember-addon" diff --git a/packages/ember-toucan-form/CHANGELOG.md b/packages/ember-toucan-form/CHANGELOG.md index 84e97831e..a87e544b8 100644 --- a/packages/ember-toucan-form/CHANGELOG.md +++ b/packages/ember-toucan-form/CHANGELOG.md @@ -1,5 +1,107 @@ # @crowdstrike/ember-toucan-form +## 0.1.1 + +### Patch Changes + +- [#156](https://github.com/CrowdStrike/ember-toucan-core/pull/156) [`20d433f`](https://github.com/CrowdStrike/ember-toucan-core/commit/20d433f330a4a6ee3a5d31acfc20f48ccc1bb950) Thanks [@ynotdraw](https://github.com/ynotdraw)! - Exposed named blocks from the underlying `toucan-core` components. This allows users to add custom content in `:hint` or `:label` named blocks. You can combine the arguments and named blocks as well! Below are some examples. + + ```hbs + + + <:label>Label + <:hint>Hint + + + ``` + + ```hbs + + + <:hint>Hint + + + ``` + + ```hbs + + + <:label>Label + + + ``` + + Or you can continue to use the arguments if you're only working with strings! + + ```hbs + + + + ``` + +- [#145](https://github.com/CrowdStrike/ember-toucan-core/pull/145) [`752e6b1`](https://github.com/CrowdStrike/ember-toucan-core/commit/752e6b16d40d04f69ac3381cae4d6ee7ffd962fa) Thanks [@ynotdraw](https://github.com/ynotdraw)! - Added `@isReadOnly` component argument support. + + ```hbs + + + + + + + + + + + + + + + + + ``` + + For CheckboxGroup and RadioGroup, the argument can be set on the root component, or on individual CheckboxFields / RadioFields directly. + +- Updated dependencies [[`6a08b45`](https://github.com/CrowdStrike/ember-toucan-core/commit/6a08b4501dce48408278f68d4883a20b9012c3a7), [`b4f6861`](https://github.com/CrowdStrike/ember-toucan-core/commit/b4f6861bc2384dc3144c5b5a6aef18bca48f2b15)]: + - @crowdstrike/ember-toucan-core@0.1.2 + ## 0.1.0 ### Minor Changes diff --git a/packages/ember-toucan-form/package.json b/packages/ember-toucan-form/package.json index 077efa207..e78a09146 100644 --- a/packages/ember-toucan-form/package.json +++ b/packages/ember-toucan-form/package.json @@ -1,6 +1,6 @@ { "name": "@crowdstrike/ember-toucan-form", - "version": "0.1.0", + "version": "0.1.1", "description": "Build forms with ember-headless-form and ember-toucan-core", "keywords": [ "ember-addon" @@ -33,7 +33,7 @@ "_syncPnpm": "pnpm sync-pnpm" }, "peerDependencies": { - "@crowdstrike/ember-toucan-core": "^0.1.1", + "@crowdstrike/ember-toucan-core": "^0.1.2", "@crowdstrike/ember-toucan-styles": "^2.0.1", "@ember/test-helpers": "^2.8.1", "@glimmer/tracking": "^1.1.2",