dashboard-shell-shell 3.0.5-test.31 → 3.0.5-test.33
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.
|
@@ -6407,6 +6407,7 @@ storageClass:
|
|
|
6407
6407
|
tooltip: By default the default storage class on the host Harvester cluster is used.
|
|
6408
6408
|
|
|
6409
6409
|
tableHeaders:
|
|
6410
|
+
volumeattributesclass: volumeattributesclass
|
|
6410
6411
|
assuredConcurrencyShares: Assured Concurrency Shares
|
|
6411
6412
|
accessKey: Access Key
|
|
6412
6413
|
addressType: Address Type
|
|
@@ -5433,6 +5433,7 @@ storageClass:
|
|
|
5433
5433
|
tooltip: 默认使用主机 Cloud 集群上的默认存储类。
|
|
5434
5434
|
|
|
5435
5435
|
tableHeaders:
|
|
5436
|
+
volumeattributesclass: 卷属性类
|
|
5436
5437
|
assuredConcurrencyShares: 确保并发份额
|
|
5437
5438
|
accessKey: Access Key
|
|
5438
5439
|
addressType: 地址类型
|
|
@@ -5510,7 +5511,7 @@ tableHeaders:
|
|
|
5510
5511
|
iP: IP
|
|
5511
5512
|
image: 镜像
|
|
5512
5513
|
imageSize: 大小
|
|
5513
|
-
ingressClass:
|
|
5514
|
+
ingressClass: Ingress 类
|
|
5514
5515
|
ingressDefaultBackend: 默认
|
|
5515
5516
|
ingressTarget: 目标
|
|
5516
5517
|
internalExternalIp: 外网 IP/内网 IP
|
|
@@ -5614,6 +5615,11 @@ tableHeaders:
|
|
|
5614
5615
|
scope: 范围
|
|
5615
5616
|
selector: 选择器
|
|
5616
5617
|
secrets: 密文
|
|
5618
|
+
secret:
|
|
5619
|
+
project-clone: 由 Project Secret 创建
|
|
5620
|
+
project-clone-tooltip: Has a Project Scoped Secret created this Secret in this Namespace
|
|
5621
|
+
project-scoped: Project Secret
|
|
5622
|
+
project-scoped-tooltip: This Project Scoped Secret will create matching Secrets in the Namespaces it contains
|
|
5617
5623
|
schedule: 调度
|
|
5618
5624
|
service: 服务
|
|
5619
5625
|
serviceAccounts: Service Account
|
|
@@ -689,6 +689,16 @@ export default {
|
|
|
689
689
|
/>
|
|
690
690
|
</template>
|
|
691
691
|
|
|
692
|
+
<template
|
|
693
|
+
v-if="showGrouping"
|
|
694
|
+
#header-button-left
|
|
695
|
+
>
|
|
696
|
+
<slot
|
|
697
|
+
name="header-button-left"
|
|
698
|
+
/>
|
|
699
|
+
</template>
|
|
700
|
+
|
|
701
|
+
|
|
692
702
|
<template
|
|
693
703
|
v-if="externalPaginationEnabled"
|
|
694
704
|
#watch-controls
|
|
@@ -1290,6 +1290,8 @@ export default {
|
|
|
1290
1290
|
style="max-height: 32px;"
|
|
1291
1291
|
>
|
|
1292
1292
|
|
|
1293
|
+
<slot name="search-main-button" />
|
|
1294
|
+
|
|
1293
1295
|
<!-- 已应用的高级筛选 -->
|
|
1294
1296
|
<ul
|
|
1295
1297
|
v-if="hasAdvancedFiltering"
|
|
@@ -1377,9 +1379,6 @@ export default {
|
|
|
1377
1379
|
<slot name="header-button" />
|
|
1378
1380
|
|
|
1379
1381
|
<div style="display: flex;">
|
|
1380
|
-
|
|
1381
|
-
<slot name="search-main-button" />
|
|
1382
|
-
|
|
1383
1382
|
<!-- 搜索输入框 -->
|
|
1384
1383
|
<input
|
|
1385
1384
|
v-if="search"
|
|
@@ -1408,14 +1407,18 @@ export default {
|
|
|
1408
1407
|
|
|
1409
1408
|
</div>
|
|
1410
1409
|
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1410
|
+
<div style="display: flex;">
|
|
1411
|
+
<slot name="header-button-left" />
|
|
1412
|
+
|
|
1413
|
+
<!-- 中间区域插槽 -->
|
|
1414
|
+
<div
|
|
1415
|
+
v-if="!hasAdvancedFiltering && $slots['header-middle']"
|
|
1416
|
+
class="middle"
|
|
1417
|
+
style="margin-left: 10px;"
|
|
1418
|
+
>
|
|
1419
|
+
<slot name="header-middle" />
|
|
1420
|
+
</div>
|
|
1421
|
+
</div>
|
|
1419
1422
|
</div>
|
|
1420
1423
|
</div>
|
|
1421
1424
|
|
|
@@ -2209,8 +2212,6 @@ export default {
|
|
|
2209
2212
|
}
|
|
2210
2213
|
|
|
2211
2214
|
td {
|
|
2212
|
-
height: 60px;
|
|
2213
|
-
min-height: 60px;
|
|
2214
2215
|
padding: 8px 5px;
|
|
2215
2216
|
border: 0;
|
|
2216
2217
|
white-space: normal;
|
|
@@ -2234,6 +2235,7 @@ export default {
|
|
|
2234
2235
|
tr {
|
|
2235
2236
|
border-bottom: 1px solid var(--sortable-table-top-divider) !important;
|
|
2236
2237
|
background-color: var(--sortable-table-row-bg);
|
|
2238
|
+
height: 60px;
|
|
2237
2239
|
|
|
2238
2240
|
&.main-row.has-sub-row {
|
|
2239
2241
|
border-bottom: 0;
|
|
@@ -2297,6 +2299,7 @@ export default {
|
|
|
2297
2299
|
|
|
2298
2300
|
&:first-child {
|
|
2299
2301
|
border-bottom: 2px solid var(--sortable-table-row-bg);
|
|
2302
|
+
height: 40px;
|
|
2300
2303
|
}
|
|
2301
2304
|
|
|
2302
2305
|
&:not(:first-child) {
|
package/package.json
CHANGED