@rancher/shell 0.3.5 → 0.3.7

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 (120) hide show
  1. package/assets/images/providers/outscale.svg +19 -0
  2. package/assets/styles/base/_basic.scss +18 -0
  3. package/assets/styles/base/_mixins.scss +0 -11
  4. package/assets/styles/base/_variables.scss +2 -4
  5. package/assets/styles/global/_button.scss +12 -2
  6. package/assets/translations/en-us.yaml +35 -1
  7. package/assets/translations/zh-hans.yaml +30 -10
  8. package/chart/gatekeeper.vue +3 -2
  9. package/chart/istio.vue +29 -3
  10. package/components/BrandImage.vue +1 -4
  11. package/components/Carousel.vue +85 -37
  12. package/components/EtcdInfoBanner.vue +7 -3
  13. package/components/ExplorerMembers.vue +100 -5
  14. package/components/ExplorerProjectsNamespaces.vue +32 -2
  15. package/components/GrafanaDashboard.vue +9 -2
  16. package/components/SortableTable/index.vue +23 -11
  17. package/components/SortableTable/selection.js +58 -50
  18. package/components/Wizard.vue +4 -2
  19. package/components/auth/AuthBanner.vue +6 -0
  20. package/components/auth/RoleDetailEdit.vue +2 -2
  21. package/components/form/HookOption.vue +14 -10
  22. package/components/form/Labels.vue +32 -27
  23. package/components/form/MatchExpressions.vue +2 -2
  24. package/components/form/Members/ClusterPermissionsEditor.vue +32 -7
  25. package/components/form/NameNsDescription.vue +1 -1
  26. package/components/form/ProjectMemberEditor.vue +46 -21
  27. package/components/form/Tolerations.vue +4 -1
  28. package/components/form/ValueFromResource.vue +14 -9
  29. package/components/form/WorkloadPorts.vue +2 -2
  30. package/components/form/__tests__/NameNsDescription.ts +27 -0
  31. package/components/formatter/WorkloadHealthScale.vue +8 -2
  32. package/components/nav/NamespaceFilter.vue +8 -0
  33. package/{nuxt/components → components/nuxt}/nuxt.js +1 -1
  34. package/{nuxt → config}/middleware.js +8 -8
  35. package/config/product/explorer.js +24 -3
  36. package/config/query-params.js +1 -0
  37. package/config/router.js +1 -1
  38. package/{nuxt → config}/store.js +82 -79
  39. package/config/table-headers.js +46 -12
  40. package/config/types.js +7 -0
  41. package/core/plugin.ts +4 -2
  42. package/core/types.ts +258 -1
  43. package/creators/app/files/tsconfig.json +0 -1
  44. package/creators/app/files/vue.config.js +0 -1
  45. package/creators/pkg/files/.github/workflows/build-extension.yml +3 -4
  46. package/creators/pkg/files/tsconfig.json +0 -1
  47. package/creators/pkg/pkg.package.json +3 -3
  48. package/detail/constraints.gatekeeper.sh.constraint.vue +14 -7
  49. package/detail/fleet.cattle.io.clustergroup.vue +7 -1
  50. package/edit/auth/ldap/config.vue +21 -1
  51. package/edit/auth/saml.vue +132 -37
  52. package/edit/fleet.cattle.io.gitrepo.vue +16 -1
  53. package/edit/logging.banzaicloud.io.output/index.vue +18 -5
  54. package/edit/logging.banzaicloud.io.output/providers/loki.vue +1 -0
  55. package/edit/namespace.vue +12 -8
  56. package/edit/provisioning.cattle.io.cluster/MachinePool.vue +11 -4
  57. package/edit/provisioning.cattle.io.cluster/import.vue +23 -25
  58. package/edit/provisioning.cattle.io.cluster/rke2.vue +96 -18
  59. package/edit/workload/mixins/workload.js +6 -7
  60. package/edit/workload/storage/Mount.vue +3 -3
  61. package/initialize/App.js +206 -0
  62. package/{nuxt → initialize}/client.js +406 -360
  63. package/{nuxt → initialize}/index.js +21 -22
  64. package/layouts/standalone.vue +13 -0
  65. package/list/catalog.cattle.io.clusterrepo.vue +1 -0
  66. package/list/rbac.authorization.k8s.io.clusterrolebinding.vue +48 -0
  67. package/list/workload.vue +6 -4
  68. package/mixins/chart.js +29 -1
  69. package/mixins/fetch.client.js +95 -0
  70. package/{nuxt/mixins → mixins}/fetch.server.js +30 -26
  71. package/mixins/labeled-form-element.ts +2 -2
  72. package/models/constraints.gatekeeper.sh.constraint.js +37 -0
  73. package/models/pod.js +4 -0
  74. package/models/rbac.authorization.k8s.io.clusterrolebinding.js +16 -0
  75. package/models/rbac.authorization.k8s.io.rolebinding.js +16 -0
  76. package/package.json +9 -13
  77. package/pages/c/_cluster/apps/charts/install.vue +61 -39
  78. package/pages/diagnostic.vue +32 -25
  79. package/pages/rio/mesh.vue +1 -2
  80. package/pkg/tsconfig.json +0 -1
  81. package/plugins/clean-html-directive.js +3 -0
  82. package/plugins/dashboard-store/index.js +1 -1
  83. package/plugins/plugin.js +0 -14
  84. package/plugins/portal-vue.js +4 -0
  85. package/rancher-components/components/Banner/Banner.test.ts +3 -5
  86. package/rancher-components/components/Banner/Banner.vue +1 -0
  87. package/rancher-components/components/Form/Radio/RadioButton.test.ts +31 -0
  88. package/rancher-components/components/Form/Radio/RadioButton.vue +14 -3
  89. package/scripts/extension/publish +42 -23
  90. package/scripts/serve-pkgs +6 -2
  91. package/store/type-map.js +1 -1
  92. package/tsconfig.json +0 -1
  93. package/types/rancher/index.d.ts +2 -0
  94. package/types/shell/index.d.ts +353 -284
  95. package/utils/__tests__/grafana.test.ts +44 -0
  96. package/utils/axios.js +190 -0
  97. package/{nuxt → utils}/cookie-universal-nuxt.js +7 -6
  98. package/utils/dom.js +15 -0
  99. package/utils/gc/gc.ts +1 -1
  100. package/utils/grafana.js +35 -16
  101. package/{nuxt/utils.js → utils/nuxt.js} +265 -236
  102. package/utils/router.scrollBehavior.js +1 -1
  103. package/vue.config.js +30 -19
  104. package/nuxt/App.js +0 -210
  105. package/nuxt/axios.js +0 -186
  106. package/nuxt/empty.js +0 -1
  107. package/nuxt/jsonp.js +0 -82
  108. package/nuxt/loading.html +0 -39
  109. package/nuxt/mixins/fetch.client.js +0 -90
  110. package/nuxt/portal-vue.js +0 -4
  111. package/nuxt/server.js +0 -312
  112. package/nuxt/views/app.template.html +0 -9
  113. package/nuxt/views/error.html +0 -23
  114. package/plugins/dashboard-store/extensions.js +0 -22
  115. /package/{nuxt/components → components/nuxt}/nuxt-build-indicator.vue +0 -0
  116. /package/{nuxt/components → components/nuxt}/nuxt-child.js +0 -0
  117. /package/{nuxt/components → components/nuxt}/nuxt-error.vue +0 -0
  118. /package/{nuxt/components → components/nuxt}/nuxt-link.client.js +0 -0
  119. /package/{nuxt/components → components/nuxt}/nuxt-link.server.js +0 -0
  120. /package/{nuxt/components → components/nuxt}/nuxt-loading.vue +0 -0
@@ -79,6 +79,7 @@ export const HIDE_SIDE_NAV: "hide-side-nav";
79
79
  export const PROVIDER: "provider";
80
80
  export const CLOUD_CREDENTIAL: "cloud";
81
81
  export const PROJECT_ID: "projectId";
82
+ export const FLAT_VIEW: "flatView";
82
83
  }
83
84
 
84
85
  // @shell/config/table-headers
@@ -1156,8 +1157,8 @@ export namespace APP_SUMMARY {
1156
1157
  export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
1157
1158
  const name_84: string;
1158
1159
  export { name_84 as name };
1159
- const label_1: string;
1160
- export { label_1 as label };
1160
+ const labelKey_83: string;
1161
+ export { labelKey_83 as labelKey };
1161
1162
  const value_83: string;
1162
1163
  export { value_83 as value };
1163
1164
  const sort_75: string;
@@ -1176,12 +1177,14 @@ export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
1176
1177
  export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
1177
1178
  const name_85: string;
1178
1179
  export { name_85 as name };
1179
- const label_2: string;
1180
- export { label_2 as label };
1180
+ const labelKey_84: string;
1181
+ export { labelKey_84 as labelKey };
1181
1182
  const value_84: string;
1182
1183
  export { value_84 as value };
1183
1184
  const sort_76: string;
1184
1185
  export { sort_76 as sort };
1186
+ const search_9: string;
1187
+ export { search_9 as search };
1185
1188
  const formatter_41: string;
1186
1189
  export { formatter_41 as formatter };
1187
1190
  export namespace formatterOpts_5 {
@@ -1196,32 +1199,44 @@ export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
1196
1199
  export namespace CONSTRAINT_VIOLATION_TYPE {
1197
1200
  const name_86: string;
1198
1201
  export { name_86 as name };
1199
- const label_3: string;
1200
- export { label_3 as label };
1202
+ const labelKey_85: string;
1203
+ export { labelKey_85 as labelKey };
1201
1204
  const value_85: string;
1202
1205
  export { value_85 as value };
1203
1206
  const sort_77: string;
1204
1207
  export { sort_77 as sort };
1205
1208
  }
1206
- export namespace CONSTRAINT_VIOLATION_MESSAGE {
1209
+ export namespace CONSTRAINT_VIOLATION_NAMESPACE {
1207
1210
  const name_87: string;
1208
1211
  export { name_87 as name };
1209
- const label_4: string;
1210
- export { label_4 as label };
1212
+ const labelKey_86: string;
1213
+ export { labelKey_86 as labelKey };
1211
1214
  const value_86: string;
1212
1215
  export { value_86 as value };
1213
1216
  const sort_78: string;
1214
1217
  export { sort_78 as sort };
1218
+ const search_10: string;
1219
+ export { search_10 as search };
1215
1220
  }
1216
- export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
1221
+ export namespace CONSTRAINT_VIOLATION_MESSAGE {
1217
1222
  const name_88: string;
1218
1223
  export { name_88 as name };
1219
- const label_5: string;
1220
- export { label_5 as label };
1224
+ const labelKey_87: string;
1225
+ export { labelKey_87 as labelKey };
1221
1226
  const value_87: string;
1222
1227
  export { value_87 as value };
1223
1228
  const sort_79: string;
1224
1229
  export { sort_79 as sort };
1230
+ }
1231
+ export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
1232
+ const name_89: string;
1233
+ export { name_89 as name };
1234
+ const labelKey_88: string;
1235
+ export { labelKey_88 as labelKey };
1236
+ const value_88: string;
1237
+ export { value_88 as value };
1238
+ const sort_80: string;
1239
+ export { sort_80 as sort };
1225
1240
  const formatter_42: string;
1226
1241
  export { formatter_42 as formatter };
1227
1242
  export namespace formatterOpts_6 {
@@ -1234,14 +1249,14 @@ export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
1234
1249
  export { formatterOpts_6 as formatterOpts };
1235
1250
  }
1236
1251
  export namespace CONSTRAINT_VIOLATION_COUNT {
1237
- const name_89: string;
1238
- export { name_89 as name };
1239
- const label_6: string;
1240
- export { label_6 as label };
1241
- const value_88: string;
1242
- export { value_88 as value };
1243
- const sort_80: string;
1244
- export { sort_80 as sort };
1252
+ const name_90: string;
1253
+ export { name_90 as name };
1254
+ const labelKey_89: string;
1255
+ export { labelKey_89 as labelKey };
1256
+ const value_89: string;
1257
+ export { value_89 as value };
1258
+ const sort_81: string;
1259
+ export { sort_81 as sort };
1245
1260
  const formatter_43: string;
1246
1261
  export { formatter_43 as formatter };
1247
1262
  export namespace formatterOpts_7 {
@@ -1251,26 +1266,26 @@ export namespace CONSTRAINT_VIOLATION_COUNT {
1251
1266
  export { formatterOpts_7 as formatterOpts };
1252
1267
  }
1253
1268
  export namespace RECEIVER_PROVIDERS {
1254
- const name_90: string;
1255
- export { name_90 as name };
1256
- const label_7: string;
1257
- export { label_7 as label };
1258
- const value_89: string;
1259
- export { value_89 as value };
1260
- const sort_81: string;
1261
- export { sort_81 as sort };
1262
- const formatter_44: string;
1263
- export { formatter_44 as formatter };
1264
- }
1265
- export namespace CONFIGURED_RECEIVER {
1266
1269
  const name_91: string;
1267
1270
  export { name_91 as name };
1268
- const label_8: string;
1269
- export { label_8 as label };
1271
+ const label_1: string;
1272
+ export { label_1 as label };
1270
1273
  const value_90: string;
1271
1274
  export { value_90 as value };
1272
1275
  const sort_82: string;
1273
1276
  export { sort_82 as sort };
1277
+ const formatter_44: string;
1278
+ export { formatter_44 as formatter };
1279
+ }
1280
+ export namespace CONFIGURED_RECEIVER {
1281
+ const name_92: string;
1282
+ export { name_92 as name };
1283
+ const label_2: string;
1284
+ export { label_2 as label };
1285
+ const value_91: string;
1286
+ export { value_91 as value };
1287
+ const sort_83: string;
1288
+ export { sort_83 as sort };
1274
1289
  const formatter_45: string;
1275
1290
  export { formatter_45 as formatter };
1276
1291
  export namespace formatterOpts_8 {
@@ -1283,136 +1298,136 @@ export namespace CONFIGURED_RECEIVER {
1283
1298
  export { formatterOpts_8 as formatterOpts };
1284
1299
  }
1285
1300
  export namespace GROUP_NAME {
1286
- const name_92: string;
1287
- export { name_92 as name };
1288
- const labelKey_83: string;
1289
- export { labelKey_83 as labelKey };
1290
- const value_91: string;
1291
- export { value_91 as value };
1292
- const sort_83: string[];
1293
- export { sort_83 as sort };
1294
- const search_9: string[];
1295
- export { search_9 as search };
1301
+ const name_93: string;
1302
+ export { name_93 as name };
1303
+ const labelKey_90: string;
1304
+ export { labelKey_90 as labelKey };
1305
+ const value_92: string;
1306
+ export { value_92 as value };
1307
+ const sort_84: string[];
1308
+ export { sort_84 as sort };
1309
+ const search_11: string[];
1310
+ export { search_11 as search };
1296
1311
  const formatter_46: string;
1297
1312
  export { formatter_46 as formatter };
1298
1313
  const width_24: number;
1299
1314
  export { width_24 as width };
1300
1315
  }
1301
1316
  export namespace GROUP_ROLE_NAME {
1302
- const name_93: string;
1303
- export { name_93 as name };
1304
- const labelKey_84: string;
1305
- export { labelKey_84 as labelKey };
1306
- const value_92: string;
1307
- export { value_92 as value };
1308
- const formatter_47: string;
1309
- export { formatter_47 as formatter };
1310
- }
1311
- export namespace HPA_REFERENCE {
1312
1317
  const name_94: string;
1313
1318
  export { name_94 as name };
1314
- const labelKey_85: string;
1315
- export { labelKey_85 as labelKey };
1319
+ const labelKey_91: string;
1320
+ export { labelKey_91 as labelKey };
1316
1321
  const value_93: string;
1317
1322
  export { value_93 as value };
1318
- const sort_84: string;
1319
- export { sort_84 as sort };
1323
+ const formatter_47: string;
1324
+ export { formatter_47 as formatter };
1320
1325
  }
1321
- export namespace MIN_REPLICA {
1326
+ export namespace HPA_REFERENCE {
1322
1327
  const name_95: string;
1323
1328
  export { name_95 as name };
1324
- const labelKey_86: string;
1325
- export { labelKey_86 as labelKey };
1329
+ const labelKey_92: string;
1330
+ export { labelKey_92 as labelKey };
1326
1331
  const value_94: string;
1327
1332
  export { value_94 as value };
1328
1333
  const sort_85: string;
1329
1334
  export { sort_85 as sort };
1330
1335
  }
1331
- export namespace MAX_REPLICA {
1336
+ export namespace MIN_REPLICA {
1332
1337
  const name_96: string;
1333
1338
  export { name_96 as name };
1334
- const labelKey_87: string;
1335
- export { labelKey_87 as labelKey };
1339
+ const labelKey_93: string;
1340
+ export { labelKey_93 as labelKey };
1336
1341
  const value_95: string;
1337
1342
  export { value_95 as value };
1338
1343
  const sort_86: string;
1339
1344
  export { sort_86 as sort };
1340
1345
  }
1341
- export namespace CURRENT_REPLICA {
1346
+ export namespace MAX_REPLICA {
1342
1347
  const name_97: string;
1343
1348
  export { name_97 as name };
1344
- const labelKey_88: string;
1345
- export { labelKey_88 as labelKey };
1349
+ const labelKey_94: string;
1350
+ export { labelKey_94 as labelKey };
1346
1351
  const value_96: string;
1347
1352
  export { value_96 as value };
1348
1353
  const sort_87: string;
1349
1354
  export { sort_87 as sort };
1350
1355
  }
1351
- export namespace EXPIRY_STATE {
1356
+ export namespace CURRENT_REPLICA {
1357
+ const name_98: string;
1358
+ export { name_98 as name };
1359
+ const labelKey_95: string;
1360
+ export { labelKey_95 as labelKey };
1352
1361
  const value_97: string;
1353
1362
  export { value_97 as value };
1363
+ const sort_88: string;
1364
+ export { sort_88 as sort };
1365
+ }
1366
+ export namespace EXPIRY_STATE {
1367
+ const value_98: string;
1368
+ export { value_98 as value };
1354
1369
  const formatter_48: string;
1355
1370
  export { formatter_48 as formatter };
1356
1371
  }
1357
1372
  export namespace ACCESS_KEY {
1358
- const name_98: string;
1359
- export { name_98 as name };
1360
- const labelKey_89: string;
1361
- export { labelKey_89 as labelKey };
1373
+ const name_99: string;
1374
+ export { name_99 as name };
1375
+ const labelKey_96: string;
1376
+ export { labelKey_96 as labelKey };
1362
1377
  const align_14: string;
1363
1378
  export { align_14 as align };
1364
- const sort_88: string[];
1365
- export { sort_88 as sort };
1379
+ const sort_89: string[];
1380
+ export { sort_89 as sort };
1366
1381
  const width_25: number;
1367
1382
  export { width_25 as width };
1368
1383
  }
1369
1384
  export namespace SCOPE {
1370
- const name_99: string;
1371
- export { name_99 as name };
1372
- const value_98: string;
1373
- export { value_98 as value };
1374
- const labelKey_90: string;
1375
- export { labelKey_90 as labelKey };
1385
+ const name_100: string;
1386
+ export { name_100 as name };
1387
+ const value_99: string;
1388
+ export { value_99 as value };
1389
+ const labelKey_97: string;
1390
+ export { labelKey_97 as labelKey };
1376
1391
  const dashIfEmpty_6: boolean;
1377
1392
  export { dashIfEmpty_6 as dashIfEmpty };
1378
1393
  const align_15: string;
1379
1394
  export { align_15 as align };
1380
- const sort_89: string[];
1381
- export { sort_89 as sort };
1395
+ const sort_90: string[];
1396
+ export { sort_90 as sort };
1382
1397
  const width_26: number;
1383
1398
  export { width_26 as width };
1384
1399
  }
1385
1400
  export namespace SCOPE_NORMAN {
1386
- const value_99: string;
1387
- export { value_99 as value };
1388
- const sort_90: string[];
1389
- export { sort_90 as sort };
1390
- }
1391
- export namespace EXPIRES {
1392
- const name_100: string;
1393
- export { name_100 as name };
1394
1401
  const value_100: string;
1395
1402
  export { value_100 as value };
1396
- const labelKey_91: string;
1397
- export { labelKey_91 as labelKey };
1398
- const align_16: string;
1399
- export { align_16 as align };
1400
1403
  const sort_91: string[];
1401
1404
  export { sort_91 as sort };
1402
- const width_27: number;
1403
- export { width_27 as width };
1404
- const formatter_49: string;
1405
- export { formatter_49 as formatter };
1406
1405
  }
1407
- export namespace RESTART {
1406
+ export namespace EXPIRES {
1408
1407
  const name_101: string;
1409
1408
  export { name_101 as name };
1410
- const labelKey_92: string;
1411
- export { labelKey_92 as labelKey };
1412
1409
  const value_101: string;
1413
1410
  export { value_101 as value };
1411
+ const labelKey_98: string;
1412
+ export { labelKey_98 as labelKey };
1413
+ const align_16: string;
1414
+ export { align_16 as align };
1414
1415
  const sort_92: string[];
1415
1416
  export { sort_92 as sort };
1417
+ const width_27: number;
1418
+ export { width_27 as width };
1419
+ const formatter_49: string;
1420
+ export { formatter_49 as formatter };
1421
+ }
1422
+ export namespace RESTART {
1423
+ const name_102: string;
1424
+ export { name_102 as name };
1425
+ const labelKey_99: string;
1426
+ export { labelKey_99 as labelKey };
1427
+ const value_102: string;
1428
+ export { value_102 as value };
1429
+ const sort_93: string[];
1430
+ export { sort_93 as sort };
1416
1431
  const formatter_50: string;
1417
1432
  export { formatter_50 as formatter };
1418
1433
  const width_28: number;
@@ -1421,24 +1436,24 @@ export namespace RESTART {
1421
1436
  export { align_17 as align };
1422
1437
  }
1423
1438
  export namespace ROLE {
1424
- const name_102: string;
1425
- export { name_102 as name };
1426
- const value_102: string;
1427
- export { value_102 as value };
1428
- const labelKey_93: string;
1429
- export { labelKey_93 as labelKey };
1430
- }
1431
- export namespace FEATURE_DESCRIPTION {
1432
1439
  const name_103: string;
1433
1440
  export { name_103 as name };
1434
- const labelKey_94: string;
1435
- export { labelKey_94 as labelKey };
1436
1441
  const value_103: string;
1437
1442
  export { value_103 as value };
1443
+ const labelKey_100: string;
1444
+ export { labelKey_100 as labelKey };
1445
+ }
1446
+ export namespace FEATURE_DESCRIPTION {
1447
+ const name_104: string;
1448
+ export { name_104 as name };
1449
+ const labelKey_101: string;
1450
+ export { labelKey_101 as labelKey };
1451
+ const value_104: string;
1452
+ export { value_104 as value };
1438
1453
  const align_18: string;
1439
1454
  export { align_18 as align };
1440
- const sort_93: string[];
1441
- export { sort_93 as sort };
1455
+ const sort_94: string[];
1456
+ export { sort_94 as sort };
1442
1457
  const formatter_51: string;
1443
1458
  export { formatter_51 as formatter };
1444
1459
  export namespace formatterOpts_9 {
@@ -1447,14 +1462,14 @@ export namespace FEATURE_DESCRIPTION {
1447
1462
  export { formatterOpts_9 as formatterOpts };
1448
1463
  }
1449
1464
  export namespace STATE_NORMAN {
1450
- const name_104: string;
1451
- export { name_104 as name };
1452
- const labelKey_95: string;
1453
- export { labelKey_95 as labelKey };
1454
- const sort_94: string[];
1455
- export { sort_94 as sort };
1456
- const value_104: string;
1457
- export { value_104 as value };
1465
+ const name_105: string;
1466
+ export { name_105 as name };
1467
+ const labelKey_102: string;
1468
+ export { labelKey_102 as labelKey };
1469
+ const sort_95: string[];
1470
+ export { sort_95 as sort };
1471
+ const value_105: string;
1472
+ export { value_105 as value };
1458
1473
  const width_29: number;
1459
1474
  export { width_29 as width };
1460
1475
  const _default_1: string;
@@ -1463,52 +1478,52 @@ export namespace STATE_NORMAN {
1463
1478
  export { formatter_52 as formatter };
1464
1479
  }
1465
1480
  export namespace KUBE_NODE_OS {
1466
- const name_105: string;
1467
- export { name_105 as name };
1468
- const labelKey_96: string;
1469
- export { labelKey_96 as labelKey };
1470
- const value_105: string;
1471
- export { value_105 as value };
1472
- const sort_95: string[];
1473
- export { sort_95 as sort };
1474
- const formatter_53: string;
1475
- export { formatter_53 as formatter };
1476
- }
1477
- export namespace MACHINE_NODE_OS {
1478
1481
  const name_106: string;
1479
1482
  export { name_106 as name };
1480
- const labelKey_97: string;
1481
- export { labelKey_97 as labelKey };
1483
+ const labelKey_103: string;
1484
+ export { labelKey_103 as labelKey };
1482
1485
  const value_106: string;
1483
1486
  export { value_106 as value };
1484
1487
  const sort_96: string[];
1485
1488
  export { sort_96 as sort };
1486
- const formatter_54: string;
1487
- export { formatter_54 as formatter };
1488
- const dashIfEmpty_7: boolean;
1489
- export { dashIfEmpty_7 as dashIfEmpty };
1489
+ const formatter_53: string;
1490
+ export { formatter_53 as formatter };
1490
1491
  }
1491
- export namespace MANAGEMENT_NODE_OS {
1492
+ export namespace MACHINE_NODE_OS {
1492
1493
  const name_107: string;
1493
1494
  export { name_107 as name };
1494
- const labelKey_98: string;
1495
- export { labelKey_98 as labelKey };
1495
+ const labelKey_104: string;
1496
+ export { labelKey_104 as labelKey };
1496
1497
  const value_107: string;
1497
1498
  export { value_107 as value };
1498
1499
  const sort_97: string[];
1499
1500
  export { sort_97 as sort };
1501
+ const formatter_54: string;
1502
+ export { formatter_54 as formatter };
1503
+ const dashIfEmpty_7: boolean;
1504
+ export { dashIfEmpty_7 as dashIfEmpty };
1505
+ }
1506
+ export namespace MANAGEMENT_NODE_OS {
1507
+ const name_108: string;
1508
+ export { name_108 as name };
1509
+ const labelKey_105: string;
1510
+ export { labelKey_105 as labelKey };
1511
+ const value_108: string;
1512
+ export { value_108 as value };
1513
+ const sort_98: string[];
1514
+ export { sort_98 as sort };
1500
1515
  const formatter_55: string;
1501
1516
  export { formatter_55 as formatter };
1502
1517
  const dashIfEmpty_8: boolean;
1503
1518
  export { dashIfEmpty_8 as dashIfEmpty };
1504
1519
  }
1505
1520
  export namespace FLEET_BUNDLE_LAST_UPDATED {
1506
- const name_108: string;
1507
- export { name_108 as name };
1508
- const labelKey_99: string;
1509
- export { labelKey_99 as labelKey };
1510
- const value_108: string;
1511
- export { value_108 as value };
1521
+ const name_109: string;
1522
+ export { name_109 as name };
1523
+ const labelKey_106: string;
1524
+ export { labelKey_106 as labelKey };
1525
+ const value_109: string;
1526
+ export { value_109 as value };
1512
1527
  const formatter_56: string;
1513
1528
  export { formatter_56 as formatter };
1514
1529
  export namespace formatterOpts_10 {
@@ -1516,21 +1531,45 @@ export namespace FLEET_BUNDLE_LAST_UPDATED {
1516
1531
  export { addSuffix_1 as addSuffix };
1517
1532
  }
1518
1533
  export { formatterOpts_10 as formatterOpts };
1519
- const sort_98: string[];
1520
- export { sort_98 as sort };
1521
- }
1522
- export namespace FLEET_BUNDLE_TYPE {
1523
- const name_109: string;
1524
- export { name_109 as name };
1525
- const labelKey_100: string;
1526
- export { labelKey_100 as labelKey };
1527
- const value_109: string;
1528
- export { value_109 as value };
1529
1534
  const sort_99: string[];
1530
1535
  export { sort_99 as sort };
1536
+ }
1537
+ export namespace FLEET_BUNDLE_TYPE {
1538
+ const name_110: string;
1539
+ export { name_110 as name };
1540
+ const labelKey_107: string;
1541
+ export { labelKey_107 as labelKey };
1542
+ const value_110: string;
1543
+ export { value_110 as value };
1544
+ const sort_100: string[];
1545
+ export { sort_100 as sort };
1531
1546
  const width_30: number;
1532
1547
  export { width_30 as width };
1533
1548
  }
1549
+ export namespace RBAC_USERS {
1550
+ const name_111: string;
1551
+ export { name_111 as name };
1552
+ const sort_101: string[];
1553
+ export { sort_101 as sort };
1554
+ export function getValue_13(row: any): any;
1555
+ export { getValue_13 as getValue };
1556
+ }
1557
+ export namespace RBAC_GROUPS {
1558
+ const name_112: string;
1559
+ export { name_112 as name };
1560
+ const sort_102: string[];
1561
+ export { sort_102 as sort };
1562
+ export function getValue_14(row: any): any;
1563
+ export { getValue_14 as getValue };
1564
+ }
1565
+ export namespace RBAC_SERVICE_ACCOUNTS {
1566
+ const name_113: string;
1567
+ export { name_113 as name };
1568
+ const sort_103: string[];
1569
+ export { sort_103 as sort };
1570
+ export function getValue_15(row: any): any;
1571
+ export { getValue_15 as getValue };
1572
+ }
1534
1573
  }
1535
1574
 
1536
1575
  // @shell/config/types
@@ -1593,6 +1632,8 @@ export const STORAGE_CLASS: "storage.k8s.io.storageclass";
1593
1632
  export const CSI_DRIVER: "storage.k8s.io.csidriver";
1594
1633
  export const OBJECT_META: "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta";
1595
1634
  export const NETWORK_ATTACHMENT: "k8s.cni.cncf.io.networkattachmentdefinition";
1635
+ export const USER: "user";
1636
+ export const GROUP: "group";
1596
1637
  export namespace RBAC {
1597
1638
  const ROLE: string;
1598
1639
  const CLUSTER_ROLE: string;
@@ -1610,10 +1651,14 @@ export namespace WORKLOAD_TYPES {
1610
1651
  const REPLICATION_CONTROLLER: string;
1611
1652
  }
1612
1653
  export namespace SCALABLE_WORKLOAD_TYPES { }
1654
+ export namespace LIST_WORKLOAD_TYPES {
1655
+ export { POD };
1656
+ }
1613
1657
  export namespace METRIC {
1614
1658
  const NODE_1: string;
1615
1659
  export { NODE_1 as NODE };
1616
- export const POD: string;
1660
+ const POD_1: string;
1661
+ export { POD_1 as POD };
1617
1662
  }
1618
1663
  export namespace CATALOG {
1619
1664
  export const CLUSTER_REPO: string;
@@ -2318,50 +2363,9 @@ export namespace actions {
2318
2363
  }
2319
2364
  }
2320
2365
 
2321
- // @shell/utils/nuxt/utils
2366
+ // @shell/utils/alertmanagerconfig
2322
2367
 
2323
- declare module '@shell/utils/nuxt/utils' {
2324
- export function createGetCounter(counterObject: any, defaultKey?: string): (id?: string) => number;
2325
- export function empty(): void;
2326
- export function globalHandleError(error: any): void;
2327
- export function interopDefault(promise: any): any;
2328
- export function hasFetch(vm: any): boolean;
2329
- export function purifyData(data: any): any;
2330
- export function getChildrenComponentInstancesUsingFetch(vm: any, instances?: any[]): any[];
2331
- export function applyAsyncData(Component: any, asyncData: any): void;
2332
- export function sanitizeComponent(Component: any): any;
2333
- export function getMatchedComponents(route: any, matches?: boolean, prop?: string): any;
2334
- export function getMatchedComponentsInstances(route: any, matches?: boolean): any;
2335
- export function flatMapComponents(route: any, fn: any): any;
2336
- export function resolveRouteComponents(route: any, fn: any): Promise<[any, any, any, any, any, any, any, any, any, any]>;
2337
- export function getRouteData(route: any): Promise<any>;
2338
- export function setContext(app: any, context: any): Promise<void>;
2339
- export function middlewareSeries(promises: any, appContext: any): any;
2340
- export function promisify(fn: any, context: any): Promise<any>;
2341
- export function getLocation(base: any, mode: any): string;
2342
- /**
2343
- * Compile a string to a template function for the path.
2344
- *
2345
- * @param {string} str
2346
- * @param {Object=} options
2347
- * @return {!function(Object=, Object=)}
2348
- */
2349
- export function compile(str: string, options?: any | undefined): (arg0: any | undefined, arg1: any | undefined) => any;
2350
- export function getQueryDiff(toQuery: any, fromQuery: any): {};
2351
- export function normalizeError(err: any): any;
2352
- export function addLifecycleHook(vm: any, hook: any, fn: any): void;
2353
- export function setScrollRestoration(newVal: any): void;
2354
- export const urlJoin: typeof joinURL;
2355
- export const stripTrailingSlash: typeof withoutTrailingSlash;
2356
- export const isSamePath: typeof _isSamePath;
2357
- import { joinURL } from "ufo";
2358
- import { withoutTrailingSlash } from "ufo";
2359
- import { isSamePath as _isSamePath } from "ufo";
2360
- }
2361
-
2362
- // @shell/utils/utils/alertmanagerconfig
2363
-
2364
- declare module '@shell/utils/utils/alertmanagerconfig' {
2368
+ declare module '@shell/utils/alertmanagerconfig' {
2365
2369
  export function getSecretId(dispatch: any): Promise<string>;
2366
2370
  export function getSecret(dispatch: any): Promise<any>;
2367
2371
  export function loadConfig(dispatch: any): Promise<{
@@ -2377,9 +2381,9 @@ export function canCreate(rootGetters: any): any;
2377
2381
  export const FILENAME: "alertmanager.yaml";
2378
2382
  }
2379
2383
 
2380
- // @shell/utils/utils/auth
2384
+ // @shell/utils/auth
2381
2385
 
2382
- declare module '@shell/utils/utils/auth' {
2386
+ declare module '@shell/utils/auth' {
2383
2387
  export function openAuthPopup(url: any, provider: any): any;
2384
2388
  export function returnTo(opt: any, vm: any): string;
2385
2389
  export function authProvidersInfo(store: any): Promise<{
@@ -2399,23 +2403,30 @@ export function checkSchemasForFindAllHash(types: any, store: any): any;
2399
2403
  export function checkPermissions(types: any, getters: any): any;
2400
2404
  }
2401
2405
 
2402
- // @shell/utils/utils/aws
2406
+ // @shell/utils/aws
2407
+
2408
+ declare module '@shell/utils/aws' {
2409
+ }
2410
+
2411
+ // @shell/utils/axios
2403
2412
 
2404
- declare module '@shell/utils/utils/aws' {
2413
+ declare module '@shell/utils/axios' {
2414
+ declare function _default(ctx: any, inject: any): void;
2415
+ export default _default;
2405
2416
  }
2406
2417
 
2407
- // @shell/utils/utils/cluster
2418
+ // @shell/utils/cluster
2408
2419
 
2409
- declare module '@shell/utils/utils/cluster' {
2420
+ declare module '@shell/utils/cluster' {
2410
2421
  export function filterOnlyKubernetesClusters(mgmtClusters: any): any;
2411
2422
  export function isHarvesterCluster(mgmtCluster: any): boolean;
2412
2423
  export function isHarvesterSatisfiesVersion(version?: string): any;
2413
2424
  export function filterHiddenLocalCluster(mgmtClusters: any, store: any): any;
2414
2425
  }
2415
2426
 
2416
- // @shell/utils/utils/color
2427
+ // @shell/utils/color
2417
2428
 
2418
- declare module '@shell/utils/utils/color' {
2429
+ declare module '@shell/utils/color' {
2419
2430
  export function createCssVars(color: any, theme?: string, name?: string): {
2420
2431
  [x: string]: any;
2421
2432
  };
@@ -2443,9 +2454,9 @@ export function colorToRgb(color: any): {
2443
2454
  };
2444
2455
  }
2445
2456
 
2446
- // @shell/utils/utils/computed
2457
+ // @shell/utils/computed
2447
2458
 
2448
- declare module '@shell/utils/utils/computed' {
2459
+ declare module '@shell/utils/computed' {
2449
2460
  /**
2450
2461
  * Creates a computed property that handles converting strings to numbers and numbers to strings. Particularly when dealing with UnitInput.
2451
2462
  * @param {*} path The path of the real value
@@ -2467,9 +2478,19 @@ export function keyValueStrings(path: any, delimiter?: any): {
2467
2478
  };
2468
2479
  }
2469
2480
 
2470
- // @shell/utils/utils/create-yaml
2481
+ // @shell/utils/cookie-universal-nuxt
2482
+
2483
+ declare module '@shell/utils/cookie-universal-nuxt' {
2484
+ declare function _default({ req, res }: {
2485
+ req: any;
2486
+ res: any;
2487
+ }, inject: any): void;
2488
+ export default _default;
2489
+ }
2490
+
2491
+ // @shell/utils/create-yaml
2471
2492
 
2472
- declare module '@shell/utils/utils/create-yaml' {
2493
+ declare module '@shell/utils/create-yaml' {
2473
2494
  export function createYaml(schemas: any, type: any, data: any, processAlwaysAdd?: boolean, depth?: number, path?: string, rootType?: any): string;
2474
2495
  export function typeRef(type: any, str: any): any;
2475
2496
  export function typeMunge(type: any): any;
@@ -2479,9 +2500,9 @@ export const NEVER_ADD: string[];
2479
2500
  export const ACTIVELY_REMOVE: string[];
2480
2501
  }
2481
2502
 
2482
- // @shell/utils/utils/custom-validators
2503
+ // @shell/utils/custom-validators
2483
2504
 
2484
- declare module '@shell/utils/utils/custom-validators' {
2505
+ declare module '@shell/utils/custom-validators' {
2485
2506
  declare namespace _default {
2486
2507
  export { clusterName };
2487
2508
  export { clusterIp };
@@ -2502,17 +2523,23 @@ declare namespace _default {
2502
2523
  export default _default;
2503
2524
  }
2504
2525
 
2505
- // @shell/utils/utils/download
2526
+ // @shell/utils/dom
2527
+
2528
+ declare module '@shell/utils/dom' {
2529
+ export function getParent(el: any, parentSelector: any): any;
2530
+ }
2531
+
2532
+ // @shell/utils/download
2506
2533
 
2507
- declare module '@shell/utils/utils/download' {
2534
+ declare module '@shell/utils/download' {
2508
2535
  export function downloadFile(fileName: any, content: any, contentType?: string): Promise<any>;
2509
2536
  export function generateZip(files: any): any;
2510
2537
  export function downloadUrl(url: any, id?: string): void;
2511
2538
  }
2512
2539
 
2513
- // @shell/utils/utils/dynamic-importer
2540
+ // @shell/utils/dynamic-importer
2514
2541
 
2515
- declare module '@shell/utils/utils/dynamic-importer' {
2542
+ declare module '@shell/utils/dynamic-importer' {
2516
2543
  export function importCloudCredential(name: any): () => Promise<any>;
2517
2544
  export function importMachineConfig(name: any): () => Promise<any>;
2518
2545
  export function importLogin(name: any): () => Promise<any>;
@@ -2535,9 +2562,9 @@ export function resolveMachineConfigComponent(key: any): string;
2535
2562
  export function resolveCloudCredentialComponent(key: any): string;
2536
2563
  }
2537
2564
 
2538
- // @shell/utils/utils/ember-page
2565
+ // @shell/utils/ember-page
2539
2566
 
2540
- declare module '@shell/utils/utils/ember-page' {
2567
+ declare module '@shell/utils/ember-page' {
2541
2568
  export function findEmberPage(): HTMLElement;
2542
2569
  export function clearEmberInactiveTimer(): void;
2543
2570
  export function startEmberInactiveTimer(): void;
@@ -2545,9 +2572,9 @@ export function removeEmberPage(): void;
2545
2572
  export const EMBER_FRAME: "ember-iframe";
2546
2573
  }
2547
2574
 
2548
- // @shell/utils/utils/error
2575
+ // @shell/utils/error
2549
2576
 
2550
- declare module '@shell/utils/utils/error' {
2577
+ declare module '@shell/utils/error' {
2551
2578
  export function stringify(err: any): any;
2552
2579
  export function exceptionToErrorsArray(err: any): any;
2553
2580
  export class ClusterNotFoundError extends Error {
@@ -2569,28 +2596,29 @@ export class ApiError extends Error {
2569
2596
  }
2570
2597
  }
2571
2598
 
2572
- // @shell/utils/utils/favicon
2599
+ // @shell/utils/favicon
2573
2600
 
2574
- declare module '@shell/utils/utils/favicon' {
2601
+ declare module '@shell/utils/favicon' {
2575
2602
  export function haveSetFavIcon(): boolean;
2576
2603
  export function setFavIcon(store: any): void;
2577
2604
  }
2578
2605
 
2579
- // @shell/utils/utils/grafana
2606
+ // @shell/utils/grafana
2580
2607
 
2581
- declare module '@shell/utils/utils/grafana' {
2582
- export function computeDashboardUrl(embedUrl: any, clusterId: any, params: any): string;
2583
- export function dashboardExists(store: any, clusterId: any, embedUrl: any, storeName?: string): Promise<boolean>;
2608
+ declare module '@shell/utils/grafana' {
2609
+ export function getClusterPrefix(monitoringVersion: any, clusterId: any): string;
2610
+ export function computeDashboardUrl(monitoringVersion: any, embedUrl: any, clusterId: any, params: any): string;
2611
+ export function dashboardExists(monitoringVersion: any, store: any, clusterId: any, embedUrl: any, storeName?: string): Promise<boolean>;
2584
2612
  export function allDashboardsExist(store: any, clusterId: any, embeddedUrls: any, storeName?: string): Promise<boolean>;
2585
- export function queryGrafana(dispatch: any, clusterId: any, query: any, range: any, step: any): any;
2586
- export function hasLeader(dispatch: any, clusterId: any): Promise<boolean>;
2587
- export function leaderChanges(dispatch: any, clusterId: any): Promise<any>;
2588
- export function failedProposals(dispatch: any, clusterId: any): Promise<any>;
2613
+ export function queryGrafana(monitoringVersion: any, dispatch: any, clusterId: any, query: any, range: any, step: any): any;
2614
+ export function hasLeader(monitoringVersion: any, dispatch: any, clusterId: any): Promise<boolean>;
2615
+ export function leaderChanges(monitoringVersion: any, dispatch: any, clusterId: any): Promise<any>;
2616
+ export function failedProposals(monitoringVersion: any, dispatch: any, clusterId: any): Promise<any>;
2589
2617
  }
2590
2618
 
2591
- // @shell/utils/utils/group
2619
+ // @shell/utils/group
2592
2620
 
2593
- declare module '@shell/utils/utils/group' {
2621
+ declare module '@shell/utils/group' {
2594
2622
  export function groupAndFilterOptions(ary: any, filter: any, { defaultFilterKey, groupBy, groupPrefix, itemLabelKey, itemValueKey, itemSortKey, }?: {
2595
2623
  defaultFilterKey?: string;
2596
2624
  groupBy?: string;
@@ -2601,18 +2629,18 @@ export function groupAndFilterOptions(ary: any, filter: any, { defaultFilterKey,
2601
2629
  }): any;
2602
2630
  }
2603
2631
 
2604
- // @shell/utils/utils/install-redirect
2632
+ // @shell/utils/install-redirect
2605
2633
 
2606
- declare module '@shell/utils/utils/install-redirect' {
2634
+ declare module '@shell/utils/install-redirect' {
2607
2635
  export default function _default(product: any, chartName: any, defaultResourceOrRoute: any, install?: boolean): ({ redirect, store }: {
2608
2636
  redirect: any;
2609
2637
  store: any;
2610
2638
  }) => Promise<any>;
2611
2639
  }
2612
2640
 
2613
- // @shell/utils/utils/monitoring
2641
+ // @shell/utils/monitoring
2614
2642
 
2615
- declare module '@shell/utils/utils/monitoring' {
2643
+ declare module '@shell/utils/monitoring' {
2616
2644
  export function monitoringStatus(): {
2617
2645
  monitoringStatus(): {
2618
2646
  v1: boolean;
@@ -2624,9 +2652,9 @@ export function haveV1Monitoring(getters: any): boolean;
2624
2652
  export function haveV1MonitoringWorkloads(store: any): Promise<boolean>;
2625
2653
  }
2626
2654
 
2627
- // @shell/utils/utils/namespace-filter
2655
+ // @shell/utils/namespace-filter
2628
2656
 
2629
- declare module '@shell/utils/utils/namespace-filter' {
2657
+ declare module '@shell/utils/namespace-filter' {
2630
2658
  export const NAMESPACE_FILTER_SPECIAL: "special";
2631
2659
  export const NAMESPACE_FILTER_ALL: "all";
2632
2660
  export const NAMESPACE_FILTER_ALL_SYSTEM: "all://system";
@@ -2643,9 +2671,50 @@ export function splitNamespaceFilterKey(key: any): {
2643
2671
  };
2644
2672
  }
2645
2673
 
2646
- // @shell/utils/utils/object
2674
+ // @shell/utils/nuxt
2675
+
2676
+ declare module '@shell/utils/nuxt' {
2677
+ export function createGetCounter(counterObject: any, defaultKey?: string): (id?: string) => number;
2678
+ export function empty(): void;
2679
+ export function globalHandleError(error: any): void;
2680
+ export function interopDefault(promise: any): any;
2681
+ export function hasFetch(vm: any): boolean;
2682
+ export function purifyData(data: any): any;
2683
+ export function getChildrenComponentInstancesUsingFetch(vm: any, instances?: any[]): any[];
2684
+ export function applyAsyncData(Component: any, asyncData: any): void;
2685
+ export function sanitizeComponent(Component: any): any;
2686
+ export function getMatchedComponents(route: any, matches?: boolean, prop?: string): any;
2687
+ export function getMatchedComponentsInstances(route: any, matches?: boolean): any;
2688
+ export function flatMapComponents(route: any, fn: any): any;
2689
+ export function resolveRouteComponents(route: any, fn: any): Promise<[any, any, any, any, any, any, any, any, any, any]>;
2690
+ export function getRouteData(route: any): Promise<any>;
2691
+ export function setContext(app: any, context: any): Promise<void>;
2692
+ export function middlewareSeries(promises: any, appContext: any): any;
2693
+ export function promisify(fn: any, context: any): Promise<any>;
2694
+ export function getLocation(base: any, mode: any): string;
2695
+ /**
2696
+ * Compile a string to a template function for the path.
2697
+ *
2698
+ * @param {string} str
2699
+ * @param {Object=} options
2700
+ * @return {!function(Object=, Object=)}
2701
+ */
2702
+ export function compile(str: string, options?: any | undefined): (arg0: any | undefined, arg1: any | undefined) => any;
2703
+ export function getQueryDiff(toQuery: any, fromQuery: any): {};
2704
+ export function normalizeError(err: any): any;
2705
+ export function addLifecycleHook(vm: any, hook: any, fn: any): void;
2706
+ export function setScrollRestoration(newVal: any): void;
2707
+ export const urlJoin: typeof joinURL;
2708
+ export const stripTrailingSlash: typeof withoutTrailingSlash;
2709
+ export const isSamePath: typeof _isSamePath;
2710
+ import { joinURL } from "ufo";
2711
+ import { withoutTrailingSlash } from "ufo";
2712
+ import { isSamePath as _isSamePath } from "ufo";
2713
+ }
2714
+
2715
+ // @shell/utils/object
2647
2716
 
2648
- declare module '@shell/utils/utils/object' {
2717
+ declare module '@shell/utils/object' {
2649
2718
  export function set(obj: any, path: any, value: any): any;
2650
2719
  export function getAllValues(obj: any, path: any): any[];
2651
2720
  export function get(obj: any, path: any): any;
@@ -2672,9 +2741,9 @@ export function pickBy(obj?: {}, predicate?: (value: any, key: any) => boolean):
2672
2741
  export function toDictionary(array: any, callback: any): any;
2673
2742
  }
2674
2743
 
2675
- // @shell/utils/utils/parse-externalid
2744
+ // @shell/utils/parse-externalid
2676
2745
 
2677
- declare module '@shell/utils/utils/parse-externalid' {
2746
+ declare module '@shell/utils/parse-externalid' {
2678
2747
  export function parseExternalId(externalId: any): {
2679
2748
  kind: any;
2680
2749
  group: any;
@@ -2693,9 +2762,9 @@ export function parseHelmExternalId(externalId: any): {
2693
2762
  };
2694
2763
  }
2695
2764
 
2696
- // @shell/utils/utils/platform
2765
+ // @shell/utils/platform
2697
2766
 
2698
- declare module '@shell/utils/utils/platform' {
2767
+ declare module '@shell/utils/platform' {
2699
2768
  export function isAlternate(event: any): boolean;
2700
2769
  export function isMore(event: any): boolean;
2701
2770
  export function isRange(event: any): boolean;
@@ -2734,9 +2803,9 @@ export namespace KEY {
2734
2803
  }
2735
2804
  }
2736
2805
 
2737
- // @shell/utils/utils/poller-sequential
2806
+ // @shell/utils/poller-sequential
2738
2807
 
2739
- declare module '@shell/utils/utils/poller-sequential' {
2808
+ declare module '@shell/utils/poller-sequential' {
2740
2809
  export default class PollerSequential {
2741
2810
  constructor(fn: any, pollRateMs: any, maxRetries?: number);
2742
2811
  fn: any;
@@ -2751,9 +2820,9 @@ export default class PollerSequential {
2751
2820
  }
2752
2821
  }
2753
2822
 
2754
- // @shell/utils/utils/poller
2823
+ // @shell/utils/poller
2755
2824
 
2756
- declare module '@shell/utils/utils/poller' {
2825
+ declare module '@shell/utils/poller' {
2757
2826
  export default class Poller {
2758
2827
  constructor(fn: any, pollRateMs: any, maxRetries?: number);
2759
2828
  fn: any;
@@ -2767,9 +2836,9 @@ export default class Poller {
2767
2836
  }
2768
2837
  }
2769
2838
 
2770
- // @shell/utils/utils/position
2839
+ // @shell/utils/position
2771
2840
 
2772
- declare module '@shell/utils/utils/position' {
2841
+ declare module '@shell/utils/position' {
2773
2842
  export function boundingRect(elem: any): {
2774
2843
  top: any;
2775
2844
  right: any;
@@ -2806,9 +2875,9 @@ export const BOTTOM: "bottom";
2806
2875
  export const AUTO: "auto";
2807
2876
  }
2808
2877
 
2809
- // @shell/utils/utils/promise
2878
+ // @shell/utils/promise
2810
2879
 
2811
- declare module '@shell/utils/utils/promise' {
2880
+ declare module '@shell/utils/promise' {
2812
2881
  export function allHash(hash: any): Promise<{}>;
2813
2882
  export function allHashSettled(hash: any): Promise<{}>;
2814
2883
  export function eachLimit(items: any, limit: any, iterator: any, debug?: boolean): Promise<any>;
@@ -2828,28 +2897,28 @@ export function deferred(name: any): {
2828
2897
  export function setPromiseResult(promise: any, obj: any, key: any, label: any): void;
2829
2898
  }
2830
2899
 
2831
- // @shell/utils/utils/router
2900
+ // @shell/utils/router
2832
2901
 
2833
- declare module '@shell/utils/utils/router' {
2902
+ declare module '@shell/utils/router' {
2834
2903
  export function queryParamsFor(current: any, qp: any, defaults?: {}): any;
2835
2904
  }
2836
2905
 
2837
- // @shell/utils/utils/router.scrollBehavior
2906
+ // @shell/utils/router.scrollBehavior
2838
2907
 
2839
- declare module '@shell/utils/utils/router.scrollBehavior' {
2908
+ declare module '@shell/utils/router.scrollBehavior' {
2840
2909
  export default function _default(to: any, from: any, savedPosition: any): Promise<any>;
2841
2910
  }
2842
2911
 
2843
- // @shell/utils/utils/select
2912
+ // @shell/utils/select
2844
2913
 
2845
- declare module '@shell/utils/utils/select' {
2914
+ declare module '@shell/utils/select' {
2846
2915
  export function onClickOption(option: any, e: any): void;
2847
2916
  export function calculatePosition(dropdownList: any, component: any, width: any, placement: any): void;
2848
2917
  }
2849
2918
 
2850
- // @shell/utils/utils/selector
2919
+ // @shell/utils/selector
2851
2920
 
2852
- declare module '@shell/utils/utils/selector' {
2921
+ declare module '@shell/utils/selector' {
2853
2922
  export function parse(labelSelector: any): any;
2854
2923
  export function convertSelectorObj(obj: any): any;
2855
2924
  export function convert(matchLabelsObj: any, matchExpressions: any): any;
@@ -2861,9 +2930,9 @@ export function matches(obj: any, selector: any): boolean;
2861
2930
  export function matching(ary: any, selector: any): any;
2862
2931
  }
2863
2932
 
2864
- // @shell/utils/utils/socket
2933
+ // @shell/utils/socket
2865
2934
 
2866
- declare module '@shell/utils/utils/socket' {
2935
+ declare module '@shell/utils/socket' {
2867
2936
  export const STATE_CONNECTING: "connecting";
2868
2937
  export const STATE_CONNECTED: "connected";
2869
2938
  export const EVENT_CONNECTING: "connecting";
@@ -2931,9 +3000,9 @@ import { EventTarget } from "event-target-shim";
2931
3000
  export {};
2932
3001
  }
2933
3002
 
2934
- // @shell/utils/utils/sort
3003
+ // @shell/utils/sort
2935
3004
 
2936
- declare module '@shell/utils/utils/sort' {
3005
+ declare module '@shell/utils/sort' {
2937
3006
  /**
2938
3007
  Returns a consistent type for the passed object.
2939
3008
 
@@ -2991,16 +3060,16 @@ export function sortableNumericSuffix(str: any): any;
2991
3060
  export function isNumeric(num: any): boolean;
2992
3061
  }
2993
3062
 
2994
- // @shell/utils/utils/stream
3063
+ // @shell/utils/stream
2995
3064
 
2996
- declare module '@shell/utils/utils/stream' {
3065
+ declare module '@shell/utils/stream' {
2997
3066
  export function streamJson(url: any, opt: any, onData: any): Promise<any>;
2998
3067
  export function streamingSupported(): boolean;
2999
3068
  }
3000
3069
 
3001
- // @shell/utils/utils/string
3070
+ // @shell/utils/string
3002
3071
 
3003
- declare module '@shell/utils/utils/string' {
3072
+ declare module '@shell/utils/string' {
3004
3073
  export function camelToTitle(str: any): any;
3005
3074
  export function ucFirst(str: any): any;
3006
3075
  export function lcFirst(str: any): any;
@@ -3046,9 +3115,9 @@ declare const alpha: "abcdefghijklmnopqrstuvwxyz";
3046
3115
  export {};
3047
3116
  }
3048
3117
 
3049
- // @shell/utils/utils/svg-filter
3118
+ // @shell/utils/svg-filter
3050
3119
 
3051
- declare module '@shell/utils/utils/svg-filter' {
3120
+ declare module '@shell/utils/svg-filter' {
3052
3121
  export class Solver {
3053
3122
  constructor(rgb: any);
3054
3123
  target: Color;
@@ -3103,9 +3172,9 @@ declare class Color {
3103
3172
  export {};
3104
3173
  }
3105
3174
 
3106
- // @shell/utils/utils/time
3175
+ // @shell/utils/time
3107
3176
 
3108
- declare module '@shell/utils/utils/time' {
3177
+ declare module '@shell/utils/time' {
3109
3178
  export function diffFrom(value: any, from: any, t: any): {
3110
3179
  diff: any;
3111
3180
  absDiff: number;
@@ -3131,9 +3200,9 @@ export function elapsedTime(seconds: any): {
3131
3200
  };
3132
3201
  }
3133
3202
 
3134
- // @shell/utils/utils/units
3203
+ // @shell/utils/units
3135
3204
 
3136
- declare module '@shell/utils/utils/units' {
3205
+ declare module '@shell/utils/units' {
3137
3206
  export function formatSi(inValue: any, { increment, addSuffix, addSuffixSpace, suffix, firstSuffix, startingExponent, minExponent, maxExponent, maxPrecision, canRoundToZero, }?: {
3138
3207
  increment?: number;
3139
3208
  addSuffix?: boolean;
@@ -3187,9 +3256,9 @@ declare namespace _default {
3187
3256
  export default _default;
3188
3257
  }
3189
3258
 
3190
- // @shell/utils/utils/version
3259
+ // @shell/utils/version
3191
3260
 
3192
- declare module '@shell/utils/utils/version' {
3261
+ declare module '@shell/utils/version' {
3193
3262
  export function parse(str: any): any;
3194
3263
  export function sortable(str: any): any;
3195
3264
  export function compare(in1: any, in2: any): any;
@@ -3205,9 +3274,9 @@ export function readReleaseNotes(store: any): boolean;
3205
3274
  export function markReadReleaseNotes(store: any): Promise<void>;
3206
3275
  }
3207
3276
 
3208
- // @shell/utils/utils/width
3277
+ // @shell/utils/width
3209
3278
 
3210
- declare module '@shell/utils/utils/width' {
3279
+ declare module '@shell/utils/width' {
3211
3280
  /**
3212
3281
  * Sets the width of a DOM element. Adapted from [youmightnotneedjquery.com](https://youmightnotneedjquery.com/#set_width)
3213
3282
  * @param {Element} el - The target DOM element
@@ -3222,9 +3291,9 @@ export function setWidth(el: Element, val: Function | string | number): void;
3222
3291
  export function getWidth(el: Element): number;
3223
3292
  }
3224
3293
 
3225
- // @shell/utils/utils/window
3294
+ // @shell/utils/window
3226
3295
 
3227
- declare module '@shell/utils/utils/window' {
3296
+ declare module '@shell/utils/window' {
3228
3297
  export function popupWindowOptions(width: any, height: any): string;
3229
3298
  export function open(url: any, name?: string, opt?: string): Window;
3230
3299
  export class Popup {