@alauda-fe/dynamic-plugin-shared 0.0.4-alpha.15 → 0.0.4-alpha.16

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.
@@ -10,5 +10,6 @@
10
10
  "update_display_name": "Update Display Name",
11
11
  "no_workload": "No Workloads found",
12
12
  "partial_running": "Partial Running",
13
+ "execute_failed": "Execution Failed",
13
14
  "": ""
14
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alauda-fe/dynamic-plugin-shared",
3
- "version": "0.0.4-alpha.15",
3
+ "version": "0.0.4-alpha.16",
4
4
  "peerDependencies": {
5
5
  "@alauda/code-editor": "^6.0.1-alpha.3",
6
6
  "@alauda-fe/dynamic-plugin-sdk": "^0.0.1-alpha.25",
@@ -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;