@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.
Files changed (40) hide show
  1. package/LICENSE +22 -22
  2. package/README.md +116 -116
  3. package/dist/assets/form-js-editor-base.css +734 -723
  4. package/dist/assets/form-js-editor.css +11 -0
  5. package/dist/index.cjs +314 -295
  6. package/dist/index.cjs.map +1 -1
  7. package/dist/index.es.js +314 -295
  8. package/dist/index.es.js.map +1 -1
  9. package/dist/types/features/SectionModuleBase.d.ts +6 -1
  10. package/dist/types/features/assistant/AssistantPrompter.d.ts +20 -0
  11. package/dist/types/features/assistant/AssistantPrompterLayout.d.ts +20 -0
  12. package/dist/types/features/assistant/AssistantPrompterLayoutV2.d.ts +20 -0
  13. package/dist/types/features/assistant/AssistantRenderer.d.ts +34 -0
  14. package/dist/types/features/assistant/components/Assistant.d.ts +10 -0
  15. package/dist/types/features/assistant/data/minischema.d.ts +1 -0
  16. package/dist/types/features/assistant/index.d.ts +7 -0
  17. package/dist/types/features/assistant/model/AssistantPrompterLayoutV2/AssistantPrompterLayoutV2.d.ts +20 -0
  18. package/dist/types/features/assistant/model/AssistantPrompterLayoutV2/Prompts.d.ts +4 -0
  19. package/dist/types/features/assistant/util/CleanupUtil.d.ts +1 -0
  20. package/dist/types/features/form-generation-ui/FormGenerationUIModule.d.ts +3 -0
  21. package/dist/types/features/form-generation-ui/components/FormGeneration.d.ts +2 -0
  22. package/dist/types/features/form-generation-ui/components/GPTModal.d.ts +2 -0
  23. package/dist/types/features/form-generation-ui/dist/index.d.cts +63 -0
  24. package/dist/types/features/form-generation-ui/dist/index.es.d.ts +60 -0
  25. package/dist/types/features/form-generation-ui/index.d.ts +2 -0
  26. package/dist/types/features/form-generation-ui/inject.d.ts +7 -0
  27. package/dist/types/features/palette/PaletteRenderer.d.ts +33 -0
  28. package/dist/types/features/properties-panel/PropertiesPanelRenderer.d.ts +37 -0
  29. package/dist/types/features/properties-panel/context/FormPropertiesPanelContext.d.ts +11 -0
  30. package/dist/types/features/properties-panel/context/index.d.ts +1 -0
  31. package/dist/types/features/properties-panel/entries/ExpressionValidationEntry.d.ts +44 -0
  32. package/dist/types/features/properties-panel/groups/ExpressionValidationsGroup.d.ts +53 -0
  33. package/dist/types/features/properties-panel/hooks/usePropertiesPanelService.d.ts +1 -0
  34. package/dist/types/features/properties-panel/icons/index.d.ts +1 -0
  35. package/dist/types/features/render-injection/TestInjection.d.ts +7 -0
  36. package/dist/types/features/render-injection/components/TestInjectionComponent.d.ts +2 -0
  37. package/dist/types/features/render-injection/slot-fill/Slot.d.ts +1 -0
  38. package/dist/types/features/util/renderManagerBuilder.d.ts +45 -0
  39. package/dist/types/types.d.ts +28 -28
  40. 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;