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