@rancher/shell 0.3.0 → 0.3.2

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 (342) hide show
  1. package/assets/styles/global/_button.scss +5 -1
  2. package/assets/styles/global/_columns.scss +4 -0
  3. package/assets/styles/global/_gauges.scss +1 -1
  4. package/assets/styles/global/_layout.scss +5 -2
  5. package/assets/styles/global/_select.scss +1 -4
  6. package/assets/styles/themes/_dark.scss +5 -4
  7. package/assets/styles/themes/_light.scss +4 -3
  8. package/assets/styles/themes/_suse.scss +1 -1
  9. package/assets/styles/vendor/vue-select.scss +4 -3
  10. package/assets/translations/en-us.yaml +673 -73
  11. package/assets/translations/zh-hans.yaml +720 -207
  12. package/chart/monitoring/steps/uninstall-v1.vue +2 -2
  13. package/cloud-credential/azure.vue +23 -0
  14. package/cloud-credential/harvester.vue +25 -62
  15. package/cloud-credential/pnap.vue +80 -0
  16. package/components/.DS_Store +0 -0
  17. package/components/ActionMenu.vue +28 -7
  18. package/components/AdvancedSection.vue +9 -2
  19. package/components/Alert.vue +2 -2
  20. package/components/ButtonDropdown.vue +0 -2
  21. package/components/ButtonGroup.vue +1 -0
  22. package/components/CollapsibleCard.vue +0 -1
  23. package/components/CruResource.vue +41 -4
  24. package/components/DetailTop.vue +72 -4
  25. package/components/DisableAuthProviderModal.vue +106 -0
  26. package/{rancher-components/components/Utils/DraggableZone → components}/DraggableZone.vue +0 -0
  27. package/components/ExplorerMembers.vue +253 -30
  28. package/components/ExplorerProjectsNamespaces.vue +77 -33
  29. package/components/ExtensionPanel.vue +42 -0
  30. package/components/GrowlManager.vue +3 -3
  31. package/components/IconOrSvg.vue +178 -0
  32. package/components/LogItem.vue +69 -0
  33. package/components/PodSecurityAdmission.vue +302 -0
  34. package/components/PromptModal.vue +1 -0
  35. package/components/ResourceDetail/Masthead.vue +69 -4
  36. package/components/ResourceDetail/index.vue +12 -5
  37. package/components/ResourceList/Masthead.vue +11 -1
  38. package/components/ResourceList/ResourceLoadingIndicator.vue +12 -2
  39. package/components/ResourceList/index.vue +66 -12
  40. package/components/ResourceList/resource-list.config.js +7 -0
  41. package/components/ResourceTable.vue +33 -6
  42. package/components/SimpleBox.vue +1 -1
  43. package/components/SortableTable/THead.vue +21 -14
  44. package/components/SortableTable/filtering.js +1 -1
  45. package/components/SortableTable/index.vue +21 -10
  46. package/components/SortableTable/selection.js +15 -3
  47. package/components/Tabbed/Tab.vue +1 -1
  48. package/components/Tabbed/index.vue +20 -15
  49. package/components/__tests__/.DS_Store +0 -0
  50. package/components/__tests__/AsyncButton.test.ts +140 -0
  51. package/components/__tests__/BackLink.test.ts +33 -0
  52. package/components/__tests__/ButtonGroup.test.ts +124 -0
  53. package/components/__tests__/ClusterBadge.test.ts +32 -0
  54. package/components/__tests__/CollapsibleCard.test.ts +64 -0
  55. package/components/__tests__/ConsumptionGauge.test.ts +88 -0
  56. package/components/__tests__/CruResource.test.ts +3 -2
  57. package/components/__tests__/FixedBanner.test.ts +129 -0
  58. package/components/__tests__/GrowlManager.test.ts +147 -0
  59. package/components/__tests__/NamespaceFilter.test.ts +33 -25
  60. package/components/__tests__/PercentageBar.test.ts +32 -0
  61. package/components/__tests__/PodSecurityAdmission.test.ts +398 -0
  62. package/components/auth/AuthBanner.vue +20 -10
  63. package/components/auth/RoleDetailEdit.vue +26 -17
  64. package/components/auth/SelectPrincipal.vue +36 -5
  65. package/components/form/ArrayList.vue +3 -35
  66. package/components/form/ArrayListGrouped.vue +13 -4
  67. package/components/form/ArrayListSelect.vue +5 -5
  68. package/components/form/Error.vue +8 -0
  69. package/components/form/KeyValue.vue +39 -7
  70. package/components/form/LabeledSelect.vue +5 -2
  71. package/components/form/Labels.vue +46 -16
  72. package/components/form/Members/ClusterPermissionsEditor.vue +17 -17
  73. package/components/form/Members/MembershipEditor.vue +12 -12
  74. package/components/form/NameNsDescription.vue +1 -1
  75. package/components/form/NodeScheduling.vue +1 -1
  76. package/components/form/Probe.vue +3 -3
  77. package/components/form/ResourceQuota/Project.vue +6 -6
  78. package/components/form/ResourceTabs/index.vue +24 -6
  79. package/components/form/Security.vue +7 -6
  80. package/components/form/Select.vue +3 -2
  81. package/components/form/SelectOrCreateAuthSecret.vue +22 -29
  82. package/components/form/ServicePorts.vue +8 -0
  83. package/components/form/WorkloadPorts.vue +7 -1
  84. package/components/form/__tests__/ArrayList.test.ts +74 -0
  85. package/components/form/__tests__/ArrayListGrouped.test.ts +6 -4
  86. package/components/formatter/Checked.vue +1 -1
  87. package/components/formatter/ClusterLink.vue +5 -0
  88. package/components/formatter/IconIsDefault.vue +2 -2
  89. package/components/formatter/InternalExternalIP.vue +11 -8
  90. package/components/formatter/LiveDuration.vue +78 -0
  91. package/components/formatter/WorkloadHealthScale.vue +5 -3
  92. package/components/nav/Header.vue +74 -7
  93. package/components/nav/NamespaceFilter.vue +146 -63
  94. package/components/nav/TopLevelMenu.vue +22 -19
  95. package/components/nav/WindowManager/ContainerLogs.vue +83 -126
  96. package/components/nav/WindowManager/ContainerShell.vue +9 -7
  97. package/components/nav/WindowManager/Window.vue +2 -0
  98. package/components/nav/WindowManager/index.vue +10 -0
  99. package/config/elemental-types.js +9 -0
  100. package/config/features.js +2 -0
  101. package/config/home-links.js +4 -1
  102. package/config/pod-security-admission.ts +82 -0
  103. package/config/product/apps.js +1 -1
  104. package/config/product/auth.js +6 -5
  105. package/config/product/backup.js +1 -1
  106. package/config/product/explorer.js +6 -6
  107. package/config/product/fleet.js +1 -1
  108. package/config/product/manager.js +6 -2
  109. package/config/query-params.js +1 -0
  110. package/config/secret.js +0 -1
  111. package/config/settings.ts +26 -9
  112. package/config/table-headers.js +22 -11
  113. package/config/types.js +4 -1
  114. package/config/uiplugins.js +3 -3
  115. package/content/docs/zh-hans/getting-started.md +113 -137
  116. package/content/docs/zh-hans/whats-new.md +8 -46
  117. package/core/plugin-helpers.js +171 -0
  118. package/core/plugin.ts +61 -1
  119. package/core/plugins.js +33 -0
  120. package/core/types.ts +128 -2
  121. package/creators/pkg/package-lock.json +37 -0
  122. package/creators/pkg/package.json +1 -1
  123. package/detail/catalog.cattle.io.app.vue +1 -1
  124. package/detail/pod.vue +1 -1
  125. package/detail/provisioning.cattle.io.cluster.vue +35 -9
  126. package/detail/service.vue +2 -9
  127. package/detail/workload/index.vue +0 -1
  128. package/dialog/AddClusterMemberDialog.vue +22 -28
  129. package/dialog/AddProjectMemberDialog.vue +53 -9
  130. package/dialog/DiagnosticTimingsDialog.vue +8 -7
  131. package/dialog/DrainNode.vue +44 -48
  132. package/dialog/ForceMachineRemoveDialog.vue +5 -7
  133. package/dialog/GenericPrompt.vue +15 -20
  134. package/dialog/RollbackWorkloadDialog.vue +15 -46
  135. package/dialog/RotateCertificatesDialog.vue +5 -7
  136. package/dialog/RotateEncryptionKeyDialog.vue +5 -9
  137. package/dialog/SaveAsRKETemplateDialog.vue +5 -13
  138. package/dialog/ScaleMachineDownDialog.vue +1 -1
  139. package/dialog/ScalePoolDownDialog.vue +121 -0
  140. package/edit/__tests__/management.cattle.io.setting.test.ts +3 -3
  141. package/edit/auth/azuread.vue +16 -16
  142. package/edit/auth/github.vue +8 -0
  143. package/edit/auth/googleoauth.vue +10 -1
  144. package/edit/auth/ldap/index.vue +10 -0
  145. package/edit/auth/oidc.vue +10 -0
  146. package/edit/auth/saml.vue +10 -0
  147. package/edit/autoscaling.horizontalpodautoscaler/index.vue +1 -1
  148. package/edit/catalog.cattle.io.clusterrepo.vue +3 -0
  149. package/edit/cloudcredential.vue +3 -7
  150. package/edit/logging-flow/Match.vue +39 -8
  151. package/edit/logging-flow/index.vue +27 -4
  152. package/edit/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +107 -0
  153. package/edit/management.cattle.io.project.vue +8 -1
  154. package/edit/management.cattle.io.setting.vue +5 -2
  155. package/edit/management.cattle.io.user.vue +7 -1
  156. package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +36 -8
  157. package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +2 -2
  158. package/edit/monitoring.coreos.com.prometheusrule/GroupRules.vue +14 -6
  159. package/edit/namespace.vue +18 -4
  160. package/edit/networking.k8s.io.ingress/Certificate.vue +1 -0
  161. package/edit/networking.k8s.io.ingress/IngressClass.vue +8 -6
  162. package/edit/networking.k8s.io.ingress/RulePath.vue +12 -6
  163. package/edit/networking.k8s.io.ingress/index.vue +8 -6
  164. package/edit/persistentvolume/index.vue +30 -27
  165. package/edit/persistentvolume/plugins/cephfs.vue +29 -29
  166. package/edit/persistentvolume/plugins/csi.vue +102 -62
  167. package/edit/persistentvolume/plugins/fc.vue +19 -19
  168. package/edit/persistentvolume/plugins/iscsi.vue +45 -45
  169. package/edit/persistentvolume/plugins/rbd.vue +39 -39
  170. package/edit/persistentvolumeclaim.vue +78 -75
  171. package/edit/provisioning.cattle.io.cluster/MachinePool.vue +11 -7
  172. package/edit/provisioning.cattle.io.cluster/RegistryConfigs.vue +10 -1
  173. package/edit/provisioning.cattle.io.cluster/RegistryMirrors.vue +87 -27
  174. package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +3 -6
  175. package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +96 -0
  176. package/edit/provisioning.cattle.io.cluster/import.vue +1 -1
  177. package/edit/provisioning.cattle.io.cluster/index.vue +29 -6
  178. package/edit/provisioning.cattle.io.cluster/rke2.vue +445 -154
  179. package/edit/secret/index.vue +3 -7
  180. package/edit/service.vue +3 -1
  181. package/edit/storage.k8s.io.storageclass/index.vue +100 -16
  182. package/edit/storage.k8s.io.storageclass/provisioners/driver.harvesterhci.io.vue +114 -0
  183. package/edit/workload/__tests__/index.test.ts +98 -0
  184. package/edit/workload/index.vue +58 -8
  185. package/edit/workload/mixins/workload.js +107 -70
  186. package/edit/workload/storage/ContainerMountPaths.vue +0 -10
  187. package/edit/workload/storage/emptyDir.vue +88 -0
  188. package/edit/workload/storage/ephemeralVolume/index.vue +1 -1
  189. package/edit/workload/storage/index.vue +8 -0
  190. package/edit/workload/storage/persistentVolumeClaim/index.vue +1 -1
  191. package/layouts/default.vue +57 -44
  192. package/list/__tests__/workload.test.ts +5 -2
  193. package/list/catalog.cattle.io.app.vue +1 -0
  194. package/list/cis.cattle.io.clusterscan.vue +1 -0
  195. package/list/fleet.cattle.io.bundle.vue +5 -6
  196. package/list/fleet.cattle.io.cluster.vue +6 -3
  197. package/list/fleet.cattle.io.clusterregistrationtoken.vue +5 -6
  198. package/list/fleet.cattle.io.gitrepo.vue +4 -9
  199. package/list/helm.cattle.io.projecthelmchart.vue +1 -5
  200. package/list/logging.banzaicloud.io.clusterflow.vue +4 -1
  201. package/list/logging.banzaicloud.io.flow.vue +6 -5
  202. package/list/management.cattle.io.cluster.vue +1 -0
  203. package/list/management.cattle.io.feature.vue +3 -4
  204. package/list/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +47 -0
  205. package/list/management.cattle.io.setting.vue +2 -2
  206. package/list/management.cattle.io.user.vue +4 -10
  207. package/list/monitoring.coreos.com.alertmanagerconfig.vue +2 -7
  208. package/list/node.vue +8 -5
  209. package/list/persistentvolume.vue +3 -3
  210. package/list/persistentvolumeclaim.vue +3 -4
  211. package/list/provisioning.cattle.io.cluster.vue +18 -19
  212. package/list/service.vue +6 -14
  213. package/list/workload.vue +43 -38
  214. package/machine-config/azure.vue +429 -60
  215. package/machine-config/pnap.vue +288 -0
  216. package/mixins/auth-config.js +1 -3
  217. package/mixins/browser-tab-visibility.js +8 -14
  218. package/mixins/chart.js +1 -1
  219. package/mixins/create-edit-view/impl.js +4 -0
  220. package/mixins/create-edit-view/index.js +4 -2
  221. package/mixins/resource-fetch-namespaced.js +98 -0
  222. package/mixins/resource-fetch.js +79 -45
  223. package/mixins/resource-manager.js +1 -23
  224. package/models/apps.controllerrevision.js +7 -0
  225. package/models/apps.daemonset.js +18 -0
  226. package/models/apps.deployment.js +44 -0
  227. package/models/apps.replicaset.js +7 -0
  228. package/models/apps.statefulset.js +18 -0
  229. package/models/batch.job.js +7 -14
  230. package/models/cluster/node.js +10 -2
  231. package/models/cluster.x-k8s.io.machine.js +26 -4
  232. package/models/cluster.x-k8s.io.machinedeployment.js +12 -2
  233. package/models/event.js +7 -0
  234. package/models/logging.banzaicloud.io.flow.js +4 -0
  235. package/models/management.cattle.io.cluster.js +1 -1
  236. package/models/management.cattle.io.clusterroletemplatebinding.js +1 -1
  237. package/models/management.cattle.io.globalrole.js +2 -2
  238. package/models/management.cattle.io.node.js +37 -2
  239. package/models/management.cattle.io.podsecurityadmissionconfigurationtemplate.ts +4 -0
  240. package/models/management.cattle.io.project.js +30 -11
  241. package/models/management.cattle.io.setting.js +1 -1
  242. package/models/management.cattle.io.user.js +37 -1
  243. package/models/namespace.js +42 -5
  244. package/models/persistentvolume.js +14 -2
  245. package/models/pod.js +15 -0
  246. package/models/projectroletemplatebinding.js +7 -0
  247. package/models/provisioning.cattle.io.cluster.js +61 -10
  248. package/models/rke-machine.cattle.io.pnapmachinetemplate.js +15 -0
  249. package/models/service.js +14 -13
  250. package/models/storage.k8s.io.storageclass.js +33 -18
  251. package/models/workload.js +38 -7
  252. package/nuxt.config.js +27 -17
  253. package/package.json +7 -7
  254. package/pages/about.vue +14 -2
  255. package/pages/c/_cluster/apps/charts/index.vue +21 -3
  256. package/pages/c/_cluster/apps/charts/install.vue +59 -22
  257. package/pages/c/_cluster/auth/config/_id.vue +6 -0
  258. package/pages/c/_cluster/auth/config/index.vue +8 -6
  259. package/pages/c/_cluster/auth/group.principal/assign-edit.vue +1 -1
  260. package/pages/c/_cluster/auth/roles/index.vue +1 -1
  261. package/pages/c/_cluster/explorer/index.vue +51 -6
  262. package/pages/c/_cluster/longhorn/index.vue +1 -1
  263. package/pages/c/_cluster/monitoring/alertmanagerconfig/_alertmanagerconfigid/receiver.vue +15 -4
  264. package/pages/c/_cluster/monitoring/index.vue +1 -1
  265. package/pages/c/_cluster/neuvector/index.vue +1 -1
  266. package/pages/c/_cluster/settings/performance.vue +48 -2
  267. package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +2 -0
  268. package/pages/c/_cluster/uiplugins/InstallDialog.vue +3 -0
  269. package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +42 -2
  270. package/pages/c/_cluster/uiplugins/RemoveUIPlugins.vue +2 -0
  271. package/pages/c/_cluster/uiplugins/SetupUIPlugins.vue +1 -0
  272. package/pages/c/_cluster/uiplugins/UninstallDialog.vue +2 -0
  273. package/pages/c/_cluster/uiplugins/index.vue +42 -3
  274. package/pages/diagnostic.vue +5 -4
  275. package/pages/home.vue +105 -30
  276. package/pages/prefs.vue +23 -12
  277. package/pages/rio/mesh.vue +1 -1
  278. package/pkg/dynamic-importer.lib.js +8 -0
  279. package/pkg/vue.config.js +4 -0
  280. package/plugins/dashboard-store/__tests__/mutations.spec.js +406 -0
  281. package/plugins/dashboard-store/actions.js +32 -25
  282. package/plugins/dashboard-store/getters.js +50 -33
  283. package/plugins/dashboard-store/mutations.js +134 -28
  284. package/plugins/dashboard-store/resource-class.js +37 -42
  285. package/plugins/steve/actions.js +30 -0
  286. package/plugins/steve/caches/resourceCache.js +60 -0
  287. package/plugins/steve/getters.js +44 -1
  288. package/plugins/steve/mutations.js +97 -36
  289. package/plugins/steve/resourceWatcher.js +277 -0
  290. package/plugins/steve/schema.utils.js +25 -0
  291. package/plugins/steve/subscribe.js +288 -115
  292. package/plugins/steve/worker/index.js +17 -0
  293. package/plugins/steve/worker/web-worker.advanced.js +302 -0
  294. package/plugins/steve/{web-worker.steve-sub-worker.js → worker/web-worker.basic.js} +3 -44
  295. package/rancher-components/Card/Card.vue +3 -3
  296. package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +1 -0
  297. package/rancher-components/StringList/StringList.test.ts +45 -420
  298. package/rancher-components/StringList/StringList.vue +1 -10
  299. package/rancher-components/components/Banner/Banner.test.ts +44 -0
  300. package/rancher-components/components/Banner/Banner.vue +130 -61
  301. package/rancher-components/components/Form/Checkbox/Checkbox.test.ts +13 -22
  302. package/rancher-components/components/Form/Checkbox/Checkbox.vue +8 -6
  303. package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.test.ts +9 -9
  304. package/rancher-components/components/LabeledTooltip/LabeledTooltip.vue +0 -1
  305. package/rancher-components/components/StringList/StringList.test.ts +7 -7
  306. package/rancher-components/components/StringList/StringList.vue +21 -15
  307. package/scripts/test-plugins-build.sh +8 -0
  308. package/static/loading-indicator.html +1 -1
  309. package/store/action-menu.js +4 -3
  310. package/store/index.js +54 -3
  311. package/store/plugins.js +0 -17
  312. package/store/pnap.js +128 -0
  313. package/store/prefs.js +4 -2
  314. package/store/type-map.js +81 -13
  315. package/types/pod-security-admission.ts +36 -0
  316. package/types/shell/index.d.ts +497 -396
  317. package/utils/__tests__/object.test.ts +17 -1
  318. package/utils/__tests__/pod-security-admission.test.ts +61 -0
  319. package/utils/async.ts +36 -0
  320. package/utils/color.js +45 -0
  321. package/utils/crypto/browserHashUtils.js +18 -0
  322. package/utils/dynamic-importer.js +8 -0
  323. package/utils/install-redirect.js +1 -1
  324. package/utils/object.js +24 -0
  325. package/utils/pod-security-admission.ts +39 -0
  326. package/utils/socket.js +61 -24
  327. package/utils/string.js +2 -0
  328. package/utils/svg-filter.js +301 -0
  329. package/utils/time.js +49 -0
  330. package/utils/validators/cidr.js +4 -0
  331. package/utils/validators/formRules/__tests__/index.test.ts +23 -3
  332. package/utils/validators/formRules/index.ts +14 -0
  333. package/config/product/harvester-manager.js +0 -162
  334. package/edit/harvesterhci.io.management.cluster.vue +0 -153
  335. package/list/harvesterhci.io.management.cluster.vue +0 -241
  336. package/machine-config/harvester.vue +0 -693
  337. package/models/harvesterhci.io.management.cluster.js +0 -228
  338. package/pages/c/_cluster/harvesterManager/index.vue +0 -24
  339. package/rancher-components/Card/Card.test.ts +0 -39
  340. package/rancher-components/Utils/DraggableZone/DraggableZone.vue +0 -181
  341. package/rancher-components/Utils/DraggableZone/index.ts +0 -1
  342. package/rancher-components/components/Utils/DraggableZone/index.ts +0 -1
@@ -47,6 +47,7 @@ export const MODE: "mode";
47
47
  export const _CREATE: "create";
48
48
  export const _VIEW: "view";
49
49
  export const _EDIT: "edit";
50
+ export const _LIST: "list";
50
51
  export const _CLONE: "clone";
51
52
  export const _STAGE: "stage";
52
53
  export const _IMPORT: "import";
@@ -466,6 +467,8 @@ export namespace DURATION {
466
467
  export { value_27 as value };
467
468
  const sort_28: string;
468
469
  export { sort_28 as sort };
470
+ const formatter_16: string;
471
+ export { formatter_16 as formatter };
469
472
  }
470
473
  export namespace IMAGE {
471
474
  const name_29: string;
@@ -488,16 +491,16 @@ export namespace POD_IMAGES {
488
491
  export { getValue_8 as getValue };
489
492
  const sort_30: string;
490
493
  export { sort_30 as sort };
491
- const formatter_16: string;
492
- export { formatter_16 as formatter };
494
+ const formatter_17: string;
495
+ export { formatter_17 as formatter };
493
496
  }
494
497
  export namespace POD_RESTARTS {
495
498
  const name_31: string;
496
499
  export { name_31 as name };
497
500
  const labelKey_31: string;
498
501
  export { labelKey_31 as labelKey };
499
- const formatter_17: string;
500
- export { formatter_17 as formatter };
502
+ const formatter_18: string;
503
+ export { formatter_18 as formatter };
501
504
  export const delayLoading: boolean;
502
505
  const value_30: string;
503
506
  export { value_30 as value };
@@ -514,8 +517,8 @@ export namespace ENDPOINTS {
514
517
  export { labelKey_32 as labelKey };
515
518
  const value_31: string;
516
519
  export { value_31 as value };
517
- const formatter_18: string;
518
- export { formatter_18 as formatter };
520
+ const formatter_19: string;
521
+ export { formatter_19 as formatter };
519
522
  const width_7: number;
520
523
  export { width_7 as width };
521
524
  const align_3: string;
@@ -530,8 +533,8 @@ export namespace SCALE {
530
533
  export { value_32 as value };
531
534
  const sort_31: string[];
532
535
  export { sort_31 as sort };
533
- const formatter_19: string;
534
- export { formatter_19 as formatter };
536
+ const formatter_20: string;
537
+ export { formatter_20 as formatter };
535
538
  const width_8: number;
536
539
  export { width_8 as width };
537
540
  const align_4: string;
@@ -556,8 +559,8 @@ export namespace WEIGHT {
556
559
  export { value_34 as value };
557
560
  const sort_33: string;
558
561
  export { sort_33 as sort };
559
- const formatter_20: string;
560
- export { formatter_20 as formatter };
562
+ const formatter_21: string;
563
+ export { formatter_21 as formatter };
561
564
  const width_9: number;
562
565
  export { width_9 as width };
563
566
  const align_5: string;
@@ -670,8 +673,8 @@ export namespace USER_ID {
670
673
  export { labelKey_45 as labelKey };
671
674
  const value_44: string;
672
675
  export { value_44 as value };
673
- const formatter_21: string;
674
- export { formatter_21 as formatter };
676
+ const formatter_22: string;
677
+ export { formatter_22 as formatter };
675
678
  const canBeVariable_5: boolean;
676
679
  export { canBeVariable_5 as canBeVariable };
677
680
  const sort_38: string;
@@ -708,8 +711,8 @@ export namespace IMAGE_SIZE {
708
711
  export { value_47 as value };
709
712
  const sort_41: string[];
710
713
  export { sort_41 as sort };
711
- const formatter_22: string;
712
- export { formatter_22 as formatter };
714
+ const formatter_23: string;
715
+ export { formatter_23 as formatter };
713
716
  }
714
717
  export namespace TYPE {
715
718
  const name_49: string;
@@ -737,19 +740,17 @@ export namespace SUB_TYPE {
737
740
  const width_16: number;
738
741
  export { width_16 as width };
739
742
  }
740
- export namespace STATUS {
743
+ export namespace EVENT_TYPE {
741
744
  const name_51: string;
742
745
  export { name_51 as name };
743
746
  const labelKey_51: string;
744
747
  export { labelKey_51 as labelKey };
745
748
  const value_50: string;
746
749
  export { value_50 as value };
747
- const sort_44: string[];
750
+ const sort_44: string;
748
751
  export { sort_44 as sort };
749
- const width_17: number;
750
- export { width_17 as width };
751
752
  }
752
- export namespace LAST_HEARTBEAT_TIME {
753
+ export namespace STATUS {
753
754
  const name_52: string;
754
755
  export { name_52 as name };
755
756
  const labelKey_52: string;
@@ -758,22 +759,21 @@ export namespace LAST_HEARTBEAT_TIME {
758
759
  export { value_51 as value };
759
760
  const sort_45: string[];
760
761
  export { sort_45 as sort };
761
- const formatter_23: string;
762
- export { formatter_23 as formatter };
763
- const width_18: number;
764
- export { width_18 as width };
762
+ const width_17: number;
763
+ export { width_17 as width };
765
764
  }
766
- export namespace REASON {
765
+ export namespace LAST_SEEN_TIME {
767
766
  const name_53: string;
768
767
  export { name_53 as name };
769
768
  const labelKey_53: string;
770
769
  export { labelKey_53 as labelKey };
771
770
  const value_52: string;
772
771
  export { value_52 as value };
773
- const sort_46: string[];
772
+ const sort_46: string;
774
773
  export { sort_46 as sort };
774
+ export const tooltip: string;
775
775
  }
776
- export namespace RECLAIM_POLICY {
776
+ export namespace LAST_HEARTBEAT_TIME {
777
777
  const name_54: string;
778
778
  export { name_54 as name };
779
779
  const labelKey_54: string;
@@ -782,8 +782,12 @@ export namespace RECLAIM_POLICY {
782
782
  export { value_53 as value };
783
783
  const sort_47: string[];
784
784
  export { sort_47 as sort };
785
+ const formatter_24: string;
786
+ export { formatter_24 as formatter };
787
+ const width_18: number;
788
+ export { width_18 as width };
785
789
  }
786
- export namespace PV_REASON {
790
+ export namespace REASON {
787
791
  const name_55: string;
788
792
  export { name_55 as name };
789
793
  const labelKey_55: string;
@@ -793,7 +797,7 @@ export namespace PV_REASON {
793
797
  const sort_48: string[];
794
798
  export { sort_48 as sort };
795
799
  }
796
- export namespace MESSAGE {
800
+ export namespace RECLAIM_POLICY {
797
801
  const name_56: string;
798
802
  export { name_56 as name };
799
803
  const labelKey_56: string;
@@ -803,7 +807,7 @@ export namespace MESSAGE {
803
807
  const sort_49: string[];
804
808
  export { sort_49 as sort };
805
809
  }
806
- export namespace KEY {
810
+ export namespace PV_REASON {
807
811
  const name_57: string;
808
812
  export { name_57 as name };
809
813
  const labelKey_57: string;
@@ -813,7 +817,7 @@ export namespace KEY {
813
817
  const sort_50: string[];
814
818
  export { sort_50 as sort };
815
819
  }
816
- export namespace VALUE {
820
+ export namespace MESSAGE {
817
821
  const name_58: string;
818
822
  export { name_58 as name };
819
823
  const labelKey_58: string;
@@ -823,7 +827,7 @@ export namespace VALUE {
823
827
  const sort_51: string[];
824
828
  export { sort_51 as sort };
825
829
  }
826
- export namespace BUILT_IN {
830
+ export namespace KEY {
827
831
  const name_59: string;
828
832
  export { name_59 as name };
829
833
  const labelKey_59: string;
@@ -832,12 +836,8 @@ export namespace BUILT_IN {
832
836
  export { value_58 as value };
833
837
  const sort_52: string[];
834
838
  export { sort_52 as sort };
835
- const align_9: string;
836
- export { align_9 as align };
837
- const formatter_24: string;
838
- export { formatter_24 as formatter };
839
839
  }
840
- export namespace CLUSTER_CREATOR_DEFAULT {
840
+ export namespace VALUE {
841
841
  const name_60: string;
842
842
  export { name_60 as name };
843
843
  const labelKey_60: string;
@@ -846,66 +846,70 @@ export namespace CLUSTER_CREATOR_DEFAULT {
846
846
  export { value_59 as value };
847
847
  const sort_53: string[];
848
848
  export { sort_53 as sort };
849
- const align_10: string;
850
- export { align_10 as align };
851
- const formatter_25: string;
852
- export { formatter_25 as formatter };
853
849
  }
854
- export namespace RBAC_DEFAULT {
850
+ export namespace BUILT_IN {
855
851
  const name_61: string;
856
852
  export { name_61 as name };
857
853
  const labelKey_61: string;
858
854
  export { labelKey_61 as labelKey };
859
855
  const value_60: string;
860
856
  export { value_60 as value };
861
- const formatter_26: string;
862
- export { formatter_26 as formatter };
863
857
  const sort_54: string[];
864
858
  export { sort_54 as sort };
859
+ const align_9: string;
860
+ export { align_9 as align };
861
+ const formatter_25: string;
862
+ export { formatter_25 as formatter };
865
863
  }
866
- export namespace RBAC_BUILTIN {
864
+ export namespace CLUSTER_CREATOR_DEFAULT {
867
865
  const name_62: string;
868
866
  export { name_62 as name };
869
867
  const labelKey_62: string;
870
868
  export { labelKey_62 as labelKey };
871
869
  const value_61: string;
872
870
  export { value_61 as value };
873
- const formatter_27: string;
874
- export { formatter_27 as formatter };
875
871
  const sort_55: string[];
876
872
  export { sort_55 as sort };
873
+ const align_10: string;
874
+ export { align_10 as align };
875
+ const formatter_26: string;
876
+ export { formatter_26 as formatter };
877
877
  }
878
- export namespace RESOURCE {
878
+ export namespace RBAC_DEFAULT {
879
879
  const name_63: string;
880
880
  export { name_63 as name };
881
881
  const labelKey_63: string;
882
882
  export { labelKey_63 as labelKey };
883
883
  const value_62: string;
884
884
  export { value_62 as value };
885
+ const formatter_27: string;
886
+ export { formatter_27 as formatter };
885
887
  const sort_56: string[];
886
888
  export { sort_56 as sort };
887
889
  }
888
- export namespace API_GROUP {
890
+ export namespace RBAC_BUILTIN {
889
891
  const name_64: string;
890
892
  export { name_64 as name };
891
893
  const labelKey_64: string;
892
894
  export { labelKey_64 as labelKey };
893
895
  const value_63: string;
894
896
  export { value_63 as value };
897
+ const formatter_28: string;
898
+ export { formatter_28 as formatter };
895
899
  const sort_57: string[];
896
900
  export { sort_57 as sort };
897
901
  }
898
- export namespace INGRESS_CLASS {
902
+ export namespace RESOURCE {
899
903
  const name_65: string;
900
904
  export { name_65 as name };
901
905
  const labelKey_65: string;
902
906
  export { labelKey_65 as labelKey };
903
907
  const value_64: string;
904
908
  export { value_64 as value };
905
- const sort_58: string;
909
+ const sort_58: string[];
906
910
  export { sort_58 as sort };
907
911
  }
908
- export namespace INGRESS_DEFAULT_BACKEND {
912
+ export namespace API_GROUP {
909
913
  const name_66: string;
910
914
  export { name_66 as name };
911
915
  const labelKey_66: string;
@@ -914,52 +918,46 @@ export namespace INGRESS_DEFAULT_BACKEND {
914
918
  export { value_65 as value };
915
919
  const sort_59: string[];
916
920
  export { sort_59 as sort };
917
- const formatter_28: string;
918
- export { formatter_28 as formatter };
919
- const width_19: number;
920
- export { width_19 as width };
921
- const align_11: string;
922
- export { align_11 as align };
923
921
  }
924
- export namespace INGRESS_TARGET {
922
+ export namespace INGRESS_CLASS {
925
923
  const name_67: string;
926
924
  export { name_67 as name };
927
925
  const labelKey_67: string;
928
926
  export { labelKey_67 as labelKey };
929
927
  const value_66: string;
930
928
  export { value_66 as value };
931
- const formatter_29: string;
932
- export { formatter_29 as formatter };
933
929
  const sort_60: string;
934
930
  export { sort_60 as sort };
935
931
  }
936
- export namespace SPEC_TYPE {
932
+ export namespace INGRESS_DEFAULT_BACKEND {
937
933
  const name_68: string;
938
934
  export { name_68 as name };
939
935
  const labelKey_68: string;
940
936
  export { labelKey_68 as labelKey };
941
937
  const value_67: string;
942
938
  export { value_67 as value };
943
- const sort_61: string;
939
+ const sort_61: string[];
944
940
  export { sort_61 as sort };
945
- const formatter_30: string;
946
- export { formatter_30 as formatter };
941
+ const formatter_29: string;
942
+ export { formatter_29 as formatter };
943
+ const width_19: number;
944
+ export { width_19 as width };
945
+ const align_11: string;
946
+ export { align_11 as align };
947
947
  }
948
- export namespace TARGET_PORT {
949
- const formatter_31: string;
950
- export { formatter_31 as formatter };
951
- const labelKey_69: string;
952
- export { labelKey_69 as labelKey };
948
+ export namespace INGRESS_TARGET {
953
949
  const name_69: string;
954
950
  export { name_69 as name };
955
- const sort_62: string;
956
- export { sort_62 as sort };
951
+ const labelKey_69: string;
952
+ export { labelKey_69 as labelKey };
957
953
  const value_68: string;
958
954
  export { value_68 as value };
955
+ const formatter_30: string;
956
+ export { formatter_30 as formatter };
957
+ const sort_62: string;
958
+ export { sort_62 as sort };
959
959
  }
960
- export namespace SELECTOR {
961
- const formatter_32: string;
962
- export { formatter_32 as formatter };
960
+ export namespace SPEC_TYPE {
963
961
  const name_70: string;
964
962
  export { name_70 as name };
965
963
  const labelKey_70: string;
@@ -968,18 +966,24 @@ export namespace SELECTOR {
968
966
  export { value_69 as value };
969
967
  const sort_63: string;
970
968
  export { sort_63 as sort };
969
+ const formatter_31: string;
970
+ export { formatter_31 as formatter };
971
971
  }
972
- export namespace CHART {
973
- const name_71: string;
974
- export { name_71 as name };
972
+ export namespace TARGET_PORT {
973
+ const formatter_32: string;
974
+ export { formatter_32 as formatter };
975
975
  const labelKey_71: string;
976
976
  export { labelKey_71 as labelKey };
977
+ const name_71: string;
978
+ export { name_71 as name };
979
+ const sort_64: string;
980
+ export { sort_64 as sort };
977
981
  const value_70: string;
978
982
  export { value_70 as value };
979
- const sort_64: string[];
980
- export { sort_64 as sort };
981
983
  }
982
- export namespace CHART_UPGRADE {
984
+ export namespace SELECTOR {
985
+ const formatter_33: string;
986
+ export { formatter_33 as formatter };
983
987
  const name_72: string;
984
988
  export { name_72 as name };
985
989
  const labelKey_72: string;
@@ -988,22 +992,18 @@ export namespace CHART_UPGRADE {
988
992
  export { value_71 as value };
989
993
  const sort_65: string;
990
994
  export { sort_65 as sort };
991
- const dashIfEmpty_4: boolean;
992
- export { dashIfEmpty_4 as dashIfEmpty };
993
995
  }
994
- export namespace RESOURCES {
996
+ export namespace CHART {
995
997
  const name_73: string;
996
998
  export { name_73 as name };
997
999
  const labelKey_73: string;
998
1000
  export { labelKey_73 as labelKey };
999
1001
  const value_72: string;
1000
1002
  export { value_72 as value };
1001
- const sort_66: string;
1003
+ const sort_66: string[];
1002
1004
  export { sort_66 as sort };
1003
- const width_20: number;
1004
- export { width_20 as width };
1005
1005
  }
1006
- export namespace URL {
1006
+ export namespace CHART_UPGRADE {
1007
1007
  const name_74: string;
1008
1008
  export { name_74 as name };
1009
1009
  const labelKey_74: string;
@@ -1012,48 +1012,72 @@ export namespace URL {
1012
1012
  export { value_73 as value };
1013
1013
  const sort_67: string;
1014
1014
  export { sort_67 as sort };
1015
+ const dashIfEmpty_4: boolean;
1016
+ export { dashIfEmpty_4 as dashIfEmpty };
1015
1017
  }
1016
- export namespace LAST_UPDATED {
1018
+ export namespace RESOURCES {
1017
1019
  const name_75: string;
1018
1020
  export { name_75 as name };
1019
1021
  const labelKey_75: string;
1020
1022
  export { labelKey_75 as labelKey };
1021
1023
  const value_74: string;
1022
1024
  export { value_74 as value };
1023
- const formatter_33: string;
1024
- export { formatter_33 as formatter };
1025
- export namespace formatterOpts_3 {
1026
- const addSuffix: boolean;
1027
- }
1028
- export { formatterOpts_3 as formatterOpts };
1029
- const sort_68: string[];
1025
+ const sort_68: string;
1030
1026
  export { sort_68 as sort };
1027
+ const width_20: number;
1028
+ export { width_20 as width };
1031
1029
  }
1032
- export namespace WORKSPACE {
1030
+ export namespace URL {
1033
1031
  const name_76: string;
1034
1032
  export { name_76 as name };
1035
- export const label: string;
1033
+ const labelKey_76: string;
1034
+ export { labelKey_76 as labelKey };
1036
1035
  const value_75: string;
1037
1036
  export { value_75 as value };
1038
- const sort_69: string[];
1037
+ const sort_69: string;
1039
1038
  export { sort_69 as sort };
1040
1039
  }
1041
- export namespace WORKLOAD_IMAGES {
1040
+ export namespace LAST_UPDATED {
1041
+ const name_77: string;
1042
+ export { name_77 as name };
1043
+ const labelKey_77: string;
1044
+ export { labelKey_77 as labelKey };
1042
1045
  const value_76: string;
1043
1046
  export { value_76 as value };
1044
- export const breakpoint: any;
1047
+ const formatter_34: string;
1048
+ export { formatter_34 as formatter };
1049
+ export namespace formatterOpts_3 {
1050
+ const addSuffix: boolean;
1051
+ }
1052
+ export { formatterOpts_3 as formatterOpts };
1053
+ const sort_70: string[];
1054
+ export { sort_70 as sort };
1045
1055
  }
1046
- export namespace WORKLOAD_ENDPOINTS {
1047
- const name_77: string;
1048
- export { name_77 as name };
1049
- const labelKey_76: string;
1050
- export { labelKey_76 as labelKey };
1056
+ export namespace WORKSPACE {
1057
+ const name_78: string;
1058
+ export { name_78 as name };
1059
+ export const label: string;
1051
1060
  const value_77: string;
1052
1061
  export { value_77 as value };
1062
+ const sort_71: string[];
1063
+ export { sort_71 as sort };
1064
+ }
1065
+ export namespace WORKLOAD_IMAGES {
1066
+ const value_78: string;
1067
+ export { value_78 as value };
1068
+ export const breakpoint: any;
1069
+ }
1070
+ export namespace WORKLOAD_ENDPOINTS {
1071
+ const name_79: string;
1072
+ export { name_79 as name };
1073
+ const labelKey_78: string;
1074
+ export { labelKey_78 as labelKey };
1075
+ const value_79: string;
1076
+ export { value_79 as value };
1053
1077
  export function getValue_11(row: any): any;
1054
1078
  export { getValue_11 as getValue };
1055
- const formatter_34: string;
1056
- export { formatter_34 as formatter };
1079
+ const formatter_35: string;
1080
+ export { formatter_35 as formatter };
1057
1081
  const dashIfEmpty_5: boolean;
1058
1082
  export { dashIfEmpty_5 as dashIfEmpty };
1059
1083
  const breakpoint_1: any;
@@ -1061,12 +1085,12 @@ export namespace WORKLOAD_ENDPOINTS {
1061
1085
  export const maxPageSize: number;
1062
1086
  }
1063
1087
  export namespace WORKLOAD_HEALTH_SCALE {
1064
- const name_78: string;
1065
- export { name_78 as name };
1066
- const labelKey_77: string;
1067
- export { labelKey_77 as labelKey };
1068
- const formatter_35: string;
1069
- export { formatter_35 as formatter };
1088
+ const name_80: string;
1089
+ export { name_80 as name };
1090
+ const labelKey_79: string;
1091
+ export { labelKey_79 as labelKey };
1092
+ const formatter_36: string;
1093
+ export { formatter_36 as formatter };
1070
1094
  export function getValue_12(): any;
1071
1095
  export { getValue_12 as getValue };
1072
1096
  const width_21: number;
@@ -1080,52 +1104,52 @@ export namespace WORKLOAD_HEALTH_SCALE {
1080
1104
  export { liveUpdates_1 as liveUpdates };
1081
1105
  }
1082
1106
  export namespace FLEET_SUMMARY {
1083
- const name_79: string;
1084
- export { name_79 as name };
1085
- const labelKey_78: string;
1086
- export { labelKey_78 as labelKey };
1087
- const value_78: string;
1088
- export { value_78 as value };
1089
- const sort_70: boolean;
1090
- export { sort_70 as sort };
1107
+ const name_81: string;
1108
+ export { name_81 as name };
1109
+ const labelKey_80: string;
1110
+ export { labelKey_80 as labelKey };
1111
+ const value_80: string;
1112
+ export { value_80 as value };
1113
+ const sort_72: boolean;
1114
+ export { sort_72 as sort };
1091
1115
  const search_7: boolean;
1092
1116
  export { search_7 as search };
1093
- const formatter_36: string;
1094
- export { formatter_36 as formatter };
1117
+ const formatter_37: string;
1118
+ export { formatter_37 as formatter };
1095
1119
  const align_12: string;
1096
1120
  export { align_12 as align };
1097
1121
  const width_22: number;
1098
1122
  export { width_22 as width };
1099
1123
  }
1100
1124
  export namespace APP_SUMMARY {
1101
- const name_80: string;
1102
- export { name_80 as name };
1103
- const labelKey_79: string;
1104
- export { labelKey_79 as labelKey };
1105
- const value_79: string;
1106
- export { value_79 as value };
1107
- const sort_71: boolean;
1108
- export { sort_71 as sort };
1125
+ const name_82: string;
1126
+ export { name_82 as name };
1127
+ const labelKey_81: string;
1128
+ export { labelKey_81 as labelKey };
1129
+ const value_81: string;
1130
+ export { value_81 as value };
1131
+ const sort_73: boolean;
1132
+ export { sort_73 as sort };
1109
1133
  const search_8: boolean;
1110
1134
  export { search_8 as search };
1111
- const formatter_37: string;
1112
- export { formatter_37 as formatter };
1135
+ const formatter_38: string;
1136
+ export { formatter_38 as formatter };
1113
1137
  const align_13: string;
1114
1138
  export { align_13 as align };
1115
1139
  const width_23: number;
1116
1140
  export { width_23 as width };
1117
1141
  }
1118
1142
  export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
1119
- const name_81: string;
1120
- export { name_81 as name };
1143
+ const name_83: string;
1144
+ export { name_83 as name };
1121
1145
  const label_1: string;
1122
1146
  export { label_1 as label };
1123
- const value_80: string;
1124
- export { value_80 as value };
1125
- const sort_72: string;
1126
- export { sort_72 as sort };
1127
- const formatter_38: string;
1128
- export { formatter_38 as formatter };
1147
+ const value_82: string;
1148
+ export { value_82 as value };
1149
+ const sort_74: string;
1150
+ export { sort_74 as sort };
1151
+ const formatter_39: string;
1152
+ export { formatter_39 as formatter };
1129
1153
  export namespace formatterOpts_4 {
1130
1154
  export namespace options_1 {
1131
1155
  const internal_1: boolean;
@@ -1136,16 +1160,16 @@ export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
1136
1160
  export { formatterOpts_4 as formatterOpts };
1137
1161
  }
1138
1162
  export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
1139
- const name_82: string;
1140
- export { name_82 as name };
1163
+ const name_84: string;
1164
+ export { name_84 as name };
1141
1165
  const label_2: string;
1142
1166
  export { label_2 as label };
1143
- const value_81: string;
1144
- export { value_81 as value };
1145
- const sort_73: string;
1146
- export { sort_73 as sort };
1147
- const formatter_39: string;
1148
- export { formatter_39 as formatter };
1167
+ const value_83: string;
1168
+ export { value_83 as value };
1169
+ const sort_75: string;
1170
+ export { sort_75 as sort };
1171
+ const formatter_40: string;
1172
+ export { formatter_40 as formatter };
1149
1173
  export namespace formatterOpts_5 {
1150
1174
  export namespace options_2 {
1151
1175
  const internal_2: boolean;
@@ -1156,141 +1180,121 @@ export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
1156
1180
  export { formatterOpts_5 as formatterOpts };
1157
1181
  }
1158
1182
  export namespace CONSTRAINT_VIOLATION_TYPE {
1159
- const name_83: string;
1160
- export { name_83 as name };
1161
- const label_3: string;
1162
- export { label_3 as label };
1163
- const value_82: string;
1164
- export { value_82 as value };
1165
- const sort_74: string;
1166
- export { sort_74 as sort };
1167
- }
1168
- export namespace CONSTRAINT_VIOLATION_MESSAGE {
1169
- const name_84: string;
1170
- export { name_84 as name };
1171
- const label_4: string;
1172
- export { label_4 as label };
1173
- const value_83: string;
1174
- export { value_83 as value };
1175
- const sort_75: string;
1176
- export { sort_75 as sort };
1177
- }
1178
- export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
1179
1183
  const name_85: string;
1180
1184
  export { name_85 as name };
1181
- const label_5: string;
1182
- export { label_5 as label };
1185
+ const label_3: string;
1186
+ export { label_3 as label };
1183
1187
  const value_84: string;
1184
1188
  export { value_84 as value };
1185
1189
  const sort_76: string;
1186
1190
  export { sort_76 as sort };
1187
- const formatter_40: string;
1188
- export { formatter_40 as formatter };
1189
- export namespace formatterOpts_6 {
1190
- export namespace options_3 {
1191
- const internal_3: boolean;
1192
- export { internal_3 as internal };
1193
- }
1194
- export { options_3 as options };
1195
- }
1196
- export { formatterOpts_6 as formatterOpts };
1197
1191
  }
1198
- export namespace CONSTRAINT_VIOLATION_COUNT {
1192
+ export namespace CONSTRAINT_VIOLATION_MESSAGE {
1199
1193
  const name_86: string;
1200
1194
  export { name_86 as name };
1201
- const label_6: string;
1202
- export { label_6 as label };
1195
+ const label_4: string;
1196
+ export { label_4 as label };
1203
1197
  const value_85: string;
1204
1198
  export { value_85 as value };
1205
1199
  const sort_77: string;
1206
1200
  export { sort_77 as sort };
1207
- const formatter_41: string;
1208
- export { formatter_41 as formatter };
1209
- export namespace formatterOpts_7 {
1210
- function qualityFn(value: any): "error" | "success" | "warning";
1211
- function qualityFn(value: any): "error" | "success" | "warning";
1212
- }
1213
- export { formatterOpts_7 as formatterOpts };
1214
1201
  }
1215
- export namespace RECEIVER_PROVIDERS {
1202
+ export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
1216
1203
  const name_87: string;
1217
1204
  export { name_87 as name };
1218
- const label_7: string;
1219
- export { label_7 as label };
1205
+ const label_5: string;
1206
+ export { label_5 as label };
1220
1207
  const value_86: string;
1221
1208
  export { value_86 as value };
1222
1209
  const sort_78: string;
1223
1210
  export { sort_78 as sort };
1224
- const formatter_42: string;
1225
- export { formatter_42 as formatter };
1211
+ const formatter_41: string;
1212
+ export { formatter_41 as formatter };
1213
+ export namespace formatterOpts_6 {
1214
+ export namespace options_3 {
1215
+ const internal_3: boolean;
1216
+ export { internal_3 as internal };
1217
+ }
1218
+ export { options_3 as options };
1219
+ }
1220
+ export { formatterOpts_6 as formatterOpts };
1226
1221
  }
1227
- export namespace CONFIGURED_RECEIVER {
1222
+ export namespace CONSTRAINT_VIOLATION_COUNT {
1228
1223
  const name_88: string;
1229
1224
  export { name_88 as name };
1230
- const label_8: string;
1231
- export { label_8 as label };
1225
+ const label_6: string;
1226
+ export { label_6 as label };
1232
1227
  const value_87: string;
1233
1228
  export { value_87 as value };
1234
1229
  const sort_79: string;
1235
1230
  export { sort_79 as sort };
1236
- const formatter_43: string;
1237
- export { formatter_43 as formatter };
1238
- export namespace formatterOpts_8 {
1239
- export namespace options_4 {
1240
- const internal_4: boolean;
1241
- export { internal_4 as internal };
1242
- }
1243
- export { options_4 as options };
1231
+ const formatter_42: string;
1232
+ export { formatter_42 as formatter };
1233
+ export namespace formatterOpts_7 {
1234
+ function qualityFn(value: any): "error" | "success" | "warning";
1235
+ function qualityFn(value: any): "error" | "success" | "warning";
1244
1236
  }
1245
- export { formatterOpts_8 as formatterOpts };
1237
+ export { formatterOpts_7 as formatterOpts };
1246
1238
  }
1247
- export namespace GROUP_NAME {
1239
+ export namespace RECEIVER_PROVIDERS {
1248
1240
  const name_89: string;
1249
1241
  export { name_89 as name };
1250
- const labelKey_80: string;
1251
- export { labelKey_80 as labelKey };
1242
+ const label_7: string;
1243
+ export { label_7 as label };
1252
1244
  const value_88: string;
1253
1245
  export { value_88 as value };
1254
- const sort_80: string[];
1246
+ const sort_80: string;
1255
1247
  export { sort_80 as sort };
1256
- const search_9: string[];
1257
- export { search_9 as search };
1258
- const formatter_44: string;
1259
- export { formatter_44 as formatter };
1260
- const width_24: number;
1261
- export { width_24 as width };
1248
+ const formatter_43: string;
1249
+ export { formatter_43 as formatter };
1262
1250
  }
1263
- export namespace GROUP_ROLE_NAME {
1251
+ export namespace CONFIGURED_RECEIVER {
1264
1252
  const name_90: string;
1265
1253
  export { name_90 as name };
1266
- const labelKey_81: string;
1267
- export { labelKey_81 as labelKey };
1254
+ const label_8: string;
1255
+ export { label_8 as label };
1268
1256
  const value_89: string;
1269
1257
  export { value_89 as value };
1270
- const formatter_45: string;
1271
- export { formatter_45 as formatter };
1258
+ const sort_81: string;
1259
+ export { sort_81 as sort };
1260
+ const formatter_44: string;
1261
+ export { formatter_44 as formatter };
1262
+ export namespace formatterOpts_8 {
1263
+ export namespace options_4 {
1264
+ const internal_4: boolean;
1265
+ export { internal_4 as internal };
1266
+ }
1267
+ export { options_4 as options };
1268
+ }
1269
+ export { formatterOpts_8 as formatterOpts };
1272
1270
  }
1273
- export namespace HPA_REFERENCE {
1271
+ export namespace GROUP_NAME {
1274
1272
  const name_91: string;
1275
1273
  export { name_91 as name };
1276
1274
  const labelKey_82: string;
1277
1275
  export { labelKey_82 as labelKey };
1278
1276
  const value_90: string;
1279
1277
  export { value_90 as value };
1280
- const sort_81: string;
1281
- export { sort_81 as sort };
1278
+ const sort_82: string[];
1279
+ export { sort_82 as sort };
1280
+ const search_9: string[];
1281
+ export { search_9 as search };
1282
+ const formatter_45: string;
1283
+ export { formatter_45 as formatter };
1284
+ const width_24: number;
1285
+ export { width_24 as width };
1282
1286
  }
1283
- export namespace MIN_REPLICA {
1287
+ export namespace GROUP_ROLE_NAME {
1284
1288
  const name_92: string;
1285
1289
  export { name_92 as name };
1286
1290
  const labelKey_83: string;
1287
1291
  export { labelKey_83 as labelKey };
1288
1292
  const value_91: string;
1289
1293
  export { value_91 as value };
1290
- const sort_82: string;
1291
- export { sort_82 as sort };
1294
+ const formatter_46: string;
1295
+ export { formatter_46 as formatter };
1292
1296
  }
1293
- export namespace MAX_REPLICA {
1297
+ export namespace HPA_REFERENCE {
1294
1298
  const name_93: string;
1295
1299
  export { name_93 as name };
1296
1300
  const labelKey_84: string;
@@ -1300,7 +1304,7 @@ export namespace MAX_REPLICA {
1300
1304
  const sort_83: string;
1301
1305
  export { sort_83 as sort };
1302
1306
  }
1303
- export namespace CURRENT_REPLICA {
1307
+ export namespace MIN_REPLICA {
1304
1308
  const name_94: string;
1305
1309
  export { name_94 as name };
1306
1310
  const labelKey_85: string;
@@ -1310,147 +1314,141 @@ export namespace CURRENT_REPLICA {
1310
1314
  const sort_84: string;
1311
1315
  export { sort_84 as sort };
1312
1316
  }
1313
- export namespace EXPIRY_STATE {
1314
- const value_94: string;
1315
- export { value_94 as value };
1316
- const formatter_46: string;
1317
- export { formatter_46 as formatter };
1318
- }
1319
- export namespace ACCESS_KEY {
1317
+ export namespace MAX_REPLICA {
1320
1318
  const name_95: string;
1321
1319
  export { name_95 as name };
1322
1320
  const labelKey_86: string;
1323
1321
  export { labelKey_86 as labelKey };
1324
- const align_14: string;
1325
- export { align_14 as align };
1326
- const sort_85: string[];
1322
+ const value_94: string;
1323
+ export { value_94 as value };
1324
+ const sort_85: string;
1327
1325
  export { sort_85 as sort };
1328
- const width_25: number;
1329
- export { width_25 as width };
1330
1326
  }
1331
- export namespace SCOPE {
1327
+ export namespace CURRENT_REPLICA {
1332
1328
  const name_96: string;
1333
1329
  export { name_96 as name };
1334
- const value_95: string;
1335
- export { value_95 as value };
1336
1330
  const labelKey_87: string;
1337
1331
  export { labelKey_87 as labelKey };
1338
- const dashIfEmpty_6: boolean;
1339
- export { dashIfEmpty_6 as dashIfEmpty };
1340
- const align_15: string;
1341
- export { align_15 as align };
1342
- const sort_86: string[];
1332
+ const value_95: string;
1333
+ export { value_95 as value };
1334
+ const sort_86: string;
1343
1335
  export { sort_86 as sort };
1344
- const width_26: number;
1345
- export { width_26 as width };
1346
1336
  }
1347
- export namespace SCOPE_NORMAN {
1337
+ export namespace EXPIRY_STATE {
1348
1338
  const value_96: string;
1349
1339
  export { value_96 as value };
1350
- const sort_87: string[];
1351
- export { sort_87 as sort };
1340
+ const formatter_47: string;
1341
+ export { formatter_47 as formatter };
1352
1342
  }
1353
- export namespace EXPIRES {
1343
+ export namespace ACCESS_KEY {
1354
1344
  const name_97: string;
1355
1345
  export { name_97 as name };
1356
- const value_97: string;
1357
- export { value_97 as value };
1358
1346
  const labelKey_88: string;
1359
1347
  export { labelKey_88 as labelKey };
1360
- const align_16: string;
1361
- export { align_16 as align };
1362
- const sort_88: string[];
1363
- export { sort_88 as sort };
1364
- const width_27: number;
1365
- export { width_27 as width };
1366
- const formatter_47: string;
1367
- export { formatter_47 as formatter };
1348
+ const align_14: string;
1349
+ export { align_14 as align };
1350
+ const sort_87: string[];
1351
+ export { sort_87 as sort };
1352
+ const width_25: number;
1353
+ export { width_25 as width };
1368
1354
  }
1369
- export namespace RESTART {
1355
+ export namespace SCOPE {
1370
1356
  const name_98: string;
1371
1357
  export { name_98 as name };
1358
+ const value_97: string;
1359
+ export { value_97 as value };
1372
1360
  const labelKey_89: string;
1373
1361
  export { labelKey_89 as labelKey };
1362
+ const dashIfEmpty_6: boolean;
1363
+ export { dashIfEmpty_6 as dashIfEmpty };
1364
+ const align_15: string;
1365
+ export { align_15 as align };
1366
+ const sort_88: string[];
1367
+ export { sort_88 as sort };
1368
+ const width_26: number;
1369
+ export { width_26 as width };
1370
+ }
1371
+ export namespace SCOPE_NORMAN {
1374
1372
  const value_98: string;
1375
1373
  export { value_98 as value };
1376
1374
  const sort_89: string[];
1377
1375
  export { sort_89 as sort };
1378
- const formatter_48: string;
1379
- export { formatter_48 as formatter };
1380
- const width_28: number;
1381
- export { width_28 as width };
1382
- const align_17: string;
1383
- export { align_17 as align };
1384
1376
  }
1385
- export namespace ROLE {
1377
+ export namespace EXPIRES {
1386
1378
  const name_99: string;
1387
1379
  export { name_99 as name };
1388
1380
  const value_99: string;
1389
1381
  export { value_99 as value };
1390
1382
  const labelKey_90: string;
1391
1383
  export { labelKey_90 as labelKey };
1384
+ const align_16: string;
1385
+ export { align_16 as align };
1386
+ const sort_90: string[];
1387
+ export { sort_90 as sort };
1388
+ const width_27: number;
1389
+ export { width_27 as width };
1390
+ const formatter_48: string;
1391
+ export { formatter_48 as formatter };
1392
1392
  }
1393
- export namespace FEATURE_DESCRIPTION {
1393
+ export namespace RESTART {
1394
1394
  const name_100: string;
1395
1395
  export { name_100 as name };
1396
1396
  const labelKey_91: string;
1397
1397
  export { labelKey_91 as labelKey };
1398
1398
  const value_100: string;
1399
1399
  export { value_100 as value };
1400
- const align_18: string;
1401
- export { align_18 as align };
1402
- const sort_90: string[];
1403
- export { sort_90 as sort };
1400
+ const sort_91: string[];
1401
+ export { sort_91 as sort };
1404
1402
  const formatter_49: string;
1405
1403
  export { formatter_49 as formatter };
1406
- export namespace formatterOpts_9 {
1407
- const prefix: string;
1408
- }
1409
- export { formatterOpts_9 as formatterOpts };
1404
+ const width_28: number;
1405
+ export { width_28 as width };
1406
+ const align_17: string;
1407
+ export { align_17 as align };
1410
1408
  }
1411
- export namespace STATE_NORMAN {
1409
+ export namespace ROLE {
1412
1410
  const name_101: string;
1413
1411
  export { name_101 as name };
1414
- const labelKey_92: string;
1415
- export { labelKey_92 as labelKey };
1416
- const sort_91: string[];
1417
- export { sort_91 as sort };
1418
1412
  const value_101: string;
1419
1413
  export { value_101 as value };
1420
- const width_29: number;
1421
- export { width_29 as width };
1422
- const _default_1: string;
1423
- export { _default_1 as default };
1424
- const formatter_50: string;
1425
- export { formatter_50 as formatter };
1414
+ const labelKey_92: string;
1415
+ export { labelKey_92 as labelKey };
1426
1416
  }
1427
- export namespace KUBE_NODE_OS {
1417
+ export namespace FEATURE_DESCRIPTION {
1428
1418
  const name_102: string;
1429
1419
  export { name_102 as name };
1430
1420
  const labelKey_93: string;
1431
1421
  export { labelKey_93 as labelKey };
1432
1422
  const value_102: string;
1433
1423
  export { value_102 as value };
1424
+ const align_18: string;
1425
+ export { align_18 as align };
1434
1426
  const sort_92: string[];
1435
1427
  export { sort_92 as sort };
1436
- const formatter_51: string;
1437
- export { formatter_51 as formatter };
1428
+ const formatter_50: string;
1429
+ export { formatter_50 as formatter };
1430
+ export namespace formatterOpts_9 {
1431
+ const prefix: string;
1432
+ }
1433
+ export { formatterOpts_9 as formatterOpts };
1438
1434
  }
1439
- export namespace MACHINE_NODE_OS {
1435
+ export namespace STATE_NORMAN {
1440
1436
  const name_103: string;
1441
1437
  export { name_103 as name };
1442
1438
  const labelKey_94: string;
1443
1439
  export { labelKey_94 as labelKey };
1444
- const value_103: string;
1445
- export { value_103 as value };
1446
1440
  const sort_93: string[];
1447
1441
  export { sort_93 as sort };
1448
- const formatter_52: string;
1449
- export { formatter_52 as formatter };
1450
- const dashIfEmpty_7: boolean;
1451
- export { dashIfEmpty_7 as dashIfEmpty };
1442
+ const value_103: string;
1443
+ export { value_103 as value };
1444
+ const width_29: number;
1445
+ export { width_29 as width };
1446
+ const _default_1: string;
1447
+ export { _default_1 as default };
1448
+ const formatter_51: string;
1449
+ export { formatter_51 as formatter };
1452
1450
  }
1453
- export namespace MANAGEMENT_NODE_OS {
1451
+ export namespace KUBE_NODE_OS {
1454
1452
  const name_104: string;
1455
1453
  export { name_104 as name };
1456
1454
  const labelKey_95: string;
@@ -1459,29 +1457,24 @@ export namespace MANAGEMENT_NODE_OS {
1459
1457
  export { value_104 as value };
1460
1458
  const sort_94: string[];
1461
1459
  export { sort_94 as sort };
1462
- const formatter_53: string;
1463
- export { formatter_53 as formatter };
1464
- const dashIfEmpty_8: boolean;
1465
- export { dashIfEmpty_8 as dashIfEmpty };
1460
+ const formatter_52: string;
1461
+ export { formatter_52 as formatter };
1466
1462
  }
1467
- export namespace FLEET_BUNDLE_LAST_UPDATED {
1463
+ export namespace MACHINE_NODE_OS {
1468
1464
  const name_105: string;
1469
1465
  export { name_105 as name };
1470
1466
  const labelKey_96: string;
1471
1467
  export { labelKey_96 as labelKey };
1472
1468
  const value_105: string;
1473
1469
  export { value_105 as value };
1474
- const formatter_54: string;
1475
- export { formatter_54 as formatter };
1476
- export namespace formatterOpts_10 {
1477
- const addSuffix_1: boolean;
1478
- export { addSuffix_1 as addSuffix };
1479
- }
1480
- export { formatterOpts_10 as formatterOpts };
1481
1470
  const sort_95: string[];
1482
1471
  export { sort_95 as sort };
1472
+ const formatter_53: string;
1473
+ export { formatter_53 as formatter };
1474
+ const dashIfEmpty_7: boolean;
1475
+ export { dashIfEmpty_7 as dashIfEmpty };
1483
1476
  }
1484
- export namespace FLEET_BUNDLE_TYPE {
1477
+ export namespace MANAGEMENT_NODE_OS {
1485
1478
  const name_106: string;
1486
1479
  export { name_106 as name };
1487
1480
  const labelKey_97: string;
@@ -1490,16 +1483,39 @@ export namespace FLEET_BUNDLE_TYPE {
1490
1483
  export { value_106 as value };
1491
1484
  const sort_96: string[];
1492
1485
  export { sort_96 as sort };
1493
- const width_30: number;
1494
- export { width_30 as width };
1486
+ const formatter_54: string;
1487
+ export { formatter_54 as formatter };
1488
+ const dashIfEmpty_8: boolean;
1489
+ export { dashIfEmpty_8 as dashIfEmpty };
1495
1490
  }
1496
- export namespace IP_ADDRESS {
1491
+ export namespace FLEET_BUNDLE_LAST_UPDATED {
1497
1492
  const name_107: string;
1498
1493
  export { name_107 as name };
1499
- const value_107: string;
1500
- export { value_107 as value };
1501
1494
  const labelKey_98: string;
1502
1495
  export { labelKey_98 as labelKey };
1496
+ const value_107: string;
1497
+ export { value_107 as value };
1498
+ const formatter_55: string;
1499
+ export { formatter_55 as formatter };
1500
+ export namespace formatterOpts_10 {
1501
+ const addSuffix_1: boolean;
1502
+ export { addSuffix_1 as addSuffix };
1503
+ }
1504
+ export { formatterOpts_10 as formatterOpts };
1505
+ const sort_97: string[];
1506
+ export { sort_97 as sort };
1507
+ }
1508
+ export namespace FLEET_BUNDLE_TYPE {
1509
+ const name_108: string;
1510
+ export { name_108 as name };
1511
+ const labelKey_99: string;
1512
+ export { labelKey_99 as labelKey };
1513
+ const value_108: string;
1514
+ export { value_108 as value };
1515
+ const sort_98: string[];
1516
+ export { sort_98 as sort };
1517
+ const width_30: number;
1518
+ export { width_30 as width };
1503
1519
  }
1504
1520
  }
1505
1521
 
@@ -1559,6 +1575,7 @@ export const SERVICE: "service";
1559
1575
  export const SECRET: "secret";
1560
1576
  export const SERVICE_ACCOUNT: "serviceaccount";
1561
1577
  export const STORAGE_CLASS: "storage.k8s.io.storageclass";
1578
+ export const CSI_DRIVER: "storage.k8s.io.csidriver";
1562
1579
  export const OBJECT_META: "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta";
1563
1580
  export const NETWORK_ATTACHMENT: "k8s.cni.cncf.io.networkattachmentdefinition";
1564
1581
  export namespace RBAC {
@@ -1661,6 +1678,7 @@ export namespace MANAGEMENT {
1661
1678
  const GLOBAL_ROLE_BINDING_1: string;
1662
1679
  export { GLOBAL_ROLE_BINDING_1 as GLOBAL_ROLE_BINDING };
1663
1680
  export const POD_SECURITY_POLICY_TEMPLATE: string;
1681
+ export const PSA: string;
1664
1682
  export const MANAGED_CHART: string;
1665
1683
  export const USER_NOTIFICATION: string;
1666
1684
  export const GLOBAL_DNS_PROVIDER: string;
@@ -1765,6 +1783,7 @@ export const VIRTUAL_HARVESTER_PROVIDER: "harvester";
1765
1783
  export namespace ADDRESSES {
1766
1784
  const HOSTNAME: string;
1767
1785
  const INTERNAL_IP: string;
1786
+ const EXTERNAL_IP: string;
1768
1787
  }
1769
1788
  export const DEFAULT_WORKSPACE: "fleet-default";
1770
1789
  export namespace AUTH_TYPE {
@@ -1824,6 +1843,8 @@ declare namespace _default {
1824
1843
  function save(buttonDone: any, url: any, depth?: number): any;
1825
1844
  function actuallySave(url: any): Promise<void>;
1826
1845
  function actuallySave(url: any): Promise<void>;
1846
+ function setErrors(errors: any): void;
1847
+ function setErrors(errors: any): void;
1827
1848
  }
1828
1849
  }
1829
1850
  export default _default;
@@ -1832,67 +1853,35 @@ export default _default;
1832
1853
  // @shell/mixins/create-edit-view
1833
1854
 
1834
1855
  declare module '@shell/mixins/create-edit-view' {
1835
- declare var _default: {
1836
- props: {
1837
- mode: {
1838
- type: StringConstructor;
1839
- default: any;
1840
- };
1841
- realMode: {
1842
- type: StringConstructor;
1843
- default: any;
1844
- };
1845
- as: {
1846
- type: StringConstructor;
1847
- default: any;
1848
- };
1849
- value: {
1850
- type: ObjectConstructor;
1851
- required: boolean;
1852
- };
1853
- initialValue: {
1854
- type: ObjectConstructor;
1855
- default: any;
1856
- };
1857
- liveValue: {
1858
- type: ObjectConstructor;
1859
- default: any;
1860
- };
1861
- doneEvent: {
1862
- type: BooleanConstructor;
1863
- default: boolean;
1864
- };
1865
- };
1866
- name: string;
1867
- mixins: any[];
1868
- data(): {
1869
- errors: any[];
1870
- };
1871
- computed: {
1872
- isCreate(): boolean;
1873
- isEdit(): boolean;
1874
- isView(): boolean;
1875
- schema(): any;
1876
- isNamespaced(): any;
1877
- labels: {
1878
- get(): any;
1879
- set(neu: any): void;
1880
- };
1881
- annotations: {
1882
- get(): any;
1883
- set(neu: any): void;
1884
- };
1885
- doneRoute(): any;
1886
- doneParams(): any;
1887
- };
1888
- methods: {
1889
- done(): any;
1890
- conflict(): any;
1891
- save(buttonDone: any, url: any, depth?: number): any;
1892
- actuallySave(url: any): Promise<void>;
1893
- };
1894
- };
1856
+ declare var _default: import("vue/types/vue").ExtendedVue<Vue, {
1857
+ errors: any[];
1858
+ }, {
1859
+ done(): any;
1860
+ conflict(): any;
1861
+ save(buttonDone: any, url: any, depth?: number): any;
1862
+ actuallySave(url: any): Promise<void>;
1863
+ setErrors(errors: any): void;
1864
+ }, {
1865
+ isCreate: boolean;
1866
+ isEdit: boolean;
1867
+ isView: boolean;
1868
+ schema: any;
1869
+ isNamespaced: any;
1870
+ labels: any;
1871
+ annotations: any;
1872
+ doneRoute: any;
1873
+ doneParams: any;
1874
+ }, {
1875
+ mode: any;
1876
+ realMode: any;
1877
+ as: any;
1878
+ value: any;
1879
+ initialValue: any;
1880
+ liveValue: any;
1881
+ doneEvent: boolean;
1882
+ }>;
1895
1883
  export default _default;
1884
+ import Vue from "vue";
1896
1885
  }
1897
1886
 
1898
1887
  // @shell/plugins/dashboard-store/normalize
@@ -2054,14 +2043,14 @@ export default class Resource {
2054
2043
  get stateSort(): string;
2055
2044
  get stateDescription(): any;
2056
2045
  get stateObj(): any;
2057
- waitForTestFn(fn: any, msg: any, timeoutMs: any, intervalMs: any): Promise<any>;
2058
- waitForState(state: any, timeout: any, interval: any): Promise<any>;
2059
- waitForTransition(): Promise<any>;
2060
- waitForAction(name: any): Promise<any>;
2061
- waitForLink(name: any): Promise<any>;
2046
+ waitForTestFn(fn: any, msg: any, timeoutMs: any, intervalMs: any): any;
2047
+ waitForState(state: any, timeout: any, interval: any): any;
2048
+ waitForTransition(): any;
2049
+ waitForAction(name: any): any;
2050
+ waitForLink(name: any): any;
2062
2051
  hasCondition(condition: any): boolean;
2063
2052
  isCondition(condition: any, withStatus?: string): boolean;
2064
- waitForCondition(name: any, withStatus?: string, timeoutMs?: number, intervalMs?: number): Promise<any>;
2053
+ waitForCondition(name: any, withStatus?: string, timeoutMs?: number, intervalMs?: number): any;
2065
2054
  get availableActions(): ({
2066
2055
  divider: boolean;
2067
2056
  action?: undefined;
@@ -2162,6 +2151,11 @@ export default class Resource {
2162
2151
  doActionGrowl(actionName: any, body: any, opt?: {}): Promise<void>;
2163
2152
  patch(data: any, opt?: {}, merge?: boolean, alertOnError?: boolean): any;
2164
2153
  save(...args: any[]): Promise<Resource>;
2154
+ /**
2155
+ * Allow to handle the response of the save request
2156
+ * @param {*} res Full request response
2157
+ */
2158
+ processSaveResponse(res: any): void;
2165
2159
  _save(opt?: {}): Promise<Resource>;
2166
2160
  remove(...args: any[]): Promise<void>;
2167
2161
  _remove(opt?: {}): Promise<void>;
@@ -2367,6 +2361,22 @@ export function contrastColor(color: any, contrastOptions?: {
2367
2361
  }): string;
2368
2362
  export function parseColor(str: any): any;
2369
2363
  export function textColor(color: any): "black" | "white";
2364
+ export function hexToRgb(hex: any): {
2365
+ r: number;
2366
+ g: number;
2367
+ b: number;
2368
+ };
2369
+ export function mapStandardColors(color: any): any;
2370
+ export function rgbToRgb(rgb: any): {
2371
+ r: number;
2372
+ g: number;
2373
+ b: number;
2374
+ };
2375
+ export function colorToRgb(color: any): {
2376
+ r: number;
2377
+ g: number;
2378
+ b: number;
2379
+ };
2370
2380
  }
2371
2381
 
2372
2382
  // @shell/utils/computed
@@ -2457,6 +2467,8 @@ export function resolveChart(key: any): string;
2457
2467
  export function resolveEdit(key: any): string;
2458
2468
  export function resolveDetail(key: any): string;
2459
2469
  export function resolveWindowComponent(key: any): string;
2470
+ export function resolveMachineConfigComponent(key: any): string;
2471
+ export function resolveCloudCredentialComponent(key: any): string;
2460
2472
  }
2461
2473
 
2462
2474
  // @shell/utils/ember-page
@@ -2589,6 +2601,11 @@ export function diff(from: any, to: any): any;
2589
2601
  export function changeset(from: any, to: any, parentPath?: any[]): {};
2590
2602
  export function changesetConflicts(a: any, b: any): any[];
2591
2603
  export function applyChangeset(obj: any, changeset: any): any;
2604
+ /**
2605
+ * Creates an object composed of the `object` properties `predicate` returns
2606
+ */
2607
+ export function pickBy(obj?: {}, predicate?: (value: any, key: any) => boolean): {};
2608
+ export function toDictionary(array: any, callback: any): any;
2592
2609
  }
2593
2610
 
2594
2611
  // @shell/utils/parse-externalid
@@ -2777,6 +2794,8 @@ export function matching(ary: any, selector: any): any;
2777
2794
  // @shell/utils/socket
2778
2795
 
2779
2796
  declare module '@shell/utils/socket' {
2797
+ export const STATE_CONNECTING: "connecting";
2798
+ export const STATE_CONNECTED: "connected";
2780
2799
  export const EVENT_CONNECTING: "connecting";
2781
2800
  export const EVENT_CONNECTED: "connected";
2782
2801
  export const EVENT_DISCONNECTED: "disconnected";
@@ -2784,13 +2803,15 @@ export const EVENT_MESSAGE: "message";
2784
2803
  export const EVENT_FRAME_TIMEOUT: "frame_timeout";
2785
2804
  export const EVENT_CONNECT_ERROR: "connect_error";
2786
2805
  export const EVENT_DISCONNECT_ERROR: "disconnect_error";
2806
+ export const NO_WATCH: "NO_WATCH";
2807
+ export const NO_SCHEMA: "NO_SCHEMA";
2787
2808
  declare const Socket_base: import("event-target-shim").EventTargetConstructor<{}, {}, "loose"> & {
2788
2809
  <TEvents extends EventTarget.EventDefinition = {}, TEventAttributes extends EventTarget.EventDefinition = {}, TMode extends EventTarget.Mode = "loose">(events: string[]): import("event-target-shim").EventTargetConstructor<TEvents, TEventAttributes, TMode>;
2789
2810
  <TEvents_1 extends EventTarget.EventDefinition = {}, TEventAttributes_1 extends EventTarget.EventDefinition = {}, TMode_1 extends EventTarget.Mode = "loose">(event0: string, ...events: string[]): import("event-target-shim").EventTargetConstructor<TEvents_1, TEventAttributes_1, TMode_1>;
2790
2811
  new <TEvents_2 extends EventTarget.EventDefinition, TEventAttributes_2 extends EventTarget.EventDefinition, TMode_2 extends EventTarget.Mode = "loose">(): EventTarget<TEvents_2, TEventAttributes_2, TMode_2>;
2791
2812
  };
2792
2813
  export default class Socket extends Socket_base {
2793
- constructor(url: any, autoReconnect?: boolean, frameTimeout?: any, protocol?: any, maxTries?: any);
2814
+ constructor(url: any, autoReconnect?: boolean, frameTimeout?: any, protocol?: any, maxTries?: any, idAsTimestamp?: boolean);
2794
2815
  url: any;
2795
2816
  autoReconnect: boolean;
2796
2817
  frameTimeout: number;
@@ -2800,18 +2821,19 @@ export default class Socket extends Socket_base {
2800
2821
  protocol: any;
2801
2822
  maxTries: any;
2802
2823
  tries: number;
2824
+ idAsTimestamp: boolean;
2803
2825
  socket: any;
2804
2826
  state: string;
2805
2827
  framesReceived: number;
2806
2828
  frameTimer: any;
2807
2829
  reconnectTimer: any;
2808
- disconnectCbs: any[];
2830
+ disconnectCallBacks: any[];
2809
2831
  disconnectedAt: number;
2810
2832
  closingId: number;
2811
2833
  setUrl(url: any): void;
2812
2834
  connect(metadata?: {}): void;
2813
2835
  send(data: any): boolean;
2814
- disconnect(cb: any): Promise<any>;
2836
+ disconnect(callBack: any): Promise<any>;
2815
2837
  reconnect(metadata?: {}): void;
2816
2838
  getMetadata(): any;
2817
2839
  getId(): any;
@@ -2822,8 +2844,17 @@ export default class Socket extends Socket_base {
2822
2844
  _onmessage(event: any): void;
2823
2845
  _resetWatchdog(): void;
2824
2846
  _error(): void;
2825
- _closed(): void;
2826
- _log(...args: any[]): void;
2847
+ _closed(event: any): void;
2848
+ /**
2849
+ * `console.log` the provided summary statement, with default information to identify the socket and the provided props
2850
+ */
2851
+ _log(summary: any, props: any): void;
2852
+ /**
2853
+ * `console.log` the provided summary statement and props
2854
+ *
2855
+ * This does not contain information to identify the socket and can be used in scenarios where it's not known or default
2856
+ */
2857
+ _baseLog(summary: any, props: any): void;
2827
2858
  }
2828
2859
  import { EventTarget } from "event-target-shim";
2829
2860
  export {};
@@ -2909,7 +2940,7 @@ export function escapeRegex(string: any): any;
2909
2940
  export function random32(count: any): number | number[];
2910
2941
  export function randomStr(length?: number, chars?: string): any;
2911
2942
  export function formatPercent(value: any, maxPrecision?: number): string;
2912
- export function pluralize(str: any): string;
2943
+ export function pluralize(str: any): any;
2913
2944
  export function resourceNames(names: any, plusMore: any, t: any): any;
2914
2945
  export function indent(lines: any, count?: number, token?: string, afterRegex?: any): any;
2915
2946
  export function decamelize(str: any): any;
@@ -2938,6 +2969,63 @@ declare const alpha: "abcdefghijklmnopqrstuvwxyz";
2938
2969
  export {};
2939
2970
  }
2940
2971
 
2972
+ // @shell/utils/svg-filter
2973
+
2974
+ declare module '@shell/utils/svg-filter' {
2975
+ export class Solver {
2976
+ constructor(rgb: any);
2977
+ target: Color;
2978
+ targetHSL: {
2979
+ h: number;
2980
+ s: number;
2981
+ l: number;
2982
+ };
2983
+ reusedColor: Color;
2984
+ solve(): {
2985
+ values: any;
2986
+ loss: number;
2987
+ filter: string;
2988
+ };
2989
+ solveWide(): {
2990
+ loss: number;
2991
+ };
2992
+ solveNarrow(wide: any): {
2993
+ values: any;
2994
+ loss: number;
2995
+ };
2996
+ spsa(A: any, a: any, c: any, values: any, iters: any): {
2997
+ values: any;
2998
+ loss: number;
2999
+ };
3000
+ loss(filters: any): number;
3001
+ css(filters: any): string;
3002
+ }
3003
+ declare class Color {
3004
+ constructor(r: any, g: any, b: any);
3005
+ toString(): string;
3006
+ set(r: any, g: any, b: any): void;
3007
+ r: any;
3008
+ g: any;
3009
+ b: any;
3010
+ hueRotate(angle?: number): void;
3011
+ grayscale(value?: number): void;
3012
+ sepia(value?: number): void;
3013
+ saturate(value?: number): void;
3014
+ multiply(matrix: any): void;
3015
+ brightness(value?: number): void;
3016
+ contrast(value?: number): void;
3017
+ linear(slope?: number, intercept?: number): void;
3018
+ invert(value?: number): void;
3019
+ hsl(): {
3020
+ h: number;
3021
+ s: number;
3022
+ l: number;
3023
+ };
3024
+ clamp(value: any): any;
3025
+ }
3026
+ export {};
3027
+ }
3028
+
2941
3029
  // @shell/utils/time
2942
3030
 
2943
3031
  declare module '@shell/utils/time' {
@@ -2951,6 +3039,19 @@ export function diffFrom(value: any, from: any, t: any): {
2951
3039
  };
2952
3040
  export function safeSetTimeout(timeout: any, callback: any, that: any): NodeJS.Timeout;
2953
3041
  export function getSecondsDiff(startDate: any, endDate: any): number;
3042
+ /**
3043
+ * return { diff: number; label: string }
3044
+ *
3045
+ * diff: update frequency in seconds
3046
+ * label: content of the cell's column
3047
+ */
3048
+ export function elapsedTime(seconds: any): {
3049
+ diff?: undefined;
3050
+ label?: undefined;
3051
+ } | {
3052
+ diff: number;
3053
+ label: string;
3054
+ };
2954
3055
  }
2955
3056
 
2956
3057
  // @shell/utils/units