@bpmn-io/form-js-editor 1.0.0-alpha.1 → 1.0.0-alpha.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/LICENSE +22 -22
- package/README.md +116 -116
- package/dist/assets/form-js-editor-base.css +734 -723
- package/dist/assets/form-js-editor.css +11 -0
- package/dist/index.cjs +314 -295
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +314 -295
- package/dist/index.es.js.map +1 -1
- package/dist/types/features/SectionModuleBase.d.ts +6 -1
- package/dist/types/features/assistant/AssistantPrompter.d.ts +20 -0
- package/dist/types/features/assistant/AssistantPrompterLayout.d.ts +20 -0
- package/dist/types/features/assistant/AssistantPrompterLayoutV2.d.ts +20 -0
- package/dist/types/features/assistant/AssistantRenderer.d.ts +34 -0
- package/dist/types/features/assistant/components/Assistant.d.ts +10 -0
- package/dist/types/features/assistant/data/minischema.d.ts +1 -0
- package/dist/types/features/assistant/index.d.ts +7 -0
- package/dist/types/features/assistant/model/AssistantPrompterLayoutV2/AssistantPrompterLayoutV2.d.ts +20 -0
- package/dist/types/features/assistant/model/AssistantPrompterLayoutV2/Prompts.d.ts +4 -0
- package/dist/types/features/assistant/util/CleanupUtil.d.ts +1 -0
- package/dist/types/features/form-generation-ui/FormGenerationUIModule.d.ts +3 -0
- package/dist/types/features/form-generation-ui/components/FormGeneration.d.ts +2 -0
- package/dist/types/features/form-generation-ui/components/GPTModal.d.ts +2 -0
- package/dist/types/features/form-generation-ui/dist/index.d.cts +63 -0
- package/dist/types/features/form-generation-ui/dist/index.es.d.ts +60 -0
- package/dist/types/features/form-generation-ui/index.d.ts +2 -0
- package/dist/types/features/form-generation-ui/inject.d.ts +7 -0
- package/dist/types/features/palette/PaletteRenderer.d.ts +33 -0
- package/dist/types/features/properties-panel/PropertiesPanelRenderer.d.ts +37 -0
- package/dist/types/features/properties-panel/context/FormPropertiesPanelContext.d.ts +11 -0
- package/dist/types/features/properties-panel/context/index.d.ts +1 -0
- package/dist/types/features/properties-panel/entries/ExpressionValidationEntry.d.ts +44 -0
- package/dist/types/features/properties-panel/groups/ExpressionValidationsGroup.d.ts +53 -0
- package/dist/types/features/properties-panel/hooks/usePropertiesPanelService.d.ts +1 -0
- package/dist/types/features/properties-panel/icons/index.d.ts +1 -0
- package/dist/types/features/render-injection/TestInjection.d.ts +7 -0
- package/dist/types/features/render-injection/components/TestInjectionComponent.d.ts +2 -0
- package/dist/types/features/render-injection/slot-fill/Slot.d.ts +1 -0
- package/dist/types/features/util/renderManagerBuilder.d.ts +45 -0
- package/dist/types/types.d.ts +28 -28
- package/package.json +3 -3
|
@@ -441,6 +441,17 @@
|
|
|
441
441
|
user-select: none;
|
|
442
442
|
}
|
|
443
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
|
+
|
|
444
455
|
.fjs-palette-container .fjs-palette-search-container {
|
|
445
456
|
display: flex;
|
|
446
457
|
flex-direction: row;
|