@salesforcedevs/docs-components 1.3.171 → 1.3.172
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/docs-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.172",
|
|
4
4
|
"description": "Docs Lightning web components for DSC",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "index.js",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"@types/lodash.orderby": "^4.6.7",
|
|
25
25
|
"@types/lodash.uniqby": "^4.7.7"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "5ee185196e3f394e324227f4ca61d8578e6ec8d2"
|
|
28
28
|
}
|
|
@@ -271,27 +271,6 @@ a:hover,
|
|
|
271
271
|
text-decoration: underline;
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
@media (max-width: 640px) {
|
|
275
|
-
/* Mobile */
|
|
276
|
-
img.content-image {
|
|
277
|
-
max-width: 95vw;
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
@media (min-width: 641px) {
|
|
282
|
-
/* Tablet (medium) */
|
|
283
|
-
img.content-image {
|
|
284
|
-
max-width: 80vw;
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
@media (min-width: 769px) {
|
|
289
|
-
/* Desktop */
|
|
290
|
-
img.content-image {
|
|
291
|
-
max-width: min(60vw, 650px);
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
|
|
295
274
|
ul,
|
|
296
275
|
ol {
|
|
297
276
|
margin-left: var(--dx-g-spacing-lg);
|
|
@@ -3,61 +3,57 @@ img.content-image {
|
|
|
3
3
|
display: unset;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
.
|
|
6
|
+
.image-framed {
|
|
7
7
|
border: 1px solid black;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
.
|
|
11
|
-
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.content-image.image-xxl,
|
|
15
|
-
.content-image.image-full {
|
|
10
|
+
.image-xxl,
|
|
11
|
+
.image-full {
|
|
16
12
|
max-width: 1000px;
|
|
17
13
|
width: 100%;
|
|
18
14
|
}
|
|
19
15
|
|
|
20
|
-
.
|
|
16
|
+
.image-xl {
|
|
21
17
|
max-width: 750px;
|
|
22
18
|
width: 100%;
|
|
23
19
|
}
|
|
24
20
|
|
|
25
|
-
.
|
|
21
|
+
.image-lg {
|
|
26
22
|
max-width: 660px;
|
|
27
23
|
width: 100%;
|
|
28
24
|
}
|
|
29
25
|
|
|
30
|
-
.
|
|
26
|
+
.image-md {
|
|
31
27
|
max-width: 500px;
|
|
32
28
|
width: 100%;
|
|
33
29
|
}
|
|
34
30
|
|
|
35
|
-
.
|
|
31
|
+
.image-sm {
|
|
36
32
|
max-width: 330px;
|
|
37
33
|
width: 100%;
|
|
38
34
|
}
|
|
39
35
|
|
|
40
|
-
.
|
|
36
|
+
.image-xs {
|
|
41
37
|
max-width: 250px;
|
|
42
38
|
width: 100%;
|
|
43
39
|
}
|
|
44
40
|
|
|
45
|
-
.
|
|
41
|
+
.image-xxs {
|
|
46
42
|
max-width: 125px;
|
|
47
43
|
width: 100%;
|
|
48
44
|
}
|
|
49
45
|
|
|
50
|
-
.
|
|
46
|
+
.image-icon-lg {
|
|
51
47
|
max-width: 32px;
|
|
52
48
|
width: 100%;
|
|
53
49
|
}
|
|
54
50
|
|
|
55
|
-
.
|
|
51
|
+
.image-icon-md {
|
|
56
52
|
max-width: 20px;
|
|
57
53
|
width: 100%;
|
|
58
54
|
}
|
|
59
55
|
|
|
60
|
-
.
|
|
56
|
+
.image-icon-sm {
|
|
61
57
|
max-width: 16px;
|
|
62
58
|
width: 100%;
|
|
63
59
|
}
|