@dovetail-v2/refine 0.2.11 → 0.3.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.
@@ -5,7 +5,7 @@ const monaco = require("monaco-editor");
5
5
  const monacoYaml = require("monaco-yaml");
6
6
  const React = require("react");
7
7
  const ReactDOM = require("react-dom");
8
- const refine = require("./index-ef2a5914.cjs");
8
+ const refine = require("./index-7c78ef6f.cjs");
9
9
  require("dayjs");
10
10
  require("i18next");
11
11
  require("@refinedev/core");
@@ -3,7 +3,7 @@ import * as monaco from "monaco-editor";
3
3
  import { setDiagnosticsOptions } from "monaco-yaml";
4
4
  import { useRef, useEffect } from "react";
5
5
  import ReactDOM from "react-dom";
6
- import { Y as YamlEditorStyle } from "./index-ac5ee636.js";
6
+ import { Y as YamlEditorStyle } from "./index-23ef5f69.js";
7
7
  import "dayjs";
8
8
  import "i18next";
9
9
  import "@refinedev/core";
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  type Props = {
3
- resourceKind: string;
3
+ resourceName: string;
4
4
  namespace: string;
5
5
  name: string;
6
6
  displayName?: string;
@@ -8,7 +8,7 @@ export declare const PlainTextNameColumnRenderer: <Model extends ResourceModel<i
8
8
  export declare const NameSpaceColumnRenderer: <Model extends ResourceModel<import("k8s-api-provider").Unstructured>>(i18n: I18nType) => Column<Model>;
9
9
  export declare const StateDisplayColumnRenderer: <Model extends PodModel | JobModel | WorkloadModel | CronJobModel | DaemonSetModel | ServiceModel>(i18n: I18nType) => Column<Model>;
10
10
  export declare const WorkloadImageColumnRenderer: <Model extends WorkloadBaseModel>(i18n: I18nType) => Column<Model>;
11
- export declare const WorkloadRestartsColumnRenderer: <Model extends WorkloadModel>(i18n: I18nType) => Column<Model>;
11
+ export declare const RestartsColumnRenderer: <Model extends WorkloadModel>(i18n: I18nType) => Column<Model>;
12
12
  export declare const ReplicasColumnRenderer: <Model extends WorkloadModel>(i18n: I18nType) => Column<Model>;
13
13
  export declare const AgeColumnRenderer: <Model extends ResourceModel<import("k8s-api-provider").Unstructured>>(i18n: I18nType, config?: {
14
14
  title?: string;
@@ -17,7 +17,6 @@ export declare const AgeColumnRenderer: <Model extends ResourceModel<import("k8s
17
17
  isRelativeTime?: boolean | undefined;
18
18
  }) => Column<Model>;
19
19
  export declare const NodeNameColumnRenderer: <Model extends PodModel>(i18n: I18nType, options?: Partial<Column<Model>> | undefined) => Column<Model>;
20
- export declare const RestartCountColumnRenderer: <Model extends PodModel>(i18n: I18nType) => Column<Model>;
21
20
  export declare const CompletionsCountColumnRenderer: <Model extends JobModel>(i18n: I18nType) => Column<Model>;
22
21
  export declare const DurationColumnRenderer: <Model extends JobModel | CronJobModel>(i18n: I18nType) => Column<Model>;
23
22
  export declare const ServiceTypeColumnRenderer: <Model extends ResourceModel<import("k8s-api-provider").Unstructured>>(i18n: I18nType) => Column<Model>;
@@ -1,5 +1,5 @@
1
1
  interface UseOpenFormOptions {
2
2
  id?: string;
3
3
  }
4
- export declare function useOpenForm(options?: UseOpenFormOptions): () => void;
4
+ export declare function useOpenForm(options?: UseOpenFormOptions): (resourceName?: string) => void;
5
5
  export {};