@memberjunction/codegen-lib 2.13.2 → 2.13.3
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/dist/Angular/angular-codegen.js +1 -1
- package/dist/Config/config.d.ts +1235 -105
- package/dist/Config/config.d.ts.map +1 -1
- package/dist/Config/config.js +250 -32
- package/dist/Config/config.js.map +1 -1
- package/dist/Config/db-connection.d.ts +2 -2
- package/dist/Config/db-connection.d.ts.map +1 -1
- package/dist/Config/db-connection.js +17 -16
- package/dist/Config/db-connection.js.map +1 -1
- package/dist/Misc/createNewUser.d.ts.map +1 -1
- package/dist/Misc/createNewUser.js +49 -0
- package/dist/Misc/createNewUser.js.map +1 -1
- package/dist/Misc/runCommand.d.ts.map +1 -1
- package/dist/Misc/runCommand.js +4 -3
- package/dist/Misc/runCommand.js.map +1 -1
- package/dist/Misc/status_logging.js +1 -1
- package/dist/Misc/status_logging.js.map +1 -1
- package/dist/runCodeGen.d.ts.map +1 -1
- package/dist/runCodeGen.js +52 -47
- package/dist/runCodeGen.js.map +1 -1
- package/package.json +8 -8
|
@@ -592,7 +592,7 @@ ${this.innerTabStripHTML(additionalSections, relatedEntitySections)}
|
|
|
592
592
|
// ahead of the additionalSections, then do the additionalSections, and then do the relatedEntitySections
|
|
593
593
|
const relatedEntityBeforeFieldTabs = relatedEntitySections.filter(s => s.RelatedEntityDisplayLocation === 'Before Field Tabs');
|
|
594
594
|
const relatedEntityAfterFieldTabs = relatedEntitySections.filter(s => s.RelatedEntityDisplayLocation === 'After Field Tabs');
|
|
595
|
-
return ` <mj-tabstrip (TabSelected)="onTabSelect($event)" mjFillContainer>
|
|
595
|
+
return ` <mj-tabstrip (TabSelected)="onTabSelect($event)" mjFillContainer (ResizeContainer)="InvokeManualResize()">
|
|
596
596
|
${relatedEntityBeforeFieldTabs ? relatedEntityBeforeFieldTabs.map(s => s.TabCode).join('\n') : ''}
|
|
597
597
|
${additionalSections ? additionalSections.filter(s => s.Type !== core_1.GeneratedFormSectionType.Top).map(s => s.TabCode).join('\n ') : ''}
|
|
598
598
|
${relatedEntityAfterFieldTabs ? relatedEntityAfterFieldTabs.map(s => s.TabCode).join('\n') : ''}
|