@dovetail-v2/refine 0.0.61-alpha.0 → 0.0.61

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 (226) hide show
  1. package/dist/{MonacoYamlDiffEditor-e5cfbfbd.js → MonacoYamlDiffEditor-0413ec6d.js} +1 -1
  2. package/dist/{index-f46a38ea.js → index-ff0b07db.js} +501 -643
  3. package/dist/refine.js +158 -175
  4. package/dist/refine.umd.cjs +344 -486
  5. package/dist/style.css +2 -2
  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/index.js +4 -0
  28. package/lib/src/components/Form/type.d.ts +3 -4
  29. package/lib/src/components/Form/useRefineForm.d.ts +4 -1
  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.d.ts +1 -1
  39. package/lib/src/components/K8sDropdown/index.js +31 -0
  40. package/lib/src/components/KeyValue/KeyValue.js +27 -0
  41. package/lib/src/components/KeyValue/index.js +1 -0
  42. package/lib/src/components/KeyValueData/index.js +50 -0
  43. package/lib/src/components/Layout/index.js +39 -0
  44. package/lib/src/components/ListPage/index.js +25 -0
  45. package/lib/src/components/Menu/index.js +36 -0
  46. package/lib/src/components/NamespacesFilter/index.js +34 -0
  47. package/lib/src/components/NetworkPolicyRulesTable/NetworkPolicyRulesTable.d.ts +1 -2
  48. package/lib/src/components/NetworkPolicyRulesTable/NetworkPolicyRulesTable.js +77 -0
  49. package/lib/src/components/NetworkPolicyRulesTable/index.js +1 -0
  50. package/lib/src/components/PageShow/PageShow.js +11 -0
  51. package/lib/src/components/PageShow/index.js +1 -0
  52. package/lib/src/components/PodContainersTable/PodContainersTable.js +78 -0
  53. package/lib/src/components/PodContainersTable/index.js +1 -0
  54. package/lib/src/components/PodLog/index.js +136 -0
  55. package/lib/src/components/ReferenceLink/index.js +17 -0
  56. package/lib/src/components/RefineForm/RefineFormContent.d.ts +10 -0
  57. package/lib/src/components/RefineForm/RefineFormModal.d.ts +8 -0
  58. package/lib/src/components/RefineForm/RefineFormPage.d.ts +7 -0
  59. package/lib/src/components/RefineForm/index.d.ts +3 -0
  60. package/lib/src/components/RefineForm/type.d.ts +20 -0
  61. package/lib/src/components/RefineForm/useRefineForm.d.ts +10 -0
  62. package/lib/src/components/ResourceCRUD/ResourceCRUD.js +15 -0
  63. package/lib/src/components/ResourceCRUD/create/index.js +13 -0
  64. package/lib/src/components/ResourceCRUD/index.js +4 -0
  65. package/lib/src/components/ResourceCRUD/list/index.js +19 -0
  66. package/lib/src/components/ResourceCRUD/show/index.js +6 -0
  67. package/lib/src/components/ResourceLink/index.js +21 -0
  68. package/lib/src/components/ResourceUsageBar/index.js +81 -0
  69. package/lib/src/components/Separator/index.js +11 -0
  70. package/lib/src/components/ShowContent/ShowContent.js +157 -0
  71. package/lib/src/components/ShowContent/fields.js +157 -0
  72. package/lib/src/components/ShowContent/index.js +2 -0
  73. package/lib/src/components/StateTag/StateTag.js +22 -0
  74. package/lib/src/components/StateTag/index.js +1 -0
  75. package/lib/src/components/Table/ErrorContent.js +36 -0
  76. package/lib/src/components/Table/TableToolBar.js +14 -0
  77. package/lib/src/components/Table/TableWidgets.js +28 -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/ValueDisplay/index.d.ts +1 -1
  82. package/lib/src/components/WorkloadDropdown/index.js +24 -0
  83. package/lib/src/components/WorkloadPodsTable/WorkloadPodsTable.js +39 -0
  84. package/lib/src/components/WorkloadPodsTable/index.js +1 -0
  85. package/lib/src/components/WorkloadReplicas/index.js +50 -0
  86. package/lib/src/components/YamlEditor/MonacoYamlDiffEditor.js +34 -0
  87. package/lib/src/components/YamlEditor/MonacoYamlEditor.js +149 -0
  88. package/lib/src/components/YamlEditor/YamlEditorComponent.js +90 -0
  89. package/lib/src/components/YamlEditor/index.js +1 -0
  90. package/lib/src/components/YamlEditor/style.js +102 -0
  91. package/lib/src/components/YamlEditor/yaml.worker.js +1 -0
  92. package/lib/src/components/YamlForm/index.d.ts +0 -4
  93. package/lib/src/components/YamlForm/index.js +61 -0
  94. package/lib/src/components/index.d.ts +0 -2
  95. package/lib/src/components/index.js +38 -0
  96. package/lib/src/constants/index.js +2 -0
  97. package/lib/src/constants/k8s.d.ts +0 -18
  98. package/lib/src/constants/k8s.js +203 -0
  99. package/lib/src/constants/state.js +15 -0
  100. package/lib/src/contexts/component.js +3 -0
  101. package/lib/src/contexts/configs.js +3 -0
  102. package/lib/src/contexts/global-store.js +3 -0
  103. package/lib/src/contexts/index.js +3 -0
  104. package/lib/src/hooks/index.js +7 -0
  105. package/lib/src/hooks/useDeleteModal/index.js +1 -0
  106. package/lib/src/hooks/useDeleteModal/useDeleteManyModal.js +31 -0
  107. package/lib/src/hooks/useDeleteModal/useDeleteModal.js +38 -0
  108. package/lib/src/hooks/useDownloadYAML.js +10 -0
  109. package/lib/src/hooks/useEagleForm.d.ts +1 -2
  110. package/lib/src/hooks/useEagleForm.js +177 -0
  111. package/lib/src/hooks/useEagleTable/columns.d.ts +1 -8
  112. package/lib/src/hooks/useEagleTable/columns.js +246 -0
  113. package/lib/src/hooks/useEagleTable/index.js +2 -0
  114. package/lib/src/hooks/useEagleTable/useEagleTable.js +63 -0
  115. package/lib/src/hooks/useEdit.js +19 -0
  116. package/lib/src/hooks/useGlobalStore.js +5 -0
  117. package/lib/src/hooks/useK8sYamlEditor.js +37 -0
  118. package/lib/src/hooks/useOpenForm.js +43 -0
  119. package/lib/src/hooks/useSchema.js +37 -0
  120. package/lib/src/hooks/useSubmitForm.js +42 -0
  121. package/lib/src/i18n.js +19 -0
  122. package/lib/src/index.js +13 -0
  123. package/lib/src/locales/en-US/dovetail.json +18 -0
  124. package/lib/src/locales/en-US/index.js +4 -0
  125. package/lib/src/locales/index.js +6 -0
  126. package/lib/src/locales/zh-CN/dovetail.json +91 -0
  127. package/lib/src/locales/zh-CN/index.js +4 -0
  128. package/lib/src/main.js +12 -0
  129. package/lib/src/models/cronjob-model.js +32 -0
  130. package/lib/src/models/daemonset-model.js +17 -0
  131. package/lib/src/models/deployment-model.js +17 -0
  132. package/lib/src/models/event-model.js +11 -0
  133. package/lib/src/models/index.d.ts +0 -4
  134. package/lib/src/models/index.js +14 -0
  135. package/lib/src/models/ingress-model.d.ts +1 -0
  136. package/lib/src/models/ingress-model.js +24 -0
  137. package/lib/src/models/job-model.js +56 -0
  138. package/lib/src/models/network-policy-model.js +10 -0
  139. package/lib/src/models/pod-metrics-model.js +34 -0
  140. package/lib/src/models/pod-model.js +78 -0
  141. package/lib/src/models/resource-model.js +34 -0
  142. package/lib/src/models/server-instance-model.d.ts +10 -0
  143. package/lib/src/models/service-model.js +17 -0
  144. package/lib/src/models/statefulset-model.js +17 -0
  145. package/lib/src/models/types/index.js +1 -0
  146. package/lib/src/models/types/metric.js +1 -0
  147. package/lib/src/models/workload-base-model.d.ts +2 -2
  148. package/lib/src/models/workload-base-model.js +22 -0
  149. package/lib/src/models/workload-model.js +51 -0
  150. package/lib/src/pages/configmaps/index.js +15 -0
  151. package/lib/src/pages/cronjobs/create/index.js +6 -0
  152. package/lib/src/pages/{nodes/index.d.ts → cronjobs/index.js} +1 -0
  153. package/lib/src/pages/cronjobs/list/index.js +42 -0
  154. package/lib/src/pages/cronjobs/show/index.js +16 -0
  155. package/lib/src/pages/daemonsets/create/index.js +6 -0
  156. package/lib/src/pages/daemonsets/index.js +3 -0
  157. package/lib/src/pages/daemonsets/list/index.js +32 -0
  158. package/lib/src/pages/daemonsets/show/index.js +16 -0
  159. package/lib/src/pages/deployments/create/index.js +7 -0
  160. package/lib/src/pages/deployments/index.js +3 -0
  161. package/lib/src/pages/deployments/list/index.js +26 -0
  162. package/lib/src/pages/deployments/show/index.js +16 -0
  163. package/lib/src/pages/ingresses/index.js +26 -0
  164. package/lib/src/pages/jobs/index.js +34 -0
  165. package/lib/src/pages/networkPolicies/index.js +67 -0
  166. package/lib/src/pages/pods/create/index.js +6 -0
  167. package/lib/src/pages/pods/index.js +3 -0
  168. package/lib/src/pages/pods/list/index.js +81 -0
  169. package/lib/src/pages/pods/show/index.js +54 -0
  170. package/lib/src/pages/secrets/index.js +15 -0
  171. package/lib/src/pages/services/index.js +26 -0
  172. package/lib/src/pages/statefulsets/create/index.js +6 -0
  173. package/lib/src/pages/statefulsets/index.js +3 -0
  174. package/lib/src/pages/statefulsets/list/index.js +26 -0
  175. package/lib/src/pages/statefulsets/show/index.js +16 -0
  176. package/lib/src/plugins/index.js +3 -0
  177. package/lib/src/plugins/model-plugin.js +46 -0
  178. package/lib/src/plugins/relation-plugin.js +81 -0
  179. package/lib/src/plugins/type.js +1 -0
  180. package/lib/src/providers/index.js +1 -0
  181. package/lib/src/providers/router-provider/index.js +100 -0
  182. package/lib/src/types/index.js +1 -0
  183. package/lib/src/types/resource.d.ts +3 -4
  184. package/lib/src/types/resource.js +12 -0
  185. package/lib/src/utils/addId.js +8 -0
  186. package/lib/src/utils/download.js +9 -0
  187. package/lib/src/utils/error.js +53 -0
  188. package/lib/src/utils/form.js +9 -0
  189. package/lib/src/utils/k8s.js +6 -0
  190. package/lib/src/utils/labels.js +15 -0
  191. package/lib/src/utils/match-selector.js +12 -0
  192. package/lib/src/utils/openapi.js +33 -0
  193. package/lib/src/utils/schema.js +117 -0
  194. package/lib/src/utils/selector.js +12 -0
  195. package/lib/src/utils/string.js +6 -0
  196. package/lib/src/utils/time.js +46 -0
  197. package/lib/src/utils/unit.js +69 -0
  198. package/lib/src/utils/yaml.js +44 -0
  199. package/lib/vite.config.js +60 -0
  200. package/package.json +1 -1
  201. package/lib/src/components/ModalContextProvider/index.d.ts +0 -12
  202. package/lib/src/components/PodDropdown/index.d.ts +0 -9
  203. package/lib/src/components/PodShellModal/index.d.ts +0 -7
  204. package/lib/src/components/ResourceSelect/index.d.ts +0 -12
  205. package/lib/src/hooks/useModal.d.ts +0 -0
  206. package/lib/src/hooks/useNamespaceFilter.d.ts +0 -5
  207. package/lib/src/model/cronjob-model.d.ts +0 -9
  208. package/lib/src/model/index.d.ts +0 -6
  209. package/lib/src/model/job-model.d.ts +0 -10
  210. package/lib/src/model/pod-metrics-model.d.ts +0 -7
  211. package/lib/src/model/pod-model.d.ts +0 -15
  212. package/lib/src/model/resource-model.d.ts +0 -17
  213. package/lib/src/model/workload-model.d.ts +0 -17
  214. package/lib/src/models/node-model.d.ts +0 -15
  215. package/lib/src/models/persistent-volume-claim.d.ts +0 -10
  216. package/lib/src/models/persistent-volume.d.ts +0 -10
  217. package/lib/src/models/storage-class.d.ts +0 -10
  218. package/lib/src/pages/nodes/hooks/useNodeMetrics.d.ts +0 -17
  219. package/lib/src/pages/nodes/list/index.d.ts +0 -3
  220. package/lib/src/pages/nodes/show/index.d.ts +0 -3
  221. package/lib/src/pages/storageclasses/form/index.d.ts +0 -9
  222. package/lib/src/pages/storageclasses/index.d.ts +0 -44
  223. package/lib/src/pages/storageclasses/list/index.d.ts +0 -3
  224. package/lib/src/pages/storageclasses/show/index.d.ts +0 -3
  225. package/lib/src/types/metric.d.ts +0 -25
  226. package/lib/src/utils/shell.d.ts +0 -5
@@ -10,7 +10,7 @@ import React__default, { createElement, isValidElement, cloneElement, Children,
10
10
  import { ResourceContext, matchResourceFromRoute, useResource, useDelete, useNavigation, useBreadcrumb, useList, useParsed, useGo, useCan, useTable, useDeleteMany, CanAccess, useShow, useUpdate, useDataProvider, useRefineContext, useTranslate, useWarnAboutChange, useForm as useForm$2, flattenObjectKeys, pickNotDeprecated, useMenu, Refine } from "@refinedev/core";
11
11
  import { parse, stringify } from "qs";
12
12
  import { useLocation, useHistory, useParams, matchPath, Link, Route, NavLink, Router } from "react-router-dom";
13
- import { Typo, Tag, useUIKit, kitContext, OverflowTooltip, Tooltip, StatusCapsule, usePushModal, Icon as Icon$1, Link as Link$1, Button, usePopModal, Loading, Divider, Fields, Space, Form, Modal, Select, AntdOption, useMessage, ModalStack, KitStoreProvider } from "@cloudtower/eagle";
13
+ import { Typo, Tag, useUIKit, kitContext, OverflowTooltip, Tooltip, StatusCapsule, usePushModal, Icon as Icon$1, Link as Link$1, Button, usePopModal, Loading, Divider, Fields, Space, Form, Modal, useMessage, ModalStack, KitStoreProvider } from "@cloudtower/eagle";
14
14
  import { EditPen16PrimaryIcon, Download16GradientBlueIcon, TrashBinDelete16Icon, MoreEllipsis324BoldSecondaryIcon, MoreEllipsis324BoldBlueIcon, MoreEllipsis316BoldBlueIcon, PlusAddCreateNew16BoldOntintIcon, ArrowChevronLeft16BoldTertiaryIcon, ArrowChevronLeftSmall16BoldBlueIcon, EditPen16GradientBlueIcon, ViewEye16GradientGrayIcon, EntityFilterIgnoreGradient16GrayIcon, RecoverContinue16GradientBlueIcon, SuspendedPause16GradientBlueIcon, Retry16GradientBlueIcon, HierarchyTriangleRight16GrayIcon, HierarchyTriangleRight16BlueIcon, ClipboardCopy16GradientGrayIcon, ClipboardCopy16GradientBlueIcon, Retry16GradientGrayIcon, EditPen16GradientGrayIcon, Showdiff16GradientGrayIcon, Showdiff16GradientBlueIcon, XmarkFailedSeriousWarningFill16RedIcon, ExclamationErrorCircleFill16RedIcon, Pause16GradientBlueIcon } from "@cloudtower/icons-react";
15
15
  import { omit as omit$1, merge, get as get$3, first, debounce, last, isObject as isObject$4, keyBy } from "lodash-es";
16
16
  import yaml from "js-yaml";
@@ -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
- } }, m = 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: m, z: function(t3) {
39
- var e3 = -t3.utcOffset(), n3 = Math.abs(e3), r3 = Math.floor(n3 / 60), i3 = n3 % 60;
40
- return (e3 <= 0 ? "+" : "-") + m(r3, 2, "0") + ":" + m(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 m2 = M2.prototype;
85
- return m2.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
- }, m2.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
- }, m2.$utils = function() {
107
- return b;
108
- }, m2.isValid = function() {
109
- return !(this.$d.toString() === l);
110
- }, m2.isSame = function(t3, e3) {
111
- var n3 = O(t3);
112
- return this.startOf(e3) <= n3 && n3 <= this.endOf(e3);
113
- }, m2.isAfter = function(t3, e3) {
114
- return O(t3) < this.startOf(e3);
115
- }, m2.isBefore = function(t3, e3) {
116
- return this.endOf(e3) < O(t3);
117
- }, m2.$g = function(t3, e3, n3) {
118
- return b.u(t3) ? this[e3] : this.set(n3, t3);
119
- }, m2.unix = function() {
120
- return Math.floor(this.valueOf() / 1e3);
121
- }, m2.valueOf = function() {
122
- return this.$d.getTime();
123
- }, m2.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, m3 = 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 ? m3 - D2 : m3 + (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
- }, m2.endOf = function(t3) {
151
- return this.startOf(t3, false);
152
- }, m2.$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
- }, m2.set = function(t3, e3) {
161
- return this.clone().$set(t3, e3);
162
- }, m2.get = function(t3) {
163
- return this[b.p(t3)]();
164
- }, m2.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, m3 = this.$d.getTime() + r3 * M3;
180
- return b.w(m3, this);
181
- }, m2.subtract = function(t3, e3) {
182
- return this.add(-1 * t3, e3);
183
- }, m2.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
+ } }, m = 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: m, z: function(t3) {
44
+ var e3 = -t3.utcOffset(), n3 = Math.abs(e3), r3 = Math.floor(n3 / 60), i3 = n3 % 60;
45
+ return (e3 <= 0 ? "+" : "-") + m(r3, 2, "0") + ":" + m(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 m2 = M2.prototype;
90
+ return m2.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
- }, m2.utcOffset = function() {
251
- return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
252
- }, m2.diff = function(r3, d2, l2) {
253
- var $2, y2 = this, M3 = b.p(d2), m3 = O(r3), v2 = (m3.utcOffset() - this.utcOffset()) * e2, g2 = this - m3, D2 = function() {
254
- return b.m(y2, m3);
106
+ return new Date(e3);
107
+ }(t3), this.init();
108
+ }, m2.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
+ }, m2.$utils = function() {
112
+ return b;
113
+ }, m2.isValid = function() {
114
+ return !(this.$d.toString() === l);
115
+ }, m2.isSame = function(t3, e3) {
116
+ var n3 = O(t3);
117
+ return this.startOf(e3) <= n3 && n3 <= this.endOf(e3);
118
+ }, m2.isAfter = function(t3, e3) {
119
+ return O(t3) < this.startOf(e3);
120
+ }, m2.isBefore = function(t3, e3) {
121
+ return this.endOf(e3) < O(t3);
122
+ }, m2.$g = function(t3, e3, n3) {
123
+ return b.u(t3) ? this[e3] : this.set(n3, t3);
124
+ }, m2.unix = function() {
125
+ return Math.floor(this.valueOf() / 1e3);
126
+ }, m2.valueOf = function() {
127
+ return this.$d.getTime();
128
+ }, m2.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, m3 = 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 ? m3 - D2 : m3 + (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
+ }, m2.endOf = function(t3) {
156
+ return this.startOf(t3, false);
157
+ }, m2.$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
+ }, m2.set = function(t3, e3) {
166
+ return this.clone().$set(t3, e3);
167
+ }, m2.get = function(t3) {
168
+ return this[b.p(t3)]();
169
+ }, m2.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, m3 = this.$d.getTime() + r3 * M3;
185
+ return b.w(m3, this);
186
+ }, m2.subtract = function(t3, e3) {
187
+ return this.add(-1 * t3, e3);
188
+ }, m2.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
+ }, m2.utcOffset = function() {
256
+ return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
257
+ }, m2.diff = function(r3, d2, l2) {
258
+ var $2, y2 = this, M3 = b.p(d2), m3 = O(r3), v2 = (m3.utcOffset() - this.utcOffset()) * e2, g2 = this - m3, D2 = function() {
259
+ return b.m(y2, m3);
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
+ }, m2.daysInMonth = function() {
291
+ return this.endOf(c2).$D;
292
+ }, m2.$locale = function() {
293
+ return D[this.$L];
294
+ }, m2.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
+ }, m2.clone = function() {
300
+ return b.w(this.$d, this);
301
+ }, m2.toDate = function() {
302
+ return new Date(this.valueOf());
303
+ }, m2.toJSON = function() {
304
+ return this.isValid() ? this.toISOString() : null;
305
+ }, m2.toISOString = function() {
306
+ return this.$d.toISOString();
307
+ }, m2.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
- }, m2.daysInMonth = function() {
286
- return this.endOf(c2).$D;
287
- }, m2.$locale = function() {
288
- return D[this.$L];
289
- }, m2.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
- }, m2.clone = function() {
295
- return b.w(this.$d, this);
296
- }, m2.toDate = function() {
297
- return new Date(this.valueOf());
298
- }, m2.toJSON = function() {
299
- return this.isValid() ? this.toISOString() : null;
300
- }, m2.toISOString = function() {
301
- return this.$d.toISOString();
302
- }, m2.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 };
@@ -8975,34 +8982,46 @@ class ResourceModel {
8975
8982
  }
8976
8983
  class IngressModel extends ResourceModel {
8977
8984
  constructor(_rawYaml, _globalStore) {
8978
- var _a;
8979
8985
  super(_rawYaml, _globalStore);
8980
- __publicField(this, "flattenedRules");
8986
+ __publicField(this, "flattenedRules", []);
8981
8987
  this._rawYaml = _rawYaml;
8982
8988
  this._globalStore = _globalStore;
8983
- this.flattenedRules = ((_a = this._rawYaml.spec.rules) == null ? void 0 : _a.reduce((res, rule2) => {
8989
+ }
8990
+ async init() {
8991
+ var _a, _b, _c, _d;
8992
+ const services = await this._globalStore.get("services", {
8993
+ resourceBasePath: "/api/v1",
8994
+ kind: "Service"
8995
+ });
8996
+ const protocal = !!this._rawYaml.spec.tls ? "https" : "http";
8997
+ const servicePort = (_c = (_b = (_a = services.items.find((s2) => {
8998
+ var _a2, _b2;
8999
+ return ((_a2 = s2.metadata) == null ? void 0 : _a2.name) === "contour-envoy" && ((_b2 = s2.spec) == null ? void 0 : _b2.type) === "NodePort";
9000
+ })) == null ? void 0 : _a.spec) == null ? void 0 : _b.ports) == null ? void 0 : _c.find((p) => p.name === protocal);
9001
+ this.flattenedRules = ((_d = this._rawYaml.spec.rules) == null ? void 0 : _d.reduce((res, rule2) => {
8984
9002
  var _a2;
8985
9003
  const paths = (_a2 = rule2.http) == null ? void 0 : _a2.paths.map((p) => {
8986
- var _a3, _b, _c, _d, _e, _f;
9004
+ var _a3, _b2, _c2, _d2, _e, _f;
8987
9005
  return {
8988
9006
  resourceName: ((_a3 = p.backend.resource) == null ? void 0 : _a3.name) || "",
8989
- serviceName: ((_b = p.backend.service) == null ? void 0 : _b.name) || "",
8990
- fullPath: this.getFullPath(rule2, p.path),
9007
+ serviceName: ((_b2 = p.backend.service) == null ? void 0 : _b2.name) || "",
9008
+ fullPath: this.getFullPath(rule2, p.path, servicePort == null ? void 0 : servicePort.nodePort),
8991
9009
  pathType: p.pathType,
8992
- servicePort: ((_d = (_c = p.backend.service) == null ? void 0 : _c.port) == null ? void 0 : _d.number) || ((_f = (_e = p.backend.service) == null ? void 0 : _e.port) == null ? void 0 : _f.name),
9010
+ servicePort: ((_d2 = (_c2 = p.backend.service) == null ? void 0 : _c2.port) == null ? void 0 : _d2.number) || ((_f = (_e = p.backend.service) == null ? void 0 : _e.port) == null ? void 0 : _f.name),
8993
9011
  host: rule2.host
8994
9012
  };
8995
9013
  });
8996
9014
  return [...res, ...paths || []];
8997
9015
  }, [])) || [];
8998
9016
  }
8999
- getFullPath(rule2, path2 = "") {
9017
+ getFullPath(rule2, path2 = "", port2) {
9000
9018
  if (!rule2.host) {
9001
9019
  return path2 || "";
9002
9020
  }
9003
9021
  const hostValue = rule2.host || "";
9004
9022
  const protocal = this._rawYaml.spec.tls ? "https://" : "http://";
9005
- return `${protocal}${hostValue}${path2}`;
9023
+ const portText = port2 ? `:${port2}` : "";
9024
+ return `${protocal}${hostValue}${portText}${path2}`;
9006
9025
  }
9007
9026
  }
9008
9027
  class NetworkPolicyModel extends ResourceModel {
@@ -9532,24 +9551,6 @@ const SECRET_CUSTOM_INIT_VALUE = {
9532
9551
  "type": "",
9533
9552
  "data": {}
9534
9553
  };
9535
- const NODE_INIT_VALUE = {
9536
- "apiVersion": "v1",
9537
- "kind": "Node",
9538
- "metadata": {
9539
- "name": "example",
9540
- "namespace": "default"
9541
- },
9542
- "spec": {}
9543
- };
9544
- const STORAGE_CLASS_INIT_VALUE = {
9545
- "apiVersion": "storage.k8s.io/v1",
9546
- "kind": "StorageClass",
9547
- "metadata": {
9548
- "name": "example",
9549
- "namespace": "default"
9550
- },
9551
- "spec": {}
9552
- };
9553
9554
  var WorkloadState = /* @__PURE__ */ ((WorkloadState2) => {
9554
9555
  WorkloadState2["Terminated"] = "terminated";
9555
9556
  WorkloadState2["UPDATING"] = "updating";
@@ -10035,42 +10036,6 @@ class ServiceModel extends ResourceModel {
10035
10036
  });
10036
10037
  }
10037
10038
  }
10038
- var NodeRole = /* @__PURE__ */ ((NodeRole2) => {
10039
- NodeRole2["ControlPlane"] = "Control Plane";
10040
- NodeRole2["Worker"] = "Worker";
10041
- return NodeRole2;
10042
- })(NodeRole || {});
10043
- class NodeModel extends WorkloadBaseModel {
10044
- constructor(_rawYaml, _globalStore) {
10045
- super(_rawYaml, _globalStore);
10046
- this._rawYaml = _rawYaml;
10047
- this._globalStore = _globalStore;
10048
- }
10049
- get role() {
10050
- return "node-role.kubernetes.io/control-plane" in (this.metadata.labels || {}) ? "Control Plane" : "Worker";
10051
- }
10052
- }
10053
- class StorageClassModel extends ResourceModel {
10054
- constructor(_rawYaml, _globalStore) {
10055
- super(_rawYaml, _globalStore);
10056
- this._rawYaml = _rawYaml;
10057
- this._globalStore = _globalStore;
10058
- }
10059
- }
10060
- class PersistentVolumeModel extends ResourceModel {
10061
- constructor(_rawYaml, _globalStore) {
10062
- super(_rawYaml, _globalStore);
10063
- this._rawYaml = _rawYaml;
10064
- this._globalStore = _globalStore;
10065
- }
10066
- }
10067
- class PersistentVolumeClaimModel extends ResourceModel {
10068
- constructor(_rawYaml, _globalStore) {
10069
- super(_rawYaml, _globalStore);
10070
- this._rawYaml = _rawYaml;
10071
- this._globalStore = _globalStore;
10072
- }
10073
- }
10074
10039
  const index_1lzkrja = "";
10075
10040
  const ServiceInClusterAccessComponent = ({
10076
10041
  service
@@ -10467,8 +10432,6 @@ var RESOURCE_GROUP = /* @__PURE__ */ ((RESOURCE_GROUP2) => {
10467
10432
  RESOURCE_GROUP2["CLUSTER"] = "CLUSTER";
10468
10433
  RESOURCE_GROUP2["SERVICE"] = "SERVICE";
10469
10434
  RESOURCE_GROUP2["SERVICE_AND_NETWORK"] = "SERVICE_AND_NETWORK";
10470
- RESOURCE_GROUP2["CONFIG"] = "CONFIG";
10471
- RESOURCE_GROUP2["NODE_MANAGEMENT"] = "NODE_MANAGEMENT";
10472
10435
  return RESOURCE_GROUP2;
10473
10436
  })(RESOURCE_GROUP || {});
10474
10437
  var FormType = /* @__PURE__ */ ((FormType2) => {
@@ -22178,7 +22141,7 @@ function useForm$1(props = {}) {
22178
22141
  _formControl.current.formState = getProxyFormState(formState, control);
22179
22142
  return _formControl.current;
22180
22143
  }
22181
- const RefineFormContent_1ypjp9c = "";
22144
+ const RefineFormContent_pacjk7 = "";
22182
22145
  const RefineFormContent = (props) => {
22183
22146
  var _a, _b, _c, _d;
22184
22147
  const {
@@ -22277,9 +22240,6 @@ const RefineFormContent = (props) => {
22277
22240
  children: value2
22278
22241
  });
22279
22242
  }
22280
- if (c2 == null ? void 0 : c2.render) {
22281
- ele = c2.render(value2, onChange, formValue, onBlur, action, control);
22282
- }
22283
22243
  if (c2.helperText) {
22284
22244
  ele = /* @__PURE__ */ jsxRuntimeExports.jsxs(Space, {
22285
22245
  size: 4,
@@ -22291,6 +22251,9 @@ const RefineFormContent = (props) => {
22291
22251
  })]
22292
22252
  });
22293
22253
  }
22254
+ if (c2 == null ? void 0 : c2.render) {
22255
+ ele = c2.render(value2, onChange, formValue, onBlur, action);
22256
+ }
22294
22257
  return /* @__PURE__ */ jsxRuntimeExports.jsx(Form.Item, {
22295
22258
  label: c2.label,
22296
22259
  colon: false,
@@ -22947,9 +22910,11 @@ const useForm = ({
22947
22910
  };
22948
22911
  };
22949
22912
  const useRefineForm = (props) => {
22913
+ var _a, _b;
22950
22914
  const { config, id, refineProps } = props;
22951
22915
  const [responseErrorMsg, setResponseErrorMsg] = useState("");
22952
22916
  const i18n2 = useTranslation();
22917
+ console.log("config.formConfig?.useFormProps", (_a = config.formConfig) == null ? void 0 : _a.useFormProps);
22953
22918
  const result = useForm({
22954
22919
  mode: "onSubmit",
22955
22920
  reValidateMode: "onChange",
@@ -22976,15 +22941,16 @@ const useRefineForm = (props) => {
22976
22941
  liveMode: "off",
22977
22942
  ...refineProps
22978
22943
  },
22979
- defaultValues: config == null ? void 0 : config.initValue
22944
+ defaultValues: config == null ? void 0 : config.initValue,
22945
+ ...(_b = config.formConfig) == null ? void 0 : _b.useFormProps
22980
22946
  });
22981
22947
  useEffect(() => {
22982
- var _a, _b;
22983
- const response = (_a = result.refineCore.mutationResult.error) == null ? void 0 : _a.response;
22948
+ var _a2, _b2;
22949
+ const response = (_a2 = result.refineCore.mutationResult.error) == null ? void 0 : _a2.response;
22984
22950
  if (response && !(response == null ? void 0 : response.bodyUsed)) {
22985
- (_b = response.json) == null ? void 0 : _b.call(response).then((body) => {
22986
- var _a2, _b2;
22987
- setResponseErrorMsg(((_b2 = (_a2 = config.formConfig) == null ? void 0 : _a2.formatError) == null ? void 0 : _b2.call(_a2, body)) || body.message);
22951
+ (_b2 = response.json) == null ? void 0 : _b2.call(response).then((body) => {
22952
+ var _a3, _b3;
22953
+ setResponseErrorMsg(((_b3 = (_a3 = config.formConfig) == null ? void 0 : _a3.formatError) == null ? void 0 : _b3.call(_a3, body)) || body.message);
22988
22954
  });
22989
22955
  }
22990
22956
  }, [config.formConfig, result]);
@@ -22998,7 +22964,7 @@ const Separator = () => {
22998
22964
  });
22999
22965
  };
23000
22966
  const MonacoYamlEditor = React__default.lazy(() => Promise.resolve().then(() => MonacoYamlEditor$2));
23001
- const MonacoYamlDiffEditor = React__default.lazy(() => import("./MonacoYamlDiffEditor-e5cfbfbd.js"));
22967
+ const MonacoYamlDiffEditor = React__default.lazy(() => import("./MonacoYamlDiffEditor-0413ec6d.js"));
23002
22968
  const YamlEditorComponent = forwardRef(
23003
22969
  function YamlEditorComponent2(props, ref) {
23004
22970
  const {
@@ -23695,13 +23661,13 @@ function YamlForm(props) {
23695
23661
  })
23696
23662
  });
23697
23663
  }
23698
- const FormModal_12opmyh = "";
23664
+ const FormModal_1h2it3o = "";
23699
23665
  const FullscreenModalStyle = "f1nltbcu";
23700
23666
  const MaxWidthModalStyle = "m1qgcca6";
23701
23667
  const FormDescStyle = "f1tl3wq2";
23702
23668
  const ErrorStyle = "exjt4uc";
23703
23669
  function FormModal(props) {
23704
- var _a, _b, _c, _d, _e, _f, _g;
23670
+ var _a, _b, _c, _d, _e;
23705
23671
  const {
23706
23672
  resource: resourceFromProps,
23707
23673
  id,
@@ -23792,6 +23758,15 @@ function FormModal(props) {
23792
23758
  resource: config == null ? void 0 : config.kind
23793
23759
  });
23794
23760
  }, [action, config.formConfig, config == null ? void 0 : config.kind, i18n2, id]);
23761
+ const desc = useMemo(() => {
23762
+ var _a2, _b2, _c2, _d2;
23763
+ if (typeof ((_a2 = config.formConfig) == null ? void 0 : _a2.formDesc) === "string")
23764
+ return (_b2 = config.formConfig) == null ? void 0 : _b2.formDesc;
23765
+ if (typeof ((_c2 = config.formConfig) == null ? void 0 : _c2.formDesc) === "function") {
23766
+ return (_d2 = config.formConfig) == null ? void 0 : _d2.formDesc(action);
23767
+ }
23768
+ return "";
23769
+ }, [action, config.formConfig]);
23795
23770
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(Modal, {
23796
23771
  className: cx_default(FullscreenModalStyle, isYamlForm ? "" : MaxWidthModalStyle),
23797
23772
  width: "calc(100vw - 16px)",
@@ -23810,9 +23785,9 @@ function FormModal(props) {
23810
23785
  onCancel,
23811
23786
  destroyOnClose: true,
23812
23787
  fullscreen: true,
23813
- children: [((_f = config.formConfig) == null ? void 0 : _f.formDesc) ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
23788
+ children: [desc ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
23814
23789
  className: FormDescStyle,
23815
- children: (_g = config.formConfig) == null ? void 0 : _g.formDesc
23790
+ children: desc
23816
23791
  }) : void 0, formEle]
23817
23792
  });
23818
23793
  }
@@ -24147,32 +24122,6 @@ const TextTags = (props) => {
24147
24122
  });
24148
24123
  return /* @__PURE__ */ jsxRuntimeExports.jsx("ul", { children: tags });
24149
24124
  };
24150
- function ResourceSelect(props) {
24151
- const { resource, resourceBasePath, kind, selectProps, value: value2, onChange } = props;
24152
- const { data: data2, isLoading, isError } = useList({
24153
- resource,
24154
- meta: {
24155
- resourceBasePath,
24156
- kind
24157
- },
24158
- pagination: {
24159
- mode: "off"
24160
- }
24161
- });
24162
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
24163
- Select,
24164
- {
24165
- input: {
24166
- value: value2,
24167
- onChange
24168
- },
24169
- loading: isLoading,
24170
- error: isError,
24171
- ...selectProps,
24172
- children: data2 == null ? void 0 : data2.data.map((namespace2) => /* @__PURE__ */ jsxRuntimeExports.jsx(AntdOption, { value: namespace2.metadata.name, children: namespace2.metadata.name }, namespace2.metadata.name))
24173
- }
24174
- );
24175
- }
24176
24125
  const IngressRulesComponent = ({ ingress }) => {
24177
24126
  const kit = useUIKit();
24178
24127
  const result = ingress.flattenedRules.map((r2) => {
@@ -24732,76 +24681,6 @@ const PortMappingColumnRenderer = (i18n2, clusterVip) => {
24732
24681
  }
24733
24682
  };
24734
24683
  };
24735
- const ProvisionerColumnRenderer = (i18n2) => {
24736
- return {
24737
- key: "provisioner",
24738
- display: true,
24739
- dataIndex: ["provisioner"],
24740
- title: i18n2.t("dovetail.provisioner"),
24741
- width: 120,
24742
- sortable: true
24743
- };
24744
- };
24745
- const FsTypeColumnRenderer = (i18n2) => {
24746
- return {
24747
- key: "fstype",
24748
- display: true,
24749
- dataIndex: ["parameters", "csi.storage.k8s.io/fstype"],
24750
- title: i18n2.t("dovetail.file_system"),
24751
- width: 120,
24752
- sortable: true
24753
- };
24754
- };
24755
- const PVCapacityColumnRenderer = (i18n2) => {
24756
- return {
24757
- key: "capacity",
24758
- display: true,
24759
- dataIndex: ["spec", "capacity", "storage"],
24760
- title: i18n2.t("dovetail.capacity"),
24761
- width: 120,
24762
- sortable: true
24763
- };
24764
- };
24765
- const PVStorageClassColumnRenderer = (i18n2) => {
24766
- return {
24767
- key: "storageClass",
24768
- display: true,
24769
- dataIndex: ["spec", "storageClassName"],
24770
- title: i18n2.t("dovetail.storage_class"),
24771
- width: 120,
24772
- sortable: true
24773
- };
24774
- };
24775
- const PVPhaseColumnRenderer = (i18n2) => {
24776
- return {
24777
- key: "phase",
24778
- display: true,
24779
- dataIndex: ["status", "phase"],
24780
- title: i18n2.t("dovetail.phase"),
24781
- width: 120,
24782
- sortable: true
24783
- };
24784
- };
24785
- const PVModeColumnRenderer = (i18n2) => {
24786
- return {
24787
- key: "mode",
24788
- display: true,
24789
- dataIndex: ["spec", "volumeMode"],
24790
- title: i18n2.t("dovetail.volume_mode"),
24791
- width: 120,
24792
- sortable: true
24793
- };
24794
- };
24795
- const PVAccessModeColumnRenderer = (i18n2) => {
24796
- return {
24797
- key: "accessMode",
24798
- display: true,
24799
- dataIndex: ["spec", "accessModes"],
24800
- title: i18n2.t("dovetail.access_mode"),
24801
- width: 120,
24802
- sortable: true
24803
- };
24804
- };
24805
24684
  const styles = "";
24806
24685
  const Dovetail = (props) => {
24807
24686
  const {
@@ -24889,11 +24768,7 @@ const ModelMap = {
24889
24768
  Event: EventModel,
24890
24769
  Ingress: IngressModel,
24891
24770
  NetworkPolicy: NetworkPolicyModel,
24892
- Service: ServiceModel,
24893
- Node: NodeModel,
24894
- StorageClass: StorageClassModel,
24895
- PersistentVolume: PersistentVolumeModel,
24896
- PersistentVolumeClaim: PersistentVolumeClaimModel
24771
+ Service: ServiceModel
24897
24772
  };
24898
24773
  class ModelPlugin {
24899
24774
  constructor() {
@@ -25019,188 +24894,171 @@ const relationPlugin = new RelationPlugin();
25019
24894
  const ProviderPlugins = [relationPlugin, modelPlugin];
25020
24895
  const dovetailRefineI18n = i18n;
25021
24896
  export {
25022
- namespaceRules as $,
24897
+ WorkloadDropdown as $,
25023
24898
  AgeColumnRenderer as A,
25024
- PVPhaseColumnRenderer as B,
24899
+ useDownloadYAML as B,
25025
24900
  CommonSorter as C,
25026
24901
  DurationColumnRenderer as D,
25027
- PVModeColumnRenderer as E,
25028
- FsTypeColumnRenderer as F,
25029
- PVAccessModeColumnRenderer as G,
25030
- ColumnKeys as H,
24902
+ useEdit as E,
24903
+ useGlobalStore as F,
24904
+ useOpenForm as G,
24905
+ Breadcrumb as H,
25031
24906
  IngressRulesColumnRenderer as I,
25032
- addDefaultRenderToColumns as J,
25033
- useEagleTable as K,
25034
- useDownloadYAML as L,
24907
+ NameInputWidget as J,
24908
+ dnsSubDomainRules as K,
24909
+ rfc1123LabelRules as L,
25035
24910
  ModalStyle as M,
25036
24911
  NameColumnRenderer as N,
25037
- useEdit as O,
24912
+ rfc1035LabelRules as O,
25038
24913
  PlainTextNameColumnRenderer as P,
25039
- useGlobalStore as Q,
24914
+ NamespaceSelectWidget as Q,
25040
24915
  ReplicasColumnRenderer as R,
25041
24916
  StateDisplayColumnRenderer as S,
25042
- useOpenForm as T,
25043
- Breadcrumb as U,
25044
- NameInputWidget as V,
24917
+ namespaceRules as T,
24918
+ KeyValueListWidget as U,
24919
+ MetadataForm as V,
25045
24920
  WorkloadImageColumnRenderer as W,
25046
- dnsSubDomainRules as X,
25047
- rfc1123LabelRules as Y,
25048
- rfc1035LabelRules as Z,
25049
- NamespaceSelectWidget as _,
24921
+ PageShow as X,
24922
+ Time as Y,
24923
+ ConditionsTable as Z,
24924
+ PodContainersTable as _,
25050
24925
  useSchema as a,
25051
- PortsGroup as a$,
25052
- KeyValueListWidget as a0,
25053
- MetadataForm as a1,
25054
- PageShow as a2,
25055
- Time as a3,
25056
- ConditionsTable as a4,
25057
- PodContainersTable as a5,
25058
- WorkloadDropdown as a6,
25059
- ReplicasDropdown as a7,
25060
- CreateButton as a8,
25061
- ImageNames as a9,
25062
- StartTimeField as aA,
25063
- ServiceTypeField as aB,
25064
- ClusterIpField as aC,
25065
- SessionAffinityField as aD,
25066
- ServicePodsField as aE,
25067
- IngressRulesTableTabField as aF,
25068
- EventsTableTabField as aG,
25069
- NamespaceField as aH,
25070
- AgeField as aI,
25071
- LabelsField as aJ,
25072
- AnnotationsField as aK,
25073
- ServiceInnerClusterAccessField as aL,
25074
- ServiceOutClusterAccessField as aM,
25075
- PodSelectorField as aN,
25076
- PortsTableField as aO,
25077
- DurationField as aP,
25078
- EventsTab as aQ,
25079
- PodLogTab as aR,
25080
- BasicGroup as aS,
25081
- PodsGroup as aT,
25082
- PodContainersGroup as aU,
25083
- ServicePodsGroup as aV,
25084
- ConditionsGroup as aW,
25085
- SecretDataGroup as aX,
25086
- JobsGroup as aY,
25087
- IngressRulesGroup as aZ,
25088
- PodSelectorGroup as a_,
25089
- ResourceList as aa,
25090
- ResourceShow as ab,
25091
- ResourceForm as ac,
25092
- ResourceCRUD as ad,
25093
- WorkloadPodsTable as ae,
25094
- CronJobDropdown as af,
25095
- K8sDropdown as ag,
25096
- ResourceUsageBar as ah,
25097
- WorkloadReplicasForm as ai,
25098
- WorkloadReplicas as aj,
25099
- CronjobJobsTable as ak,
25100
- KeyValue as al,
25101
- KeyValueAnnotation as am,
25102
- KeyValueSecret as an,
25103
- Separator as ao,
25104
- YamlEditorComponent as ap,
25105
- DeleteButton as aq,
25106
- Layout as ar,
25107
- AreaType as as,
25108
- ImageField as at,
25109
- ReplicaField as au,
25110
- ConditionsField as av,
25111
- PodsField as aw,
25112
- JobsField as ax,
25113
- DataField as ay,
25114
- SecretDataField as az,
24926
+ StateTagStyle as a$,
24927
+ ReplicasDropdown as a0,
24928
+ CreateButton as a1,
24929
+ ImageNames as a2,
24930
+ ResourceList as a3,
24931
+ ResourceShow as a4,
24932
+ ResourceForm as a5,
24933
+ ResourceCRUD as a6,
24934
+ WorkloadPodsTable as a7,
24935
+ CronJobDropdown as a8,
24936
+ ResourceUsageBar as a9,
24937
+ AgeField as aA,
24938
+ LabelsField as aB,
24939
+ AnnotationsField as aC,
24940
+ ServiceInnerClusterAccessField as aD,
24941
+ ServiceOutClusterAccessField as aE,
24942
+ PodSelectorField as aF,
24943
+ PortsTableField as aG,
24944
+ DurationField as aH,
24945
+ EventsTab as aI,
24946
+ PodLogTab as aJ,
24947
+ BasicGroup as aK,
24948
+ PodsGroup as aL,
24949
+ PodContainersGroup as aM,
24950
+ ServicePodsGroup as aN,
24951
+ ConditionsGroup as aO,
24952
+ SecretDataGroup as aP,
24953
+ JobsGroup as aQ,
24954
+ IngressRulesGroup as aR,
24955
+ PodSelectorGroup as aS,
24956
+ PortsGroup as aT,
24957
+ DataGroup as aU,
24958
+ NetworkPolicyIngressRulesGroup as aV,
24959
+ NetworkPolicyEgressRulesGroup as aW,
24960
+ ShowGroupComponent as aX,
24961
+ ShowContent as aY,
24962
+ DeleteManyButton as aZ,
24963
+ ListPage as a_,
24964
+ WorkloadReplicasForm as aa,
24965
+ WorkloadReplicas as ab,
24966
+ CronjobJobsTable as ac,
24967
+ KeyValue as ad,
24968
+ KeyValueAnnotation as ae,
24969
+ KeyValueSecret as af,
24970
+ Separator as ag,
24971
+ YamlEditorComponent as ah,
24972
+ DeleteButton as ai,
24973
+ Layout as aj,
24974
+ AreaType as ak,
24975
+ ImageField as al,
24976
+ ReplicaField as am,
24977
+ ConditionsField as an,
24978
+ PodsField as ao,
24979
+ JobsField as ap,
24980
+ DataField as aq,
24981
+ SecretDataField as ar,
24982
+ StartTimeField as as,
24983
+ ServiceTypeField as at,
24984
+ ClusterIpField as au,
24985
+ SessionAffinityField as av,
24986
+ ServicePodsField as aw,
24987
+ IngressRulesTableTabField as ax,
24988
+ EventsTableTabField as ay,
24989
+ NamespaceField as az,
25115
24990
  useDeleteModal as b,
25116
- ComponentContext as b$,
25117
- DataGroup as b0,
25118
- NetworkPolicyIngressRulesGroup as b1,
25119
- NetworkPolicyEgressRulesGroup as b2,
25120
- ShowGroupComponent as b3,
25121
- ShowContent as b4,
25122
- DeleteManyButton as b5,
25123
- ListPage as b6,
25124
- StateTagStyle as b7,
25125
- StateTag as b8,
25126
- DrawerShow as b9,
25127
- DAEMONSET_INIT_VALUE as bA,
25128
- JOB_INIT_VALUE as bB,
25129
- STATEFULSET_INIT_VALUE as bC,
25130
- POD_INIT_VALUE as bD,
25131
- SERVICE_CLUSTER_IP_INIT_VALUE as bE,
25132
- SERVICE_NODE_PORT_INIT_VALUE as bF,
25133
- SERVICE_LOAD_BALANCER_INIT_VALUE as bG,
25134
- SERVICE_EXTERNAL_NAME_INIT_VALUE as bH,
25135
- SERVICE_HEADLESS_INIT_VALUE as bI,
25136
- INGRESS_INIT_VALUE as bJ,
25137
- NETWORK_POLICY_INIT_VALUE as bK,
25138
- CONFIG_MAP_INIT_VALUE as bL,
25139
- SERVER_INSTANCE_INIT_VALUE as bM,
25140
- TIMESTAMP_LABEL as bN,
25141
- SECRET_OPAQUE_INIT_VALUE as bO,
25142
- SECRET_IMAGE_REPO_INIT_VALUE as bP,
25143
- SECRET_BASIC_AUTH_INIT_VALUE as bQ,
25144
- SECRET_SSH_AUTH_INIT_VALUE as bR,
25145
- SECRET_TLS_INIT_VALUE as bS,
25146
- SECRET_CUSTOM_INIT_VALUE as bT,
25147
- NODE_INIT_VALUE as bU,
25148
- STORAGE_CLASS_INIT_VALUE as bV,
25149
- WorkloadState as bW,
25150
- AccessControlAuth as bX,
25151
- Dovetail as bY,
25152
- RESOURCE_GROUP as bZ,
25153
- FormType as b_,
25154
- Menu as ba,
25155
- EditButton as bb,
25156
- ReferenceLink as bc,
25157
- ResourceLink as bd,
25158
- NS_STORE_KEY as be,
25159
- ALL_NS as bf,
25160
- useNamespacesFilter as bg,
25161
- NamespacesFilter as bh,
25162
- FormModal as bi,
25163
- RefineFormContent as bj,
25164
- RefineFormPage as bk,
25165
- SchemaStrategy as bl,
25166
- YamlForm as bm,
25167
- useRefineForm as bn,
25168
- ServiceInClusterAccessComponent as bo,
25169
- ServiceOutClusterAccessComponent as bp,
25170
- Tags as bq,
25171
- TextTags as br,
25172
- PodLog as bs,
25173
- NetworkPolicyRulesViewer as bt,
25174
- Tabs as bu,
25175
- ValueDisplay as bv,
25176
- ResourceSelect as bw,
25177
- BASE_INIT_VALUE as bx,
25178
- DEPLOYMENT_INIT_VALUE as by,
25179
- CRONJOB_INIT_VALUE as bz,
24991
+ EventModel as b$,
24992
+ StateTag as b0,
24993
+ DrawerShow as b1,
24994
+ Menu as b2,
24995
+ EditButton as b3,
24996
+ ReferenceLink as b4,
24997
+ ResourceLink as b5,
24998
+ NS_STORE_KEY as b6,
24999
+ ALL_NS as b7,
25000
+ useNamespacesFilter as b8,
25001
+ NamespacesFilter as b9,
25002
+ NETWORK_POLICY_INIT_VALUE as bA,
25003
+ CONFIG_MAP_INIT_VALUE as bB,
25004
+ SERVER_INSTANCE_INIT_VALUE as bC,
25005
+ TIMESTAMP_LABEL as bD,
25006
+ SECRET_OPAQUE_INIT_VALUE as bE,
25007
+ SECRET_IMAGE_REPO_INIT_VALUE as bF,
25008
+ SECRET_BASIC_AUTH_INIT_VALUE as bG,
25009
+ SECRET_SSH_AUTH_INIT_VALUE as bH,
25010
+ SECRET_TLS_INIT_VALUE as bI,
25011
+ SECRET_CUSTOM_INIT_VALUE as bJ,
25012
+ WorkloadState as bK,
25013
+ AccessControlAuth as bL,
25014
+ Dovetail as bM,
25015
+ RESOURCE_GROUP as bN,
25016
+ FormType as bO,
25017
+ ComponentContext as bP,
25018
+ GlobalStoreContext as bQ,
25019
+ ConfigsContext as bR,
25020
+ IngressModel as bS,
25021
+ NetworkPolicyModel as bT,
25022
+ JobModel as bU,
25023
+ WorkloadModel as bV,
25024
+ WorkloadBaseModel as bW,
25025
+ PodModel as bX,
25026
+ PodMetricsModel as bY,
25027
+ ResourceModel as bZ,
25028
+ CronJobModel as b_,
25029
+ FormModal as ba,
25030
+ RefineFormContent as bb,
25031
+ RefineFormPage as bc,
25032
+ SchemaStrategy as bd,
25033
+ YamlForm as be,
25034
+ useRefineForm as bf,
25035
+ ServiceInClusterAccessComponent as bg,
25036
+ ServiceOutClusterAccessComponent as bh,
25037
+ Tags as bi,
25038
+ TextTags as bj,
25039
+ PodLog as bk,
25040
+ NetworkPolicyRulesViewer as bl,
25041
+ Tabs as bm,
25042
+ BASE_INIT_VALUE as bn,
25043
+ DEPLOYMENT_INIT_VALUE as bo,
25044
+ CRONJOB_INIT_VALUE as bp,
25045
+ DAEMONSET_INIT_VALUE as bq,
25046
+ JOB_INIT_VALUE as br,
25047
+ STATEFULSET_INIT_VALUE as bs,
25048
+ POD_INIT_VALUE as bt,
25049
+ SERVICE_CLUSTER_IP_INIT_VALUE as bu,
25050
+ SERVICE_NODE_PORT_INIT_VALUE as bv,
25051
+ SERVICE_LOAD_BALANCER_INIT_VALUE as bw,
25052
+ SERVICE_EXTERNAL_NAME_INIT_VALUE as bx,
25053
+ SERVICE_HEADLESS_INIT_VALUE as by,
25054
+ INGRESS_INIT_VALUE as bz,
25180
25055
  NameSpaceColumnRenderer as c,
25181
- GlobalStoreContext as c0,
25182
- ConfigsContext as c1,
25183
- IngressModel as c2,
25184
- NetworkPolicyModel as c3,
25185
- JobModel as c4,
25186
- WorkloadModel as c5,
25187
- WorkloadBaseModel as c6,
25188
- PodModel as c7,
25189
- PodMetricsModel as c8,
25190
- ResourceModel as c9,
25191
- CronJobModel as ca,
25192
- EventModel as cb,
25193
- DeploymentModel as cc,
25194
- DaemonSetModel as cd,
25195
- StatefulSetModel as ce,
25196
- ServiceTypeEnum as cf,
25197
- ServiceModel as cg,
25198
- NodeRole as ch,
25199
- NodeModel as ci,
25200
- StorageClassModel as cj,
25201
- PersistentVolumeModel as ck,
25202
- PersistentVolumeClaimModel as cl,
25203
- ProviderPlugins as cm,
25056
+ DeploymentModel as c0,
25057
+ DaemonSetModel as c1,
25058
+ StatefulSetModel as c2,
25059
+ ServiceTypeEnum as c3,
25060
+ ServiceModel as c4,
25061
+ ProviderPlugins as c5,
25204
25062
  dovetailRefineI18n as d,
25205
25063
  WorkloadRestartsColumnRenderer as e,
25206
25064
  NodeNameColumnRenderer as f,
@@ -25221,7 +25079,7 @@ export {
25221
25079
  useNamespaceRefineFilter as u,
25222
25080
  DataKeysColumnRenderer as v,
25223
25081
  PortMappingColumnRenderer as w,
25224
- ProvisionerColumnRenderer as x,
25225
- PVCapacityColumnRenderer as y,
25226
- PVStorageClassColumnRenderer as z
25082
+ ColumnKeys as x,
25083
+ addDefaultRenderToColumns as y,
25084
+ useEagleTable as z
25227
25085
  };