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