@dovetail-v2/refine 0.1.18-alpha.2 → 0.1.18-alpha.3
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/{MonacoYamlDiffEditor-2085f68a.js → MonacoYamlDiffEditor-a48b4b30.js} +1 -1
- package/dist/{index-4f767faa.js → index-ee3e7686.js} +300 -302
- package/dist/refine.js +1 -1
- package/dist/refine.umd.cjs +299 -301
- package/lib/i18n.d.ts +2 -0
- package/lib/locales/en-US/index.d.ts +1 -0
- package/lib/locales/zh-CN/index.d.ts +1 -0
- package/package.json +1 -1
- package/lib/types/globalStore.d.ts +0 -18
package/lib/i18n.d.ts
CHANGED
|
@@ -174,6 +174,7 @@ export declare const resources: {
|
|
|
174
174
|
search: string;
|
|
175
175
|
edit_label: string;
|
|
176
176
|
csi: string;
|
|
177
|
+
confirm: string;
|
|
177
178
|
};
|
|
178
179
|
};
|
|
179
180
|
'zh-CN': {
|
|
@@ -412,6 +413,7 @@ export declare const resources: {
|
|
|
412
413
|
taint_effect_PreferNoSchedule_tooltip_2: string;
|
|
413
414
|
taint_effect_PreferNoSchedule_tooltip_3: string;
|
|
414
415
|
taint_effect_NoExecute_tooltip_3: string;
|
|
416
|
+
confirm: string;
|
|
415
417
|
};
|
|
416
418
|
};
|
|
417
419
|
};
|
package/package.json
CHANGED
|
@@ -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
|
-
}
|