@nocobase/client 2.1.0-beta.6 → 2.1.0-beta.8
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/collection-manager/templates/view.d.ts +11 -11
- 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/components/code-editor/runjsDiagnostics.d.ts +5 -2
- package/es/flow/components/filter/LinkageFilterItem.d.ts +23 -0
- package/es/flow/internal/utils/modelUtils.d.ts +4 -0
- package/es/flow/models/actions/AddChildActionModel.d.ts +1 -0
- package/es/flow/models/actions/BulkDeleteActionModel.d.ts +1 -0
- package/es/flow/models/actions/LinkActionModel.d.ts +1 -4
- package/es/flow/models/actions/LinkActionUtils.d.ts +34 -0
- 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/ActionGroupModel.d.ts +8 -0
- package/es/flow/models/base/CollectionBlockModel.d.ts +9 -1
- 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/base/PageModel/PageModel.d.ts +1 -1
- package/es/flow/models/base/PageModel/RootPageModel.d.ts +8 -0
- package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +4 -0
- package/es/flow/models/blocks/filter-form/FilterFormGridModel.d.ts +12 -1
- package/es/flow/models/blocks/form/CreateFormModel.d.ts +1 -0
- package/es/flow/models/blocks/form/EditFormModel.d.ts +2 -0
- package/es/flow/models/blocks/form/submitValues.d.ts +8 -0
- package/es/flow/models/fields/DisplayAssociationField/displaySubListUtils.d.ts +14 -0
- package/es/flow/utils/actionCapability.d.ts +60 -0
- package/es/index.mjs +5681 -4984
- package/es/route-switch/antd/admin-layout/index.d.ts +4 -0
- package/es/schema-component/antd/association-field/Table.d.ts +0 -57
- package/es/schema-settings/VariableInput/hooks/useParentIterationVariable.d.ts +3 -3
- package/lib/index.js +213 -209
- package/lib/locale/de-DE.json +3 -0
- package/lib/locale/en-US.json +3 -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 +4 -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;
|
|
@@ -6,61 +6,4 @@
|
|
|
6
6
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
7
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
8
|
*/
|
|
9
|
-
export declare const useColumnsDeepMemoized: (columns: any[]) => Pick<import("@formily/react").Stringify<{
|
|
10
|
-
[key: symbol]: any;
|
|
11
|
-
[key: `x-${string}`]: any;
|
|
12
|
-
[key: `x-${number}`]: any;
|
|
13
|
-
version?: string;
|
|
14
|
-
name?: import("@formily/react").SchemaKey;
|
|
15
|
-
title?: any;
|
|
16
|
-
description?: any;
|
|
17
|
-
default?: any;
|
|
18
|
-
readOnly?: boolean;
|
|
19
|
-
writeOnly?: boolean;
|
|
20
|
-
type?: import("@formily/react").SchemaTypes;
|
|
21
|
-
enum?: import("@formily/react").SchemaEnum<any>;
|
|
22
|
-
const?: any;
|
|
23
|
-
multipleOf?: number;
|
|
24
|
-
maximum?: number;
|
|
25
|
-
exclusiveMaximum?: number;
|
|
26
|
-
minimum?: number;
|
|
27
|
-
exclusiveMinimum?: number;
|
|
28
|
-
maxLength?: number;
|
|
29
|
-
minLength?: number;
|
|
30
|
-
pattern?: string | RegExp;
|
|
31
|
-
maxItems?: number;
|
|
32
|
-
minItems?: number;
|
|
33
|
-
uniqueItems?: boolean;
|
|
34
|
-
maxProperties?: number;
|
|
35
|
-
minProperties?: number;
|
|
36
|
-
required?: string | boolean | string[];
|
|
37
|
-
format?: string;
|
|
38
|
-
$ref?: string;
|
|
39
|
-
$namespace?: string;
|
|
40
|
-
definitions?: import("@formily/react").SchemaProperties<any, any, any, any, any, any, any, any>;
|
|
41
|
-
properties?: import("@formily/react").SchemaProperties<any, any, any, any, any, any, any, any>;
|
|
42
|
-
items?: import("@formily/react").SchemaItems<any, any, any, any, any, any, any, any>;
|
|
43
|
-
additionalItems?: import("@formily/react").Stringify<any>;
|
|
44
|
-
patternProperties?: import("@formily/react").SchemaProperties<any, any, any, any, any, any, any, any>;
|
|
45
|
-
additionalProperties?: import("@formily/react").Stringify<any>;
|
|
46
|
-
"x-value"?: any;
|
|
47
|
-
"x-index"?: number;
|
|
48
|
-
"x-pattern"?: any;
|
|
49
|
-
"x-display"?: any;
|
|
50
|
-
"x-validator"?: any;
|
|
51
|
-
"x-decorator"?: any;
|
|
52
|
-
"x-decorator-props"?: any;
|
|
53
|
-
"x-component"?: any;
|
|
54
|
-
"x-component-props"?: any;
|
|
55
|
-
"x-reactions"?: import("@formily/react").SchemaReactions<any>;
|
|
56
|
-
"x-content"?: any;
|
|
57
|
-
"x-data"?: any;
|
|
58
|
-
"x-visible"?: boolean;
|
|
59
|
-
"x-hidden"?: boolean;
|
|
60
|
-
"x-disabled"?: boolean;
|
|
61
|
-
"x-editable"?: boolean;
|
|
62
|
-
"x-read-only"?: boolean;
|
|
63
|
-
"x-read-pretty"?: boolean;
|
|
64
|
-
"x-compile-omitted"?: string[];
|
|
65
|
-
}>, symbol | "name" | "title" | "pattern" | "default" | "maximum" | "type" | "maxLength" | "minLength" | "readOnly" | "required" | "description" | `x-${string}` | `x-${number}` | "version" | "writeOnly" | "enum" | "const" | "multipleOf" | "exclusiveMaximum" | "minimum" | "exclusiveMinimum" | "maxItems" | "minItems" | "uniqueItems" | "maxProperties" | "minProperties" | "format" | "$ref" | "$namespace" | "definitions" | "items" | "additionalItems" | "patternProperties" | "additionalProperties">[];
|
|
66
9
|
export declare const Table: any;
|
|
@@ -13,8 +13,8 @@ export declare const useParentObjectContext: () => {
|
|
|
13
13
|
shouldDisplayParentObject: boolean;
|
|
14
14
|
/** 变量的值 */
|
|
15
15
|
parentObjectCtx: any;
|
|
16
|
-
collectionName:
|
|
17
|
-
dataSource:
|
|
16
|
+
collectionName: any;
|
|
17
|
+
dataSource: any;
|
|
18
18
|
};
|
|
19
19
|
/**
|
|
20
20
|
* 变量:`上级对象`
|
|
@@ -34,5 +34,5 @@ export declare const useParentObjectVariable: ({ collectionField, schema, noDisa
|
|
|
34
34
|
shouldDisplayParentObject: boolean;
|
|
35
35
|
/** 变量的值 */
|
|
36
36
|
parentObjectCtx: any;
|
|
37
|
-
collectionName:
|
|
37
|
+
collectionName: any;
|
|
38
38
|
};
|