@reltio/components 1.4.1819 → 1.4.1821
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 +2 -2
- 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
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.SendMessageArea = void 0;
|
|
30
|
+
var react_1 = __importStar(require("react"));
|
|
31
|
+
var ui_i18n_1 = __importDefault(require("ui-i18n"));
|
|
32
|
+
var classnames_1 = __importDefault(require("classnames"));
|
|
33
|
+
var ramda_1 = require("ramda");
|
|
34
|
+
var Box_1 = __importDefault(require("@mui/material/Box"));
|
|
35
|
+
var Button_1 = __importDefault(require("@mui/material/Button"));
|
|
36
|
+
var MdmModuleContext_1 = require("../../../contexts/MdmModuleContext");
|
|
37
|
+
var CollaborationContext_1 = require("../../../contexts/CollaborationContext");
|
|
38
|
+
var helpers_1 = require("../../helpers");
|
|
39
|
+
var TextFieldWithMentions_1 = require("../TextFieldWithMentions");
|
|
40
|
+
var Avatar_1 = require("../Avatar");
|
|
41
|
+
var styles_1 = require("./styles");
|
|
42
|
+
var getPlaceholder = function (status) {
|
|
43
|
+
switch (status) {
|
|
44
|
+
case 'open':
|
|
45
|
+
return ui_i18n_1.default.text('Reply...');
|
|
46
|
+
case 'resolved':
|
|
47
|
+
return ui_i18n_1.default.text('Adding a comment will re-open this');
|
|
48
|
+
default:
|
|
49
|
+
return '';
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
var getButtonText = function (status, isEditingComment, isEditingReply) {
|
|
53
|
+
if (isEditingComment || isEditingReply) {
|
|
54
|
+
return ui_i18n_1.default.text('Edit');
|
|
55
|
+
}
|
|
56
|
+
if (status === 'open' || status === 'resolved') {
|
|
57
|
+
return ui_i18n_1.default.text('Reply');
|
|
58
|
+
}
|
|
59
|
+
return ui_i18n_1.default.text('Comment');
|
|
60
|
+
};
|
|
61
|
+
var getDefaultCommentState = function (_a) {
|
|
62
|
+
var comment = _a.comment, reply = _a.reply, isEditingComment = _a.isEditingComment, isEditingReply = _a.isEditingReply;
|
|
63
|
+
var commentOrReply = isEditingComment ? comment : isEditingReply ? reply : null;
|
|
64
|
+
var _b = commentOrReply || {}, _c = _b.content, plainTextValue = _c === void 0 ? '' : _c, _d = _b.namedUsers, mentions = _d === void 0 ? [] : _d;
|
|
65
|
+
return {
|
|
66
|
+
value: (0, helpers_1.transformPlainTextValueToValueWithMentions)(plainTextValue, mentions),
|
|
67
|
+
plainTextValue: plainTextValue,
|
|
68
|
+
mentions: mentions
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
var SendMessageArea = function (_a) {
|
|
72
|
+
var inputRef = _a.inputRef, className = _a.className, uri = _a.uri, relatedObjectUris = _a.relatedObjectUris, objectType = _a.objectType, popperRef = _a.popperRef, comment = _a.comment, reply = _a.reply, isEditingComment = _a.isEditingComment, isEditingReply = _a.isEditingReply, onCancel = _a.onCancel;
|
|
73
|
+
var isEditing = isEditingComment || isEditingReply;
|
|
74
|
+
var styles = (0, styles_1.useStyles)({ isEditing: isEditing });
|
|
75
|
+
var _b = (0, react_1.useState)(false), focused = _b[0], setFocused = _b[1];
|
|
76
|
+
var _c = (0, react_1.useContext)(CollaborationContext_1.CollaborationContext), createReply = _c.createReply, createComment = _c.createComment, sending = _c.sending, editComment = _c.editComment, editReply = _c.editReply, getCommentState = _c.getCommentState, updateCommentState = _c.updateCommentState, clearCommentState = _c.clearCommentState;
|
|
77
|
+
var username = (0, MdmModuleContext_1.useMdmUsername)();
|
|
78
|
+
var commentUri = (0, helpers_1.createCommentUri)({ comment: comment, reply: reply, isEditingComment: isEditingComment, isEditingReply: isEditingReply });
|
|
79
|
+
var defaultCommentState = getDefaultCommentState({ comment: comment, reply: reply, isEditingComment: isEditingComment, isEditingReply: isEditingReply });
|
|
80
|
+
var _d = getCommentState(uri, commentUri), _e = _d.value, value = _e === void 0 ? defaultCommentState.value : _e, _f = _d.plainTextValue, plainTextValue = _f === void 0 ? defaultCommentState.plainTextValue : _f, _g = _d.mentions, mentions = _g === void 0 ? defaultCommentState.mentions : _g;
|
|
81
|
+
var hasValue = value.trim() !== '';
|
|
82
|
+
var shouldShowButtons = focused || hasValue;
|
|
83
|
+
var status = comment === null || comment === void 0 ? void 0 : comment.status;
|
|
84
|
+
var clearValue = function () {
|
|
85
|
+
onCancel === null || onCancel === void 0 ? void 0 : onCancel();
|
|
86
|
+
clearCommentState(uri, commentUri);
|
|
87
|
+
};
|
|
88
|
+
var handleChange = function (value, plainTextValue, mentions) {
|
|
89
|
+
return updateCommentState(uri, commentUri, { value: value, plainTextValue: plainTextValue, mentions: mentions });
|
|
90
|
+
};
|
|
91
|
+
var handleCancel = function () { return clearValue(); };
|
|
92
|
+
var handleFocus = function () { return setFocused(true); };
|
|
93
|
+
var handleBlur = function () { return setFocused(false); };
|
|
94
|
+
var handleSubmit = function (e) {
|
|
95
|
+
e.preventDefault();
|
|
96
|
+
var request = (0, ramda_1.cond)([
|
|
97
|
+
[
|
|
98
|
+
(0, ramda_1.always)(!comment),
|
|
99
|
+
function () {
|
|
100
|
+
return createComment({
|
|
101
|
+
content: plainTextValue,
|
|
102
|
+
namedUsers: mentions,
|
|
103
|
+
objectType: objectType,
|
|
104
|
+
uri: uri,
|
|
105
|
+
relatedObjectUris: relatedObjectUris
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
],
|
|
109
|
+
[
|
|
110
|
+
(0, ramda_1.always)(isEditingComment),
|
|
111
|
+
function () {
|
|
112
|
+
return editComment({
|
|
113
|
+
content: plainTextValue,
|
|
114
|
+
namedUsers: mentions,
|
|
115
|
+
commentId: comment.commentId,
|
|
116
|
+
objectType: objectType,
|
|
117
|
+
replies: comment.replies,
|
|
118
|
+
relatedObjectUris: relatedObjectUris,
|
|
119
|
+
uri: uri
|
|
120
|
+
});
|
|
121
|
+
}
|
|
122
|
+
],
|
|
123
|
+
[
|
|
124
|
+
(0, ramda_1.always)(isEditingReply),
|
|
125
|
+
function () {
|
|
126
|
+
return editReply({
|
|
127
|
+
content: plainTextValue,
|
|
128
|
+
namedUsers: mentions,
|
|
129
|
+
commentId: comment.commentId,
|
|
130
|
+
replyId: reply.replyId
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
[
|
|
135
|
+
ramda_1.T,
|
|
136
|
+
function () {
|
|
137
|
+
return createReply({
|
|
138
|
+
content: plainTextValue,
|
|
139
|
+
namedUsers: mentions,
|
|
140
|
+
commentId: comment.commentId,
|
|
141
|
+
action: comment.status === 'open' ? 'none' : 'reopen',
|
|
142
|
+
uri: uri
|
|
143
|
+
});
|
|
144
|
+
}
|
|
145
|
+
]
|
|
146
|
+
]);
|
|
147
|
+
return request().then(clearValue).catch(console.log); //eslint-disable-line no-console
|
|
148
|
+
};
|
|
149
|
+
(0, react_1.useEffect)(function () {
|
|
150
|
+
if (popperRef) {
|
|
151
|
+
popperRef.current.forceUpdate();
|
|
152
|
+
}
|
|
153
|
+
}, [popperRef, shouldShowButtons]);
|
|
154
|
+
var buttonSize = isEditing ? 'small' : 'medium';
|
|
155
|
+
return (react_1.default.createElement(Box_1.default, { className: (0, classnames_1.default)(styles.root, className) },
|
|
156
|
+
react_1.default.createElement("form", { onSubmit: handleSubmit, className: styles.form },
|
|
157
|
+
react_1.default.createElement(Box_1.default, { className: styles.main },
|
|
158
|
+
!isEditing && react_1.default.createElement(Avatar_1.Avatar, { classes: { root: styles.avatar } }, username),
|
|
159
|
+
react_1.default.createElement(TextFieldWithMentions_1.TextFieldWithMentions, { className: styles.textField, disabled: sending, onChange: handleChange, inputRef: inputRef, value: value, onFocus: handleFocus, onBlur: handleBlur, placeholder: getPlaceholder(status) })),
|
|
160
|
+
shouldShowButtons && (react_1.default.createElement(Box_1.default, { className: styles.buttons },
|
|
161
|
+
react_1.default.createElement(Button_1.default, { className: styles.button, variant: "contained", color: "primary", disabled: !hasValue || sending, type: "submit", size: buttonSize }, getButtonText(status, isEditingComment, isEditingReply)),
|
|
162
|
+
react_1.default.createElement(Button_1.default, { disabled: sending, onClick: handleCancel, className: styles.button, variant: "outlined", color: "primary", size: buttonSize }, ui_i18n_1.default.text('Cancel')))))));
|
|
163
|
+
};
|
|
164
|
+
exports.SendMessageArea = SendMessageArea;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,477 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
14
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
15
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
16
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
17
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
18
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
19
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
20
|
+
});
|
|
21
|
+
};
|
|
22
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
23
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
24
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
25
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
26
|
+
function step(op) {
|
|
27
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
28
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
29
|
+
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;
|
|
30
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
31
|
+
switch (op[0]) {
|
|
32
|
+
case 0: case 1: t = op; break;
|
|
33
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
34
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
35
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
36
|
+
default:
|
|
37
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
38
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
39
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
40
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
41
|
+
if (t[2]) _.ops.pop();
|
|
42
|
+
_.trys.pop(); continue;
|
|
43
|
+
}
|
|
44
|
+
op = body.call(thisArg, _);
|
|
45
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
46
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
50
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
51
|
+
};
|
|
52
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53
|
+
var react_1 = __importDefault(require("react"));
|
|
54
|
+
var enzyme_1 = require("enzyme");
|
|
55
|
+
var test_utils_1 = require("react-dom/test-utils");
|
|
56
|
+
var MdmModuleContext_1 = require("../../../contexts/MdmModuleContext");
|
|
57
|
+
var CollaborationContext_1 = require("../../../contexts/CollaborationContext");
|
|
58
|
+
var TextFieldWithMentions_1 = require("../TextFieldWithMentions");
|
|
59
|
+
var Avatar_1 = require("../Avatar");
|
|
60
|
+
var SendMessageArea_1 = require("./SendMessageArea");
|
|
61
|
+
var createProps = function (comment, extraProps) {
|
|
62
|
+
if (extraProps === void 0) { extraProps = {}; }
|
|
63
|
+
return __assign(__assign({ comment: comment, inputRef: react_1.default.createRef() }, extraProps), { objectType: 'objectType', uri: 'uri', relatedObjectUris: ['entities/13JKIKAz'], className: 'root' });
|
|
64
|
+
};
|
|
65
|
+
var createReply = jest.fn().mockReturnValue(new Promise(function (res) { return res(); }));
|
|
66
|
+
var createComment = jest.fn().mockReturnValue(new Promise(function (res) { return res(); }));
|
|
67
|
+
var editCommentWithResolve = jest.fn().mockReturnValue(new Promise(function (res) { return res(); }));
|
|
68
|
+
var editReply = jest.fn().mockReturnValue(new Promise(function (res) { return res(); }));
|
|
69
|
+
var defaultGetCommentState = jest.fn().mockImplementation(function () { return ({}); });
|
|
70
|
+
var clearCommentState = jest.fn();
|
|
71
|
+
var updateCommentState = jest.fn();
|
|
72
|
+
var createCommentObject = function (_a) {
|
|
73
|
+
var _b = _a === void 0 ? {} : _a, status = _b.status;
|
|
74
|
+
return {
|
|
75
|
+
commentId: 'commentId',
|
|
76
|
+
status: status
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
var collaborationContextValue;
|
|
80
|
+
var mockCollaborationContext = function (_a) {
|
|
81
|
+
var _b = _a === void 0 ? {} : _a, _c = _b.sending, sending = _c === void 0 ? false : _c, _d = _b.editComment, editComment = _d === void 0 ? editCommentWithResolve : _d, _e = _b.getCommentState, getCommentState = _e === void 0 ? defaultGetCommentState : _e;
|
|
82
|
+
collaborationContextValue = {
|
|
83
|
+
createReply: createReply,
|
|
84
|
+
createComment: createComment,
|
|
85
|
+
editComment: editComment,
|
|
86
|
+
editReply: editReply,
|
|
87
|
+
getCommentState: getCommentState,
|
|
88
|
+
clearCommentState: clearCommentState,
|
|
89
|
+
updateCommentState: updateCommentState,
|
|
90
|
+
sending: sending
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
var user = {
|
|
94
|
+
username: 'egor.ivanov'
|
|
95
|
+
};
|
|
96
|
+
var setUp = function (props) {
|
|
97
|
+
return (0, enzyme_1.mount)(react_1.default.createElement(CollaborationContext_1.CollaborationContext.Provider, { value: collaborationContextValue },
|
|
98
|
+
react_1.default.createElement(MdmModuleContext_1.MdmModuleProvider, { values: { user: user } },
|
|
99
|
+
react_1.default.createElement(SendMessageArea_1.SendMessageArea, __assign({}, props)))));
|
|
100
|
+
};
|
|
101
|
+
describe('SendMessageArea tests', function () {
|
|
102
|
+
afterEach(function () {
|
|
103
|
+
jest.clearAllMocks();
|
|
104
|
+
});
|
|
105
|
+
it('should render avatar correctly', function () {
|
|
106
|
+
mockCollaborationContext();
|
|
107
|
+
var component = setUp(createProps(createCommentObject({ status: 'open' })));
|
|
108
|
+
expect(component.find(Avatar_1.Avatar)).toHaveLength(1);
|
|
109
|
+
expect(component.find(Avatar_1.Avatar).prop('children')).toBe('egor.ivanov');
|
|
110
|
+
});
|
|
111
|
+
it('should render input correctly if status is "open"', function () {
|
|
112
|
+
mockCollaborationContext();
|
|
113
|
+
var component = setUp(createProps(createCommentObject({ status: 'open' })));
|
|
114
|
+
expect(component.find(TextFieldWithMentions_1.TextFieldWithMentions)).toHaveLength(1);
|
|
115
|
+
expect(component.find(TextFieldWithMentions_1.TextFieldWithMentions).prop('placeholder')).toBe('Reply...');
|
|
116
|
+
});
|
|
117
|
+
it('should render input correctly if status is "resolved"', function () {
|
|
118
|
+
mockCollaborationContext();
|
|
119
|
+
var component = setUp(createProps(createCommentObject({ status: 'resolved' })));
|
|
120
|
+
expect(component.find(TextFieldWithMentions_1.TextFieldWithMentions)).toHaveLength(1);
|
|
121
|
+
expect(component.find(TextFieldWithMentions_1.TextFieldWithMentions).prop('placeholder')).toBe('Adding a comment will re-open this');
|
|
122
|
+
});
|
|
123
|
+
it('should render input correctly if status is undefined', function () {
|
|
124
|
+
mockCollaborationContext();
|
|
125
|
+
var component = setUp(createProps());
|
|
126
|
+
expect(component.find(TextFieldWithMentions_1.TextFieldWithMentions)).toHaveLength(1);
|
|
127
|
+
expect(component.find(TextFieldWithMentions_1.TextFieldWithMentions).prop('placeholder')).toBe('');
|
|
128
|
+
});
|
|
129
|
+
it('should render Reply button correctly if status is "open"', function () {
|
|
130
|
+
mockCollaborationContext();
|
|
131
|
+
var component = setUp(createProps(createCommentObject({ status: 'open' })));
|
|
132
|
+
component.find(TextFieldWithMentions_1.TextFieldWithMentions).find('textarea').simulate('focus');
|
|
133
|
+
var buttons = component.find('.buttons').last();
|
|
134
|
+
expect(buttons.childAt(0).text()).toBe('Reply');
|
|
135
|
+
});
|
|
136
|
+
it('should render Reply button correctly if status is "resolved"', function () {
|
|
137
|
+
mockCollaborationContext();
|
|
138
|
+
var component = setUp(createProps(createCommentObject({ status: 'resolved' })));
|
|
139
|
+
component.find(TextFieldWithMentions_1.TextFieldWithMentions).find('textarea').simulate('focus');
|
|
140
|
+
var buttons = component.find('.buttons').last();
|
|
141
|
+
expect(buttons.childAt(0).text()).toBe('Reply');
|
|
142
|
+
});
|
|
143
|
+
it('should render Comment button correctly if comment is undefined', function () {
|
|
144
|
+
mockCollaborationContext();
|
|
145
|
+
var component = setUp(createProps());
|
|
146
|
+
component.find(TextFieldWithMentions_1.TextFieldWithMentions).find('textarea').simulate('focus');
|
|
147
|
+
var buttons = component.find('.buttons').last();
|
|
148
|
+
expect(buttons.childAt(0).text()).toBe('Comment');
|
|
149
|
+
});
|
|
150
|
+
it('should render buttons if value is not empty string', function () {
|
|
151
|
+
var getCommentState = jest.fn().mockImplementation(function () { return ({
|
|
152
|
+
value: 'value',
|
|
153
|
+
plainTextValue: 'value',
|
|
154
|
+
mentions: []
|
|
155
|
+
}); });
|
|
156
|
+
mockCollaborationContext({ getCommentState: getCommentState });
|
|
157
|
+
var component = setUp(createProps(createCommentObject({ status: 'open' })));
|
|
158
|
+
expect(component.find('.buttons').length).toBeTruthy();
|
|
159
|
+
});
|
|
160
|
+
it('should render buttons if input is focused', function () {
|
|
161
|
+
mockCollaborationContext();
|
|
162
|
+
var component = setUp(createProps(createCommentObject({ status: 'open' })));
|
|
163
|
+
expect(component.find('.buttons')).toHaveLength(0);
|
|
164
|
+
component.find(TextFieldWithMentions_1.TextFieldWithMentions).find('textarea').simulate('focus');
|
|
165
|
+
expect(component.find('.buttons').length).toBeTruthy();
|
|
166
|
+
component.find(TextFieldWithMentions_1.TextFieldWithMentions).find('textarea').simulate('blur');
|
|
167
|
+
expect(component.find('.buttons')).toHaveLength(0);
|
|
168
|
+
});
|
|
169
|
+
it('should disable Reply or Comment button if value is empty', function () {
|
|
170
|
+
var getCommentState = jest.fn().mockImplementation(function () { return ({
|
|
171
|
+
value: 'value',
|
|
172
|
+
plainTextValue: 'value',
|
|
173
|
+
mentions: []
|
|
174
|
+
}); });
|
|
175
|
+
mockCollaborationContext({ getCommentState: getCommentState });
|
|
176
|
+
var component = setUp(createProps(createCommentObject({ status: 'open' })));
|
|
177
|
+
component.find(TextFieldWithMentions_1.TextFieldWithMentions).find('textarea').simulate('focus');
|
|
178
|
+
var buttons = component.find('.buttons').last();
|
|
179
|
+
expect(buttons.childAt(0).prop('disabled')).toBe(false);
|
|
180
|
+
});
|
|
181
|
+
it('should disable Cancel button if loading is "true"', function () {
|
|
182
|
+
mockCollaborationContext({ sending: true });
|
|
183
|
+
var component = setUp(createProps(createCommentObject({ status: 'open' })));
|
|
184
|
+
component.find(TextFieldWithMentions_1.TextFieldWithMentions).find('textarea').simulate('focus');
|
|
185
|
+
var buttons = component.find('.buttons').last();
|
|
186
|
+
expect(buttons.childAt(1).prop('disabled')).toBe(true);
|
|
187
|
+
});
|
|
188
|
+
it('should disable Reply or Comment button if loading is "true"', function () {
|
|
189
|
+
mockCollaborationContext({ sending: true });
|
|
190
|
+
var component = setUp(createProps(createCommentObject({ status: 'open' })));
|
|
191
|
+
component.find(TextFieldWithMentions_1.TextFieldWithMentions).find('textarea').simulate('focus');
|
|
192
|
+
var buttons = component.find('.buttons').last();
|
|
193
|
+
expect(buttons.childAt(0).prop('disabled')).toBe(true);
|
|
194
|
+
});
|
|
195
|
+
it('should pass correct default value to TextFieldWithMentions if isEditingComment equals true', function () {
|
|
196
|
+
mockCollaborationContext();
|
|
197
|
+
var comment = {
|
|
198
|
+
content: 'Hello +denis',
|
|
199
|
+
namedUsers: ['denis'],
|
|
200
|
+
commentId: 'commentId',
|
|
201
|
+
status: 'open'
|
|
202
|
+
};
|
|
203
|
+
var component = setUp(createProps(comment, { isEditingComment: true }));
|
|
204
|
+
expect(component.find(TextFieldWithMentions_1.TextFieldWithMentions).prop('value')).toBe('Hello @[denis](denis)');
|
|
205
|
+
});
|
|
206
|
+
it('should pass correct default value to TextFieldWithMentions if isEditingReply equals true', function () {
|
|
207
|
+
mockCollaborationContext();
|
|
208
|
+
var reply = {
|
|
209
|
+
content: 'Hello +ainsteisha',
|
|
210
|
+
namedUsers: ['ainsteisha'],
|
|
211
|
+
replyId: 'replyId'
|
|
212
|
+
};
|
|
213
|
+
var component = setUp(createProps(createCommentObject(), { isEditingReply: true, reply: reply }));
|
|
214
|
+
expect(component.find(TextFieldWithMentions_1.TextFieldWithMentions).prop('value')).toBe('Hello @[ainsteisha](ainsteisha)');
|
|
215
|
+
});
|
|
216
|
+
it('should pass correct default value to TextFieldWithMentions if isEditingReply and isEditingComment equals false', function () {
|
|
217
|
+
mockCollaborationContext();
|
|
218
|
+
var component = setUp(createProps(createCommentObject()));
|
|
219
|
+
expect(component.find(TextFieldWithMentions_1.TextFieldWithMentions).prop('value')).toBe('');
|
|
220
|
+
});
|
|
221
|
+
it('handleChange handler should work correctly', function () {
|
|
222
|
+
mockCollaborationContext();
|
|
223
|
+
var component = setUp(createProps());
|
|
224
|
+
var onChange = component.find(TextFieldWithMentions_1.TextFieldWithMentions).prop('onChange');
|
|
225
|
+
var value = 'Hello @[+vyacheslav](vyacheslav)';
|
|
226
|
+
var plainTextValue = 'Hello +vyacheslav';
|
|
227
|
+
var mentions = ['vyacheslav'];
|
|
228
|
+
(0, test_utils_1.act)(function () {
|
|
229
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(value, plainTextValue, mentions);
|
|
230
|
+
});
|
|
231
|
+
expect(updateCommentState).toHaveBeenCalledWith('uri', 'comment/new', { value: value, plainTextValue: plainTextValue, mentions: mentions });
|
|
232
|
+
});
|
|
233
|
+
it('handleSubmit handler should work correctly if comment exists and last status is "open"', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
234
|
+
var getCommentState, component, buttons, preventDefault;
|
|
235
|
+
return __generator(this, function (_a) {
|
|
236
|
+
switch (_a.label) {
|
|
237
|
+
case 0:
|
|
238
|
+
getCommentState = jest.fn().mockImplementation(function () { return ({
|
|
239
|
+
value: 'Hello @[+vyacheslav](vyacheslav)',
|
|
240
|
+
plainTextValue: 'Hello +vyacheslav',
|
|
241
|
+
mentions: ['vyacheslav']
|
|
242
|
+
}); });
|
|
243
|
+
mockCollaborationContext({ getCommentState: getCommentState });
|
|
244
|
+
component = setUp(createProps(createCommentObject({ status: 'open' })));
|
|
245
|
+
buttons = component.find('.buttons').last();
|
|
246
|
+
buttons.childAt(0).find('button').simulate('click');
|
|
247
|
+
preventDefault = jest.fn();
|
|
248
|
+
component.find('.form').simulate('submit', { preventDefault: preventDefault });
|
|
249
|
+
expect(preventDefault).toHaveBeenCalled();
|
|
250
|
+
expect(createReply).toHaveBeenCalledWith({
|
|
251
|
+
content: 'Hello +vyacheslav',
|
|
252
|
+
namedUsers: ['vyacheslav'],
|
|
253
|
+
commentId: 'commentId',
|
|
254
|
+
action: 'none',
|
|
255
|
+
uri: 'uri'
|
|
256
|
+
});
|
|
257
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
258
|
+
return __generator(this, function (_a) {
|
|
259
|
+
component.update();
|
|
260
|
+
return [2 /*return*/];
|
|
261
|
+
});
|
|
262
|
+
}); })];
|
|
263
|
+
case 1:
|
|
264
|
+
_a.sent();
|
|
265
|
+
expect(clearCommentState).toHaveBeenCalledWith('uri', 'comment/commentId/reply/new');
|
|
266
|
+
return [2 /*return*/];
|
|
267
|
+
}
|
|
268
|
+
});
|
|
269
|
+
}); });
|
|
270
|
+
it('handleSubmit handler should work correctly if comment exists and last status is "resolved"', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
271
|
+
var getCommentState, component, buttons, preventDefault;
|
|
272
|
+
return __generator(this, function (_a) {
|
|
273
|
+
switch (_a.label) {
|
|
274
|
+
case 0:
|
|
275
|
+
getCommentState = jest.fn().mockImplementation(function () { return ({
|
|
276
|
+
value: 'Hello @[+vyacheslav](vyacheslav)',
|
|
277
|
+
plainTextValue: 'Hello +vyacheslav',
|
|
278
|
+
mentions: ['vyacheslav']
|
|
279
|
+
}); });
|
|
280
|
+
mockCollaborationContext({ getCommentState: getCommentState });
|
|
281
|
+
component = setUp(createProps(createCommentObject({ status: 'resolved' })));
|
|
282
|
+
buttons = component.find('.buttons').last();
|
|
283
|
+
buttons.childAt(0).find('button').simulate('click');
|
|
284
|
+
preventDefault = jest.fn();
|
|
285
|
+
component.find('.form').simulate('submit', { preventDefault: preventDefault });
|
|
286
|
+
expect(preventDefault).toHaveBeenCalled();
|
|
287
|
+
expect(createReply).toHaveBeenCalledWith({
|
|
288
|
+
content: 'Hello +vyacheslav',
|
|
289
|
+
namedUsers: ['vyacheslav'],
|
|
290
|
+
commentId: 'commentId',
|
|
291
|
+
action: 'reopen',
|
|
292
|
+
uri: 'uri'
|
|
293
|
+
});
|
|
294
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
295
|
+
return __generator(this, function (_a) {
|
|
296
|
+
component.update();
|
|
297
|
+
return [2 /*return*/];
|
|
298
|
+
});
|
|
299
|
+
}); })];
|
|
300
|
+
case 1:
|
|
301
|
+
_a.sent();
|
|
302
|
+
expect(clearCommentState).toHaveBeenCalledWith('uri', 'comment/commentId/reply/new');
|
|
303
|
+
return [2 /*return*/];
|
|
304
|
+
}
|
|
305
|
+
});
|
|
306
|
+
}); });
|
|
307
|
+
it('handleSubmit handler should work correctly if comment does not exist', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
308
|
+
var getCommentState, component, buttons, preventDefault;
|
|
309
|
+
return __generator(this, function (_a) {
|
|
310
|
+
switch (_a.label) {
|
|
311
|
+
case 0:
|
|
312
|
+
getCommentState = jest.fn().mockImplementation(function () { return ({
|
|
313
|
+
value: 'Hello @[+vyacheslav](vyacheslav)',
|
|
314
|
+
plainTextValue: 'Hello +vyacheslav',
|
|
315
|
+
mentions: ['vyacheslav']
|
|
316
|
+
}); });
|
|
317
|
+
mockCollaborationContext({ getCommentState: getCommentState });
|
|
318
|
+
component = setUp(createProps());
|
|
319
|
+
buttons = component.find('.buttons').last();
|
|
320
|
+
buttons.childAt(0).find('button').simulate('click');
|
|
321
|
+
preventDefault = jest.fn();
|
|
322
|
+
component.find('.form').simulate('submit', { preventDefault: preventDefault });
|
|
323
|
+
expect(preventDefault).toHaveBeenCalled();
|
|
324
|
+
expect(createComment).toHaveBeenCalledWith({
|
|
325
|
+
content: 'Hello +vyacheslav',
|
|
326
|
+
namedUsers: ['vyacheslav'],
|
|
327
|
+
objectType: 'objectType',
|
|
328
|
+
uri: 'uri',
|
|
329
|
+
relatedObjectUris: ['entities/13JKIKAz']
|
|
330
|
+
});
|
|
331
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
332
|
+
return __generator(this, function (_a) {
|
|
333
|
+
component.update();
|
|
334
|
+
return [2 /*return*/];
|
|
335
|
+
});
|
|
336
|
+
}); })];
|
|
337
|
+
case 1:
|
|
338
|
+
_a.sent();
|
|
339
|
+
expect(clearCommentState).toHaveBeenCalledWith('uri', 'comment/new');
|
|
340
|
+
return [2 /*return*/];
|
|
341
|
+
}
|
|
342
|
+
});
|
|
343
|
+
}); });
|
|
344
|
+
it('should render Edit button if isEditingComment prop is true', function () {
|
|
345
|
+
mockCollaborationContext();
|
|
346
|
+
var component = setUp(createProps(createCommentObject({ status: 'resolved' }), { isEditingComment: true }));
|
|
347
|
+
component.find(TextFieldWithMentions_1.TextFieldWithMentions).find('textarea').simulate('focus');
|
|
348
|
+
var buttons = component.find('.buttons').last();
|
|
349
|
+
expect(buttons.childAt(0).text()).toBe('Edit');
|
|
350
|
+
});
|
|
351
|
+
it('submitting should work correctly if comment is editing', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
352
|
+
var onCancel, comment, component, buttons, preventDefault;
|
|
353
|
+
return __generator(this, function (_a) {
|
|
354
|
+
switch (_a.label) {
|
|
355
|
+
case 0:
|
|
356
|
+
mockCollaborationContext();
|
|
357
|
+
onCancel = jest.fn();
|
|
358
|
+
comment = {
|
|
359
|
+
content: 'Hello +denis',
|
|
360
|
+
namedUsers: ['denis'],
|
|
361
|
+
commentId: 'commentId',
|
|
362
|
+
status: 'open'
|
|
363
|
+
};
|
|
364
|
+
component = setUp(createProps(comment, { isEditingComment: true, onCancel: onCancel }));
|
|
365
|
+
buttons = component.find('.buttons').last();
|
|
366
|
+
buttons.childAt(0).find('button').simulate('click');
|
|
367
|
+
preventDefault = jest.fn();
|
|
368
|
+
component.find('.form').simulate('submit', { preventDefault: preventDefault });
|
|
369
|
+
expect(preventDefault).toHaveBeenCalled();
|
|
370
|
+
expect(editCommentWithResolve).toHaveBeenCalledWith({
|
|
371
|
+
content: 'Hello +denis',
|
|
372
|
+
namedUsers: ['denis'],
|
|
373
|
+
commentId: 'commentId',
|
|
374
|
+
uri: 'uri',
|
|
375
|
+
relatedObjectUris: ['entities/13JKIKAz'],
|
|
376
|
+
replies: undefined,
|
|
377
|
+
objectType: 'objectType'
|
|
378
|
+
});
|
|
379
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
380
|
+
return __generator(this, function (_a) {
|
|
381
|
+
component.update();
|
|
382
|
+
return [2 /*return*/];
|
|
383
|
+
});
|
|
384
|
+
}); })];
|
|
385
|
+
case 1:
|
|
386
|
+
_a.sent();
|
|
387
|
+
expect(clearCommentState).toHaveBeenCalledWith('uri', 'comment/commentId');
|
|
388
|
+
expect(onCancel).toHaveBeenCalledTimes(1);
|
|
389
|
+
return [2 /*return*/];
|
|
390
|
+
}
|
|
391
|
+
});
|
|
392
|
+
}); });
|
|
393
|
+
it('submitting should work correctly if reply is editing', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
394
|
+
var onCancel, reply, component, buttons, preventDefault;
|
|
395
|
+
return __generator(this, function (_a) {
|
|
396
|
+
switch (_a.label) {
|
|
397
|
+
case 0:
|
|
398
|
+
mockCollaborationContext();
|
|
399
|
+
onCancel = jest.fn();
|
|
400
|
+
reply = {
|
|
401
|
+
content: 'Hello +ainsteisha',
|
|
402
|
+
namedUsers: ['ainsteisha'],
|
|
403
|
+
replyId: 'replyId'
|
|
404
|
+
};
|
|
405
|
+
component = setUp(createProps(createCommentObject({ status: 'open' }), {
|
|
406
|
+
isEditingReply: true,
|
|
407
|
+
onCancel: onCancel,
|
|
408
|
+
reply: reply
|
|
409
|
+
}));
|
|
410
|
+
buttons = component.find('.buttons').last();
|
|
411
|
+
buttons.childAt(0).find('button').simulate('click');
|
|
412
|
+
preventDefault = jest.fn();
|
|
413
|
+
component.find('.form').simulate('submit', { preventDefault: preventDefault });
|
|
414
|
+
expect(preventDefault).toHaveBeenCalled();
|
|
415
|
+
expect(editReply).toHaveBeenCalledWith({
|
|
416
|
+
content: reply.content,
|
|
417
|
+
namedUsers: reply.namedUsers,
|
|
418
|
+
commentId: 'commentId',
|
|
419
|
+
replyId: reply.replyId
|
|
420
|
+
});
|
|
421
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
422
|
+
return __generator(this, function (_a) {
|
|
423
|
+
component.update();
|
|
424
|
+
return [2 /*return*/];
|
|
425
|
+
});
|
|
426
|
+
}); })];
|
|
427
|
+
case 1:
|
|
428
|
+
_a.sent();
|
|
429
|
+
expect(clearCommentState).toHaveBeenCalledWith('uri', 'comment/commentId/reply/replyId');
|
|
430
|
+
expect(onCancel).toHaveBeenCalledTimes(1);
|
|
431
|
+
return [2 /*return*/];
|
|
432
|
+
}
|
|
433
|
+
});
|
|
434
|
+
}); });
|
|
435
|
+
it('if received error after send request, do not need to clear text input', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
436
|
+
var editCommentWithReject, getCommentState, onCancel, component, buttons, preventDefault;
|
|
437
|
+
return __generator(this, function (_a) {
|
|
438
|
+
switch (_a.label) {
|
|
439
|
+
case 0:
|
|
440
|
+
editCommentWithReject = jest.fn().mockRejectedValue('error');
|
|
441
|
+
getCommentState = jest.fn().mockImplementation(function () { return ({
|
|
442
|
+
value: 'Hello @[+vyacheslav](vyacheslav)',
|
|
443
|
+
plainTextValue: 'Hello +vyacheslav',
|
|
444
|
+
mentions: ['vyacheslav']
|
|
445
|
+
}); });
|
|
446
|
+
mockCollaborationContext({ sending: false, editComment: editCommentWithReject, getCommentState: getCommentState });
|
|
447
|
+
onCancel = jest.fn();
|
|
448
|
+
component = setUp(createProps(createCommentObject({ status: 'open' }), { isEditingComment: true, onCancel: onCancel }));
|
|
449
|
+
buttons = component.find('.buttons').last();
|
|
450
|
+
buttons.childAt(0).find('button').simulate('click');
|
|
451
|
+
preventDefault = jest.fn();
|
|
452
|
+
component.find('.form').simulate('submit', { preventDefault: preventDefault });
|
|
453
|
+
expect(preventDefault).toHaveBeenCalled();
|
|
454
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
455
|
+
return __generator(this, function (_a) {
|
|
456
|
+
component.update();
|
|
457
|
+
return [2 /*return*/];
|
|
458
|
+
});
|
|
459
|
+
}); })];
|
|
460
|
+
case 1:
|
|
461
|
+
_a.sent();
|
|
462
|
+
expect(clearCommentState).not.toHaveBeenCalled();
|
|
463
|
+
expect(onCancel).toHaveBeenCalledTimes(0);
|
|
464
|
+
return [2 /*return*/];
|
|
465
|
+
}
|
|
466
|
+
});
|
|
467
|
+
}); });
|
|
468
|
+
it('should call onCancel if click cancel button', function () {
|
|
469
|
+
mockCollaborationContext();
|
|
470
|
+
var onCancel = jest.fn();
|
|
471
|
+
var component = setUp(createProps(createCommentObject({ status: 'open' }), { isEditingComment: true, onCancel: onCancel }));
|
|
472
|
+
component.find(TextFieldWithMentions_1.TextFieldWithMentions).find('textarea').simulate('focus');
|
|
473
|
+
var buttons = component.find('.buttons').last();
|
|
474
|
+
buttons.childAt(1).find('button').simulate('click');
|
|
475
|
+
expect(onCancel).toHaveBeenCalledTimes(1);
|
|
476
|
+
});
|
|
477
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SendMessageArea } from './SendMessageArea';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SendMessageArea = void 0;
|
|
4
|
+
var SendMessageArea_1 = require("./SendMessageArea");
|
|
5
|
+
Object.defineProperty(exports, "SendMessageArea", { enumerable: true, get: function () { return SendMessageArea_1.SendMessageArea; } });
|