dashboard-shell-shell 0.0.1000000000001125 → 0.0.1000000000001127
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.
- package/components/ExplorerMembers.vue +0 -1
- package/components/ExplorerProjectsNamespaces.vue +0 -1
- package/components/ResourceList/index.vue +29 -1
- package/components/templates/default.vue +0 -1
- package/list/fleet.cattle.io.gitrepo.vue +0 -1
- package/list/group.principal.vue +0 -1
- package/list/harvesterhci.io.management.cluster.vue +0 -1
- package/list/helm.cattle.io.projecthelmchart.vue +0 -1
- package/list/management.cattle.io.user.vue +0 -1
- package/list/provisioning.cattle.io.cluster.vue +0 -1
- package/package.json +1 -1
- package/pages/c/_cluster/_product/namespaces.vue +0 -1
- package/pages/c/_cluster/gatekeeper/constraints/index.vue +0 -1
- package/pages/c/_cluster/manager/cloudCredential/index.vue +0 -1
- package/pages/c/_cluster/manager/drivers/kontainerDriver/index.vue +0 -1
- package/pages/c/_cluster/manager/drivers/nodeDriver/index.vue +0 -1
- package/pages/c/_cluster/manager/jwt.authentication/index.vue +0 -1
- package/rancher-components/RcDropdown/RcDropdownMenu.vue +2 -2
|
@@ -52,7 +52,14 @@ export default {
|
|
|
52
52
|
const component = await importer.__asyncLoader();
|
|
53
53
|
|
|
54
54
|
if ( component?.typeDisplay ) {
|
|
55
|
+
|
|
56
|
+
console.log(component, ' component-----------------');
|
|
57
|
+
|
|
55
58
|
this.customTypeDisplay = component.typeDisplay.apply(this);
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
console.log(this.customTypeDisplay, ' this.customTypeDisplay-----------------');
|
|
62
|
+
|
|
56
63
|
}
|
|
57
64
|
|
|
58
65
|
// Is the custom component responsible fetching the resources?
|
|
@@ -98,6 +105,9 @@ export default {
|
|
|
98
105
|
|
|
99
106
|
const showMasthead = getters[`type-map/optionsFor`](resource).showListMasthead;
|
|
100
107
|
|
|
108
|
+
console.log(schema, ' schema---------------------------')
|
|
109
|
+
|
|
110
|
+
|
|
101
111
|
return {
|
|
102
112
|
schema,
|
|
103
113
|
hasListComponent,
|
|
@@ -206,6 +216,9 @@ export default {
|
|
|
206
216
|
|
|
207
217
|
if ( hasListComponent ) {
|
|
208
218
|
listComponent = this.$store.getters['type-map/importList'](resource);
|
|
219
|
+
|
|
220
|
+
console.log(listComponent, ' listComponent---------------------');
|
|
221
|
+
|
|
209
222
|
}
|
|
210
223
|
|
|
211
224
|
this.listComponent = listComponent;
|
|
@@ -246,6 +259,8 @@ export default {
|
|
|
246
259
|
:show-incremental-loading-indicator="showIncrementalLoadingIndicator"
|
|
247
260
|
:load-resources="loadResources"
|
|
248
261
|
:load-indeterminate="loadIndeterminate"
|
|
262
|
+
|
|
263
|
+
:main-button-visible="false"
|
|
249
264
|
>
|
|
250
265
|
<template #extraActions>
|
|
251
266
|
<slot name="extraActions" />
|
|
@@ -267,6 +282,11 @@ export default {
|
|
|
267
282
|
:incremental-loading-indicator="showIncrementalLoadingIndicator"
|
|
268
283
|
:rows="rows"
|
|
269
284
|
v-bind="$data"
|
|
285
|
+
|
|
286
|
+
:schema="schema"
|
|
287
|
+
:type-display="customTypeDisplay"
|
|
288
|
+
:resource="resource"
|
|
289
|
+
:main-button-visible="true"
|
|
270
290
|
/>
|
|
271
291
|
</div>
|
|
272
292
|
<ResourceTable
|
|
@@ -285,7 +305,15 @@ export default {
|
|
|
285
305
|
:external-pagination-enabled="canPaginate"
|
|
286
306
|
:external-pagination-result="paginationResult"
|
|
287
307
|
@pagination-changed="paginationChanged"
|
|
288
|
-
|
|
308
|
+
|
|
309
|
+
:type-display="customTypeDisplay"
|
|
310
|
+
:resource="resource"
|
|
311
|
+
:main-button-visible="true"
|
|
312
|
+
>
|
|
313
|
+
<template #extraActions>
|
|
314
|
+
<slot name="extraActions" />
|
|
315
|
+
</template>
|
|
316
|
+
</ResourceTable>
|
|
289
317
|
</div>
|
|
290
318
|
</template>
|
|
291
319
|
|
package/list/group.principal.vue
CHANGED
|
@@ -74,7 +74,6 @@ export default {
|
|
|
74
74
|
:load-indeterminate="loadIndeterminate"
|
|
75
75
|
:is-creatable="canCreateProjectHelmChart"
|
|
76
76
|
/>
|
|
77
|
-
<!-- harvester------------------------------------------------------8 -->
|
|
78
77
|
<Banner
|
|
79
78
|
color="info"
|
|
80
79
|
:label="t('monitoring.projectMonitoring.list.banner')"
|
package/package.json
CHANGED
|
@@ -125,7 +125,6 @@ export default {
|
|
|
125
125
|
:create-location="createLocation"
|
|
126
126
|
:type-display="t('manager.cloudCredentials.label')"
|
|
127
127
|
/>
|
|
128
|
-
<!-- harvester------------------------------------------------------13 -->
|
|
129
128
|
<Banner
|
|
130
129
|
v-if="expiredData.expiring"
|
|
131
130
|
data-testid="cert-expiring-banner"
|
|
@@ -33,8 +33,8 @@ const hasOptions = (options: DropdownOption[]) => {
|
|
|
33
33
|
:data-testid="dataTestid"
|
|
34
34
|
:aria-label="buttonAriaLabel"
|
|
35
35
|
>
|
|
36
|
-
<img v-if="showIcon" src="@/shell/assets/images/action.svg" title="操作">
|
|
37
|
-
<a
|
|
36
|
+
<!-- <img v-if="showIcon" src="@/shell/assets/images/action.svg" title="操作"> -->
|
|
37
|
+
<a href="javascript:;">操作</a>
|
|
38
38
|
</rc-dropdown-trigger>
|
|
39
39
|
<template #dropdownCollection>
|
|
40
40
|
<template
|