Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 21, 2024
1 parent 6952752 commit 309a96f
Show file tree
Hide file tree
Showing 16 changed files with 167 additions and 105 deletions.
5 changes: 0 additions & 5 deletions .changeset/curly-worms-drum.md

This file was deleted.

72 changes: 0 additions & 72 deletions .changeset/eight-beds-smash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-eggs-kneel.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/tricky-cars-cheat.md

This file was deleted.

13 changes: 13 additions & 0 deletions packages/combobox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @leafygreen-ui/combobox

## 8.1.0

### Minor Changes

- 36a8ded2: `description` prop can now be a `React.ReactNode` rather than a `string`

### Patch Changes

- Updated dependencies [c2854e9b]
- Updated dependencies [11d12cc4]
- @leafygreen-ui/tokens@2.4.0
- @leafygreen-ui/typography@18.2.1

## 8.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/combobox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leafygreen-ui/combobox",
"version": "8.0.0",
"version": "8.1.0",
"description": "leafyGreen UI Kit Combobox",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
Expand Down Expand Up @@ -33,8 +33,8 @@
"@leafygreen-ui/lib": "^13.2.1",
"@leafygreen-ui/palette": "^4.0.7",
"@leafygreen-ui/popover": "^11.1.1",
"@leafygreen-ui/tokens": "^2.3.0",
"@leafygreen-ui/typography": "^18.2.0",
"@leafygreen-ui/tokens": "^2.4.0",
"@leafygreen-ui/typography": "^18.2.1",
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"polished": "^4.2.2"
Expand Down
98 changes: 98 additions & 0 deletions packages/date-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,103 @@
# @leafygreen-ui/date-picker

## 1.0.0

### Major Changes

- 69527524: Changes the behavior of segments.

## Backspace

### New Behavior

- Pressing `backspace` will always clear the segment and keep the focus on that segment
- Pressing `backspace` twice will clear the segment and move the focus to the previous segment

### Old Behavior

- Pressing `backspace` deletes characters before the cursor one by one
- After all characters are deleted, the focus moves to the previous segment

## Space

### New Behavior

- Pressing `space` will always clear the segment and keep the focus on that segment

### Old Behavior

- Pressing `space` does not change the current value

## Clicking

### New Behavior

#### When initially clicking on a segment with a value, the segment will select the value:

- Typing a digit will clear the segment and populate the segment with that new value.
- Pressing the `backspace` key will clear the segment
- Pressing the `backspace` key twice will clear the segment and move the focus to the previous segment
- Pressing the `space` key will clear the segment

#### When initially clicking on a segment without a value, the segment will show a cursor:

- Typing a digit will start to populate the segment
- Pressing the `backspace` key will move the focus to the previous segment
- Pressing the `space` key will keep the focus on that segment

#### When a segment is already selected, clicking on the segment a second time will deselect the segment, and a cursor will appear:

- Typing a digit will clear the segment and populate the segment with that new value.
- Pressing the `backspace` key will clear the segment
- Pressing the `backspace` key twice will clear the segment and move the focus to the previous segment
- Pressing the `space` key will clear the segment

### Old Behavior

- Clicking on a segment will make the cursor appear in the clicked spot.
- If the segment is full, typing will not change the value
- If the segment is not full, typing will not add a new character after the cursor

## Tabbing and Left/Right arrows

### New behavior

#### When when using the arrow keys or tabbing into a segment with a value, the segment will select the value:

- Typing a digit will reset the segment and populate the segment with that new value.
- Pressing the `backspace` key will clear the segment
- Pressing the `backspace` key twice will clear the segment and move the focus to the previous segment
- Pressing the `space` key will clear the segment

#### When using the arrow keys or tabbing into a segment without a value, the segment will show a cursor:

- Typing a digit will start to populate the segment
- Pressing the `backspace` key will move the focus to the previous segment
- Pressing the `space` key will keep the focus on that segment

## Tabbing

### Old Behavior

- Tabbing into a segment will select the value, but pressing `space` does not reset the value

## Left/Right arrows

### Old Behavior

- When in a segment, `left` or `right` arrow keys navigates through each character instead of selecting the value.
- If the segment is full, typing does not update the value
- If the segment is not full, typing will add a new character in that spot

### Patch Changes

- Updated dependencies [c2854e9b]
- Updated dependencies [11d12cc4]
- Updated dependencies [36a8ded2]
- @leafygreen-ui/tokens@2.4.0
- @leafygreen-ui/typography@18.2.1
- @leafygreen-ui/select@11.2.0

## 0.2.2

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/date-picker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leafygreen-ui/date-picker",
"version": "0.2.2",
"version": "1.0.0",
"description": "LeafyGreen UI Kit Date Picker",
"license": "Apache-2.0",
"main": "./dist/index.js",
Expand All @@ -25,9 +25,9 @@
"@leafygreen-ui/lib": "^13.2.1",
"@leafygreen-ui/palette": "^4.0.7",
"@leafygreen-ui/popover": "^11.2.1",
"@leafygreen-ui/select": "^11.1.2",
"@leafygreen-ui/tokens": "^2.3.0",
"@leafygreen-ui/typography": "^18.1.0",
"@leafygreen-ui/select": "^11.2.0",
"@leafygreen-ui/tokens": "^2.4.0",
"@leafygreen-ui/typography": "^18.2.1",
"date-fns": "^2.30.0",
"lodash": "^4.17.21",
"polished": "^4.2.2",
Expand Down
13 changes: 13 additions & 0 deletions packages/select/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @leafygreen-ui/select

## 11.2.0

### Minor Changes

- 36a8ded2: `description` prop can now be a `React.ReactNode` rather than a `string`

### Patch Changes

- Updated dependencies [c2854e9b]
- Updated dependencies [11d12cc4]
- @leafygreen-ui/tokens@2.4.0
- @leafygreen-ui/typography@18.2.1

## 11.1.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/select/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leafygreen-ui/select",
"version": "11.1.2",
"version": "11.2.0",
"description": "leafyGreen UI Kit Select",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
Expand Down Expand Up @@ -30,8 +30,8 @@
"@leafygreen-ui/lib": "^13.2.0",
"@leafygreen-ui/palette": "^4.0.7",
"@leafygreen-ui/popover": "^11.2.1",
"@leafygreen-ui/tokens": "^2.2.0",
"@leafygreen-ui/typography": "^18.1.0",
"@leafygreen-ui/tokens": "^2.4.0",
"@leafygreen-ui/typography": "^18.2.1",
"@types/react-is": "^18.0.0",
"lodash": "^4.17.21",
"polished": "^4.1.3",
Expand Down
13 changes: 13 additions & 0 deletions packages/text-area/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @leafygreen-ui/text-area

## 8.1.0

### Minor Changes

- 36a8ded2: `description` prop can now be a `React.ReactNode` rather than a `string`

### Patch Changes

- Updated dependencies [c2854e9b]
- Updated dependencies [11d12cc4]
- @leafygreen-ui/tokens@2.4.0
- @leafygreen-ui/typography@18.2.1

## 8.0.21

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/text-area/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leafygreen-ui/text-area",
"version": "8.0.21",
"version": "8.1.0",
"description": "leafyGreen UI Kit Text Area",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -27,8 +27,8 @@
"@leafygreen-ui/icon": "^11.27.0",
"@leafygreen-ui/lib": "^13.0.0",
"@leafygreen-ui/palette": "^4.0.7",
"@leafygreen-ui/tokens": "^2.2.0",
"@leafygreen-ui/typography": "^18.0.0"
"@leafygreen-ui/tokens": "^2.4.0",
"@leafygreen-ui/typography": "^18.2.1"
},
"peerDependencies": {
"@leafygreen-ui/leafygreen-provider": "^3.1.10"
Expand Down
6 changes: 6 additions & 0 deletions packages/tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @leafygreen-ui/tokens

## 2.4.0

### Minor Changes

- c2854e9b: Adds additional spacing tokens

## 2.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tokens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leafygreen-ui/tokens",
"version": "2.3.0",
"version": "2.4.0",
"description": "leafyGreen UI Kit Tokens",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/typography/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @leafygreen-ui/typography

## 18.2.1

### Patch Changes

- 11d12cc4: Updates dependency `@leafygreen-ui/[email protected]`
- Updated dependencies [c2854e9b]
- @leafygreen-ui/tokens@2.4.0

## 18.2.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/typography/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leafygreen-ui/typography",
"version": "18.2.0",
"version": "18.2.1",
"description": "leafyGreen UI Kit Typography",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -27,7 +27,7 @@
"@leafygreen-ui/lib": "^13.2.0",
"@leafygreen-ui/palette": "^4.0.7",
"@leafygreen-ui/polymorphic": "^1.3.6",
"@leafygreen-ui/tokens": "^2.3.0"
"@leafygreen-ui/tokens": "^2.4.0"
},
"peerDependencies": {
"@leafygreen-ui/leafygreen-provider": "^3.1.11"
Expand Down

0 comments on commit 309a96f

Please sign in to comment.