@dovetail-v2/refine 0.1.10 → 0.1.11-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.
Files changed (227) hide show
  1. package/dist/{MonacoYamlDiffEditor-effbc940.js → MonacoYamlDiffEditor-adaa32ac.js} +1 -1
  2. package/dist/{index-a2e0edc2.js → index-906cb61f.js} +510 -495
  3. package/dist/refine.js +199 -198
  4. package/dist/refine.umd.cjs +311 -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 +1 -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, cz, A, aV, aX, aE, c7, bj, a1, cl, c9, aP, T, C, i, cD, aH, bo, ac, cF, ai, ap, cO, aw, ca, c8, cR, aL, bv, w, aC, bC, cQ, cA, bF, D, b0, as, bI, ar, a0, cP, bh, aT, ad, bP, cC, cE, cj, aF, aj, s, q, cG, I, bs, aS, t, M, bd, bf, cb, cI, aK, br, aq, ax, ay, a8, az, aW, aD, bD, bG, a9, c$, ck, cu, bL, N, a2, e, aU, a6, bO, bx, bw, cH, b_, cW, g, cV, aI, bp, cd, L, b9, ba, bn, H, bb, J, bc, B, b4, cx, z, b3, G, b7, E, b5, F, b6, K, b$, b8, cw, aa, cZ, cY, P, bl, v, ae, ah, bZ, bi, cM, cL, a_, bt, c5, c4, p, aJ, bk, x, bu, a$, c_, y, cn, cB, bJ, bQ, bR, d1, aG, R, ag, an, am, bK, ak, cN, c1, al, cy, c6, bg, bz, at, h, Q, O, be, cq, ct, cp, co, cr, cs, cm, ce, ch, ci, cg, cf, cc, cv, bS, aM, bq, aA, m, bV, l, aY, cU, o, bW, aZ, n, aR, bm, k, cT, aO, aQ, c3, bB, bA, c2, aN, S, bE, cS, cX, b1, b2, by, bH, c0, bX, bY, ab, $, cK, af, W, cJ, ao, av, au, f, aB, bT, U, a3, d, d4, d3, d0, a7, d2, d5, a5, a4, r, a, c, X, V, Y, Z, u, bN, _, bU, b } from "./index-906cb61f.js";
2
2
  import "@cloudtower/eagle";
3
3
  import "@refinedev/core";
4
4
  import "react";
@@ -15,244 +15,245 @@ 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
+ cz 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
+ c7 as BASE_INIT_VALUE,
25
+ bj as BasicGroup,
26
+ a1 as Breadcrumb,
27
+ cl as CONFIG_MAP_INIT_VALUE,
28
+ c9 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
+ cD as ComponentContext,
34
+ aH as ConditionsField,
35
+ bo as ConditionsGroup,
36
+ ac as ConditionsTable,
37
+ cF as ConfigsContext,
38
+ ai as CreateButton,
39
+ ap as CronJobDropdown,
40
+ cO as CronJobModel,
41
+ aw as CronjobJobsTable,
42
+ ca as DAEMONSET_INIT_VALUE,
43
+ c8 as DEPLOYMENT_INIT_VALUE,
44
+ cR 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
+ cQ as DeploymentModel,
51
+ cA 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
+ cP as EventModel,
60
+ bh as EventsTab,
61
+ aT as EventsTableTabField,
62
+ ad as FormErrorAlert,
63
+ bP as FormModal,
64
+ cC as FormType,
65
+ cE as GlobalStoreContext,
66
+ cj as INGRESS_INIT_VALUE,
67
+ aF as ImageField,
68
+ aj as ImageNames,
68
69
  s as IngressClassColumnRenderer,
69
70
  q as IngressDefaultBackendColumnRenderer,
70
- cF as IngressModel,
71
+ cG as IngressModel,
71
72
  I as IngressRulesColumnRenderer,
72
- br as IngressRulesGroup,
73
- aR as IngressRulesTableTabField,
73
+ bs as IngressRulesGroup,
74
+ aS as IngressRulesTableTabField,
74
75
  t as IngressTlsColumnRenderer,
75
76
  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,
77
+ bd as IsDefaultSCField,
78
+ bf as IsSCAllowVolumeExpansionField,
79
+ cb as JOB_INIT_VALUE,
80
+ cI as JobModel,
81
+ aK as JobsField,
82
+ br as JobsGroup,
83
+ aq as K8sDropdown,
84
+ ax as KeyValue,
85
+ ay as KeyValueAnnotation,
86
+ a8 as KeyValueListWidget,
87
+ az as KeyValueSecret,
88
+ aW as LabelsField,
89
+ aD as Layout,
90
+ bD as ListPage,
91
+ bG as Menu,
92
+ a9 as MetadataForm,
93
+ c$ as ModelPlugin,
94
+ ck as NETWORK_POLICY_INIT_VALUE,
95
+ cu as NODE_INIT_VALUE,
96
+ bL as NS_STORE_KEY,
96
97
  N as NameColumnRenderer,
97
- a1 as NameInputWidget,
98
+ a2 as NameInputWidget,
98
99
  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,
100
+ aU as NamespaceField,
101
+ a6 as NamespaceSelectWidget,
102
+ bO as NamespacesFilter,
103
+ bx as NetworkPolicyEgressRulesGroup,
104
+ bw as NetworkPolicyIngressRulesGroup,
105
+ cH as NetworkPolicyModel,
106
+ b_ as NetworkPolicyRulesViewer,
107
+ cW as NodeModel,
107
108
  g as NodeNameColumnRenderer,
108
- cU as NodeRole,
109
- aH as NodeTaintsField,
110
- bo as NodeTaintsGroup,
111
- cc as POD_INIT_VALUE,
109
+ cV as NodeRole,
110
+ aI as NodeTaintsField,
111
+ bp as NodeTaintsGroup,
112
+ cd as POD_INIT_VALUE,
112
113
  L as PVAccessModeColumnRenderer,
113
- b8 as PVAccessModeField,
114
- b9 as PVCPodsField,
115
- bm as PVCPodsGroup,
114
+ b9 as PVAccessModeField,
115
+ ba as PVCPodsField,
116
+ bn as PVCPodsGroup,
116
117
  H as PVCRefColumnRenderer,
117
- ba as PVCRefField,
118
+ bb as PVCRefField,
118
119
  J as PVCSIRefColumnRenderer,
119
- bb as PVCSIRefField,
120
+ bc as PVCSIRefField,
120
121
  B as PVCStorageColumnRenderer,
121
- b3 as PVCStorageField,
122
- cw as PVC_INIT_VALUE,
122
+ b4 as PVCStorageField,
123
+ cx as PVC_INIT_VALUE,
123
124
  z as PVCapacityColumnRenderer,
124
- b2 as PVCapacityField,
125
+ b3 as PVCapacityField,
125
126
  G as PVPhaseColumnRenderer,
126
- b6 as PVPhaseField,
127
+ b7 as PVPhaseField,
127
128
  E as PVRefColumnRenderer,
128
- b4 as PVRefField,
129
+ b5 as PVRefField,
129
130
  F as PVStorageClassColumnRenderer,
130
- b5 as PVStorageClassField,
131
+ b6 as PVStorageClassField,
131
132
  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,
133
+ b$ as PVVolumeModeDisplay,
134
+ b8 as PVVolumeModeField,
135
+ cw as PV_INIT_VALUE,
136
+ aa as PageShow,
137
+ cZ as PersistentVolumeClaimModel,
138
+ cY as PersistentVolumeModel,
138
139
  P as PlainTextNameColumnRenderer,
139
- bk as PodContainersGroup,
140
+ bl as PodContainersGroup,
140
141
  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,
142
+ ae as PodContainersTable,
143
+ ah as PodDropdown,
144
+ bZ as PodLog,
145
+ bi as PodLogTab,
146
+ cM as PodMetricsModel,
147
+ cL as PodModel,
148
+ a_ as PodSelectorField,
149
+ bt as PodSelectorGroup,
150
+ c5 as PodShell,
151
+ c4 as PodShellModal,
151
152
  p as PodWorkloadColumnRenderer,
152
- aI as PodsField,
153
- bj as PodsGroup,
153
+ aJ as PodsField,
154
+ bk as PodsGroup,
154
155
  x as PortMappingColumnRenderer,
155
- bt as PortsGroup,
156
- a_ as PortsTableField,
157
- cZ as ProviderPlugins,
156
+ bu as PortsGroup,
157
+ a$ as PortsTableField,
158
+ c_ as ProviderPlugins,
158
159
  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,
160
+ cn as REDEPLOY_TIMESTAMP_KEY,
161
+ cB as RESOURCE_GROUP,
162
+ bJ as ReferenceLink,
163
+ bQ as RefineFormContent,
164
+ bR as RefineFormPage,
165
+ d1 as RelationPlugin,
166
+ aG as ReplicaField,
166
167
  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,
168
+ ag as ReplicasDropdown,
169
+ an as ResourceCRUD,
170
+ am as ResourceForm,
171
+ bK as ResourceLink,
172
+ ak as ResourceList,
173
+ cN as ResourceModel,
174
+ c1 as ResourceSelect,
175
+ al as ResourceShow,
176
+ cy as ResourceState,
177
+ c6 as ResourceTable,
178
+ bg as ResourceTableField,
179
+ bz as ResourceTableGroup,
180
+ at as ResourceUsageBar,
180
181
  h as RestartCountColumnRenderer,
181
182
  Q as SCAllowExpandColumnRenderer,
182
183
  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,
184
+ be as SCReclaimPolicyField,
185
+ cq as SECRET_BASIC_AUTH_INIT_VALUE,
186
+ ct as SECRET_CUSTOM_INIT_VALUE,
187
+ cp as SECRET_IMAGE_REPO_INIT_VALUE,
188
+ co as SECRET_OPAQUE_INIT_VALUE,
189
+ cr as SECRET_SSH_AUTH_INIT_VALUE,
190
+ cs as SECRET_TLS_INIT_VALUE,
191
+ cm as SERVER_INSTANCE_INIT_VALUE,
192
+ ce as SERVICE_CLUSTER_IP_INIT_VALUE,
193
+ ch as SERVICE_EXTERNAL_NAME_INIT_VALUE,
194
+ ci as SERVICE_HEADLESS_INIT_VALUE,
195
+ cg as SERVICE_LOAD_BALANCER_INIT_VALUE,
196
+ cf as SERVICE_NODE_PORT_INIT_VALUE,
197
+ cc as STATEFULSET_INIT_VALUE,
198
+ cv as STORAGE_CLASS_INIT_VALUE,
199
+ bS as SchemaStrategy,
200
+ aM as SecretDataField,
201
+ bq as SecretDataGroup,
202
+ aA as Separator,
202
203
  m as ServiceInClusterAccessColumnRenderer,
203
- bU as ServiceInClusterAccessComponent,
204
+ bV as ServiceInClusterAccessComponent,
204
205
  l as ServiceInClusterAccessTitle,
205
- aX as ServiceInnerClusterAccessField,
206
- cT as ServiceModel,
206
+ aY as ServiceInnerClusterAccessField,
207
+ cU as ServiceModel,
207
208
  o as ServiceOutClusterAccessColumnRenderer,
208
- bV as ServiceOutClusterAccessComponent,
209
- aY as ServiceOutClusterAccessField,
209
+ bW as ServiceOutClusterAccessComponent,
210
+ aZ as ServiceOutClusterAccessField,
210
211
  n as ServiceOutClusterAccessTitle,
211
- aQ as ServicePodsField,
212
- bl as ServicePodsGroup,
212
+ aR as ServicePodsField,
213
+ bm as ServicePodsGroup,
213
214
  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,
215
+ cT as ServiceTypeEnum,
216
+ aO as ServiceTypeField,
217
+ aQ as SessionAffinityField,
218
+ c3 as Shell,
219
+ bB as ShowContent,
220
+ bA as ShowGroupComponent,
221
+ c2 as SocketStatus,
222
+ aN as StartTimeField,
222
223
  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,
224
+ bE as StateTag,
225
+ cS as StatefulSetModel,
226
+ cX as StorageClassModel,
227
+ b1 as StorageClassProvisionerField,
228
+ b2 as StorageClassPvField,
229
+ by as StorageClassPvGroup,
230
+ bH as Table,
231
+ c0 as Tabs,
232
+ bX as Tags,
233
+ bY as TextTags,
234
+ ab as Time,
234
235
  $ as ValueDisplay,
235
- cJ as WorkloadBaseModel,
236
- ae as WorkloadDropdown,
236
+ cK as WorkloadBaseModel,
237
+ af as WorkloadDropdown,
237
238
  W as WorkloadImageColumnRenderer,
238
- cI as WorkloadModel,
239
- an as WorkloadPodsTable,
240
- au as WorkloadReplicas,
241
- at as WorkloadReplicasForm,
239
+ cJ as WorkloadModel,
240
+ ao as WorkloadPodsTable,
241
+ av as WorkloadReplicas,
242
+ au as WorkloadReplicasForm,
242
243
  f as WorkloadRestartsColumnRenderer,
243
- aA as YamlEditorComponent,
244
- bS as YamlForm,
244
+ aB as YamlEditorComponent,
245
+ bT as YamlForm,
245
246
  U as addDefaultRenderToColumns,
246
- a2 as dnsSubDomainRules,
247
+ a3 as dnsSubDomainRules,
247
248
  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,
249
+ d4 as generateSchemaTypeValue,
250
+ d3 as generateValueFromSchema,
251
+ d0 as modelPlugin,
252
+ a7 as namespaceRules,
253
+ d2 as relationPlugin,
254
+ d5 as resolveRef,
255
+ a5 as rfc1035LabelRules,
256
+ a4 as rfc1123LabelRules,
256
257
  r as routerProvider,
257
258
  a as useApiGroupSchema,
258
259
  c as useDeleteModal,
@@ -261,8 +262,8 @@ export {
261
262
  Y as useEdit,
262
263
  Z as useGlobalStore,
263
264
  u as useNamespaceRefineFilter,
264
- bM as useNamespacesFilter,
265
+ bN as useNamespacesFilter,
265
266
  _ as useOpenForm,
266
- bT as useRefineForm,
267
+ bU as useRefineForm,
267
268
  b as useSchema
268
269
  };