@dovetail-v2/refine 0.0.40 → 0.0.42

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 (204) hide show
  1. package/dist/{MonacoYamlDiffEditor-a2597bad.js → MonacoYamlDiffEditor-b007e47c.js} +1 -1
  2. package/dist/{index-d6242911.js → index-3ef1da30.js} +537 -488
  3. package/dist/refine.js +145 -144
  4. package/dist/refine.umd.cjs +393 -344
  5. package/dist/style.css +4 -5
  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.js +59 -0
  22. package/lib/src/components/EventsTable/index.js +1 -0
  23. package/lib/src/components/Form/KeyValueListWidget.js +56 -0
  24. package/lib/src/components/Form/MetadataForm.js +9 -0
  25. package/lib/src/components/Form/NameInputWidget.js +50 -0
  26. package/lib/src/components/Form/NamespaceSelectWidget.js +21 -0
  27. package/lib/src/components/Form/RefineFormContent.d.ts +2 -2
  28. package/lib/src/components/Form/index.js +4 -0
  29. package/lib/src/components/Form/type.d.ts +1 -5
  30. package/lib/src/components/Form/widget.js +1 -0
  31. package/lib/src/components/FormErrorAlert/index.js +8 -0
  32. package/lib/src/components/FormLayout/index.js +21 -0
  33. package/lib/src/components/FormModal/index.js +51 -0
  34. package/lib/src/components/ImageNames/index.js +14 -0
  35. package/lib/src/components/IngressRulesComponent/index.js +11 -0
  36. package/lib/src/components/IngressRulesTable/IngressRulesTable.js +51 -0
  37. package/lib/src/components/IngressRulesTable/index.js +1 -0
  38. package/lib/src/components/K8sDropdown/index.js +31 -0
  39. package/lib/src/components/KeyValue/KeyValue.js +27 -0
  40. package/lib/src/components/KeyValue/index.js +1 -0
  41. package/lib/src/components/KeyValueData/index.js +50 -0
  42. package/lib/src/components/Layout/index.js +39 -0
  43. package/lib/src/components/ListPage/index.js +25 -0
  44. package/lib/src/components/Menu/index.js +36 -0
  45. package/lib/src/components/NamespacesFilter/index.js +34 -0
  46. package/lib/src/components/NetworkPolicyRulesTable/NetworkPolicyRulesTable.d.ts +1 -2
  47. package/lib/src/components/NetworkPolicyRulesTable/NetworkPolicyRulesTable.js +77 -0
  48. package/lib/src/components/NetworkPolicyRulesTable/index.js +1 -0
  49. package/lib/src/components/PageShow/PageShow.js +11 -0
  50. package/lib/src/components/PageShow/index.js +1 -0
  51. package/lib/src/components/PodContainersTable/PodContainersTable.js +78 -0
  52. package/lib/src/components/PodContainersTable/index.js +1 -0
  53. package/lib/src/components/PodLog/index.js +136 -0
  54. package/lib/src/components/ReferenceLink/index.js +17 -0
  55. package/lib/src/components/RefineForm/RefineFormContent.d.ts +10 -0
  56. package/lib/src/components/RefineForm/RefineFormModal.d.ts +8 -0
  57. package/lib/src/components/RefineForm/RefineFormPage.d.ts +7 -0
  58. package/lib/src/components/RefineForm/index.d.ts +3 -0
  59. package/lib/src/components/RefineForm/type.d.ts +20 -0
  60. package/lib/src/components/RefineForm/useRefineForm.d.ts +10 -0
  61. package/lib/src/components/ResourceCRUD/ResourceCRUD.js +15 -0
  62. package/lib/src/components/ResourceCRUD/create/index.js +13 -0
  63. package/lib/src/components/ResourceCRUD/index.js +4 -0
  64. package/lib/src/components/ResourceCRUD/list/index.js +19 -0
  65. package/lib/src/components/ResourceCRUD/show/index.js +6 -0
  66. package/lib/src/components/ResourceLink/index.js +21 -0
  67. package/lib/src/components/ResourceUsageBar/index.js +81 -0
  68. package/lib/src/components/Separator/index.js +11 -0
  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.d.ts +1 -0
  78. package/lib/src/components/Table/index.js +69 -0
  79. package/lib/src/components/Tags/index.js +22 -0
  80. package/lib/src/components/Time/index.js +14 -0
  81. package/lib/src/components/WorkloadDropdown/index.js +24 -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.js +7 -0
  102. package/lib/src/hooks/useDeleteModal/index.js +1 -0
  103. package/lib/src/hooks/useDeleteModal/useDeleteManyModal.js +31 -0
  104. package/lib/src/hooks/useDeleteModal/useDeleteModal.d.ts +1 -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/useOpenForm.js +43 -0
  116. package/lib/src/hooks/useSchema.js +37 -0
  117. package/lib/src/hooks/useSubmitForm.js +42 -0
  118. package/lib/src/i18n.js +19 -0
  119. package/lib/src/index.js +13 -0
  120. package/lib/src/locales/en-US/dovetail.json +18 -0
  121. package/lib/src/locales/en-US/index.js +4 -0
  122. package/lib/src/locales/index.js +6 -0
  123. package/lib/src/locales/zh-CN/dovetail.json +91 -0
  124. package/lib/src/locales/zh-CN/index.js +4 -0
  125. package/lib/src/main.js +12 -0
  126. package/lib/src/models/cronjob-model.js +32 -0
  127. package/lib/src/models/daemonset-model.js +17 -0
  128. package/lib/src/models/deployment-model.js +17 -0
  129. package/lib/src/models/event-model.js +11 -0
  130. package/lib/src/models/index.js +14 -0
  131. package/lib/src/models/ingress-model.js +24 -0
  132. package/lib/src/models/job-model.js +56 -0
  133. package/lib/src/models/network-policy-model.js +10 -0
  134. package/lib/src/models/pod-metrics-model.js +34 -0
  135. package/lib/src/models/pod-model.js +78 -0
  136. package/lib/src/models/resource-model.js +34 -0
  137. package/lib/src/models/server-instance-model.d.ts +10 -0
  138. package/lib/src/models/service-model.js +17 -0
  139. package/lib/src/models/statefulset-model.js +17 -0
  140. package/lib/src/models/types/index.js +1 -0
  141. package/lib/src/models/types/metric.js +1 -0
  142. package/lib/src/models/workload-base-model.js +22 -0
  143. package/lib/src/models/workload-model.js +51 -0
  144. package/lib/src/pages/configmaps/index.js +15 -0
  145. package/lib/src/pages/cronjobs/create/index.js +6 -0
  146. package/lib/src/pages/cronjobs/index.js +3 -0
  147. package/lib/src/pages/cronjobs/list/index.js +42 -0
  148. package/lib/src/pages/cronjobs/show/index.js +16 -0
  149. package/lib/src/pages/daemonsets/create/index.js +6 -0
  150. package/lib/src/pages/daemonsets/index.js +3 -0
  151. package/lib/src/pages/daemonsets/list/index.js +32 -0
  152. package/lib/src/pages/daemonsets/show/index.js +16 -0
  153. package/lib/src/pages/deployments/create/index.js +7 -0
  154. package/lib/src/pages/deployments/index.js +3 -0
  155. package/lib/src/pages/deployments/list/index.js +26 -0
  156. package/lib/src/pages/deployments/show/index.js +16 -0
  157. package/lib/src/pages/ingresses/index.js +26 -0
  158. package/lib/src/pages/jobs/index.js +34 -0
  159. package/lib/src/pages/networkPolicies/index.js +67 -0
  160. package/lib/src/pages/pods/create/index.js +6 -0
  161. package/lib/src/pages/pods/index.js +3 -0
  162. package/lib/src/pages/pods/list/index.js +81 -0
  163. package/lib/src/pages/pods/show/index.js +54 -0
  164. package/lib/src/pages/secrets/index.js +15 -0
  165. package/lib/src/pages/services/index.js +26 -0
  166. package/lib/src/pages/statefulsets/create/index.js +6 -0
  167. package/lib/src/pages/statefulsets/index.js +3 -0
  168. package/lib/src/pages/statefulsets/list/index.js +26 -0
  169. package/lib/src/pages/statefulsets/show/index.js +16 -0
  170. package/lib/src/plugins/index.js +3 -0
  171. package/lib/src/plugins/model-plugin.js +46 -0
  172. package/lib/src/plugins/relation-plugin.js +81 -0
  173. package/lib/src/plugins/type.js +1 -0
  174. package/lib/src/providers/index.js +1 -0
  175. package/lib/src/providers/router-provider/index.js +100 -0
  176. package/lib/src/types/index.js +1 -0
  177. package/lib/src/types/resource.d.ts +4 -0
  178. package/lib/src/types/resource.js +12 -0
  179. package/lib/src/utils/addId.js +8 -0
  180. package/lib/src/utils/download.js +9 -0
  181. package/lib/src/utils/error.js +53 -0
  182. package/lib/src/utils/form.js +9 -0
  183. package/lib/src/utils/k8s.js +6 -0
  184. package/lib/src/utils/labels.js +15 -0
  185. package/lib/src/utils/match-selector.js +12 -0
  186. package/lib/src/utils/openapi.js +33 -0
  187. package/lib/src/utils/schema.js +117 -0
  188. package/lib/src/utils/selector.js +12 -0
  189. package/lib/src/utils/string.js +6 -0
  190. package/lib/src/utils/time.js +46 -0
  191. package/lib/src/utils/unit.js +69 -0
  192. package/lib/src/utils/yaml.js +44 -0
  193. package/lib/vite.config.js +60 -0
  194. package/package.json +1 -1
  195. package/lib/src/components/ModalContextProvider/index.d.ts +0 -12
  196. package/lib/src/hooks/useModal.d.ts +0 -0
  197. package/lib/src/model/cronjob-model.d.ts +0 -9
  198. package/lib/src/model/index.d.ts +0 -6
  199. package/lib/src/model/job-model.d.ts +0 -10
  200. package/lib/src/model/pod-metrics-model.d.ts +0 -7
  201. package/lib/src/model/pod-model.d.ts +0 -15
  202. package/lib/src/model/resource-model.d.ts +0 -17
  203. package/lib/src/model/workload-model.d.ts +0 -17
  204. package/lib/src/types/metric.d.ts +0 -25
@@ -25,301 +25,308 @@ function getDefaultExportFromCjs(x) {
25
25
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
26
26
  }
27
27
  var dayjs_min = { exports: {} };
28
- (function(module, exports) {
29
- !function(t2, e2) {
30
- module.exports = e2();
31
- }(commonjsGlobal, function() {
32
- var t2 = 1e3, e2 = 6e4, n2 = 36e5, r2 = "millisecond", i2 = "second", s2 = "minute", u = "hour", a2 = "day", o = "week", c2 = "month", f = "quarter", h = "year", d = "date", l = "Invalid Date", $ = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, M = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(t3) {
33
- var e3 = ["th", "st", "nd", "rd"], n3 = t3 % 100;
34
- return "[" + t3 + (e3[(n3 - 20) % 10] || e3[n3] || e3[0]) + "]";
35
- } }, m2 = function(t3, e3, n3) {
36
- var r3 = String(t3);
37
- return !r3 || r3.length >= e3 ? t3 : "" + Array(e3 + 1 - r3.length).join(n3) + t3;
38
- }, v = { s: m2, z: function(t3) {
39
- var e3 = -t3.utcOffset(), n3 = Math.abs(e3), r3 = Math.floor(n3 / 60), i3 = n3 % 60;
40
- return (e3 <= 0 ? "+" : "-") + m2(r3, 2, "0") + ":" + m2(i3, 2, "0");
41
- }, m: function t3(e3, n3) {
42
- if (e3.date() < n3.date())
43
- return -t3(n3, e3);
44
- var r3 = 12 * (n3.year() - e3.year()) + (n3.month() - e3.month()), i3 = e3.clone().add(r3, c2), s3 = n3 - i3 < 0, u2 = e3.clone().add(r3 + (s3 ? -1 : 1), c2);
45
- return +(-(r3 + (n3 - i3) / (s3 ? i3 - u2 : u2 - i3)) || 0);
46
- }, a: function(t3) {
47
- return t3 < 0 ? Math.ceil(t3) || 0 : Math.floor(t3);
48
- }, p: function(t3) {
49
- return { M: c2, y: h, w: o, d: a2, D: d, h: u, m: s2, s: i2, ms: r2, Q: f }[t3] || String(t3 || "").toLowerCase().replace(/s$/, "");
50
- }, u: function(t3) {
51
- return void 0 === t3;
52
- } }, g = "en", D = {};
53
- D[g] = M;
54
- var p = "$isDayjsObject", S = function(t3) {
55
- return t3 instanceof _ || !(!t3 || !t3[p]);
56
- }, w = function t3(e3, n3, r3) {
57
- var i3;
58
- if (!e3)
59
- return g;
60
- if ("string" == typeof e3) {
61
- var s3 = e3.toLowerCase();
62
- D[s3] && (i3 = s3), n3 && (D[s3] = n3, i3 = s3);
63
- var u2 = e3.split("-");
64
- if (!i3 && u2.length > 1)
65
- return t3(u2[0]);
66
- } else {
67
- var a3 = e3.name;
68
- D[a3] = e3, i3 = a3;
69
- }
70
- return !r3 && i3 && (g = i3), i3 || !r3 && g;
71
- }, O = function(t3, e3) {
72
- if (S(t3))
73
- return t3.clone();
74
- var n3 = "object" == typeof e3 ? e3 : {};
75
- return n3.date = t3, n3.args = arguments, new _(n3);
76
- }, b = v;
77
- b.l = w, b.i = S, b.w = function(t3, e3) {
78
- return O(t3, { locale: e3.$L, utc: e3.$u, x: e3.$x, $offset: e3.$offset });
79
- };
80
- var _ = function() {
81
- function M2(t3) {
82
- this.$L = w(t3.locale, null, true), this.parse(t3), this.$x = this.$x || t3.x || {}, this[p] = true;
83
- }
84
- var m3 = M2.prototype;
85
- return m3.parse = function(t3) {
86
- this.$d = function(t4) {
87
- var e3 = t4.date, n3 = t4.utc;
88
- if (null === e3)
89
- return /* @__PURE__ */ new Date(NaN);
90
- if (b.u(e3))
91
- return /* @__PURE__ */ new Date();
92
- if (e3 instanceof Date)
93
- return new Date(e3);
94
- if ("string" == typeof e3 && !/Z$/i.test(e3)) {
95
- var r3 = e3.match($);
96
- if (r3) {
97
- var i3 = r3[2] - 1 || 0, s3 = (r3[7] || "0").substring(0, 3);
98
- return n3 ? new Date(Date.UTC(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3)) : new Date(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3);
99
- }
100
- }
101
- return new Date(e3);
102
- }(t3), this.init();
103
- }, m3.init = function() {
104
- var t3 = this.$d;
105
- this.$y = t3.getFullYear(), this.$M = t3.getMonth(), this.$D = t3.getDate(), this.$W = t3.getDay(), this.$H = t3.getHours(), this.$m = t3.getMinutes(), this.$s = t3.getSeconds(), this.$ms = t3.getMilliseconds();
106
- }, m3.$utils = function() {
107
- return b;
108
- }, m3.isValid = function() {
109
- return !(this.$d.toString() === l);
110
- }, m3.isSame = function(t3, e3) {
111
- var n3 = O(t3);
112
- return this.startOf(e3) <= n3 && n3 <= this.endOf(e3);
113
- }, m3.isAfter = function(t3, e3) {
114
- return O(t3) < this.startOf(e3);
115
- }, m3.isBefore = function(t3, e3) {
116
- return this.endOf(e3) < O(t3);
117
- }, m3.$g = function(t3, e3, n3) {
118
- return b.u(t3) ? this[e3] : this.set(n3, t3);
119
- }, m3.unix = function() {
120
- return Math.floor(this.valueOf() / 1e3);
121
- }, m3.valueOf = function() {
122
- return this.$d.getTime();
123
- }, m3.startOf = function(t3, e3) {
124
- var n3 = this, r3 = !!b.u(e3) || e3, f2 = b.p(t3), l2 = function(t4, e4) {
125
- var i3 = b.w(n3.$u ? Date.UTC(n3.$y, e4, t4) : new Date(n3.$y, e4, t4), n3);
126
- return r3 ? i3 : i3.endOf(a2);
127
- }, $2 = function(t4, e4) {
128
- return b.w(n3.toDate()[t4].apply(n3.toDate("s"), (r3 ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(e4)), n3);
129
- }, y2 = this.$W, M3 = this.$M, m4 = this.$D, v2 = "set" + (this.$u ? "UTC" : "");
130
- switch (f2) {
131
- case h:
132
- return r3 ? l2(1, 0) : l2(31, 11);
133
- case c2:
134
- return r3 ? l2(1, M3) : l2(0, M3 + 1);
135
- case o:
136
- var g2 = this.$locale().weekStart || 0, D2 = (y2 < g2 ? y2 + 7 : y2) - g2;
137
- return l2(r3 ? m4 - D2 : m4 + (6 - D2), M3);
138
- case a2:
139
- case d:
140
- return $2(v2 + "Hours", 0);
141
- case u:
142
- return $2(v2 + "Minutes", 1);
143
- case s2:
144
- return $2(v2 + "Seconds", 2);
145
- case i2:
146
- return $2(v2 + "Milliseconds", 3);
147
- default:
148
- return this.clone();
149
- }
150
- }, m3.endOf = function(t3) {
151
- return this.startOf(t3, false);
152
- }, m3.$set = function(t3, e3) {
153
- var n3, o2 = b.p(t3), f2 = "set" + (this.$u ? "UTC" : ""), l2 = (n3 = {}, n3[a2] = f2 + "Date", n3[d] = f2 + "Date", n3[c2] = f2 + "Month", n3[h] = f2 + "FullYear", n3[u] = f2 + "Hours", n3[s2] = f2 + "Minutes", n3[i2] = f2 + "Seconds", n3[r2] = f2 + "Milliseconds", n3)[o2], $2 = o2 === a2 ? this.$D + (e3 - this.$W) : e3;
154
- if (o2 === c2 || o2 === h) {
155
- var y2 = this.clone().set(d, 1);
156
- y2.$d[l2]($2), y2.init(), this.$d = y2.set(d, Math.min(this.$D, y2.daysInMonth())).$d;
157
- } else
158
- l2 && this.$d[l2]($2);
159
- return this.init(), this;
160
- }, m3.set = function(t3, e3) {
161
- return this.clone().$set(t3, e3);
162
- }, m3.get = function(t3) {
163
- return this[b.p(t3)]();
164
- }, m3.add = function(r3, f2) {
165
- var d2, l2 = this;
166
- r3 = Number(r3);
167
- var $2 = b.p(f2), y2 = function(t3) {
168
- var e3 = O(l2);
169
- return b.w(e3.date(e3.date() + Math.round(t3 * r3)), l2);
170
- };
171
- if ($2 === c2)
172
- return this.set(c2, this.$M + r3);
173
- if ($2 === h)
174
- return this.set(h, this.$y + r3);
175
- if ($2 === a2)
176
- return y2(1);
177
- if ($2 === o)
178
- return y2(7);
179
- var M3 = (d2 = {}, d2[s2] = e2, d2[u] = n2, d2[i2] = t2, d2)[$2] || 1, m4 = this.$d.getTime() + r3 * M3;
180
- return b.w(m4, this);
181
- }, m3.subtract = function(t3, e3) {
182
- return this.add(-1 * t3, e3);
183
- }, m3.format = function(t3) {
184
- var e3 = this, n3 = this.$locale();
185
- if (!this.isValid())
186
- return n3.invalidDate || l;
187
- var r3 = t3 || "YYYY-MM-DDTHH:mm:ssZ", i3 = b.z(this), s3 = this.$H, u2 = this.$m, a3 = this.$M, o2 = n3.weekdays, c3 = n3.months, f2 = n3.meridiem, h2 = function(t4, n4, i4, s4) {
188
- return t4 && (t4[n4] || t4(e3, r3)) || i4[n4].slice(0, s4);
189
- }, d2 = function(t4) {
190
- return b.s(s3 % 12 || 12, t4, "0");
191
- }, $2 = f2 || function(t4, e4, n4) {
192
- var r4 = t4 < 12 ? "AM" : "PM";
193
- return n4 ? r4.toLowerCase() : r4;
194
- };
195
- return r3.replace(y, function(t4, r4) {
196
- return r4 || function(t5) {
197
- switch (t5) {
198
- case "YY":
199
- return String(e3.$y).slice(-2);
200
- case "YYYY":
201
- return b.s(e3.$y, 4, "0");
202
- case "M":
203
- return a3 + 1;
204
- case "MM":
205
- return b.s(a3 + 1, 2, "0");
206
- case "MMM":
207
- return h2(n3.monthsShort, a3, c3, 3);
208
- case "MMMM":
209
- return h2(c3, a3);
210
- case "D":
211
- return e3.$D;
212
- case "DD":
213
- return b.s(e3.$D, 2, "0");
214
- case "d":
215
- return String(e3.$W);
216
- case "dd":
217
- return h2(n3.weekdaysMin, e3.$W, o2, 2);
218
- case "ddd":
219
- return h2(n3.weekdaysShort, e3.$W, o2, 3);
220
- case "dddd":
221
- return o2[e3.$W];
222
- case "H":
223
- return String(s3);
224
- case "HH":
225
- return b.s(s3, 2, "0");
226
- case "h":
227
- return d2(1);
228
- case "hh":
229
- return d2(2);
230
- case "a":
231
- return $2(s3, u2, true);
232
- case "A":
233
- return $2(s3, u2, false);
234
- case "m":
235
- return String(u2);
236
- case "mm":
237
- return b.s(u2, 2, "0");
238
- case "s":
239
- return String(e3.$s);
240
- case "ss":
241
- return b.s(e3.$s, 2, "0");
242
- case "SSS":
243
- return b.s(e3.$ms, 3, "0");
244
- case "Z":
245
- return i3;
28
+ var hasRequiredDayjs_min;
29
+ function requireDayjs_min() {
30
+ if (hasRequiredDayjs_min)
31
+ return dayjs_min.exports;
32
+ hasRequiredDayjs_min = 1;
33
+ (function(module, exports) {
34
+ !function(t2, e2) {
35
+ module.exports = e2();
36
+ }(commonjsGlobal, function() {
37
+ var t2 = 1e3, e2 = 6e4, n2 = 36e5, r2 = "millisecond", i2 = "second", s2 = "minute", u = "hour", a2 = "day", o = "week", c2 = "month", f = "quarter", h = "year", d = "date", l = "Invalid Date", $ = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, M = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(t3) {
38
+ var e3 = ["th", "st", "nd", "rd"], n3 = t3 % 100;
39
+ return "[" + t3 + (e3[(n3 - 20) % 10] || e3[n3] || e3[0]) + "]";
40
+ } }, m2 = function(t3, e3, n3) {
41
+ var r3 = String(t3);
42
+ return !r3 || r3.length >= e3 ? t3 : "" + Array(e3 + 1 - r3.length).join(n3) + t3;
43
+ }, v = { s: m2, z: function(t3) {
44
+ var e3 = -t3.utcOffset(), n3 = Math.abs(e3), r3 = Math.floor(n3 / 60), i3 = n3 % 60;
45
+ return (e3 <= 0 ? "+" : "-") + m2(r3, 2, "0") + ":" + m2(i3, 2, "0");
46
+ }, m: function t3(e3, n3) {
47
+ if (e3.date() < n3.date())
48
+ return -t3(n3, e3);
49
+ var r3 = 12 * (n3.year() - e3.year()) + (n3.month() - e3.month()), i3 = e3.clone().add(r3, c2), s3 = n3 - i3 < 0, u2 = e3.clone().add(r3 + (s3 ? -1 : 1), c2);
50
+ return +(-(r3 + (n3 - i3) / (s3 ? i3 - u2 : u2 - i3)) || 0);
51
+ }, a: function(t3) {
52
+ return t3 < 0 ? Math.ceil(t3) || 0 : Math.floor(t3);
53
+ }, p: function(t3) {
54
+ return { M: c2, y: h, w: o, d: a2, D: d, h: u, m: s2, s: i2, ms: r2, Q: f }[t3] || String(t3 || "").toLowerCase().replace(/s$/, "");
55
+ }, u: function(t3) {
56
+ return void 0 === t3;
57
+ } }, g = "en", D = {};
58
+ D[g] = M;
59
+ var p = "$isDayjsObject", S = function(t3) {
60
+ return t3 instanceof _ || !(!t3 || !t3[p]);
61
+ }, w = function t3(e3, n3, r3) {
62
+ var i3;
63
+ if (!e3)
64
+ return g;
65
+ if ("string" == typeof e3) {
66
+ var s3 = e3.toLowerCase();
67
+ D[s3] && (i3 = s3), n3 && (D[s3] = n3, i3 = s3);
68
+ var u2 = e3.split("-");
69
+ if (!i3 && u2.length > 1)
70
+ return t3(u2[0]);
71
+ } else {
72
+ var a3 = e3.name;
73
+ D[a3] = e3, i3 = a3;
74
+ }
75
+ return !r3 && i3 && (g = i3), i3 || !r3 && g;
76
+ }, O = function(t3, e3) {
77
+ if (S(t3))
78
+ return t3.clone();
79
+ var n3 = "object" == typeof e3 ? e3 : {};
80
+ return n3.date = t3, n3.args = arguments, new _(n3);
81
+ }, b = v;
82
+ b.l = w, b.i = S, b.w = function(t3, e3) {
83
+ return O(t3, { locale: e3.$L, utc: e3.$u, x: e3.$x, $offset: e3.$offset });
84
+ };
85
+ var _ = function() {
86
+ function M2(t3) {
87
+ this.$L = w(t3.locale, null, true), this.parse(t3), this.$x = this.$x || t3.x || {}, this[p] = true;
88
+ }
89
+ var m3 = M2.prototype;
90
+ return m3.parse = function(t3) {
91
+ this.$d = function(t4) {
92
+ var e3 = t4.date, n3 = t4.utc;
93
+ if (null === e3)
94
+ return /* @__PURE__ */ new Date(NaN);
95
+ if (b.u(e3))
96
+ return /* @__PURE__ */ new Date();
97
+ if (e3 instanceof Date)
98
+ return new Date(e3);
99
+ if ("string" == typeof e3 && !/Z$/i.test(e3)) {
100
+ var r3 = e3.match($);
101
+ if (r3) {
102
+ var i3 = r3[2] - 1 || 0, s3 = (r3[7] || "0").substring(0, 3);
103
+ return n3 ? new Date(Date.UTC(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3)) : new Date(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3);
104
+ }
246
105
  }
247
- return null;
248
- }(t4) || i3.replace(":", "");
249
- });
250
- }, m3.utcOffset = function() {
251
- return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
252
- }, m3.diff = function(r3, d2, l2) {
253
- var $2, y2 = this, M3 = b.p(d2), m4 = O(r3), v2 = (m4.utcOffset() - this.utcOffset()) * e2, g2 = this - m4, D2 = function() {
254
- return b.m(y2, m4);
106
+ return new Date(e3);
107
+ }(t3), this.init();
108
+ }, m3.init = function() {
109
+ var t3 = this.$d;
110
+ this.$y = t3.getFullYear(), this.$M = t3.getMonth(), this.$D = t3.getDate(), this.$W = t3.getDay(), this.$H = t3.getHours(), this.$m = t3.getMinutes(), this.$s = t3.getSeconds(), this.$ms = t3.getMilliseconds();
111
+ }, m3.$utils = function() {
112
+ return b;
113
+ }, m3.isValid = function() {
114
+ return !(this.$d.toString() === l);
115
+ }, m3.isSame = function(t3, e3) {
116
+ var n3 = O(t3);
117
+ return this.startOf(e3) <= n3 && n3 <= this.endOf(e3);
118
+ }, m3.isAfter = function(t3, e3) {
119
+ return O(t3) < this.startOf(e3);
120
+ }, m3.isBefore = function(t3, e3) {
121
+ return this.endOf(e3) < O(t3);
122
+ }, m3.$g = function(t3, e3, n3) {
123
+ return b.u(t3) ? this[e3] : this.set(n3, t3);
124
+ }, m3.unix = function() {
125
+ return Math.floor(this.valueOf() / 1e3);
126
+ }, m3.valueOf = function() {
127
+ return this.$d.getTime();
128
+ }, m3.startOf = function(t3, e3) {
129
+ var n3 = this, r3 = !!b.u(e3) || e3, f2 = b.p(t3), l2 = function(t4, e4) {
130
+ var i3 = b.w(n3.$u ? Date.UTC(n3.$y, e4, t4) : new Date(n3.$y, e4, t4), n3);
131
+ return r3 ? i3 : i3.endOf(a2);
132
+ }, $2 = function(t4, e4) {
133
+ return b.w(n3.toDate()[t4].apply(n3.toDate("s"), (r3 ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(e4)), n3);
134
+ }, y2 = this.$W, M3 = this.$M, m4 = this.$D, v2 = "set" + (this.$u ? "UTC" : "");
135
+ switch (f2) {
136
+ case h:
137
+ return r3 ? l2(1, 0) : l2(31, 11);
138
+ case c2:
139
+ return r3 ? l2(1, M3) : l2(0, M3 + 1);
140
+ case o:
141
+ var g2 = this.$locale().weekStart || 0, D2 = (y2 < g2 ? y2 + 7 : y2) - g2;
142
+ return l2(r3 ? m4 - D2 : m4 + (6 - D2), M3);
143
+ case a2:
144
+ case d:
145
+ return $2(v2 + "Hours", 0);
146
+ case u:
147
+ return $2(v2 + "Minutes", 1);
148
+ case s2:
149
+ return $2(v2 + "Seconds", 2);
150
+ case i2:
151
+ return $2(v2 + "Milliseconds", 3);
152
+ default:
153
+ return this.clone();
154
+ }
155
+ }, m3.endOf = function(t3) {
156
+ return this.startOf(t3, false);
157
+ }, m3.$set = function(t3, e3) {
158
+ var n3, o2 = b.p(t3), f2 = "set" + (this.$u ? "UTC" : ""), l2 = (n3 = {}, n3[a2] = f2 + "Date", n3[d] = f2 + "Date", n3[c2] = f2 + "Month", n3[h] = f2 + "FullYear", n3[u] = f2 + "Hours", n3[s2] = f2 + "Minutes", n3[i2] = f2 + "Seconds", n3[r2] = f2 + "Milliseconds", n3)[o2], $2 = o2 === a2 ? this.$D + (e3 - this.$W) : e3;
159
+ if (o2 === c2 || o2 === h) {
160
+ var y2 = this.clone().set(d, 1);
161
+ y2.$d[l2]($2), y2.init(), this.$d = y2.set(d, Math.min(this.$D, y2.daysInMonth())).$d;
162
+ } else
163
+ l2 && this.$d[l2]($2);
164
+ return this.init(), this;
165
+ }, m3.set = function(t3, e3) {
166
+ return this.clone().$set(t3, e3);
167
+ }, m3.get = function(t3) {
168
+ return this[b.p(t3)]();
169
+ }, m3.add = function(r3, f2) {
170
+ var d2, l2 = this;
171
+ r3 = Number(r3);
172
+ var $2 = b.p(f2), y2 = function(t3) {
173
+ var e3 = O(l2);
174
+ return b.w(e3.date(e3.date() + Math.round(t3 * r3)), l2);
175
+ };
176
+ if ($2 === c2)
177
+ return this.set(c2, this.$M + r3);
178
+ if ($2 === h)
179
+ return this.set(h, this.$y + r3);
180
+ if ($2 === a2)
181
+ return y2(1);
182
+ if ($2 === o)
183
+ return y2(7);
184
+ var M3 = (d2 = {}, d2[s2] = e2, d2[u] = n2, d2[i2] = t2, d2)[$2] || 1, m4 = this.$d.getTime() + r3 * M3;
185
+ return b.w(m4, this);
186
+ }, m3.subtract = function(t3, e3) {
187
+ return this.add(-1 * t3, e3);
188
+ }, m3.format = function(t3) {
189
+ var e3 = this, n3 = this.$locale();
190
+ if (!this.isValid())
191
+ return n3.invalidDate || l;
192
+ var r3 = t3 || "YYYY-MM-DDTHH:mm:ssZ", i3 = b.z(this), s3 = this.$H, u2 = this.$m, a3 = this.$M, o2 = n3.weekdays, c3 = n3.months, f2 = n3.meridiem, h2 = function(t4, n4, i4, s4) {
193
+ return t4 && (t4[n4] || t4(e3, r3)) || i4[n4].slice(0, s4);
194
+ }, d2 = function(t4) {
195
+ return b.s(s3 % 12 || 12, t4, "0");
196
+ }, $2 = f2 || function(t4, e4, n4) {
197
+ var r4 = t4 < 12 ? "AM" : "PM";
198
+ return n4 ? r4.toLowerCase() : r4;
199
+ };
200
+ return r3.replace(y, function(t4, r4) {
201
+ return r4 || function(t5) {
202
+ switch (t5) {
203
+ case "YY":
204
+ return String(e3.$y).slice(-2);
205
+ case "YYYY":
206
+ return b.s(e3.$y, 4, "0");
207
+ case "M":
208
+ return a3 + 1;
209
+ case "MM":
210
+ return b.s(a3 + 1, 2, "0");
211
+ case "MMM":
212
+ return h2(n3.monthsShort, a3, c3, 3);
213
+ case "MMMM":
214
+ return h2(c3, a3);
215
+ case "D":
216
+ return e3.$D;
217
+ case "DD":
218
+ return b.s(e3.$D, 2, "0");
219
+ case "d":
220
+ return String(e3.$W);
221
+ case "dd":
222
+ return h2(n3.weekdaysMin, e3.$W, o2, 2);
223
+ case "ddd":
224
+ return h2(n3.weekdaysShort, e3.$W, o2, 3);
225
+ case "dddd":
226
+ return o2[e3.$W];
227
+ case "H":
228
+ return String(s3);
229
+ case "HH":
230
+ return b.s(s3, 2, "0");
231
+ case "h":
232
+ return d2(1);
233
+ case "hh":
234
+ return d2(2);
235
+ case "a":
236
+ return $2(s3, u2, true);
237
+ case "A":
238
+ return $2(s3, u2, false);
239
+ case "m":
240
+ return String(u2);
241
+ case "mm":
242
+ return b.s(u2, 2, "0");
243
+ case "s":
244
+ return String(e3.$s);
245
+ case "ss":
246
+ return b.s(e3.$s, 2, "0");
247
+ case "SSS":
248
+ return b.s(e3.$ms, 3, "0");
249
+ case "Z":
250
+ return i3;
251
+ }
252
+ return null;
253
+ }(t4) || i3.replace(":", "");
254
+ });
255
+ }, m3.utcOffset = function() {
256
+ return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
257
+ }, m3.diff = function(r3, d2, l2) {
258
+ var $2, y2 = this, M3 = b.p(d2), m4 = O(r3), v2 = (m4.utcOffset() - this.utcOffset()) * e2, g2 = this - m4, D2 = function() {
259
+ return b.m(y2, m4);
260
+ };
261
+ switch (M3) {
262
+ case h:
263
+ $2 = D2() / 12;
264
+ break;
265
+ case c2:
266
+ $2 = D2();
267
+ break;
268
+ case f:
269
+ $2 = D2() / 3;
270
+ break;
271
+ case o:
272
+ $2 = (g2 - v2) / 6048e5;
273
+ break;
274
+ case a2:
275
+ $2 = (g2 - v2) / 864e5;
276
+ break;
277
+ case u:
278
+ $2 = g2 / n2;
279
+ break;
280
+ case s2:
281
+ $2 = g2 / e2;
282
+ break;
283
+ case i2:
284
+ $2 = g2 / t2;
285
+ break;
286
+ default:
287
+ $2 = g2;
288
+ }
289
+ return l2 ? $2 : b.a($2);
290
+ }, m3.daysInMonth = function() {
291
+ return this.endOf(c2).$D;
292
+ }, m3.$locale = function() {
293
+ return D[this.$L];
294
+ }, m3.locale = function(t3, e3) {
295
+ if (!t3)
296
+ return this.$L;
297
+ var n3 = this.clone(), r3 = w(t3, e3, true);
298
+ return r3 && (n3.$L = r3), n3;
299
+ }, m3.clone = function() {
300
+ return b.w(this.$d, this);
301
+ }, m3.toDate = function() {
302
+ return new Date(this.valueOf());
303
+ }, m3.toJSON = function() {
304
+ return this.isValid() ? this.toISOString() : null;
305
+ }, m3.toISOString = function() {
306
+ return this.$d.toISOString();
307
+ }, m3.toString = function() {
308
+ return this.$d.toUTCString();
309
+ }, M2;
310
+ }(), k = _.prototype;
311
+ return O.prototype = k, [["$ms", r2], ["$s", i2], ["$m", s2], ["$H", u], ["$W", a2], ["$M", c2], ["$y", h], ["$D", d]].forEach(function(t3) {
312
+ k[t3[1]] = function(e3) {
313
+ return this.$g(e3, t3[0], t3[1]);
255
314
  };
256
- switch (M3) {
257
- case h:
258
- $2 = D2() / 12;
259
- break;
260
- case c2:
261
- $2 = D2();
262
- break;
263
- case f:
264
- $2 = D2() / 3;
265
- break;
266
- case o:
267
- $2 = (g2 - v2) / 6048e5;
268
- break;
269
- case a2:
270
- $2 = (g2 - v2) / 864e5;
271
- break;
272
- case u:
273
- $2 = g2 / n2;
274
- break;
275
- case s2:
276
- $2 = g2 / e2;
277
- break;
278
- case i2:
279
- $2 = g2 / t2;
280
- break;
281
- default:
282
- $2 = g2;
283
- }
284
- return l2 ? $2 : b.a($2);
285
- }, m3.daysInMonth = function() {
286
- return this.endOf(c2).$D;
287
- }, m3.$locale = function() {
288
- return D[this.$L];
289
- }, m3.locale = function(t3, e3) {
290
- if (!t3)
291
- return this.$L;
292
- var n3 = this.clone(), r3 = w(t3, e3, true);
293
- return r3 && (n3.$L = r3), n3;
294
- }, m3.clone = function() {
295
- return b.w(this.$d, this);
296
- }, m3.toDate = function() {
297
- return new Date(this.valueOf());
298
- }, m3.toJSON = function() {
299
- return this.isValid() ? this.toISOString() : null;
300
- }, m3.toISOString = function() {
301
- return this.$d.toISOString();
302
- }, m3.toString = function() {
303
- return this.$d.toUTCString();
304
- }, M2;
305
- }(), k = _.prototype;
306
- return O.prototype = k, [["$ms", r2], ["$s", i2], ["$m", s2], ["$H", u], ["$W", a2], ["$M", c2], ["$y", h], ["$D", d]].forEach(function(t3) {
307
- k[t3[1]] = function(e3) {
308
- return this.$g(e3, t3[0], t3[1]);
309
- };
310
- }), O.extend = function(t3, e3) {
311
- return t3.$i || (t3(e3, _, O), t3.$i = true), O;
312
- }, O.locale = w, O.isDayjs = S, O.unix = function(t3) {
313
- return O(1e3 * t3);
314
- }, O.en = D[g], O.Ls = D, O.p = {}, O;
315
- });
316
- })(dayjs_min);
317
- var dayjs_minExports = dayjs_min.exports;
315
+ }), O.extend = function(t3, e3) {
316
+ return t3.$i || (t3(e3, _, O), t3.$i = true), O;
317
+ }, O.locale = w, O.isDayjs = S, O.unix = function(t3) {
318
+ return O(1e3 * t3);
319
+ }, O.en = D[g], O.Ls = D, O.p = {}, O;
320
+ });
321
+ })(dayjs_min);
322
+ return dayjs_min.exports;
323
+ }
324
+ var dayjs_minExports = requireDayjs_min();
318
325
  const dayjs = /* @__PURE__ */ getDefaultExportFromCjs(dayjs_minExports);
319
326
  var zh = { exports: {} };
320
327
  (function(module, exports) {
321
328
  !function(e2, _) {
322
- module.exports = _(dayjs_minExports);
329
+ module.exports = _(requireDayjs_min());
323
330
  }(commonjsGlobal, function(e2) {
324
331
  function _(e3) {
325
332
  return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
@@ -8027,7 +8034,7 @@ var cx = function cx2() {
8027
8034
  };
8028
8035
  var cx_default = cx;
8029
8036
  const ConfigsContext = createContext({});
8030
- const useDeleteModal_1kqb6q3 = "";
8037
+ const useDeleteModal_v7eb93 = "";
8031
8038
  const TextStyle = "t1vq0ett";
8032
8039
  const TipStyle = "t139onst";
8033
8040
  const NameStyle$1 = "n18lzor8";
@@ -8680,6 +8687,7 @@ const PodSelectorTable = ({ podSelectors = {} }) => {
8680
8687
  const component = useContext(ComponentContext);
8681
8688
  const Table$1 = component.Table || Table;
8682
8689
  const [currentPage, setCurrentPage] = useState(1);
8690
+ const currentSize = 10;
8683
8691
  const datas = Object.keys(podSelectors).map((key2) => ({
8684
8692
  id: key2,
8685
8693
  key: key2,
@@ -8716,11 +8724,12 @@ const PodSelectorTable = ({ podSelectors = {} }) => {
8716
8724
  {
8717
8725
  tableKey: "podSelector",
8718
8726
  loading: false,
8719
- data: datas,
8727
+ data: datas.slice((currentPage - 1) * currentSize, currentPage * currentSize),
8728
+ total: datas.length,
8720
8729
  columns: addDefaultRenderToColumns(columns),
8721
8730
  rowKey: "key",
8722
8731
  empty: t2("dovetail.empty"),
8723
- currentSize: 10,
8732
+ currentSize,
8724
8733
  currentPage,
8725
8734
  onPageChange: setCurrentPage,
8726
8735
  showMenuColumn: false
@@ -8732,6 +8741,7 @@ const PortsTable = ({ service }) => {
8732
8741
  const component = useContext(ComponentContext);
8733
8742
  const Table$1 = component.Table || Table;
8734
8743
  const [currentPage, setCurrentPage] = useState(1);
8744
+ const currentSize = 10;
8735
8745
  const columns = [
8736
8746
  {
8737
8747
  key: "name",
@@ -8788,11 +8798,12 @@ const PortsTable = ({ service }) => {
8788
8798
  {
8789
8799
  tableKey: "ports",
8790
8800
  loading: false,
8791
- data: ports,
8801
+ data: ports.slice((currentPage - 1) * currentSize, currentPage * currentSize),
8802
+ total: ports.length,
8792
8803
  columns: addDefaultRenderToColumns(columns),
8793
8804
  rowKey: "name",
8794
8805
  empty: t2("dovetail.empty"),
8795
- currentSize: 10,
8806
+ currentSize,
8796
8807
  currentPage,
8797
8808
  onPageChange: setCurrentPage,
8798
8809
  showMenuColumn: false
@@ -10111,6 +10122,7 @@ const ConditionsTable = ({ conditions = [] }) => {
10111
10122
  const { t: t2 } = useTranslation();
10112
10123
  const component = useContext(ComponentContext);
10113
10124
  const Table$1 = component.Table || Table;
10125
+ const currentSize = 10;
10114
10126
  const conditionsWithId = addId(conditions, "type");
10115
10127
  const columns = [
10116
10128
  {
@@ -10176,11 +10188,12 @@ const ConditionsTable = ({ conditions = [] }) => {
10176
10188
  {
10177
10189
  tableKey: "condition",
10178
10190
  loading: false,
10179
- data: conditionsWithId,
10191
+ data: conditionsWithId.slice((currentPage - 1) * currentSize, currentPage * currentSize),
10192
+ total: conditionsWithId.length,
10180
10193
  columns: addDefaultRenderToColumns(columns),
10181
10194
  rowKey: "type",
10182
10195
  empty: t2("dovetail.empty"),
10183
- currentSize: 10,
10196
+ currentSize,
10184
10197
  currentPage,
10185
10198
  onPageChange: setCurrentPage,
10186
10199
  showMenuColumn: false
@@ -10386,6 +10399,7 @@ const CronjobJobsTable = ({
10386
10399
  const [currentPage, setCurrentPage] = useState(1);
10387
10400
  const component = useContext(ComponentContext);
10388
10401
  const Table$1 = component.Table || Table;
10402
+ const currentSize = 10;
10389
10403
  const {
10390
10404
  data: data2,
10391
10405
  isLoading
@@ -10422,13 +10436,14 @@ const CronjobJobsTable = ({
10422
10436
  }), /* @__PURE__ */ jsxRuntimeExports.jsx(Table$1, {
10423
10437
  tableKey: "cronjobs",
10424
10438
  loading: isLoading,
10425
- data: dataSource || [],
10439
+ data: (dataSource || []).slice((currentPage - 1) * currentSize, currentPage * currentSize),
10440
+ total: (dataSource == null ? void 0 : dataSource.length) || 0,
10426
10441
  columns,
10427
10442
  rowKey: "id",
10428
10443
  error: false,
10429
10444
  currentPage,
10430
10445
  onPageChange: (p) => setCurrentPage(p),
10431
- currentSize: 10,
10446
+ currentSize,
10432
10447
  refetch: () => null,
10433
10448
  showMenuColumn: false
10434
10449
  })]
@@ -10437,6 +10452,7 @@ const CronjobJobsTable = ({
10437
10452
  const EventsTable = ({}) => {
10438
10453
  const { i18n: i18n2 } = useTranslation();
10439
10454
  const [currentPage, setCurrentPage] = useState(1);
10455
+ const currentSize = 10;
10440
10456
  const { data: data2, isLoading } = useList({
10441
10457
  resource: "events",
10442
10458
  meta: { resourceBasePath: "/apis/events.k8s.io/v1", kind: "Event" },
@@ -10503,13 +10519,14 @@ const EventsTable = ({}) => {
10503
10519
  {
10504
10520
  tableKey: "events",
10505
10521
  loading: isLoading,
10506
- data: dataSource || [],
10522
+ data: (dataSource || []).slice((currentPage - 1) * currentSize, currentPage * currentSize),
10523
+ total: (dataSource == null ? void 0 : dataSource.length) || 0,
10507
10524
  columns: addDefaultRenderToColumns(columns),
10508
10525
  rowKey: "id",
10509
10526
  error: false,
10510
10527
  currentPage,
10511
10528
  onPageChange: (p) => setCurrentPage(p),
10512
- currentSize: 10,
10529
+ currentSize,
10513
10530
  refetch: () => null,
10514
10531
  showMenuColumn: false
10515
10532
  }
@@ -10555,6 +10572,7 @@ const IngressRulesTable = ({ ingress }) => {
10555
10572
  const component = useContext(ComponentContext);
10556
10573
  const Table$1 = component.Table || Table;
10557
10574
  const [currentPage, setCurrentPage] = useState(1);
10575
+ const currentSize = 10;
10558
10576
  const columns = [
10559
10577
  {
10560
10578
  key: "pathType",
@@ -10629,18 +10647,19 @@ const IngressRulesTable = ({ ingress }) => {
10629
10647
  {
10630
10648
  tableKey: "ingressRules",
10631
10649
  loading: false,
10632
- data: rows,
10650
+ data: rows.slice((currentPage - 1) * currentSize, currentPage * currentSize),
10651
+ total: rows.length,
10633
10652
  columns: addDefaultRenderToColumns(columns),
10634
10653
  rowKey: "pathType",
10635
10654
  empty: t2("dovetail.empty"),
10636
- currentSize: 10,
10655
+ currentSize,
10637
10656
  currentPage,
10638
10657
  onPageChange: setCurrentPage,
10639
10658
  showMenuColumn: false
10640
10659
  }
10641
10660
  );
10642
10661
  };
10643
- const KeyValue_1ebh6uj = "";
10662
+ const KeyValue_1v1utgj = "";
10644
10663
  const ContentBlockStyle = "c8jy7dc";
10645
10664
  const KeyStyle = "k2sddxl";
10646
10665
  const ValueStyle$2 = "v16vicsr";
@@ -11072,6 +11091,7 @@ const WorkloadPodsTable = ({
11072
11091
  const [currentPage, setCurrentPage] = useState(1);
11073
11092
  const component = useContext(ComponentContext);
11074
11093
  const Table$1 = component.Table || Table;
11094
+ const currentSize = 10;
11075
11095
  const {
11076
11096
  data: data2
11077
11097
  } = useList({
@@ -11116,14 +11136,15 @@ const WorkloadPodsTable = ({
11116
11136
  }), /* @__PURE__ */ jsxRuntimeExports.jsx(Table$1, {
11117
11137
  tableKey: "pods",
11118
11138
  loading: !dataSource,
11119
- data: dataSource || [],
11139
+ data: (dataSource || []).slice((currentPage - 1) * currentSize, currentPage * currentSize),
11140
+ total: (dataSource == null ? void 0 : dataSource.length) || 0,
11120
11141
  columns: addDefaultRenderToColumns(columns),
11121
11142
  onSelect: (keys) => setSelectedKeys(keys),
11122
11143
  rowKey: "id",
11123
11144
  error: false,
11124
11145
  currentPage,
11125
11146
  onPageChange: (p) => setCurrentPage(p),
11126
- currentSize: 10,
11147
+ currentSize,
11127
11148
  refetch: () => null,
11128
11149
  showMenuColumn: false
11129
11150
  })]
@@ -11234,9 +11255,8 @@ function useSubmitForm(options) {
11234
11255
  onSubmit
11235
11256
  };
11236
11257
  }
11237
- const index_13sllsf = "";
11238
- const EditFieldModalStyle = "esoz3jw";
11239
- const EditButtonStyle = "e1m0bgls";
11258
+ const index_7c3887 = "";
11259
+ const EditButtonStyle = "esoz3jw";
11240
11260
  function EditFieldModal(props) {
11241
11261
  const {
11242
11262
  title,
@@ -11263,7 +11283,7 @@ function EditFieldModal(props) {
11263
11283
  reset();
11264
11284
  }, [reset]);
11265
11285
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(kit.modal, {
11266
- className: EditFieldModalStyle,
11286
+ className: ModalStyle,
11267
11287
  title: title || i18n2.t("dovetail.edit"),
11268
11288
  confirmLoading: submitting,
11269
11289
  onOk: onSubmit,
@@ -17305,7 +17325,7 @@ const LogViewerBase = memo((_a) => {
17305
17325
  const LogViewer = React__default.forwardRef((props, ref) => React__default.createElement(LogViewerBase, Object.assign({ innerRef: ref }, props)));
17306
17326
  LogViewer.displayName = "LogViewer";
17307
17327
  const baseNoReset = "";
17308
- const index_yr3216 = "";
17328
+ const index_jv52b6 = "";
17309
17329
  const WrapperStyle$3 = "wve7dfm";
17310
17330
  const ToolbarStyle = "t9oeh3c";
17311
17331
  const ToolbarAreaStyle = "t1u2zqn6";
@@ -17397,7 +17417,6 @@ const PodLog = ({
17397
17417
  }
17398
17418
  const total = buffer + chunk.slice(0, lastIndex);
17399
17419
  buffer = chunk.slice(lastIndex + 1);
17400
- console.log(total);
17401
17420
  const formattedLogs = total.split("\n").filter(Boolean).map((line) => {
17402
17421
  const [timestamps, ...content] = line.split(" ");
17403
17422
  const t22 = new Date(timestamps).toLocaleString();
@@ -17722,7 +17741,8 @@ const NetworkPolicyRulesViewer = ({
17722
17741
  defaultValue: yaml.dump(ingressOrEgress),
17723
17742
  height: "300px",
17724
17743
  className: EditorStyle$1,
17725
- readOnly: true
17744
+ readOnly: true,
17745
+ isScrollOnFocus: true
17726
17746
  });
17727
17747
  };
17728
17748
  const PodContainersTable = ({
@@ -17733,6 +17753,7 @@ const PodContainersTable = ({
17733
17753
  const component = useContext(ComponentContext);
17734
17754
  const Table$1 = component.Table || Table;
17735
17755
  const [currentPage, setCurrentPage] = useState(1);
17756
+ const currentSize = 10;
17736
17757
  const columns = useMemo(
17737
17758
  () => [
17738
17759
  {
@@ -17809,11 +17830,12 @@ const PodContainersTable = ({
17809
17830
  {
17810
17831
  tableKey: "podContainers",
17811
17832
  loading: false,
17812
- data: dataSource,
17833
+ data: dataSource.slice((currentPage - 1) * currentSize, currentPage * currentSize),
17834
+ total: dataSource.length,
17813
17835
  columns: addDefaultRenderToColumns(columns),
17814
17836
  rowKey: "containerID",
17815
17837
  error: false,
17816
- currentSize: 10,
17838
+ currentSize,
17817
17839
  currentPage,
17818
17840
  onPageChange: setCurrentPage,
17819
17841
  showMenuColumn: false
@@ -18259,6 +18281,7 @@ function parseJSON(value2) {
18259
18281
  return void 0;
18260
18282
  }
18261
18283
  }
18284
+ const GlobalStoreContext = createContext({});
18262
18285
  const index_1uuzt53 = "";
18263
18286
  const SelectStyle = "sj0ggy";
18264
18287
  const DropdownStyle = "d1eo8uqs";
@@ -18274,6 +18297,15 @@ const NS_STORE_KEY = "namespace-filter";
18274
18297
  const ALL_NS = "_all";
18275
18298
  const useNamespacesFilter = () => {
18276
18299
  const [value2] = useLocalStorage(NS_STORE_KEY, [ALL_NS]);
18300
+ const {
18301
+ resource
18302
+ } = useResource();
18303
+ const configs = useContext(ConfigsContext);
18304
+ if ((resource == null ? void 0 : resource.name) && configs[resource == null ? void 0 : resource.name].hideNamespacesFilter) {
18305
+ return {
18306
+ value: []
18307
+ };
18308
+ }
18277
18309
  return {
18278
18310
  value: value2
18279
18311
  };
@@ -18411,21 +18443,23 @@ function ListPage(props) {
18411
18443
  const config = configs[(resource == null ? void 0 : resource.name) || ""];
18412
18444
  return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", {
18413
18445
  className: ListPageStyle,
18414
- children: [/* @__PURE__ */ jsxRuntimeExports.jsx(TableToolBar, {
18415
- selectedKeys,
18416
- description: config == null ? void 0 : config.description
18417
- }), /* @__PURE__ */ jsxRuntimeExports.jsx(Divider, {
18418
- style: {
18419
- margin: 0,
18420
- minHeight: 1,
18421
- marginRight: 24,
18422
- width: "calc(100% - 24px)"
18423
- }
18424
- }), /* @__PURE__ */ jsxRuntimeExports.jsxs("div", {
18446
+ children: [!config.hideListToolBar ? /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, {
18447
+ children: [/* @__PURE__ */ jsxRuntimeExports.jsx(TableToolBar, {
18448
+ selectedKeys,
18449
+ description: config == null ? void 0 : config.description
18450
+ }), /* @__PURE__ */ jsxRuntimeExports.jsx(Divider, {
18451
+ style: {
18452
+ margin: 0,
18453
+ minHeight: 1,
18454
+ marginRight: 24,
18455
+ width: "calc(100% - 24px)"
18456
+ }
18457
+ })]
18458
+ }) : void 0, /* @__PURE__ */ jsxRuntimeExports.jsxs("div", {
18425
18459
  className: ListContentStyle,
18426
- children: [/* @__PURE__ */ jsxRuntimeExports.jsx(NamespacesFilter, {
18460
+ children: [!config.hideNamespacesFilter ? /* @__PURE__ */ jsxRuntimeExports.jsx(NamespacesFilter, {
18427
18461
  className: NamespaceFilterStyle
18428
- }), /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
18462
+ }) : void 0, /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
18429
18463
  className: TableStyle,
18430
18464
  children: !(tableProps.data.length || tableProps.loading) ? /* @__PURE__ */ jsxRuntimeExports.jsx(WidgetErrorContent, {
18431
18465
  errorText: tableProps.empty || t2("dovetail.no_resource", {
@@ -21663,23 +21697,30 @@ const RefineFormContent = (props) => {
21663
21697
  var _a, _b;
21664
21698
  const {
21665
21699
  config,
21666
- control,
21700
+ formResult,
21667
21701
  action,
21668
21702
  errorMsg
21669
21703
  } = props;
21704
+ const {
21705
+ control,
21706
+ watch,
21707
+ getValues
21708
+ } = formResult;
21709
+ watch();
21670
21710
  const fields = (_b = (_a = config == null ? void 0 : config.formConfig) == null ? void 0 : _a.fields) == null ? void 0 : _b.map((c2) => {
21671
21711
  return /* @__PURE__ */ jsxRuntimeExports.jsx(Controller, {
21672
21712
  control,
21673
21713
  name: c2.path.join("."),
21674
21714
  rules: {
21675
- validate(value2, formValues) {
21715
+ validate(value2) {
21716
+ const formValue = getValues();
21676
21717
  if (!c2.validators || c2.validators.length === 0)
21677
21718
  return true;
21678
21719
  for (const func of c2.validators) {
21679
21720
  const {
21680
21721
  isValid,
21681
21722
  errorMsg: errorMsg2
21682
- } = func(value2, formValues);
21723
+ } = func(value2, formValue);
21683
21724
  if (!isValid)
21684
21725
  return errorMsg2;
21685
21726
  }
@@ -21696,6 +21737,7 @@ const RefineFormContent = (props) => {
21696
21737
  fieldState
21697
21738
  }) => {
21698
21739
  var _a2;
21740
+ const formValue = getValues();
21699
21741
  let ele = /* @__PURE__ */ jsxRuntimeExports.jsx(Fields.String, {
21700
21742
  input: {
21701
21743
  value: value2,
@@ -21724,6 +21766,9 @@ const RefineFormContent = (props) => {
21724
21766
  children: value2
21725
21767
  });
21726
21768
  }
21769
+ if (c2 == null ? void 0 : c2.render) {
21770
+ ele = c2.render(value2, onChange, formValue, onBlur);
21771
+ }
21727
21772
  return /* @__PURE__ */ jsxRuntimeExports.jsx(Form.Item, {
21728
21773
  label: c2.label,
21729
21774
  labelCol: {
@@ -22298,6 +22343,7 @@ const useRefineForm = (props) => {
22298
22343
  resource: config.name,
22299
22344
  action: id ? "edit" : "create",
22300
22345
  id,
22346
+ liveMode: "off",
22301
22347
  ...refineProps
22302
22348
  },
22303
22349
  defaultValues: config == null ? void 0 : config.initValue
@@ -22321,7 +22367,7 @@ const Separator = () => {
22321
22367
  });
22322
22368
  };
22323
22369
  const MonacoYamlEditor = React__default.lazy(() => Promise.resolve().then(() => MonacoYamlEditor$2));
22324
- const MonacoYamlDiffEditor = React__default.lazy(() => import("./MonacoYamlDiffEditor-a2597bad.js"));
22370
+ const MonacoYamlDiffEditor = React__default.lazy(() => import("./MonacoYamlDiffEditor-b007e47c.js"));
22325
22371
  const YamlEditorComponent = forwardRef(
22326
22372
  function YamlEditorComponent2(props, ref) {
22327
22373
  const {
@@ -22657,7 +22703,6 @@ function generateYamlBySchema(defaultValue, schema) {
22657
22703
  const content = yaml.dump(merged);
22658
22704
  return content.replace(/(')(#.+?)(')/g, "$2").replace(/( +)(#)/g, "$2$1");
22659
22705
  }
22660
- const GlobalStoreContext = createContext({});
22661
22706
  const useGlobalStore = () => {
22662
22707
  return useContext(GlobalStoreContext);
22663
22708
  };
@@ -22999,7 +23044,7 @@ const FullscreenModalStyle = "f1nltbcu";
22999
23044
  const FormDescStyle = "f1qgcca6";
23000
23045
  const ErrorStyle = "e1tl3wq2";
23001
23046
  function FormModal(props) {
23002
- var _a, _b, _c, _d;
23047
+ var _a, _b, _c, _d, _e;
23003
23048
  const {
23004
23049
  resource: resourceFromProps,
23005
23050
  id,
@@ -23046,10 +23091,11 @@ function FormModal(props) {
23046
23091
  onMutationSuccess: () => {
23047
23092
  popModal();
23048
23093
  },
23049
- redirect: false
23094
+ redirect: false,
23095
+ ...(_a = config.formConfig) == null ? void 0 : _a.refineCoreProps
23050
23096
  }
23051
23097
  });
23052
- const isYamlForm = !((_a = config.formConfig) == null ? void 0 : _a.fields);
23098
+ const isYamlForm = !((_b = config.formConfig) == null ? void 0 : _b.fields);
23053
23099
  const formEle = (() => {
23054
23100
  if (renderForm) {
23055
23101
  return renderForm(yamlFormProps);
@@ -23059,7 +23105,7 @@ function FormModal(props) {
23059
23105
  ...yamlFormProps
23060
23106
  });
23061
23107
  return /* @__PURE__ */ jsxRuntimeExports.jsx(RefineFormContent, {
23062
- control: refineFormResult.formResult.control,
23108
+ formResult: refineFormResult.formResult,
23063
23109
  config,
23064
23110
  errorMsg: refineFormResult.responseErrorMsg,
23065
23111
  action: id ? "edit" : "create"
@@ -23081,7 +23127,7 @@ function FormModal(props) {
23081
23127
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(Modal, {
23082
23128
  className: FullscreenModalStyle,
23083
23129
  width: "calc(100vw - 16px)",
23084
- title: ((_b = config.formConfig) == null ? void 0 : _b.formTitle) || title,
23130
+ title: ((_c = config.formConfig) == null ? void 0 : _c.formTitle) || title,
23085
23131
  error: errorText ? /* @__PURE__ */ jsxRuntimeExports.jsxs("div", {
23086
23132
  className: ErrorStyle,
23087
23133
  children: [/* @__PURE__ */ jsxRuntimeExports.jsx(ExclamationErrorCircleFill16RedIcon, {}), " ", errorText]
@@ -23093,9 +23139,9 @@ function FormModal(props) {
23093
23139
  onCancel,
23094
23140
  destroyOnClose: true,
23095
23141
  fullscreen: true,
23096
- children: [((_c = config.formConfig) == null ? void 0 : _c.formDesc) ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
23142
+ children: [((_d = config.formConfig) == null ? void 0 : _d.formDesc) ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
23097
23143
  className: FormDescStyle,
23098
- children: (_d = config.formConfig) == null ? void 0 : _d.formDesc
23144
+ children: (_e = config.formConfig) == null ? void 0 : _e.formDesc
23099
23145
  }) : void 0, formEle]
23100
23146
  });
23101
23147
  }
@@ -23122,8 +23168,7 @@ const RefineFormPage = (props) => {
23122
23168
  onFinish
23123
23169
  },
23124
23170
  getValues,
23125
- saveButtonProps,
23126
- control
23171
+ saveButtonProps
23127
23172
  } = formResult;
23128
23173
  const onClick = () => {
23129
23174
  const data2 = getValues();
@@ -23134,7 +23179,7 @@ const RefineFormPage = (props) => {
23134
23179
  className: "c1pvtlkp",
23135
23180
  children: [/* @__PURE__ */ jsxRuntimeExports.jsx(RefineFormContent, {
23136
23181
  config,
23137
- control
23182
+ formResult
23138
23183
  }), ";", /* @__PURE__ */ jsxRuntimeExports.jsx(Button, {
23139
23184
  ...saveButtonProps,
23140
23185
  onClick,
@@ -24009,7 +24054,7 @@ function addDefaultRenderToColumns(columns) {
24009
24054
  }));
24010
24055
  }
24011
24056
  const useEagleTable = (params) => {
24012
- var _a;
24057
+ var _a, _b, _c;
24013
24058
  const { columns, tableProps, formatter, Dropdown = K8sDropdown } = params;
24014
24059
  const [selectedKeys, setSelectedKeys] = useState([]);
24015
24060
  const [currentPage, setCurrentPage] = useState((tableProps == null ? void 0 : tableProps.currentPage) || 1);
@@ -24046,7 +24091,9 @@ const useEagleTable = (params) => {
24046
24091
  },
24047
24092
  [setCurrentPage]
24048
24093
  );
24049
- const data2 = (_a = table.tableQueryResult.data) == null ? void 0 : _a.data;
24094
+ const currentSize = (tableProps == null ? void 0 : tableProps.currentSize) || 5;
24095
+ const data2 = (_b = (_a = table.tableQueryResult.data) == null ? void 0 : _a.data) == null ? void 0 : _b.slice((currentPage - 1) * currentSize, currentPage * currentSize);
24096
+ const total = ((_c = table.tableQueryResult.data) == null ? void 0 : _c.data.length) || 0;
24050
24097
  const finalDataSource = formatter ? data2 == null ? void 0 : data2.map(formatter) : data2;
24051
24098
  const finalProps = {
24052
24099
  tableKey: (resource == null ? void 0 : resource.name) || "table",
@@ -24057,11 +24104,12 @@ const useEagleTable = (params) => {
24057
24104
  error: false,
24058
24105
  rowKey: "id",
24059
24106
  currentPage,
24060
- currentSize: (tableProps == null ? void 0 : tableProps.currentSize) || 5,
24107
+ currentSize,
24061
24108
  onPageChange,
24062
24109
  onSelect: (keys) => {
24063
24110
  setSelectedKeys(keys);
24064
24111
  },
24112
+ total,
24065
24113
  RowMenu: Dropdown
24066
24114
  };
24067
24115
  return { tableProps: finalProps, selectedKeys, ...table };
@@ -24276,7 +24324,7 @@ const relationPlugin = new RelationPlugin();
24276
24324
  const ProviderPlugins = [relationPlugin, modelPlugin];
24277
24325
  const dovetailRefineI18n = i18n;
24278
24326
  export {
24279
- CreateButton as $,
24327
+ ReplicasDropdown as $,
24280
24328
  AgeColumnRenderer as A,
24281
24329
  useEdit as B,
24282
24330
  CommonSorter as C,
@@ -24289,156 +24337,157 @@ export {
24289
24337
  dnsSubDomainRules as J,
24290
24338
  rfc1123LabelRules as K,
24291
24339
  rfc1035LabelRules as L,
24292
- NamespaceSelectWidget as M,
24340
+ ModalStyle as M,
24293
24341
  NameColumnRenderer as N,
24294
- namespaceRules as O,
24342
+ NamespaceSelectWidget as O,
24295
24343
  PlainTextNameColumnRenderer as P,
24296
- KeyValueListWidget as Q,
24344
+ namespaceRules as Q,
24297
24345
  ReplicasColumnRenderer as R,
24298
24346
  StateDisplayColumnRenderer as S,
24299
- MetadataForm as T,
24300
- PageShow as U,
24301
- Time as V,
24347
+ KeyValueListWidget as T,
24348
+ MetadataForm as U,
24349
+ PageShow as V,
24302
24350
  WorkloadImageColumnRenderer as W,
24303
- ConditionsTable as X,
24304
- PodContainersTable as Y,
24305
- WorkloadDropdown as Z,
24306
- ReplicasDropdown as _,
24351
+ Time as X,
24352
+ ConditionsTable as Y,
24353
+ PodContainersTable as Z,
24354
+ WorkloadDropdown as _,
24307
24355
  useDeleteModal as a,
24308
- DrawerShow as a$,
24309
- ImageNames as a0,
24310
- ResourceList as a1,
24311
- ResourceShow as a2,
24312
- ResourceForm as a3,
24313
- ResourceCRUD as a4,
24314
- WorkloadPodsTable as a5,
24315
- CronJobDropdown as a6,
24316
- ResourceUsageBar as a7,
24317
- WorkloadReplicasForm as a8,
24318
- WorkloadReplicas as a9,
24319
- AnnotationsField as aA,
24320
- ServiceInnerClusterAccessField as aB,
24321
- ServiceOutClusterAccessField as aC,
24322
- PodSelectorField as aD,
24323
- PortsTableField as aE,
24324
- DurationField as aF,
24325
- EventsTab as aG,
24326
- PodLogTab as aH,
24327
- BasicGroup as aI,
24328
- PodsGroup as aJ,
24329
- PodContainersGroup as aK,
24330
- ServicePodsGroup as aL,
24331
- ConditionsGroup as aM,
24332
- SecretDataGroup as aN,
24333
- JobsGroup as aO,
24334
- IngressRulesGroup as aP,
24335
- PodSelectorGroup as aQ,
24336
- PortsGroup as aR,
24337
- DataGroup as aS,
24338
- NetworkPolicyIngressRulesGroup as aT,
24339
- NetworkPolicyEgressRulesGroup as aU,
24340
- ShowGroupComponent as aV,
24341
- ShowContent as aW,
24342
- DeleteManyButton as aX,
24343
- ListPage as aY,
24344
- StateTagStyle as aZ,
24345
- StateTag as a_,
24346
- CronjobJobsTable as aa,
24347
- KeyValue as ab,
24348
- KeyValueAnnotation as ac,
24349
- KeyValueSecret as ad,
24350
- Separator as ae,
24351
- YamlEditorComponent as af,
24352
- DeleteButton as ag,
24353
- Layout as ah,
24354
- AreaType as ai,
24355
- ImageField as aj,
24356
- ReplicaField as ak,
24357
- ConditionsField as al,
24358
- PodsField as am,
24359
- JobsField as an,
24360
- DataField as ao,
24361
- SecretDataField as ap,
24362
- StartTimeField as aq,
24363
- ServiceTypeField as ar,
24364
- ClusterIpField as as,
24365
- SessionAffinityField as at,
24366
- ServicePodsField as au,
24367
- IngressRulesTableTabField as av,
24368
- EventsTableTabField as aw,
24369
- NamespaceField as ax,
24370
- AgeField as ay,
24371
- LabelsField as az,
24356
+ StateTag as a$,
24357
+ CreateButton as a0,
24358
+ ImageNames as a1,
24359
+ ResourceList as a2,
24360
+ ResourceShow as a3,
24361
+ ResourceForm as a4,
24362
+ ResourceCRUD as a5,
24363
+ WorkloadPodsTable as a6,
24364
+ CronJobDropdown as a7,
24365
+ ResourceUsageBar as a8,
24366
+ WorkloadReplicasForm as a9,
24367
+ LabelsField as aA,
24368
+ AnnotationsField as aB,
24369
+ ServiceInnerClusterAccessField as aC,
24370
+ ServiceOutClusterAccessField as aD,
24371
+ PodSelectorField as aE,
24372
+ PortsTableField as aF,
24373
+ DurationField as aG,
24374
+ EventsTab as aH,
24375
+ PodLogTab as aI,
24376
+ BasicGroup as aJ,
24377
+ PodsGroup as aK,
24378
+ PodContainersGroup as aL,
24379
+ ServicePodsGroup as aM,
24380
+ ConditionsGroup as aN,
24381
+ SecretDataGroup as aO,
24382
+ JobsGroup as aP,
24383
+ IngressRulesGroup as aQ,
24384
+ PodSelectorGroup as aR,
24385
+ PortsGroup as aS,
24386
+ DataGroup as aT,
24387
+ NetworkPolicyIngressRulesGroup as aU,
24388
+ NetworkPolicyEgressRulesGroup as aV,
24389
+ ShowGroupComponent as aW,
24390
+ ShowContent as aX,
24391
+ DeleteManyButton as aY,
24392
+ ListPage as aZ,
24393
+ StateTagStyle as a_,
24394
+ WorkloadReplicas as aa,
24395
+ CronjobJobsTable as ab,
24396
+ KeyValue as ac,
24397
+ KeyValueAnnotation as ad,
24398
+ KeyValueSecret as ae,
24399
+ Separator as af,
24400
+ YamlEditorComponent as ag,
24401
+ DeleteButton as ah,
24402
+ Layout as ai,
24403
+ AreaType as aj,
24404
+ ImageField as ak,
24405
+ ReplicaField as al,
24406
+ ConditionsField as am,
24407
+ PodsField as an,
24408
+ JobsField as ao,
24409
+ DataField as ap,
24410
+ SecretDataField as aq,
24411
+ StartTimeField as ar,
24412
+ ServiceTypeField as as,
24413
+ ClusterIpField as at,
24414
+ SessionAffinityField as au,
24415
+ ServicePodsField as av,
24416
+ IngressRulesTableTabField as aw,
24417
+ EventsTableTabField as ax,
24418
+ NamespaceField as ay,
24419
+ AgeField as az,
24372
24420
  NameSpaceColumnRenderer as b,
24373
- DaemonSetModel as b$,
24374
- Menu as b0,
24375
- EditButton as b1,
24376
- ReferenceLink as b2,
24377
- ResourceLink as b3,
24378
- NS_STORE_KEY as b4,
24379
- ALL_NS as b5,
24380
- useNamespacesFilter as b6,
24381
- NamespacesFilter as b7,
24382
- FormModal as b8,
24383
- RefineFormContent as b9,
24384
- SERVER_INSTANCE_INIT_VALUE as bA,
24385
- TIMESTAMP_LABEL as bB,
24386
- SECRET_OPAQUE_INIT_VALUE as bC,
24387
- SECRET_IMAGE_REPO_INIT_VALUE as bD,
24388
- SECRET_BASIC_AUTH_INIT_VALUE as bE,
24389
- SECRET_SSH_AUTH_INIT_VALUE as bF,
24390
- SECRET_TLS_INIT_VALUE as bG,
24391
- SECRET_CUSTOM_INIT_VALUE as bH,
24392
- WorkloadState as bI,
24393
- AccessControlAuth as bJ,
24394
- Dovetail as bK,
24395
- RESOURCE_GROUP as bL,
24396
- FormType as bM,
24397
- ComponentContext as bN,
24398
- GlobalStoreContext as bO,
24399
- ConfigsContext as bP,
24400
- IngressModel as bQ,
24401
- NetworkPolicyModel as bR,
24402
- JobModel as bS,
24403
- WorkloadModel as bT,
24404
- WorkloadBaseModel as bU,
24405
- PodModel as bV,
24406
- PodMetricsModel as bW,
24407
- ResourceModel as bX,
24408
- CronJobModel as bY,
24409
- EventModel as bZ,
24410
- DeploymentModel as b_,
24411
- RefineFormPage as ba,
24412
- SchemaStrategy as bb,
24413
- YamlForm as bc,
24414
- useRefineForm as bd,
24415
- ServiceInClusterAccessComponent as be,
24416
- ServiceOutClusterAccessComponent as bf,
24417
- Tags as bg,
24418
- TextTags as bh,
24419
- PodLog as bi,
24420
- NetworkPolicyRulesViewer as bj,
24421
- Tabs as bk,
24422
- BASE_INIT_VALUE as bl,
24423
- DEPLOYMENT_INIT_VALUE as bm,
24424
- CRONJOB_INIT_VALUE as bn,
24425
- DAEMONSET_INIT_VALUE as bo,
24426
- JOB_INIT_VALUE as bp,
24427
- STATEFULSET_INIT_VALUE as bq,
24428
- POD_INIT_VALUE as br,
24429
- SERVICE_CLUSTER_IP_INIT_VALUE as bs,
24430
- SERVICE_NODE_PORT_INIT_VALUE as bt,
24431
- SERVICE_LOAD_BALANCER_INIT_VALUE as bu,
24432
- SERVICE_EXTERNAL_NAME_INIT_VALUE as bv,
24433
- SERVICE_HEADLESS_INIT_VALUE as bw,
24434
- INGRESS_INIT_VALUE as bx,
24435
- NETWORK_POLICY_INIT_VALUE as by,
24436
- CONFIG_MAP_INIT_VALUE as bz,
24421
+ DeploymentModel as b$,
24422
+ DrawerShow as b0,
24423
+ Menu as b1,
24424
+ EditButton as b2,
24425
+ ReferenceLink as b3,
24426
+ ResourceLink as b4,
24427
+ NS_STORE_KEY as b5,
24428
+ ALL_NS as b6,
24429
+ useNamespacesFilter as b7,
24430
+ NamespacesFilter as b8,
24431
+ FormModal as b9,
24432
+ CONFIG_MAP_INIT_VALUE as bA,
24433
+ SERVER_INSTANCE_INIT_VALUE as bB,
24434
+ TIMESTAMP_LABEL as bC,
24435
+ SECRET_OPAQUE_INIT_VALUE as bD,
24436
+ SECRET_IMAGE_REPO_INIT_VALUE as bE,
24437
+ SECRET_BASIC_AUTH_INIT_VALUE as bF,
24438
+ SECRET_SSH_AUTH_INIT_VALUE as bG,
24439
+ SECRET_TLS_INIT_VALUE as bH,
24440
+ SECRET_CUSTOM_INIT_VALUE as bI,
24441
+ WorkloadState as bJ,
24442
+ AccessControlAuth as bK,
24443
+ Dovetail as bL,
24444
+ RESOURCE_GROUP as bM,
24445
+ FormType as bN,
24446
+ ComponentContext as bO,
24447
+ GlobalStoreContext as bP,
24448
+ ConfigsContext as bQ,
24449
+ IngressModel as bR,
24450
+ NetworkPolicyModel as bS,
24451
+ JobModel as bT,
24452
+ WorkloadModel as bU,
24453
+ WorkloadBaseModel as bV,
24454
+ PodModel as bW,
24455
+ PodMetricsModel as bX,
24456
+ ResourceModel as bY,
24457
+ CronJobModel as bZ,
24458
+ EventModel as b_,
24459
+ RefineFormContent as ba,
24460
+ RefineFormPage as bb,
24461
+ SchemaStrategy as bc,
24462
+ YamlForm as bd,
24463
+ useRefineForm as be,
24464
+ ServiceInClusterAccessComponent as bf,
24465
+ ServiceOutClusterAccessComponent as bg,
24466
+ Tags as bh,
24467
+ TextTags as bi,
24468
+ PodLog as bj,
24469
+ NetworkPolicyRulesViewer as bk,
24470
+ Tabs as bl,
24471
+ BASE_INIT_VALUE as bm,
24472
+ DEPLOYMENT_INIT_VALUE as bn,
24473
+ CRONJOB_INIT_VALUE as bo,
24474
+ DAEMONSET_INIT_VALUE as bp,
24475
+ JOB_INIT_VALUE as bq,
24476
+ STATEFULSET_INIT_VALUE as br,
24477
+ POD_INIT_VALUE as bs,
24478
+ SERVICE_CLUSTER_IP_INIT_VALUE as bt,
24479
+ SERVICE_NODE_PORT_INIT_VALUE as bu,
24480
+ SERVICE_LOAD_BALANCER_INIT_VALUE as bv,
24481
+ SERVICE_EXTERNAL_NAME_INIT_VALUE as bw,
24482
+ SERVICE_HEADLESS_INIT_VALUE as bx,
24483
+ INGRESS_INIT_VALUE as by,
24484
+ NETWORK_POLICY_INIT_VALUE as bz,
24437
24485
  WorkloadRestartsColumnRenderer as c,
24438
- StatefulSetModel as c0,
24439
- ServiceTypeEnum as c1,
24440
- ServiceModel as c2,
24441
- ProviderPlugins as c3,
24486
+ DaemonSetModel as c0,
24487
+ StatefulSetModel as c1,
24488
+ ServiceTypeEnum as c2,
24489
+ ServiceModel as c3,
24490
+ ProviderPlugins as c4,
24442
24491
  dovetailRefineI18n as d,
24443
24492
  NodeNameColumnRenderer as e,
24444
24493
  RestartCountColumnRenderer as f,