@salesforcedevs/mrkt-components 1.3.171-alpha.2 → 1.3.173-alpha.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/package.json
CHANGED
|
@@ -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);
|