@bpmn-io/form-js-editor 1.0.0-alpha.0 → 1.0.0-alpha.2
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 +19 -3
- package/dist/assets/form-js-editor.css +19 -3
- package/dist/index.cjs +7805 -7555
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +7824 -7574
- 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 +8 -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;
|
|
@@ -460,6 +465,17 @@
|
|
|
460
465
|
user-select: none;
|
|
461
466
|
}
|
|
462
467
|
|
|
468
|
+
.fjs-palette-container .fjs-palette-footer {
|
|
469
|
+
display: flex;
|
|
470
|
+
flex-direction: column;
|
|
471
|
+
align-items: center;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.fjs-palette-container .fjs-palette-footer .fjs-palette-footer-fill {
|
|
475
|
+
padding: 10px;
|
|
476
|
+
width: 100%;
|
|
477
|
+
}
|
|
478
|
+
|
|
463
479
|
.fjs-palette-container .fjs-palette-search-container {
|
|
464
480
|
display: flex;
|
|
465
481
|
flex-direction: row;
|
|
@@ -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;
|
|
@@ -436,6 +441,17 @@
|
|
|
436
441
|
user-select: none;
|
|
437
442
|
}
|
|
438
443
|
|
|
444
|
+
.fjs-palette-container .fjs-palette-footer {
|
|
445
|
+
display: flex;
|
|
446
|
+
flex-direction: column;
|
|
447
|
+
align-items: center;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.fjs-palette-container .fjs-palette-footer .fjs-palette-footer-fill {
|
|
451
|
+
padding: 10px;
|
|
452
|
+
width: 100%;
|
|
453
|
+
}
|
|
454
|
+
|
|
439
455
|
.fjs-palette-container .fjs-palette-search-container {
|
|
440
456
|
display: flex;
|
|
441
457
|
flex-direction: row;
|