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