@dovetail-v2/refine 0.0.13 → 0.0.14

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.
@@ -1,5 +1,6 @@
1
1
  import { ResourceProps } from '@refinedev/core';
2
2
  import { History } from 'history';
3
+ import { GlobalStoreInitParams } from 'k8s-api-provider';
3
4
  import React from 'react';
4
5
  import './i18n';
5
6
  import './styles.css';
@@ -13,6 +14,7 @@ type Props = {
13
14
  refineResources?: ResourceProps[];
14
15
  Layout?: React.FC<unknown>;
15
16
  history: History;
17
+ globalStoreParams: GlobalStoreInitParams;
16
18
  };
17
19
  export declare const Dovetail: React.FC<Props>;
18
20
  export {};
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ type Props = {};
3
+ export declare const EventsTable: React.FC<Props>;
4
+ export {};
@@ -0,0 +1 @@
1
+ export * from './EventsTable';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import { PodModel } from '../../model';
3
+ import '@patternfly/react-core/dist/styles/base-no-reset.css';
4
+ export declare const PodLog: React.FC<{
5
+ pod: PodModel;
6
+ }>;
@@ -31,3 +31,4 @@ export * from './Table';
31
31
  export * from './EditButton';
32
32
  export * from './NamespacesFilter';
33
33
  export * from './Tags';
34
+ export * from './PodLog';
package/lib/src/i18n.d.ts CHANGED
@@ -42,6 +42,10 @@ export declare const resources: {
42
42
  label: string;
43
43
  annotation: string;
44
44
  type: string;
45
+ event: string;
46
+ reason: string;
47
+ object: string;
48
+ note: string;
45
49
  condition: string;
46
50
  download_yaml: string;
47
51
  detail: string;
@@ -71,6 +75,11 @@ export declare const resources: {
71
75
  network: string;
72
76
  clusterIp: string;
73
77
  sessionAffinity: string;
78
+ log: string;
79
+ select_container: string;
80
+ wrap: string;
81
+ resume_log: string;
82
+ log_new_lines: string;
74
83
  };
75
84
  };
76
85
  };
@@ -26,6 +26,10 @@ declare const _default: {
26
26
  label: string;
27
27
  annotation: string;
28
28
  type: string;
29
+ event: string;
30
+ reason: string;
31
+ object: string;
32
+ note: string;
29
33
  condition: string;
30
34
  download_yaml: string;
31
35
  detail: string;
@@ -55,6 +59,11 @@ declare const _default: {
55
59
  network: string;
56
60
  clusterIp: string;
57
61
  sessionAffinity: string;
62
+ log: string;
63
+ select_container: string;
64
+ wrap: string;
65
+ resume_log: string;
66
+ log_new_lines: string;
58
67
  };
59
68
  };
60
69
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dovetail-v2/refine",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -12,6 +12,8 @@
12
12
  "dependencies": {
13
13
  "@cloudtower/eagle": "^0.26.11",
14
14
  "@cloudtower/icons-react": "^0.26.11",
15
+ "@patternfly/react-core": "^5.1.1",
16
+ "@patternfly/react-log-viewer": "^5.0.0",
15
17
  "@refinedev/core": "^4.38.0",
16
18
  "@refinedev/inferencer": "^4.5.4",
17
19
  "antd": "4.5.0",