@salesforcedevs/dx-components 1.3.210-lnb1-alpha → 1.3.210-lnb2-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-lnb1-alpha",
3
+ "version": "1.3.210-lnb2-alpha",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -15,6 +15,7 @@ dx-empty-state {
15
15
 
16
16
  .sidebar-content {
17
17
  overflow-y: auto;
18
+ border-top: 1px solid var(--dx-g-gray-90);
18
19
  padding-bottom: var(--dx-g-spacing-md);
19
20
  }
20
21
 
@@ -2,6 +2,7 @@
2
2
 
3
3
  .sidebar-content {
4
4
  overflow-y: auto;
5
+ border-top: 1px solid var(--dx-g-gray-90);
5
6
  }
6
7
 
7
8
  dx-empty-state {
@@ -23,7 +23,7 @@
23
23
  --tile-height: 20px;
24
24
 
25
25
  font-family: var(--dx-g-font-sans);
26
- font-size: 13px;
26
+ font-size: 14px;
27
27
  line-height: var(--tile-height);
28
28
  }
29
29
 
@@ -31,7 +31,7 @@
31
31
  font-family: var(--dx-g-font-display);
32
32
  font-size: var(--dx-g-text-sm);
33
33
  font-weight: var(--dx-g-font-demi);
34
- color: var(--dx-g-blue-vibrant-30);
34
+ color: var(--dx-g-blue-vibrant-20);
35
35
  display: block;
36
36
  }
37
37
 
@@ -65,86 +65,90 @@
65
65
  padding-left: calc(var(--indentation) - var(--base-indentation));
66
66
  }
67
67
 
68
- [aria-level="3"] {
68
+ [aria-level="2"] {
69
69
  --indentation: var(--base-indentation);
70
70
  }
71
71
 
72
- [aria-level="4"] {
72
+ [aria-level="3"] {
73
73
  --indentation: calc(2 * var(--base-indentation));
74
74
  }
75
75
 
76
- [aria-level="5"] {
76
+ [aria-level="4"] {
77
77
  --indentation: calc(3 * var(--base-indentation));
78
78
  }
79
79
 
80
- [aria-level="6"] {
80
+ [aria-level="5"] {
81
81
  --indentation: calc(4 * var(--base-indentation));
82
82
  }
83
83
 
84
- [aria-level="7"] {
84
+ [aria-level="6"] {
85
85
  --indentation: calc(5 * var(--base-indentation));
86
86
  }
87
87
 
88
- [aria-level="8"] {
88
+ [aria-level="7"] {
89
89
  --indentation: calc(6 * var(--base-indentation));
90
90
  }
91
91
 
92
- [aria-level="9"] {
92
+ [aria-level="8"] {
93
93
  --indentation: calc(7 * var(--base-indentation));
94
94
  }
95
95
 
96
- [aria-level="10"] {
96
+ [aria-level="9"] {
97
97
  --indentation: calc(8 * var(--base-indentation));
98
98
  }
99
99
 
100
- [aria-level="11"] {
100
+ [aria-level="10"] {
101
101
  --indentation: calc(9 * var(--base-indentation));
102
102
  }
103
103
 
104
- [aria-level="12"] {
104
+ [aria-level="11"] {
105
105
  --indentation: calc(10 * var(--base-indentation));
106
106
  }
107
107
 
108
- [aria-level="13"] {
108
+ [aria-level="12"] {
109
109
  --indentation: calc(11 * var(--base-indentation));
110
110
  }
111
111
 
112
- [aria-level="14"] {
112
+ [aria-level="13"] {
113
113
  --indentation: calc(12 * var(--base-indentation));
114
114
  }
115
115
 
116
- [aria-level="15"] {
116
+ [aria-level="14"] {
117
117
  --indentation: calc(13 * var(--base-indentation));
118
118
  }
119
119
 
120
- [aria-level="16"] {
120
+ [aria-level="15"] {
121
121
  --indentation: calc(14 * var(--base-indentation));
122
122
  }
123
123
 
124
- [aria-level="17"] {
124
+ [aria-level="16"] {
125
125
  --indentation: calc(15 * var(--base-indentation));
126
126
  }
127
127
 
128
- [aria-level="18"] {
128
+ [aria-level="17"] {
129
129
  --indentation: calc(16 * var(--base-indentation));
130
130
  }
131
131
 
132
- [aria-level="19"] {
132
+ [aria-level="18"] {
133
133
  --indentation: calc(17 * var(--base-indentation));
134
134
  }
135
135
 
136
- [aria-level="20"] {
136
+ [aria-level="19"] {
137
137
  --indentation: calc(18 * var(--base-indentation));
138
138
  }
139
139
 
140
- [aria-level="21"] {
140
+ [aria-level="20"] {
141
141
  --indentation: calc(19 * var(--base-indentation));
142
142
  }
143
143
 
144
- [aria-level="22"] {
144
+ [aria-level="21"] {
145
145
  --indentation: calc(20 * var(--base-indentation));
146
146
  }
147
147
 
148
+ [aria-level="22"] {
149
+ --indentation: calc(21 * var(--base-indentation));
150
+ }
151
+
148
152
  dx-metadata-badge {
149
153
  --dx-c-metadata-badge-text-width: 21px;
150
154
  }
@@ -181,10 +185,10 @@ a {
181
185
 
182
186
  a:link,
183
187
  a:visited {
184
- color: var(--dx-g-gray-10);
188
+ color: var(--dx-g-blue-vibrant-20);
185
189
  }
186
190
 
187
191
  a:visited.tile-root,
188
192
  a:link.tile-root {
189
- color: var(--dx-g-blue-vibrant-30);
193
+ color: var(--dx-g-blue-vibrant-20);
190
194
  }
@@ -61,7 +61,7 @@ export default class TreeTile extends LightningElement {
61
61
  private get tileClass() {
62
62
  return cx("tile", "sidebar-item", {
63
63
  "tile-root": this.isRoot,
64
- "tile-with-children": !this.isRoot && this.hasChildren,
64
+ "tile-with-children": this.hasChildren,
65
65
  "sidebar-item-selected": this.isSelected
66
66
  });
67
67
  }
@@ -13,15 +13,6 @@
13
13
  --dx-c-sidebar-vertical-padding: var(--dx-g-spacing-md);
14
14
  }
15
15
 
16
- dx-tree {
17
- border-top: 1px solid var(--dx-g-gray-90);
18
- }
19
-
20
- dx-tree:last-child {
21
- border-bottom: 1px solid var(--dx-g-gray-90);
22
- margin-bottom: var(--dx-g-spacing-sm);
23
- }
24
-
25
16
  .header {
26
17
  box-sizing: content-box;
27
18
  display: flex;
@@ -10,6 +10,7 @@
10
10
  background: var(--dx-g-cloud-blue-vibrant-95);
11
11
  box-shadow: inset var(--dx-g-spacing-xs) 0 0 0 var(--dx-g-blue-vibrant-40);
12
12
  border-radius: 0;
13
+ color: var(--dx-g-blue-vibrant-40) !important;
13
14
  }
14
15
 
15
16
  .sidebar-item {