Skip to content

Commit 5e10b7f

Browse files
authored
feat: lite UI fixes and select control fixes (#883)
* feat: lite-ui sheet animation improvements (wip) * update deps and add dev client * update deps * fixes * multiselect fixes * Update .prettierignore * add changeset * dannyhw/feat/deps update (#884) * updates to deps and typsecripts expo etc * fix bundling et * tsdown * fix redo select modal * fixes * simplify color picker code * fix * i give up with keyboard animations actually * fix * fixes * Update publish.yml * fix hanging process * fix: wider version range for safe area * Update pnpm-lock.yaml * tryagin * just hate dependecny trees
1 parent 3b8247d commit 5e10b7f

95 files changed

Lines changed: 4224 additions & 4670 deletions

File tree

Some content is hidden

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

.changeset/little-points-ask.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
'@storybook/react-native-ui-common': patch
3+
'@storybook/addon-ondevice-backgrounds': patch
4+
'@storybook/react-native-theming': patch
5+
'@storybook/react-native-ui-lite': patch
6+
'@storybook/addon-ondevice-controls': patch
7+
'@storybook/addon-ondevice-actions': patch
8+
'@storybook/react-native-ui': patch
9+
'@storybook/addon-ondevice-notes': patch
10+
'@storybook/react-native': patch
11+
---
12+
13+
liteui animation changes and select control adjustments

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set node version
2626
uses: actions/setup-node@v4
2727
with:
28-
node-version: 24
28+
node-version: 26
2929
cache: 'pnpm'
3030

3131
- name: Install

.github/workflows/publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- uses: actions/setup-node@v4
3333
with:
34-
node-version: 24
34+
node-version: 26
3535
cache: 'pnpm'
3636
registry-url: 'https://registry.npmjs.org'
3737

@@ -50,6 +50,10 @@ jobs:
5050
env:
5151
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5252

53+
- name: Update lockfile (canary)
54+
if: inputs.release_type == 'canary'
55+
run: pnpm install --no-frozen-lockfile
56+
5357
- name: Publish (canary)
5458
if: inputs.release_type == 'canary'
5559
run: pnpm changeset publish --tag canary

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set node version
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: 24
21+
node-version: 26
2222
cache: 'pnpm'
2323
- name: install and compile
2424
run: pnpm install --frozen-lockfile

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,5 @@ examples/expo-example/.maestro/output/*
3636

3737
examples/expo-example/components/PerfTesting/*.stories.tsx
3838
examples/expo-example/.certs/
39+
examples/expo-example/android
40+
examples/expo-example/ios

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.11.1
1+
26

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ examples/repack-example/.rnstorybook/storybook.requires.ts
99
docs/.docusaurus
1010
docs/build
1111
.claude/
12+
.zed/
1213
.changeset/
1314
examples/expo-example/assets

.zed/settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Folder-specific settings
2+
//
3+
// For a full list of overridable settings, and general information on folder-specific settings,
4+
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
5+
{
6+
"code_actions_on_format": {
7+
"source.fixAll.eslint": true,
8+
},
9+
"format_on_save": "on",
10+
"formatter": "prettier",
11+
12+
"language_servers": ["!biome", "eslint", "vtsls"],
13+
}

docs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@
3434
"@mdx-js/react": "^3.1.1",
3535
"clsx": "^2.1.1",
3636
"prism-react-renderer": "^2.4.1",
37-
"react": "19.2.0",
38-
"react-dom": "19.2.0"
37+
"react": "19.2.3",
38+
"react-dom": "19.2.3"
3939
},
4040
"devDependencies": {
4141
"@docusaurus/module-type-aliases": "^3.10.0",
4242
"@docusaurus/tsconfig": "^3.10.0",
4343
"@docusaurus/types": "^3.10.0",
44-
"typescript": "~5.9.3"
44+
"typescript": "~6.0.3"
4545
},
4646
"engines": {
47-
"node": ">=22.18.0"
47+
"node": ">=26.0.0"
4848
}
4949
}

docs/tsconfig.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
{
22
// This file is not used in compilation. It is here just for a nice editor experience.
33
"extends": "@docusaurus/tsconfig",
4-
"compilerOptions": {
5-
"baseUrl": "."
6-
},
74
"exclude": [".docusaurus", "build"]
85
}

0 commit comments

Comments
 (0)