@salesforcedevs/dx-components 0.18.0 → 0.18.1
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": "0.18.
|
|
3
|
+
"version": "0.18.1",
|
|
4
4
|
"description": "DX Lightning web components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"@types/debounce": "^1.2.0",
|
|
30
30
|
"@types/lodash.get": "^4.4.6"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "582d4e57d2fa40c37540bbbe3f41c01159897832"
|
|
33
33
|
}
|
|
@@ -97,40 +97,9 @@ dx-tree:not(:last-child) {
|
|
|
97
97
|
--border-color: var(--dx-c-sidebar-button-color);
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
.container.container-mobile {
|
|
101
|
-
width: 100%;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.container.container-mobile .header {
|
|
105
|
-
cursor: pointer;
|
|
106
|
-
line-height: var(--dx-g-spacing-2xl);
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.container.container-mobile:not(.collapsed) .header {
|
|
110
|
-
background-color: #dddbda;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.container.container-mobile .header-title {
|
|
114
|
-
color: var(--dx-g-gray-10);
|
|
115
|
-
font-family: var(--dx-g-font-sans);
|
|
116
|
-
font-size: var(--dx-g-text-sm);
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.container.container-mobile.collapsed {
|
|
120
|
-
height: unset;
|
|
121
|
-
padding-bottom: 0;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.container.container-mobile.collapsed .header {
|
|
125
|
-
margin-bottom: 0;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.container.container-mobile.collapsed .header-toggle-icon dx-icon {
|
|
129
|
-
transform: rotateZ(-90deg);
|
|
130
|
-
}
|
|
131
|
-
|
|
132
100
|
.sidebar-content {
|
|
133
101
|
overflow-y: auto;
|
|
102
|
+
padding-bottom: var(--dx-g-spacing-md);
|
|
134
103
|
}
|
|
135
104
|
|
|
136
105
|
.search {
|
|
@@ -179,3 +148,45 @@ dx-tree:not(:last-child) {
|
|
|
179
148
|
.container:hover .header-toggle-button {
|
|
180
149
|
--dx-c-button-opacity: 1;
|
|
181
150
|
}
|
|
151
|
+
|
|
152
|
+
.container.container-mobile {
|
|
153
|
+
width: 100%;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.container.container-mobile .header {
|
|
157
|
+
cursor: pointer;
|
|
158
|
+
line-height: var(--dx-g-spacing-2xl);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.container.container-mobile:not(.collapsed) .header {
|
|
162
|
+
background-color: #dddbda;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.container.container-mobile .header-title {
|
|
166
|
+
color: var(--dx-g-gray-10);
|
|
167
|
+
font-family: var(--dx-g-font-sans);
|
|
168
|
+
font-size: var(--dx-g-text-sm);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.container.container-mobile.collapsed {
|
|
172
|
+
height: unset;
|
|
173
|
+
padding-bottom: 0;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.container.container-mobile.collapsed .header {
|
|
177
|
+
margin-bottom: 0;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.container.container-mobile.collapsed .header-toggle-icon dx-icon {
|
|
181
|
+
transform: rotateZ(-90deg);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@media (max-width: 768px) {
|
|
185
|
+
:host {
|
|
186
|
+
width: 100%;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.loading-skeleton {
|
|
190
|
+
width: 100%;
|
|
191
|
+
}
|
|
192
|
+
}
|