diff --git a/.changeset/chat-layout.md b/.changeset/chat-layout.md deleted file mode 100644 index f10defa9d8..0000000000 --- a/.changeset/chat-layout.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@lg-chat/chat-layout': minor ---- - -Initial release with `ChatLayout`, `ChatMain`, and `ChatSideNav` -- `ChatSideNav` is a compound component with the following subcomponents: - - `ChatSideNav.Header` - - `ChatSideNav.Content` - - `ChatSideNav.SideNavItem` diff --git a/.changeset/gold-goats-visit.md b/.changeset/gold-goats-visit.md deleted file mode 100644 index aa2b68cd2b..0000000000 --- a/.changeset/gold-goats-visit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lg-chat/input-bar': patch ---- - -Remove redundant `z-index: 2;` in `InputBar` content wrapping node. diff --git a/.changeset/kind-goats-pump.md b/.changeset/kind-goats-pump.md deleted file mode 100644 index e29d97f4e8..0000000000 --- a/.changeset/kind-goats-pump.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@lg-chat/rich-links': patch -'@lg-chat/message': patch ---- - -[LG-5684](https://jira.mongodb.org/browse/LG-5684): update colors used for `RichLinkBadge` component which is used in `Message.Links` diff --git a/.changeset/plain-clocks-remain.md b/.changeset/plain-clocks-remain.md deleted file mode 100644 index 5a4757039b..0000000000 --- a/.changeset/plain-clocks-remain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lg-chat/message-prompts': patch ---- - -[LG-5687](https://jira.mongodb.org/browse/LG-5687): update border color from `green.dark1` to `green.dark2` diff --git a/.changeset/rotten-parrots-stare.md b/.changeset/rotten-parrots-stare.md deleted file mode 100644 index 086213e5db..0000000000 --- a/.changeset/rotten-parrots-stare.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@lg-charts/core': minor ---- - -- ChartTooltip: - - Added `axisPointer` prop supporting 'line', 'shadow', and 'none' options - - Added `className` prop for custom styling - - Bug Fix: renders correctly for values like 0 and empty strings by only checking for null or undefined, not all falsy values -- Bar: `hoverBehavior` prop now accepts 'dim-others' and 'none' options to control hover focus behavior -- XAxis/YAxis: Introduced a new `category` axis type for discrete/categorical datasets (such as for X axes in bar charts). - - It uses a dedicated axis type definition and a `labels` prop for specifying category names. - - Existing continuous axis types (`'log'`, `'time'`, `'value'`) remain unchanged, continuing to support `min`, `max`, and `formatter` for customization. \ No newline at end of file diff --git a/charts/core/CHANGELOG.md b/charts/core/CHANGELOG.md index 8831acc69b..35ea7828c0 100644 --- a/charts/core/CHANGELOG.md +++ b/charts/core/CHANGELOG.md @@ -1,5 +1,18 @@ # @lg-charts/core +## 2.3.0 + +### Minor Changes + +- dca8419: - ChartTooltip: + - Added `axisPointer` prop supporting 'line', 'shadow', and 'none' options + - Added `className` prop for custom styling + - Bug Fix: renders correctly for values like 0 and empty strings by only checking for null or undefined, not all falsy values + - Bar: `hoverBehavior` prop now accepts 'dim-others' and 'none' options to control hover focus behavior + - XAxis/YAxis: Introduced a new `category` axis type for discrete/categorical datasets (such as for X axes in bar charts). + - It uses a dedicated axis type definition and a `labels` prop for specifying category names. + - Existing continuous axis types (`'log'`, `'time'`, `'value'`) remain unchanged, continuing to support `min`, `max`, and `formatter` for customization. + ## 2.2.1 ### Patch Changes diff --git a/charts/core/package.json b/charts/core/package.json index a47eb064d4..2aad666701 100644 --- a/charts/core/package.json +++ b/charts/core/package.json @@ -1,6 +1,6 @@ { "name": "@lg-charts/core", - "version": "2.2.1", + "version": "2.3.0", "description": "lg-charts Core Chart Components", "main": "./dist/umd/index.js", "module": "./dist/esm/index.js", diff --git a/chat/chat-layout/CHANGELOG.md b/chat/chat-layout/CHANGELOG.md new file mode 100644 index 0000000000..f4bfca495e --- /dev/null +++ b/chat/chat-layout/CHANGELOG.md @@ -0,0 +1,11 @@ +# @lg-chat/chat-layout + +## 0.1.0 + +### Minor Changes + +- 8976ab2: Initial release with `ChatLayout`, `ChatMain`, and `ChatSideNav` + - `ChatSideNav` is a compound component with the following subcomponents: + - `ChatSideNav.Header` + - `ChatSideNav.Content` + - `ChatSideNav.SideNavItem` diff --git a/chat/chat-layout/package.json b/chat/chat-layout/package.json index d0c461f4ea..e7a9653c91 100644 --- a/chat/chat-layout/package.json +++ b/chat/chat-layout/package.json @@ -1,7 +1,6 @@ - { "name": "@lg-chat/chat-layout", - "version": "0.0.1", + "version": "0.1.0", "description": "LeafyGreen UI Kit Chat Layout", "main": "./dist/umd/index.js", "module": "./dist/esm/index.js", diff --git a/chat/input-bar/CHANGELOG.md b/chat/input-bar/CHANGELOG.md index 368f32c447..c6d48fc423 100644 --- a/chat/input-bar/CHANGELOG.md +++ b/chat/input-bar/CHANGELOG.md @@ -1,5 +1,11 @@ # @lg-chat/input-bar +## 11.0.2 + +### Patch Changes + +- 8976ab2: Remove redundant `z-index: 2;` in `InputBar` content wrapping node. + ## 11.0.1 ### Patch Changes diff --git a/chat/input-bar/package.json b/chat/input-bar/package.json index 535d39fb0b..070287911b 100644 --- a/chat/input-bar/package.json +++ b/chat/input-bar/package.json @@ -1,6 +1,6 @@ { "name": "@lg-chat/input-bar", - "version": "11.0.1", + "version": "11.0.2", "description": "lg-chat Input Bar", "main": "./dist/umd/index.js", "module": "./dist/esm/index.js", diff --git a/chat/message-prompts/CHANGELOG.md b/chat/message-prompts/CHANGELOG.md index b80530715c..9653c68c5c 100644 --- a/chat/message-prompts/CHANGELOG.md +++ b/chat/message-prompts/CHANGELOG.md @@ -1,5 +1,11 @@ # @lg-chat/message-prompts +## 4.1.3 + +### Patch Changes + +- 68b59a0: [LG-5687](https://jira.mongodb.org/browse/LG-5687): update border color from `green.dark1` to `green.dark2` + ## 4.1.2 ### Patch Changes diff --git a/chat/message-prompts/package.json b/chat/message-prompts/package.json index c13c4a5631..25ad6fe713 100644 --- a/chat/message-prompts/package.json +++ b/chat/message-prompts/package.json @@ -1,6 +1,6 @@ { "name": "@lg-chat/message-prompts", - "version": "4.1.2", + "version": "4.1.3", "description": "LeafyGreen UI Kit Message Prompts", "main": "./dist/umd/index.js", "module": "./dist/esm/index.js", diff --git a/chat/message/CHANGELOG.md b/chat/message/CHANGELOG.md index 0937da161a..f7825e6bed 100644 --- a/chat/message/CHANGELOG.md +++ b/chat/message/CHANGELOG.md @@ -1,5 +1,13 @@ # @lg-chat/message +## 9.1.1 + +### Patch Changes + +- 5008087: [LG-5684](https://jira.mongodb.org/browse/LG-5684): update colors used for `RichLinkBadge` component which is used in `Message.Links` +- Updated dependencies [5008087] + - @lg-chat/rich-links@4.0.4 + ## 9.1.0 ### Minor Changes diff --git a/chat/message/package.json b/chat/message/package.json index c56586629d..8151b0313f 100644 --- a/chat/message/package.json +++ b/chat/message/package.json @@ -1,6 +1,6 @@ { "name": "@lg-chat/message", - "version": "9.1.0", + "version": "9.1.1", "description": "lg-chat Message", "main": "./dist/umd/index.js", "module": "./dist/esm/index.js", diff --git a/chat/rich-links/CHANGELOG.md b/chat/rich-links/CHANGELOG.md index f5fb00f809..4f583754a9 100644 --- a/chat/rich-links/CHANGELOG.md +++ b/chat/rich-links/CHANGELOG.md @@ -1,5 +1,11 @@ # @lg-chat/rich-links +## 4.0.4 + +### Patch Changes + +- 5008087: [LG-5684](https://jira.mongodb.org/browse/LG-5684): update colors used for `RichLinkBadge` component which is used in `Message.Links` + ## 4.0.3 ### Patch Changes diff --git a/chat/rich-links/package.json b/chat/rich-links/package.json index ef3ca4c660..974137f3ec 100644 --- a/chat/rich-links/package.json +++ b/chat/rich-links/package.json @@ -1,6 +1,6 @@ { "name": "@lg-chat/rich-links", - "version": "4.0.3", + "version": "4.0.4", "description": "lg-chat Rich Links", "main": "./dist/umd/index.js", "module": "./dist/esm/index.js",