@salesforcedevs/dx-components 1.3.88-alpha-0001b → 1.3.89-version-picker-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.88-alpha-0001b",
3
+ "version": "1.3.89-version-picker-alpha",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -32,6 +32,10 @@
32
32
  <h2 class="dx-text-display-6 header-title">{header}</h2>
33
33
  <slot name="header"></slot>
34
34
  </div>
35
+ <div class="mobile-header" if:true={mobile}>
36
+ <h2 class="dx-text-display-6">{header}</h2>
37
+ <slot name="header"></slot>
38
+ </div>
35
39
  <div class="search">
36
40
  <dx-sidebar-search
37
41
  onchange={onSearchChange}
@@ -34,6 +34,10 @@
34
34
  <h2 class="dx-text-display-6 header-title">{header}</h2>
35
35
  <slot name="header"></slot>
36
36
  </div>
37
+ <div class="mobile-header" if:true={mobile}>
38
+ <h2 class="dx-text-display-6">{header}</h2>
39
+ <slot name="header"></slot>
40
+ </div>
37
41
  <div class="search">
38
42
  <dx-input
39
43
  class="search-box"
@@ -24,6 +24,13 @@ dx-tree:not(:last-child) {
24
24
  margin-bottom: 12px;
25
25
  }
26
26
 
27
+ .mobile-header {
28
+ box-sizing: content-box;
29
+ display: flex;
30
+ line-height: var(--dx-g-spacing-xl);
31
+ margin-bottom: 12px;
32
+ }
33
+
27
34
  .padding-horizontal {
28
35
  padding-left: var(--dx-g-spacing-md);
29
36
  padding-right: var(--dx-g-spacing-md);
@@ -107,6 +114,10 @@ dx-tree:not(:last-child) {
107
114
  background-color: #dddbda;
108
115
  }
109
116
 
117
+ .container.container-mobile:not(.collapsed) .mobile-header {
118
+ background-color: #F3F3F3;
119
+ }
120
+
110
121
  .container.container-mobile .header-title {
111
122
  color: var(--dx-g-gray-10);
112
123
  font-family: var(--dx-g-font-sans);