@rebasepro/cms 0.0.1-canary.4d4fb3e
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 +6 -0
- package/dist/CollectionEditorDialog-DiZYNmYV.js +4731 -0
- package/dist/CollectionEditorDialog-DiZYNmYV.js.map +1 -0
- package/dist/CollectionsStudioView-BHVTfAuK.js +224 -0
- package/dist/CollectionsStudioView-BHVTfAuK.js.map +1 -0
- package/dist/PropertyEditView-BC5GO9AI.js +7776 -0
- package/dist/PropertyEditView-BC5GO9AI.js.map +1 -0
- package/dist/collection_editor/CollectionEditorDialogsContext.d.ts +19 -0
- package/dist/collection_editor/ConfigControllerProvider.d.ts +45 -0
- package/dist/collection_editor/_cms_internals.d.ts +29 -0
- package/dist/collection_editor/api/generateCollectionApi.d.ts +77 -0
- package/dist/collection_editor/api/index.d.ts +1 -0
- package/dist/collection_editor/index.d.ts +16 -0
- package/dist/collection_editor/pgColumnToProperty.d.ts +6 -0
- package/dist/collection_editor/types/collection_editor_controller.d.ts +56 -0
- package/dist/collection_editor/types/collection_inference.d.ts +10 -0
- package/dist/collection_editor/types/config_controller.d.ts +91 -0
- package/dist/collection_editor/types/config_permissions.d.ts +19 -0
- package/dist/collection_editor/ui/AddKanbanColumnAction.d.ts +11 -0
- package/dist/collection_editor/ui/CollectionViewHeaderAction.d.ts +10 -0
- package/dist/collection_editor/ui/EditorCollectionAction.d.ts +2 -0
- package/dist/collection_editor/ui/EditorCollectionActionStart.d.ts +2 -0
- package/dist/collection_editor/ui/EditorEntityAction.d.ts +2 -0
- package/dist/collection_editor/ui/HomePageEditorCollectionAction.d.ts +2 -0
- package/dist/collection_editor/ui/KanbanSetupAction.d.ts +10 -0
- package/dist/collection_editor/ui/MissingReferenceWidget.d.ts +3 -0
- package/dist/collection_editor/ui/NewCollectionButton.d.ts +1 -0
- package/dist/collection_editor/ui/NewCollectionCard.d.ts +2 -0
- package/dist/collection_editor/ui/PropertyAddColumnComponent.d.ts +7 -0
- package/dist/collection_editor/ui/collection_editor/AICollectionGeneratorPopover.d.ts +36 -0
- package/dist/collection_editor/ui/collection_editor/AIModifiedPathsContext.d.ts +20 -0
- package/dist/collection_editor/ui/collection_editor/CollectionDetailsForm.d.ts +11 -0
- package/dist/collection_editor/ui/collection_editor/CollectionEditorDialog.d.ts +72 -0
- package/dist/collection_editor/ui/collection_editor/CollectionEditorWelcomeView.d.ts +19 -0
- package/dist/collection_editor/ui/collection_editor/CollectionJsonImportDialog.d.ts +7 -0
- package/dist/collection_editor/ui/collection_editor/CollectionPropertiesEditorForm.d.ts +17 -0
- package/dist/collection_editor/ui/collection_editor/CollectionRLSTab.d.ts +12 -0
- package/dist/collection_editor/ui/collection_editor/CollectionRelationsTab.d.ts +1 -0
- package/dist/collection_editor/ui/collection_editor/CollectionStudioView.d.ts +5 -0
- package/dist/collection_editor/ui/collection_editor/CollectionYupValidation.d.ts +14 -0
- package/dist/collection_editor/ui/collection_editor/CollectionsStudioView.d.ts +5 -0
- package/dist/collection_editor/ui/collection_editor/DisplaySettingsForm.d.ts +3 -0
- package/dist/collection_editor/ui/collection_editor/EntityActionsEditTab.d.ts +5 -0
- package/dist/collection_editor/ui/collection_editor/EntityActionsSelectDialog.d.ts +4 -0
- package/dist/collection_editor/ui/collection_editor/EntityCustomViewsSelectDialog.d.ts +4 -0
- package/dist/collection_editor/ui/collection_editor/EnumForm.d.ts +12 -0
- package/dist/collection_editor/ui/collection_editor/GeneralSettingsForm.d.ts +7 -0
- package/dist/collection_editor/ui/collection_editor/GetCodeDialog.d.ts +6 -0
- package/dist/collection_editor/ui/collection_editor/KanbanConfigSection.d.ts +4 -0
- package/dist/collection_editor/ui/collection_editor/LayoutModeSwitch.d.ts +5 -0
- package/dist/collection_editor/ui/collection_editor/PropertyEditView.d.ts +47 -0
- package/dist/collection_editor/ui/collection_editor/PropertyFieldPreview.d.ts +16 -0
- package/dist/collection_editor/ui/collection_editor/PropertyTree.d.ts +31 -0
- package/dist/collection_editor/ui/collection_editor/SubcollectionsEditTab.d.ts +11 -0
- package/dist/collection_editor/ui/collection_editor/SwitchControl.d.ts +8 -0
- package/dist/collection_editor/ui/collection_editor/ViewModeSwitch.d.ts +6 -0
- package/dist/collection_editor/ui/collection_editor/import/CollectionEditorImportDataPreview.d.ts +7 -0
- package/dist/collection_editor/ui/collection_editor/import/CollectionEditorImportMapping.d.ts +13 -0
- package/dist/collection_editor/ui/collection_editor/import/clean_import_data.d.ts +7 -0
- package/dist/collection_editor/ui/collection_editor/properties/BlockPropertyField.d.ts +7 -0
- package/dist/collection_editor/ui/collection_editor/properties/BooleanPropertyField.d.ts +3 -0
- package/dist/collection_editor/ui/collection_editor/properties/CommonPropertyFields.d.ts +10 -0
- package/dist/collection_editor/ui/collection_editor/properties/DateTimePropertyField.d.ts +3 -0
- package/dist/collection_editor/ui/collection_editor/properties/EnumPropertyField.d.ts +9 -0
- package/dist/collection_editor/ui/collection_editor/properties/KeyValuePropertyField.d.ts +3 -0
- package/dist/collection_editor/ui/collection_editor/properties/MapPropertyField.d.ts +7 -0
- package/dist/collection_editor/ui/collection_editor/properties/MarkdownPropertyField.d.ts +4 -0
- package/dist/collection_editor/ui/collection_editor/properties/NumberPropertyField.d.ts +3 -0
- package/dist/collection_editor/ui/collection_editor/properties/ReferencePropertyField.d.ts +14 -0
- package/dist/collection_editor/ui/collection_editor/properties/RelationPropertyField.d.ts +15 -0
- package/dist/collection_editor/ui/collection_editor/properties/RepeatPropertyField.d.ts +9 -0
- package/dist/collection_editor/ui/collection_editor/properties/StoragePropertyField.d.ts +5 -0
- package/dist/collection_editor/ui/collection_editor/properties/StringPropertyField.d.ts +5 -0
- package/dist/collection_editor/ui/collection_editor/properties/UrlPropertyField.d.ts +4 -0
- package/dist/collection_editor/ui/collection_editor/properties/advanced/AdvancedPropertyValidation.d.ts +3 -0
- package/dist/collection_editor/ui/collection_editor/properties/conditions/ConditionsEditor.d.ts +10 -0
- package/dist/collection_editor/ui/collection_editor/properties/conditions/ConditionsPanel.d.ts +3 -0
- package/dist/collection_editor/ui/collection_editor/properties/conditions/EnumConditionsEditor.d.ts +6 -0
- package/dist/collection_editor/ui/collection_editor/properties/conditions/index.d.ts +6 -0
- package/dist/collection_editor/ui/collection_editor/properties/conditions/property_paths.d.ts +19 -0
- package/dist/collection_editor/ui/collection_editor/properties/validation/ArrayPropertyValidation.d.ts +5 -0
- package/dist/collection_editor/ui/collection_editor/properties/validation/GeneralPropertyValidation.d.ts +4 -0
- package/dist/collection_editor/ui/collection_editor/properties/validation/NumberPropertyValidation.d.ts +3 -0
- package/dist/collection_editor/ui/collection_editor/properties/validation/StringPropertyValidation.d.ts +11 -0
- package/dist/collection_editor/ui/collection_editor/properties/validation/ValidationPanel.d.ts +3 -0
- package/dist/collection_editor/ui/collection_editor/templates/blog_template.d.ts +2 -0
- package/dist/collection_editor/ui/collection_editor/templates/pages_template.d.ts +2 -0
- package/dist/collection_editor/ui/collection_editor/templates/products_template.d.ts +2 -0
- package/dist/collection_editor/ui/collection_editor/templates/users_template.d.ts +2 -0
- package/dist/collection_editor/ui/collection_editor/util.d.ts +5 -0
- package/dist/collection_editor/ui/collection_editor/utils/strings.d.ts +1 -0
- package/dist/collection_editor/ui/collection_editor/utils/supported_fields.d.ts +3 -0
- package/dist/collection_editor/ui/collection_editor/utils/update_property_for_widget.d.ts +2 -0
- package/dist/collection_editor/useCollectionEditorController.d.ts +6 -0
- package/dist/collection_editor/useCollectionsConfigController.d.ts +6 -0
- package/dist/collection_editor/useLocalCollectionsConfigController.d.ts +6 -0
- package/dist/collection_editor/validateCollectionJson.d.ts +22 -0
- package/dist/collection_editor_ui.d.ts +8 -0
- package/dist/collection_editor_ui.js +11 -0
- package/dist/collection_editor_ui.js.map +1 -0
- package/dist/components/AdminModeSyncer.d.ts +17 -0
- package/dist/components/ArrayContainer.d.ts +59 -0
- package/dist/components/ClearFilterSortButton.d.ts +5 -0
- package/dist/components/CollectionEditorDialogs.d.ts +15 -0
- package/dist/components/DefaultAppBar.d.ts +29 -0
- package/dist/components/DefaultDrawer.d.ts +29 -0
- package/dist/components/DeleteEntityDialog.d.ts +13 -0
- package/dist/components/DrawerNavigationGroup.d.ts +49 -0
- package/dist/components/DrawerNavigationItem.d.ts +10 -0
- package/dist/components/EntityCollectionTable/EntityCollectionRowActions.d.ts +39 -0
- package/dist/components/EntityCollectionTable/EntityCollectionTable.d.ts +27 -0
- package/dist/components/EntityCollectionTable/EntityCollectionTableProps.d.ts +129 -0
- package/dist/components/EntityCollectionTable/PropertyTableCell.d.ts +26 -0
- package/dist/components/EntityCollectionTable/column_utils.d.ts +16 -0
- package/dist/components/EntityCollectionTable/fields/TableMultipleRelationField.d.ts +21 -0
- package/dist/components/EntityCollectionTable/fields/TableReferenceField.d.ts +22 -0
- package/dist/components/EntityCollectionTable/fields/TableRelationField.d.ts +22 -0
- package/dist/components/EntityCollectionTable/fields/TableRelationSelectorField.d.ts +20 -0
- package/dist/components/EntityCollectionTable/fields/TableStorageUpload.d.ts +35 -0
- package/dist/components/EntityCollectionTable/fields/VirtualTableDateField.d.ts +12 -0
- package/dist/components/EntityCollectionTable/fields/VirtualTableInput.d.ts +9 -0
- package/dist/components/EntityCollectionTable/fields/VirtualTableNumberInput.d.ts +8 -0
- package/dist/components/EntityCollectionTable/fields/VirtualTableSelect.d.ts +15 -0
- package/dist/components/EntityCollectionTable/fields/VirtualTableSwitch.d.ts +7 -0
- package/dist/components/EntityCollectionTable/fields/VirtualTableUserSelect.d.ts +12 -0
- package/dist/components/EntityCollectionTable/index.d.ts +6 -0
- package/dist/components/EntityCollectionTable/internal/CollectionTableToolbar.d.ts +14 -0
- package/dist/components/EntityCollectionTable/internal/EntityTableCell.d.ts +32 -0
- package/dist/components/EntityCollectionTable/internal/EntityTableCellActions.d.ts +9 -0
- package/dist/components/EntityCollectionTable/internal/common.d.ts +5 -0
- package/dist/components/EntityCollectionTable/internal/popup_field/PopupFormField.d.ts +27 -0
- package/dist/components/EntityCollectionTable/internal/popup_field/useDraggable.d.ts +13 -0
- package/dist/components/EntityCollectionTable/internal/popup_field/useWindowSize.d.ts +6 -0
- package/dist/components/EntityCollectionTable/table_bindings.d.ts +28 -0
- package/dist/components/EntityCollectionView/Board.d.ts +2 -0
- package/dist/components/EntityCollectionView/BoardColumn.d.ts +42 -0
- package/dist/components/EntityCollectionView/BoardColumnTitle.d.ts +9 -0
- package/dist/components/EntityCollectionView/BoardSortableList.d.ts +14 -0
- package/dist/components/EntityCollectionView/EntityBoardCard.d.ts +27 -0
- package/dist/components/EntityCollectionView/EntityCard.d.ts +20 -0
- package/dist/components/EntityCollectionView/EntityCollectionBoardView.d.ts +21 -0
- package/dist/components/EntityCollectionView/EntityCollectionCardView.d.ts +32 -0
- package/dist/components/EntityCollectionView/EntityCollectionView.d.ts +54 -0
- package/dist/components/EntityCollectionView/EntityCollectionViewActions.d.ts +15 -0
- package/dist/components/EntityCollectionView/EntityCollectionViewStartActions.d.ts +17 -0
- package/dist/components/EntityCollectionView/FiltersDialog.d.ts +15 -0
- package/dist/components/EntityCollectionView/ViewModeToggle.d.ts +44 -0
- package/dist/components/EntityCollectionView/board_types.d.ts +105 -0
- package/dist/components/EntityCollectionView/hooks/useCollectionInlineEditor.d.ts +12 -0
- package/dist/components/EntityCollectionView/hooks/useKanbanDragAndDrop.d.ts +20 -0
- package/dist/components/EntityCollectionView/useBoardDataController.d.ts +61 -0
- package/dist/components/EntityCollectionView/useSelectionController.d.ts +2 -0
- package/dist/components/EntityCollectionView/utils.d.ts +3 -0
- package/dist/components/EntityEditView.d.ts +48 -0
- package/dist/components/EntityEditViewFormActions.d.ts +2 -0
- package/dist/components/EntityJsonPreview.d.ts +3 -0
- package/dist/components/EntityPreview.d.ts +56 -0
- package/dist/components/EntitySidePanel.d.ts +10 -0
- package/dist/components/EntityView.d.ts +12 -0
- package/dist/components/FieldCaption.d.ts +5 -0
- package/dist/components/HomePage/ContentHomePage.d.ts +11 -0
- package/dist/components/HomePage/FavouritesView.d.ts +3 -0
- package/dist/components/HomePage/HomePageDnD.d.ts +77 -0
- package/dist/components/HomePage/NavigationCard.d.ts +10 -0
- package/dist/components/HomePage/NavigationCardBinding.d.ts +18 -0
- package/dist/components/HomePage/NavigationGroup.d.ts +11 -0
- package/dist/components/HomePage/RenameGroupDialog.d.ts +9 -0
- package/dist/components/HomePage/SmallNavigationCard.d.ts +6 -0
- package/dist/components/HomePage/index.d.ts +4 -0
- package/dist/components/PropertyCollectionView.d.ts +24 -0
- package/dist/components/PropertyConfigBadge.d.ts +6 -0
- package/dist/components/PropertyIdCopyTooltip.d.ts +8 -0
- package/dist/components/RebaseAuthGate.d.ts +21 -0
- package/dist/components/RebaseCMS.d.ts +10 -0
- package/dist/components/RebaseLayout.d.ts +32 -0
- package/dist/components/RebaseNavigation.d.ts +24 -0
- package/dist/components/RebaseRouteDefs.d.ts +30 -0
- package/dist/components/RebaseShell.d.ts +25 -0
- package/dist/components/ReferenceTable/EntitySelectionTable.d.ts +59 -0
- package/dist/components/ReferenceWidget.d.ts +30 -0
- package/dist/components/RelationSelector.d.ts +32 -0
- package/dist/components/SearchIconsView.d.ts +5 -0
- package/dist/components/SelectableTable/SelectableTable.d.ts +89 -0
- package/dist/components/SelectableTable/SelectableTableContext.d.ts +4 -0
- package/dist/components/SelectableTable/filters/BooleanFilterField.d.ts +9 -0
- package/dist/components/SelectableTable/filters/DateTimeFilterField.d.ts +12 -0
- package/dist/components/SelectableTable/filters/ReferenceFilterField.d.ts +15 -0
- package/dist/components/SelectableTable/filters/RelationFilterField.d.ts +12 -0
- package/dist/components/SelectableTable/filters/StringNumberFilterField.d.ts +13 -0
- package/dist/components/SideDialogs.d.ts +25 -0
- package/dist/components/SideEntityProvider.d.ts +32 -0
- package/dist/components/admin/RoleChip.d.ts +4 -0
- package/dist/components/admin/RolesView.d.ts +4 -0
- package/dist/components/admin/UsersView.d.ts +4 -0
- package/dist/components/admin/index.d.ts +3 -0
- package/dist/components/app/AppBar.d.ts +12 -0
- package/dist/components/app/Drawer.d.ts +19 -0
- package/dist/components/app/Scaffold.d.ts +34 -0
- package/dist/components/app/index.d.ts +4 -0
- package/dist/components/app/useApp.d.ts +17 -0
- package/dist/components/common/default_entity_actions.d.ts +4 -0
- package/dist/components/common/index.d.ts +1 -0
- package/dist/components/field_configs.d.ts +7 -0
- package/dist/components/history/EntityHistoryEntry.d.ts +17 -0
- package/dist/components/history/EntityHistoryView.d.ts +6 -0
- package/dist/components/history/LastEditedByFormAction.d.ts +6 -0
- package/dist/components/history/LastEditedByIndicator.d.ts +10 -0
- package/dist/components/history/UserChip.d.ts +4 -0
- package/dist/components/history/index.d.ts +5 -0
- package/dist/components/index.d.ts +42 -0
- package/dist/contexts/BreacrumbsContext.d.ts +8 -0
- package/dist/contexts/SideDialogsControllerContext.d.ts +3 -0
- package/dist/contexts/SideEntityControllerContext.d.ts +3 -0
- package/dist/data_export/export/BasicExportAction.d.ts +7 -0
- package/dist/data_export/export/ExportCollectionAction.d.ts +11 -0
- package/dist/data_export/export/export.d.ts +22 -0
- package/dist/data_export/export/index.d.ts +3 -0
- package/dist/data_export/index.d.ts +1 -0
- package/dist/data_import/components/DataNewPropertiesMapping.d.ts +13 -0
- package/dist/data_import/components/ImportFileUpload.d.ts +3 -0
- package/dist/data_import/components/ImportNewPropertyFieldPreview.d.ts +9 -0
- package/dist/data_import/components/ImportSaveInProgress.d.ts +8 -0
- package/dist/data_import/components/index.d.ts +4 -0
- package/dist/data_import/hooks/index.d.ts +1 -0
- package/dist/data_import/hooks/useImportConfig.d.ts +2 -0
- package/dist/data_import/import/ImportCollectionAction.d.ts +15 -0
- package/dist/data_import/import/index.d.ts +1 -0
- package/dist/data_import/index.d.ts +5 -0
- package/dist/data_import/types/column_mapping.d.ts +20 -0
- package/dist/data_import/types/index.d.ts +1 -0
- package/dist/data_import/utils/data.d.ts +4 -0
- package/dist/data_import/utils/file_headers.d.ts +1 -0
- package/dist/data_import/utils/file_to_json.d.ts +16 -0
- package/dist/data_import/utils/get_import_inference_type.d.ts +2 -0
- package/dist/data_import/utils/get_properties_mapping.d.ts +1 -0
- package/dist/data_import/utils/index.d.ts +3 -0
- package/dist/editor/components/SlashCommandMenu.d.ts +6 -0
- package/dist/editor/components/editor-bubble-item.d.ts +8 -0
- package/dist/editor/components/editor-bubble.d.ts +8 -0
- package/dist/editor/components/image-bubble.d.ts +5 -0
- package/dist/editor/components/index.d.ts +16 -0
- package/dist/editor/components/table-bubble.d.ts +5 -0
- package/dist/editor/editor.d.ts +30 -0
- package/dist/editor/extensions/HighlightDecorationExtension.d.ts +24 -0
- package/dist/editor/extensions/Image/index.d.ts +6 -0
- package/dist/editor/extensions/Image.d.ts +6 -0
- package/dist/editor/extensions/TextLoadingDecorationExtension.d.ts +16 -0
- package/dist/editor/extensions/clipboard.d.ts +7 -0
- package/dist/editor/extensions/custom-keymap.d.ts +1 -0
- package/dist/editor/extensions/drag-and-drop.d.ts +9 -0
- package/dist/editor/hooks/useProseMirror.d.ts +13 -0
- package/dist/editor/hooks/useProseMirrorContext.d.ts +9 -0
- package/dist/editor/index.d.ts +2 -0
- package/dist/editor/markdown.d.ts +5 -0
- package/dist/editor/nodeViews/ImageComponent.d.ts +3 -0
- package/dist/editor/nodeViews/ReactNodeView.d.ts +29 -0
- package/dist/editor/nodeViews/TaskItemComponent.d.ts +3 -0
- package/dist/editor/nodeViews/index.d.ts +6 -0
- package/dist/editor/plugins/index.d.ts +2 -0
- package/dist/editor/plugins/inputrules.d.ts +6 -0
- package/dist/editor/plugins/placeholderPlugin.d.ts +3 -0
- package/dist/editor/plugins/slashCommandPlugin.d.ts +12 -0
- package/dist/editor/schema.d.ts +2 -0
- package/dist/editor/selectors/ai-selector.d.ts +0 -0
- package/dist/editor/selectors/color-selector.d.ts +10 -0
- package/dist/editor/selectors/link-selector.d.ts +8 -0
- package/dist/editor/selectors/node-selector.d.ts +15 -0
- package/dist/editor/selectors/text-buttons.d.ts +1 -0
- package/dist/editor/types.d.ts +5 -0
- package/dist/editor/useProseMirror.d.ts +16 -0
- package/dist/editor/utils/prosemirror-utils.d.ts +7 -0
- package/dist/editor/utils/remove_classes.d.ts +1 -0
- package/dist/editor/utils/useDebouncedCallback.d.ts +1 -0
- package/dist/form/EntityForm.d.ts +10 -0
- package/dist/form/EntityFormActions.d.ts +2 -0
- package/dist/form/PropertyFieldBinding.d.ts +30 -0
- package/dist/form/components/ErrorFocus.d.ts +4 -0
- package/dist/form/components/FieldHelperText.d.ts +12 -0
- package/dist/form/components/FormEntry.d.ts +6 -0
- package/dist/form/components/FormLayout.d.ts +5 -0
- package/dist/form/components/LabelWithIcon.d.ts +14 -0
- package/dist/form/components/LabelWithIconAndTooltip.d.ts +15 -0
- package/dist/form/components/LocalChangesMenu.d.ts +11 -0
- package/dist/form/components/StorageItemPreview.d.ts +14 -0
- package/dist/form/components/StorageUploadProgress.d.ts +10 -0
- package/dist/form/components/index.d.ts +5 -0
- package/dist/form/field_bindings/ArrayCustomShapedFieldBinding.d.ts +10 -0
- package/dist/form/field_bindings/ArrayOfReferencesFieldBinding.d.ts +13 -0
- package/dist/form/field_bindings/BlockFieldBinding.d.ts +11 -0
- package/dist/form/field_bindings/DateTimeFieldBinding.d.ts +12 -0
- package/dist/form/field_bindings/KeyValueFieldBinding.d.ts +8 -0
- package/dist/form/field_bindings/MapFieldBinding.d.ts +10 -0
- package/dist/form/field_bindings/MarkdownEditorFieldBinding.d.ts +12 -0
- package/dist/form/field_bindings/MultiSelectFieldBinding.d.ts +10 -0
- package/dist/form/field_bindings/MultipleRelationFieldBinding.d.ts +10 -0
- package/dist/form/field_bindings/ReadOnlyFieldBinding.d.ts +11 -0
- package/dist/form/field_bindings/ReferenceAsStringFieldBinding.d.ts +10 -0
- package/dist/form/field_bindings/ReferenceFieldBinding.d.ts +10 -0
- package/dist/form/field_bindings/RelationFieldBinding.d.ts +3 -0
- package/dist/form/field_bindings/RepeatFieldBinding.d.ts +11 -0
- package/dist/form/field_bindings/SelectFieldBinding.d.ts +11 -0
- package/dist/form/field_bindings/StorageUploadFieldBinding.d.ts +21 -0
- package/dist/form/field_bindings/SwitchFieldBinding.d.ts +10 -0
- package/dist/form/field_bindings/TextFieldBinding.d.ts +9 -0
- package/dist/form/field_bindings/UserSelectFieldBinding.d.ts +13 -0
- package/dist/form/index.d.ts +20 -0
- package/dist/form/useClearRestoreValue.d.ts +13 -0
- package/dist/form/validation.d.ts +21 -0
- package/dist/hooks/index.d.ts +15 -0
- package/dist/hooks/navigation/contexts/CollectionRegistryContext.d.ts +5 -0
- package/dist/hooks/navigation/contexts/NavigationStateContext.d.ts +4 -0
- package/dist/hooks/navigation/contexts/UrlContext.d.ts +4 -0
- package/dist/hooks/navigation/contexts/index.d.ts +3 -0
- package/dist/hooks/navigation/useBuildCollectionRegistryController.d.ts +7 -0
- package/dist/hooks/navigation/useBuildNavigationStateController.d.ts +34 -0
- package/dist/hooks/navigation/useBuildUrlController.d.ts +7 -0
- package/dist/hooks/navigation/useNavigationRegistry.d.ts +11 -0
- package/dist/hooks/navigation/useNavigationResolution.d.ts +7 -0
- package/dist/hooks/navigation/useNavigationURLs.d.ts +11 -0
- package/dist/hooks/navigation/useResolvedCollections.d.ts +28 -0
- package/dist/hooks/navigation/useResolvedViews.d.ts +29 -0
- package/dist/hooks/navigation/useTopLevelNavigation.d.ts +27 -0
- package/dist/hooks/navigation/utils.d.ts +12 -0
- package/dist/hooks/useBreadcrumbsController.d.ts +42 -0
- package/dist/hooks/useBuildSideDialogsController.d.ts +2 -0
- package/dist/hooks/useBuildSideEntityController.d.ts +6 -0
- package/dist/hooks/useCMSContext.d.ts +27 -0
- package/dist/hooks/useEntityHistory.d.ts +30 -0
- package/dist/hooks/useEntitySelectionDialog.d.ts +18 -0
- package/dist/hooks/useResolvedNavigationFrom.d.ts +73 -0
- package/dist/hooks/useSideDialogsController.d.ts +19 -0
- package/dist/hooks/useSideEntityController.d.ts +11 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +2885 -0
- package/dist/index.js.map +1 -0
- package/dist/preview/PropertyPreview.d.ts +7 -0
- package/dist/preview/components/ArrayEnumPreview.d.ts +11 -0
- package/dist/preview/components/BooleanPreview.d.ts +11 -0
- package/dist/preview/components/DatePreview.d.ts +17 -0
- package/dist/preview/components/EmptyValue.d.ts +6 -0
- package/dist/preview/components/EnumValuesChip.d.ts +13 -0
- package/dist/preview/components/ImagePreview.d.ts +16 -0
- package/dist/preview/components/ReferencePreview.d.ts +17 -0
- package/dist/preview/components/RelationPreview.d.ts +17 -0
- package/dist/preview/components/StorageThumbnail.d.ts +15 -0
- package/dist/preview/components/UrlComponentPreview.d.ts +14 -0
- package/dist/preview/components/UserPreview.d.ts +9 -0
- package/dist/preview/index.d.ts +23 -0
- package/dist/preview/property_previews/ArrayOfMapsPreview.d.ts +6 -0
- package/dist/preview/property_previews/ArrayOfReferencesPreview.d.ts +6 -0
- package/dist/preview/property_previews/ArrayOfRelationsPreview.d.ts +6 -0
- package/dist/preview/property_previews/ArrayOfStorageComponentsPreview.d.ts +6 -0
- package/dist/preview/property_previews/ArrayOfStringsPreview.d.ts +6 -0
- package/dist/preview/property_previews/ArrayOneOfPreview.d.ts +6 -0
- package/dist/preview/property_previews/ArrayPropertyEnumPreview.d.ts +6 -0
- package/dist/preview/property_previews/ArrayPropertyPreview.d.ts +6 -0
- package/dist/preview/property_previews/MapPropertyPreview.d.ts +9 -0
- package/dist/preview/property_previews/NumberPropertyPreview.d.ts +7 -0
- package/dist/preview/property_previews/SkeletonPropertyComponent.d.ts +14 -0
- package/dist/preview/property_previews/StringPropertyPreview.d.ts +7 -0
- package/dist/preview/util.d.ts +7 -0
- package/dist/routes/CustomViewRoute.d.ts +4 -0
- package/dist/routes/RebaseRoute.d.ts +1 -0
- package/dist/routes/index.d.ts +2 -0
- package/dist/types/components/EntityFormActionsProps.d.ts +19 -0
- package/dist/types/components/EntityFormProps.d.ts +48 -0
- package/dist/types/components/PropertyPreviewProps.d.ts +47 -0
- package/dist/types/components/formex.d.ts +40 -0
- package/dist/types/components/index.d.ts +3 -0
- package/dist/types/fields.d.ts +221 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/util/entity_actions.d.ts +2 -0
- package/dist/util/index.d.ts +5 -0
- package/dist/util/navigation_utils.d.ts +32 -0
- package/dist/util/previews.d.ts +4 -0
- package/dist/util/property_utils.d.ts +24 -0
- package/dist/util/resolutions.d.ts +9 -0
- package/dist/util-W5Lh0Emr.js +32604 -0
- package/dist/util-W5Lh0Emr.js.map +1 -0
- package/package.json +170 -0
- package/src/collection_editor/CollectionEditorDialogsContext.tsx +25 -0
- package/src/collection_editor/ConfigControllerProvider.tsx +405 -0
- package/src/collection_editor/_cms_internals.ts +41 -0
- package/src/collection_editor/api/generateCollectionApi.ts +125 -0
- package/src/collection_editor/api/index.ts +1 -0
- package/src/collection_editor/index.ts +63 -0
- package/src/collection_editor/pgColumnToProperty.ts +274 -0
- package/src/collection_editor/types/collection_editor_controller.tsx +64 -0
- package/src/collection_editor/types/collection_inference.ts +17 -0
- package/src/collection_editor/types/config_controller.tsx +109 -0
- package/src/collection_editor/types/config_permissions.ts +20 -0
- package/src/collection_editor/ui/AddKanbanColumnAction.tsx +195 -0
- package/src/collection_editor/ui/CollectionViewHeaderAction.tsx +49 -0
- package/src/collection_editor/ui/EditorCollectionAction.tsx +57 -0
- package/src/collection_editor/ui/EditorCollectionActionStart.tsx +92 -0
- package/src/collection_editor/ui/EditorEntityAction.tsx +53 -0
- package/src/collection_editor/ui/HomePageEditorCollectionAction.tsx +119 -0
- package/src/collection_editor/ui/KanbanSetupAction.tsx +40 -0
- package/src/collection_editor/ui/MissingReferenceWidget.tsx +40 -0
- package/src/collection_editor/ui/NewCollectionButton.tsx +26 -0
- package/src/collection_editor/ui/NewCollectionCard.tsx +52 -0
- package/src/collection_editor/ui/PropertyAddColumnComponent.tsx +52 -0
- package/src/collection_editor/ui/collection_editor/AICollectionGeneratorPopover.tsx +253 -0
- package/src/collection_editor/ui/collection_editor/AIModifiedPathsContext.tsx +88 -0
- package/src/collection_editor/ui/collection_editor/CollectionDetailsForm.tsx +437 -0
- package/src/collection_editor/ui/collection_editor/CollectionEditorDialog.tsx +991 -0
- package/src/collection_editor/ui/collection_editor/CollectionEditorWelcomeView.tsx +291 -0
- package/src/collection_editor/ui/collection_editor/CollectionJsonImportDialog.tsx +171 -0
- package/src/collection_editor/ui/collection_editor/CollectionPropertiesEditorForm.tsx +600 -0
- package/src/collection_editor/ui/collection_editor/CollectionRLSTab.tsx +331 -0
- package/src/collection_editor/ui/collection_editor/CollectionRelationsTab.tsx +224 -0
- package/src/collection_editor/ui/collection_editor/CollectionStudioView.tsx +103 -0
- package/src/collection_editor/ui/collection_editor/CollectionYupValidation.tsx +9 -0
- package/src/collection_editor/ui/collection_editor/CollectionsStudioView.tsx +137 -0
- package/src/collection_editor/ui/collection_editor/DisplaySettingsForm.tsx +312 -0
- package/src/collection_editor/ui/collection_editor/EntityActionsEditTab.tsx +164 -0
- package/src/collection_editor/ui/collection_editor/EntityActionsSelectDialog.tsx +40 -0
- package/src/collection_editor/ui/collection_editor/EntityCustomViewsSelectDialog.tsx +39 -0
- package/src/collection_editor/ui/collection_editor/EnumForm.tsx +370 -0
- package/src/collection_editor/ui/collection_editor/GeneralSettingsForm.tsx +277 -0
- package/src/collection_editor/ui/collection_editor/GetCodeDialog.tsx +142 -0
- package/src/collection_editor/ui/collection_editor/KanbanConfigSection.tsx +195 -0
- package/src/collection_editor/ui/collection_editor/LayoutModeSwitch.tsx +35 -0
- package/src/collection_editor/ui/collection_editor/PropertyEditView.tsx +790 -0
- package/src/collection_editor/ui/collection_editor/PropertyFieldPreview.tsx +159 -0
- package/src/collection_editor/ui/collection_editor/PropertyTree.tsx +360 -0
- package/src/collection_editor/ui/collection_editor/SubcollectionsEditTab.tsx +255 -0
- package/src/collection_editor/ui/collection_editor/SwitchControl.tsx +39 -0
- package/src/collection_editor/ui/collection_editor/ViewModeSwitch.tsx +41 -0
- package/src/collection_editor/ui/collection_editor/import/CollectionEditorImportDataPreview.tsx +66 -0
- package/src/collection_editor/ui/collection_editor/import/CollectionEditorImportMapping.tsx +296 -0
- package/src/collection_editor/ui/collection_editor/import/clean_import_data.ts +54 -0
- package/src/collection_editor/ui/collection_editor/properties/BlockPropertyField.tsx +146 -0
- package/src/collection_editor/ui/collection_editor/properties/BooleanPropertyField.tsx +41 -0
- package/src/collection_editor/ui/collection_editor/properties/CommonPropertyFields.tsx +111 -0
- package/src/collection_editor/ui/collection_editor/properties/DateTimePropertyField.tsx +205 -0
- package/src/collection_editor/ui/collection_editor/properties/EnumPropertyField.tsx +124 -0
- package/src/collection_editor/ui/collection_editor/properties/KeyValuePropertyField.tsx +20 -0
- package/src/collection_editor/ui/collection_editor/properties/MapPropertyField.tsx +150 -0
- package/src/collection_editor/ui/collection_editor/properties/MarkdownPropertyField.tsx +215 -0
- package/src/collection_editor/ui/collection_editor/properties/NumberPropertyField.tsx +115 -0
- package/src/collection_editor/ui/collection_editor/properties/ReferencePropertyField.tsx +162 -0
- package/src/collection_editor/ui/collection_editor/properties/RelationPropertyField.tsx +344 -0
- package/src/collection_editor/ui/collection_editor/properties/RepeatPropertyField.tsx +106 -0
- package/src/collection_editor/ui/collection_editor/properties/StoragePropertyField.tsx +366 -0
- package/src/collection_editor/ui/collection_editor/properties/StringPropertyField.tsx +146 -0
- package/src/collection_editor/ui/collection_editor/properties/UrlPropertyField.tsx +90 -0
- package/src/collection_editor/ui/collection_editor/properties/advanced/AdvancedPropertyValidation.tsx +47 -0
- package/src/collection_editor/ui/collection_editor/properties/conditions/ConditionsEditor.tsx +853 -0
- package/src/collection_editor/ui/collection_editor/properties/conditions/ConditionsPanel.tsx +28 -0
- package/src/collection_editor/ui/collection_editor/properties/conditions/EnumConditionsEditor.tsx +593 -0
- package/src/collection_editor/ui/collection_editor/properties/conditions/index.ts +6 -0
- package/src/collection_editor/ui/collection_editor/properties/conditions/property_paths.ts +93 -0
- package/src/collection_editor/ui/collection_editor/properties/validation/ArrayPropertyValidation.tsx +50 -0
- package/src/collection_editor/ui/collection_editor/properties/validation/GeneralPropertyValidation.tsx +61 -0
- package/src/collection_editor/ui/collection_editor/properties/validation/NumberPropertyValidation.tsx +115 -0
- package/src/collection_editor/ui/collection_editor/properties/validation/StringPropertyValidation.tsx +152 -0
- package/src/collection_editor/ui/collection_editor/properties/validation/ValidationPanel.tsx +28 -0
- package/src/collection_editor/ui/collection_editor/templates/blog_template.ts +112 -0
- package/src/collection_editor/ui/collection_editor/templates/pages_template.ts +183 -0
- package/src/collection_editor/ui/collection_editor/templates/products_template.ts +88 -0
- package/src/collection_editor/ui/collection_editor/templates/users_template.ts +42 -0
- package/src/collection_editor/ui/collection_editor/util.ts +28 -0
- package/src/collection_editor/ui/collection_editor/utils/strings.ts +16 -0
- package/src/collection_editor/ui/collection_editor/utils/supported_fields.tsx +33 -0
- package/src/collection_editor/ui/collection_editor/utils/update_property_for_widget.ts +281 -0
- package/src/collection_editor/useCollectionEditorController.tsx +9 -0
- package/src/collection_editor/useCollectionsConfigController.tsx +9 -0
- package/src/collection_editor/useLocalCollectionsConfigController.tsx +111 -0
- package/src/collection_editor/validateCollectionJson.ts +379 -0
- package/src/collection_editor_ui.ts +15 -0
- package/src/components/AdminModeSyncer.tsx +56 -0
- package/src/components/ArrayContainer.tsx +551 -0
- package/src/components/ClearFilterSortButton.tsx +47 -0
- package/src/components/CollectionEditorDialogs.tsx +68 -0
- package/src/components/DefaultAppBar.tsx +280 -0
- package/src/components/DefaultDrawer.tsx +276 -0
- package/src/components/DeleteEntityDialog.tsx +182 -0
- package/src/components/DrawerNavigationGroup.tsx +128 -0
- package/src/components/DrawerNavigationItem.tsx +65 -0
- package/src/components/EntityCollectionTable/EntityCollectionRowActions.tsx +232 -0
- package/src/components/EntityCollectionTable/EntityCollectionTable.tsx +380 -0
- package/src/components/EntityCollectionTable/EntityCollectionTableProps.tsx +171 -0
- package/src/components/EntityCollectionTable/PropertyTableCell.tsx +342 -0
- package/src/components/EntityCollectionTable/column_utils.tsx +75 -0
- package/src/components/EntityCollectionTable/fields/TableMultipleRelationField.tsx +130 -0
- package/src/components/EntityCollectionTable/fields/TableReferenceField.tsx +172 -0
- package/src/components/EntityCollectionTable/fields/TableRelationField.tsx +181 -0
- package/src/components/EntityCollectionTable/fields/TableRelationSelectorField.tsx +42 -0
- package/src/components/EntityCollectionTable/fields/TableStorageUpload.tsx +320 -0
- package/src/components/EntityCollectionTable/fields/VirtualTableDateField.tsx +39 -0
- package/src/components/EntityCollectionTable/fields/VirtualTableInput.tsx +90 -0
- package/src/components/EntityCollectionTable/fields/VirtualTableNumberInput.tsx +80 -0
- package/src/components/EntityCollectionTable/fields/VirtualTableSelect.tsx +133 -0
- package/src/components/EntityCollectionTable/fields/VirtualTableSwitch.tsx +32 -0
- package/src/components/EntityCollectionTable/fields/VirtualTableUserSelect.tsx +112 -0
- package/src/components/EntityCollectionTable/index.tsx +14 -0
- package/src/components/EntityCollectionTable/internal/CollectionTableToolbar.tsx +72 -0
- package/src/components/EntityCollectionTable/internal/EntityTableCell.tsx +311 -0
- package/src/components/EntityCollectionTable/internal/EntityTableCellActions.tsx +82 -0
- package/src/components/EntityCollectionTable/internal/common.tsx +73 -0
- package/src/components/EntityCollectionTable/internal/popup_field/PopupFormField.tsx +418 -0
- package/src/components/EntityCollectionTable/internal/popup_field/useDraggable.tsx +96 -0
- package/src/components/EntityCollectionTable/internal/popup_field/useWindowSize.tsx +20 -0
- package/src/components/EntityCollectionTable/table_bindings.tsx +345 -0
- package/src/components/EntityCollectionView/Board.tsx +324 -0
- package/src/components/EntityCollectionView/BoardColumn.tsx +158 -0
- package/src/components/EntityCollectionView/BoardColumnTitle.tsx +45 -0
- package/src/components/EntityCollectionView/BoardSortableList.tsx +172 -0
- package/src/components/EntityCollectionView/EntityBoardCard.tsx +204 -0
- package/src/components/EntityCollectionView/EntityCard.tsx +219 -0
- package/src/components/EntityCollectionView/EntityCollectionBoardView.tsx +609 -0
- package/src/components/EntityCollectionView/EntityCollectionCardView.tsx +249 -0
- package/src/components/EntityCollectionView/EntityCollectionView.tsx +1143 -0
- package/src/components/EntityCollectionView/EntityCollectionViewActions.tsx +149 -0
- package/src/components/EntityCollectionView/EntityCollectionViewStartActions.tsx +122 -0
- package/src/components/EntityCollectionView/FiltersDialog.tsx +249 -0
- package/src/components/EntityCollectionView/ViewModeToggle.tsx +197 -0
- package/src/components/EntityCollectionView/board_types.ts +113 -0
- package/src/components/EntityCollectionView/hooks/useCollectionInlineEditor.ts +79 -0
- package/src/components/EntityCollectionView/hooks/useKanbanDragAndDrop.ts +151 -0
- package/src/components/EntityCollectionView/useBoardDataController.tsx +510 -0
- package/src/components/EntityCollectionView/useSelectionController.tsx +43 -0
- package/src/components/EntityCollectionView/utils.ts +19 -0
- package/src/components/EntityEditView.tsx +576 -0
- package/src/components/EntityEditViewFormActions.tsx +345 -0
- package/src/components/EntityJsonPreview.tsx +66 -0
- package/src/components/EntityPreview.tsx +366 -0
- package/src/components/EntitySidePanel.tsx +159 -0
- package/src/components/EntityView.tsx +69 -0
- package/src/components/FieldCaption.tsx +14 -0
- package/src/components/HomePage/ContentHomePage.tsx +553 -0
- package/src/components/HomePage/FavouritesView.tsx +60 -0
- package/src/components/HomePage/HomePageDnD.tsx +703 -0
- package/src/components/HomePage/NavigationCard.tsx +79 -0
- package/src/components/HomePage/NavigationCardBinding.tsx +110 -0
- package/src/components/HomePage/NavigationGroup.tsx +156 -0
- package/src/components/HomePage/RenameGroupDialog.tsx +123 -0
- package/src/components/HomePage/SmallNavigationCard.tsx +45 -0
- package/src/components/HomePage/index.tsx +5 -0
- package/src/components/PropertyCollectionView.tsx +335 -0
- package/src/components/PropertyConfigBadge.tsx +27 -0
- package/src/components/PropertyIdCopyTooltip.tsx +47 -0
- package/src/components/RebaseAuthGate.tsx +42 -0
- package/src/components/RebaseCMS.tsx +22 -0
- package/src/components/RebaseLayout.tsx +73 -0
- package/src/components/RebaseNavigation.tsx +197 -0
- package/src/components/RebaseRouteDefs.tsx +127 -0
- package/src/components/RebaseShell.tsx +70 -0
- package/src/components/ReferenceTable/EntitySelectionTable.tsx +358 -0
- package/src/components/ReferenceWidget.tsx +155 -0
- package/src/components/RelationSelector.tsx +612 -0
- package/src/components/SearchIconsView.tsx +80 -0
- package/src/components/SelectableTable/SelectableTable.tsx +340 -0
- package/src/components/SelectableTable/SelectableTableContext.tsx +6 -0
- package/src/components/SelectableTable/filters/BooleanFilterField.tsx +51 -0
- package/src/components/SelectableTable/filters/DateTimeFilterField.tsx +125 -0
- package/src/components/SelectableTable/filters/ReferenceFilterField.tsx +208 -0
- package/src/components/SelectableTable/filters/RelationFilterField.tsx +138 -0
- package/src/components/SelectableTable/filters/StringNumberFilterField.tsx +224 -0
- package/src/components/SideDialogs.tsx +207 -0
- package/src/components/SideEntityProvider.tsx +76 -0
- package/src/components/admin/RoleChip.tsx +23 -0
- package/src/components/admin/RolesView.tsx +424 -0
- package/src/components/admin/UsersView.tsx +707 -0
- package/src/components/admin/index.ts +3 -0
- package/src/components/app/AppBar.tsx +17 -0
- package/src/components/app/Drawer.tsx +30 -0
- package/src/components/app/Scaffold.tsx +239 -0
- package/src/components/app/index.ts +4 -0
- package/src/components/app/useApp.tsx +36 -0
- package/src/components/common/default_entity_actions.tsx +155 -0
- package/src/components/common/index.ts +1 -0
- package/src/components/field_configs.tsx +442 -0
- package/src/components/history/EntityHistoryEntry.tsx +175 -0
- package/src/components/history/EntityHistoryView.tsx +197 -0
- package/src/components/history/LastEditedByFormAction.tsx +24 -0
- package/src/components/history/LastEditedByIndicator.tsx +98 -0
- package/src/components/history/UserChip.tsx +15 -0
- package/src/components/history/index.tsx +5 -0
- package/src/components/index.ts +52 -0
- package/src/contexts/BreacrumbsContext.tsx +45 -0
- package/src/contexts/SideDialogsControllerContext.tsx +5 -0
- package/src/contexts/SideEntityControllerContext.tsx +5 -0
- package/src/data_export/export/BasicExportAction.tsx +152 -0
- package/src/data_export/export/ExportCollectionAction.tsx +275 -0
- package/src/data_export/export/export.ts +244 -0
- package/src/data_export/export/index.ts +3 -0
- package/src/data_export/index.ts +1 -0
- package/src/data_import/components/DataNewPropertiesMapping.tsx +243 -0
- package/src/data_import/components/ImportFileUpload.tsx +42 -0
- package/src/data_import/components/ImportNewPropertyFieldPreview.tsx +59 -0
- package/src/data_import/components/ImportSaveInProgress.tsx +121 -0
- package/src/data_import/components/index.ts +4 -0
- package/src/data_import/hooks/index.ts +1 -0
- package/src/data_import/hooks/useImportConfig.tsx +34 -0
- package/src/data_import/import/ImportCollectionAction.tsx +448 -0
- package/src/data_import/import/index.ts +1 -0
- package/src/data_import/index.ts +5 -0
- package/src/data_import/types/column_mapping.ts +32 -0
- package/src/data_import/types/index.ts +1 -0
- package/src/data_import/utils/data.ts +145 -0
- package/src/data_import/utils/file_headers.ts +90 -0
- package/src/data_import/utils/file_to_json.ts +106 -0
- package/src/data_import/utils/get_import_inference_type.ts +27 -0
- package/src/data_import/utils/get_properties_mapping.ts +67 -0
- package/src/data_import/utils/index.ts +3 -0
- package/src/editor/components/SlashCommandMenu.tsx +516 -0
- package/src/editor/components/editor-bubble-item.tsx +32 -0
- package/src/editor/components/editor-bubble.tsx +118 -0
- package/src/editor/components/image-bubble.tsx +158 -0
- package/src/editor/components/index.ts +14 -0
- package/src/editor/components/table-bubble.tsx +167 -0
- package/src/editor/editor.tsx +455 -0
- package/src/editor/extensions/HighlightDecorationExtension.ts +114 -0
- package/src/editor/extensions/Image/index.ts +133 -0
- package/src/editor/extensions/Image.ts +159 -0
- package/src/editor/extensions/TextLoadingDecorationExtension.tsx +107 -0
- package/src/editor/extensions/clipboard.ts +72 -0
- package/src/editor/extensions/custom-keymap.ts +25 -0
- package/src/editor/extensions/drag-and-drop.tsx +492 -0
- package/src/editor/hooks/useProseMirror.ts +124 -0
- package/src/editor/hooks/useProseMirrorContext.ts +15 -0
- package/src/editor/index.ts +2 -0
- package/src/editor/markdown.ts +172 -0
- package/src/editor/nodeViews/ImageComponent.tsx +20 -0
- package/src/editor/nodeViews/ReactNodeView.tsx +89 -0
- package/src/editor/nodeViews/TaskItemComponent.tsx +29 -0
- package/src/editor/nodeViews/index.ts +35 -0
- package/src/editor/plugins/index.ts +58 -0
- package/src/editor/plugins/inputrules.ts +82 -0
- package/src/editor/plugins/placeholderPlugin.ts +55 -0
- package/src/editor/plugins/slashCommandPlugin.ts +61 -0
- package/src/editor/schema.ts +240 -0
- package/src/editor/selectors/ai-selector.tsx +111 -0
- package/src/editor/selectors/color-selector.tsx +200 -0
- package/src/editor/selectors/link-selector.tsx +118 -0
- package/src/editor/selectors/node-selector.tsx +157 -0
- package/src/editor/selectors/text-buttons.tsx +86 -0
- package/src/editor/types.ts +6 -0
- package/src/editor/useProseMirror.ts +126 -0
- package/src/editor/utils/prosemirror-utils.ts +113 -0
- package/src/editor/utils/remove_classes.ts +17 -0
- package/src/editor/utils/useDebouncedCallback.ts +25 -0
- package/src/form/EntityForm.tsx +800 -0
- package/src/form/EntityFormActions.tsx +204 -0
- package/src/form/PropertyFieldBinding.tsx +344 -0
- package/src/form/components/ErrorFocus.tsx +44 -0
- package/src/form/components/FieldHelperText.tsx +45 -0
- package/src/form/components/FormEntry.tsx +22 -0
- package/src/form/components/FormLayout.tsx +16 -0
- package/src/form/components/LabelWithIcon.tsx +43 -0
- package/src/form/components/LabelWithIconAndTooltip.tsx +28 -0
- package/src/form/components/LocalChangesMenu.tsx +145 -0
- package/src/form/components/StorageItemPreview.tsx +81 -0
- package/src/form/components/StorageUploadProgress.tsx +105 -0
- package/src/form/components/index.tsx +5 -0
- package/src/form/field_bindings/ArrayCustomShapedFieldBinding.tsx +107 -0
- package/src/form/field_bindings/ArrayOfReferencesFieldBinding.tsx +169 -0
- package/src/form/field_bindings/BlockFieldBinding.tsx +274 -0
- package/src/form/field_bindings/DateTimeFieldBinding.tsx +72 -0
- package/src/form/field_bindings/KeyValueFieldBinding.tsx +567 -0
- package/src/form/field_bindings/MapFieldBinding.tsx +162 -0
- package/src/form/field_bindings/MarkdownEditorFieldBinding.tsx +142 -0
- package/src/form/field_bindings/MultiSelectFieldBinding.tsx +122 -0
- package/src/form/field_bindings/MultipleRelationFieldBinding.tsx +155 -0
- package/src/form/field_bindings/ReadOnlyFieldBinding.tsx +66 -0
- package/src/form/field_bindings/ReferenceAsStringFieldBinding.tsx +140 -0
- package/src/form/field_bindings/ReferenceFieldBinding.tsx +140 -0
- package/src/form/field_bindings/RelationFieldBinding.tsx +183 -0
- package/src/form/field_bindings/RepeatFieldBinding.tsx +139 -0
- package/src/form/field_bindings/SelectFieldBinding.tsx +109 -0
- package/src/form/field_bindings/StorageUploadFieldBinding.tsx +493 -0
- package/src/form/field_bindings/SwitchFieldBinding.tsx +65 -0
- package/src/form/field_bindings/TextFieldBinding.tsx +155 -0
- package/src/form/field_bindings/UserSelectFieldBinding.tsx +98 -0
- package/src/form/index.tsx +27 -0
- package/src/form/useClearRestoreValue.tsx +36 -0
- package/src/form/validation.ts +592 -0
- package/src/hooks/index.ts +15 -0
- package/src/hooks/navigation/contexts/CollectionRegistryContext.tsx +20 -0
- package/src/hooks/navigation/contexts/NavigationStateContext.tsx +16 -0
- package/src/hooks/navigation/contexts/UrlContext.tsx +25 -0
- package/src/hooks/navigation/contexts/index.ts +14 -0
- package/src/hooks/navigation/useBuildCollectionRegistryController.tsx +155 -0
- package/src/hooks/navigation/useBuildNavigationStateController.tsx +123 -0
- package/src/hooks/navigation/useBuildUrlController.tsx +66 -0
- package/src/hooks/navigation/useNavigationRegistry.ts +146 -0
- package/src/hooks/navigation/useNavigationResolution.ts +130 -0
- package/src/hooks/navigation/useNavigationURLs.ts +56 -0
- package/src/hooks/navigation/useResolvedCollections.ts +133 -0
- package/src/hooks/navigation/useResolvedViews.tsx +197 -0
- package/src/hooks/navigation/useTopLevelNavigation.ts +257 -0
- package/src/hooks/navigation/utils.ts +171 -0
- package/src/hooks/useBreadcrumbsController.tsx +49 -0
- package/src/hooks/useBuildSideDialogsController.tsx +145 -0
- package/src/hooks/useBuildSideEntityController.tsx +309 -0
- package/src/hooks/useCMSContext.tsx +77 -0
- package/src/hooks/useEntityHistory.ts +168 -0
- package/src/hooks/useEntitySelectionDialog.tsx +57 -0
- package/src/hooks/useResolvedNavigationFrom.tsx +155 -0
- package/src/hooks/useSideDialogsController.tsx +25 -0
- package/src/hooks/useSideEntityController.tsx +13 -0
- package/src/index.ts +95 -0
- package/src/preview/PropertyPreview.tsx +291 -0
- package/src/preview/components/ArrayEnumPreview.tsx +39 -0
- package/src/preview/components/BooleanPreview.tsx +25 -0
- package/src/preview/components/DatePreview.tsx +93 -0
- package/src/preview/components/EmptyValue.tsx +10 -0
- package/src/preview/components/EnumValuesChip.tsx +39 -0
- package/src/preview/components/ImagePreview.tsx +142 -0
- package/src/preview/components/ReferencePreview.tsx +166 -0
- package/src/preview/components/RelationPreview.tsx +158 -0
- package/src/preview/components/StorageThumbnail.tsx +90 -0
- package/src/preview/components/UrlComponentPreview.tsx +114 -0
- package/src/preview/components/UserPreview.tsx +29 -0
- package/src/preview/index.ts +25 -0
- package/src/preview/property_previews/ArrayOfMapsPreview.tsx +73 -0
- package/src/preview/property_previews/ArrayOfReferencesPreview.tsx +44 -0
- package/src/preview/property_previews/ArrayOfRelationsPreview.tsx +50 -0
- package/src/preview/property_previews/ArrayOfStorageComponentsPreview.tsx +49 -0
- package/src/preview/property_previews/ArrayOfStringsPreview.tsx +44 -0
- package/src/preview/property_previews/ArrayOneOfPreview.tsx +68 -0
- package/src/preview/property_previews/ArrayPropertyEnumPreview.tsx +35 -0
- package/src/preview/property_previews/ArrayPropertyPreview.tsx +70 -0
- package/src/preview/property_previews/MapPropertyPreview.tsx +146 -0
- package/src/preview/property_previews/NumberPropertyPreview.tsx +29 -0
- package/src/preview/property_previews/SkeletonPropertyComponent.tsx +277 -0
- package/src/preview/property_previews/StringPropertyPreview.tsx +59 -0
- package/src/preview/util.ts +30 -0
- package/src/routes/CustomViewRoute.tsx +24 -0
- package/src/routes/RebaseRoute.tsx +265 -0
- package/src/routes/index.ts +2 -0
- package/src/types/components/EntityFormActionsProps.tsx +20 -0
- package/src/types/components/EntityFormProps.tsx +54 -0
- package/src/types/components/PropertyPreviewProps.tsx +59 -0
- package/src/types/components/formex.tsx +46 -0
- package/src/types/components/index.ts +3 -0
- package/src/types/fields.tsx +299 -0
- package/src/types/index.ts +4 -0
- package/src/util/entity_actions.ts +28 -0
- package/src/util/index.ts +5 -0
- package/src/util/navigation_utils.ts +223 -0
- package/src/util/previews.ts +50 -0
- package/src/util/property_utils.tsx +215 -0
- package/src/util/resolutions.ts +69 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { StringProperty } from "@rebasepro/types";
|
|
2
|
+
import { PreviewSize } from "../../types/components/PropertyPreviewProps";
|
|
3
|
+
interface StorageItemPreviewProps {
|
|
4
|
+
name: string;
|
|
5
|
+
property: StringProperty;
|
|
6
|
+
value: string;
|
|
7
|
+
onRemove: (value: string) => void;
|
|
8
|
+
size: PreviewSize;
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
placeholder?: boolean;
|
|
11
|
+
className?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare function StorageItemPreview({ name, property, value, onRemove, disabled, size, placeholder, className }: StorageItemPreviewProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { StorageFieldItem } from "@rebasepro/core";
|
|
2
|
+
export interface StorageUploadItemProps {
|
|
3
|
+
storagePath: string;
|
|
4
|
+
metadata?: any;
|
|
5
|
+
entry: StorageFieldItem;
|
|
6
|
+
onFileUploadComplete: (value: string, entry: StorageFieldItem, metadata?: any, uploadedUrl?: string) => Promise<void>;
|
|
7
|
+
imageSize: number;
|
|
8
|
+
simple: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare function StorageUploadProgress({ storagePath, entry, metadata, onFileUploadComplete, imageSize, simple, }: StorageUploadItemProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { ArrayProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* Array field used for custom
|
|
5
|
+
*
|
|
6
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
7
|
+
* and tables to the specified properties.
|
|
8
|
+
* @group Form fields
|
|
9
|
+
*/
|
|
10
|
+
export declare function ArrayCustomShapedFieldBinding({ propertyKey, value, error, showError, isSubmitting, setValue, setFieldValue, customProps, minimalistView: minimalistViewProp, property, includeDescription, context, disabled }: FieldProps<ArrayProperty | ArrayProperty>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { ArrayProperty } from "@rebasepro/types";
|
|
3
|
+
import { EntityReference } from "@rebasepro/types";
|
|
4
|
+
type ArrayOfReferencesFieldProps = FieldProps<ArrayProperty, EntityReference[]>;
|
|
5
|
+
/**
|
|
6
|
+
* This field allows selecting multiple references.
|
|
7
|
+
*
|
|
8
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
9
|
+
* and tables to the specified properties.
|
|
10
|
+
* @group Form fields
|
|
11
|
+
*/
|
|
12
|
+
export declare function ArrayOfReferencesFieldBinding({ propertyKey, value, error, showError, disabled, isSubmitting, minimalistView: minimalistViewProp, property, includeDescription, setValue, setFieldValue }: ArrayOfReferencesFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { ArrayProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* If the `oneOf` property is specified, this fields render each array entry as
|
|
5
|
+
* a `type` select and the corresponding field widget to the selected `type.
|
|
6
|
+
*
|
|
7
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
8
|
+
* and tables to the specified properties.
|
|
9
|
+
* @group Form fields
|
|
10
|
+
*/
|
|
11
|
+
export declare function BlockFieldBinding({ propertyKey, value, error, showError, isSubmitting, setValue, setFieldValue, minimalistView: minimalistViewProp, property, includeDescription, underlyingValueHasChanged, context, disabled }: FieldProps<ArrayProperty>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { DateProperty } from "@rebasepro/types";
|
|
3
|
+
type DateTimeFieldProps = FieldProps<DateProperty>;
|
|
4
|
+
/**
|
|
5
|
+
* Field that allows selecting a date
|
|
6
|
+
*
|
|
7
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
8
|
+
* and tables to the specified properties.
|
|
9
|
+
* @group Form fields
|
|
10
|
+
*/
|
|
11
|
+
export declare function DateTimeFieldBinding({ propertyKey, value, setValue, autoFocus, error, showError, disabled, touched, property, includeDescription }: DateTimeFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { MapProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* Field that allows edition of key value pairs.
|
|
5
|
+
*
|
|
6
|
+
* @group Form fields
|
|
7
|
+
*/
|
|
8
|
+
export declare function KeyValueFieldBinding({ propertyKey, value, showError, error, disabled, property, setValue, minimalistView, includeDescription, underlyingValueHasChanged, autoFocus, context }: FieldProps<MapProperty>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { MapProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* Field that renders the children property fields
|
|
5
|
+
*
|
|
6
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
7
|
+
* and tables to the specified properties.
|
|
8
|
+
* @group Form fields
|
|
9
|
+
*/
|
|
10
|
+
export declare function MapFieldBinding({ propertyKey, value, showError, error, disabled, property, partOfArray, minimalistView: minimalistViewProp, includeDescription, autoFocus, context, onPropertyChange }: FieldProps<MapProperty>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { StringProperty } from "@rebasepro/types";
|
|
3
|
+
import { RebaseEditorProps } from "../../editor";
|
|
4
|
+
interface MarkdownEditorFieldProps {
|
|
5
|
+
highlight?: {
|
|
6
|
+
from: number;
|
|
7
|
+
to: number;
|
|
8
|
+
};
|
|
9
|
+
editorProps?: Partial<RebaseEditorProps>;
|
|
10
|
+
}
|
|
11
|
+
export declare function MarkdownEditorFieldBinding({ property, propertyKey, value, setValue, includeDescription, showError, error, minimalistView, disabled: disabledProp, isSubmitting, context, customProps, }: FieldProps<StringProperty, MarkdownEditorFieldProps>): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { ArrayProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* This fields renders a dropdown with multiple selection.
|
|
5
|
+
*
|
|
6
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
7
|
+
* and tables to the specified properties.
|
|
8
|
+
* @group Form fields
|
|
9
|
+
*/
|
|
10
|
+
export declare function MultiSelectFieldBinding({ propertyKey, value, setValue, error, showError, disabled, property, includeDescription, size, autoFocus }: FieldProps<ArrayProperty, any, any>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { RelationProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* This field allows selecting multiple references.
|
|
5
|
+
*
|
|
6
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
7
|
+
* and tables to the specified properties.
|
|
8
|
+
* @group Form fields
|
|
9
|
+
*/
|
|
10
|
+
export declare function MultipleRelationFieldBinding({ propertyKey, value: valueProp, error, showError, disabled, isSubmitting, property, includeDescription, setValue, setFieldValue, context }: FieldProps<RelationProperty>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { Property } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* Simply render the non-editable preview of a field
|
|
6
|
+
*
|
|
7
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
8
|
+
* and tables to the specified properties.
|
|
9
|
+
* @group Form fields
|
|
10
|
+
*/
|
|
11
|
+
export declare function ReadOnlyFieldBinding({ propertyKey, value, error, showError, minimalistView, property, includeDescription, context }: FieldProps<Property>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { StringProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* Field that opens a reference selection dialog and stores the entity ID as a string.
|
|
5
|
+
*
|
|
6
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
7
|
+
* and tables to the specified properties.
|
|
8
|
+
* @group Form fields
|
|
9
|
+
*/
|
|
10
|
+
export declare function ReferenceAsStringFieldBinding(props: FieldProps<StringProperty>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { ReferenceProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* Field that opens a reference selection dialog.
|
|
5
|
+
*
|
|
6
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
7
|
+
* and tables to the specified properties.
|
|
8
|
+
* @group Form fields
|
|
9
|
+
*/
|
|
10
|
+
export declare function ReferenceFieldBinding(props: FieldProps<ReferenceProperty>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { RelationProperty } from "@rebasepro/types";
|
|
3
|
+
export declare function RelationFieldBinding({ propertyKey, value, size, error, showError, disabled, isSubmitting, property, includeDescription, setValue, setFieldValue, context, customProps }: FieldProps<RelationProperty>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { ArrayProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* Generic array field that allows reordering and renders the child property
|
|
5
|
+
* as nodes.
|
|
6
|
+
*
|
|
7
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
8
|
+
* and tables to the specified properties.
|
|
9
|
+
* @group Form fields
|
|
10
|
+
*/
|
|
11
|
+
export declare function RepeatFieldBinding({ propertyKey, value, error, showError, isSubmitting, setValue, setFieldValue, minimalistView: minimalistViewProp, property, includeDescription, underlyingValueHasChanged, context, disabled }: FieldProps<ArrayProperty>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { NumberProperty, StringProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* If `enumValues` are set in the string config, this field renders a select
|
|
5
|
+
* where each option is a colored chip.
|
|
6
|
+
*
|
|
7
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
8
|
+
* and tables to the specified properties.
|
|
9
|
+
* @group Form fields
|
|
10
|
+
*/
|
|
11
|
+
export declare function SelectFieldBinding({ propertyKey, value, setValue, error, showError, disabled, autoFocus, touched, property, includeDescription, size }: FieldProps<StringProperty | NumberProperty>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { ArrayProperty, StringProperty } from "@rebasepro/types";
|
|
3
|
+
import { StorageConfig } from "@rebasepro/types";
|
|
4
|
+
import { StorageFieldItem } from "@rebasepro/core";
|
|
5
|
+
export declare function StorageUploadFieldBinding({ propertyKey, value, setValue, error, showError, autoFocus, minimalistView, property, includeDescription, context, isSubmitting, }: FieldProps<StringProperty | ArrayProperty>): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export interface StorageUploadProps {
|
|
7
|
+
value: StorageFieldItem[];
|
|
8
|
+
setInternalValue: (v: StorageFieldItem[]) => void;
|
|
9
|
+
name: string;
|
|
10
|
+
property: StringProperty | ArrayProperty;
|
|
11
|
+
onChange: (value: string | string[] | null) => void;
|
|
12
|
+
multipleFilesSupported: boolean;
|
|
13
|
+
autoFocus: boolean;
|
|
14
|
+
disabled: boolean;
|
|
15
|
+
storage: StorageConfig;
|
|
16
|
+
onFilesAdded: (acceptedFiles: File[]) => Promise<void>;
|
|
17
|
+
storagePathBuilder: (file: File) => string;
|
|
18
|
+
onFileUploadComplete: (uploadedPath: string, entry: StorageFieldItem, fileMetadata?: any) => Promise<void>;
|
|
19
|
+
}
|
|
20
|
+
export declare function StorageUpload({ property, name, value, // This is internalValue from useStorageUploadController
|
|
21
|
+
setInternalValue, onChange, multipleFilesSupported, onFileUploadComplete, disabled, onFilesAdded, autoFocus, storage, storagePathBuilder, }: StorageUploadProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { BooleanProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* Simple boolean switch biding to a boolean property.
|
|
5
|
+
*
|
|
6
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
7
|
+
* and tables to the specified properties.
|
|
8
|
+
* @group Form fields
|
|
9
|
+
*/
|
|
10
|
+
export declare const SwitchFieldBinding: ({ propertyKey, value, setValue, error, showError, autoFocus, disabled, size, property, includeDescription }: FieldProps<BooleanProperty>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { NumberProperty, StringProperty } from "@rebasepro/types";
|
|
3
|
+
/**
|
|
4
|
+
* Generic text field.
|
|
5
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
6
|
+
* and tables to the specified properties.
|
|
7
|
+
* @group Form fields
|
|
8
|
+
*/
|
|
9
|
+
export declare function TextFieldBinding<T extends string | number>({ propertyKey, value, setValue, error, showError, disabled, autoFocus, property, includeDescription, size }: FieldProps<StringProperty | NumberProperty>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { FieldProps } from "../../types/fields";
|
|
2
|
+
import type { StringProperty } from "@rebasepro/types";
|
|
3
|
+
type UserSelectProps = FieldProps<StringProperty>;
|
|
4
|
+
/**
|
|
5
|
+
* Field binding for selecting a user from the internal user management system.
|
|
6
|
+
* Renders a select dropdown with user information including name and email.
|
|
7
|
+
*
|
|
8
|
+
* This is one of the internal components that get mapped natively inside forms
|
|
9
|
+
* and tables to the specified properties.
|
|
10
|
+
* @group Form fields
|
|
11
|
+
*/
|
|
12
|
+
export declare function UserSelectFieldBinding({ propertyKey, value, setValue, error, showError, disabled, autoFocus, touched, property, includeDescription, size }: UserSelectProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export { EntityForm, zodToFormErrors, } from "./EntityForm";
|
|
2
|
+
export { SelectFieldBinding } from "./field_bindings/SelectFieldBinding";
|
|
3
|
+
export { MultiSelectFieldBinding } from "./field_bindings/MultiSelectFieldBinding";
|
|
4
|
+
export { ArrayOfReferencesFieldBinding } from "./field_bindings/ArrayOfReferencesFieldBinding";
|
|
5
|
+
export { StorageUploadFieldBinding } from "./field_bindings/StorageUploadFieldBinding";
|
|
6
|
+
export { TextFieldBinding } from "./field_bindings/TextFieldBinding";
|
|
7
|
+
export { SwitchFieldBinding } from "./field_bindings/SwitchFieldBinding";
|
|
8
|
+
export { DateTimeFieldBinding } from "./field_bindings/DateTimeFieldBinding";
|
|
9
|
+
export { ReferenceFieldBinding } from "./field_bindings/ReferenceFieldBinding";
|
|
10
|
+
export { ReferenceAsStringFieldBinding } from "./field_bindings/ReferenceAsStringFieldBinding";
|
|
11
|
+
export { MapFieldBinding } from "./field_bindings/MapFieldBinding";
|
|
12
|
+
export { KeyValueFieldBinding } from "./field_bindings/KeyValueFieldBinding";
|
|
13
|
+
export { RepeatFieldBinding } from "./field_bindings/RepeatFieldBinding";
|
|
14
|
+
export { BlockFieldBinding } from "./field_bindings/BlockFieldBinding";
|
|
15
|
+
export { ReadOnlyFieldBinding } from "./field_bindings/ReadOnlyFieldBinding";
|
|
16
|
+
export { MarkdownEditorFieldBinding } from "./field_bindings/MarkdownEditorFieldBinding";
|
|
17
|
+
export { ArrayCustomShapedFieldBinding } from "./field_bindings/ArrayCustomShapedFieldBinding";
|
|
18
|
+
export * from "./components";
|
|
19
|
+
export { PropertyFieldBinding } from "./PropertyFieldBinding";
|
|
20
|
+
export * from "./useClearRestoreValue";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Property } from "@rebasepro/types";
|
|
2
|
+
/**
|
|
3
|
+
* Hook we use to restore a value after it has been cleared
|
|
4
|
+
* @param property
|
|
5
|
+
* @param value
|
|
6
|
+
* @param setValue
|
|
7
|
+
* @ignore
|
|
8
|
+
*/
|
|
9
|
+
export declare function useClearRestoreValue<T>({ property, value, setValue }: {
|
|
10
|
+
property: Property;
|
|
11
|
+
value: T | null;
|
|
12
|
+
setValue: (value: T | null, shouldValidate?: boolean) => void;
|
|
13
|
+
}): void;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { Properties } from "@rebasepro/types";
|
|
2
|
+
import type { ArrayProperty, MapProperty, Property } from "@rebasepro/types";
|
|
3
|
+
import { z, ZodTypeAny } from "zod";
|
|
4
|
+
export type CustomFieldValidator = (props: {
|
|
5
|
+
name: string;
|
|
6
|
+
value: any;
|
|
7
|
+
property: Property;
|
|
8
|
+
entityId?: string | number;
|
|
9
|
+
parentProperty?: MapProperty | ArrayProperty;
|
|
10
|
+
}) => Promise<boolean>;
|
|
11
|
+
interface PropertyContext<P extends Property> {
|
|
12
|
+
property: P;
|
|
13
|
+
parentProperty?: MapProperty | ArrayProperty;
|
|
14
|
+
entityId?: string | number;
|
|
15
|
+
customFieldValidator?: CustomFieldValidator;
|
|
16
|
+
name?: any;
|
|
17
|
+
}
|
|
18
|
+
export declare function getEntitySchema<M extends Record<string, unknown>>(entityId: string | number | undefined, properties: Properties, customFieldValidator?: CustomFieldValidator): z.ZodObject<any>;
|
|
19
|
+
export declare function mapPropertyToZod(propertyContext: PropertyContext<Property>): ZodTypeAny;
|
|
20
|
+
export declare function getZodMapObjectSchema({ property, entityId, customFieldValidator, name }: PropertyContext<MapProperty>): ZodTypeAny;
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from "./useSideEntityController";
|
|
2
|
+
export * from "./useEntitySelectionDialog";
|
|
3
|
+
export * from "./useBuildSideEntityController";
|
|
4
|
+
export * from "./useResolvedNavigationFrom";
|
|
5
|
+
export * from "./useEntityHistory";
|
|
6
|
+
export * from "./navigation/contexts";
|
|
7
|
+
export * from "./navigation/useBuildCollectionRegistryController";
|
|
8
|
+
export * from "./navigation/useBuildNavigationStateController";
|
|
9
|
+
export * from "./navigation/useBuildUrlController";
|
|
10
|
+
export * from "./navigation/useResolvedCollections";
|
|
11
|
+
export * from "./navigation/useResolvedViews";
|
|
12
|
+
export * from "./navigation/useTopLevelNavigation";
|
|
13
|
+
export * from "./useSideDialogsController";
|
|
14
|
+
export * from "./useBreadcrumbsController";
|
|
15
|
+
export * from "./useCMSContext";
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { EntityCollection } from "@rebasepro/types";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { CollectionRegistryController } from "@rebasepro/types";
|
|
4
|
+
export declare const CollectionRegistryContext: React.Context<CollectionRegistryController>;
|
|
5
|
+
export declare function useCollectionRegistryController<EC extends EntityCollection = EntityCollection<any>>(): CollectionRegistryController<EC>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { CollectionRegistry } from "@rebasepro/common";
|
|
2
|
+
import { UserConfigurationPersistence, CollectionRegistryController } from "@rebasepro/types";
|
|
3
|
+
export declare function useBuildCollectionRegistryController(props: {
|
|
4
|
+
userConfigPersistence?: UserConfigurationPersistence;
|
|
5
|
+
}): CollectionRegistryController & {
|
|
6
|
+
collectionRegistryRef: React.MutableRefObject<CollectionRegistry>;
|
|
7
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { AppView, EntityCollection, RebasePlugin, NavigationStateController, UrlController, NavigationGroupMapping } from "@rebasepro/types";
|
|
2
|
+
import { AuthController, RebaseData, CollectionRegistryController, User } from "@rebasepro/types";
|
|
3
|
+
import type { EntityCollectionsBuilder, AppViewsBuilder, EffectiveRoleController } from "@rebasepro/types";
|
|
4
|
+
import { CollectionRegistry } from "@rebasepro/common";
|
|
5
|
+
import { UserManagementDelegate } from "@rebasepro/types";
|
|
6
|
+
export type BuildNavigationStateProps<EC extends EntityCollection, USER extends User> = {
|
|
7
|
+
authController: AuthController<USER>;
|
|
8
|
+
collections?: EC[] | EntityCollectionsBuilder<EC>;
|
|
9
|
+
views?: AppView[] | AppViewsBuilder;
|
|
10
|
+
adminViews?: AppView[] | AppViewsBuilder;
|
|
11
|
+
data: RebaseData;
|
|
12
|
+
plugins?: RebasePlugin[];
|
|
13
|
+
navigationGroupMappings?: NavigationGroupMapping[];
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
viewsOrder?: string[];
|
|
16
|
+
collectionRegistryController: CollectionRegistryController<EC> & {
|
|
17
|
+
collectionRegistryRef: React.MutableRefObject<CollectionRegistry>;
|
|
18
|
+
};
|
|
19
|
+
urlController: UrlController;
|
|
20
|
+
adminMode?: "content" | "studio" | "settings";
|
|
21
|
+
effectiveRoleController?: EffectiveRoleController;
|
|
22
|
+
userManagement?: UserManagementDelegate;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Main hook that resolves collections, views, and admin views into a
|
|
26
|
+
* NavigationStateController. This is a thin composition of three focused hooks:
|
|
27
|
+
*
|
|
28
|
+
* - useResolvedCollections: resolves collection props and registers with CollectionRegistry
|
|
29
|
+
* - useResolvedViews: resolves view/admin view props and injects Users/Roles views
|
|
30
|
+
* - useTopLevelNavigation: computes the NavigationResult from resolved data
|
|
31
|
+
*
|
|
32
|
+
* The NavigationStateController type is preserved as a public API.
|
|
33
|
+
*/
|
|
34
|
+
export declare function useBuildNavigationStateController<EC extends EntityCollection, USER extends User>(props: BuildNavigationStateProps<EC, USER>): NavigationStateController;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { UrlController } from "@rebasepro/types";
|
|
2
|
+
import { CollectionRegistryController } from "@rebasepro/types";
|
|
3
|
+
export declare function useBuildUrlController(props: {
|
|
4
|
+
basePath: string;
|
|
5
|
+
baseCollectionPath: string;
|
|
6
|
+
collectionRegistryController: CollectionRegistryController;
|
|
7
|
+
}): UrlController;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { EntityCollection } from "@rebasepro/types";
|
|
2
|
+
import { CollectionRegistry } from "@rebasepro/common";
|
|
3
|
+
import { EntityReference, UserConfigurationPersistence } from "@rebasepro/types";
|
|
4
|
+
export declare function useNavigationRegistry(userConfigPersistence?: UserConfigurationPersistence): {
|
|
5
|
+
collectionRegistryRef: import("react").RefObject<CollectionRegistry>;
|
|
6
|
+
getCollection: (slugOrPath: string, includeUserOverride?: boolean) => EntityCollection | undefined;
|
|
7
|
+
getRawCollection: (slugOrPath: string) => EntityCollection | undefined;
|
|
8
|
+
getParentReferencesFromPath: (path: string) => EntityReference[];
|
|
9
|
+
getParentCollectionIds: (path: string) => string[];
|
|
10
|
+
convertIdsToPaths: (ids: string[]) => string[];
|
|
11
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { AppView, AppViewsBuilder, EntityCollection, RebasePlugin } from "@rebasepro/types";
|
|
2
|
+
import { AuthController, User, RebaseData } from "@rebasepro/types";
|
|
3
|
+
import type { EntityCollectionsBuilder } from "@rebasepro/types";
|
|
4
|
+
export declare function filterOutNotAllowedCollections(resolvedCollections: EntityCollection[], authController: AuthController<User>): EntityCollection[];
|
|
5
|
+
export declare function applyPluginModifyCollection(resolvedCollections: EntityCollection[], modifyCollection: (collection: EntityCollection) => EntityCollection): EntityCollection[];
|
|
6
|
+
export declare function resolveCollections<U extends User, EC extends EntityCollection>(collections: undefined | EC[] | EntityCollectionsBuilder<EC>, authController: AuthController<U>, data: RebaseData, plugins: RebasePlugin[] | undefined): Promise<EntityCollection[]>;
|
|
7
|
+
export declare function resolveAppViews<U extends User>(baseViews: AppView[] | AppViewsBuilder | undefined, authController: AuthController<U>, data: RebaseData, plugins?: RebasePlugin[]): Promise<AppView[]>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CollectionRegistry } from "@rebasepro/common";
|
|
2
|
+
export declare function encodePath(input: string): string;
|
|
3
|
+
export declare function useNavigationURLs(basePath: string, baseCollectionPath: string, collectionRegistryRef: React.MutableRefObject<CollectionRegistry>): {
|
|
4
|
+
homeUrl: string;
|
|
5
|
+
fullCollectionPath: string;
|
|
6
|
+
buildAppUrlPath: (path: string) => string;
|
|
7
|
+
buildUrlCollectionPath: (path: string) => string;
|
|
8
|
+
isUrlCollectionPath: (path: string) => boolean;
|
|
9
|
+
urlPathToDataPath: (path: string) => string;
|
|
10
|
+
resolveDatabasePathsFrom: (path: string) => string;
|
|
11
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { EntityCollection, RebasePlugin } from "@rebasepro/types";
|
|
2
|
+
import { AuthController, CollectionRegistryController, RebaseData, User } from "@rebasepro/types";
|
|
3
|
+
import type { EntityCollectionsBuilder } from "@rebasepro/types";
|
|
4
|
+
import { CollectionRegistry } from "@rebasepro/common";
|
|
5
|
+
export type UseResolvedCollectionsProps<EC extends EntityCollection, USER extends User> = {
|
|
6
|
+
authController: AuthController<USER>;
|
|
7
|
+
collections?: EC[] | EntityCollectionsBuilder<EC>;
|
|
8
|
+
data: RebaseData;
|
|
9
|
+
plugins?: RebasePlugin[];
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
collectionRegistryController: CollectionRegistryController<EC> & {
|
|
12
|
+
collectionRegistryRef: React.MutableRefObject<CollectionRegistry>;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export type UseResolvedCollectionsResult = {
|
|
16
|
+
collections: EntityCollection[];
|
|
17
|
+
loading: boolean;
|
|
18
|
+
error: Error | undefined;
|
|
19
|
+
refresh: () => void;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Hook that resolves collection props (which may be async builders or arrays)
|
|
23
|
+
* into concrete EntityCollection[], and registers them with the CollectionRegistry.
|
|
24
|
+
*
|
|
25
|
+
* Uses refs for potentially-unstable dependencies (driver, authController,
|
|
26
|
+
* plugins) to avoid re-triggering effects when their object identity changes.
|
|
27
|
+
*/
|
|
28
|
+
export declare function useResolvedCollections<EC extends EntityCollection, USER extends User>(props: UseResolvedCollectionsProps<EC, USER>): UseResolvedCollectionsResult;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { AppView, AppViewsBuilder, EffectiveRoleController, RebasePlugin } from "@rebasepro/types";
|
|
2
|
+
import { AuthController, RebaseData, User } from "@rebasepro/types";
|
|
3
|
+
import { UserManagementDelegate } from "@rebasepro/types";
|
|
4
|
+
export type UseResolvedViewsProps<USER extends User> = {
|
|
5
|
+
authController: AuthController<USER>;
|
|
6
|
+
views?: AppView[] | AppViewsBuilder;
|
|
7
|
+
adminViews?: AppView[] | AppViewsBuilder;
|
|
8
|
+
data: RebaseData;
|
|
9
|
+
plugins?: RebasePlugin[];
|
|
10
|
+
adminMode?: "content" | "studio" | "settings";
|
|
11
|
+
effectiveRoleController?: EffectiveRoleController;
|
|
12
|
+
userManagement?: UserManagementDelegate;
|
|
13
|
+
};
|
|
14
|
+
export type UseResolvedViewsResult = {
|
|
15
|
+
views: AppView[] | undefined;
|
|
16
|
+
adminViews: AppView[] | undefined;
|
|
17
|
+
loading: boolean;
|
|
18
|
+
error: Error | undefined;
|
|
19
|
+
refresh: () => void;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Hook that resolves view and admin view props (which may be async builders or arrays)
|
|
23
|
+
* into concrete AppView[]. Also injects Users/Roles admin views when userManagement
|
|
24
|
+
* is provided.
|
|
25
|
+
*
|
|
26
|
+
* Uses refs for potentially-unstable dependencies (driver, authController,
|
|
27
|
+
* plugins) to avoid re-triggering effects when their object identity changes.
|
|
28
|
+
*/
|
|
29
|
+
export declare function useResolvedViews<USER extends User>(props: UseResolvedViewsProps<USER>): UseResolvedViewsResult;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { AppView, UrlController, EntityCollection, RebasePlugin, NavigationGroupMapping, NavigationResult } from "@rebasepro/types";
|
|
2
|
+
import { CollectionRegistryController } from "@rebasepro/types";
|
|
3
|
+
import { CollectionRegistry } from "@rebasepro/common";
|
|
4
|
+
export type UseTopLevelNavigationProps = {
|
|
5
|
+
collections: EntityCollection[];
|
|
6
|
+
views: AppView[] | undefined;
|
|
7
|
+
adminViews: AppView[] | undefined;
|
|
8
|
+
plugins?: RebasePlugin[];
|
|
9
|
+
navigationGroupMappings?: NavigationGroupMapping[];
|
|
10
|
+
viewsOrder?: string[];
|
|
11
|
+
urlController: UrlController;
|
|
12
|
+
adminMode?: "content" | "studio" | "settings";
|
|
13
|
+
collectionRegistryController: CollectionRegistryController<any> & {
|
|
14
|
+
collectionRegistryRef: React.MutableRefObject<CollectionRegistry>;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
export type UseTopLevelNavigationResult = {
|
|
18
|
+
topLevelNavigation: NavigationResult | undefined;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Hook that computes the top-level NavigationResult from resolved collections,
|
|
22
|
+
* views, and admin views. Pure computation — no async, no effects.
|
|
23
|
+
*
|
|
24
|
+
* The `onNavigationEntriesUpdate` callback is embedded in the result for API
|
|
25
|
+
* compatibility, but its reference is stable via useCallback.
|
|
26
|
+
*/
|
|
27
|
+
export declare function useTopLevelNavigation(props: UseTopLevelNavigationProps): UseTopLevelNavigationResult;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { AppView, EntityCollection, RebasePlugin, NavigationGroupMapping } from "@rebasepro/types";
|
|
2
|
+
export declare const NAVIGATION_DEFAULT_GROUP_NAME = "Views";
|
|
3
|
+
export declare const NAVIGATION_ADMIN_GROUP_NAME = "Admin";
|
|
4
|
+
export declare function getGroup(collectionOrView: EntityCollection<any, any> | AppView): string;
|
|
5
|
+
export declare function computeNavigationGroups({ navigationGroupMappings, collections, views, plugins }: {
|
|
6
|
+
navigationGroupMappings?: NavigationGroupMapping[];
|
|
7
|
+
collections?: EntityCollection[];
|
|
8
|
+
views?: AppView[];
|
|
9
|
+
plugins?: RebasePlugin[];
|
|
10
|
+
}): NavigationGroupMapping[];
|
|
11
|
+
export declare function areCollectionListsEqual(a: EntityCollection[], b: EntityCollection[], visitedSlugs?: string[]): boolean;
|
|
12
|
+
export declare function areCollectionsEqual(a: EntityCollection, b: EntityCollection, visitedSlugs?: string[]): boolean;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @group Hooks and utilities
|
|
3
|
+
*/
|
|
4
|
+
export interface BreadcrumbsController {
|
|
5
|
+
breadcrumbs: BreadcrumbEntry[];
|
|
6
|
+
set: (props: {
|
|
7
|
+
breadcrumbs: BreadcrumbEntry[];
|
|
8
|
+
}) => void;
|
|
9
|
+
/**
|
|
10
|
+
* Update the count for a specific breadcrumb by ID.
|
|
11
|
+
*/
|
|
12
|
+
updateCount: (id: string, count: number | null | undefined) => void;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @group Hooks and utilities
|
|
16
|
+
*/
|
|
17
|
+
export interface BreadcrumbEntry {
|
|
18
|
+
title: string;
|
|
19
|
+
url: string;
|
|
20
|
+
/**
|
|
21
|
+
* Optional entity count for collection breadcrumbs.
|
|
22
|
+
* - undefined: not applicable (e.g., entity breadcrumb, custom view)
|
|
23
|
+
* - null: loading
|
|
24
|
+
* - number: loaded count
|
|
25
|
+
*/
|
|
26
|
+
count?: number | null;
|
|
27
|
+
/**
|
|
28
|
+
* Unique identifier for this breadcrumb (e.g., collection path).
|
|
29
|
+
* Used to update count without replacing entire breadcrumb array.
|
|
30
|
+
*/
|
|
31
|
+
id?: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Hook to retrieve the BreadcrumbsController.
|
|
35
|
+
*
|
|
36
|
+
* Consider that in order to use this hook you need to have a parent
|
|
37
|
+
* `Rebase`
|
|
38
|
+
*
|
|
39
|
+
* @see BreadcrumbsController
|
|
40
|
+
* @group Hooks and utilities
|
|
41
|
+
*/
|
|
42
|
+
export declare const useBreadcrumbsController: () => BreadcrumbsController;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { EntityCollection } from "@rebasepro/types";
|
|
2
|
+
import type { CustomizationController, EntitySidePanelProps, SideDialogsController, SideEntityController, UrlController, NavigationStateController } from "@rebasepro/types";
|
|
3
|
+
import { AuthController, CollectionRegistryController } from "@rebasepro/types";
|
|
4
|
+
export declare function getEntityViewWidth(props: EntitySidePanelProps<any>, small: boolean, customizationController: CustomizationController): string;
|
|
5
|
+
export declare const useBuildSideEntityController: (collectionRegistryController: CollectionRegistryController, urlController: UrlController, navigationStateController: NavigationStateController, sideDialogsController: SideDialogsController, authController: AuthController) => SideEntityController;
|
|
6
|
+
export declare function buildSidePanelsFromUrl(path: string, collections: EntityCollection[], newFlag: boolean): EntitySidePanelProps<any>[];
|