Skip to content

Commit

Permalink
RELEASING: Releasing 5 package(s)
Browse files Browse the repository at this point in the history
Releases:
  @khanacademy/[email protected]
  @khanacademy/[email protected]
  @khanacademy/[email protected]
  @khanacademy/[email protected]
  @khanacademy/[email protected]
  • Loading branch information
github-actions[bot] committed Jan 16, 2025
1 parent b2df9d3 commit 2b361aa
Show file tree
Hide file tree
Showing 21 changed files with 56 additions and 66 deletions.
5 changes: 0 additions & 5 deletions .changeset/big-starfishes-worry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chilly-mirrors-add.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/dull-elephants-march.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/metal-maps-move.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pink-turtles-sleep.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/serious-cherries-wonder.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-otters-crash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smart-grapes-serve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-rivers-marry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twenty-ducks-double.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/two-pens-remember.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/wonder-blocks-birthday-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @khanacademy/wonder-blocks-birthday-picker

## 3.0.10

### Patch Changes

- Updated dependencies [b2df9d32]
- @khanacademy/wonder-blocks-dropdown@7.0.6

## 3.0.9

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/wonder-blocks-birthday-picker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@khanacademy/wonder-blocks-birthday-picker",
"version": "3.0.9",
"version": "3.0.10",
"design": "v1",
"publishConfig": {
"access": "public"
Expand All @@ -16,7 +16,7 @@
"dependencies": {
"@babel/runtime": "^7.18.6",
"@khanacademy/wonder-blocks-core": "^11.1.0",
"@khanacademy/wonder-blocks-dropdown": "^7.0.5",
"@khanacademy/wonder-blocks-dropdown": "^7.0.6",
"@khanacademy/wonder-blocks-icon": "^5.0.5",
"@khanacademy/wonder-blocks-layout": "^3.0.5",
"@khanacademy/wonder-blocks-tokens": "^3.0.1",
Expand Down
7 changes: 7 additions & 0 deletions packages/wonder-blocks-dropdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @khanacademy/wonder-blocks-dropdown

## 7.0.6

### Patch Changes

- b2df9d32: MultiSelect: Clear error state when "Select none" or "Select all" shortcuts are used
- @khanacademy/wonder-blocks-search-field@4.0.6

## 7.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/wonder-blocks-dropdown/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@khanacademy/wonder-blocks-dropdown",
"version": "7.0.5",
"version": "7.0.6",
"design": "v1",
"description": "Dropdown variants for Wonder Blocks.",
"main": "dist/index.js",
Expand All @@ -24,7 +24,7 @@
"@khanacademy/wonder-blocks-layout": "^3.0.5",
"@khanacademy/wonder-blocks-modal": "^7.0.3",
"@khanacademy/wonder-blocks-pill": "^3.0.5",
"@khanacademy/wonder-blocks-search-field": "^4.0.5",
"@khanacademy/wonder-blocks-search-field": "^4.0.6",
"@khanacademy/wonder-blocks-timing": "^6.0.1",
"@khanacademy/wonder-blocks-tokens": "^3.0.1",
"@khanacademy/wonder-blocks-typography": "^3.0.5"
Expand Down
7 changes: 7 additions & 0 deletions packages/wonder-blocks-form/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @khanacademy/wonder-blocks-form

## 6.0.6

### Patch Changes

- d9bc865b: TextField and TextArea: Set `aria-required` if it is required
- d9bc865b: TextField and TextArea validation: Always clear error message onChange if instantValidation=false so externally set error state can still be cleared

## 6.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wonder-blocks-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@khanacademy/wonder-blocks-form",
"version": "6.0.5",
"version": "6.0.6",
"design": "v1",
"description": "Form components for Wonder Blocks.",
"main": "dist/index.js",
Expand Down
19 changes: 19 additions & 0 deletions packages/wonder-blocks-labeled-field/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @khanacademy/wonder-blocks-labeled-field

## 1.1.0

### Minor Changes

- 0869c5ee: - Update `LabeledField` styling to use semantic tokens to match Figma specs
- Add error icon to the error message. This addresses accessibility issues related to color being the only way to communicate information
- Add a labels prop so that a translated label for the error icon can be passed in
- Handle long text overflow with and without word breaks
- dea7c71e: LabeledField: Wire up attributes for elements and apply attributes to the field element

### Patch Changes

- fd29f864: LabeledField: Refactor from class component to function component
- ed8fb7bd: Makes sure custom required messages passed into `LabeledField` or the `field` prop are displayed
- d9bc865b: Set required, error and light props for LabeledField and field component if it is set on either LabeledField or field component
- d9bc865b: Use `errorMessage` prop instead of `error` prop for consistency (`error` prop is used for boolean props in form field components).
- d9bc865b: LabeledField: Let `required` prop be a boolean or string so it can be passed down to the field prop
- daf459a1: Sets up the initial implementation for LabeledField based on the internal FieldHeading component in the form package

## 1.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wonder-blocks-labeled-field/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@khanacademy/wonder-blocks-labeled-field",
"version": "1.0.5",
"version": "1.1.0",
"design": "v1",
"description": "LabeledField handles accessibility and layout for associating labels with form components.",
"main": "dist/index.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/wonder-blocks-search-field/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @khanacademy/wonder-blocks-search-field

## 4.0.6

### Patch Changes

- Updated dependencies [d9bc865b]
- Updated dependencies [d9bc865b]
- @khanacademy/wonder-blocks-form@6.0.6

## 4.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/wonder-blocks-search-field/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@khanacademy/wonder-blocks-search-field",
"version": "4.0.5",
"version": "4.0.6",
"design": "v1",
"description": "Search Field components for Wonder Blocks.",
"main": "dist/index.js",
Expand All @@ -18,7 +18,7 @@
"dependencies": {
"@babel/runtime": "^7.18.6",
"@khanacademy/wonder-blocks-core": "^11.1.0",
"@khanacademy/wonder-blocks-form": "^6.0.5",
"@khanacademy/wonder-blocks-form": "^6.0.6",
"@khanacademy/wonder-blocks-icon": "^5.0.5",
"@khanacademy/wonder-blocks-icon-button": "^6.0.5",
"@khanacademy/wonder-blocks-tokens": "^3.0.1",
Expand Down

0 comments on commit 2b361aa

Please sign in to comment.