@reltio/components 1.4.874 → 1.4.878
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/HOCs/index.js +2 -10
- package/HOCs/withAsyncMount/withAsyncMount.js +6 -27
- package/HOCs/withTooltip/propTypes.js +5 -10
- package/HOCs/withTooltip/withTooltip.js +11 -35
- package/components/ArrowExpandButton/ArrowExpandButton.js +8 -13
- package/components/ArrowExpandButton/styles.js +2 -5
- package/components/AttributeListItem/AttrTypeIcon.js +15 -20
- package/components/AttributeListItem/AttributeListItem.js +31 -56
- package/components/AttributeListItem/styles.js +2 -5
- package/components/AttributeSelector/AttributeSelector.js +27 -51
- package/components/AttributeSelector/styles.js +3 -6
- package/components/AutoSizeList/AutoSizeList.js +15 -39
- package/components/AutoSizeList/styles.js +2 -5
- package/components/AvatarWithFallback/AvatarWithFallback.js +7 -31
- package/components/BasicTableView/BasicTable/BasicTable.js +45 -70
- package/components/BasicTableView/BasicTable/HOCs/withFilter.js +10 -15
- package/components/BasicTableView/BasicTable/HOCs/withFilterAtBottom.js +7 -12
- package/components/BasicTableView/BasicTable/HOCs/withTableContext.js +5 -26
- package/components/BasicTableView/BasicTable/cell-value-renderers/BlobRenderer.js +7 -12
- package/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.js +17 -22
- package/components/BasicTableView/BasicTable/cell-value-renderers/index.js +1 -8
- package/components/BasicTableView/BasicTable/cell-value-renderers/styles.js +4 -7
- package/components/BasicTableView/BasicTable/contexts/RowCollapseContext.js +3 -9
- package/components/BasicTableView/BasicTable/contexts/TableContext.js +3 -9
- package/components/BasicTableView/BasicTable/contexts/index.js +1 -5
- package/components/BasicTableView/BasicTable/helpers/dataHelpers.js +37 -45
- package/components/BasicTableView/BasicTable/helpers/defaultGetRowCellHeight.js +4 -6
- package/components/BasicTableView/BasicTable/helpers/defaultRenderRowCell.js +3 -8
- package/components/BasicTableView/BasicTable/helpers/nestedHelpers.js +15 -23
- package/components/BasicTableView/BasicTable/hooks/index.js +2 -10
- package/components/BasicTableView/BasicTable/hooks/useBasicTableCellRenderer.js +21 -45
- package/components/BasicTableView/BasicTable/hooks/useCollapsibleTableRows.js +18 -20
- package/components/BasicTableView/BasicTable/hooks/useDynamicRowCellHeight.js +10 -12
- package/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnListItem.js +18 -23
- package/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettings.js +39 -63
- package/components/BasicTableView/BasicTableHeader/ColumnsSettings/columnHelpers.js +16 -22
- package/components/BasicTableView/BasicTableHeader/ColumnsSettings/styles.js +2 -5
- package/components/BasicTableView/BasicTableHeader/FilterButton/FilterButton.js +16 -21
- package/components/BasicTableView/BasicTableHeader/FilterButton/styles.js +2 -5
- package/components/BasicTableView/BasicTablePagination/BasicTablePagination.js +28 -52
- package/components/BasicTableView/BasicTablePagination/styles.js +2 -5
- package/components/BasicTableView/CollapseRowButton/CollapseRowButton.js +13 -37
- package/components/BasicTableView/CollapseRowButton/styles.js +2 -5
- package/components/BasicTableView/ColumnFilter/ColumnFilter.js +39 -63
- package/components/BasicTableView/ColumnFilter/FilterChip/FilterChip.js +24 -29
- package/components/BasicTableView/ColumnFilter/FilterChip/styles.js +3 -6
- package/components/BasicTableView/ColumnFilter/helpers.js +6 -11
- package/components/BasicTableView/ColumnFilter/styles.js +4 -7
- package/components/BasicTableView/RowCellAutoSizer/RowCellAutoSizer.js +13 -37
- package/components/BasicTableView/index.js +17 -47
- package/components/BasicTableView/types/index.js +1 -2
- package/components/BasicTableView/viewState/basicTableViewState.js +25 -30
- package/components/BasicView/BasicView.js +10 -34
- package/components/BasicView/styles.js +2 -5
- package/components/BasicViewContent/BasicViewContent.js +6 -11
- package/components/BasicViewContent/styles.js +2 -5
- package/components/BasicViewHeader/BasicViewHeader.js +8 -13
- package/components/BasicViewHeader/styles.js +2 -5
- package/components/ClickAwayProvider/ClickAwayProvider.js +4 -9
- package/components/CollaborationItem/Avatar/Avatar.js +8 -15
- package/components/CollaborationItem/Avatar/styles.js +2 -5
- package/components/CollaborationItem/CollaborationItem.js +16 -41
- package/components/CollaborationItem/Comment/Comment.js +39 -65
- package/components/CollaborationItem/Comment/styles.js +2 -5
- package/components/CollaborationItem/CommentContent/CommentContent.js +13 -39
- package/components/CollaborationItem/CommentContent/styles.js +2 -5
- package/components/CollaborationItem/CommentTarget/CommentTarget.js +49 -75
- package/components/CollaborationItem/CommentTarget/styles.js +2 -5
- package/components/CollaborationItem/RepliedComment/RepliedComment.js +20 -27
- package/components/CollaborationItem/RepliedComment/styles.js +2 -5
- package/components/CollaborationItem/SendMessageArea/SendMessageArea.js +39 -65
- package/components/CollaborationItem/SendMessageArea/styles.js +2 -5
- package/components/CollaborationItem/TextFieldWithMentions/TextFieldWithMentions.js +12 -38
- package/components/CollaborationItem/TextFieldWithMentions/styles.js +2 -5
- package/components/CollaborationItem/styles.js +2 -5
- package/components/CollaborationItem/utils/index.js +5 -15
- package/components/CollaborationPopup/CollaborationPopup.js +24 -50
- package/components/CollaborationPopup/styles.js +2 -5
- package/components/CollapseButton/CollapseButton.js +10 -15
- package/components/CollapseButton/styles.js +2 -5
- package/components/ColorBar/ColorBar.js +9 -33
- package/components/ColorBar/styles.js +2 -5
- package/components/CommentsContainer/CommentsContainer.js +18 -42
- package/components/CommentsContainer/buttons/AddCommentButton.js +11 -16
- package/components/CommentsContainer/buttons/CommentButton.js +12 -17
- package/components/CommentsContainer/buttons/styles.js +2 -5
- package/components/CommentsContainer/styles.js +4 -7
- package/components/ConfigureColumnsPopup/ConfigureColumnsPopup.js +46 -72
- package/components/ConfigureColumnsPopup/styles.js +3 -5
- package/components/ConfirmDeleteDialog/ConfirmDeleteDialog.js +14 -19
- package/components/ConfirmationDialog/ConfirmationDialog.js +21 -26
- package/components/ConfirmationDialog/styles.js +3 -6
- package/components/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.js +20 -44
- package/components/DataTypeValue/DataTypeValue.js +18 -23
- package/components/DateIntervalSelector/DateIntervalSelector.js +22 -27
- package/components/DateIntervalSelector/styles.js +2 -5
- package/components/DateRangePicker/DateRangePicker.js +38 -62
- package/components/DateRangePicker/styles.js +2 -5
- package/components/Drawer/Drawer.js +8 -32
- package/components/DropDownMenuButton/DropDownMenuButton.js +19 -43
- package/components/DropDownMenuButton/MenuItemRenderer.js +13 -37
- package/components/DropDownMenuButton/styles.js +4 -7
- package/components/DropDownSelector/DropDownSelector.js +39 -63
- package/components/DropDownSelector/components/Menu.js +13 -18
- package/components/DropDownSelector/components/SingleValue.js +9 -15
- package/components/DropDownSelector/components/styles.js +3 -6
- package/components/DropDownSelector/styles.js +5 -8
- package/components/EmptySearchResult/NoData.js +6 -13
- package/components/EmptySearchResult/NoMessageComponent.js +9 -14
- package/components/EmptySearchResult/NoResults.js +5 -12
- package/components/EmptySearchResult/index.js +2 -7
- package/components/EmptySearchResult/styles.js +2 -5
- package/components/EmptyState/EmptyState.js +23 -29
- package/components/EmptyState/styles.js +2 -5
- package/components/EntityAvatar/EntityAvatar.js +15 -20
- package/components/EntityAvatar/no-photo.svg.js +1 -4
- package/components/EntityTypeBadge/EntityTypeBadge.js +15 -20
- package/components/EntityTypeBadge/styles.js +3 -5
- package/components/EntityTypeIcon/EntityTypeIcon.js +7 -12
- package/components/EntityTypesSelector/EntityTypesSelector.js +54 -78
- package/components/EntityTypesSelector/ListLabel/ListLabel.js +20 -44
- package/components/EntityTypesSelector/ListLabel/helpers.js +3 -8
- package/components/EntityTypesSelector/ListLabel/styles.js +2 -5
- package/components/EntityTypesSelector/SelectEntityTypesList.js +13 -37
- package/components/EntityTypesSelector/styles.js +2 -5
- package/components/EntityUriLink/EntityUriLink.js +14 -35
- package/components/ErrorBoundary/ErrorBoundary.js +3 -8
- package/components/ErrorPopup/ErrorPopup.js +14 -19
- package/components/ErrorPopup/styles.js +2 -5
- package/components/ErrorWrapper/ErrorMessage.js +7 -12
- package/components/ErrorWrapper/ErrorWrapper.js +11 -35
- package/components/ErrorWrapper/styles.js +2 -5
- package/components/ExpandableSearchInput/ExpandableSearchInput.js +19 -45
- package/components/ExpandableSearchInput/styles.js +2 -5
- package/components/ExpandedValueTooltip/ExpandedValueTooltip.js +22 -47
- package/components/FacetViewHeader/FacetViewHeader.js +7 -12
- package/components/FacetViewHeader/styles.js +2 -5
- package/components/FlipCard/FlipCard.js +11 -35
- package/components/FlipCard/styles.js +2 -5
- package/components/FlipCard/types/index.js +1 -2
- package/components/HideOnShrink/HideOnShrink.js +9 -14
- package/components/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.js +13 -18
- package/components/HierarchicalAttributeTooltip/styles.js +4 -7
- package/components/Highlighter/Highlighter.js +6 -11
- package/components/Highlighter/styles.js +2 -5
- package/components/Image/CheckedIcon/CheckedIcon.js +9 -16
- package/components/Image/CheckedIcon/styles.js +2 -5
- package/components/Image/Image.js +18 -43
- package/components/Image/ImageActionsOverlay/ImageActionsOverlay.js +30 -54
- package/components/Image/ImageActionsOverlay/styles.js +2 -5
- package/components/Image/styles.js +2 -5
- package/components/ImageAttributesGallery/GalleryView/GalleryView.js +13 -39
- package/components/ImageAttributesGallery/GalleryView/styles.js +2 -5
- package/components/ImageAttributesGallery/HeaderLeft/HeaderLeft.js +7 -14
- package/components/ImageAttributesGallery/HeaderLeft/styles.js +2 -5
- package/components/ImageAttributesGallery/HeaderRight/HeaderRight.js +17 -24
- package/components/ImageAttributesGallery/HeaderRight/styles.js +2 -5
- package/components/ImageAttributesGallery/ImageAttributesGallery.js +32 -56
- package/components/ImageDetailsView/ImageDetailsView.js +13 -39
- package/components/ImageDetailsView/ImageDetailsViewCarousel/ImageDetailsViewCarousel.js +18 -44
- package/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/Thumbnails.js +23 -49
- package/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/styles.js +2 -5
- package/components/ImageDetailsView/ImageDetailsViewCarousel/styles.js +2 -5
- package/components/ImageDetailsView/ImageDetailsViewSidebar/ImageDetailsViewSidebar.js +27 -53
- package/components/ImageDetailsView/ImageDetailsViewSidebar/styles.js +2 -5
- package/components/ImageDetailsView/MetaInfo/MetaInfo.js +20 -27
- package/components/ImageDetailsView/MetaInfoForm/MetaInfoForm.js +20 -27
- package/components/ImageDetailsView/MetaInfoForm/styles.js +2 -5
- package/components/ImageDetailsView/MetaInfoHeader/MetaInfoHeader.js +17 -43
- package/components/ImageDetailsView/MetaInfoHeader/styles.js +2 -5
- package/components/ImageDetailsView/MetaInfoList/MetaInfoItem/MetaInfoItem.js +8 -15
- package/components/ImageDetailsView/MetaInfoList/MetaInfoItem/styles.js +2 -5
- package/components/ImageDetailsView/MetaInfoList/MetaInfoList.js +16 -23
- package/components/ImageDetailsView/MetaInfoList/styles.js +2 -5
- package/components/ImageDetailsView/constants/index.js +13 -19
- package/components/ImageDetailsView/helpers/index.js +24 -36
- package/components/ImageDetailsView/hooks/useEditMetaInfo.js +21 -25
- package/components/ImageDetailsView/styles.js +2 -5
- package/components/ImageDetailsView/theme/index.js +4 -7
- package/components/ImageDetailsView/types/index.js +1 -2
- package/components/ImageGalleryDialog/ImageGalleryDialog.js +31 -57
- package/components/ImageGalleryDialog/styles.js +2 -5
- package/components/ImportButton/ImportButton.js +17 -23
- package/components/ImportButton/styles.js +2 -5
- package/components/LightArrowTooltip/LightArrowTooltip.js +6 -11
- package/components/LightArrowTooltip/styles.js +2 -5
- package/components/LinearLoadIndicator/LinearLoadIndicator.js +8 -13
- package/components/LinearLoadIndicator/styles.js +2 -5
- package/components/Link/Link.js +5 -10
- package/components/Link/styles.js +2 -5
- package/components/LoadingSpinner/LoadingSpinner.js +6 -13
- package/components/LoadingSpinner/SpinnerSmall.gif.js +1 -4
- package/components/Marginator/Marginator.js +3 -8
- package/components/MatchRulesBlock/MatchRulesBadge/MatchRulesBadge.js +10 -34
- package/components/MatchRulesBlock/MatchRulesBadge/styles.js +3 -5
- package/components/MatchRulesBlock/MatchRulesBlock.js +13 -18
- package/components/MatchRulesBlock/MatchRulesTitle.js +4 -9
- package/components/MatchRulesBlock/MatchRulesTooltip/MatchRulesTooltip.js +9 -14
- package/components/MatchRulesBlock/MatchRulesTooltip/styles.js +3 -5
- package/components/MatchRulesBlock/SimpleMatchRules/SimpleMatchRules.js +10 -15
- package/components/MatchRulesBlock/SimpleMatchRules/styles.js +3 -5
- package/components/MatchRulesBlock/SimpleMatchRulesBlock/SimpleMatchRulesBlock.js +18 -43
- package/components/MatchRulesBlock/SimpleMatchRulesBlock/styles.js +3 -5
- package/components/MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder.js +11 -16
- package/components/MatchRulesBlock/TransitiveMatchBlock/TransitiveMatchBlock.js +15 -40
- package/components/MatchRulesBlock/TransitiveMatchBlock/styles.js +3 -5
- package/components/MatchRulesBlock/TransitiveMatchRules/TransitiveMatchRule.js +14 -38
- package/components/MatchRulesBlock/TransitiveMatchRules/styles.js +3 -5
- package/components/MatchRulesBlock/TransitiveMatchRulesTooltip/TransitiveMatchRulesTooltip.js +9 -14
- package/components/MatchRulesBlock/TransitiveMatchRulesTooltip/styles.js +3 -5
- package/components/MatchRulesBlock/types/index.js +1 -2
- package/components/ModeSwitcher/ModeSwitcher.js +13 -18
- package/components/ModeSwitcher/styles.js +5 -7
- package/components/ModeSwitcherSelect/ModeSwitcherSelect.js +25 -32
- package/components/ModeSwitcherSelect/index.js +1 -5
- package/components/ModeSwitcherSelect/styles.js +2 -5
- package/components/MultipleInput/MultipleInput.js +33 -57
- package/components/MultipleInput/styles.js +2 -5
- package/components/MultipliableSelect/MultipliableSelect.js +24 -29
- package/components/MultipliableSelect/styles.js +2 -5
- package/components/Popper/Popper.js +25 -49
- package/components/Popper/styles.js +2 -5
- package/components/Popper/utils.js +4 -8
- package/components/PopupWithArrow/PopupWithArrow.js +16 -23
- package/components/PopupWithArrow/styles.js +2 -5
- package/components/PotentialMatchReviewCard/PotentialMatchReviewCard.js +31 -55
- package/components/PotentialMatchReviewCard/styles.js +2 -5
- package/components/ProfileBand/ProfileBand.js +47 -71
- package/components/ProfileBand/styles.js +3 -5
- package/components/ProfileBandNavigation/ProfileBandNavigation.js +8 -14
- package/components/ProfileBandNavigation/ProfileBandNavigationWidget.js +18 -25
- package/components/ProfileBandNavigation/hooks/useSearchNavigation.js +42 -64
- package/components/ProfileBandNavigation/hooks/useSearchNavigationVisibility.js +8 -14
- package/components/ProfileBandNavigation/index.js +1 -5
- package/components/ProfileBandNavigation/searchProviders/GraphSearchProvider.js +6 -9
- package/components/ProfileBandNavigation/searchProviders/MainSearchProvider.js +6 -9
- package/components/ProfileBandNavigation/searchProviders/SearchProvider.js +1 -2
- package/components/ProfileBandNavigation/searchProviders/SearchProviderFactory.js +5 -9
- package/components/ProfileBandNavigation/styles.js +2 -5
- package/components/ProfileBandNavigation/types/index.js +1 -2
- package/components/ProfileCard/ProfileCard.js +35 -59
- package/components/ProfileCard/styles.js +3 -5
- package/components/QueryBuilderRow/QueryBuilderRow.js +39 -63
- package/components/QueryBuilderRow/components/ReadOnlyFilter.js +11 -16
- package/components/QueryBuilderRow/components/ReadOnlyLogicOperator.js +11 -16
- package/components/QueryBuilderRow/components/styles.js +3 -5
- package/components/QueryBuilderRow/styles.js +3 -5
- package/components/QueryBuilderRowsGroup/QueryBuilderRowsGroup.js +29 -53
- package/components/ReactSelect/AsyncSelect.js +3 -8
- package/components/ReactSelect/CreatableSelect.js +3 -8
- package/components/ReactSelect/MultiSelect/MultiSelect.js +98 -122
- package/components/ReactSelect/MultiSelect/components/Option.js +30 -36
- package/components/ReactSelect/MultiSelect/components/index.js +3 -8
- package/components/ReactSelect/MultiSelect/index.js +2 -7
- package/components/ReactSelect/Select.js +3 -8
- package/components/ReactSelect/commonComponents/ClearIndicator.js +13 -19
- package/components/ReactSelect/commonComponents/Control.js +22 -28
- package/components/ReactSelect/commonComponents/DropdownIndicator.js +13 -19
- package/components/ReactSelect/commonComponents/GroupHeading.js +10 -16
- package/components/ReactSelect/commonComponents/Menu.js +14 -20
- package/components/ReactSelect/commonComponents/MultiValue.js +14 -20
- package/components/ReactSelect/commonComponents/NoOptionsMessage.js +7 -13
- package/components/ReactSelect/commonComponents/Option.js +29 -35
- package/components/ReactSelect/commonComponents/Placeholder.js +8 -14
- package/components/ReactSelect/commonComponents/SingleValue.js +8 -14
- package/components/ReactSelect/commonComponents/ValueContainer.js +8 -14
- package/components/ReactSelect/commonComponents/index.js +23 -28
- package/components/ReactSelect/optionFilters.js +5 -7
- package/components/ReactSelect/styles.js +2 -4
- package/components/ReactSelect/withMuiSkin.js +51 -57
- package/components/ReactSortableTree/index.js +8 -30
- package/components/ReactSortableTree/node-renderer-default.js +43 -48
- package/components/ReactSortableTree/nodeRendererDefaultStyle.js +2 -5
- package/components/ReactSortableTree/placeholder-renderer-default.js +9 -14
- package/components/ReactSortableTree/placeholderRendererDefaultStyle.js +2 -5
- package/components/ReactSortableTree/react-sortable-tree.js +115 -137
- package/components/ReactSortableTree/reactSortableTreeStyles.js +1 -5
- package/components/ReactSortableTree/tree-node.js +29 -53
- package/components/ReactSortableTree/tree-placeholder.js +13 -37
- package/components/ReactSortableTree/treeNodeStyle.js +2 -5
- package/components/ReactSortableTree/utils/classnames.js +1 -4
- package/components/ReactSortableTree/utils/default-handlers.js +3 -8
- package/components/ReactSortableTree/utils/dnd-manager.js +13 -15
- package/components/ReactSortableTree/utils/generic-utils.js +1 -5
- package/components/ReactSortableTree/utils/memoized-tree-data-utils.js +4 -7
- package/components/ReactSortableTree/utils/tree-data-utils.js +20 -40
- package/components/ReltioGridLayout/ReltioGridLayout.js +40 -64
- package/components/ReltioGridLayout/helpers.js +11 -20
- package/components/ReltioGridLayout/icons/ResizeIcon.svg.js +1 -4
- package/components/ReltioGridLayout/styles.js +5 -8
- package/components/ReltioMap/EntityMarker/EntityMarker.js +28 -52
- package/components/ReltioMap/EntityMarker/icons/marker-hover.inline.svg.js +1 -4
- package/components/ReltioMap/EntityMarker/icons/marker.inline.svg.js +1 -4
- package/components/ReltioMap/EntityMarker/styles.js +2 -5
- package/components/ReltioMap/MapControls/MapControlContainer/MapControlContrainer.js +7 -11
- package/components/ReltioMap/MapControls/TopCenterMapControls/TopCenterMapControls.js +9 -16
- package/components/ReltioMap/MapControls/TopCenterMapControls/styles.js +2 -5
- package/components/ReltioMap/MapControls/TopRightMapControls/TopRightMapControls.js +20 -27
- package/components/ReltioMap/MapControls/TopRightMapControls/styles.js +2 -5
- package/components/ReltioMap/constants.js +3 -6
- package/components/ReltioMap/helpers/index.js +10 -17
- package/components/ReltioMap/index.js +48 -74
- package/components/ReltioMap/styles.js +2 -5
- package/components/ReltioMap/types.js +1 -2
- package/components/RequiredMark/RequiredMark.js +5 -10
- package/components/RequiredMark/styles.js +2 -5
- package/components/ResizablePanes/ResizablePanes.js +24 -48
- package/components/ResizablePanes/styles.js +3 -6
- package/components/Score/DQLabel.js +7 -12
- package/components/Score/Score.js +16 -21
- package/components/Score/ScoreLabel.js +14 -19
- package/components/Score/styles.js +3 -6
- package/components/ScrollableTabs/ScrollableTabs.js +12 -17
- package/components/ScrollableTabs/styles.js +2 -5
- package/components/SearchInput/SearchInput.js +19 -43
- package/components/SearchInput/WhiteSearchInput.js +6 -11
- package/components/SearchInput/styles.js +2 -5
- package/components/SelectionPopup/SelectionPopup.js +26 -31
- package/components/SelectionPopup/SelectionPopupPopper/SelectionPopupPopper.js +26 -31
- package/components/SelectionPopup/helpers.js +14 -17
- package/components/SelectionPopup/styles.js +3 -5
- package/components/SelectorWithOnlyOptionAutoSelect/SelectorWithOnlyOptionAutoSelect.js +21 -45
- package/components/SelectorWithOnlyOptionAutoSelect/styles.js +2 -5
- package/components/SideIconPanel/SideButtonsPanel.js +8 -15
- package/components/SideIconPanel/styles.js +3 -6
- package/components/SidePanel/SidePanel.js +6 -13
- package/components/SidePanel/SidePanelContentHeader/SidePanelContentHeader.js +14 -21
- package/components/SidePanel/SidePanelContentHeader/styles.js +2 -5
- package/components/SidePanel/styles.js +2 -5
- package/components/SimpleDropDownSelector/DropDownPlaceholder.js +10 -15
- package/components/SimpleDropDownSelector/DropDownValue.js +11 -16
- package/components/SimpleDropDownSelector/SimpleDropDownSelector.js +8 -32
- package/components/SimpleDropDownSelector/styles.js +3 -5
- package/components/SimpleInput/SimpleInput.js +16 -40
- package/components/SmallIconButton/SmallIconButton.js +6 -30
- package/components/SmallIconButton/index.js +4 -11
- package/components/SourceIcon/SourceIcon.js +9 -14
- package/components/Spacer/Spacer.js +3 -8
- package/components/Title/Title.js +17 -22
- package/components/Title/styles.js +2 -5
- package/components/UploadFileButton/UploadFileButton.js +45 -69
- package/components/UploadFileButton/styles.js +2 -5
- package/components/UploadImageDialog/DividerWithText/DividerWithText.js +11 -18
- package/components/UploadImageDialog/DividerWithText/styles.js +2 -5
- package/components/UploadImageDialog/ErrorSnackbar/ErrorSnackbar.js +9 -16
- package/components/UploadImageDialog/ErrorSnackbar/styles.js +2 -5
- package/components/UploadImageDialog/ImageByUrlField/ImageByUrlField.js +18 -44
- package/components/UploadImageDialog/ImageByUrlField/styles.js +2 -5
- package/components/UploadImageDialog/SelectImageButton/SelectImageButton.js +9 -16
- package/components/UploadImageDialog/TargetBox/TargetBox.js +20 -27
- package/components/UploadImageDialog/TargetBox/styles.js +2 -5
- package/components/UploadImageDialog/UploadImageDialog.js +38 -64
- package/components/UploadImageDialog/constants/index.js +2 -5
- package/components/UploadImageDialog/styles.js +2 -5
- package/components/UserSelector/UserSelector.js +24 -48
- package/components/UserSelector/styles.js +3 -6
- package/components/ValueChip/ValueChip.js +16 -21
- package/components/ValueChip/styles.js +3 -6
- package/components/VerticalDivider/VerticalDivider.js +6 -11
- package/components/VerticalHeadingsTable/VerticalHeadingsTable.js +19 -43
- package/components/ViewMoreToggle/ViewMoreToggle.js +15 -20
- package/components/ViewMoreToggle/styles.js +2 -5
- package/components/VirtualGroupedList/VirtualGroupedList.js +41 -66
- package/components/VirtualGroupedList/helpers.js +13 -17
- package/components/VirtualGroupedList/styles.js +2 -5
- package/components/activityLog/ActivityExportButton/ActivityExportButton.js +35 -59
- package/components/activityLog/ActivityExportButton/styles.js +2 -5
- package/components/activityLog/ActivityFilterEditor/ActivityFilterEditor.js +35 -59
- package/components/activityLog/ActivityFilterEditor/ActivitySelector.js +18 -23
- package/components/activityLog/ActivityFilterEditor/DateRangeSelector.js +41 -65
- package/components/activityLog/ActivityFilterEditor/SourceSelector.js +19 -24
- package/components/activityLog/ActivityFilterEditor/styles.js +3 -6
- package/components/activityLog/ActivityFilterEditor/utils/getSelectorActivityTypes.js +24 -28
- package/components/activityLog/ActivityLog/ActivityLog.js +29 -53
- package/components/activityLog/ActivityLog/helpers.js +9 -16
- package/components/activityLog/ActivityLog/items/ActivityItem/ActivityItem.js +18 -23
- package/components/activityLog/ActivityLog/items/ActivityItem/styles.js +2 -5
- package/components/activityLog/ActivityLog/items/GroupItem/GroupItem.js +14 -19
- package/components/activityLog/ActivityLog/items/GroupItem/styles.js +2 -5
- package/components/activityLog/ActivityLog/styles.js +2 -5
- package/components/activityLog/ActivityLogFilter/ActivityLogFilter.js +15 -39
- package/components/activityLog/ActivityLogFilter/ActivityLogFilterHeader.js +17 -22
- package/components/activityLog/ActivityLogFilter/helpers.js +19 -26
- package/components/activityLog/ActivityLogFilter/styles.js +2 -5
- package/components/activityLog/activities/ActivitiesFactory.js +98 -103
- package/components/activityLog/activities/ActivityTitle/ActivityTitle.js +7 -12
- package/components/activityLog/activities/ActivityTitle/styles.js +2 -5
- package/components/activityLog/activities/CommentActivity.js +4 -9
- package/components/activityLog/activities/EntityObject/EntityObject.js +10 -15
- package/components/activityLog/activities/EntityObject/styles.js +2 -5
- package/components/activityLog/activities/GroupActivity.js +12 -17
- package/components/activityLog/activities/MergeActivity.js +9 -14
- package/components/activityLog/activities/MoreItemsLink/MoreItemsLink.js +7 -14
- package/components/activityLog/activities/PotentialMatchActivity.js +8 -13
- package/components/activityLog/activities/ProfileActivity.js +9 -14
- package/components/activityLog/activities/RelationActivity.js +9 -14
- package/components/activityLog/activities/RelationObject/RelationObject.js +11 -16
- package/components/activityLog/activities/RelationObject/styles.js +2 -5
- package/components/activityLog/activities/SearchActivity.js +18 -42
- package/components/activityLog/activities/SimpleActivity.js +13 -18
- package/components/activityLog/activities/fields/DeltaField.js +25 -30
- package/components/activityLog/activities/fields/PotentialMatchField.js +26 -31
- package/components/activityLog/activities/fields/commonStyles.js +2 -5
- package/components/activityLog/activities/fields/styles.js +2 -5
- package/components/activityLog/activities/records/CollapsibleActivityRecords.js +9 -16
- package/components/activityLog/activities/records/EntityRecord.js +24 -29
- package/components/activityLog/activities/records/PotentialMatchRecord.js +10 -15
- package/components/activityLog/activities/records/RecordUpdates.js +12 -17
- package/components/activityLog/activities/records/RelationRecord.js +13 -18
- package/components/activityLog/activities/records/styles.js +2 -5
- package/components/activityLog/activities/styles.js +2 -5
- package/components/activityLog/contexts/CollapsibleItemsContext/index.js +8 -32
- package/components/activityLog/hooks/useActivitiesLoader.js +8 -12
- package/components/activityLog/hooks/useProfileActivitiesLoader.js +8 -12
- package/components/activityLog/hooks/useReadableSearchState.js +18 -41
- package/components/activityLog/index.js +5 -25
- package/components/activityLog/types/ActivitiesFilter.js +1 -2
- package/components/activityLog/types/ActivityData.js +1 -2
- package/components/activityLog/types/ActivityDelta.js +1 -2
- package/components/activityLog/types/ActivityItem.js +1 -2
- package/components/activityLog/types/ActivityTypes.js +2 -5
- package/components/activityLog/types/DeltaTypes.js +2 -5
- package/components/activityLog/types/DeltaValue.js +1 -2
- package/components/activityLog/types/index.js +2 -7
- package/components/activityLog/utils/activities.js +43 -54
- package/components/activityLog/utils/filters.js +23 -30
- package/components/attributes/AttributesView/AttributesView.js +7 -12
- package/components/attributes/AttributesView/index.js +7 -13
- package/components/attributes/BranchDecorator/BranchDecorator.js +7 -12
- package/components/attributes/BranchDecorator/styles.js +2 -5
- package/components/attributes/ImageAttributesLine/ImageAttributesLine.js +41 -65
- package/components/attributes/ImageAttributesLine/constants.js +6 -9
- package/components/attributes/ImageAttributesLine/index.js +1 -8
- package/components/attributes/ImageAttributesLine/styles.js +4 -7
- package/components/attributes/OvIcon/OvIcon.js +18 -24
- package/components/attributes/OvIcon/index.js +1 -8
- package/components/attributes/OvIcon/styles.js +3 -6
- package/components/attributes/PivotingAttributes/PivotingTooltip.js +24 -50
- package/components/attributes/PivotingAttributes/PivotingTooltipContent.js +31 -57
- package/components/attributes/PivotingAttributes/helpers.js +16 -22
- package/components/attributes/PivotingAttributes/styles.js +3 -6
- package/components/attributes/editMode/AttributesFactory/Attribute.js +3 -8
- package/components/attributes/editMode/AttributesFactory/AttributesFactory.js +11 -16
- package/components/attributes/editMode/AttributesList/AttributesList.js +37 -61
- package/components/attributes/editMode/AttributesList/helpers.js +9 -13
- package/components/attributes/editMode/AttributesList/index.js +1 -8
- package/components/attributes/editMode/AttributesPager/AttributeRenderer.js +34 -58
- package/components/attributes/editMode/AttributesPager/AttributesPager.js +24 -48
- package/components/attributes/editMode/AttributesPager/CardinalityMessage.js +30 -35
- package/components/attributes/editMode/AttributesPager/SpecialRenderer.js +24 -48
- package/components/attributes/editMode/AttributesPager/index.js +12 -38
- package/components/attributes/editMode/AttributesPager/styles.js +2 -5
- package/components/attributes/editMode/AttributesPager/utils.js +4 -7
- package/components/attributes/editMode/AttributesView/AttributesView.js +27 -51
- package/components/attributes/editMode/AttributesView/index.js +6 -12
- package/components/attributes/editMode/AttributesView/styles.js +2 -5
- package/components/attributes/editMode/ComplexAttribute/ComplexAttribute.js +38 -62
- package/components/attributes/editMode/ComplexAttribute/styles.js +2 -5
- package/components/attributes/editMode/EntityCreator/EntityCreator.js +16 -40
- package/components/attributes/editMode/EntityCreator/index.js +9 -34
- package/components/attributes/editMode/EntitySelector/EntitySelector.js +43 -67
- package/components/attributes/editMode/EntitySelector/components/ClearIndicator.js +10 -15
- package/components/attributes/editMode/EntitySelector/components/EntityOption.js +26 -31
- package/components/attributes/editMode/EntitySelector/components/EntityTypeOption.js +20 -25
- package/components/attributes/editMode/EntitySelector/components/Group.js +18 -23
- package/components/attributes/editMode/EntitySelector/components/SingleValue.js +26 -50
- package/components/attributes/editMode/EntitySelector/components/styles.js +5 -8
- package/components/attributes/editMode/EntitySelector/styles.js +2 -5
- package/components/attributes/editMode/ImageAttributesLine/ImageAttributesLine.js +35 -59
- package/components/attributes/editMode/ImageAttributesLine/index.js +2 -7
- package/components/attributes/editMode/ImageAttributesLine/styles.js +2 -5
- package/components/attributes/editMode/MoreAttributesButton/MoreAttributesButton.js +46 -70
- package/components/attributes/editMode/MoreAttributesButton/index.js +1 -8
- package/components/attributes/editMode/MoreAttributesButton/styles.js +2 -5
- package/components/attributes/editMode/NestedAttribute/NestedAttribute.js +7 -31
- package/components/attributes/editMode/ReferenceAttribute/ReferenceAttribute.js +46 -70
- package/components/attributes/editMode/ReferenceAttribute/index.js +13 -38
- package/components/attributes/editMode/ReferenceAttribute/styles.js +2 -5
- package/components/attributes/editMode/RelationTypeSelector/RelationTypeSelector.js +18 -42
- package/components/attributes/editMode/RelationTypeSelector/components/RelationOption.js +31 -36
- package/components/attributes/editMode/RelationTypeSelector/components/styles.js +2 -5
- package/components/attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor.js +57 -81
- package/components/attributes/editMode/SimpleAttributeEditor/selectors/getDependentLookupEditorContext.js +15 -22
- package/components/attributes/editMode/SimpleAttributeEditor/selectors/helpers/cache.js +4 -8
- package/components/attributes/editMode/SimpleAttributeEditor/selectors/helpers/missedParentsMessage.js +7 -14
- package/components/attributes/editMode/SimpleAttributeEditor/selectors/helpers/parents.js +10 -17
- package/components/attributes/editMode/SimpleAttributeEditor/selectors/types.js +1 -2
- package/components/attributes/editMode/SimpleAttributeEditor/styles.js +2 -5
- package/components/attributes/editMode/SimpleAttributeEditor/utils.js +27 -35
- package/components/attributes/helpers/attributesView.js +6 -11
- package/components/attributes/helpers/imageAttributes.js +1 -5
- package/components/attributes/inline/AttributesList/AttributesList.js +12 -17
- package/components/attributes/inline/AttributesList/styles.js +2 -5
- package/components/attributes/inline/AttributesPager/AttributesPager.js +24 -48
- package/components/attributes/inline/AttributesPager/styles.js +2 -5
- package/components/attributes/inline/ComplexAttribute/ComplexAttribute.js +35 -59
- package/components/attributes/inline/ComplexAttribute/styles.js +2 -5
- package/components/attributes/inline/ImageAttribute/ImageAttribute.js +8 -13
- package/components/attributes/inline/ImageAttribute/styles.js +2 -5
- package/components/attributes/inline/ImageAttributesBlock/ImageAttributesBlock.js +4 -9
- package/components/attributes/inline/NestedAttribute/NestedAttribute.js +7 -12
- package/components/attributes/inline/NestedAttributesBlock/NestedAttributesBlock.js +9 -14
- package/components/attributes/inline/ReferenceAttribute/ReferenceAttribute.js +18 -23
- package/components/attributes/inline/ReferenceAttribute/styles.js +2 -5
- package/components/attributes/inline/ReferenceAttributesBlock/ReferenceAttributesBlock.js +4 -9
- package/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/CrosswalkMenuItem.js +14 -38
- package/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/styles.js +2 -5
- package/components/attributes/inline/SimpleAttribute/SimpleAttribute.js +44 -68
- package/components/attributes/inline/SimpleAttribute/index.js +1 -8
- package/components/attributes/inline/SimpleAttribute/styles.js +2 -5
- package/components/attributes/inline/SimpleAttributeEditor/SimpleAttributeEditor.js +23 -49
- package/components/attributes/inline/SimpleAttributeEditor/styles.js +2 -5
- package/components/attributes/inline/SimpleAttributesBlock/SimpleAttributesBlock.js +17 -22
- package/components/attributes/inline/SimpleAttributesBlock/styles.js +2 -5
- package/components/attributes/inline/common/ComplexAttributeLabel.js +6 -13
- package/components/attributes/inline/common/CrosswalkIcon.js +12 -17
- package/components/attributes/inline/common/DeleteButton.js +6 -11
- package/components/attributes/inline/common/IgnoreButton.js +7 -12
- package/components/attributes/inline/common/PinButton.js +7 -12
- package/components/attributes/inline/common/SourceItem.js +23 -28
- package/components/attributes/inline/common/__test__/CrosswalkIcon.spec.js +8 -32
- package/components/attributes/inline/common/__test__/DeleteButton.spec.js +8 -13
- package/components/attributes/inline/common/__test__/IgnoreButton.spec.js +10 -15
- package/components/attributes/inline/common/__test__/PinButton.spec.js +10 -15
- package/components/attributes/inline/common/__test__/SourceItem.spec.js +14 -38
- package/components/attributes/inline/common/styles.js +3 -6
- package/components/attributes/inline/hooks/useAttributeState.js +10 -14
- package/components/attributes/inline/index.js +5 -25
- package/components/attributes/inline/types/AddAttributeEvent.js +1 -2
- package/components/attributes/inline/types/CrosswalksMap.js +1 -2
- package/components/attributes/inline/types/DeleteAttributeEvent.js +1 -2
- package/components/attributes/inline/types/EditAttributeEvent.js +1 -2
- package/components/attributes/inline/types/IgnoreAttributeEvent.js +1 -2
- package/components/attributes/inline/types/PinAttributeEvent.js +1 -2
- package/components/attributes/inline/types/index.js +1 -2
- package/components/attributes/pagersCommon/ShowLess.js +10 -15
- package/components/attributes/pagersCommon/ShowMore.js +11 -16
- package/components/attributes/pagersCommon/styles.js +2 -5
- package/components/attributes/readMode/AttributeValuesBlock/AttributeValuesBlock.js +12 -36
- package/components/attributes/readMode/AttributesFactory/Attribute.js +3 -8
- package/components/attributes/readMode/AttributesFactory/AttributesFactory.js +11 -16
- package/components/attributes/readMode/AttributesList/AttributesList.js +19 -43
- package/components/attributes/readMode/AttributesList/index.js +1 -8
- package/components/attributes/readMode/AttributesPager/AttributesPager.js +29 -53
- package/components/attributes/readMode/AttributesPager/MultiLineRenderer.js +19 -43
- package/components/attributes/readMode/AttributesPager/OneLineRenderer.js +18 -23
- package/components/attributes/readMode/AttributesPager/SpecialRenderer.js +20 -25
- package/components/attributes/readMode/AttributesPager/index.js +7 -32
- package/components/attributes/readMode/AttributesPager/styles.js +4 -7
- package/components/attributes/readMode/AttributesView/AttributesView.js +24 -48
- package/components/attributes/readMode/AttributesView/index.js +6 -12
- package/components/attributes/readMode/AttributesView/styles.js +2 -5
- package/components/attributes/readMode/ComplexAttribute/ComplexAttribute.js +30 -54
- package/components/attributes/readMode/ComplexAttribute/styles.js +2 -5
- package/components/attributes/readMode/ImageAttributesLine/ImageAttributesLine.js +19 -43
- package/components/attributes/readMode/ImageAttributesLine/cross.inline.svg.js +1 -4
- package/components/attributes/readMode/ImageAttributesLine/index.js +1 -8
- package/components/attributes/readMode/ImageAttributesLine/styles.js +11 -14
- package/components/attributes/readMode/NestedAttribute/NestedAttribute.js +20 -44
- package/components/attributes/readMode/NestedAttribute/index.js +1 -8
- package/components/attributes/readMode/NestedAttribute/styles.js +7 -9
- package/components/attributes/readMode/ReferenceAttribute/ReferenceAttribute.js +20 -44
- package/components/attributes/readMode/ReferenceAttribute/index.js +7 -13
- package/components/attributes/readMode/ReferenceAttribute/styles.js +7 -9
- package/components/attributes/readMode/SimpleAttribute/SimpleAttribute.js +23 -47
- package/components/attributes/readMode/SimpleAttribute/index.js +1 -8
- package/components/attributes/readMode/SimpleAttribute/styles.js +6 -9
- package/components/attributes/readMode/SpecialAttributes/Roles/Role.js +14 -38
- package/components/attributes/readMode/SpecialAttributes/Roles/Roles.js +5 -10
- package/components/attributes/readMode/SpecialAttributes/Roles/index.js +1 -8
- package/components/attributes/readMode/SpecialAttributes/SpecialAttributesArray.js +4 -25
- package/components/attributes/readMode/SpecialAttributes/Tags/Tag.js +16 -40
- package/components/attributes/readMode/SpecialAttributes/Tags/Tags.js +5 -10
- package/components/attributes/readMode/SpecialAttributes/Tags/index.js +1 -8
- package/components/attributes/readMode/SpecialAttributes/styles.js +5 -8
- package/components/attributes/readMode/helpers/historyAppearance.js +14 -20
- package/components/attributes/types/attributesView.js +1 -2
- package/components/attributes/types/index.js +1 -13
- package/components/charts/ActiveShape/ActiveShape.js +12 -17
- package/components/charts/BarChart/BarChart.js +14 -19
- package/components/charts/BarChart/getBarChartSettings.js +1 -3
- package/components/charts/BubbleChart/BubbleChart.js +33 -59
- package/components/charts/BubbleChart/helpers.js +1 -4
- package/components/charts/BubbleChart/styles.js +2 -5
- package/components/charts/BubbleChart/useBubbles.js +6 -8
- package/components/charts/ChartsFactory.js +30 -35
- package/components/charts/CloudChart/CloudChart.js +22 -48
- package/components/charts/CloudChart/styles.js +2 -5
- package/components/charts/CloudChart/useCloud.js +5 -10
- package/components/charts/CustomLegend/CustomLegend.js +8 -13
- package/components/charts/CustomLegend/getLegendProps.js +4 -9
- package/components/charts/CustomLegend/styles.js +2 -5
- package/components/charts/CustomTooltip/CustomTooltip.js +10 -17
- package/components/charts/CustomTooltip/styles.js +2 -5
- package/components/charts/HOCs/withPercents.js +7 -28
- package/components/charts/LineChart/LineChart.js +15 -20
- package/components/charts/LineChart/getLineChartSettings.js +1 -3
- package/components/charts/MapChart/Legend/Legend.js +11 -16
- package/components/charts/MapChart/Legend/styles.js +2 -5
- package/components/charts/MapChart/MapChart.js +34 -60
- package/components/charts/MapChart/styles.js +2 -5
- package/components/charts/MapChart/useGeography.js +4 -6
- package/components/charts/PieChart/PieChart.js +17 -43
- package/components/charts/TableWithBars/TableWithBars.js +21 -45
- package/components/charts/TableWithBars/cell-renderers/AttributeCellRenderer.js +13 -20
- package/components/charts/TableWithBars/cell-renderers/HeadCellRenderer.js +10 -15
- package/components/charts/TableWithBars/cell-renderers/NumberCellValueRenderer.js +12 -17
- package/components/charts/TableWithBars/cell-renderers/styles.js +2 -5
- package/components/charts/TableWithBars/styles.js +2 -5
- package/components/charts/TreeChart/TreeChart.js +17 -41
- package/components/charts/TreeChart/styles.js +2 -5
- package/components/charts/hooks/useClickableStyle.js +3 -7
- package/components/charts/hooks/useTooltipState.js +5 -7
- package/components/charts/index.js +7 -20
- package/components/charts/types/BarChartOptions.js +1 -2
- package/components/charts/types/ChartData.js +1 -2
- package/components/charts/types/ChartProps.js +1 -2
- package/components/charts/types/LineChartOptions.js +1 -2
- package/components/charts/types/TableWithBarsOptions.js +1 -2
- package/components/charts/types/index.js +1 -2
- package/components/commonReactSelectComponents/DropdownIndicator.js +14 -19
- package/components/commonReactSelectComponents/DropdownIndicatorWithIconButton.js +14 -19
- package/components/commonReactSelectComponents/MenuWithPopper.js +27 -51
- package/components/commonReactSelectComponents/arrowIndicatorStyles.js +2 -5
- package/components/commonReactSelectComponents/menuStyles.js +2 -5
- package/components/crosswalks/AttributesTable/AddAttributesButton/AddAttributesButton.js +20 -27
- package/components/crosswalks/AttributesTable/AddAttributesButton/styles.js +2 -5
- package/components/crosswalks/AttributesTable/AttributesTable.js +43 -67
- package/components/crosswalks/AttributesTable/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.js +28 -52
- package/components/crosswalks/AttributesTable/cell-renderers/AttributeValuesRenderer.js +6 -13
- package/components/crosswalks/AttributesTable/cell-renderers/AttributesHeadCellRenderer.js +11 -18
- package/components/crosswalks/AttributesTable/cell-renderers/CountRenderer.js +6 -11
- package/components/crosswalks/AttributesTable/cell-renderers/DefaultCellValueRenderer.js +5 -10
- package/components/crosswalks/AttributesTable/cell-renderers/HeadCellRenderer.js +8 -13
- package/components/crosswalks/AttributesTable/cell-renderers/OvValuesRenderer.js +9 -14
- package/components/crosswalks/AttributesTable/cell-renderers/RowCellRenderer.js +6 -11
- package/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.js +49 -73
- package/components/crosswalks/AttributesTable/cell-renderers/RuleTypeRenderer.js +9 -14
- package/components/crosswalks/AttributesTable/cell-renderers/WinnerSourcesRenderer.js +21 -26
- package/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/AttributesFactory.js +14 -19
- package/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ImageAttributesRenderer.js +7 -12
- package/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/NestedAttributesRenderer.js +8 -13
- package/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ReferenceAttributesRenderer.js +8 -13
- package/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/SimpleAttributesRenderer.js +7 -12
- package/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/styles.js +2 -5
- package/components/crosswalks/AttributesTable/cell-renderers/styles.js +2 -5
- package/components/crosswalks/AttributesTable/helpers.js +58 -68
- package/components/crosswalks/AttributesTable/styles.js +2 -5
- package/components/crosswalks/ColoredBlock/ColoredBlock.js +7 -31
- package/components/crosswalks/ColoredBlock/styles.js +2 -5
- package/components/crosswalks/CopyableValueField/CopyableValueField.js +10 -15
- package/components/crosswalks/CopyableValueField/styles.js +2 -5
- package/components/crosswalks/CrosswalkAttributes/CrosswalkAttributes.js +55 -79
- package/components/crosswalks/CrosswalkAttributes/styles.js +2 -5
- package/components/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.js +10 -34
- package/components/crosswalks/CrosswalkDateEditor/styles.js +2 -5
- package/components/crosswalks/CrosswalkDragLayer/CrosswalkDragLayer.js +11 -35
- package/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.js +17 -22
- package/components/crosswalks/CrosswalkDragLayer/styles.js +2 -5
- package/components/crosswalks/CrosswalkEditor/CrosswalkEditor.js +18 -42
- package/components/crosswalks/CrosswalkEditor/styles.js +2 -5
- package/components/crosswalks/CrosswalkRow/CrosswalkRow.js +56 -80
- package/components/crosswalks/CrosswalkRow/styles.js +2 -5
- package/components/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.js +20 -44
- package/components/crosswalks/DummyCrosswalkRow/styles.js +2 -5
- package/components/crosswalks/ShowDependentLink/ShowDependentLink.js +8 -13
- package/components/crosswalks/ShowDependentLink/styles.js +2 -5
- package/components/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.js +19 -43
- package/components/crosswalks/hooks/useAttributeActions.js +22 -26
- package/components/crosswalks/hooks/useCrosswalkActions.js +17 -21
- package/components/crosswalks/hooks/useModifiedEntity.js +39 -43
- package/components/crosswalks/index.js +8 -22
- package/components/crosswalks/types/AddCrosswalkEvent.js +1 -2
- package/components/crosswalks/types/CreateAttributeEvent.js +1 -2
- package/components/crosswalks/types/CrosswalkType.js +2 -5
- package/components/crosswalks/types/CrosswalksByOwnerTypeMap.js +1 -2
- package/components/crosswalks/types/CrosswalksByTypes.js +1 -2
- package/components/crosswalks/types/DeleteCrosswalkEvent.js +1 -2
- package/components/crosswalks/types/EditCrosswalkEvent.js +1 -2
- package/components/crosswalks/types/index.js +1 -5
- package/components/crosswalks/utils/legend.js +23 -26
- package/components/editors/BooleanEditor/BooleanEditor.js +9 -14
- package/components/editors/BooleanRadioEditor/BooleanRadioEditor.js +15 -20
- package/components/editors/BooleanRadioEditor/styles.js +2 -5
- package/components/editors/CustomDateRangeEditor/CustomDateRangeEditor.js +26 -50
- package/components/editors/CustomDateRangeEditor/styles.js +2 -5
- package/components/editors/DataTypeValueEditor/DataTypeValueEditor.js +16 -21
- package/components/editors/DataTypeValueEditor/useEditorContext.js +30 -51
- package/components/editors/DateEditor/DateEditor.js +26 -50
- package/components/editors/DateEditor/styles.js +2 -5
- package/components/editors/DateRangeEditor/DateRangeEditor.js +53 -77
- package/components/editors/DateRangeEditor/styles.js +2 -5
- package/components/editors/DependentLookupEditor/DependentLookupEditor.js +56 -81
- package/components/editors/DependentLookupEditor/OptionWithCheckIcon.js +11 -16
- package/components/editors/DependentLookupEditor/helpers.js +4 -8
- package/components/editors/DependentLookupEditor/styles.js +2 -5
- package/components/editors/DependentLookupEditor/useAutopopulation.js +4 -6
- package/components/editors/DependentLookupEditor/useDefaultOptions.js +8 -10
- package/components/editors/DependentLookupEditor/useLookupsResolver.js +10 -12
- package/components/editors/DependentLookupEditor/useSavingFocus.js +4 -6
- package/components/editors/DropDownEditor/DropDownEditor.js +12 -17
- package/components/editors/EditorsFactory.js +58 -63
- package/components/editors/FileTypeEditor/FileTypeEditor.js +12 -36
- package/components/editors/FileTypeEditor/styles.js +2 -5
- package/components/editors/FilterEditor/FilterEditor.js +21 -26
- package/components/editors/FilterEditor/FilterValueEditor.js +35 -40
- package/components/editors/GroupedDropDownEditor/GroupedDropDownEditor.js +26 -33
- package/components/editors/GroupedDropDownEditor/entriesHelpers.js +7 -11
- package/components/editors/GroupedDropDownEditor/styles.js +2 -5
- package/components/editors/LookupEditor/LookupEditor.js +19 -43
- package/components/editors/LookupEditor/entriesHelpers.js +8 -11
- package/components/editors/NumberEditor/NumberEditor.js +26 -31
- package/components/editors/RangeDataTypeValueEditor/RangeDataTypeValueEditor.js +28 -52
- package/components/editors/RangeDataTypeValueEditor/styles.js +2 -5
- package/components/editors/SelectEditor/SelectEditor.js +11 -16
- package/components/editors/TextEditor/TextEditor.js +14 -19
- package/components/editors/TimestampEditor/TimestampEditor.js +30 -54
- package/components/editors/TimestampEditor/styles.js +2 -5
- package/components/editors/TypeaheadEditor/TypeaheadEditor.js +44 -68
- package/components/editors/TypeaheadEditor/styles.js +2 -5
- package/components/editors/commonComponents/MultiValueChip/MultiValueChip.js +16 -21
- package/components/editors/constants.js +4 -7
- package/components/editors/index.js +10 -26
- package/components/history/ContributorsPanel/ContributorItem.js +8 -13
- package/components/history/ContributorsPanel/ContributorsPanel.js +11 -16
- package/components/history/ContributorsPanel/styles.js +3 -6
- package/components/history/DateRangeSelector/DateRangeSelector.js +27 -51
- package/components/history/DateRangeSelector/styles.js +2 -5
- package/components/history/DateRangeSelector/utils.js +7 -14
- package/components/history/HistoryActivitySelector/HistoryActivitySelector.js +18 -23
- package/components/history/HistoryActivitySelector/styles.js +3 -6
- package/components/history/HistoryActivitySelector/utils.js +10 -17
- package/components/history/HistoryFilterButton/HistoryFilterButton.js +32 -56
- package/components/history/HistoryFilterButton/styles.js +2 -5
- package/components/history/HistoryGraph/HistoryCircle.d.ts +14 -0
- package/components/history/HistoryGraph/HistoryCircle.js +14 -0
- package/components/history/HistoryGraph/HistoryGraph.d.ts +7 -0
- package/components/history/HistoryGraph/HistoryGraph.js +62 -0
- package/components/history/HistoryGraph/HistoryLink.d.ts +11 -0
- package/components/history/HistoryGraph/HistoryLink.js +8 -0
- package/components/history/HistoryGraph/helpers.d.ts +2 -0
- package/components/history/HistoryGraph/helpers.js +13 -0
- package/components/history/HistoryHeader/HistoryHeader.js +20 -25
- package/components/history/HistoryHeader/styles.js +2 -5
- package/components/history/HistoryMenuButton/HistoryMenuButton.js +7 -12
- package/components/history/HistoryMenuButton/styles.js +2 -5
- package/components/history/HistoryRow/HistoryRow.d.ts +8 -0
- package/components/history/HistoryRow/HistoryRow.js +24 -0
- package/components/history/HistoryRow/styles.d.ts +5 -0
- package/components/history/HistoryRow/styles.js +56 -0
- package/components/history/HistoryTree/HistoryTree.d.ts +10 -0
- package/components/history/HistoryTree/HistoryTree.js +50 -0
- package/components/history/HistoryTree/styles.d.ts +1 -0
- package/components/history/HistoryTree/styles.js +23 -0
- package/components/history/HistoryView/HistoryView.d.ts +4 -2
- package/components/history/HistoryView/HistoryView.js +14 -35
- package/components/history/HistoryView/styles.js +6 -6
- package/components/history/ProfileBandHistory/ProfileBandHistory.js +18 -42
- package/components/history/ProfileBandHistory/styles.js +2 -5
- package/components/history/hooks/useHistoricUris.js +10 -14
- package/components/history/hooks/useHistory.d.ts +16 -0
- package/components/history/hooks/useHistory.js +41 -0
- package/components/history/hooks/useHistorySlice.js +16 -39
- package/components/history/hooks/useHistoryTree.d.ts +9 -0
- package/components/history/hooks/useHistoryTree.js +239 -0
- package/components/history/hooks/useHistoryWithTotal.d.ts +2 -0
- package/components/history/hooks/useHistoryWithTotal.js +29 -15
- package/components/history/index.d.ts +1 -0
- package/components/history/index.js +8 -29
- package/components/history/types/HistoryChangeTypes.d.ts +42 -0
- package/components/history/types/HistoryChangeTypes.js +20 -0
- package/components/history/types/HistoryData.d.ts +6 -0
- package/components/history/types/HistoryData.js +1 -0
- package/components/history/types/HistoryFilter.js +2 -5
- package/components/history/types/HistoryLane.d.ts +5 -0
- package/components/history/types/HistoryLane.js +1 -0
- package/components/history/types/HistoryLife.d.ts +5 -0
- package/components/history/types/HistoryLife.js +1 -0
- package/components/history/types/HistoryRowData.d.ts +5 -0
- package/components/history/types/HistoryRowData.js +1 -0
- package/components/history/types/index.d.ts +5 -0
- package/components/history/types/index.js +2 -5
- package/components/index.js +120 -257
- package/constants/attributes.js +2 -5
- package/constants/classnames.js +1 -4
- package/constants/index.js +4 -17
- package/constants/map.js +3 -6
- package/constants/prop-types.js +52 -69
- package/contexts/AsyncMountContext/index.js +8 -14
- package/contexts/BlockImageGalleryDialogContext/index.js +3 -9
- package/contexts/CollaborationContext/index.js +3 -9
- package/contexts/CrosswalksDisplayContext/index.js +20 -47
- package/contexts/EntitiesMapContext/index.js +3 -9
- package/contexts/EntityMarkerContext/index.js +3 -9
- package/contexts/ExpandedAttributesContext/index.js +8 -32
- package/contexts/HistoryAppearanceContext/index.js +3 -9
- package/contexts/IdContext/index.js +3 -9
- package/contexts/PivotingAttributeContext/index.js +2 -8
- package/contexts/PopupBoundariesContext/index.js +8 -14
- package/contexts/ProfilePerspectiveViewContext/index.js +3 -9
- package/contexts/UsersContext/index.js +3 -9
- package/contexts/ViewIdContext/index.js +3 -9
- package/contexts/index.js +14 -36
- package/core/index.js +1 -13
- package/core/utils.js +6 -21
- package/hooks/index.js +13 -29
- package/hooks/useActions.js +5 -9
- package/hooks/useAsyncMount.js +8 -12
- package/hooks/useCollaboration.js +37 -44
- package/hooks/useConfigPermissions.js +10 -17
- package/hooks/useDidUpdateEffect.js +4 -8
- package/hooks/usePrevious.js +4 -8
- package/hooks/useRelationTypeSelector.js +17 -21
- package/hooks/useRelationsLoader.js +28 -51
- package/hooks/useRunOnceAfterValueInitialization.js +4 -8
- package/hooks/useSafePromise.js +6 -10
- package/hooks/useSavedState.js +5 -9
- package/hooks/useUsers.js +10 -17
- package/hooks/useWhyDidYouUpdate.js +4 -8
- package/icons/Add.js +4 -9
- package/icons/AddComment.js +4 -9
- package/icons/Calendar.js +4 -9
- package/icons/Comment.js +4 -9
- package/icons/CommentBubble.js +4 -9
- package/icons/Copy.js +9 -14
- package/icons/Create.js +4 -9
- package/icons/DefaultImage.js +6 -11
- package/icons/Details.js +9 -14
- package/icons/Download.js +9 -14
- package/icons/Draw.js +10 -15
- package/icons/EmptySearchResults.js +66 -71
- package/icons/Filter.js +4 -9
- package/icons/Ignored.js +4 -9
- package/icons/IgnoredOutlined.js +4 -9
- package/icons/LogIn.js +5 -10
- package/icons/LogOut.js +5 -10
- package/icons/Merge.js +4 -9
- package/icons/MlMatch.js +44 -49
- package/icons/NestedAttribute.js +4 -9
- package/icons/NoData.js +62 -67
- package/icons/NoDataSearch.js +7 -12
- package/icons/NoMatches.js +4 -9
- package/icons/Pin.js +4 -9
- package/icons/PinOutlined.js +4 -9
- package/icons/PivotingIcon.js +4 -9
- package/icons/PmIcon.js +4 -9
- package/icons/Polygon.js +4 -9
- package/icons/PotentialMatch.js +4 -9
- package/icons/Profile.js +4 -9
- package/icons/Radius.js +4 -9
- package/icons/Recommended.js +9 -14
- package/icons/ReferenceAttribute.js +4 -9
- package/icons/Remove.js +4 -9
- package/icons/ResizeIconInline.js +4 -9
- package/icons/Search.js +4 -9
- package/icons/SelectAttributes.js +39 -44
- package/icons/SimpleAttribute.js +4 -9
- package/icons/Table.js +4 -9
- package/icons/UnMerge.js +4 -9
- package/icons/UploadIcon.js +28 -33
- package/icons/index.js +37 -80
- package/index.js +7 -19
- package/package.json +5 -4
- package/types/index.js +2 -5
package/components/index.js
CHANGED
|
@@ -1,257 +1,120 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
var EntityUriLink_1 = require("./EntityUriLink/EntityUriLink");
|
|
122
|
-
Object.defineProperty(exports, "EntityUriLink", { enumerable: true, get: function () { return __importDefault(EntityUriLink_1).default; } });
|
|
123
|
-
var ErrorBoundary_1 = require("./ErrorBoundary/ErrorBoundary");
|
|
124
|
-
Object.defineProperty(exports, "ErrorBoundary", { enumerable: true, get: function () { return __importDefault(ErrorBoundary_1).default; } });
|
|
125
|
-
var ErrorPopup_1 = require("./ErrorPopup/ErrorPopup");
|
|
126
|
-
Object.defineProperty(exports, "ErrorPopup", { enumerable: true, get: function () { return __importDefault(ErrorPopup_1).default; } });
|
|
127
|
-
var ErrorWrapper_1 = require("./ErrorWrapper/ErrorWrapper");
|
|
128
|
-
Object.defineProperty(exports, "ErrorWrapper", { enumerable: true, get: function () { return __importDefault(ErrorWrapper_1).default; } });
|
|
129
|
-
var ExpandedValueTooltip_1 = require("./ExpandedValueTooltip/ExpandedValueTooltip");
|
|
130
|
-
Object.defineProperty(exports, "ExpandedValueTooltip", { enumerable: true, get: function () { return __importDefault(ExpandedValueTooltip_1).default; } });
|
|
131
|
-
var FacetViewHeader_1 = require("./FacetViewHeader/FacetViewHeader");
|
|
132
|
-
Object.defineProperty(exports, "FacetViewHeader", { enumerable: true, get: function () { return __importDefault(FacetViewHeader_1).default; } });
|
|
133
|
-
var FlipCard_1 = require("./FlipCard/FlipCard");
|
|
134
|
-
Object.defineProperty(exports, "FlipCard", { enumerable: true, get: function () { return __importDefault(FlipCard_1).default; } });
|
|
135
|
-
var HideOnShrink_1 = require("./HideOnShrink/HideOnShrink");
|
|
136
|
-
Object.defineProperty(exports, "HideOnShrink", { enumerable: true, get: function () { return __importDefault(HideOnShrink_1).default; } });
|
|
137
|
-
var HierarchicalAttributeTooltip_1 = require("./HierarchicalAttributeTooltip/HierarchicalAttributeTooltip");
|
|
138
|
-
Object.defineProperty(exports, "HierarchicalAttributeTooltip", { enumerable: true, get: function () { return __importDefault(HierarchicalAttributeTooltip_1).default; } });
|
|
139
|
-
var Highlighter_1 = require("./Highlighter/Highlighter");
|
|
140
|
-
Object.defineProperty(exports, "Highlighter", { enumerable: true, get: function () { return __importDefault(Highlighter_1).default; } });
|
|
141
|
-
var ImageGalleryDialog_1 = require("./ImageGalleryDialog/ImageGalleryDialog");
|
|
142
|
-
Object.defineProperty(exports, "ImageGalleryDialog", { enumerable: true, get: function () { return ImageGalleryDialog_1.ImageGalleryDialog; } });
|
|
143
|
-
var ImportButton_1 = require("./ImportButton/ImportButton");
|
|
144
|
-
Object.defineProperty(exports, "ImportButton", { enumerable: true, get: function () { return __importDefault(ImportButton_1).default; } });
|
|
145
|
-
Object.defineProperty(exports, "ImportModes", { enumerable: true, get: function () { return ImportButton_1.ImportModes; } });
|
|
146
|
-
var LinearLoadIndicator_1 = require("./LinearLoadIndicator/LinearLoadIndicator");
|
|
147
|
-
Object.defineProperty(exports, "LinearLoadIndicator", { enumerable: true, get: function () { return __importDefault(LinearLoadIndicator_1).default; } });
|
|
148
|
-
var Link_1 = require("./Link/Link");
|
|
149
|
-
Object.defineProperty(exports, "Link", { enumerable: true, get: function () { return __importDefault(Link_1).default; } });
|
|
150
|
-
var LoadingSpinner_1 = require("./LoadingSpinner/LoadingSpinner");
|
|
151
|
-
Object.defineProperty(exports, "LoadingSpinner", { enumerable: true, get: function () { return __importDefault(LoadingSpinner_1).default; } });
|
|
152
|
-
var MatchRulesBlock_1 = require("./MatchRulesBlock/MatchRulesBlock");
|
|
153
|
-
Object.defineProperty(exports, "MatchRulesBlock", { enumerable: true, get: function () { return __importDefault(MatchRulesBlock_1).default; } });
|
|
154
|
-
var SimpleMatchRulesBlock_1 = require("./MatchRulesBlock/SimpleMatchRulesBlock/SimpleMatchRulesBlock");
|
|
155
|
-
Object.defineProperty(exports, "SimpleMatchRulesBlock", { enumerable: true, get: function () { return __importDefault(SimpleMatchRulesBlock_1).default; } });
|
|
156
|
-
var SimpleMatchRulesBuilder_1 = require("./MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder");
|
|
157
|
-
Object.defineProperty(exports, "SimpleMatchRulesBuilder", { enumerable: true, get: function () { return __importDefault(SimpleMatchRulesBuilder_1).default; } });
|
|
158
|
-
var TransitiveMatchBlock_1 = require("./MatchRulesBlock/TransitiveMatchBlock/TransitiveMatchBlock");
|
|
159
|
-
Object.defineProperty(exports, "TransitiveMatchBlock", { enumerable: true, get: function () { return __importDefault(TransitiveMatchBlock_1).default; } });
|
|
160
|
-
var ModeSwitcher_1 = require("./ModeSwitcher/ModeSwitcher");
|
|
161
|
-
Object.defineProperty(exports, "ModeSwitcher", { enumerable: true, get: function () { return __importDefault(ModeSwitcher_1).default; } });
|
|
162
|
-
var ModeSwitcherSelect_1 = require("./ModeSwitcherSelect");
|
|
163
|
-
Object.defineProperty(exports, "ModeSwitcherSelect", { enumerable: true, get: function () { return ModeSwitcherSelect_1.ModeSwitcherSelect; } });
|
|
164
|
-
var MultipleInput_1 = require("./MultipleInput/MultipleInput");
|
|
165
|
-
Object.defineProperty(exports, "MultipleInput", { enumerable: true, get: function () { return __importDefault(MultipleInput_1).default; } });
|
|
166
|
-
var Popper_1 = require("./Popper/Popper");
|
|
167
|
-
Object.defineProperty(exports, "Popper", { enumerable: true, get: function () { return __importDefault(Popper_1).default; } });
|
|
168
|
-
var PopupWithArrow_1 = require("./PopupWithArrow/PopupWithArrow");
|
|
169
|
-
Object.defineProperty(exports, "PopupWithArrow", { enumerable: true, get: function () { return PopupWithArrow_1.PopupWithArrow; } });
|
|
170
|
-
var PotentialMatchReviewCard_1 = require("./PotentialMatchReviewCard/PotentialMatchReviewCard");
|
|
171
|
-
Object.defineProperty(exports, "PotentialMatchReviewCard", { enumerable: true, get: function () { return __importDefault(PotentialMatchReviewCard_1).default; } });
|
|
172
|
-
var ProfileBand_1 = require("./ProfileBand/ProfileBand");
|
|
173
|
-
Object.defineProperty(exports, "ProfileBand", { enumerable: true, get: function () { return __importDefault(ProfileBand_1).default; } });
|
|
174
|
-
var ProfileCard_1 = require("./ProfileCard/ProfileCard");
|
|
175
|
-
Object.defineProperty(exports, "ProfileCard", { enumerable: true, get: function () { return __importDefault(ProfileCard_1).default; } });
|
|
176
|
-
var QueryBuilderRow_1 = require("./QueryBuilderRow/QueryBuilderRow");
|
|
177
|
-
Object.defineProperty(exports, "QueryBuilderRow", { enumerable: true, get: function () { return __importDefault(QueryBuilderRow_1).default; } });
|
|
178
|
-
var QueryBuilderRowsGroup_1 = require("./QueryBuilderRowsGroup/QueryBuilderRowsGroup");
|
|
179
|
-
Object.defineProperty(exports, "QueryBuilderRowsGroup", { enumerable: true, get: function () { return __importDefault(QueryBuilderRowsGroup_1).default; } });
|
|
180
|
-
var MultiSelect_1 = require("./ReactSelect/MultiSelect");
|
|
181
|
-
Object.defineProperty(exports, "MultiSelect", { enumerable: true, get: function () { return __importDefault(MultiSelect_1).default; } });
|
|
182
|
-
var optionFilters_1 = require("./ReactSelect/optionFilters");
|
|
183
|
-
Object.defineProperty(exports, "ReactSelectOptionFilters", { enumerable: true, get: function () { return __importDefault(optionFilters_1).default; } });
|
|
184
|
-
var ReactSortableTree_1 = require("./ReactSortableTree");
|
|
185
|
-
Object.defineProperty(exports, "ReactSortableTree", { enumerable: true, get: function () { return __importDefault(ReactSortableTree_1).default; } });
|
|
186
|
-
var default_handlers_1 = require("./ReactSortableTree/utils/default-handlers");
|
|
187
|
-
Object.defineProperty(exports, "ReactSortableTreeHandlers", { enumerable: true, get: function () { return __importDefault(default_handlers_1).default; } });
|
|
188
|
-
var tree_data_utils_1 = require("./ReactSortableTree/utils/tree-data-utils");
|
|
189
|
-
Object.defineProperty(exports, "ReactSortableTreeUtils", { enumerable: true, get: function () { return __importDefault(tree_data_utils_1).default; } });
|
|
190
|
-
var ReltioGridLayout_1 = require("./ReltioGridLayout/ReltioGridLayout");
|
|
191
|
-
Object.defineProperty(exports, "ReltioGridLayout", { enumerable: true, get: function () { return __importDefault(ReltioGridLayout_1).default; } });
|
|
192
|
-
var ResizablePanes_1 = require("./ResizablePanes/ResizablePanes");
|
|
193
|
-
Object.defineProperty(exports, "ResizablePanes", { enumerable: true, get: function () { return __importDefault(ResizablePanes_1).default; } });
|
|
194
|
-
var Score_1 = require("./Score/Score");
|
|
195
|
-
Object.defineProperty(exports, "Score", { enumerable: true, get: function () { return __importDefault(Score_1).default; } });
|
|
196
|
-
var ScoreLabel_1 = require("./Score/ScoreLabel");
|
|
197
|
-
Object.defineProperty(exports, "ScoreLabel", { enumerable: true, get: function () { return __importDefault(ScoreLabel_1).default; } });
|
|
198
|
-
var SearchInput_1 = require("./SearchInput/SearchInput");
|
|
199
|
-
Object.defineProperty(exports, "SearchInput", { enumerable: true, get: function () { return __importDefault(SearchInput_1).default; } });
|
|
200
|
-
var WhiteSearchInput_1 = require("./SearchInput/WhiteSearchInput");
|
|
201
|
-
Object.defineProperty(exports, "WhiteSearchInput", { enumerable: true, get: function () { return __importDefault(WhiteSearchInput_1).default; } });
|
|
202
|
-
var helpers_1 = require("./SelectionPopup/helpers");
|
|
203
|
-
Object.defineProperty(exports, "useKeyboardNavigation", { enumerable: true, get: function () { return helpers_1.useKeyboardNavigation; } });
|
|
204
|
-
var SelectionPopup_1 = require("./SelectionPopup/SelectionPopup");
|
|
205
|
-
Object.defineProperty(exports, "SelectionPopup", { enumerable: true, get: function () { return __importDefault(SelectionPopup_1).default; } });
|
|
206
|
-
var SelectionPopupPopper_1 = require("./SelectionPopup/SelectionPopupPopper/SelectionPopupPopper");
|
|
207
|
-
Object.defineProperty(exports, "SelectionPopupPopper", { enumerable: true, get: function () { return __importDefault(SelectionPopupPopper_1).default; } });
|
|
208
|
-
var SelectorWithOnlyOptionAutoSelect_1 = require("./SelectorWithOnlyOptionAutoSelect/SelectorWithOnlyOptionAutoSelect");
|
|
209
|
-
Object.defineProperty(exports, "SelectorWithOnlyOptionAutoSelect", { enumerable: true, get: function () { return __importDefault(SelectorWithOnlyOptionAutoSelect_1).default; } });
|
|
210
|
-
var SideButtonsPanel_1 = require("./SideIconPanel/SideButtonsPanel");
|
|
211
|
-
Object.defineProperty(exports, "SideButtonsPanel", { enumerable: true, get: function () { return SideButtonsPanel_1.SideButtonsPanel; } });
|
|
212
|
-
var SidePanel_1 = require("./SidePanel/SidePanel");
|
|
213
|
-
Object.defineProperty(exports, "SidePanel", { enumerable: true, get: function () { return SidePanel_1.SidePanel; } });
|
|
214
|
-
var SidePanelContentHeader_1 = require("./SidePanel/SidePanelContentHeader/SidePanelContentHeader");
|
|
215
|
-
Object.defineProperty(exports, "SidePanelContentHeader", { enumerable: true, get: function () { return SidePanelContentHeader_1.SidePanelContentHeader; } });
|
|
216
|
-
var SimpleDropDownSelector_1 = require("./SimpleDropDownSelector/SimpleDropDownSelector");
|
|
217
|
-
Object.defineProperty(exports, "SimpleDropDownSelector", { enumerable: true, get: function () { return __importDefault(SimpleDropDownSelector_1).default; } });
|
|
218
|
-
var SmallIconButton_1 = require("./SmallIconButton");
|
|
219
|
-
Object.defineProperty(exports, "SmallIconButton", { enumerable: true, get: function () { return SmallIconButton_1.SmallIconButton; } });
|
|
220
|
-
Object.defineProperty(exports, "SmallIconButtonWithTooltip", { enumerable: true, get: function () { return SmallIconButton_1.SmallIconButtonWithTooltip; } });
|
|
221
|
-
var SourceIcon_1 = require("./SourceIcon/SourceIcon");
|
|
222
|
-
Object.defineProperty(exports, "SourceIcon", { enumerable: true, get: function () { return __importDefault(SourceIcon_1).default; } });
|
|
223
|
-
var Spacer_1 = require("./Spacer/Spacer");
|
|
224
|
-
Object.defineProperty(exports, "Spacer", { enumerable: true, get: function () { return __importDefault(Spacer_1).default; } });
|
|
225
|
-
var Title_1 = require("./Title/Title");
|
|
226
|
-
Object.defineProperty(exports, "AttributeTitle", { enumerable: true, get: function () { return __importDefault(Title_1).default; } });
|
|
227
|
-
var VerticalDivider_1 = require("./VerticalDivider/VerticalDivider");
|
|
228
|
-
Object.defineProperty(exports, "VerticalDivider", { enumerable: true, get: function () { return __importDefault(VerticalDivider_1).default; } });
|
|
229
|
-
var VerticalHeadingsTable_1 = require("./VerticalHeadingsTable/VerticalHeadingsTable");
|
|
230
|
-
Object.defineProperty(exports, "VerticalHeadingsTable", { enumerable: true, get: function () { return __importDefault(VerticalHeadingsTable_1).default; } });
|
|
231
|
-
var ViewMoreToggle_1 = require("./ViewMoreToggle/ViewMoreToggle");
|
|
232
|
-
Object.defineProperty(exports, "ViewMoreToggle", { enumerable: true, get: function () { return __importDefault(ViewMoreToggle_1).default; } });
|
|
233
|
-
var VirtualGroupedList_1 = require("./VirtualGroupedList/VirtualGroupedList");
|
|
234
|
-
Object.defineProperty(exports, "VirtualGroupedList", { enumerable: true, get: function () { return __importDefault(VirtualGroupedList_1).default; } });
|
|
235
|
-
var ExpandableSearchInput_1 = require("./ExpandableSearchInput/ExpandableSearchInput");
|
|
236
|
-
Object.defineProperty(exports, "ExpandableSearchInput", { enumerable: true, get: function () { return ExpandableSearchInput_1.ExpandableSearchInput; } });
|
|
237
|
-
var ScrollableTabs_1 = require("./ScrollableTabs/ScrollableTabs");
|
|
238
|
-
Object.defineProperty(exports, "ScrollableTabs", { enumerable: true, get: function () { return __importDefault(ScrollableTabs_1).default; } });
|
|
239
|
-
__exportStar(require("./attributes/inline"), exports);
|
|
240
|
-
var ArrowExpandButton_1 = require("./ArrowExpandButton/ArrowExpandButton");
|
|
241
|
-
Object.defineProperty(exports, "ArrowExpandButton", { enumerable: true, get: function () { return __importDefault(ArrowExpandButton_1).default; } });
|
|
242
|
-
var LightArrowTooltip_1 = require("./LightArrowTooltip/LightArrowTooltip");
|
|
243
|
-
Object.defineProperty(exports, "LightArrowTooltip", { enumerable: true, get: function () { return __importDefault(LightArrowTooltip_1).default; } });
|
|
244
|
-
var Marginator_1 = require("./Marginator/Marginator");
|
|
245
|
-
Object.defineProperty(exports, "Marginator", { enumerable: true, get: function () { return __importDefault(Marginator_1).default; } });
|
|
246
|
-
var ConfirmationDialog_1 = require("./ConfirmationDialog/ConfirmationDialog");
|
|
247
|
-
Object.defineProperty(exports, "ConfirmationDialog", { enumerable: true, get: function () { return __importDefault(ConfirmationDialog_1).default; } });
|
|
248
|
-
var ConfirmDeleteDialog_1 = require("./ConfirmDeleteDialog/ConfirmDeleteDialog");
|
|
249
|
-
Object.defineProperty(exports, "ConfirmDeleteDialog", { enumerable: true, get: function () { return __importDefault(ConfirmDeleteDialog_1).default; } });
|
|
250
|
-
__exportStar(require("./crosswalks"), exports);
|
|
251
|
-
var ReltioMap_1 = require("./ReltioMap");
|
|
252
|
-
Object.defineProperty(exports, "ReltioMap", { enumerable: true, get: function () { return ReltioMap_1.ReltioMap; } });
|
|
253
|
-
var ErrorMessage_1 = require("./ErrorWrapper/ErrorMessage");
|
|
254
|
-
Object.defineProperty(exports, "ErrorMessage", { enumerable: true, get: function () { return __importDefault(ErrorMessage_1).default; } });
|
|
255
|
-
__exportStar(require("./history"), exports);
|
|
256
|
-
var OvIcon_1 = require("./attributes/OvIcon");
|
|
257
|
-
Object.defineProperty(exports, "OvIcon", { enumerable: true, get: function () { return __importDefault(OvIcon_1).default; } });
|
|
1
|
+
export * from './activityLog';
|
|
2
|
+
export { default as AttributeListItem } from './AttributeListItem/AttributeListItem';
|
|
3
|
+
export { default as AttributesView } from './attributes/AttributesView';
|
|
4
|
+
export { default as BranchDecorator } from './attributes/BranchDecorator/BranchDecorator';
|
|
5
|
+
export { default as AttributesList } from './attributes/editMode/AttributesList';
|
|
6
|
+
export { default as EntityCreator } from './attributes/editMode/EntityCreator';
|
|
7
|
+
export { default as EntitySelector } from './attributes/editMode/EntitySelector/EntitySelector';
|
|
8
|
+
export { default as MoreAttributesButton } from './attributes/editMode/MoreAttributesButton';
|
|
9
|
+
export { default as NestedAttributeEditor } from './attributes/editMode/NestedAttribute/NestedAttribute';
|
|
10
|
+
export { default as ReferenceAttributeEditor } from './attributes/editMode/ReferenceAttribute';
|
|
11
|
+
export { default as RelationTypeSelector } from './attributes/editMode/RelationTypeSelector/RelationTypeSelector';
|
|
12
|
+
export { default as SimpleAttributeEditor } from './attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor';
|
|
13
|
+
export { default as AttributesPager, CardinalityMessage } from './attributes/editMode/AttributesPager';
|
|
14
|
+
export { default as ReadOnlyAttribute } from './attributes/readMode/AttributesFactory/Attribute';
|
|
15
|
+
export { default as EditableAttribute } from './attributes/editMode/AttributesFactory/Attribute';
|
|
16
|
+
export { default as ReadOnlyAttributeValuesBlock } from './attributes/readMode/AttributeValuesBlock/AttributeValuesBlock';
|
|
17
|
+
export { default as ReadOnlyAttributesList } from './attributes/readMode/AttributesList';
|
|
18
|
+
export { default as ImageAttributesLine } from './attributes/readMode/ImageAttributesLine';
|
|
19
|
+
export { default as NestedAttribute } from './attributes/readMode/NestedAttribute';
|
|
20
|
+
export { default as ReferenceAttribute } from './attributes/readMode/ReferenceAttribute';
|
|
21
|
+
export { default as SimpleAttribute } from './attributes/readMode/SimpleAttribute';
|
|
22
|
+
export { default as ReadOnlyAttributesPager } from './attributes/readMode/AttributesPager';
|
|
23
|
+
export { default as AutoSizeList } from './AutoSizeList/AutoSizeList';
|
|
24
|
+
export { default as AvatarWithFallback } from './AvatarWithFallback/AvatarWithFallback';
|
|
25
|
+
export * from './BasicTableView';
|
|
26
|
+
export { ProfileBandNavigation } from './ProfileBandNavigation';
|
|
27
|
+
export { default as BasicView } from './BasicView/BasicView';
|
|
28
|
+
export { default as BasicViewContent } from './BasicViewContent/BasicViewContent';
|
|
29
|
+
export { default as BasicViewHeader } from './BasicViewHeader/BasicViewHeader';
|
|
30
|
+
export * from './charts';
|
|
31
|
+
export { default as ClickAwayProvider } from './ClickAwayProvider/ClickAwayProvider';
|
|
32
|
+
export { CollaborationItem } from './CollaborationItem/CollaborationItem';
|
|
33
|
+
export { default as CollapseButton } from './CollapseButton/CollapseButton';
|
|
34
|
+
export { default as ColorBar } from './ColorBar/ColorBar';
|
|
35
|
+
export { default as CommentsContainer } from './CommentsContainer/CommentsContainer';
|
|
36
|
+
export { default as DropdownIndicator } from './commonReactSelectComponents/DropdownIndicator';
|
|
37
|
+
export { default as DropdownIndicatorWithIconButton } from './commonReactSelectComponents/DropdownIndicatorWithIconButton';
|
|
38
|
+
export { default as MenuWithPopper } from './commonReactSelectComponents/MenuWithPopper';
|
|
39
|
+
export { default as ConfigureColumnsPopup } from './ConfigureColumnsPopup/ConfigureColumnsPopup';
|
|
40
|
+
export { default as ConnectionRelationTypeSelector } from './ConnectionRelationTypeSelector/ConnectionRelationTypeSelector';
|
|
41
|
+
export { default as DataTypeValue } from './DataTypeValue/DataTypeValue';
|
|
42
|
+
export { default as Drawer } from './Drawer/Drawer';
|
|
43
|
+
export { default as DropDownMenuButton } from './DropDownMenuButton/DropDownMenuButton';
|
|
44
|
+
export { default as DropDownSelector } from './DropDownSelector/DropDownSelector';
|
|
45
|
+
export * from './editors';
|
|
46
|
+
export { NoData, NoResults } from './EmptySearchResult';
|
|
47
|
+
export { default as EmptyState, EMPTY_STATE_ICONS, EMPTY_STATE_VARIANTS } from './EmptyState/EmptyState';
|
|
48
|
+
export { default as EntityAvatar } from './EntityAvatar/EntityAvatar';
|
|
49
|
+
export { default as EntityTypeBadge } from './EntityTypeBadge/EntityTypeBadge';
|
|
50
|
+
export { default as EntityTypeIcon } from './EntityTypeIcon/EntityTypeIcon';
|
|
51
|
+
export { default as EntityTypesSelector } from './EntityTypesSelector/EntityTypesSelector';
|
|
52
|
+
export { default as EntityUriLink } from './EntityUriLink/EntityUriLink';
|
|
53
|
+
export { default as ErrorBoundary } from './ErrorBoundary/ErrorBoundary';
|
|
54
|
+
export { default as ErrorPopup } from './ErrorPopup/ErrorPopup';
|
|
55
|
+
export { default as ErrorWrapper } from './ErrorWrapper/ErrorWrapper';
|
|
56
|
+
export { default as ExpandedValueTooltip } from './ExpandedValueTooltip/ExpandedValueTooltip';
|
|
57
|
+
export { default as FacetViewHeader } from './FacetViewHeader/FacetViewHeader';
|
|
58
|
+
export { default as FlipCard } from './FlipCard/FlipCard';
|
|
59
|
+
export { default as HideOnShrink } from './HideOnShrink/HideOnShrink';
|
|
60
|
+
export { default as HierarchicalAttributeTooltip } from './HierarchicalAttributeTooltip/HierarchicalAttributeTooltip';
|
|
61
|
+
export { default as Highlighter } from './Highlighter/Highlighter';
|
|
62
|
+
export { ImageGalleryDialog } from './ImageGalleryDialog/ImageGalleryDialog';
|
|
63
|
+
export { default as ImportButton, ImportModes } from './ImportButton/ImportButton';
|
|
64
|
+
export { default as LinearLoadIndicator } from './LinearLoadIndicator/LinearLoadIndicator';
|
|
65
|
+
export { default as Link } from './Link/Link';
|
|
66
|
+
export { default as LoadingSpinner } from './LoadingSpinner/LoadingSpinner';
|
|
67
|
+
export { default as MatchRulesBlock } from './MatchRulesBlock/MatchRulesBlock';
|
|
68
|
+
export { default as SimpleMatchRulesBlock } from './MatchRulesBlock/SimpleMatchRulesBlock/SimpleMatchRulesBlock';
|
|
69
|
+
export { default as SimpleMatchRulesBuilder } from './MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder';
|
|
70
|
+
export { default as TransitiveMatchBlock } from './MatchRulesBlock/TransitiveMatchBlock/TransitiveMatchBlock';
|
|
71
|
+
export { default as ModeSwitcher } from './ModeSwitcher/ModeSwitcher';
|
|
72
|
+
export { ModeSwitcherSelect } from './ModeSwitcherSelect';
|
|
73
|
+
export { default as MultipleInput } from './MultipleInput/MultipleInput';
|
|
74
|
+
export { default as Popper } from './Popper/Popper';
|
|
75
|
+
export { PopupWithArrow } from './PopupWithArrow/PopupWithArrow';
|
|
76
|
+
export { default as PotentialMatchReviewCard } from './PotentialMatchReviewCard/PotentialMatchReviewCard';
|
|
77
|
+
export { default as ProfileBand } from './ProfileBand/ProfileBand';
|
|
78
|
+
export { default as ProfileCard } from './ProfileCard/ProfileCard';
|
|
79
|
+
export { default as QueryBuilderRow } from './QueryBuilderRow/QueryBuilderRow';
|
|
80
|
+
export { default as QueryBuilderRowsGroup } from './QueryBuilderRowsGroup/QueryBuilderRowsGroup';
|
|
81
|
+
export { default as MultiSelect } from './ReactSelect/MultiSelect';
|
|
82
|
+
export { default as ReactSelectOptionFilters } from './ReactSelect/optionFilters';
|
|
83
|
+
export { default as ReactSortableTree } from './ReactSortableTree';
|
|
84
|
+
export { default as ReactSortableTreeHandlers } from './ReactSortableTree/utils/default-handlers';
|
|
85
|
+
export { default as ReactSortableTreeUtils } from './ReactSortableTree/utils/tree-data-utils';
|
|
86
|
+
export { default as ReltioGridLayout } from './ReltioGridLayout/ReltioGridLayout';
|
|
87
|
+
export { default as ResizablePanes } from './ResizablePanes/ResizablePanes';
|
|
88
|
+
export { default as Score } from './Score/Score';
|
|
89
|
+
export { default as ScoreLabel } from './Score/ScoreLabel';
|
|
90
|
+
export { default as SearchInput } from './SearchInput/SearchInput';
|
|
91
|
+
export { default as WhiteSearchInput } from './SearchInput/WhiteSearchInput';
|
|
92
|
+
export { useKeyboardNavigation } from './SelectionPopup/helpers';
|
|
93
|
+
export { default as SelectionPopup } from './SelectionPopup/SelectionPopup';
|
|
94
|
+
export { default as SelectionPopupPopper } from './SelectionPopup/SelectionPopupPopper/SelectionPopupPopper';
|
|
95
|
+
export { default as SelectorWithOnlyOptionAutoSelect } from './SelectorWithOnlyOptionAutoSelect/SelectorWithOnlyOptionAutoSelect';
|
|
96
|
+
export { SideButtonsPanel } from './SideIconPanel/SideButtonsPanel';
|
|
97
|
+
export { SidePanel } from './SidePanel/SidePanel';
|
|
98
|
+
export { SidePanelContentHeader } from './SidePanel/SidePanelContentHeader/SidePanelContentHeader';
|
|
99
|
+
export { default as SimpleDropDownSelector } from './SimpleDropDownSelector/SimpleDropDownSelector';
|
|
100
|
+
export { SmallIconButton, SmallIconButtonWithTooltip } from './SmallIconButton';
|
|
101
|
+
export { default as SourceIcon } from './SourceIcon/SourceIcon';
|
|
102
|
+
export { default as Spacer } from './Spacer/Spacer';
|
|
103
|
+
export { default as AttributeTitle } from './Title/Title';
|
|
104
|
+
export { default as VerticalDivider } from './VerticalDivider/VerticalDivider';
|
|
105
|
+
export { default as VerticalHeadingsTable } from './VerticalHeadingsTable/VerticalHeadingsTable';
|
|
106
|
+
export { default as ViewMoreToggle } from './ViewMoreToggle/ViewMoreToggle';
|
|
107
|
+
export { default as VirtualGroupedList } from './VirtualGroupedList/VirtualGroupedList';
|
|
108
|
+
export { ExpandableSearchInput } from './ExpandableSearchInput/ExpandableSearchInput';
|
|
109
|
+
export { default as ScrollableTabs } from './ScrollableTabs/ScrollableTabs';
|
|
110
|
+
export * from './attributes/inline';
|
|
111
|
+
export { default as ArrowExpandButton } from './ArrowExpandButton/ArrowExpandButton';
|
|
112
|
+
export { default as LightArrowTooltip } from './LightArrowTooltip/LightArrowTooltip';
|
|
113
|
+
export { default as Marginator } from './Marginator/Marginator';
|
|
114
|
+
export { default as ConfirmationDialog } from './ConfirmationDialog/ConfirmationDialog';
|
|
115
|
+
export { default as ConfirmDeleteDialog } from './ConfirmDeleteDialog/ConfirmDeleteDialog';
|
|
116
|
+
export * from './crosswalks';
|
|
117
|
+
export { ReltioMap } from './ReltioMap';
|
|
118
|
+
export { default as ErrorMessage } from './ErrorWrapper/ErrorMessage';
|
|
119
|
+
export * from './history';
|
|
120
|
+
export { default as OvIcon } from './attributes/OvIcon';
|
package/constants/attributes.js
CHANGED
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.ALWAYS_VISIBLE_TYPE_URIS = void 0;
|
|
4
|
-
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
5
|
-
exports.ALWAYS_VISIBLE_TYPE_URIS = [mdm_sdk_1.EntityAttrTypes.roles.uri, mdm_sdk_1.EntityAttrTypes.tags.uri];
|
|
1
|
+
import { EntityAttrTypes } from '@reltio/mdm-sdk';
|
|
2
|
+
export var ALWAYS_VISIBLE_TYPE_URIS = [EntityAttrTypes.roles.uri, EntityAttrTypes.tags.uri];
|
package/constants/classnames.js
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.COMMENTS_CONTAINER_VISIBILITY_AREA = void 0;
|
|
4
|
-
exports.COMMENTS_CONTAINER_VISIBILITY_AREA = 'commentsContainerVisibilityArea';
|
|
1
|
+
export var COMMENTS_CONTAINER_VISIBILITY_AREA = 'commentsContainerVisibilityArea';
|
package/constants/index.js
CHANGED
|
@@ -1,17 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "SortingType", { enumerable: true, get: function () { return prop_types_1.SortingType; } });
|
|
6
|
-
Object.defineProperty(exports, "ColumnFilterType", { enumerable: true, get: function () { return prop_types_1.ColumnFilterType; } });
|
|
7
|
-
Object.defineProperty(exports, "ColumnsDataType", { enumerable: true, get: function () { return prop_types_1.ColumnsDataType; } });
|
|
8
|
-
Object.defineProperty(exports, "QueryBuilderAttributeType", { enumerable: true, get: function () { return prop_types_1.QueryBuilderAttributeType; } });
|
|
9
|
-
Object.defineProperty(exports, "QueryBuilderAttributeDataType", { enumerable: true, get: function () { return prop_types_1.QueryBuilderAttributeDataType; } });
|
|
10
|
-
var classnames_1 = require("./classnames");
|
|
11
|
-
Object.defineProperty(exports, "COMMENTS_CONTAINER_VISIBILITY_AREA", { enumerable: true, get: function () { return classnames_1.COMMENTS_CONTAINER_VISIBILITY_AREA; } });
|
|
12
|
-
var attributes_1 = require("./attributes");
|
|
13
|
-
Object.defineProperty(exports, "ALWAYS_VISIBLE_TYPE_URIS", { enumerable: true, get: function () { return attributes_1.ALWAYS_VISIBLE_TYPE_URIS; } });
|
|
14
|
-
var map_1 = require("./map");
|
|
15
|
-
Object.defineProperty(exports, "MAP_DRAWING_MODES", { enumerable: true, get: function () { return map_1.MAP_DRAWING_MODES; } });
|
|
16
|
-
Object.defineProperty(exports, "DEFAULT_OVERLAY_OPTIONS", { enumerable: true, get: function () { return map_1.DEFAULT_OVERLAY_OPTIONS; } });
|
|
17
|
-
Object.defineProperty(exports, "MAP_MINIMUM_SCALE_RADIUS", { enumerable: true, get: function () { return map_1.MAP_MINIMUM_SCALE_RADIUS; } });
|
|
1
|
+
export { SortingType, ColumnFilterType, ColumnsDataType, QueryBuilderAttributeType, QueryBuilderAttributeDataType } from './prop-types';
|
|
2
|
+
export { COMMENTS_CONTAINER_VISIBILITY_AREA } from './classnames';
|
|
3
|
+
export { ALWAYS_VISIBLE_TYPE_URIS } from './attributes';
|
|
4
|
+
export { MAP_DRAWING_MODES, DEFAULT_OVERLAY_OPTIONS, MAP_MINIMUM_SCALE_RADIUS } from './map';
|
package/constants/map.js
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MAP_MINIMUM_SCALE_RADIUS = exports.DEFAULT_OVERLAY_OPTIONS = exports.MAP_DRAWING_MODES = void 0;
|
|
4
|
-
exports.MAP_DRAWING_MODES = {
|
|
1
|
+
export var MAP_DRAWING_MODES = {
|
|
5
2
|
CIRCLE: 'circle',
|
|
6
3
|
POLYGON: 'polygon'
|
|
7
4
|
};
|
|
8
|
-
|
|
5
|
+
export var DEFAULT_OVERLAY_OPTIONS = {
|
|
9
6
|
fillColor: 'rgb(242,82,82)',
|
|
10
7
|
fillOpacity: 0.1,
|
|
11
8
|
strokeWeight: 2,
|
|
@@ -14,4 +11,4 @@ exports.DEFAULT_OVERLAY_OPTIONS = {
|
|
|
14
11
|
editable: true,
|
|
15
12
|
zIndex: 1
|
|
16
13
|
};
|
|
17
|
-
|
|
14
|
+
export var MAP_MINIMUM_SCALE_RADIUS = 0.001;
|