@alauda-fe/dynamic-plugin-shared 0.0.4-alpha.15 → 0.0.4-alpha.17
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/package.json
CHANGED
|
@@ -57,7 +57,7 @@ interface ResourceListParams extends StringMap {
|
|
|
57
57
|
}
|
|
58
58
|
interface WorkspaceListParams extends WorkspaceParams, ResourceListParams {
|
|
59
59
|
}
|
|
60
|
-
interface WorkspaceDetailParams extends
|
|
60
|
+
interface WorkspaceDetailParams extends WorkspaceParams {
|
|
61
61
|
name?: string;
|
|
62
62
|
}
|
|
63
63
|
type Pagination<T, O = {
|
|
@@ -5065,6 +5065,7 @@ interface TableColumnDef<Item extends object, Context = TableUtilService<Item>,
|
|
|
5065
5065
|
path?: TableColumnDefPath<Item, Context>;
|
|
5066
5066
|
direction?: 'column' | 'row';
|
|
5067
5067
|
translate?: string | Translation | TableColumnTranslateHandler<Item, Context, Value> | true;
|
|
5068
|
+
scopedTranslate?: boolean;
|
|
5068
5069
|
sort?: TableColumnSortDirection | TableColumnSortHandler<Item, Context> | TableColumnSort<Item, Context> | true;
|
|
5069
5070
|
filter?(this: Context, value: Value, filterValue: Value, item: Item, name: string, params: Record<string, unknown>): boolean;
|
|
5070
5071
|
ellipsis?: boolean;
|