@platform-mesh/portal-ui-lib 0.46.7 → 0.47.0

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-mesh/portal-ui-lib",
3
- "version": "0.46.7",
3
+ "version": "0.47.0",
4
4
  "repository": {
5
5
  "url": "git+https://github.com/platform-mesh/portal-ui-lib.git"
6
6
  },
@@ -1,5 +1,5 @@
1
- import { TableFieldDefinition, FormFieldDefinition, GenericResource, FieldDefinition as FieldDefinition$1 } from '@openmfp/ngx';
2
- export { ButtonSettings, CssRule, CssRuleCondition, GenericResource, ModalSettings, PropertyField, ResourceFieldButtonClickEvent, TransformType, UiSettings } from '@openmfp/ngx';
1
+ import { TableFieldDefinition, FormFieldDefinition, FieldFilterDefinition, GenericResource, FieldDefinition as FieldDefinition$1 } from '@openmfp/ngx';
2
+ export { ButtonSettings, CssRule, GenericResource, ModalSettings, PropertyField, ResourceFieldButtonClickEvent, TransformType, UiSettings } from '@openmfp/ngx';
3
3
  import { ObjectMeta, Condition } from 'kubernetes-types/meta/v1';
4
4
 
5
5
  declare const ALL_NAMESPACE = "-all-";
@@ -22,10 +22,13 @@ interface UiView {
22
22
  }
23
23
  interface UIDefinition {
24
24
  logoUrl?: string;
25
- listView?: UiView;
25
+ listView?: ListView;
26
26
  createView?: UiView;
27
27
  detailView?: DetailView;
28
28
  }
29
+ interface ListView extends UiView {
30
+ filters?: FieldFilterDefinition[];
31
+ }
29
32
  interface DetailView extends UiView {
30
33
  showDownloadKubeconfig?: boolean;
31
34
  }
@@ -115,4 +118,4 @@ interface LogicalCluster {
115
118
  }
116
119
 
117
120
  export { ALL_NAMESPACE, ResourceOperationTypeMap, kcpRootOrgsPath };
118
- export type { AccountInfo, DetailView, FieldDefinition, KubernetesScope, LogicalCluster, Resource, ResourceDefinition, ResourceListResult, ResourceMeta, ResourceOperationType, ResourcePagination, ResourceSpec, ResourceStatus, ResourceSubscriptionResult, UIDefinition, UiView };
121
+ export type { AccountInfo, DetailView, FieldDefinition, KubernetesScope, ListView, LogicalCluster, Resource, ResourceDefinition, ResourceListResult, ResourceMeta, ResourceOperationType, ResourcePagination, ResourceSpec, ResourceStatus, ResourceSubscriptionResult, UIDefinition, UiView };