@nocobase/client 1.3.32-beta → 1.3.34-beta
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/data-source/collection/Collection.d.ts +1 -0
- package/es/data-source/collection/CollectionManager.d.ts +1 -0
- package/es/index.mjs +1379 -1282
- package/es/modules/fields/component/Select/selectComponentFieldSettings.d.ts +15 -1
- package/es/schema-component/antd/association-field/hooks.d.ts +6 -0
- package/es/schema-settings/VariableInput/hooks/useParentIterationVariable.d.ts +30 -0
- package/lib/index.js +83 -83
- package/lib/locale/en_US.js +3 -1
- package/lib/locale/es_ES.js +3 -1
- package/lib/locale/fr_FR.js +3 -1
- package/lib/locale/ja_JP.js +3 -1
- package/lib/locale/ko_KR.js +3 -1
- package/lib/locale/pt_BR.js +3 -1
- package/lib/locale/ru_RU.js +3 -1
- package/lib/locale/tr_TR.js +3 -1
- package/lib/locale/uk_UA.js +3 -1
- package/lib/locale/zh-CN.js +3 -1
- package/lib/locale/zh-TW.js +3 -1
- package/package.json +5 -5
|
@@ -126,6 +126,7 @@ export declare class Collection {
|
|
|
126
126
|
* getFields((field) => field.name === 'nickname') // Get the field with `name: 'nickname`'
|
|
127
127
|
*/
|
|
128
128
|
getFields(predicate?: GetCollectionFieldPredicate): CollectionFieldOptions[];
|
|
129
|
+
getAllFields(predicate?: GetCollectionFieldPredicate): CollectionFieldOptions[];
|
|
129
130
|
protected getFieldsMap(): Record<string, CollectionFieldOptions>;
|
|
130
131
|
private getFieldByAssociationName;
|
|
131
132
|
getField(name: SchemaKey): any;
|
|
@@ -40,6 +40,7 @@ export declare class CollectionManager {
|
|
|
40
40
|
*/
|
|
41
41
|
getCollectionField(path: SchemaKey | CollectionFieldOptions): any;
|
|
42
42
|
getCollectionFields(collectionName: string, predicate?: GetCollectionFieldPredicate): CollectionFieldOptions[];
|
|
43
|
+
getCollectionAllFields(collectionName: string, predicate?: GetCollectionFieldPredicate): CollectionFieldOptions[];
|
|
43
44
|
/**
|
|
44
45
|
* @example
|
|
45
46
|
* getFilterByTK('users', { id: 1 }); // 1
|