@dovetail-v2/refine 0.1.18-alpha.3 → 0.1.18-alpha.4

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
@@ -612,7 +612,8 @@
612
612
  .t13a6vox {
613
613
  flex-wrap: wrap;
614
614
  max-width: 100%;
615
- gap: 8px 8px;
615
+ gap: 8px 0px;
616
+ margin-bottom: 4px;
616
617
  }
617
618
 
618
619
  .t12ikbmp.ant-tag {
@@ -1425,6 +1426,12 @@
1425
1426
  }
1426
1427
  .p5jt6nm .ant-table tbody > tr:last-child > td {
1427
1428
  border-bottom: none;
1429
+ }
1430
+ .p5jt6nm .ant-table .ant-table-cell {
1431
+ padding: 4px 8px !important;
1432
+ }
1433
+ .p5jt6nm .ant-table li {
1434
+ text-indent: 8px;
1428
1435
  }/* // basic */
1429
1436
  /* FishEye Color Variables and Functions */
1430
1437
  /*
package/lib/i18n.d.ts CHANGED
@@ -175,6 +175,7 @@ export declare const resources: {
175
175
  edit_label: string;
176
176
  csi: string;
177
177
  confirm: string;
178
+ no_limitation_rule: string;
178
179
  };
179
180
  };
180
181
  'zh-CN': {
@@ -407,6 +408,7 @@ export declare const resources: {
407
408
  name_format_rule_1: string;
408
409
  name_format_rule_2: string;
409
410
  name_format_rule_3: string;
411
+ no_limitation_rule: string;
410
412
  taint_effect_NoSchedule_tooltip_1: string;
411
413
  taint_effect_NoSchedule_tooltip_2: string;
412
414
  taint_effect_PreferNoSchedule_tooltip_1: string;
@@ -172,6 +172,7 @@ declare const _default: {
172
172
  edit_label: string;
173
173
  csi: string;
174
174
  confirm: string;
175
+ no_limitation_rule: string;
175
176
  };
176
177
  };
177
178
  export default _default;
@@ -228,6 +228,7 @@ declare const _default: {
228
228
  name_format_rule_1: string;
229
229
  name_format_rule_2: string;
230
230
  name_format_rule_3: string;
231
+ no_limitation_rule: string;
231
232
  taint_effect_NoSchedule_tooltip_1: string;
232
233
  taint_effect_NoSchedule_tooltip_2: string;
233
234
  taint_effect_PreferNoSchedule_tooltip_1: string;
@@ -0,0 +1,18 @@
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dovetail-v2/refine",
3
- "version": "0.1.18-alpha.3",
3
+ "version": "0.1.18-alpha.4",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",