@eric-emg/symphiq-components 1.2.407 → 1.2.408
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 -0
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +30 -30
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -12756,6 +12756,7 @@ class ProfileContextService {
|
|
|
12756
12756
|
}, ...(ngDevMode ? [{ debugName: "contextIndex" }] : []));
|
|
12757
12757
|
}
|
|
12758
12758
|
indexProfile(sections, recommendations) {
|
|
12759
|
+
console.log('[ProfileContextService.indexProfile] Called with sections:', sections?.length, 'sections');
|
|
12759
12760
|
const index = {
|
|
12760
12761
|
regions: [],
|
|
12761
12762
|
seasons: [],
|
|
@@ -12769,6 +12770,7 @@ class ProfileContextService {
|
|
|
12769
12770
|
for (const section of sections) {
|
|
12770
12771
|
if (!section.subsections)
|
|
12771
12772
|
continue;
|
|
12773
|
+
console.log('[ProfileContextService.indexProfile] Section:', section.id, 'has subsections:', section.subsections?.map(s => s.id));
|
|
12772
12774
|
for (const subsection of section.subsections) {
|
|
12773
12775
|
switch (subsection.id) {
|
|
12774
12776
|
case 'customer-regions':
|