Skip to content

chore(deps): bump the patch-updates group with 11 updates#1211

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/patch-updates-f59ccc9b25
Apr 13, 2026
Merged

chore(deps): bump the patch-updates group with 11 updates#1211
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/patch-updates-f59ccc9b25

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 13, 2026

Bumps the patch-updates group with 11 updates:

Package From To
better-auth 1.6.0 1.6.2
vite 8.0.5 8.0.8
@radix-ui/react-aspect-ratio 1.1.7 1.1.8
i18next 26.0.3 26.0.4
ag-grid-react 35.2.0 35.2.1
ag-grid-community 35.2.0 35.2.1
@ai-sdk/react 3.0.151 3.0.160
ai 6.0.149 6.0.158
fumadocs-core 16.7.10 16.7.14
fumadocs-mdx 14.2.11 14.2.13
fumadocs-ui 16.7.10 16.7.14

Updates better-auth from 1.6.0 to 1.6.2

Release notes

Sourced from better-auth's releases.

v1.6.2

better-auth

❗ Breaking Changes

  • Prevented unverified TOTP enrollment from blocking sign-in (#8711)

Migration: Adds a verified column to the twoFactor table (defaults to true). Existing rows are unaffected. No data migration required.

Features

  • Included enabled 2FA methods in sign-in redirect response (#8772)

Bug Fixes

  • Fixed OAuth state verification against cookie-stored nonce to prevent CSRF (#8949)
  • Fixed infinite router refresh loops in nextCookies() by replacing cookie probe with header-based RSC detection (#9059)
  • Fixed cross-provider account collision in link-social callback (#8983)
  • Included RelayState in signed SAML AuthnRequests (#9058)

For detailed changes, see CHANGELOG

@better-auth/oauth-provider

Bug Fixes

  • Fixed multi-valued query params collapsing through prompt redirects (#9060)
  • Rejected skip_consent at schema level in dynamic client registration (#8998)

For detailed changes, see CHANGELOG

@better-auth/sso

Bug Fixes

  • Fixed SAMLResponse decoding failures caused by line-wrapped base64 (#8968)

For detailed changes, see CHANGELOG

Contributors

Thanks to everyone who contributed to this release:

@​aarmful, @​cyphercodes, @​dvanmali, @​gustavovalverde, @​jaydeep-pipaliya, @​ping-maxwell

Full changelog: v1.6.1...v1.6.2

v1.6.1

better-auth

Bug Fixes

... (truncated)

Changelog

Sourced from better-auth's changelog.

1.6.2

Patch Changes

  • #8949 9deb793 Thanks @​ping-maxwell! - security: verify OAuth state parameter against cookie-stored nonce to prevent CSRF on cookie-backed flows

  • #8983 2cbcb9b Thanks @​jaydeep-pipaliya! - fix(oauth2): prevent cross-provider account collision in link-social callback

    The link-social callback used findAccount(accountId) which matched by account ID across all providers. When two providers return the same numeric ID (e.g. both Google and GitHub assign 99999), the lookup could match the wrong provider's account, causing a spurious account_already_linked_to_different_user error or silently updating the wrong account's tokens.

    Replaced with findAccountByProviderId(accountId, providerId) to scope the lookup to the correct provider, matching the pattern already used in the generic OAuth plugin.

  • #9059 b20fa42 Thanks @​gustavovalverde! - fix(next-js): replace cookie probe with header-based RSC detection in nextCookies() to prevent infinite router refresh loops and eliminate leaked __better-auth-cookie-store cookie. Also fix two-factor enrollment flows to set the new session cookie before deleting the old session.

  • #9058 608d8c3 Thanks @​gustavovalverde! - fix(sso): include RelayState in signed SAML AuthnRequests per SAML 2.0 Bindings §3.4.4.1

    • RelayState is now passed to samlify's ServiceProvider constructor so it is included in the redirect binding signature. Previously it was appended after the signature, causing spec-compliant IdPs to reject signed AuthnRequests.
    • authnRequestsSigned: true without a private key now throws instead of silently sending unsigned requests.
  • #8772 8409843 Thanks @​aarmful! - feat(two-factor): include enabled 2fa methods in sign-in redirect response

    The 2FA sign-in redirect now returns twoFactorMethods (e.g. ["totp", "otp"]) so frontends can render the correct verification UI without guessing. The onTwoFactorRedirect client callback receives twoFactorMethods as a context parameter.

    • TOTP is included only when the user has a verified TOTP secret and TOTP is not disabled in config.
    • OTP is included when otpOptions.sendOTP is configured.
    • Unverified TOTP enrollments are excluded from the methods list.
  • #8711 e78a7b1 Thanks @​aarmful! - fix(two-factor): prevent unverified TOTP enrollment from gating sign-in

    Adds a verified boolean column to the twoFactor table that tracks whether a TOTP secret has been confirmed by the user.

    • First-time enrollment: enableTwoFactor creates the row with verified: false. The row is promoted to verified: true only after verifyTOTP succeeds with a valid code.
    • Re-enrollment (calling enableTwoFactor when TOTP is already verified): the new row preserves verified: true, so the user is never locked out of sign-in while rotating their TOTP secret.
    • Sign-in: verifyTOTP rejects rows where verified === false, preventing abandoned enrollments from blocking authentication. Backup codes and OTP are unaffected and work as fallbacks during unfinished enrollment.

    Migration: The new column defaults to true, so existing twoFactor rows are treated as verified. No data migration is required. skipVerificationOnEnable: true is also unaffected — the row is created as verified: true in that mode.

  • Updated dependencies []:

    • @​better-auth/core@​1.6.2
    • @​better-auth/drizzle-adapter@​1.6.2
    • @​better-auth/kysely-adapter@​1.6.2
    • @​better-auth/memory-adapter@​1.6.2
    • @​better-auth/mongo-adapter@​1.6.2
    • @​better-auth/prisma-adapter@​1.6.2
    • @​better-auth/telemetry@​1.6.2

1.6.1

Patch Changes

... (truncated)

Commits
  • 700d298 chore: version packages (#9052)
  • b20fa42 fix(next-js): replace cookie probe with header-based RSC detection in nextCoo...
  • 2cbcb9b fix(oauth2): prevent cross-provider account collision in link-social callback...
  • 9deb793 fix: cookie store strategy should verify oauth state (#8949)
  • 8409843 feat(two-factor): include enabled 2fa methods in sign-in redirect response (#...
  • e78a7b1 fix(two-factor): prevent unverified TOTP enrollment from gating sign-in (#8711)
  • 85bb710 chore: version packages (#9018)
  • 7495830 fix(api): restore getSession accessibility in generic Auth<O> context (#9017)
  • 2e537df fix: endpoint instrumentation to always use route template (#9023)
  • f61ad1c fix: use INVALID_PASSWORD for all checkPassword failures (#8902)
  • See full diff in compare view

Updates vite from 8.0.5 to 8.0.8

Release notes

Sourced from vite's releases.

v8.0.8

Please refer to CHANGELOG.md for details.

v8.0.7

Please refer to CHANGELOG.md for details.

v8.0.6

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

8.0.8 (2026-04-09)

Features

Bug Fixes

  • avoid dns.getDefaultResultOrder temporary (#22202) (15f1c15)
  • ssr: class property keys hoisting matching imports (#22199) (e137601)

8.0.7 (2026-04-07)

Bug Fixes

  • use sync dns.getDefaultResultOrder instead of dns.promises (#22185) (5c05b04)

8.0.6 (2026-04-07)

Features

Bug Fixes

Performance Improvements

  • early return in getLocalhostAddressIfDiffersFromDNS when DNS order is verbatim (#22151) (56ec256)

Miscellaneous Chores

Commits

Updates @radix-ui/react-aspect-ratio from 1.1.7 to 1.1.8

Commits

Updates i18next from 26.0.3 to 26.0.4

Release notes

Sourced from i18next's releases.

v26.0.4

  • fix(types): inline formatting options like {{price, currency(EUR)}} are now correctly resolved to their base format type (e.g. number for currency) instead of falling back to string 2378
Changelog

Sourced from i18next's changelog.

26.0.4

  • fix(types): inline formatting options like {{price, currency(EUR)}} are now correctly resolved to their base format type (e.g. number for currency) instead of falling back to string 2378
Commits

Updates ag-grid-react from 35.2.0 to 35.2.1

Release notes

Sourced from ag-grid-react's releases.

v35.2.1

https://www.ag-grid.com/changelog/?fixVersion=35.2.1

Commits

Updates ag-grid-community from 35.2.0 to 35.2.1

Release notes

Sourced from ag-grid-community's releases.

v35.2.1

https://www.ag-grid.com/changelog/?fixVersion=35.2.1

Commits

Updates @ai-sdk/react from 3.0.151 to 3.0.160

Release notes

Sourced from @​ai-sdk/react's releases.

@​ai-sdk/react@​3.0.160

Patch Changes

  • Updated dependencies [295beba]
    • ai@6.0.158

@​ai-sdk/react@​3.0.159

Patch Changes

  • Updated dependencies [ff11aee]
    • ai@6.0.157
Commits
  • 78dd62f Version Packages (#14335)
  • 295beba Backport: fix(ai): fix lastAssistantMessageIsCompleteWithApprovalResponses ...
  • dce61ca Version Packages (#14324)
  • ff11aee Backport: fix(ai): fix providerExecuted tool approvals being passed to lang...
  • 9a8d276 Backport: feat(mcp): surface 'serverInfo' exposed from the MCP server (#14321)
  • 1eea534 Backport: docs: add zeroentropy as a community provider (#14305)
  • 7a373b5 Version Packages (#14286)
  • 08c5ac3 Backport: chore(provider/gateway): update gateway model settings files v6 (#1...
  • eaf25cd Version Packages (#14283)
  • 06764c5 Backport: fix(ai): skip passing invalid JSON inputs to response messages (#14...
  • Additional commits viewable in compare view

Updates ai from 6.0.149 to 6.0.158

Release notes

Sourced from ai's releases.

ai@6.0.158

Patch Changes

  • 295beba: fix(ai): fix lastAssistantMessageIsCompleteWithApprovalResponses to no longer ignore providerExecuted tool approvals

ai@6.0.157

Patch Changes

  • ff11aee: fix(ai): fix providerExecuted tool approvals being passed to language model twice
Commits
  • 78dd62f Version Packages (#14335)
  • 295beba Backport: fix(ai): fix lastAssistantMessageIsCompleteWithApprovalResponses ...
  • dce61ca Version Packages (#14324)
  • ff11aee Backport: fix(ai): fix providerExecuted tool approvals being passed to lang...
  • 9a8d276 Backport: feat(mcp): surface 'serverInfo' exposed from the MCP server (#14321)
  • 1eea534 Backport: docs: add zeroentropy as a community provider (#14305)
  • 7a373b5 Version Packages (#14286)
  • 08c5ac3 Backport: chore(provider/gateway): update gateway model settings files v6 (#1...
  • eaf25cd Version Packages (#14283)
  • 06764c5 Backport: fix(ai): skip passing invalid JSON inputs to response messages (#14...
  • Additional commits viewable in compare view

Updates fumadocs-core from 16.7.10 to 16.7.14

Release notes

Sourced from fumadocs-core's releases.

fumadocs-core@16.7.14

Patch Changes

  • 2d8f596: fix npm pack skipping nested node_modules

fumadocs-core@16.7.13

Patch Changes

  • 690ddb9: bundle more deps

fumadocs-core@16.7.12

No release notes provided.

fumadocs-core@16.7.11

Patch Changes

  • 5524927: extend page tree root scope
  • d47c4f1: LLMs: support generating section for a specific page tree node
Commits

Updates fumadocs-mdx from 14.2.11 to 14.2.13

Release notes

Sourced from fumadocs-mdx's releases.

fumadocs-mdx@14.2.13

Patch Changes

  • 2d8f596: fix npm pack skipping nested node_modules
  • Updated dependencies [2d8f596]
    • @​fumadocs/mdx-remote@​1.4.8
    • fumadocs-core@16.7.14

fumadocs-mdx@14.2.12

Patch Changes

  • 690ddb9: bundle more deps
  • Updated dependencies [690ddb9]
    • @​fumadocs/mdx-remote@​1.4.7
    • fumadocs-core@16.7.13
Commits

Updates fumadocs-ui from 16.7.10 to 16.7.14

Release notes

Sourced from fumadocs-ui's releases.

fumadocs-ui@16.7.14

Patch Changes

  • 2d8f596: fix npm pack skipping nested node_modules
  • Updated dependencies [2d8f596]
    • @​fumadocs/tailwind@​0.0.5
    • fumadocs-core@16.7.14

fumadocs-ui@16.7.13

Patch Changes

  • 690ddb9: bundle more deps
  • Updated dependencies [690ddb9]
    • @​fumadocs/tailwind@​0.0.4
    • fumadocs-core@16.7.13

fumadocs-ui@16.7.12

Patch Changes

  • a5dcc11: allow to specify <TOCItems /> props
  • 56f7e5b: Improve TOC thumb box
    • fumadocs-core@16.7.12

fumadocs-ui@16.7.11

Patch Changes

  • Updated dependencies [5524927]
  • Updated dependencies [d47c4f1]
    • fumadocs-core@16.7.11
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the patch-updates group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [better-auth](https://github.com/better-auth/better-auth/tree/HEAD/packages/better-auth) | `1.6.0` | `1.6.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.5` | `8.0.8` |
| [@radix-ui/react-aspect-ratio](https://github.com/radix-ui/primitives) | `1.1.7` | `1.1.8` |
| [i18next](https://github.com/i18next/i18next) | `26.0.3` | `26.0.4` |
| [ag-grid-react](https://github.com/ag-grid/ag-grid) | `35.2.0` | `35.2.1` |
| [ag-grid-community](https://github.com/ag-grid/ag-grid) | `35.2.0` | `35.2.1` |
| [@ai-sdk/react](https://github.com/vercel/ai) | `3.0.151` | `3.0.160` |
| [ai](https://github.com/vercel/ai) | `6.0.149` | `6.0.158` |
| [fumadocs-core](https://github.com/fuma-nama/fumadocs) | `16.7.10` | `16.7.14` |
| [fumadocs-mdx](https://github.com/fuma-nama/fumadocs) | `14.2.11` | `14.2.13` |
| [fumadocs-ui](https://github.com/fuma-nama/fumadocs) | `16.7.10` | `16.7.14` |


Updates `better-auth` from 1.6.0 to 1.6.2
- [Release notes](https://github.com/better-auth/better-auth/releases)
- [Changelog](https://github.com/better-auth/better-auth/blob/main/packages/better-auth/CHANGELOG.md)
- [Commits](https://github.com/better-auth/better-auth/commits/better-auth@1.6.2/packages/better-auth)

Updates `vite` from 8.0.5 to 8.0.8
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.8/packages/vite)

Updates `@radix-ui/react-aspect-ratio` from 1.1.7 to 1.1.8
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `i18next` from 26.0.3 to 26.0.4
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v26.0.3...v26.0.4)

Updates `ag-grid-react` from 35.2.0 to 35.2.1
- [Release notes](https://github.com/ag-grid/ag-grid/releases)
- [Commits](ag-grid/ag-grid@release-35.2.0...release-35.2.1)

Updates `ag-grid-community` from 35.2.0 to 35.2.1
- [Release notes](https://github.com/ag-grid/ag-grid/releases)
- [Commits](ag-grid/ag-grid@release-35.2.0...release-35.2.1)

Updates `@ai-sdk/react` from 3.0.151 to 3.0.160
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/compare/@ai-sdk/react@3.0.151...@ai-sdk/react@3.0.160)

Updates `ai` from 6.0.149 to 6.0.158
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/compare/ai@6.0.149...ai@6.0.158)

Updates `fumadocs-core` from 16.7.10 to 16.7.14
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-core@16.7.10...fumadocs-core@16.7.14)

Updates `fumadocs-mdx` from 14.2.11 to 14.2.13
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-mdx@14.2.11...fumadocs-mdx@14.2.13)

Updates `fumadocs-ui` from 16.7.10 to 16.7.14
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-ui@16.7.10...fumadocs-ui@16.7.14)

---
updated-dependencies:
- dependency-name: better-auth
  dependency-version: 1.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: vite
  dependency-version: 8.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@radix-ui/react-aspect-ratio"
  dependency-version: 1.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: i18next
  dependency-version: 26.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: ag-grid-react
  dependency-version: 35.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: ag-grid-community
  dependency-version: 35.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@ai-sdk/react"
  dependency-version: 3.0.160
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: ai
  dependency-version: 6.0.158
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: fumadocs-core
  dependency-version: 16.7.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: fumadocs-mdx
  dependency-version: 14.2.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: fumadocs-ui
  dependency-version: 16.7.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 13, 2026

Labels

The following labels could not be found: automated. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@vercel
Copy link
Copy Markdown

vercel bot commented Apr 13, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
objectui-demo Ready Ready Preview, Comment Apr 13, 2026 8:05am
1 Skipped Deployment
Project Deployment Actions Updated (UTC)
objectui Ignored Ignored Apr 13, 2026 8:05am

Request Review

@github-actions github-actions bot merged commit 98eb029 into main Apr 13, 2026
6 of 10 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/patch-updates-f59ccc9b25 branch April 13, 2026 08:05
@github-actions
Copy link
Copy Markdown
Contributor

❌ Console Performance Budget

Metric Value Budget
Main entry (gzip) 287.3 KB 60 KB
Entry file index-BD6AS23r.js
Status FAIL

📦 Bundle Size Report

Package Size Gzipped
auth (AuthContext.js) 0.31KB 0.24KB
auth (AuthGuard.js) 1.17KB 0.53KB
auth (AuthProvider.js) 7.37KB 1.79KB
auth (ForgotPasswordForm.js) 4.91KB 1.66KB
auth (LoginForm.js) 5.00KB 1.64KB
auth (PreviewBanner.js) 0.90KB 0.50KB
auth (RegisterForm.js) 6.85KB 1.86KB
auth (UserMenu.js) 3.40KB 1.22KB
auth (createAuthClient.js) 5.14KB 1.60KB
auth (createAuthenticatedFetch.js) 1.24KB 0.60KB
auth (index.js) 1.18KB 0.51KB
auth (types.js) 0.59KB 0.35KB
auth (useAuth.js) 1.57KB 0.57KB
collaboration (CommentThread.js) 18.38KB 4.49KB
collaboration (LiveCursors.js) 3.17KB 1.27KB
collaboration (PresenceAvatars.js) 3.65KB 1.42KB
collaboration (index.js) 1.16KB 0.50KB
collaboration (useCommentSearch.js) 1.98KB 0.88KB
collaboration (useConflictResolution.js) 7.75KB 1.86KB
collaboration (useMentionNotifications.js) 1.81KB 0.68KB
collaboration (usePresence.js) 6.33KB 1.84KB
collaboration (useRealtimeSubscription.js) 7.91KB 2.01KB
components (index.js) 1979.18KB 464.72KB
core (index.js) 1.29KB 0.51KB
create-plugin (index.js) 10.13KB 3.17KB
data-objectstack (index.js) 45.20KB 11.14KB
fields (LookupField-B6MOSQVJ.js) 30.75KB 8.34KB
fields (index.js) 74.79KB 15.84KB
fields (rolldown-runtime-CAFD8bLK.js) 0.24KB 0.24KB
fields (useFieldTranslation-Bv3oUVgb.js) 0.26KB 0.21KB
i18n (i18n.js) 2.03KB 0.77KB
i18n (index.js) 1.99KB 0.79KB
i18n (provider.js) 4.63KB 1.47KB
i18n (useObjectLabel.js) 4.51KB 1.61KB
i18n (useSafeTranslation.js) 1.63KB 0.57KB
layout (index.js) 88.09KB 24.91KB
mobile (MobileProvider.js) 0.92KB 0.49KB
mobile (ResponsiveContainer.js) 0.94KB 0.38KB
mobile (breakpoints.js) 1.51KB 0.70KB
mobile (index.js) 1.19KB 0.53KB
mobile (pwa.js) 0.97KB 0.49KB
mobile (serviceWorker.js) 1.48KB 0.62KB
mobile (useBreakpoint.js) 1.54KB 0.65KB
mobile (useGesture.js) 4.42KB 1.27KB
mobile (usePullToRefresh.js) 2.53KB 0.85KB
mobile (useResponsive.js) 0.71KB 0.42KB
mobile (useResponsiveConfig.js) 1.36KB 0.63KB
mobile (useSpecGesture.js) 1.77KB 0.77KB
mobile (useTouchTarget.js) 1.01KB 0.54KB
permissions (PermissionContext.js) 0.31KB 0.25KB
permissions (PermissionGuard.js) 0.89KB 0.45KB
permissions (PermissionProvider.js) 3.11KB 0.87KB
permissions (evaluator.js) 4.00KB 1.23KB
permissions (index.js) 0.85KB 0.40KB
permissions (store.js) 0.91KB 0.42KB
permissions (useFieldPermissions.js) 1.28KB 0.52KB
permissions (usePermissions.js) 0.99KB 0.49KB
plugin-aggrid (AddressField-DKqaE9pD.js) 2.85KB 0.81KB
plugin-aggrid (AgGridImpl-DBqxIsko.js) 6.39KB 2.24KB
plugin-aggrid (AutoNumberField-0RU2dNKe.js) 0.43KB 0.34KB
plugin-aggrid (AvatarField-wqCg539O.js) 2.65KB 1.15KB
plugin-aggrid (BooleanField-DRzAZhSq.js) 1.23KB 0.58KB
plugin-aggrid (CodeField-RWhnDMyL.js) 0.86KB 0.53KB
plugin-aggrid (ColorField-B-YAFXdz.js) 1.26KB 0.59KB
plugin-aggrid (CurrencyField-Bu80a-sI.js) 1.52KB 0.80KB
plugin-aggrid (DateField-CV-NpLbM.js) 0.65KB 0.43KB
plugin-aggrid (DateTimeField--YTsgTjw.js) 0.82KB 0.48KB
plugin-aggrid (EmailField-B-3fWJsH.js) 0.88KB 0.53KB
plugin-aggrid (FileField-BPvzUIuL.js) 5.67KB 2.06KB
plugin-aggrid (FormulaField-MQXJZOep.js) 0.64KB 0.46KB
plugin-aggrid (GeolocationField-BHmdus6A.js) 4.10KB 1.48KB
plugin-aggrid (GridField-DHsGo9l2.js) 1.96KB 0.76KB
plugin-aggrid (ImageField-Do-iSxOD.js) 2.65KB 1.12KB
plugin-aggrid (LocationField-DSvhU9Dz.js) 1.00KB 0.59KB
plugin-aggrid (LookupField-BfVZk4gD.js) 0.08KB 0.11KB
plugin-aggrid (LookupField-DVAHYO50.js) 33.78KB 8.95KB
plugin-aggrid (MasterDetailField-BVt_izEo.js) 3.40KB 1.14KB
plugin-aggrid (NumberField-Kz4_o5DE.js) 0.76KB 0.50KB
plugin-aggrid (ObjectAgGridImpl-C4f5fCiq.js) 726.52KB 183.35KB
plugin-aggrid (ObjectField-C1qkl6s4.js) 1.63KB 0.82KB
plugin-aggrid (PasswordField-DB_RmpIU.js) 1.88KB 0.94KB
plugin-aggrid (PercentField-Dmipqv0I.js) 1.85KB 0.88KB
plugin-aggrid (PhoneField-Dn4h6V9H.js) 0.87KB 0.54KB
plugin-aggrid (QRCodeField-C59bI7oR.js) 3.27KB 1.25KB
plugin-aggrid (RatingField-DvTgKH0C.js) 2.05KB 0.93KB
plugin-aggrid (RichTextField-CN5BRd_7.js) 1.19KB 0.63KB
plugin-aggrid (SelectField-CKx_3rra.js) 0.08KB 0.11KB
plugin-aggrid (SelectField-rHhnjOB_.js) 1.07KB 0.58KB
plugin-aggrid (SignatureField-DX0fBAS2.js) 3.14KB 1.29KB
plugin-aggrid (SliderField-C9IhmjbF.js) 1.11KB 0.55KB
plugin-aggrid (SummaryField-R9RENAZv.js) 0.60KB 0.45KB
plugin-aggrid (TextAreaField-BY63Nr6-.js) 1.12KB 0.64KB
plugin-aggrid (TextField-SIw8aMzf.js) 0.90KB 0.50KB
plugin-aggrid (TimeField-xxziHPjE.js) 0.61KB 0.40KB
plugin-aggrid (UrlField-Ihk3_ff5.js) 1.04KB 0.57KB
plugin-aggrid (UserField-BMaRAs-r.js) 2.62KB 0.98KB
plugin-aggrid (VectorField-Ci167cxr.js) 0.92KB 0.52KB
plugin-aggrid (createLucideIcon-73kh9fYs.js) 1.72KB 0.93KB
plugin-aggrid (image-DN4QRxZf.js) 0.36KB 0.26KB
plugin-aggrid (index.js) 10.33KB 2.43KB
plugin-aggrid (jsx-runtime-CGDkM_Jn.js) 7.83KB 2.89KB
plugin-aggrid (plus-DoGWIfjF.js) 0.19KB 0.19KB
plugin-aggrid (upload-DlNmJ3Bh.js) 0.29KB 0.23KB
plugin-aggrid (useFieldTranslation-weTDu4xQ.js) 9.53KB 3.69KB
plugin-aggrid (x-B7f4dqYS.js) 0.19KB 0.19KB
plugin-ai (index.js) 24.21KB 6.44KB
plugin-calendar (index.js) 44.95KB 12.95KB
plugin-charts (AdvancedChartImpl-IfSamHdR.js) 118.19KB 24.21KB
plugin-charts (BarChart-Dfc1t3aO.js) 523.60KB 126.88KB
plugin-charts (ChartImpl-Qs0PfdIP.js) 3.62KB 1.16KB
plugin-charts (index.js) 12.70KB 4.07KB
plugin-charts (jsx-runtime-C8d0IhUE.js) 8.40KB 3.09KB
plugin-chatbot (index.js) 1194.20KB 340.76KB
plugin-dashboard (index.js) 158.02KB 38.69KB
plugin-designer (index.js) 244.91KB 47.93KB
plugin-detail (AddressField-DH5U7CLr.js) 2.66KB 0.79KB
plugin-detail (AutoNumberField-CHSJP_SY.js) 0.44KB 0.34KB
plugin-detail (AvatarField-S-WbZ1eC.js) 2.40KB 1.09KB
plugin-detail (BooleanField-BqXtf6Pa.js) 1.14KB 0.55KB
plugin-detail (CodeField-oTfUrNJa.js) 0.80KB 0.50KB
plugin-detail (ColorField-INjyirxJ.js) 1.19KB 0.57KB
plugin-detail (CurrencyField-CBnH5sMr.js) 1.47KB 0.78KB
plugin-detail (DateField-BDjsLVXC.js) 0.60KB 0.40KB
plugin-detail (DateTimeField-DxcNQd9l.js) 0.78KB 0.46KB
plugin-detail (EmailField-ghIUaUcv.js) 0.83KB 0.51KB
plugin-detail (FileField-DHMw9gDN.js) 5.12KB 1.90KB
plugin-detail (FormulaField-CyEuXePl.js) 0.66KB 0.45KB
plugin-detail (GeolocationField-BGpHg_Oj.js) 3.31KB 1.23KB
plugin-detail (GridField-BSi-APKL.js) 1.83KB 0.74KB
plugin-detail (ImageField-Cr2LH3GV.js) 2.45KB 1.09KB
plugin-detail (LocationField-DEGwVbTm.js) 0.97KB 0.57KB
plugin-detail (LookupField-CHloN42z.js) 0.08KB 0.11KB
plugin-detail (LookupField-Dpwh5ZKR.js) 30.30KB 8.21KB
plugin-detail (MasterDetailField-Bb7_J3Il.js) 2.90KB 0.99KB
plugin-detail (NumberField-CZG321aZ.js) 0.72KB 0.47KB
plugin-detail (ObjectField-Buqpt6aE.js) 1.57KB 0.79KB
plugin-detail (PasswordField-DrTzSWZe.js) 1.13KB 0.66KB
plugin-detail (PercentField-ChxdGrmH.js) 1.76KB 0.85KB
plugin-detail (PhoneField-Cj-wn5Ej.js) 0.82KB 0.51KB
plugin-detail (QRCodeField-DRqtrClp.js) 2.15KB 0.92KB
plugin-detail (RatingField-Bzku9Jsu.js) 1.56KB 0.69KB
plugin-detail (RichTextField-BjikBx2U.js) 1.12KB 0.61KB
plugin-detail (SelectField-BU54pOVz.js) 0.08KB 0.11KB
plugin-detail (SelectField-Dnn913Ex.js) 0.96KB 0.55KB
plugin-detail (SignatureField-BkfVncdi.js) 2.81KB 1.14KB
plugin-detail (SliderField-Cm4PVULo.js) 1.04KB 0.53KB
plugin-detail (SummaryField-CL2pii02.js) 0.62KB 0.44KB
plugin-detail (TextAreaField-S6y-joBm.js) 1.06KB 0.61KB
plugin-detail (TextField-C1W0Kpl9.js) 0.84KB 0.46KB
plugin-detail (TimeField-B2CIj0s-.js) 0.57KB 0.38KB
plugin-detail (UrlField-CIo2ZoKk.js) 0.98KB 0.54KB
plugin-detail (UserField-BrCG4cSB.js) 2.43KB 0.95KB
plugin-detail (VectorField-BCmuDTI3.js) 0.92KB 0.52KB
plugin-detail (index.js) 136.92KB 30.17KB
plugin-detail (src-Bs2yvxgc.js) 1959.03KB 461.62KB
plugin-detail (useFieldTranslation-C7uxE0jj.js) 0.25KB 0.20KB
plugin-editor (MonacoImpl-BMgw4JKF.js) 17.97KB 5.53KB
plugin-editor (index.js) 1.61KB 0.74KB
plugin-editor (jsx-runtime-HjdTyiyb.js) 7.63KB 2.80KB
plugin-form (index.js) 60.57KB 13.62KB
plugin-gantt (index.js) 215.46KB 52.74KB
plugin-grid (index.js) 101.88KB 27.60KB
plugin-kanban (KanbanEnhanced-BYdG4dd1.js) 30.21KB 8.94KB
plugin-kanban (KanbanImpl-C0fDmIb0.js) 13.33KB 4.08KB
plugin-kanban (chevron-down-B6UH8BbF.js) 0.15KB 0.18KB
plugin-kanban (index.js) 18.55KB 5.80KB
plugin-kanban (plus-BTqoaaEC.js) 9.31KB 3.57KB
plugin-kanban (sortable.esm-DzUCoMzQ.js) 59.36KB 17.43KB
plugin-list (index.js) 2029.20KB 476.85KB
plugin-map (chunk-vKJrgz-R.js) 1.18KB 0.67KB
plugin-map (index.js) 123.46KB 30.24KB
plugin-map (maplibre-gl-BtngNATk.js) 1331.74KB 296.94KB
plugin-markdown (MarkdownImpl-fTddIEQ0.js) 220.68KB 53.61KB
plugin-markdown (index.js) 1.04KB 0.58KB
plugin-markdown (jsx-runtime-B1W8iDPg.js) 8.39KB 3.09KB
plugin-report (index.js) 77.40KB 16.24KB
plugin-timeline (index.js) 99.93KB 24.18KB
plugin-view (index.js) 124.15KB 33.50KB
plugin-workflow (index.js) 81.18KB 17.06KB
react (LazyPluginLoader.js) 3.77KB 1.33KB
react (SchemaRenderer.js) 9.07KB 2.83KB
react (index.js) 0.76KB 0.42KB
tenant (TenantContext.js) 0.31KB 0.25KB
tenant (TenantGuard.js) 1.04KB 0.43KB
tenant (TenantProvider.js) 2.76KB 0.98KB
tenant (TenantScopedQuery.js) 0.77KB 0.44KB
tenant (index.js) 0.75KB 0.38KB
tenant (resolver.js) 2.64KB 0.76KB
tenant (useTenant.js) 0.50KB 0.32KB
tenant (useTenantBranding.js) 0.62KB 0.39KB
types (ai.js) 0.20KB 0.17KB
types (api-types.js) 0.20KB 0.18KB
types (app.js) 2.87KB 0.99KB
types (base.js) 0.20KB 0.18KB
types (blocks.js) 0.20KB 0.18KB
types (complex.js) 0.20KB 0.18KB
types (crud.js) 0.20KB 0.18KB
types (data-display.js) 0.20KB 0.18KB
types (data-protocol.js) 0.20KB 0.19KB
types (data.js) 0.20KB 0.18KB
types (designer.js) 0.74KB 0.39KB
types (disclosure.js) 0.20KB 0.18KB
types (feedback.js) 0.20KB 0.18KB
types (field-types.js) 0.20KB 0.18KB
types (form.js) 0.20KB 0.18KB
types (index.js) 1.25KB 0.58KB
types (layout.js) 0.20KB 0.18KB
types (mobile.js) 0.20KB 0.18KB
types (navigation.js) 0.20KB 0.18KB
types (objectql.js) 0.20KB 0.18KB
types (overlay.js) 0.20KB 0.18KB
types (permissions.js) 0.20KB 0.18KB
types (plugin-scope.js) 0.20KB 0.18KB
types (record-components.js) 0.20KB 0.19KB
types (registry.js) 0.20KB 0.18KB
types (reports.js) 0.20KB 0.18KB
types (tenant.js) 0.20KB 0.18KB
types (theme.js) 0.20KB 0.18KB
types (ui-action.js) 0.20KB 0.18KB
types (views.js) 0.20KB 0.18KB
types (widget.js) 0.20KB 0.18KB
types (workflow.js) 0.20KB 0.18KB

Size Limits

  • ✅ Core packages should be < 50KB gzipped
  • ✅ Component packages should be < 100KB gzipped
  • ⚠️ Plugin packages should be < 150KB gzipped

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants