@salesforcedevs/dx-components 1.3.210-lang6-alpha → 1.3.210-lnb1-alpha

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.3.210-lang6-alpha",
3
+ "version": "1.3.210-lnb1-alpha",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -19,7 +19,6 @@
19
19
 
20
20
  display: flex;
21
21
  padding: 0 var(--dx-g-spacing-md);
22
- margin-left: var(--dx-g-spacing-sm);
23
22
  height: var(--dx-g-spacing-xl);
24
23
  border-radius: var(--dx-g-spacing-xs);
25
24
  align-items: center;
@@ -46,6 +45,7 @@
46
45
 
47
46
  padding: 0 var(--dx-g-spacing-md);
48
47
  border-radius: var(--dx-g-spacing-xs);
48
+ margin-right: var(--dx-g-spacing-sm);
49
49
  display: flex;
50
50
  height: var(--dx-g-spacing-xl);
51
51
  align-items: center;
@@ -38,6 +38,7 @@
38
38
  .tile-icon {
39
39
  align-items: center;
40
40
  height: var(--tile-height);
41
+ padding-right: calc(var(--dx-g-spacing-xs) + 2px);
41
42
  }
42
43
 
43
44
  .tile-label {
@@ -54,7 +55,6 @@
54
55
 
55
56
  .tile-with-children .tile-expand-icon {
56
57
  order: 1;
57
- padding-right: var(--dx-g-spacing-xs);
58
58
  }
59
59
 
60
60
  .indentation {
@@ -1,12 +1,6 @@
1
1
  <template>
2
2
  <a href={href} class={tileClass} target={target}>
3
3
  <div class="flex indentation" role="heading" aria-level={tileAriaLevel}>
4
- <span
5
- class="tile-label sidebar-item-truncate-text"
6
- title={treeNode.label}
7
- >
8
- {treeNode.label}
9
- </span>
10
4
  <div class="flex tile-expand-icon tile-icon" if:true={showArrow}>
11
5
  <dx-icon
12
6
  aria-expanded={isExpanded}
@@ -16,6 +10,12 @@
16
10
  onclick={onClickIcon}
17
11
  ></dx-icon>
18
12
  </div>
13
+ <span
14
+ class="tile-label sidebar-item-truncate-text"
15
+ title={treeNode.label}
16
+ >
17
+ {treeNode.label}
18
+ </span>
19
19
  <dx-metadata-badge
20
20
  if:true={showMethod}
21
21
  class="flex tile-icon"
@@ -2,7 +2,7 @@
2
2
  @import "dxHelpers/text";
3
3
 
4
4
  :host {
5
- --dx-c-sidebar-width: 275px;
5
+ --dx-c-sidebar-width: 337px;
6
6
  --dx-c-sidebar-button-color: var(--dx-g-blue-vibrant-50);
7
7
  --dx-c-sidebar-button-background: white;
8
8
  --dx-c-sidebar-button-border: white;
@@ -13,7 +13,7 @@
13
13
  }
14
14
 
15
15
  .sidebar-item {
16
- padding: 6px var(--dx-g-spacing-xl);
16
+ padding: 6px var(--dx-g-spacing-lg);
17
17
  }
18
18
 
19
19
  .sidebar-item:not(.sidebar-item-selected):hover {