@nocobase/client 2.0.12 → 2.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/es/flow/actions/afterSuccess.d.ts +9 -0
  2. package/es/flow/actions/index.d.ts +1 -0
  3. package/es/flow/components/FieldAssignValueInput.d.ts +6 -0
  4. package/es/flow/internal/utils/modelUtils.d.ts +4 -0
  5. package/es/flow/models/actions/LinkActionModel.d.ts +1 -4
  6. package/es/flow/models/actions/UpdateRecordActionUtils.d.ts +12 -0
  7. package/es/flow/models/actions/joinUrlSearch.d.ts +12 -0
  8. package/es/flow/models/base/GridModel.d.ts +1 -0
  9. package/es/flow/models/base/PageModel/ChildPageModel.d.ts +1 -0
  10. package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +3 -0
  11. package/es/flow/models/blocks/filter-form/FilterFormGridModel.d.ts +12 -1
  12. package/es/flow/models/fields/DisplayAssociationField/displaySubListUtils.d.ts +14 -0
  13. package/es/index.mjs +3041 -2713
  14. package/es/route-switch/antd/admin-layout/index.d.ts +4 -0
  15. package/lib/index.js +163 -163
  16. package/lib/locale/de-DE.json +3 -0
  17. package/lib/locale/en-US.json +2 -0
  18. package/lib/locale/es-ES.json +3 -0
  19. package/lib/locale/fr-FR.json +3 -0
  20. package/lib/locale/hu-HU.json +3 -0
  21. package/lib/locale/id-ID.json +3 -0
  22. package/lib/locale/it-IT.json +3 -0
  23. package/lib/locale/ja-JP.json +3 -0
  24. package/lib/locale/ko-KR.json +3 -0
  25. package/lib/locale/nl-NL.json +3 -0
  26. package/lib/locale/pt-BR.json +3 -0
  27. package/lib/locale/ru-RU.json +3 -0
  28. package/lib/locale/tr-TR.json +3 -0
  29. package/lib/locale/uk-UA.json +3 -0
  30. package/lib/locale/vi-VN.json +3 -0
  31. package/lib/locale/zh-CN.json +3 -1
  32. package/lib/locale/zh-TW.json +3 -0
  33. package/package.json +6 -6
@@ -35,4 +35,8 @@ export declare class AdminLayoutPlugin extends Plugin {
35
35
  load(): Promise<void>;
36
36
  }
37
37
  export declare function findRouteBySchemaUid(schemaUid: string, treeArray: any[]): any;
38
+ export declare const shouldRenderIconInTitle: ({ depth, isMobile }: {
39
+ depth: number;
40
+ isMobile: boolean;
41
+ }) => boolean;
38
42
  export declare function findFirstPageRoute(routes: NocoBaseDesktopRoute[]): any;