star-horse-lowcode 2.8.31 → 2.8.32
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/README.md +5 -1
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +1 -1
- package/dist/types/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -6193,11 +6193,14 @@ getIds: () => any;
|
|
|
6193
6193
|
getSelectedDatas: () => any;
|
|
6194
6194
|
multipleSelection: Ref<any, any>;
|
|
6195
6195
|
setDataInfo: (fieldName: string, val: any) => void;
|
|
6196
|
+
deleteById: (id: any, isExpand?: boolean) => Promise<void>;
|
|
6197
|
+
editById: (id: any, isExpand?: boolean) => void;
|
|
6196
6198
|
tableCompFunc: (authority: any) => void;
|
|
6197
6199
|
getDatas: (limitSize?: number, params?: SearchParams[], orderBys?: OrderByInfo[], url?: string, usePageCondition?: boolean) => Promise<any>;
|
|
6198
6200
|
permissionList: () => Record<string, string>;
|
|
6199
6201
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6200
6202
|
selectItem: (...args: any[]) => void;
|
|
6203
|
+
permission: (...args: any[]) => void;
|
|
6201
6204
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6202
6205
|
compUrl: {
|
|
6203
6206
|
type: PropType<ApiUrls | any>;
|
|
@@ -6320,6 +6323,7 @@ required: false;
|
|
|
6320
6323
|
};
|
|
6321
6324
|
}>> & Readonly<{
|
|
6322
6325
|
onSelectItem?: (...args: any[]) => any;
|
|
6326
|
+
onPermission?: (...args: any[]) => any;
|
|
6323
6327
|
}>, {
|
|
6324
6328
|
dataFormat: Function;
|
|
6325
6329
|
height: string;
|