Skip to content

chore(deps): bump i18next from 25.10.4 to 26.0.1#1148

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/i18next-26.0.1
Open

chore(deps): bump i18next from 25.10.4 to 26.0.1#1148
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/i18next-26.0.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 30, 2026

Bumps i18next from 25.10.4 to 26.0.1.

Release notes

Sourced from i18next's releases.

v26.0.1

  • fix: Formatter no longer crashes when alwaysFormat is true and no format specifier is present (format is undefined)
  • fix: Formatter now returns undefined/null values as-is instead of producing NaN when the value is missing

v26.0.0

This is a major breaking release:

Breaking Changes

  • Remove deprecated initImmediate option — the backward-compatibility mapping from initImmediate to initAsync (introduced in v24) has been removed. Use initAsync instead.
  • Remove legacy interpolation.format function — the old monolithic format function (interpolation: { format: (value, format, lng) => ... }) is no longer supported. The built-in Formatter (or a custom Formatter module via .use()) is now always used. Migrate to the new formatting approach using i18next.services.formatter.add() or .addCached() for custom formatters.
  • Remove console support notice — the console support notice introduced in v25.8.0 has been removed, along with the showSupportNotice option and all related internal suppression logic (globalThis.__i18next_supportNoticeShown, I18NEXT_NO_SUPPORT_NOTICE env var). See our blog post for the full story.
  • Remove simplifyPluralSuffix option — this option was unused by the core PluralResolver (which relies entirely on Intl.PluralRules). It only had an effect in the old v1/v2/v3 compatibility layer. The v4 test compatibility layer now defaults to true internally.
  • Remove deprecated @babel/polyfill from devDependencies.

Improvements

  • Code modernization across all source files:
    • Replace indexOf() > -1 / indexOf() < 0 with .includes() (~40+ occurrences)
    • Replace indexOf() === 0 with .startsWith() where appropriate
    • Replace var with const, '' + object with String(object), .substring() with .slice()
    • Replace .apply(observer, [event, ...args]) with direct call observer(event, ...args)
    • Remove unnecessary .call(this, ...) in BackendConnector retry logic
    • Fix array-callback-return in LanguageUtils getBestMatchFromCodes
    • Clean up all stale eslint-disable comments from source files
  • EventEmitter: add once() method for one-time event subscriptions
  • Memory leak fix: move module-level checkedLoadedFor cache to Translator instance, preventing cross-instance state leakage
  • TypeScript: fix BackendModule generic parameter naming inconsistency between CJS and ESM type definitions
  • TypeScript: add once() method to i18n and ResourceStore type interfaces
  • ESLint 9: migrate from ESLint 8 (airbnb-base) to ESLint 9 flat config with neostandard
  • Vitest 4: upgrade from vitest 3 to vitest 4, migrate workspace files to test.projects config

v25.10.10

  • feat: suppress support notice automatically in production environments (NODE_ENV=production)

v25.10.9

  • feat(types): export SelectorParam<Ns, KPrefix> helper type — a stable, readable alternative to Parameters<TFunction<Ns>>[0] for typing selector function props 2414

v25.10.8

  • fix(types): reorder TFunctionSelector overloads so Parameters<TFunction> resolves to the general selector signature instead of the branded SelectorKey type 2412

v25.10.7

v25.10.6

v25.10.5

  • feat(types): selector functions as keyPrefix in getFixedT now provide full type-safe key narrowing — the returned t function is scoped to the prefix subtree 2367
Changelog

Sourced from i18next's changelog.

26.0.1

  • fix: Formatter no longer crashes when alwaysFormat is true and no format specifier is present (format is undefined)
  • fix: Formatter now returns undefined/null values as-is instead of producing NaN when the value is missing

26.0.0

This is a major breaking release:

Breaking Changes

  • Remove deprecated initImmediate option — the backward-compatibility mapping from initImmediate to initAsync (introduced in v24) has been removed. Use initAsync instead.
  • Remove legacy interpolation.format function — the old monolithic format function (interpolation: { format: (value, format, lng) => ... }) is no longer supported. The built-in Formatter (or a custom Formatter module via .use()) is now always used. Migrate to the new formatting approach using i18next.services.formatter.add() or .addCached() for custom formatters.
  • Remove console support notice — the console support notice introduced in v25.8.0 has been removed, along with the showSupportNotice option and all related internal suppression logic (globalThis.__i18next_supportNoticeShown, I18NEXT_NO_SUPPORT_NOTICE env var). See our blog post for the full story.
  • Remove simplifyPluralSuffix option — this option was unused by the core PluralResolver (which relies entirely on Intl.PluralRules). It only had an effect in the old v1/v2/v3 compatibility layer. The v4 test compatibility layer now defaults to true internally.
  • Remove deprecated @babel/polyfill from devDependencies.

Improvements

  • Code modernization across all source files:
    • Replace indexOf() > -1 / indexOf() < 0 with .includes() (~40+ occurrences)
    • Replace indexOf() === 0 with .startsWith() where appropriate
    • Replace var with const, '' + object with String(object), .substring() with .slice()
    • Replace .apply(observer, [event, ...args]) with direct call observer(event, ...args)
    • Remove unnecessary .call(this, ...) in BackendConnector retry logic
    • Fix array-callback-return in LanguageUtils getBestMatchFromCodes
    • Clean up all stale eslint-disable comments from source files
  • EventEmitter: add once() method for one-time event subscriptions
  • Memory leak fix: move module-level checkedLoadedFor cache to Translator instance, preventing cross-instance state leakage
  • TypeScript: fix BackendModule generic parameter naming inconsistency between CJS and ESM type definitions
  • TypeScript: add once() method to i18n and ResourceStore type interfaces
  • ESLint 9: migrate from ESLint 8 (airbnb-base) to ESLint 9 flat config with neostandard
  • Vitest 4: upgrade from vitest 3 to vitest 4, migrate workspace files to test.projects config

25.10.10

  • feat: suppress support notice automatically in production environments (NODE_ENV=production)

25.10.9

  • feat(types): export SelectorParam<Ns, KPrefix> helper type — a stable, readable alternative to Parameters<TFunction<Ns>>[0] for typing selector function props 2414

25.10.8

  • fix(types): reorder TFunctionSelector overloads so Parameters<TFunction> resolves to the general selector signature instead of the branded SelectorKey type 2412

25.10.7

... (truncated)

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [i18next](https://github.com/i18next/i18next) from 25.10.4 to 26.0.1.
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v25.10.4...v26.0.1)

---
updated-dependencies:
- dependency-name: i18next
  dependency-version: 26.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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

dependabot bot commented on behalf of github Mar 30, 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 Mar 30, 2026

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

Project Deployment Actions Updated (UTC)
objectui-demo Ready Ready Preview, Comment Mar 30, 2026 8:24am
2 Skipped Deployments
Project Deployment Actions Updated (UTC)
objectui Ignored Ignored Mar 30, 2026 8:24am
objectui-storybook Ignored Ignored Mar 30, 2026 8:24am

Request Review

@github-actions
Copy link
Copy Markdown
Contributor

⚠️ This is a major version update. Please review carefully before merging.

@github-actions
Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

Metric Value Budget
Main entry (gzip) 57.5 KB 60 KB
Entry file index-DvMRr7VC.js
Status PASS

📦 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.22KB 460.76KB
core (index.js) 1.29KB 0.51KB
create-plugin (index.js) 10.13KB 3.17KB
data-objectstack (index.js) 44.50KB 10.95KB
fields (AddressField-BKjdf35m.js) 0.08KB 0.10KB
fields (AutoNumberField-D1fjWAc0.js) 0.08KB 0.11KB
fields (AvatarField-BcuOH3E1.js) 0.07KB 0.10KB
fields (BooleanField-DXJMo6Qt.js) 0.08KB 0.10KB
fields (CodeField-DEGHi7zb.js) 0.07KB 0.10KB
fields (ColorField-Bj9ywzds.js) 0.07KB 0.10KB
fields (CurrencyField-xM8kA7Da.js) 0.08KB 0.10KB
fields (DateField-ClwlvM09.js) 0.07KB 0.10KB
fields (DateTimeField-CMxhSUbx.js) 0.08KB 0.10KB
fields (EmailField-wJJyH9FZ.js) 0.07KB 0.10KB
fields (FileField-LW8cTjF8.js) 0.07KB 0.10KB
fields (FormulaField-D00-waV_.js) 0.08KB 0.10KB
fields (GeolocationField-5Iifs9gZ.js) 0.08KB 0.11KB
fields (GridField-BVAYAZV1.js) 0.07KB 0.10KB
fields (ImageField-C-09RF4A.js) 0.07KB 0.10KB
fields (LocationField-BeLox7DE.js) 0.08KB 0.10KB
fields (LookupField-BKhR8ULt.js) 0.08KB 0.11KB
fields (LookupField-CT_CE4Ok.js) 32.00KB 8.34KB
fields (MasterDetailField-BEHoWVjU.js) 0.09KB 0.11KB
fields (NumberField-DIfURv2i.js) 0.07KB 0.10KB
fields (ObjectField-DK7WLlox.js) 0.07KB 0.10KB
fields (PasswordField-CMCXjxzK.js) 0.08KB 0.10KB
fields (PercentField-DQT1KOfc.js) 0.08KB 0.10KB
fields (PhoneField-C8tPf5DY.js) 0.07KB 0.10KB
fields (QRCodeField-D6aqTXbX.js) 0.07KB 0.10KB
fields (RatingField-CZtx0Kxm.js) 0.07KB 0.10KB
fields (RichTextField-B4LdT4Zs.js) 0.08KB 0.10KB
fields (SelectField-B2wOfBqW.js) 0.07KB 0.10KB
fields (SignatureField-CLmeq2T7.js) 0.08KB 0.11KB
fields (SliderField-C2SJ1R3c.js) 0.07KB 0.10KB
fields (SummaryField-CAkHbpU-.js) 0.08KB 0.10KB
fields (TextAreaField-BzaYLdy5.js) 0.08KB 0.10KB
fields (TextField-B0Hchnih.js) 0.07KB 0.10KB
fields (TimeField-B3U-HcAb.js) 0.07KB 0.10KB
fields (UrlField-Ctl2VRVs.js) 0.07KB 0.09KB
fields (UserField-LknAD4wM.js) 0.07KB 0.10KB
fields (VectorField-Lwl_iNPz.js) 0.07KB 0.10KB
fields (index.js) 76.13KB 15.80KB
fields (jsx-runtime-o4A1wlyR.js) 7.65KB 2.81KB
fields (useFieldTranslation-DumREAFv.js) 9.53KB 3.69KB
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-Bj4QTgBN.js) 6.39KB 2.24KB
plugin-aggrid (AutoNumberField-0RU2dNKe.js) 0.43KB 0.34KB
plugin-aggrid (AvatarField-IZTLB0Ye.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-DxxdESfc.js) 5.67KB 2.05KB
plugin-aggrid (FormulaField-MQXJZOep.js) 0.64KB 0.46KB
plugin-aggrid (GeolocationField-BzKgcWLN.js) 4.10KB 1.48KB
plugin-aggrid (GridField-DHsGo9l2.js) 1.96KB 0.76KB
plugin-aggrid (ImageField-DK7sUV6b.js) 2.65KB 1.12KB
plugin-aggrid (LocationField-DSvhU9Dz.js) 1.00KB 0.59KB
plugin-aggrid (LookupField-BXXrVog0.js) 33.79KB 8.95KB
plugin-aggrid (LookupField-BbBAqT1E.js) 0.08KB 0.11KB
plugin-aggrid (MasterDetailField-CPLHbe_Y.js) 3.40KB 1.14KB
plugin-aggrid (NumberField-Kz4_o5DE.js) 0.76KB 0.50KB
plugin-aggrid (ObjectAgGridImpl-5M3gFba7.js) 726.52KB 183.36KB
plugin-aggrid (ObjectField-C1qkl6s4.js) 1.63KB 0.82KB
plugin-aggrid (PasswordField-d6E-vKBI.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-BIQhc73N.js) 3.27KB 1.25KB
plugin-aggrid (RatingField-BKAGmlzh.js) 2.05KB 0.93KB
plugin-aggrid (RichTextField-CN5BRd_7.js) 1.19KB 0.63KB
plugin-aggrid (SelectField-CIeYVqP4.js) 1.07KB 0.58KB
plugin-aggrid (SelectField-CMfKHDz6.js) 0.08KB 0.11KB
plugin-aggrid (SignatureField-fFEb0h_C.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-ZTYH-vjD.js) 2.62KB 0.98KB
plugin-aggrid (VectorField-Ci167cxr.js) 0.92KB 0.52KB
plugin-aggrid (createLucideIcon-CWx7zIL1.js) 1.47KB 0.84KB
plugin-aggrid (image-Cm7ExMY2.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-CsEgF66K.js) 0.19KB 0.19KB
plugin-aggrid (upload-B1x-ueFd.js) 0.29KB 0.23KB
plugin-aggrid (useFieldTranslation-BgXE8o0R.js) 9.53KB 3.70KB
plugin-aggrid (x-Bwhzfvtg.js) 0.19KB 0.19KB
plugin-ai (index.js) 24.21KB 6.44KB
plugin-calendar (index.js) 44.95KB 12.95KB
plugin-charts (AdvancedChartImpl-BVT0XI1n.js) 118.00KB 24.19KB
plugin-charts (BarChart-bK3fN6vN.js) 523.67KB 126.89KB
plugin-charts (ChartImpl-C59n6NRW.js) 3.62KB 1.16KB
plugin-charts (index.js) 8.33KB 2.48KB
plugin-charts (jsx-runtime-C8d0IhUE.js) 8.40KB 3.09KB
plugin-chatbot (index.js) 947.75KB 287.92KB
plugin-dashboard (index.js) 153.51KB 37.73KB
plugin-designer (index.js) 225.33KB 44.10KB
plugin-detail (AddressField-Biaw_UPq.js) 2.66KB 0.79KB
plugin-detail (AutoNumberField-DfYHRVpZ.js) 0.44KB 0.34KB
plugin-detail (AvatarField-Cq7E0V9s.js) 2.40KB 1.09KB
plugin-detail (BooleanField-CGYSQX4s.js) 1.14KB 0.55KB
plugin-detail (CodeField-fwU10MOJ.js) 0.80KB 0.50KB
plugin-detail (ColorField-DSvXfbIE.js) 1.19KB 0.57KB
plugin-detail (CurrencyField-BqsfbFxi.js) 1.47KB 0.78KB
plugin-detail (DateField-DdsNsG4c.js) 0.60KB 0.40KB
plugin-detail (DateTimeField-arM73ONE.js) 0.78KB 0.46KB
plugin-detail (EmailField-yaAR7or6.js) 0.83KB 0.51KB
plugin-detail (FileField-BT6PPXOX.js) 5.12KB 1.90KB
plugin-detail (FormulaField-BMlhszRV.js) 0.66KB 0.45KB
plugin-detail (GeolocationField-BeKHQVbm.js) 3.31KB 1.23KB
plugin-detail (GridField-BpaXLMuw.js) 1.83KB 0.74KB
plugin-detail (ImageField-CYrWMA6s.js) 2.45KB 1.09KB
plugin-detail (LocationField-CZi1CNAs.js) 0.97KB 0.58KB
plugin-detail (LookupField-DYAAp6vd.js) 0.08KB 0.11KB
plugin-detail (LookupField-DfZKYwG5.js) 30.31KB 8.22KB
plugin-detail (MasterDetailField-ByP8tOM4.js) 2.90KB 0.99KB
plugin-detail (NumberField-5rhnsjxW.js) 0.72KB 0.47KB
plugin-detail (ObjectField-CGI_xkJL.js) 1.57KB 0.79KB
plugin-detail (PasswordField-CfSnhu-X.js) 1.13KB 0.66KB
plugin-detail (PercentField-CMSar9k0.js) 1.76KB 0.86KB
plugin-detail (PhoneField-CjLPAs6H.js) 0.82KB 0.51KB
plugin-detail (QRCodeField-CazW29Jj.js) 2.15KB 0.93KB
plugin-detail (RatingField-DZ3NRqdP.js) 1.56KB 0.69KB
plugin-detail (RichTextField-B0ecQkIP.js) 1.12KB 0.62KB
plugin-detail (SelectField-DFMwUYKM.js) 0.96KB 0.55KB
plugin-detail (SelectField-hlhaxJ5O.js) 0.08KB 0.11KB
plugin-detail (SignatureField-CdyILJY8.js) 2.81KB 1.15KB
plugin-detail (SliderField-C72X8Ygl.js) 1.04KB 0.53KB
plugin-detail (SummaryField-CDcsQ95v.js) 0.62KB 0.45KB
plugin-detail (TextAreaField-W5rcuu9I.js) 1.06KB 0.62KB
plugin-detail (TextField-xlymvurb.js) 0.84KB 0.47KB
plugin-detail (TimeField-D2lfiPWg.js) 0.57KB 0.38KB
plugin-detail (UrlField-BkQA6pA0.js) 0.98KB 0.54KB
plugin-detail (UserField-awe4-Cps.js) 2.43KB 0.96KB
plugin-detail (VectorField-Dqf-UHJs.js) 0.92KB 0.52KB
plugin-detail (index.js) 136.92KB 30.17KB
plugin-detail (src-DyKXfDbE.js) 1947.00KB 455.21KB
plugin-detail (useFieldTranslation-B78-hGeU.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.57KB 52.75KB
plugin-grid (index.js) 101.74KB 27.58KB
plugin-kanban (KanbanEnhanced-CvxO2soF.js) 30.21KB 8.94KB
plugin-kanban (KanbanImpl-ii52_k8g.js) 13.33KB 4.07KB
plugin-kanban (chevron-down-DpXJN6OX.js) 0.15KB 0.18KB
plugin-kanban (index.js) 18.55KB 5.80KB
plugin-kanban (plus-CAtTu4zt.js) 9.05KB 3.47KB
plugin-kanban (sortable.esm-DzUCoMzQ.js) 59.36KB 17.43KB
plugin-list (index.js) 2017.14KB 470.40KB
plugin-map (chunk-vKJrgz-R.js) 1.18KB 0.67KB
plugin-map (index.js) 123.47KB 30.25KB
plugin-map (maplibre-gl-DGaRe_2d.js) 1331.16KB 296.90KB
plugin-markdown (MarkdownImpl-zSR34qzi.js) 220.69KB 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.17KB 33.50KB
plugin-workflow (index.js) 81.18KB 17.06KB
react (LazyPluginLoader.js) 3.77KB 1.33KB
react (SchemaRenderer.js) 9.04KB 2.82KB
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