Skip to content
Open
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
8 changes: 0 additions & 8 deletions .changeset/editorial-typography-tokens.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/link-underline-prop.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/upgrade-react-aria-1-19-0.md

This file was deleted.

7 changes: 7 additions & 0 deletions apps/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# launchpad-design-system

## 0.3.4

### Patch Changes

- Updated dependencies [[`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a)]:
- @launchpad-ui/tokens@0.17.0

## 0.3.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "launchpad-design-system",
"private": true,
"version": "0.3.3",
"version": "0.3.4",
"description": "LaunchPad VS Code extension",
"repository": {
"type": "git",
Expand Down
12 changes: 12 additions & 0 deletions packages/box/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @launchpad-ui/box

## 0.4.5

### Patch Changes

- [#1940](https://github.com/launchdarkly/launchpad-ui/pull/1940) [`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a) Thanks [@OneHunnid](https://github.com/OneHunnid)! - Add a Sora-based editorial typography token family for brand-themed surfaces (empty states, hero moments, announcements). Adds `fontFamily.sora` (with an Inter fallback), pixel-named `fontSize.editorial.*`, `fontWeight.editorial.*`, unitless `lineHeight.editorial.*`, a new top-level `letterSpacing.editorial.*` group, seven `text.editorial.*` compositions, and `size.30`/`size.50` primitives. All values mirror the `ai-refresh` `_typography.scss` source of truth. Existing utility `text.*` compositions are unchanged.

Box's `rainbow-sprinkles` now flattens the `fontSize`, `fontWeight`, and `lineHeight` token groups (matching how the `font` typography group is already handled) so the nested `editorial.*` sub-namespaces don't break `defineProperties`' flat-record typing.

- Updated dependencies [[`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a)]:
- @launchpad-ui/tokens@0.17.0
- @launchpad-ui/vars@0.5.4

## 0.4.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/box/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchpad-ui/box",
"version": "0.4.4",
"version": "0.4.5",
"description": "A polymorphic React component with design token sprinkles.",
"repository": "launchdarkly/launchpad-ui",
"license": "Apache-2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/button/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @launchpad-ui/button

## 0.15.17

### Patch Changes

- Updated dependencies [[`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a)]:
- @launchpad-ui/tokens@0.17.0
- @launchpad-ui/icons@0.26.1

## 0.15.16

### 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": "@launchpad-ui/button",
"version": "0.15.16",
"version": "0.15.17",
"description": "An element that triggers an action based on user interaction.",
"repository": "launchdarkly/launchpad-ui",
"license": "Apache-2.0",
Expand Down
21 changes: 21 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @launchpad-ui/components

## 0.22.0

### Minor Changes

- [#1888](https://github.com/launchdarkly/launchpad-ui/pull/1888) [`51b495e`](https://github.com/launchdarkly/launchpad-ui/commit/51b495edb66f7ebdc07a5e12af24fed823656236) Thanks [@hsadhvani](https://github.com/hsadhvani)! - Add `underline` prop to Link component with `'always' | 'hover' | 'none'` values

### Patch Changes

- [#1938](https://github.com/launchdarkly/launchpad-ui/pull/1938) [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68) Thanks [@apucacao](https://github.com/apucacao)! - Upgrade `react-aria-components` to 1.19.0 along with the aligned `react-aria` (3.50.0), `react-stately` (3.48.0), and `@react-types/shared` (3.36.0) packages from the same release. The `@react-aria/*`, `@react-stately/*`, and `@internationalized/*` sub-packages were already at the matching versions and are unchanged.

This release is additive — no breaking changes. Notable upstream additions:

- `GridList` and `Tree` support full keyboard interaction with embedded text fields and other interactive elements via the `keyboardNavigationBehavior` prop.
- `Autocomplete` and `Popover` gain inline-completion support, including a new `getTargetRect` prop on `Popover` for positioning overlays relative to arbitrary character positions.
- `Menu`'s `onAction` callback now provides both the item key and its value.
- `DragTypes.has()` accepts multiple MIME types and wildcards.

- Updated dependencies [[`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a)]:
- @launchpad-ui/tokens@0.17.0
- @launchpad-ui/icons@0.26.1

## 0.21.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchpad-ui/components",
"version": "0.21.0",
"version": "0.22.0",
"description": "An implementation of LaunchDarkly's LaunchPad Design System using React Aria Components.",
"repository": {
"type": "git",
Expand Down
19 changes: 19 additions & 0 deletions packages/drawer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @launchpad-ui/drawer

## 0.9.17

### Patch Changes

- [#1938](https://github.com/launchdarkly/launchpad-ui/pull/1938) [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68) Thanks [@apucacao](https://github.com/apucacao)! - Upgrade `react-aria-components` to 1.19.0 along with the aligned `react-aria` (3.50.0), `react-stately` (3.48.0), and `@react-types/shared` (3.36.0) packages from the same release. The `@react-aria/*`, `@react-stately/*`, and `@internationalized/*` sub-packages were already at the matching versions and are unchanged.

This release is additive — no breaking changes. Notable upstream additions:

- `GridList` and `Tree` support full keyboard interaction with embedded text fields and other interactive elements via the `keyboardNavigationBehavior` prop.
- `Autocomplete` and `Popover` gain inline-completion support, including a new `getTargetRect` prop on `Popover` for positioning overlays relative to arbitrary character positions.
- `Menu`'s `onAction` callback now provides both the item key and its value.
- `DragTypes.has()` accepts multiple MIME types and wildcards.

- Updated dependencies [[`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a), [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68)]:
- @launchpad-ui/tokens@0.17.0
- @launchpad-ui/focus-trap@0.5.4
- @launchpad-ui/button@0.15.17
- @launchpad-ui/icons@0.26.1

## 0.9.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/drawer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchpad-ui/drawer",
"version": "0.9.16",
"version": "0.9.17",
"description": "A partial overlay that appears from the right side of the screen.",
"repository": "launchdarkly/launchpad-ui",
"license": "Apache-2.0",
Expand Down
19 changes: 19 additions & 0 deletions packages/dropdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @launchpad-ui/dropdown

## 0.10.17

### Patch Changes

- [#1938](https://github.com/launchdarkly/launchpad-ui/pull/1938) [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68) Thanks [@apucacao](https://github.com/apucacao)! - Upgrade `react-aria-components` to 1.19.0 along with the aligned `react-aria` (3.50.0), `react-stately` (3.48.0), and `@react-types/shared` (3.36.0) packages from the same release. The `@react-aria/*`, `@react-stately/*`, and `@internationalized/*` sub-packages were already at the matching versions and are unchanged.

This release is additive — no breaking changes. Notable upstream additions:

- `GridList` and `Tree` support full keyboard interaction with embedded text fields and other interactive elements via the `keyboardNavigationBehavior` prop.
- `Autocomplete` and `Popover` gain inline-completion support, including a new `getTargetRect` prop on `Popover` for positioning overlays relative to arbitrary character positions.
- `Menu`'s `onAction` callback now provides both the item key and its value.
- `DragTypes.has()` accepts multiple MIME types and wildcards.

- Updated dependencies [[`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a)]:
- @launchpad-ui/tokens@0.17.0
- @launchpad-ui/button@0.15.17
- @launchpad-ui/icons@0.26.1
- @launchpad-ui/popover@0.14.5

## 0.10.16

### Patch 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": "@launchpad-ui/dropdown",
"version": "0.10.16",
"version": "0.10.17",
"description": "An element that displays a list of actions or options to a user.",
"repository": "launchdarkly/launchpad-ui",
"license": "Apache-2.0",
Expand Down
21 changes: 21 additions & 0 deletions packages/filter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @launchpad-ui/filter

## 0.11.17

### Patch Changes

- [#1938](https://github.com/launchdarkly/launchpad-ui/pull/1938) [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68) Thanks [@apucacao](https://github.com/apucacao)! - Upgrade `react-aria-components` to 1.19.0 along with the aligned `react-aria` (3.50.0), `react-stately` (3.48.0), and `@react-types/shared` (3.36.0) packages from the same release. The `@react-aria/*`, `@react-stately/*`, and `@internationalized/*` sub-packages were already at the matching versions and are unchanged.

This release is additive — no breaking changes. Notable upstream additions:

- `GridList` and `Tree` support full keyboard interaction with embedded text fields and other interactive elements via the `keyboardNavigationBehavior` prop.
- `Autocomplete` and `Popover` gain inline-completion support, including a new `getTargetRect` prop on `Popover` for positioning overlays relative to arbitrary character positions.
- `Menu`'s `onAction` callback now provides both the item key and its value.
- `DragTypes.has()` accepts multiple MIME types and wildcards.

- Updated dependencies [[`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a), [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68)]:
- @launchpad-ui/tokens@0.17.0
- @launchpad-ui/dropdown@0.10.17
- @launchpad-ui/menu@0.16.17
- @launchpad-ui/button@0.15.17
- @launchpad-ui/icons@0.26.1
- @launchpad-ui/tooltip@0.12.5

## 0.11.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/filter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchpad-ui/filter",
"version": "0.11.16",
"version": "0.11.17",
"description": "filter a list of results",
"repository": "launchdarkly/launchpad-ui",
"license": "Apache-2.0",
Expand Down
13 changes: 13 additions & 0 deletions packages/focus-trap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @launchpad-ui/focus-trap

## 0.5.4

### Patch Changes

- [#1938](https://github.com/launchdarkly/launchpad-ui/pull/1938) [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68) Thanks [@apucacao](https://github.com/apucacao)! - Upgrade `react-aria-components` to 1.19.0 along with the aligned `react-aria` (3.50.0), `react-stately` (3.48.0), and `@react-types/shared` (3.36.0) packages from the same release. The `@react-aria/*`, `@react-stately/*`, and `@internationalized/*` sub-packages were already at the matching versions and are unchanged.

This release is additive — no breaking changes. Notable upstream additions:

- `GridList` and `Tree` support full keyboard interaction with embedded text fields and other interactive elements via the `keyboardNavigationBehavior` prop.
- `Autocomplete` and `Popover` gain inline-completion support, including a new `getTargetRect` prop on `Popover` for positioning overlays relative to arbitrary character positions.
- `Menu`'s `onAction` callback now provides both the item key and its value.
- `DragTypes.has()` accepts multiple MIME types and wildcards.

## 0.5.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/focus-trap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchpad-ui/focus-trap",
"version": "0.5.3",
"version": "0.5.4",
"description": "An internal utility not intended for public usage.",
"repository": "launchdarkly/launchpad-ui",
"license": "Apache-2.0",
Expand Down
19 changes: 19 additions & 0 deletions packages/form/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @launchpad-ui/form

## 0.15.17

### Patch Changes

- [#1938](https://github.com/launchdarkly/launchpad-ui/pull/1938) [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68) Thanks [@apucacao](https://github.com/apucacao)! - Upgrade `react-aria-components` to 1.19.0 along with the aligned `react-aria` (3.50.0), `react-stately` (3.48.0), and `@react-types/shared` (3.36.0) packages from the same release. The `@react-aria/*`, `@react-stately/*`, and `@internationalized/*` sub-packages were already at the matching versions and are unchanged.

This release is additive — no breaking changes. Notable upstream additions:

- `GridList` and `Tree` support full keyboard interaction with embedded text fields and other interactive elements via the `keyboardNavigationBehavior` prop.
- `Autocomplete` and `Popover` gain inline-completion support, including a new `getTargetRect` prop on `Popover` for positioning overlays relative to arbitrary character positions.
- `Menu`'s `onAction` callback now provides both the item key and its value.
- `DragTypes.has()` accepts multiple MIME types and wildcards.

- Updated dependencies [[`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a)]:
- @launchpad-ui/tokens@0.17.0
- @launchpad-ui/button@0.15.17
- @launchpad-ui/icons@0.26.1
- @launchpad-ui/tooltip@0.12.5

## 0.15.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchpad-ui/form",
"version": "0.15.16",
"version": "0.15.17",
"description": "Elements for composing forms, such as input fields, labels, radio buttons, etc.",
"repository": "launchdarkly/launchpad-ui",
"license": "Apache-2.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/icons/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @launchpad-ui/icons

## 0.26.1

### Patch Changes

- Updated dependencies [[`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a)]:
- @launchpad-ui/tokens@0.17.0

## 0.26.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchpad-ui/icons",
"version": "0.26.0",
"version": "0.26.1",
"description": "An element that supplements content and represents an action or feature within LaunchDarkly.",
"repository": {
"type": "git",
Expand Down
20 changes: 20 additions & 0 deletions packages/menu/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @launchpad-ui/menu

## 0.16.17

### Patch Changes

- [#1938](https://github.com/launchdarkly/launchpad-ui/pull/1938) [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68) Thanks [@apucacao](https://github.com/apucacao)! - Upgrade `react-aria-components` to 1.19.0 along with the aligned `react-aria` (3.50.0), `react-stately` (3.48.0), and `@react-types/shared` (3.36.0) packages from the same release. The `@react-aria/*`, `@react-stately/*`, and `@internationalized/*` sub-packages were already at the matching versions and are unchanged.

This release is additive — no breaking changes. Notable upstream additions:

- `GridList` and `Tree` support full keyboard interaction with embedded text fields and other interactive elements via the `keyboardNavigationBehavior` prop.
- `Autocomplete` and `Popover` gain inline-completion support, including a new `getTargetRect` prop on `Popover` for positioning overlays relative to arbitrary character positions.
- `Menu`'s `onAction` callback now provides both the item key and its value.
- `DragTypes.has()` accepts multiple MIME types and wildcards.

- Updated dependencies [[`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a), [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68)]:
- @launchpad-ui/tokens@0.17.0
- @launchpad-ui/form@0.15.17
- @launchpad-ui/icons@0.26.1
- @launchpad-ui/popover@0.14.5
- @launchpad-ui/tooltip@0.12.5

## 0.16.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/menu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchpad-ui/menu",
"version": "0.16.16",
"version": "0.16.17",
"description": "An element that presents a list of items a user can choose from.",
"repository": "launchdarkly/launchpad-ui",
"license": "Apache-2.0",
Expand Down
19 changes: 19 additions & 0 deletions packages/modal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @launchpad-ui/modal

## 0.21.17

### Patch Changes

- [#1938](https://github.com/launchdarkly/launchpad-ui/pull/1938) [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68) Thanks [@apucacao](https://github.com/apucacao)! - Upgrade `react-aria-components` to 1.19.0 along with the aligned `react-aria` (3.50.0), `react-stately` (3.48.0), and `@react-types/shared` (3.36.0) packages from the same release. The `@react-aria/*`, `@react-stately/*`, and `@internationalized/*` sub-packages were already at the matching versions and are unchanged.

This release is additive — no breaking changes. Notable upstream additions:

- `GridList` and `Tree` support full keyboard interaction with embedded text fields and other interactive elements via the `keyboardNavigationBehavior` prop.
- `Autocomplete` and `Popover` gain inline-completion support, including a new `getTargetRect` prop on `Popover` for positioning overlays relative to arbitrary character positions.
- `Menu`'s `onAction` callback now provides both the item key and its value.
- `DragTypes.has()` accepts multiple MIME types and wildcards.

- Updated dependencies [[`ccc97d8`](https://github.com/launchdarkly/launchpad-ui/commit/ccc97d8ab2119437a81a8a17affb5f7fd7c1373a), [`941f77c`](https://github.com/launchdarkly/launchpad-ui/commit/941f77c91ae47f19533496a9ab3a542c479c6a68)]:
- @launchpad-ui/tokens@0.17.0
- @launchpad-ui/focus-trap@0.5.4
- @launchpad-ui/button@0.15.17
- @launchpad-ui/icons@0.26.1

## 0.21.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/modal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchpad-ui/modal",
"version": "0.21.16",
"version": "0.21.17",
"description": "An element that presents users information and actions over a page.",
"repository": "launchdarkly/launchpad-ui",
"license": "Apache-2.0",
Expand Down
Loading
Loading