@salesforcedevs/mrkt-components 1.3.171 → 1.3.173
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/mrkt-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.173",
|
|
4
4
|
"description": "Marketing Lightning web components for DSC",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@types/classnames": "^2.2.10"
|
|
17
17
|
},
|
|
18
|
-
"gitHead": "
|
|
18
|
+
"gitHead": "85f6ef2fd7789804c470b862101492739432cc04"
|
|
19
19
|
}
|
|
@@ -12,7 +12,7 @@ export default class SectionHeader extends LightningElement {
|
|
|
12
12
|
@api overlapImages?: boolean = false;
|
|
13
13
|
@api lightGradient?: boolean;
|
|
14
14
|
@api subtitle?: string;
|
|
15
|
-
@api title
|
|
15
|
+
@api title!: string;
|
|
16
16
|
|
|
17
17
|
private get hasPageMarginGraphics(): boolean {
|
|
18
18
|
return !!this.imgSrcLeft && !!this.imgSrcRight;
|
|
@@ -15,7 +15,7 @@ export default class SubNavBar extends MatchMediaElement {
|
|
|
15
15
|
|
|
16
16
|
@api
|
|
17
17
|
get navItems() {
|
|
18
|
-
return this._navItems.map(this.normalizeItem);
|
|
18
|
+
return this._navItems.map(this.normalizeItem) as any[];
|
|
19
19
|
}
|
|
20
20
|
set navItems(value) {
|
|
21
21
|
this._navItems = toJson(value);
|