@bpmn-io/form-js-editor 1.0.0-alpha.0 → 1.0.0-alpha.1
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/assets/form-js-editor-base.css +8 -3
- package/dist/assets/form-js-editor.css +8 -3
- package/dist/index.cjs +7758 -7514
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +7823 -7579
- package/dist/index.es.js.map +1 -1
- package/dist/types/FormEditor.d.ts +6 -3
- package/dist/types/features/SectionModuleBase.d.ts +35 -0
- package/dist/types/features/expression-language/EditorTemplating.d.ts +8 -0
- package/dist/types/features/expression-language/index.d.ts +2 -2
- package/dist/types/features/palette/PaletteModule.d.ts +8 -0
- package/dist/types/features/palette/components/Palette.d.ts +1 -1
- package/dist/types/features/palette/index.d.ts +2 -2
- package/dist/types/features/properties-panel/PropertiesPanel.d.ts +1 -1
- package/dist/types/features/properties-panel/PropertiesPanelHeaderProvider.d.ts +1 -1
- package/dist/types/features/properties-panel/PropertiesPanelModule.d.ts +8 -0
- package/dist/types/features/properties-panel/entries/InputKeyValuesSourceEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/LabelEntry.d.ts +5 -5
- package/dist/types/features/properties-panel/hooks/index.d.ts +1 -1
- package/dist/types/features/properties-panel/hooks/useService.d.ts +2 -0
- package/dist/types/features/properties-panel/index.d.ts +2 -2
- package/dist/types/features/render-injection/RenderInjector.d.ts +30 -0
- package/dist/types/features/render-injection/components/InjectedRendersRoot.d.ts +2 -0
- package/dist/types/features/render-injection/index.d.ts +6 -0
- package/dist/types/features/render-injection/slot-fill/Fill.d.ts +2 -0
- package/dist/types/features/render-injection/slot-fill/FillContext.d.ts +5 -0
- package/dist/types/features/render-injection/slot-fill/Slot.d.ts +7 -0
- package/dist/types/features/render-injection/slot-fill/SlotContext.d.ts +4 -0
- package/dist/types/features/render-injection/slot-fill/SlotFillRoot.d.ts +2 -0
- package/dist/types/features/render-injection/slot-fill/index.d.ts +5 -0
- package/dist/types/render/components/FieldDragPreview.d.ts +1 -1
- package/dist/types/render/components/FieldResizer.d.ts +1 -1
- package/dist/types/render/components/FormEditor.d.ts +1 -1
- package/dist/types/render/components/ModularSection.d.ts +2 -0
- package/dist/types/render/components/editor-form-fields/EditorText.d.ts +1 -1
- package/package.json +3 -3
- 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/hooks/usePropertiesPanelService.d.ts +0 -1
|
@@ -214,13 +214,18 @@
|
|
|
214
214
|
flex-direction: row;
|
|
215
215
|
}
|
|
216
216
|
|
|
217
|
-
.fjs-editor-container .fjs-form-container
|
|
218
|
-
.fjs-editor-container .fjs-editor-palette-container,
|
|
219
|
-
.fjs-editor-container .fjs-editor-properties-container {
|
|
217
|
+
.fjs-editor-container .fjs-form-container {
|
|
220
218
|
overflow-y: auto;
|
|
221
219
|
position: relative;
|
|
222
220
|
}
|
|
223
221
|
|
|
222
|
+
.fjs-editor-container .fjs-render-injector-container {
|
|
223
|
+
width: 0;
|
|
224
|
+
height: 0;
|
|
225
|
+
display: none;
|
|
226
|
+
overflow: hidden;
|
|
227
|
+
}
|
|
228
|
+
|
|
224
229
|
.fjs-editor-container .fjs-form-container,
|
|
225
230
|
.fjs-editor-container .fjs-form {
|
|
226
231
|
display: flex;
|
|
@@ -192,13 +192,18 @@
|
|
|
192
192
|
flex-direction: row;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
-
.fjs-editor-container .fjs-form-container
|
|
196
|
-
.fjs-editor-container .fjs-editor-palette-container,
|
|
197
|
-
.fjs-editor-container .fjs-editor-properties-container {
|
|
195
|
+
.fjs-editor-container .fjs-form-container {
|
|
198
196
|
overflow-y: auto;
|
|
199
197
|
position: relative;
|
|
200
198
|
}
|
|
201
199
|
|
|
200
|
+
.fjs-editor-container .fjs-render-injector-container {
|
|
201
|
+
width: 0;
|
|
202
|
+
height: 0;
|
|
203
|
+
display: none;
|
|
204
|
+
overflow: hidden;
|
|
205
|
+
}
|
|
206
|
+
|
|
202
207
|
.fjs-editor-container .fjs-form-container,
|
|
203
208
|
.fjs-editor-container .fjs-form {
|
|
204
209
|
display: flex;
|