@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/{MonacoYamlDiffEditor-9fec703f.js → MonacoYamlDiffEditor-61328fb1.js} +1 -1
- package/dist/{index-51b14bbe.js → index-a4824330.js} +318 -308
- package/dist/refine.js +1 -1
- package/dist/refine.umd.cjs +317 -307
- package/dist/style.css +0 -3
- package/lib/components/Table/index.d.ts +0 -1
- package/lib/constants/k8s.d.ts +4 -0
- package/lib/i18n.d.ts +8 -0
- package/lib/locales/en-US/index.d.ts +8 -0
- package/package.json +1 -1
- package/lib/types/globalStore.d.ts +0 -18
package/dist/style.css
CHANGED
|
@@ -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 {};
|
package/lib/constants/k8s.d.ts
CHANGED
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,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
|
-
}
|