@salesforcedevs/arch-components 1.25.1-alpha → 1.25.1-alpha10
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
|
@@ -10,8 +10,6 @@
|
|
|
10
10
|
path={result.url}
|
|
11
11
|
title={result.title}
|
|
12
12
|
>
|
|
13
|
-
<dx-icon-badge sprite="brand" symbol="knowledge_base" background-color="blue-vibrant-20" size="small"></dx-icon-badge>
|
|
14
|
-
|
|
15
13
|
<div slot="pretitle"></div>
|
|
16
14
|
<span slot="meta-right"></span>
|
|
17
15
|
<span slot="meta-left">{result.description}</span>
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="summary" data-display={displayMode}>
|
|
3
|
+
|
|
4
|
+
<dx-icon-badge
|
|
5
|
+
shape="circle"
|
|
6
|
+
class="brand-icon"
|
|
7
|
+
sprite="utility"
|
|
8
|
+
symbol="knowledge_base"
|
|
9
|
+
size="large"
|
|
10
|
+
></dx-icon-badge>
|
|
11
|
+
|
|
3
12
|
<div class="header">
|
|
4
13
|
<div class="image">
|
|
5
14
|
<slot name="image" onslotchange={onSlotChange}></slot>
|
|
@@ -10,6 +19,7 @@
|
|
|
10
19
|
</div>
|
|
11
20
|
</template>
|
|
12
21
|
</div>
|
|
22
|
+
|
|
13
23
|
<div class="body">
|
|
14
24
|
<div class="content">
|
|
15
25
|
<div class="content-start">
|