Skip to content

Commit

Permalink
Version Packages (#453)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Jul 7, 2023
1 parent 9d9d72a commit 31645cf
Show file tree
Hide file tree
Showing 17 changed files with 73 additions and 32 deletions.
7 changes: 0 additions & 7 deletions .changeset/fifty-camels-raise.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/heavy-walls-buy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-sheep-call.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/ActionMenu/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @igloo-ui/action-menu

## 1.1.3

### Patch Changes

- 9d9d72a: Fixed WithinContainer story to show two cards and address z-index issues.
- Updated dependencies [9d9d72a]
- @igloo-ui/dropdown@1.4.0

## 1.1.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/ActionMenu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igloo-ui/action-menu",
"version": "1.1.2",
"version": "1.1.3",
"main": "dist/ActionMenu.js",
"module": "dist/ActionMenu.js",
"types": "dist/ActionMenu.d.ts",
Expand All @@ -25,7 +25,7 @@
},
"dependencies": {
"@igloo-ui/tokens": "^2.0.0",
"@igloo-ui/dropdown": "^1.3.0",
"@igloo-ui/dropdown": "^1.4.0",
"@igloo-ui/list": "^0.4.0",
"classnames": "^2.3.2"
},
Expand Down
13 changes: 13 additions & 0 deletions packages/Combobox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @igloo-ui/combobox

## 1.2.0

### Minor Changes

- 9d9d72a: Allow Combobox, Select, TagPicker and Dropdown components to scroll if it's too long and runs out of room in the viewport. New properties added to Dropdown are: isReferenceWidth, isScrollable and footer. The display of the footer was moved to the dropdown instead of leaving it in combobox because the dropdown handles the scroll styles and the footer is sticky.

### Patch Changes

- Updated dependencies [9d9d72a]
- Updated dependencies [9d9d72a]
- @igloo-ui/tooltip@3.1.4
- @igloo-ui/dropdown@1.4.0

## 1.1.0

### Minor 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": "@igloo-ui/combobox",
"version": "1.1.0",
"version": "1.2.0",
"main": "dist/Combobox.js",
"module": "dist/Combobox.js",
"types": "dist/Combobox.d.ts",
Expand All @@ -24,13 +24,13 @@
"build": "rollup -c rollup.config.js"
},
"dependencies": {
"@igloo-ui/dropdown": "^1.3.0",
"@igloo-ui/dropdown": "^1.4.0",
"@igloo-ui/list": "^0.4.0",
"@igloo-ui/icons": "^1.6.0",
"@igloo-ui/icon-button": "^1.0.2",
"@igloo-ui/input": "^2.0.5",
"@igloo-ui/tokens": "^2.0.0",
"@igloo-ui/tooltip": "^3.1.3",
"@igloo-ui/tooltip": "^3.1.4",
"classnames": "^2.3.2"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/Dropdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @igloo-ui/dropdown

## 1.4.0

### Minor Changes

- 9d9d72a: Allow Combobox, Select, TagPicker and Dropdown components to scroll if it's too long and runs out of room in the viewport. New properties added to Dropdown are: isReferenceWidth, isScrollable and footer. The display of the footer was moved to the dropdown instead of leaving it in combobox because the dropdown handles the scroll styles and the footer is sticky.

## 1.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/Dropdown/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igloo-ui/dropdown",
"version": "1.3.0",
"version": "1.4.0",
"main": "dist/Dropdown.js",
"module": "dist/Dropdown.js",
"types": "dist/Dropdown.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/Popover/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @igloo-ui/popover

## 0.3.1

### Patch Changes

- 9d9d72a: Updated floating-ui so that each component uses the same version.
- Updated dependencies [9d9d72a]
- @igloo-ui/tooltip@3.1.4

## 0.3.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/Popover/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igloo-ui/popover",
"version": "0.3.0",
"version": "0.3.1",
"main": "dist/Popover.js",
"module": "dist/Popover.js",
"types": "dist/Popover.d.ts",
Expand Down Expand Up @@ -28,7 +28,7 @@
"@igloo-ui/icon-button": "^1.0.1",
"@igloo-ui/icons": "^1.6.0",
"@igloo-ui/tokens": "^2.0.0",
"@igloo-ui/tooltip": "^3.1.3",
"@igloo-ui/tooltip": "^3.1.4",
"classnames": "^2.3.2",
"@floating-ui/react": "^0.24.3"
},
Expand Down
11 changes: 11 additions & 0 deletions packages/Select/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @igloo-ui/select

## 1.3.0

### Minor Changes

- 9d9d72a: Allow Combobox, Select, TagPicker and Dropdown components to scroll if it's too long and runs out of room in the viewport. New properties added to Dropdown are: isReferenceWidth, isScrollable and footer. The display of the footer was moved to the dropdown instead of leaving it in combobox because the dropdown handles the scroll styles and the footer is sticky.

### Patch Changes

- Updated dependencies [9d9d72a]
- @igloo-ui/dropdown@1.4.0

## 1.2.0

### Minor 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": "@igloo-ui/select",
"version": "1.2.0",
"version": "1.3.0",
"main": "dist/Select.js",
"module": "dist/Select.js",
"types": "dist/Select.d.ts",
Expand All @@ -24,7 +24,7 @@
"build": "rollup -c rollup.config.js"
},
"dependencies": {
"@igloo-ui/dropdown": "^1.3.0",
"@igloo-ui/dropdown": "^1.4.0",
"@igloo-ui/list": "^0.4.0",
"@igloo-ui/icons": "^1.6.0",
"@igloo-ui/icon-button": "^1.0.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/TextEditor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @igloo-ui/text-editor

## 0.3.3

### Patch Changes

- 9d9d72a: Updated floating-ui so that each component uses the same version.
- Updated dependencies [9d9d72a]
- @igloo-ui/tooltip@3.1.4

## 0.3.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/TextEditor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igloo-ui/text-editor",
"version": "0.3.2",
"version": "0.3.3",
"main": "dist/TextEditor.js",
"module": "dist/TextEditor.js",
"types": "dist/TextEditor.d.ts",
Expand Down Expand Up @@ -29,7 +29,7 @@
"@igloo-ui/icon-button": "^1.0.2",
"@igloo-ui/input": "^2.0.4",
"@igloo-ui/tokens": "^2.0.0",
"@igloo-ui/tooltip": "^3.1.3",
"@igloo-ui/tooltip": "^3.1.4",
"@lexical/code": "^0.10.0",
"@lexical/link": "^0.10.0",
"@lexical/list": "^0.10.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/Tooltip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @igloo-ui/tooltip

## 3.1.4

### Patch Changes

- 9d9d72a: Updated floating-ui so that each component uses the same version.

## 3.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/Tooltip/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igloo-ui/tooltip",
"version": "3.1.3",
"version": "3.1.4",
"main": "dist/Tooltip.js",
"module": "dist/Tooltip.js",
"types": "dist/Tooltip.d.ts",
Expand Down

0 comments on commit 31645cf

Please sign in to comment.