@rancher/shell 0.3.0 → 0.3.1

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