@dovetail-v2/refine 0.0.46-alpha.2 → 0.0.47

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