@tinacms/schema-tools 0.0.0-c8b1d84-20241003015733 → 0.0.0-fe63759-20241004045825
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/dist/types/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -161,6 +161,9 @@ export type ImageField = (FieldGeneric<string, undefined> | FieldGeneric<string,
|
|
|
161
161
|
};
|
|
162
162
|
type ReferenceFieldOptions = {
|
|
163
163
|
optionComponent?: OptionComponent;
|
|
164
|
+
/**
|
|
165
|
+
* @deprecated use `collectionFilter` instead as experimental___Filter will be removed in a future release
|
|
166
|
+
*/
|
|
164
167
|
experimental___filter?: (list: Array<any>, searchQuery: string) => Array<any>;
|
|
165
168
|
collectionFilter?: Record<string, Record<string, FilterValue>> | (() => Record<string, Record<string, FilterValue>>);
|
|
166
169
|
};
|