@salesforcedevs/dx-components 1.3.269 → 1.3.271

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.269",
3
+ "version": "1.3.271",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -46,5 +46,5 @@
46
46
  "volta": {
47
47
  "node": "16.19.1"
48
48
  },
49
- "gitHead": "e1806b617e4c5f5c2c1fbb129c159fbd316a7793"
49
+ "gitHead": "c6b1d35774b3596ad36dd646bdb11e8c9146de9c"
50
50
  }
@@ -6,7 +6,7 @@ ul {
6
6
  }
7
7
 
8
8
  .container {
9
- max-width: 840px;
9
+ max-width: var(--dx-c-agenda-max-width, 840px);
10
10
  margin: 0 auto;
11
11
  }
12
12
 
@@ -21,18 +21,22 @@
21
21
  height: 160px;
22
22
  }
23
23
 
24
+ :not(.not-clickable) .body {
25
+ padding-right: var(--dx-c-card-clickthrough-body-right-padding, 64px); /* leave room for the control */
26
+ }
27
+
24
28
  .control {
25
- border-radius: 50%;
29
+ border-radius: var(--dx-c-card-clickthrough-control-border-radius, 50%);
26
30
  background-color: var(--dx-g-cloud-blue-vibrant-95);
27
31
  color: var(--dx-g-blue-vibrant-40);
28
- width: 48px;
29
- height: 48px;
32
+ width: var(--dx-c-card-clickthrough-control-width, 48px);
33
+ height: var(--dx-c-card-clickthrough-control-height, 48px);
30
34
  display: flex;
31
35
  align-items: center;
32
36
  justify-content: center;
33
37
  position: absolute;
34
- bottom: 32px;
35
- right: 20px;
38
+ bottom: var(--dx-c-card-clickthrough-control-bottom, 32px);
39
+ right: var(--dx-c-card-clickthrough-control-right, 20px);
36
40
  }
37
41
 
38
42
  /* text section */
@@ -11,7 +11,7 @@
11
11
  >
12
12
  <span class="dx-text-label-3" part="label">{label}</span>
13
13
  <dx-card-title title={title} target={target} onclick={handleLinkClick}></dx-card-title>
14
- <span lwc:if={body} class="dx-text-body-2" onclick={handleTextClick}>{body}</span>
14
+ <span lwc:if={body} class="dx-text-body-2 body" onclick={handleTextClick}>{body}</span>
15
15
  <span lwc:if={href} class="control"><dx-icon size="medium" symbol="forward"></dx-icon></span>
16
16
  </div>
17
17
  </a>