@dovetail-v2/refine 0.1.4 → 0.1.5-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-4060eeb6.js → MonacoYamlDiffEditor-c27ab21c.js} +1 -1
- package/dist/{index-9767c246.js → index-984f2ec7.js} +16296 -2217
- package/dist/refine.js +163 -158
- package/dist/refine.umd.cjs +16049 -1970
- package/dist/style.css +231 -3
- package/lib/App.d.ts +2 -0
- package/lib/Dovetail.d.ts +18 -0
- package/lib/components/Breadcrumb/index.d.ts +5 -0
- package/lib/components/ConditionsTable/ConditionsTable.d.ts +7 -0
- package/lib/components/ConditionsTable/index.d.ts +1 -0
- package/lib/components/CreateButton/index.d.ts +1 -0
- package/lib/components/CronJobDropdown/index.d.ts +8 -0
- package/lib/components/CronjobJobsTable/index.d.ts +8 -0
- package/lib/components/DeleteButton/index.d.ts +2 -0
- package/lib/components/DeleteManyButton/index.d.ts +4 -0
- package/lib/components/DrawerShow/DrawerShow.d.ts +8 -0
- package/lib/components/DrawerShow/index.d.ts +1 -0
- package/lib/components/DurationTime/index.d.ts +5 -0
- package/lib/components/EditButton/index.d.ts +2 -0
- package/lib/components/EditField/index.d.ts +15 -0
- package/lib/components/ErrorContent/index.d.ts +17 -0
- package/lib/components/EventsTable/EventsTable.d.ts +6 -0
- package/lib/components/EventsTable/index.d.ts +1 -0
- package/lib/components/Form/FormModal.d.ts +10 -0
- package/lib/components/Form/RefineFormContent.d.ts +11 -0
- package/lib/components/Form/RefineFormPage.d.ts +6 -0
- package/lib/components/Form/YamlForm.d.ts +28 -0
- package/lib/components/Form/index.d.ts +7 -0
- package/lib/components/Form/type.d.ts +17 -0
- package/lib/components/Form/useReactHookForm.d.ts +29 -0
- package/lib/components/Form/useRefineForm.d.ts +13 -0
- package/lib/components/Form/useYamlForm.d.ts +51 -0
- package/lib/components/FormErrorAlert/index.d.ts +9 -0
- package/lib/components/FormLayout/index.d.ts +7 -0
- package/lib/components/FormWidgets/KeyValueListWidget.d.ts +5 -0
- package/lib/components/FormWidgets/MetadataForm.d.ts +1 -0
- package/lib/components/FormWidgets/NameInputWidget.d.ts +50 -0
- package/lib/components/FormWidgets/NamespaceSelectWidget.d.ts +8 -0
- package/lib/components/FormWidgets/index.d.ts +4 -0
- package/lib/components/FormWidgets/widget.d.ts +5 -0
- package/lib/components/ImageNames/index.d.ts +5 -0
- package/lib/components/IngressRulesComponent/index.d.ts +5 -0
- package/lib/components/IngressRulesTable/IngressRulesTable.d.ts +7 -0
- package/lib/components/IngressRulesTable/index.d.ts +1 -0
- package/lib/components/K8sDropdown/index.d.ts +9 -0
- package/lib/components/KeyValue/KeyValue.d.ts +7 -0
- package/lib/components/KeyValue/KeyValueAnnotation.d.ts +5 -0
- package/lib/components/KeyValue/KeyValueSecret.d.ts +4 -0
- package/lib/components/KeyValue/index.d.ts +3 -0
- package/lib/components/Layout/index.d.ts +3 -0
- package/lib/components/LinkFallback/index.d.ts +3 -0
- package/lib/components/ListPage/index.d.ts +9 -0
- package/lib/components/Menu/index.d.ts +1 -0
- package/lib/components/NamespacesFilter/index.d.ts +11 -0
- package/lib/components/NetworkPolicyRulesViewer/NetworkPolicyRulesViewer.d.ts +8 -0
- package/lib/components/NetworkPolicyRulesViewer/index.d.ts +1 -0
- package/lib/components/PageShow/PageShow.d.ts +12 -0
- package/lib/components/PageShow/index.d.ts +1 -0
- package/lib/components/PodContainersTable/PodContainersTable.d.ts +8 -0
- package/lib/components/PodContainersTable/index.d.ts +1 -0
- package/lib/components/PodDropdown/index.d.ts +9 -0
- package/lib/components/PodLog/index.d.ts +6 -0
- package/lib/components/PodSelectorTable/index.d.ts +6 -0
- package/lib/components/PodShellModal/PodShell.d.ts +18 -0
- package/lib/components/PodShellModal/index.d.ts +9 -0
- package/lib/components/PortsTable/index.d.ts +7 -0
- package/lib/components/ReferenceLink/index.d.ts +8 -0
- package/lib/components/ReplicasDropdown/index.d.ts +9 -0
- package/lib/components/ResourceCRUD/ResourceCRUD.d.ts +7 -0
- package/lib/components/ResourceCRUD/create/index.d.ts +7 -0
- package/lib/components/ResourceCRUD/index.d.ts +4 -0
- package/lib/components/ResourceCRUD/list/index.d.ts +8 -0
- package/lib/components/ResourceCRUD/show/index.d.ts +8 -0
- package/lib/components/ResourceFiledDisplays.d.ts +6 -0
- package/lib/components/ResourceLink/index.d.ts +8 -0
- package/lib/components/ResourceSelect/index.d.ts +11 -0
- package/lib/components/ResourceUsageBar/index.d.ts +8 -0
- package/lib/components/Separator/index.d.ts +2 -0
- package/lib/components/ServiceComponents/index.d.ts +10 -0
- package/lib/components/Shell/index.d.ts +54 -0
- package/lib/components/ShowContent/ShowContent.d.ts +18 -0
- package/lib/components/ShowContent/fields.d.ts +68 -0
- package/lib/components/ShowContent/groups.d.ts +23 -0
- package/lib/components/ShowContent/index.d.ts +4 -0
- package/lib/components/ShowContent/tabs.d.ts +5 -0
- package/lib/components/StateTag/StateTag.d.ts +10 -0
- package/lib/components/StateTag/index.d.ts +1 -0
- package/lib/components/Table/TableToolBar.d.ts +8 -0
- package/lib/components/Table/TableWidgets.d.ts +6 -0
- package/lib/components/Table/index.d.ts +43 -0
- package/lib/components/Tabs/index.d.ts +10 -0
- package/lib/components/Tags/index.d.ts +6 -0
- package/lib/components/TextTags/index.d.ts +6 -0
- package/lib/components/Time/index.d.ts +8 -0
- package/lib/components/ValueDisplay/index.d.ts +9 -0
- package/lib/components/WorkloadDropdown/index.d.ts +9 -0
- package/lib/components/WorkloadPodsTable/WorkloadPodsTable.d.ts +9 -0
- package/lib/components/WorkloadPodsTable/index.d.ts +1 -0
- package/lib/components/WorkloadReplicas/index.d.ts +17 -0
- package/lib/components/YamlEditor/MonacoYamlDiffEditor.d.ts +9 -0
- package/lib/components/YamlEditor/MonacoYamlEditor.d.ts +19 -0
- package/lib/components/YamlEditor/YamlEditorComponent.d.ts +27 -0
- package/lib/components/YamlEditor/index.d.ts +1 -0
- package/lib/components/YamlEditor/style.d.ts +11 -0
- package/lib/components/YamlEditor/yaml.worker.d.ts +1 -0
- package/lib/components/index.d.ts +47 -0
- package/lib/constants/auth.d.ts +5 -0
- package/lib/constants/index.d.ts +3 -0
- package/lib/constants/k8s.d.ts +487 -0
- package/lib/constants/state.d.ts +15 -0
- package/lib/contexts/component.d.ts +7 -0
- package/lib/contexts/configs.d.ts +3 -0
- package/lib/contexts/global-store.d.ts +5 -0
- package/lib/contexts/index.d.ts +3 -0
- package/lib/hooks/index.d.ts +8 -0
- package/lib/hooks/useDeleteModal/index.d.ts +1 -0
- package/lib/hooks/useDeleteModal/useDeleteManyModal.d.ts +7 -0
- package/lib/hooks/useDeleteModal/useDeleteModal.d.ts +7 -0
- package/lib/hooks/useDownloadYAML.d.ts +7 -0
- package/lib/hooks/useEagleTable/columns.d.ts +41 -0
- package/lib/hooks/useEagleTable/index.d.ts +2 -0
- package/lib/hooks/useEagleTable/useEagleTable.d.ts +55 -0
- package/lib/hooks/useEdit.d.ts +4 -0
- package/lib/hooks/useGlobalStore.d.ts +3 -0
- package/lib/hooks/useK8sYamlEditor.d.ts +5 -0
- package/lib/hooks/useNamespaceRefineFilter.d.ts +5 -0
- package/lib/hooks/useOpenForm.d.ts +7 -0
- package/lib/hooks/useSchema.d.ts +14 -0
- package/lib/hooks/useSubmitForm.d.ts +14 -0
- package/lib/hooks/useTableData.d.ts +19 -0
- package/lib/i18n.d.ts +353 -0
- package/lib/index.d.ts +11 -0
- package/lib/locales/en-US/index.d.ts +175 -0
- package/lib/locales/index.d.ts +2 -0
- package/lib/locales/zh-CN/index.d.ts +175 -0
- package/lib/main.d.ts +3 -0
- package/lib/models/cronjob-model.d.ts +15 -0
- package/lib/models/daemonset-model.d.ts +15 -0
- package/lib/models/deployment-model.d.ts +13 -0
- package/lib/models/event-model.d.ts +7 -0
- package/lib/models/index.d.ts +19 -0
- package/lib/models/ingress-model.d.ts +20 -0
- package/lib/models/job-model.d.ts +20 -0
- package/lib/models/network-policy-model.d.ts +9 -0
- package/lib/models/node-model.d.ts +17 -0
- package/lib/models/persistent-volume-claim.d.ts +9 -0
- package/lib/models/persistent-volume.d.ts +9 -0
- package/lib/models/pod-metrics-model.d.ts +8 -0
- package/lib/models/pod-model.d.ts +20 -0
- package/lib/models/resource-model.d.ts +21 -0
- package/lib/models/service-model.d.ts +24 -0
- package/lib/models/statefulset-model.d.ts +13 -0
- package/lib/models/storage-class.d.ts +12 -0
- package/lib/models/types/index.d.ts +1 -0
- package/lib/models/types/metric.d.ts +25 -0
- package/lib/models/workload-base-model.d.ts +12 -0
- package/lib/models/workload-model.d.ts +18 -0
- package/lib/pages/configmaps/index.d.ts +4 -0
- package/lib/pages/cronjobs/create/index.d.ts +3 -0
- package/lib/pages/cronjobs/index.d.ts +3 -0
- package/lib/pages/cronjobs/list/index.d.ts +3 -0
- package/lib/pages/cronjobs/show/index.d.ts +3 -0
- package/lib/pages/daemonsets/create/index.d.ts +3 -0
- package/lib/pages/daemonsets/index.d.ts +3 -0
- package/lib/pages/daemonsets/list/index.d.ts +3 -0
- package/lib/pages/daemonsets/show/index.d.ts +3 -0
- package/lib/pages/deployments/index.d.ts +2 -0
- package/lib/pages/deployments/list/index.d.ts +3 -0
- package/lib/pages/deployments/show/index.d.ts +3 -0
- package/lib/pages/ingresses/index.d.ts +4 -0
- package/lib/pages/jobs/index.d.ts +4 -0
- package/lib/pages/networkPolicies/index.d.ts +4 -0
- package/lib/pages/nodes/index.d.ts +2 -0
- package/lib/pages/nodes/list/index.d.ts +3 -0
- package/lib/pages/nodes/show/index.d.ts +3 -0
- package/lib/pages/persistentvolumeclaims/index.d.ts +4 -0
- package/lib/pages/persistentvolumes/index.d.ts +4 -0
- package/lib/pages/pods/create/index.d.ts +3 -0
- package/lib/pages/pods/index.d.ts +3 -0
- package/lib/pages/pods/list/index.d.ts +3 -0
- package/lib/pages/pods/show/index.d.ts +3 -0
- package/lib/pages/secrets/index.d.ts +4 -0
- package/lib/pages/services/index.d.ts +4 -0
- package/lib/pages/statefulsets/index.d.ts +4 -0
- package/lib/pages/storageclasses/form/index.d.ts +9 -0
- package/lib/pages/storageclasses/index.d.ts +44 -0
- package/lib/plugins/index.d.ts +4 -0
- package/lib/plugins/model-plugin.d.ts +13 -0
- package/lib/plugins/relation-plugin.d.ts +26 -0
- package/lib/plugins/type.d.ts +8 -0
- package/lib/providers/index.d.ts +1 -0
- package/lib/providers/router-provider/index.d.ts +21 -0
- package/lib/src/components/PodDropdown/index.d.ts +9 -0
- package/lib/src/components/PodShellModal/PodShell.d.ts +18 -0
- package/lib/src/components/PodShellModal/index.d.ts +10 -0
- package/lib/src/components/Shell/ShellToolbar.d.ts +16 -0
- package/lib/src/components/Shell/index.d.ts +74 -0
- package/lib/src/components/index.d.ts +3 -0
- package/lib/src/i18n.d.ts +8 -0
- package/lib/src/locales/en-US/index.d.ts +1 -0
- package/lib/src/locales/zh-CN/index.d.ts +7 -0
- package/lib/src/styles/modal.d.ts +1 -0
- package/lib/src/utils/index.d.ts +1 -0
- package/lib/src/utils/shell.d.ts +16 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/resource.d.ts +62 -0
- package/lib/utils/addId.d.ts +3 -0
- package/lib/utils/download.d.ts +1 -0
- package/lib/utils/error.d.ts +20 -0
- package/lib/utils/form.d.ts +3 -0
- package/lib/utils/k8s.d.ts +3 -0
- package/lib/utils/labels.d.ts +9 -0
- package/lib/utils/match-selector.d.ts +3 -0
- package/lib/utils/openapi.d.ts +45 -0
- package/lib/utils/schema.d.ts +17 -0
- package/lib/utils/selector.d.ts +3 -0
- package/lib/utils/shell.d.ts +15 -0
- package/lib/utils/string.d.ts +1 -0
- package/lib/utils/time.d.ts +13 -0
- package/lib/utils/unit.d.ts +12 -0
- package/lib/utils/yaml.d.ts +2 -0
- package/package.json +14 -5
package/dist/refine.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { bq, cb, A, aK, aM, au, bN, b0, V, b$, bP, aE, H, C, h, cf, ax, b4, a5, ch, aa, ah, cq, am, bQ, bO, ct, aA, ba, v, as, bg, cs, cc, bk, D, aR, bm, cr, a_, aI, bt, ce, cg, bZ, av, ab, q, p, ci, I, b7, aH, s, bR, ck, az, b6, ai, an, ao, a1, ap, aL, at, bh, bl, a2, M, cD, b_, c8, bp, N, X, c, aJ, $, bs, bc, bb, cj, bE, cy, f, cx, bT, G, aZ, z, aV, y, aU, E, bF, aX, B, aW, F, bG, aY, a3, cB, cA, P, b2, t, a6, a9, bD, a$, co, cn, aP, b8, bM, bL, o, ay, b1, w, b9, aQ, cC, x, cd, bn, bu, bv, cF, aw, R, a8, af, ae, bo, ac, cp, bI, ad, aj, g, c4, c7, c3, c2, c5, c6, c0, bU, bX, bY, bW, bV, bS, c9, bw, aB, b5, aq, l, bz, k, aN, cw, n, bA, aO, m, aG, b3, i, cv, aD, aF, bK, bf, be, bJ, aC, S, bj, bi, cu, cz, aS, aT, bd, c1, bH, bB, bC, a4, U, cm, a7, W, cl, ag, al, ak, e, ca, ar, bx, J, Y, d, cE, a0, cG, _, Z, r, b, L, K, O, Q, u, br, T, by, a } from "./index-984f2ec7.js";
|
|
2
2
|
import "@cloudtower/eagle";
|
|
3
3
|
import "@refinedev/core";
|
|
4
4
|
import "react";
|
|
@@ -15,212 +15,217 @@ import "monaco-yaml";
|
|
|
15
15
|
import "react-dom";
|
|
16
16
|
import "antd";
|
|
17
17
|
export {
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
bq as ALL_NS,
|
|
19
|
+
cb as AccessControlAuth,
|
|
20
20
|
A as AgeColumnRenderer,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
21
|
+
aK as AgeField,
|
|
22
|
+
aM as AnnotationsField,
|
|
23
|
+
au as AreaType,
|
|
24
|
+
bN as BASE_INIT_VALUE,
|
|
25
|
+
b0 as BasicGroup,
|
|
26
26
|
V as Breadcrumb,
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
b$ as CONFIG_MAP_INIT_VALUE,
|
|
28
|
+
bP as CRONJOB_INIT_VALUE,
|
|
29
|
+
aE as ClusterIpField,
|
|
30
30
|
H as ColumnKeys,
|
|
31
31
|
C as CommonSorter,
|
|
32
32
|
h as CompletionsCountColumnRenderer,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
cf as ComponentContext,
|
|
34
|
+
ax as ConditionsField,
|
|
35
|
+
b4 as ConditionsGroup,
|
|
36
36
|
a5 as ConditionsTable,
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
37
|
+
ch as ConfigsContext,
|
|
38
|
+
aa as CreateButton,
|
|
39
|
+
ah as CronJobDropdown,
|
|
40
|
+
cq as CronJobModel,
|
|
41
|
+
am as CronjobJobsTable,
|
|
42
|
+
bQ as DAEMONSET_INIT_VALUE,
|
|
43
|
+
bO as DEPLOYMENT_INIT_VALUE,
|
|
44
|
+
ct as DaemonSetModel,
|
|
45
|
+
aA as DataField,
|
|
46
|
+
ba as DataGroup,
|
|
47
47
|
v as DataKeysColumnRenderer,
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
48
|
+
as as DeleteButton,
|
|
49
|
+
bg as DeleteManyButton,
|
|
50
|
+
cs as DeploymentModel,
|
|
51
|
+
cc as Dovetail,
|
|
52
|
+
bk as DrawerShow,
|
|
53
53
|
D as DurationColumnRenderer,
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
54
|
+
aR as DurationField,
|
|
55
|
+
bm as EditButton,
|
|
56
|
+
cr as EventModel,
|
|
57
|
+
a_ as EventsTab,
|
|
58
|
+
aI as EventsTableTabField,
|
|
59
|
+
bt as FormModal,
|
|
60
|
+
ce as FormType,
|
|
61
|
+
cg as GlobalStoreContext,
|
|
62
|
+
bZ as INGRESS_INIT_VALUE,
|
|
63
|
+
av as ImageField,
|
|
64
|
+
ab as ImageNames,
|
|
65
65
|
q as IngressClassColumnRenderer,
|
|
66
66
|
p as IngressDefaultBackendColumnRenderer,
|
|
67
|
-
|
|
67
|
+
ci as IngressModel,
|
|
68
68
|
I as IngressRulesColumnRenderer,
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
b7 as IngressRulesGroup,
|
|
70
|
+
aH as IngressRulesTableTabField,
|
|
71
71
|
s as IngressTlsColumnRenderer,
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
72
|
+
bR as JOB_INIT_VALUE,
|
|
73
|
+
ck as JobModel,
|
|
74
|
+
az as JobsField,
|
|
75
|
+
b6 as JobsGroup,
|
|
76
|
+
ai as K8sDropdown,
|
|
77
|
+
an as KeyValue,
|
|
78
|
+
ao as KeyValueAnnotation,
|
|
79
79
|
a1 as KeyValueListWidget,
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
80
|
+
ap as KeyValueSecret,
|
|
81
|
+
aL as LabelsField,
|
|
82
|
+
at as Layout,
|
|
83
|
+
bh as ListPage,
|
|
84
|
+
bl as Menu,
|
|
85
85
|
a2 as MetadataForm,
|
|
86
86
|
M as ModalStyle,
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
87
|
+
cD as ModelPlugin,
|
|
88
|
+
b_ as NETWORK_POLICY_INIT_VALUE,
|
|
89
|
+
c8 as NODE_INIT_VALUE,
|
|
90
|
+
bp as NS_STORE_KEY,
|
|
91
91
|
N as NameColumnRenderer,
|
|
92
92
|
X as NameInputWidget,
|
|
93
93
|
c as NameSpaceColumnRenderer,
|
|
94
|
-
|
|
94
|
+
aJ as NamespaceField,
|
|
95
95
|
$ as NamespaceSelectWidget,
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
96
|
+
bs as NamespacesFilter,
|
|
97
|
+
bc as NetworkPolicyEgressRulesGroup,
|
|
98
|
+
bb as NetworkPolicyIngressRulesGroup,
|
|
99
|
+
cj as NetworkPolicyModel,
|
|
100
|
+
bE as NetworkPolicyRulesViewer,
|
|
101
|
+
cy as NodeModel,
|
|
102
102
|
f as NodeNameColumnRenderer,
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
cx as NodeRole,
|
|
104
|
+
bT as POD_INIT_VALUE,
|
|
105
105
|
G as PVAccessModeColumnRenderer,
|
|
106
|
-
|
|
106
|
+
aZ as PVAccessModeField,
|
|
107
107
|
z as PVCStorageColumnRenderer,
|
|
108
|
-
|
|
108
|
+
aV as PVCStorageField,
|
|
109
109
|
y as PVCapacityColumnRenderer,
|
|
110
|
-
|
|
110
|
+
aU as PVCapacityField,
|
|
111
111
|
E as PVPhaseColumnRenderer,
|
|
112
|
-
|
|
113
|
-
|
|
112
|
+
bF as PVPhaseDisplay,
|
|
113
|
+
aX as PVPhaseField,
|
|
114
114
|
B as PVStorageClassColumnRenderer,
|
|
115
|
-
|
|
115
|
+
aW as PVStorageClassField,
|
|
116
116
|
F as PVVolumeModeColumnRenderer,
|
|
117
|
-
|
|
118
|
-
|
|
117
|
+
bG as PVVolumeModeDisplay,
|
|
118
|
+
aY as PVVolumeModeField,
|
|
119
119
|
a3 as PageShow,
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
cB as PersistentVolumeClaimModel,
|
|
121
|
+
cA as PersistentVolumeModel,
|
|
122
122
|
P as PlainTextNameColumnRenderer,
|
|
123
|
-
|
|
123
|
+
b2 as PodContainersGroup,
|
|
124
124
|
t as PodContainersNumColumnRenderer,
|
|
125
125
|
a6 as PodContainersTable,
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
126
|
+
a9 as PodDropdown,
|
|
127
|
+
bD as PodLog,
|
|
128
|
+
a$ as PodLogTab,
|
|
129
|
+
co as PodMetricsModel,
|
|
130
|
+
cn as PodModel,
|
|
131
|
+
aP as PodSelectorField,
|
|
132
|
+
b8 as PodSelectorGroup,
|
|
133
|
+
bM as PodShell,
|
|
134
|
+
bL as PodShellModal,
|
|
132
135
|
o as PodWorkloadColumnRenderer,
|
|
133
|
-
|
|
134
|
-
|
|
136
|
+
ay as PodsField,
|
|
137
|
+
b1 as PodsGroup,
|
|
135
138
|
w as PortMappingColumnRenderer,
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
+
b9 as PortsGroup,
|
|
140
|
+
aQ as PortsTableField,
|
|
141
|
+
cC as ProviderPlugins,
|
|
139
142
|
x as ProvisionerColumnRenderer,
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
143
|
+
cd as RESOURCE_GROUP,
|
|
144
|
+
bn as ReferenceLink,
|
|
145
|
+
bu as RefineFormContent,
|
|
146
|
+
bv as RefineFormPage,
|
|
147
|
+
cF as RelationPlugin,
|
|
148
|
+
aw as ReplicaField,
|
|
146
149
|
R as ReplicasColumnRenderer,
|
|
147
150
|
a8 as ReplicasDropdown,
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
151
|
+
af as ResourceCRUD,
|
|
152
|
+
ae as ResourceForm,
|
|
153
|
+
bo as ResourceLink,
|
|
154
|
+
ac as ResourceList,
|
|
155
|
+
cp as ResourceModel,
|
|
156
|
+
bI as ResourceSelect,
|
|
157
|
+
ad as ResourceShow,
|
|
158
|
+
aj as ResourceUsageBar,
|
|
156
159
|
g as RestartCountColumnRenderer,
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
160
|
+
c4 as SECRET_BASIC_AUTH_INIT_VALUE,
|
|
161
|
+
c7 as SECRET_CUSTOM_INIT_VALUE,
|
|
162
|
+
c3 as SECRET_IMAGE_REPO_INIT_VALUE,
|
|
163
|
+
c2 as SECRET_OPAQUE_INIT_VALUE,
|
|
164
|
+
c5 as SECRET_SSH_AUTH_INIT_VALUE,
|
|
165
|
+
c6 as SECRET_TLS_INIT_VALUE,
|
|
166
|
+
c0 as SERVER_INSTANCE_INIT_VALUE,
|
|
167
|
+
bU as SERVICE_CLUSTER_IP_INIT_VALUE,
|
|
168
|
+
bX as SERVICE_EXTERNAL_NAME_INIT_VALUE,
|
|
169
|
+
bY as SERVICE_HEADLESS_INIT_VALUE,
|
|
170
|
+
bW as SERVICE_LOAD_BALANCER_INIT_VALUE,
|
|
171
|
+
bV as SERVICE_NODE_PORT_INIT_VALUE,
|
|
172
|
+
bS as STATEFULSET_INIT_VALUE,
|
|
173
|
+
c9 as STORAGE_CLASS_INIT_VALUE,
|
|
174
|
+
bw as SchemaStrategy,
|
|
175
|
+
aB as SecretDataField,
|
|
176
|
+
b5 as SecretDataGroup,
|
|
177
|
+
aq as Separator,
|
|
175
178
|
l as ServiceInClusterAccessColumnRenderer,
|
|
176
|
-
|
|
179
|
+
bz as ServiceInClusterAccessComponent,
|
|
177
180
|
k as ServiceInClusterAccessTitle,
|
|
178
|
-
|
|
179
|
-
|
|
181
|
+
aN as ServiceInnerClusterAccessField,
|
|
182
|
+
cw as ServiceModel,
|
|
180
183
|
n as ServiceOutClusterAccessColumnRenderer,
|
|
181
|
-
|
|
182
|
-
|
|
184
|
+
bA as ServiceOutClusterAccessComponent,
|
|
185
|
+
aO as ServiceOutClusterAccessField,
|
|
183
186
|
m as ServiceOutClusterAccessTitle,
|
|
184
|
-
|
|
185
|
-
|
|
187
|
+
aG as ServicePodsField,
|
|
188
|
+
b3 as ServicePodsGroup,
|
|
186
189
|
i as ServiceTypeColumnRenderer,
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
190
|
+
cv as ServiceTypeEnum,
|
|
191
|
+
aD as ServiceTypeField,
|
|
192
|
+
aF as SessionAffinityField,
|
|
193
|
+
bK as Shell,
|
|
194
|
+
bf as ShowContent,
|
|
195
|
+
be as ShowGroupComponent,
|
|
196
|
+
bJ as SocketStatus,
|
|
197
|
+
aC as StartTimeField,
|
|
193
198
|
S as StateDisplayColumnRenderer,
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
199
|
+
bj as StateTag,
|
|
200
|
+
bi as StateTagStyle,
|
|
201
|
+
cu as StatefulSetModel,
|
|
202
|
+
cz as StorageClassModel,
|
|
203
|
+
aS as StorageClassProvisionerField,
|
|
204
|
+
aT as StorageClassPvField,
|
|
205
|
+
bd as StorageClassPvGroup,
|
|
206
|
+
c1 as TIMESTAMP_LABEL,
|
|
207
|
+
bH as Tabs,
|
|
208
|
+
bB as Tags,
|
|
209
|
+
bC as TextTags,
|
|
205
210
|
a4 as Time,
|
|
206
211
|
U as ValueDisplay,
|
|
207
|
-
|
|
212
|
+
cm as WorkloadBaseModel,
|
|
208
213
|
a7 as WorkloadDropdown,
|
|
209
214
|
W as WorkloadImageColumnRenderer,
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
215
|
+
cl as WorkloadModel,
|
|
216
|
+
ag as WorkloadPodsTable,
|
|
217
|
+
al as WorkloadReplicas,
|
|
218
|
+
ak as WorkloadReplicasForm,
|
|
214
219
|
e as WorkloadRestartsColumnRenderer,
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
220
|
+
ca as WorkloadState,
|
|
221
|
+
ar as YamlEditorComponent,
|
|
222
|
+
bx as YamlForm,
|
|
218
223
|
J as addDefaultRenderToColumns,
|
|
219
224
|
Y as dnsSubDomainRules,
|
|
220
225
|
d as dovetailRefineI18n,
|
|
221
|
-
|
|
226
|
+
cE as modelPlugin,
|
|
222
227
|
a0 as namespaceRules,
|
|
223
|
-
|
|
228
|
+
cG as relationPlugin,
|
|
224
229
|
_ as rfc1035LabelRules,
|
|
225
230
|
Z as rfc1123LabelRules,
|
|
226
231
|
r as routerProvider,
|
|
@@ -230,8 +235,8 @@ export {
|
|
|
230
235
|
O as useEdit,
|
|
231
236
|
Q as useGlobalStore,
|
|
232
237
|
u as useNamespaceRefineFilter,
|
|
233
|
-
|
|
238
|
+
br as useNamespacesFilter,
|
|
234
239
|
T as useOpenForm,
|
|
235
|
-
|
|
240
|
+
by as useRefineForm,
|
|
236
241
|
a as useSchema
|
|
237
242
|
};
|