@firecms/collection_editor 3.0.0-canary.26 → 3.0.0-canary.260

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 (88) hide show
  1. package/LICENSE +114 -21
  2. package/README.md +165 -1
  3. package/dist/ConfigControllerProvider.d.ts +1 -2
  4. package/dist/index.d.ts +1 -0
  5. package/dist/index.es.js +10742 -4787
  6. package/dist/index.es.js.map +1 -1
  7. package/dist/index.umd.js +11412 -3
  8. package/dist/index.umd.js.map +1 -1
  9. package/dist/types/collection_editor_controller.d.ts +3 -2
  10. package/dist/types/collection_inference.d.ts +4 -1
  11. package/dist/types/config_controller.d.ts +3 -1
  12. package/dist/types/config_permissions.d.ts +2 -2
  13. package/dist/types/persisted_collection.d.ts +1 -1
  14. package/dist/ui/CollectionViewHeaderAction.d.ts +3 -2
  15. package/dist/ui/EditorCollectionActionStart.d.ts +2 -0
  16. package/dist/ui/EditorEntityAction.d.ts +2 -0
  17. package/dist/ui/PropertyAddColumnComponent.d.ts +3 -1
  18. package/dist/ui/collection_editor/CollectionDetailsForm.d.ts +3 -1
  19. package/dist/ui/collection_editor/CollectionEditorDialog.d.ts +3 -2
  20. package/dist/ui/collection_editor/CollectionEditorWelcomeView.d.ts +2 -2
  21. package/dist/ui/collection_editor/CollectionPropertiesEditorForm.d.ts +2 -2
  22. package/dist/ui/collection_editor/EntityActionsEditTab.d.ts +4 -0
  23. package/dist/ui/collection_editor/EntityActionsSelectDialog.d.ts +4 -0
  24. package/dist/ui/collection_editor/LayoutModeSwitch.d.ts +5 -0
  25. package/dist/ui/collection_editor/PropertyEditView.d.ts +8 -0
  26. package/dist/ui/collection_editor/PropertyTree.d.ts +11 -12
  27. package/dist/ui/collection_editor/SubcollectionsEditTab.d.ts +1 -1
  28. package/dist/ui/collection_editor/import/CollectionEditorImportMapping.d.ts +7 -0
  29. package/dist/ui/collection_editor/properties/MarkdownPropertyField.d.ts +4 -0
  30. package/dist/ui/collection_editor/properties/ReferencePropertyField.d.ts +2 -1
  31. package/dist/ui/collection_editor/properties/StringPropertyField.d.ts +1 -1
  32. package/dist/useCollectionEditorPlugin.d.ts +8 -11
  33. package/dist/utils/collections.d.ts +6 -0
  34. package/package.json +23 -35
  35. package/src/ConfigControllerProvider.tsx +64 -66
  36. package/src/index.ts +1 -0
  37. package/src/types/collection_editor_controller.tsx +6 -5
  38. package/src/types/collection_inference.ts +4 -1
  39. package/src/types/config_controller.tsx +4 -1
  40. package/src/types/config_permissions.ts +1 -1
  41. package/src/types/persisted_collection.ts +2 -3
  42. package/src/ui/CollectionViewHeaderAction.tsx +10 -5
  43. package/src/ui/EditorCollectionAction.tsx +12 -70
  44. package/src/ui/EditorCollectionActionStart.tsx +87 -0
  45. package/src/ui/EditorEntityAction.tsx +51 -0
  46. package/src/ui/HomePageEditorCollectionAction.tsx +21 -14
  47. package/src/ui/NewCollectionButton.tsx +1 -1
  48. package/src/ui/NewCollectionCard.tsx +3 -3
  49. package/src/ui/PropertyAddColumnComponent.tsx +11 -6
  50. package/src/ui/collection_editor/CollectionDetailsForm.tsx +157 -50
  51. package/src/ui/collection_editor/CollectionEditorDialog.tsx +117 -37
  52. package/src/ui/collection_editor/CollectionEditorWelcomeView.tsx +23 -32
  53. package/src/ui/collection_editor/CollectionPropertiesEditorForm.tsx +46 -41
  54. package/src/ui/collection_editor/EntityActionsEditTab.tsx +163 -0
  55. package/src/ui/collection_editor/EntityActionsSelectDialog.tsx +41 -0
  56. package/src/ui/collection_editor/EntityCustomViewsSelectDialog.tsx +11 -7
  57. package/src/ui/collection_editor/EnumForm.tsx +11 -7
  58. package/src/ui/collection_editor/GetCodeDialog.tsx +60 -28
  59. package/src/ui/collection_editor/LayoutModeSwitch.tsx +54 -0
  60. package/src/ui/collection_editor/PropertyEditView.tsx +264 -78
  61. package/src/ui/collection_editor/PropertyFieldPreview.tsx +8 -10
  62. package/src/ui/collection_editor/PropertyTree.tsx +184 -138
  63. package/src/ui/collection_editor/SubcollectionsEditTab.tsx +26 -19
  64. package/src/ui/collection_editor/UnsavedChangesDialog.tsx +9 -7
  65. package/src/ui/collection_editor/import/CollectionEditorImportDataPreview.tsx +33 -9
  66. package/src/ui/collection_editor/import/CollectionEditorImportMapping.tsx +42 -9
  67. package/src/ui/collection_editor/properties/BlockPropertyField.tsx +32 -20
  68. package/src/ui/collection_editor/properties/DateTimePropertyField.tsx +54 -47
  69. package/src/ui/collection_editor/properties/EnumPropertyField.tsx +3 -1
  70. package/src/ui/collection_editor/properties/MapPropertyField.tsx +8 -7
  71. package/src/ui/collection_editor/properties/MarkdownPropertyField.tsx +139 -0
  72. package/src/ui/collection_editor/properties/ReferencePropertyField.tsx +7 -3
  73. package/src/ui/collection_editor/properties/RepeatPropertyField.tsx +0 -1
  74. package/src/ui/collection_editor/properties/StoragePropertyField.tsx +34 -19
  75. package/src/ui/collection_editor/properties/StringPropertyField.tsx +1 -10
  76. package/src/ui/collection_editor/properties/UrlPropertyField.tsx +1 -0
  77. package/src/ui/collection_editor/properties/advanced/AdvancedPropertyValidation.tsx +2 -0
  78. package/src/ui/collection_editor/properties/validation/ValidationPanel.tsx +2 -2
  79. package/src/ui/collection_editor/templates/pages_template.ts +1 -6
  80. package/src/ui/collection_editor/utils/strings.ts +13 -6
  81. package/src/ui/collection_editor/utils/supported_fields.tsx +1 -0
  82. package/src/ui/collection_editor/utils/update_property_for_widget.ts +9 -0
  83. package/src/useCollectionEditorPlugin.tsx +38 -32
  84. package/src/utils/collections.ts +46 -0
  85. package/dist/ui/RootCollectionSuggestions.d.ts +0 -3
  86. package/dist/ui/collection_editor/PropertySelectItem.d.ts +0 -8
  87. package/src/ui/RootCollectionSuggestions.tsx +0 -63
  88. package/src/ui/collection_editor/PropertySelectItem.tsx +0 -32

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.