@reltio/components 1.4.1836-hf → 1.4.1836
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/AttributeListItem/AttributeListItem.d.ts +2 -2
- package/cjs/AttributeSelector/AttributeSelector.js +2 -2
- package/cjs/AttributeSelector/styles.js +2 -1
- 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/BasicTable/BasicTable.js +2 -2
- 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/CommentTarget/styles.d.ts +1 -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/components/TextFieldWithMentions/styles.js +55 -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.d.ts +1 -0
- package/cjs/DefaultCellValueRenderer/DefaultCellValueRenderer.js +5 -4
- 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.d.ts +11 -22
- package/cjs/HOCs/withFilter/ColumnFilter.js +8 -25
- package/cjs/HOCs/withFilter/ColumnFilter.spec.js +1 -1
- package/cjs/HOCs/withFilter/FilterChip.d.ts +2 -3
- package/cjs/HOCs/withFilter/styles.d.ts +1 -0
- package/cjs/HOCs/withFilter/styles.js +27 -1
- package/cjs/HOCs/withFilter/withFilter.d.ts +10 -8
- package/cjs/HOCs/withFilter/withFilter.js +1 -1
- package/cjs/HOCs/withTooltip/withTooltip.d.ts +1 -1
- 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 +11 -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 +3 -3
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.js +10 -4
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.js +1 -1
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.test.js +1 -1
- package/cjs/ReadOnlyAttributesPager/styles.d.ts +2 -2
- package/cjs/ReadOnlyAttributesView/ReadOnlyAttributesView.js +9 -1
- package/cjs/ReadOnlyAttributesView/ReadOnlyAttributesView.test.js +147 -0
- package/cjs/ReadOnlyAttributesView/styles.d.ts +1 -1
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.js +3 -3
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.js +11 -5
- 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 +5 -5
- package/cjs/SimpleAttribute/SimpleAttribute.test.js +14 -8
- 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/SmallIconButton/SmallIconButton.d.ts +1 -1
- package/cjs/SmallIconButton/index.d.ts +2 -2
- package/cjs/SourceItem/styles.d.ts +1 -1
- package/cjs/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.d.ts +5 -1
- package/cjs/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.js +10 -3
- package/cjs/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.test.js +71 -22
- package/cjs/TableWithBars/components/NumberCellValueRenderer/styles.d.ts +1 -1
- package/cjs/TableWithBars/components/NumberCellValueRenderer/styles.js +5 -0
- package/cjs/TextEditor/TextEditor.d.ts +13 -0
- package/cjs/TextEditor/TextEditor.js +36 -0
- package/cjs/TextEditor/TextEditor.test.d.ts +1 -0
- package/cjs/TextEditor/TextEditor.test.js +114 -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/MetadataTypesSelector.js +3 -1
- 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/MultiValueSelector/styles.js +2 -1
- package/cjs/components/MultipleInput/MultipleInput.d.ts +3 -3
- package/cjs/components/Popper/styles.js +2 -1
- package/cjs/components/PotentialMatchReviewCard/PotentialMatchReviewCard.js +2 -2
- package/cjs/components/ProfileBand/ProfileBand.js +4 -4
- package/cjs/components/ProfileBandNavigation/ProfileBandNavigationWidget.d.ts +3 -3
- package/cjs/components/ProfileCard/ProfileCardContent/ProfileCardContent.js +6 -6
- package/cjs/components/ProfileCard/ProfileCardContent/styles.d.ts +1 -1
- package/cjs/components/ProfileMatchCard/ProfileMatchCard.d.ts +2 -4
- package/cjs/components/ProfileMatchCard/ProfileMatchCard.js +1 -1
- package/cjs/components/ProfilesList/ProfilesList.js +6 -6
- package/cjs/components/ReactSortableTree/utils/dnd-manager.js +14 -0
- package/cjs/components/RelationEditor/RelationEditor.js +4 -4
- package/cjs/components/ReltioGridLayout/ReltioGridLayout.js +1 -1
- package/cjs/components/ReltioMap/MapControls/TopRightMapControls/TopRightMapControls.d.ts +2 -2
- package/cjs/components/ResizablePanes/styles.js +3 -0
- 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.d.ts +2 -2
- package/cjs/components/SidePanel/SidePanel.js +5 -1
- package/cjs/components/SimpleDropDownSelector/SimpleDropDownSelector.js +2 -2
- package/cjs/components/SimpleInput/SimpleInput.d.ts +8 -19
- package/cjs/components/SimpleInput/SimpleInput.js +4 -13
- package/cjs/components/UploadImageDialog/ImageByUrlField/styles.d.ts +1 -1
- package/cjs/components/UserSelector/UserSelector.js +5 -5
- package/cjs/components/UserSelector/styles.js +2 -1
- package/cjs/components/VerticalHeadingsTable/TableColumnDragLayer/styles.js +2 -1
- package/cjs/components/history/DateRangeSelector/DateRangeSelector.js +4 -4
- package/cjs/components/history/HistoryActivitySelector/HistoryActivitySelector.js +2 -2
- package/cjs/components/history/HistoryActivitySelector/styles.js +2 -1
- package/cjs/components/history/HistoryGraph/HistoryGraph.d.ts +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/cards/PotentialMatchTaskCard/PotentialMatchTaskCard.d.ts +4 -2
- package/cjs/components/workflow/cards/PotentialMatchTaskCard/PotentialMatchTaskCard.js +1 -19
- package/cjs/components/workflow/cards/WorkflowTaskCard.d.ts +1 -1
- package/cjs/components/workflow/cards/WorkflowTaskCard.js +2 -2
- package/cjs/components/workflow/cards/WorkflowTaskCardsFactory.d.ts +6 -2
- package/cjs/components/workflow/cards/WorkflowTaskCardsFactory.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/common.d.ts +2 -0
- package/cjs/constants/common.js +5 -0
- package/cjs/constants/index.d.ts +2 -0
- package/cjs/constants/index.js +5 -1
- package/cjs/constants/textField.d.ts +7 -0
- package/cjs/constants/textField.js +8 -0
- package/cjs/contexts/ConfigPermissionsContext/index.d.ts +2 -2
- package/cjs/contexts/ScrollToElementContext/index.d.ts +7 -4
- package/cjs/contexts/ScrollToElementContext/index.js +8 -2
- package/cjs/contexts/SegmentationContext/index.d.ts +2 -0
- package/cjs/contexts/SegmentationContext/index.js +9 -0
- package/cjs/contexts/index.d.ts +1 -0
- package/cjs/contexts/index.js +3 -1
- 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/ActivityFilterEditor/styles.js +2 -1
- 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 +163 -0
- package/cjs/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.test.d.ts +1 -0
- package/cjs/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.test.js +272 -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/helpers/basicTable.d.ts +2 -2
- package/cjs/hooks/index.d.ts +1 -0
- package/cjs/hooks/index.js +3 -1
- package/cjs/hooks/useAPI/useAPI.js +20 -15
- package/cjs/hooks/useCustomScripts.js +16 -16
- 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/hooks/useMatchesLoader.d.ts +2 -4
- package/cjs/hooks/useSavedSearchesRequest.d.ts +28 -0
- package/cjs/hooks/useSavedSearchesRequest.js +182 -0
- package/cjs/index.d.ts +45 -0
- package/cjs/index.js +100 -1
- package/cjs/types/basicTable.d.ts +12 -7
- package/esm/ActionButton/styles.d.ts +1 -1
- package/esm/AttributeListItem/AttributeListItem.d.ts +2 -2
- package/esm/AttributeSelector/AttributeSelector.js +2 -2
- package/esm/AttributeSelector/styles.js +2 -1
- 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/BasicTable/BasicTable.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/CommentTarget/styles.d.ts +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/components/TextFieldWithMentions/styles.js +52 -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.d.ts +1 -0
- package/esm/DefaultCellValueRenderer/DefaultCellValueRenderer.js +4 -3
- 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.d.ts +11 -22
- package/esm/HOCs/withFilter/ColumnFilter.js +10 -27
- package/esm/HOCs/withFilter/ColumnFilter.spec.js +2 -2
- package/esm/HOCs/withFilter/FilterChip.d.ts +2 -3
- package/esm/HOCs/withFilter/styles.d.ts +1 -0
- package/esm/HOCs/withFilter/styles.js +26 -0
- package/esm/HOCs/withFilter/withFilter.d.ts +10 -8
- package/esm/HOCs/withFilter/withFilter.js +2 -2
- package/esm/HOCs/withTooltip/withTooltip.d.ts +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 +11 -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 +3 -3
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.js +7 -1
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.js +1 -1
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.test.js +1 -1
- package/esm/ReadOnlyAttributesPager/styles.d.ts +2 -2
- package/esm/ReadOnlyAttributesView/ReadOnlyAttributesView.js +10 -2
- package/esm/ReadOnlyAttributesView/ReadOnlyAttributesView.test.js +147 -0
- package/esm/ReadOnlyAttributesView/styles.d.ts +1 -1
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.js +3 -3
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.js +7 -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 +4 -4
- package/esm/SimpleAttribute/SimpleAttribute.test.js +8 -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/SmallIconButton/SmallIconButton.d.ts +1 -1
- package/esm/SmallIconButton/index.d.ts +2 -2
- package/esm/SourceItem/styles.d.ts +1 -1
- package/esm/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.d.ts +5 -1
- package/esm/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.js +10 -3
- package/esm/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.test.js +71 -22
- package/esm/TableWithBars/components/NumberCellValueRenderer/styles.d.ts +1 -1
- package/esm/TableWithBars/components/NumberCellValueRenderer/styles.js +5 -0
- package/esm/TextEditor/TextEditor.d.ts +13 -0
- package/esm/TextEditor/TextEditor.js +29 -0
- package/esm/TextEditor/TextEditor.test.d.ts +1 -0
- package/esm/TextEditor/TextEditor.test.js +109 -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/MetadataTypesSelector.js +4 -2
- 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/MultiValueSelector/styles.js +2 -1
- package/esm/components/MultipleInput/MultipleInput.d.ts +3 -3
- package/esm/components/Popper/styles.js +2 -1
- package/esm/components/PotentialMatchReviewCard/PotentialMatchReviewCard.js +1 -1
- package/esm/components/ProfileBand/ProfileBand.js +2 -2
- package/esm/components/ProfileBandNavigation/ProfileBandNavigationWidget.d.ts +3 -3
- package/esm/components/ProfileCard/ProfileCardContent/ProfileCardContent.js +3 -3
- package/esm/components/ProfileCard/ProfileCardContent/styles.d.ts +1 -1
- package/esm/components/ProfileMatchCard/ProfileMatchCard.d.ts +2 -4
- package/esm/components/ProfileMatchCard/ProfileMatchCard.js +1 -1
- package/esm/components/ProfilesList/ProfilesList.js +3 -3
- package/esm/components/ReactSortableTree/utils/dnd-manager.js +14 -0
- package/esm/components/RelationEditor/RelationEditor.js +2 -2
- package/esm/components/ReltioGridLayout/ReltioGridLayout.js +1 -1
- package/esm/components/ReltioMap/MapControls/TopRightMapControls/TopRightMapControls.d.ts +2 -2
- package/esm/components/ResizablePanes/styles.js +3 -0
- 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.d.ts +2 -2
- package/esm/components/SidePanel/SidePanel.js +5 -1
- package/esm/components/SimpleDropDownSelector/SimpleDropDownSelector.js +1 -1
- package/esm/components/SimpleInput/SimpleInput.d.ts +8 -19
- package/esm/components/SimpleInput/SimpleInput.js +4 -13
- package/esm/components/UploadImageDialog/ImageByUrlField/styles.d.ts +1 -1
- package/esm/components/UserSelector/UserSelector.js +5 -5
- package/esm/components/UserSelector/styles.js +2 -1
- package/esm/components/VerticalHeadingsTable/TableColumnDragLayer/styles.js +2 -1
- package/esm/components/history/DateRangeSelector/DateRangeSelector.js +3 -3
- package/esm/components/history/HistoryActivitySelector/HistoryActivitySelector.js +2 -2
- package/esm/components/history/HistoryActivitySelector/styles.js +2 -1
- package/esm/components/history/HistoryGraph/HistoryGraph.d.ts +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/cards/PotentialMatchTaskCard/PotentialMatchTaskCard.d.ts +4 -2
- package/esm/components/workflow/cards/PotentialMatchTaskCard/PotentialMatchTaskCard.js +1 -19
- package/esm/components/workflow/cards/WorkflowTaskCard.d.ts +1 -1
- package/esm/components/workflow/cards/WorkflowTaskCard.js +2 -2
- package/esm/components/workflow/cards/WorkflowTaskCardsFactory.d.ts +6 -2
- package/esm/components/workflow/cards/WorkflowTaskCardsFactory.js +2 -2
- 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/common.d.ts +2 -0
- package/esm/constants/common.js +2 -0
- package/esm/constants/index.d.ts +2 -0
- package/esm/constants/index.js +2 -0
- package/esm/constants/textField.d.ts +7 -0
- package/esm/constants/textField.js +5 -0
- package/esm/contexts/ConfigPermissionsContext/index.d.ts +2 -2
- package/esm/contexts/ScrollToElementContext/index.d.ts +7 -4
- package/esm/contexts/ScrollToElementContext/index.js +8 -2
- package/esm/contexts/SegmentationContext/index.d.ts +2 -0
- package/esm/contexts/SegmentationContext/index.js +3 -0
- package/esm/contexts/index.d.ts +1 -0
- package/esm/contexts/index.js +1 -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/ActivityFilterEditor/styles.js +2 -1
- 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 +133 -0
- package/esm/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.test.d.ts +1 -0
- package/esm/features/crosswalks/CrosswalkAttributes/CrosswalkAttributes.test.js +267 -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/helpers/attributesView.js +1 -1
- package/esm/helpers/basicTable.d.ts +2 -2
- package/esm/hooks/index.d.ts +1 -0
- package/esm/hooks/index.js +1 -0
- package/esm/hooks/useAPI/useAPI.js +20 -15
- package/esm/hooks/useCustomScripts.js +16 -16
- 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/hooks/useMatchesLoader.d.ts +2 -4
- package/esm/hooks/useSavedSearchesRequest.d.ts +28 -0
- package/esm/hooks/useSavedSearchesRequest.js +178 -0
- package/esm/index.d.ts +45 -0
- package/esm/index.js +45 -0
- package/esm/types/basicTable.d.ts +12 -7
- 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/CommentTarget/styles.d.ts +0 -1
- 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/CollaborationItem/TextFieldWithMentions/styles.js +0 -53
- 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 -36
- 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 -153
- 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/CommentTarget/styles.d.ts +0 -1
- 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/CollaborationItem/TextFieldWithMentions/styles.js +0 -50
- 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 -33
- 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 -149
- 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.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/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.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/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,1131 @@
|
|
|
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 mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
57
|
+
var test_utils_2 = require("../test-utils");
|
|
58
|
+
var Select_1 = __importDefault(require("../components/ReactSelect/Select"));
|
|
59
|
+
var DependentLookupAutopopulationContext_1 = require("../contexts/DependentLookupAutopopulationContext");
|
|
60
|
+
var ReactSelectOptionWithCheckIcon_1 = require("../ReactSelectOptionWithCheckIcon");
|
|
61
|
+
var helpers_1 = require("./helpers");
|
|
62
|
+
var DependentLookupEditor_1 = require("./DependentLookupEditor");
|
|
63
|
+
jest.mock('react-dom', function () { return (__assign(__assign({}, jest.requireActual('react-dom')), { createPortal: function (value) { return value; } })); });
|
|
64
|
+
jest.mock('@reltio/mdm-sdk', function () { return (__assign(__assign({}, jest.requireActual('@reltio/mdm-sdk')), { debounce: jest.fn() })); });
|
|
65
|
+
var originalDebounce = jest.requireActual('@reltio/mdm-sdk').debounce;
|
|
66
|
+
var fakeDebounce = function (func) { return func; };
|
|
67
|
+
describe('DependentLookupEditor', function () {
|
|
68
|
+
var props, resolveOptions, props2;
|
|
69
|
+
beforeEach(function () {
|
|
70
|
+
mdm_sdk_1.debounce.mockImplementation(fakeDebounce);
|
|
71
|
+
var requestPromise = new Promise(function (_resolve) {
|
|
72
|
+
resolveOptions = _resolve;
|
|
73
|
+
});
|
|
74
|
+
props = {
|
|
75
|
+
lookupCode: 'COUNTRY_CD',
|
|
76
|
+
getLookups: jest.fn(function (_, __, ___) { return requestPromise; }),
|
|
77
|
+
onChange: jest.fn(),
|
|
78
|
+
parents: [],
|
|
79
|
+
lookups: {},
|
|
80
|
+
resolveLookups: jest.fn()
|
|
81
|
+
};
|
|
82
|
+
props2 = {
|
|
83
|
+
lookupCode: 'COUNTRY_CD',
|
|
84
|
+
getLookups: jest.fn(function (_, __, ___) { return requestPromise; }),
|
|
85
|
+
onChange: jest.fn(),
|
|
86
|
+
parents: [],
|
|
87
|
+
lookups: {},
|
|
88
|
+
resolveLookups: jest.fn(),
|
|
89
|
+
disabled: false
|
|
90
|
+
};
|
|
91
|
+
});
|
|
92
|
+
afterEach(function () {
|
|
93
|
+
jest.resetAllMocks();
|
|
94
|
+
});
|
|
95
|
+
it('should render Select with correct properties in single mode', function () {
|
|
96
|
+
var value = { lookupCode: 'RU', value: 'Russia' };
|
|
97
|
+
var multiple = false;
|
|
98
|
+
var placeholder = '123';
|
|
99
|
+
var wrapper = (0, enzyme_1.shallow)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { multiple: multiple, value: value, placeholder: placeholder })));
|
|
100
|
+
var select = wrapper.find(Select_1.default);
|
|
101
|
+
expect(select.props()).toMatchObject({
|
|
102
|
+
isMulti: multiple,
|
|
103
|
+
value: value,
|
|
104
|
+
placeholder: placeholder
|
|
105
|
+
});
|
|
106
|
+
});
|
|
107
|
+
it('should render Select with correct properties in multiple mode', function () {
|
|
108
|
+
var value = [
|
|
109
|
+
{ lookupCode: 'RU', value: 'Russia' },
|
|
110
|
+
{ lookupCode: 'CN', value: 'China' }
|
|
111
|
+
];
|
|
112
|
+
var multiple = true;
|
|
113
|
+
var placeholder = '123';
|
|
114
|
+
var wrapper = (0, enzyme_1.shallow)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { multiple: multiple, value: value, placeholder: placeholder })));
|
|
115
|
+
var select = wrapper.find(Select_1.default);
|
|
116
|
+
expect(select.props()).toMatchObject({
|
|
117
|
+
isMulti: multiple,
|
|
118
|
+
value: value,
|
|
119
|
+
placeholder: placeholder
|
|
120
|
+
});
|
|
121
|
+
});
|
|
122
|
+
it('should reset inputValue and options on input blur in multiple mode', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
123
|
+
var value, wrapper, newInputValue;
|
|
124
|
+
return __generator(this, function (_a) {
|
|
125
|
+
value = [
|
|
126
|
+
{ lookupCode: 'RU', value: 'Russia' },
|
|
127
|
+
{ lookupCode: 'CN', value: 'China' }
|
|
128
|
+
];
|
|
129
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, multiple: true })));
|
|
130
|
+
newInputValue = 'u';
|
|
131
|
+
(0, test_utils_1.act)(function () {
|
|
132
|
+
wrapper.find(Select_1.default).prop('onInputChange')(newInputValue, { action: 'input-change' });
|
|
133
|
+
});
|
|
134
|
+
wrapper.update();
|
|
135
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe(newInputValue);
|
|
136
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
137
|
+
expect(props.getLookups).toBeCalledWith({
|
|
138
|
+
type: 'COUNTRY_CD',
|
|
139
|
+
parents: [],
|
|
140
|
+
displayNamePrefix: newInputValue,
|
|
141
|
+
max: 51,
|
|
142
|
+
offset: 0
|
|
143
|
+
});
|
|
144
|
+
(0, test_utils_1.act)(function () {
|
|
145
|
+
wrapper.find(Select_1.default).prop('onInputChange')('', { action: 'input-blur' });
|
|
146
|
+
});
|
|
147
|
+
wrapper.update();
|
|
148
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe('');
|
|
149
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
150
|
+
expect(props.getLookups).toBeCalledWith({
|
|
151
|
+
type: 'COUNTRY_CD',
|
|
152
|
+
parents: [],
|
|
153
|
+
displayNamePrefix: '',
|
|
154
|
+
max: 51,
|
|
155
|
+
offset: 0
|
|
156
|
+
});
|
|
157
|
+
return [2 /*return*/];
|
|
158
|
+
});
|
|
159
|
+
}); });
|
|
160
|
+
it('should not reset inputValue on menu-close in multiple mode', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
161
|
+
var value, wrapper, newInputValue;
|
|
162
|
+
return __generator(this, function (_a) {
|
|
163
|
+
value = [
|
|
164
|
+
{ lookupCode: 'RU', value: 'Russia' },
|
|
165
|
+
{ lookupCode: 'CN', value: 'China' }
|
|
166
|
+
];
|
|
167
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, multiple: true })));
|
|
168
|
+
newInputValue = 'u';
|
|
169
|
+
(0, test_utils_1.act)(function () {
|
|
170
|
+
wrapper.find(Select_1.default).prop('onInputChange')(newInputValue, { action: 'input-change' });
|
|
171
|
+
});
|
|
172
|
+
wrapper.update();
|
|
173
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe(newInputValue);
|
|
174
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
175
|
+
(0, test_utils_1.act)(function () {
|
|
176
|
+
wrapper.find(Select_1.default).prop('onInputChange')('', { action: 'menu-close' });
|
|
177
|
+
});
|
|
178
|
+
wrapper.update();
|
|
179
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe('u');
|
|
180
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
181
|
+
return [2 /*return*/];
|
|
182
|
+
});
|
|
183
|
+
}); });
|
|
184
|
+
it('should set inputValue as value property on input blur, if inputValue is not empty', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
185
|
+
var value, wrapper, newInputValue;
|
|
186
|
+
return __generator(this, function (_a) {
|
|
187
|
+
value = { lookupCode: 'RU', value: 'Russia' };
|
|
188
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, multiple: false })));
|
|
189
|
+
newInputValue = 'u';
|
|
190
|
+
(0, test_utils_1.act)(function () {
|
|
191
|
+
wrapper.find(Select_1.default).prop('onInputChange')(newInputValue, { action: 'input-change' });
|
|
192
|
+
});
|
|
193
|
+
wrapper.update();
|
|
194
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe(newInputValue);
|
|
195
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
196
|
+
expect(props.getLookups).toBeCalledWith({
|
|
197
|
+
type: 'COUNTRY_CD',
|
|
198
|
+
parents: [],
|
|
199
|
+
displayNamePrefix: newInputValue,
|
|
200
|
+
max: 51,
|
|
201
|
+
offset: 0
|
|
202
|
+
});
|
|
203
|
+
(0, test_utils_1.act)(function () {
|
|
204
|
+
wrapper.find(Select_1.default).prop('onInputChange')('', { action: 'input-blur' });
|
|
205
|
+
});
|
|
206
|
+
wrapper.update();
|
|
207
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe((0, helpers_1.getOptionLabel)(value));
|
|
208
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
209
|
+
expect(props.getLookups).toBeCalledWith({
|
|
210
|
+
type: 'COUNTRY_CD',
|
|
211
|
+
parents: [],
|
|
212
|
+
displayNamePrefix: '',
|
|
213
|
+
max: 51,
|
|
214
|
+
offset: 0
|
|
215
|
+
});
|
|
216
|
+
return [2 /*return*/];
|
|
217
|
+
});
|
|
218
|
+
}); });
|
|
219
|
+
it('should set inputValue as value property on menu close, if inputValue is not empty', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
220
|
+
var value, wrapper, newInputValue;
|
|
221
|
+
return __generator(this, function (_a) {
|
|
222
|
+
value = { lookupCode: 'RU', value: 'Russia' };
|
|
223
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, multiple: false })));
|
|
224
|
+
newInputValue = 'u';
|
|
225
|
+
(0, test_utils_1.act)(function () {
|
|
226
|
+
wrapper.find(Select_1.default).prop('onInputChange')(newInputValue, { action: 'input-change' });
|
|
227
|
+
});
|
|
228
|
+
wrapper.update();
|
|
229
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe(newInputValue);
|
|
230
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
231
|
+
expect(props.getLookups).toBeCalledWith({
|
|
232
|
+
type: 'COUNTRY_CD',
|
|
233
|
+
parents: [],
|
|
234
|
+
displayNamePrefix: newInputValue,
|
|
235
|
+
max: 51,
|
|
236
|
+
offset: 0
|
|
237
|
+
});
|
|
238
|
+
(0, test_utils_1.act)(function () {
|
|
239
|
+
wrapper.find(Select_1.default).prop('onInputChange')('', { action: 'menu-close' });
|
|
240
|
+
});
|
|
241
|
+
wrapper.update();
|
|
242
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe((0, helpers_1.getOptionLabel)(value));
|
|
243
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
244
|
+
expect(props.getLookups).toBeCalledWith({
|
|
245
|
+
type: 'COUNTRY_CD',
|
|
246
|
+
parents: [],
|
|
247
|
+
displayNamePrefix: '',
|
|
248
|
+
max: 51,
|
|
249
|
+
offset: 0
|
|
250
|
+
});
|
|
251
|
+
return [2 /*return*/];
|
|
252
|
+
});
|
|
253
|
+
}); });
|
|
254
|
+
var findLoadMoreButton = function (component) {
|
|
255
|
+
var menuListFooter = component.find(Select_1.default).prop('menuListFooter');
|
|
256
|
+
if (menuListFooter) {
|
|
257
|
+
return new enzyme_1.ReactWrapper(menuListFooter);
|
|
258
|
+
}
|
|
259
|
+
};
|
|
260
|
+
it('should not render menuListFooter if options number is less or equal to max value', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
261
|
+
var wrapper;
|
|
262
|
+
return __generator(this, function (_a) {
|
|
263
|
+
switch (_a.label) {
|
|
264
|
+
case 0:
|
|
265
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { max: 2 })));
|
|
266
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
267
|
+
return __generator(this, function (_a) {
|
|
268
|
+
resolveOptions({
|
|
269
|
+
CN: { displayName: 'China' },
|
|
270
|
+
PT: { displayName: 'Portugal' }
|
|
271
|
+
});
|
|
272
|
+
return [2 /*return*/];
|
|
273
|
+
});
|
|
274
|
+
}); })];
|
|
275
|
+
case 1:
|
|
276
|
+
_a.sent();
|
|
277
|
+
wrapper.update();
|
|
278
|
+
expect(findLoadMoreButton(wrapper)).toBeUndefined();
|
|
279
|
+
expect(wrapper.find(Select_1.default).prop('options').length).toBe(2);
|
|
280
|
+
return [2 /*return*/];
|
|
281
|
+
}
|
|
282
|
+
});
|
|
283
|
+
}); });
|
|
284
|
+
it('should render menuListFooter with ReactSelectLoadMoreButton if there are more options available', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
285
|
+
var wrapper, optionsProp, options, loadMoreButton;
|
|
286
|
+
return __generator(this, function (_a) {
|
|
287
|
+
switch (_a.label) {
|
|
288
|
+
case 0:
|
|
289
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { max: 2 })));
|
|
290
|
+
expect(findLoadMoreButton(wrapper)).toBeUndefined();
|
|
291
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
292
|
+
return __generator(this, function (_a) {
|
|
293
|
+
resolveOptions({
|
|
294
|
+
CN: { displayName: 'China' },
|
|
295
|
+
PT: { displayName: 'Portugal' },
|
|
296
|
+
RU: { displayName: 'Russia' }
|
|
297
|
+
});
|
|
298
|
+
return [2 /*return*/];
|
|
299
|
+
});
|
|
300
|
+
}); })];
|
|
301
|
+
case 1:
|
|
302
|
+
_a.sent();
|
|
303
|
+
wrapper.update();
|
|
304
|
+
optionsProp = wrapper.find(Select_1.default).prop('options');
|
|
305
|
+
expect(optionsProp.length).toBe(2);
|
|
306
|
+
expect(optionsProp[0].value).toBe('China');
|
|
307
|
+
expect(optionsProp[1].value).toBe('Portugal');
|
|
308
|
+
wrapper.find('input').simulate('keyDown', { key: 'ArrowDown' });
|
|
309
|
+
options = wrapper.find(ReactSelectOptionWithCheckIcon_1.ReactSelectOptionWithCheckIcon);
|
|
310
|
+
expect(options.length).toBe(2);
|
|
311
|
+
expect(options.at(0).text()).toBe('China (CN)');
|
|
312
|
+
expect(options.at(1).text()).toBe('Portugal (PT)');
|
|
313
|
+
loadMoreButton = findLoadMoreButton(wrapper);
|
|
314
|
+
expect(loadMoreButton.length).toBe(1);
|
|
315
|
+
expect(loadMoreButton.text()).toEqual('Load more');
|
|
316
|
+
return [2 /*return*/];
|
|
317
|
+
}
|
|
318
|
+
});
|
|
319
|
+
}); });
|
|
320
|
+
it('should load next options page on load more button click, button should exist if not all options are loaded', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
321
|
+
var getLookups, value, wrapper;
|
|
322
|
+
return __generator(this, function (_a) {
|
|
323
|
+
switch (_a.label) {
|
|
324
|
+
case 0:
|
|
325
|
+
getLookups = jest.fn();
|
|
326
|
+
getLookups.mockReturnValue(Promise.resolve({
|
|
327
|
+
CN: { displayName: 'China' },
|
|
328
|
+
PT: { displayName: 'Portugal' },
|
|
329
|
+
RU: { displayName: 'Russia' }
|
|
330
|
+
}));
|
|
331
|
+
value = { lookupCode: 'US', value: 'USA' };
|
|
332
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, getLookups: getLookups, max: 2 })));
|
|
333
|
+
return [4 /*yield*/, (0, test_utils_2.delayPromise)(1)];
|
|
334
|
+
case 1:
|
|
335
|
+
_a.sent();
|
|
336
|
+
wrapper.update();
|
|
337
|
+
expect(wrapper.find(Select_1.default).prop('options').length).toBe(2);
|
|
338
|
+
expect(findLoadMoreButton(wrapper).exists()).toBeTruthy();
|
|
339
|
+
getLookups.mockReturnValueOnce(Promise.resolve({
|
|
340
|
+
RU: { displayName: 'Russia' },
|
|
341
|
+
USA: { displayName: 'USA' },
|
|
342
|
+
MEX: { displayName: 'MEXICO' }
|
|
343
|
+
}));
|
|
344
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
345
|
+
return __generator(this, function (_a) {
|
|
346
|
+
findLoadMoreButton(wrapper).find('button').simulate('click');
|
|
347
|
+
return [2 /*return*/];
|
|
348
|
+
});
|
|
349
|
+
}); })];
|
|
350
|
+
case 2:
|
|
351
|
+
_a.sent();
|
|
352
|
+
// loaded options length is equal to (max + 1) so there are more options exist
|
|
353
|
+
expect(getLookups).toBeCalledWith({
|
|
354
|
+
type: props.lookupCode,
|
|
355
|
+
parents: props.parents,
|
|
356
|
+
displayNamePrefix: '',
|
|
357
|
+
max: 3,
|
|
358
|
+
offset: 2
|
|
359
|
+
});
|
|
360
|
+
return [4 /*yield*/, Promise.resolve()];
|
|
361
|
+
case 3:
|
|
362
|
+
_a.sent();
|
|
363
|
+
wrapper.update();
|
|
364
|
+
expect(wrapper.find(Select_1.default).prop('options').length).toBe(4);
|
|
365
|
+
expect(findLoadMoreButton(wrapper).exists()).toBeTruthy();
|
|
366
|
+
return [2 /*return*/];
|
|
367
|
+
}
|
|
368
|
+
});
|
|
369
|
+
}); });
|
|
370
|
+
it('should load next options page on load more button click, load more button disappears if all options loaded', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
371
|
+
var getLookups, value, wrapper;
|
|
372
|
+
return __generator(this, function (_a) {
|
|
373
|
+
switch (_a.label) {
|
|
374
|
+
case 0:
|
|
375
|
+
getLookups = jest.fn();
|
|
376
|
+
getLookups.mockReturnValue(Promise.resolve({
|
|
377
|
+
CN: { displayName: 'China' },
|
|
378
|
+
PT: { displayName: 'Portugal' },
|
|
379
|
+
RU: { displayName: 'Russia' }
|
|
380
|
+
}));
|
|
381
|
+
value = { lookupCode: 'US', value: 'USA' };
|
|
382
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, getLookups: getLookups, max: 2 })));
|
|
383
|
+
return [4 /*yield*/, (0, test_utils_2.delayPromise)(1)];
|
|
384
|
+
case 1:
|
|
385
|
+
_a.sent();
|
|
386
|
+
wrapper.update();
|
|
387
|
+
expect(wrapper.find(Select_1.default).prop('options').length).toBe(2);
|
|
388
|
+
expect(findLoadMoreButton(wrapper).length).toBe(1);
|
|
389
|
+
// loaded options length is less than (max + 1)
|
|
390
|
+
getLookups.mockReturnValueOnce(Promise.resolve({
|
|
391
|
+
RU: { displayName: 'Russia' },
|
|
392
|
+
USA: { displayName: 'USA' }
|
|
393
|
+
}));
|
|
394
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
395
|
+
return __generator(this, function (_a) {
|
|
396
|
+
findLoadMoreButton(wrapper).find('button').simulate('click');
|
|
397
|
+
return [2 /*return*/];
|
|
398
|
+
});
|
|
399
|
+
}); })];
|
|
400
|
+
case 2:
|
|
401
|
+
_a.sent();
|
|
402
|
+
return [4 /*yield*/, Promise.resolve()];
|
|
403
|
+
case 3:
|
|
404
|
+
_a.sent();
|
|
405
|
+
wrapper.update();
|
|
406
|
+
expect(wrapper.find(Select_1.default).prop('options').length).toBe(4);
|
|
407
|
+
expect(findLoadMoreButton(wrapper)).toBeUndefined();
|
|
408
|
+
return [2 /*return*/];
|
|
409
|
+
}
|
|
410
|
+
});
|
|
411
|
+
}); });
|
|
412
|
+
it('should not fail on focus', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
413
|
+
var wrapper;
|
|
414
|
+
return __generator(this, function (_a) {
|
|
415
|
+
switch (_a.label) {
|
|
416
|
+
case 0:
|
|
417
|
+
wrapper = (0, enzyme_1.shallow)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: { value: 'RU' } })));
|
|
418
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
419
|
+
return __generator(this, function (_a) {
|
|
420
|
+
resolveOptions({
|
|
421
|
+
PT: { displayName: 'Portugal' },
|
|
422
|
+
RU: { displayName: 'Russia' }
|
|
423
|
+
});
|
|
424
|
+
return [2 /*return*/];
|
|
425
|
+
});
|
|
426
|
+
}); })];
|
|
427
|
+
case 1:
|
|
428
|
+
_a.sent();
|
|
429
|
+
wrapper.find(Select_1.default).prop('onFocus')();
|
|
430
|
+
return [2 /*return*/];
|
|
431
|
+
}
|
|
432
|
+
});
|
|
433
|
+
}); });
|
|
434
|
+
it('should render correct select options', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
435
|
+
var wrapper, options;
|
|
436
|
+
return __generator(this, function (_a) {
|
|
437
|
+
switch (_a.label) {
|
|
438
|
+
case 0:
|
|
439
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props)));
|
|
440
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
441
|
+
return __generator(this, function (_a) {
|
|
442
|
+
resolveOptions({
|
|
443
|
+
CN: { displayName: 'China' },
|
|
444
|
+
RU: { displayName: 'Russia' }
|
|
445
|
+
});
|
|
446
|
+
return [2 /*return*/];
|
|
447
|
+
});
|
|
448
|
+
}); })];
|
|
449
|
+
case 1:
|
|
450
|
+
_a.sent();
|
|
451
|
+
wrapper.find('input').simulate('keyDown', { key: 'ArrowDown' });
|
|
452
|
+
options = wrapper.find(ReactSelectOptionWithCheckIcon_1.ReactSelectOptionWithCheckIcon);
|
|
453
|
+
expect(options.length).toBe(2);
|
|
454
|
+
expect(options.at(0).text()).toBe('China (CN)');
|
|
455
|
+
expect(options.at(1).text()).toBe('Russia (RU)');
|
|
456
|
+
return [2 /*return*/];
|
|
457
|
+
}
|
|
458
|
+
});
|
|
459
|
+
}); });
|
|
460
|
+
it('should request default options on mount', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
461
|
+
var wrapper;
|
|
462
|
+
return __generator(this, function (_a) {
|
|
463
|
+
switch (_a.label) {
|
|
464
|
+
case 0:
|
|
465
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props)));
|
|
466
|
+
expect(wrapper.find(Select_1.default).prop('options')).toEqual([]);
|
|
467
|
+
expect(props.getLookups).toBeCalledWith({
|
|
468
|
+
type: props.lookupCode,
|
|
469
|
+
parents: props.parents,
|
|
470
|
+
displayNamePrefix: '',
|
|
471
|
+
max: 51,
|
|
472
|
+
offset: 0
|
|
473
|
+
});
|
|
474
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
475
|
+
return __generator(this, function (_a) {
|
|
476
|
+
resolveOptions({
|
|
477
|
+
CN: { displayName: 'China' },
|
|
478
|
+
RU: { displayName: 'Russia' }
|
|
479
|
+
});
|
|
480
|
+
return [2 /*return*/];
|
|
481
|
+
});
|
|
482
|
+
}); })];
|
|
483
|
+
case 1:
|
|
484
|
+
_a.sent();
|
|
485
|
+
wrapper.update();
|
|
486
|
+
expect(wrapper.find(Select_1.default).prop('options')).toEqual([
|
|
487
|
+
{ lookupCode: 'CN', value: 'China' },
|
|
488
|
+
{ lookupCode: 'RU', value: 'Russia' }
|
|
489
|
+
]);
|
|
490
|
+
return [2 /*return*/];
|
|
491
|
+
}
|
|
492
|
+
});
|
|
493
|
+
}); });
|
|
494
|
+
it('should request default options on props.lookupCode change', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
495
|
+
var wrapper;
|
|
496
|
+
return __generator(this, function (_a) {
|
|
497
|
+
switch (_a.label) {
|
|
498
|
+
case 0:
|
|
499
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props)));
|
|
500
|
+
props.getLookups.mockClear();
|
|
501
|
+
wrapper.setProps({
|
|
502
|
+
lookupCode: 'SPEC'
|
|
503
|
+
});
|
|
504
|
+
expect(props.getLookups).toBeCalledWith({
|
|
505
|
+
type: 'SPEC',
|
|
506
|
+
parents: [],
|
|
507
|
+
displayNamePrefix: '',
|
|
508
|
+
max: 51,
|
|
509
|
+
offset: 0
|
|
510
|
+
});
|
|
511
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
512
|
+
return __generator(this, function (_a) {
|
|
513
|
+
resolveOptions({
|
|
514
|
+
GERO: { displayName: 'Gerontology' },
|
|
515
|
+
IMMU: { displayName: 'Immunology' }
|
|
516
|
+
});
|
|
517
|
+
return [2 /*return*/];
|
|
518
|
+
});
|
|
519
|
+
}); })];
|
|
520
|
+
case 1:
|
|
521
|
+
_a.sent();
|
|
522
|
+
wrapper.update();
|
|
523
|
+
expect(wrapper.find(Select_1.default).prop('options')).toEqual([
|
|
524
|
+
{ lookupCode: 'GERO', value: 'Gerontology' },
|
|
525
|
+
{ lookupCode: 'IMMU', value: 'Immunology' }
|
|
526
|
+
]);
|
|
527
|
+
return [2 /*return*/];
|
|
528
|
+
}
|
|
529
|
+
});
|
|
530
|
+
}); });
|
|
531
|
+
it('should call props.onChange with correct value on option click', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
532
|
+
var wrapper;
|
|
533
|
+
return __generator(this, function (_a) {
|
|
534
|
+
switch (_a.label) {
|
|
535
|
+
case 0:
|
|
536
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props)));
|
|
537
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
538
|
+
return __generator(this, function (_a) {
|
|
539
|
+
resolveOptions({
|
|
540
|
+
CN: { displayName: 'China' },
|
|
541
|
+
RU: { displayName: 'Russia' }
|
|
542
|
+
});
|
|
543
|
+
return [2 /*return*/];
|
|
544
|
+
});
|
|
545
|
+
}); })];
|
|
546
|
+
case 1:
|
|
547
|
+
_a.sent();
|
|
548
|
+
wrapper.find('input').simulate('keyDown', { key: 'ArrowDown' });
|
|
549
|
+
expect(props.onChange).not.toBeCalled();
|
|
550
|
+
wrapper.find(ReactSelectOptionWithCheckIcon_1.ReactSelectOptionWithCheckIcon).at(1).find('div').at(0).simulate('click');
|
|
551
|
+
expect(props.onChange).toBeCalledWith({
|
|
552
|
+
value: 'Russia',
|
|
553
|
+
lookupCode: 'RU'
|
|
554
|
+
});
|
|
555
|
+
return [2 /*return*/];
|
|
556
|
+
}
|
|
557
|
+
});
|
|
558
|
+
}); });
|
|
559
|
+
it('should call props.getLookups with correct values on select input change', function () {
|
|
560
|
+
var wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props)));
|
|
561
|
+
var newInputValue = 'Ch';
|
|
562
|
+
(0, test_utils_1.act)(function () {
|
|
563
|
+
wrapper.find('Select').prop('onInputChange')(newInputValue, { action: 'input-change' });
|
|
564
|
+
});
|
|
565
|
+
expect(props.getLookups).toHaveBeenCalledWith({
|
|
566
|
+
type: props.lookupCode,
|
|
567
|
+
parents: props.parents,
|
|
568
|
+
displayNamePrefix: newInputValue,
|
|
569
|
+
max: 51,
|
|
570
|
+
offset: 0
|
|
571
|
+
});
|
|
572
|
+
});
|
|
573
|
+
it('should call props.getLookups with correct values on select input change and set offset to default', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
574
|
+
var getLookups, value, wrapper, newInputValue, nextNewInputValue;
|
|
575
|
+
return __generator(this, function (_a) {
|
|
576
|
+
switch (_a.label) {
|
|
577
|
+
case 0:
|
|
578
|
+
getLookups = jest.fn();
|
|
579
|
+
getLookups.mockReturnValue(Promise.resolve({
|
|
580
|
+
CN: { displayName: 'China' },
|
|
581
|
+
PT: { displayName: 'Portugal' },
|
|
582
|
+
RU: { displayName: 'Russia' }
|
|
583
|
+
}));
|
|
584
|
+
value = { lookupCode: 'US', value: 'USA' };
|
|
585
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, getLookups: getLookups, max: 2 })));
|
|
586
|
+
newInputValue = 'Ch';
|
|
587
|
+
(0, test_utils_1.act)(function () {
|
|
588
|
+
wrapper.find('Select').prop('onInputChange')(newInputValue, { action: 'input-change' });
|
|
589
|
+
});
|
|
590
|
+
return [4 /*yield*/, (0, test_utils_2.delayPromise)(1)];
|
|
591
|
+
case 1:
|
|
592
|
+
_a.sent();
|
|
593
|
+
wrapper.update();
|
|
594
|
+
expect(getLookups).toHaveBeenCalledWith({
|
|
595
|
+
type: props.lookupCode,
|
|
596
|
+
parents: props.parents,
|
|
597
|
+
displayNamePrefix: newInputValue,
|
|
598
|
+
max: 3,
|
|
599
|
+
offset: 0
|
|
600
|
+
});
|
|
601
|
+
expect(findLoadMoreButton(wrapper).exists()).toBeTruthy();
|
|
602
|
+
getLookups.mockReturnValueOnce(Promise.resolve({
|
|
603
|
+
RU: { displayName: 'Russia' },
|
|
604
|
+
USA: { displayName: 'USA' },
|
|
605
|
+
MEX: { displayName: 'MEXICO' }
|
|
606
|
+
}));
|
|
607
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
608
|
+
return __generator(this, function (_a) {
|
|
609
|
+
findLoadMoreButton(wrapper).find('button').simulate('click');
|
|
610
|
+
return [2 /*return*/];
|
|
611
|
+
});
|
|
612
|
+
}); })];
|
|
613
|
+
case 2:
|
|
614
|
+
_a.sent();
|
|
615
|
+
// offset === max
|
|
616
|
+
expect(getLookups).toBeCalledWith({
|
|
617
|
+
type: props.lookupCode,
|
|
618
|
+
parents: props.parents,
|
|
619
|
+
displayNamePrefix: newInputValue,
|
|
620
|
+
max: 3,
|
|
621
|
+
offset: 2
|
|
622
|
+
});
|
|
623
|
+
nextNewInputValue = 'Chi';
|
|
624
|
+
(0, test_utils_1.act)(function () {
|
|
625
|
+
wrapper.find('Select').prop('onInputChange')(nextNewInputValue, { action: 'input-change' });
|
|
626
|
+
});
|
|
627
|
+
// set offset to default: 0
|
|
628
|
+
expect(getLookups).toHaveBeenCalledWith({
|
|
629
|
+
type: props.lookupCode,
|
|
630
|
+
parents: props.parents,
|
|
631
|
+
displayNamePrefix: nextNewInputValue,
|
|
632
|
+
max: 3,
|
|
633
|
+
offset: 0
|
|
634
|
+
});
|
|
635
|
+
return [2 /*return*/];
|
|
636
|
+
}
|
|
637
|
+
});
|
|
638
|
+
}); });
|
|
639
|
+
it('should call props.getLookups with default offset = 0 after LookupCode updated', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
640
|
+
var getLookups, wrapper, newLookupCode;
|
|
641
|
+
return __generator(this, function (_a) {
|
|
642
|
+
switch (_a.label) {
|
|
643
|
+
case 0:
|
|
644
|
+
getLookups = jest.fn();
|
|
645
|
+
getLookups.mockReturnValue(Promise.resolve({
|
|
646
|
+
CN: { displayName: 'China' },
|
|
647
|
+
PT: { displayName: 'Portugal' },
|
|
648
|
+
RU: { displayName: 'Russia' }
|
|
649
|
+
}));
|
|
650
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { getLookups: getLookups, max: 2 })));
|
|
651
|
+
return [4 /*yield*/, (0, test_utils_2.delayPromise)(1)];
|
|
652
|
+
case 1:
|
|
653
|
+
_a.sent();
|
|
654
|
+
wrapper.update();
|
|
655
|
+
expect(getLookups).toHaveBeenCalledWith({
|
|
656
|
+
type: props.lookupCode,
|
|
657
|
+
parents: props.parents,
|
|
658
|
+
displayNamePrefix: '',
|
|
659
|
+
max: 3,
|
|
660
|
+
offset: 0
|
|
661
|
+
});
|
|
662
|
+
expect(findLoadMoreButton(wrapper).exists()).toBeTruthy();
|
|
663
|
+
getLookups.mockReturnValueOnce(Promise.resolve({
|
|
664
|
+
RU: { displayName: 'Russia' },
|
|
665
|
+
USA: { displayName: 'USA' },
|
|
666
|
+
MEX: { displayName: 'MEXICO' }
|
|
667
|
+
}));
|
|
668
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
669
|
+
return __generator(this, function (_a) {
|
|
670
|
+
findLoadMoreButton(wrapper).find('button').simulate('click');
|
|
671
|
+
return [2 /*return*/];
|
|
672
|
+
});
|
|
673
|
+
}); })];
|
|
674
|
+
case 2:
|
|
675
|
+
_a.sent();
|
|
676
|
+
expect(getLookups).toBeCalledWith({
|
|
677
|
+
type: props.lookupCode,
|
|
678
|
+
parents: props.parents,
|
|
679
|
+
displayNamePrefix: '',
|
|
680
|
+
max: 3,
|
|
681
|
+
offset: 2
|
|
682
|
+
});
|
|
683
|
+
newLookupCode = {
|
|
684
|
+
CODE: {
|
|
685
|
+
NC: {
|
|
686
|
+
displayName: 'some code'
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
};
|
|
690
|
+
wrapper.setProps({ lookupCode: newLookupCode });
|
|
691
|
+
// set offset to default: 0
|
|
692
|
+
expect(getLookups).toHaveBeenCalledWith({
|
|
693
|
+
type: newLookupCode,
|
|
694
|
+
parents: props.parents,
|
|
695
|
+
displayNamePrefix: '',
|
|
696
|
+
max: 3,
|
|
697
|
+
offset: 0
|
|
698
|
+
});
|
|
699
|
+
return [2 /*return*/];
|
|
700
|
+
}
|
|
701
|
+
});
|
|
702
|
+
}); });
|
|
703
|
+
it('should render empty state if there is no options', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
704
|
+
var getLookups, wrapper, newInputValue;
|
|
705
|
+
return __generator(this, function (_a) {
|
|
706
|
+
switch (_a.label) {
|
|
707
|
+
case 0:
|
|
708
|
+
getLookups = jest.fn();
|
|
709
|
+
getLookups.mockReturnValue(Promise.resolve({}));
|
|
710
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { getLookups: getLookups })));
|
|
711
|
+
newInputValue = 'Ch';
|
|
712
|
+
(0, test_utils_1.act)(function () {
|
|
713
|
+
wrapper.find('Select').prop('onInputChange')(newInputValue, { action: 'input-change' });
|
|
714
|
+
});
|
|
715
|
+
return [4 /*yield*/, (0, test_utils_2.delayPromise)(1)];
|
|
716
|
+
case 1:
|
|
717
|
+
_a.sent();
|
|
718
|
+
wrapper.update();
|
|
719
|
+
wrapper.find('input').simulate('keyDown', { key: 'ArrowDown' });
|
|
720
|
+
expect(wrapper.find('MenuList').last().text()).toBe('No results found');
|
|
721
|
+
return [2 /*return*/];
|
|
722
|
+
}
|
|
723
|
+
});
|
|
724
|
+
}); });
|
|
725
|
+
it('should save focus on select after changing disable props', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
726
|
+
var wrapper, inputNode, spy;
|
|
727
|
+
return __generator(this, function (_a) {
|
|
728
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props2)), { attachTo: document.body });
|
|
729
|
+
inputNode = wrapper.find('input').getDOMNode();
|
|
730
|
+
spy = jest.spyOn(wrapper.find('Select').instance(), 'focus');
|
|
731
|
+
(0, test_utils_1.act)(function () {
|
|
732
|
+
wrapper.find('Select').instance().focus();
|
|
733
|
+
wrapper.setProps(__assign(__assign({}, props2), { disabled: true }));
|
|
734
|
+
});
|
|
735
|
+
expect(spy).toHaveBeenCalledTimes(1);
|
|
736
|
+
wrapper.setProps(__assign(__assign({}, props2), { disabled: false }));
|
|
737
|
+
expect(document.activeElement).toBe(inputNode);
|
|
738
|
+
expect(spy).toHaveBeenCalledTimes(2);
|
|
739
|
+
return [2 /*return*/];
|
|
740
|
+
});
|
|
741
|
+
}); });
|
|
742
|
+
it('should change inputValue, not call onChange property, call getLookups as well on input change', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
743
|
+
var getLookups, value, wrapper, newInputValue;
|
|
744
|
+
return __generator(this, function (_a) {
|
|
745
|
+
switch (_a.label) {
|
|
746
|
+
case 0:
|
|
747
|
+
getLookups = jest.fn();
|
|
748
|
+
getLookups.mockReturnValue(Promise.resolve({
|
|
749
|
+
US: { displayName: 'USA' },
|
|
750
|
+
RU: { displayName: 'Russia' }
|
|
751
|
+
}));
|
|
752
|
+
value = { lookupCode: 'US', value: 'USA' };
|
|
753
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { getLookups: getLookups, value: value, multiple: false })));
|
|
754
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe('USA (US)');
|
|
755
|
+
newInputValue = 'u';
|
|
756
|
+
(0, test_utils_1.act)(function () {
|
|
757
|
+
wrapper.find(Select_1.default).prop('onInputChange')(newInputValue, { action: 'input-change' });
|
|
758
|
+
});
|
|
759
|
+
return [4 /*yield*/, (0, test_utils_2.delayPromise)(1)];
|
|
760
|
+
case 1:
|
|
761
|
+
_a.sent();
|
|
762
|
+
wrapper.update();
|
|
763
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe(newInputValue);
|
|
764
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
765
|
+
expect(getLookups).toBeCalledWith({
|
|
766
|
+
type: 'COUNTRY_CD',
|
|
767
|
+
parents: [],
|
|
768
|
+
displayNamePrefix: newInputValue,
|
|
769
|
+
max: 51,
|
|
770
|
+
offset: 0
|
|
771
|
+
});
|
|
772
|
+
return [2 /*return*/];
|
|
773
|
+
}
|
|
774
|
+
});
|
|
775
|
+
}); });
|
|
776
|
+
it('should change inputValue, call onChange property to remove value property and call getLookups as well on input clear', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
777
|
+
var getLookups, value, wrapper, newInputValue;
|
|
778
|
+
return __generator(this, function (_a) {
|
|
779
|
+
switch (_a.label) {
|
|
780
|
+
case 0:
|
|
781
|
+
getLookups = jest.fn();
|
|
782
|
+
getLookups.mockReturnValue(Promise.resolve({
|
|
783
|
+
US: { displayName: 'USA' },
|
|
784
|
+
RU: { displayName: 'Russia' }
|
|
785
|
+
}));
|
|
786
|
+
value = { lookupCode: 'US', value: 'USA' };
|
|
787
|
+
wrapper = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { getLookups: getLookups, value: value, multiple: false })));
|
|
788
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe('USA (US)');
|
|
789
|
+
newInputValue = '';
|
|
790
|
+
(0, test_utils_1.act)(function () {
|
|
791
|
+
wrapper.find(Select_1.default).prop('onInputChange')(newInputValue, { action: 'input-change' });
|
|
792
|
+
});
|
|
793
|
+
return [4 /*yield*/, (0, test_utils_2.delayPromise)(1)];
|
|
794
|
+
case 1:
|
|
795
|
+
_a.sent();
|
|
796
|
+
wrapper.update();
|
|
797
|
+
expect(wrapper.find(Select_1.default).find('Input').last().text()).toBe(newInputValue);
|
|
798
|
+
expect(props.onChange).toHaveBeenCalledWith('');
|
|
799
|
+
expect(getLookups).toBeCalledWith({
|
|
800
|
+
type: 'COUNTRY_CD',
|
|
801
|
+
parents: [],
|
|
802
|
+
displayNamePrefix: '',
|
|
803
|
+
max: 51,
|
|
804
|
+
offset: 0
|
|
805
|
+
});
|
|
806
|
+
return [2 /*return*/];
|
|
807
|
+
}
|
|
808
|
+
});
|
|
809
|
+
}); });
|
|
810
|
+
it('should call props.onChange if lookup is unresolved but has resolved value in lookups', function () {
|
|
811
|
+
var lookups = {
|
|
812
|
+
COUNTRY_CD: {
|
|
813
|
+
DE: {
|
|
814
|
+
displayName: 'Germany'
|
|
815
|
+
}
|
|
816
|
+
}
|
|
817
|
+
};
|
|
818
|
+
var value = { lookupCode: 'DE', value: '' };
|
|
819
|
+
(0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { lookups: lookups, value: value })));
|
|
820
|
+
expect(props.onChange).toBeCalledWith({
|
|
821
|
+
lookupCode: 'DE',
|
|
822
|
+
value: 'Germany'
|
|
823
|
+
});
|
|
824
|
+
});
|
|
825
|
+
it('should call props.resolveLookups if lookup is unresolved and has no resolved value in lookups', function () {
|
|
826
|
+
var value = { lookupCode: 'DE', value: '' };
|
|
827
|
+
(0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value })));
|
|
828
|
+
expect(props.resolveLookups).toBeCalledWith(props.lookupCode, ['DE']);
|
|
829
|
+
});
|
|
830
|
+
it('should call props.resolveLookups once if lookup is unresolved and has no resolved value in lookups and has no resolved value in response', function () {
|
|
831
|
+
var value = { lookupCode: 'DE', value: '' };
|
|
832
|
+
var component = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value })));
|
|
833
|
+
component.setProps({ value: __assign({}, value) });
|
|
834
|
+
expect(props.resolveLookups).toHaveBeenCalledTimes(1);
|
|
835
|
+
expect(props.resolveLookups).toBeCalledWith(props.lookupCode, ['DE']);
|
|
836
|
+
});
|
|
837
|
+
it('should use debounced variant of loadOptions on input change', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
838
|
+
var getLookups, component, select;
|
|
839
|
+
return __generator(this, function (_a) {
|
|
840
|
+
switch (_a.label) {
|
|
841
|
+
case 0:
|
|
842
|
+
mdm_sdk_1.debounce.mockImplementation(originalDebounce);
|
|
843
|
+
getLookups = jest.fn().mockReturnValue(Promise.resolve({
|
|
844
|
+
US: { displayName: 'USA' },
|
|
845
|
+
RU: { displayName: 'Russia' }
|
|
846
|
+
}));
|
|
847
|
+
component = (0, enzyme_1.shallow)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { getLookups: getLookups })));
|
|
848
|
+
select = component.find(Select_1.default);
|
|
849
|
+
select.prop('onInputChange')('u', { action: 'input-change' });
|
|
850
|
+
select.prop('onInputChange')('u', { action: 'input-change' });
|
|
851
|
+
return [4 /*yield*/, (0, test_utils_2.delayPromise)(DependentLookupEditor_1.DEBOUNCE_INTERVAL)];
|
|
852
|
+
case 1:
|
|
853
|
+
_a.sent();
|
|
854
|
+
return [4 /*yield*/, (0, test_utils_2.delayPromise)(1)];
|
|
855
|
+
case 2:
|
|
856
|
+
_a.sent();
|
|
857
|
+
expect(getLookups).toHaveBeenCalledTimes(1);
|
|
858
|
+
expect(component.find(Select_1.default).prop('options')).toEqual([
|
|
859
|
+
{
|
|
860
|
+
lookupCode: 'RU',
|
|
861
|
+
value: 'Russia'
|
|
862
|
+
},
|
|
863
|
+
{ lookupCode: 'US', value: 'USA' }
|
|
864
|
+
]);
|
|
865
|
+
expect(mdm_sdk_1.debounce).toHaveBeenCalled();
|
|
866
|
+
return [2 /*return*/];
|
|
867
|
+
}
|
|
868
|
+
});
|
|
869
|
+
}); });
|
|
870
|
+
it('should disable editor according "disabled" prop', function () {
|
|
871
|
+
var component = (0, enzyme_1.shallow)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { disabled: true })));
|
|
872
|
+
var select = component.find(Select_1.default);
|
|
873
|
+
expect(select.prop('isDisabled')).toBe(true);
|
|
874
|
+
expect(select.prop('TextFieldProps').disabled).toBe(true);
|
|
875
|
+
});
|
|
876
|
+
it('should use "parents" prop for lookups request', function () {
|
|
877
|
+
var parents = [
|
|
878
|
+
{
|
|
879
|
+
type: 'PARENT',
|
|
880
|
+
codeValues: ['3', '4']
|
|
881
|
+
}
|
|
882
|
+
];
|
|
883
|
+
var component = (0, enzyme_1.shallow)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { parents: parents })));
|
|
884
|
+
var select = component.find(Select_1.default);
|
|
885
|
+
select.prop('onInputChange')('u', { action: 'input-change' });
|
|
886
|
+
expect(component.prop('isDisabled')).toBeFalsy();
|
|
887
|
+
expect(props.getLookups).toHaveBeenCalledTimes(1);
|
|
888
|
+
expect(props.getLookups).toHaveBeenCalledWith({
|
|
889
|
+
displayNamePrefix: 'u',
|
|
890
|
+
max: 51,
|
|
891
|
+
offset: 0,
|
|
892
|
+
type: props.lookupCode,
|
|
893
|
+
parents: parents
|
|
894
|
+
});
|
|
895
|
+
});
|
|
896
|
+
it('should not send lookups request if "parents" prop is null', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
897
|
+
var parents, component, select;
|
|
898
|
+
return __generator(this, function (_a) {
|
|
899
|
+
switch (_a.label) {
|
|
900
|
+
case 0:
|
|
901
|
+
parents = null;
|
|
902
|
+
component = (0, enzyme_1.shallow)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { parents: parents })));
|
|
903
|
+
select = component.find(Select_1.default);
|
|
904
|
+
select.prop('onInputChange')('u', { action: 'input-change' });
|
|
905
|
+
expect(props.getLookups).not.toHaveBeenCalled();
|
|
906
|
+
return [4 /*yield*/, (0, test_utils_2.delayPromise)(DependentLookupEditor_1.DEBOUNCE_INTERVAL)];
|
|
907
|
+
case 1:
|
|
908
|
+
_a.sent();
|
|
909
|
+
return [4 /*yield*/, (0, test_utils_2.delayPromise)(1)];
|
|
910
|
+
case 2:
|
|
911
|
+
_a.sent();
|
|
912
|
+
expect(component.find(Select_1.default).prop('options')).toEqual([]);
|
|
913
|
+
return [2 /*return*/];
|
|
914
|
+
}
|
|
915
|
+
});
|
|
916
|
+
}); });
|
|
917
|
+
it('should send lookups request if "parents" is undefined', function () {
|
|
918
|
+
var parents = undefined;
|
|
919
|
+
var component = (0, enzyme_1.shallow)(react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { parents: parents })));
|
|
920
|
+
var select = component.find(Select_1.default);
|
|
921
|
+
select.prop('onInputChange')('u', { action: 'input-change' });
|
|
922
|
+
expect(props.getLookups).toHaveBeenCalledTimes(1);
|
|
923
|
+
expect(props.getLookups).toHaveBeenCalledWith({
|
|
924
|
+
displayNamePrefix: 'u',
|
|
925
|
+
max: 51,
|
|
926
|
+
offset: 0,
|
|
927
|
+
type: props.lookupCode,
|
|
928
|
+
parents: parents
|
|
929
|
+
});
|
|
930
|
+
});
|
|
931
|
+
describe('Autopopulation behavior', function () {
|
|
932
|
+
var getLookups, resolveOptions;
|
|
933
|
+
beforeEach(function () {
|
|
934
|
+
var requestPromise = new Promise(function (_resolve) {
|
|
935
|
+
resolveOptions = _resolve;
|
|
936
|
+
});
|
|
937
|
+
getLookups = function () { return requestPromise; };
|
|
938
|
+
});
|
|
939
|
+
var defaultAutopopulationContextValue = {
|
|
940
|
+
id: 'id',
|
|
941
|
+
onTouch: jest.fn(),
|
|
942
|
+
isTouched: false
|
|
943
|
+
};
|
|
944
|
+
it('should call onChange on component mount when there is only one possible option, value is empty and autopopulation is enabled', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
945
|
+
var autopopulationId, value;
|
|
946
|
+
return __generator(this, function (_a) {
|
|
947
|
+
switch (_a.label) {
|
|
948
|
+
case 0:
|
|
949
|
+
autopopulationId = 'uri1';
|
|
950
|
+
value = { lookupCode: '', value: '' };
|
|
951
|
+
(0, enzyme_1.mount)(react_1.default.createElement(DependentLookupAutopopulationContext_1.DependentLookupAutopopulationContext.Provider, { value: __assign(__assign({}, defaultAutopopulationContextValue), { id: autopopulationId }) },
|
|
952
|
+
react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, getLookups: getLookups, autopopulationId: autopopulationId }))));
|
|
953
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
954
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
955
|
+
return __generator(this, function (_a) {
|
|
956
|
+
resolveOptions({
|
|
957
|
+
RU: { displayName: 'Russia' }
|
|
958
|
+
});
|
|
959
|
+
return [2 /*return*/];
|
|
960
|
+
});
|
|
961
|
+
}); })];
|
|
962
|
+
case 1:
|
|
963
|
+
_a.sent();
|
|
964
|
+
expect(props.onChange).toHaveBeenCalledWith({
|
|
965
|
+
lookupCode: 'RU',
|
|
966
|
+
value: 'Russia'
|
|
967
|
+
});
|
|
968
|
+
return [2 /*return*/];
|
|
969
|
+
}
|
|
970
|
+
});
|
|
971
|
+
}); });
|
|
972
|
+
it('should not autopopulate editor if autopopulationId is not set', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
973
|
+
var autopopulationId, value;
|
|
974
|
+
return __generator(this, function (_a) {
|
|
975
|
+
switch (_a.label) {
|
|
976
|
+
case 0:
|
|
977
|
+
autopopulationId = undefined;
|
|
978
|
+
value = { lookupCode: '', value: '' };
|
|
979
|
+
(0, enzyme_1.mount)(react_1.default.createElement(DependentLookupAutopopulationContext_1.DependentLookupAutopopulationContext.Provider, { value: __assign(__assign({}, defaultAutopopulationContextValue), { id: autopopulationId }) },
|
|
980
|
+
react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, getLookups: getLookups, autopopulationId: autopopulationId }))));
|
|
981
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
982
|
+
return __generator(this, function (_a) {
|
|
983
|
+
resolveOptions({
|
|
984
|
+
RU: { displayName: 'Russia' }
|
|
985
|
+
});
|
|
986
|
+
return [2 /*return*/];
|
|
987
|
+
});
|
|
988
|
+
}); })];
|
|
989
|
+
case 1:
|
|
990
|
+
_a.sent();
|
|
991
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
992
|
+
return [2 /*return*/];
|
|
993
|
+
}
|
|
994
|
+
});
|
|
995
|
+
}); });
|
|
996
|
+
it('should not autopopulate editor if value is not empty', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
997
|
+
var autopopulationId, value;
|
|
998
|
+
return __generator(this, function (_a) {
|
|
999
|
+
switch (_a.label) {
|
|
1000
|
+
case 0:
|
|
1001
|
+
autopopulationId = 'uri2';
|
|
1002
|
+
value = { lookupCode: 'RU', value: '' };
|
|
1003
|
+
(0, enzyme_1.mount)(react_1.default.createElement(DependentLookupAutopopulationContext_1.DependentLookupAutopopulationContext.Provider, { value: __assign(__assign({}, defaultAutopopulationContextValue), { id: autopopulationId }) },
|
|
1004
|
+
react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, getLookups: getLookups, autopopulationId: autopopulationId }))));
|
|
1005
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
1006
|
+
return __generator(this, function (_a) {
|
|
1007
|
+
resolveOptions({
|
|
1008
|
+
RU: { displayName: 'Russia' }
|
|
1009
|
+
});
|
|
1010
|
+
return [2 /*return*/];
|
|
1011
|
+
});
|
|
1012
|
+
}); })];
|
|
1013
|
+
case 1:
|
|
1014
|
+
_a.sent();
|
|
1015
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
1016
|
+
return [2 /*return*/];
|
|
1017
|
+
}
|
|
1018
|
+
});
|
|
1019
|
+
}); });
|
|
1020
|
+
it('should not autopopulate editor if there are more then one option', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
1021
|
+
var autopopulationId, value;
|
|
1022
|
+
return __generator(this, function (_a) {
|
|
1023
|
+
switch (_a.label) {
|
|
1024
|
+
case 0:
|
|
1025
|
+
autopopulationId = 'uri3';
|
|
1026
|
+
value = { lookupCode: '', value: '' };
|
|
1027
|
+
(0, enzyme_1.mount)(react_1.default.createElement(DependentLookupAutopopulationContext_1.DependentLookupAutopopulationContext.Provider, { value: __assign(__assign({}, defaultAutopopulationContextValue), { id: autopopulationId }) },
|
|
1028
|
+
react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, getLookups: getLookups, autopopulationId: autopopulationId }))));
|
|
1029
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
1030
|
+
return __generator(this, function (_a) {
|
|
1031
|
+
resolveOptions({
|
|
1032
|
+
RU: { displayName: 'Russia' },
|
|
1033
|
+
CN: { displayName: 'China' }
|
|
1034
|
+
});
|
|
1035
|
+
return [2 /*return*/];
|
|
1036
|
+
});
|
|
1037
|
+
}); })];
|
|
1038
|
+
case 1:
|
|
1039
|
+
_a.sent();
|
|
1040
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
1041
|
+
return [2 /*return*/];
|
|
1042
|
+
}
|
|
1043
|
+
});
|
|
1044
|
+
}); });
|
|
1045
|
+
it('should not autopopulate editor if there is only one option but not for first time', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
1046
|
+
var autopopulationId, times, getLookups, value, component, select;
|
|
1047
|
+
return __generator(this, function (_a) {
|
|
1048
|
+
switch (_a.label) {
|
|
1049
|
+
case 0:
|
|
1050
|
+
autopopulationId = 'uri4';
|
|
1051
|
+
times = 0;
|
|
1052
|
+
getLookups = jest.fn().mockImplementation(function () {
|
|
1053
|
+
switch (times) {
|
|
1054
|
+
case 0:
|
|
1055
|
+
return Promise.resolve({
|
|
1056
|
+
RU: { displayName: 'Russia' },
|
|
1057
|
+
CN: { displayName: 'China' }
|
|
1058
|
+
});
|
|
1059
|
+
default:
|
|
1060
|
+
return Promise.resolve({
|
|
1061
|
+
RU: { displayName: 'Russia' }
|
|
1062
|
+
});
|
|
1063
|
+
}
|
|
1064
|
+
});
|
|
1065
|
+
value = { lookupCode: '', value: '' };
|
|
1066
|
+
component = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupAutopopulationContext_1.DependentLookupAutopopulationContext.Provider, { value: __assign(__assign({}, defaultAutopopulationContextValue), { id: autopopulationId }) },
|
|
1067
|
+
react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, getLookups: getLookups, autopopulationId: autopopulationId }))));
|
|
1068
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () {
|
|
1069
|
+
return Promise.resolve();
|
|
1070
|
+
})];
|
|
1071
|
+
case 1:
|
|
1072
|
+
_a.sent();
|
|
1073
|
+
select = component.find(Select_1.default);
|
|
1074
|
+
select.prop('onInputChange')('Ru', { action: 'input-change' });
|
|
1075
|
+
expect(getLookups).toHaveBeenCalledTimes(2);
|
|
1076
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
1077
|
+
return [2 /*return*/];
|
|
1078
|
+
}
|
|
1079
|
+
});
|
|
1080
|
+
}); });
|
|
1081
|
+
it('should not autopopulate manually cleared editor after its remounting (complex attribute collapse/expand case)', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
1082
|
+
var autopopulationId, onTouch, value, component;
|
|
1083
|
+
return __generator(this, function (_a) {
|
|
1084
|
+
switch (_a.label) {
|
|
1085
|
+
case 0:
|
|
1086
|
+
autopopulationId = 'uri5';
|
|
1087
|
+
onTouch = jest.fn();
|
|
1088
|
+
value = { lookupCode: '', value: '' };
|
|
1089
|
+
component = (0, enzyme_1.mount)(react_1.default.createElement(DependentLookupAutopopulationContext_1.DependentLookupAutopopulationContext.Provider, { value: { id: autopopulationId, onTouch: onTouch, isTouched: false } },
|
|
1090
|
+
react_1.default.createElement(DependentLookupEditor_1.DependentLookupEditor, __assign({}, props, { value: value, getLookups: getLookups, autopopulationId: autopopulationId }))));
|
|
1091
|
+
expect(props.onChange).not.toHaveBeenCalled();
|
|
1092
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
1093
|
+
return __generator(this, function (_a) {
|
|
1094
|
+
resolveOptions({
|
|
1095
|
+
RU: { displayName: 'Russia' }
|
|
1096
|
+
});
|
|
1097
|
+
return [2 /*return*/];
|
|
1098
|
+
});
|
|
1099
|
+
}); })];
|
|
1100
|
+
case 1:
|
|
1101
|
+
_a.sent();
|
|
1102
|
+
expect(props.onChange).toHaveBeenCalledWith({
|
|
1103
|
+
lookupCode: 'RU',
|
|
1104
|
+
value: 'Russia'
|
|
1105
|
+
});
|
|
1106
|
+
expect(props.onChange).toHaveBeenCalledTimes(1);
|
|
1107
|
+
component.find(Select_1.default).prop('onChange')(null);
|
|
1108
|
+
expect(props.onChange).toHaveBeenCalledTimes(2);
|
|
1109
|
+
expect(onTouch).toHaveBeenCalledWith(autopopulationId);
|
|
1110
|
+
component.setProps({
|
|
1111
|
+
value: { id: autopopulationId, onTouch: onTouch, isTouched: true }
|
|
1112
|
+
});
|
|
1113
|
+
component.unmount();
|
|
1114
|
+
component.mount();
|
|
1115
|
+
return [4 /*yield*/, (0, test_utils_1.act)(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
1116
|
+
return __generator(this, function (_a) {
|
|
1117
|
+
resolveOptions({
|
|
1118
|
+
RU: { displayName: 'Russia' }
|
|
1119
|
+
});
|
|
1120
|
+
return [2 /*return*/];
|
|
1121
|
+
});
|
|
1122
|
+
}); })];
|
|
1123
|
+
case 2:
|
|
1124
|
+
_a.sent();
|
|
1125
|
+
expect(props.onChange).toHaveBeenCalledTimes(2);
|
|
1126
|
+
return [2 /*return*/];
|
|
1127
|
+
}
|
|
1128
|
+
});
|
|
1129
|
+
}); });
|
|
1130
|
+
});
|
|
1131
|
+
});
|