@salesforcedevs/dx-components 0.32.0 → 0.33.0

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/lwc.config.json CHANGED
@@ -90,6 +90,7 @@
90
90
  "utils/constants",
91
91
  "utils/normalizers",
92
92
  "utils/highlight",
93
- "utils/contentArchive"
93
+ "utils/contentArchive",
94
+ "utils/dates"
94
95
  ]
95
96
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/dx-components",
3
- "version": "0.32.0",
3
+ "version": "0.33.0",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -26,5 +26,5 @@
26
26
  "@types/debounce": "^1.2.0",
27
27
  "@types/lodash.get": "^4.4.6"
28
28
  },
29
- "gitHead": "af27f002ffdcc389e5208759f68734b56aec8dc7"
29
+ "gitHead": "34ebab19f554e645e11097c0fee21cc66adc1f0a"
30
30
  }
@@ -2,7 +2,7 @@
2
2
  <dx-featured-content-header
3
3
  class="documentation_header"
4
4
  title="Content Archive"
5
- body="Learn more about the topics that interest you most by exploring the full collection of Salesforce Developers blog and podcast content. Find all content related to a particular type, topic, author, or date in one convenient place."
5
+ body="Learn more about the topics that interest you most by exploring the full collection of Salesforce Developers blog and podcast content."
6
6
  dark="true"
7
7
  no-swoop={isMobile}
8
8
  ></dx-featured-content-header>
@@ -1,7 +1,7 @@
1
1
  import { LightningElement } from "lwc";
2
2
  import cx from "classnames";
3
3
  import { getArchivePosts, getArchiveFilterList } from "utils/contentArchive";
4
- import { sortSplittedPostsByMonth } from "../../utils/dates/dates";
4
+ import { sortSplittedPostsByMonth } from "utils/dates";
5
5
 
6
6
  const MOBILE_MATCH = "767px";
7
7
 
@@ -14,6 +14,14 @@
14
14
  line-height: 60px;
15
15
  }
16
16
 
17
+ .dx-text-heading-2b {
18
+ color: var(--dx-g-text-heading-color);
19
+ font-family: var(--dx-g-font-display);
20
+ font-size: var(--dx-g-text-4xl);
21
+ letter-spacing: -0.6px;
22
+ line-height: 56px;
23
+ }
24
+
17
25
  .dx-text-heading-3 {
18
26
  color: var(--dx-g-text-heading-color);
19
27
  font-family: var(--dx-g-font-display);
@@ -22,6 +30,14 @@
22
30
  line-height: 40px;
23
31
  }
24
32
 
33
+ .dx-text-heading-3b {
34
+ color: var(--dx-g-text-heading-color);
35
+ font-family: var(--dx-g-font-display);
36
+ font-size: var(--dx-g-text-2xl);
37
+ letter-spacing: -0.4px;
38
+ line-height: 40px;
39
+ }
40
+
25
41
  .dx-text-heading-4 {
26
42
  color: var(--dx-g-text-heading-color);
27
43
  font-family: var(--dx-g-font-display);
@@ -30,6 +46,14 @@
30
46
  line-height: 28px;
31
47
  }
32
48
 
49
+ .dx-text-heading-4b {
50
+ color: var(--dx-g-text-heading-color);
51
+ font-family: var(--dx-g-font-display);
52
+ font-size: var(--dx-g-text-lg);
53
+ letter-spacing: -0.1px;
54
+ line-height: 28px;
55
+ }
56
+
33
57
  .dx-text-heading-5 {
34
58
  color: var(--dx-g-text-heading-color);
35
59
  font-family: var(--dx-g-font-display);