@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.
- package/es/flow/actions/afterSuccess.d.ts +9 -0
- package/es/flow/actions/index.d.ts +1 -0
- package/es/flow/components/FieldAssignValueInput.d.ts +6 -0
- package/es/flow/internal/utils/modelUtils.d.ts +4 -0
- package/es/flow/models/actions/LinkActionModel.d.ts +1 -4
- package/es/flow/models/actions/UpdateRecordActionUtils.d.ts +12 -0
- package/es/flow/models/actions/joinUrlSearch.d.ts +12 -0
- package/es/flow/models/base/GridModel.d.ts +1 -0
- package/es/flow/models/base/PageModel/ChildPageModel.d.ts +1 -0
- package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +3 -0
- package/es/flow/models/blocks/filter-form/FilterFormGridModel.d.ts +12 -1
- package/es/flow/models/fields/DisplayAssociationField/displaySubListUtils.d.ts +14 -0
- package/es/index.mjs +3041 -2713
- package/es/route-switch/antd/admin-layout/index.d.ts +4 -0
- package/lib/index.js +163 -163
- package/lib/locale/de-DE.json +3 -0
- package/lib/locale/en-US.json +2 -0
- package/lib/locale/es-ES.json +3 -0
- package/lib/locale/fr-FR.json +3 -0
- package/lib/locale/hu-HU.json +3 -0
- package/lib/locale/id-ID.json +3 -0
- package/lib/locale/it-IT.json +3 -0
- package/lib/locale/ja-JP.json +3 -0
- package/lib/locale/ko-KR.json +3 -0
- package/lib/locale/nl-NL.json +3 -0
- package/lib/locale/pt-BR.json +3 -0
- package/lib/locale/ru-RU.json +3 -0
- package/lib/locale/tr-TR.json +3 -0
- package/lib/locale/uk-UA.json +3 -0
- package/lib/locale/vi-VN.json +3 -0
- package/lib/locale/zh-CN.json +3 -1
- package/lib/locale/zh-TW.json +3 -0
- 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;
|