@reltio/components 1.4.698 → 1.4.702
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 +10 -0
- package/HOCs/withAsyncMount/withAsyncMount.js +44 -0
- package/HOCs/withTooltip/propTypes.js +11 -0
- package/HOCs/withTooltip/withTooltip.js +71 -0
- package/components/ArrowExpandButton/ArrowExpandButton.js +39 -0
- package/components/ArrowExpandButton/styles.js +17 -0
- package/components/AttributeListItem/AttrTypeIcon.js +29 -0
- package/components/AttributeListItem/AttributeListItem.js +70 -0
- package/components/AttributeListItem/styles.js +97 -0
- package/components/AutoSizeList/AutoSizeList.js +70 -0
- package/components/AvatarWithFallback/AvatarWithFallback.js +79 -0
- package/components/BasicTableView/BasicTable/BasicTable.js +106 -0
- package/components/BasicTableView/BasicTable/HOCs/withFilter.js +38 -0
- package/components/BasicTableView/BasicTable/HOCs/withFilterAtBottom.js +43 -0
- package/components/BasicTableView/BasicTable/HOCs/withTableContext.js +47 -0
- package/components/BasicTableView/BasicTable/cell-value-renderers/BlobRenderer.js +20 -0
- package/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.js +43 -0
- package/components/BasicTableView/BasicTable/cell-value-renderers/index.js +8 -0
- package/components/BasicTableView/BasicTable/cell-value-renderers/styles.js +22 -0
- package/components/BasicTableView/BasicTable/contexts/RowCollapseContext.js +9 -0
- package/components/BasicTableView/BasicTable/contexts/TableContext.js +9 -0
- package/components/BasicTableView/BasicTable/contexts/index.js +5 -0
- package/components/BasicTableView/BasicTable/helpers/dataHelpers.js +122 -0
- package/components/BasicTableView/BasicTable/helpers/defaultGetRowCellHeight.js +20 -0
- package/components/BasicTableView/BasicTable/helpers/defaultRenderRowCell.js +33 -0
- package/components/BasicTableView/BasicTable/helpers/nestedHelpers.js +80 -0
- package/components/BasicTableView/BasicTable/hooks/index.js +10 -0
- package/components/BasicTableView/BasicTable/hooks/useBasicTableCellRenderer.js +94 -0
- package/components/BasicTableView/BasicTable/hooks/useCollapsibleTableRows.js +43 -0
- package/components/BasicTableView/BasicTable/hooks/useDynamicRowCellHeight.js +37 -0
- package/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnListItem.js +30 -0
- package/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettings.js +91 -0
- package/components/BasicTableView/BasicTableHeader/ColumnsSettings/columnHelpers.js +86 -0
- package/components/BasicTableView/BasicTableHeader/ColumnsSettings/styles.js +12 -0
- package/components/BasicTableView/BasicTableHeader/FilterButton/FilterButton.js +26 -0
- package/components/BasicTableView/BasicTableHeader/FilterButton/styles.js +18 -0
- package/components/BasicTableView/BasicTablePagination/BasicTablePagination.js +80 -0
- package/components/BasicTableView/BasicTablePagination/styles.js +32 -0
- package/components/BasicTableView/CollapseRowButton/CollapseRowButton.js +48 -0
- package/components/BasicTableView/CollapseRowButton/styles.js +9 -0
- package/components/BasicTableView/ColumnFilter/ColumnFilter.js +113 -0
- package/components/BasicTableView/ColumnFilter/FilterChip/FilterChip.js +40 -0
- package/components/BasicTableView/ColumnFilter/FilterChip/styles.js +27 -0
- package/components/BasicTableView/ColumnFilter/helpers.js +18 -0
- package/components/BasicTableView/ColumnFilter/styles.js +30 -0
- package/components/BasicTableView/RowCellAutoSizer/RowCellAutoSizer.js +56 -0
- package/components/BasicTableView/index.js +45 -0
- package/components/BasicTableView/viewState/basicTableViewState.js +82 -0
- package/components/BasicView/BasicView.js +61 -0
- package/components/BasicView/styles.js +13 -0
- package/components/BasicViewContent/BasicViewContent.js +36 -0
- package/components/BasicViewContent/styles.js +13 -0
- package/components/BasicViewHeader/BasicViewHeader.js +39 -0
- package/components/BasicViewHeader/styles.js +19 -0
- package/components/ClickAwayProvider/ClickAwayProvider.js +22 -0
- package/components/CollaborationItem/Avatar/Avatar.js +39 -0
- package/components/CollaborationItem/Avatar/styles.js +13 -0
- package/components/CollaborationItem/CollaborationItem.js +48 -0
- package/components/CollaborationItem/Comment/Comment.js +78 -0
- package/components/CollaborationItem/Comment/styles.js +51 -0
- package/components/CollaborationItem/CommentContent/CommentContent.js +42 -0
- package/components/CollaborationItem/CommentContent/styles.js +12 -0
- package/components/CollaborationItem/CommentTarget/CommentTarget.js +98 -0
- package/components/CollaborationItem/CommentTarget/styles.js +23 -0
- package/components/CollaborationItem/RepliedComment/RepliedComment.js +30 -0
- package/components/CollaborationItem/RepliedComment/styles.js +44 -0
- package/components/CollaborationItem/SendMessageArea/SendMessageArea.js +113 -0
- package/components/CollaborationItem/SendMessageArea/styles.js +33 -0
- package/components/CollaborationItem/TextFieldWithMentions/TextFieldWithMentions.js +70 -0
- package/components/CollaborationItem/TextFieldWithMentions/styles.js +54 -0
- package/components/CollaborationItem/styles.js +21 -0
- package/components/CollaborationItem/utils/index.js +53 -0
- package/components/CollaborationPopup/CollaborationPopup.js +68 -0
- package/components/CollaborationPopup/styles.js +69 -0
- package/components/CollapseButton/CollapseButton.js +47 -0
- package/components/CollapseButton/styles.js +12 -0
- package/components/ColorBar/ColorBar.js +38 -0
- package/components/ColorBar/styles.js +17 -0
- package/components/CommentsContainer/CommentsContainer.js +70 -0
- package/components/CommentsContainer/buttons/AddCommentButton.js +19 -0
- package/components/CommentsContainer/buttons/CommentButton.js +20 -0
- package/components/CommentsContainer/buttons/styles.js +36 -0
- package/components/CommentsContainer/styles.js +25 -0
- package/components/ConfigureColumnsPopup/ConfigureColumnsPopup.js +121 -0
- package/components/ConfigureColumnsPopup/styles.js +13 -0
- package/components/ConfirmationDialog/ConfirmationDialog.js +28 -0
- package/components/ConfirmationDialog/styles.js +40 -0
- package/components/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.js +83 -0
- package/components/DataTypeValue/DataTypeValue.js +28 -0
- package/components/DateRangePicker/DateRangePicker.js +87 -0
- package/components/DateRangePicker/styles.js +43 -0
- package/components/Drawer/Drawer.js +72 -0
- package/components/DropDownMenuButton/DropDownMenuButton.js +74 -0
- package/components/DropDownMenuButton/MenuItemRenderer.js +44 -0
- package/components/DropDownMenuButton/styles.js +28 -0
- package/components/DropDownSelector/DropDownSelector.js +97 -0
- package/components/DropDownSelector/components/Menu.js +36 -0
- package/components/DropDownSelector/components/SingleValue.js +30 -0
- package/components/DropDownSelector/components/styles.js +36 -0
- package/components/DropDownSelector/styles.js +69 -0
- package/components/EmptySearchResult/NoData.js +25 -0
- package/components/EmptySearchResult/NoMessageComponent.js +39 -0
- package/components/EmptySearchResult/NoResults.js +24 -0
- package/components/EmptySearchResult/index.js +7 -0
- package/components/EmptySearchResult/styles.js +26 -0
- package/components/EmptyState/EmptyState.js +36 -0
- package/components/EmptyState/styles.js +68 -0
- package/components/EntityAvatar/EntityAvatar.js +26 -0
- package/components/EntityAvatar/no-photo.svg.js +4 -0
- package/components/EntityTypeBadge/EntityTypeBadge.js +25 -0
- package/components/EntityTypeBadge/styles.js +23 -0
- package/components/EntityTypeIcon/EntityTypeIcon.js +26 -0
- package/components/EntityTypesSelector/EntityTypesSelector.js +141 -0
- package/components/EntityTypesSelector/ListLabel/ListLabel.js +51 -0
- package/components/EntityTypesSelector/ListLabel/helpers.js +49 -0
- package/components/EntityTypesSelector/ListLabel/styles.js +36 -0
- package/components/EntityTypesSelector/SelectEntityTypesList.js +70 -0
- package/components/EntityTypesSelector/styles.js +72 -0
- package/components/EntityUriLink/EntityUriLink.js +43 -0
- package/components/ErrorBoundary/ErrorBoundary.js +46 -0
- package/components/ErrorPopup/ErrorPopup.js +32 -0
- package/components/ErrorPopup/styles.js +11 -0
- package/components/ErrorWrapper/ErrorMessage.js +17 -0
- package/components/ErrorWrapper/ErrorWrapper.js +62 -0
- package/components/ErrorWrapper/styles.js +18 -0
- package/components/ExpandableSearchInput/ExpandableSearchInput.js +50 -0
- package/components/ExpandableSearchInput/styles.js +23 -0
- package/components/ExpandedValueTooltip/ExpandedValueTooltip.js +88 -0
- package/components/FacetViewHeader/FacetViewHeader.js +15 -0
- package/components/FacetViewHeader/styles.js +17 -0
- package/components/FlipCard/FlipCard.js +41 -0
- package/components/FlipCard/styles.js +55 -0
- package/components/FlipCard/types/index.js +2 -0
- package/components/HideOnShrink/HideOnShrink.js +21 -0
- package/components/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.js +45 -0
- package/components/HierarchicalAttributeTooltip/styles.js +54 -0
- package/components/Highlighter/Highlighter.js +18 -0
- package/components/Highlighter/styles.js +9 -0
- package/components/Image/CheckedIcon/CheckedIcon.js +18 -0
- package/components/Image/CheckedIcon/styles.js +10 -0
- package/components/Image/Image.js +104 -0
- package/components/Image/ImageActionsOverlay/ImageActionsOverlay.js +81 -0
- package/components/Image/ImageActionsOverlay/styles.js +61 -0
- package/components/Image/styles.js +33 -0
- package/components/ImageAttributesGallery/GalleryView/GalleryView.js +45 -0
- package/components/ImageAttributesGallery/GalleryView/styles.js +14 -0
- package/components/ImageAttributesGallery/HeaderLeft/HeaderLeft.js +17 -0
- package/components/ImageAttributesGallery/HeaderLeft/styles.js +12 -0
- package/components/ImageAttributesGallery/HeaderRight/HeaderRight.js +26 -0
- package/components/ImageAttributesGallery/HeaderRight/styles.js +27 -0
- package/components/ImageAttributesGallery/ImageAttributesGallery.js +121 -0
- package/components/ImageDetailsView/ImageDetailsView.js +52 -0
- package/components/ImageDetailsView/ImageDetailsViewCarousel/ImageDetailsViewCarousel.js +53 -0
- package/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/Thumbnails.js +72 -0
- package/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/styles.js +26 -0
- package/components/ImageDetailsView/ImageDetailsViewCarousel/styles.js +47 -0
- package/components/ImageDetailsView/ImageDetailsViewSidebar/ImageDetailsViewSidebar.js +61 -0
- package/components/ImageDetailsView/ImageDetailsViewSidebar/styles.js +45 -0
- package/components/ImageDetailsView/MetaInfo/MetaInfo.js +29 -0
- package/components/ImageDetailsView/MetaInfoForm/MetaInfoForm.js +32 -0
- package/components/ImageDetailsView/MetaInfoForm/styles.js +24 -0
- package/components/ImageDetailsView/MetaInfoHeader/MetaInfoHeader.js +52 -0
- package/components/ImageDetailsView/MetaInfoHeader/styles.js +21 -0
- package/components/ImageDetailsView/MetaInfoList/MetaInfoItem/MetaInfoItem.js +17 -0
- package/components/ImageDetailsView/MetaInfoList/MetaInfoItem/styles.js +25 -0
- package/components/ImageDetailsView/MetaInfoList/MetaInfoList.js +32 -0
- package/components/ImageDetailsView/MetaInfoList/styles.js +17 -0
- package/components/ImageDetailsView/constants/index.js +42 -0
- package/components/ImageDetailsView/helpers/index.js +97 -0
- package/components/ImageDetailsView/hooks/useEditMetaInfo.js +70 -0
- package/components/ImageDetailsView/styles.js +18 -0
- package/components/ImageDetailsView/theme/index.js +12 -0
- package/components/ImageDetailsView/types/index.js +2 -0
- package/components/ImageGalleryDialog/ImageGalleryDialog.js +70 -0
- package/components/ImageGalleryDialog/styles.js +49 -0
- package/components/ImportButton/ImportButton.js +40 -0
- package/components/ImportButton/styles.js +16 -0
- package/components/LightArrowTooltip/LightArrowTooltip.js +24 -0
- package/components/LightArrowTooltip/styles.js +15 -0
- package/components/LinearLoadIndicator/LinearLoadIndicator.js +17 -0
- package/components/LinearLoadIndicator/styles.js +19 -0
- package/components/Link/Link.js +19 -0
- package/components/Link/styles.js +14 -0
- package/components/LoadingSpinner/LoadingSpinner.js +15 -0
- package/components/LoadingSpinner/SpinnerSmall.gif.js +4 -0
- package/components/Marginator/Marginator.js +16 -0
- package/components/MatchRulesBlock/MatchRulesBadge/MatchRulesBadge.js +59 -0
- package/components/MatchRulesBlock/MatchRulesBadge/styles.js +23 -0
- package/components/MatchRulesBlock/MatchRulesBlock.js +24 -0
- package/components/MatchRulesBlock/MatchRulesTitle.js +12 -0
- package/components/MatchRulesBlock/MatchRulesTooltip/MatchRulesTooltip.js +18 -0
- package/components/MatchRulesBlock/MatchRulesTooltip/styles.js +19 -0
- package/components/MatchRulesBlock/SimpleMatchRules/SimpleMatchRules.js +18 -0
- package/components/MatchRulesBlock/SimpleMatchRules/styles.js +18 -0
- package/components/MatchRulesBlock/SimpleMatchRulesBlock/SimpleMatchRulesBlock.js +46 -0
- package/components/MatchRulesBlock/SimpleMatchRulesBlock/styles.js +19 -0
- package/components/MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder.js +43 -0
- package/components/MatchRulesBlock/TransitiveMatchBlock/TransitiveMatchBlock.js +58 -0
- package/components/MatchRulesBlock/TransitiveMatchBlock/styles.js +14 -0
- package/components/MatchRulesBlock/TransitiveMatchRules/TransitiveMatchRule.js +41 -0
- package/components/MatchRulesBlock/TransitiveMatchRules/styles.js +23 -0
- package/components/MatchRulesBlock/TransitiveMatchRulesTooltip/TransitiveMatchRulesTooltip.js +19 -0
- package/components/MatchRulesBlock/TransitiveMatchRulesTooltip/styles.js +13 -0
- package/components/MatchRulesBlock/types/index.js +2 -0
- package/components/ModeSwitcher/ModeSwitcher.js +25 -0
- package/components/ModeSwitcher/styles.js +36 -0
- package/components/ModeSwitcherSelect/ModeSwitcherSelect.js +87 -0
- package/components/ModeSwitcherSelect/index.js +5 -0
- package/components/ModeSwitcherSelect/styles.js +70 -0
- package/components/MultipleInput/MultipleInput.js +113 -0
- package/components/MultipleInput/styles.js +22 -0
- package/components/MultipliableSelect/MultipliableSelect.js +59 -0
- package/components/MultipliableSelect/styles.js +14 -0
- package/components/Popper/Popper.js +94 -0
- package/components/Popper/styles.js +17 -0
- package/components/Popper/utils.js +45 -0
- package/components/PopupWithArrow/PopupWithArrow.js +34 -0
- package/components/PopupWithArrow/styles.js +75 -0
- package/components/PotentialMatchReviewCard/PotentialMatchReviewCard.js +65 -0
- package/components/PotentialMatchReviewCard/styles.js +65 -0
- package/components/ProfileBand/ProfileBand.js +96 -0
- package/components/ProfileBand/styles.js +92 -0
- package/components/ProfileCard/ProfileCard.js +89 -0
- package/components/ProfileCard/styles.js +64 -0
- package/components/QueryBuilderRow/QueryBuilderRow.js +78 -0
- package/components/QueryBuilderRow/components/ReadOnlyFilter.js +21 -0
- package/components/QueryBuilderRow/components/ReadOnlyLogicOperator.js +21 -0
- package/components/QueryBuilderRow/components/styles.js +25 -0
- package/components/QueryBuilderRow/styles.js +22 -0
- package/components/QueryBuilderRowsGroup/QueryBuilderRowsGroup.js +88 -0
- package/components/ReactSelect/AsyncSelect.js +8 -0
- package/components/ReactSelect/CreatableSelect.js +8 -0
- package/components/ReactSelect/MultiSelect/MultiSelect.js +233 -0
- package/components/ReactSelect/MultiSelect/components/Option.js +57 -0
- package/components/ReactSelect/MultiSelect/components/index.js +10 -0
- package/components/ReactSelect/MultiSelect/index.js +7 -0
- package/components/ReactSelect/Select.js +8 -0
- package/components/ReactSelect/commonComponents/ClearIndicator.js +36 -0
- package/components/ReactSelect/commonComponents/Control.js +66 -0
- package/components/ReactSelect/commonComponents/DropdownIndicator.js +36 -0
- package/components/ReactSelect/commonComponents/GroupHeading.js +22 -0
- package/components/ReactSelect/commonComponents/Menu.js +37 -0
- package/components/ReactSelect/commonComponents/MultiValue.js +37 -0
- package/components/ReactSelect/commonComponents/NoOptionsMessage.js +17 -0
- package/components/ReactSelect/commonComponents/Option.js +56 -0
- package/components/ReactSelect/commonComponents/Placeholder.js +29 -0
- package/components/ReactSelect/commonComponents/SingleValue.js +29 -0
- package/components/ReactSelect/commonComponents/ValueContainer.js +19 -0
- package/components/ReactSelect/commonComponents/index.js +30 -0
- package/components/ReactSelect/optionFilters.js +9 -0
- package/components/ReactSelect/styles.js +69 -0
- package/components/ReactSelect/withMuiSkin.js +97 -0
- package/components/ReactSortableTree/index.js +30 -0
- package/components/ReactSortableTree/node-renderer-default.js +148 -0
- package/components/ReactSortableTree/nodeRendererDefaultStyle.js +278 -0
- package/components/ReactSortableTree/placeholder-renderer-default.js +23 -0
- package/components/ReactSortableTree/placeholderRendererDefaultStyle.js +46 -0
- package/components/ReactSortableTree/react-sortable-tree.js +809 -0
- package/components/ReactSortableTree/reactSortableTreeStyles.js +23 -0
- package/components/ReactSortableTree/tree-node.js +200 -0
- package/components/ReactSortableTree/tree-placeholder.js +92 -0
- package/components/ReactSortableTree/treeNodeStyle.js +236 -0
- package/components/ReactSortableTree/utils/classnames.js +28 -0
- package/components/ReactSortableTree/utils/default-handlers.js +45 -0
- package/components/ReactSortableTree/utils/dnd-manager.js +326 -0
- package/components/ReactSortableTree/utils/generic-utils.js +15 -0
- package/components/ReactSortableTree/utils/memoized-tree-data-utils.js +26 -0
- package/components/ReactSortableTree/utils/tree-data-utils.js +960 -0
- package/components/ReltioGridLayout/ReltioGridLayout.js +79 -0
- package/components/ReltioGridLayout/helpers.js +52 -0
- package/components/ReltioGridLayout/icons/ResizeIcon.svg.js +4 -0
- package/components/ReltioGridLayout/styles.js +71 -0
- package/components/RequiredMark/RequiredMark.js +12 -0
- package/components/RequiredMark/styles.js +9 -0
- package/components/ResizablePanes/ResizablePanes.js +75 -0
- package/components/ResizablePanes/styles.js +48 -0
- package/components/Score/DQLabel.js +14 -0
- package/components/Score/Score.js +26 -0
- package/components/Score/ScoreLabel.js +29 -0
- package/components/Score/styles.js +36 -0
- package/components/ScrollableTabs/ScrollableTabs.js +51 -0
- package/components/ScrollableTabs/styles.js +32 -0
- package/components/SearchInput/SearchInput.js +68 -0
- package/components/SearchInput/WhiteSearchInput.js +36 -0
- package/components/SearchInput/styles.js +32 -0
- package/components/SelectionPopup/SelectionPopup.js +70 -0
- package/components/SelectionPopup/SelectionPopupPopper/SelectionPopupPopper.js +60 -0
- package/components/SelectionPopup/helpers.js +70 -0
- package/components/SelectionPopup/styles.js +41 -0
- package/components/SelectorWithOnlyOptionAutoSelect/SelectorWithOnlyOptionAutoSelect.js +74 -0
- package/components/SelectorWithOnlyOptionAutoSelect/styles.js +31 -0
- package/components/SideIconPanel/SideButtonsPanel.js +42 -0
- package/components/SideIconPanel/styles.js +41 -0
- package/components/SidePanel/SidePanel.js +16 -0
- package/components/SidePanel/SidePanelContentHeader/SidePanelContentHeader.js +24 -0
- package/components/SidePanel/SidePanelContentHeader/styles.js +23 -0
- package/components/SidePanel/styles.js +16 -0
- package/components/SimpleDropDownSelector/DropDownPlaceholder.js +31 -0
- package/components/SimpleDropDownSelector/DropDownValue.js +23 -0
- package/components/SimpleDropDownSelector/SimpleDropDownSelector.js +59 -0
- package/components/SimpleDropDownSelector/styles.js +13 -0
- package/components/SimpleInput/SimpleInput.js +77 -0
- package/components/SmallIconButton/SmallIconButton.js +109 -0
- package/components/SmallIconButton/index.js +11 -0
- package/components/SourceIcon/SourceIcon.js +18 -0
- package/components/Spacer/Spacer.js +8 -0
- package/components/Title/Title.js +27 -0
- package/components/Title/styles.js +11 -0
- package/components/UploadFileButton/UploadFileButton.js +122 -0
- package/components/UploadFileButton/styles.js +20 -0
- package/components/UploadImageDialog/DividerWithText/DividerWithText.js +20 -0
- package/components/UploadImageDialog/DividerWithText/styles.js +24 -0
- package/components/UploadImageDialog/ErrorSnackbar/ErrorSnackbar.js +18 -0
- package/components/UploadImageDialog/ErrorSnackbar/styles.js +9 -0
- package/components/UploadImageDialog/ImageByUrlField/ImageByUrlField.js +63 -0
- package/components/UploadImageDialog/ImageByUrlField/styles.js +32 -0
- package/components/UploadImageDialog/SelectImageButton/SelectImageButton.js +23 -0
- package/components/UploadImageDialog/TargetBox/TargetBox.js +45 -0
- package/components/UploadImageDialog/TargetBox/styles.js +30 -0
- package/components/UploadImageDialog/UploadImageDialog.js +87 -0
- package/components/UploadImageDialog/constants/index.js +5 -0
- package/components/UploadImageDialog/styles.js +32 -0
- package/components/ValueChip/ValueChip.js +48 -0
- package/components/ValueChip/styles.js +37 -0
- package/components/VerticalDivider/VerticalDivider.js +22 -0
- package/components/VerticalHeadingsTable/VerticalHeadingsTable.js +72 -0
- package/components/ViewMoreToggle/ViewMoreToggle.js +26 -0
- package/components/ViewMoreToggle/styles.js +20 -0
- package/components/VirtualGroupedList/VirtualGroupedList.js +223 -0
- package/components/VirtualGroupedList/helpers.js +43 -0
- package/components/VirtualGroupedList/styles.js +17 -0
- package/components/activityLog/ActivityExportButton/ActivityExportButton.js +80 -0
- package/components/activityLog/ActivityExportButton/styles.js +15 -0
- package/components/activityLog/ActivityFilterEditor/ActivityDateRangeEditor.js +85 -0
- package/components/activityLog/ActivityFilterEditor/ActivityFilterEditor.js +89 -0
- package/components/activityLog/ActivityFilterEditor/ActivitySelector.js +30 -0
- package/components/activityLog/ActivityFilterEditor/AttributeSelector.js +103 -0
- package/components/activityLog/ActivityFilterEditor/DateRangeSelector.js +114 -0
- package/components/activityLog/ActivityFilterEditor/IntervalSelector.js +51 -0
- package/components/activityLog/ActivityFilterEditor/SourceSelector.js +30 -0
- package/components/activityLog/ActivityFilterEditor/UserSelector.js +62 -0
- package/components/activityLog/ActivityFilterEditor/styles.js +103 -0
- package/components/activityLog/ActivityFilterEditor/utils/getSelectorActivityTypes.js +35 -0
- package/components/activityLog/ActivityLog/ActivityLog.js +67 -0
- package/components/activityLog/ActivityLog/helpers.js +33 -0
- package/components/activityLog/ActivityLog/items/ActivityItem/ActivityItem.js +30 -0
- package/components/activityLog/ActivityLog/items/ActivityItem/styles.js +56 -0
- package/components/activityLog/ActivityLog/items/GroupItem/GroupItem.js +22 -0
- package/components/activityLog/ActivityLog/items/GroupItem/styles.js +27 -0
- package/components/activityLog/ActivityLog/styles.js +39 -0
- package/components/activityLog/ActivityLogFilter/ActivityLogFilter.js +63 -0
- package/components/activityLog/ActivityLogFilter/ActivityLogFilterHeader.js +26 -0
- package/components/activityLog/ActivityLogFilter/helpers.js +42 -0
- package/components/activityLog/ActivityLogFilter/styles.js +21 -0
- package/components/activityLog/activities/ActivitiesFactory.js +121 -0
- package/components/activityLog/activities/ActivityTitle/ActivityTitle.js +16 -0
- package/components/activityLog/activities/ActivityTitle/styles.js +20 -0
- package/components/activityLog/activities/CommentActivity.js +12 -0
- package/components/activityLog/activities/EntityObject/EntityObject.js +19 -0
- package/components/activityLog/activities/EntityObject/styles.js +17 -0
- package/components/activityLog/activities/GroupActivity.js +21 -0
- package/components/activityLog/activities/MergeActivity.js +19 -0
- package/components/activityLog/activities/MoreItemsLink/MoreItemsLink.js +40 -0
- package/components/activityLog/activities/PotentialMatchActivity.js +16 -0
- package/components/activityLog/activities/ProfileActivity.js +19 -0
- package/components/activityLog/activities/RelationActivity.js +19 -0
- package/components/activityLog/activities/RelationObject/RelationObject.js +20 -0
- package/components/activityLog/activities/RelationObject/styles.js +20 -0
- package/components/activityLog/activities/SearchActivity.js +47 -0
- package/components/activityLog/activities/SimpleActivity.js +22 -0
- package/components/activityLog/activities/fields/DeltaField.js +39 -0
- package/components/activityLog/activities/fields/PotentialMatchField.js +51 -0
- package/components/activityLog/activities/fields/commonStyles.js +22 -0
- package/components/activityLog/activities/fields/styles.js +42 -0
- package/components/activityLog/activities/records/CollapsibleActivityRecords.js +21 -0
- package/components/activityLog/activities/records/EntityRecord.js +25 -0
- package/components/activityLog/activities/records/PotentialMatchRecord.js +19 -0
- package/components/activityLog/activities/records/RecordUpdates.js +23 -0
- package/components/activityLog/activities/records/RelationRecord.js +23 -0
- package/components/activityLog/activities/records/styles.js +38 -0
- package/components/activityLog/activities/styles.js +17 -0
- package/components/activityLog/contexts/CollapsibleItemsContext/index.js +51 -0
- package/components/activityLog/hooks/useActivitiesLoader.js +62 -0
- package/components/activityLog/hooks/useProfileActivitiesLoader.js +62 -0
- package/components/activityLog/hooks/useReadableSearchState.js +48 -0
- package/components/activityLog/index.js +25 -0
- package/components/activityLog/types/ActivitiesFilter.js +2 -0
- package/components/activityLog/types/ActivityData.js +2 -0
- package/components/activityLog/types/ActivityDelta.js +2 -0
- package/components/activityLog/types/ActivityItem.js +2 -0
- package/components/activityLog/types/ActivityTypes.js +33 -0
- package/components/activityLog/types/AttributeOption.js +2 -0
- package/components/activityLog/types/DateRangeTypes.js +9 -0
- package/components/activityLog/types/DeltaTypes.js +9 -0
- package/components/activityLog/types/DeltaValue.js +2 -0
- package/components/activityLog/types/index.js +9 -0
- package/components/activityLog/utils/activities.js +89 -0
- package/components/activityLog/utils/filters.js +80 -0
- package/components/attributes/AttributesView/AttributesView.js +36 -0
- package/components/attributes/AttributesView/index.js +15 -0
- package/components/attributes/BranchDecorator/BranchDecorator.js +16 -0
- package/components/attributes/BranchDecorator/styles.js +39 -0
- package/components/attributes/ImageAttributesLine/ImageAttributesLine.js +123 -0
- package/components/attributes/ImageAttributesLine/constants.js +9 -0
- package/components/attributes/ImageAttributesLine/index.js +8 -0
- package/components/attributes/ImageAttributesLine/styles.js +49 -0
- package/components/attributes/OvIcon/OvIcon.js +33 -0
- package/components/attributes/OvIcon/index.js +8 -0
- package/components/attributes/OvIcon/styles.js +17 -0
- package/components/attributes/PivotingAttributes/PivotingTooltip.js +62 -0
- package/components/attributes/PivotingAttributes/PivotingTooltipContent.js +82 -0
- package/components/attributes/PivotingAttributes/helpers.js +118 -0
- package/components/attributes/PivotingAttributes/styles.js +95 -0
- package/components/attributes/editMode/AttributesFactory/Attribute.js +11 -0
- package/components/attributes/editMode/AttributesFactory/AttributesFactory.js +50 -0
- package/components/attributes/editMode/AttributesList/AttributesList.js +89 -0
- package/components/attributes/editMode/AttributesList/helpers.js +43 -0
- package/components/attributes/editMode/AttributesList/index.js +8 -0
- package/components/attributes/editMode/AttributesPager/AttributeRenderer.js +99 -0
- package/components/attributes/editMode/AttributesPager/AttributesPager.js +88 -0
- package/components/attributes/editMode/AttributesPager/CardinalityMessage.js +72 -0
- package/components/attributes/editMode/AttributesPager/SpecialRenderer.js +86 -0
- package/components/attributes/editMode/AttributesPager/index.js +54 -0
- package/components/attributes/editMode/AttributesPager/styles.js +33 -0
- package/components/attributes/editMode/AttributesPager/utils.js +7 -0
- package/components/attributes/editMode/AttributesView/AttributesView.js +67 -0
- package/components/attributes/editMode/AttributesView/index.js +14 -0
- package/components/attributes/editMode/AttributesView/styles.js +15 -0
- package/components/attributes/editMode/ComplexAttribute/ComplexAttribute.js +91 -0
- package/components/attributes/editMode/ComplexAttribute/styles.js +31 -0
- package/components/attributes/editMode/EntityCreator/EntityCreator.js +49 -0
- package/components/attributes/editMode/EntityCreator/index.js +38 -0
- package/components/attributes/editMode/EntitySelector/EntitySelector.js +146 -0
- package/components/attributes/editMode/EntitySelector/components/ClearIndicator.js +20 -0
- package/components/attributes/editMode/EntitySelector/components/EntityOption.js +58 -0
- package/components/attributes/editMode/EntitySelector/components/EntityTypeOption.js +45 -0
- package/components/attributes/editMode/EntitySelector/components/Group.js +40 -0
- package/components/attributes/editMode/EntitySelector/components/SingleValue.js +80 -0
- package/components/attributes/editMode/EntitySelector/components/styles.js +89 -0
- package/components/attributes/editMode/EntitySelector/styles.js +9 -0
- package/components/attributes/editMode/ImageAttributesLine/ImageAttributesLine.js +107 -0
- package/components/attributes/editMode/ImageAttributesLine/index.js +7 -0
- package/components/attributes/editMode/ImageAttributesLine/styles.js +43 -0
- package/components/attributes/editMode/MoreAttributesButton/MoreAttributesButton.js +111 -0
- package/components/attributes/editMode/MoreAttributesButton/index.js +8 -0
- package/components/attributes/editMode/MoreAttributesButton/styles.js +31 -0
- package/components/attributes/editMode/NestedAttribute/NestedAttribute.js +45 -0
- package/components/attributes/editMode/ReferenceAttribute/ReferenceAttribute.js +152 -0
- package/components/attributes/editMode/ReferenceAttribute/index.js +44 -0
- package/components/attributes/editMode/ReferenceAttribute/styles.js +12 -0
- package/components/attributes/editMode/RelationTypeSelector/RelationTypeSelector.js +72 -0
- package/components/attributes/editMode/RelationTypeSelector/components/RelationOption.js +57 -0
- package/components/attributes/editMode/RelationTypeSelector/components/styles.js +55 -0
- package/components/attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor.js +125 -0
- package/components/attributes/editMode/SimpleAttributeEditor/selectors/getDependentLookupEditorContext.js +36 -0
- package/components/attributes/editMode/SimpleAttributeEditor/selectors/helpers/cache.js +19 -0
- package/components/attributes/editMode/SimpleAttributeEditor/selectors/helpers/missedParentsMessage.js +20 -0
- package/components/attributes/editMode/SimpleAttributeEditor/selectors/helpers/parents.js +59 -0
- package/components/attributes/editMode/SimpleAttributeEditor/selectors/types.js +2 -0
- package/components/attributes/editMode/SimpleAttributeEditor/styles.js +33 -0
- package/components/attributes/editMode/SimpleAttributeEditor/utils.js +65 -0
- package/components/attributes/helpers/attributesView.js +22 -0
- package/components/attributes/helpers/imageAttributes.js +37 -0
- package/components/attributes/inline/AttributesList/AttributesList.js +42 -0
- package/components/attributes/inline/AttributesList/styles.js +13 -0
- package/components/attributes/inline/AttributesPager/AttributesPager.js +96 -0
- package/components/attributes/inline/AttributesPager/styles.js +14 -0
- package/components/attributes/inline/ComplexAttribute/ComplexAttribute.js +72 -0
- package/components/attributes/inline/ComplexAttribute/styles.js +24 -0
- package/components/attributes/inline/ImageAttribute/ImageAttribute.js +39 -0
- package/components/attributes/inline/ImageAttribute/styles.js +17 -0
- package/components/attributes/inline/ImageAttributesBlock/ImageAttributesBlock.js +34 -0
- package/components/attributes/inline/NestedAttribute/NestedAttribute.js +37 -0
- package/components/attributes/inline/NestedAttributesBlock/NestedAttributesBlock.js +43 -0
- package/components/attributes/inline/ReferenceAttribute/ReferenceAttribute.js +48 -0
- package/components/attributes/inline/ReferenceAttribute/styles.js +14 -0
- package/components/attributes/inline/ReferenceAttributesBlock/ReferenceAttributesBlock.js +34 -0
- package/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/CrosswalkMenuItem.js +50 -0
- package/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/styles.js +23 -0
- package/components/attributes/inline/SimpleAttribute/SimpleAttribute.js +99 -0
- package/components/attributes/inline/SimpleAttribute/index.js +8 -0
- package/components/attributes/inline/SimpleAttribute/styles.js +32 -0
- package/components/attributes/inline/SimpleAttributeEditor/SimpleAttributeEditor.js +88 -0
- package/components/attributes/inline/SimpleAttributeEditor/styles.js +24 -0
- package/components/attributes/inline/SimpleAttributesBlock/SimpleAttributesBlock.js +61 -0
- package/components/attributes/inline/SimpleAttributesBlock/styles.js +24 -0
- package/components/attributes/inline/common/ComplexAttributeLabel.js +15 -0
- package/components/attributes/inline/common/CrosswalkIcon.js +20 -0
- package/components/attributes/inline/common/DeleteButton.js +13 -0
- package/components/attributes/inline/common/IgnoreButton.js +14 -0
- package/components/attributes/inline/common/PinButton.js +14 -0
- package/components/attributes/inline/common/SourceItem.js +27 -0
- package/components/attributes/inline/common/__test__/CrosswalkIcon.spec.js +75 -0
- package/components/attributes/inline/common/__test__/IgnoreButton.spec.js +28 -0
- package/components/attributes/inline/common/__test__/PinButton.spec.js +28 -0
- package/components/attributes/inline/common/__test__/SourceItem.spec.js +70 -0
- package/components/attributes/inline/common/styles.js +61 -0
- package/components/attributes/inline/hooks/useAttributeState.js +43 -0
- package/components/attributes/inline/index.js +25 -0
- package/components/attributes/inline/types/AddAttributeEvent.js +2 -0
- package/components/attributes/inline/types/CrosswalksMap.js +2 -0
- package/components/attributes/inline/types/DeleteAttributeEvent.js +2 -0
- package/components/attributes/inline/types/EditAttributeEvent.js +2 -0
- package/components/attributes/inline/types/IgnoreAttributeEvent.js +2 -0
- package/components/attributes/inline/types/PinAttributeEvent.js +2 -0
- package/components/attributes/inline/types/index.js +2 -0
- package/components/attributes/pagersCommon/ShowLess.js +18 -0
- package/components/attributes/pagersCommon/ShowMore.js +20 -0
- package/components/attributes/pagersCommon/styles.js +13 -0
- package/components/attributes/readMode/AttributeValuesBlock/AttributeValuesBlock.js +73 -0
- package/components/attributes/readMode/AttributesFactory/Attribute.js +11 -0
- package/components/attributes/readMode/AttributesFactory/AttributesFactory.js +38 -0
- package/components/attributes/readMode/AttributesList/AttributesList.js +71 -0
- package/components/attributes/readMode/AttributesList/index.js +8 -0
- package/components/attributes/readMode/AttributesPager/AttributesPager.js +76 -0
- package/components/attributes/readMode/AttributesPager/MultiLineRenderer.js +67 -0
- package/components/attributes/readMode/AttributesPager/OneLineRenderer.js +28 -0
- package/components/attributes/readMode/AttributesPager/SpecialRenderer.js +41 -0
- package/components/attributes/readMode/AttributesPager/index.js +15 -0
- package/components/attributes/readMode/AttributesPager/styles.js +92 -0
- package/components/attributes/readMode/AttributesView/AttributesView.js +60 -0
- package/components/attributes/readMode/AttributesView/index.js +14 -0
- package/components/attributes/readMode/AttributesView/styles.js +19 -0
- package/components/attributes/readMode/ComplexAttribute/ComplexAttribute.js +65 -0
- package/components/attributes/readMode/ComplexAttribute/styles.js +23 -0
- package/components/attributes/readMode/ImageAttributesLine/ImageAttributesLine.js +55 -0
- package/components/attributes/readMode/ImageAttributesLine/cross.inline.svg.js +4 -0
- package/components/attributes/readMode/ImageAttributesLine/index.js +8 -0
- package/components/attributes/readMode/ImageAttributesLine/styles.js +90 -0
- package/components/attributes/readMode/NestedAttribute/NestedAttribute.js +72 -0
- package/components/attributes/readMode/NestedAttribute/index.js +8 -0
- package/components/attributes/readMode/NestedAttribute/styles.js +28 -0
- package/components/attributes/readMode/ReferenceAttribute/ReferenceAttribute.js +81 -0
- package/components/attributes/readMode/ReferenceAttribute/index.js +17 -0
- package/components/attributes/readMode/ReferenceAttribute/styles.js +30 -0
- package/components/attributes/readMode/SimpleAttribute/SimpleAttribute.js +52 -0
- package/components/attributes/readMode/SimpleAttribute/index.js +8 -0
- package/components/attributes/readMode/SimpleAttribute/styles.js +37 -0
- package/components/attributes/readMode/SpecialAttributes/Roles/Role.js +41 -0
- package/components/attributes/readMode/SpecialAttributes/Roles/Roles.js +13 -0
- package/components/attributes/readMode/SpecialAttributes/Roles/index.js +8 -0
- package/components/attributes/readMode/SpecialAttributes/SpecialAttributesArray.js +29 -0
- package/components/attributes/readMode/SpecialAttributes/Tags/Tag.js +43 -0
- package/components/attributes/readMode/SpecialAttributes/Tags/Tags.js +13 -0
- package/components/attributes/readMode/SpecialAttributes/Tags/index.js +8 -0
- package/components/attributes/readMode/SpecialAttributes/styles.js +20 -0
- package/components/attributes/readMode/helpers/historyAppearance.js +65 -0
- package/components/attributes/types/attributesView.js +2 -0
- package/components/attributes/types/index.js +13 -0
- package/components/charts/ActiveShape/ActiveShape.js +52 -0
- package/components/charts/BarChart/BarChart.js +37 -0
- package/components/charts/BarChart/getBarChartSettings.js +52 -0
- package/components/charts/BubbleChart/BubbleChart.js +84 -0
- package/components/charts/BubbleChart/helpers.js +28 -0
- package/components/charts/BubbleChart/styles.js +10 -0
- package/components/charts/BubbleChart/useBubbles.js +18 -0
- package/components/charts/ChartsFactory.js +57 -0
- package/components/charts/CloudChart/CloudChart.js +72 -0
- package/components/charts/CloudChart/styles.js +34 -0
- package/components/charts/CloudChart/useCloud.js +36 -0
- package/components/charts/CustomLegend/CustomLegend.js +17 -0
- package/components/charts/CustomLegend/getLegendProps.js +23 -0
- package/components/charts/CustomLegend/styles.js +41 -0
- package/components/charts/CustomTooltip/CustomTooltip.js +29 -0
- package/components/charts/CustomTooltip/styles.js +31 -0
- package/components/charts/HOCs/withPercents.js +60 -0
- package/components/charts/LineChart/LineChart.js +48 -0
- package/components/charts/LineChart/getLineChartSettings.js +60 -0
- package/components/charts/MapChart/Legend/Legend.js +22 -0
- package/components/charts/MapChart/Legend/styles.js +49 -0
- package/components/charts/MapChart/MapChart.js +115 -0
- package/components/charts/MapChart/styles.js +16 -0
- package/components/charts/MapChart/useGeography.js +23 -0
- package/components/charts/PieChart/PieChart.js +67 -0
- package/components/charts/TableWithBars/TableWithBars.js +71 -0
- package/components/charts/TableWithBars/cell-renderers/AttributeCellRenderer.js +30 -0
- package/components/charts/TableWithBars/cell-renderers/HeadCellRenderer.js +40 -0
- package/components/charts/TableWithBars/cell-renderers/NumberCellValueRenderer.js +20 -0
- package/components/charts/TableWithBars/cell-renderers/styles.js +71 -0
- package/components/charts/TableWithBars/styles.js +19 -0
- package/components/charts/TreeChart/TreeChart.js +66 -0
- package/components/charts/TreeChart/styles.js +16 -0
- package/components/charts/hooks/useClickableStyle.js +14 -0
- package/components/charts/hooks/useTooltipState.js +30 -0
- package/components/charts/index.js +18 -0
- package/components/charts/types/BarChartOptions.js +2 -0
- package/components/charts/types/ChartData.js +2 -0
- package/components/charts/types/ChartProps.js +2 -0
- package/components/charts/types/LineChartOptions.js +2 -0
- package/components/charts/types/TableWithBarsOptions.js +2 -0
- package/components/charts/types/index.js +2 -0
- package/components/commonReactSelectComponents/DropdownIndicator.js +38 -0
- package/components/commonReactSelectComponents/DropdownIndicatorWithIconButton.js +38 -0
- package/components/commonReactSelectComponents/MenuWithPopper.js +79 -0
- package/components/commonReactSelectComponents/arrowIndicatorStyles.js +12 -0
- package/components/commonReactSelectComponents/menuStyles.js +13 -0
- package/components/editors/BooleanEditor/BooleanEditor.js +41 -0
- package/components/editors/BooleanRadioEditor/BooleanRadioEditor.js +24 -0
- package/components/editors/BooleanRadioEditor/styles.js +12 -0
- package/components/editors/DataTypeValueEditor/DataTypeValueEditor.js +54 -0
- package/components/editors/DataTypeValueEditor/useEditorContext.js +108 -0
- package/components/editors/DateEditor/DateEditor.js +94 -0
- package/components/editors/DateEditor/styles.js +31 -0
- package/components/editors/DateRangeEditor/DateRangeEditor.js +146 -0
- package/components/editors/DateRangeEditor/styles.js +39 -0
- package/components/editors/DependentLookupEditor/DependentLookupEditor.js +129 -0
- package/components/editors/DependentLookupEditor/OptionWithCheckIcon.js +33 -0
- package/components/editors/DependentLookupEditor/helpers.js +25 -0
- package/components/editors/DependentLookupEditor/styles.js +25 -0
- package/components/editors/DependentLookupEditor/useAutopopulation.js +25 -0
- package/components/editors/DependentLookupEditor/useDefaultOptions.js +25 -0
- package/components/editors/DependentLookupEditor/useLookupsResolver.js +29 -0
- package/components/editors/DropDownEditor/DropDownEditor.js +47 -0
- package/components/editors/EditorsFactory.js +97 -0
- package/components/editors/FileTypeEditor/FileTypeEditor.js +52 -0
- package/components/editors/FileTypeEditor/styles.js +9 -0
- package/components/editors/FilterEditor/FilterEditor.js +46 -0
- package/components/editors/FilterEditor/FilterValueEditor.js +84 -0
- package/components/editors/GroupedDropDownEditor/GroupedDropDownEditor.js +64 -0
- package/components/editors/GroupedDropDownEditor/entriesHelpers.js +32 -0
- package/components/editors/GroupedDropDownEditor/styles.js +14 -0
- package/components/editors/LookupEditor/LookupEditor.js +78 -0
- package/components/editors/LookupEditor/entriesHelpers.js +28 -0
- package/components/editors/NumberEditor/NumberEditor.js +70 -0
- package/components/editors/RangeDataTypeValueEditor/RangeDataTypeValueEditor.js +87 -0
- package/components/editors/RangeDataTypeValueEditor/styles.js +24 -0
- package/components/editors/SelectEditor/SelectEditor.js +44 -0
- package/components/editors/TextEditor/TextEditor.js +47 -0
- package/components/editors/TimestampEditor/TimestampEditor.js +100 -0
- package/components/editors/TimestampEditor/styles.js +25 -0
- package/components/editors/TypeaheadEditor/TypeaheadEditor.js +151 -0
- package/components/editors/TypeaheadEditor/styles.js +55 -0
- package/components/editors/commonComponents/MultiValueChip/MultiValueChip.js +39 -0
- package/components/editors/constants.js +27 -0
- package/components/editors/index.js +24 -0
- package/components/index.js +242 -0
- package/constants/attributes.js +5 -0
- package/constants/classnames.js +4 -0
- package/constants/index.js +13 -0
- package/constants/prop-types.js +82 -0
- package/contexts/AsyncMountContext/index.js +19 -0
- package/contexts/BlockImageGalleryDialogContext/index.js +9 -0
- package/contexts/CollaborationContext/index.js +21 -0
- package/contexts/CrosswalksDisplayContext/index.js +70 -0
- package/contexts/EntitiesMapContext/index.js +9 -0
- package/contexts/HistoryAppearanceContext/index.js +12 -0
- package/contexts/IdContext/index.js +9 -0
- package/contexts/PivotingAttributeContext/index.js +8 -0
- package/contexts/PopupBoundariesContext/index.js +16 -0
- package/contexts/ProfilePerspectiveViewContext/index.js +9 -0
- package/contexts/UsersContext/index.js +9 -0
- package/contexts/ViewIdContext/index.js +9 -0
- package/contexts/index.js +30 -0
- package/core/index.js +13 -0
- package/core/utils.js +54 -0
- package/hooks/index.js +29 -0
- package/hooks/useActions.js +27 -0
- package/hooks/useAsyncMount.js +27 -0
- package/hooks/useCollaboration.js +151 -0
- package/hooks/useConfigPermissions.js +20 -0
- package/hooks/useDidUpdateEffect.js +14 -0
- package/hooks/usePrevious.js +12 -0
- package/hooks/useRelationTypeSelector.js +53 -0
- package/hooks/useRelationsLoader.js +111 -0
- package/hooks/useRunOnceAfterValueInitialization.js +14 -0
- package/hooks/useSafePromise.js +34 -0
- package/hooks/useSavedState.js +18 -0
- package/hooks/useUsers.js +29 -0
- package/hooks/useWhyDidYouUpdate.js +46 -0
- package/icons/Add.js +11 -0
- package/icons/AddComment.js +11 -0
- package/icons/Calendar.js +11 -0
- package/icons/Comment.js +11 -0
- package/icons/CommentBubble.js +11 -0
- package/icons/Create.js +11 -0
- package/icons/DefaultImage.js +13 -0
- package/icons/Details.js +16 -0
- package/icons/Download.js +16 -0
- package/icons/EmptySearchResults.js +73 -0
- package/icons/Eye.js +16 -0
- package/icons/Filter.js +11 -0
- package/icons/Ignored.js +11 -0
- package/icons/IgnoredOutlined.js +11 -0
- package/icons/LogIn.js +12 -0
- package/icons/LogOut.js +12 -0
- package/icons/Merge.js +11 -0
- package/icons/MlMatch.js +51 -0
- package/icons/NestedAttribute.js +11 -0
- package/icons/NoData.js +73 -0
- package/icons/NoDataSearch.js +14 -0
- package/icons/NoMatches.js +11 -0
- package/icons/Pin.js +11 -0
- package/icons/PinOutlined.js +11 -0
- package/icons/PivotingIcon.js +11 -0
- package/icons/PmIcon.js +11 -0
- package/icons/PotentialMatch.js +11 -0
- package/icons/Profile.js +11 -0
- package/icons/Recommended.js +16 -0
- package/icons/ReferenceAttribute.js +11 -0
- package/icons/Remove.js +11 -0
- package/icons/ResizeIconInline.js +11 -0
- package/icons/Search.js +11 -0
- package/icons/SelectAttributes.js +46 -0
- package/icons/SimpleAttribute.js +11 -0
- package/icons/Table.js +11 -0
- package/icons/UnMerge.js +11 -0
- package/icons/UploadIcon.js +35 -0
- package/icons/index.js +82 -0
- package/index.js +19 -0
- package/package.json +8 -5
- package/types/index.js +2 -0
- package/bundle.js +0 -2
- package/bundle.js.LICENSE.txt +0 -25
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
14
|
+
};
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ErrorBoundary = exports.EntityUriLink = exports.EntityTypesSelector = exports.EntityTypeIcon = exports.EntityTypeBadge = exports.EntityAvatar = exports.EMPTY_STATE_VARIANTS = exports.EMPTY_STATE_ICONS = exports.EmptyState = exports.NoResults = exports.NoData = exports.DropDownSelector = exports.DropDownMenuButton = exports.Drawer = exports.DataTypeValue = exports.ConnectionRelationTypeSelector = exports.ConfigureColumnsPopup = exports.MenuWithPopper = exports.DropdownIndicatorWithIconButton = exports.DropdownIndicator = exports.CommentsContainer = exports.ColorBar = exports.CollapseButton = exports.CollaborationItem = exports.ClickAwayProvider = exports.BasicViewHeader = exports.BasicViewContent = exports.BasicView = exports.AvatarWithFallback = exports.AutoSizeList = exports.ReadOnlyAttributesPager = exports.SimpleAttribute = exports.ReferenceAttribute = exports.NestedAttribute = exports.ImageAttributesLine = exports.ReadOnlyAttributesList = exports.ReadOnlyAttributeValuesBlock = exports.ReadOnlyAttribute = exports.AttributesPager = exports.SimpleAttributeEditor = exports.RelationTypeSelector = exports.ReferenceAttributeEditor = exports.NestedAttributeEditor = exports.MoreAttributesButton = exports.EntitySelector = exports.EntityCreator = exports.AttributesList = exports.BranchDecorator = exports.AttributesView = exports.AttributeListItem = void 0;
|
|
17
|
+
exports.SourceIcon = exports.SmallIconButtonWithTooltip = exports.SmallIconButton = exports.SimpleDropDownSelector = exports.SidePanelContentHeader = exports.SidePanel = exports.SideButtonsPanel = exports.SelectorWithOnlyOptionAutoSelect = exports.SelectionPopupPopper = exports.SelectionPopup = exports.useKeyboardNavigation = exports.WhiteSearchInput = exports.SearchInput = exports.ScoreLabel = exports.Score = exports.ResizablePanes = exports.ReltioGridLayout = exports.ReactSortableTreeUtils = exports.ReactSortableTreeHandlers = exports.ReactSortableTree = exports.ReactSelectOptionFilters = exports.MultiSelect = exports.QueryBuilderRowsGroup = exports.QueryBuilderRow = exports.ProfileCard = exports.ProfileBand = exports.PotentialMatchReviewCard = exports.PopupWithArrow = exports.Popper = exports.MultipleInput = exports.ModeSwitcherSelect = exports.ModeSwitcher = exports.TransitiveMatchBlock = exports.SimpleMatchRulesBuilder = exports.SimpleMatchRulesBlock = exports.MatchRulesBlock = exports.LoadingSpinner = exports.Link = exports.LinearLoadIndicator = exports.ImportModes = exports.ImportButton = exports.ImageGalleryDialog = exports.Highlighter = exports.HierarchicalAttributeTooltip = exports.HideOnShrink = exports.FlipCard = exports.FacetViewHeader = exports.ExpandedValueTooltip = exports.ErrorWrapper = exports.ErrorPopup = void 0;
|
|
18
|
+
exports.ConfirmationDialog = exports.Marginator = exports.LightArrowTooltip = exports.ArrowExpandButton = exports.ScrollableTabs = exports.ExpandableSearchInput = exports.VirtualGroupedList = exports.ViewMoreToggle = exports.VerticalHeadingsTable = exports.VerticalDivider = exports.AttributeTitle = exports.Spacer = void 0;
|
|
19
|
+
__exportStar(require("./activityLog"), exports);
|
|
20
|
+
var AttributeListItem_1 = require("./AttributeListItem/AttributeListItem");
|
|
21
|
+
Object.defineProperty(exports, "AttributeListItem", { enumerable: true, get: function () { return __importDefault(AttributeListItem_1).default; } });
|
|
22
|
+
var AttributesView_1 = require("./attributes/AttributesView");
|
|
23
|
+
Object.defineProperty(exports, "AttributesView", { enumerable: true, get: function () { return __importDefault(AttributesView_1).default; } });
|
|
24
|
+
var BranchDecorator_1 = require("./attributes/BranchDecorator/BranchDecorator");
|
|
25
|
+
Object.defineProperty(exports, "BranchDecorator", { enumerable: true, get: function () { return __importDefault(BranchDecorator_1).default; } });
|
|
26
|
+
var AttributesList_1 = require("./attributes/editMode/AttributesList");
|
|
27
|
+
Object.defineProperty(exports, "AttributesList", { enumerable: true, get: function () { return __importDefault(AttributesList_1).default; } });
|
|
28
|
+
var EntityCreator_1 = require("./attributes/editMode/EntityCreator");
|
|
29
|
+
Object.defineProperty(exports, "EntityCreator", { enumerable: true, get: function () { return __importDefault(EntityCreator_1).default; } });
|
|
30
|
+
var EntitySelector_1 = require("./attributes/editMode/EntitySelector/EntitySelector");
|
|
31
|
+
Object.defineProperty(exports, "EntitySelector", { enumerable: true, get: function () { return __importDefault(EntitySelector_1).default; } });
|
|
32
|
+
var MoreAttributesButton_1 = require("./attributes/editMode/MoreAttributesButton");
|
|
33
|
+
Object.defineProperty(exports, "MoreAttributesButton", { enumerable: true, get: function () { return __importDefault(MoreAttributesButton_1).default; } });
|
|
34
|
+
var NestedAttribute_1 = require("./attributes/editMode/NestedAttribute/NestedAttribute");
|
|
35
|
+
Object.defineProperty(exports, "NestedAttributeEditor", { enumerable: true, get: function () { return __importDefault(NestedAttribute_1).default; } });
|
|
36
|
+
var ReferenceAttribute_1 = require("./attributes/editMode/ReferenceAttribute");
|
|
37
|
+
Object.defineProperty(exports, "ReferenceAttributeEditor", { enumerable: true, get: function () { return __importDefault(ReferenceAttribute_1).default; } });
|
|
38
|
+
var RelationTypeSelector_1 = require("./attributes/editMode/RelationTypeSelector/RelationTypeSelector");
|
|
39
|
+
Object.defineProperty(exports, "RelationTypeSelector", { enumerable: true, get: function () { return __importDefault(RelationTypeSelector_1).default; } });
|
|
40
|
+
var SimpleAttributeEditor_1 = require("./attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor");
|
|
41
|
+
Object.defineProperty(exports, "SimpleAttributeEditor", { enumerable: true, get: function () { return __importDefault(SimpleAttributeEditor_1).default; } });
|
|
42
|
+
var AttributesPager_1 = require("./attributes/editMode/AttributesPager");
|
|
43
|
+
Object.defineProperty(exports, "AttributesPager", { enumerable: true, get: function () { return __importDefault(AttributesPager_1).default; } });
|
|
44
|
+
var Attribute_1 = require("./attributes/readMode/AttributesFactory/Attribute");
|
|
45
|
+
Object.defineProperty(exports, "ReadOnlyAttribute", { enumerable: true, get: function () { return __importDefault(Attribute_1).default; } });
|
|
46
|
+
var AttributeValuesBlock_1 = require("./attributes/readMode/AttributeValuesBlock/AttributeValuesBlock");
|
|
47
|
+
Object.defineProperty(exports, "ReadOnlyAttributeValuesBlock", { enumerable: true, get: function () { return __importDefault(AttributeValuesBlock_1).default; } });
|
|
48
|
+
var AttributesList_2 = require("./attributes/readMode/AttributesList");
|
|
49
|
+
Object.defineProperty(exports, "ReadOnlyAttributesList", { enumerable: true, get: function () { return __importDefault(AttributesList_2).default; } });
|
|
50
|
+
var ImageAttributesLine_1 = require("./attributes/readMode/ImageAttributesLine");
|
|
51
|
+
Object.defineProperty(exports, "ImageAttributesLine", { enumerable: true, get: function () { return __importDefault(ImageAttributesLine_1).default; } });
|
|
52
|
+
var NestedAttribute_2 = require("./attributes/readMode/NestedAttribute");
|
|
53
|
+
Object.defineProperty(exports, "NestedAttribute", { enumerable: true, get: function () { return __importDefault(NestedAttribute_2).default; } });
|
|
54
|
+
var ReferenceAttribute_2 = require("./attributes/readMode/ReferenceAttribute");
|
|
55
|
+
Object.defineProperty(exports, "ReferenceAttribute", { enumerable: true, get: function () { return __importDefault(ReferenceAttribute_2).default; } });
|
|
56
|
+
var SimpleAttribute_1 = require("./attributes/readMode/SimpleAttribute");
|
|
57
|
+
Object.defineProperty(exports, "SimpleAttribute", { enumerable: true, get: function () { return __importDefault(SimpleAttribute_1).default; } });
|
|
58
|
+
var AttributesPager_2 = require("./attributes/readMode/AttributesPager");
|
|
59
|
+
Object.defineProperty(exports, "ReadOnlyAttributesPager", { enumerable: true, get: function () { return __importDefault(AttributesPager_2).default; } });
|
|
60
|
+
var AutoSizeList_1 = require("./AutoSizeList/AutoSizeList");
|
|
61
|
+
Object.defineProperty(exports, "AutoSizeList", { enumerable: true, get: function () { return __importDefault(AutoSizeList_1).default; } });
|
|
62
|
+
var AvatarWithFallback_1 = require("./AvatarWithFallback/AvatarWithFallback");
|
|
63
|
+
Object.defineProperty(exports, "AvatarWithFallback", { enumerable: true, get: function () { return __importDefault(AvatarWithFallback_1).default; } });
|
|
64
|
+
__exportStar(require("./BasicTableView"), exports);
|
|
65
|
+
var BasicView_1 = require("./BasicView/BasicView");
|
|
66
|
+
Object.defineProperty(exports, "BasicView", { enumerable: true, get: function () { return __importDefault(BasicView_1).default; } });
|
|
67
|
+
var BasicViewContent_1 = require("./BasicViewContent/BasicViewContent");
|
|
68
|
+
Object.defineProperty(exports, "BasicViewContent", { enumerable: true, get: function () { return __importDefault(BasicViewContent_1).default; } });
|
|
69
|
+
var BasicViewHeader_1 = require("./BasicViewHeader/BasicViewHeader");
|
|
70
|
+
Object.defineProperty(exports, "BasicViewHeader", { enumerable: true, get: function () { return __importDefault(BasicViewHeader_1).default; } });
|
|
71
|
+
__exportStar(require("./charts"), exports);
|
|
72
|
+
var ClickAwayProvider_1 = require("./ClickAwayProvider/ClickAwayProvider");
|
|
73
|
+
Object.defineProperty(exports, "ClickAwayProvider", { enumerable: true, get: function () { return __importDefault(ClickAwayProvider_1).default; } });
|
|
74
|
+
var CollaborationItem_1 = require("./CollaborationItem/CollaborationItem");
|
|
75
|
+
Object.defineProperty(exports, "CollaborationItem", { enumerable: true, get: function () { return CollaborationItem_1.CollaborationItem; } });
|
|
76
|
+
var CollapseButton_1 = require("./CollapseButton/CollapseButton");
|
|
77
|
+
Object.defineProperty(exports, "CollapseButton", { enumerable: true, get: function () { return __importDefault(CollapseButton_1).default; } });
|
|
78
|
+
var ColorBar_1 = require("./ColorBar/ColorBar");
|
|
79
|
+
Object.defineProperty(exports, "ColorBar", { enumerable: true, get: function () { return __importDefault(ColorBar_1).default; } });
|
|
80
|
+
var CommentsContainer_1 = require("./CommentsContainer/CommentsContainer");
|
|
81
|
+
Object.defineProperty(exports, "CommentsContainer", { enumerable: true, get: function () { return __importDefault(CommentsContainer_1).default; } });
|
|
82
|
+
var DropdownIndicator_1 = require("./commonReactSelectComponents/DropdownIndicator");
|
|
83
|
+
Object.defineProperty(exports, "DropdownIndicator", { enumerable: true, get: function () { return __importDefault(DropdownIndicator_1).default; } });
|
|
84
|
+
var DropdownIndicatorWithIconButton_1 = require("./commonReactSelectComponents/DropdownIndicatorWithIconButton");
|
|
85
|
+
Object.defineProperty(exports, "DropdownIndicatorWithIconButton", { enumerable: true, get: function () { return __importDefault(DropdownIndicatorWithIconButton_1).default; } });
|
|
86
|
+
var MenuWithPopper_1 = require("./commonReactSelectComponents/MenuWithPopper");
|
|
87
|
+
Object.defineProperty(exports, "MenuWithPopper", { enumerable: true, get: function () { return __importDefault(MenuWithPopper_1).default; } });
|
|
88
|
+
var ConfigureColumnsPopup_1 = require("./ConfigureColumnsPopup/ConfigureColumnsPopup");
|
|
89
|
+
Object.defineProperty(exports, "ConfigureColumnsPopup", { enumerable: true, get: function () { return __importDefault(ConfigureColumnsPopup_1).default; } });
|
|
90
|
+
var ConnectionRelationTypeSelector_1 = require("./ConnectionRelationTypeSelector/ConnectionRelationTypeSelector");
|
|
91
|
+
Object.defineProperty(exports, "ConnectionRelationTypeSelector", { enumerable: true, get: function () { return __importDefault(ConnectionRelationTypeSelector_1).default; } });
|
|
92
|
+
var DataTypeValue_1 = require("./DataTypeValue/DataTypeValue");
|
|
93
|
+
Object.defineProperty(exports, "DataTypeValue", { enumerable: true, get: function () { return __importDefault(DataTypeValue_1).default; } });
|
|
94
|
+
var Drawer_1 = require("./Drawer/Drawer");
|
|
95
|
+
Object.defineProperty(exports, "Drawer", { enumerable: true, get: function () { return __importDefault(Drawer_1).default; } });
|
|
96
|
+
var DropDownMenuButton_1 = require("./DropDownMenuButton/DropDownMenuButton");
|
|
97
|
+
Object.defineProperty(exports, "DropDownMenuButton", { enumerable: true, get: function () { return __importDefault(DropDownMenuButton_1).default; } });
|
|
98
|
+
var DropDownSelector_1 = require("./DropDownSelector/DropDownSelector");
|
|
99
|
+
Object.defineProperty(exports, "DropDownSelector", { enumerable: true, get: function () { return __importDefault(DropDownSelector_1).default; } });
|
|
100
|
+
__exportStar(require("./editors"), exports);
|
|
101
|
+
var EmptySearchResult_1 = require("./EmptySearchResult");
|
|
102
|
+
Object.defineProperty(exports, "NoData", { enumerable: true, get: function () { return EmptySearchResult_1.NoData; } });
|
|
103
|
+
Object.defineProperty(exports, "NoResults", { enumerable: true, get: function () { return EmptySearchResult_1.NoResults; } });
|
|
104
|
+
var EmptyState_1 = require("./EmptyState/EmptyState");
|
|
105
|
+
Object.defineProperty(exports, "EmptyState", { enumerable: true, get: function () { return __importDefault(EmptyState_1).default; } });
|
|
106
|
+
Object.defineProperty(exports, "EMPTY_STATE_ICONS", { enumerable: true, get: function () { return EmptyState_1.EMPTY_STATE_ICONS; } });
|
|
107
|
+
Object.defineProperty(exports, "EMPTY_STATE_VARIANTS", { enumerable: true, get: function () { return EmptyState_1.EMPTY_STATE_VARIANTS; } });
|
|
108
|
+
var EntityAvatar_1 = require("./EntityAvatar/EntityAvatar");
|
|
109
|
+
Object.defineProperty(exports, "EntityAvatar", { enumerable: true, get: function () { return __importDefault(EntityAvatar_1).default; } });
|
|
110
|
+
var EntityTypeBadge_1 = require("./EntityTypeBadge/EntityTypeBadge");
|
|
111
|
+
Object.defineProperty(exports, "EntityTypeBadge", { enumerable: true, get: function () { return __importDefault(EntityTypeBadge_1).default; } });
|
|
112
|
+
var EntityTypeIcon_1 = require("./EntityTypeIcon/EntityTypeIcon");
|
|
113
|
+
Object.defineProperty(exports, "EntityTypeIcon", { enumerable: true, get: function () { return __importDefault(EntityTypeIcon_1).default; } });
|
|
114
|
+
var EntityTypesSelector_1 = require("./EntityTypesSelector/EntityTypesSelector");
|
|
115
|
+
Object.defineProperty(exports, "EntityTypesSelector", { enumerable: true, get: function () { return __importDefault(EntityTypesSelector_1).default; } });
|
|
116
|
+
var EntityUriLink_1 = require("./EntityUriLink/EntityUriLink");
|
|
117
|
+
Object.defineProperty(exports, "EntityUriLink", { enumerable: true, get: function () { return __importDefault(EntityUriLink_1).default; } });
|
|
118
|
+
var ErrorBoundary_1 = require("./ErrorBoundary/ErrorBoundary");
|
|
119
|
+
Object.defineProperty(exports, "ErrorBoundary", { enumerable: true, get: function () { return __importDefault(ErrorBoundary_1).default; } });
|
|
120
|
+
var ErrorPopup_1 = require("./ErrorPopup/ErrorPopup");
|
|
121
|
+
Object.defineProperty(exports, "ErrorPopup", { enumerable: true, get: function () { return __importDefault(ErrorPopup_1).default; } });
|
|
122
|
+
var ErrorWrapper_1 = require("./ErrorWrapper/ErrorWrapper");
|
|
123
|
+
Object.defineProperty(exports, "ErrorWrapper", { enumerable: true, get: function () { return __importDefault(ErrorWrapper_1).default; } });
|
|
124
|
+
var ExpandedValueTooltip_1 = require("./ExpandedValueTooltip/ExpandedValueTooltip");
|
|
125
|
+
Object.defineProperty(exports, "ExpandedValueTooltip", { enumerable: true, get: function () { return __importDefault(ExpandedValueTooltip_1).default; } });
|
|
126
|
+
var FacetViewHeader_1 = require("./FacetViewHeader/FacetViewHeader");
|
|
127
|
+
Object.defineProperty(exports, "FacetViewHeader", { enumerable: true, get: function () { return __importDefault(FacetViewHeader_1).default; } });
|
|
128
|
+
var FlipCard_1 = require("./FlipCard/FlipCard");
|
|
129
|
+
Object.defineProperty(exports, "FlipCard", { enumerable: true, get: function () { return __importDefault(FlipCard_1).default; } });
|
|
130
|
+
var HideOnShrink_1 = require("./HideOnShrink/HideOnShrink");
|
|
131
|
+
Object.defineProperty(exports, "HideOnShrink", { enumerable: true, get: function () { return __importDefault(HideOnShrink_1).default; } });
|
|
132
|
+
var HierarchicalAttributeTooltip_1 = require("./HierarchicalAttributeTooltip/HierarchicalAttributeTooltip");
|
|
133
|
+
Object.defineProperty(exports, "HierarchicalAttributeTooltip", { enumerable: true, get: function () { return __importDefault(HierarchicalAttributeTooltip_1).default; } });
|
|
134
|
+
var Highlighter_1 = require("./Highlighter/Highlighter");
|
|
135
|
+
Object.defineProperty(exports, "Highlighter", { enumerable: true, get: function () { return __importDefault(Highlighter_1).default; } });
|
|
136
|
+
var ImageGalleryDialog_1 = require("./ImageGalleryDialog/ImageGalleryDialog");
|
|
137
|
+
Object.defineProperty(exports, "ImageGalleryDialog", { enumerable: true, get: function () { return ImageGalleryDialog_1.ImageGalleryDialog; } });
|
|
138
|
+
var ImportButton_1 = require("./ImportButton/ImportButton");
|
|
139
|
+
Object.defineProperty(exports, "ImportButton", { enumerable: true, get: function () { return __importDefault(ImportButton_1).default; } });
|
|
140
|
+
Object.defineProperty(exports, "ImportModes", { enumerable: true, get: function () { return ImportButton_1.ImportModes; } });
|
|
141
|
+
var LinearLoadIndicator_1 = require("./LinearLoadIndicator/LinearLoadIndicator");
|
|
142
|
+
Object.defineProperty(exports, "LinearLoadIndicator", { enumerable: true, get: function () { return __importDefault(LinearLoadIndicator_1).default; } });
|
|
143
|
+
var Link_1 = require("./Link/Link");
|
|
144
|
+
Object.defineProperty(exports, "Link", { enumerable: true, get: function () { return __importDefault(Link_1).default; } });
|
|
145
|
+
var LoadingSpinner_1 = require("./LoadingSpinner/LoadingSpinner");
|
|
146
|
+
Object.defineProperty(exports, "LoadingSpinner", { enumerable: true, get: function () { return __importDefault(LoadingSpinner_1).default; } });
|
|
147
|
+
var MatchRulesBlock_1 = require("./MatchRulesBlock/MatchRulesBlock");
|
|
148
|
+
Object.defineProperty(exports, "MatchRulesBlock", { enumerable: true, get: function () { return __importDefault(MatchRulesBlock_1).default; } });
|
|
149
|
+
var SimpleMatchRulesBlock_1 = require("./MatchRulesBlock/SimpleMatchRulesBlock/SimpleMatchRulesBlock");
|
|
150
|
+
Object.defineProperty(exports, "SimpleMatchRulesBlock", { enumerable: true, get: function () { return __importDefault(SimpleMatchRulesBlock_1).default; } });
|
|
151
|
+
var SimpleMatchRulesBuilder_1 = require("./MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder");
|
|
152
|
+
Object.defineProperty(exports, "SimpleMatchRulesBuilder", { enumerable: true, get: function () { return __importDefault(SimpleMatchRulesBuilder_1).default; } });
|
|
153
|
+
var TransitiveMatchBlock_1 = require("./MatchRulesBlock/TransitiveMatchBlock/TransitiveMatchBlock");
|
|
154
|
+
Object.defineProperty(exports, "TransitiveMatchBlock", { enumerable: true, get: function () { return __importDefault(TransitiveMatchBlock_1).default; } });
|
|
155
|
+
var ModeSwitcher_1 = require("./ModeSwitcher/ModeSwitcher");
|
|
156
|
+
Object.defineProperty(exports, "ModeSwitcher", { enumerable: true, get: function () { return __importDefault(ModeSwitcher_1).default; } });
|
|
157
|
+
var ModeSwitcherSelect_1 = require("./ModeSwitcherSelect");
|
|
158
|
+
Object.defineProperty(exports, "ModeSwitcherSelect", { enumerable: true, get: function () { return ModeSwitcherSelect_1.ModeSwitcherSelect; } });
|
|
159
|
+
var MultipleInput_1 = require("./MultipleInput/MultipleInput");
|
|
160
|
+
Object.defineProperty(exports, "MultipleInput", { enumerable: true, get: function () { return __importDefault(MultipleInput_1).default; } });
|
|
161
|
+
var Popper_1 = require("./Popper/Popper");
|
|
162
|
+
Object.defineProperty(exports, "Popper", { enumerable: true, get: function () { return __importDefault(Popper_1).default; } });
|
|
163
|
+
var PopupWithArrow_1 = require("./PopupWithArrow/PopupWithArrow");
|
|
164
|
+
Object.defineProperty(exports, "PopupWithArrow", { enumerable: true, get: function () { return PopupWithArrow_1.PopupWithArrow; } });
|
|
165
|
+
var PotentialMatchReviewCard_1 = require("./PotentialMatchReviewCard/PotentialMatchReviewCard");
|
|
166
|
+
Object.defineProperty(exports, "PotentialMatchReviewCard", { enumerable: true, get: function () { return __importDefault(PotentialMatchReviewCard_1).default; } });
|
|
167
|
+
var ProfileBand_1 = require("./ProfileBand/ProfileBand");
|
|
168
|
+
Object.defineProperty(exports, "ProfileBand", { enumerable: true, get: function () { return __importDefault(ProfileBand_1).default; } });
|
|
169
|
+
var ProfileCard_1 = require("./ProfileCard/ProfileCard");
|
|
170
|
+
Object.defineProperty(exports, "ProfileCard", { enumerable: true, get: function () { return __importDefault(ProfileCard_1).default; } });
|
|
171
|
+
var QueryBuilderRow_1 = require("./QueryBuilderRow/QueryBuilderRow");
|
|
172
|
+
Object.defineProperty(exports, "QueryBuilderRow", { enumerable: true, get: function () { return __importDefault(QueryBuilderRow_1).default; } });
|
|
173
|
+
var QueryBuilderRowsGroup_1 = require("./QueryBuilderRowsGroup/QueryBuilderRowsGroup");
|
|
174
|
+
Object.defineProperty(exports, "QueryBuilderRowsGroup", { enumerable: true, get: function () { return __importDefault(QueryBuilderRowsGroup_1).default; } });
|
|
175
|
+
var MultiSelect_1 = require("./ReactSelect/MultiSelect");
|
|
176
|
+
Object.defineProperty(exports, "MultiSelect", { enumerable: true, get: function () { return __importDefault(MultiSelect_1).default; } });
|
|
177
|
+
var optionFilters_1 = require("./ReactSelect/optionFilters");
|
|
178
|
+
Object.defineProperty(exports, "ReactSelectOptionFilters", { enumerable: true, get: function () { return __importDefault(optionFilters_1).default; } });
|
|
179
|
+
var ReactSortableTree_1 = require("./ReactSortableTree");
|
|
180
|
+
Object.defineProperty(exports, "ReactSortableTree", { enumerable: true, get: function () { return __importDefault(ReactSortableTree_1).default; } });
|
|
181
|
+
var default_handlers_1 = require("./ReactSortableTree/utils/default-handlers");
|
|
182
|
+
Object.defineProperty(exports, "ReactSortableTreeHandlers", { enumerable: true, get: function () { return __importDefault(default_handlers_1).default; } });
|
|
183
|
+
var tree_data_utils_1 = require("./ReactSortableTree/utils/tree-data-utils");
|
|
184
|
+
Object.defineProperty(exports, "ReactSortableTreeUtils", { enumerable: true, get: function () { return __importDefault(tree_data_utils_1).default; } });
|
|
185
|
+
var ReltioGridLayout_1 = require("./ReltioGridLayout/ReltioGridLayout");
|
|
186
|
+
Object.defineProperty(exports, "ReltioGridLayout", { enumerable: true, get: function () { return __importDefault(ReltioGridLayout_1).default; } });
|
|
187
|
+
var ResizablePanes_1 = require("./ResizablePanes/ResizablePanes");
|
|
188
|
+
Object.defineProperty(exports, "ResizablePanes", { enumerable: true, get: function () { return __importDefault(ResizablePanes_1).default; } });
|
|
189
|
+
var Score_1 = require("./Score/Score");
|
|
190
|
+
Object.defineProperty(exports, "Score", { enumerable: true, get: function () { return __importDefault(Score_1).default; } });
|
|
191
|
+
var ScoreLabel_1 = require("./Score/ScoreLabel");
|
|
192
|
+
Object.defineProperty(exports, "ScoreLabel", { enumerable: true, get: function () { return __importDefault(ScoreLabel_1).default; } });
|
|
193
|
+
var SearchInput_1 = require("./SearchInput/SearchInput");
|
|
194
|
+
Object.defineProperty(exports, "SearchInput", { enumerable: true, get: function () { return __importDefault(SearchInput_1).default; } });
|
|
195
|
+
var WhiteSearchInput_1 = require("./SearchInput/WhiteSearchInput");
|
|
196
|
+
Object.defineProperty(exports, "WhiteSearchInput", { enumerable: true, get: function () { return __importDefault(WhiteSearchInput_1).default; } });
|
|
197
|
+
var helpers_1 = require("./SelectionPopup/helpers");
|
|
198
|
+
Object.defineProperty(exports, "useKeyboardNavigation", { enumerable: true, get: function () { return helpers_1.useKeyboardNavigation; } });
|
|
199
|
+
var SelectionPopup_1 = require("./SelectionPopup/SelectionPopup");
|
|
200
|
+
Object.defineProperty(exports, "SelectionPopup", { enumerable: true, get: function () { return __importDefault(SelectionPopup_1).default; } });
|
|
201
|
+
var SelectionPopupPopper_1 = require("./SelectionPopup/SelectionPopupPopper/SelectionPopupPopper");
|
|
202
|
+
Object.defineProperty(exports, "SelectionPopupPopper", { enumerable: true, get: function () { return __importDefault(SelectionPopupPopper_1).default; } });
|
|
203
|
+
var SelectorWithOnlyOptionAutoSelect_1 = require("./SelectorWithOnlyOptionAutoSelect/SelectorWithOnlyOptionAutoSelect");
|
|
204
|
+
Object.defineProperty(exports, "SelectorWithOnlyOptionAutoSelect", { enumerable: true, get: function () { return __importDefault(SelectorWithOnlyOptionAutoSelect_1).default; } });
|
|
205
|
+
var SideButtonsPanel_1 = require("./SideIconPanel/SideButtonsPanel");
|
|
206
|
+
Object.defineProperty(exports, "SideButtonsPanel", { enumerable: true, get: function () { return SideButtonsPanel_1.SideButtonsPanel; } });
|
|
207
|
+
var SidePanel_1 = require("./SidePanel/SidePanel");
|
|
208
|
+
Object.defineProperty(exports, "SidePanel", { enumerable: true, get: function () { return SidePanel_1.SidePanel; } });
|
|
209
|
+
var SidePanelContentHeader_1 = require("./SidePanel/SidePanelContentHeader/SidePanelContentHeader");
|
|
210
|
+
Object.defineProperty(exports, "SidePanelContentHeader", { enumerable: true, get: function () { return SidePanelContentHeader_1.SidePanelContentHeader; } });
|
|
211
|
+
var SimpleDropDownSelector_1 = require("./SimpleDropDownSelector/SimpleDropDownSelector");
|
|
212
|
+
Object.defineProperty(exports, "SimpleDropDownSelector", { enumerable: true, get: function () { return __importDefault(SimpleDropDownSelector_1).default; } });
|
|
213
|
+
var SmallIconButton_1 = require("./SmallIconButton");
|
|
214
|
+
Object.defineProperty(exports, "SmallIconButton", { enumerable: true, get: function () { return SmallIconButton_1.SmallIconButton; } });
|
|
215
|
+
Object.defineProperty(exports, "SmallIconButtonWithTooltip", { enumerable: true, get: function () { return SmallIconButton_1.SmallIconButtonWithTooltip; } });
|
|
216
|
+
var SourceIcon_1 = require("./SourceIcon/SourceIcon");
|
|
217
|
+
Object.defineProperty(exports, "SourceIcon", { enumerable: true, get: function () { return __importDefault(SourceIcon_1).default; } });
|
|
218
|
+
var Spacer_1 = require("./Spacer/Spacer");
|
|
219
|
+
Object.defineProperty(exports, "Spacer", { enumerable: true, get: function () { return __importDefault(Spacer_1).default; } });
|
|
220
|
+
var Title_1 = require("./Title/Title");
|
|
221
|
+
Object.defineProperty(exports, "AttributeTitle", { enumerable: true, get: function () { return __importDefault(Title_1).default; } });
|
|
222
|
+
var VerticalDivider_1 = require("./VerticalDivider/VerticalDivider");
|
|
223
|
+
Object.defineProperty(exports, "VerticalDivider", { enumerable: true, get: function () { return __importDefault(VerticalDivider_1).default; } });
|
|
224
|
+
var VerticalHeadingsTable_1 = require("./VerticalHeadingsTable/VerticalHeadingsTable");
|
|
225
|
+
Object.defineProperty(exports, "VerticalHeadingsTable", { enumerable: true, get: function () { return __importDefault(VerticalHeadingsTable_1).default; } });
|
|
226
|
+
var ViewMoreToggle_1 = require("./ViewMoreToggle/ViewMoreToggle");
|
|
227
|
+
Object.defineProperty(exports, "ViewMoreToggle", { enumerable: true, get: function () { return __importDefault(ViewMoreToggle_1).default; } });
|
|
228
|
+
var VirtualGroupedList_1 = require("./VirtualGroupedList/VirtualGroupedList");
|
|
229
|
+
Object.defineProperty(exports, "VirtualGroupedList", { enumerable: true, get: function () { return __importDefault(VirtualGroupedList_1).default; } });
|
|
230
|
+
var ExpandableSearchInput_1 = require("./ExpandableSearchInput/ExpandableSearchInput");
|
|
231
|
+
Object.defineProperty(exports, "ExpandableSearchInput", { enumerable: true, get: function () { return ExpandableSearchInput_1.ExpandableSearchInput; } });
|
|
232
|
+
var ScrollableTabs_1 = require("./ScrollableTabs/ScrollableTabs");
|
|
233
|
+
Object.defineProperty(exports, "ScrollableTabs", { enumerable: true, get: function () { return __importDefault(ScrollableTabs_1).default; } });
|
|
234
|
+
__exportStar(require("./attributes/inline"), exports);
|
|
235
|
+
var ArrowExpandButton_1 = require("./ArrowExpandButton/ArrowExpandButton");
|
|
236
|
+
Object.defineProperty(exports, "ArrowExpandButton", { enumerable: true, get: function () { return __importDefault(ArrowExpandButton_1).default; } });
|
|
237
|
+
var LightArrowTooltip_1 = require("./LightArrowTooltip/LightArrowTooltip");
|
|
238
|
+
Object.defineProperty(exports, "LightArrowTooltip", { enumerable: true, get: function () { return __importDefault(LightArrowTooltip_1).default; } });
|
|
239
|
+
var Marginator_1 = require("./Marginator/Marginator");
|
|
240
|
+
Object.defineProperty(exports, "Marginator", { enumerable: true, get: function () { return __importDefault(Marginator_1).default; } });
|
|
241
|
+
var ConfirmationDialog_1 = require("./ConfirmationDialog/ConfirmationDialog");
|
|
242
|
+
Object.defineProperty(exports, "ConfirmationDialog", { enumerable: true, get: function () { return __importDefault(ConfirmationDialog_1).default; } });
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
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];
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ALWAYS_VISIBLE_TYPE_URIS = exports.COMMENTS_CONTAINER_VISIBILITY_AREA = exports.QueryBuilderAttributeDataType = exports.QueryBuilderAttributeType = exports.ColumnsDataType = exports.ColumnFilterType = exports.SortingType = void 0;
|
|
4
|
+
var prop_types_1 = require("./prop-types");
|
|
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; } });
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.QueryBuilderAttributeType = exports.QueryBuilderAttributeDataType = exports.GroupedColumnsDataType = exports.ColumnsDataType = exports.InputVariant = exports.ColumnFilterType = exports.SortingType = exports.ColumnDataType = exports.DropDownGroupEntryType = exports.DropDownEntryType = exports.SelectValueType = exports.NumberFormatType = void 0;
|
|
7
|
+
var prop_types_1 = __importDefault(require("prop-types"));
|
|
8
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
9
|
+
var NumberFormatType = prop_types_1.default.shape({
|
|
10
|
+
prefix: prop_types_1.default.string,
|
|
11
|
+
suffix: prop_types_1.default.string,
|
|
12
|
+
thousandSeparator: prop_types_1.default.string,
|
|
13
|
+
decimalSeparator: prop_types_1.default.string
|
|
14
|
+
});
|
|
15
|
+
exports.NumberFormatType = NumberFormatType;
|
|
16
|
+
var SelectValueType = prop_types_1.default.oneOfType([prop_types_1.default.string, prop_types_1.default.number, prop_types_1.default.object]);
|
|
17
|
+
exports.SelectValueType = SelectValueType;
|
|
18
|
+
var DropDownEntryType = prop_types_1.default.shape({
|
|
19
|
+
value: SelectValueType.isRequired,
|
|
20
|
+
label: prop_types_1.default.string
|
|
21
|
+
});
|
|
22
|
+
exports.DropDownEntryType = DropDownEntryType;
|
|
23
|
+
var DropDownGroupEntryType = prop_types_1.default.shape({
|
|
24
|
+
label: prop_types_1.default.string.isRequired,
|
|
25
|
+
values: prop_types_1.default.arrayOf(prop_types_1.default.object).isRequired
|
|
26
|
+
});
|
|
27
|
+
exports.DropDownGroupEntryType = DropDownGroupEntryType;
|
|
28
|
+
var ColumnDataType = prop_types_1.default.shape({
|
|
29
|
+
id: prop_types_1.default.string,
|
|
30
|
+
label: prop_types_1.default.string,
|
|
31
|
+
dataTypeDefinition: prop_types_1.default.object,
|
|
32
|
+
resizable: prop_types_1.default.bool,
|
|
33
|
+
sortable: prop_types_1.default.bool,
|
|
34
|
+
filterable: prop_types_1.default.bool,
|
|
35
|
+
headCellRenderer: prop_types_1.default.func,
|
|
36
|
+
rowCellValueRenderer: prop_types_1.default.func,
|
|
37
|
+
nestedPath: prop_types_1.default.arrayOf(prop_types_1.default.string)
|
|
38
|
+
});
|
|
39
|
+
exports.ColumnDataType = ColumnDataType;
|
|
40
|
+
var SortingType = prop_types_1.default.shape({
|
|
41
|
+
field: prop_types_1.default.string,
|
|
42
|
+
order: mdm_sdk_1.SortOrderType
|
|
43
|
+
});
|
|
44
|
+
exports.SortingType = SortingType;
|
|
45
|
+
var ColumnFilterType = prop_types_1.default.shape({
|
|
46
|
+
value: prop_types_1.default.oneOfType([mdm_sdk_1.FilterValueType, prop_types_1.default.arrayOf(mdm_sdk_1.FilterValueType)]),
|
|
47
|
+
filter: prop_types_1.default.string
|
|
48
|
+
});
|
|
49
|
+
exports.ColumnFilterType = ColumnFilterType;
|
|
50
|
+
var InputVariant = prop_types_1.default.oneOf(['standard', 'outlined', 'filled']);
|
|
51
|
+
exports.InputVariant = InputVariant;
|
|
52
|
+
var PlainColumnsDataType = prop_types_1.default.arrayOf(prop_types_1.default.shape({
|
|
53
|
+
id: prop_types_1.default.string,
|
|
54
|
+
label: prop_types_1.default.string,
|
|
55
|
+
dataTypeDefinition: prop_types_1.default.object
|
|
56
|
+
}));
|
|
57
|
+
var GroupedColumnsDataType = prop_types_1.default.arrayOf(prop_types_1.default.shape({
|
|
58
|
+
id: prop_types_1.default.string,
|
|
59
|
+
label: prop_types_1.default.string,
|
|
60
|
+
columns: PlainColumnsDataType
|
|
61
|
+
}));
|
|
62
|
+
exports.GroupedColumnsDataType = GroupedColumnsDataType;
|
|
63
|
+
var ColumnsDataType = prop_types_1.default.oneOfType([PlainColumnsDataType, GroupedColumnsDataType]);
|
|
64
|
+
exports.ColumnsDataType = ColumnsDataType;
|
|
65
|
+
var QueryBuilderAttributeDataType = prop_types_1.default.shape({
|
|
66
|
+
title: prop_types_1.default.string,
|
|
67
|
+
pathToTitle: prop_types_1.default.arrayOf(prop_types_1.default.string),
|
|
68
|
+
fieldName: prop_types_1.default.string,
|
|
69
|
+
entityTypeUri: prop_types_1.default.string,
|
|
70
|
+
attrType: mdm_sdk_1.AttributeTypeType,
|
|
71
|
+
uri: prop_types_1.default.string,
|
|
72
|
+
groupName: prop_types_1.default.string
|
|
73
|
+
});
|
|
74
|
+
exports.QueryBuilderAttributeDataType = QueryBuilderAttributeDataType;
|
|
75
|
+
var QueryBuilderAttributeType = prop_types_1.default.shape({
|
|
76
|
+
id: prop_types_1.default.string,
|
|
77
|
+
values: prop_types_1.default.array,
|
|
78
|
+
data: QueryBuilderAttributeDataType,
|
|
79
|
+
filter: prop_types_1.default.string,
|
|
80
|
+
operator: prop_types_1.default.string
|
|
81
|
+
});
|
|
82
|
+
exports.QueryBuilderAttributeType = QueryBuilderAttributeType;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.AsyncMountContext = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
var prop_types_1 = __importDefault(require("prop-types"));
|
|
9
|
+
exports.AsyncMountContext = react_1.default.createContext({
|
|
10
|
+
enabled: false,
|
|
11
|
+
queueSizeThreshold: 0
|
|
12
|
+
});
|
|
13
|
+
exports.AsyncMountContext.Provider.propTypes = {
|
|
14
|
+
value: prop_types_1.default.shape({
|
|
15
|
+
enabled: prop_types_1.default.bool,
|
|
16
|
+
queueSizeThreshold: prop_types_1.default.number
|
|
17
|
+
})
|
|
18
|
+
};
|
|
19
|
+
exports.AsyncMountContext.displayName = 'AsyncMountContext';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.BlockImageGalleryDialogContext = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.BlockImageGalleryDialogContext = react_1.default.createContext(false);
|
|
9
|
+
exports.BlockImageGalleryDialogContext.displayName = 'BlockImageGalleryDialogContext';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.CollaborationContext = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
var noop = function () { };
|
|
9
|
+
exports.CollaborationContext = react_1.default.createContext({
|
|
10
|
+
commentsMap: null,
|
|
11
|
+
currentComment: null,
|
|
12
|
+
getComment: noop,
|
|
13
|
+
createComment: noop,
|
|
14
|
+
createReply: noop,
|
|
15
|
+
resolveThread: noop,
|
|
16
|
+
reOpenThread: noop,
|
|
17
|
+
clearCurrentComment: noop,
|
|
18
|
+
sending: false,
|
|
19
|
+
loading: false
|
|
20
|
+
});
|
|
21
|
+
exports.CollaborationContext.displayName = 'CollaborationContext';
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
22
|
+
var t = {};
|
|
23
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
24
|
+
t[p] = s[p];
|
|
25
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
26
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
27
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
28
|
+
t[p[i]] = s[p[i]];
|
|
29
|
+
}
|
|
30
|
+
return t;
|
|
31
|
+
};
|
|
32
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33
|
+
exports.useCrosswalkHighlight = exports.useHighlightedCrosswalks = exports.useCrosswalkColor = exports.CrosswalksDisplayProvider = void 0;
|
|
34
|
+
var react_1 = __importStar(require("react"));
|
|
35
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
36
|
+
var ramda_1 = require("ramda");
|
|
37
|
+
var core_1 = require("../../core");
|
|
38
|
+
var CrosswalksDisplayContext = react_1.createContext(null);
|
|
39
|
+
var CrosswalksDisplayProvider = function (_a) {
|
|
40
|
+
var children = _a.children, props = __rest(_a, ["children"]);
|
|
41
|
+
return react_1.default.createElement(CrosswalksDisplayContext.Provider, { value: props }, children);
|
|
42
|
+
};
|
|
43
|
+
exports.CrosswalksDisplayProvider = CrosswalksDisplayProvider;
|
|
44
|
+
var useCrosswalkColor = function (crosswalk) {
|
|
45
|
+
var _a = (react_1.useContext(CrosswalksDisplayContext) || {}).getCrosswalkColor, getColor = _a === void 0 ? ramda_1.pipe(mdm_sdk_1.getCrosswalkId, mdm_sdk_1.getCrosswalkColor) : _a;
|
|
46
|
+
return crosswalk ? getColor(crosswalk) : '';
|
|
47
|
+
};
|
|
48
|
+
exports.useCrosswalkColor = useCrosswalkColor;
|
|
49
|
+
var useHighlightedCrosswalks = function () {
|
|
50
|
+
var _a = (react_1.useContext(CrosswalksDisplayContext) || {}).highlightedCrosswalks, highlightedCrosswalks = _a === void 0 ? [] : _a;
|
|
51
|
+
return highlightedCrosswalks;
|
|
52
|
+
};
|
|
53
|
+
exports.useHighlightedCrosswalks = useHighlightedCrosswalks;
|
|
54
|
+
var useCrosswalkHighlight = function (crosswalk) {
|
|
55
|
+
var _a = react_1.useContext(CrosswalksDisplayContext) || {}, _b = _a.highlightedCrosswalks, highlightedCrosswalks = _b === void 0 ? [] : _b, _c = _a.setCrosswalkHighlighted, setCrosswalkHighlighted = _c === void 0 ? core_1.noop : _c;
|
|
56
|
+
var isHighlighted = !!crosswalk && !!highlightedCrosswalks.find(ramda_1.eqBy(mdm_sdk_1.getCrosswalkId, crosswalk));
|
|
57
|
+
return {
|
|
58
|
+
isHighlighted: isHighlighted,
|
|
59
|
+
isDimmed: highlightedCrosswalks.length > 0 && !isHighlighted,
|
|
60
|
+
highlightCrosswalk: react_1.useCallback(function () { return setCrosswalkHighlighted(crosswalk, true); }, [
|
|
61
|
+
crosswalk,
|
|
62
|
+
setCrosswalkHighlighted
|
|
63
|
+
]),
|
|
64
|
+
removeHighlight: react_1.useCallback(function () { return setCrosswalkHighlighted(crosswalk, false); }, [
|
|
65
|
+
crosswalk,
|
|
66
|
+
setCrosswalkHighlighted
|
|
67
|
+
])
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
exports.useCrosswalkHighlight = useCrosswalkHighlight;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EntitiesMapContext = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.EntitiesMapContext = react_1.default.createContext({});
|
|
9
|
+
exports.EntitiesMapContext.displayName = 'EntitiesMapContext';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.HistoryDiffContext = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.HistoryDiffContext = react_1.default.createContext({
|
|
9
|
+
appearance: undefined,
|
|
10
|
+
attributes: undefined
|
|
11
|
+
});
|
|
12
|
+
exports.HistoryDiffContext.displayName = 'HistoryDiffContext';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.IdContext = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.IdContext = react_1.default.createContext('');
|
|
9
|
+
exports.IdContext.displayName = 'IdContext';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.PivotingAttributeContext = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.PivotingAttributeContext = react_1.default.createContext([]);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.PopupBoundariesContext = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
var prop_types_1 = __importDefault(require("prop-types"));
|
|
9
|
+
exports.PopupBoundariesContext = react_1.default.createContext(null);
|
|
10
|
+
exports.PopupBoundariesContext.Provider.propTypes = {
|
|
11
|
+
value: prop_types_1.default.shape({
|
|
12
|
+
element: prop_types_1.default.instanceOf(Element),
|
|
13
|
+
priority: prop_types_1.default.arrayOf(prop_types_1.default.oneOf(['left', 'right', 'top', 'bottom']))
|
|
14
|
+
})
|
|
15
|
+
};
|
|
16
|
+
exports.PopupBoundariesContext.displayName = 'PopupBoundariesContext';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProfilePerspectiveViewContext = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.ProfilePerspectiveViewContext = react_1.default.createContext(false);
|
|
9
|
+
exports.ProfilePerspectiveViewContext.displayName = 'ProfilePerspectiveViewContext';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.UsersContext = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.UsersContext = react_1.default.createContext([]);
|
|
9
|
+
exports.UsersContext.displayName = 'UsersContext';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ViewIdContext = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.ViewIdContext = react_1.default.createContext(null);
|
|
9
|
+
exports.ViewIdContext.displayName = 'ViewIdContext';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useHighlightedCrosswalks = exports.useCrosswalkHighlight = exports.useCrosswalkColor = exports.CrosswalksDisplayProvider = exports.EntitiesMapContext = exports.IdContext = exports.ProfilePerspectiveViewContext = exports.PivotingAttributeContext = exports.UsersContext = exports.CollaborationContext = exports.BlockImageGalleryDialogContext = exports.ViewIdContext = exports.PopupBoundariesContext = exports.HistoryDiffContext = exports.AsyncMountContext = void 0;
|
|
4
|
+
var AsyncMountContext_1 = require("./AsyncMountContext");
|
|
5
|
+
Object.defineProperty(exports, "AsyncMountContext", { enumerable: true, get: function () { return AsyncMountContext_1.AsyncMountContext; } });
|
|
6
|
+
var HistoryAppearanceContext_1 = require("./HistoryAppearanceContext");
|
|
7
|
+
Object.defineProperty(exports, "HistoryDiffContext", { enumerable: true, get: function () { return HistoryAppearanceContext_1.HistoryDiffContext; } });
|
|
8
|
+
var PopupBoundariesContext_1 = require("./PopupBoundariesContext");
|
|
9
|
+
Object.defineProperty(exports, "PopupBoundariesContext", { enumerable: true, get: function () { return PopupBoundariesContext_1.PopupBoundariesContext; } });
|
|
10
|
+
var ViewIdContext_1 = require("./ViewIdContext");
|
|
11
|
+
Object.defineProperty(exports, "ViewIdContext", { enumerable: true, get: function () { return ViewIdContext_1.ViewIdContext; } });
|
|
12
|
+
var BlockImageGalleryDialogContext_1 = require("./BlockImageGalleryDialogContext");
|
|
13
|
+
Object.defineProperty(exports, "BlockImageGalleryDialogContext", { enumerable: true, get: function () { return BlockImageGalleryDialogContext_1.BlockImageGalleryDialogContext; } });
|
|
14
|
+
var CollaborationContext_1 = require("./CollaborationContext");
|
|
15
|
+
Object.defineProperty(exports, "CollaborationContext", { enumerable: true, get: function () { return CollaborationContext_1.CollaborationContext; } });
|
|
16
|
+
var UsersContext_1 = require("./UsersContext");
|
|
17
|
+
Object.defineProperty(exports, "UsersContext", { enumerable: true, get: function () { return UsersContext_1.UsersContext; } });
|
|
18
|
+
var PivotingAttributeContext_1 = require("./PivotingAttributeContext");
|
|
19
|
+
Object.defineProperty(exports, "PivotingAttributeContext", { enumerable: true, get: function () { return PivotingAttributeContext_1.PivotingAttributeContext; } });
|
|
20
|
+
var ProfilePerspectiveViewContext_1 = require("./ProfilePerspectiveViewContext");
|
|
21
|
+
Object.defineProperty(exports, "ProfilePerspectiveViewContext", { enumerable: true, get: function () { return ProfilePerspectiveViewContext_1.ProfilePerspectiveViewContext; } });
|
|
22
|
+
var IdContext_1 = require("./IdContext");
|
|
23
|
+
Object.defineProperty(exports, "IdContext", { enumerable: true, get: function () { return IdContext_1.IdContext; } });
|
|
24
|
+
var EntitiesMapContext_1 = require("./EntitiesMapContext");
|
|
25
|
+
Object.defineProperty(exports, "EntitiesMapContext", { enumerable: true, get: function () { return EntitiesMapContext_1.EntitiesMapContext; } });
|
|
26
|
+
var CrosswalksDisplayContext_1 = require("./CrosswalksDisplayContext");
|
|
27
|
+
Object.defineProperty(exports, "CrosswalksDisplayProvider", { enumerable: true, get: function () { return CrosswalksDisplayContext_1.CrosswalksDisplayProvider; } });
|
|
28
|
+
Object.defineProperty(exports, "useCrosswalkColor", { enumerable: true, get: function () { return CrosswalksDisplayContext_1.useCrosswalkColor; } });
|
|
29
|
+
Object.defineProperty(exports, "useCrosswalkHighlight", { enumerable: true, get: function () { return CrosswalksDisplayContext_1.useCrosswalkHighlight; } });
|
|
30
|
+
Object.defineProperty(exports, "useHighlightedCrosswalks", { enumerable: true, get: function () { return CrosswalksDisplayContext_1.useHighlightedCrosswalks; } });
|