Skip to content

Commit 0c5e98f

Browse files
committed
feat(storybook): merge main into figma-connect branch
2 parents 94397c3 + 4bf488b commit 0c5e98f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+511
-96
lines changed

.changeset/brave-signs-pump.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/busy-clocks-bet.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/lucky-areas-hang.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/proud-peas-invent.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/sync-icons.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
with:
1818
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
1919
ssm_parameter_pairs: |
20+
/production/common/launchpad-ui/gh-pat-token = CUSTOM_GITHUB_TOKEN,
2021
/production/common/launchpad-ui/figma-access-token = FIGMA_ACCESS_TOKEN
2122
2223
- name: Checkout
@@ -70,8 +71,13 @@ jobs:
7071
with:
7172
branch: ci/feat/sync-icons
7273
delete-branch: true
73-
commit-message: "feat(icons): sync and connect icons with figma library"
74+
commit-message: |
75+
feat(icons): sync and connect icons with figma library
76+
77+
${{ env.CHANGESET_SUMMARY }}
7478
title: "feat(icons): sync and connect icons with figma library"
79+
token: ${{ env.CUSTOM_GITHUB_TOKEN }}
80+
draft: true
7581
body: |
7682
## Summary
7783
This PR is an automated icon sync with LaunchPad Figma library. If you resync while this PR is open, the updated changes will be added to this same PR.
-54.8 KB
Binary file not shown.

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
"@testing-library/user-event": "^14.6.0",
4848
"@types/css-modules": "^1.0.5",
4949
"@types/node": "^22.15.3",
50-
"@types/react": "^19.1.11",
51-
"@types/react-dom": "^19.1.8",
50+
"@types/react": "^19.1.12",
51+
"@types/react-dom": "^19.1.9",
5252
"@vanilla-extract/css": "^1.17.1",
5353
"@vanilla-extract/vite-plugin": "^5.1.0",
5454
"@vitejs/plugin-react-oxc": "^0.2.0",
@@ -87,11 +87,12 @@
8787
"onlyBuiltDependencies": [
8888
"@biomejs/biome",
8989
"@bundled-es-modules/glob",
90+
"@parcel/watcher",
9091
"@swc/core",
9192
"esbuild",
9293
"nx",
93-
"style-dictionary",
94-
"rolldown"
94+
"rolldown",
95+
"style-dictionary"
9596
],
9697
"peerDependencyRules": {
9798
"allowedVersions": {

packages/box/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @launchpad-ui/box
22

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- [#1767](https://github.com/launchdarkly/launchpad-ui/pull/1767) [`217b7c4`](https://github.com/launchdarkly/launchpad-ui/commit/217b7c4b47e44fd7ad7eb1b0ba8367308da596b3) Thanks [@vezaynk](https://github.com/vezaynk)! - add skipLibCheck for tsconfing.build.json
8+
9+
- Updated dependencies [[`217b7c4`](https://github.com/launchdarkly/launchpad-ui/commit/217b7c4b47e44fd7ad7eb1b0ba8367308da596b3)]:
10+
- @launchpad-ui/vars@0.5.1
11+
312
## 0.4.0
413

514
### Minor Changes

packages/box/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchpad-ui/box",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "A polymorphic React component with design token sprinkles.",
55
"repository": "launchdarkly/launchpad-ui",
66
"license": "Apache-2.0",

packages/box/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.base.json",
33
"include": ["src/*.ts", "src/*.tsx"],
44
"compilerOptions": {
5-
"outDir": "./dist"
5+
"outDir": "./dist",
6+
"skipLibCheck": true
67
}
78
}

0 commit comments

Comments
 (0)