@salesforcedevs/dx-components 1.31.7-redoc-alpha4 → 1.31.7-redoc-alpha6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/dx-components",
3
- "version": "1.31.7-redoc-alpha4",
3
+ "version": "1.31.7-redoc-alpha6",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -65,7 +65,7 @@ export class TreeHandler {
65
65
  isChildrenLoading: node.isChildrenLoading || false,
66
66
  link: node.link,
67
67
  method: node.method,
68
- renderWith: node.renderWith
68
+ showForwardArrow: node.showForwardArrow
69
69
  };
70
70
 
71
71
  const mapItem = { node: convertedNode, parent };
@@ -58,7 +58,7 @@
58
58
  margin-left: var(--dx-g-spacing-xs);
59
59
  }
60
60
 
61
- .tile-redoc-arrow {
61
+ .tile-forward-arrow {
62
62
  margin-left: auto;
63
63
  }
64
64
 
@@ -38,8 +38,8 @@
38
38
  color={metadataBadgeColor}
39
39
  ></dx-metadata-badge>
40
40
  <div
41
- class="flex tile-icon tile-redoc-arrow"
42
- if:true={showRedocArrow}
41
+ class="flex tile-icon tile-forward-arrow"
42
+ if:true={showForwardArrow}
43
43
  >
44
44
  <dx-icon
45
45
  sprite="utility"
@@ -52,8 +52,8 @@ export default class TreeTile extends LightningElement {
52
52
  return this.treeNode.method && !this.hasChildren;
53
53
  }
54
54
 
55
- private get showRedocArrow() {
56
- return this.treeNode.renderWith === "redoc";
55
+ private get showForwardArrow() {
56
+ return this.treeNode.showForwardArrow;
57
57
  }
58
58
 
59
59
  private get methodText() {