@eric-emg/symphiq-components 1.2.500 → 1.2.501
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/fesm2022/symphiq-components.mjs +2 -2
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +10 -10
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -88640,7 +88640,6 @@ class ProfileQuestionAnswerComponent {
|
|
|
88640
88640
|
const sentinel = this.stickySentinel?.nativeElement;
|
|
88641
88641
|
const scrollRoot = this.scrollContainer?.nativeElement;
|
|
88642
88642
|
const header = this.stickyHeader?.nativeElement;
|
|
88643
|
-
const title = this.questionTitle?.nativeElement;
|
|
88644
88643
|
if (!sentinel || !scrollRoot || !header) {
|
|
88645
88644
|
return;
|
|
88646
88645
|
}
|
|
@@ -88658,6 +88657,7 @@ class ProfileQuestionAnswerComponent {
|
|
|
88658
88657
|
}
|
|
88659
88658
|
this.stickyState = newStickyState;
|
|
88660
88659
|
this.lastStickyChange = now;
|
|
88660
|
+
const title = this.questionTitle?.nativeElement;
|
|
88661
88661
|
if (newStickyState) {
|
|
88662
88662
|
header.classList.add('shadow-md', 'is-sticky');
|
|
88663
88663
|
title?.classList.add('is-sticky');
|
|
@@ -99738,7 +99738,6 @@ class ShopProfileQuestionAnswerComponent {
|
|
|
99738
99738
|
const sentinel = this.stickySentinel?.nativeElement;
|
|
99739
99739
|
const scrollRoot = this.scrollContainer?.nativeElement;
|
|
99740
99740
|
const header = this.stickyHeader?.nativeElement;
|
|
99741
|
-
const title = this.questionTitle?.nativeElement;
|
|
99742
99741
|
if (!sentinel || !scrollRoot || !header) {
|
|
99743
99742
|
return;
|
|
99744
99743
|
}
|
|
@@ -99756,6 +99755,7 @@ class ShopProfileQuestionAnswerComponent {
|
|
|
99756
99755
|
}
|
|
99757
99756
|
this.stickyState = newStickyState;
|
|
99758
99757
|
this.lastStickyChange = now;
|
|
99758
|
+
const title = this.questionTitle?.nativeElement;
|
|
99759
99759
|
if (newStickyState) {
|
|
99760
99760
|
header.classList.add('shadow-md', 'is-sticky');
|
|
99761
99761
|
title?.classList.add('is-sticky');
|