@dovetail-v2/refine 0.1.18-alpha.5 → 0.1.19-alpha.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/dist/style.css CHANGED
@@ -462,9 +462,6 @@
462
462
  }
463
463
  .t47xc8k .table-container {
464
464
  min-height: 0;
465
- }
466
- .t47xc8k[data-hide-ns-filter=true] {
467
- border-top: none;
468
465
  }/* // basic */
469
466
  /* FishEye Color Variables and Functions */
470
467
  /*
@@ -6,7 +6,6 @@ interface TableProps<Model extends ResourceModel> {
6
6
  tableProps: InternalTableProps<Model>;
7
7
  displayName: string;
8
8
  errorContentProps?: WidgetErrorContentProps;
9
- hideNamespacesFilter?: boolean;
10
9
  }
11
10
  export declare function Table<Model extends ResourceModel>(props: TableProps<Model>): JSX.Element;
12
11
  export {};
@@ -501,6 +501,10 @@ export declare const PV_INIT_VALUE: {
501
501
  capacity: {
502
502
  storage: string;
503
503
  };
504
+ hostPath: {
505
+ type: string;
506
+ path: string;
507
+ };
504
508
  persistentVolumeReclaimPolicy: string;
505
509
  volumeMode: string;
506
510
  };
package/lib/i18n.d.ts CHANGED
@@ -176,6 +176,14 @@ export declare const resources: {
176
176
  csi: string;
177
177
  confirm: string;
178
178
  no_limitation_rule: string;
179
+ font_size: string;
180
+ download_shell_content: string;
181
+ clear_shell: string;
182
+ disconnected: string;
183
+ connecting: string;
184
+ reconnect: string;
185
+ edit_form: string;
186
+ exit_yaml_tip: string;
179
187
  };
180
188
  };
181
189
  'zh-CN': {
@@ -173,6 +173,14 @@ declare const _default: {
173
173
  csi: string;
174
174
  confirm: string;
175
175
  no_limitation_rule: string;
176
+ font_size: string;
177
+ download_shell_content: string;
178
+ clear_shell: string;
179
+ disconnected: string;
180
+ connecting: string;
181
+ reconnect: string;
182
+ edit_form: string;
183
+ exit_yaml_tip: string;
176
184
  };
177
185
  };
178
186
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dovetail-v2/refine",
3
- "version": "0.1.18-alpha.5",
3
+ "version": "0.1.19-alpha.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -1,18 +0,0 @@
1
- import { MetaQuery } from '@refinedev/core';
2
- import { IProviderPlugin, WatchEvent, GlobalStoreInitParams, Unstructured, UnstructuredList, CancelQueriesParams } from 'k8s-api-provider';
3
- export interface IGlobalStore {
4
- plugins: IProviderPlugin[];
5
- prefix?: string;
6
- fieldManager?: string;
7
- apiUrl: string;
8
- kubeApiTimeout: number | false | undefined;
9
- get<T = UnstructuredList>(resource: string, meta?: MetaQuery): Promise<T>;
10
- subscribe(resource: string, onEvent: (data: WatchEvent) => void): () => void;
11
- publish(resource: string, data: WatchEvent): void;
12
- init(params: GlobalStoreInitParams): void;
13
- loadPlugins(plugins?: IProviderPlugin[]): void;
14
- restoreItem(item: Unstructured): Unstructured;
15
- restoreData(list: UnstructuredList): UnstructuredList;
16
- destroy(): void;
17
- cancelQueries(params?: CancelQueriesParams): void;
18
- }