@nocobase/client 1.6.2 → 1.6.4
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/filter-provider/FilterProvider.d.ts +2 -0
- package/es/index.mjs +8315 -8280
- package/es/modules/fields/component/Select/selectComponentFieldSettings.d.ts +1 -0
- package/es/schema-component/antd/upload/index.d.ts +1 -1
- package/es/schema-component/antd/upload/shared.d.ts +1 -0
- package/lib/index.js +78 -77
- package/lib/locale/de-DE.js +888 -0
- package/lib/locale/it-IT.js +12 -12
- package/package.json +5 -5
|
@@ -39,6 +39,8 @@ export interface DataBlock {
|
|
|
39
39
|
clearFilter: (uid: string) => void;
|
|
40
40
|
/** 将数据区块的数据置为空 */
|
|
41
41
|
clearData: () => void;
|
|
42
|
+
/** 清除表格的选中项 */
|
|
43
|
+
clearSelection?: () => void;
|
|
42
44
|
/** 数据区块表中所有的关系字段 */
|
|
43
45
|
associatedFields?: CollectionFieldOptions_deprecated[];
|
|
44
46
|
/** 数据区块表中所有的外键字段 */
|