@bpmn-io/form-js-editor 1.0.0-alpha.3 → 1.0.0-alpha.5
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/index.cjs +10 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +10 -4
- package/dist/index.es.js.map +1 -1
- package/package.json +3 -3
- package/dist/types/features/assistant/AssistantPrompter.d.ts +0 -20
- package/dist/types/features/assistant/AssistantPrompterLayout.d.ts +0 -20
- package/dist/types/features/assistant/AssistantPrompterLayoutV2.d.ts +0 -20
- package/dist/types/features/assistant/AssistantRenderer.d.ts +0 -34
- package/dist/types/features/assistant/components/Assistant.d.ts +0 -10
- package/dist/types/features/assistant/data/minischema.d.ts +0 -1
- package/dist/types/features/assistant/index.d.ts +0 -7
- package/dist/types/features/assistant/model/AssistantPrompterLayoutV2/AssistantPrompterLayoutV2.d.ts +0 -20
- package/dist/types/features/assistant/model/AssistantPrompterLayoutV2/Prompts.d.ts +0 -4
- package/dist/types/features/assistant/util/CleanupUtil.d.ts +0 -1
- package/dist/types/features/form-generation-ui/FormGenerationUIModule.d.ts +0 -3
- package/dist/types/features/form-generation-ui/components/FormGeneration.d.ts +0 -2
- package/dist/types/features/form-generation-ui/components/GPTModal.d.ts +0 -2
- package/dist/types/features/form-generation-ui/dist/index.d.cts +0 -63
- package/dist/types/features/form-generation-ui/dist/index.es.d.ts +0 -60
- package/dist/types/features/form-generation-ui/index.d.ts +0 -2
- package/dist/types/features/form-generation-ui/inject.d.ts +0 -7
- package/dist/types/features/palette/PaletteRenderer.d.ts +0 -33
- package/dist/types/features/properties-panel/PropertiesPanelRenderer.d.ts +0 -37
- package/dist/types/features/properties-panel/context/FormPropertiesPanelContext.d.ts +0 -11
- package/dist/types/features/properties-panel/context/index.d.ts +0 -1
- package/dist/types/features/properties-panel/entries/ExpressionValidationEntry.d.ts +0 -44
- package/dist/types/features/properties-panel/groups/ExpressionValidationsGroup.d.ts +0 -53
- package/dist/types/features/properties-panel/hooks/usePropertiesPanelService.d.ts +0 -1
- package/dist/types/features/properties-panel/icons/index.d.ts +0 -1
- package/dist/types/features/render-injection/TestInjection.d.ts +0 -7
- package/dist/types/features/render-injection/components/TestInjectionComponent.d.ts +0 -2
- package/dist/types/features/util/renderManagerBuilder.d.ts +0 -45
package/dist/index.es.js
CHANGED
|
@@ -9588,8 +9588,12 @@ class SectionModuleBase {
|
|
|
9588
9588
|
constructor(eventBus, sectionKey) {
|
|
9589
9589
|
this._eventBus = eventBus;
|
|
9590
9590
|
this._sectionKey = sectionKey;
|
|
9591
|
-
this._eventBus.on(`${this._sectionKey}.section.rendered`, () =>
|
|
9592
|
-
|
|
9591
|
+
this._eventBus.on(`${this._sectionKey}.section.rendered`, () => {
|
|
9592
|
+
this.isSectionRendered = true;
|
|
9593
|
+
});
|
|
9594
|
+
this._eventBus.on(`${this._sectionKey}.section.destroyed`, () => {
|
|
9595
|
+
this.isSectionRendered = false;
|
|
9596
|
+
});
|
|
9593
9597
|
}
|
|
9594
9598
|
|
|
9595
9599
|
/**
|
|
@@ -9621,9 +9625,11 @@ class SectionModuleBase {
|
|
|
9621
9625
|
* Circumvents timing issues.
|
|
9622
9626
|
*/
|
|
9623
9627
|
_onceSectionRendered(callback) {
|
|
9624
|
-
|
|
9628
|
+
if (this.isSectionRendered) {
|
|
9625
9629
|
callback();
|
|
9626
|
-
}
|
|
9630
|
+
} else {
|
|
9631
|
+
this._eventBus.once(`${this._sectionKey}.section.rendered`, callback);
|
|
9632
|
+
}
|
|
9627
9633
|
}
|
|
9628
9634
|
}
|
|
9629
9635
|
|