@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
@@ -31,301 +31,308 @@ var __publicField = (obj, key, value) => {
31
31
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
32
32
  }
33
33
  var dayjs_min = { exports: {} };
34
- (function(module2, exports3) {
35
- !function(t2, e2) {
36
- module2.exports = e2();
37
- }(commonjsGlobal, function() {
38
- 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) {
39
- var e3 = ["th", "st", "nd", "rd"], n3 = t3 % 100;
40
- return "[" + t3 + (e3[(n3 - 20) % 10] || e3[n3] || e3[0]) + "]";
41
- } }, m2 = function(t3, e3, n3) {
42
- var r3 = String(t3);
43
- return !r3 || r3.length >= e3 ? t3 : "" + Array(e3 + 1 - r3.length).join(n3) + t3;
44
- }, v = { s: m2, z: function(t3) {
45
- var e3 = -t3.utcOffset(), n3 = Math.abs(e3), r3 = Math.floor(n3 / 60), i3 = n3 % 60;
46
- return (e3 <= 0 ? "+" : "-") + m2(r3, 2, "0") + ":" + m2(i3, 2, "0");
47
- }, m: function t3(e3, n3) {
48
- if (e3.date() < n3.date())
49
- return -t3(n3, e3);
50
- 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);
51
- return +(-(r3 + (n3 - i3) / (s3 ? i3 - u2 : u2 - i3)) || 0);
52
- }, a: function(t3) {
53
- return t3 < 0 ? Math.ceil(t3) || 0 : Math.floor(t3);
54
- }, p: function(t3) {
55
- 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$/, "");
56
- }, u: function(t3) {
57
- return void 0 === t3;
58
- } }, g = "en", D = {};
59
- D[g] = M;
60
- var p = "$isDayjsObject", S = function(t3) {
61
- return t3 instanceof _ || !(!t3 || !t3[p]);
62
- }, w = function t3(e3, n3, r3) {
63
- var i3;
64
- if (!e3)
65
- return g;
66
- if ("string" == typeof e3) {
67
- var s3 = e3.toLowerCase();
68
- D[s3] && (i3 = s3), n3 && (D[s3] = n3, i3 = s3);
69
- var u2 = e3.split("-");
70
- if (!i3 && u2.length > 1)
71
- return t3(u2[0]);
72
- } else {
73
- var a3 = e3.name;
74
- D[a3] = e3, i3 = a3;
75
- }
76
- return !r3 && i3 && (g = i3), i3 || !r3 && g;
77
- }, O = function(t3, e3) {
78
- if (S(t3))
79
- return t3.clone();
80
- var n3 = "object" == typeof e3 ? e3 : {};
81
- return n3.date = t3, n3.args = arguments, new _(n3);
82
- }, b = v;
83
- b.l = w, b.i = S, b.w = function(t3, e3) {
84
- return O(t3, { locale: e3.$L, utc: e3.$u, x: e3.$x, $offset: e3.$offset });
85
- };
86
- var _ = function() {
87
- function M2(t3) {
88
- this.$L = w(t3.locale, null, true), this.parse(t3), this.$x = this.$x || t3.x || {}, this[p] = true;
89
- }
90
- var m3 = M2.prototype;
91
- return m3.parse = function(t3) {
92
- this.$d = function(t4) {
93
- var e3 = t4.date, n3 = t4.utc;
94
- if (null === e3)
95
- return /* @__PURE__ */ new Date(NaN);
96
- if (b.u(e3))
97
- return /* @__PURE__ */ new Date();
98
- if (e3 instanceof Date)
99
- return new Date(e3);
100
- if ("string" == typeof e3 && !/Z$/i.test(e3)) {
101
- var r3 = e3.match($);
102
- if (r3) {
103
- var i3 = r3[2] - 1 || 0, s3 = (r3[7] || "0").substring(0, 3);
104
- 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);
105
- }
106
- }
107
- return new Date(e3);
108
- }(t3), this.init();
109
- }, m3.init = function() {
110
- var t3 = this.$d;
111
- 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();
112
- }, m3.$utils = function() {
113
- return b;
114
- }, m3.isValid = function() {
115
- return !(this.$d.toString() === l);
116
- }, m3.isSame = function(t3, e3) {
117
- var n3 = O(t3);
118
- return this.startOf(e3) <= n3 && n3 <= this.endOf(e3);
119
- }, m3.isAfter = function(t3, e3) {
120
- return O(t3) < this.startOf(e3);
121
- }, m3.isBefore = function(t3, e3) {
122
- return this.endOf(e3) < O(t3);
123
- }, m3.$g = function(t3, e3, n3) {
124
- return b.u(t3) ? this[e3] : this.set(n3, t3);
125
- }, m3.unix = function() {
126
- return Math.floor(this.valueOf() / 1e3);
127
- }, m3.valueOf = function() {
128
- return this.$d.getTime();
129
- }, m3.startOf = function(t3, e3) {
130
- var n3 = this, r3 = !!b.u(e3) || e3, f2 = b.p(t3), l2 = function(t4, e4) {
131
- var i3 = b.w(n3.$u ? Date.UTC(n3.$y, e4, t4) : new Date(n3.$y, e4, t4), n3);
132
- return r3 ? i3 : i3.endOf(a2);
133
- }, $2 = function(t4, e4) {
134
- return b.w(n3.toDate()[t4].apply(n3.toDate("s"), (r3 ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(e4)), n3);
135
- }, y2 = this.$W, M3 = this.$M, m4 = this.$D, v2 = "set" + (this.$u ? "UTC" : "");
136
- switch (f2) {
137
- case h:
138
- return r3 ? l2(1, 0) : l2(31, 11);
139
- case c2:
140
- return r3 ? l2(1, M3) : l2(0, M3 + 1);
141
- case o:
142
- var g2 = this.$locale().weekStart || 0, D2 = (y2 < g2 ? y2 + 7 : y2) - g2;
143
- return l2(r3 ? m4 - D2 : m4 + (6 - D2), M3);
144
- case a2:
145
- case d:
146
- return $2(v2 + "Hours", 0);
147
- case u:
148
- return $2(v2 + "Minutes", 1);
149
- case s2:
150
- return $2(v2 + "Seconds", 2);
151
- case i2:
152
- return $2(v2 + "Milliseconds", 3);
153
- default:
154
- return this.clone();
155
- }
156
- }, m3.endOf = function(t3) {
157
- return this.startOf(t3, false);
158
- }, m3.$set = function(t3, e3) {
159
- 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;
160
- if (o2 === c2 || o2 === h) {
161
- var y2 = this.clone().set(d, 1);
162
- y2.$d[l2]($2), y2.init(), this.$d = y2.set(d, Math.min(this.$D, y2.daysInMonth())).$d;
163
- } else
164
- l2 && this.$d[l2]($2);
165
- return this.init(), this;
166
- }, m3.set = function(t3, e3) {
167
- return this.clone().$set(t3, e3);
168
- }, m3.get = function(t3) {
169
- return this[b.p(t3)]();
170
- }, m3.add = function(r3, f2) {
171
- var d2, l2 = this;
172
- r3 = Number(r3);
173
- var $2 = b.p(f2), y2 = function(t3) {
174
- var e3 = O(l2);
175
- return b.w(e3.date(e3.date() + Math.round(t3 * r3)), l2);
176
- };
177
- if ($2 === c2)
178
- return this.set(c2, this.$M + r3);
179
- if ($2 === h)
180
- return this.set(h, this.$y + r3);
181
- if ($2 === a2)
182
- return y2(1);
183
- if ($2 === o)
184
- return y2(7);
185
- var M3 = (d2 = {}, d2[s2] = e2, d2[u] = n2, d2[i2] = t2, d2)[$2] || 1, m4 = this.$d.getTime() + r3 * M3;
186
- return b.w(m4, this);
187
- }, m3.subtract = function(t3, e3) {
188
- return this.add(-1 * t3, e3);
189
- }, m3.format = function(t3) {
190
- var e3 = this, n3 = this.$locale();
191
- if (!this.isValid())
192
- return n3.invalidDate || l;
193
- 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) {
194
- return t4 && (t4[n4] || t4(e3, r3)) || i4[n4].slice(0, s4);
195
- }, d2 = function(t4) {
196
- return b.s(s3 % 12 || 12, t4, "0");
197
- }, $2 = f2 || function(t4, e4, n4) {
198
- var r4 = t4 < 12 ? "AM" : "PM";
199
- return n4 ? r4.toLowerCase() : r4;
200
- };
201
- return r3.replace(y, function(t4, r4) {
202
- return r4 || function(t5) {
203
- switch (t5) {
204
- case "YY":
205
- return String(e3.$y).slice(-2);
206
- case "YYYY":
207
- return b.s(e3.$y, 4, "0");
208
- case "M":
209
- return a3 + 1;
210
- case "MM":
211
- return b.s(a3 + 1, 2, "0");
212
- case "MMM":
213
- return h2(n3.monthsShort, a3, c3, 3);
214
- case "MMMM":
215
- return h2(c3, a3);
216
- case "D":
217
- return e3.$D;
218
- case "DD":
219
- return b.s(e3.$D, 2, "0");
220
- case "d":
221
- return String(e3.$W);
222
- case "dd":
223
- return h2(n3.weekdaysMin, e3.$W, o2, 2);
224
- case "ddd":
225
- return h2(n3.weekdaysShort, e3.$W, o2, 3);
226
- case "dddd":
227
- return o2[e3.$W];
228
- case "H":
229
- return String(s3);
230
- case "HH":
231
- return b.s(s3, 2, "0");
232
- case "h":
233
- return d2(1);
234
- case "hh":
235
- return d2(2);
236
- case "a":
237
- return $2(s3, u2, true);
238
- case "A":
239
- return $2(s3, u2, false);
240
- case "m":
241
- return String(u2);
242
- case "mm":
243
- return b.s(u2, 2, "0");
244
- case "s":
245
- return String(e3.$s);
246
- case "ss":
247
- return b.s(e3.$s, 2, "0");
248
- case "SSS":
249
- return b.s(e3.$ms, 3, "0");
250
- case "Z":
251
- return i3;
34
+ var hasRequiredDayjs_min;
35
+ function requireDayjs_min() {
36
+ if (hasRequiredDayjs_min)
37
+ return dayjs_min.exports;
38
+ hasRequiredDayjs_min = 1;
39
+ (function(module2, exports3) {
40
+ !function(t2, e2) {
41
+ module2.exports = e2();
42
+ }(commonjsGlobal, function() {
43
+ 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) {
44
+ var e3 = ["th", "st", "nd", "rd"], n3 = t3 % 100;
45
+ return "[" + t3 + (e3[(n3 - 20) % 10] || e3[n3] || e3[0]) + "]";
46
+ } }, m2 = function(t3, e3, n3) {
47
+ var r3 = String(t3);
48
+ return !r3 || r3.length >= e3 ? t3 : "" + Array(e3 + 1 - r3.length).join(n3) + t3;
49
+ }, v = { s: m2, z: function(t3) {
50
+ var e3 = -t3.utcOffset(), n3 = Math.abs(e3), r3 = Math.floor(n3 / 60), i3 = n3 % 60;
51
+ return (e3 <= 0 ? "+" : "-") + m2(r3, 2, "0") + ":" + m2(i3, 2, "0");
52
+ }, m: function t3(e3, n3) {
53
+ if (e3.date() < n3.date())
54
+ return -t3(n3, e3);
55
+ 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);
56
+ return +(-(r3 + (n3 - i3) / (s3 ? i3 - u2 : u2 - i3)) || 0);
57
+ }, a: function(t3) {
58
+ return t3 < 0 ? Math.ceil(t3) || 0 : Math.floor(t3);
59
+ }, p: function(t3) {
60
+ 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$/, "");
61
+ }, u: function(t3) {
62
+ return void 0 === t3;
63
+ } }, g = "en", D = {};
64
+ D[g] = M;
65
+ var p = "$isDayjsObject", S = function(t3) {
66
+ return t3 instanceof _ || !(!t3 || !t3[p]);
67
+ }, w = function t3(e3, n3, r3) {
68
+ var i3;
69
+ if (!e3)
70
+ return g;
71
+ if ("string" == typeof e3) {
72
+ var s3 = e3.toLowerCase();
73
+ D[s3] && (i3 = s3), n3 && (D[s3] = n3, i3 = s3);
74
+ var u2 = e3.split("-");
75
+ if (!i3 && u2.length > 1)
76
+ return t3(u2[0]);
77
+ } else {
78
+ var a3 = e3.name;
79
+ D[a3] = e3, i3 = a3;
80
+ }
81
+ return !r3 && i3 && (g = i3), i3 || !r3 && g;
82
+ }, O = function(t3, e3) {
83
+ if (S(t3))
84
+ return t3.clone();
85
+ var n3 = "object" == typeof e3 ? e3 : {};
86
+ return n3.date = t3, n3.args = arguments, new _(n3);
87
+ }, b = v;
88
+ b.l = w, b.i = S, b.w = function(t3, e3) {
89
+ return O(t3, { locale: e3.$L, utc: e3.$u, x: e3.$x, $offset: e3.$offset });
90
+ };
91
+ var _ = function() {
92
+ function M2(t3) {
93
+ this.$L = w(t3.locale, null, true), this.parse(t3), this.$x = this.$x || t3.x || {}, this[p] = true;
94
+ }
95
+ var m3 = M2.prototype;
96
+ return m3.parse = function(t3) {
97
+ this.$d = function(t4) {
98
+ var e3 = t4.date, n3 = t4.utc;
99
+ if (null === e3)
100
+ return /* @__PURE__ */ new Date(NaN);
101
+ if (b.u(e3))
102
+ return /* @__PURE__ */ new Date();
103
+ if (e3 instanceof Date)
104
+ return new Date(e3);
105
+ if ("string" == typeof e3 && !/Z$/i.test(e3)) {
106
+ var r3 = e3.match($);
107
+ if (r3) {
108
+ var i3 = r3[2] - 1 || 0, s3 = (r3[7] || "0").substring(0, 3);
109
+ 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);
110
+ }
252
111
  }
253
- return null;
254
- }(t4) || i3.replace(":", "");
255
- });
256
- }, m3.utcOffset = function() {
257
- return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
258
- }, m3.diff = function(r3, d2, l2) {
259
- var $2, y2 = this, M3 = b.p(d2), m4 = O(r3), v2 = (m4.utcOffset() - this.utcOffset()) * e2, g2 = this - m4, D2 = function() {
260
- return b.m(y2, m4);
112
+ return new Date(e3);
113
+ }(t3), this.init();
114
+ }, m3.init = function() {
115
+ var t3 = this.$d;
116
+ 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();
117
+ }, m3.$utils = function() {
118
+ return b;
119
+ }, m3.isValid = function() {
120
+ return !(this.$d.toString() === l);
121
+ }, m3.isSame = function(t3, e3) {
122
+ var n3 = O(t3);
123
+ return this.startOf(e3) <= n3 && n3 <= this.endOf(e3);
124
+ }, m3.isAfter = function(t3, e3) {
125
+ return O(t3) < this.startOf(e3);
126
+ }, m3.isBefore = function(t3, e3) {
127
+ return this.endOf(e3) < O(t3);
128
+ }, m3.$g = function(t3, e3, n3) {
129
+ return b.u(t3) ? this[e3] : this.set(n3, t3);
130
+ }, m3.unix = function() {
131
+ return Math.floor(this.valueOf() / 1e3);
132
+ }, m3.valueOf = function() {
133
+ return this.$d.getTime();
134
+ }, m3.startOf = function(t3, e3) {
135
+ var n3 = this, r3 = !!b.u(e3) || e3, f2 = b.p(t3), l2 = function(t4, e4) {
136
+ var i3 = b.w(n3.$u ? Date.UTC(n3.$y, e4, t4) : new Date(n3.$y, e4, t4), n3);
137
+ return r3 ? i3 : i3.endOf(a2);
138
+ }, $2 = function(t4, e4) {
139
+ return b.w(n3.toDate()[t4].apply(n3.toDate("s"), (r3 ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(e4)), n3);
140
+ }, y2 = this.$W, M3 = this.$M, m4 = this.$D, v2 = "set" + (this.$u ? "UTC" : "");
141
+ switch (f2) {
142
+ case h:
143
+ return r3 ? l2(1, 0) : l2(31, 11);
144
+ case c2:
145
+ return r3 ? l2(1, M3) : l2(0, M3 + 1);
146
+ case o:
147
+ var g2 = this.$locale().weekStart || 0, D2 = (y2 < g2 ? y2 + 7 : y2) - g2;
148
+ return l2(r3 ? m4 - D2 : m4 + (6 - D2), M3);
149
+ case a2:
150
+ case d:
151
+ return $2(v2 + "Hours", 0);
152
+ case u:
153
+ return $2(v2 + "Minutes", 1);
154
+ case s2:
155
+ return $2(v2 + "Seconds", 2);
156
+ case i2:
157
+ return $2(v2 + "Milliseconds", 3);
158
+ default:
159
+ return this.clone();
160
+ }
161
+ }, m3.endOf = function(t3) {
162
+ return this.startOf(t3, false);
163
+ }, m3.$set = function(t3, e3) {
164
+ 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;
165
+ if (o2 === c2 || o2 === h) {
166
+ var y2 = this.clone().set(d, 1);
167
+ y2.$d[l2]($2), y2.init(), this.$d = y2.set(d, Math.min(this.$D, y2.daysInMonth())).$d;
168
+ } else
169
+ l2 && this.$d[l2]($2);
170
+ return this.init(), this;
171
+ }, m3.set = function(t3, e3) {
172
+ return this.clone().$set(t3, e3);
173
+ }, m3.get = function(t3) {
174
+ return this[b.p(t3)]();
175
+ }, m3.add = function(r3, f2) {
176
+ var d2, l2 = this;
177
+ r3 = Number(r3);
178
+ var $2 = b.p(f2), y2 = function(t3) {
179
+ var e3 = O(l2);
180
+ return b.w(e3.date(e3.date() + Math.round(t3 * r3)), l2);
181
+ };
182
+ if ($2 === c2)
183
+ return this.set(c2, this.$M + r3);
184
+ if ($2 === h)
185
+ return this.set(h, this.$y + r3);
186
+ if ($2 === a2)
187
+ return y2(1);
188
+ if ($2 === o)
189
+ return y2(7);
190
+ var M3 = (d2 = {}, d2[s2] = e2, d2[u] = n2, d2[i2] = t2, d2)[$2] || 1, m4 = this.$d.getTime() + r3 * M3;
191
+ return b.w(m4, this);
192
+ }, m3.subtract = function(t3, e3) {
193
+ return this.add(-1 * t3, e3);
194
+ }, m3.format = function(t3) {
195
+ var e3 = this, n3 = this.$locale();
196
+ if (!this.isValid())
197
+ return n3.invalidDate || l;
198
+ 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) {
199
+ return t4 && (t4[n4] || t4(e3, r3)) || i4[n4].slice(0, s4);
200
+ }, d2 = function(t4) {
201
+ return b.s(s3 % 12 || 12, t4, "0");
202
+ }, $2 = f2 || function(t4, e4, n4) {
203
+ var r4 = t4 < 12 ? "AM" : "PM";
204
+ return n4 ? r4.toLowerCase() : r4;
205
+ };
206
+ return r3.replace(y, function(t4, r4) {
207
+ return r4 || function(t5) {
208
+ switch (t5) {
209
+ case "YY":
210
+ return String(e3.$y).slice(-2);
211
+ case "YYYY":
212
+ return b.s(e3.$y, 4, "0");
213
+ case "M":
214
+ return a3 + 1;
215
+ case "MM":
216
+ return b.s(a3 + 1, 2, "0");
217
+ case "MMM":
218
+ return h2(n3.monthsShort, a3, c3, 3);
219
+ case "MMMM":
220
+ return h2(c3, a3);
221
+ case "D":
222
+ return e3.$D;
223
+ case "DD":
224
+ return b.s(e3.$D, 2, "0");
225
+ case "d":
226
+ return String(e3.$W);
227
+ case "dd":
228
+ return h2(n3.weekdaysMin, e3.$W, o2, 2);
229
+ case "ddd":
230
+ return h2(n3.weekdaysShort, e3.$W, o2, 3);
231
+ case "dddd":
232
+ return o2[e3.$W];
233
+ case "H":
234
+ return String(s3);
235
+ case "HH":
236
+ return b.s(s3, 2, "0");
237
+ case "h":
238
+ return d2(1);
239
+ case "hh":
240
+ return d2(2);
241
+ case "a":
242
+ return $2(s3, u2, true);
243
+ case "A":
244
+ return $2(s3, u2, false);
245
+ case "m":
246
+ return String(u2);
247
+ case "mm":
248
+ return b.s(u2, 2, "0");
249
+ case "s":
250
+ return String(e3.$s);
251
+ case "ss":
252
+ return b.s(e3.$s, 2, "0");
253
+ case "SSS":
254
+ return b.s(e3.$ms, 3, "0");
255
+ case "Z":
256
+ return i3;
257
+ }
258
+ return null;
259
+ }(t4) || i3.replace(":", "");
260
+ });
261
+ }, m3.utcOffset = function() {
262
+ return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
263
+ }, m3.diff = function(r3, d2, l2) {
264
+ var $2, y2 = this, M3 = b.p(d2), m4 = O(r3), v2 = (m4.utcOffset() - this.utcOffset()) * e2, g2 = this - m4, D2 = function() {
265
+ return b.m(y2, m4);
266
+ };
267
+ switch (M3) {
268
+ case h:
269
+ $2 = D2() / 12;
270
+ break;
271
+ case c2:
272
+ $2 = D2();
273
+ break;
274
+ case f:
275
+ $2 = D2() / 3;
276
+ break;
277
+ case o:
278
+ $2 = (g2 - v2) / 6048e5;
279
+ break;
280
+ case a2:
281
+ $2 = (g2 - v2) / 864e5;
282
+ break;
283
+ case u:
284
+ $2 = g2 / n2;
285
+ break;
286
+ case s2:
287
+ $2 = g2 / e2;
288
+ break;
289
+ case i2:
290
+ $2 = g2 / t2;
291
+ break;
292
+ default:
293
+ $2 = g2;
294
+ }
295
+ return l2 ? $2 : b.a($2);
296
+ }, m3.daysInMonth = function() {
297
+ return this.endOf(c2).$D;
298
+ }, m3.$locale = function() {
299
+ return D[this.$L];
300
+ }, m3.locale = function(t3, e3) {
301
+ if (!t3)
302
+ return this.$L;
303
+ var n3 = this.clone(), r3 = w(t3, e3, true);
304
+ return r3 && (n3.$L = r3), n3;
305
+ }, m3.clone = function() {
306
+ return b.w(this.$d, this);
307
+ }, m3.toDate = function() {
308
+ return new Date(this.valueOf());
309
+ }, m3.toJSON = function() {
310
+ return this.isValid() ? this.toISOString() : null;
311
+ }, m3.toISOString = function() {
312
+ return this.$d.toISOString();
313
+ }, m3.toString = function() {
314
+ return this.$d.toUTCString();
315
+ }, M2;
316
+ }(), k = _.prototype;
317
+ return O.prototype = k, [["$ms", r2], ["$s", i2], ["$m", s2], ["$H", u], ["$W", a2], ["$M", c2], ["$y", h], ["$D", d]].forEach(function(t3) {
318
+ k[t3[1]] = function(e3) {
319
+ return this.$g(e3, t3[0], t3[1]);
261
320
  };
262
- switch (M3) {
263
- case h:
264
- $2 = D2() / 12;
265
- break;
266
- case c2:
267
- $2 = D2();
268
- break;
269
- case f:
270
- $2 = D2() / 3;
271
- break;
272
- case o:
273
- $2 = (g2 - v2) / 6048e5;
274
- break;
275
- case a2:
276
- $2 = (g2 - v2) / 864e5;
277
- break;
278
- case u:
279
- $2 = g2 / n2;
280
- break;
281
- case s2:
282
- $2 = g2 / e2;
283
- break;
284
- case i2:
285
- $2 = g2 / t2;
286
- break;
287
- default:
288
- $2 = g2;
289
- }
290
- return l2 ? $2 : b.a($2);
291
- }, m3.daysInMonth = function() {
292
- return this.endOf(c2).$D;
293
- }, m3.$locale = function() {
294
- return D[this.$L];
295
- }, m3.locale = function(t3, e3) {
296
- if (!t3)
297
- return this.$L;
298
- var n3 = this.clone(), r3 = w(t3, e3, true);
299
- return r3 && (n3.$L = r3), n3;
300
- }, m3.clone = function() {
301
- return b.w(this.$d, this);
302
- }, m3.toDate = function() {
303
- return new Date(this.valueOf());
304
- }, m3.toJSON = function() {
305
- return this.isValid() ? this.toISOString() : null;
306
- }, m3.toISOString = function() {
307
- return this.$d.toISOString();
308
- }, m3.toString = function() {
309
- return this.$d.toUTCString();
310
- }, M2;
311
- }(), k = _.prototype;
312
- return O.prototype = k, [["$ms", r2], ["$s", i2], ["$m", s2], ["$H", u], ["$W", a2], ["$M", c2], ["$y", h], ["$D", d]].forEach(function(t3) {
313
- k[t3[1]] = function(e3) {
314
- return this.$g(e3, t3[0], t3[1]);
315
- };
316
- }), O.extend = function(t3, e3) {
317
- return t3.$i || (t3(e3, _, O), t3.$i = true), O;
318
- }, O.locale = w, O.isDayjs = S, O.unix = function(t3) {
319
- return O(1e3 * t3);
320
- }, O.en = D[g], O.Ls = D, O.p = {}, O;
321
- });
322
- })(dayjs_min);
323
- var dayjs_minExports = dayjs_min.exports;
321
+ }), O.extend = function(t3, e3) {
322
+ return t3.$i || (t3(e3, _, O), t3.$i = true), O;
323
+ }, O.locale = w, O.isDayjs = S, O.unix = function(t3) {
324
+ return O(1e3 * t3);
325
+ }, O.en = D[g], O.Ls = D, O.p = {}, O;
326
+ });
327
+ })(dayjs_min);
328
+ return dayjs_min.exports;
329
+ }
330
+ var dayjs_minExports = requireDayjs_min();
324
331
  const dayjs = /* @__PURE__ */ getDefaultExportFromCjs(dayjs_minExports);
325
332
  var zh = { exports: {} };
326
333
  (function(module2, exports3) {
327
334
  !function(e2, _) {
328
- module2.exports = _(dayjs_minExports);
335
+ module2.exports = _(requireDayjs_min());
329
336
  }(commonjsGlobal, function(e2) {
330
337
  function _(e3) {
331
338
  return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
@@ -8033,7 +8040,7 @@ var __publicField = (obj, key, value) => {
8033
8040
  };
8034
8041
  var cx_default = cx;
8035
8042
  const ConfigsContext = React.createContext({});
8036
- const useDeleteModal_1kqb6q3 = "";
8043
+ const useDeleteModal_v7eb93 = "";
8037
8044
  const TextStyle = "t1vq0ett";
8038
8045
  const TipStyle = "t139onst";
8039
8046
  const NameStyle$1 = "n18lzor8";
@@ -8686,6 +8693,7 @@ var __publicField = (obj, key, value) => {
8686
8693
  const component = React.useContext(ComponentContext);
8687
8694
  const Table$1 = component.Table || Table;
8688
8695
  const [currentPage, setCurrentPage] = React.useState(1);
8696
+ const currentSize = 10;
8689
8697
  const datas = Object.keys(podSelectors).map((key2) => ({
8690
8698
  id: key2,
8691
8699
  key: key2,
@@ -8722,11 +8730,12 @@ var __publicField = (obj, key, value) => {
8722
8730
  {
8723
8731
  tableKey: "podSelector",
8724
8732
  loading: false,
8725
- data: datas,
8733
+ data: datas.slice((currentPage - 1) * currentSize, currentPage * currentSize),
8734
+ total: datas.length,
8726
8735
  columns: addDefaultRenderToColumns(columns),
8727
8736
  rowKey: "key",
8728
8737
  empty: t2("dovetail.empty"),
8729
- currentSize: 10,
8738
+ currentSize,
8730
8739
  currentPage,
8731
8740
  onPageChange: setCurrentPage,
8732
8741
  showMenuColumn: false
@@ -8738,6 +8747,7 @@ var __publicField = (obj, key, value) => {
8738
8747
  const component = React.useContext(ComponentContext);
8739
8748
  const Table$1 = component.Table || Table;
8740
8749
  const [currentPage, setCurrentPage] = React.useState(1);
8750
+ const currentSize = 10;
8741
8751
  const columns = [
8742
8752
  {
8743
8753
  key: "name",
@@ -8794,11 +8804,12 @@ var __publicField = (obj, key, value) => {
8794
8804
  {
8795
8805
  tableKey: "ports",
8796
8806
  loading: false,
8797
- data: ports,
8807
+ data: ports.slice((currentPage - 1) * currentSize, currentPage * currentSize),
8808
+ total: ports.length,
8798
8809
  columns: addDefaultRenderToColumns(columns),
8799
8810
  rowKey: "name",
8800
8811
  empty: t2("dovetail.empty"),
8801
- currentSize: 10,
8812
+ currentSize,
8802
8813
  currentPage,
8803
8814
  onPageChange: setCurrentPage,
8804
8815
  showMenuColumn: false
@@ -10117,6 +10128,7 @@ var __publicField = (obj, key, value) => {
10117
10128
  const { t: t2 } = useTranslation();
10118
10129
  const component = React.useContext(ComponentContext);
10119
10130
  const Table$1 = component.Table || Table;
10131
+ const currentSize = 10;
10120
10132
  const conditionsWithId = addId(conditions, "type");
10121
10133
  const columns = [
10122
10134
  {
@@ -10182,11 +10194,12 @@ var __publicField = (obj, key, value) => {
10182
10194
  {
10183
10195
  tableKey: "condition",
10184
10196
  loading: false,
10185
- data: conditionsWithId,
10197
+ data: conditionsWithId.slice((currentPage - 1) * currentSize, currentPage * currentSize),
10198
+ total: conditionsWithId.length,
10186
10199
  columns: addDefaultRenderToColumns(columns),
10187
10200
  rowKey: "type",
10188
10201
  empty: t2("dovetail.empty"),
10189
- currentSize: 10,
10202
+ currentSize,
10190
10203
  currentPage,
10191
10204
  onPageChange: setCurrentPage,
10192
10205
  showMenuColumn: false
@@ -10392,6 +10405,7 @@ var __publicField = (obj, key, value) => {
10392
10405
  const [currentPage, setCurrentPage] = React.useState(1);
10393
10406
  const component = React.useContext(ComponentContext);
10394
10407
  const Table$1 = component.Table || Table;
10408
+ const currentSize = 10;
10395
10409
  const {
10396
10410
  data: data2,
10397
10411
  isLoading
@@ -10428,13 +10442,14 @@ var __publicField = (obj, key, value) => {
10428
10442
  }), /* @__PURE__ */ jsxRuntimeExports.jsx(Table$1, {
10429
10443
  tableKey: "cronjobs",
10430
10444
  loading: isLoading,
10431
- data: dataSource || [],
10445
+ data: (dataSource || []).slice((currentPage - 1) * currentSize, currentPage * currentSize),
10446
+ total: (dataSource == null ? void 0 : dataSource.length) || 0,
10432
10447
  columns,
10433
10448
  rowKey: "id",
10434
10449
  error: false,
10435
10450
  currentPage,
10436
10451
  onPageChange: (p) => setCurrentPage(p),
10437
- currentSize: 10,
10452
+ currentSize,
10438
10453
  refetch: () => null,
10439
10454
  showMenuColumn: false
10440
10455
  })]
@@ -10443,6 +10458,7 @@ var __publicField = (obj, key, value) => {
10443
10458
  const EventsTable = ({}) => {
10444
10459
  const { i18n: i18n2 } = useTranslation();
10445
10460
  const [currentPage, setCurrentPage] = React.useState(1);
10461
+ const currentSize = 10;
10446
10462
  const { data: data2, isLoading } = core.useList({
10447
10463
  resource: "events",
10448
10464
  meta: { resourceBasePath: "/apis/events.k8s.io/v1", kind: "Event" },
@@ -10509,13 +10525,14 @@ var __publicField = (obj, key, value) => {
10509
10525
  {
10510
10526
  tableKey: "events",
10511
10527
  loading: isLoading,
10512
- data: dataSource || [],
10528
+ data: (dataSource || []).slice((currentPage - 1) * currentSize, currentPage * currentSize),
10529
+ total: (dataSource == null ? void 0 : dataSource.length) || 0,
10513
10530
  columns: addDefaultRenderToColumns(columns),
10514
10531
  rowKey: "id",
10515
10532
  error: false,
10516
10533
  currentPage,
10517
10534
  onPageChange: (p) => setCurrentPage(p),
10518
- currentSize: 10,
10535
+ currentSize,
10519
10536
  refetch: () => null,
10520
10537
  showMenuColumn: false
10521
10538
  }
@@ -10561,6 +10578,7 @@ var __publicField = (obj, key, value) => {
10561
10578
  const component = React.useContext(ComponentContext);
10562
10579
  const Table$1 = component.Table || Table;
10563
10580
  const [currentPage, setCurrentPage] = React.useState(1);
10581
+ const currentSize = 10;
10564
10582
  const columns = [
10565
10583
  {
10566
10584
  key: "pathType",
@@ -10635,18 +10653,19 @@ var __publicField = (obj, key, value) => {
10635
10653
  {
10636
10654
  tableKey: "ingressRules",
10637
10655
  loading: false,
10638
- data: rows,
10656
+ data: rows.slice((currentPage - 1) * currentSize, currentPage * currentSize),
10657
+ total: rows.length,
10639
10658
  columns: addDefaultRenderToColumns(columns),
10640
10659
  rowKey: "pathType",
10641
10660
  empty: t2("dovetail.empty"),
10642
- currentSize: 10,
10661
+ currentSize,
10643
10662
  currentPage,
10644
10663
  onPageChange: setCurrentPage,
10645
10664
  showMenuColumn: false
10646
10665
  }
10647
10666
  );
10648
10667
  };
10649
- const KeyValue_1ebh6uj = "";
10668
+ const KeyValue_1v1utgj = "";
10650
10669
  const ContentBlockStyle = "c8jy7dc";
10651
10670
  const KeyStyle = "k2sddxl";
10652
10671
  const ValueStyle$2 = "v16vicsr";
@@ -11078,6 +11097,7 @@ var __publicField = (obj, key, value) => {
11078
11097
  const [currentPage, setCurrentPage] = React.useState(1);
11079
11098
  const component = React.useContext(ComponentContext);
11080
11099
  const Table$1 = component.Table || Table;
11100
+ const currentSize = 10;
11081
11101
  const {
11082
11102
  data: data2
11083
11103
  } = core.useList({
@@ -11122,14 +11142,15 @@ var __publicField = (obj, key, value) => {
11122
11142
  }), /* @__PURE__ */ jsxRuntimeExports.jsx(Table$1, {
11123
11143
  tableKey: "pods",
11124
11144
  loading: !dataSource,
11125
- data: dataSource || [],
11145
+ data: (dataSource || []).slice((currentPage - 1) * currentSize, currentPage * currentSize),
11146
+ total: (dataSource == null ? void 0 : dataSource.length) || 0,
11126
11147
  columns: addDefaultRenderToColumns(columns),
11127
11148
  onSelect: (keys) => setSelectedKeys(keys),
11128
11149
  rowKey: "id",
11129
11150
  error: false,
11130
11151
  currentPage,
11131
11152
  onPageChange: (p) => setCurrentPage(p),
11132
- currentSize: 10,
11153
+ currentSize,
11133
11154
  refetch: () => null,
11134
11155
  showMenuColumn: false
11135
11156
  })]
@@ -11240,9 +11261,8 @@ var __publicField = (obj, key, value) => {
11240
11261
  onSubmit
11241
11262
  };
11242
11263
  }
11243
- const index_13sllsf = "";
11244
- const EditFieldModalStyle = "esoz3jw";
11245
- const EditButtonStyle = "e1m0bgls";
11264
+ const index_7c3887 = "";
11265
+ const EditButtonStyle = "esoz3jw";
11246
11266
  function EditFieldModal(props) {
11247
11267
  const {
11248
11268
  title,
@@ -11269,7 +11289,7 @@ var __publicField = (obj, key, value) => {
11269
11289
  reset();
11270
11290
  }, [reset]);
11271
11291
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(kit.modal, {
11272
- className: EditFieldModalStyle,
11292
+ className: ModalStyle,
11273
11293
  title: title || i18n2.t("dovetail.edit"),
11274
11294
  confirmLoading: submitting,
11275
11295
  onOk: onSubmit,
@@ -17311,7 +17331,7 @@ var __publicField = (obj, key, value) => {
17311
17331
  const LogViewer = React.forwardRef((props, ref) => React.createElement(LogViewerBase, Object.assign({ innerRef: ref }, props)));
17312
17332
  LogViewer.displayName = "LogViewer";
17313
17333
  const baseNoReset = "";
17314
- const index_yr3216 = "";
17334
+ const index_jv52b6 = "";
17315
17335
  const WrapperStyle$3 = "wve7dfm";
17316
17336
  const ToolbarStyle = "t9oeh3c";
17317
17337
  const ToolbarAreaStyle = "t1u2zqn6";
@@ -17403,7 +17423,6 @@ var __publicField = (obj, key, value) => {
17403
17423
  }
17404
17424
  const total = buffer + chunk.slice(0, lastIndex);
17405
17425
  buffer = chunk.slice(lastIndex + 1);
17406
- console.log(total);
17407
17426
  const formattedLogs = total.split("\n").filter(Boolean).map((line) => {
17408
17427
  const [timestamps, ...content] = line.split(" ");
17409
17428
  const t22 = new Date(timestamps).toLocaleString();
@@ -17728,7 +17747,8 @@ var __publicField = (obj, key, value) => {
17728
17747
  defaultValue: yaml.dump(ingressOrEgress),
17729
17748
  height: "300px",
17730
17749
  className: EditorStyle$1,
17731
- readOnly: true
17750
+ readOnly: true,
17751
+ isScrollOnFocus: true
17732
17752
  });
17733
17753
  };
17734
17754
  const PodContainersTable = ({
@@ -17739,6 +17759,7 @@ var __publicField = (obj, key, value) => {
17739
17759
  const component = React.useContext(ComponentContext);
17740
17760
  const Table$1 = component.Table || Table;
17741
17761
  const [currentPage, setCurrentPage] = React.useState(1);
17762
+ const currentSize = 10;
17742
17763
  const columns = React.useMemo(
17743
17764
  () => [
17744
17765
  {
@@ -17815,11 +17836,12 @@ var __publicField = (obj, key, value) => {
17815
17836
  {
17816
17837
  tableKey: "podContainers",
17817
17838
  loading: false,
17818
- data: dataSource,
17839
+ data: dataSource.slice((currentPage - 1) * currentSize, currentPage * currentSize),
17840
+ total: dataSource.length,
17819
17841
  columns: addDefaultRenderToColumns(columns),
17820
17842
  rowKey: "containerID",
17821
17843
  error: false,
17822
- currentSize: 10,
17844
+ currentSize,
17823
17845
  currentPage,
17824
17846
  onPageChange: setCurrentPage,
17825
17847
  showMenuColumn: false
@@ -18265,6 +18287,7 @@ var __publicField = (obj, key, value) => {
18265
18287
  return void 0;
18266
18288
  }
18267
18289
  }
18290
+ const GlobalStoreContext = React.createContext({});
18268
18291
  const index_1uuzt53 = "";
18269
18292
  const SelectStyle = "sj0ggy";
18270
18293
  const DropdownStyle = "d1eo8uqs";
@@ -18280,6 +18303,15 @@ var __publicField = (obj, key, value) => {
18280
18303
  const ALL_NS = "_all";
18281
18304
  const useNamespacesFilter = () => {
18282
18305
  const [value2] = useLocalStorage(NS_STORE_KEY, [ALL_NS]);
18306
+ const {
18307
+ resource
18308
+ } = core.useResource();
18309
+ const configs = React.useContext(ConfigsContext);
18310
+ if ((resource == null ? void 0 : resource.name) && configs[resource == null ? void 0 : resource.name].hideNamespacesFilter) {
18311
+ return {
18312
+ value: []
18313
+ };
18314
+ }
18283
18315
  return {
18284
18316
  value: value2
18285
18317
  };
@@ -18417,21 +18449,23 @@ var __publicField = (obj, key, value) => {
18417
18449
  const config = configs[(resource == null ? void 0 : resource.name) || ""];
18418
18450
  return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", {
18419
18451
  className: ListPageStyle,
18420
- children: [/* @__PURE__ */ jsxRuntimeExports.jsx(TableToolBar, {
18421
- selectedKeys,
18422
- description: config == null ? void 0 : config.description
18423
- }), /* @__PURE__ */ jsxRuntimeExports.jsx(eagle.Divider, {
18424
- style: {
18425
- margin: 0,
18426
- minHeight: 1,
18427
- marginRight: 24,
18428
- width: "calc(100% - 24px)"
18429
- }
18430
- }), /* @__PURE__ */ jsxRuntimeExports.jsxs("div", {
18452
+ children: [!config.hideListToolBar ? /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, {
18453
+ children: [/* @__PURE__ */ jsxRuntimeExports.jsx(TableToolBar, {
18454
+ selectedKeys,
18455
+ description: config == null ? void 0 : config.description
18456
+ }), /* @__PURE__ */ jsxRuntimeExports.jsx(eagle.Divider, {
18457
+ style: {
18458
+ margin: 0,
18459
+ minHeight: 1,
18460
+ marginRight: 24,
18461
+ width: "calc(100% - 24px)"
18462
+ }
18463
+ })]
18464
+ }) : void 0, /* @__PURE__ */ jsxRuntimeExports.jsxs("div", {
18431
18465
  className: ListContentStyle,
18432
- children: [/* @__PURE__ */ jsxRuntimeExports.jsx(NamespacesFilter, {
18466
+ children: [!config.hideNamespacesFilter ? /* @__PURE__ */ jsxRuntimeExports.jsx(NamespacesFilter, {
18433
18467
  className: NamespaceFilterStyle
18434
- }), /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
18468
+ }) : void 0, /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
18435
18469
  className: TableStyle,
18436
18470
  children: !(tableProps.data.length || tableProps.loading) ? /* @__PURE__ */ jsxRuntimeExports.jsx(WidgetErrorContent, {
18437
18471
  errorText: tableProps.empty || t2("dovetail.no_resource", {
@@ -21669,23 +21703,30 @@ var __publicField = (obj, key, value) => {
21669
21703
  var _a, _b;
21670
21704
  const {
21671
21705
  config,
21672
- control,
21706
+ formResult,
21673
21707
  action,
21674
21708
  errorMsg
21675
21709
  } = props;
21710
+ const {
21711
+ control,
21712
+ watch,
21713
+ getValues
21714
+ } = formResult;
21715
+ watch();
21676
21716
  const fields = (_b = (_a = config == null ? void 0 : config.formConfig) == null ? void 0 : _a.fields) == null ? void 0 : _b.map((c2) => {
21677
21717
  return /* @__PURE__ */ jsxRuntimeExports.jsx(Controller, {
21678
21718
  control,
21679
21719
  name: c2.path.join("."),
21680
21720
  rules: {
21681
- validate(value2, formValues) {
21721
+ validate(value2) {
21722
+ const formValue = getValues();
21682
21723
  if (!c2.validators || c2.validators.length === 0)
21683
21724
  return true;
21684
21725
  for (const func of c2.validators) {
21685
21726
  const {
21686
21727
  isValid,
21687
21728
  errorMsg: errorMsg2
21688
- } = func(value2, formValues);
21729
+ } = func(value2, formValue);
21689
21730
  if (!isValid)
21690
21731
  return errorMsg2;
21691
21732
  }
@@ -21702,6 +21743,7 @@ var __publicField = (obj, key, value) => {
21702
21743
  fieldState
21703
21744
  }) => {
21704
21745
  var _a2;
21746
+ const formValue = getValues();
21705
21747
  let ele = /* @__PURE__ */ jsxRuntimeExports.jsx(eagle.Fields.String, {
21706
21748
  input: {
21707
21749
  value: value2,
@@ -21730,6 +21772,9 @@ var __publicField = (obj, key, value) => {
21730
21772
  children: value2
21731
21773
  });
21732
21774
  }
21775
+ if (c2 == null ? void 0 : c2.render) {
21776
+ ele = c2.render(value2, onChange, formValue, onBlur);
21777
+ }
21733
21778
  return /* @__PURE__ */ jsxRuntimeExports.jsx(eagle.Form.Item, {
21734
21779
  label: c2.label,
21735
21780
  labelCol: {
@@ -22304,6 +22349,7 @@ var __publicField = (obj, key, value) => {
22304
22349
  resource: config.name,
22305
22350
  action: id ? "edit" : "create",
22306
22351
  id,
22352
+ liveMode: "off",
22307
22353
  ...refineProps
22308
22354
  },
22309
22355
  defaultValues: config == null ? void 0 : config.initValue
@@ -22663,7 +22709,6 @@ var __publicField = (obj, key, value) => {
22663
22709
  const content = yaml.dump(merged);
22664
22710
  return content.replace(/(')(#.+?)(')/g, "$2").replace(/( +)(#)/g, "$2$1");
22665
22711
  }
22666
- const GlobalStoreContext = React.createContext({});
22667
22712
  const useGlobalStore = () => {
22668
22713
  return React.useContext(GlobalStoreContext);
22669
22714
  };
@@ -23005,7 +23050,7 @@ var __publicField = (obj, key, value) => {
23005
23050
  const FormDescStyle = "f1qgcca6";
23006
23051
  const ErrorStyle = "e1tl3wq2";
23007
23052
  function FormModal(props) {
23008
- var _a, _b, _c, _d;
23053
+ var _a, _b, _c, _d, _e;
23009
23054
  const {
23010
23055
  resource: resourceFromProps,
23011
23056
  id,
@@ -23052,10 +23097,11 @@ var __publicField = (obj, key, value) => {
23052
23097
  onMutationSuccess: () => {
23053
23098
  eagle.popModal();
23054
23099
  },
23055
- redirect: false
23100
+ redirect: false,
23101
+ ...(_a = config.formConfig) == null ? void 0 : _a.refineCoreProps
23056
23102
  }
23057
23103
  });
23058
- const isYamlForm = !((_a = config.formConfig) == null ? void 0 : _a.fields);
23104
+ const isYamlForm = !((_b = config.formConfig) == null ? void 0 : _b.fields);
23059
23105
  const formEle = (() => {
23060
23106
  if (renderForm) {
23061
23107
  return renderForm(yamlFormProps);
@@ -23065,7 +23111,7 @@ var __publicField = (obj, key, value) => {
23065
23111
  ...yamlFormProps
23066
23112
  });
23067
23113
  return /* @__PURE__ */ jsxRuntimeExports.jsx(RefineFormContent, {
23068
- control: refineFormResult.formResult.control,
23114
+ formResult: refineFormResult.formResult,
23069
23115
  config,
23070
23116
  errorMsg: refineFormResult.responseErrorMsg,
23071
23117
  action: id ? "edit" : "create"
@@ -23087,7 +23133,7 @@ var __publicField = (obj, key, value) => {
23087
23133
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(eagle.Modal, {
23088
23134
  className: FullscreenModalStyle,
23089
23135
  width: "calc(100vw - 16px)",
23090
- title: ((_b = config.formConfig) == null ? void 0 : _b.formTitle) || title,
23136
+ title: ((_c = config.formConfig) == null ? void 0 : _c.formTitle) || title,
23091
23137
  error: errorText ? /* @__PURE__ */ jsxRuntimeExports.jsxs("div", {
23092
23138
  className: ErrorStyle,
23093
23139
  children: [/* @__PURE__ */ jsxRuntimeExports.jsx(iconsReact.ExclamationErrorCircleFill16RedIcon, {}), " ", errorText]
@@ -23099,9 +23145,9 @@ var __publicField = (obj, key, value) => {
23099
23145
  onCancel,
23100
23146
  destroyOnClose: true,
23101
23147
  fullscreen: true,
23102
- children: [((_c = config.formConfig) == null ? void 0 : _c.formDesc) ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
23148
+ children: [((_d = config.formConfig) == null ? void 0 : _d.formDesc) ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
23103
23149
  className: FormDescStyle,
23104
- children: (_d = config.formConfig) == null ? void 0 : _d.formDesc
23150
+ children: (_e = config.formConfig) == null ? void 0 : _e.formDesc
23105
23151
  }) : void 0, formEle]
23106
23152
  });
23107
23153
  }
@@ -23128,8 +23174,7 @@ var __publicField = (obj, key, value) => {
23128
23174
  onFinish
23129
23175
  },
23130
23176
  getValues,
23131
- saveButtonProps,
23132
- control
23177
+ saveButtonProps
23133
23178
  } = formResult;
23134
23179
  const onClick = () => {
23135
23180
  const data2 = getValues();
@@ -23140,7 +23185,7 @@ var __publicField = (obj, key, value) => {
23140
23185
  className: "c1pvtlkp",
23141
23186
  children: [/* @__PURE__ */ jsxRuntimeExports.jsx(RefineFormContent, {
23142
23187
  config,
23143
- control
23188
+ formResult
23144
23189
  }), ";", /* @__PURE__ */ jsxRuntimeExports.jsx(eagle.Button, {
23145
23190
  ...saveButtonProps,
23146
23191
  onClick,
@@ -24015,7 +24060,7 @@ var __publicField = (obj, key, value) => {
24015
24060
  }));
24016
24061
  }
24017
24062
  const useEagleTable = (params) => {
24018
- var _a;
24063
+ var _a, _b, _c;
24019
24064
  const { columns, tableProps, formatter, Dropdown = K8sDropdown } = params;
24020
24065
  const [selectedKeys, setSelectedKeys] = React.useState([]);
24021
24066
  const [currentPage, setCurrentPage] = React.useState((tableProps == null ? void 0 : tableProps.currentPage) || 1);
@@ -24052,7 +24097,9 @@ var __publicField = (obj, key, value) => {
24052
24097
  },
24053
24098
  [setCurrentPage]
24054
24099
  );
24055
- const data2 = (_a = table.tableQueryResult.data) == null ? void 0 : _a.data;
24100
+ const currentSize = (tableProps == null ? void 0 : tableProps.currentSize) || 5;
24101
+ const data2 = (_b = (_a = table.tableQueryResult.data) == null ? void 0 : _a.data) == null ? void 0 : _b.slice((currentPage - 1) * currentSize, currentPage * currentSize);
24102
+ const total = ((_c = table.tableQueryResult.data) == null ? void 0 : _c.data.length) || 0;
24056
24103
  const finalDataSource = formatter ? data2 == null ? void 0 : data2.map(formatter) : data2;
24057
24104
  const finalProps = {
24058
24105
  tableKey: (resource == null ? void 0 : resource.name) || "table",
@@ -24063,11 +24110,12 @@ var __publicField = (obj, key, value) => {
24063
24110
  error: false,
24064
24111
  rowKey: "id",
24065
24112
  currentPage,
24066
- currentSize: (tableProps == null ? void 0 : tableProps.currentSize) || 5,
24113
+ currentSize,
24067
24114
  onPageChange,
24068
24115
  onSelect: (keys) => {
24069
24116
  setSelectedKeys(keys);
24070
24117
  },
24118
+ total,
24071
24119
  RowMenu: Dropdown
24072
24120
  };
24073
24121
  return { tableProps: finalProps, selectedKeys, ...table };
@@ -24388,6 +24436,7 @@ var __publicField = (obj, key, value) => {
24388
24436
  exports2.ListPage = ListPage;
24389
24437
  exports2.Menu = Menu;
24390
24438
  exports2.MetadataForm = MetadataForm;
24439
+ exports2.ModalStyle = ModalStyle;
24391
24440
  exports2.NETWORK_POLICY_INIT_VALUE = NETWORK_POLICY_INIT_VALUE;
24392
24441
  exports2.NS_STORE_KEY = NS_STORE_KEY;
24393
24442
  exports2.NameColumnRenderer = NameColumnRenderer;