Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #1992

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/giant-seas-impress.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-waves-press.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sharp-ravens-invent.md

This file was deleted.

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

## 21.0.7

### Patch Changes

- d2c1ec53: Updates Button to remove `pointer-events: none` styles from it's inner container. This allows the Select component to work as intended when using `usePortal = false`.

## 21.0.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/button/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leafygreen-ui/button",
"version": "21.0.6",
"version": "21.0.7",
"description": "leafyGreen UI Kit Button",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
Expand Down
7 changes: 7 additions & 0 deletions packages/chip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @leafygreen-ui/chip

## 1.0.0

### Major Changes

- 9a728c7b: First major release of `Chip`.
3 changes: 1 addition & 2 deletions packages/chip/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

{
"name": "@leafygreen-ui/chip",
"version": "0.1.0",
"version": "1.0.0",
"description": "LeafyGreen UI Kit Chip",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
Expand Down
11 changes: 11 additions & 0 deletions packages/combobox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @leafygreen-ui/combobox

## 7.0.0

### Major Changes

- 9a728c7b: Replaces internal `Chip` component with new LG `Chip` component and exposes an upgraded `TruncationLocation` object which capitalizes the first letter of each key. Instead of referring to it as `TruncationLocation.end`, it will now be represented as `TruncationLocation.End`.

### Patch Changes

- Updated dependencies [9a728c7b]
- @leafygreen-ui/chip@1.0.0

## 6.0.15

### Patch 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": "6.0.15",
"version": "7.0.0",
"description": "leafyGreen UI Kit Combobox",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -23,7 +23,7 @@
},
"dependencies": {
"@leafygreen-ui/checkbox": "^12.0.19",
"@leafygreen-ui/chip": "^0.1.0",
"@leafygreen-ui/chip": "^1.0.0",
"@leafygreen-ui/emotion": "^4.0.7",
"@leafygreen-ui/hooks": "^8.0.0",
"@leafygreen-ui/icon": "^11.23.0",
Expand All @@ -43,7 +43,7 @@
"@leafygreen-ui/leafygreen-provider": "^3.1.9"
},
"devDependencies": {
"@leafygreen-ui/button": "^21.0.6"
"@leafygreen-ui/button": "^21.0.7"
},
"homepage": "https://github.com/mongodb/leafygreen-ui/tree/main/packages/combobox",
"repository": {
Expand Down
8 changes: 8 additions & 0 deletions packages/select/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @leafygreen-ui/select

## 10.3.18

### Patch Changes

- d2c1ec53: Updates Button to remove `pointer-events: none` styles from it's inner container. This allows the Select component to work as intended when using `usePortal = false`.
- Updated dependencies [d2c1ec53]
- @leafygreen-ui/button@21.0.7

## 10.3.17

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/select/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leafygreen-ui/select",
"version": "10.3.17",
"version": "10.3.18",
"description": "leafyGreen UI Kit Select",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -22,7 +22,7 @@
"access": "public"
},
"dependencies": {
"@leafygreen-ui/button": "^21.0.6",
"@leafygreen-ui/button": "^21.0.7",
"@leafygreen-ui/emotion": "^4.0.7",
"@leafygreen-ui/hooks": "^8.0.0",
"@leafygreen-ui/icon": "^11.23.0",
Expand Down
Loading