@reltio/components 1.4.1819 → 1.4.1820
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/cjs/ActionButton/styles.d.ts +1 -1
- package/cjs/AttributeSelector/AttributeSelector.js +2 -2
- package/cjs/AttributesValuesEditor/AttributesValuesEditor.d.ts +1 -1
- package/cjs/AttributesValuesEditor/AttributesValuesEditor.js +2 -5
- package/cjs/AttributesValuesEditor/AttributesValuesEditor.test.js +6 -6
- package/cjs/BooleanRadioEditor/BooleanRadioEditor.d.ts +9 -0
- package/cjs/BooleanRadioEditor/BooleanRadioEditor.js +23 -0
- package/cjs/BooleanRadioEditor/BooleanRadioEditor.test.js +46 -0
- package/cjs/BooleanRadioEditor/components/BooleanEditor/BooleanEditor.d.ts +7 -0
- package/cjs/BooleanRadioEditor/components/BooleanEditor/BooleanEditor.js +37 -0
- package/cjs/BooleanRadioEditor/components/BooleanEditor/BooleanEditor.test.js +27 -0
- package/cjs/BooleanRadioEditor/components/BooleanEditor/index.d.ts +1 -0
- package/cjs/BooleanRadioEditor/components/BooleanEditor/index.js +5 -0
- package/cjs/BooleanRadioEditor/index.d.ts +1 -0
- package/cjs/BooleanRadioEditor/index.js +5 -0
- package/cjs/CollaborationItem/CollaborationItem.d.ts +15 -0
- package/cjs/CollaborationItem/CollaborationItem.js +51 -0
- package/cjs/CollaborationItem/CollaborationItem.test.js +99 -0
- package/cjs/CollaborationItem/IntegrationCollaborationItem.test.js +195 -0
- package/cjs/CollaborationItem/components/Avatar/Avatar.js +39 -0
- package/cjs/CollaborationItem/components/Avatar/Avatar.test.js +15 -0
- package/cjs/CollaborationItem/components/Avatar/index.d.ts +1 -0
- package/cjs/CollaborationItem/components/Avatar/index.js +5 -0
- package/cjs/CollaborationItem/components/Comment/Comment.js +104 -0
- package/cjs/CollaborationItem/components/Comment/Comment.test.js +302 -0
- package/cjs/CollaborationItem/components/Comment/index.d.ts +1 -0
- package/cjs/CollaborationItem/components/Comment/index.js +5 -0
- package/cjs/CollaborationItem/components/CommentContent/CommentContent.js +46 -0
- package/cjs/CollaborationItem/components/CommentContent/CommentContent.test.js +110 -0
- package/cjs/CollaborationItem/components/CommentContent/index.d.ts +1 -0
- package/cjs/CollaborationItem/components/CommentContent/index.js +5 -0
- package/cjs/CollaborationItem/components/CommentTarget/CommentTarget.js +116 -0
- package/cjs/CollaborationItem/components/CommentTarget/CommentTarget.test.js +215 -0
- package/cjs/CollaborationItem/components/CommentTarget/index.d.ts +1 -0
- package/cjs/CollaborationItem/components/CommentTarget/index.js +5 -0
- package/cjs/CollaborationItem/components/RepliedComment/RepliedComment.js +84 -0
- package/cjs/CollaborationItem/components/RepliedComment/RepliedComment.test.d.ts +1 -0
- package/cjs/CollaborationItem/components/RepliedComment/RepliedComment.test.js +217 -0
- package/cjs/CollaborationItem/components/RepliedComment/index.d.ts +1 -0
- package/cjs/CollaborationItem/components/RepliedComment/index.js +5 -0
- package/cjs/CollaborationItem/components/SendMessageArea/SendMessageArea.js +164 -0
- package/cjs/CollaborationItem/components/SendMessageArea/SendMessageArea.test.d.ts +1 -0
- package/cjs/CollaborationItem/components/SendMessageArea/SendMessageArea.test.js +477 -0
- package/cjs/CollaborationItem/components/SendMessageArea/index.d.ts +1 -0
- package/cjs/CollaborationItem/components/SendMessageArea/index.js +5 -0
- package/cjs/CollaborationItem/components/TextFieldWithMentions/TextFieldWithMentions.js +74 -0
- package/cjs/CollaborationItem/components/TextFieldWithMentions/TextFieldWithMentions.test.d.ts +1 -0
- package/cjs/CollaborationItem/components/TextFieldWithMentions/TextFieldWithMentions.test.js +80 -0
- package/cjs/CollaborationItem/components/TextFieldWithMentions/index.d.ts +1 -0
- package/cjs/CollaborationItem/components/TextFieldWithMentions/index.js +5 -0
- package/cjs/CollaborationItem/helpers.test.d.ts +1 -0
- package/cjs/CollaborationItem/helpers.test.js +112 -0
- package/cjs/CollaborationItem/index.d.ts +1 -0
- package/cjs/CollaborationItem/index.js +8 -0
- package/cjs/CollapseButton/CollapseButton.d.ts +9 -0
- package/cjs/CollapseButton/CollapseButton.js +48 -0
- package/cjs/CollapseButton/CollapseButton.test.d.ts +1 -0
- package/cjs/CollapseButton/CollapseButton.test.js +26 -0
- package/cjs/CollapseButton/index.d.ts +1 -0
- package/cjs/CollapseButton/index.js +5 -0
- package/cjs/CollapseRowButton/CollapseRowButton.js +2 -2
- package/cjs/CollapseRowButton/CollapseRowButton.test.js +6 -6
- package/cjs/ColoredSourceIcon/ColoredSourceIcon.js +46 -0
- package/cjs/ColoredSourceIcon/ColoredSourceIcon.test.d.ts +1 -0
- package/cjs/ColoredSourceIcon/ColoredSourceIcon.test.js +83 -0
- package/cjs/ColoredSourceIcon/index.d.ts +1 -0
- package/cjs/ColoredSourceIcon/index.js +8 -0
- package/cjs/ColumnsSettings/components/ColumnListItem/ColumnListItem.js +2 -2
- package/cjs/CommentsContainer/CommentsContainer.d.ts +12 -0
- package/cjs/CommentsContainer/CommentsContainer.js +95 -0
- package/cjs/CommentsContainer/CommentsContainer.test-data.d.ts +20 -0
- package/cjs/CommentsContainer/CommentsContainer.test-data.js +70 -0
- package/cjs/CommentsContainer/CommentsContainer.test.d.ts +1 -0
- package/cjs/CommentsContainer/CommentsContainer.test.js +297 -0
- package/cjs/CommentsContainer/components/AddCommentButton/AddCommentButton.d.ts +7 -0
- package/cjs/CommentsContainer/components/AddCommentButton/AddCommentButton.js +15 -0
- package/cjs/CommentsContainer/components/AddCommentButton/index.d.ts +1 -0
- package/cjs/CommentsContainer/components/AddCommentButton/index.js +5 -0
- package/cjs/CommentsContainer/components/BasicCommentButton/BasicCommentButton.d.ts +8 -0
- package/cjs/CommentsContainer/components/BasicCommentButton/BasicCommentButton.js +41 -0
- package/cjs/CommentsContainer/components/BasicCommentButton/index.d.ts +1 -0
- package/cjs/CommentsContainer/components/BasicCommentButton/index.js +5 -0
- package/cjs/CommentsContainer/components/BasicCommentButton/styles.d.ts +1 -0
- package/cjs/CommentsContainer/components/BasicCommentButton/styles.js +20 -0
- package/cjs/CommentsContainer/components/CollaborationPopup/CollaborationPopup.d.ts +12 -0
- package/cjs/CommentsContainer/components/CollaborationPopup/CollaborationPopup.js +72 -0
- package/cjs/CommentsContainer/components/CollaborationPopup/CollaborationPopup.test.d.ts +1 -0
- package/cjs/CommentsContainer/components/CollaborationPopup/CollaborationPopup.test.js +157 -0
- package/cjs/CommentsContainer/components/CollaborationPopup/index.d.ts +1 -0
- package/cjs/CommentsContainer/components/CollaborationPopup/index.js +5 -0
- package/cjs/CommentsContainer/components/CommentButton/CommentButton.d.ts +7 -0
- package/cjs/CommentsContainer/components/CommentButton/CommentButton.js +18 -0
- package/cjs/CommentsContainer/components/CommentButton/index.d.ts +1 -0
- package/cjs/CommentsContainer/components/CommentButton/index.js +5 -0
- package/cjs/CommentsContainer/components/CommentButton/styles.d.ts +1 -0
- package/cjs/CommentsContainer/components/CommentButton/styles.js +22 -0
- package/cjs/CommentsContainer/index.d.ts +1 -0
- package/cjs/CommentsContainer/index.js +5 -0
- package/cjs/CommentsContainer/styles.js +25 -0
- package/cjs/ConfigureColumnsPopup/ConfigureColumnsPopup.d.ts +40 -0
- package/cjs/ConfigureColumnsPopup/ConfigureColumnsPopup.js +153 -0
- package/cjs/ConfigureColumnsPopup/ConfigureColumnsPopup.test.d.ts +1 -0
- package/cjs/ConfigureColumnsPopup/ConfigureColumnsPopup.test.js +146 -0
- package/cjs/ConfigureColumnsPopup/index.d.ts +1 -0
- package/cjs/ConfigureColumnsPopup/index.js +5 -0
- package/cjs/ConfigureColumnsPopup/styles.d.ts +1 -0
- package/cjs/ConfigureColumnsPopup/styles.js +13 -0
- package/cjs/ConfirmDeleteDialog/ConfirmDeleteDialog.d.ts +7 -0
- package/cjs/ConfirmDeleteDialog/ConfirmDeleteDialog.js +27 -0
- package/cjs/ConfirmDeleteDialog/ConfirmDeleteDialog.test.d.ts +1 -0
- package/cjs/ConfirmDeleteDialog/ConfirmDeleteDialog.test.js +51 -0
- package/cjs/ConfirmDeleteDialog/index.d.ts +1 -0
- package/cjs/ConfirmDeleteDialog/index.js +5 -0
- package/cjs/ConfirmationDialog/ConfirmationDialog.d.ts +15 -0
- package/cjs/ConfirmationDialog/ConfirmationDialog.js +29 -0
- package/cjs/ConfirmationDialog/ConfirmationDialog.test.d.ts +1 -0
- package/cjs/ConfirmationDialog/ConfirmationDialog.test.js +81 -0
- package/cjs/ConfirmationDialog/index.d.ts +1 -0
- package/cjs/ConfirmationDialog/index.js +5 -0
- package/cjs/ConfirmationDialog/styles.d.ts +1 -0
- package/cjs/ConfirmationDialog/styles.js +39 -0
- package/cjs/ConnectionEditor/ConnectionEditor.js +119 -0
- package/cjs/ConnectionEditor/ConnectionEditor.test.d.ts +1 -0
- package/cjs/ConnectionEditor/ConnectionEditor.test.js +374 -0
- package/cjs/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.d.ts +36 -0
- package/cjs/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.js +85 -0
- package/cjs/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.test.d.ts +1 -0
- package/cjs/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.test.js +181 -0
- package/cjs/ConnectionRelationTypeSelector/index.d.ts +1 -0
- package/cjs/ConnectionRelationTypeSelector/index.js +5 -0
- package/cjs/CustomDateRangeEditor/CustomDateRangeEditor.d.ts +8 -0
- package/cjs/CustomDateRangeEditor/CustomDateRangeEditor.js +85 -0
- package/cjs/CustomDateRangeEditor/CustomDateRangeEditor.test.d.ts +1 -0
- package/cjs/CustomDateRangeEditor/CustomDateRangeEditor.test.js +158 -0
- package/cjs/CustomDateRangeEditor/index.d.ts +1 -0
- package/cjs/CustomDateRangeEditor/index.js +5 -0
- package/cjs/CustomDateRangeEditor/styles.d.ts +1 -0
- package/cjs/DataTenantBadge/DataTenantBadge.js +29 -0
- package/cjs/DataTenantBadge/DataTenantBadge.test.d.ts +1 -0
- package/cjs/DataTenantBadge/DataTenantBadge.test.js +82 -0
- package/cjs/DataTenantBadge/index.d.ts +1 -0
- package/cjs/DataTenantBadge/index.js +5 -0
- package/cjs/DataTypeValue/DataTypeValue.d.ts +13 -0
- package/cjs/DataTypeValue/DataTypeValue.js +30 -0
- package/cjs/DataTypeValue/DataTypeValue.test.d.ts +1 -0
- package/cjs/DataTypeValue/DataTypeValue.test.js +169 -0
- package/cjs/DataTypeValue/index.d.ts +1 -0
- package/cjs/DataTypeValue/index.js +5 -0
- package/cjs/DataTypeValueEditor/DataTypeValueEditor.js +53 -0
- package/cjs/DataTypeValueEditor/index.d.ts +1 -0
- package/cjs/DataTypeValueEditor/index.js +8 -0
- package/cjs/DataTypeValueEditor/styles.d.ts +1 -0
- package/cjs/DataTypeValueEditor/styles.js +9 -0
- package/cjs/DataTypeValueEditor/useEditorContext.d.ts +71 -0
- package/cjs/DataTypeValueEditor/useEditorContext.js +88 -0
- package/cjs/DataTypeValueEditor/useEditorContext.test.d.ts +1 -0
- package/cjs/DataTypeValueEditor/useEditorContext.test.js +206 -0
- package/cjs/DateEditor/DateEditor.d.ts +11 -0
- package/cjs/DateEditor/DateEditor.js +86 -0
- package/cjs/DateEditor/DateEditor.test.d.ts +1 -0
- package/cjs/DateEditor/DateEditor.test.js +379 -0
- package/cjs/DateEditor/index.d.ts +1 -0
- package/cjs/DateEditor/index.js +5 -0
- package/cjs/DateIntervalSelector/DateIntervalSelector.d.ts +7 -0
- package/cjs/DateIntervalSelector/DateIntervalSelector.js +36 -0
- package/cjs/DateIntervalSelector/DateIntervalSelector.test.d.ts +1 -0
- package/cjs/DateIntervalSelector/DateIntervalSelector.test.js +85 -0
- package/cjs/DateIntervalSelector/index.d.ts +1 -0
- package/cjs/DateIntervalSelector/index.js +5 -0
- package/cjs/DateRangeEditor/DateRangeEditor.d.ts +37 -0
- package/cjs/DateRangeEditor/DateRangeEditor.js +82 -0
- package/cjs/DateRangeEditor/DateRangeEditor.test.d.ts +1 -0
- package/cjs/DateRangeEditor/DateRangeEditor.test.js +284 -0
- package/cjs/DateRangeEditor/index.d.ts +1 -0
- package/cjs/DateRangeEditor/index.js +8 -0
- package/cjs/DateRangeEditor/styles.d.ts +1 -0
- package/cjs/DateRangePicker/DateRangePicker.d.ts +11 -0
- package/cjs/DateRangePicker/DateRangePicker.js +95 -0
- package/cjs/DateRangePicker/DateRangePicker.spec.d.ts +1 -0
- package/cjs/DateRangePicker/DateRangePicker.spec.js +149 -0
- package/cjs/DateRangePicker/index.d.ts +1 -0
- package/cjs/DateRangePicker/index.js +5 -0
- package/cjs/DefaultCellValueRenderer/DefaultCellValueRenderer.js +2 -2
- package/cjs/DefaultCellValueRenderer/DefaultCellValueRenderer.test.js +2 -2
- package/cjs/DependentLookupEditor/DependentLookupEditor.d.ts +45 -0
- package/cjs/DependentLookupEditor/DependentLookupEditor.js +228 -0
- package/cjs/DependentLookupEditor/DependentLookupEditor.test.d.ts +1 -0
- package/cjs/DependentLookupEditor/DependentLookupEditor.test.js +1131 -0
- package/cjs/DependentLookupEditor/helpers.js +27 -0
- package/cjs/DependentLookupEditor/helpers.test.d.ts +1 -0
- package/cjs/DependentLookupEditor/helpers.test.js +25 -0
- package/cjs/DependentLookupEditor/index.d.ts +1 -0
- package/cjs/DependentLookupEditor/index.js +5 -0
- package/cjs/DependentLookupEditor/useAutopopulation.d.ts +14 -0
- package/cjs/DependentLookupEditor/useAutopopulation.js +23 -0
- package/cjs/DependentLookupEditor/useDefaultOptions.d.ts +5 -0
- package/cjs/DependentLookupEditor/useDefaultOptions.js +26 -0
- package/cjs/DependentLookupEditor/useLookupsResolver.d.ts +6 -0
- package/cjs/DependentLookupEditor/useLookupsResolver.js +30 -0
- package/cjs/DependentLookupEditor/useSavingFocus.d.ts +1 -0
- package/cjs/DependentLookupEditor/useSavingFocus.js +32 -0
- package/cjs/Drawer/Drawer.d.ts +7 -0
- package/cjs/Drawer/Drawer.js +77 -0
- package/cjs/Drawer/Drawer.test.d.ts +1 -0
- package/cjs/Drawer/Drawer.test.js +34 -0
- package/cjs/Drawer/index.d.ts +1 -0
- package/cjs/Drawer/index.js +5 -0
- package/cjs/DropDownEditor/DropDownEditor.d.ts +15 -0
- package/cjs/DropDownEditor/DropDownEditor.js +48 -0
- package/cjs/DropDownEditor/DropDownEditor.test.d.ts +1 -0
- package/cjs/DropDownEditor/DropDownEditor.test.js +38 -0
- package/cjs/DropDownEditor/index.d.ts +1 -0
- package/cjs/DropDownEditor/index.js +5 -0
- package/cjs/DropDownSelector/DropDownSelector.d.ts +35 -0
- package/cjs/DropDownSelector/DropDownSelector.js +102 -0
- package/cjs/DropDownSelector/DropDownSelector.test.d.ts +1 -0
- package/cjs/DropDownSelector/DropDownSelector.test.js +43 -0
- package/cjs/DropDownSelector/components/Menu/Menu.d.ts +8 -0
- package/cjs/DropDownSelector/components/Menu/Menu.js +37 -0
- package/cjs/DropDownSelector/components/Menu/index.d.ts +1 -0
- package/cjs/DropDownSelector/components/Menu/index.js +5 -0
- package/cjs/DropDownSelector/components/Menu/styles.d.ts +1 -0
- package/cjs/DropDownSelector/components/Menu/styles.js +26 -0
- package/cjs/DropDownSelector/components/SingleValue/SingleValue.d.ts +8 -0
- package/cjs/DropDownSelector/components/SingleValue/SingleValue.js +31 -0
- package/cjs/DropDownSelector/components/SingleValue/index.d.ts +1 -0
- package/cjs/DropDownSelector/components/SingleValue/index.js +5 -0
- package/cjs/DropDownSelector/components/SingleValue/styles.d.ts +1 -0
- package/cjs/DropDownSelector/components/SingleValue/styles.js +14 -0
- package/cjs/DropDownSelector/index.d.ts +1 -0
- package/cjs/DropDownSelector/index.js +5 -0
- package/cjs/DropDownSelector/styles.d.ts +16 -0
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.js +2 -2
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.test.js +3 -3
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.js +2 -2
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.js +2 -2
- package/cjs/EditModeAttributesPager/styles.d.ts +1 -1
- package/cjs/EditModeComplexAttribute/EditModeComplexAttribute.js +2 -2
- package/cjs/EditModeComplexAttribute/EditModeComplexAttribute.test.js +5 -5
- package/cjs/EditModeComplexAttribute/styles.d.ts +1 -1
- package/cjs/EditorsFactory/EditorsFactory.d.ts +8 -0
- package/cjs/EditorsFactory/EditorsFactory.js +98 -0
- package/cjs/EditorsFactory/EditorsFactory.test.d.ts +1 -0
- package/cjs/EditorsFactory/EditorsFactory.test.js +90 -0
- package/cjs/EditorsFactory/index.d.ts +1 -0
- package/cjs/EditorsFactory/index.js +5 -0
- package/cjs/EmptySearchResult/EmptySearchResult.d.ts +7 -0
- package/cjs/EmptySearchResult/EmptySearchResult.js +42 -0
- package/cjs/EmptySearchResult/EmptySearchResult.test.d.ts +1 -0
- package/cjs/EmptySearchResult/EmptySearchResult.test.js +22 -0
- package/cjs/EmptySearchResult/index.d.ts +1 -0
- package/cjs/EmptySearchResult/index.js +5 -0
- package/cjs/EmptyState/EmptyState.d.ts +23 -0
- package/cjs/EmptyState/EmptyState.js +40 -0
- package/cjs/EmptyState/EmptyState.test.d.ts +1 -0
- package/cjs/EmptyState/EmptyState.test.js +50 -0
- package/cjs/EmptyState/index.d.ts +1 -0
- package/cjs/EmptyState/index.js +7 -0
- package/cjs/EntityAvatar/EntityAvatar.d.ts +8 -0
- package/cjs/EntityAvatar/EntityAvatar.js +26 -0
- package/cjs/EntityAvatar/EntityAvatar.test.d.ts +1 -0
- package/cjs/EntityAvatar/EntityAvatar.test.js +58 -0
- package/cjs/EntityAvatar/index.d.ts +1 -0
- package/cjs/EntityAvatar/index.js +5 -0
- package/cjs/EntitySelector/EntitySelector.js +2 -2
- package/cjs/EntitySelector/components/EntityOption/EntityOption.js +2 -2
- package/cjs/EntitySelector/components/EntityOption/EntityOption.test.js +2 -2
- package/cjs/EntityTypeBadge/EntityTypeBadge.d.ts +8 -0
- package/cjs/EntityTypeBadge/EntityTypeBadge.js +28 -0
- package/cjs/EntityTypeBadge/EntityTypeBadge.test.d.ts +1 -0
- package/cjs/EntityTypeBadge/EntityTypeBadge.test.js +70 -0
- package/cjs/EntityTypeBadge/index.d.ts +1 -0
- package/cjs/EntityTypeBadge/index.js +5 -0
- package/cjs/EntityTypeBadge/styles.d.ts +1 -0
- package/cjs/EntityTypeBadge/styles.js +28 -0
- package/cjs/EntityTypeIcon/EntityTypeIcon.d.ts +10 -0
- package/cjs/EntityTypeIcon/EntityTypeIcon.js +26 -0
- package/cjs/EntityTypeIcon/EntityTypeIcon.test.d.ts +1 -0
- package/cjs/EntityTypeIcon/EntityTypeIcon.test.js +43 -0
- package/cjs/EntityTypeIcon/index.d.ts +1 -0
- package/cjs/EntityTypeIcon/index.js +5 -0
- package/cjs/EntityTypesSelector/EntityTypesSelector.d.ts +17 -0
- package/cjs/EntityTypesSelector/EntityTypesSelector.js +39 -0
- package/cjs/EntityTypesSelector/EntityTypesSelector.test.d.ts +1 -0
- package/cjs/EntityTypesSelector/EntityTypesSelector.test.js +30 -0
- package/cjs/EntityTypesSelector/index.d.ts +1 -0
- package/cjs/EntityTypesSelector/index.js +5 -0
- package/cjs/EntityUriLink/EntityUriLink.d.ts +6 -0
- package/cjs/EntityUriLink/EntityUriLink.js +68 -0
- package/cjs/EntityUriLink/EntityUriLink.test.d.ts +1 -0
- package/cjs/EntityUriLink/EntityUriLink.test.js +172 -0
- package/cjs/EntityUriLink/index.d.ts +1 -0
- package/cjs/EntityUriLink/index.js +5 -0
- package/cjs/ErrorBoundary/ErrorBoundary.d.ts +13 -0
- package/cjs/ErrorBoundary/ErrorBoundary.js +47 -0
- package/cjs/ErrorBoundary/ErrorBoundary.test.d.ts +1 -0
- package/cjs/ErrorBoundary/ErrorBoundary.test.js +25 -0
- package/cjs/ErrorBoundary/index.d.ts +1 -0
- package/cjs/ErrorBoundary/index.js +5 -0
- package/cjs/ErrorMessage/ErrorMessage.d.ts +6 -0
- package/cjs/ErrorMessage/ErrorMessage.js +19 -0
- package/cjs/ErrorMessage/index.d.ts +1 -0
- package/cjs/ErrorMessage/index.js +5 -0
- package/cjs/ErrorMessage/styles.d.ts +1 -0
- package/cjs/ErrorMessage/styles.js +12 -0
- package/cjs/ErrorPopup/ErrorPopup.d.ts +13 -0
- package/cjs/ErrorPopup/ErrorPopup.js +77 -0
- package/cjs/ErrorPopup/ErrorPopup.test.d.ts +1 -0
- package/cjs/ErrorPopup/ErrorPopup.test.js +54 -0
- package/cjs/ErrorPopup/index.d.ts +1 -0
- package/cjs/ErrorPopup/index.js +5 -0
- package/cjs/ErrorWrapper/ErrorWrapper.d.ts +11 -0
- package/cjs/ErrorWrapper/ErrorWrapper.js +67 -0
- package/cjs/ErrorWrapper/ErrorWrapper.test.d.ts +1 -0
- package/cjs/ErrorWrapper/ErrorWrapper.test.js +21 -0
- package/cjs/ErrorWrapper/index.d.ts +1 -0
- package/cjs/ErrorWrapper/index.js +5 -0
- package/cjs/ErrorWrapper/styles.d.ts +1 -0
- package/cjs/ErrorWrapper/styles.js +12 -0
- package/cjs/ExpandableSearchInput/ExpandableSearchInput.js +54 -0
- package/cjs/ExpandableSearchInput/index.d.ts +1 -0
- package/cjs/ExpandableSearchInput/index.js +5 -0
- package/cjs/FileTypeEditor/FileTypeEditor.d.ts +9 -0
- package/cjs/FileTypeEditor/FileTypeEditor.js +56 -0
- package/cjs/FileTypeEditor/FileTypeEditor.test.d.ts +1 -0
- package/cjs/FileTypeEditor/FileTypeEditor.test.js +133 -0
- package/cjs/FileTypeEditor/index.d.ts +1 -0
- package/cjs/FileTypeEditor/index.js +5 -0
- package/cjs/FilterEditor/FilterEditor.d.ts +23 -0
- package/cjs/FilterEditor/FilterEditor.js +49 -0
- package/cjs/FilterEditor/index.d.ts +1 -0
- package/cjs/FilterEditor/index.js +5 -0
- package/cjs/FilterEditor/styles.d.ts +1 -0
- package/cjs/FilterEditor/styles.js +21 -0
- package/cjs/FilterValueEditor/FilterValueEditor.d.ts +24 -0
- package/cjs/FilterValueEditor/FilterValueEditor.js +62 -0
- package/cjs/FilterValueEditor/FilterValueEditor.test.d.ts +1 -0
- package/cjs/FilterValueEditor/FilterValueEditor.test.js +185 -0
- package/cjs/FilterValueEditor/components/RangeDataTypeValueEditor/RangeDataTypeValueEditor.d.ts +17 -0
- package/cjs/FilterValueEditor/components/RangeDataTypeValueEditor/RangeDataTypeValueEditor.js +92 -0
- package/cjs/FilterValueEditor/components/RangeDataTypeValueEditor/RangeDataTypeValueEditor.test.d.ts +1 -0
- package/cjs/FilterValueEditor/components/RangeDataTypeValueEditor/RangeDataTypeValueEditor.test.js +81 -0
- package/cjs/FilterValueEditor/components/RangeDataTypeValueEditor/index.d.ts +1 -0
- package/cjs/FilterValueEditor/components/RangeDataTypeValueEditor/index.js +5 -0
- package/cjs/FilterValueEditor/helpers.d.ts +2 -0
- package/cjs/FilterValueEditor/helpers.js +30 -0
- package/cjs/FilterValueEditor/index.d.ts +1 -0
- package/cjs/FilterValueEditor/index.js +5 -0
- package/cjs/HOCs/withDateRangeSelector/withDateRangeSelector.d.ts +1 -1
- package/cjs/HOCs/withDateRangeSelector/withDateRangeSelector.js +2 -2
- package/cjs/HOCs/withFilter/ColumnFilter.js +2 -2
- package/cjs/HideOnShrink/HideOnShrink.d.ts +7 -0
- package/cjs/HideOnShrink/HideOnShrink.js +17 -0
- package/cjs/HideOnShrink/HideOnShrink.test.d.ts +1 -0
- package/cjs/HideOnShrink/HideOnShrink.test.js +86 -0
- package/cjs/HideOnShrink/index.d.ts +1 -0
- package/cjs/HideOnShrink/index.js +5 -0
- package/cjs/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.d.ts +7 -0
- package/cjs/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.js +41 -0
- package/cjs/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.test.d.ts +1 -0
- package/cjs/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.test.js +32 -0
- package/cjs/HierarchicalAttributeTooltip/index.d.ts +1 -0
- package/cjs/HierarchicalAttributeTooltip/index.js +5 -0
- package/cjs/HierarchyNodeTitle/HierarchyNodeTitle.js +58 -0
- package/cjs/HierarchyNodeTitle/HierarchyNodeTitle.test.d.ts +1 -0
- package/cjs/HierarchyNodeTitle/HierarchyNodeTitle.test.js +218 -0
- package/cjs/HierarchyNodeTitle/index.d.ts +1 -0
- package/cjs/HierarchyNodeTitle/index.js +5 -0
- package/cjs/HierarchyNodeTitle/useEntityDetails.js +34 -0
- package/cjs/HierarchyNodeTitle/useEntityDetails.test.d.ts +1 -0
- package/cjs/HierarchyNodeTitle/useEntityDetails.test.js +212 -0
- package/cjs/Highlighter/Highlighter.d.ts +8 -0
- package/cjs/Highlighter/Highlighter.js +27 -0
- package/cjs/Highlighter/Highlighter.test.d.ts +1 -0
- package/cjs/Highlighter/Highlighter.test.js +96 -0
- package/cjs/Highlighter/index.d.ts +1 -0
- package/cjs/Highlighter/index.js +5 -0
- package/cjs/InlineSimpleAttribute/InlineSimpleAttribute.js +2 -2
- package/cjs/InlineSimpleAttribute/InlineSimpleAttribute.spec.js +3 -3
- package/cjs/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.js +2 -2
- package/cjs/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.test.js +15 -15
- package/cjs/LookupEditor/LookupEditor.d.ts +33 -0
- package/cjs/LookupEditor/LookupEditor.js +83 -0
- package/cjs/LookupEditor/LookupEditor.test.d.ts +1 -0
- package/cjs/LookupEditor/LookupEditor.test.js +105 -0
- package/cjs/LookupEditor/components/GroupedDropDownEditor/GroupedDropDownEditor.d.ts +21 -0
- package/cjs/LookupEditor/components/GroupedDropDownEditor/GroupedDropDownEditor.js +61 -0
- package/cjs/LookupEditor/components/GroupedDropDownEditor/GroupedDropDownEditor.test.d.ts +1 -0
- package/cjs/LookupEditor/components/GroupedDropDownEditor/GroupedDropDownEditor.test.js +42 -0
- package/cjs/LookupEditor/components/GroupedDropDownEditor/helpers.js +36 -0
- package/cjs/LookupEditor/components/GroupedDropDownEditor/helpers.test.d.ts +1 -0
- package/cjs/LookupEditor/components/GroupedDropDownEditor/helpers.test.js +36 -0
- package/cjs/LookupEditor/components/GroupedDropDownEditor/index.d.ts +1 -0
- package/cjs/LookupEditor/components/GroupedDropDownEditor/index.js +5 -0
- package/cjs/LookupEditor/components/GroupedDropDownEditor/styles.d.ts +1 -0
- package/cjs/LookupEditor/components/GroupedDropDownEditor/styles.js +20 -0
- package/cjs/LookupEditor/helpers.test.d.ts +1 -0
- package/cjs/LookupEditor/helpers.test.js +105 -0
- package/cjs/LookupEditor/index.d.ts +1 -0
- package/cjs/LookupEditor/index.js +5 -0
- package/cjs/MoreAttributesButton/MoreAttributesButton.js +2 -2
- package/cjs/MoreAttributesButton/MoreAttributesButton.test.js +3 -3
- package/cjs/MoreAttributesButton/styles.d.ts +1 -1
- package/cjs/MultiValueChip/MultiValueChip.d.ts +17 -0
- package/cjs/MultiValueChip/MultiValueChip.js +40 -0
- package/cjs/MultiValueChip/index.d.ts +1 -0
- package/cjs/MultiValueChip/index.js +5 -0
- package/cjs/NumberEditor/NumberEditor.d.ts +16 -0
- package/cjs/NumberEditor/NumberEditor.js +37 -0
- package/cjs/NumberEditor/NumberEditor.test.d.ts +1 -0
- package/cjs/NumberEditor/NumberEditor.test.js +91 -0
- package/cjs/NumberEditor/components/NumberFormat/NumberFormat.d.ts +15 -0
- package/cjs/NumberEditor/components/NumberFormat/NumberFormat.js +44 -0
- package/cjs/NumberEditor/components/NumberFormat/helpers.d.ts +1 -0
- package/cjs/NumberEditor/components/NumberFormat/helpers.js +7 -0
- package/cjs/NumberEditor/components/NumberFormat/index.d.ts +1 -0
- package/cjs/NumberEditor/components/NumberFormat/index.js +5 -0
- package/cjs/NumberEditor/index.d.ts +1 -0
- package/cjs/NumberEditor/index.js +5 -0
- package/cjs/OvIcon/OvIcon.d.ts +2 -2
- package/cjs/OvIcon/OvIcon.js +2 -2
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.js +4 -4
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.test.js +6 -8
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/styles.d.ts +1 -1
- package/cjs/ReactSelectDropdownIndicator/ReactSelectDropdownIndicator.d.ts +14 -0
- package/cjs/ReactSelectDropdownIndicator/ReactSelectDropdownIndicator.js +39 -0
- package/cjs/ReactSelectDropdownIndicator/index.d.ts +1 -0
- package/cjs/ReactSelectDropdownIndicator/index.js +5 -0
- package/cjs/ReactSelectDropdownIndicator/styles.d.ts +1 -0
- package/cjs/ReactSelectDropdownIndicator/styles.js +12 -0
- package/cjs/ReactSelectDropdownIndicatorWithIconButton/ReactSelectDropdownIndicatorWithIconButton.d.ts +13 -0
- package/cjs/ReactSelectDropdownIndicatorWithIconButton/ReactSelectDropdownIndicatorWithIconButton.js +39 -0
- package/cjs/ReactSelectDropdownIndicatorWithIconButton/index.d.ts +1 -0
- package/cjs/ReactSelectDropdownIndicatorWithIconButton/index.js +5 -0
- package/cjs/ReactSelectDropdownIndicatorWithIconButton/styles.d.ts +1 -0
- package/cjs/ReactSelectDropdownIndicatorWithIconButton/styles.js +9 -0
- package/cjs/ReactSelectLoadMoreButton/ReactSelectLoadMoreButton.d.ts +8 -0
- package/cjs/ReactSelectLoadMoreButton/ReactSelectLoadMoreButton.js +18 -0
- package/cjs/ReactSelectLoadMoreButton/ReactSelectLoadMoreButton.test.d.ts +1 -0
- package/cjs/ReactSelectLoadMoreButton/ReactSelectLoadMoreButton.test.js +25 -0
- package/cjs/ReactSelectLoadMoreButton/index.d.ts +1 -0
- package/cjs/ReactSelectLoadMoreButton/index.js +5 -0
- package/cjs/ReactSelectLoadMoreButton/styles.d.ts +1 -0
- package/cjs/ReactSelectMenuList/ReactSelectMenuList.d.ts +1 -0
- package/cjs/ReactSelectMenuList/ReactSelectMenuList.js +26 -0
- package/cjs/ReactSelectMenuList/index.d.ts +1 -0
- package/cjs/ReactSelectMenuList/index.js +5 -0
- package/cjs/ReactSelectMenuWithPopper/ReactSelectMenuWithPopper.d.ts +14 -0
- package/cjs/ReactSelectMenuWithPopper/ReactSelectMenuWithPopper.js +94 -0
- package/cjs/ReactSelectMenuWithPopper/ReactSelectMenuWithPopper.test.d.ts +1 -0
- package/cjs/ReactSelectMenuWithPopper/ReactSelectMenuWithPopper.test.js +128 -0
- package/cjs/ReactSelectMenuWithPopper/index.d.ts +1 -0
- package/cjs/ReactSelectMenuWithPopper/index.js +5 -0
- package/cjs/ReactSelectMenuWithPopper/styles.d.ts +1 -0
- package/cjs/ReactSelectMenuWithPopper/styles.js +13 -0
- package/cjs/ReactSelectOptionWithCheckIcon/ReactSelectOptionWithCheckIcon.d.ts +10 -0
- package/cjs/ReactSelectOptionWithCheckIcon/ReactSelectOptionWithCheckIcon.js +31 -0
- package/cjs/ReactSelectOptionWithCheckIcon/index.d.ts +1 -0
- package/cjs/ReactSelectOptionWithCheckIcon/index.js +5 -0
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.js +2 -2
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.js +5 -5
- package/cjs/ReadOnlyAttributesPager/styles.d.ts +2 -2
- package/cjs/ReadOnlyAttributesView/styles.d.ts +1 -1
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.js +2 -2
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.js +6 -6
- package/cjs/ReferenceAttributeEditor/ReferenceAttributeEditor.js +2 -2
- package/cjs/ReferenceAttributeEditor/ReferenceAttributeEditor.test.js +3 -3
- package/cjs/RelationTypeSelector/RelationTypeSelector.js +2 -2
- package/cjs/RelationTypeSelector/RelationTypeSelector.test.js +2 -2
- package/cjs/RelationTypeSelector/components/RelationOption/RelationOption.js +3 -3
- package/cjs/RolesEditor/RolesEditor.js +2 -2
- package/cjs/SelectEditor/SelectEditor.d.ts +10 -0
- package/cjs/SelectEditor/SelectEditor.js +45 -0
- package/cjs/SelectEditor/SelectEditor.test.d.ts +1 -0
- package/cjs/SelectEditor/SelectEditor.test.js +18 -0
- package/cjs/SelectEditor/index.d.ts +1 -0
- package/cjs/SelectEditor/index.js +5 -0
- package/cjs/SelectEditor/styles.d.ts +1 -0
- package/cjs/SelectEditor/styles.js +12 -0
- package/cjs/SimpleAttribute/SimpleAttribute.js +4 -4
- package/cjs/SimpleAttribute/SimpleAttribute.test.js +9 -9
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditor.js +5 -5
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditor.test.js +12 -12
- package/cjs/SimpleAttributeEditor/styles.d.ts +1 -1
- package/cjs/SourceItem/styles.d.ts +1 -1
- package/cjs/TextEditor/TextEditor.d.ts +16 -0
- package/cjs/TextEditor/TextEditor.js +48 -0
- package/cjs/TextEditor/TextEditor.test.d.ts +1 -0
- package/cjs/TextEditor/TextEditor.test.js +36 -0
- package/cjs/TextEditor/index.d.ts +1 -0
- package/cjs/TextEditor/index.js +5 -0
- package/cjs/TimestampEditor/TimestampEditor.d.ts +11 -0
- package/cjs/TimestampEditor/TimestampEditor.js +66 -0
- package/cjs/TimestampEditor/TimestampEditor.test.d.ts +1 -0
- package/cjs/TimestampEditor/TimestampEditor.test.js +275 -0
- package/cjs/TimestampEditor/index.d.ts +1 -0
- package/cjs/TimestampEditor/index.js +5 -0
- package/cjs/TypeaheadEditor/TypeaheadEditor.js +4 -4
- package/cjs/components/LogicOperator/LogicOperator.js +2 -2
- package/cjs/components/MetadataTypesSelector/SelectMetadataTypesList.js +2 -2
- package/cjs/components/MetadataTypesSelector/styles.d.ts +1 -1
- package/cjs/components/ModeSwitcherSelect/styles.d.ts +1 -1
- package/cjs/components/MultiValueSelector/MultiValueSelector.js +9 -9
- package/cjs/components/PotentialMatchReviewCard/PotentialMatchReviewCard.js +2 -2
- package/cjs/components/ProfileBand/ProfileBand.js +4 -4
- package/cjs/components/ProfileCard/ProfileCardContent/ProfileCardContent.js +6 -6
- package/cjs/components/ProfilesList/ProfilesList.js +6 -6
- package/cjs/components/RelationEditor/RelationEditor.js +4 -4
- package/cjs/components/ReltioMap/MapControls/TopRightMapControls/TopRightMapControls.d.ts +2 -2
- package/cjs/components/ScreenProfileBand/ScreenProfileBand.js +2 -2
- package/cjs/components/SearchHighlighter/SearchHighlighter.js +2 -5
- package/cjs/components/SelectAttributesList/SelectAttributesList.js +2 -2
- package/cjs/components/SelectorWithOnlyOptionAutoSelect/SelectorWithOnlyOptionAutoSelect.js +2 -2
- package/cjs/components/SidePanel/SidePanel.js +4 -27
- package/cjs/components/SimpleDropDownSelector/SimpleDropDownSelector.js +2 -2
- package/cjs/components/UploadImageDialog/ImageByUrlField/styles.d.ts +1 -1
- package/cjs/components/UserSelector/UserSelector.js +5 -5
- package/cjs/components/history/DateRangeSelector/DateRangeSelector.js +4 -4
- package/cjs/components/history/HistoryActivitySelector/HistoryActivitySelector.js +2 -2
- package/cjs/components/index.d.ts +0 -39
- package/cjs/components/index.js +2 -82
- package/cjs/components/workflow/cards/GenericWorkflowTaskCard/GenericWorkflowTaskCard.js +2 -2
- package/cjs/components/workflow/components/AssigneeSelector/AssigneeSelector.js +2 -2
- package/cjs/components/workflow/components/AttributesChanges/AttributesChanges.js +4 -4
- package/cjs/components/workflow/components/AttributesChanges/components/DiffRenderer/DiffRenderer.js +6 -6
- package/cjs/components/workflow/components/AttributesChanges/components/DiffRenderer/styles.d.ts +1 -1
- package/cjs/components/workflow/components/DueDateField/DueDateField.js +2 -2
- package/cjs/components/workflow/components/DueDateField/styles.d.ts +1 -1
- package/cjs/components/workflow/components/PrioritySelector/PrioritySelector.js +2 -2
- package/cjs/constants/index.d.ts +1 -0
- package/cjs/constants/index.js +3 -1
- package/cjs/constants/textField.d.ts +7 -0
- package/cjs/constants/textField.js +8 -0
- package/cjs/core/errors.js +2 -2
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.js +2 -2
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.js +3 -3
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.js +5 -5
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.specs.js +11 -11
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.js +2 -2
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.js +2 -2
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/GroupItem.js +2 -2
- package/cjs/features/activity-log/EntityObject/EntityObject.js +2 -2
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.js +2 -2
- package/cjs/features/activity-log/RelationObject/RelationObject.js +3 -3
- package/cjs/features/crosswalks/AttributesTable/AttributesTable.js +147 -0
- package/cjs/features/crosswalks/AttributesTable/AttributesTable.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/AttributesTable.test.js +430 -0
- package/cjs/features/crosswalks/AttributesTable/IntegrationAttributesTable.test-data.d.ts +3 -0
- package/cjs/features/crosswalks/AttributesTable/IntegrationAttributesTable.test-data.js +52 -0
- package/cjs/features/crosswalks/AttributesTable/IntegrationAttributesTable.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/IntegrationAttributesTable.test.js +323 -0
- package/cjs/features/crosswalks/AttributesTable/components/AddAttributesButton/AddAttributesButton.d.ts +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/AddAttributesButton/AddAttributesButton.js +43 -0
- package/cjs/features/crosswalks/AttributesTable/components/AddAttributesButton/AddAttributesButton.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/AddAttributesButton/AddAttributesButton.test.js +142 -0
- package/cjs/features/crosswalks/AttributesTable/components/AddAttributesButton/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/AddAttributesButton/index.js +8 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/AttributeValuesRenderer.d.ts +19 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/AttributeValuesRenderer.js +23 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/AttributeValuesRenderer.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/AttributeValuesRenderer.test.js +146 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/index.js +8 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributesFactory/AttributesFactory.d.ts +4 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributesFactory/AttributesFactory.js +41 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributesFactory/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributesFactory/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer/AttributesHeadCellRenderer.js +42 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer/AttributesHeadCellRenderer.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer/AttributesHeadCellRenderer.test.js +50 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer/index.js +8 -0
- package/cjs/features/crosswalks/AttributesTable/components/CommonRowCellRenderer/CommonRowCellRenderer.d.ts +12 -0
- package/cjs/features/crosswalks/AttributesTable/components/CommonRowCellRenderer/CommonRowCellRenderer.js +40 -0
- package/cjs/features/crosswalks/AttributesTable/components/CommonRowCellRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/CommonRowCellRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.d.ts +8 -0
- package/cjs/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.js +64 -0
- package/cjs/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.test.js +58 -0
- package/cjs/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/CountRenderer/CountRenderer.d.ts +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/CountRenderer/CountRenderer.js +17 -0
- package/cjs/features/crosswalks/AttributesTable/components/CountRenderer/CountRenderer.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/CountRenderer/CountRenderer.test.js +14 -0
- package/cjs/features/crosswalks/AttributesTable/components/CountRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/CountRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/CountRenderer/styles.js +9 -0
- package/cjs/features/crosswalks/AttributesTable/components/DefaultCellValueRenderer/DefaultCellValueRenderer.d.ts +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/DefaultCellValueRenderer/DefaultCellValueRenderer.js +14 -0
- package/cjs/features/crosswalks/AttributesTable/components/DefaultCellValueRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/DefaultCellValueRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/HeadCellRenderer/HeadCellRenderer.d.ts +2 -0
- package/cjs/features/crosswalks/AttributesTable/components/HeadCellRenderer/HeadCellRenderer.js +30 -0
- package/cjs/features/crosswalks/AttributesTable/components/HeadCellRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/HeadCellRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/HeadCellRenderer/styles.js +13 -0
- package/cjs/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/ImageAttributesRenderer.d.ts +2 -0
- package/cjs/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/ImageAttributesRenderer.js +38 -0
- package/cjs/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/ImageAttributesRenderer.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/ImageAttributesRenderer.test.js +110 -0
- package/cjs/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/NestedAttributesRenderer.d.ts +2 -0
- package/cjs/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/NestedAttributesRenderer.js +41 -0
- package/cjs/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/NestedAttributesRenderer.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/NestedAttributesRenderer.test.js +111 -0
- package/cjs/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/OvValuesRenderer/OvValuesRenderer.d.ts +9 -0
- package/cjs/features/crosswalks/AttributesTable/components/OvValuesRenderer/OvValuesRenderer.js +28 -0
- package/cjs/features/crosswalks/AttributesTable/components/OvValuesRenderer/OvValuesRenderer.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/OvValuesRenderer/OvValuesRenderer.test.js +67 -0
- package/cjs/features/crosswalks/AttributesTable/components/OvValuesRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/OvValuesRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/OvValuesRenderer/styles.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/OvValuesRenderer/styles.js +36 -0
- package/cjs/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/ReferenceAttributesRenderer.d.ts +2 -0
- package/cjs/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/ReferenceAttributesRenderer.js +41 -0
- package/cjs/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/ReferenceAttributesRenderer.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/ReferenceAttributesRenderer.test.js +193 -0
- package/cjs/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/RowCellRenderer/RowCellRenderer.d.ts +8 -0
- package/cjs/features/crosswalks/AttributesTable/components/RowCellRenderer/RowCellRenderer.js +42 -0
- package/cjs/features/crosswalks/AttributesTable/components/RowCellRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/RowCellRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/RowCellRenderer/styles.js +10 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/RuleTypeInfoButton.d.ts +9 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/RuleTypeInfoButton.js +113 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/RuleTypeInfoButton.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/RuleTypeInfoButton.test.js +22 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/styles.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/styles.js +37 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeRenderer/RuleTypeRenderer.d.ts +6 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeRenderer/RuleTypeRenderer.js +25 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeRenderer/RuleTypeRenderer.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeRenderer/RuleTypeRenderer.test.js +58 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeRenderer/styles.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/RuleTypeRenderer/styles.js +13 -0
- package/cjs/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/SimpleAttributesRenderer.d.ts +2 -0
- package/cjs/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/SimpleAttributesRenderer.js +38 -0
- package/cjs/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/SimpleAttributesRenderer.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/SimpleAttributesRenderer.test.js +69 -0
- package/cjs/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSource/WinnerSource.d.ts +6 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSource/WinnerSource.js +24 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSource/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSource/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSource/styles.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSource/styles.js +21 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/WinnerSourcesRenderer.d.ts +6 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/WinnerSourcesRenderer.js +18 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/WinnerSourcesRenderer.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/WinnerSourcesRenderer.test.js +157 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/index.js +5 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/styles.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/styles.js +10 -0
- package/cjs/features/crosswalks/AttributesTable/helpers.d.ts +35 -0
- package/cjs/features/crosswalks/AttributesTable/helpers.js +202 -0
- package/cjs/features/crosswalks/AttributesTable/helpers.test.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/helpers.test.js +750 -0
- package/cjs/features/crosswalks/AttributesTable/index.d.ts +1 -0
- package/cjs/features/crosswalks/AttributesTable/index.js +8 -0
- package/cjs/features/crosswalks/AttributesTable/styles.d.ts +2 -0
- package/cjs/features/crosswalks/AttributesTable/styles.js +46 -0
- package/cjs/features/crosswalks/AttributesTable/types.d.ts +64 -0
- package/cjs/features/crosswalks/ColoredBlock/ColoredBlock.d.ts +6 -0
- package/cjs/features/crosswalks/ColoredBlock/ColoredBlock.js +66 -0
- package/cjs/features/crosswalks/ColoredBlock/ColoredBlock.test.d.ts +1 -0
- package/cjs/features/crosswalks/ColoredBlock/ColoredBlock.test.js +28 -0
- package/cjs/features/crosswalks/ColoredBlock/index.d.ts +1 -0
- package/cjs/features/crosswalks/ColoredBlock/index.js +5 -0
- package/cjs/features/crosswalks/CopyableValueField/CopyableValueField.d.ts +5 -0
- package/cjs/features/crosswalks/CopyableValueField/CopyableValueField.js +19 -0
- package/cjs/features/crosswalks/CopyableValueField/CopyableValueField.test.d.ts +1 -0
- package/cjs/features/crosswalks/CopyableValueField/CopyableValueField.test.js +28 -0
- package/cjs/features/crosswalks/CopyableValueField/index.d.ts +1 -0
- package/cjs/features/crosswalks/CopyableValueField/index.js +5 -0
- package/cjs/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.d.ts +9 -0
- package/cjs/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.js +159 -0
- package/cjs/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.test.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.test.js +268 -0
- package/cjs/features/crosswalks/CrosswalkAttributes/index.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkAttributes/index.js +5 -0
- package/cjs/features/crosswalks/CrosswalkAttributes/styles.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.d.ts +10 -0
- package/cjs/features/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.js +61 -0
- package/cjs/features/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.test.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.test.js +44 -0
- package/cjs/features/crosswalks/CrosswalkDateEditor/IntegrationCrosswalkDateEditor.test.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkDateEditor/IntegrationCrosswalkDateEditor.test.js +137 -0
- package/cjs/features/crosswalks/CrosswalkDateEditor/index.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkDateEditor/index.js +5 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.d.ts +2 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.js +51 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.test.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.test.js +81 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/CrosswalkDragPreview.d.ts +6 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/CrosswalkDragPreview.js +25 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/CrosswalkDragPreview.test.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/CrosswalkDragPreview.test.js +56 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/index.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/index.js +5 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/styles.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/styles.js +26 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/index.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/index.js +5 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/styles.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkDragLayer/styles.js +17 -0
- package/cjs/features/crosswalks/CrosswalkEditor/CrosswalkEditor.d.ts +8 -0
- package/cjs/features/crosswalks/CrosswalkEditor/CrosswalkEditor.js +56 -0
- package/cjs/features/crosswalks/CrosswalkEditor/CrosswalkEditor.test.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkEditor/CrosswalkEditor.test.js +116 -0
- package/cjs/features/crosswalks/CrosswalkEditor/index.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkEditor/index.js +5 -0
- package/cjs/features/crosswalks/CrosswalkRow/CrosswalkRow.d.ts +19 -0
- package/cjs/features/crosswalks/CrosswalkRow/CrosswalkRow.js +122 -0
- package/cjs/features/crosswalks/CrosswalkRow/CrosswalkRow.test.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkRow/CrosswalkRow.test.js +403 -0
- package/cjs/features/crosswalks/CrosswalkRow/index.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkRow/index.js +5 -0
- package/cjs/features/crosswalks/CrosswalkRow/styles.d.ts +7 -0
- package/cjs/features/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.d.ts +7 -0
- package/cjs/features/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.js +51 -0
- package/cjs/features/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.test.d.ts +1 -0
- package/cjs/features/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.test.js +46 -0
- package/cjs/features/crosswalks/DummyCrosswalkRow/index.d.ts +1 -0
- package/cjs/features/crosswalks/DummyCrosswalkRow/index.js +5 -0
- package/cjs/features/crosswalks/ShowDependentLink/ShowDependentLink.d.ts +6 -0
- package/cjs/features/crosswalks/ShowDependentLink/ShowDependentLink.js +17 -0
- package/cjs/features/crosswalks/ShowDependentLink/ShowDependentLink.test.d.ts +1 -0
- package/cjs/features/crosswalks/ShowDependentLink/ShowDependentLink.test.js +25 -0
- package/cjs/features/crosswalks/ShowDependentLink/index.d.ts +1 -0
- package/cjs/features/crosswalks/ShowDependentLink/index.js +5 -0
- package/cjs/features/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.d.ts +19 -0
- package/cjs/features/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.js +55 -0
- package/cjs/features/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.test.d.ts +1 -0
- package/cjs/features/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.test.js +264 -0
- package/cjs/features/crosswalks/SourceCrosswalksRow/index.d.ts +1 -0
- package/cjs/features/crosswalks/SourceCrosswalksRow/index.js +5 -0
- package/cjs/features/crosswalks/hooks/useAttributeActions.js +155 -0
- package/cjs/features/crosswalks/hooks/useAttributeActions.test.d.ts +1 -0
- package/cjs/features/crosswalks/hooks/useAttributeActions.test.js +908 -0
- package/cjs/features/crosswalks/hooks/useCrosswalkActions.test.d.ts +1 -0
- package/cjs/features/crosswalks/hooks/useCrosswalkActions.test.js +352 -0
- package/cjs/features/crosswalks/hooks/useModifiedEntity.js +155 -0
- package/cjs/features/crosswalks/hooks/useModifiedEntity.test.d.ts +1 -0
- package/cjs/features/crosswalks/hooks/useModifiedEntity.test.js +522 -0
- package/cjs/features/crosswalks/index.d.ts +9 -0
- package/cjs/features/crosswalks/index.js +19 -0
- package/cjs/features/crosswalks/types/crosswalks.d.ts +12 -0
- package/cjs/features/crosswalks/types/events.d.ts +20 -0
- package/cjs/features/crosswalks/types/index.d.ts +3 -0
- package/cjs/features/crosswalks/types/index.js +5 -0
- package/cjs/hooks/useDateEditor/constants.d.ts +3 -0
- package/cjs/hooks/useDateEditor/constants.js +6 -0
- package/cjs/hooks/useDateEditor/helpers.js +34 -0
- package/cjs/hooks/useDateEditor/index.d.ts +1 -0
- package/cjs/hooks/useDateEditor/index.js +5 -0
- package/cjs/hooks/useDateEditor/useDateEditor.js +62 -0
- package/cjs/index.d.ts +44 -0
- package/cjs/index.js +98 -1
- package/esm/ActionButton/styles.d.ts +1 -1
- package/esm/AttributeSelector/AttributeSelector.js +2 -2
- package/esm/AttributesValuesEditor/AttributesValuesEditor.d.ts +1 -1
- package/esm/AttributesValuesEditor/AttributesValuesEditor.js +1 -1
- package/esm/AttributesValuesEditor/AttributesValuesEditor.test.js +1 -1
- package/esm/BooleanRadioEditor/BooleanRadioEditor.d.ts +9 -0
- package/esm/BooleanRadioEditor/BooleanRadioEditor.js +16 -0
- package/esm/BooleanRadioEditor/BooleanRadioEditor.test.d.ts +1 -0
- package/esm/BooleanRadioEditor/BooleanRadioEditor.test.js +41 -0
- package/esm/BooleanRadioEditor/components/BooleanEditor/BooleanEditor.d.ts +7 -0
- package/esm/BooleanRadioEditor/components/BooleanEditor/BooleanEditor.js +30 -0
- package/esm/BooleanRadioEditor/components/BooleanEditor/BooleanEditor.test.d.ts +1 -0
- package/esm/BooleanRadioEditor/components/BooleanEditor/BooleanEditor.test.js +22 -0
- package/esm/BooleanRadioEditor/components/BooleanEditor/index.d.ts +1 -0
- package/esm/BooleanRadioEditor/components/BooleanEditor/index.js +1 -0
- package/esm/BooleanRadioEditor/index.d.ts +1 -0
- package/esm/BooleanRadioEditor/index.js +1 -0
- package/esm/CollaborationItem/CollaborationItem.d.ts +15 -0
- package/esm/CollaborationItem/CollaborationItem.js +23 -0
- package/esm/CollaborationItem/CollaborationItem.test.d.ts +1 -0
- package/esm/CollaborationItem/CollaborationItem.test.js +94 -0
- package/esm/CollaborationItem/IntegrationCollaborationItem.test.d.ts +1 -0
- package/esm/CollaborationItem/IntegrationCollaborationItem.test.js +190 -0
- package/esm/CollaborationItem/components/Avatar/Avatar.js +32 -0
- package/esm/CollaborationItem/components/Avatar/Avatar.test.d.ts +1 -0
- package/esm/CollaborationItem/components/Avatar/Avatar.test.js +10 -0
- package/esm/CollaborationItem/components/Avatar/index.d.ts +1 -0
- package/esm/CollaborationItem/components/Avatar/index.js +1 -0
- package/esm/CollaborationItem/components/Comment/Comment.js +74 -0
- package/esm/CollaborationItem/components/Comment/Comment.test.d.ts +1 -0
- package/esm/CollaborationItem/components/Comment/Comment.test.js +297 -0
- package/esm/CollaborationItem/components/Comment/index.d.ts +1 -0
- package/esm/CollaborationItem/components/Comment/index.js +1 -0
- package/esm/CollaborationItem/components/CommentContent/CommentContent.js +16 -0
- package/esm/CollaborationItem/components/CommentContent/CommentContent.test.d.ts +1 -0
- package/esm/CollaborationItem/components/CommentContent/CommentContent.test.js +82 -0
- package/esm/CollaborationItem/components/CommentContent/index.d.ts +1 -0
- package/esm/CollaborationItem/components/CommentContent/index.js +1 -0
- package/esm/CollaborationItem/components/CommentContent/styles.d.ts +1 -0
- package/esm/CollaborationItem/components/CommentTarget/CommentTarget.js +86 -0
- package/esm/CollaborationItem/components/CommentTarget/CommentTarget.test.d.ts +1 -0
- package/esm/CollaborationItem/components/CommentTarget/CommentTarget.test.js +210 -0
- package/esm/CollaborationItem/components/CommentTarget/index.d.ts +1 -0
- package/esm/CollaborationItem/components/CommentTarget/index.js +1 -0
- package/esm/CollaborationItem/components/RepliedComment/RepliedComment.js +54 -0
- package/esm/CollaborationItem/components/RepliedComment/RepliedComment.test.d.ts +1 -0
- package/esm/CollaborationItem/components/RepliedComment/RepliedComment.test.js +212 -0
- package/esm/CollaborationItem/components/RepliedComment/index.d.ts +1 -0
- package/esm/CollaborationItem/components/RepliedComment/index.js +1 -0
- package/esm/CollaborationItem/components/SendMessageArea/SendMessageArea.js +134 -0
- package/esm/CollaborationItem/components/SendMessageArea/SendMessageArea.test.d.ts +1 -0
- package/esm/CollaborationItem/components/SendMessageArea/SendMessageArea.test.js +472 -0
- package/esm/CollaborationItem/components/SendMessageArea/index.d.ts +1 -0
- package/esm/CollaborationItem/components/SendMessageArea/index.js +1 -0
- package/esm/CollaborationItem/components/TextFieldWithMentions/TextFieldWithMentions.js +44 -0
- package/esm/CollaborationItem/components/TextFieldWithMentions/TextFieldWithMentions.test.d.ts +1 -0
- package/esm/CollaborationItem/components/TextFieldWithMentions/TextFieldWithMentions.test.js +55 -0
- package/esm/CollaborationItem/components/TextFieldWithMentions/index.d.ts +1 -0
- package/esm/CollaborationItem/components/TextFieldWithMentions/index.js +1 -0
- package/esm/CollaborationItem/helpers.test.d.ts +1 -0
- package/esm/CollaborationItem/helpers.test.js +110 -0
- package/esm/CollaborationItem/index.d.ts +1 -0
- package/esm/CollaborationItem/index.js +1 -0
- package/esm/CollapseButton/CollapseButton.d.ts +9 -0
- package/esm/CollapseButton/CollapseButton.js +41 -0
- package/esm/CollapseButton/CollapseButton.test.d.ts +1 -0
- package/esm/CollapseButton/CollapseButton.test.js +21 -0
- package/esm/CollapseButton/index.d.ts +1 -0
- package/esm/CollapseButton/index.js +1 -0
- package/esm/CollapseRowButton/CollapseRowButton.js +1 -1
- package/esm/CollapseRowButton/CollapseRowButton.test.js +1 -1
- package/esm/ColoredSourceIcon/ColoredSourceIcon.js +18 -0
- package/esm/ColoredSourceIcon/ColoredSourceIcon.test.d.ts +1 -0
- package/esm/ColoredSourceIcon/ColoredSourceIcon.test.js +78 -0
- package/esm/ColoredSourceIcon/index.d.ts +1 -0
- package/esm/ColoredSourceIcon/index.js +1 -0
- package/esm/ColumnsSettings/components/ColumnListItem/ColumnListItem.js +1 -1
- package/esm/CommentsContainer/CommentsContainer.d.ts +12 -0
- package/esm/CommentsContainer/CommentsContainer.js +65 -0
- package/esm/CommentsContainer/CommentsContainer.test-data.d.ts +20 -0
- package/esm/CommentsContainer/CommentsContainer.test-data.js +64 -0
- package/esm/CommentsContainer/CommentsContainer.test.d.ts +1 -0
- package/esm/CommentsContainer/CommentsContainer.test.js +292 -0
- package/esm/CommentsContainer/components/AddCommentButton/AddCommentButton.d.ts +7 -0
- package/esm/CommentsContainer/components/AddCommentButton/AddCommentButton.js +8 -0
- package/esm/CommentsContainer/components/AddCommentButton/index.d.ts +1 -0
- package/esm/CommentsContainer/components/AddCommentButton/index.js +1 -0
- package/esm/CommentsContainer/components/BasicCommentButton/BasicCommentButton.d.ts +8 -0
- package/esm/CommentsContainer/components/BasicCommentButton/BasicCommentButton.js +35 -0
- package/esm/CommentsContainer/components/BasicCommentButton/index.d.ts +1 -0
- package/esm/CommentsContainer/components/BasicCommentButton/index.js +1 -0
- package/esm/CommentsContainer/components/BasicCommentButton/styles.d.ts +1 -0
- package/esm/CommentsContainer/components/BasicCommentButton/styles.js +17 -0
- package/esm/CommentsContainer/components/CollaborationPopup/CollaborationPopup.d.ts +12 -0
- package/esm/CommentsContainer/components/CollaborationPopup/CollaborationPopup.js +42 -0
- package/esm/CommentsContainer/components/CollaborationPopup/CollaborationPopup.test.d.ts +1 -0
- package/esm/CommentsContainer/components/CollaborationPopup/CollaborationPopup.test.js +132 -0
- package/esm/CommentsContainer/components/CollaborationPopup/index.d.ts +1 -0
- package/esm/CommentsContainer/components/CollaborationPopup/index.js +1 -0
- package/esm/CommentsContainer/components/CommentButton/CommentButton.d.ts +7 -0
- package/esm/CommentsContainer/components/CommentButton/CommentButton.js +12 -0
- package/esm/CommentsContainer/components/CommentButton/index.d.ts +1 -0
- package/esm/CommentsContainer/components/CommentButton/index.js +1 -0
- package/esm/CommentsContainer/components/CommentButton/styles.d.ts +1 -0
- package/esm/CommentsContainer/components/CommentButton/styles.js +19 -0
- package/esm/CommentsContainer/index.d.ts +1 -0
- package/esm/CommentsContainer/index.js +1 -0
- package/esm/CommentsContainer/styles.js +22 -0
- package/esm/ConfigureColumnsPopup/ConfigureColumnsPopup.d.ts +40 -0
- package/esm/ConfigureColumnsPopup/ConfigureColumnsPopup.js +123 -0
- package/esm/ConfigureColumnsPopup/ConfigureColumnsPopup.test.d.ts +1 -0
- package/esm/ConfigureColumnsPopup/ConfigureColumnsPopup.test.js +141 -0
- package/esm/ConfigureColumnsPopup/index.d.ts +1 -0
- package/esm/ConfigureColumnsPopup/index.js +1 -0
- package/esm/ConfigureColumnsPopup/styles.d.ts +1 -0
- package/esm/ConfigureColumnsPopup/styles.js +10 -0
- package/esm/ConfirmDeleteDialog/ConfirmDeleteDialog.d.ts +7 -0
- package/esm/ConfirmDeleteDialog/ConfirmDeleteDialog.js +20 -0
- package/esm/ConfirmDeleteDialog/ConfirmDeleteDialog.test.d.ts +1 -0
- package/esm/ConfirmDeleteDialog/ConfirmDeleteDialog.test.js +46 -0
- package/esm/ConfirmDeleteDialog/index.d.ts +1 -0
- package/esm/ConfirmDeleteDialog/index.js +1 -0
- package/esm/ConfirmationDialog/ConfirmationDialog.d.ts +15 -0
- package/esm/ConfirmationDialog/ConfirmationDialog.js +22 -0
- package/esm/ConfirmationDialog/ConfirmationDialog.test.d.ts +1 -0
- package/esm/ConfirmationDialog/ConfirmationDialog.test.js +76 -0
- package/esm/ConfirmationDialog/index.d.ts +1 -0
- package/esm/ConfirmationDialog/index.js +1 -0
- package/esm/ConfirmationDialog/styles.d.ts +1 -0
- package/esm/ConfirmationDialog/styles.js +36 -0
- package/esm/ConnectionEditor/ConnectionEditor.js +89 -0
- package/esm/ConnectionEditor/ConnectionEditor.test.d.ts +1 -0
- package/esm/ConnectionEditor/ConnectionEditor.test.js +369 -0
- package/esm/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.d.ts +36 -0
- package/esm/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.js +55 -0
- package/esm/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.test.d.ts +1 -0
- package/esm/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.test.js +176 -0
- package/esm/ConnectionRelationTypeSelector/index.d.ts +1 -0
- package/esm/ConnectionRelationTypeSelector/index.js +1 -0
- package/esm/CustomDateRangeEditor/CustomDateRangeEditor.d.ts +8 -0
- package/esm/CustomDateRangeEditor/CustomDateRangeEditor.js +55 -0
- package/esm/CustomDateRangeEditor/CustomDateRangeEditor.test.d.ts +1 -0
- package/esm/CustomDateRangeEditor/CustomDateRangeEditor.test.js +153 -0
- package/esm/CustomDateRangeEditor/index.d.ts +1 -0
- package/esm/CustomDateRangeEditor/index.js +1 -0
- package/esm/CustomDateRangeEditor/styles.d.ts +1 -0
- package/esm/DataTenantBadge/DataTenantBadge.js +22 -0
- package/esm/DataTenantBadge/DataTenantBadge.test.d.ts +1 -0
- package/esm/DataTenantBadge/DataTenantBadge.test.js +77 -0
- package/esm/DataTenantBadge/index.d.ts +1 -0
- package/esm/DataTenantBadge/index.js +1 -0
- package/esm/DataTypeValue/DataTypeValue.d.ts +13 -0
- package/esm/DataTypeValue/DataTypeValue.js +23 -0
- package/esm/DataTypeValue/DataTypeValue.test.d.ts +1 -0
- package/esm/DataTypeValue/DataTypeValue.test.js +141 -0
- package/esm/DataTypeValue/index.d.ts +1 -0
- package/esm/DataTypeValue/index.js +1 -0
- package/esm/DataTypeValueEditor/DataTypeValueEditor.js +48 -0
- package/esm/DataTypeValueEditor/index.d.ts +1 -0
- package/esm/DataTypeValueEditor/index.js +1 -0
- package/esm/DataTypeValueEditor/styles.d.ts +1 -0
- package/esm/DataTypeValueEditor/styles.js +6 -0
- package/esm/DataTypeValueEditor/useEditorContext.d.ts +71 -0
- package/esm/DataTypeValueEditor/useEditorContext.js +84 -0
- package/esm/DataTypeValueEditor/useEditorContext.test.d.ts +1 -0
- package/esm/DataTypeValueEditor/useEditorContext.test.js +201 -0
- package/esm/DateEditor/DateEditor.d.ts +11 -0
- package/esm/DateEditor/DateEditor.js +56 -0
- package/esm/DateEditor/DateEditor.test.d.ts +1 -0
- package/esm/DateEditor/DateEditor.test.js +374 -0
- package/esm/DateEditor/index.d.ts +1 -0
- package/esm/DateEditor/index.js +1 -0
- package/esm/DateIntervalSelector/DateIntervalSelector.d.ts +7 -0
- package/esm/DateIntervalSelector/DateIntervalSelector.js +29 -0
- package/esm/DateIntervalSelector/DateIntervalSelector.test.d.ts +1 -0
- package/esm/DateIntervalSelector/DateIntervalSelector.test.js +80 -0
- package/esm/DateIntervalSelector/index.d.ts +1 -0
- package/esm/DateIntervalSelector/index.js +1 -0
- package/esm/DateRangeEditor/DateRangeEditor.d.ts +37 -0
- package/esm/DateRangeEditor/DateRangeEditor.js +54 -0
- package/esm/DateRangeEditor/DateRangeEditor.test.d.ts +1 -0
- package/esm/DateRangeEditor/DateRangeEditor.test.js +279 -0
- package/esm/DateRangeEditor/index.d.ts +1 -0
- package/esm/DateRangeEditor/index.js +1 -0
- package/esm/DateRangeEditor/styles.d.ts +1 -0
- package/esm/DateRangePicker/DateRangePicker.d.ts +11 -0
- package/esm/DateRangePicker/DateRangePicker.js +66 -0
- package/esm/DateRangePicker/DateRangePicker.spec.d.ts +1 -0
- package/esm/DateRangePicker/DateRangePicker.spec.js +144 -0
- package/esm/DateRangePicker/index.d.ts +1 -0
- package/esm/DateRangePicker/index.js +1 -0
- package/esm/DefaultCellValueRenderer/DefaultCellValueRenderer.js +1 -1
- package/esm/DefaultCellValueRenderer/DefaultCellValueRenderer.test.js +1 -1
- package/esm/DependentLookupEditor/DependentLookupEditor.d.ts +45 -0
- package/esm/DependentLookupEditor/DependentLookupEditor.js +198 -0
- package/esm/DependentLookupEditor/DependentLookupEditor.test.d.ts +1 -0
- package/esm/DependentLookupEditor/DependentLookupEditor.test.js +1126 -0
- package/esm/DependentLookupEditor/helpers.js +22 -0
- package/esm/DependentLookupEditor/helpers.test.d.ts +1 -0
- package/esm/DependentLookupEditor/helpers.test.js +23 -0
- package/esm/DependentLookupEditor/index.d.ts +1 -0
- package/esm/DependentLookupEditor/index.js +1 -0
- package/esm/DependentLookupEditor/useAutopopulation.d.ts +14 -0
- package/esm/DependentLookupEditor/useAutopopulation.js +19 -0
- package/esm/DependentLookupEditor/useDefaultOptions.d.ts +5 -0
- package/esm/DependentLookupEditor/useDefaultOptions.js +22 -0
- package/esm/DependentLookupEditor/useLookupsResolver.d.ts +6 -0
- package/esm/DependentLookupEditor/useLookupsResolver.js +26 -0
- package/esm/DependentLookupEditor/useSavingFocus.d.ts +1 -0
- package/esm/DependentLookupEditor/useSavingFocus.js +28 -0
- package/esm/Drawer/Drawer.d.ts +7 -0
- package/esm/Drawer/Drawer.js +47 -0
- package/esm/Drawer/Drawer.test.d.ts +1 -0
- package/esm/Drawer/Drawer.test.js +29 -0
- package/esm/Drawer/index.d.ts +1 -0
- package/esm/Drawer/index.js +1 -0
- package/esm/DropDownEditor/DropDownEditor.d.ts +15 -0
- package/esm/DropDownEditor/DropDownEditor.js +41 -0
- package/esm/DropDownEditor/DropDownEditor.test.d.ts +1 -0
- package/esm/DropDownEditor/DropDownEditor.test.js +33 -0
- package/esm/DropDownEditor/index.d.ts +1 -0
- package/esm/DropDownEditor/index.js +1 -0
- package/esm/DropDownSelector/DropDownSelector.d.ts +35 -0
- package/esm/DropDownSelector/DropDownSelector.js +72 -0
- package/esm/DropDownSelector/DropDownSelector.test.d.ts +1 -0
- package/esm/DropDownSelector/DropDownSelector.test.js +38 -0
- package/esm/DropDownSelector/components/Menu/Menu.d.ts +8 -0
- package/esm/DropDownSelector/components/Menu/Menu.js +30 -0
- package/esm/DropDownSelector/components/Menu/index.d.ts +1 -0
- package/esm/DropDownSelector/components/Menu/index.js +1 -0
- package/esm/DropDownSelector/components/Menu/styles.d.ts +1 -0
- package/esm/DropDownSelector/components/Menu/styles.js +23 -0
- package/esm/DropDownSelector/components/SingleValue/SingleValue.d.ts +8 -0
- package/esm/DropDownSelector/components/SingleValue/SingleValue.js +24 -0
- package/esm/DropDownSelector/components/SingleValue/index.d.ts +1 -0
- package/esm/DropDownSelector/components/SingleValue/index.js +1 -0
- package/esm/DropDownSelector/components/SingleValue/styles.d.ts +1 -0
- package/esm/DropDownSelector/components/SingleValue/styles.js +11 -0
- package/esm/DropDownSelector/index.d.ts +1 -0
- package/esm/DropDownSelector/index.js +1 -0
- package/esm/DropDownSelector/styles.d.ts +16 -0
- package/esm/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.js +1 -1
- package/esm/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.test.js +1 -1
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.js +1 -1
- package/esm/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.js +1 -1
- package/esm/EditModeAttributesPager/styles.d.ts +1 -1
- package/esm/EditModeComplexAttribute/EditModeComplexAttribute.js +1 -1
- package/esm/EditModeComplexAttribute/EditModeComplexAttribute.test.js +1 -1
- package/esm/EditModeComplexAttribute/styles.d.ts +1 -1
- package/esm/EditorsFactory/EditorsFactory.d.ts +8 -0
- package/esm/EditorsFactory/EditorsFactory.js +92 -0
- package/esm/EditorsFactory/EditorsFactory.test.d.ts +1 -0
- package/esm/EditorsFactory/EditorsFactory.test.js +85 -0
- package/esm/EditorsFactory/index.d.ts +1 -0
- package/esm/EditorsFactory/index.js +1 -0
- package/esm/EmptySearchResult/EmptySearchResult.d.ts +7 -0
- package/esm/EmptySearchResult/EmptySearchResult.js +35 -0
- package/esm/EmptySearchResult/EmptySearchResult.test.d.ts +1 -0
- package/esm/EmptySearchResult/EmptySearchResult.test.js +17 -0
- package/esm/EmptySearchResult/index.d.ts +1 -0
- package/esm/EmptySearchResult/index.js +1 -0
- package/esm/EmptyState/EmptyState.d.ts +23 -0
- package/esm/EmptyState/EmptyState.js +33 -0
- package/esm/EmptyState/EmptyState.test.d.ts +1 -0
- package/esm/EmptyState/EmptyState.test.js +45 -0
- package/esm/EmptyState/index.d.ts +1 -0
- package/esm/EmptyState/index.js +1 -0
- package/esm/EntityAvatar/EntityAvatar.d.ts +8 -0
- package/esm/EntityAvatar/EntityAvatar.js +19 -0
- package/esm/EntityAvatar/EntityAvatar.test.d.ts +1 -0
- package/esm/EntityAvatar/EntityAvatar.test.js +53 -0
- package/esm/EntityAvatar/index.d.ts +1 -0
- package/esm/EntityAvatar/index.js +1 -0
- package/esm/EntitySelector/EntitySelector.js +1 -1
- package/esm/EntitySelector/components/EntityOption/EntityOption.js +1 -1
- package/esm/EntitySelector/components/EntityOption/EntityOption.test.js +1 -1
- package/esm/EntityTypeBadge/EntityTypeBadge.d.ts +8 -0
- package/esm/EntityTypeBadge/EntityTypeBadge.js +21 -0
- package/esm/EntityTypeBadge/EntityTypeBadge.test.d.ts +1 -0
- package/esm/EntityTypeBadge/EntityTypeBadge.test.js +65 -0
- package/esm/EntityTypeBadge/index.d.ts +1 -0
- package/esm/EntityTypeBadge/index.js +1 -0
- package/esm/EntityTypeBadge/styles.d.ts +1 -0
- package/esm/EntityTypeBadge/styles.js +25 -0
- package/esm/EntityTypeIcon/EntityTypeIcon.d.ts +10 -0
- package/esm/EntityTypeIcon/EntityTypeIcon.js +19 -0
- package/esm/EntityTypeIcon/EntityTypeIcon.test.d.ts +1 -0
- package/esm/EntityTypeIcon/EntityTypeIcon.test.js +38 -0
- package/esm/EntityTypeIcon/index.d.ts +1 -0
- package/esm/EntityTypeIcon/index.js +1 -0
- package/esm/EntityTypesSelector/EntityTypesSelector.d.ts +17 -0
- package/esm/EntityTypesSelector/EntityTypesSelector.js +10 -0
- package/esm/EntityTypesSelector/EntityTypesSelector.test.d.ts +1 -0
- package/esm/EntityTypesSelector/EntityTypesSelector.test.js +25 -0
- package/esm/EntityTypesSelector/index.d.ts +1 -0
- package/esm/EntityTypesSelector/index.js +1 -0
- package/esm/EntityUriLink/EntityUriLink.d.ts +6 -0
- package/esm/EntityUriLink/EntityUriLink.js +42 -0
- package/esm/EntityUriLink/EntityUriLink.test.d.ts +1 -0
- package/esm/EntityUriLink/EntityUriLink.test.js +167 -0
- package/esm/EntityUriLink/index.d.ts +1 -0
- package/esm/EntityUriLink/index.js +1 -0
- package/esm/ErrorBoundary/ErrorBoundary.d.ts +13 -0
- package/esm/ErrorBoundary/ErrorBoundary.js +41 -0
- package/esm/ErrorBoundary/ErrorBoundary.test.d.ts +1 -0
- package/esm/ErrorBoundary/ErrorBoundary.test.js +20 -0
- package/esm/ErrorBoundary/index.d.ts +1 -0
- package/esm/ErrorBoundary/index.js +1 -0
- package/esm/ErrorMessage/ErrorMessage.d.ts +6 -0
- package/esm/ErrorMessage/ErrorMessage.js +12 -0
- package/esm/ErrorMessage/index.d.ts +1 -0
- package/esm/ErrorMessage/index.js +1 -0
- package/esm/ErrorMessage/styles.d.ts +1 -0
- package/esm/ErrorMessage/styles.js +9 -0
- package/esm/ErrorPopup/ErrorPopup.d.ts +13 -0
- package/esm/ErrorPopup/ErrorPopup.js +47 -0
- package/esm/ErrorPopup/ErrorPopup.test.d.ts +1 -0
- package/esm/ErrorPopup/ErrorPopup.test.js +49 -0
- package/esm/ErrorPopup/index.d.ts +1 -0
- package/esm/ErrorPopup/index.js +1 -0
- package/esm/ErrorWrapper/ErrorWrapper.d.ts +11 -0
- package/esm/ErrorWrapper/ErrorWrapper.js +38 -0
- package/esm/ErrorWrapper/ErrorWrapper.test.d.ts +1 -0
- package/esm/ErrorWrapper/ErrorWrapper.test.js +16 -0
- package/esm/ErrorWrapper/index.d.ts +1 -0
- package/esm/ErrorWrapper/index.js +1 -0
- package/esm/ErrorWrapper/styles.d.ts +1 -0
- package/esm/ErrorWrapper/styles.js +9 -0
- package/esm/ExpandableSearchInput/ExpandableSearchInput.js +24 -0
- package/esm/ExpandableSearchInput/index.d.ts +1 -0
- package/esm/ExpandableSearchInput/index.js +1 -0
- package/esm/FileTypeEditor/FileTypeEditor.d.ts +9 -0
- package/esm/FileTypeEditor/FileTypeEditor.js +26 -0
- package/esm/FileTypeEditor/FileTypeEditor.test.d.ts +1 -0
- package/esm/FileTypeEditor/FileTypeEditor.test.js +128 -0
- package/esm/FileTypeEditor/index.d.ts +1 -0
- package/esm/FileTypeEditor/index.js +1 -0
- package/esm/FilterEditor/FilterEditor.d.ts +23 -0
- package/esm/FilterEditor/FilterEditor.js +42 -0
- package/esm/FilterEditor/index.d.ts +1 -0
- package/esm/FilterEditor/index.js +1 -0
- package/esm/FilterEditor/styles.d.ts +1 -0
- package/esm/FilterEditor/styles.js +18 -0
- package/esm/FilterValueEditor/FilterValueEditor.d.ts +24 -0
- package/esm/FilterValueEditor/FilterValueEditor.js +55 -0
- package/esm/FilterValueEditor/FilterValueEditor.test.d.ts +1 -0
- package/esm/FilterValueEditor/FilterValueEditor.test.js +180 -0
- package/esm/FilterValueEditor/components/RangeDataTypeValueEditor/RangeDataTypeValueEditor.d.ts +17 -0
- package/esm/FilterValueEditor/components/RangeDataTypeValueEditor/RangeDataTypeValueEditor.js +62 -0
- package/esm/FilterValueEditor/components/RangeDataTypeValueEditor/RangeDataTypeValueEditor.test.d.ts +1 -0
- package/esm/FilterValueEditor/components/RangeDataTypeValueEditor/RangeDataTypeValueEditor.test.js +76 -0
- package/esm/FilterValueEditor/components/RangeDataTypeValueEditor/index.d.ts +1 -0
- package/esm/FilterValueEditor/components/RangeDataTypeValueEditor/index.js +1 -0
- package/esm/FilterValueEditor/helpers.d.ts +2 -0
- package/esm/FilterValueEditor/helpers.js +25 -0
- package/esm/FilterValueEditor/index.d.ts +1 -0
- package/esm/FilterValueEditor/index.js +1 -0
- package/esm/HOCs/withDateRangeSelector/withDateRangeSelector.d.ts +1 -1
- package/esm/HOCs/withDateRangeSelector/withDateRangeSelector.js +1 -1
- package/esm/HOCs/withFilter/ColumnFilter.js +1 -1
- package/esm/HideOnShrink/HideOnShrink.d.ts +7 -0
- package/esm/HideOnShrink/HideOnShrink.js +10 -0
- package/esm/HideOnShrink/HideOnShrink.test.d.ts +1 -0
- package/esm/HideOnShrink/HideOnShrink.test.js +81 -0
- package/esm/HideOnShrink/index.d.ts +1 -0
- package/esm/HideOnShrink/index.js +1 -0
- package/esm/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.d.ts +7 -0
- package/esm/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.js +34 -0
- package/esm/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.test.d.ts +1 -0
- package/esm/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.test.js +27 -0
- package/esm/HierarchicalAttributeTooltip/index.d.ts +1 -0
- package/esm/HierarchicalAttributeTooltip/index.js +1 -0
- package/esm/HierarchyNodeTitle/HierarchyNodeTitle.js +28 -0
- package/esm/HierarchyNodeTitle/HierarchyNodeTitle.test.d.ts +1 -0
- package/esm/HierarchyNodeTitle/HierarchyNodeTitle.test.js +190 -0
- package/esm/HierarchyNodeTitle/index.d.ts +1 -0
- package/esm/HierarchyNodeTitle/index.js +1 -0
- package/esm/HierarchyNodeTitle/useEntityDetails.js +30 -0
- package/esm/HierarchyNodeTitle/useEntityDetails.test.d.ts +1 -0
- package/esm/HierarchyNodeTitle/useEntityDetails.test.js +187 -0
- package/esm/Highlighter/Highlighter.d.ts +8 -0
- package/esm/Highlighter/Highlighter.js +20 -0
- package/esm/Highlighter/Highlighter.test.d.ts +1 -0
- package/esm/Highlighter/Highlighter.test.js +91 -0
- package/esm/Highlighter/index.d.ts +1 -0
- package/esm/Highlighter/index.js +1 -0
- package/esm/InlineSimpleAttribute/InlineSimpleAttribute.js +1 -1
- package/esm/InlineSimpleAttribute/InlineSimpleAttribute.spec.js +1 -1
- package/esm/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.js +1 -1
- package/esm/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.test.js +1 -1
- package/esm/LookupEditor/LookupEditor.d.ts +33 -0
- package/esm/LookupEditor/LookupEditor.js +53 -0
- package/esm/LookupEditor/LookupEditor.test.d.ts +1 -0
- package/esm/LookupEditor/LookupEditor.test.js +77 -0
- package/esm/LookupEditor/components/GroupedDropDownEditor/GroupedDropDownEditor.d.ts +21 -0
- package/esm/LookupEditor/components/GroupedDropDownEditor/GroupedDropDownEditor.js +54 -0
- package/esm/LookupEditor/components/GroupedDropDownEditor/GroupedDropDownEditor.test.d.ts +1 -0
- package/esm/LookupEditor/components/GroupedDropDownEditor/GroupedDropDownEditor.test.js +37 -0
- package/esm/LookupEditor/components/GroupedDropDownEditor/helpers.js +33 -0
- package/esm/LookupEditor/components/GroupedDropDownEditor/helpers.test.d.ts +1 -0
- package/esm/LookupEditor/components/GroupedDropDownEditor/helpers.test.js +34 -0
- package/esm/LookupEditor/components/GroupedDropDownEditor/index.d.ts +1 -0
- package/esm/LookupEditor/components/GroupedDropDownEditor/index.js +1 -0
- package/esm/LookupEditor/components/GroupedDropDownEditor/styles.d.ts +1 -0
- package/esm/LookupEditor/components/GroupedDropDownEditor/styles.js +17 -0
- package/esm/LookupEditor/helpers.js +29 -0
- package/esm/LookupEditor/helpers.test.d.ts +1 -0
- package/esm/LookupEditor/helpers.test.js +103 -0
- package/esm/LookupEditor/index.d.ts +1 -0
- package/esm/LookupEditor/index.js +1 -0
- package/esm/MoreAttributesButton/MoreAttributesButton.js +1 -1
- package/esm/MoreAttributesButton/MoreAttributesButton.test.js +1 -1
- package/esm/MoreAttributesButton/styles.d.ts +1 -1
- package/esm/MultiValueChip/MultiValueChip.d.ts +17 -0
- package/esm/MultiValueChip/MultiValueChip.js +33 -0
- package/esm/MultiValueChip/index.d.ts +1 -0
- package/esm/MultiValueChip/index.js +1 -0
- package/esm/NumberEditor/NumberEditor.d.ts +16 -0
- package/esm/NumberEditor/NumberEditor.js +30 -0
- package/esm/NumberEditor/NumberEditor.test.d.ts +1 -0
- package/esm/NumberEditor/NumberEditor.test.js +86 -0
- package/esm/NumberEditor/components/NumberFormat/NumberFormat.d.ts +15 -0
- package/esm/NumberEditor/components/NumberFormat/NumberFormat.js +38 -0
- package/esm/NumberEditor/components/NumberFormat/helpers.d.ts +1 -0
- package/esm/NumberEditor/components/NumberFormat/helpers.js +3 -0
- package/esm/NumberEditor/components/NumberFormat/index.d.ts +1 -0
- package/esm/NumberEditor/components/NumberFormat/index.js +1 -0
- package/esm/NumberEditor/index.d.ts +1 -0
- package/esm/NumberEditor/index.js +1 -0
- package/esm/OvIcon/OvIcon.d.ts +2 -2
- package/esm/OvIcon/OvIcon.js +1 -1
- package/esm/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.js +2 -2
- package/esm/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.test.js +6 -8
- package/esm/PivotingTooltip/components/PivotingTooltipContent/styles.d.ts +1 -1
- package/esm/ReactSelectDropdownIndicator/ReactSelectDropdownIndicator.d.ts +14 -0
- package/esm/ReactSelectDropdownIndicator/ReactSelectDropdownIndicator.js +32 -0
- package/esm/ReactSelectDropdownIndicator/index.d.ts +1 -0
- package/esm/ReactSelectDropdownIndicator/index.js +1 -0
- package/esm/ReactSelectDropdownIndicator/styles.d.ts +1 -0
- package/esm/ReactSelectDropdownIndicator/styles.js +9 -0
- package/esm/ReactSelectDropdownIndicatorWithIconButton/ReactSelectDropdownIndicatorWithIconButton.d.ts +13 -0
- package/esm/ReactSelectDropdownIndicatorWithIconButton/ReactSelectDropdownIndicatorWithIconButton.js +32 -0
- package/esm/ReactSelectDropdownIndicatorWithIconButton/index.d.ts +1 -0
- package/esm/ReactSelectDropdownIndicatorWithIconButton/index.js +1 -0
- package/esm/ReactSelectDropdownIndicatorWithIconButton/styles.d.ts +1 -0
- package/esm/ReactSelectDropdownIndicatorWithIconButton/styles.js +6 -0
- package/esm/ReactSelectLoadMoreButton/ReactSelectLoadMoreButton.d.ts +8 -0
- package/esm/ReactSelectLoadMoreButton/ReactSelectLoadMoreButton.js +11 -0
- package/esm/ReactSelectLoadMoreButton/ReactSelectLoadMoreButton.test.d.ts +1 -0
- package/esm/ReactSelectLoadMoreButton/ReactSelectLoadMoreButton.test.js +20 -0
- package/esm/ReactSelectLoadMoreButton/index.d.ts +1 -0
- package/esm/ReactSelectLoadMoreButton/index.js +1 -0
- package/esm/ReactSelectLoadMoreButton/styles.d.ts +1 -0
- package/esm/ReactSelectMenuList/ReactSelectMenuList.d.ts +1 -0
- package/esm/ReactSelectMenuList/ReactSelectMenuList.js +19 -0
- package/esm/ReactSelectMenuList/index.d.ts +1 -0
- package/esm/ReactSelectMenuList/index.js +1 -0
- package/esm/ReactSelectMenuWithPopper/ReactSelectMenuWithPopper.d.ts +14 -0
- package/esm/ReactSelectMenuWithPopper/ReactSelectMenuWithPopper.js +64 -0
- package/esm/ReactSelectMenuWithPopper/ReactSelectMenuWithPopper.test.d.ts +1 -0
- package/esm/ReactSelectMenuWithPopper/ReactSelectMenuWithPopper.test.js +123 -0
- package/esm/ReactSelectMenuWithPopper/index.d.ts +1 -0
- package/esm/ReactSelectMenuWithPopper/index.js +1 -0
- package/esm/ReactSelectMenuWithPopper/styles.d.ts +1 -0
- package/esm/ReactSelectMenuWithPopper/styles.js +10 -0
- package/esm/ReactSelectOptionWithCheckIcon/ReactSelectOptionWithCheckIcon.d.ts +10 -0
- package/esm/ReactSelectOptionWithCheckIcon/ReactSelectOptionWithCheckIcon.js +24 -0
- package/esm/ReactSelectOptionWithCheckIcon/index.d.ts +1 -0
- package/esm/ReactSelectOptionWithCheckIcon/index.js +1 -0
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.js +1 -1
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.js +1 -1
- package/esm/ReadOnlyAttributesPager/styles.d.ts +2 -2
- package/esm/ReadOnlyAttributesView/styles.d.ts +1 -1
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.js +1 -1
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.js +1 -1
- package/esm/ReferenceAttributeEditor/ReferenceAttributeEditor.js +1 -1
- package/esm/ReferenceAttributeEditor/ReferenceAttributeEditor.test.js +1 -1
- package/esm/RelationTypeSelector/RelationTypeSelector.js +1 -1
- package/esm/RelationTypeSelector/RelationTypeSelector.test.js +1 -1
- package/esm/RelationTypeSelector/components/RelationOption/RelationOption.js +1 -1
- package/esm/RolesEditor/RolesEditor.js +1 -1
- package/esm/SelectEditor/SelectEditor.d.ts +10 -0
- package/esm/SelectEditor/SelectEditor.js +38 -0
- package/esm/SelectEditor/SelectEditor.test.d.ts +1 -0
- package/esm/SelectEditor/SelectEditor.test.js +13 -0
- package/esm/SelectEditor/index.d.ts +1 -0
- package/esm/SelectEditor/index.js +1 -0
- package/esm/SelectEditor/styles.d.ts +1 -0
- package/esm/SelectEditor/styles.js +9 -0
- package/esm/SimpleAttribute/SimpleAttribute.js +2 -2
- package/esm/SimpleAttribute/SimpleAttribute.test.js +2 -2
- package/esm/SimpleAttributeEditor/SimpleAttributeEditor.js +3 -3
- package/esm/SimpleAttributeEditor/SimpleAttributeEditor.test.js +2 -2
- package/esm/SimpleAttributeEditor/styles.d.ts +1 -1
- package/esm/SourceItem/styles.d.ts +1 -1
- package/esm/TextEditor/TextEditor.d.ts +16 -0
- package/esm/TextEditor/TextEditor.js +41 -0
- package/esm/TextEditor/TextEditor.test.d.ts +1 -0
- package/esm/TextEditor/TextEditor.test.js +31 -0
- package/esm/TextEditor/index.d.ts +1 -0
- package/esm/TextEditor/index.js +1 -0
- package/esm/TimestampEditor/TimestampEditor.d.ts +11 -0
- package/esm/TimestampEditor/TimestampEditor.js +59 -0
- package/esm/TimestampEditor/TimestampEditor.test.d.ts +1 -0
- package/esm/TimestampEditor/TimestampEditor.test.js +270 -0
- package/esm/TimestampEditor/index.d.ts +1 -0
- package/esm/TimestampEditor/index.js +1 -0
- package/esm/TypeaheadEditor/TypeaheadEditor.js +4 -4
- package/esm/components/LogicOperator/LogicOperator.js +1 -1
- package/esm/components/MetadataTypesSelector/SelectMetadataTypesList.js +1 -1
- package/esm/components/MetadataTypesSelector/styles.d.ts +1 -1
- package/esm/components/ModeSwitcherSelect/styles.d.ts +1 -1
- package/esm/components/MultiValueSelector/MultiValueSelector.js +8 -8
- package/esm/components/PotentialMatchReviewCard/PotentialMatchReviewCard.js +1 -1
- package/esm/components/ProfileBand/ProfileBand.js +2 -2
- package/esm/components/ProfileCard/ProfileCardContent/ProfileCardContent.js +3 -3
- package/esm/components/ProfilesList/ProfilesList.js +3 -3
- package/esm/components/RelationEditor/RelationEditor.js +2 -2
- package/esm/components/ReltioMap/MapControls/TopRightMapControls/TopRightMapControls.d.ts +2 -2
- package/esm/components/ScreenProfileBand/ScreenProfileBand.js +1 -1
- package/esm/components/SearchHighlighter/SearchHighlighter.js +1 -1
- package/esm/components/SelectAttributesList/SelectAttributesList.js +1 -1
- package/esm/components/SelectorWithOnlyOptionAutoSelect/SelectorWithOnlyOptionAutoSelect.js +1 -1
- package/esm/components/SidePanel/SidePanel.js +3 -3
- package/esm/components/SimpleDropDownSelector/SimpleDropDownSelector.js +1 -1
- package/esm/components/UploadImageDialog/ImageByUrlField/styles.d.ts +1 -1
- package/esm/components/UserSelector/UserSelector.js +5 -5
- package/esm/components/history/DateRangeSelector/DateRangeSelector.js +3 -3
- package/esm/components/history/HistoryActivitySelector/HistoryActivitySelector.js +2 -2
- package/esm/components/index.d.ts +0 -39
- package/esm/components/index.js +0 -39
- package/esm/components/workflow/cards/GenericWorkflowTaskCard/GenericWorkflowTaskCard.js +1 -1
- package/esm/components/workflow/components/AssigneeSelector/AssigneeSelector.js +1 -1
- package/esm/components/workflow/components/AttributesChanges/AttributesChanges.js +2 -2
- package/esm/components/workflow/components/AttributesChanges/components/DiffRenderer/DiffRenderer.js +3 -3
- package/esm/components/workflow/components/AttributesChanges/components/DiffRenderer/styles.d.ts +1 -1
- package/esm/components/workflow/components/DueDateField/DueDateField.js +1 -1
- package/esm/components/workflow/components/DueDateField/styles.d.ts +1 -1
- package/esm/components/workflow/components/PrioritySelector/PrioritySelector.js +1 -1
- package/esm/constants/index.d.ts +1 -0
- package/esm/constants/index.js +1 -0
- package/esm/constants/textField.d.ts +7 -0
- package/esm/constants/textField.js +5 -0
- package/esm/core/errors.js +1 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.js +1 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.js +3 -3
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.js +2 -2
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.specs.js +2 -2
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.js +2 -2
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.js +2 -2
- package/esm/features/activity-log/ActivityLog/components/GroupItem/GroupItem.js +1 -1
- package/esm/features/activity-log/EntityObject/EntityObject.js +1 -1
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.js +1 -1
- package/esm/features/activity-log/RelationObject/RelationObject.js +1 -1
- package/esm/features/crosswalks/AttributesTable/AttributesTable.js +119 -0
- package/esm/features/crosswalks/AttributesTable/AttributesTable.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/AttributesTable.test.js +402 -0
- package/esm/features/crosswalks/AttributesTable/IntegrationAttributesTable.test-data.d.ts +3 -0
- package/esm/features/crosswalks/AttributesTable/IntegrationAttributesTable.test-data.js +47 -0
- package/esm/features/crosswalks/AttributesTable/IntegrationAttributesTable.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/IntegrationAttributesTable.test.js +318 -0
- package/esm/features/crosswalks/AttributesTable/components/AddAttributesButton/AddAttributesButton.d.ts +5 -0
- package/esm/features/crosswalks/AttributesTable/components/AddAttributesButton/AddAttributesButton.js +38 -0
- package/esm/features/crosswalks/AttributesTable/components/AddAttributesButton/AddAttributesButton.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/AddAttributesButton/AddAttributesButton.test.js +137 -0
- package/esm/features/crosswalks/AttributesTable/components/AddAttributesButton/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/AddAttributesButton/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/AddAttributesButton/styles.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/AttributeValuesRenderer.d.ts +19 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/AttributeValuesRenderer.js +19 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/AttributeValuesRenderer.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/AttributeValuesRenderer.test.js +141 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributeValuesRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributesFactory/AttributesFactory.d.ts +4 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributesFactory/AttributesFactory.js +35 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributesFactory/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributesFactory/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer/AttributesHeadCellRenderer.js +35 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer/AttributesHeadCellRenderer.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer/AttributesHeadCellRenderer.test.js +45 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/CommonRowCellRenderer/CommonRowCellRenderer.d.ts +12 -0
- package/esm/features/crosswalks/AttributesTable/components/CommonRowCellRenderer/CommonRowCellRenderer.js +33 -0
- package/esm/features/crosswalks/AttributesTable/components/CommonRowCellRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/CommonRowCellRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.d.ts +8 -0
- package/esm/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.js +34 -0
- package/esm/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.test.js +53 -0
- package/esm/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/ConfirmEditIgnoredDialog/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/CountRenderer/CountRenderer.d.ts +5 -0
- package/esm/features/crosswalks/AttributesTable/components/CountRenderer/CountRenderer.js +10 -0
- package/esm/features/crosswalks/AttributesTable/components/CountRenderer/CountRenderer.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/CountRenderer/CountRenderer.test.js +9 -0
- package/esm/features/crosswalks/AttributesTable/components/CountRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/CountRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/CountRenderer/styles.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/CountRenderer/styles.js +6 -0
- package/esm/features/crosswalks/AttributesTable/components/DefaultCellValueRenderer/DefaultCellValueRenderer.d.ts +5 -0
- package/esm/features/crosswalks/AttributesTable/components/DefaultCellValueRenderer/DefaultCellValueRenderer.js +7 -0
- package/esm/features/crosswalks/AttributesTable/components/DefaultCellValueRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/DefaultCellValueRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/HeadCellRenderer/HeadCellRenderer.d.ts +2 -0
- package/esm/features/crosswalks/AttributesTable/components/HeadCellRenderer/HeadCellRenderer.js +23 -0
- package/esm/features/crosswalks/AttributesTable/components/HeadCellRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/HeadCellRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/HeadCellRenderer/styles.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/HeadCellRenderer/styles.js +10 -0
- package/esm/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/ImageAttributesRenderer.d.ts +2 -0
- package/esm/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/ImageAttributesRenderer.js +31 -0
- package/esm/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/ImageAttributesRenderer.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/ImageAttributesRenderer.test.js +105 -0
- package/esm/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/ImageAttributesRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/NestedAttributesRenderer.d.ts +2 -0
- package/esm/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/NestedAttributesRenderer.js +34 -0
- package/esm/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/NestedAttributesRenderer.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/NestedAttributesRenderer.test.js +106 -0
- package/esm/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/NestedAttributesRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/OvValuesRenderer/OvValuesRenderer.d.ts +9 -0
- package/esm/features/crosswalks/AttributesTable/components/OvValuesRenderer/OvValuesRenderer.js +21 -0
- package/esm/features/crosswalks/AttributesTable/components/OvValuesRenderer/OvValuesRenderer.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/OvValuesRenderer/OvValuesRenderer.test.js +62 -0
- package/esm/features/crosswalks/AttributesTable/components/OvValuesRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/OvValuesRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/OvValuesRenderer/styles.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/OvValuesRenderer/styles.js +33 -0
- package/esm/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/ReferenceAttributesRenderer.d.ts +2 -0
- package/esm/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/ReferenceAttributesRenderer.js +34 -0
- package/esm/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/ReferenceAttributesRenderer.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/ReferenceAttributesRenderer.test.js +188 -0
- package/esm/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/ReferenceAttributesRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RowCellRenderer/RowCellRenderer.d.ts +8 -0
- package/esm/features/crosswalks/AttributesTable/components/RowCellRenderer/RowCellRenderer.js +35 -0
- package/esm/features/crosswalks/AttributesTable/components/RowCellRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RowCellRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RowCellRenderer/styles.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RowCellRenderer/styles.js +7 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/RuleTypeInfoButton.d.ts +9 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/RuleTypeInfoButton.js +83 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/RuleTypeInfoButton.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/RuleTypeInfoButton.test.js +17 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/styles.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeInfoButton/styles.js +34 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeRenderer/RuleTypeRenderer.d.ts +6 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeRenderer/RuleTypeRenderer.js +18 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeRenderer/RuleTypeRenderer.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeRenderer/RuleTypeRenderer.test.js +53 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeRenderer/styles.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/RuleTypeRenderer/styles.js +10 -0
- package/esm/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/SimpleAttributesRenderer.d.ts +2 -0
- package/esm/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/SimpleAttributesRenderer.js +31 -0
- package/esm/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/SimpleAttributesRenderer.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/SimpleAttributesRenderer.test.js +64 -0
- package/esm/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/SimpleAttributesRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSource/WinnerSource.d.ts +6 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSource/WinnerSource.js +17 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSource/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSource/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSource/styles.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSource/styles.js +18 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/WinnerSourcesRenderer.d.ts +6 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/WinnerSourcesRenderer.js +11 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/WinnerSourcesRenderer.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/WinnerSourcesRenderer.test.js +152 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/styles.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/components/WinnerSourcesRenderer/styles.js +7 -0
- package/esm/features/crosswalks/AttributesTable/helpers.d.ts +35 -0
- package/esm/features/crosswalks/AttributesTable/helpers.js +192 -0
- package/esm/features/crosswalks/AttributesTable/helpers.test.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/helpers.test.js +748 -0
- package/esm/features/crosswalks/AttributesTable/index.d.ts +1 -0
- package/esm/features/crosswalks/AttributesTable/index.js +1 -0
- package/esm/features/crosswalks/AttributesTable/styles.d.ts +2 -0
- package/esm/features/crosswalks/AttributesTable/styles.js +43 -0
- package/esm/features/crosswalks/AttributesTable/types.d.ts +64 -0
- package/esm/features/crosswalks/AttributesTable/types.js +1 -0
- package/esm/features/crosswalks/ColoredBlock/ColoredBlock.d.ts +6 -0
- package/esm/features/crosswalks/ColoredBlock/ColoredBlock.js +37 -0
- package/esm/features/crosswalks/ColoredBlock/ColoredBlock.test.d.ts +1 -0
- package/esm/features/crosswalks/ColoredBlock/ColoredBlock.test.js +23 -0
- package/esm/features/crosswalks/ColoredBlock/index.d.ts +1 -0
- package/esm/features/crosswalks/ColoredBlock/index.js +1 -0
- package/esm/features/crosswalks/CopyableValueField/CopyableValueField.d.ts +5 -0
- package/esm/features/crosswalks/CopyableValueField/CopyableValueField.js +12 -0
- package/esm/features/crosswalks/CopyableValueField/CopyableValueField.test.d.ts +1 -0
- package/esm/features/crosswalks/CopyableValueField/CopyableValueField.test.js +23 -0
- package/esm/features/crosswalks/CopyableValueField/index.d.ts +1 -0
- package/esm/features/crosswalks/CopyableValueField/index.js +1 -0
- package/esm/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.d.ts +9 -0
- package/esm/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.js +129 -0
- package/esm/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.test.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.test.js +263 -0
- package/esm/features/crosswalks/CrosswalkAttributes/index.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkAttributes/index.js +1 -0
- package/esm/features/crosswalks/CrosswalkAttributes/styles.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.d.ts +10 -0
- package/esm/features/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.js +31 -0
- package/esm/features/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.test.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.test.js +39 -0
- package/esm/features/crosswalks/CrosswalkDateEditor/IntegrationCrosswalkDateEditor.test.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkDateEditor/IntegrationCrosswalkDateEditor.test.js +132 -0
- package/esm/features/crosswalks/CrosswalkDateEditor/index.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkDateEditor/index.js +1 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.d.ts +2 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.js +25 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.test.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.test.js +53 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/CrosswalkDragPreview.d.ts +6 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/CrosswalkDragPreview.js +18 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/CrosswalkDragPreview.test.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/CrosswalkDragPreview.test.js +28 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/index.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/index.js +1 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/styles.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/components/CrosswalkDragPreview/styles.js +23 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/index.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/index.js +1 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/styles.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkDragLayer/styles.js +14 -0
- package/esm/features/crosswalks/CrosswalkEditor/CrosswalkEditor.d.ts +8 -0
- package/esm/features/crosswalks/CrosswalkEditor/CrosswalkEditor.js +26 -0
- package/esm/features/crosswalks/CrosswalkEditor/CrosswalkEditor.test.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkEditor/CrosswalkEditor.test.js +111 -0
- package/esm/features/crosswalks/CrosswalkEditor/index.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkEditor/index.js +1 -0
- package/esm/features/crosswalks/CrosswalkRow/CrosswalkRow.d.ts +19 -0
- package/esm/features/crosswalks/CrosswalkRow/CrosswalkRow.js +93 -0
- package/esm/features/crosswalks/CrosswalkRow/CrosswalkRow.test.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkRow/CrosswalkRow.test.js +375 -0
- package/esm/features/crosswalks/CrosswalkRow/index.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkRow/index.js +1 -0
- package/esm/features/crosswalks/CrosswalkRow/styles.d.ts +7 -0
- package/esm/features/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.d.ts +7 -0
- package/esm/features/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.js +22 -0
- package/esm/features/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.test.d.ts +1 -0
- package/esm/features/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.test.js +41 -0
- package/esm/features/crosswalks/DummyCrosswalkRow/index.d.ts +1 -0
- package/esm/features/crosswalks/DummyCrosswalkRow/index.js +1 -0
- package/esm/features/crosswalks/ShowDependentLink/ShowDependentLink.d.ts +6 -0
- package/esm/features/crosswalks/ShowDependentLink/ShowDependentLink.js +10 -0
- package/esm/features/crosswalks/ShowDependentLink/ShowDependentLink.test.d.ts +1 -0
- package/esm/features/crosswalks/ShowDependentLink/ShowDependentLink.test.js +20 -0
- package/esm/features/crosswalks/ShowDependentLink/index.d.ts +1 -0
- package/esm/features/crosswalks/ShowDependentLink/index.js +1 -0
- package/esm/features/crosswalks/ShowDependentLink/styles.d.ts +1 -0
- package/esm/features/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.d.ts +19 -0
- package/esm/features/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.js +28 -0
- package/esm/features/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.test.d.ts +1 -0
- package/esm/features/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.test.js +236 -0
- package/esm/features/crosswalks/SourceCrosswalksRow/index.d.ts +1 -0
- package/esm/features/crosswalks/SourceCrosswalksRow/index.js +1 -0
- package/esm/features/crosswalks/hooks/useAttributeActions.js +151 -0
- package/esm/features/crosswalks/hooks/useAttributeActions.test.d.ts +1 -0
- package/esm/features/crosswalks/hooks/useAttributeActions.test.js +883 -0
- package/esm/features/crosswalks/hooks/useCrosswalkActions.test.d.ts +1 -0
- package/esm/features/crosswalks/hooks/useCrosswalkActions.test.js +327 -0
- package/esm/features/crosswalks/hooks/useModifiedEntity.js +151 -0
- package/esm/features/crosswalks/hooks/useModifiedEntity.test.d.ts +1 -0
- package/esm/features/crosswalks/hooks/useModifiedEntity.test.js +497 -0
- package/esm/features/crosswalks/index.d.ts +9 -0
- package/esm/features/crosswalks/index.js +8 -0
- package/esm/features/crosswalks/types/crosswalks.d.ts +12 -0
- package/esm/features/crosswalks/types/events.d.ts +20 -0
- package/esm/features/crosswalks/types/events.js +1 -0
- package/esm/features/crosswalks/types/index.d.ts +3 -0
- package/esm/features/crosswalks/types/index.js +1 -0
- package/esm/hooks/useDateEditor/constants.d.ts +3 -0
- package/esm/hooks/useDateEditor/constants.js +3 -0
- package/esm/hooks/useDateEditor/helpers.js +24 -0
- package/esm/hooks/useDateEditor/index.d.ts +1 -0
- package/esm/hooks/useDateEditor/index.js +1 -0
- package/esm/hooks/useDateEditor/useDateEditor.js +55 -0
- package/esm/index.d.ts +44 -0
- package/esm/index.js +44 -0
- package/package.json +1 -1
- package/cjs/components/ClickAwayProvider/ClickAwayProvider.d.ts +0 -4
- package/cjs/components/ClickAwayProvider/ClickAwayProvider.js +0 -22
- package/cjs/components/CollaborationItem/Avatar/Avatar.js +0 -39
- package/cjs/components/CollaborationItem/CollaborationItem.d.ts +0 -15
- package/cjs/components/CollaborationItem/CollaborationItem.js +0 -51
- package/cjs/components/CollaborationItem/Comment/Comment.js +0 -103
- package/cjs/components/CollaborationItem/CommentContent/CommentContent.js +0 -46
- package/cjs/components/CollaborationItem/CommentTarget/CommentTarget.js +0 -116
- package/cjs/components/CollaborationItem/RepliedComment/RepliedComment.js +0 -83
- package/cjs/components/CollaborationItem/SendMessageArea/SendMessageArea.js +0 -163
- package/cjs/components/CollaborationItem/TextFieldWithMentions/TextFieldWithMentions.js +0 -74
- package/cjs/components/CollaborationPopup/CollaborationPopup.d.ts +0 -12
- package/cjs/components/CollaborationPopup/CollaborationPopup.js +0 -72
- package/cjs/components/CollapseButton/CollapseButton.d.ts +0 -9
- package/cjs/components/CollapseButton/CollapseButton.js +0 -47
- package/cjs/components/ColoredSourceIcon/ColoredSourceIcon.js +0 -45
- package/cjs/components/CommentsContainer/CommentsContainer.d.ts +0 -12
- package/cjs/components/CommentsContainer/CommentsContainer.js +0 -93
- package/cjs/components/CommentsContainer/buttons/AddCommentButton.d.ts +0 -7
- package/cjs/components/CommentsContainer/buttons/AddCommentButton.js +0 -19
- package/cjs/components/CommentsContainer/buttons/CommentButton.d.ts +0 -7
- package/cjs/components/CommentsContainer/buttons/CommentButton.js +0 -20
- package/cjs/components/CommentsContainer/buttons/styles.d.ts +0 -1
- package/cjs/components/CommentsContainer/buttons/styles.js +0 -36
- package/cjs/components/CommentsContainer/styles.js +0 -25
- package/cjs/components/ConfigureColumnsPopup/ConfigureColumnsPopup.d.ts +0 -41
- package/cjs/components/ConfigureColumnsPopup/ConfigureColumnsPopup.js +0 -154
- package/cjs/components/ConfigureColumnsPopup/styles.d.ts +0 -2
- package/cjs/components/ConfigureColumnsPopup/styles.js +0 -13
- package/cjs/components/ConfirmDeleteDialog/ConfirmDeleteDialog.d.ts +0 -7
- package/cjs/components/ConfirmDeleteDialog/ConfirmDeleteDialog.js +0 -26
- package/cjs/components/ConfirmationDialog/ConfirmationDialog.d.ts +0 -15
- package/cjs/components/ConfirmationDialog/ConfirmationDialog.js +0 -28
- package/cjs/components/ConfirmationDialog/styles.d.ts +0 -2
- package/cjs/components/ConfirmationDialog/styles.js +0 -40
- package/cjs/components/ConnectionEditor/ConnectionEditor.js +0 -119
- package/cjs/components/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.d.ts +0 -37
- package/cjs/components/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.js +0 -84
- package/cjs/components/DataTenantBadge/DataTenantBadge.js +0 -29
- package/cjs/components/DataTypeValue/DataTypeValue.d.ts +0 -14
- package/cjs/components/DataTypeValue/DataTypeValue.js +0 -29
- package/cjs/components/DateIntervalSelector/DateIntervalSelector.d.ts +0 -7
- package/cjs/components/DateIntervalSelector/DateIntervalSelector.js +0 -35
- package/cjs/components/DateRangePicker/DateRangePicker.d.ts +0 -11
- package/cjs/components/DateRangePicker/DateRangePicker.js +0 -95
- package/cjs/components/Drawer/Drawer.d.ts +0 -7
- package/cjs/components/Drawer/Drawer.js +0 -76
- package/cjs/components/DropDownSelector/DropDownSelector.d.ts +0 -36
- package/cjs/components/DropDownSelector/DropDownSelector.js +0 -104
- package/cjs/components/DropDownSelector/components/Menu.d.ts +0 -9
- package/cjs/components/DropDownSelector/components/Menu.js +0 -36
- package/cjs/components/DropDownSelector/components/SingleValue.d.ts +0 -9
- package/cjs/components/DropDownSelector/components/SingleValue.js +0 -30
- package/cjs/components/DropDownSelector/components/styles.d.ts +0 -2
- package/cjs/components/DropDownSelector/components/styles.js +0 -36
- package/cjs/components/DropDownSelector/styles.d.ts +0 -16
- package/cjs/components/EmptySearchResult/NoData.d.ts +0 -5
- package/cjs/components/EmptySearchResult/NoData.js +0 -25
- package/cjs/components/EmptySearchResult/NoMessageComponent.d.ts +0 -6
- package/cjs/components/EmptySearchResult/NoMessageComponent.js +0 -39
- package/cjs/components/EmptySearchResult/NoResults.d.ts +0 -5
- package/cjs/components/EmptySearchResult/NoResults.js +0 -24
- package/cjs/components/EmptySearchResult/index.d.ts +0 -2
- package/cjs/components/EmptySearchResult/index.js +0 -7
- package/cjs/components/EmptyState/EmptyState.d.ts +0 -23
- package/cjs/components/EmptyState/EmptyState.js +0 -40
- package/cjs/components/EntityAvatar/EntityAvatar.d.ts +0 -8
- package/cjs/components/EntityAvatar/EntityAvatar.js +0 -25
- package/cjs/components/EntityTypeBadge/EntityTypeBadge.d.ts +0 -8
- package/cjs/components/EntityTypeBadge/EntityTypeBadge.js +0 -27
- package/cjs/components/EntityTypeBadge/styles.d.ts +0 -2
- package/cjs/components/EntityTypeBadge/styles.js +0 -28
- package/cjs/components/EntityTypeIcon/EntityTypeIcon.d.ts +0 -10
- package/cjs/components/EntityTypeIcon/EntityTypeIcon.js +0 -25
- package/cjs/components/EntityTypesSelector/EntityTypesSelector.d.ts +0 -17
- package/cjs/components/EntityTypesSelector/EntityTypesSelector.js +0 -39
- package/cjs/components/EntityUriLink/EntityUriLink.d.ts +0 -7
- package/cjs/components/EntityUriLink/EntityUriLink.js +0 -67
- package/cjs/components/ErrorBoundary/ErrorBoundary.d.ts +0 -13
- package/cjs/components/ErrorBoundary/ErrorBoundary.js +0 -46
- package/cjs/components/ErrorPopup/ErrorPopup.d.ts +0 -13
- package/cjs/components/ErrorPopup/ErrorPopup.js +0 -76
- package/cjs/components/ErrorWrapper/ErrorMessage.d.ts +0 -6
- package/cjs/components/ErrorWrapper/ErrorMessage.js +0 -18
- package/cjs/components/ErrorWrapper/ErrorWrapper.d.ts +0 -11
- package/cjs/components/ErrorWrapper/ErrorWrapper.js +0 -66
- package/cjs/components/ErrorWrapper/styles.d.ts +0 -1
- package/cjs/components/ErrorWrapper/styles.js +0 -18
- package/cjs/components/ExpandableSearchInput/ExpandableSearchInput.js +0 -54
- package/cjs/components/ExternalInvalidRelations/ExternalInvalidRelations.d.ts +0 -10
- package/cjs/components/ExternalInvalidRelations/ExternalInvalidRelations.js +0 -53
- package/cjs/components/ExternalInvalidRelations/styles.d.ts +0 -1
- package/cjs/components/ExternalInvalidRelations/styles.js +0 -10
- package/cjs/components/FlipCard/FlipCard.d.ts +0 -4
- package/cjs/components/FlipCard/FlipCard.js +0 -45
- package/cjs/components/FlipCard/styles.d.ts +0 -2
- package/cjs/components/FlipCard/styles.js +0 -55
- package/cjs/components/FlipCard/types/index.d.ts +0 -16
- package/cjs/components/HideOnShrink/HideOnShrink.d.ts +0 -7
- package/cjs/components/HideOnShrink/HideOnShrink.js +0 -16
- package/cjs/components/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.d.ts +0 -7
- package/cjs/components/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.js +0 -40
- package/cjs/components/HierarchyNodeTitle/HierarchyNodeTitle.js +0 -57
- package/cjs/components/HierarchyNodeTitle/hooks/useEntityDetails.js +0 -34
- package/cjs/components/Highlighter/Highlighter.d.ts +0 -8
- package/cjs/components/Highlighter/Highlighter.js +0 -26
- package/cjs/components/commonReactSelectComponents/DropdownIndicator.d.ts +0 -15
- package/cjs/components/commonReactSelectComponents/DropdownIndicator.js +0 -38
- package/cjs/components/commonReactSelectComponents/DropdownIndicatorWithIconButton.d.ts +0 -14
- package/cjs/components/commonReactSelectComponents/DropdownIndicatorWithIconButton.js +0 -38
- package/cjs/components/commonReactSelectComponents/LoadMoreButton.d.ts +0 -8
- package/cjs/components/commonReactSelectComponents/LoadMoreButton.js +0 -17
- package/cjs/components/commonReactSelectComponents/MenuList.d.ts +0 -2
- package/cjs/components/commonReactSelectComponents/MenuList.js +0 -25
- package/cjs/components/commonReactSelectComponents/MenuWithPopper.d.ts +0 -15
- package/cjs/components/commonReactSelectComponents/MenuWithPopper.js +0 -93
- package/cjs/components/commonReactSelectComponents/OptionWithCheckIcon/OptionWithCheckIcon.d.ts +0 -10
- package/cjs/components/commonReactSelectComponents/OptionWithCheckIcon/OptionWithCheckIcon.js +0 -30
- package/cjs/components/commonReactSelectComponents/arrowIndicatorStyles.d.ts +0 -1
- package/cjs/components/commonReactSelectComponents/arrowIndicatorStyles.js +0 -12
- package/cjs/components/commonReactSelectComponents/menuStyles.d.ts +0 -1
- package/cjs/components/commonReactSelectComponents/menuStyles.js +0 -13
- package/cjs/components/commonReactSelectComponents/styles.d.ts +0 -1
- package/cjs/components/crosswalks/AttributesTable/AddAttributesButton/AddAttributesButton.d.ts +0 -15
- package/cjs/components/crosswalks/AttributesTable/AddAttributesButton/AddAttributesButton.js +0 -45
- package/cjs/components/crosswalks/AttributesTable/AttributesTable.js +0 -147
- package/cjs/components/crosswalks/AttributesTable/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.d.ts +0 -8
- package/cjs/components/crosswalks/AttributesTable/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.js +0 -63
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/AttributeValuesRenderer.d.ts +0 -19
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/AttributeValuesRenderer.js +0 -26
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/AttributesHeadCellRenderer.js +0 -42
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/CommonRowCellRenderer.d.ts +0 -12
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/CommonRowCellRenderer.js +0 -41
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/CountRenderer.d.ts +0 -5
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/CountRenderer.js +0 -14
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/DefaultCellValueRenderer.d.ts +0 -5
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/DefaultCellValueRenderer.js +0 -13
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/HeadCellRenderer.d.ts +0 -3
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/HeadCellRenderer.js +0 -27
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/OvValuesRenderer.d.ts +0 -9
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/OvValuesRenderer.js +0 -23
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RowCellRenderer.d.ts +0 -8
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RowCellRenderer.js +0 -38
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.d.ts +0 -9
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.js +0 -112
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RuleTypeRenderer.d.ts +0 -6
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RuleTypeRenderer.js +0 -22
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/WinnerSourcesRenderer.d.ts +0 -6
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/WinnerSourcesRenderer.js +0 -30
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/AttributesFactory.d.ts +0 -20
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/AttributesFactory.js +0 -40
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ImageAttributesRenderer.d.ts +0 -3
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ImageAttributesRenderer.js +0 -37
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/NestedAttributesRenderer.d.ts +0 -3
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/NestedAttributesRenderer.js +0 -40
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ReferenceAttributesRenderer.d.ts +0 -3
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ReferenceAttributesRenderer.js +0 -40
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/SimpleAttributesRenderer.d.ts +0 -3
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/SimpleAttributesRenderer.js +0 -37
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/styles.d.ts +0 -1
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/styles.js +0 -15
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/styles.d.ts +0 -1
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/styles.js +0 -117
- package/cjs/components/crosswalks/AttributesTable/helpers.d.ts +0 -34
- package/cjs/components/crosswalks/AttributesTable/helpers.js +0 -202
- package/cjs/components/crosswalks/AttributesTable/styles.d.ts +0 -1
- package/cjs/components/crosswalks/AttributesTable/styles.js +0 -26
- package/cjs/components/crosswalks/ColoredBlock/ColoredBlock.d.ts +0 -7
- package/cjs/components/crosswalks/ColoredBlock/ColoredBlock.js +0 -65
- package/cjs/components/crosswalks/CopyableValueField/CopyableValueField.d.ts +0 -5
- package/cjs/components/crosswalks/CopyableValueField/CopyableValueField.js +0 -18
- package/cjs/components/crosswalks/CrosswalkAttributes/CrosswalkAttributes.d.ts +0 -9
- package/cjs/components/crosswalks/CrosswalkAttributes/CrosswalkAttributes.js +0 -158
- package/cjs/components/crosswalks/CrosswalkAttributes/styles.d.ts +0 -1
- package/cjs/components/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.d.ts +0 -10
- package/cjs/components/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.js +0 -60
- package/cjs/components/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.d.ts +0 -3
- package/cjs/components/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.js +0 -53
- package/cjs/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.d.ts +0 -6
- package/cjs/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.js +0 -24
- package/cjs/components/crosswalks/CrosswalkDragLayer/styles.d.ts +0 -1
- package/cjs/components/crosswalks/CrosswalkDragLayer/styles.js +0 -37
- package/cjs/components/crosswalks/CrosswalkEditor/CrosswalkEditor.d.ts +0 -8
- package/cjs/components/crosswalks/CrosswalkEditor/CrosswalkEditor.js +0 -55
- package/cjs/components/crosswalks/CrosswalkRow/CrosswalkRow.d.ts +0 -19
- package/cjs/components/crosswalks/CrosswalkRow/CrosswalkRow.js +0 -121
- package/cjs/components/crosswalks/CrosswalkRow/styles.d.ts +0 -7
- package/cjs/components/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.d.ts +0 -7
- package/cjs/components/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.js +0 -50
- package/cjs/components/crosswalks/ShowDependentLink/ShowDependentLink.d.ts +0 -6
- package/cjs/components/crosswalks/ShowDependentLink/ShowDependentLink.js +0 -16
- package/cjs/components/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.d.ts +0 -19
- package/cjs/components/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.js +0 -57
- package/cjs/components/crosswalks/hooks/useAttributeActions.js +0 -155
- package/cjs/components/crosswalks/hooks/useModifiedEntity.js +0 -155
- package/cjs/components/crosswalks/index.d.ts +0 -9
- package/cjs/components/crosswalks/index.js +0 -22
- package/cjs/components/crosswalks/types/AddCrosswalkEvent.d.ts +0 -6
- package/cjs/components/crosswalks/types/AttributesTableData.d.ts +0 -49
- package/cjs/components/crosswalks/types/AttributesTableData.js +0 -2
- package/cjs/components/crosswalks/types/CreateAttributeEvent.d.ts +0 -5
- package/cjs/components/crosswalks/types/CreateAttributeEvent.js +0 -2
- package/cjs/components/crosswalks/types/CrosswalkType.d.ts +0 -5
- package/cjs/components/crosswalks/types/CrosswalksByOwnerTypeMap.d.ts +0 -5
- package/cjs/components/crosswalks/types/CrosswalksByOwnerTypeMap.js +0 -2
- package/cjs/components/crosswalks/types/CrosswalksByTypes.d.ts +0 -3
- package/cjs/components/crosswalks/types/CrosswalksByTypes.js +0 -2
- package/cjs/components/crosswalks/types/DeleteCrosswalkEvent.d.ts +0 -4
- package/cjs/components/crosswalks/types/DeleteCrosswalkEvent.js +0 -2
- package/cjs/components/crosswalks/types/EditCrosswalkEvent.d.ts +0 -6
- package/cjs/components/crosswalks/types/EditCrosswalkEvent.js +0 -2
- package/cjs/components/crosswalks/types/index.d.ts +0 -8
- package/cjs/components/crosswalks/types/index.js +0 -5
- package/cjs/components/editors/BooleanEditor/BooleanEditor.d.ts +0 -13
- package/cjs/components/editors/BooleanEditor/BooleanEditor.js +0 -41
- package/cjs/components/editors/BooleanRadioEditor/BooleanRadioEditor.d.ts +0 -9
- package/cjs/components/editors/BooleanRadioEditor/BooleanRadioEditor.js +0 -22
- package/cjs/components/editors/CustomDateRangeEditor/CustomDateRangeEditor.d.ts +0 -8
- package/cjs/components/editors/CustomDateRangeEditor/CustomDateRangeEditor.js +0 -84
- package/cjs/components/editors/CustomDateRangeEditor/styles.d.ts +0 -1
- package/cjs/components/editors/DataTypeValueEditor/DataTypeValueEditor.js +0 -52
- package/cjs/components/editors/DataTypeValueEditor/useEditorContext.d.ts +0 -72
- package/cjs/components/editors/DataTypeValueEditor/useEditorContext.js +0 -87
- package/cjs/components/editors/DateEditor/DateEditor.d.ts +0 -11
- package/cjs/components/editors/DateEditor/DateEditor.js +0 -85
- package/cjs/components/editors/DateRangeEditor/DateRangeEditor.d.ts +0 -37
- package/cjs/components/editors/DateRangeEditor/DateRangeEditor.js +0 -82
- package/cjs/components/editors/DateRangeEditor/styles.d.ts +0 -1
- package/cjs/components/editors/DependentLookupEditor/DependentLookupEditor.d.ts +0 -46
- package/cjs/components/editors/DependentLookupEditor/DependentLookupEditor.js +0 -228
- package/cjs/components/editors/DependentLookupEditor/helpers.js +0 -27
- package/cjs/components/editors/DependentLookupEditor/useAutopopulation.d.ts +0 -14
- package/cjs/components/editors/DependentLookupEditor/useAutopopulation.js +0 -22
- package/cjs/components/editors/DependentLookupEditor/useDefaultOptions.d.ts +0 -6
- package/cjs/components/editors/DependentLookupEditor/useDefaultOptions.js +0 -25
- package/cjs/components/editors/DependentLookupEditor/useLookupsResolver.d.ts +0 -7
- package/cjs/components/editors/DependentLookupEditor/useLookupsResolver.js +0 -29
- package/cjs/components/editors/DependentLookupEditor/useSavingFocus.d.ts +0 -2
- package/cjs/components/editors/DependentLookupEditor/useSavingFocus.js +0 -31
- package/cjs/components/editors/DropDownEditor/DropDownEditor.d.ts +0 -16
- package/cjs/components/editors/DropDownEditor/DropDownEditor.js +0 -47
- package/cjs/components/editors/EditorsFactory.d.ts +0 -8
- package/cjs/components/editors/EditorsFactory.js +0 -97
- package/cjs/components/editors/FileTypeEditor/FileTypeEditor.d.ts +0 -9
- package/cjs/components/editors/FileTypeEditor/FileTypeEditor.js +0 -55
- package/cjs/components/editors/FilterEditor/FilterEditor.d.ts +0 -24
- package/cjs/components/editors/FilterEditor/FilterEditor.js +0 -49
- package/cjs/components/editors/FilterEditor/FilterValueEditor.d.ts +0 -25
- package/cjs/components/editors/FilterEditor/FilterValueEditor.js +0 -84
- package/cjs/components/editors/FilterEditor/styles.d.ts +0 -1
- package/cjs/components/editors/FilterEditor/styles.js +0 -15
- package/cjs/components/editors/GroupedDropDownEditor/GroupedDropDownEditor.d.ts +0 -22
- package/cjs/components/editors/GroupedDropDownEditor/GroupedDropDownEditor.js +0 -64
- package/cjs/components/editors/GroupedDropDownEditor/entriesHelpers.js +0 -36
- package/cjs/components/editors/GroupedDropDownEditor/styles.d.ts +0 -1
- package/cjs/components/editors/GroupedDropDownEditor/styles.js +0 -14
- package/cjs/components/editors/LookupEditor/LookupEditor.d.ts +0 -34
- package/cjs/components/editors/LookupEditor/LookupEditor.js +0 -82
- package/cjs/components/editors/NumberEditor/NumberEditor.d.ts +0 -16
- package/cjs/components/editors/NumberEditor/NumberEditor.js +0 -54
- package/cjs/components/editors/RangeDataTypeValueEditor/RangeDataTypeValueEditor.d.ts +0 -18
- package/cjs/components/editors/RangeDataTypeValueEditor/RangeDataTypeValueEditor.js +0 -91
- package/cjs/components/editors/SelectEditor/SelectEditor.d.ts +0 -11
- package/cjs/components/editors/SelectEditor/SelectEditor.js +0 -44
- package/cjs/components/editors/TextEditor/TextEditor.d.ts +0 -17
- package/cjs/components/editors/TextEditor/TextEditor.js +0 -47
- package/cjs/components/editors/TimestampEditor/TimestampEditor.d.ts +0 -11
- package/cjs/components/editors/TimestampEditor/TimestampEditor.js +0 -65
- package/cjs/components/editors/commonComponents/MultiValueChip/MultiValueChip.d.ts +0 -18
- package/cjs/components/editors/commonComponents/MultiValueChip/MultiValueChip.js +0 -39
- package/cjs/components/editors/constants.d.ts +0 -7
- package/cjs/components/editors/constants.js +0 -32
- package/cjs/components/editors/index.d.ts +0 -10
- package/cjs/components/editors/index.js +0 -26
- package/cjs/components/editors/useDateEditor/helpers.js +0 -34
- package/cjs/components/editors/useDateEditor/useDateEditor.js +0 -62
- package/esm/components/ClickAwayProvider/ClickAwayProvider.d.ts +0 -4
- package/esm/components/ClickAwayProvider/ClickAwayProvider.js +0 -17
- package/esm/components/CollaborationItem/Avatar/Avatar.js +0 -32
- package/esm/components/CollaborationItem/CollaborationItem.d.ts +0 -15
- package/esm/components/CollaborationItem/CollaborationItem.js +0 -22
- package/esm/components/CollaborationItem/Comment/Comment.js +0 -73
- package/esm/components/CollaborationItem/CommentContent/CommentContent.js +0 -16
- package/esm/components/CollaborationItem/CommentTarget/CommentTarget.js +0 -86
- package/esm/components/CollaborationItem/RepliedComment/RepliedComment.js +0 -53
- package/esm/components/CollaborationItem/SendMessageArea/SendMessageArea.js +0 -133
- package/esm/components/CollaborationItem/TextFieldWithMentions/TextFieldWithMentions.js +0 -44
- package/esm/components/CollaborationPopup/CollaborationPopup.d.ts +0 -12
- package/esm/components/CollaborationPopup/CollaborationPopup.js +0 -42
- package/esm/components/CollapseButton/CollapseButton.d.ts +0 -9
- package/esm/components/CollapseButton/CollapseButton.js +0 -42
- package/esm/components/ColoredSourceIcon/ColoredSourceIcon.js +0 -17
- package/esm/components/CommentsContainer/CommentsContainer.d.ts +0 -12
- package/esm/components/CommentsContainer/CommentsContainer.js +0 -65
- package/esm/components/CommentsContainer/buttons/AddCommentButton.d.ts +0 -7
- package/esm/components/CommentsContainer/buttons/AddCommentButton.js +0 -14
- package/esm/components/CommentsContainer/buttons/CommentButton.d.ts +0 -7
- package/esm/components/CommentsContainer/buttons/CommentButton.js +0 -15
- package/esm/components/CommentsContainer/buttons/styles.d.ts +0 -1
- package/esm/components/CommentsContainer/buttons/styles.js +0 -33
- package/esm/components/CommentsContainer/styles.js +0 -22
- package/esm/components/ConfigureColumnsPopup/ConfigureColumnsPopup.d.ts +0 -41
- package/esm/components/ConfigureColumnsPopup/ConfigureColumnsPopup.js +0 -124
- package/esm/components/ConfigureColumnsPopup/styles.d.ts +0 -2
- package/esm/components/ConfigureColumnsPopup/styles.js +0 -11
- package/esm/components/ConfirmDeleteDialog/ConfirmDeleteDialog.d.ts +0 -7
- package/esm/components/ConfirmDeleteDialog/ConfirmDeleteDialog.js +0 -21
- package/esm/components/ConfirmationDialog/ConfirmationDialog.d.ts +0 -15
- package/esm/components/ConfirmationDialog/ConfirmationDialog.js +0 -23
- package/esm/components/ConfirmationDialog/styles.d.ts +0 -2
- package/esm/components/ConfirmationDialog/styles.js +0 -37
- package/esm/components/ConnectionEditor/ConnectionEditor.js +0 -89
- package/esm/components/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.d.ts +0 -37
- package/esm/components/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.js +0 -56
- package/esm/components/DataTenantBadge/DataTenantBadge.js +0 -22
- package/esm/components/DataTypeValue/DataTypeValue.d.ts +0 -14
- package/esm/components/DataTypeValue/DataTypeValue.js +0 -24
- package/esm/components/DateIntervalSelector/DateIntervalSelector.d.ts +0 -7
- package/esm/components/DateIntervalSelector/DateIntervalSelector.js +0 -30
- package/esm/components/DateRangePicker/DateRangePicker.d.ts +0 -11
- package/esm/components/DateRangePicker/DateRangePicker.js +0 -67
- package/esm/components/Drawer/Drawer.d.ts +0 -7
- package/esm/components/Drawer/Drawer.js +0 -48
- package/esm/components/DropDownSelector/DropDownSelector.d.ts +0 -36
- package/esm/components/DropDownSelector/DropDownSelector.js +0 -75
- package/esm/components/DropDownSelector/components/Menu.d.ts +0 -9
- package/esm/components/DropDownSelector/components/Menu.js +0 -31
- package/esm/components/DropDownSelector/components/SingleValue.d.ts +0 -9
- package/esm/components/DropDownSelector/components/SingleValue.js +0 -24
- package/esm/components/DropDownSelector/components/styles.d.ts +0 -2
- package/esm/components/DropDownSelector/components/styles.js +0 -33
- package/esm/components/DropDownSelector/styles.d.ts +0 -16
- package/esm/components/EmptySearchResult/NoData.d.ts +0 -5
- package/esm/components/EmptySearchResult/NoData.js +0 -18
- package/esm/components/EmptySearchResult/NoMessageComponent.d.ts +0 -6
- package/esm/components/EmptySearchResult/NoMessageComponent.js +0 -34
- package/esm/components/EmptySearchResult/NoResults.d.ts +0 -5
- package/esm/components/EmptySearchResult/NoResults.js +0 -17
- package/esm/components/EmptySearchResult/index.d.ts +0 -2
- package/esm/components/EmptySearchResult/index.js +0 -2
- package/esm/components/EmptyState/EmptyState.d.ts +0 -23
- package/esm/components/EmptyState/EmptyState.js +0 -34
- package/esm/components/EntityAvatar/EntityAvatar.d.ts +0 -8
- package/esm/components/EntityAvatar/EntityAvatar.js +0 -20
- package/esm/components/EntityTypeBadge/EntityTypeBadge.d.ts +0 -8
- package/esm/components/EntityTypeBadge/EntityTypeBadge.js +0 -22
- package/esm/components/EntityTypeBadge/styles.d.ts +0 -2
- package/esm/components/EntityTypeBadge/styles.js +0 -26
- package/esm/components/EntityTypeIcon/EntityTypeIcon.d.ts +0 -10
- package/esm/components/EntityTypeIcon/EntityTypeIcon.js +0 -20
- package/esm/components/EntityTypesSelector/EntityTypesSelector.d.ts +0 -17
- package/esm/components/EntityTypesSelector/EntityTypesSelector.js +0 -10
- package/esm/components/EntityUriLink/EntityUriLink.d.ts +0 -7
- package/esm/components/EntityUriLink/EntityUriLink.js +0 -42
- package/esm/components/ErrorBoundary/ErrorBoundary.d.ts +0 -13
- package/esm/components/ErrorBoundary/ErrorBoundary.js +0 -41
- package/esm/components/ErrorPopup/ErrorPopup.d.ts +0 -13
- package/esm/components/ErrorPopup/ErrorPopup.js +0 -48
- package/esm/components/ErrorWrapper/ErrorMessage.d.ts +0 -6
- package/esm/components/ErrorWrapper/ErrorMessage.js +0 -13
- package/esm/components/ErrorWrapper/ErrorWrapper.d.ts +0 -11
- package/esm/components/ErrorWrapper/ErrorWrapper.js +0 -38
- package/esm/components/ErrorWrapper/styles.d.ts +0 -1
- package/esm/components/ErrorWrapper/styles.js +0 -15
- package/esm/components/ExpandableSearchInput/ExpandableSearchInput.js +0 -24
- package/esm/components/ExternalInvalidRelations/ExternalInvalidRelations.d.ts +0 -10
- package/esm/components/ExternalInvalidRelations/ExternalInvalidRelations.js +0 -25
- package/esm/components/ExternalInvalidRelations/styles.d.ts +0 -1
- package/esm/components/ExternalInvalidRelations/styles.js +0 -7
- package/esm/components/FlipCard/FlipCard.d.ts +0 -4
- package/esm/components/FlipCard/FlipCard.js +0 -17
- package/esm/components/FlipCard/styles.d.ts +0 -2
- package/esm/components/FlipCard/styles.js +0 -52
- package/esm/components/FlipCard/types/index.d.ts +0 -16
- package/esm/components/HideOnShrink/HideOnShrink.d.ts +0 -7
- package/esm/components/HideOnShrink/HideOnShrink.js +0 -11
- package/esm/components/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.d.ts +0 -7
- package/esm/components/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.js +0 -35
- package/esm/components/HierarchyNodeTitle/HierarchyNodeTitle.js +0 -27
- package/esm/components/HierarchyNodeTitle/hooks/useEntityDetails.js +0 -30
- package/esm/components/Highlighter/Highlighter.d.ts +0 -8
- package/esm/components/Highlighter/Highlighter.js +0 -21
- package/esm/components/commonReactSelectComponents/DropdownIndicator.d.ts +0 -15
- package/esm/components/commonReactSelectComponents/DropdownIndicator.js +0 -33
- package/esm/components/commonReactSelectComponents/DropdownIndicatorWithIconButton.d.ts +0 -14
- package/esm/components/commonReactSelectComponents/DropdownIndicatorWithIconButton.js +0 -33
- package/esm/components/commonReactSelectComponents/LoadMoreButton.d.ts +0 -8
- package/esm/components/commonReactSelectComponents/LoadMoreButton.js +0 -12
- package/esm/components/commonReactSelectComponents/MenuList.d.ts +0 -2
- package/esm/components/commonReactSelectComponents/MenuList.js +0 -20
- package/esm/components/commonReactSelectComponents/MenuWithPopper.d.ts +0 -15
- package/esm/components/commonReactSelectComponents/MenuWithPopper.js +0 -65
- package/esm/components/commonReactSelectComponents/OptionWithCheckIcon/OptionWithCheckIcon.d.ts +0 -10
- package/esm/components/commonReactSelectComponents/OptionWithCheckIcon/OptionWithCheckIcon.js +0 -25
- package/esm/components/commonReactSelectComponents/arrowIndicatorStyles.d.ts +0 -1
- package/esm/components/commonReactSelectComponents/arrowIndicatorStyles.js +0 -9
- package/esm/components/commonReactSelectComponents/menuStyles.d.ts +0 -1
- package/esm/components/commonReactSelectComponents/menuStyles.js +0 -10
- package/esm/components/commonReactSelectComponents/styles.d.ts +0 -1
- package/esm/components/crosswalks/AttributesTable/AddAttributesButton/AddAttributesButton.d.ts +0 -15
- package/esm/components/crosswalks/AttributesTable/AddAttributesButton/AddAttributesButton.js +0 -38
- package/esm/components/crosswalks/AttributesTable/AttributesTable.js +0 -119
- package/esm/components/crosswalks/AttributesTable/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.d.ts +0 -8
- package/esm/components/crosswalks/AttributesTable/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.js +0 -35
- package/esm/components/crosswalks/AttributesTable/cell-renderers/AttributeValuesRenderer.d.ts +0 -19
- package/esm/components/crosswalks/AttributesTable/cell-renderers/AttributeValuesRenderer.js +0 -19
- package/esm/components/crosswalks/AttributesTable/cell-renderers/AttributesHeadCellRenderer.js +0 -35
- package/esm/components/crosswalks/AttributesTable/cell-renderers/CommonRowCellRenderer.d.ts +0 -12
- package/esm/components/crosswalks/AttributesTable/cell-renderers/CommonRowCellRenderer.js +0 -34
- package/esm/components/crosswalks/AttributesTable/cell-renderers/CountRenderer.d.ts +0 -5
- package/esm/components/crosswalks/AttributesTable/cell-renderers/CountRenderer.js +0 -9
- package/esm/components/crosswalks/AttributesTable/cell-renderers/DefaultCellValueRenderer.d.ts +0 -5
- package/esm/components/crosswalks/AttributesTable/cell-renderers/DefaultCellValueRenderer.js +0 -8
- package/esm/components/crosswalks/AttributesTable/cell-renderers/HeadCellRenderer.d.ts +0 -3
- package/esm/components/crosswalks/AttributesTable/cell-renderers/HeadCellRenderer.js +0 -22
- package/esm/components/crosswalks/AttributesTable/cell-renderers/OvValuesRenderer.d.ts +0 -9
- package/esm/components/crosswalks/AttributesTable/cell-renderers/OvValuesRenderer.js +0 -18
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RowCellRenderer.d.ts +0 -8
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RowCellRenderer.js +0 -33
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.d.ts +0 -9
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.js +0 -84
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RuleTypeRenderer.d.ts +0 -6
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RuleTypeRenderer.js +0 -17
- package/esm/components/crosswalks/AttributesTable/cell-renderers/WinnerSourcesRenderer.d.ts +0 -6
- package/esm/components/crosswalks/AttributesTable/cell-renderers/WinnerSourcesRenderer.js +0 -25
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/AttributesFactory.d.ts +0 -20
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/AttributesFactory.js +0 -35
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ImageAttributesRenderer.d.ts +0 -3
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ImageAttributesRenderer.js +0 -32
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/NestedAttributesRenderer.d.ts +0 -3
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/NestedAttributesRenderer.js +0 -35
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ReferenceAttributesRenderer.d.ts +0 -3
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ReferenceAttributesRenderer.js +0 -35
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/SimpleAttributesRenderer.d.ts +0 -3
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/SimpleAttributesRenderer.js +0 -32
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/styles.d.ts +0 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/styles.js +0 -12
- package/esm/components/crosswalks/AttributesTable/cell-renderers/styles.d.ts +0 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/styles.js +0 -114
- package/esm/components/crosswalks/AttributesTable/helpers.d.ts +0 -34
- package/esm/components/crosswalks/AttributesTable/helpers.js +0 -192
- package/esm/components/crosswalks/AttributesTable/styles.d.ts +0 -1
- package/esm/components/crosswalks/AttributesTable/styles.js +0 -23
- package/esm/components/crosswalks/ColoredBlock/ColoredBlock.d.ts +0 -7
- package/esm/components/crosswalks/ColoredBlock/ColoredBlock.js +0 -37
- package/esm/components/crosswalks/CopyableValueField/CopyableValueField.d.ts +0 -5
- package/esm/components/crosswalks/CopyableValueField/CopyableValueField.js +0 -13
- package/esm/components/crosswalks/CrosswalkAttributes/CrosswalkAttributes.d.ts +0 -9
- package/esm/components/crosswalks/CrosswalkAttributes/CrosswalkAttributes.js +0 -130
- package/esm/components/crosswalks/CrosswalkAttributes/styles.d.ts +0 -1
- package/esm/components/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.d.ts +0 -10
- package/esm/components/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.js +0 -32
- package/esm/components/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.d.ts +0 -3
- package/esm/components/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.js +0 -25
- package/esm/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.d.ts +0 -6
- package/esm/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.js +0 -19
- package/esm/components/crosswalks/CrosswalkDragLayer/styles.d.ts +0 -1
- package/esm/components/crosswalks/CrosswalkDragLayer/styles.js +0 -34
- package/esm/components/crosswalks/CrosswalkEditor/CrosswalkEditor.d.ts +0 -8
- package/esm/components/crosswalks/CrosswalkEditor/CrosswalkEditor.js +0 -27
- package/esm/components/crosswalks/CrosswalkRow/CrosswalkRow.d.ts +0 -19
- package/esm/components/crosswalks/CrosswalkRow/CrosswalkRow.js +0 -93
- package/esm/components/crosswalks/CrosswalkRow/styles.d.ts +0 -7
- package/esm/components/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.d.ts +0 -7
- package/esm/components/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.js +0 -22
- package/esm/components/crosswalks/ShowDependentLink/ShowDependentLink.d.ts +0 -6
- package/esm/components/crosswalks/ShowDependentLink/ShowDependentLink.js +0 -11
- package/esm/components/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.d.ts +0 -19
- package/esm/components/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.js +0 -29
- package/esm/components/crosswalks/hooks/useAttributeActions.js +0 -151
- package/esm/components/crosswalks/hooks/useModifiedEntity.js +0 -151
- package/esm/components/crosswalks/index.d.ts +0 -9
- package/esm/components/crosswalks/index.js +0 -8
- package/esm/components/crosswalks/types/AddCrosswalkEvent.d.ts +0 -6
- package/esm/components/crosswalks/types/AttributesTableData.d.ts +0 -49
- package/esm/components/crosswalks/types/CreateAttributeEvent.d.ts +0 -5
- package/esm/components/crosswalks/types/CrosswalkType.d.ts +0 -5
- package/esm/components/crosswalks/types/CrosswalksByOwnerTypeMap.d.ts +0 -5
- package/esm/components/crosswalks/types/CrosswalksByTypes.d.ts +0 -3
- package/esm/components/crosswalks/types/DeleteCrosswalkEvent.d.ts +0 -4
- package/esm/components/crosswalks/types/EditCrosswalkEvent.d.ts +0 -6
- package/esm/components/crosswalks/types/index.d.ts +0 -8
- package/esm/components/crosswalks/types/index.js +0 -1
- package/esm/components/editors/BooleanEditor/BooleanEditor.d.ts +0 -13
- package/esm/components/editors/BooleanEditor/BooleanEditor.js +0 -36
- package/esm/components/editors/BooleanRadioEditor/BooleanRadioEditor.d.ts +0 -9
- package/esm/components/editors/BooleanRadioEditor/BooleanRadioEditor.js +0 -17
- package/esm/components/editors/CustomDateRangeEditor/CustomDateRangeEditor.d.ts +0 -8
- package/esm/components/editors/CustomDateRangeEditor/CustomDateRangeEditor.js +0 -56
- package/esm/components/editors/CustomDateRangeEditor/styles.d.ts +0 -1
- package/esm/components/editors/DataTypeValueEditor/DataTypeValueEditor.js +0 -47
- package/esm/components/editors/DataTypeValueEditor/useEditorContext.d.ts +0 -72
- package/esm/components/editors/DataTypeValueEditor/useEditorContext.js +0 -85
- package/esm/components/editors/DateEditor/DateEditor.d.ts +0 -11
- package/esm/components/editors/DateEditor/DateEditor.js +0 -57
- package/esm/components/editors/DateRangeEditor/DateRangeEditor.d.ts +0 -37
- package/esm/components/editors/DateRangeEditor/DateRangeEditor.js +0 -54
- package/esm/components/editors/DateRangeEditor/styles.d.ts +0 -1
- package/esm/components/editors/DependentLookupEditor/DependentLookupEditor.d.ts +0 -46
- package/esm/components/editors/DependentLookupEditor/DependentLookupEditor.js +0 -199
- package/esm/components/editors/DependentLookupEditor/helpers.js +0 -23
- package/esm/components/editors/DependentLookupEditor/useAutopopulation.d.ts +0 -14
- package/esm/components/editors/DependentLookupEditor/useAutopopulation.js +0 -20
- package/esm/components/editors/DependentLookupEditor/useDefaultOptions.d.ts +0 -6
- package/esm/components/editors/DependentLookupEditor/useDefaultOptions.js +0 -23
- package/esm/components/editors/DependentLookupEditor/useLookupsResolver.d.ts +0 -7
- package/esm/components/editors/DependentLookupEditor/useLookupsResolver.js +0 -27
- package/esm/components/editors/DependentLookupEditor/useSavingFocus.d.ts +0 -2
- package/esm/components/editors/DependentLookupEditor/useSavingFocus.js +0 -29
- package/esm/components/editors/DropDownEditor/DropDownEditor.d.ts +0 -16
- package/esm/components/editors/DropDownEditor/DropDownEditor.js +0 -42
- package/esm/components/editors/EditorsFactory.d.ts +0 -8
- package/esm/components/editors/EditorsFactory.js +0 -92
- package/esm/components/editors/FileTypeEditor/FileTypeEditor.d.ts +0 -9
- package/esm/components/editors/FileTypeEditor/FileTypeEditor.js +0 -27
- package/esm/components/editors/FilterEditor/FilterEditor.d.ts +0 -24
- package/esm/components/editors/FilterEditor/FilterEditor.js +0 -44
- package/esm/components/editors/FilterEditor/FilterValueEditor.d.ts +0 -25
- package/esm/components/editors/FilterEditor/FilterValueEditor.js +0 -79
- package/esm/components/editors/FilterEditor/styles.d.ts +0 -1
- package/esm/components/editors/FilterEditor/styles.js +0 -12
- package/esm/components/editors/GroupedDropDownEditor/GroupedDropDownEditor.d.ts +0 -22
- package/esm/components/editors/GroupedDropDownEditor/GroupedDropDownEditor.js +0 -57
- package/esm/components/editors/GroupedDropDownEditor/entriesHelpers.js +0 -32
- package/esm/components/editors/GroupedDropDownEditor/styles.d.ts +0 -1
- package/esm/components/editors/GroupedDropDownEditor/styles.js +0 -11
- package/esm/components/editors/LookupEditor/LookupEditor.d.ts +0 -34
- package/esm/components/editors/LookupEditor/LookupEditor.js +0 -54
- package/esm/components/editors/LookupEditor/entriesHelpers.js +0 -30
- package/esm/components/editors/NumberEditor/NumberEditor.d.ts +0 -16
- package/esm/components/editors/NumberEditor/NumberEditor.js +0 -49
- package/esm/components/editors/RangeDataTypeValueEditor/RangeDataTypeValueEditor.d.ts +0 -18
- package/esm/components/editors/RangeDataTypeValueEditor/RangeDataTypeValueEditor.js +0 -63
- package/esm/components/editors/SelectEditor/SelectEditor.d.ts +0 -11
- package/esm/components/editors/SelectEditor/SelectEditor.js +0 -39
- package/esm/components/editors/TextEditor/TextEditor.d.ts +0 -17
- package/esm/components/editors/TextEditor/TextEditor.js +0 -42
- package/esm/components/editors/TimestampEditor/TimestampEditor.d.ts +0 -11
- package/esm/components/editors/TimestampEditor/TimestampEditor.js +0 -60
- package/esm/components/editors/commonComponents/MultiValueChip/MultiValueChip.d.ts +0 -18
- package/esm/components/editors/commonComponents/MultiValueChip/MultiValueChip.js +0 -34
- package/esm/components/editors/constants.d.ts +0 -7
- package/esm/components/editors/constants.js +0 -29
- package/esm/components/editors/index.d.ts +0 -10
- package/esm/components/editors/index.js +0 -10
- package/esm/components/editors/useDateEditor/helpers.js +0 -24
- package/esm/components/editors/useDateEditor/useDateEditor.js +0 -55
- /package/{esm/components/FlipCard/types/index.js → cjs/BooleanRadioEditor/BooleanRadioEditor.test.d.ts} +0 -0
- /package/{esm/components/crosswalks/types/AddCrosswalkEvent.js → cjs/BooleanRadioEditor/components/BooleanEditor/BooleanEditor.test.d.ts} +0 -0
- /package/cjs/{components/editors/BooleanRadioEditor → BooleanRadioEditor}/styles.d.ts +0 -0
- /package/cjs/{components/editors/BooleanRadioEditor → BooleanRadioEditor}/styles.js +0 -0
- /package/{esm/components/crosswalks/types/AttributesTableData.js → cjs/CollaborationItem/CollaborationItem.test.d.ts} +0 -0
- /package/{esm/components/crosswalks/types/CreateAttributeEvent.js → cjs/CollaborationItem/IntegrationCollaborationItem.test.d.ts} +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/Avatar/Avatar.d.ts +0 -0
- /package/{esm/components/crosswalks/types/CrosswalksByOwnerTypeMap.js → cjs/CollaborationItem/components/Avatar/Avatar.test.d.ts} +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/Avatar/styles.d.ts +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/Avatar/styles.js +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/Comment/Comment.d.ts +0 -0
- /package/{esm/components/crosswalks/types/CrosswalksByTypes.js → cjs/CollaborationItem/components/Comment/Comment.test.d.ts} +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/Comment/styles.d.ts +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/Comment/styles.js +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/CommentContent/CommentContent.d.ts +0 -0
- /package/{esm/components/crosswalks/types/DeleteCrosswalkEvent.js → cjs/CollaborationItem/components/CommentContent/CommentContent.test.d.ts} +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/CommentContent/styles.d.ts +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/CommentContent/styles.js +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/CommentTarget/CommentTarget.d.ts +0 -0
- /package/{esm/components/crosswalks/types/EditCrosswalkEvent.js → cjs/CollaborationItem/components/CommentTarget/CommentTarget.test.d.ts} +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/CommentTarget/styles.d.ts +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/CommentTarget/styles.js +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/RepliedComment/RepliedComment.d.ts +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/RepliedComment/styles.d.ts +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/RepliedComment/styles.js +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/SendMessageArea/SendMessageArea.d.ts +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/SendMessageArea/styles.d.ts +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/SendMessageArea/styles.js +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/TextFieldWithMentions/TextFieldWithMentions.d.ts +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/TextFieldWithMentions/styles.d.ts +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem/components}/TextFieldWithMentions/styles.js +0 -0
- /package/cjs/{components/CollaborationItem/utils/index.d.ts → CollaborationItem/helpers.d.ts} +0 -0
- /package/cjs/{components/CollaborationItem/utils/index.js → CollaborationItem/helpers.js} +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem}/styles.d.ts +0 -0
- /package/cjs/{components/CollaborationItem → CollaborationItem}/styles.js +0 -0
- /package/cjs/{components/CollapseButton → CollapseButton}/styles.d.ts +0 -0
- /package/cjs/{components/CollapseButton → CollapseButton}/styles.js +0 -0
- /package/cjs/{components/ColoredSourceIcon → ColoredSourceIcon}/ColoredSourceIcon.d.ts +0 -0
- /package/cjs/{components/ColoredSourceIcon → ColoredSourceIcon}/styles.d.ts +0 -0
- /package/cjs/{components/ColoredSourceIcon → ColoredSourceIcon}/styles.js +0 -0
- /package/cjs/{components → CommentsContainer/components}/CollaborationPopup/styles.d.ts +0 -0
- /package/cjs/{components → CommentsContainer/components}/CollaborationPopup/styles.js +0 -0
- /package/cjs/{components/CommentsContainer → CommentsContainer}/styles.d.ts +0 -0
- /package/cjs/{components/ConnectionEditor → ConnectionEditor}/ConnectionEditor.d.ts +0 -0
- /package/cjs/{components/ConnectionEditor → ConnectionEditor}/index.d.ts +0 -0
- /package/cjs/{components/ConnectionEditor → ConnectionEditor}/index.js +0 -0
- /package/cjs/{components/ConnectionEditor → ConnectionEditor}/styles.d.ts +0 -0
- /package/cjs/{components/ConnectionEditor → ConnectionEditor}/styles.js +0 -0
- /package/cjs/{components/editors/CustomDateRangeEditor → CustomDateRangeEditor}/styles.js +0 -0
- /package/cjs/{components/DataTenantBadge → DataTenantBadge}/DataTenantBadge.d.ts +0 -0
- /package/cjs/{components/DataTenantBadge → DataTenantBadge}/styles.d.ts +0 -0
- /package/cjs/{components/DataTenantBadge → DataTenantBadge}/styles.js +0 -0
- /package/cjs/{components/editors/DataTypeValueEditor → DataTypeValueEditor}/DataTypeValueEditor.d.ts +0 -0
- /package/cjs/{components/editors/DateEditor → DateEditor}/styles.d.ts +0 -0
- /package/cjs/{components/editors/DateEditor → DateEditor}/styles.js +0 -0
- /package/cjs/{components/DateIntervalSelector → DateIntervalSelector}/styles.d.ts +0 -0
- /package/cjs/{components/DateIntervalSelector → DateIntervalSelector}/styles.js +0 -0
- /package/cjs/{components/editors/DateRangeEditor → DateRangeEditor}/styles.js +0 -0
- /package/cjs/{components/DateRangePicker → DateRangePicker}/styles.d.ts +0 -0
- /package/cjs/{components/DateRangePicker → DateRangePicker}/styles.js +0 -0
- /package/cjs/{components/editors/DependentLookupEditor → DependentLookupEditor}/helpers.d.ts +0 -0
- /package/cjs/{components/editors/DependentLookupEditor → DependentLookupEditor}/styles.d.ts +0 -0
- /package/cjs/{components/editors/DependentLookupEditor → DependentLookupEditor}/styles.js +0 -0
- /package/cjs/{components/DropDownSelector → DropDownSelector}/styles.js +0 -0
- /package/cjs/{components/EmptySearchResult → EmptySearchResult}/styles.d.ts +0 -0
- /package/cjs/{components/EmptySearchResult → EmptySearchResult}/styles.js +0 -0
- /package/cjs/{components/EmptyState → EmptyState}/styles.d.ts +0 -0
- /package/cjs/{components/EmptyState → EmptyState}/styles.js +0 -0
- /package/cjs/{components/EntityAvatar → EntityAvatar}/no-photo.svg.d.ts +0 -0
- /package/cjs/{components/EntityAvatar → EntityAvatar}/no-photo.svg.js +0 -0
- /package/cjs/{components/ErrorPopup → ErrorPopup}/styles.d.ts +0 -0
- /package/cjs/{components/ErrorPopup → ErrorPopup}/styles.js +0 -0
- /package/cjs/{components/ExpandableSearchInput → ExpandableSearchInput}/ExpandableSearchInput.d.ts +0 -0
- /package/cjs/{components/ExpandableSearchInput → ExpandableSearchInput}/styles.d.ts +0 -0
- /package/cjs/{components/ExpandableSearchInput → ExpandableSearchInput}/styles.js +0 -0
- /package/cjs/{components/editors/FileTypeEditor → FileTypeEditor}/styles.d.ts +0 -0
- /package/cjs/{components/editors/FileTypeEditor → FileTypeEditor}/styles.js +0 -0
- /package/cjs/{components/editors → FilterValueEditor/components}/RangeDataTypeValueEditor/styles.d.ts +0 -0
- /package/cjs/{components/editors → FilterValueEditor/components}/RangeDataTypeValueEditor/styles.js +0 -0
- /package/cjs/{components/HierarchicalAttributeTooltip → HierarchicalAttributeTooltip}/styles.d.ts +0 -0
- /package/cjs/{components/HierarchicalAttributeTooltip → HierarchicalAttributeTooltip}/styles.js +0 -0
- /package/cjs/{components/HierarchyNodeTitle → HierarchyNodeTitle}/HierarchyNodeTitle.d.ts +0 -0
- /package/cjs/{components/HierarchyNodeTitle → HierarchyNodeTitle}/styles.d.ts +0 -0
- /package/cjs/{components/HierarchyNodeTitle → HierarchyNodeTitle}/styles.js +0 -0
- /package/cjs/{components/HierarchyNodeTitle/hooks → HierarchyNodeTitle}/useEntityDetails.d.ts +0 -0
- /package/cjs/{components/Highlighter → Highlighter}/styles.d.ts +0 -0
- /package/cjs/{components/Highlighter → Highlighter}/styles.js +0 -0
- /package/cjs/{components/editors/GroupedDropDownEditor/entriesHelpers.d.ts → LookupEditor/components/GroupedDropDownEditor/helpers.d.ts} +0 -0
- /package/cjs/{components/editors/LookupEditor/entriesHelpers.d.ts → LookupEditor/helpers.d.ts} +0 -0
- /package/cjs/{components/editors/LookupEditor/entriesHelpers.js → LookupEditor/helpers.js} +0 -0
- /package/cjs/{components/commonReactSelectComponents → ReactSelectLoadMoreButton}/styles.js +0 -0
- /package/cjs/{components/commonReactSelectComponents/OptionWithCheckIcon → ReactSelectOptionWithCheckIcon}/styles.d.ts +0 -0
- /package/cjs/{components/commonReactSelectComponents/OptionWithCheckIcon → ReactSelectOptionWithCheckIcon}/styles.js +0 -0
- /package/cjs/{components/editors/TimestampEditor → TimestampEditor}/styles.d.ts +0 -0
- /package/cjs/{components/editors/TimestampEditor → TimestampEditor}/styles.js +0 -0
- /package/cjs/{components → features}/crosswalks/AttributesTable/AttributesTable.d.ts +0 -0
- /package/cjs/{components/crosswalks/AttributesTable → features/crosswalks/AttributesTable/components}/AddAttributesButton/styles.d.ts +0 -0
- /package/cjs/{components/crosswalks/AttributesTable → features/crosswalks/AttributesTable/components}/AddAttributesButton/styles.js +0 -0
- /package/cjs/{components/crosswalks/AttributesTable/cell-renderers → features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer}/AttributesHeadCellRenderer.d.ts +0 -0
- /package/cjs/{components/crosswalks/ShowDependentLink → features/crosswalks/AttributesTable/components/CountRenderer}/styles.d.ts +0 -0
- /package/{esm/components/CollaborationItem/Avatar → cjs/features/crosswalks/AttributesTable/components/HeadCellRenderer}/styles.d.ts +0 -0
- /package/{esm/components/CollaborationItem/CommentContent → cjs/features/crosswalks/AttributesTable/components/RowCellRenderer}/styles.d.ts +0 -0
- /package/cjs/{components/FlipCard/types/index.js → features/crosswalks/AttributesTable/types.js} +0 -0
- /package/cjs/{components → features}/crosswalks/ColoredBlock/styles.d.ts +0 -0
- /package/cjs/{components → features}/crosswalks/ColoredBlock/styles.js +0 -0
- /package/cjs/{components → features}/crosswalks/CopyableValueField/styles.d.ts +0 -0
- /package/cjs/{components → features}/crosswalks/CopyableValueField/styles.js +0 -0
- /package/cjs/{components → features}/crosswalks/CrosswalkAttributes/styles.js +0 -0
- /package/cjs/{components → features}/crosswalks/CrosswalkDateEditor/styles.d.ts +0 -0
- /package/cjs/{components → features}/crosswalks/CrosswalkDateEditor/styles.js +0 -0
- /package/cjs/{components → features}/crosswalks/CrosswalkEditor/styles.d.ts +0 -0
- /package/cjs/{components → features}/crosswalks/CrosswalkEditor/styles.js +0 -0
- /package/cjs/{components → features}/crosswalks/CrosswalkRow/styles.js +0 -0
- /package/cjs/{components → features}/crosswalks/DummyCrosswalkRow/styles.d.ts +0 -0
- /package/cjs/{components → features}/crosswalks/DummyCrosswalkRow/styles.js +0 -0
- /package/{esm/components/crosswalks/AttributesTable/AddAttributesButton → cjs/features/crosswalks/ShowDependentLink}/styles.d.ts +0 -0
- /package/cjs/{components → features}/crosswalks/ShowDependentLink/styles.js +0 -0
- /package/cjs/{components → features}/crosswalks/hooks/useAttributeActions.d.ts +0 -0
- /package/cjs/{components → features}/crosswalks/hooks/useCrosswalkActions.d.ts +0 -0
- /package/cjs/{components → features}/crosswalks/hooks/useCrosswalkActions.js +0 -0
- /package/cjs/{components → features}/crosswalks/hooks/useModifiedEntity.d.ts +0 -0
- /package/cjs/{components/crosswalks/types/CrosswalkType.js → features/crosswalks/types/crosswalks.js} +0 -0
- /package/cjs/{components/crosswalks/types/AddCrosswalkEvent.js → features/crosswalks/types/events.js} +0 -0
- /package/cjs/{components → features}/crosswalks/utils/legend.d.ts +0 -0
- /package/cjs/{components → features}/crosswalks/utils/legend.js +0 -0
- /package/cjs/{components/editors → hooks}/useDateEditor/helpers.d.ts +0 -0
- /package/cjs/{components/editors → hooks}/useDateEditor/useDateEditor.d.ts +0 -0
- /package/esm/{components/editors/BooleanRadioEditor → BooleanRadioEditor}/styles.d.ts +0 -0
- /package/esm/{components/editors/BooleanRadioEditor → BooleanRadioEditor}/styles.js +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/Avatar/Avatar.d.ts +0 -0
- /package/esm/{components/crosswalks/ShowDependentLink → CollaborationItem/components/Avatar}/styles.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/Avatar/styles.js +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/Comment/Comment.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/Comment/styles.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/Comment/styles.js +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/CommentContent/CommentContent.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/CommentContent/styles.js +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/CommentTarget/CommentTarget.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/CommentTarget/styles.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/CommentTarget/styles.js +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/RepliedComment/RepliedComment.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/RepliedComment/styles.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/RepliedComment/styles.js +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/SendMessageArea/SendMessageArea.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/SendMessageArea/styles.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/SendMessageArea/styles.js +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/TextFieldWithMentions/TextFieldWithMentions.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/TextFieldWithMentions/styles.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem/components}/TextFieldWithMentions/styles.js +0 -0
- /package/esm/{components/CollaborationItem/utils/index.d.ts → CollaborationItem/helpers.d.ts} +0 -0
- /package/esm/{components/CollaborationItem/utils/index.js → CollaborationItem/helpers.js} +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem}/styles.d.ts +0 -0
- /package/esm/{components/CollaborationItem → CollaborationItem}/styles.js +0 -0
- /package/esm/{components/CollapseButton → CollapseButton}/styles.d.ts +0 -0
- /package/esm/{components/CollapseButton → CollapseButton}/styles.js +0 -0
- /package/esm/{components/ColoredSourceIcon → ColoredSourceIcon}/ColoredSourceIcon.d.ts +0 -0
- /package/esm/{components/ColoredSourceIcon → ColoredSourceIcon}/styles.d.ts +0 -0
- /package/esm/{components/ColoredSourceIcon → ColoredSourceIcon}/styles.js +0 -0
- /package/esm/{components → CommentsContainer/components}/CollaborationPopup/styles.d.ts +0 -0
- /package/esm/{components → CommentsContainer/components}/CollaborationPopup/styles.js +0 -0
- /package/esm/{components/CommentsContainer → CommentsContainer}/styles.d.ts +0 -0
- /package/esm/{components/ConnectionEditor → ConnectionEditor}/ConnectionEditor.d.ts +0 -0
- /package/esm/{components/ConnectionEditor → ConnectionEditor}/index.d.ts +0 -0
- /package/esm/{components/ConnectionEditor → ConnectionEditor}/index.js +0 -0
- /package/esm/{components/ConnectionEditor → ConnectionEditor}/styles.d.ts +0 -0
- /package/esm/{components/ConnectionEditor → ConnectionEditor}/styles.js +0 -0
- /package/esm/{components/editors/CustomDateRangeEditor → CustomDateRangeEditor}/styles.js +0 -0
- /package/esm/{components/DataTenantBadge → DataTenantBadge}/DataTenantBadge.d.ts +0 -0
- /package/esm/{components/DataTenantBadge → DataTenantBadge}/styles.d.ts +0 -0
- /package/esm/{components/DataTenantBadge → DataTenantBadge}/styles.js +0 -0
- /package/esm/{components/editors/DataTypeValueEditor → DataTypeValueEditor}/DataTypeValueEditor.d.ts +0 -0
- /package/esm/{components/editors/DateEditor → DateEditor}/styles.d.ts +0 -0
- /package/esm/{components/editors/DateEditor → DateEditor}/styles.js +0 -0
- /package/esm/{components/DateIntervalSelector → DateIntervalSelector}/styles.d.ts +0 -0
- /package/esm/{components/DateIntervalSelector → DateIntervalSelector}/styles.js +0 -0
- /package/esm/{components/editors/DateRangeEditor → DateRangeEditor}/styles.js +0 -0
- /package/esm/{components/DateRangePicker → DateRangePicker}/styles.d.ts +0 -0
- /package/esm/{components/DateRangePicker → DateRangePicker}/styles.js +0 -0
- /package/esm/{components/editors/DependentLookupEditor → DependentLookupEditor}/helpers.d.ts +0 -0
- /package/esm/{components/editors/DependentLookupEditor → DependentLookupEditor}/styles.d.ts +0 -0
- /package/esm/{components/editors/DependentLookupEditor → DependentLookupEditor}/styles.js +0 -0
- /package/esm/{components/DropDownSelector → DropDownSelector}/styles.js +0 -0
- /package/esm/{components/EmptySearchResult → EmptySearchResult}/styles.d.ts +0 -0
- /package/esm/{components/EmptySearchResult → EmptySearchResult}/styles.js +0 -0
- /package/esm/{components/EmptyState → EmptyState}/styles.d.ts +0 -0
- /package/esm/{components/EmptyState → EmptyState}/styles.js +0 -0
- /package/esm/{components/EntityAvatar → EntityAvatar}/no-photo.svg.d.ts +0 -0
- /package/esm/{components/EntityAvatar → EntityAvatar}/no-photo.svg.js +0 -0
- /package/esm/{components/ErrorPopup → ErrorPopup}/styles.d.ts +0 -0
- /package/esm/{components/ErrorPopup → ErrorPopup}/styles.js +0 -0
- /package/esm/{components/ExpandableSearchInput → ExpandableSearchInput}/ExpandableSearchInput.d.ts +0 -0
- /package/esm/{components/ExpandableSearchInput → ExpandableSearchInput}/styles.d.ts +0 -0
- /package/esm/{components/ExpandableSearchInput → ExpandableSearchInput}/styles.js +0 -0
- /package/esm/{components/editors/FileTypeEditor → FileTypeEditor}/styles.d.ts +0 -0
- /package/esm/{components/editors/FileTypeEditor → FileTypeEditor}/styles.js +0 -0
- /package/esm/{components/editors → FilterValueEditor/components}/RangeDataTypeValueEditor/styles.d.ts +0 -0
- /package/esm/{components/editors → FilterValueEditor/components}/RangeDataTypeValueEditor/styles.js +0 -0
- /package/esm/{components/HierarchicalAttributeTooltip → HierarchicalAttributeTooltip}/styles.d.ts +0 -0
- /package/esm/{components/HierarchicalAttributeTooltip → HierarchicalAttributeTooltip}/styles.js +0 -0
- /package/esm/{components/HierarchyNodeTitle → HierarchyNodeTitle}/HierarchyNodeTitle.d.ts +0 -0
- /package/esm/{components/HierarchyNodeTitle → HierarchyNodeTitle}/styles.d.ts +0 -0
- /package/esm/{components/HierarchyNodeTitle → HierarchyNodeTitle}/styles.js +0 -0
- /package/esm/{components/HierarchyNodeTitle/hooks → HierarchyNodeTitle}/useEntityDetails.d.ts +0 -0
- /package/esm/{components/Highlighter → Highlighter}/styles.d.ts +0 -0
- /package/esm/{components/Highlighter → Highlighter}/styles.js +0 -0
- /package/esm/{components/editors/GroupedDropDownEditor/entriesHelpers.d.ts → LookupEditor/components/GroupedDropDownEditor/helpers.d.ts} +0 -0
- /package/esm/{components/editors/LookupEditor/entriesHelpers.d.ts → LookupEditor/helpers.d.ts} +0 -0
- /package/esm/{components/commonReactSelectComponents → ReactSelectLoadMoreButton}/styles.js +0 -0
- /package/esm/{components/commonReactSelectComponents/OptionWithCheckIcon → ReactSelectOptionWithCheckIcon}/styles.d.ts +0 -0
- /package/esm/{components/commonReactSelectComponents/OptionWithCheckIcon → ReactSelectOptionWithCheckIcon}/styles.js +0 -0
- /package/esm/{components/editors/TimestampEditor → TimestampEditor}/styles.d.ts +0 -0
- /package/esm/{components/editors/TimestampEditor → TimestampEditor}/styles.js +0 -0
- /package/esm/{components → features}/crosswalks/AttributesTable/AttributesTable.d.ts +0 -0
- /package/esm/{components/crosswalks/AttributesTable → features/crosswalks/AttributesTable/components}/AddAttributesButton/styles.js +0 -0
- /package/esm/{components/crosswalks/AttributesTable/cell-renderers → features/crosswalks/AttributesTable/components/AttributesHeadCellRenderer}/AttributesHeadCellRenderer.d.ts +0 -0
- /package/esm/{components → features}/crosswalks/ColoredBlock/styles.d.ts +0 -0
- /package/esm/{components → features}/crosswalks/ColoredBlock/styles.js +0 -0
- /package/esm/{components → features}/crosswalks/CopyableValueField/styles.d.ts +0 -0
- /package/esm/{components → features}/crosswalks/CopyableValueField/styles.js +0 -0
- /package/esm/{components → features}/crosswalks/CrosswalkAttributes/styles.js +0 -0
- /package/esm/{components → features}/crosswalks/CrosswalkDateEditor/styles.d.ts +0 -0
- /package/esm/{components → features}/crosswalks/CrosswalkDateEditor/styles.js +0 -0
- /package/esm/{components → features}/crosswalks/CrosswalkEditor/styles.d.ts +0 -0
- /package/esm/{components → features}/crosswalks/CrosswalkEditor/styles.js +0 -0
- /package/esm/{components → features}/crosswalks/CrosswalkRow/styles.js +0 -0
- /package/esm/{components → features}/crosswalks/DummyCrosswalkRow/styles.d.ts +0 -0
- /package/esm/{components → features}/crosswalks/DummyCrosswalkRow/styles.js +0 -0
- /package/esm/{components → features}/crosswalks/ShowDependentLink/styles.js +0 -0
- /package/esm/{components → features}/crosswalks/hooks/useAttributeActions.d.ts +0 -0
- /package/esm/{components → features}/crosswalks/hooks/useCrosswalkActions.d.ts +0 -0
- /package/esm/{components → features}/crosswalks/hooks/useCrosswalkActions.js +0 -0
- /package/esm/{components → features}/crosswalks/hooks/useModifiedEntity.d.ts +0 -0
- /package/esm/{components/crosswalks/types/CrosswalkType.js → features/crosswalks/types/crosswalks.js} +0 -0
- /package/esm/{components → features}/crosswalks/utils/legend.d.ts +0 -0
- /package/esm/{components → features}/crosswalks/utils/legend.js +0 -0
- /package/esm/{components/editors → hooks}/useDateEditor/helpers.d.ts +0 -0
- /package/esm/{components/editors → hooks}/useDateEditor/useDateEditor.d.ts +0 -0
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { getSourceSystemLabel } from '@reltio/mdm-sdk';
|
|
3
|
-
import Typography from '@mui/material/Typography';
|
|
4
|
-
import ColoredBlock from '../ColoredBlock/ColoredBlock';
|
|
5
|
-
import { useCrosswalkColor } from '../../../contexts/CrosswalksDisplayContext';
|
|
6
|
-
import { SourceIcon } from '../../../SourceIcon';
|
|
7
|
-
import { useMdmMetadata } from '../../../contexts';
|
|
8
|
-
import { useStyles } from './styles';
|
|
9
|
-
var CrosswalkDragPreview = function (_a) {
|
|
10
|
-
var crosswalk = _a.crosswalk;
|
|
11
|
-
var styles = useStyles();
|
|
12
|
-
var metadata = useMdmMetadata();
|
|
13
|
-
var color = useCrosswalkColor(crosswalk);
|
|
14
|
-
var sourceSystemLabel = getSourceSystemLabel(metadata, crosswalk.type);
|
|
15
|
-
return (React.createElement(ColoredBlock, { color: color, className: styles.crosswalkPreview },
|
|
16
|
-
React.createElement(SourceIcon, { className: styles.sourceIcon, sourceType: crosswalk.type }),
|
|
17
|
-
React.createElement(Typography, { className: styles.sourceLabel, variant: 'body2' }, sourceSystemLabel)));
|
|
18
|
-
};
|
|
19
|
-
export default CrosswalkDragPreview;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"dragLayer" | "sourceIcon" | "crosswalkPreview" | "sourceLabel">;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from '@mui/styles';
|
|
2
|
-
import { POPUP_Z_INDEX } from '../../../constants';
|
|
3
|
-
export var useStyles = makeStyles({
|
|
4
|
-
dragLayer: {
|
|
5
|
-
position: 'fixed',
|
|
6
|
-
top: 0,
|
|
7
|
-
left: 0,
|
|
8
|
-
width: '100%',
|
|
9
|
-
height: '100%',
|
|
10
|
-
overflow: 'hidden',
|
|
11
|
-
zIndex: POPUP_Z_INDEX,
|
|
12
|
-
pointerEvents: 'none'
|
|
13
|
-
},
|
|
14
|
-
crosswalkPreview: {
|
|
15
|
-
height: '28px',
|
|
16
|
-
maxWidth: '394px',
|
|
17
|
-
display: 'flex',
|
|
18
|
-
overflow: 'hidden',
|
|
19
|
-
padding: '6px',
|
|
20
|
-
alignItems: 'center',
|
|
21
|
-
boxSizing: 'border-box'
|
|
22
|
-
},
|
|
23
|
-
sourceLabel: {
|
|
24
|
-
fontSize: '13px',
|
|
25
|
-
whiteSpace: 'nowrap',
|
|
26
|
-
textOverflow: 'ellipsis',
|
|
27
|
-
overflow: 'hidden'
|
|
28
|
-
},
|
|
29
|
-
sourceIcon: {
|
|
30
|
-
width: '16px',
|
|
31
|
-
height: '16px',
|
|
32
|
-
marginRight: '9px'
|
|
33
|
-
}
|
|
34
|
-
});
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Crosswalk } from '@reltio/mdm-sdk';
|
|
2
|
-
type Props = {
|
|
3
|
-
className?: string;
|
|
4
|
-
onAdd: (event: Omit<Crosswalk, 'uri'>) => void;
|
|
5
|
-
onClose: () => void;
|
|
6
|
-
};
|
|
7
|
-
declare const CrosswalkEditor: ({ className, onAdd, onClose }: Props) => JSX.Element;
|
|
8
|
-
export default CrosswalkEditor;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import React, { useState } from 'react';
|
|
2
|
-
import i18n from 'ui-i18n';
|
|
3
|
-
import Button from '@mui/material/Button';
|
|
4
|
-
import Typography from '@mui/material/Typography';
|
|
5
|
-
import CrosswalkAttributes from '../CrosswalkAttributes/CrosswalkAttributes';
|
|
6
|
-
import { assoc, dissoc } from 'ramda';
|
|
7
|
-
import { useStyles } from './styles';
|
|
8
|
-
var CrosswalkEditor = function (_a) {
|
|
9
|
-
var className = _a.className, onAdd = _a.onAdd, onClose = _a.onClose;
|
|
10
|
-
var styles = useStyles();
|
|
11
|
-
var _b = useState({ type: '', value: '' }), newCrosswalk = _b[0], setNewCrosswalk = _b[1];
|
|
12
|
-
var handleAdd = function () {
|
|
13
|
-
onAdd(newCrosswalk);
|
|
14
|
-
onClose();
|
|
15
|
-
};
|
|
16
|
-
return (React.createElement("div", { className: className },
|
|
17
|
-
React.createElement(Typography, { variant: 'body1', className: styles.caption }, i18n.text('Add crosswalk')),
|
|
18
|
-
React.createElement(CrosswalkAttributes, { crosswalk: newCrosswalk, onDeleteAttribute: function (attributeName) {
|
|
19
|
-
setNewCrosswalk(dissoc(attributeName));
|
|
20
|
-
}, onEditAttribute: function (attributeName, value) {
|
|
21
|
-
setNewCrosswalk(assoc(attributeName, value));
|
|
22
|
-
} }),
|
|
23
|
-
React.createElement("div", { className: styles.controlButtons },
|
|
24
|
-
React.createElement(Button, { className: styles.cancelButton, onClick: onClose }, i18n.text('Cancel')),
|
|
25
|
-
React.createElement(Button, { color: "primary", onClick: handleAdd, disabled: !newCrosswalk.type || !newCrosswalk.value }, i18n.text('Add')))));
|
|
26
|
-
};
|
|
27
|
-
export default CrosswalkEditor;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { Crosswalk, RelationCrosswalk } from '@reltio/mdm-sdk';
|
|
3
|
-
type Props = {
|
|
4
|
-
crosswalk: Crosswalk | RelationCrosswalk;
|
|
5
|
-
isDependent?: boolean;
|
|
6
|
-
focusable?: boolean;
|
|
7
|
-
isEmpty?: boolean;
|
|
8
|
-
isColored?: boolean;
|
|
9
|
-
disableEdit: boolean;
|
|
10
|
-
disableDelete: boolean;
|
|
11
|
-
onDelete: (crosswalkId: string) => void;
|
|
12
|
-
onEdit: (event: {
|
|
13
|
-
crosswalkId: string;
|
|
14
|
-
attributeName: string;
|
|
15
|
-
value?: string;
|
|
16
|
-
}) => void;
|
|
17
|
-
};
|
|
18
|
-
declare const _default: React.MemoExoticComponent<({ crosswalk, isDependent, isEmpty, isColored, focusable, disableEdit, disableDelete, onDelete, onEdit }: Props) => JSX.Element>;
|
|
19
|
-
export default _default;
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
import React, { useEffect, useRef, useState, memo } from 'react';
|
|
2
|
-
import i18n from 'ui-i18n';
|
|
3
|
-
import { useDrag } from 'react-dnd';
|
|
4
|
-
import { getEmptyImage } from 'react-dnd-html5-backend';
|
|
5
|
-
import { eqCrosswalks, getLastUriPart, getSourceSystemLabel, isCrosswalkDisabled } from '@reltio/mdm-sdk';
|
|
6
|
-
import Typography from '@mui/material/Typography';
|
|
7
|
-
import DeleteIcon from '@mui/icons-material/Delete';
|
|
8
|
-
import VisibilityIcon from '@mui/icons-material/Visibility';
|
|
9
|
-
import { ArrowExpandButton } from '../../../ArrowExpandButton';
|
|
10
|
-
import { ExpandedValueTooltip } from '../../../ExpandedValueTooltip';
|
|
11
|
-
import ColoredBlock from '../ColoredBlock/ColoredBlock';
|
|
12
|
-
import ConfirmDeleteDialog from '../../ConfirmDeleteDialog/ConfirmDeleteDialog';
|
|
13
|
-
import { SmallIconButtonWithTooltip } from '../../../SmallIconButton';
|
|
14
|
-
import { SourceIcon } from '../../../SourceIcon';
|
|
15
|
-
import Spacer from '../../Spacer/Spacer';
|
|
16
|
-
import { useCrosswalkColor, useCrosswalkFocus, useCrosswalkHighlight, useHighlightedCrosswalks } from '../../../contexts/CrosswalksDisplayContext';
|
|
17
|
-
import DependentIcon from '../../../icons/NestedAttribute';
|
|
18
|
-
import CrosswalkAttributes from '../CrosswalkAttributes/CrosswalkAttributes';
|
|
19
|
-
import { useMdmMetadata } from '../../../contexts';
|
|
20
|
-
import { useStyles } from './styles';
|
|
21
|
-
var CrosswalkRow = function (_a) {
|
|
22
|
-
var crosswalk = _a.crosswalk, isDependent = _a.isDependent, _b = _a.isEmpty, isEmpty = _b === void 0 ? false : _b, _c = _a.isColored, isColored = _c === void 0 ? true : _c, _d = _a.focusable, focusable = _d === void 0 ? true : _d, disableEdit = _a.disableEdit, disableDelete = _a.disableDelete, onDelete = _a.onDelete, onEdit = _a.onEdit;
|
|
23
|
-
var ref = useRef(null);
|
|
24
|
-
var _e = useState(false), expanded = _e[0], setExpanded = _e[1];
|
|
25
|
-
var _f = useState(false), isDeleteDialogOpen = _f[0], setDeleteDialogOpen = _f[1];
|
|
26
|
-
var metadata = useMdmMetadata();
|
|
27
|
-
var crosswalkColor = useCrosswalkColor(crosswalk);
|
|
28
|
-
var _g = useCrosswalkFocus(crosswalk), toggleCrosswalkFocus = _g.toggleCrosswalkFocus, isFocused = _g.isFocused;
|
|
29
|
-
var _h = useCrosswalkHighlight(crosswalk), isDimmed = _h.isDimmed, highlightCrosswalk = _h.highlightCrosswalk, removeHighlight = _h.removeHighlight;
|
|
30
|
-
var scrollToCrosswalk = useHighlightedCrosswalks()[0];
|
|
31
|
-
var coloredCrosswalk = isDimmed ? 'rgba(0, 0, 0, 0.12)' : crosswalkColor;
|
|
32
|
-
var color = isEmpty ? '#FFF' : isColored ? coloredCrosswalk : '#CACCD1';
|
|
33
|
-
var sourceSystemLabel = getSourceSystemLabel(metadata, crosswalk.type);
|
|
34
|
-
var crosswalkId = getLastUriPart(crosswalk.uri);
|
|
35
|
-
var crosswalkDisabled = isCrosswalkDisabled(crosswalk);
|
|
36
|
-
var styles = useStyles({ color: color, isOpaque: !isDimmed, isFocused: isFocused });
|
|
37
|
-
var _j = useDrag({
|
|
38
|
-
item: {
|
|
39
|
-
type: 'Crosswalk',
|
|
40
|
-
crosswalk: crosswalk
|
|
41
|
-
},
|
|
42
|
-
canDrag: !crosswalkDisabled
|
|
43
|
-
}), drag = _j[1], preview = _j[2];
|
|
44
|
-
var canDelete = !crosswalkDisabled && crosswalk.ownerType !== 'relation';
|
|
45
|
-
useEffect(function () {
|
|
46
|
-
preview(getEmptyImage(), { captureDraggingState: true });
|
|
47
|
-
}, []);
|
|
48
|
-
useEffect(function () {
|
|
49
|
-
var _a;
|
|
50
|
-
if (focusable &&
|
|
51
|
-
scrollToCrosswalk &&
|
|
52
|
-
eqCrosswalks(scrollToCrosswalk, crosswalk) &&
|
|
53
|
-
scrollToCrosswalk !== crosswalk) {
|
|
54
|
-
(_a = ref === null || ref === void 0 ? void 0 : ref.current) === null || _a === void 0 ? void 0 : _a.scrollIntoView({ behavior: 'smooth' });
|
|
55
|
-
}
|
|
56
|
-
}, [scrollToCrosswalk]);
|
|
57
|
-
var handleDeleteCrosswalk = function () {
|
|
58
|
-
if (isFocused)
|
|
59
|
-
toggleCrosswalkFocus();
|
|
60
|
-
onDelete(crosswalkId);
|
|
61
|
-
};
|
|
62
|
-
return (React.createElement("div", { className: styles.root, ref: ref },
|
|
63
|
-
React.createElement(SmallIconButtonWithTooltip, { size: "XXS", className: styles.focusedIcon, icon: focusable && VisibilityIcon, onClick: function () { return toggleCrosswalkFocus(); }, disabled: !focusable, tooltipTitle: focusable && i18n.text('Focus') }),
|
|
64
|
-
React.createElement("div", { className: styles.crosswalkWrapper },
|
|
65
|
-
React.createElement(ColoredBlock, { ref: drag, className: styles.header, color: color, variant: crosswalkDisabled ? 'disabled' : 'standart', onMouseEnter: function () { return highlightCrosswalk(); }, onMouseLeave: function () { return removeHighlight(); } },
|
|
66
|
-
isDependent && React.createElement(DependentIcon, { className: styles.dependentIcon }),
|
|
67
|
-
React.createElement(ArrowExpandButton, { onClick: function () { return setExpanded(function (value) { return !value; }); }, expanded: expanded }),
|
|
68
|
-
React.createElement(SourceIcon, { className: styles.sourceIcon, sourceType: crosswalk.type }),
|
|
69
|
-
React.createElement(ExpandedValueTooltip, { value: sourceSystemLabel },
|
|
70
|
-
React.createElement(Typography, { variant: 'body2', noWrap: true }, sourceSystemLabel)),
|
|
71
|
-
React.createElement(Spacer, null),
|
|
72
|
-
React.createElement(ExpandedValueTooltip, { value: crosswalk.value },
|
|
73
|
-
React.createElement(Typography, { variant: 'body2', className: styles.labelValue, noWrap: true }, crosswalk.value))),
|
|
74
|
-
expanded && (React.createElement("div", { className: styles.attributesWrapper },
|
|
75
|
-
canDelete && (React.createElement("div", { className: styles.deleteCrosswalkButton },
|
|
76
|
-
React.createElement(SmallIconButtonWithTooltip, { icon: DeleteIcon, disabled: disableDelete, onClick: function () { return setDeleteDialogOpen(true); }, size: "XS", tooltipTitle: disableDelete
|
|
77
|
-
? i18n.text("You don't have permissions to delete")
|
|
78
|
-
: i18n.text('Delete crosswalk'), showForDisabled: true }),
|
|
79
|
-
React.createElement(ConfirmDeleteDialog, { open: isDeleteDialogOpen, onConfirm: handleDeleteCrosswalk, onClose: function () { return setDeleteDialogOpen(false); } }))),
|
|
80
|
-
React.createElement(CrosswalkAttributes, { crosswalk: crosswalk, canEditAttribute: !disableEdit, onEditAttribute: function (attributeName, value) {
|
|
81
|
-
onEdit({
|
|
82
|
-
crosswalkId: crosswalkId,
|
|
83
|
-
attributeName: attributeName,
|
|
84
|
-
value: value
|
|
85
|
-
});
|
|
86
|
-
}, onDeleteAttribute: function (attributeName) {
|
|
87
|
-
onEdit({
|
|
88
|
-
crosswalkId: crosswalkId,
|
|
89
|
-
attributeName: attributeName
|
|
90
|
-
});
|
|
91
|
-
} }))))));
|
|
92
|
-
};
|
|
93
|
-
export default memo(CrosswalkRow);
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
type StylesProps = {
|
|
2
|
-
color?: string;
|
|
3
|
-
isOpaque?: boolean;
|
|
4
|
-
isFocused?: boolean;
|
|
5
|
-
};
|
|
6
|
-
export declare const useStyles: (props: StylesProps) => import("@mui/styles").ClassNameMap<"header" | "root" | "sourceIcon" | "attributesWrapper" | "focusedIcon" | "crosswalkWrapper" | "deleteCrosswalkButton" | "labelValue" | "dependentIcon">;
|
|
7
|
-
export {};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import React, { memo } from 'react';
|
|
2
|
-
import { getSourceSystemLabel } from '@reltio/mdm-sdk';
|
|
3
|
-
import Typography from '@mui/material/Typography';
|
|
4
|
-
import VisibilityIcon from '@mui/icons-material/Visibility';
|
|
5
|
-
import { SourceIcon } from '../../../SourceIcon';
|
|
6
|
-
import { SmallIconButton } from '../../../SmallIconButton';
|
|
7
|
-
import { useCrosswalkHighlight } from '../../../contexts/CrosswalksDisplayContext';
|
|
8
|
-
import { useMdmMetadata } from '../../../contexts';
|
|
9
|
-
import { useStyles } from './styles';
|
|
10
|
-
var DummyCrosswalkRow = function (_a) {
|
|
11
|
-
var crosswalkType = _a.crosswalkType, _b = _a.focusable, focusable = _b === void 0 ? true : _b;
|
|
12
|
-
var isDimmed = useCrosswalkHighlight().isDimmed;
|
|
13
|
-
var styles = useStyles({ isOpaque: !isDimmed });
|
|
14
|
-
var metadata = useMdmMetadata();
|
|
15
|
-
var sourceSystemLabel = getSourceSystemLabel(metadata, crosswalkType);
|
|
16
|
-
return (React.createElement("div", { className: styles.root },
|
|
17
|
-
React.createElement(SmallIconButton, { size: "XXS", className: styles.focusedIcon, icon: focusable && VisibilityIcon, disabled: true }),
|
|
18
|
-
React.createElement("div", { className: styles.wrapper },
|
|
19
|
-
React.createElement(SourceIcon, { className: styles.sourceIcon, sourceType: crosswalkType }),
|
|
20
|
-
React.createElement(Typography, { variant: 'body2' }, sourceSystemLabel))));
|
|
21
|
-
};
|
|
22
|
-
export default memo(DummyCrosswalkRow);
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import Link from '@mui/material/Link';
|
|
3
|
-
import i18n from 'ui-i18n';
|
|
4
|
-
import { useStyles } from './styles';
|
|
5
|
-
var ShowDependentLink = function (_a) {
|
|
6
|
-
var showMore = _a.showMore, onClick = _a.onClick;
|
|
7
|
-
var styles = useStyles();
|
|
8
|
-
return (React.createElement(Link, { className: styles.root, component: "button", variant: "caption", underline: "none", onClick: onClick },
|
|
9
|
-
React.createElement("span", null, showMore ? i18n.text('View dependent crosswalks') : i18n.text('Hide dependent crosswalks'))));
|
|
10
|
-
};
|
|
11
|
-
export default ShowDependentLink;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { CrosswalksByTypes } from '../types';
|
|
2
|
-
type Props = {
|
|
3
|
-
source: string;
|
|
4
|
-
crosswalksByTypes: CrosswalksByTypes;
|
|
5
|
-
showCrosswalkColors?: boolean;
|
|
6
|
-
crosswalksFocusEnabled?: boolean;
|
|
7
|
-
expanded?: boolean;
|
|
8
|
-
disableEditCrosswalk: boolean;
|
|
9
|
-
disableDeleteCrosswalk: boolean;
|
|
10
|
-
onEdit: (event: {
|
|
11
|
-
crosswalkId: string;
|
|
12
|
-
attributeName: string;
|
|
13
|
-
value?: string;
|
|
14
|
-
}) => void;
|
|
15
|
-
onDelete: (crosswalkId: string) => void;
|
|
16
|
-
onToggleExpanded: () => void;
|
|
17
|
-
};
|
|
18
|
-
declare const SourceCrosswalksRow: ({ source, crosswalksByTypes, showCrosswalkColors, crosswalksFocusEnabled, expanded, disableEditCrosswalk, disableDeleteCrosswalk, onEdit, onDelete, onToggleExpanded }: Props) => JSX.Element;
|
|
19
|
-
export default SourceCrosswalksRow;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import React, { useEffect } from 'react';
|
|
2
|
-
import { useHighlightedCrosswalks } from '../../../contexts/CrosswalksDisplayContext';
|
|
3
|
-
import { CrosswalkType } from '../types';
|
|
4
|
-
import { eqCrosswalks } from '@reltio/mdm-sdk';
|
|
5
|
-
import DummyCrosswalkRow from '../DummyCrosswalkRow/DummyCrosswalkRow';
|
|
6
|
-
import CrosswalkRow from '../CrosswalkRow/CrosswalkRow';
|
|
7
|
-
import ShowDependentLink from '../ShowDependentLink/ShowDependentLink';
|
|
8
|
-
var SourceCrosswalksRow = function (_a) {
|
|
9
|
-
var source = _a.source, crosswalksByTypes = _a.crosswalksByTypes, _b = _a.showCrosswalkColors, showCrosswalkColors = _b === void 0 ? true : _b, _c = _a.crosswalksFocusEnabled, crosswalksFocusEnabled = _c === void 0 ? true : _c, expanded = _a.expanded, disableEditCrosswalk = _a.disableEditCrosswalk, disableDeleteCrosswalk = _a.disableDeleteCrosswalk, onEdit = _a.onEdit, onDelete = _a.onDelete, onToggleExpanded = _a.onToggleExpanded;
|
|
10
|
-
var highlightedCrosswalks = useHighlightedCrosswalks();
|
|
11
|
-
useEffect(function () {
|
|
12
|
-
if (!expanded &&
|
|
13
|
-
crosswalksFocusEnabled &&
|
|
14
|
-
crosswalksByTypes[CrosswalkType.Dependent].some(function (dependentCrosswalk) {
|
|
15
|
-
return highlightedCrosswalks.some(eqCrosswalks(dependentCrosswalk));
|
|
16
|
-
})) {
|
|
17
|
-
onToggleExpanded();
|
|
18
|
-
}
|
|
19
|
-
}, [highlightedCrosswalks]);
|
|
20
|
-
return (React.createElement(React.Fragment, null,
|
|
21
|
-
crosswalksByTypes[CrosswalkType.Simple].length === 0 &&
|
|
22
|
-
crosswalksByTypes[CrosswalkType.Empty].length === 0 && (React.createElement(DummyCrosswalkRow, { crosswalkType: source, focusable: crosswalksFocusEnabled })),
|
|
23
|
-
crosswalksByTypes[CrosswalkType.Simple].map(function (crosswalk) { return (React.createElement(CrosswalkRow, { key: crosswalk.uri, crosswalk: crosswalk, focusable: crosswalksFocusEnabled, disableEdit: disableEditCrosswalk, disableDelete: disableDeleteCrosswalk, onDelete: onDelete, onEdit: onEdit, isColored: showCrosswalkColors })); }),
|
|
24
|
-
crosswalksByTypes[CrosswalkType.Empty].map(function (crosswalk) { return (React.createElement(CrosswalkRow, { key: crosswalk.uri, crosswalk: crosswalk, focusable: crosswalksFocusEnabled, isEmpty: true, disableEdit: disableEditCrosswalk, disableDelete: disableDeleteCrosswalk, onDelete: onDelete, onEdit: onEdit, isColored: showCrosswalkColors })); }),
|
|
25
|
-
expanded &&
|
|
26
|
-
crosswalksByTypes[CrosswalkType.Dependent].map(function (crosswalk) { return (React.createElement(CrosswalkRow, { key: crosswalk.uri, crosswalk: crosswalk, isDependent: true, disableEdit: disableEditCrosswalk, disableDelete: disableDeleteCrosswalk, onDelete: onDelete, onEdit: onEdit, focusable: crosswalksFocusEnabled, isColored: showCrosswalkColors })); }),
|
|
27
|
-
crosswalksByTypes[CrosswalkType.Dependent].length > 0 && (React.createElement(ShowDependentLink, { showMore: !expanded, onClick: function () { return onToggleExpanded(); } }))));
|
|
28
|
-
};
|
|
29
|
-
export default SourceCrosswalksRow;
|
|
@@ -1,151 +0,0 @@
|
|
|
1
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
-
});
|
|
9
|
-
};
|
|
10
|
-
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
11
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
12
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
13
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
14
|
-
function step(op) {
|
|
15
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
16
|
-
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
17
|
-
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
18
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
19
|
-
switch (op[0]) {
|
|
20
|
-
case 0: case 1: t = op; break;
|
|
21
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
22
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
23
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
24
|
-
default:
|
|
25
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
26
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
27
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
28
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
29
|
-
if (t[2]) _.ops.pop();
|
|
30
|
-
_.trys.pop(); continue;
|
|
31
|
-
}
|
|
32
|
-
op = body.call(thisArg, _);
|
|
33
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
34
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
35
|
-
}
|
|
36
|
-
};
|
|
37
|
-
import { useCallback } from 'react';
|
|
38
|
-
import { createAttribute, entityCumulativeDelete, getBaseUri, getReferencedRelationFromAttrValue, ignoreAttribute, isComplexAttribute, isImage, isLookupAttrType, isLookupValue, isReference, pinAttribute, removeRelation, updateAttribute } from '@reltio/mdm-sdk';
|
|
39
|
-
import { andThen, pipe, prop, defaultTo, map } from 'ramda';
|
|
40
|
-
import { noop } from '../../../core';
|
|
41
|
-
export var useAttributeActions = function (_a) {
|
|
42
|
-
var _b = _a.onSuccess, onSuccess = _b === void 0 ? noop : _b, _c = _a.onError, onError = _c === void 0 ? noop : _c, _d = _a.onLoad, onLoad = _d === void 0 ? noop : _d;
|
|
43
|
-
var handleAction = useCallback(function (request) {
|
|
44
|
-
onLoad();
|
|
45
|
-
request
|
|
46
|
-
.then(function () {
|
|
47
|
-
onSuccess();
|
|
48
|
-
})
|
|
49
|
-
.catch(onError);
|
|
50
|
-
}, [onError, onSuccess, onLoad]);
|
|
51
|
-
var handleErrorResponse = useCallback(function (request) {
|
|
52
|
-
return request.then(function (response) {
|
|
53
|
-
if ('error' in response)
|
|
54
|
-
throw response.error;
|
|
55
|
-
return response;
|
|
56
|
-
});
|
|
57
|
-
}, []);
|
|
58
|
-
var deleteAttributeAction = useCallback(function (_a) {
|
|
59
|
-
var attributeValue = _a.attributeValue, attributeType = _a.attributeType, crosswalks = _a.crosswalks;
|
|
60
|
-
var action = isReference(attributeType)
|
|
61
|
-
? pipe(getReferencedRelationFromAttrValue, prop('objectURI'), removeRelation, handleErrorResponse)(attributeValue)
|
|
62
|
-
: pipe(defaultTo([]), map(function (_a) {
|
|
63
|
-
var type = _a.type, value = _a.value, sourceTable = _a.sourceTable;
|
|
64
|
-
return ({
|
|
65
|
-
type: 'DELETE_ATTRIBUTE',
|
|
66
|
-
uri: attributeValue.uri,
|
|
67
|
-
crosswalk: sourceTable ? { type: type, value: value, sourceTable: sourceTable } : { type: type, value: value }
|
|
68
|
-
});
|
|
69
|
-
}), function (diff) { return ({ uri: getBaseUri(attributeValue.uri), diff: diff }); }, entityCumulativeDelete, handleErrorResponse)(crosswalks);
|
|
70
|
-
handleAction(action);
|
|
71
|
-
}, [handleAction, handleErrorResponse]);
|
|
72
|
-
var pinAttributeAction = useCallback(function (_a) {
|
|
73
|
-
var attributeValue = _a.attributeValue;
|
|
74
|
-
pipe(pinAttribute, handleErrorResponse, handleAction)({
|
|
75
|
-
attributeUri: attributeValue.uri,
|
|
76
|
-
value: !attributeValue.pin
|
|
77
|
-
});
|
|
78
|
-
}, [handleAction, handleErrorResponse]);
|
|
79
|
-
var ignoreAttributeAction = useCallback(function (_a) {
|
|
80
|
-
var attributeValue = _a.attributeValue;
|
|
81
|
-
pipe(ignoreAttribute, handleErrorResponse, handleAction)({
|
|
82
|
-
attributeUri: attributeValue.uri,
|
|
83
|
-
value: !attributeValue.ignored
|
|
84
|
-
});
|
|
85
|
-
}, [handleAction, handleErrorResponse]);
|
|
86
|
-
var updateAttributeAction = useCallback(function (_a) {
|
|
87
|
-
var attributeValue = _a.attributeValue, attributeType = _a.attributeType, crosswalk = _a.crosswalk, clearAttributeFlags = _a.clearAttributeFlags;
|
|
88
|
-
if (isComplexAttribute(attributeType) || isImage(attributeType))
|
|
89
|
-
return;
|
|
90
|
-
var update = function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
91
|
-
return __generator(this, function (_a) {
|
|
92
|
-
switch (_a.label) {
|
|
93
|
-
case 0: return [4 /*yield*/, handleErrorResponse(updateAttribute({
|
|
94
|
-
attributeUri: attributeValue.uri,
|
|
95
|
-
sourceUri: crosswalk.type,
|
|
96
|
-
crosswalkValue: crosswalk.value,
|
|
97
|
-
crosswalkSourceTable: crosswalk.sourceTable,
|
|
98
|
-
value: isLookupAttrType(attributeType)
|
|
99
|
-
? attributeValue.lookupCode
|
|
100
|
-
: attributeValue.value
|
|
101
|
-
}))];
|
|
102
|
-
case 1:
|
|
103
|
-
_a.sent();
|
|
104
|
-
if (!!clearAttributeFlags) return [3 /*break*/, 5];
|
|
105
|
-
if (!attributeValue.ignored) return [3 /*break*/, 3];
|
|
106
|
-
return [4 /*yield*/, handleErrorResponse(ignoreAttribute({
|
|
107
|
-
attributeUri: attributeValue.uri,
|
|
108
|
-
value: true
|
|
109
|
-
}))];
|
|
110
|
-
case 2:
|
|
111
|
-
_a.sent();
|
|
112
|
-
return [3 /*break*/, 5];
|
|
113
|
-
case 3:
|
|
114
|
-
if (!attributeValue.pin) return [3 /*break*/, 5];
|
|
115
|
-
return [4 /*yield*/, handleErrorResponse(pinAttribute({
|
|
116
|
-
attributeUri: attributeValue.uri,
|
|
117
|
-
value: true
|
|
118
|
-
}))];
|
|
119
|
-
case 4:
|
|
120
|
-
_a.sent();
|
|
121
|
-
_a.label = 5;
|
|
122
|
-
case 5: return [2 /*return*/];
|
|
123
|
-
}
|
|
124
|
-
});
|
|
125
|
-
}); };
|
|
126
|
-
handleAction(update());
|
|
127
|
-
}, [handleAction, handleErrorResponse]);
|
|
128
|
-
var createAttributeAction = useCallback(function (_a) {
|
|
129
|
-
var attributeValue = _a.attributeValue, crosswalk = _a.crosswalk;
|
|
130
|
-
pipe(createAttribute, andThen(function (_a) {
|
|
131
|
-
var errors = _a[0].errors;
|
|
132
|
-
if (errors)
|
|
133
|
-
throw errors;
|
|
134
|
-
}), handleAction)({
|
|
135
|
-
attributeUri: attributeValue.uri,
|
|
136
|
-
sourceUri: crosswalk.type,
|
|
137
|
-
crosswalkValue: crosswalk.value,
|
|
138
|
-
crosswalkSourceTable: crosswalk.sourceTable,
|
|
139
|
-
value: isLookupValue(attributeValue)
|
|
140
|
-
? attributeValue.lookupCode
|
|
141
|
-
: attributeValue.value
|
|
142
|
-
});
|
|
143
|
-
}, [handleAction]);
|
|
144
|
-
return {
|
|
145
|
-
deleteAttribute: deleteAttributeAction,
|
|
146
|
-
pinAttribute: pinAttributeAction,
|
|
147
|
-
ignoreAttribute: ignoreAttributeAction,
|
|
148
|
-
updateAttribute: updateAttributeAction,
|
|
149
|
-
createAttribute: createAttributeAction
|
|
150
|
-
};
|
|
151
|
-
};
|
|
@@ -1,151 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
13
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
14
|
-
if (ar || !(i in from)) {
|
|
15
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
16
|
-
ar[i] = from[i];
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
20
|
-
};
|
|
21
|
-
import { useCallback, useEffect, useRef, useState } from 'react';
|
|
22
|
-
import { useAttributeActions } from './useAttributeActions';
|
|
23
|
-
import { addNewAttribute, areOneHierarchyUris, createNewAttribute, editAttribute, findAttributeValueByUri, findAttributeValues, getAttributeValue, getCrosswalkAttributes, getRelationCrosswalks, isTempUri, removeAttribute } from '@reltio/mdm-sdk';
|
|
24
|
-
import { difference, dissoc, evolve, isNil, pipe, without } from 'ramda';
|
|
25
|
-
import { noop } from '../../../core';
|
|
26
|
-
var emptyArray = [];
|
|
27
|
-
export var useModifiedEntity = function (_a) {
|
|
28
|
-
var entity = _a.entity, _b = _a.onLoad, onLoad = _b === void 0 ? noop : _b, _c = _a.onModify, onModify = _c === void 0 ? noop : _c, _d = _a.onError, onError = _d === void 0 ? noop : _d;
|
|
29
|
-
var _e = useState(null), modifiedEntity = _e[0], setModifiedEntity = _e[1];
|
|
30
|
-
var _f = useState([]), emptyTempAttributeUris = _f[0], setEmptyTempAttributeUris = _f[1];
|
|
31
|
-
var _g = useState(null), crosswalksMap = _g[0], setCrosswalksMap = _g[1];
|
|
32
|
-
var temporaryAttributes = useRef([]);
|
|
33
|
-
var crosswalkForNewAttributes = useRef(null);
|
|
34
|
-
var resetCrosswalkForNewAttributes = useCallback(function () {
|
|
35
|
-
crosswalkForNewAttributes.current = null;
|
|
36
|
-
}, []);
|
|
37
|
-
var _h = useState(emptyArray), newlyCreatedAttributes = _h[0], setNewlyCreatedAttributes = _h[1];
|
|
38
|
-
var groupCrosswalksByAttrUri = function (crosswalks) {
|
|
39
|
-
if (crosswalks === void 0) { crosswalks = []; }
|
|
40
|
-
return crosswalks.reduce(function (acc, crosswalk) {
|
|
41
|
-
getCrosswalkAttributes(crosswalk).forEach(function (uri) {
|
|
42
|
-
acc[uri] = __spreadArray(__spreadArray([], (acc[uri] || []), true), [crosswalk], false);
|
|
43
|
-
});
|
|
44
|
-
return acc;
|
|
45
|
-
}, {});
|
|
46
|
-
};
|
|
47
|
-
useEffect(function () {
|
|
48
|
-
var newCrosswalksMap = {
|
|
49
|
-
entity: groupCrosswalksByAttrUri(entity === null || entity === void 0 ? void 0 : entity.crosswalks),
|
|
50
|
-
relation: pipe(getRelationCrosswalks, groupCrosswalksByAttrUri)(entity)
|
|
51
|
-
};
|
|
52
|
-
if ((modifiedEntity === null || modifiedEntity === void 0 ? void 0 : modifiedEntity.uri) === (entity === null || entity === void 0 ? void 0 : entity.uri) && crosswalkForNewAttributes.current) {
|
|
53
|
-
var ownerType = crosswalkForNewAttributes.current.ownerType;
|
|
54
|
-
var newAttributes = Object.keys(newCrosswalksMap[ownerType]);
|
|
55
|
-
var oldAttributes = Object.keys(crosswalksMap[ownerType]);
|
|
56
|
-
setNewlyCreatedAttributes(difference(newAttributes, oldAttributes));
|
|
57
|
-
setEmptyTempAttributeUris([]);
|
|
58
|
-
}
|
|
59
|
-
else {
|
|
60
|
-
setNewlyCreatedAttributes(emptyArray);
|
|
61
|
-
}
|
|
62
|
-
resetCrosswalkForNewAttributes();
|
|
63
|
-
setModifiedEntity(entity);
|
|
64
|
-
setCrosswalksMap(newCrosswalksMap);
|
|
65
|
-
temporaryAttributes.current = [];
|
|
66
|
-
}, [entity]);
|
|
67
|
-
var handleError = useCallback(pipe(onError, resetCrosswalkForNewAttributes), [
|
|
68
|
-
onError,
|
|
69
|
-
resetCrosswalkForNewAttributes
|
|
70
|
-
]);
|
|
71
|
-
var _j = useAttributeActions({
|
|
72
|
-
onLoad: onLoad,
|
|
73
|
-
onSuccess: onModify,
|
|
74
|
-
onError: handleError
|
|
75
|
-
}), deleteAttribute = _j.deleteAttribute, ignoreAttribute = _j.ignoreAttribute, pinAttribute = _j.pinAttribute, createAttribute = _j.createAttribute, updateAttribute = _j.updateAttribute;
|
|
76
|
-
var onAddAttribute = useCallback(function (_a) {
|
|
77
|
-
var attributeType = _a.attributeType, parentUri = _a.parentUri, crosswalk = _a.crosswalk, index = _a.index;
|
|
78
|
-
var newAttribute = createNewAttribute({ parentUri: parentUri, attributeType: attributeType });
|
|
79
|
-
var uri = newAttribute.uri;
|
|
80
|
-
if (crosswalk) {
|
|
81
|
-
var ownerType_1 = crosswalk.ownerType;
|
|
82
|
-
setCrosswalksMap(function (crosswalksMap) {
|
|
83
|
-
var _a, _b;
|
|
84
|
-
return (__assign(__assign({}, crosswalksMap), (_a = {}, _a[ownerType_1] = __assign(__assign({}, crosswalksMap[ownerType_1]), (_b = {}, _b[uri] = [crosswalk], _b)), _a)));
|
|
85
|
-
});
|
|
86
|
-
}
|
|
87
|
-
setModifiedEntity(function (entity) {
|
|
88
|
-
var _a;
|
|
89
|
-
if (isNil(index)) {
|
|
90
|
-
index = (_a = findAttributeValues(entity, parentUri, attributeType.name)) === null || _a === void 0 ? void 0 : _a.length;
|
|
91
|
-
}
|
|
92
|
-
return addNewAttribute({ entity: entity, attributeType: attributeType, newAttribute: newAttribute, index: index });
|
|
93
|
-
});
|
|
94
|
-
if (!temporaryAttributes.current.some(function (tempUri) { return areOneHierarchyUris(uri, tempUri); })) {
|
|
95
|
-
temporaryAttributes.current.push(uri);
|
|
96
|
-
}
|
|
97
|
-
if (!emptyTempAttributeUris.includes(newAttribute.uri)) {
|
|
98
|
-
setEmptyTempAttributeUris(function (emptyTempAttributeUris) { return __spreadArray(__spreadArray([], emptyTempAttributeUris, true), [newAttribute.uri], false); });
|
|
99
|
-
}
|
|
100
|
-
}, []);
|
|
101
|
-
var onDeleteAttribute = useCallback(function (event) {
|
|
102
|
-
var uri = event.attributeValue.uri, attributeType = event.attributeType;
|
|
103
|
-
if (isTempUri(uri)) {
|
|
104
|
-
setModifiedEntity(function (entity) { return removeAttribute({ entity: entity, attributeType: attributeType, uri: uri }); });
|
|
105
|
-
setCrosswalksMap(evolve({
|
|
106
|
-
entity: dissoc(uri),
|
|
107
|
-
relation: dissoc(uri)
|
|
108
|
-
}));
|
|
109
|
-
temporaryAttributes.current = without([uri], temporaryAttributes.current);
|
|
110
|
-
}
|
|
111
|
-
else {
|
|
112
|
-
deleteAttribute(event);
|
|
113
|
-
}
|
|
114
|
-
}, [deleteAttribute]);
|
|
115
|
-
var onEditAttribute = useCallback(function (event) {
|
|
116
|
-
if (isTempUri(event.attributeValue.uri)) {
|
|
117
|
-
var attributeValue = event.attributeValue, attributeType = event.attributeType, crosswalk = event.crosswalk;
|
|
118
|
-
if (!isNil(attributeValue.value)) {
|
|
119
|
-
var uri_1 = attributeValue.uri;
|
|
120
|
-
var tempAttributeUri = temporaryAttributes.current.find(function (tempUri) {
|
|
121
|
-
return areOneHierarchyUris(uri_1, tempUri);
|
|
122
|
-
});
|
|
123
|
-
var editedEntity = editAttribute({
|
|
124
|
-
entity: modifiedEntity,
|
|
125
|
-
attributeType: attributeType,
|
|
126
|
-
uri: uri_1,
|
|
127
|
-
value: getAttributeValue(attributeValue)
|
|
128
|
-
});
|
|
129
|
-
createAttribute({
|
|
130
|
-
attributeValue: findAttributeValueByUri(editedEntity, tempAttributeUri),
|
|
131
|
-
crosswalk: crosswalk
|
|
132
|
-
});
|
|
133
|
-
crosswalkForNewAttributes.current = crosswalk;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
else {
|
|
137
|
-
updateAttribute(event);
|
|
138
|
-
}
|
|
139
|
-
}, [createAttribute, updateAttribute, modifiedEntity]);
|
|
140
|
-
return {
|
|
141
|
-
modifiedEntity: modifiedEntity,
|
|
142
|
-
crosswalksMap: crosswalksMap,
|
|
143
|
-
onAddAttribute: onAddAttribute,
|
|
144
|
-
onDeleteAttribute: onDeleteAttribute,
|
|
145
|
-
onPinAttribute: pinAttribute,
|
|
146
|
-
onIgnoreAttribute: ignoreAttribute,
|
|
147
|
-
onEditAttribute: onEditAttribute,
|
|
148
|
-
newlyCreatedAttributes: newlyCreatedAttributes,
|
|
149
|
-
emptyTempAttributeUris: emptyTempAttributeUris
|
|
150
|
-
};
|
|
151
|
-
};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export { default as AttributesTable } from './AttributesTable/AttributesTable';
|
|
2
|
-
export { useModifiedEntity } from './hooks/useModifiedEntity';
|
|
3
|
-
export { useCrosswalkActions } from './hooks/useCrosswalkActions';
|
|
4
|
-
export { default as CrosswalkDragLayer } from './CrosswalkDragLayer/CrosswalkDragLayer';
|
|
5
|
-
export { default as SourceCrosswalksRow } from './SourceCrosswalksRow/SourceCrosswalksRow';
|
|
6
|
-
export { default as CrosswalkEditor } from './CrosswalkEditor/CrosswalkEditor';
|
|
7
|
-
export { CrosswalkType } from './types';
|
|
8
|
-
export type { CrosswalksByTypes, AddCrosswalkEvent, EditCrosswalkEvent, DeleteCrosswalkEvent } from './types';
|
|
9
|
-
export { groupCrosswalksByTypesAndSources } from './utils/legend';
|