@salesforcedevs/dx-components 1.3.152 → 1.3.153
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.
|
|
3
|
+
"version": "1.3.153",
|
|
4
4
|
"description": "DX Lightning web components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"eventsourcemock": "^2.0.0",
|
|
42
42
|
"luxon": "^3.1.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "d7535afec7c9bd14eba65ebb6108a59e9dd6c948"
|
|
45
45
|
}
|
|
@@ -13,15 +13,20 @@
|
|
|
13
13
|
style={backgroundStyle}
|
|
14
14
|
>
|
|
15
15
|
<slot name="image-badge"></slot>
|
|
16
|
+
|
|
16
17
|
<img
|
|
17
18
|
if:true={imgSrc}
|
|
18
19
|
alt={imgAlt}
|
|
19
20
|
class="image dx-card-base_image dx-card-base_borderless-image"
|
|
20
21
|
src={imgSrc}
|
|
22
|
+
loading="lazy"
|
|
21
23
|
/>
|
|
22
24
|
</a>
|
|
23
25
|
<div
|
|
24
|
-
class="
|
|
26
|
+
class="
|
|
27
|
+
dx-card-base_section-vertical dx-card-base_column
|
|
28
|
+
card_section-text
|
|
29
|
+
"
|
|
25
30
|
>
|
|
26
31
|
<span if:true={label} part="label" class="label dx-text-label-3">
|
|
27
32
|
{label}
|
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
src={imgSrc}
|
|
7
7
|
alt={imgAlt}
|
|
8
8
|
part="image"
|
|
9
|
+
loading="lazy"
|
|
9
10
|
/>
|
|
11
|
+
|
|
10
12
|
<span class="dx-text-label-1-dark" part="label">{label}</span>
|
|
11
13
|
</div>
|
|
12
14
|
<a if:true={href} href={href} class="container">
|
|
@@ -16,7 +18,9 @@
|
|
|
16
18
|
src={imgSrc}
|
|
17
19
|
alt={imgAlt}
|
|
18
20
|
part="image"
|
|
21
|
+
loading="lazy"
|
|
19
22
|
/>
|
|
23
|
+
|
|
20
24
|
<span class="dx-text-label-1-dark" part="label">{label}</span>
|
|
21
25
|
</a>
|
|
22
26
|
</template>
|