@reltio/components 1.4.1790 → 1.4.1824-hf
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/HOCs/index.d.ts +3 -3
- package/cjs/HOCs/index.js +5 -5
- package/cjs/HOCs/withAsyncMount/withAsyncMount.d.ts +2 -1
- package/cjs/HOCs/withAsyncMount/withAsyncMount.js +1 -2
- package/cjs/HOCs/withTooltip/propTypes.d.ts +7 -0
- package/cjs/HOCs/withTooltip/propTypes.js +11 -0
- package/cjs/HOCs/withTooltip/withTooltip.d.ts +2 -8
- package/cjs/HOCs/withTooltip/withTooltip.js +24 -9
- package/cjs/components/ActionButton/ActionButton.d.ts +16 -0
- package/cjs/components/ActionButton/ActionButton.js +94 -0
- package/cjs/components/ActionButton/styles.d.ts +1 -0
- package/cjs/components/ActionButton/styles.js +48 -0
- package/cjs/components/ActionsPanel/ActionsPanel.d.ts +21 -0
- package/cjs/components/ActionsPanel/ActionsPanel.js +42 -0
- package/cjs/components/ActionsPanel/MenuItemRenderer.d.ts +8 -0
- package/cjs/components/ActionsPanel/MenuItemRenderer.js +45 -0
- package/cjs/components/ArrowExpandButton/ArrowExpandButton.d.ts +8 -0
- package/cjs/components/ArrowExpandButton/ArrowExpandButton.js +39 -0
- package/cjs/components/AttributeGroupIcon/AttributeGroupIcon.d.ts +11 -0
- package/cjs/components/AttributeGroupIcon/AttributeGroupIcon.js +19 -0
- package/cjs/components/AttributeListItem/AttrTypeIcon.d.ts +7 -0
- package/cjs/components/AttributeListItem/AttrTypeIcon.js +29 -0
- package/cjs/components/AttributeListItem/AttributeListItem.d.ts +40 -0
- package/cjs/components/AttributeListItem/AttributeListItem.js +73 -0
- package/cjs/components/AttributeListItem/styles.d.ts +1 -0
- package/cjs/components/AttributeListItem/styles.js +97 -0
- package/cjs/components/AttributeSelector/AttributeSelector.d.ts +14 -0
- package/cjs/components/AttributeSelector/AttributeSelector.js +106 -0
- package/cjs/components/AttributesErrorsPanel/AttributesErrorsPanel.d.ts +7 -0
- package/cjs/components/AttributesErrorsPanel/AttributesErrorsPanel.js +83 -0
- package/cjs/components/AttributesErrorsPanel/ErrorsPanel/Error.js +61 -0
- package/cjs/components/AttributesErrorsPanel/ErrorsPanel/ErrorsPanel.js +54 -0
- package/cjs/components/AttributesErrorsPanel/ErrorsPanel/helpers.d.ts +5 -0
- package/cjs/components/AttributesErrorsPanel/ErrorsPanel/helpers.js +44 -0
- package/cjs/components/AttributesErrorsPanel/styles.d.ts +2 -0
- package/cjs/components/AttributesErrorsPanel/styles.js +115 -0
- package/cjs/components/AttributesErrorsPanel/useCachedErrors.js +21 -0
- package/cjs/components/AttributesFiltersBuilder/AttributesFiltersBuilder.d.ts +17 -0
- package/cjs/components/AttributesFiltersBuilder/AttributesFiltersBuilder.js +128 -0
- package/cjs/components/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.js +59 -0
- package/cjs/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.d.ts +8 -0
- package/cjs/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.js +63 -0
- package/cjs/components/AttributesFiltersBuilder/components/FilterSelector/styles.d.ts +2 -0
- package/cjs/components/AttributesFiltersBuilder/components/FilterSelector/styles.js +9 -0
- package/cjs/components/AttributesFiltersBuilder/components/RowActions/RowActions.js +55 -0
- package/cjs/components/AttributesFiltersBuilder/components/ValuesEditor/ValuesEditor.js +66 -0
- package/cjs/components/AttributesFiltersBuilder/helpers.d.ts +13 -0
- package/cjs/components/AttributesFiltersBuilder/index.d.ts +4 -0
- package/cjs/components/AttributesFiltersBuilder/index.js +12 -0
- package/cjs/components/AttributesFiltersBuilder/types.d.ts +20 -0
- package/cjs/components/AttributesFiltersButton/ActionButtons/ActionButtons.d.ts +8 -0
- package/cjs/components/AttributesFiltersButton/ActionButtons/ActionButtons.js +18 -0
- package/cjs/components/AttributesFiltersButton/AttributesFiltersButton.d.ts +24 -0
- package/cjs/components/AttributesFiltersButton/AttributesFiltersButton.js +94 -0
- package/cjs/components/AutoSizeList/AutoSizeList.d.ts +17 -0
- package/cjs/components/AvatarWithFallback/AvatarWithFallback.d.ts +13 -0
- package/cjs/components/AvatarWithFallback/AvatarWithFallback.js +84 -0
- package/cjs/components/BasicAttributeSelector/AttributeTitle/AttributeTitle.d.ts +14 -0
- package/cjs/components/BasicAttributeSelector/AttributeTitle/AttributeTitle.js +27 -0
- package/cjs/components/BasicAttributeSelector/AttributeTitle/styles.d.ts +2 -0
- package/cjs/components/BasicAttributeSelector/AttributeTitle/styles.js +44 -0
- package/cjs/components/BasicAttributeSelector/BasicAttributeSelector.d.ts +4 -0
- package/cjs/components/BasicAttributeSelector/BasicAttributeSelector.js +98 -0
- package/cjs/components/BasicAttributeSelector/helpers.d.ts +22 -0
- package/cjs/components/BasicAttributeSelector/helpers.js +80 -0
- package/cjs/components/BasicAttributeSelector/styles.d.ts +2 -0
- package/cjs/components/BasicAttributeSelector/styles.js +15 -0
- package/cjs/components/BasicTableView/BasicTable/BasicTable.d.ts +58 -0
- package/cjs/components/BasicTableView/BasicTable/BasicTable.js +120 -0
- package/cjs/components/BasicTableView/BasicTable/CellRenderer/CellRenderer.d.ts +13 -0
- package/cjs/components/BasicTableView/BasicTable/CellRenderer/CellRenderer.js +46 -0
- package/cjs/components/BasicTableView/BasicTable/HOCs/withFilter.d.ts +16 -0
- package/cjs/components/BasicTableView/BasicTable/HOCs/withFilter.js +38 -0
- package/cjs/components/BasicTableView/BasicTable/HOCs/withFilterAtBottom.d.ts +11 -0
- package/cjs/components/BasicTableView/BasicTable/HOCs/withFilterAtBottom.js +43 -0
- package/cjs/components/BasicTableView/BasicTable/HOCs/withTableContext.d.ts +4 -0
- package/cjs/components/BasicTableView/BasicTable/HOCs/withTableContext.js +8 -0
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/BlobRenderer.d.ts +10 -0
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/BlobRenderer.js +20 -0
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.d.ts +11 -0
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.js +43 -0
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/index.d.ts +1 -0
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/index.js +8 -0
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/styles.d.ts +2 -0
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/styles.js +22 -0
- package/cjs/components/BasicTableView/BasicTable/contexts/RowCollapseContext.d.ts +2 -0
- package/cjs/components/BasicTableView/BasicTable/contexts/TableContext.d.ts +2 -0
- package/cjs/components/BasicTableView/BasicTable/contexts/TableContext.js +9 -0
- package/cjs/components/BasicTableView/BasicTable/contexts/index.d.ts +1 -0
- package/cjs/components/BasicTableView/BasicTable/contexts/index.js +5 -0
- package/cjs/components/BasicTableView/BasicTable/helpers/dataHelpers.d.ts +3 -0
- package/cjs/components/BasicTableView/BasicTable/helpers/dataHelpers.js +125 -0
- package/cjs/components/BasicTableView/BasicTable/helpers/defaultGetRowCellHeight.d.ts +5 -0
- package/cjs/components/BasicTableView/BasicTable/helpers/defaultGetRowCellHeight.js +22 -0
- package/cjs/components/BasicTableView/BasicTable/helpers/defaultRenderRowCell.d.ts +6 -0
- package/cjs/components/BasicTableView/BasicTable/helpers/defaultRenderRowCell.js +33 -0
- package/cjs/components/BasicTableView/BasicTable/hooks/index.d.ts +2 -0
- package/cjs/components/BasicTableView/BasicTable/hooks/index.js +10 -0
- package/cjs/components/BasicTableView/BasicTable/hooks/useBasicTableCellRenderer.d.ts +22 -0
- package/cjs/components/BasicTableView/BasicTable/hooks/useBasicTableCellRenderer.js +36 -0
- package/cjs/components/BasicTableView/BasicTable/hooks/useCollapsibleTableRows.d.ts +19 -0
- package/cjs/components/BasicTableView/BasicTable/hooks/useCollapsibleTableRows.js +47 -0
- package/cjs/components/BasicTableView/BasicTable/hooks/useDynamicRowCellHeight.d.ts +13 -0
- package/cjs/components/BasicTableView/BasicTable/hooks/useDynamicRowCellHeight.js +43 -0
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnListItem.d.ts +27 -0
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnListItem.js +31 -0
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettings.d.ts +11 -0
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettings.js +52 -0
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettingsPopup.d.ts +15 -0
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettingsPopup.js +75 -0
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/columnHelpers.d.ts +4 -0
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/styles.d.ts +1 -0
- package/cjs/components/BasicTableView/BasicTableHeader/FilterButton/FilterButton.d.ts +12 -0
- package/cjs/components/BasicTableView/BasicTableHeader/FilterButton/FilterButton.js +26 -0
- package/cjs/components/BasicTableView/BasicTableHeader/FilterButton/styles.d.ts +1 -0
- package/cjs/components/BasicTableView/BasicTableHeader/FilterButton/styles.js +18 -0
- package/cjs/components/BasicTableView/BasicTablePagination/BasicTablePagination.js +73 -0
- package/cjs/components/BasicTableView/CollapseRowButton/CollapseRowButton.d.ts +14 -0
- package/cjs/components/BasicTableView/CollapseRowButton/CollapseRowButton.js +52 -0
- package/cjs/components/BasicTableView/CollapseRowButton/styles.d.ts +1 -0
- package/cjs/components/BasicTableView/ColumnFilter/ColumnFilter.d.ts +23 -0
- package/cjs/components/BasicTableView/ColumnFilter/ColumnFilter.js +120 -0
- package/cjs/components/BasicTableView/ColumnFilter/FilterChip/FilterChip.d.ts +14 -0
- package/cjs/components/BasicTableView/ColumnFilter/FilterChip/FilterChip.js +31 -0
- package/cjs/components/BasicTableView/ColumnFilter/FilterChip/styles.d.ts +2 -0
- package/cjs/components/BasicTableView/ColumnFilter/FilterChip/styles.js +27 -0
- package/cjs/components/BasicTableView/ColumnFilter/helpers.d.ts +16 -0
- package/cjs/components/BasicTableView/ColumnFilter/helpers.js +33 -0
- package/cjs/components/BasicTableView/ColumnFilter/styles.d.ts +2 -0
- package/cjs/components/BasicTableView/ColumnFilter/styles.js +30 -0
- package/cjs/components/BasicTableView/RowCellAutoSizer/RowCellAutoSizer.d.ts +14 -0
- package/cjs/components/BasicTableView/RowCellAutoSizer/RowCellAutoSizer.js +54 -0
- package/cjs/components/BasicTableView/index.d.ts +20 -0
- package/cjs/components/BasicTableView/index.js +57 -0
- package/cjs/components/BasicTableView/types/index.d.ts +82 -0
- package/cjs/components/BasicTableView/viewState/basicTableViewState.js +85 -0
- package/cjs/components/BasicView/BasicView.d.ts +12 -0
- package/cjs/components/BasicView/BasicView.js +60 -0
- package/cjs/components/BasicViewContent/BasicViewContent.d.ts +4 -0
- package/cjs/components/BasicViewContent/BasicViewContent.js +36 -0
- package/cjs/components/BasicViewHeader/BasicViewHeader.d.ts +8 -0
- package/cjs/components/BasicViewHeader/BasicViewHeader.js +40 -0
- package/cjs/components/BasicViewHeader/styles.d.ts +1 -0
- package/cjs/components/ClickAwayProvider/ClickAwayProvider.d.ts +1 -0
- package/cjs/components/CollaborationItem/Avatar/Avatar.d.ts +1 -0
- package/cjs/components/CollaborationItem/Comment/Comment.d.ts +1 -0
- package/cjs/components/CollaborationItem/Comment/Comment.js +3 -3
- package/cjs/components/CollaborationItem/Comment/styles.d.ts +1 -1
- package/cjs/components/CollaborationItem/CommentContent/CommentContent.d.ts +1 -0
- package/cjs/components/CollaborationItem/CommentTarget/CommentTarget.d.ts +1 -0
- package/cjs/components/CollaborationItem/CommentTarget/styles.d.ts +1 -1
- package/cjs/components/CollaborationItem/RepliedComment/RepliedComment.js +3 -3
- package/cjs/components/CollaborationItem/RepliedComment/styles.d.ts +1 -1
- package/cjs/components/CollaborationItem/TextFieldWithMentions/TextFieldWithMentions.d.ts +1 -0
- package/cjs/components/CollaborationItem/TextFieldWithMentions/TextFieldWithMentions.js +1 -1
- package/cjs/components/CollaborationItem/TextFieldWithMentions/styles.js +0 -1
- package/cjs/components/CollaborationPopup/CollaborationPopup.js +1 -1
- package/cjs/components/CollaborationPopup/styles.d.ts +1 -1
- package/cjs/components/CollapseButton/CollapseButton.d.ts +1 -1
- package/cjs/components/CollapseButton/CollapseButton.js +1 -1
- package/cjs/components/ColorBar/ColorBar.d.ts +8 -0
- package/cjs/components/ColorBar/ColorBar.js +42 -0
- package/cjs/components/ColoredSourceIcon/ColoredSourceIcon.js +2 -2
- package/cjs/components/CommentsContainer/CommentsContainer.d.ts +1 -0
- package/cjs/components/ConfigureColumnsPopup/ConfigureColumnsPopup.js +2 -2
- package/cjs/components/ConfirmDeleteDialog/ConfirmDeleteDialog.d.ts +1 -0
- package/cjs/components/ConnectionEditor/ConnectionEditor.d.ts +1 -0
- package/cjs/components/ConnectionEditor/ConnectionEditor.js +7 -7
- package/cjs/components/ConnectionEditor/styles.d.ts +1 -1
- package/cjs/components/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.js +2 -2
- package/cjs/components/DataTenantBadge/DataTenantBadge.d.ts +1 -0
- package/cjs/components/DateIntervalSelector/DateIntervalSelector.d.ts +1 -0
- package/cjs/components/Drawer/Drawer.d.ts +1 -0
- package/cjs/components/DropDownMenuButton/DropDownMenuButton.d.ts +20 -0
- package/cjs/components/DropDownMenuButton/DropDownMenuButton.js +78 -0
- package/cjs/components/DropDownMenuButton/MenuItemRenderer.d.ts +8 -0
- package/cjs/components/DropDownMenuButton/MenuItemRenderer.js +50 -0
- package/cjs/components/DropDownMenuButton/styles.d.ts +1 -0
- package/cjs/components/DropDownMenuButton/styles.js +29 -0
- package/cjs/components/EmptySearchResult/styles.d.ts +1 -1
- package/cjs/components/EmptyState/styles.d.ts +1 -1
- package/cjs/components/EntityAvatar/EntityAvatar.d.ts +1 -0
- package/cjs/components/EntityTypeBadge/EntityTypeBadge.d.ts +1 -0
- package/cjs/components/EntityTypeBadge/EntityTypeBadge.js +2 -2
- package/cjs/components/EntityTypeIcon/EntityTypeIcon.d.ts +1 -0
- package/cjs/components/EntityUriLink/EntityUriLink.d.ts +2 -2
- package/cjs/components/ErrorPopup/ErrorPopup.d.ts +1 -0
- package/cjs/components/ErrorWrapper/ErrorMessage.d.ts +1 -0
- package/cjs/components/ErrorWrapper/styles.d.ts +1 -1
- package/cjs/components/ExpandableSearchInput/ExpandableSearchInput.d.ts +1 -0
- package/cjs/components/ExpandableSearchInput/ExpandableSearchInput.js +1 -1
- package/cjs/components/ExpandedValueTooltip/ExpandedValueTooltip.d.ts +11 -0
- package/cjs/components/ExpandedValueTooltip/ExpandedValueTooltip.js +73 -0
- package/cjs/components/FacetViewHeader/FacetViewHeader.d.ts +8 -0
- package/cjs/components/FacetViewHeader/FacetViewHeader.js +15 -0
- package/cjs/components/FacetViewHeader/styles.d.ts +1 -0
- package/cjs/components/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.d.ts +1 -0
- package/cjs/components/HierarchyNodeTitle/HierarchyNodeTitle.d.ts +1 -0
- package/cjs/components/HierarchyNodeTitle/styles.d.ts +1 -1
- package/cjs/components/Highlighter/Highlighter.d.ts +1 -0
- package/cjs/components/Image/CheckedIcon/CheckedIcon.d.ts +8 -0
- package/cjs/components/Image/Image.d.ts +33 -0
- package/cjs/components/Image/Image.js +108 -0
- package/cjs/components/Image/ImageActionsOverlay/ImageActionsOverlay.js +87 -0
- package/cjs/components/Image/styles.d.ts +2 -0
- package/cjs/components/ImageAttributesGallery/GalleryView/GalleryView.d.ts +1 -0
- package/cjs/components/ImageAttributesGallery/GalleryView/GalleryView.js +27 -4
- package/cjs/components/ImageAttributesGallery/HeaderLeft/HeaderLeft.d.ts +1 -0
- package/cjs/components/ImageAttributesGallery/HeaderRight/HeaderRight.d.ts +1 -0
- package/cjs/components/ImageAttributesGallery/HeaderRight/HeaderRight.js +1 -1
- package/cjs/components/ImageAttributesGallery/ImageAttributesGallery.d.ts +1 -0
- package/cjs/components/ImageDetailsView/ImageDetailsView.d.ts +1 -0
- package/cjs/components/ImageDetailsView/ImageDetailsViewCarousel/ImageDetailsViewCarousel.d.ts +1 -0
- package/cjs/components/ImageDetailsView/ImageDetailsViewCarousel/ImageDetailsViewCarousel.js +28 -5
- package/cjs/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/Thumbnails.d.ts +1 -0
- package/cjs/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/Thumbnails.js +2 -2
- package/cjs/components/ImageDetailsView/ImageDetailsViewSidebar/ImageDetailsViewSidebar.d.ts +1 -0
- package/cjs/components/ImageDetailsView/ImageDetailsViewSidebar/styles.d.ts +1 -1
- package/cjs/components/ImageDetailsView/MetaInfo/MetaInfo.d.ts +1 -0
- package/cjs/components/ImageDetailsView/MetaInfoForm/MetaInfoForm.d.ts +1 -0
- package/cjs/components/ImageDetailsView/MetaInfoForm/MetaInfoForm.js +2 -2
- package/cjs/components/ImageDetailsView/MetaInfoHeader/MetaInfoHeader.d.ts +1 -0
- package/cjs/components/ImageDetailsView/MetaInfoHeader/MetaInfoHeader.js +4 -4
- package/cjs/components/ImageDetailsView/MetaInfoList/MetaInfoItem/styles.d.ts +1 -1
- package/cjs/components/ImageDetailsView/MetaInfoList/MetaInfoList.d.ts +1 -0
- package/cjs/components/ImageDetailsView/MetaInfoList/MetaInfoList.js +2 -2
- package/cjs/components/ImageGalleryDialog/ImageGalleryDialog.js +1 -1
- package/cjs/components/ImageGalleryDialog/styles.d.ts +1 -1
- package/cjs/components/ImportButton/ImportButton.d.ts +1 -0
- package/cjs/components/ImportButton/ImportButton.js +1 -1
- package/cjs/components/InternalLink/InternalLink.d.ts +3 -0
- package/cjs/components/InternalLink/InternalLink.js +39 -0
- package/cjs/components/LightArrowTooltip/LightArrowTooltip.d.ts +1 -0
- package/cjs/components/LinearLoadIndicator/LinearLoadIndicator.d.ts +1 -0
- package/cjs/components/LoadingSpinner/LoadingSpinner.d.ts +1 -0
- package/cjs/components/LogicOperator/LogicOperator.d.ts +1 -0
- package/cjs/components/LogicOperator/LogicOperator.js +3 -3
- package/cjs/components/Marginator/Marginator.d.ts +1 -0
- package/cjs/components/MatchRulesBlock/MatchRulesBadge/MatchRulesBadge.d.ts +1 -1
- package/cjs/components/MatchRulesBlock/MatchRulesBadge/MatchRulesBadge.js +2 -2
- package/cjs/components/MatchRulesBlock/MatchRulesBadge/styles.d.ts +1 -1
- package/cjs/components/MatchRulesBlock/MatchRulesBlock.d.ts +1 -0
- package/cjs/components/MatchRulesBlock/MatchRulesTitle.d.ts +1 -0
- package/cjs/components/MatchRulesBlock/MatchRulesTooltip/MatchRulesTooltip.d.ts +1 -0
- package/cjs/components/MatchRulesBlock/MatchRulesTooltip/styles.d.ts +1 -1
- package/cjs/components/MatchRulesBlock/NotMatchRule/NotMatchRule.d.ts +1 -0
- package/cjs/components/MatchRulesBlock/SimpleMatchRules/SimpleMatchRules.d.ts +1 -0
- package/cjs/components/MatchRulesBlock/SimpleMatchRules/styles.d.ts +1 -1
- package/cjs/components/MatchRulesBlock/SimpleMatchRules/styles.js +1 -2
- package/cjs/components/MatchRulesBlock/SimpleMatchRulesBlock/SimpleMatchRulesBlock.d.ts +10 -10
- package/cjs/components/MatchRulesBlock/SimpleMatchRulesBlock/styles.d.ts +1 -1
- package/cjs/components/MatchRulesBlock/TransitiveMatchBlock/TransitiveMatchBlock.d.ts +10 -10
- package/cjs/components/MatchRulesBlock/TransitiveMatchRules/TransitiveMatchRule.d.ts +1 -0
- package/cjs/components/MatchRulesBlock/TransitiveMatchRules/TransitiveMatchRule.js +2 -2
- package/cjs/components/MatchRulesBlock/TransitiveMatchRules/styles.d.ts +1 -1
- package/cjs/components/MatchRulesBlock/TransitiveMatchRulesTooltip/TransitiveMatchRulesTooltip.d.ts +1 -0
- package/cjs/components/MatchRulesSelector/MatchRulesSelector.d.ts +1 -0
- package/cjs/components/MergeButton/MergeButton.d.ts +1 -1
- package/cjs/components/MergeButton/MergeButton.js +2 -3
- package/cjs/components/MetadataTypesSelector/ListLabel/ListLabel.d.ts +1 -0
- package/cjs/components/MetadataTypesSelector/MetadataTypesSelector.js +1 -1
- package/cjs/components/MetadataTypesSelector/SelectMetadataTypesList.d.ts +1 -1
- package/cjs/components/MetadataTypesSelector/SelectMetadataTypesList.js +2 -2
- package/cjs/components/ModeSwitcher/ModeSwitcher.js +2 -2
- package/cjs/components/ModeSwitcher/styles.d.ts +1 -1
- package/cjs/components/MultilineMenuItem/MultilineMenuItem.d.ts +11 -0
- package/cjs/components/MultilineMenuItem/MultilineMenuItem.js +49 -0
- package/cjs/components/MultilineMenuItem/styles.d.ts +1 -0
- package/cjs/components/MultilineMenuItem/styles.js +23 -0
- package/cjs/components/MultipleInput/MultipleInput.d.ts +1 -0
- package/cjs/components/NotMatchButton/NotMatchButton.d.ts +2 -2
- package/cjs/components/NotMatchButton/NotMatchButton.js +4 -5
- package/cjs/components/Popper/Popper.d.ts +1 -1
- package/cjs/components/PopupWithArrow/styles.d.ts +1 -1
- package/cjs/components/PotentialMatchReviewCard/styles.d.ts +1 -1
- package/cjs/components/ProfileBand/styles.d.ts +1 -1
- package/cjs/components/ProfileBandNavigation/ProfileBandNavigation.d.ts +1 -0
- package/cjs/components/ProfileBandNavigation/ProfileBandNavigationWidget.d.ts +12 -12
- package/cjs/components/ProfileBandNavigation/ProfileBandNavigationWidget.js +1 -1
- package/cjs/components/ProfileBandNavigation/styles.d.ts +1 -1
- package/cjs/components/ProfileCard/ProfileCardContent/ProfileCardContent.d.ts +1 -0
- package/cjs/components/ProfileCard/ProfileCardContent/ProfileCardContent.js +4 -4
- package/cjs/components/ProfileCard/ProfileCardContent/styles.d.ts +1 -1
- package/cjs/components/ProfileCard/ProfileCardPlaceholder/ProfileCardPlaceholder.d.ts +1 -0
- package/cjs/components/ProfilesList/ProfilesList.d.ts +1 -0
- package/cjs/components/ProfilesList/styles.d.ts +1 -1
- package/cjs/components/QueryBuilderRow/components/ReadOnlyFilter.d.ts +1 -0
- package/cjs/components/QueryBuilderRow/components/ReadOnlyLogicOperator.d.ts +1 -0
- package/cjs/components/ReactSelect/MultiSelect/components/Option.js +2 -2
- package/cjs/components/ReactSelect/commonComponents/Option.js +2 -2
- package/cjs/components/ReactSelect/styles.d.ts +1 -1
- package/cjs/components/RelationEditor/RelationEditor.js +4 -4
- package/cjs/components/RelationEditor/styles.d.ts +1 -1
- package/cjs/components/RelevanceScoreBadge/RelevanceScoreBadge.d.ts +1 -0
- package/cjs/components/ReltioMap/MapControls/TopCenterMapControls/TopCenterMapControls.d.ts +1 -0
- package/cjs/components/ReltioMap/MapControls/TopCenterMapControls/styles.d.ts +1 -1
- package/cjs/components/ReltioMap/MapControls/TopRightMapControls/TopRightMapControls.d.ts +12 -12
- package/cjs/components/ReltioMap/MapControls/TopRightMapControls/styles.d.ts +1 -1
- package/cjs/components/ReltioMap/index.d.ts +1 -0
- package/cjs/components/RequiredMark/RequiredMark.d.ts +1 -0
- package/cjs/components/ScrollableTabs/ScrollableTabs.js +2 -2
- package/cjs/components/ScrollableTabs/styles.d.ts +1 -1
- package/cjs/components/SearchHighlighter/SearchHighlighter.d.ts +1 -0
- package/cjs/components/SearchInput/SearchInput.js +2 -2
- package/cjs/components/SearchInput/WhiteSearchInput.d.ts +1 -0
- package/cjs/components/SearchInput/styles.d.ts +1 -1
- package/cjs/components/SelectAttributesList/SelectAttributesList.js +6 -6
- package/cjs/components/SelectionPopup/styles.d.ts +1 -1
- package/cjs/components/SettingsMenu/SettingsMenu.d.ts +1 -0
- package/cjs/components/SettingsMenu/SettingsMenu.js +3 -3
- package/cjs/components/SideIconPanel/SideButtonsPanel.d.ts +7 -2
- package/cjs/components/SideIconPanel/SideButtonsPanel.js +4 -5
- package/cjs/components/SideIconPanel/styles.d.ts +1 -1
- package/cjs/components/SidePanel/SidePanelContentHeader/SidePanelContentHeader.js +1 -1
- package/cjs/components/SidePanel/SidePanelContentHeader/styles.d.ts +1 -1
- package/cjs/components/SimpleDropDownSelector/styles.d.ts +1 -1
- package/cjs/components/SmallIconButton/SmallIconButton.d.ts +9 -0
- package/cjs/components/SmallIconButton/SmallIconButton.js +113 -0
- package/cjs/components/SmallIconButton/index.d.ts +17 -0
- package/cjs/components/SmallIconButton/index.js +11 -0
- package/cjs/components/SourceIcon/SourceIcon.d.ts +11 -0
- package/cjs/components/SourceIcon/SourceIcon.js +19 -0
- package/cjs/components/SourceSystemsSelector/SourceSystemsSelector.d.ts +1 -0
- package/cjs/components/StepNavigation/StepNavigation.d.ts +1 -0
- package/cjs/components/StepNavigation/styles.d.ts +1 -1
- package/cjs/components/TableSkeleton/TableSkeleton.d.ts +2 -2
- package/cjs/components/TableSkeleton/TableSkeleton.js +2 -2
- package/cjs/components/TenantIcon/TenantIcon.d.ts +1 -0
- package/cjs/components/TenantLabel/TenantLabel.d.ts +1 -0
- package/cjs/components/TenantsDropDownSelector/TenantsDropDownSelector.d.ts +1 -0
- package/cjs/components/TenantsDropDownSelector/TenantsDropDownSelector.js +2 -3
- package/cjs/components/Title/Title.d.ts +1 -0
- package/cjs/components/UploadFileButton/UploadFileButton.js +2 -2
- package/cjs/components/UploadFileButton/styles.d.ts +1 -1
- package/cjs/components/UploadImageDialog/DividerWithText/DividerWithText.d.ts +1 -0
- package/cjs/components/UploadImageDialog/DividerWithText/styles.d.ts +1 -1
- package/cjs/components/UploadImageDialog/ErrorSnackbar/ErrorSnackbar.d.ts +1 -0
- package/cjs/components/UploadImageDialog/ErrorSnackbar/ErrorSnackbar.js +1 -1
- package/cjs/components/UploadImageDialog/ImageByUrlField/ImageByUrlField.d.ts +1 -0
- package/cjs/components/UploadImageDialog/ImageByUrlField/styles.d.ts +1 -1
- package/cjs/components/UploadImageDialog/SelectImageButton/SelectImageButton.d.ts +1 -0
- package/cjs/components/UploadImageDialog/TargetBox/TargetBox.d.ts +1 -0
- package/cjs/components/UploadImageDialog/TargetBox/styles.d.ts +1 -1
- package/cjs/components/UploadImageDialog/UploadImageDialog.d.ts +1 -0
- package/cjs/components/UserSelector/UserSelector.d.ts +1 -0
- package/cjs/components/ValueChip/ValueChip.d.ts +1 -0
- package/cjs/components/ValueChip/ValueChip.js +2 -2
- package/cjs/components/ValueChip/styles.d.ts +1 -1
- package/cjs/components/VerticalHeadingsTable/TableCell/TableCell.d.ts +1 -0
- package/cjs/components/VerticalHeadingsTable/TableCellWithDnd/TableCellWithDnd.d.ts +1 -0
- package/cjs/components/VerticalHeadingsTable/TableColumnDragLayer/TableColumnDragLayer.d.ts +1 -0
- package/cjs/components/VerticalHeadingsTable/TableColumnDragLayer/TableColumnDragPreview.d.ts +1 -0
- package/cjs/components/VerticalHeadingsTable/TableRow/TableRow.d.ts +1 -0
- package/cjs/components/VerticalHeadingsTable/TableRowWithDnd/TableRowWithDnd.d.ts +1 -0
- package/cjs/components/VerticalHeadingsTable/types.d.ts +1 -0
- package/cjs/components/activityLog/ActivityExportButton/ActivityExportButton.d.ts +8 -0
- package/cjs/components/activityLog/ActivityExportButton/ActivityExportButton.js +80 -0
- package/cjs/components/activityLog/ActivityFilterButton/ActivityFilterButton.d.ts +10 -0
- package/cjs/components/activityLog/ActivityFilterButton/ActivityFilterButton.js +67 -0
- package/cjs/components/activityLog/ActivityFilterEditor/ActivityFilterEditor.d.ts +14 -0
- package/cjs/components/activityLog/ActivityFilterEditor/ActivityFilterEditor.js +75 -0
- package/cjs/components/activityLog/ActivityFilterEditor/ActivitySelector.d.ts +9 -0
- package/cjs/components/activityLog/ActivityFilterEditor/ActivitySelector.js +33 -0
- package/cjs/components/activityLog/ActivityFilterEditor/DateRangeSelector.d.ts +8 -0
- package/cjs/components/activityLog/ActivityFilterEditor/DateRangeSelector.js +124 -0
- package/cjs/components/activityLog/ActivityFilterEditor/EntityChangedSelectors.d.ts +10 -0
- package/cjs/components/activityLog/ActivityFilterEditor/EntityChangedSelectors.js +26 -0
- package/cjs/components/activityLog/ActivityFilterEditor/EntityTypesSelector.d.ts +9 -0
- package/cjs/components/activityLog/ActivityFilterEditor/EntityTypesSelector.js +29 -0
- package/cjs/components/activityLog/ActivityFilterEditor/SourceSelector.d.ts +8 -0
- package/cjs/components/activityLog/ActivityFilterEditor/SourceSelector.js +29 -0
- package/cjs/components/activityLog/ActivityFilterEditor/styles.d.ts +5 -0
- package/cjs/components/activityLog/ActivityFilterEditor/utils/getSelectorActivityTypes.js +35 -0
- package/cjs/components/activityLog/ActivityLog/ActivityLog.d.ts +8 -0
- package/cjs/components/activityLog/ActivityLog/ActivityLog.js +72 -0
- package/cjs/components/activityLog/ActivityLog/items/ActivityItem/ActivityItem.d.ts +7 -0
- package/cjs/components/activityLog/ActivityLog/items/ActivityItem/ActivityItem.js +27 -0
- package/cjs/components/activityLog/ActivityLog/items/GroupItem/GroupItem.d.ts +8 -0
- package/cjs/components/activityLog/ActivityLog/items/GroupItem/GroupItem.js +22 -0
- package/cjs/components/activityLog/ActivityLogFilter/ActivityLogFilter.d.ts +12 -0
- package/cjs/components/activityLog/ActivityLogFilter/ActivityLogFilter.js +42 -0
- package/cjs/components/activityLog/ActivityLogFilter/styles.d.ts +1 -0
- package/cjs/components/activityLog/activities/ActivitiesFactory.d.ts +11 -0
- package/cjs/components/activityLog/activities/ActivitiesFactory.js +127 -0
- package/cjs/components/activityLog/activities/ActivityTitle/ActivityTitle.d.ts +8 -0
- package/cjs/components/activityLog/activities/ActivityTitle/ActivityTitle.js +16 -0
- package/cjs/components/activityLog/activities/CommentActivity.d.ts +8 -0
- package/cjs/components/activityLog/activities/CommentActivity.js +12 -0
- package/cjs/components/activityLog/activities/EntityObject/EntityObject.d.ts +7 -0
- package/cjs/components/activityLog/activities/EntityObject/EntityObject.js +19 -0
- package/cjs/components/activityLog/activities/GroupActivity.d.ts +8 -0
- package/cjs/components/activityLog/activities/GroupActivity.js +20 -0
- package/cjs/components/activityLog/activities/MergeActivity.d.ts +8 -0
- package/cjs/components/activityLog/activities/MergeActivity.js +19 -0
- package/cjs/components/activityLog/activities/MoreItemsLink/MoreItemsLink.d.ts +9 -0
- package/cjs/components/activityLog/activities/PotentialMatchActivity.d.ts +8 -0
- package/cjs/components/activityLog/activities/PotentialMatchActivity.js +16 -0
- package/cjs/components/activityLog/activities/ProfileActivity.d.ts +8 -0
- package/cjs/components/activityLog/activities/ProfileActivity.js +19 -0
- package/cjs/components/activityLog/activities/RelationActivity.d.ts +8 -0
- package/cjs/components/activityLog/activities/RelationActivity.js +19 -0
- package/cjs/components/activityLog/activities/RelationObject/RelationObject.d.ts +7 -0
- package/cjs/components/activityLog/activities/RelationObject/RelationObject.js +20 -0
- package/cjs/components/activityLog/activities/SearchActivity.d.ts +8 -0
- package/cjs/components/activityLog/activities/SearchActivity.js +50 -0
- package/cjs/components/activityLog/activities/SimpleActivity.d.ts +8 -0
- package/cjs/components/activityLog/activities/SimpleActivity.js +22 -0
- package/cjs/components/activityLog/activities/SynchronizationIssuesActivity.d.ts +8 -0
- package/cjs/components/activityLog/activities/SynchronizationIssuesActivity.js +25 -0
- package/cjs/components/activityLog/activities/fields/DeltaField.d.ts +7 -0
- package/cjs/components/activityLog/activities/fields/DeltaField.js +42 -0
- package/cjs/components/activityLog/activities/fields/PotentialMatchField.d.ts +7 -0
- package/cjs/components/activityLog/activities/fields/PotentialMatchField.js +52 -0
- package/cjs/components/activityLog/activities/fields/commonStyles.d.ts +1 -0
- package/cjs/components/activityLog/activities/fields/commonStyles.js +22 -0
- package/cjs/components/activityLog/activities/fields/styles.d.ts +1 -0
- package/cjs/components/activityLog/activities/fields/styles.js +42 -0
- package/cjs/components/activityLog/activities/records/CollapsibleActivityRecords.d.ts +9 -0
- package/cjs/components/activityLog/activities/records/CollapsibleActivityRecords.js +21 -0
- package/cjs/components/activityLog/activities/records/EntityRecord.d.ts +7 -0
- package/cjs/components/activityLog/activities/records/EntityRecord.js +44 -0
- package/cjs/components/activityLog/activities/records/PotentialMatchRecord.d.ts +7 -0
- package/cjs/components/activityLog/activities/records/PotentialMatchRecord.js +19 -0
- package/cjs/components/activityLog/activities/records/RecordUpdates.d.ts +8 -0
- package/cjs/components/activityLog/activities/records/RecordUpdates.js +23 -0
- package/cjs/components/activityLog/activities/records/RelationRecord.d.ts +7 -0
- package/cjs/components/activityLog/activities/records/RelationRecord.js +23 -0
- package/cjs/components/activityLog/activities/records/styles.d.ts +1 -0
- package/cjs/components/activityLog/activities/records/styles.js +38 -0
- package/cjs/components/activityLog/activities/styles.d.ts +1 -0
- package/cjs/components/activityLog/activities/styles.js +21 -0
- package/cjs/components/activityLog/contexts/CollapsibleItemsContext/index.d.ts +15 -0
- package/cjs/components/activityLog/hooks/useActivitiesLoader.js +64 -0
- package/cjs/components/activityLog/index.d.ts +5 -0
- package/cjs/components/activityLog/index.js +29 -0
- package/cjs/components/activityLog/types/ActivitiesFilter.d.ts +12 -0
- package/cjs/components/activityLog/types/ActivityData.d.ts +10 -0
- package/cjs/components/activityLog/types/ActivityDelta.d.ts +7 -0
- package/cjs/components/activityLog/types/ActivityItem.d.ts +27 -0
- package/cjs/components/activityLog/types/ActivityTypes.d.ts +31 -0
- package/cjs/components/activityLog/types/ActivityTypes.js +35 -0
- package/cjs/components/activityLog/types/DeltaTypes.d.ts +5 -0
- package/cjs/components/activityLog/types/DeltaTypes.js +9 -0
- package/cjs/components/activityLog/types/DeltaValue.d.ts +10 -0
- package/cjs/components/activityLog/types/index.d.ts +7 -0
- package/cjs/components/activityLog/types/index.js +7 -0
- package/cjs/components/attributes/AttributesView/AttributesView.d.ts +4 -0
- package/cjs/components/attributes/AttributesView/AttributesView.js +41 -0
- package/cjs/components/attributes/BranchDecorator/BranchDecorator.d.ts +9 -0
- package/cjs/components/attributes/BranchDecorator/BranchDecorator.js +16 -0
- package/cjs/components/attributes/BranchDecorator/styles.d.ts +1 -0
- package/cjs/components/attributes/DescriptionIcon/DescriptionIcon.d.ts +8 -0
- package/cjs/components/attributes/DescriptionIcon/DescriptionIcon.js +46 -0
- package/cjs/components/attributes/DescriptionIcon/index.d.ts +1 -0
- package/cjs/components/attributes/DescriptionIcon/index.js +8 -0
- package/cjs/components/attributes/ImageAttributesLine/ImageAttributesLine.d.ts +27 -0
- package/cjs/components/attributes/ImageAttributesLine/ImageAttributesLine.js +140 -0
- package/cjs/components/attributes/ImageAttributesLine/constants.d.ts +9 -0
- package/cjs/components/attributes/ImageAttributesLine/constants.js +9 -0
- package/cjs/components/attributes/ImageAttributesLine/index.d.ts +1 -0
- package/cjs/components/attributes/ImageAttributesLine/index.js +8 -0
- package/cjs/components/attributes/ImageAttributesLine/styles.d.ts +6 -0
- package/cjs/components/attributes/OvIcon/OvIcon.d.ts +38 -0
- package/cjs/components/attributes/OvIcon/OvIcon.js +60 -0
- package/cjs/components/attributes/OvIcon/heplers.d.ts +4 -0
- package/cjs/components/attributes/OvIcon/heplers.js +11 -0
- package/cjs/components/attributes/OvIcon/index.d.ts +1 -0
- package/cjs/components/attributes/OvIcon/index.js +8 -0
- package/cjs/components/attributes/OvIcon/styles.d.ts +1 -0
- package/cjs/components/attributes/PivotingAttributes/PivotingTooltip.js +82 -0
- package/cjs/components/attributes/PivotingAttributes/PivotingTooltipContent.d.ts +11 -0
- package/cjs/components/attributes/PivotingAttributes/PivotingTooltipContent.js +32 -0
- package/cjs/components/attributes/PivotingAttributes/styles.d.ts +2 -0
- package/cjs/components/attributes/PivotingAttributes/styles.js +104 -0
- package/cjs/components/attributes/editMode/AttributesFactory/Attribute.d.ts +7 -0
- package/cjs/components/attributes/editMode/AttributesFactory/Attribute.js +47 -0
- package/cjs/components/attributes/editMode/AttributesFactory/AttributesFactory.d.ts +3 -0
- package/cjs/components/attributes/editMode/AttributesFactory/AttributesFactory.js +52 -0
- package/cjs/components/attributes/editMode/AttributesList/AttributesList.js +121 -0
- package/cjs/components/attributes/editMode/AttributesList/index.d.ts +1 -0
- package/cjs/components/attributes/editMode/AttributesList/index.js +8 -0
- package/cjs/components/attributes/editMode/AttributesPager/AttributeRenderer.d.ts +17 -0
- package/cjs/components/attributes/editMode/AttributesPager/AttributeRenderer.js +128 -0
- package/cjs/components/attributes/editMode/AttributesPager/AttributesPager.d.ts +4 -0
- package/cjs/components/attributes/editMode/AttributesPager/AttributesPager.js +90 -0
- package/cjs/components/attributes/editMode/AttributesPager/CardinalityMessage.d.ts +7 -0
- package/cjs/components/attributes/editMode/AttributesPager/CardinalityMessage.js +69 -0
- package/cjs/components/attributes/editMode/AttributesPager/ImageLineRenderer.d.ts +19 -0
- package/cjs/components/attributes/editMode/AttributesPager/ImageLineRenderer.js +60 -0
- package/cjs/components/attributes/editMode/AttributesPager/SpecialRenderer.d.ts +19 -0
- package/cjs/components/attributes/editMode/AttributesPager/SpecialRenderer.js +120 -0
- package/cjs/components/attributes/editMode/AttributesPager/index.d.ts +2 -0
- package/cjs/components/attributes/editMode/AttributesPager/index.js +10 -0
- package/cjs/components/attributes/editMode/AttributesPager/styles.d.ts +1 -0
- package/cjs/components/attributes/editMode/AttributesPager/types.d.ts +21 -0
- package/cjs/components/attributes/editMode/AttributesPager/utils.d.ts +2 -0
- package/cjs/components/attributes/editMode/AttributesPager/utils.js +7 -0
- package/cjs/components/attributes/editMode/AttributesView/AttributesView.d.ts +5 -0
- package/cjs/components/attributes/editMode/AttributesView/AttributesView.js +58 -0
- package/cjs/components/attributes/editMode/ComplexAttribute/ComplexAttribute.js +132 -0
- package/cjs/components/attributes/editMode/EntityCreator/EntityCreator.d.ts +10 -0
- package/cjs/components/attributes/editMode/EntityCreator/EntityCreator.js +42 -0
- package/cjs/components/attributes/editMode/EntitySelector/EntitySelector.d.ts +33 -0
- package/cjs/components/attributes/editMode/EntitySelector/EntitySelector.js +152 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/ClearIndicator.d.ts +8 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/ClearIndicator.js +20 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/EntityOption.d.ts +23 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/EntityOption.js +60 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/EntityTypeOption.d.ts +19 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/EntityTypeOption.js +45 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/Group.d.ts +10 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/Group.js +40 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/SingleValue.d.ts +15 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/SingleValue.js +85 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/styles.d.ts +4 -0
- package/cjs/components/attributes/editMode/EntitySelector/components/styles.js +90 -0
- package/cjs/components/attributes/editMode/EntitySelector/styles.d.ts +1 -0
- package/cjs/components/attributes/editMode/ImageAttributesLine/ImageAttributesLine.d.ts +16 -0
- package/cjs/components/attributes/editMode/ImageAttributesLine/ImageAttributesLine.js +109 -0
- package/cjs/components/attributes/editMode/ImageAttributesLine/index.d.ts +2 -0
- package/cjs/components/attributes/editMode/ImageAttributesLine/index.js +7 -0
- package/cjs/components/attributes/editMode/ImageAttributesLine/styles.d.ts +2 -0
- package/cjs/components/attributes/editMode/MoreAttributesButton/MoreAttributesButton.d.ts +12 -0
- package/cjs/components/attributes/editMode/MoreAttributesButton/MoreAttributesButton.js +105 -0
- package/cjs/components/attributes/editMode/MoreAttributesButton/helpers.d.ts +9 -0
- package/cjs/components/attributes/editMode/MoreAttributesButton/index.d.ts +1 -0
- package/cjs/components/attributes/editMode/MoreAttributesButton/index.js +8 -0
- package/cjs/components/attributes/editMode/MoreAttributesButton/styles.d.ts +1 -0
- package/cjs/components/attributes/editMode/MoreAttributesButton/useMoreAttributesItems.js +69 -0
- package/cjs/components/attributes/editMode/NestedAttribute/NestedAttribute.d.ts +121 -0
- package/cjs/components/attributes/editMode/NestedAttribute/NestedAttribute.js +49 -0
- package/cjs/components/attributes/editMode/ReferenceAttribute/ReferenceAttribute.js +160 -0
- package/cjs/components/attributes/editMode/ReferenceAttribute/styles.d.ts +1 -0
- package/cjs/components/attributes/editMode/RelationTypeSelector/RelationTypeSelector.d.ts +27 -0
- package/cjs/components/attributes/editMode/RelationTypeSelector/RelationTypeSelector.js +76 -0
- package/cjs/components/attributes/editMode/RelationTypeSelector/components/RelationOption.d.ts +21 -0
- package/cjs/components/attributes/editMode/RelationTypeSelector/components/RelationOption.js +57 -0
- package/cjs/components/attributes/editMode/RelationTypeSelector/components/styles.d.ts +1 -0
- package/cjs/components/attributes/editMode/RelationTypeSelector/components/styles.js +55 -0
- package/cjs/components/attributes/editMode/Roles/Roles.d.ts +9 -0
- package/cjs/components/attributes/editMode/Roles/Roles.js +73 -0
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +3 -0
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor.js +163 -0
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/styles.d.ts +1 -0
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/useAttributeValuePermissions.js +14 -0
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/useAutopopulationContextValue.js +29 -0
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/utils.d.ts +5 -0
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/utils.js +65 -0
- package/cjs/components/attributes/editMode/Tags/Tags.d.ts +10 -0
- package/cjs/components/attributes/editMode/Tags/Tags.js +117 -0
- package/cjs/components/attributes/editMode/Tags/index.d.ts +1 -0
- package/cjs/components/attributes/editMode/Tags/index.js +8 -0
- package/cjs/components/attributes/editMode/hooks/useScrollToAttribute/useScrollToAttribute.d.ts +9 -0
- package/cjs/components/attributes/helpers/attributesView.d.ts +8 -0
- package/cjs/components/attributes/helpers/attributesView.js +22 -0
- package/cjs/components/attributes/inline/AttributesList/AttributesList.d.ts +24 -0
- package/cjs/components/attributes/inline/AttributesList/AttributesList.js +42 -0
- package/cjs/components/attributes/inline/AttributesPager/AttributesPager.d.ts +27 -0
- package/cjs/components/attributes/inline/AttributesPager/AttributesPager.js +100 -0
- package/cjs/components/attributes/inline/ComplexAttribute/ComplexAttribute.d.ts +26 -0
- package/cjs/components/attributes/inline/ComplexAttribute/ComplexAttribute.js +79 -0
- package/cjs/components/attributes/inline/ImageAttribute/ImageAttribute.d.ts +23 -0
- package/cjs/components/attributes/inline/ImageAttribute/ImageAttribute.js +39 -0
- package/cjs/components/attributes/inline/ImageAttributesBlock/ImageAttributesBlock.d.ts +24 -0
- package/cjs/components/attributes/inline/ImageAttributesBlock/ImageAttributesBlock.js +34 -0
- package/cjs/components/attributes/inline/NestedAttribute/NestedAttribute.d.ts +23 -0
- package/cjs/components/attributes/inline/NestedAttribute/NestedAttribute.js +37 -0
- package/cjs/components/attributes/inline/NestedAttributesBlock/NestedAttributesBlock.d.ts +25 -0
- package/cjs/components/attributes/inline/NestedAttributesBlock/NestedAttributesBlock.js +44 -0
- package/cjs/components/attributes/inline/ReferenceAttribute/ReferenceAttribute.d.ts +23 -0
- package/cjs/components/attributes/inline/ReferenceAttribute/ReferenceAttribute.js +72 -0
- package/cjs/components/attributes/inline/ReferenceAttributesBlock/ReferenceAttributesBlock.d.ts +24 -0
- package/cjs/components/attributes/inline/ReferenceAttributesBlock/ReferenceAttributesBlock.js +34 -0
- package/cjs/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/CrosswalkMenuItem.d.ts +18 -0
- package/cjs/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/CrosswalkMenuItem.js +54 -0
- package/cjs/components/attributes/inline/SimpleAttribute/SimpleAttribute.d.ts +22 -0
- package/cjs/components/attributes/inline/SimpleAttribute/SimpleAttribute.js +123 -0
- package/cjs/components/attributes/inline/SimpleAttribute/index.d.ts +1 -0
- package/cjs/components/attributes/inline/SimpleAttribute/index.js +8 -0
- package/cjs/components/attributes/inline/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +13 -0
- package/cjs/components/attributes/inline/SimpleAttributeEditor/SimpleAttributeEditor.js +104 -0
- package/cjs/components/attributes/inline/SimpleAttributesBlock/SimpleAttributesBlock.d.ts +24 -0
- package/cjs/components/attributes/inline/SimpleAttributesBlock/SimpleAttributesBlock.js +65 -0
- package/cjs/components/attributes/inline/common/ComplexAttributeLabel.js +15 -0
- package/cjs/components/attributes/inline/common/CrosswalkIcon.d.ts +8 -0
- package/cjs/components/attributes/inline/common/CrosswalkIcon.js +22 -0
- package/cjs/components/attributes/inline/common/DeleteButton.d.ts +6 -0
- package/cjs/components/attributes/inline/common/DeleteButton.js +14 -0
- package/cjs/components/attributes/inline/common/IgnoreButton.d.ts +8 -0
- package/cjs/components/attributes/inline/common/IgnoreButton.js +15 -0
- package/cjs/components/attributes/inline/common/PinButton.d.ts +8 -0
- package/cjs/components/attributes/inline/common/PinButton.js +15 -0
- package/cjs/components/attributes/inline/common/SourceItem.d.ts +10 -0
- package/cjs/components/attributes/inline/common/SourceItem.js +29 -0
- package/cjs/components/attributes/inline/common/styles.d.ts +9 -0
- package/cjs/components/attributes/inline/common/styles.js +65 -0
- package/cjs/components/attributes/inline/index.d.ts +5 -0
- package/cjs/components/attributes/inline/index.js +29 -0
- package/cjs/components/attributes/inline/types/AddAttributeEvent.d.ts +7 -0
- package/cjs/components/attributes/inline/types/AddAttributeEvent.js +2 -0
- package/cjs/components/attributes/inline/types/CrosswalksMap.d.ts +8 -0
- package/cjs/components/attributes/inline/types/CrosswalksMap.js +2 -0
- package/cjs/components/attributes/inline/types/DeleteAttributeEvent.d.ts +6 -0
- package/cjs/components/attributes/inline/types/DeleteAttributeEvent.js +2 -0
- package/cjs/components/attributes/inline/types/EditAttributeEvent.d.ts +7 -0
- package/cjs/components/attributes/inline/types/EditAttributeEvent.js +2 -0
- package/cjs/components/attributes/inline/types/IgnoreAttributeEvent.d.ts +4 -0
- package/cjs/components/attributes/inline/types/IgnoreAttributeEvent.js +2 -0
- package/cjs/components/attributes/inline/types/PinAttributeEvent.d.ts +4 -0
- package/cjs/components/attributes/inline/types/PinAttributeEvent.js +2 -0
- package/cjs/components/attributes/inline/types/index.d.ts +6 -0
- package/cjs/components/attributes/inline/types/index.js +2 -0
- package/cjs/components/attributes/pagersCommon/ShowLess.d.ts +6 -0
- package/cjs/components/attributes/pagersCommon/ShowLess.js +18 -0
- package/cjs/components/attributes/pagersCommon/ShowMore.d.ts +8 -0
- package/cjs/components/attributes/pagersCommon/ShowMore.js +20 -0
- package/cjs/components/attributes/pagersCommon/styles.d.ts +1 -0
- package/cjs/components/attributes/pagersCommon/styles.js +13 -0
- package/cjs/components/attributes/readMode/AttributeValuesBlock/AttributeValuesBlock.d.ts +17 -0
- package/cjs/components/attributes/readMode/AttributeValuesBlock/AttributeValuesBlock.js +77 -0
- package/cjs/components/attributes/readMode/AttributesFactory/Attribute.d.ts +2 -0
- package/cjs/components/attributes/readMode/AttributesFactory/Attribute.js +11 -0
- package/cjs/components/attributes/readMode/AttributesFactory/AttributesFactory.d.ts +3 -0
- package/cjs/components/attributes/readMode/AttributesFactory/AttributesFactory.js +38 -0
- package/cjs/components/attributes/readMode/AttributesList/AttributesList.d.ts +15 -0
- package/cjs/components/attributes/readMode/AttributesList/AttributesList.js +75 -0
- package/cjs/components/attributes/readMode/AttributesList/index.d.ts +1 -0
- package/cjs/components/attributes/readMode/AttributesList/index.js +8 -0
- package/cjs/components/attributes/readMode/AttributesPager/AttributesPager.js +88 -0
- package/cjs/components/attributes/readMode/AttributesPager/ImageLineRenderer.d.ts +12 -0
- package/cjs/components/attributes/readMode/AttributesPager/ImageLineRenderer.js +22 -0
- package/cjs/components/attributes/readMode/AttributesPager/MultiLineRenderer.d.ts +17 -0
- package/cjs/components/attributes/readMode/AttributesPager/MultiLineRenderer.js +73 -0
- package/cjs/components/attributes/readMode/AttributesPager/OneLineRenderer.d.ts +13 -0
- package/cjs/components/attributes/readMode/AttributesPager/OneLineRenderer.js +33 -0
- package/cjs/components/attributes/readMode/AttributesPager/SpecialRenderer.d.ts +8 -0
- package/cjs/components/attributes/readMode/AttributesPager/SpecialRenderer.js +40 -0
- package/cjs/components/attributes/readMode/AttributesPager/styles.d.ts +3 -0
- package/cjs/components/attributes/readMode/AttributesView/AttributesView.d.ts +5 -0
- package/cjs/components/attributes/readMode/AttributesView/AttributesView.js +60 -0
- package/cjs/components/attributes/readMode/ComplexAttribute/ComplexAttribute.d.ts +46 -0
- package/cjs/components/attributes/readMode/ComplexAttribute/ComplexAttribute.js +94 -0
- package/cjs/components/attributes/readMode/ComplexAttribute/styles.d.ts +1 -0
- package/cjs/components/attributes/readMode/ComplexAttribute/styles.js +23 -0
- package/cjs/components/attributes/readMode/ImageAttributesLine/ImageAttributesLine.d.ts +14 -0
- package/cjs/components/attributes/readMode/ImageAttributesLine/ImageAttributesLine.js +58 -0
- package/cjs/components/attributes/readMode/ImageAttributesLine/cross.inline.svg.d.ts +1 -0
- package/cjs/components/attributes/readMode/ImageAttributesLine/cross.inline.svg.js +4 -0
- package/cjs/components/attributes/readMode/ImageAttributesLine/index.d.ts +1 -0
- package/cjs/components/attributes/readMode/ImageAttributesLine/index.js +8 -0
- package/cjs/components/attributes/readMode/ImageAttributesLine/styles.d.ts +2 -0
- package/cjs/components/attributes/readMode/ImageAttributesLine/styles.js +89 -0
- package/cjs/components/attributes/readMode/NestedAttribute/NestedAttribute.js +77 -0
- package/cjs/components/attributes/readMode/NestedAttribute/index.d.ts +1 -0
- package/cjs/components/attributes/readMode/NestedAttribute/index.js +8 -0
- package/cjs/components/attributes/readMode/ReferenceAttribute/ReferenceAttribute.d.ts +5 -0
- package/cjs/components/attributes/readMode/ReferenceAttribute/ReferenceAttribute.js +84 -0
- package/cjs/components/attributes/readMode/ReferenceAttribute/index.d.ts +2 -0
- package/cjs/components/attributes/readMode/ReferenceAttribute/index.js +7 -0
- package/cjs/components/attributes/readMode/ReferenceAttribute/styles.d.ts +2 -0
- package/cjs/components/attributes/readMode/ReferenceAttribute/styles.js +25 -0
- package/cjs/components/attributes/readMode/SimpleAttribute/SimpleAttribute.d.ts +10 -0
- package/cjs/components/attributes/readMode/SimpleAttribute/SimpleAttribute.js +68 -0
- package/cjs/components/attributes/readMode/SimpleAttribute/index.d.ts +1 -0
- package/cjs/components/attributes/readMode/SimpleAttribute/index.js +8 -0
- package/cjs/components/attributes/readMode/SimpleAttribute/styles.d.ts +1 -0
- package/cjs/components/attributes/readMode/SimpleAttribute/styles.js +43 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/Role.d.ts +6 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/Role.js +44 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/Roles.d.ts +7 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/Roles.js +13 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/index.d.ts +1 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/index.js +8 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/SpecialAttributesArray.d.ts +9 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/SpecialAttributesArray.js +33 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/Tag.d.ts +6 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/Tag.js +52 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/Tags.d.ts +8 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/Tags.js +13 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/index.d.ts +1 -0
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/index.js +8 -0
- package/cjs/components/attributes/readMode/helpers/commonStyles.d.ts +1 -0
- package/cjs/components/attributes/readMode/helpers/commonStyles.js +7 -0
- package/cjs/components/attributes/types/attributes.d.ts +24 -0
- package/cjs/components/attributes/types/attributes.js +2 -0
- package/cjs/components/attributes/types/attributesView.d.ts +11 -0
- package/cjs/components/attributes/types/attributesView.js +2 -0
- package/cjs/components/attributes/types/index.d.ts +2 -0
- package/cjs/components/attributes/types/index.js +18 -0
- package/cjs/components/charts/ActiveShape/ActiveShape.d.ts +10 -0
- package/cjs/components/charts/ActiveShape/ActiveShape.js +52 -0
- package/cjs/components/charts/BarChart/BarChart.d.ts +4 -0
- package/cjs/components/charts/BarChart/BarChart.js +37 -0
- package/cjs/components/charts/BarChart/getBarChartSettings.d.ts +13 -0
- package/cjs/components/charts/BarChart/getBarChartSettings.js +54 -0
- package/cjs/components/charts/BubbleChart/BubbleChart.d.ts +11 -0
- package/cjs/components/charts/BubbleChart/BubbleChart.js +88 -0
- package/cjs/components/charts/BubbleChart/helpers.d.ts +7 -0
- package/cjs/components/charts/BubbleChart/useBubbles.d.ts +14 -0
- package/cjs/components/charts/BubbleChart/useBubbles.js +18 -0
- package/cjs/components/charts/ChartsFactory.d.ts +5 -0
- package/cjs/components/charts/ChartsFactory.js +56 -0
- package/cjs/components/charts/CloudChart/CloudChart.d.ts +11 -0
- package/cjs/components/charts/CloudChart/CloudChart.js +76 -0
- package/cjs/components/charts/CloudChart/useCloud.d.ts +13 -0
- package/cjs/components/charts/CloudChart/useCloud.js +36 -0
- package/cjs/components/charts/CustomLegend/CustomLegend.d.ts +7 -0
- package/cjs/components/charts/CustomLegend/CustomLegend.js +17 -0
- package/cjs/components/charts/CustomLegend/getLegendProps.d.ts +3 -0
- package/cjs/components/charts/CustomLegend/getLegendProps.js +23 -0
- package/cjs/components/charts/CustomLegend/styles.d.ts +1 -0
- package/cjs/components/charts/CustomTooltip/CustomTooltip.d.ts +3 -0
- package/cjs/components/charts/CustomTooltip/CustomTooltip.js +29 -0
- package/cjs/components/charts/HOCs/withPercents.d.ts +11 -0
- package/cjs/components/charts/HOCs/withPercents.js +66 -0
- package/cjs/components/charts/LineChart/LineChart.d.ts +4 -0
- package/cjs/components/charts/LineChart/LineChart.js +33 -0
- package/cjs/components/charts/LineChart/getLineChartSettings.d.ts +13 -0
- package/cjs/components/charts/LineChart/getLineChartSettings.js +62 -0
- package/cjs/components/charts/MapChart/Legend/Legend.d.ts +9 -0
- package/cjs/components/charts/MapChart/Legend/Legend.js +22 -0
- package/cjs/components/charts/MapChart/Legend/styles.d.ts +6 -0
- package/cjs/components/charts/MapChart/MapChart.d.ts +12 -0
- package/cjs/components/charts/MapChart/MapChart.js +113 -0
- package/cjs/components/charts/MapChart/useGeography.js +25 -0
- package/cjs/components/charts/PieChart/PieChart.d.ts +12 -0
- package/cjs/components/charts/PieChart/PieChart.js +73 -0
- package/cjs/components/charts/TableWithBars/TableWithBars.d.ts +4 -0
- package/cjs/components/charts/TableWithBars/TableWithBars.js +79 -0
- package/cjs/components/charts/TableWithBars/cell-renderers/AttributeCellRenderer.js +30 -0
- package/cjs/components/charts/TableWithBars/cell-renderers/HeadCellRenderer.d.ts +9 -0
- package/cjs/components/charts/TableWithBars/cell-renderers/HeadCellRenderer.js +40 -0
- package/cjs/components/charts/TableWithBars/cell-renderers/NumberCellValueRenderer.d.ts +9 -0
- package/cjs/components/charts/TableWithBars/cell-renderers/NumberCellValueRenderer.js +20 -0
- package/cjs/components/charts/TableWithBars/cell-renderers/styles.d.ts +1 -0
- package/cjs/components/charts/TableWithBars/cell-renderers/styles.js +71 -0
- package/cjs/components/charts/TreeChart/TreeChart.d.ts +4 -0
- package/cjs/components/charts/TreeChart/TreeChart.js +72 -0
- package/cjs/components/charts/hooks/useClickableStyle.d.ts +1 -0
- package/cjs/components/charts/hooks/useClickableStyle.js +14 -0
- package/cjs/components/charts/hooks/useTooltipState.d.ts +8 -0
- package/cjs/components/charts/hooks/useTooltipState.js +30 -0
- package/cjs/components/charts/index.d.ts +8 -0
- package/cjs/components/charts/index.js +21 -0
- package/cjs/components/charts/types/charts.d.ts +51 -0
- package/cjs/components/charts/types/charts.js +2 -0
- package/cjs/components/charts/types/index.d.ts +1 -0
- package/cjs/components/charts/types/index.js +2 -0
- package/cjs/components/commonReactSelectComponents/DropdownIndicatorWithIconButton.js +2 -2
- package/cjs/components/commonReactSelectComponents/MenuList.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/AddAttributesButton/AddAttributesButton.d.ts +1 -1
- package/cjs/components/crosswalks/AttributesTable/AddAttributesButton/AddAttributesButton.js +4 -4
- package/cjs/components/crosswalks/AttributesTable/AttributesTable.d.ts +1 -1
- package/cjs/components/crosswalks/AttributesTable/AttributesTable.js +6 -8
- package/cjs/components/crosswalks/AttributesTable/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/AttributeValuesRenderer.d.ts +1 -1
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/AttributeValuesRenderer.js +2 -2
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/AttributesHeadCellRenderer.js +2 -2
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/CommonRowCellRenderer.d.ts +1 -1
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/CommonRowCellRenderer.js +2 -2
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/CountRenderer.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/DefaultCellValueRenderer.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/OvValuesRenderer.js +2 -5
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RowCellRenderer.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.js +3 -3
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RuleTypeRenderer.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/WinnerSourcesRenderer.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/WinnerSourcesRenderer.js +2 -2
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/AttributesFactory.d.ts +2 -2
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ImageAttributesRenderer.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ImageAttributesRenderer.js +2 -2
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/NestedAttributesRenderer.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/NestedAttributesRenderer.js +2 -2
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ReferenceAttributesRenderer.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ReferenceAttributesRenderer.js +2 -2
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/SimpleAttributesRenderer.d.ts +1 -0
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/SimpleAttributesRenderer.js +2 -2
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/styles.d.ts +1 -1
- package/cjs/components/crosswalks/AttributesTable/helpers.d.ts +1 -1
- package/cjs/components/crosswalks/CopyableValueField/CopyableValueField.d.ts +1 -0
- package/cjs/components/crosswalks/CopyableValueField/CopyableValueField.js +2 -2
- package/cjs/components/crosswalks/CopyableValueField/styles.d.ts +1 -1
- package/cjs/components/crosswalks/CrosswalkAttributes/CrosswalkAttributes.d.ts +1 -0
- package/cjs/components/crosswalks/CrosswalkAttributes/CrosswalkAttributes.js +5 -5
- package/cjs/components/crosswalks/CrosswalkAttributes/styles.d.ts +1 -1
- package/cjs/components/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.d.ts +1 -0
- package/cjs/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.d.ts +1 -0
- package/cjs/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.js +2 -2
- package/cjs/components/crosswalks/CrosswalkEditor/CrosswalkEditor.d.ts +1 -0
- package/cjs/components/crosswalks/CrosswalkRow/CrosswalkRow.js +8 -8
- package/cjs/components/crosswalks/CrosswalkRow/styles.d.ts +1 -1
- package/cjs/components/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.js +4 -4
- package/cjs/components/crosswalks/DummyCrosswalkRow/styles.d.ts +1 -1
- package/cjs/components/crosswalks/ShowDependentLink/ShowDependentLink.d.ts +1 -0
- package/cjs/components/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.d.ts +1 -0
- package/cjs/components/crosswalks/hooks/useAttributeActions.d.ts +1 -1
- package/cjs/components/crosswalks/hooks/useModifiedEntity.d.ts +3 -3
- package/cjs/components/crosswalks/types/AttributesTableData.d.ts +3 -2
- package/cjs/components/crosswalks/types/CrosswalksByOwnerTypeMap.d.ts +1 -1
- package/cjs/components/editors/BooleanRadioEditor/BooleanRadioEditor.d.ts +1 -0
- package/cjs/components/editors/CustomDateRangeEditor/CustomDateRangeEditor.d.ts +1 -0
- package/cjs/components/editors/DateEditor/DateEditor.d.ts +1 -0
- package/cjs/components/editors/DependentLookupEditor/styles.d.ts +1 -1
- package/cjs/components/editors/EditorsFactory.js +2 -2
- package/cjs/components/editors/FileTypeEditor/FileTypeEditor.d.ts +1 -0
- package/cjs/components/editors/NumberEditor/NumberEditor.d.ts +1 -0
- package/cjs/components/editors/TimestampEditor/TimestampEditor.d.ts +1 -0
- package/cjs/components/editors/TypeaheadEditor/TypeaheadEditor.d.ts +22 -0
- package/cjs/components/editors/TypeaheadEditor/TypeaheadEditor.js +264 -0
- package/cjs/components/history/ContributorsPanel/ContributorItem.d.ts +1 -0
- package/cjs/components/history/ContributorsPanel/ContributorsPanel.d.ts +1 -0
- package/cjs/components/history/DateRangeSelector/DateRangeSelector.d.ts +1 -0
- package/cjs/components/history/HistoryActivitySelector/HistoryActivitySelector.d.ts +1 -0
- package/cjs/components/history/HistoryFilterButton/HistoryFilterButton.d.ts +1 -0
- package/cjs/components/history/HistoryFilterButton/HistoryFilterButton.js +3 -3
- package/cjs/components/history/HistoryGraph/HistoryCircle.d.ts +1 -1
- package/cjs/components/history/HistoryGraph/HistoryGraph.d.ts +10 -10
- package/cjs/components/history/HistoryGraph/HistoryLink.d.ts +1 -0
- package/cjs/components/history/HistoryHeader/HistoryHeader.d.ts +1 -0
- package/cjs/components/history/HistoryHeader/styles.d.ts +1 -1
- package/cjs/components/history/HistoryMenuButton/HistoryMenuButton.d.ts +1 -0
- package/cjs/components/history/HistoryMenuButton/HistoryMenuButton.js +3 -3
- package/cjs/components/history/HistoryPanelEmptyState/HistoryPanelEmptyState.d.ts +1 -0
- package/cjs/components/history/HistoryRow/HistoryRow.d.ts +1 -0
- package/cjs/components/history/HistoryRow/HistoryRow.js +2 -2
- package/cjs/components/history/HistoryRow/styles.d.ts +1 -1
- package/cjs/components/history/HistoryTree/HistoryTree.d.ts +1 -0
- package/cjs/components/history/ProfileBandHistory/ProfileBandHistory.d.ts +1 -0
- package/cjs/components/history/hooks/useHistorySlice.js +15 -22
- package/cjs/components/history/types/HistoryChangeTypes.d.ts +1 -1
- package/cjs/components/history/types/HistoryChangeTypes.js +2 -2
- package/cjs/components/history/utils/filters.js +7 -7
- package/cjs/components/index.d.ts +49 -0
- package/cjs/components/index.js +100 -3
- package/cjs/components/workflow/cards/DataChangeRequestTaskCard/DataChangeRequestTaskCard.d.ts +1 -0
- package/cjs/components/workflow/cards/GenericWorkflowTaskCard/styles.d.ts +1 -1
- package/cjs/components/workflow/cards/PotentialMatchTaskCard/PotentialMatchTaskCard.d.ts +1 -0
- package/cjs/components/workflow/cards/WorkflowTaskCard.d.ts +1 -0
- package/cjs/components/workflow/cards/WorkflowTaskCardsFactory.d.ts +1 -0
- package/cjs/components/workflow/components/AddWorkflowButton/AddWorkflowButton.d.ts +1 -0
- package/cjs/components/workflow/components/AddWorkflowButton/styles.d.ts +1 -1
- package/cjs/components/workflow/components/AddWorkflowDialog/AddWorkflowDialog.d.ts +1 -0
- package/cjs/components/workflow/components/AddWorkflowDialog/styles.d.ts +1 -1
- package/cjs/components/workflow/components/AssigneeSelector/AssigneeSelector.d.ts +1 -0
- package/cjs/components/workflow/components/AttributesChanges/AttributesChanges.d.ts +1 -0
- package/cjs/components/workflow/components/AttributesChanges/components/ChangeView/styles.d.ts +1 -1
- package/cjs/components/workflow/components/AttributesChanges/components/DCRChangesList/DCRChangesList.d.ts +1 -0
- package/cjs/components/workflow/components/AttributesChanges/components/DiffRenderer/DiffRenderer.d.ts +1 -0
- package/cjs/components/workflow/components/AttributesChanges/components/ShowMoreLink/ShowMoreLink.d.ts +1 -0
- package/cjs/components/workflow/components/AttributesChanges/helpers/attributesHelpers.js +1 -1
- package/cjs/components/workflow/components/AttributesChanges/styles.d.ts +1 -1
- package/cjs/components/workflow/components/DueDateField/DueDateField.d.ts +1 -0
- package/cjs/components/workflow/components/LineDecorator/styles.d.ts +1 -1
- package/cjs/components/workflow/components/PrioritySelector/PrioritySelector.d.ts +1 -0
- package/cjs/components/workflow/components/ReassignButton/ReassignButton.d.ts +1 -0
- package/cjs/components/workflow/components/ReassignButton/ReassignButton.js +1 -1
- package/cjs/components/workflow/components/ReassignButton/ReassignDialog.d.ts +1 -0
- package/cjs/components/workflow/components/ReassignButton/styles.d.ts +1 -1
- package/cjs/components/workflow/components/TaskActionButtons/TaskActionButtons.d.ts +1 -0
- package/cjs/components/workflow/components/TaskActions/TaskActions.d.ts +1 -0
- package/cjs/components/workflow/components/TaskActions/TaskActions.js +3 -3
- package/cjs/components/workflow/components/WorkflowComments/Comment.d.ts +1 -0
- package/cjs/components/workflow/components/WorkflowComments/ExpandedComments.d.ts +1 -0
- package/cjs/components/workflow/components/WorkflowComments/WorkflowComments.d.ts +1 -0
- package/cjs/components/workflow/components/WorkflowComments/WorkflowComments.js +1 -1
- package/cjs/components/workflow/components/WorkflowComments/styles.d.ts +2 -2
- package/cjs/contexts/MdmModuleContext/hooks.d.ts +0 -1
- package/cjs/contexts/MdmModuleContext/hooks.js +1 -7
- package/cjs/contexts/MdmModuleContext/index.d.ts +1 -1
- package/cjs/contexts/MdmModuleContext/index.js +1 -2
- package/cjs/hooks/useLayoutResetter.d.ts +1 -0
- package/cjs/hooks/useMatchesColumnsData/helpers.d.ts +1 -1
- package/cjs/hooks/useMatchesColumnsData/useMatchesColumnsData.d.ts +1 -1
- package/cjs/hooks/useMatchesLoader.d.ts +1 -1
- package/cjs/hooks/useSnackbar.d.ts +1 -0
- package/cjs/index.d.ts +2 -83
- package/cjs/index.js +2 -180
- package/cjs/types/index.d.ts +1 -22
- package/cjs/types/index.js +1 -7
- package/esm/HOCs/index.d.ts +3 -3
- package/esm/HOCs/index.js +3 -3
- package/esm/HOCs/withAsyncMount/withAsyncMount.d.ts +2 -1
- package/esm/HOCs/withAsyncMount/withAsyncMount.js +2 -1
- package/esm/HOCs/withTooltip/propTypes.d.ts +7 -0
- package/esm/HOCs/withTooltip/propTypes.js +6 -0
- package/esm/HOCs/withTooltip/withTooltip.d.ts +2 -8
- package/esm/HOCs/withTooltip/withTooltip.js +24 -7
- package/esm/components/ActionButton/ActionButton.d.ts +16 -0
- package/esm/components/ActionButton/ActionButton.js +65 -0
- package/esm/components/ActionButton/styles.d.ts +1 -0
- package/esm/components/ActionButton/styles.js +45 -0
- package/esm/components/ActionsPanel/ActionsPanel.d.ts +21 -0
- package/esm/components/ActionsPanel/ActionsPanel.js +37 -0
- package/esm/components/ActionsPanel/MenuItemRenderer.d.ts +8 -0
- package/esm/components/ActionsPanel/MenuItemRenderer.js +20 -0
- package/esm/components/ArrowExpandButton/ArrowExpandButton.d.ts +8 -0
- package/esm/components/ArrowExpandButton/ArrowExpandButton.js +34 -0
- package/esm/components/AttributeGroupIcon/AttributeGroupIcon.d.ts +11 -0
- package/esm/components/AttributeGroupIcon/AttributeGroupIcon.js +14 -0
- package/esm/components/AttributeListItem/AttrTypeIcon.d.ts +7 -0
- package/esm/components/AttributeListItem/AttrTypeIcon.js +24 -0
- package/esm/components/AttributeListItem/AttributeListItem.d.ts +40 -0
- package/esm/components/AttributeListItem/AttributeListItem.js +44 -0
- package/esm/components/AttributeListItem/styles.d.ts +1 -0
- package/esm/components/AttributeListItem/styles.js +94 -0
- package/esm/components/AttributeSelector/AttributeSelector.d.ts +14 -0
- package/esm/components/AttributeSelector/AttributeSelector.js +78 -0
- package/esm/components/AttributesErrorsPanel/AttributesErrorsPanel.d.ts +7 -0
- package/esm/components/AttributesErrorsPanel/AttributesErrorsPanel.js +53 -0
- package/esm/components/AttributesErrorsPanel/ErrorsPanel/Error.js +32 -0
- package/esm/components/AttributesErrorsPanel/ErrorsPanel/ErrorsPanel.js +25 -0
- package/esm/components/AttributesErrorsPanel/ErrorsPanel/helpers.d.ts +5 -0
- package/esm/components/AttributesErrorsPanel/ErrorsPanel/helpers.js +34 -0
- package/esm/components/AttributesErrorsPanel/styles.d.ts +2 -0
- package/esm/components/AttributesErrorsPanel/styles.js +113 -0
- package/esm/components/AttributesErrorsPanel/useCachedErrors.js +17 -0
- package/esm/components/AttributesFiltersBuilder/AttributesFiltersBuilder.d.ts +17 -0
- package/esm/components/AttributesFiltersBuilder/AttributesFiltersBuilder.js +100 -0
- package/esm/components/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.js +31 -0
- package/esm/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.d.ts +8 -0
- package/esm/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.js +35 -0
- package/esm/components/AttributesFiltersBuilder/components/FilterSelector/styles.d.ts +2 -0
- package/esm/components/AttributesFiltersBuilder/components/FilterSelector/styles.js +7 -0
- package/esm/components/AttributesFiltersBuilder/components/RowActions/RowActions.d.ts +4 -0
- package/esm/components/AttributesFiltersBuilder/components/RowActions/RowActions.js +27 -0
- package/esm/components/AttributesFiltersBuilder/components/ValuesEditor/ValuesEditor.d.ts +4 -0
- package/esm/components/AttributesFiltersBuilder/components/ValuesEditor/ValuesEditor.js +38 -0
- package/esm/components/AttributesFiltersBuilder/helpers.d.ts +13 -0
- package/esm/components/AttributesFiltersBuilder/index.d.ts +4 -0
- package/esm/components/AttributesFiltersBuilder/index.js +3 -0
- package/esm/components/AttributesFiltersBuilder/types.d.ts +20 -0
- package/esm/components/AttributesFiltersButton/ActionButtons/ActionButtons.d.ts +8 -0
- package/esm/components/AttributesFiltersButton/ActionButtons/ActionButtons.js +13 -0
- package/esm/components/AttributesFiltersButton/AttributesFiltersButton.d.ts +24 -0
- package/esm/components/AttributesFiltersButton/AttributesFiltersButton.js +66 -0
- package/esm/components/AutoSizeList/AutoSizeList.d.ts +17 -0
- package/esm/components/AvatarWithFallback/AvatarWithFallback.d.ts +13 -0
- package/esm/components/AvatarWithFallback/AvatarWithFallback.js +56 -0
- package/esm/components/BasicAttributeSelector/AttributeTitle/AttributeTitle.d.ts +14 -0
- package/esm/components/BasicAttributeSelector/AttributeTitle/AttributeTitle.js +22 -0
- package/esm/components/BasicAttributeSelector/AttributeTitle/styles.d.ts +2 -0
- package/esm/components/BasicAttributeSelector/AttributeTitle/styles.js +42 -0
- package/esm/components/BasicAttributeSelector/BasicAttributeSelector.d.ts +4 -0
- package/esm/components/BasicAttributeSelector/BasicAttributeSelector.js +70 -0
- package/esm/components/BasicAttributeSelector/helpers.d.ts +22 -0
- package/esm/components/BasicAttributeSelector/helpers.js +72 -0
- package/esm/components/BasicAttributeSelector/styles.d.ts +2 -0
- package/esm/components/BasicAttributeSelector/styles.js +13 -0
- package/esm/components/BasicTableView/BasicTable/BasicTable.d.ts +58 -0
- package/esm/components/BasicTableView/BasicTable/BasicTable.js +91 -0
- package/esm/components/BasicTableView/BasicTable/CellRenderer/CellRenderer.d.ts +13 -0
- package/esm/components/BasicTableView/BasicTable/CellRenderer/CellRenderer.js +39 -0
- package/esm/components/BasicTableView/BasicTable/HOCs/withFilter.d.ts +16 -0
- package/esm/components/BasicTableView/BasicTable/HOCs/withFilter.js +33 -0
- package/esm/components/BasicTableView/BasicTable/HOCs/withFilterAtBottom.d.ts +11 -0
- package/esm/components/BasicTableView/BasicTable/HOCs/withFilterAtBottom.js +38 -0
- package/esm/components/BasicTableView/BasicTable/HOCs/withTableContext.d.ts +4 -0
- package/esm/components/BasicTableView/BasicTable/HOCs/withTableContext.js +6 -0
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/BlobRenderer.d.ts +10 -0
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/BlobRenderer.js +15 -0
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.d.ts +11 -0
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.js +38 -0
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/index.d.ts +1 -0
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/index.js +1 -0
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/styles.d.ts +2 -0
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/styles.js +19 -0
- package/esm/components/BasicTableView/BasicTable/contexts/RowCollapseContext.d.ts +2 -0
- package/esm/components/BasicTableView/BasicTable/contexts/TableContext.d.ts +2 -0
- package/esm/components/BasicTableView/BasicTable/contexts/TableContext.js +3 -0
- package/esm/components/BasicTableView/BasicTable/contexts/index.d.ts +1 -0
- package/esm/components/BasicTableView/BasicTable/contexts/index.js +1 -0
- package/esm/components/BasicTableView/BasicTable/helpers/dataHelpers.d.ts +3 -0
- package/esm/components/BasicTableView/BasicTable/helpers/dataHelpers.js +117 -0
- package/esm/components/BasicTableView/BasicTable/helpers/defaultGetRowCellHeight.d.ts +5 -0
- package/esm/components/BasicTableView/BasicTable/helpers/defaultGetRowCellHeight.js +20 -0
- package/esm/components/BasicTableView/BasicTable/helpers/defaultRenderRowCell.d.ts +6 -0
- package/esm/components/BasicTableView/BasicTable/helpers/defaultRenderRowCell.js +28 -0
- package/esm/components/BasicTableView/BasicTable/hooks/index.d.ts +2 -0
- package/esm/components/BasicTableView/BasicTable/hooks/index.js +2 -0
- package/esm/components/BasicTableView/BasicTable/hooks/useBasicTableCellRenderer.d.ts +22 -0
- package/esm/components/BasicTableView/BasicTable/hooks/useBasicTableCellRenderer.js +31 -0
- package/esm/components/BasicTableView/BasicTable/hooks/useCollapsibleTableRows.d.ts +19 -0
- package/esm/components/BasicTableView/BasicTable/hooks/useCollapsibleTableRows.js +45 -0
- package/esm/components/BasicTableView/BasicTable/hooks/useDynamicRowCellHeight.d.ts +13 -0
- package/esm/components/BasicTableView/BasicTable/hooks/useDynamicRowCellHeight.js +41 -0
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnListItem.d.ts +27 -0
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnListItem.js +26 -0
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettings.d.ts +11 -0
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettings.js +24 -0
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettingsPopup.d.ts +15 -0
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettingsPopup.js +45 -0
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/columnHelpers.d.ts +4 -0
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/styles.d.ts +1 -0
- package/esm/components/BasicTableView/BasicTableHeader/FilterButton/FilterButton.d.ts +12 -0
- package/esm/components/BasicTableView/BasicTableHeader/FilterButton/FilterButton.js +21 -0
- package/esm/components/BasicTableView/BasicTableHeader/FilterButton/styles.d.ts +1 -0
- package/esm/components/BasicTableView/BasicTableHeader/FilterButton/styles.js +15 -0
- package/esm/components/BasicTableView/BasicTablePagination/BasicTablePagination.js +45 -0
- package/esm/components/BasicTableView/CollapseRowButton/CollapseRowButton.d.ts +14 -0
- package/esm/components/BasicTableView/CollapseRowButton/CollapseRowButton.js +24 -0
- package/esm/components/BasicTableView/CollapseRowButton/styles.d.ts +1 -0
- package/esm/components/BasicTableView/ColumnFilter/ColumnFilter.d.ts +23 -0
- package/esm/components/BasicTableView/ColumnFilter/ColumnFilter.js +92 -0
- package/esm/components/BasicTableView/ColumnFilter/FilterChip/FilterChip.d.ts +14 -0
- package/esm/components/BasicTableView/ColumnFilter/FilterChip/FilterChip.js +26 -0
- package/esm/components/BasicTableView/ColumnFilter/FilterChip/styles.d.ts +2 -0
- package/esm/components/BasicTableView/ColumnFilter/FilterChip/styles.js +24 -0
- package/esm/components/BasicTableView/ColumnFilter/helpers.d.ts +16 -0
- package/esm/components/BasicTableView/ColumnFilter/helpers.js +28 -0
- package/esm/components/BasicTableView/ColumnFilter/styles.d.ts +2 -0
- package/esm/components/BasicTableView/ColumnFilter/styles.js +27 -0
- package/esm/components/BasicTableView/RowCellAutoSizer/RowCellAutoSizer.d.ts +14 -0
- package/esm/components/BasicTableView/RowCellAutoSizer/RowCellAutoSizer.js +26 -0
- package/esm/components/BasicTableView/index.d.ts +20 -0
- package/esm/components/BasicTableView/index.js +20 -0
- package/esm/components/BasicTableView/types/index.d.ts +82 -0
- package/esm/components/BasicTableView/viewState/basicTableViewState.js +80 -0
- package/esm/components/BasicView/BasicView.d.ts +12 -0
- package/esm/components/BasicView/BasicView.js +32 -0
- package/esm/components/BasicViewContent/BasicViewContent.d.ts +4 -0
- package/esm/components/BasicViewContent/BasicViewContent.js +31 -0
- package/esm/components/BasicViewHeader/BasicViewHeader.d.ts +8 -0
- package/esm/components/BasicViewHeader/BasicViewHeader.js +35 -0
- package/esm/components/BasicViewHeader/styles.d.ts +1 -0
- package/esm/components/ClickAwayProvider/ClickAwayProvider.d.ts +1 -0
- package/esm/components/CollaborationItem/Avatar/Avatar.d.ts +1 -0
- package/esm/components/CollaborationItem/Comment/Comment.d.ts +1 -0
- package/esm/components/CollaborationItem/Comment/Comment.js +2 -2
- package/esm/components/CollaborationItem/Comment/styles.d.ts +1 -1
- package/esm/components/CollaborationItem/CommentContent/CommentContent.d.ts +1 -0
- package/esm/components/CollaborationItem/CommentTarget/CommentTarget.d.ts +1 -0
- package/esm/components/CollaborationItem/CommentTarget/styles.d.ts +1 -1
- package/esm/components/CollaborationItem/RepliedComment/RepliedComment.js +2 -2
- package/esm/components/CollaborationItem/RepliedComment/styles.d.ts +1 -1
- package/esm/components/CollaborationItem/TextFieldWithMentions/TextFieldWithMentions.d.ts +1 -0
- package/esm/components/CollaborationItem/TextFieldWithMentions/TextFieldWithMentions.js +1 -1
- package/esm/components/CollaborationItem/TextFieldWithMentions/styles.js +0 -1
- package/esm/components/CollaborationPopup/CollaborationPopup.js +1 -1
- package/esm/components/CollaborationPopup/styles.d.ts +1 -1
- package/esm/components/CollapseButton/CollapseButton.d.ts +1 -1
- package/esm/components/CollapseButton/CollapseButton.js +1 -1
- package/esm/components/ColorBar/ColorBar.d.ts +8 -0
- package/esm/components/ColorBar/ColorBar.js +14 -0
- package/esm/components/ColoredSourceIcon/ColoredSourceIcon.js +1 -1
- package/esm/components/CommentsContainer/CommentsContainer.d.ts +1 -0
- package/esm/components/ConfigureColumnsPopup/ConfigureColumnsPopup.js +1 -1
- package/esm/components/ConfirmDeleteDialog/ConfirmDeleteDialog.d.ts +1 -0
- package/esm/components/ConnectionEditor/ConnectionEditor.d.ts +1 -0
- package/esm/components/ConnectionEditor/ConnectionEditor.js +6 -6
- package/esm/components/ConnectionEditor/styles.d.ts +1 -1
- package/esm/components/ConnectionRelationTypeSelector/ConnectionRelationTypeSelector.js +1 -1
- package/esm/components/DataTenantBadge/DataTenantBadge.d.ts +1 -0
- package/esm/components/DateIntervalSelector/DateIntervalSelector.d.ts +1 -0
- package/esm/components/Drawer/Drawer.d.ts +1 -0
- package/esm/components/DropDownMenuButton/DropDownMenuButton.d.ts +20 -0
- package/esm/components/DropDownMenuButton/DropDownMenuButton.js +50 -0
- package/esm/components/DropDownMenuButton/MenuItemRenderer.d.ts +8 -0
- package/esm/components/DropDownMenuButton/MenuItemRenderer.js +22 -0
- package/esm/components/DropDownMenuButton/styles.d.ts +1 -0
- package/esm/components/DropDownMenuButton/styles.js +26 -0
- package/esm/components/EmptySearchResult/styles.d.ts +1 -1
- package/esm/components/EmptyState/styles.d.ts +1 -1
- package/esm/components/EntityAvatar/EntityAvatar.d.ts +1 -0
- package/esm/components/EntityTypeBadge/EntityTypeBadge.d.ts +1 -0
- package/esm/components/EntityTypeBadge/EntityTypeBadge.js +1 -1
- package/esm/components/EntityTypeIcon/EntityTypeIcon.d.ts +1 -0
- package/esm/components/EntityUriLink/EntityUriLink.d.ts +2 -2
- package/esm/components/ErrorPopup/ErrorPopup.d.ts +1 -0
- package/esm/components/ErrorWrapper/ErrorMessage.d.ts +1 -0
- package/esm/components/ErrorWrapper/styles.d.ts +1 -1
- package/esm/components/ExpandableSearchInput/ExpandableSearchInput.d.ts +1 -0
- package/esm/components/ExpandableSearchInput/ExpandableSearchInput.js +1 -1
- package/esm/components/ExpandedValueTooltip/ExpandedValueTooltip.d.ts +11 -0
- package/esm/components/ExpandedValueTooltip/ExpandedValueTooltip.js +45 -0
- package/esm/components/FacetViewHeader/FacetViewHeader.d.ts +8 -0
- package/esm/components/FacetViewHeader/FacetViewHeader.js +10 -0
- package/esm/components/FacetViewHeader/styles.d.ts +1 -0
- package/esm/components/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.d.ts +1 -0
- package/esm/components/HierarchyNodeTitle/HierarchyNodeTitle.d.ts +1 -0
- package/esm/components/HierarchyNodeTitle/styles.d.ts +1 -1
- package/esm/components/Highlighter/Highlighter.d.ts +1 -0
- package/esm/components/Image/CheckedIcon/CheckedIcon.d.ts +8 -0
- package/esm/components/Image/Image.d.ts +33 -0
- package/esm/components/Image/Image.js +79 -0
- package/esm/components/Image/ImageActionsOverlay/ImageActionsOverlay.js +59 -0
- package/esm/components/Image/styles.d.ts +2 -0
- package/esm/components/ImageAttributesGallery/GalleryView/GalleryView.d.ts +1 -0
- package/esm/components/ImageAttributesGallery/GalleryView/GalleryView.js +2 -2
- package/esm/components/ImageAttributesGallery/HeaderLeft/HeaderLeft.d.ts +1 -0
- package/esm/components/ImageAttributesGallery/HeaderRight/HeaderRight.d.ts +1 -0
- package/esm/components/ImageAttributesGallery/HeaderRight/HeaderRight.js +1 -1
- package/esm/components/ImageAttributesGallery/ImageAttributesGallery.d.ts +1 -0
- package/esm/components/ImageDetailsView/ImageDetailsView.d.ts +1 -0
- package/esm/components/ImageDetailsView/ImageDetailsViewCarousel/ImageDetailsViewCarousel.d.ts +1 -0
- package/esm/components/ImageDetailsView/ImageDetailsViewCarousel/ImageDetailsViewCarousel.js +4 -4
- package/esm/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/Thumbnails.d.ts +1 -0
- package/esm/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/Thumbnails.js +1 -1
- package/esm/components/ImageDetailsView/ImageDetailsViewSidebar/ImageDetailsViewSidebar.d.ts +1 -0
- package/esm/components/ImageDetailsView/ImageDetailsViewSidebar/styles.d.ts +1 -1
- package/esm/components/ImageDetailsView/MetaInfo/MetaInfo.d.ts +1 -0
- package/esm/components/ImageDetailsView/MetaInfoForm/MetaInfoForm.d.ts +1 -0
- package/esm/components/ImageDetailsView/MetaInfoForm/MetaInfoForm.js +2 -2
- package/esm/components/ImageDetailsView/MetaInfoHeader/MetaInfoHeader.d.ts +1 -0
- package/esm/components/ImageDetailsView/MetaInfoHeader/MetaInfoHeader.js +2 -2
- package/esm/components/ImageDetailsView/MetaInfoList/MetaInfoItem/styles.d.ts +1 -1
- package/esm/components/ImageDetailsView/MetaInfoList/MetaInfoList.d.ts +1 -0
- package/esm/components/ImageDetailsView/MetaInfoList/MetaInfoList.js +2 -2
- package/esm/components/ImageGalleryDialog/ImageGalleryDialog.js +1 -1
- package/esm/components/ImageGalleryDialog/styles.d.ts +1 -1
- package/esm/components/ImportButton/ImportButton.d.ts +1 -0
- package/esm/components/ImportButton/ImportButton.js +1 -1
- package/esm/components/InternalLink/InternalLink.d.ts +3 -0
- package/esm/components/InternalLink/InternalLink.js +34 -0
- package/esm/components/LightArrowTooltip/LightArrowTooltip.d.ts +1 -0
- package/esm/components/LinearLoadIndicator/LinearLoadIndicator.d.ts +1 -0
- package/esm/components/LoadingSpinner/LoadingSpinner.d.ts +1 -0
- package/esm/components/LogicOperator/LogicOperator.d.ts +1 -0
- package/esm/components/LogicOperator/LogicOperator.js +2 -2
- package/esm/components/Marginator/Marginator.d.ts +1 -0
- package/esm/components/MatchRulesBlock/MatchRulesBadge/MatchRulesBadge.d.ts +1 -1
- package/esm/components/MatchRulesBlock/MatchRulesBadge/MatchRulesBadge.js +1 -1
- package/esm/components/MatchRulesBlock/MatchRulesBadge/styles.d.ts +1 -1
- package/esm/components/MatchRulesBlock/MatchRulesBlock.d.ts +1 -0
- package/esm/components/MatchRulesBlock/MatchRulesTitle.d.ts +1 -0
- package/esm/components/MatchRulesBlock/MatchRulesTooltip/MatchRulesTooltip.d.ts +1 -0
- package/esm/components/MatchRulesBlock/MatchRulesTooltip/styles.d.ts +1 -1
- package/esm/components/MatchRulesBlock/NotMatchRule/NotMatchRule.d.ts +1 -0
- package/esm/components/MatchRulesBlock/SimpleMatchRules/SimpleMatchRules.d.ts +1 -0
- package/esm/components/MatchRulesBlock/SimpleMatchRules/styles.d.ts +1 -1
- package/esm/components/MatchRulesBlock/SimpleMatchRules/styles.js +1 -2
- package/esm/components/MatchRulesBlock/SimpleMatchRulesBlock/SimpleMatchRulesBlock.d.ts +10 -10
- package/esm/components/MatchRulesBlock/SimpleMatchRulesBlock/styles.d.ts +1 -1
- package/esm/components/MatchRulesBlock/TransitiveMatchBlock/TransitiveMatchBlock.d.ts +10 -10
- package/esm/components/MatchRulesBlock/TransitiveMatchRules/TransitiveMatchRule.d.ts +1 -0
- package/esm/components/MatchRulesBlock/TransitiveMatchRules/TransitiveMatchRule.js +1 -1
- package/esm/components/MatchRulesBlock/TransitiveMatchRules/styles.d.ts +1 -1
- package/esm/components/MatchRulesBlock/TransitiveMatchRulesTooltip/TransitiveMatchRulesTooltip.d.ts +1 -0
- package/esm/components/MatchRulesSelector/MatchRulesSelector.d.ts +1 -0
- package/esm/components/MergeButton/MergeButton.d.ts +1 -1
- package/esm/components/MergeButton/MergeButton.js +1 -2
- package/esm/components/MetadataTypesSelector/ListLabel/ListLabel.d.ts +1 -0
- package/esm/components/MetadataTypesSelector/MetadataTypesSelector.js +1 -1
- package/esm/components/MetadataTypesSelector/SelectMetadataTypesList.d.ts +1 -1
- package/esm/components/MetadataTypesSelector/SelectMetadataTypesList.js +1 -1
- package/esm/components/ModeSwitcher/ModeSwitcher.js +1 -1
- package/esm/components/ModeSwitcher/styles.d.ts +1 -1
- package/esm/components/MultilineMenuItem/MultilineMenuItem.d.ts +11 -0
- package/esm/components/MultilineMenuItem/MultilineMenuItem.js +21 -0
- package/esm/components/MultilineMenuItem/styles.d.ts +1 -0
- package/esm/components/MultilineMenuItem/styles.js +20 -0
- package/esm/components/MultipleInput/MultipleInput.d.ts +1 -0
- package/esm/components/NotMatchButton/NotMatchButton.d.ts +2 -2
- package/esm/components/NotMatchButton/NotMatchButton.js +3 -4
- package/esm/components/Popper/Popper.d.ts +1 -1
- package/esm/components/PopupWithArrow/styles.d.ts +1 -1
- package/esm/components/PotentialMatchReviewCard/styles.d.ts +1 -1
- package/esm/components/ProfileBand/styles.d.ts +1 -1
- package/esm/components/ProfileBandNavigation/ProfileBandNavigation.d.ts +1 -0
- package/esm/components/ProfileBandNavigation/ProfileBandNavigationWidget.d.ts +12 -12
- package/esm/components/ProfileBandNavigation/ProfileBandNavigationWidget.js +1 -1
- package/esm/components/ProfileBandNavigation/styles.d.ts +1 -1
- package/esm/components/ProfileCard/ProfileCardContent/ProfileCardContent.d.ts +1 -0
- package/esm/components/ProfileCard/ProfileCardContent/ProfileCardContent.js +1 -1
- package/esm/components/ProfileCard/ProfileCardContent/styles.d.ts +1 -1
- package/esm/components/ProfileCard/ProfileCardPlaceholder/ProfileCardPlaceholder.d.ts +1 -0
- package/esm/components/ProfilesList/ProfilesList.d.ts +1 -0
- package/esm/components/ProfilesList/styles.d.ts +1 -1
- package/esm/components/QueryBuilderRow/components/ReadOnlyFilter.d.ts +1 -0
- package/esm/components/QueryBuilderRow/components/ReadOnlyLogicOperator.d.ts +1 -0
- package/esm/components/ReactSelect/MultiSelect/components/Option.js +1 -1
- package/esm/components/ReactSelect/commonComponents/Option.js +1 -1
- package/esm/components/ReactSelect/styles.d.ts +1 -1
- package/esm/components/RelationEditor/RelationEditor.js +3 -3
- package/esm/components/RelationEditor/styles.d.ts +1 -1
- package/esm/components/RelevanceScoreBadge/RelevanceScoreBadge.d.ts +1 -0
- package/esm/components/ReltioMap/MapControls/TopCenterMapControls/TopCenterMapControls.d.ts +1 -0
- package/esm/components/ReltioMap/MapControls/TopCenterMapControls/styles.d.ts +1 -1
- package/esm/components/ReltioMap/MapControls/TopRightMapControls/TopRightMapControls.d.ts +12 -12
- package/esm/components/ReltioMap/MapControls/TopRightMapControls/styles.d.ts +1 -1
- package/esm/components/ReltioMap/index.d.ts +1 -0
- package/esm/components/RequiredMark/RequiredMark.d.ts +1 -0
- package/esm/components/ScrollableTabs/ScrollableTabs.js +1 -1
- package/esm/components/ScrollableTabs/styles.d.ts +1 -1
- package/esm/components/SearchHighlighter/SearchHighlighter.d.ts +1 -0
- package/esm/components/SearchInput/SearchInput.js +1 -1
- package/esm/components/SearchInput/WhiteSearchInput.d.ts +1 -0
- package/esm/components/SearchInput/styles.d.ts +1 -1
- package/esm/components/SelectAttributesList/SelectAttributesList.js +3 -3
- package/esm/components/SelectionPopup/styles.d.ts +1 -1
- package/esm/components/SettingsMenu/SettingsMenu.d.ts +1 -0
- package/esm/components/SettingsMenu/SettingsMenu.js +2 -2
- package/esm/components/SideIconPanel/SideButtonsPanel.d.ts +7 -2
- package/esm/components/SideIconPanel/SideButtonsPanel.js +4 -5
- package/esm/components/SideIconPanel/styles.d.ts +1 -1
- package/esm/components/SidePanel/SidePanelContentHeader/SidePanelContentHeader.js +1 -1
- package/esm/components/SidePanel/SidePanelContentHeader/styles.d.ts +1 -1
- package/esm/components/SimpleDropDownSelector/styles.d.ts +1 -1
- package/esm/components/SmallIconButton/SmallIconButton.d.ts +9 -0
- package/esm/components/SmallIconButton/SmallIconButton.js +85 -0
- package/esm/components/SmallIconButton/index.d.ts +17 -0
- package/esm/components/SmallIconButton/index.js +4 -0
- package/esm/components/SourceIcon/SourceIcon.d.ts +11 -0
- package/esm/components/SourceIcon/SourceIcon.js +14 -0
- package/esm/components/SourceSystemsSelector/SourceSystemsSelector.d.ts +1 -0
- package/esm/components/StepNavigation/StepNavigation.d.ts +1 -0
- package/esm/components/StepNavigation/styles.d.ts +1 -1
- package/esm/components/TableSkeleton/TableSkeleton.d.ts +2 -2
- package/esm/components/TableSkeleton/TableSkeleton.js +1 -1
- package/esm/components/TenantIcon/TenantIcon.d.ts +1 -0
- package/esm/components/TenantLabel/TenantLabel.d.ts +1 -0
- package/esm/components/TenantsDropDownSelector/TenantsDropDownSelector.d.ts +1 -0
- package/esm/components/TenantsDropDownSelector/TenantsDropDownSelector.js +1 -2
- package/esm/components/Title/Title.d.ts +1 -0
- package/esm/components/UploadFileButton/UploadFileButton.js +1 -1
- package/esm/components/UploadFileButton/styles.d.ts +1 -1
- package/esm/components/UploadImageDialog/DividerWithText/DividerWithText.d.ts +1 -0
- package/esm/components/UploadImageDialog/DividerWithText/styles.d.ts +1 -1
- package/esm/components/UploadImageDialog/ErrorSnackbar/ErrorSnackbar.d.ts +1 -0
- package/esm/components/UploadImageDialog/ErrorSnackbar/ErrorSnackbar.js +1 -1
- package/esm/components/UploadImageDialog/ImageByUrlField/ImageByUrlField.d.ts +1 -0
- package/esm/components/UploadImageDialog/ImageByUrlField/styles.d.ts +1 -1
- package/esm/components/UploadImageDialog/SelectImageButton/SelectImageButton.d.ts +1 -0
- package/esm/components/UploadImageDialog/TargetBox/TargetBox.d.ts +1 -0
- package/esm/components/UploadImageDialog/TargetBox/styles.d.ts +1 -1
- package/esm/components/UploadImageDialog/UploadImageDialog.d.ts +1 -0
- package/esm/components/UserSelector/UserSelector.d.ts +1 -0
- package/esm/components/ValueChip/ValueChip.d.ts +1 -0
- package/esm/components/ValueChip/ValueChip.js +1 -1
- package/esm/components/ValueChip/styles.d.ts +1 -1
- package/esm/components/VerticalHeadingsTable/TableCell/TableCell.d.ts +1 -0
- package/esm/components/VerticalHeadingsTable/TableCellWithDnd/TableCellWithDnd.d.ts +1 -0
- package/esm/components/VerticalHeadingsTable/TableColumnDragLayer/TableColumnDragLayer.d.ts +1 -0
- package/esm/components/VerticalHeadingsTable/TableColumnDragLayer/TableColumnDragPreview.d.ts +1 -0
- package/esm/components/VerticalHeadingsTable/TableRow/TableRow.d.ts +1 -0
- package/esm/components/VerticalHeadingsTable/TableRowWithDnd/TableRowWithDnd.d.ts +1 -0
- package/esm/components/VerticalHeadingsTable/types.d.ts +1 -0
- package/esm/components/activityLog/ActivityExportButton/ActivityExportButton.d.ts +8 -0
- package/esm/components/activityLog/ActivityExportButton/ActivityExportButton.js +52 -0
- package/esm/components/activityLog/ActivityFilterButton/ActivityFilterButton.d.ts +10 -0
- package/esm/components/activityLog/ActivityFilterButton/ActivityFilterButton.js +39 -0
- package/esm/components/activityLog/ActivityFilterEditor/ActivityFilterEditor.d.ts +14 -0
- package/esm/components/activityLog/ActivityFilterEditor/ActivityFilterEditor.js +47 -0
- package/esm/components/activityLog/ActivityFilterEditor/ActivitySelector.d.ts +9 -0
- package/esm/components/activityLog/ActivityFilterEditor/ActivitySelector.js +28 -0
- package/esm/components/activityLog/ActivityFilterEditor/DateRangeSelector.d.ts +8 -0
- package/esm/components/activityLog/ActivityFilterEditor/DateRangeSelector.js +96 -0
- package/esm/components/activityLog/ActivityFilterEditor/EntityChangedSelectors.d.ts +10 -0
- package/esm/components/activityLog/ActivityFilterEditor/EntityChangedSelectors.js +21 -0
- package/esm/components/activityLog/ActivityFilterEditor/EntityTypesSelector.d.ts +9 -0
- package/esm/components/activityLog/ActivityFilterEditor/EntityTypesSelector.js +24 -0
- package/esm/components/activityLog/ActivityFilterEditor/SourceSelector.d.ts +8 -0
- package/esm/components/activityLog/ActivityFilterEditor/SourceSelector.js +24 -0
- package/esm/components/activityLog/ActivityFilterEditor/styles.d.ts +5 -0
- package/esm/components/activityLog/ActivityFilterEditor/utils/getSelectorActivityTypes.js +31 -0
- package/esm/components/activityLog/ActivityLog/ActivityLog.d.ts +8 -0
- package/esm/components/activityLog/ActivityLog/ActivityLog.js +44 -0
- package/esm/components/activityLog/ActivityLog/items/ActivityItem/ActivityItem.d.ts +7 -0
- package/esm/components/activityLog/ActivityLog/items/ActivityItem/ActivityItem.js +22 -0
- package/esm/components/activityLog/ActivityLog/items/GroupItem/GroupItem.d.ts +8 -0
- package/esm/components/activityLog/ActivityLog/items/GroupItem/GroupItem.js +17 -0
- package/esm/components/activityLog/ActivityLogFilter/ActivityLogFilter.d.ts +12 -0
- package/esm/components/activityLog/ActivityLogFilter/ActivityLogFilter.js +37 -0
- package/esm/components/activityLog/ActivityLogFilter/styles.d.ts +1 -0
- package/esm/components/activityLog/activities/ActivitiesFactory.d.ts +11 -0
- package/esm/components/activityLog/activities/ActivitiesFactory.js +122 -0
- package/esm/components/activityLog/activities/ActivityTitle/ActivityTitle.d.ts +8 -0
- package/esm/components/activityLog/activities/ActivityTitle/ActivityTitle.js +11 -0
- package/esm/components/activityLog/activities/CommentActivity.d.ts +8 -0
- package/esm/components/activityLog/activities/CommentActivity.js +7 -0
- package/esm/components/activityLog/activities/EntityObject/EntityObject.d.ts +7 -0
- package/esm/components/activityLog/activities/EntityObject/EntityObject.js +14 -0
- package/esm/components/activityLog/activities/GroupActivity.d.ts +8 -0
- package/esm/components/activityLog/activities/GroupActivity.js +15 -0
- package/esm/components/activityLog/activities/MergeActivity.d.ts +8 -0
- package/esm/components/activityLog/activities/MergeActivity.js +14 -0
- package/esm/components/activityLog/activities/MoreItemsLink/MoreItemsLink.d.ts +9 -0
- package/esm/components/activityLog/activities/PotentialMatchActivity.d.ts +8 -0
- package/esm/components/activityLog/activities/PotentialMatchActivity.js +11 -0
- package/esm/components/activityLog/activities/ProfileActivity.d.ts +8 -0
- package/esm/components/activityLog/activities/ProfileActivity.js +14 -0
- package/esm/components/activityLog/activities/RelationActivity.d.ts +8 -0
- package/esm/components/activityLog/activities/RelationActivity.js +14 -0
- package/esm/components/activityLog/activities/RelationObject/RelationObject.d.ts +7 -0
- package/esm/components/activityLog/activities/RelationObject/RelationObject.js +15 -0
- package/esm/components/activityLog/activities/SearchActivity.d.ts +8 -0
- package/esm/components/activityLog/activities/SearchActivity.js +22 -0
- package/esm/components/activityLog/activities/SimpleActivity.d.ts +8 -0
- package/esm/components/activityLog/activities/SimpleActivity.js +17 -0
- package/esm/components/activityLog/activities/SynchronizationIssuesActivity.d.ts +8 -0
- package/esm/components/activityLog/activities/SynchronizationIssuesActivity.js +20 -0
- package/esm/components/activityLog/activities/fields/DeltaField.d.ts +7 -0
- package/esm/components/activityLog/activities/fields/DeltaField.js +37 -0
- package/esm/components/activityLog/activities/fields/PotentialMatchField.d.ts +7 -0
- package/esm/components/activityLog/activities/fields/PotentialMatchField.js +47 -0
- package/esm/components/activityLog/activities/fields/commonStyles.d.ts +1 -0
- package/esm/components/activityLog/activities/fields/commonStyles.js +19 -0
- package/esm/components/activityLog/activities/fields/styles.d.ts +1 -0
- package/esm/components/activityLog/activities/fields/styles.js +39 -0
- package/esm/components/activityLog/activities/records/CollapsibleActivityRecords.d.ts +9 -0
- package/esm/components/activityLog/activities/records/CollapsibleActivityRecords.js +14 -0
- package/esm/components/activityLog/activities/records/EntityRecord.d.ts +7 -0
- package/esm/components/activityLog/activities/records/EntityRecord.js +39 -0
- package/esm/components/activityLog/activities/records/PotentialMatchRecord.d.ts +7 -0
- package/esm/components/activityLog/activities/records/PotentialMatchRecord.js +14 -0
- package/esm/components/activityLog/activities/records/RecordUpdates.d.ts +8 -0
- package/esm/components/activityLog/activities/records/RecordUpdates.js +18 -0
- package/esm/components/activityLog/activities/records/RelationRecord.d.ts +7 -0
- package/esm/components/activityLog/activities/records/RelationRecord.js +18 -0
- package/esm/components/activityLog/activities/records/styles.d.ts +1 -0
- package/esm/components/activityLog/activities/records/styles.js +35 -0
- package/esm/components/activityLog/activities/styles.d.ts +1 -0
- package/esm/components/activityLog/activities/styles.js +18 -0
- package/esm/components/activityLog/contexts/CollapsibleItemsContext/index.d.ts +15 -0
- package/esm/components/activityLog/hooks/useActivitiesLoader.js +60 -0
- package/esm/components/activityLog/index.d.ts +5 -0
- package/esm/components/activityLog/index.js +5 -0
- package/esm/components/activityLog/types/ActivitiesFilter.d.ts +12 -0
- package/esm/components/activityLog/types/ActivityData.d.ts +10 -0
- package/esm/components/activityLog/types/ActivityDelta.d.ts +7 -0
- package/esm/components/activityLog/types/ActivityItem.d.ts +27 -0
- package/esm/components/activityLog/types/ActivityTypes.d.ts +31 -0
- package/esm/components/activityLog/types/ActivityTypes.js +32 -0
- package/esm/components/activityLog/types/DeltaTypes.d.ts +5 -0
- package/esm/components/activityLog/types/DeltaTypes.js +6 -0
- package/esm/components/activityLog/types/DeltaValue.d.ts +10 -0
- package/esm/components/activityLog/types/index.d.ts +7 -0
- package/esm/components/activityLog/types/index.js +2 -0
- package/esm/components/attributes/AttributesView/AttributesView.d.ts +4 -0
- package/esm/components/attributes/AttributesView/AttributesView.js +36 -0
- package/esm/components/attributes/BranchDecorator/BranchDecorator.d.ts +9 -0
- package/esm/components/attributes/BranchDecorator/BranchDecorator.js +11 -0
- package/esm/components/attributes/BranchDecorator/styles.d.ts +1 -0
- package/esm/components/attributes/DescriptionIcon/DescriptionIcon.d.ts +8 -0
- package/esm/components/attributes/DescriptionIcon/DescriptionIcon.js +18 -0
- package/esm/components/attributes/DescriptionIcon/index.d.ts +1 -0
- package/esm/components/attributes/DescriptionIcon/index.js +1 -0
- package/esm/components/attributes/ImageAttributesLine/ImageAttributesLine.d.ts +27 -0
- package/esm/components/attributes/ImageAttributesLine/ImageAttributesLine.js +112 -0
- package/esm/components/attributes/ImageAttributesLine/constants.d.ts +9 -0
- package/esm/components/attributes/ImageAttributesLine/constants.js +6 -0
- package/esm/components/attributes/ImageAttributesLine/index.d.ts +1 -0
- package/esm/components/attributes/ImageAttributesLine/index.js +1 -0
- package/esm/components/attributes/ImageAttributesLine/styles.d.ts +6 -0
- package/esm/components/attributes/OvIcon/OvIcon.d.ts +38 -0
- package/esm/components/attributes/OvIcon/OvIcon.js +31 -0
- package/esm/components/attributes/OvIcon/heplers.d.ts +4 -0
- package/esm/components/attributes/OvIcon/heplers.js +7 -0
- package/esm/components/attributes/OvIcon/index.d.ts +1 -0
- package/esm/components/attributes/OvIcon/index.js +1 -0
- package/esm/components/attributes/OvIcon/styles.d.ts +1 -0
- package/esm/components/attributes/PivotingAttributes/PivotingTooltip.js +52 -0
- package/esm/components/attributes/PivotingAttributes/PivotingTooltipContent.d.ts +11 -0
- package/esm/components/attributes/PivotingAttributes/PivotingTooltipContent.js +25 -0
- package/esm/components/attributes/PivotingAttributes/styles.d.ts +2 -0
- package/esm/components/attributes/PivotingAttributes/styles.js +101 -0
- package/esm/components/attributes/editMode/AttributesFactory/Attribute.d.ts +7 -0
- package/esm/components/attributes/editMode/AttributesFactory/Attribute.js +19 -0
- package/esm/components/attributes/editMode/AttributesFactory/AttributesFactory.d.ts +3 -0
- package/esm/components/attributes/editMode/AttributesFactory/AttributesFactory.js +47 -0
- package/esm/components/attributes/editMode/AttributesList/AttributesList.js +93 -0
- package/esm/components/attributes/editMode/AttributesList/index.d.ts +1 -0
- package/esm/components/attributes/editMode/AttributesList/index.js +1 -0
- package/esm/components/attributes/editMode/AttributesPager/AttributeRenderer.d.ts +17 -0
- package/esm/components/attributes/editMode/AttributesPager/AttributeRenderer.js +100 -0
- package/esm/components/attributes/editMode/AttributesPager/AttributesPager.d.ts +4 -0
- package/esm/components/attributes/editMode/AttributesPager/AttributesPager.js +85 -0
- package/esm/components/attributes/editMode/AttributesPager/CardinalityMessage.d.ts +7 -0
- package/esm/components/attributes/editMode/AttributesPager/CardinalityMessage.js +64 -0
- package/esm/components/attributes/editMode/AttributesPager/ImageLineRenderer.d.ts +19 -0
- package/esm/components/attributes/editMode/AttributesPager/ImageLineRenderer.js +30 -0
- package/esm/components/attributes/editMode/AttributesPager/SpecialRenderer.d.ts +19 -0
- package/esm/components/attributes/editMode/AttributesPager/SpecialRenderer.js +90 -0
- package/esm/components/attributes/editMode/AttributesPager/index.d.ts +2 -0
- package/esm/components/attributes/editMode/AttributesPager/index.js +2 -0
- package/esm/components/attributes/editMode/AttributesPager/styles.d.ts +1 -0
- package/esm/components/attributes/editMode/AttributesPager/types.d.ts +21 -0
- package/esm/components/attributes/editMode/AttributesPager/utils.d.ts +2 -0
- package/esm/components/attributes/editMode/AttributesPager/utils.js +4 -0
- package/esm/components/attributes/editMode/AttributesView/AttributesView.d.ts +5 -0
- package/esm/components/attributes/editMode/AttributesView/AttributesView.js +30 -0
- package/esm/components/attributes/editMode/ComplexAttribute/ComplexAttribute.js +104 -0
- package/esm/components/attributes/editMode/EntityCreator/EntityCreator.d.ts +10 -0
- package/esm/components/attributes/editMode/EntityCreator/EntityCreator.js +14 -0
- package/esm/components/attributes/editMode/EntitySelector/EntitySelector.d.ts +33 -0
- package/esm/components/attributes/editMode/EntitySelector/EntitySelector.js +124 -0
- package/esm/components/attributes/editMode/EntitySelector/components/ClearIndicator.d.ts +8 -0
- package/esm/components/attributes/editMode/EntitySelector/components/ClearIndicator.js +15 -0
- package/esm/components/attributes/editMode/EntitySelector/components/EntityOption.d.ts +23 -0
- package/esm/components/attributes/editMode/EntitySelector/components/EntityOption.js +55 -0
- package/esm/components/attributes/editMode/EntitySelector/components/EntityTypeOption.d.ts +19 -0
- package/esm/components/attributes/editMode/EntitySelector/components/EntityTypeOption.js +40 -0
- package/esm/components/attributes/editMode/EntitySelector/components/Group.d.ts +10 -0
- package/esm/components/attributes/editMode/EntitySelector/components/Group.js +35 -0
- package/esm/components/attributes/editMode/EntitySelector/components/SingleValue.d.ts +15 -0
- package/esm/components/attributes/editMode/EntitySelector/components/SingleValue.js +57 -0
- package/esm/components/attributes/editMode/EntitySelector/components/styles.d.ts +4 -0
- package/esm/components/attributes/editMode/EntitySelector/components/styles.js +87 -0
- package/esm/components/attributes/editMode/EntitySelector/styles.d.ts +1 -0
- package/esm/components/attributes/editMode/ImageAttributesLine/ImageAttributesLine.d.ts +16 -0
- package/esm/components/attributes/editMode/ImageAttributesLine/ImageAttributesLine.js +81 -0
- package/esm/components/attributes/editMode/ImageAttributesLine/index.d.ts +2 -0
- package/esm/components/attributes/editMode/ImageAttributesLine/index.js +2 -0
- package/esm/components/attributes/editMode/ImageAttributesLine/styles.d.ts +2 -0
- package/esm/components/attributes/editMode/MoreAttributesButton/MoreAttributesButton.d.ts +12 -0
- package/esm/components/attributes/editMode/MoreAttributesButton/MoreAttributesButton.js +77 -0
- package/esm/components/attributes/editMode/MoreAttributesButton/helpers.d.ts +9 -0
- package/esm/components/attributes/editMode/MoreAttributesButton/index.d.ts +1 -0
- package/esm/components/attributes/editMode/MoreAttributesButton/index.js +1 -0
- package/esm/components/attributes/editMode/MoreAttributesButton/styles.d.ts +1 -0
- package/esm/components/attributes/editMode/MoreAttributesButton/useMoreAttributesItems.js +62 -0
- package/esm/components/attributes/editMode/NestedAttribute/NestedAttribute.d.ts +121 -0
- package/esm/components/attributes/editMode/NestedAttribute/NestedAttribute.js +21 -0
- package/esm/components/attributes/editMode/ReferenceAttribute/ReferenceAttribute.js +132 -0
- package/esm/components/attributes/editMode/ReferenceAttribute/styles.d.ts +1 -0
- package/esm/components/attributes/editMode/RelationTypeSelector/RelationTypeSelector.d.ts +27 -0
- package/esm/components/attributes/editMode/RelationTypeSelector/RelationTypeSelector.js +48 -0
- package/esm/components/attributes/editMode/RelationTypeSelector/components/RelationOption.d.ts +21 -0
- package/esm/components/attributes/editMode/RelationTypeSelector/components/RelationOption.js +52 -0
- package/esm/components/attributes/editMode/RelationTypeSelector/components/styles.d.ts +1 -0
- package/esm/components/attributes/editMode/RelationTypeSelector/components/styles.js +52 -0
- package/esm/components/attributes/editMode/Roles/Roles.d.ts +9 -0
- package/esm/components/attributes/editMode/Roles/Roles.js +43 -0
- package/esm/components/attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +3 -0
- package/esm/components/attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor.js +135 -0
- package/esm/components/attributes/editMode/SimpleAttributeEditor/styles.d.ts +1 -0
- package/esm/components/attributes/editMode/SimpleAttributeEditor/useAttributeValuePermissions.js +10 -0
- package/esm/components/attributes/editMode/SimpleAttributeEditor/useAutopopulationContextValue.js +25 -0
- package/esm/components/attributes/editMode/SimpleAttributeEditor/utils.d.ts +5 -0
- package/esm/components/attributes/editMode/SimpleAttributeEditor/utils.js +57 -0
- package/esm/components/attributes/editMode/Tags/Tags.d.ts +10 -0
- package/esm/components/attributes/editMode/Tags/Tags.js +89 -0
- package/esm/components/attributes/editMode/Tags/index.d.ts +1 -0
- package/esm/components/attributes/editMode/Tags/index.js +1 -0
- package/esm/components/attributes/editMode/hooks/useScrollToAttribute/useScrollToAttribute.d.ts +9 -0
- package/esm/components/attributes/helpers/attributesView.d.ts +8 -0
- package/esm/components/attributes/helpers/attributesView.js +17 -0
- package/esm/components/attributes/inline/AttributesList/AttributesList.d.ts +24 -0
- package/esm/components/attributes/inline/AttributesList/AttributesList.js +37 -0
- package/esm/components/attributes/inline/AttributesPager/AttributesPager.d.ts +27 -0
- package/esm/components/attributes/inline/AttributesPager/AttributesPager.js +72 -0
- package/esm/components/attributes/inline/ComplexAttribute/ComplexAttribute.d.ts +26 -0
- package/esm/components/attributes/inline/ComplexAttribute/ComplexAttribute.js +51 -0
- package/esm/components/attributes/inline/ImageAttribute/ImageAttribute.d.ts +23 -0
- package/esm/components/attributes/inline/ImageAttribute/ImageAttribute.js +34 -0
- package/esm/components/attributes/inline/ImageAttributesBlock/ImageAttributesBlock.d.ts +24 -0
- package/esm/components/attributes/inline/ImageAttributesBlock/ImageAttributesBlock.js +29 -0
- package/esm/components/attributes/inline/NestedAttribute/NestedAttribute.d.ts +23 -0
- package/esm/components/attributes/inline/NestedAttribute/NestedAttribute.js +32 -0
- package/esm/components/attributes/inline/NestedAttributesBlock/NestedAttributesBlock.d.ts +25 -0
- package/esm/components/attributes/inline/NestedAttributesBlock/NestedAttributesBlock.js +39 -0
- package/esm/components/attributes/inline/ReferenceAttribute/ReferenceAttribute.d.ts +23 -0
- package/esm/components/attributes/inline/ReferenceAttribute/ReferenceAttribute.js +44 -0
- package/esm/components/attributes/inline/ReferenceAttributesBlock/ReferenceAttributesBlock.d.ts +24 -0
- package/esm/components/attributes/inline/ReferenceAttributesBlock/ReferenceAttributesBlock.js +29 -0
- package/esm/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/CrosswalkMenuItem.d.ts +18 -0
- package/esm/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/CrosswalkMenuItem.js +26 -0
- package/esm/components/attributes/inline/SimpleAttribute/SimpleAttribute.d.ts +22 -0
- package/esm/components/attributes/inline/SimpleAttribute/SimpleAttribute.js +95 -0
- package/esm/components/attributes/inline/SimpleAttribute/index.d.ts +1 -0
- package/esm/components/attributes/inline/SimpleAttribute/index.js +1 -0
- package/esm/components/attributes/inline/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +13 -0
- package/esm/components/attributes/inline/SimpleAttributeEditor/SimpleAttributeEditor.js +74 -0
- package/esm/components/attributes/inline/SimpleAttributesBlock/SimpleAttributesBlock.d.ts +24 -0
- package/esm/components/attributes/inline/SimpleAttributesBlock/SimpleAttributesBlock.js +60 -0
- package/esm/components/attributes/inline/common/ComplexAttributeLabel.js +8 -0
- package/esm/components/attributes/inline/common/CrosswalkIcon.d.ts +8 -0
- package/esm/components/attributes/inline/common/CrosswalkIcon.js +17 -0
- package/esm/components/attributes/inline/common/DeleteButton.d.ts +6 -0
- package/esm/components/attributes/inline/common/DeleteButton.js +9 -0
- package/esm/components/attributes/inline/common/IgnoreButton.d.ts +8 -0
- package/esm/components/attributes/inline/common/IgnoreButton.js +10 -0
- package/esm/components/attributes/inline/common/PinButton.d.ts +8 -0
- package/esm/components/attributes/inline/common/PinButton.js +10 -0
- package/esm/components/attributes/inline/common/SourceItem.d.ts +10 -0
- package/esm/components/attributes/inline/common/SourceItem.js +24 -0
- package/esm/components/attributes/inline/common/styles.d.ts +9 -0
- package/esm/components/attributes/inline/common/styles.js +62 -0
- package/esm/components/attributes/inline/index.d.ts +5 -0
- package/esm/components/attributes/inline/index.js +5 -0
- package/esm/components/attributes/inline/types/AddAttributeEvent.d.ts +7 -0
- package/esm/components/attributes/inline/types/CrosswalksMap.d.ts +8 -0
- package/esm/components/attributes/inline/types/DeleteAttributeEvent.d.ts +6 -0
- package/esm/components/attributes/inline/types/EditAttributeEvent.d.ts +7 -0
- package/esm/components/attributes/inline/types/IgnoreAttributeEvent.d.ts +4 -0
- package/esm/components/attributes/inline/types/PinAttributeEvent.d.ts +4 -0
- package/esm/components/attributes/inline/types/index.d.ts +6 -0
- package/esm/components/attributes/pagersCommon/ShowLess.d.ts +6 -0
- package/esm/components/attributes/pagersCommon/ShowLess.js +13 -0
- package/esm/components/attributes/pagersCommon/ShowMore.d.ts +8 -0
- package/esm/components/attributes/pagersCommon/ShowMore.js +15 -0
- package/esm/components/attributes/pagersCommon/styles.d.ts +1 -0
- package/esm/components/attributes/pagersCommon/styles.js +10 -0
- package/esm/components/attributes/readMode/AttributeValuesBlock/AttributeValuesBlock.d.ts +17 -0
- package/esm/components/attributes/readMode/AttributeValuesBlock/AttributeValuesBlock.js +49 -0
- package/esm/components/attributes/readMode/AttributesFactory/Attribute.d.ts +2 -0
- package/esm/components/attributes/readMode/AttributesFactory/Attribute.js +6 -0
- package/esm/components/attributes/readMode/AttributesFactory/AttributesFactory.d.ts +3 -0
- package/esm/components/attributes/readMode/AttributesFactory/AttributesFactory.js +33 -0
- package/esm/components/attributes/readMode/AttributesList/AttributesList.d.ts +15 -0
- package/esm/components/attributes/readMode/AttributesList/AttributesList.js +47 -0
- package/esm/components/attributes/readMode/AttributesList/index.d.ts +1 -0
- package/esm/components/attributes/readMode/AttributesList/index.js +1 -0
- package/esm/components/attributes/readMode/AttributesPager/AttributesPager.js +60 -0
- package/esm/components/attributes/readMode/AttributesPager/ImageLineRenderer.d.ts +12 -0
- package/esm/components/attributes/readMode/AttributesPager/ImageLineRenderer.js +15 -0
- package/esm/components/attributes/readMode/AttributesPager/MultiLineRenderer.d.ts +17 -0
- package/esm/components/attributes/readMode/AttributesPager/MultiLineRenderer.js +45 -0
- package/esm/components/attributes/readMode/AttributesPager/OneLineRenderer.d.ts +13 -0
- package/esm/components/attributes/readMode/AttributesPager/OneLineRenderer.js +28 -0
- package/esm/components/attributes/readMode/AttributesPager/SpecialRenderer.d.ts +8 -0
- package/esm/components/attributes/readMode/AttributesPager/SpecialRenderer.js +35 -0
- package/esm/components/attributes/readMode/AttributesPager/styles.d.ts +3 -0
- package/esm/components/attributes/readMode/AttributesView/AttributesView.d.ts +5 -0
- package/esm/components/attributes/readMode/AttributesView/AttributesView.js +32 -0
- package/esm/components/attributes/readMode/ComplexAttribute/ComplexAttribute.d.ts +46 -0
- package/esm/components/attributes/readMode/ComplexAttribute/ComplexAttribute.js +66 -0
- package/esm/components/attributes/readMode/ComplexAttribute/styles.d.ts +1 -0
- package/esm/components/attributes/readMode/ComplexAttribute/styles.js +20 -0
- package/esm/components/attributes/readMode/ImageAttributesLine/ImageAttributesLine.d.ts +14 -0
- package/esm/components/attributes/readMode/ImageAttributesLine/ImageAttributesLine.js +30 -0
- package/esm/components/attributes/readMode/ImageAttributesLine/cross.inline.svg.d.ts +1 -0
- package/esm/components/attributes/readMode/ImageAttributesLine/cross.inline.svg.js +1 -0
- package/esm/components/attributes/readMode/ImageAttributesLine/index.d.ts +1 -0
- package/esm/components/attributes/readMode/ImageAttributesLine/index.js +1 -0
- package/esm/components/attributes/readMode/ImageAttributesLine/styles.d.ts +2 -0
- package/esm/components/attributes/readMode/ImageAttributesLine/styles.js +86 -0
- package/esm/components/attributes/readMode/NestedAttribute/NestedAttribute.js +49 -0
- package/esm/components/attributes/readMode/NestedAttribute/index.d.ts +1 -0
- package/esm/components/attributes/readMode/NestedAttribute/index.js +1 -0
- package/esm/components/attributes/readMode/ReferenceAttribute/ReferenceAttribute.d.ts +5 -0
- package/esm/components/attributes/readMode/ReferenceAttribute/ReferenceAttribute.js +56 -0
- package/esm/components/attributes/readMode/ReferenceAttribute/index.d.ts +2 -0
- package/esm/components/attributes/readMode/ReferenceAttribute/index.js +2 -0
- package/esm/components/attributes/readMode/ReferenceAttribute/styles.d.ts +2 -0
- package/esm/components/attributes/readMode/ReferenceAttribute/styles.js +23 -0
- package/esm/components/attributes/readMode/SimpleAttribute/SimpleAttribute.d.ts +10 -0
- package/esm/components/attributes/readMode/SimpleAttribute/SimpleAttribute.js +40 -0
- package/esm/components/attributes/readMode/SimpleAttribute/index.d.ts +1 -0
- package/esm/components/attributes/readMode/SimpleAttribute/index.js +1 -0
- package/esm/components/attributes/readMode/SimpleAttribute/styles.d.ts +1 -0
- package/esm/components/attributes/readMode/SimpleAttribute/styles.js +40 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/Role.d.ts +6 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/Role.js +16 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/Roles.d.ts +7 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/Roles.js +8 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/index.d.ts +1 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/index.js +1 -0
- package/esm/components/attributes/readMode/SpecialAttributes/SpecialAttributesArray.d.ts +9 -0
- package/esm/components/attributes/readMode/SpecialAttributes/SpecialAttributesArray.js +8 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/Tag.d.ts +6 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/Tag.js +24 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/Tags.d.ts +8 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/Tags.js +8 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/index.d.ts +1 -0
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/index.js +1 -0
- package/esm/components/attributes/readMode/helpers/commonStyles.d.ts +1 -0
- package/esm/components/attributes/readMode/helpers/commonStyles.js +4 -0
- package/esm/components/attributes/types/attributes.d.ts +24 -0
- package/esm/components/attributes/types/attributesView.d.ts +11 -0
- package/esm/components/attributes/types/index.d.ts +2 -0
- package/esm/components/attributes/types/index.js +2 -0
- package/esm/components/charts/ActiveShape/ActiveShape.d.ts +10 -0
- package/esm/components/charts/ActiveShape/ActiveShape.js +47 -0
- package/esm/components/charts/BarChart/BarChart.d.ts +4 -0
- package/esm/components/charts/BarChart/BarChart.js +32 -0
- package/esm/components/charts/BarChart/getBarChartSettings.d.ts +13 -0
- package/esm/components/charts/BarChart/getBarChartSettings.js +52 -0
- package/esm/components/charts/BubbleChart/BubbleChart.d.ts +11 -0
- package/esm/components/charts/BubbleChart/BubbleChart.js +58 -0
- package/esm/components/charts/BubbleChart/helpers.d.ts +7 -0
- package/esm/components/charts/BubbleChart/helpers.js +25 -0
- package/esm/components/charts/BubbleChart/useBubbles.d.ts +14 -0
- package/esm/components/charts/BubbleChart/useBubbles.js +16 -0
- package/esm/components/charts/ChartsFactory.d.ts +5 -0
- package/esm/components/charts/ChartsFactory.js +51 -0
- package/esm/components/charts/CloudChart/CloudChart.d.ts +11 -0
- package/esm/components/charts/CloudChart/CloudChart.js +46 -0
- package/esm/components/charts/CloudChart/useCloud.d.ts +13 -0
- package/esm/components/charts/CloudChart/useCloud.js +31 -0
- package/esm/components/charts/CustomLegend/CustomLegend.d.ts +7 -0
- package/esm/components/charts/CustomLegend/CustomLegend.js +12 -0
- package/esm/components/charts/CustomLegend/getLegendProps.d.ts +3 -0
- package/esm/components/charts/CustomLegend/getLegendProps.js +18 -0
- package/esm/components/charts/CustomLegend/styles.d.ts +1 -0
- package/esm/components/charts/CustomTooltip/CustomTooltip.d.ts +3 -0
- package/esm/components/charts/CustomTooltip/CustomTooltip.js +22 -0
- package/esm/components/charts/HOCs/withPercents.d.ts +11 -0
- package/esm/components/charts/HOCs/withPercents.js +39 -0
- package/esm/components/charts/LineChart/LineChart.d.ts +4 -0
- package/esm/components/charts/LineChart/LineChart.js +28 -0
- package/esm/components/charts/LineChart/getLineChartSettings.d.ts +13 -0
- package/esm/components/charts/LineChart/getLineChartSettings.js +60 -0
- package/esm/components/charts/MapChart/Legend/Legend.d.ts +9 -0
- package/esm/components/charts/MapChart/Legend/Legend.js +17 -0
- package/esm/components/charts/MapChart/Legend/styles.d.ts +6 -0
- package/esm/components/charts/MapChart/MapChart.d.ts +12 -0
- package/esm/components/charts/MapChart/MapChart.js +83 -0
- package/esm/components/charts/MapChart/useGeography.js +23 -0
- package/esm/components/charts/PieChart/PieChart.d.ts +12 -0
- package/esm/components/charts/PieChart/PieChart.js +43 -0
- package/esm/components/charts/TableWithBars/TableWithBars.d.ts +4 -0
- package/esm/components/charts/TableWithBars/TableWithBars.js +51 -0
- package/esm/components/charts/TableWithBars/cell-renderers/AttributeCellRenderer.js +23 -0
- package/esm/components/charts/TableWithBars/cell-renderers/HeadCellRenderer.d.ts +9 -0
- package/esm/components/charts/TableWithBars/cell-renderers/HeadCellRenderer.js +35 -0
- package/esm/components/charts/TableWithBars/cell-renderers/NumberCellValueRenderer.d.ts +9 -0
- package/esm/components/charts/TableWithBars/cell-renderers/NumberCellValueRenderer.js +15 -0
- package/esm/components/charts/TableWithBars/cell-renderers/styles.d.ts +1 -0
- package/esm/components/charts/TableWithBars/cell-renderers/styles.js +68 -0
- package/esm/components/charts/TreeChart/TreeChart.d.ts +4 -0
- package/esm/components/charts/TreeChart/TreeChart.js +47 -0
- package/esm/components/charts/hooks/useClickableStyle.d.ts +1 -0
- package/esm/components/charts/hooks/useClickableStyle.js +10 -0
- package/esm/components/charts/hooks/useTooltipState.d.ts +8 -0
- package/esm/components/charts/hooks/useTooltipState.js +28 -0
- package/esm/components/charts/index.d.ts +8 -0
- package/esm/components/charts/index.js +7 -0
- package/esm/components/charts/types/charts.d.ts +51 -0
- package/esm/components/charts/types/index.d.ts +1 -0
- package/esm/components/commonReactSelectComponents/DropdownIndicatorWithIconButton.js +1 -1
- package/esm/components/commonReactSelectComponents/MenuList.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/AddAttributesButton/AddAttributesButton.d.ts +1 -1
- package/esm/components/crosswalks/AttributesTable/AddAttributesButton/AddAttributesButton.js +2 -2
- package/esm/components/crosswalks/AttributesTable/AttributesTable.d.ts +1 -1
- package/esm/components/crosswalks/AttributesTable/AttributesTable.js +2 -4
- package/esm/components/crosswalks/AttributesTable/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/cell-renderers/AttributeValuesRenderer.d.ts +1 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/AttributeValuesRenderer.js +1 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/AttributesHeadCellRenderer.js +1 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/CommonRowCellRenderer.d.ts +1 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/CommonRowCellRenderer.js +1 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/CountRenderer.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/cell-renderers/DefaultCellValueRenderer.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/cell-renderers/OvValuesRenderer.js +2 -5
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RowCellRenderer.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.js +2 -2
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RuleTypeRenderer.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/cell-renderers/WinnerSourcesRenderer.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/cell-renderers/WinnerSourcesRenderer.js +1 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/AttributesFactory.d.ts +2 -2
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ImageAttributesRenderer.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ImageAttributesRenderer.js +1 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/NestedAttributesRenderer.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/NestedAttributesRenderer.js +1 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ReferenceAttributesRenderer.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/ReferenceAttributesRenderer.js +1 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/SimpleAttributesRenderer.d.ts +1 -0
- package/esm/components/crosswalks/AttributesTable/cell-renderers/attribute-renderers/SimpleAttributesRenderer.js +1 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/styles.d.ts +1 -1
- package/esm/components/crosswalks/AttributesTable/helpers.d.ts +1 -1
- package/esm/components/crosswalks/CopyableValueField/CopyableValueField.d.ts +1 -0
- package/esm/components/crosswalks/CopyableValueField/CopyableValueField.js +1 -1
- package/esm/components/crosswalks/CopyableValueField/styles.d.ts +1 -1
- package/esm/components/crosswalks/CrosswalkAttributes/CrosswalkAttributes.d.ts +1 -0
- package/esm/components/crosswalks/CrosswalkAttributes/CrosswalkAttributes.js +3 -3
- package/esm/components/crosswalks/CrosswalkAttributes/styles.d.ts +1 -1
- package/esm/components/crosswalks/CrosswalkDateEditor/CrosswalkDateEditor.d.ts +1 -0
- package/esm/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.d.ts +1 -0
- package/esm/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.js +1 -1
- package/esm/components/crosswalks/CrosswalkEditor/CrosswalkEditor.d.ts +1 -0
- package/esm/components/crosswalks/CrosswalkRow/CrosswalkRow.js +4 -4
- package/esm/components/crosswalks/CrosswalkRow/styles.d.ts +1 -1
- package/esm/components/crosswalks/DummyCrosswalkRow/DummyCrosswalkRow.js +2 -2
- package/esm/components/crosswalks/DummyCrosswalkRow/styles.d.ts +1 -1
- package/esm/components/crosswalks/ShowDependentLink/ShowDependentLink.d.ts +1 -0
- package/esm/components/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.d.ts +1 -0
- package/esm/components/crosswalks/hooks/useAttributeActions.d.ts +1 -1
- package/esm/components/crosswalks/hooks/useModifiedEntity.d.ts +3 -3
- package/esm/components/crosswalks/types/AttributesTableData.d.ts +3 -2
- package/esm/components/crosswalks/types/CrosswalksByOwnerTypeMap.d.ts +1 -1
- package/esm/components/editors/BooleanRadioEditor/BooleanRadioEditor.d.ts +1 -0
- package/esm/components/editors/CustomDateRangeEditor/CustomDateRangeEditor.d.ts +1 -0
- package/esm/components/editors/DateEditor/DateEditor.d.ts +1 -0
- package/esm/components/editors/DependentLookupEditor/styles.d.ts +1 -1
- package/esm/components/editors/EditorsFactory.js +1 -1
- package/esm/components/editors/FileTypeEditor/FileTypeEditor.d.ts +1 -0
- package/esm/components/editors/NumberEditor/NumberEditor.d.ts +1 -0
- package/esm/components/editors/TimestampEditor/TimestampEditor.d.ts +1 -0
- package/esm/components/editors/TypeaheadEditor/TypeaheadEditor.d.ts +22 -0
- package/esm/components/editors/TypeaheadEditor/TypeaheadEditor.js +236 -0
- package/esm/components/history/ContributorsPanel/ContributorItem.d.ts +1 -0
- package/esm/components/history/ContributorsPanel/ContributorsPanel.d.ts +1 -0
- package/esm/components/history/DateRangeSelector/DateRangeSelector.d.ts +1 -0
- package/esm/components/history/HistoryActivitySelector/HistoryActivitySelector.d.ts +1 -0
- package/esm/components/history/HistoryFilterButton/HistoryFilterButton.d.ts +1 -0
- package/esm/components/history/HistoryFilterButton/HistoryFilterButton.js +2 -2
- package/esm/components/history/HistoryGraph/HistoryCircle.d.ts +1 -1
- package/esm/components/history/HistoryGraph/HistoryGraph.d.ts +10 -10
- package/esm/components/history/HistoryGraph/HistoryLink.d.ts +1 -0
- package/esm/components/history/HistoryHeader/HistoryHeader.d.ts +1 -0
- package/esm/components/history/HistoryHeader/styles.d.ts +1 -1
- package/esm/components/history/HistoryMenuButton/HistoryMenuButton.d.ts +1 -0
- package/esm/components/history/HistoryMenuButton/HistoryMenuButton.js +2 -2
- package/esm/components/history/HistoryPanelEmptyState/HistoryPanelEmptyState.d.ts +1 -0
- package/esm/components/history/HistoryRow/HistoryRow.d.ts +1 -0
- package/esm/components/history/HistoryRow/HistoryRow.js +1 -1
- package/esm/components/history/HistoryRow/styles.d.ts +1 -1
- package/esm/components/history/HistoryTree/HistoryTree.d.ts +1 -0
- package/esm/components/history/ProfileBandHistory/ProfileBandHistory.d.ts +1 -0
- package/esm/components/history/hooks/useHistorySlice.js +15 -22
- package/esm/components/history/types/HistoryChangeTypes.d.ts +1 -1
- package/esm/components/history/types/HistoryChangeTypes.js +1 -1
- package/esm/components/history/utils/filters.js +1 -1
- package/esm/components/index.d.ts +49 -0
- package/esm/components/index.js +49 -0
- package/esm/components/workflow/cards/DataChangeRequestTaskCard/DataChangeRequestTaskCard.d.ts +1 -0
- package/esm/components/workflow/cards/GenericWorkflowTaskCard/styles.d.ts +1 -1
- package/esm/components/workflow/cards/PotentialMatchTaskCard/PotentialMatchTaskCard.d.ts +1 -0
- package/esm/components/workflow/cards/WorkflowTaskCard.d.ts +1 -0
- package/esm/components/workflow/cards/WorkflowTaskCardsFactory.d.ts +1 -0
- package/esm/components/workflow/components/AddWorkflowButton/AddWorkflowButton.d.ts +1 -0
- package/esm/components/workflow/components/AddWorkflowButton/styles.d.ts +1 -1
- package/esm/components/workflow/components/AddWorkflowDialog/AddWorkflowDialog.d.ts +1 -0
- package/esm/components/workflow/components/AddWorkflowDialog/styles.d.ts +1 -1
- package/esm/components/workflow/components/AssigneeSelector/AssigneeSelector.d.ts +1 -0
- package/esm/components/workflow/components/AttributesChanges/AttributesChanges.d.ts +1 -0
- package/esm/components/workflow/components/AttributesChanges/components/ChangeView/styles.d.ts +1 -1
- package/esm/components/workflow/components/AttributesChanges/components/DCRChangesList/DCRChangesList.d.ts +1 -0
- package/esm/components/workflow/components/AttributesChanges/components/DiffRenderer/DiffRenderer.d.ts +1 -0
- package/esm/components/workflow/components/AttributesChanges/components/ShowMoreLink/ShowMoreLink.d.ts +1 -0
- package/esm/components/workflow/components/AttributesChanges/helpers/attributesHelpers.js +1 -1
- package/esm/components/workflow/components/AttributesChanges/styles.d.ts +1 -1
- package/esm/components/workflow/components/DueDateField/DueDateField.d.ts +1 -0
- package/esm/components/workflow/components/LineDecorator/styles.d.ts +1 -1
- package/esm/components/workflow/components/PrioritySelector/PrioritySelector.d.ts +1 -0
- package/esm/components/workflow/components/ReassignButton/ReassignButton.d.ts +1 -0
- package/esm/components/workflow/components/ReassignButton/ReassignButton.js +1 -1
- package/esm/components/workflow/components/ReassignButton/ReassignDialog.d.ts +1 -0
- package/esm/components/workflow/components/ReassignButton/styles.d.ts +1 -1
- package/esm/components/workflow/components/TaskActionButtons/TaskActionButtons.d.ts +1 -0
- package/esm/components/workflow/components/TaskActions/TaskActions.d.ts +1 -0
- package/esm/components/workflow/components/TaskActions/TaskActions.js +2 -2
- package/esm/components/workflow/components/WorkflowComments/Comment.d.ts +1 -0
- package/esm/components/workflow/components/WorkflowComments/ExpandedComments.d.ts +1 -0
- package/esm/components/workflow/components/WorkflowComments/WorkflowComments.d.ts +1 -0
- package/esm/components/workflow/components/WorkflowComments/WorkflowComments.js +1 -1
- package/esm/components/workflow/components/WorkflowComments/styles.d.ts +2 -2
- package/esm/contexts/MdmModuleContext/hooks.d.ts +0 -1
- package/esm/contexts/MdmModuleContext/hooks.js +1 -6
- package/esm/contexts/MdmModuleContext/index.d.ts +1 -1
- package/esm/contexts/MdmModuleContext/index.js +1 -1
- package/esm/hooks/useLayoutResetter.d.ts +1 -0
- package/esm/hooks/useMatchesColumnsData/helpers.d.ts +1 -1
- package/esm/hooks/useMatchesColumnsData/useMatchesColumnsData.d.ts +1 -1
- package/esm/hooks/useMatchesLoader.d.ts +1 -1
- package/esm/hooks/useSnackbar.d.ts +1 -0
- package/esm/index.d.ts +2 -83
- package/esm/index.js +2 -85
- package/esm/types/index.d.ts +1 -22
- package/esm/types/index.js +0 -6
- package/package.json +2 -2
- package/cjs/ActionButton/ActionButton.d.ts +0 -14
- package/cjs/ActionButton/ActionButton.js +0 -95
- package/cjs/ActionButton/ActionButton.spec.js +0 -195
- package/cjs/ActionButton/index.d.ts +0 -1
- package/cjs/ActionButton/index.js +0 -5
- package/cjs/ActionButton/styles.d.ts +0 -1
- package/cjs/ActionButton/styles.js +0 -57
- package/cjs/ActionsPanel/ActionsPanel.d.ts +0 -16
- package/cjs/ActionsPanel/ActionsPanel.js +0 -55
- package/cjs/ActionsPanel/ActionsPanel.test.js +0 -85
- package/cjs/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.d.ts +0 -8
- package/cjs/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.js +0 -58
- package/cjs/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.spec.js +0 -78
- package/cjs/ActionsPanel/components/MenuItemRenderer/index.d.ts +0 -1
- package/cjs/ActionsPanel/components/MenuItemRenderer/index.js +0 -5
- package/cjs/ActionsPanel/index.d.ts +0 -1
- package/cjs/ActionsPanel/index.js +0 -5
- package/cjs/ActionsPanel/types.d.ts +0 -5
- package/cjs/ArrowExpandButton/ArrowExpandButton.d.ts +0 -7
- package/cjs/ArrowExpandButton/ArrowExpandButton.js +0 -40
- package/cjs/ArrowExpandButton/index.d.ts +0 -1
- package/cjs/ArrowExpandButton/index.js +0 -5
- package/cjs/AttributeGroupIcon/AttributeGroupIcon.d.ts +0 -10
- package/cjs/AttributeGroupIcon/AttributeGroupIcon.js +0 -20
- package/cjs/AttributeGroupIcon/AttributeGroupIcon.spec.js +0 -56
- package/cjs/AttributeGroupIcon/index.d.ts +0 -1
- package/cjs/AttributeGroupIcon/index.js +0 -5
- package/cjs/AttributeListItem/AttributeListItem.d.ts +0 -41
- package/cjs/AttributeListItem/AttributeListItem.js +0 -74
- package/cjs/AttributeListItem/AttributeListItem.spec.js +0 -177
- package/cjs/AttributeListItem/components/AttrTypeIcon/AttrTypeIcon.d.ts +0 -6
- package/cjs/AttributeListItem/components/AttrTypeIcon/AttrTypeIcon.js +0 -30
- package/cjs/AttributeListItem/components/AttrTypeIcon/index.d.ts +0 -1
- package/cjs/AttributeListItem/components/AttrTypeIcon/index.js +0 -5
- package/cjs/AttributeListItem/components/AttrTypeIcon/styles.js +0 -14
- package/cjs/AttributeListItem/index.d.ts +0 -1
- package/cjs/AttributeListItem/index.js +0 -8
- package/cjs/AttributeListItem/styles.d.ts +0 -1
- package/cjs/AttributeListItem/styles.js +0 -89
- package/cjs/AttributeSelector/AttributeSelector.d.ts +0 -13
- package/cjs/AttributeSelector/AttributeSelector.js +0 -107
- package/cjs/AttributeSelector/AttributeSelector.specs.js +0 -277
- package/cjs/AttributeSelector/index.d.ts +0 -1
- package/cjs/AttributeSelector/index.js +0 -5
- package/cjs/AttributesErrorsPanel/AttributesErrorsPanel.d.ts +0 -6
- package/cjs/AttributesErrorsPanel/AttributesErrorsPanel.js +0 -83
- package/cjs/AttributesErrorsPanel/AttributesErrorsPanel.specs.js +0 -120
- package/cjs/AttributesErrorsPanel/components/Error/Error.js +0 -62
- package/cjs/AttributesErrorsPanel/components/Error/Error.specs.js +0 -270
- package/cjs/AttributesErrorsPanel/components/Error/helpers.d.ts +0 -4
- package/cjs/AttributesErrorsPanel/components/Error/helpers.js +0 -37
- package/cjs/AttributesErrorsPanel/components/Error/index.d.ts +0 -1
- package/cjs/AttributesErrorsPanel/components/Error/index.js +0 -5
- package/cjs/AttributesErrorsPanel/components/Error/styles.d.ts +0 -1
- package/cjs/AttributesErrorsPanel/components/Error/styles.js +0 -51
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.js +0 -54
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.specs.js +0 -100
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/index.d.ts +0 -1
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/index.js +0 -5
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/styles.d.ts +0 -1
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/styles.js +0 -50
- package/cjs/AttributesErrorsPanel/helpers.d.ts +0 -2
- package/cjs/AttributesErrorsPanel/helpers.js +0 -11
- package/cjs/AttributesErrorsPanel/index.d.ts +0 -1
- package/cjs/AttributesErrorsPanel/index.js +0 -5
- package/cjs/AttributesErrorsPanel/styles.d.ts +0 -1
- package/cjs/AttributesErrorsPanel/styles.js +0 -29
- package/cjs/AttributesErrorsPanel/useCachedErrors.js +0 -21
- package/cjs/AttributesFilterSelector/AttributesFilterSelector.d.ts +0 -8
- package/cjs/AttributesFilterSelector/AttributesFilterSelector.js +0 -63
- package/cjs/AttributesFilterSelector/AttributesFilterSelector.test.js +0 -141
- package/cjs/AttributesFilterSelector/index.d.ts +0 -1
- package/cjs/AttributesFilterSelector/index.js +0 -8
- package/cjs/AttributesFilterSelector/styles.d.ts +0 -1
- package/cjs/AttributesFilterSelector/styles.js +0 -9
- package/cjs/AttributesFiltersBuilder/AttributesFiltersBuilder.d.ts +0 -17
- package/cjs/AttributesFiltersBuilder/AttributesFiltersBuilder.js +0 -128
- package/cjs/AttributesFiltersBuilder/AttributesFiltersBuilder.test.js +0 -378
- package/cjs/AttributesFiltersBuilder/attributes.test-data.d.ts +0 -49
- package/cjs/AttributesFiltersBuilder/attributes.test-data.js +0 -83
- package/cjs/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.js +0 -56
- package/cjs/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.test.js +0 -106
- package/cjs/AttributesFiltersBuilder/components/AttributeSelector/index.d.ts +0 -1
- package/cjs/AttributesFiltersBuilder/components/AttributeSelector/index.js +0 -8
- package/cjs/AttributesFiltersBuilder/components/RowActions/RowActions.js +0 -55
- package/cjs/AttributesFiltersBuilder/components/RowActions/RowActions.test.js +0 -111
- package/cjs/AttributesFiltersBuilder/components/RowActions/index.d.ts +0 -1
- package/cjs/AttributesFiltersBuilder/components/RowActions/index.js +0 -8
- package/cjs/AttributesFiltersBuilder/helpers.d.ts +0 -13
- package/cjs/AttributesFiltersBuilder/index.d.ts +0 -2
- package/cjs/AttributesFiltersBuilder/index.js +0 -8
- package/cjs/AttributesFiltersBuilder/metadata.test-data.d.ts +0 -62
- package/cjs/AttributesFiltersBuilder/metadata.test-data.js +0 -61
- package/cjs/AttributesFiltersBuilder/types.d.ts +0 -20
- package/cjs/AttributesFiltersButton/AttributesFiltersButton.d.ts +0 -24
- package/cjs/AttributesFiltersButton/AttributesFiltersButton.js +0 -94
- package/cjs/AttributesFiltersButton/AttributesFiltersButton.test.js +0 -168
- package/cjs/AttributesFiltersButton/components/ActionButtons/ActionButtons.d.ts +0 -7
- package/cjs/AttributesFiltersButton/components/ActionButtons/ActionButtons.js +0 -19
- package/cjs/AttributesFiltersButton/components/ActionButtons/ActionButtons.test.js +0 -46
- package/cjs/AttributesFiltersButton/components/ActionButtons/index.d.ts +0 -1
- package/cjs/AttributesFiltersButton/components/ActionButtons/index.js +0 -5
- package/cjs/AttributesFiltersButton/index.d.ts +0 -1
- package/cjs/AttributesFiltersButton/index.js +0 -8
- package/cjs/AttributesValuesEditor/AttributesValuesEditor.d.ts +0 -4
- package/cjs/AttributesValuesEditor/AttributesValuesEditor.js +0 -66
- package/cjs/AttributesValuesEditor/AttributesValuesEditor.test.js +0 -116
- package/cjs/AttributesValuesEditor/index.d.ts +0 -1
- package/cjs/AttributesValuesEditor/index.js +0 -8
- package/cjs/AttributesView/AttributesView.d.ts +0 -12
- package/cjs/AttributesView/AttributesView.js +0 -43
- package/cjs/AttributesView/AttributesView.test.js +0 -61
- package/cjs/AttributesView/index.d.ts +0 -1
- package/cjs/AttributesView/index.js +0 -5
- package/cjs/AutoSizeList/AutoSizeList.d.ts +0 -17
- package/cjs/AutoSizeList/AutoSizeList.test.js +0 -104
- package/cjs/AutoSizeList/index.d.ts +0 -1
- package/cjs/AutoSizeList/index.js +0 -8
- package/cjs/AvatarWithFallback/AvatarWithFallback.d.ts +0 -12
- package/cjs/AvatarWithFallback/AvatarWithFallback.js +0 -80
- package/cjs/AvatarWithFallback/AvatarWithFallback.specs.js +0 -27
- package/cjs/AvatarWithFallback/index.d.ts +0 -1
- package/cjs/AvatarWithFallback/index.js +0 -5
- package/cjs/AvatarWithFallback/types.d.ts +0 -5
- package/cjs/AvatarWithFallback/types.js +0 -9
- package/cjs/BarChart/BarChart.d.ts +0 -8
- package/cjs/BarChart/BarChart.js +0 -38
- package/cjs/BarChart/BarChart.test.d.ts +0 -1
- package/cjs/BarChart/BarChart.test.js +0 -122
- package/cjs/BarChart/helpers.d.ts +0 -13
- package/cjs/BarChart/helpers.js +0 -55
- package/cjs/BarChart/index.d.ts +0 -1
- package/cjs/BarChart/index.js +0 -5
- package/cjs/BasicAttributeSelector/BasicAttributeSelector.d.ts +0 -4
- package/cjs/BasicAttributeSelector/BasicAttributeSelector.js +0 -96
- package/cjs/BasicAttributeSelector/BasicAttributeSelector.spec.d.ts +0 -1
- package/cjs/BasicAttributeSelector/BasicAttributeSelector.spec.js +0 -25
- package/cjs/BasicAttributeSelector/components/AttributeTitle/AttributeTitle.d.ts +0 -13
- package/cjs/BasicAttributeSelector/components/AttributeTitle/AttributeTitle.js +0 -28
- package/cjs/BasicAttributeSelector/components/AttributeTitle/index.d.ts +0 -1
- package/cjs/BasicAttributeSelector/components/AttributeTitle/index.js +0 -5
- package/cjs/BasicAttributeSelector/components/AttributeTitle/styles.d.ts +0 -1
- package/cjs/BasicAttributeSelector/components/AttributeTitle/styles.js +0 -44
- package/cjs/BasicAttributeSelector/constants.d.ts +0 -3
- package/cjs/BasicAttributeSelector/constants.js +0 -6
- package/cjs/BasicAttributeSelector/helpers.d.ts +0 -20
- package/cjs/BasicAttributeSelector/helpers.js +0 -76
- package/cjs/BasicAttributeSelector/index.d.ts +0 -1
- package/cjs/BasicAttributeSelector/index.js +0 -8
- package/cjs/BasicAttributeSelector/styles.d.ts +0 -1
- package/cjs/BasicAttributeSelector/styles.js +0 -15
- package/cjs/BasicTable/BasicTable.d.ts +0 -2
- package/cjs/BasicTable/BasicTable.js +0 -89
- package/cjs/BasicTable/BasicTable.test.d.ts +0 -1
- package/cjs/BasicTable/BasicTable.test.js +0 -305
- package/cjs/BasicTable/IntegrationBasicTable.test.d.ts +0 -1
- package/cjs/BasicTable/IntegrationBasicTable.test.js +0 -174
- package/cjs/BasicTable/basicTableViewState.js +0 -85
- package/cjs/BasicTable/basicTableViewState.test.d.ts +0 -1
- package/cjs/BasicTable/basicTableViewState.test.js +0 -75
- package/cjs/BasicTable/helpers.d.ts +0 -1
- package/cjs/BasicTable/helpers.js +0 -34
- package/cjs/BasicTable/helpers.test.d.ts +0 -1
- package/cjs/BasicTable/helpers.test.js +0 -89
- package/cjs/BasicTable/index.d.ts +0 -2
- package/cjs/BasicTable/index.js +0 -10
- package/cjs/BasicTablePagination/BasicTablePagination.js +0 -73
- package/cjs/BasicTablePagination/BasicTablePagination.test.d.ts +0 -1
- package/cjs/BasicTablePagination/BasicTablePagination.test.js +0 -122
- package/cjs/BasicTablePagination/index.d.ts +0 -1
- package/cjs/BasicTablePagination/index.js +0 -8
- package/cjs/BasicView/BasicView.d.ts +0 -11
- package/cjs/BasicView/BasicView.js +0 -60
- package/cjs/BasicView/BasicView.test.d.ts +0 -1
- package/cjs/BasicView/BasicView.test.js +0 -18
- package/cjs/BasicView/index.d.ts +0 -1
- package/cjs/BasicView/index.js +0 -5
- package/cjs/BasicViewContent/BasicViewContent.d.ts +0 -4
- package/cjs/BasicViewContent/BasicViewContent.js +0 -37
- package/cjs/BasicViewContent/BasicViewContent.test.d.ts +0 -1
- package/cjs/BasicViewContent/BasicViewContent.test.js +0 -17
- package/cjs/BasicViewContent/index.d.ts +0 -1
- package/cjs/BasicViewContent/index.js +0 -5
- package/cjs/BasicViewHeader/BasicViewHeader.d.ts +0 -7
- package/cjs/BasicViewHeader/BasicViewHeader.js +0 -41
- package/cjs/BasicViewHeader/BasicViewHeader.test.d.ts +0 -1
- package/cjs/BasicViewHeader/BasicViewHeader.test.js +0 -46
- package/cjs/BasicViewHeader/index.d.ts +0 -1
- package/cjs/BasicViewHeader/index.js +0 -5
- package/cjs/BasicViewHeader/styles.d.ts +0 -1
- package/cjs/BlobRenderer/BlobRenderer.d.ts +0 -6
- package/cjs/BlobRenderer/BlobRenderer.js +0 -14
- package/cjs/BlobRenderer/BlobRenderer.test.d.ts +0 -1
- package/cjs/BlobRenderer/BlobRenderer.test.js +0 -23
- package/cjs/BlobRenderer/index.d.ts +0 -1
- package/cjs/BlobRenderer/index.js +0 -5
- package/cjs/BlobRenderer/styles.d.ts +0 -1
- package/cjs/BlobRenderer/styles.js +0 -16
- package/cjs/BranchDecorator/BranchDecorator.d.ts +0 -9
- package/cjs/BranchDecorator/BranchDecorator.js +0 -17
- package/cjs/BranchDecorator/index.d.ts +0 -1
- package/cjs/BranchDecorator/index.js +0 -5
- package/cjs/BranchDecorator/styles.d.ts +0 -1
- package/cjs/BubbleChart/BubbleChart.d.ts +0 -15
- package/cjs/BubbleChart/BubbleChart.js +0 -85
- package/cjs/BubbleChart/BubbleChart.test.d.ts +0 -1
- package/cjs/BubbleChart/BubbleChart.test.js +0 -141
- package/cjs/BubbleChart/helpers.d.ts +0 -6
- package/cjs/BubbleChart/index.d.ts +0 -1
- package/cjs/BubbleChart/index.js +0 -8
- package/cjs/BubbleChart/types.d.ts +0 -9
- package/cjs/BubbleChart/useBubbles.d.ts +0 -9
- package/cjs/BubbleChart/useBubbles.js +0 -19
- package/cjs/CardinalityMessage/CardinalityMessage.d.ts +0 -6
- package/cjs/CardinalityMessage/CardinalityMessage.js +0 -17
- package/cjs/CardinalityMessage/CardinalityMessage.test.d.ts +0 -1
- package/cjs/CardinalityMessage/CardinalityMessage.test.js +0 -57
- package/cjs/CardinalityMessage/helpers.d.ts +0 -1
- package/cjs/CardinalityMessage/helpers.js +0 -60
- package/cjs/CardinalityMessage/index.d.ts +0 -1
- package/cjs/CardinalityMessage/index.js +0 -5
- package/cjs/CardinalityMessage/styles.d.ts +0 -1
- package/cjs/CardinalityMessage/styles.js +0 -10
- package/cjs/ChartLegend/ChartLegend.d.ts +0 -6
- package/cjs/ChartLegend/ChartLegend.js +0 -18
- package/cjs/ChartLegend/helpers.d.ts +0 -2
- package/cjs/ChartLegend/helpers.js +0 -24
- package/cjs/ChartLegend/index.d.ts +0 -2
- package/cjs/ChartLegend/index.js +0 -7
- package/cjs/ChartLegend/styles.d.ts +0 -1
- package/cjs/ChartTooltip/ChartTooltip.d.ts +0 -2
- package/cjs/ChartTooltip/ChartTooltip.js +0 -29
- package/cjs/ChartTooltip/index.d.ts +0 -1
- package/cjs/ChartTooltip/index.js +0 -5
- package/cjs/ChartsFactory/ChartsFactory.d.ts +0 -14
- package/cjs/ChartsFactory/ChartsFactory.js +0 -57
- package/cjs/ChartsFactory/ChartsFactory.test.d.ts +0 -1
- package/cjs/ChartsFactory/ChartsFactory.test.js +0 -69
- package/cjs/ChartsFactory/index.d.ts +0 -1
- package/cjs/ChartsFactory/index.js +0 -5
- package/cjs/CloudChart/CloudChart.d.ts +0 -15
- package/cjs/CloudChart/CloudChart.js +0 -73
- package/cjs/CloudChart/CloudChart.test.d.ts +0 -1
- package/cjs/CloudChart/CloudChart.test.js +0 -62
- package/cjs/CloudChart/index.d.ts +0 -1
- package/cjs/CloudChart/index.js +0 -8
- package/cjs/CloudChart/types.d.ts +0 -5
- package/cjs/CloudChart/useCloud.d.ts +0 -10
- package/cjs/CloudChart/useCloud.js +0 -37
- package/cjs/CollapseRowButton/CollapseRowButton.d.ts +0 -8
- package/cjs/CollapseRowButton/CollapseRowButton.js +0 -47
- package/cjs/CollapseRowButton/CollapseRowButton.test.d.ts +0 -1
- package/cjs/CollapseRowButton/CollapseRowButton.test.js +0 -56
- package/cjs/CollapseRowButton/index.d.ts +0 -1
- package/cjs/CollapseRowButton/index.js +0 -5
- package/cjs/CollapseRowButton/styles.d.ts +0 -1
- package/cjs/ColorBar/ColorBar.d.ts +0 -7
- package/cjs/ColorBar/ColorBar.js +0 -43
- package/cjs/ColorBar/ColorBar.test.d.ts +0 -1
- package/cjs/ColorBar/ColorBar.test.js +0 -45
- package/cjs/ColorBar/index.d.ts +0 -1
- package/cjs/ColorBar/index.js +0 -5
- package/cjs/ColumnsSettings/ColumnsSettings.d.ts +0 -10
- package/cjs/ColumnsSettings/ColumnsSettings.js +0 -53
- package/cjs/ColumnsSettings/ColumnsSettings.test.d.ts +0 -1
- package/cjs/ColumnsSettings/ColumnsSettings.test.js +0 -413
- package/cjs/ColumnsSettings/components/ColumnListItem/ColumnListItem.d.ts +0 -26
- package/cjs/ColumnsSettings/components/ColumnListItem/ColumnListItem.js +0 -32
- package/cjs/ColumnsSettings/components/ColumnListItem/index.d.ts +0 -1
- package/cjs/ColumnsSettings/components/ColumnListItem/index.js +0 -5
- package/cjs/ColumnsSettings/components/ColumnListItem/styles.d.ts +0 -1
- package/cjs/ColumnsSettings/components/ColumnListItem/styles.js +0 -9
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.d.ts +0 -14
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.js +0 -75
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.spec.d.ts +0 -1
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.spec.js +0 -226
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/index.d.ts +0 -1
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/index.js +0 -5
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/styles.d.ts +0 -1
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/styles.js +0 -9
- package/cjs/ColumnsSettings/helpers.d.ts +0 -5
- package/cjs/ColumnsSettings/index.d.ts +0 -2
- package/cjs/ColumnsSettings/index.js +0 -7
- package/cjs/ColumnsSettings/styles.d.ts +0 -1
- package/cjs/ComplexAttributeLabel/ComplexAttributeLabel.js +0 -15
- package/cjs/ComplexAttributeLabel/index.d.ts +0 -1
- package/cjs/ComplexAttributeLabel/index.js +0 -5
- package/cjs/ComplexAttributeLabel/styles.d.ts +0 -1
- package/cjs/ComplexAttributeLabel/styles.js +0 -13
- package/cjs/DefaultCellValueRenderer/DefaultCellValueRenderer.d.ts +0 -8
- package/cjs/DefaultCellValueRenderer/DefaultCellValueRenderer.js +0 -37
- package/cjs/DefaultCellValueRenderer/DefaultCellValueRenderer.test.d.ts +0 -1
- package/cjs/DefaultCellValueRenderer/DefaultCellValueRenderer.test.js +0 -59
- package/cjs/DefaultCellValueRenderer/index.d.ts +0 -1
- package/cjs/DefaultCellValueRenderer/index.js +0 -5
- package/cjs/DefaultCellValueRenderer/styles.d.ts +0 -1
- package/cjs/DefaultCellValueRenderer/styles.js +0 -12
- package/cjs/DeleteButton/DeleteButton.d.ts +0 -5
- package/cjs/DeleteButton/DeleteButton.js +0 -15
- package/cjs/DeleteButton/DeleteButton.spec.d.ts +0 -1
- package/cjs/DeleteButton/DeleteButton.spec.js +0 -25
- package/cjs/DeleteButton/index.d.ts +0 -1
- package/cjs/DeleteButton/index.js +0 -5
- package/cjs/DescriptionIcon/DescriptionIcon.d.ts +0 -7
- package/cjs/DescriptionIcon/DescriptionIcon.js +0 -47
- package/cjs/DescriptionIcon/DescriptionIcon.test.d.ts +0 -1
- package/cjs/DescriptionIcon/DescriptionIcon.test.js +0 -94
- package/cjs/DescriptionIcon/index.d.ts +0 -1
- package/cjs/DescriptionIcon/index.js +0 -5
- package/cjs/DropDownMenuButton/DropDownMenuButton.d.ts +0 -17
- package/cjs/DropDownMenuButton/DropDownMenuButton.js +0 -78
- package/cjs/DropDownMenuButton/DropDownMenuButton.spec.d.ts +0 -1
- package/cjs/DropDownMenuButton/DropDownMenuButton.spec.js +0 -81
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.d.ts +0 -8
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.js +0 -50
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.spec.d.ts +0 -1
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.spec.js +0 -37
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/index.d.ts +0 -1
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/index.js +0 -5
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/styles.d.ts +0 -1
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/styles.js +0 -15
- package/cjs/DropDownMenuButton/index.d.ts +0 -1
- package/cjs/DropDownMenuButton/index.js +0 -5
- package/cjs/DropDownMenuButton/styles.d.ts +0 -1
- package/cjs/DropDownMenuButton/styles.js +0 -20
- package/cjs/EditModeAttributesFactory/EditModeAttributesFactory.d.ts +0 -3
- package/cjs/EditModeAttributesFactory/EditModeAttributesFactory.js +0 -42
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.d.ts +0 -6
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.js +0 -44
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.test.d.ts +0 -1
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.test.js +0 -134
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/index.d.ts +0 -1
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/index.js +0 -5
- package/cjs/EditModeAttributesFactory/index.d.ts +0 -2
- package/cjs/EditModeAttributesFactory/index.js +0 -7
- package/cjs/EditModeAttributesList/EditModeAttributesList.js +0 -122
- package/cjs/EditModeAttributesList/EditModeAttributesList.test.d.ts +0 -1
- package/cjs/EditModeAttributesList/EditModeAttributesList.test.js +0 -358
- package/cjs/EditModeAttributesList/attributes.test-data.d.ts +0 -28
- package/cjs/EditModeAttributesList/attributes.test-data.js +0 -40
- package/cjs/EditModeAttributesList/index.d.ts +0 -1
- package/cjs/EditModeAttributesList/index.js +0 -8
- package/cjs/EditModeAttributesPager/EditModeAttributesPager.d.ts +0 -4
- package/cjs/EditModeAttributesPager/EditModeAttributesPager.js +0 -86
- package/cjs/EditModeAttributesPager/EditModeAttributesPager.test.d.ts +0 -1
- package/cjs/EditModeAttributesPager/EditModeAttributesPager.test.js +0 -282
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.d.ts +0 -17
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.js +0 -128
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.test.d.ts +0 -1
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.test.js +0 -364
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/IntegrationAttributeRenderer.test.d.ts +0 -1
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/IntegrationAttributeRenderer.test.js +0 -193
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/index.d.ts +0 -1
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/index.js +0 -8
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/store.test-data.d.ts +0 -4
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/store.test-data.js +0 -7
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.d.ts +0 -19
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.js +0 -60
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.d.ts +0 -1
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.js +0 -52
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/index.d.ts +0 -1
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/index.js +0 -5
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.d.ts +0 -18
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.js +0 -118
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.test.d.ts +0 -1
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.test.js +0 -209
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/index.d.ts +0 -1
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/index.js +0 -8
- package/cjs/EditModeAttributesPager/helpers.d.ts +0 -1
- package/cjs/EditModeAttributesPager/helpers.js +0 -6
- package/cjs/EditModeAttributesPager/helpers.test.d.ts +0 -1
- package/cjs/EditModeAttributesPager/helpers.test.js +0 -22
- package/cjs/EditModeAttributesPager/index.d.ts +0 -1
- package/cjs/EditModeAttributesPager/index.js +0 -8
- package/cjs/EditModeAttributesPager/styles.d.ts +0 -1
- package/cjs/EditModeAttributesPager/types.d.ts +0 -26
- package/cjs/EditModeAttributesPager/types.js +0 -9
- package/cjs/EditModeAttributesView/EditModeAttributesView.d.ts +0 -12
- package/cjs/EditModeAttributesView/EditModeAttributesView.js +0 -59
- package/cjs/EditModeAttributesView/EditModeAttributesView.test.d.ts +0 -1
- package/cjs/EditModeAttributesView/EditModeAttributesView.test.js +0 -63
- package/cjs/EditModeAttributesView/IntegrationEditModeAttributesView.test.d.ts +0 -1
- package/cjs/EditModeAttributesView/IntegrationEditModeAttributesView.test.js +0 -264
- package/cjs/EditModeAttributesView/index.d.ts +0 -1
- package/cjs/EditModeAttributesView/index.js +0 -5
- package/cjs/EditModeAttributesView/metadata.test-data.d.ts +0 -4
- package/cjs/EditModeAttributesView/metadata.test-data.js +0 -123
- package/cjs/EditModeComplexAttribute/EditModeComplexAttribute.js +0 -133
- package/cjs/EditModeComplexAttribute/EditModeComplexAttribute.test.d.ts +0 -1
- package/cjs/EditModeComplexAttribute/EditModeComplexAttribute.test.js +0 -401
- package/cjs/EditModeComplexAttribute/index.d.ts +0 -1
- package/cjs/EditModeComplexAttribute/index.js +0 -8
- package/cjs/EditModeComplexAttribute/nestedAttrType.test-data.d.ts +0 -31
- package/cjs/EditModeComplexAttribute/nestedAttrType.test-data.js +0 -74
- package/cjs/EditModeComplexAttribute/nestedAttrValue.test-data.d.ts +0 -29
- package/cjs/EditModeComplexAttribute/nestedAttrValue.test-data.js +0 -38
- package/cjs/EntityCreator/EntityCreator.d.ts +0 -9
- package/cjs/EntityCreator/EntityCreator.js +0 -40
- package/cjs/EntityCreator/EntityCreator.test.d.ts +0 -1
- package/cjs/EntityCreator/EntityCreator.test.js +0 -80
- package/cjs/EntityCreator/entityType.test-data.d.ts +0 -52
- package/cjs/EntityCreator/entityType.test-data.js +0 -191
- package/cjs/EntityCreator/index.d.ts +0 -1
- package/cjs/EntityCreator/index.js +0 -5
- package/cjs/EntitySelector/EntitySelector.d.ts +0 -32
- package/cjs/EntitySelector/EntitySelector.js +0 -123
- package/cjs/EntitySelector/EntitySelector.test.d.ts +0 -1
- package/cjs/EntitySelector/EntitySelector.test.js +0 -485
- package/cjs/EntitySelector/components/ClearIndicator/ClearIndicator.d.ts +0 -7
- package/cjs/EntitySelector/components/ClearIndicator/ClearIndicator.js +0 -21
- package/cjs/EntitySelector/components/ClearIndicator/ClearIndicator.test.d.ts +0 -1
- package/cjs/EntitySelector/components/ClearIndicator/ClearIndicator.test.js +0 -32
- package/cjs/EntitySelector/components/ClearIndicator/index.d.ts +0 -1
- package/cjs/EntitySelector/components/ClearIndicator/index.js +0 -5
- package/cjs/EntitySelector/components/ClearIndicator/styles.d.ts +0 -1
- package/cjs/EntitySelector/components/ClearIndicator/styles.js +0 -11
- package/cjs/EntitySelector/components/EntityOption/EntityOption.d.ts +0 -22
- package/cjs/EntitySelector/components/EntityOption/EntityOption.js +0 -61
- package/cjs/EntitySelector/components/EntityOption/EntityOption.test.d.ts +0 -1
- package/cjs/EntitySelector/components/EntityOption/EntityOption.test.js +0 -84
- package/cjs/EntitySelector/components/EntityOption/index.d.ts +0 -1
- package/cjs/EntitySelector/components/EntityOption/index.js +0 -5
- package/cjs/EntitySelector/components/EntityOption/styles.d.ts +0 -1
- package/cjs/EntitySelector/components/EntityOption/styles.js +0 -42
- package/cjs/EntitySelector/components/Group/Group.d.ts +0 -9
- package/cjs/EntitySelector/components/Group/Group.js +0 -41
- package/cjs/EntitySelector/components/Group/Group.test.d.ts +0 -1
- package/cjs/EntitySelector/components/Group/Group.test.js +0 -69
- package/cjs/EntitySelector/components/Group/index.d.ts +0 -1
- package/cjs/EntitySelector/components/Group/index.js +0 -5
- package/cjs/EntitySelector/components/Group/styles.d.ts +0 -1
- package/cjs/EntitySelector/components/Group/styles.js +0 -29
- package/cjs/EntitySelector/components/SingleValue/SingleValue.d.ts +0 -14
- package/cjs/EntitySelector/components/SingleValue/SingleValue.js +0 -87
- package/cjs/EntitySelector/components/SingleValue/SingleValue.test.d.ts +0 -1
- package/cjs/EntitySelector/components/SingleValue/SingleValue.test.js +0 -83
- package/cjs/EntitySelector/components/SingleValue/index.d.ts +0 -1
- package/cjs/EntitySelector/components/SingleValue/index.js +0 -5
- package/cjs/EntitySelector/components/SingleValue/styles.d.ts +0 -1
- package/cjs/EntitySelector/components/SingleValue/styles.js +0 -20
- package/cjs/EntitySelector/helpers.d.ts +0 -1
- package/cjs/EntitySelector/helpers.js +0 -48
- package/cjs/EntitySelector/index.d.ts +0 -1
- package/cjs/EntitySelector/index.js +0 -5
- package/cjs/EntitySelector/styles.d.ts +0 -1
- package/cjs/ExpandedValueTooltip/ExpandedValueTooltip.d.ts +0 -11
- package/cjs/ExpandedValueTooltip/ExpandedValueTooltip.js +0 -70
- package/cjs/ExpandedValueTooltip/ExpandedValueTooltip.test.d.ts +0 -1
- package/cjs/ExpandedValueTooltip/ExpandedValueTooltip.test.js +0 -44
- package/cjs/ExpandedValueTooltip/helpers.d.ts +0 -1
- package/cjs/ExpandedValueTooltip/helpers.js +0 -9
- package/cjs/ExpandedValueTooltip/index.d.ts +0 -1
- package/cjs/ExpandedValueTooltip/index.js +0 -5
- package/cjs/FacetViewHeader/FacetViewHeader.d.ts +0 -8
- package/cjs/FacetViewHeader/FacetViewHeader.js +0 -16
- package/cjs/FacetViewHeader/FacetViewHeader.test.d.ts +0 -1
- package/cjs/FacetViewHeader/FacetViewHeader.test.js +0 -15
- package/cjs/FacetViewHeader/index.d.ts +0 -1
- package/cjs/FacetViewHeader/index.js +0 -5
- package/cjs/FacetViewHeader/styles.d.ts +0 -1
- package/cjs/FilterButton/FilterButton.d.ts +0 -6
- package/cjs/FilterButton/FilterButton.js +0 -22
- package/cjs/FilterButton/FilterButton.test.d.ts +0 -1
- package/cjs/FilterButton/FilterButton.test.js +0 -113
- package/cjs/FilterButton/index.d.ts +0 -1
- package/cjs/FilterButton/index.js +0 -5
- package/cjs/FilterButton/styles.d.ts +0 -1
- package/cjs/FilterButton/styles.js +0 -18
- package/cjs/HOCs/withAsyncMount/index.d.ts +0 -1
- package/cjs/HOCs/withAsyncMount/index.js +0 -5
- package/cjs/HOCs/withAsyncMount/withAsyncMount.test.d.ts +0 -1
- package/cjs/HOCs/withAsyncMount/withAsyncMount.test.js +0 -95
- package/cjs/HOCs/withChartDataPercents/index.d.ts +0 -1
- package/cjs/HOCs/withChartDataPercents/index.js +0 -5
- package/cjs/HOCs/withChartDataPercents/withChartDataPercents.d.ts +0 -10
- package/cjs/HOCs/withChartDataPercents/withChartDataPercents.js +0 -60
- package/cjs/HOCs/withContext/index.d.ts +0 -1
- package/cjs/HOCs/withContext/index.js +0 -5
- package/cjs/HOCs/withFilter/ColumnFilter.d.ts +0 -22
- package/cjs/HOCs/withFilter/ColumnFilter.js +0 -122
- package/cjs/HOCs/withFilter/ColumnFilter.spec.d.ts +0 -1
- package/cjs/HOCs/withFilter/ColumnFilter.spec.js +0 -225
- package/cjs/HOCs/withFilter/FilterChip.d.ts +0 -13
- package/cjs/HOCs/withFilter/FilterChip.js +0 -32
- package/cjs/HOCs/withFilter/FilterChip.test.d.ts +0 -1
- package/cjs/HOCs/withFilter/FilterChip.test.js +0 -102
- package/cjs/HOCs/withFilter/helpers.d.ts +0 -7
- package/cjs/HOCs/withFilter/helpers.js +0 -8
- package/cjs/HOCs/withFilter/index.d.ts +0 -1
- package/cjs/HOCs/withFilter/index.js +0 -5
- package/cjs/HOCs/withFilter/styles.d.ts +0 -1
- package/cjs/HOCs/withFilter/styles.js +0 -26
- package/cjs/HOCs/withFilter/withFilter.d.ts +0 -15
- package/cjs/HOCs/withFilter/withFilter.js +0 -39
- package/cjs/HOCs/withFilterAtBottom/index.d.ts +0 -1
- package/cjs/HOCs/withFilterAtBottom/index.js +0 -5
- package/cjs/HOCs/withFilterAtBottom/withFilterAtBottom.d.ts +0 -10
- package/cjs/HOCs/withFilterAtBottom/withFilterAtBottom.js +0 -44
- package/cjs/HOCs/withTableContext/index.d.ts +0 -1
- package/cjs/HOCs/withTableContext/index.js +0 -5
- package/cjs/HOCs/withTableContext/withTableContext.d.ts +0 -4
- package/cjs/HOCs/withTableContext/withTableContext.js +0 -9
- package/cjs/HOCs/withTableContext/withTableContext.test.d.ts +0 -1
- package/cjs/HOCs/withTableContext/withTableContext.test.js +0 -46
- package/cjs/HOCs/withTooltip/index.d.ts +0 -1
- package/cjs/HOCs/withTooltip/index.js +0 -5
- package/cjs/HOCs/withTooltip/styles.d.ts +0 -1
- package/cjs/HOCs/withTooltip/styles.js +0 -10
- package/cjs/IgnoreButton/IgnoreButton.d.ts +0 -7
- package/cjs/IgnoreButton/IgnoreButton.js +0 -16
- package/cjs/IgnoreButton/IgnoreButton.spec.d.ts +0 -1
- package/cjs/IgnoreButton/IgnoreButton.spec.js +0 -34
- package/cjs/IgnoreButton/index.d.ts +0 -1
- package/cjs/IgnoreButton/index.js +0 -5
- package/cjs/Image/Image.d.ts +0 -12
- package/cjs/Image/Image.js +0 -86
- package/cjs/Image/Image.test.d.ts +0 -1
- package/cjs/Image/Image.test.js +0 -70
- package/cjs/Image/constants.d.ts +0 -2
- package/cjs/Image/constants.js +0 -21
- package/cjs/Image/index.d.ts +0 -2
- package/cjs/Image/index.js +0 -10
- package/cjs/Image/styles.d.ts +0 -2
- package/cjs/ImageActionsOverlay/ImageActionsOverlay.js +0 -87
- package/cjs/ImageActionsOverlay/ImageActionsOverlay.test.d.ts +0 -1
- package/cjs/ImageActionsOverlay/ImageActionsOverlay.test.js +0 -153
- package/cjs/ImageActionsOverlay/components/CheckedIcon/CheckedIcon.d.ts +0 -7
- package/cjs/ImageActionsOverlay/components/CheckedIcon/index.d.ts +0 -1
- package/cjs/ImageActionsOverlay/components/CheckedIcon/index.js +0 -5
- package/cjs/ImageActionsOverlay/index.d.ts +0 -1
- package/cjs/ImageActionsOverlay/index.js +0 -8
- package/cjs/ImageAttributesLine/ImageAttributesLine.d.ts +0 -21
- package/cjs/ImageAttributesLine/ImageAttributesLine.js +0 -142
- package/cjs/ImageAttributesLine/ImageAttributesLine.test.d.ts +0 -1
- package/cjs/ImageAttributesLine/ImageAttributesLine.test.js +0 -311
- package/cjs/ImageAttributesLine/constants.d.ts +0 -3
- package/cjs/ImageAttributesLine/constants.js +0 -10
- package/cjs/ImageAttributesLine/imageAttributeValues.test-data.d.ts +0 -2
- package/cjs/ImageAttributesLine/imageAttributeValues.test-data.js +0 -71
- package/cjs/ImageAttributesLine/index.d.ts +0 -5
- package/cjs/ImageAttributesLine/index.js +0 -11
- package/cjs/ImageAttributesLine/styles.d.ts +0 -2
- package/cjs/ImageAttributesLine/types.d.ts +0 -8
- package/cjs/ImageAttributesLineEditor/ImageAttributesLineEditor.d.ts +0 -15
- package/cjs/ImageAttributesLineEditor/ImageAttributesLineEditor.js +0 -110
- package/cjs/ImageAttributesLineEditor/ImageAttributesLineEditor.test.d.ts +0 -1
- package/cjs/ImageAttributesLineEditor/ImageAttributesLineEditor.test.js +0 -369
- package/cjs/ImageAttributesLineEditor/index.d.ts +0 -1
- package/cjs/ImageAttributesLineEditor/index.js +0 -5
- package/cjs/ImageAttributesLineEditor/styles.d.ts +0 -2
- package/cjs/InlineAttributesList/InlineAttributesList.d.ts +0 -19
- package/cjs/InlineAttributesList/InlineAttributesList.js +0 -43
- package/cjs/InlineAttributesList/InlineAttributesList.test.d.ts +0 -1
- package/cjs/InlineAttributesList/InlineAttributesList.test.js +0 -96
- package/cjs/InlineAttributesList/attributes.test-data.d.ts +0 -28
- package/cjs/InlineAttributesList/attributes.test-data.js +0 -40
- package/cjs/InlineAttributesList/index.d.ts +0 -1
- package/cjs/InlineAttributesList/index.js +0 -5
- package/cjs/InlineAttributesPager/InlineAttributesPager.d.ts +0 -22
- package/cjs/InlineAttributesPager/InlineAttributesPager.js +0 -98
- package/cjs/InlineAttributesPager/InlineAttributesPager.test.d.ts +0 -1
- package/cjs/InlineAttributesPager/InlineAttributesPager.test.js +0 -313
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.d.ts +0 -19
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.js +0 -35
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.test.d.ts +0 -1
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.test.js +0 -109
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/index.d.ts +0 -1
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/index.js +0 -5
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.d.ts +0 -20
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.js +0 -45
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.test.d.ts +0 -1
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.test.js +0 -119
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/index.d.ts +0 -1
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/index.js +0 -5
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.d.ts +0 -19
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.js +0 -35
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.test.d.ts +0 -1
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.test.js +0 -182
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/index.d.ts +0 -1
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/index.js +0 -5
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.d.ts +0 -19
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.js +0 -66
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.test.d.ts +0 -1
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.test.js +0 -278
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/index.d.ts +0 -1
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/index.js +0 -5
- package/cjs/InlineAttributesPager/index.d.ts +0 -1
- package/cjs/InlineAttributesPager/index.js +0 -5
- package/cjs/InlineComplexAttribute/InlineComplexAttribute.d.ts +0 -22
- package/cjs/InlineComplexAttribute/InlineComplexAttribute.js +0 -80
- package/cjs/InlineComplexAttribute/InlineComplexAttribute.test.d.ts +0 -1
- package/cjs/InlineComplexAttribute/InlineComplexAttribute.test.js +0 -251
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.d.ts +0 -7
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.js +0 -23
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.spec.d.ts +0 -1
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.spec.js +0 -136
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/index.d.ts +0 -1
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/index.js +0 -5
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/styles.d.ts +0 -7
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/styles.js +0 -19
- package/cjs/InlineComplexAttribute/index.d.ts +0 -1
- package/cjs/InlineComplexAttribute/index.js +0 -5
- package/cjs/InlineImageAttribute/InlineImageAttribute.d.ts +0 -18
- package/cjs/InlineImageAttribute/InlineImageAttribute.js +0 -40
- package/cjs/InlineImageAttribute/InlineImageAttribute.test.d.ts +0 -1
- package/cjs/InlineImageAttribute/InlineImageAttribute.test.js +0 -78
- package/cjs/InlineImageAttribute/index.d.ts +0 -1
- package/cjs/InlineImageAttribute/index.js +0 -5
- package/cjs/InlineNestedAttribute/InlineNestedAttribute.d.ts +0 -18
- package/cjs/InlineNestedAttribute/InlineNestedAttribute.js +0 -38
- package/cjs/InlineNestedAttribute/InlineNestedAttribute.test.d.ts +0 -1
- package/cjs/InlineNestedAttribute/InlineNestedAttribute.test.js +0 -65
- package/cjs/InlineNestedAttribute/index.d.ts +0 -1
- package/cjs/InlineNestedAttribute/index.js +0 -5
- package/cjs/InlineReferenceAttribute/InlineReferenceAttribute.d.ts +0 -18
- package/cjs/InlineReferenceAttribute/InlineReferenceAttribute.js +0 -71
- package/cjs/InlineReferenceAttribute/InlineReferenceAttribute.test.d.ts +0 -1
- package/cjs/InlineReferenceAttribute/InlineReferenceAttribute.test.js +0 -136
- package/cjs/InlineReferenceAttribute/index.d.ts +0 -1
- package/cjs/InlineReferenceAttribute/index.js +0 -5
- package/cjs/InlineSimpleAttribute/InlineSimpleAttribute.d.ts +0 -18
- package/cjs/InlineSimpleAttribute/InlineSimpleAttribute.js +0 -124
- package/cjs/InlineSimpleAttribute/InlineSimpleAttribute.spec.d.ts +0 -1
- package/cjs/InlineSimpleAttribute/InlineSimpleAttribute.spec.js +0 -417
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.d.ts +0 -18
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.js +0 -49
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.spec.d.ts +0 -1
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.spec.js +0 -57
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/index.d.ts +0 -1
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/index.js +0 -5
- package/cjs/InlineSimpleAttribute/index.d.ts +0 -1
- package/cjs/InlineSimpleAttribute/index.js +0 -5
- package/cjs/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.d.ts +0 -13
- package/cjs/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.js +0 -104
- package/cjs/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.test.d.ts +0 -1
- package/cjs/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.test.js +0 -250
- package/cjs/InlineSimpleAttributeEditor/index.d.ts +0 -1
- package/cjs/InlineSimpleAttributeEditor/index.js +0 -5
- package/cjs/InternalLink/InternalLink.d.ts +0 -2
- package/cjs/InternalLink/InternalLink.js +0 -40
- package/cjs/InternalLink/InternalLink.test.d.ts +0 -1
- package/cjs/InternalLink/InternalLink.test.js +0 -29
- package/cjs/InternalLink/index.d.ts +0 -1
- package/cjs/InternalLink/index.js +0 -5
- package/cjs/LineChart/LineChart.d.ts +0 -8
- package/cjs/LineChart/LineChart.js +0 -34
- package/cjs/LineChart/LineChart.test.d.ts +0 -1
- package/cjs/LineChart/LineChart.test.js +0 -89
- package/cjs/LineChart/helpers.d.ts +0 -13
- package/cjs/LineChart/helpers.js +0 -63
- package/cjs/LineChart/index.d.ts +0 -1
- package/cjs/LineChart/index.js +0 -5
- package/cjs/MapChart/MapChart.d.ts +0 -10
- package/cjs/MapChart/MapChart.js +0 -109
- package/cjs/MapChart/MapChart.test.d.ts +0 -1
- package/cjs/MapChart/MapChart.test.js +0 -330
- package/cjs/MapChart/components/Legend/Legend.d.ts +0 -8
- package/cjs/MapChart/components/Legend/Legend.js +0 -23
- package/cjs/MapChart/components/Legend/index.d.ts +0 -1
- package/cjs/MapChart/components/Legend/index.js +0 -5
- package/cjs/MapChart/components/Legend/styles.d.ts +0 -6
- package/cjs/MapChart/constants.d.ts +0 -3
- package/cjs/MapChart/constants.js +0 -6
- package/cjs/MapChart/index.d.ts +0 -1
- package/cjs/MapChart/index.js +0 -8
- package/cjs/MapChart/useGeography.js +0 -25
- package/cjs/MoreAttributesButton/MoreAttributesButton.d.ts +0 -11
- package/cjs/MoreAttributesButton/MoreAttributesButton.js +0 -101
- package/cjs/MoreAttributesButton/MoreAttributesButton.test.d.ts +0 -1
- package/cjs/MoreAttributesButton/MoreAttributesButton.test.js +0 -195
- package/cjs/MoreAttributesButton/attributes.test-data.d.ts +0 -53
- package/cjs/MoreAttributesButton/attributes.test-data.js +0 -76
- package/cjs/MoreAttributesButton/constants.d.ts +0 -6
- package/cjs/MoreAttributesButton/constants.js +0 -9
- package/cjs/MoreAttributesButton/helpers.d.ts +0 -9
- package/cjs/MoreAttributesButton/helpers.spec.d.ts +0 -1
- package/cjs/MoreAttributesButton/helpers.spec.js +0 -46
- package/cjs/MoreAttributesButton/index.d.ts +0 -1
- package/cjs/MoreAttributesButton/index.js +0 -5
- package/cjs/MoreAttributesButton/styles.d.ts +0 -1
- package/cjs/MoreAttributesButton/useMoreAttributesItems.js +0 -69
- package/cjs/NestedAttribute/NestedAttribute.js +0 -77
- package/cjs/NestedAttribute/NestedAttribute.test.d.ts +0 -1
- package/cjs/NestedAttribute/NestedAttribute.test.js +0 -81
- package/cjs/NestedAttribute/index.d.ts +0 -1
- package/cjs/NestedAttribute/index.js +0 -8
- package/cjs/NestedAttribute/nestedAttrType.test-data.d.ts +0 -31
- package/cjs/NestedAttribute/nestedAttrType.test-data.js +0 -74
- package/cjs/NestedAttribute/nestedAttrValue.test-data.d.ts +0 -29
- package/cjs/NestedAttribute/nestedAttrValue.test-data.js +0 -38
- package/cjs/NestedAttributeEditor/NestedAttributeEditor.d.ts +0 -2
- package/cjs/NestedAttributeEditor/NestedAttributeEditor.js +0 -47
- package/cjs/NestedAttributeEditor/NestedAttributeEditor.test.d.ts +0 -1
- package/cjs/NestedAttributeEditor/NestedAttributeEditor.test.js +0 -93
- package/cjs/NestedAttributeEditor/index.d.ts +0 -1
- package/cjs/NestedAttributeEditor/index.js +0 -5
- package/cjs/OvIcon/OvIcon.d.ts +0 -38
- package/cjs/OvIcon/OvIcon.js +0 -61
- package/cjs/OvIcon/OvIcon.test.d.ts +0 -1
- package/cjs/OvIcon/OvIcon.test.js +0 -272
- package/cjs/OvIcon/helpers.d.ts +0 -4
- package/cjs/OvIcon/helpers.js +0 -33
- package/cjs/OvIcon/index.d.ts +0 -1
- package/cjs/OvIcon/index.js +0 -5
- package/cjs/OvIcon/styles.d.ts +0 -1
- package/cjs/PieChart/PieChart.d.ts +0 -17
- package/cjs/PieChart/PieChart.js +0 -70
- package/cjs/PieChart/PieChart.test.d.ts +0 -1
- package/cjs/PieChart/PieChart.test.js +0 -148
- package/cjs/PieChart/components/ActiveShape/ActiveShape.d.ts +0 -9
- package/cjs/PieChart/components/ActiveShape/ActiveShape.js +0 -53
- package/cjs/PieChart/components/ActiveShape/index.d.ts +0 -1
- package/cjs/PieChart/components/ActiveShape/index.js +0 -5
- package/cjs/PieChart/index.d.ts +0 -1
- package/cjs/PieChart/index.js +0 -8
- package/cjs/PinButton/PinButton.d.ts +0 -7
- package/cjs/PinButton/PinButton.js +0 -16
- package/cjs/PinButton/PinButton.spec.d.ts +0 -1
- package/cjs/PinButton/PinButton.spec.js +0 -34
- package/cjs/PinButton/index.d.ts +0 -1
- package/cjs/PinButton/index.js +0 -5
- package/cjs/PivotingTooltip/IntegrationPivotingTooltip.test.d.ts +0 -1
- package/cjs/PivotingTooltip/IntegrationPivotingTooltip.test.js +0 -384
- package/cjs/PivotingTooltip/PivotingTooltip.js +0 -83
- package/cjs/PivotingTooltip/PivotingTooltip.test.d.ts +0 -1
- package/cjs/PivotingTooltip/PivotingTooltip.test.js +0 -290
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.d.ts +0 -11
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.js +0 -32
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.test.d.ts +0 -1
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.test.js +0 -234
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/index.d.ts +0 -1
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/index.js +0 -5
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/styles.d.ts +0 -1
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/styles.js +0 -79
- package/cjs/PivotingTooltip/helpers.test.d.ts +0 -1
- package/cjs/PivotingTooltip/helpers.test.js +0 -199
- package/cjs/PivotingTooltip/index.d.ts +0 -1
- package/cjs/PivotingTooltip/index.js +0 -5
- package/cjs/PivotingTooltip/styles.d.ts +0 -2
- package/cjs/PivotingTooltip/styles.js +0 -31
- package/cjs/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.d.ts +0 -17
- package/cjs/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.js +0 -74
- package/cjs/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.test.d.ts +0 -1
- package/cjs/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.test.js +0 -76
- package/cjs/ReadOnlyAttributeValuesBlock/index.d.ts +0 -1
- package/cjs/ReadOnlyAttributeValuesBlock/index.js +0 -8
- package/cjs/ReadOnlyAttributesFactory/ReadOnlyAttributesFactory.d.ts +0 -3
- package/cjs/ReadOnlyAttributesFactory/ReadOnlyAttributesFactory.js +0 -39
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.d.ts +0 -1
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.js +0 -9
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.test.d.ts +0 -1
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.test.js +0 -69
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/index.d.ts +0 -1
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/index.js +0 -5
- package/cjs/ReadOnlyAttributesFactory/index.d.ts +0 -2
- package/cjs/ReadOnlyAttributesFactory/index.js +0 -7
- package/cjs/ReadOnlyAttributesList/ReadOnlyAttributesList.d.ts +0 -18
- package/cjs/ReadOnlyAttributesList/ReadOnlyAttributesList.js +0 -73
- package/cjs/ReadOnlyAttributesList/ReadOnlyAttributesList.test.d.ts +0 -1
- package/cjs/ReadOnlyAttributesList/ReadOnlyAttributesList.test.js +0 -307
- package/cjs/ReadOnlyAttributesList/attributes.test-data.d.ts +0 -28
- package/cjs/ReadOnlyAttributesList/attributes.test-data.js +0 -40
- package/cjs/ReadOnlyAttributesList/index.d.ts +0 -1
- package/cjs/ReadOnlyAttributesList/index.js +0 -8
- package/cjs/ReadOnlyAttributesPager/ReadOnlyAttributesPager.js +0 -88
- package/cjs/ReadOnlyAttributesPager/ReadOnlyAttributesPager.test.d.ts +0 -1
- package/cjs/ReadOnlyAttributesPager/ReadOnlyAttributesPager.test.js +0 -255
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.d.ts +0 -11
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.js +0 -22
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.d.ts +0 -1
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.js +0 -50
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/index.d.ts +0 -1
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/index.js +0 -5
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.d.ts +0 -16
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.js +0 -74
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.test.d.ts +0 -1
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.test.js +0 -119
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/index.d.ts +0 -1
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/index.js +0 -5
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.d.ts +0 -12
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.js +0 -34
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.d.ts +0 -1
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.js +0 -106
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/index.d.ts +0 -1
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/index.js +0 -5
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.d.ts +0 -7
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.js +0 -41
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.test.d.ts +0 -1
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.test.js +0 -77
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/index.d.ts +0 -1
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/index.js +0 -5
- package/cjs/ReadOnlyAttributesPager/index.d.ts +0 -1
- package/cjs/ReadOnlyAttributesPager/index.js +0 -8
- package/cjs/ReadOnlyAttributesPager/styles.d.ts +0 -3
- package/cjs/ReadOnlyAttributesView/ReadOnlyAttributesView.d.ts +0 -11
- package/cjs/ReadOnlyAttributesView/ReadOnlyAttributesView.js +0 -62
- package/cjs/ReadOnlyAttributesView/ReadOnlyAttributesView.test.d.ts +0 -1
- package/cjs/ReadOnlyAttributesView/ReadOnlyAttributesView.test.js +0 -210
- package/cjs/ReadOnlyAttributesView/index.d.ts +0 -1
- package/cjs/ReadOnlyAttributesView/index.js +0 -5
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.d.ts +0 -45
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.js +0 -93
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.d.ts +0 -1
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.js +0 -263
- package/cjs/ReadOnlyComplexAttribute/index.d.ts +0 -1
- package/cjs/ReadOnlyComplexAttribute/index.js +0 -5
- package/cjs/ReadOnlyComplexAttribute/nestedAttrType.test-data.d.ts +0 -31
- package/cjs/ReadOnlyComplexAttribute/nestedAttrType.test-data.js +0 -74
- package/cjs/ReadOnlyComplexAttribute/nestedAttrValue.test-data.d.ts +0 -29
- package/cjs/ReadOnlyComplexAttribute/nestedAttrValue.test-data.js +0 -38
- package/cjs/ReadOnlyComplexAttribute/styles.d.ts +0 -1
- package/cjs/ReadOnlyComplexAttribute/styles.js +0 -24
- package/cjs/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.d.ts +0 -13
- package/cjs/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.js +0 -58
- package/cjs/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.test.d.ts +0 -1
- package/cjs/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.test.js +0 -117
- package/cjs/ReadOnlyImageAttributesLine/index.d.ts +0 -1
- package/cjs/ReadOnlyImageAttributesLine/index.js +0 -5
- package/cjs/ReadOnlyImageAttributesLine/styles.d.ts +0 -2
- package/cjs/ReadOnlyImageAttributesLine/styles.js +0 -89
- package/cjs/ReferenceAttribute/ReferenceAttribute.d.ts +0 -25
- package/cjs/ReferenceAttribute/ReferenceAttribute.js +0 -85
- package/cjs/ReferenceAttribute/ReferenceAttribute.test.d.ts +0 -1
- package/cjs/ReferenceAttribute/ReferenceAttribute.test.js +0 -274
- package/cjs/ReferenceAttribute/index.d.ts +0 -1
- package/cjs/ReferenceAttribute/index.js +0 -5
- package/cjs/ReferenceAttribute/styles.d.ts +0 -2
- package/cjs/ReferenceAttribute/styles.js +0 -26
- package/cjs/ReferenceAttributeEditor/ReferenceAttributeEditor.js +0 -162
- package/cjs/ReferenceAttributeEditor/ReferenceAttributeEditor.test.d.ts +0 -1
- package/cjs/ReferenceAttributeEditor/ReferenceAttributeEditor.test.js +0 -693
- package/cjs/ReferenceAttributeEditor/index.d.ts +0 -1
- package/cjs/ReferenceAttributeEditor/index.js +0 -8
- package/cjs/ReferenceAttributeEditor/metadata.test-data.d.ts +0 -52
- package/cjs/ReferenceAttributeEditor/metadata.test-data.js +0 -79
- package/cjs/ReferenceAttributeEditor/styles.d.ts +0 -1
- package/cjs/RelationTypeSelector/RelationTypeSelector.d.ts +0 -27
- package/cjs/RelationTypeSelector/RelationTypeSelector.js +0 -77
- package/cjs/RelationTypeSelector/RelationTypeSelector.test.d.ts +0 -1
- package/cjs/RelationTypeSelector/RelationTypeSelector.test.js +0 -25
- package/cjs/RelationTypeSelector/components/RelationOption/RelationOption.d.ts +0 -20
- package/cjs/RelationTypeSelector/components/RelationOption/RelationOption.js +0 -58
- package/cjs/RelationTypeSelector/components/RelationOption/index.d.ts +0 -1
- package/cjs/RelationTypeSelector/components/RelationOption/index.js +0 -5
- package/cjs/RelationTypeSelector/components/RelationOption/styles.d.ts +0 -1
- package/cjs/RelationTypeSelector/components/RelationOption/styles.js +0 -55
- package/cjs/RelationTypeSelector/index.d.ts +0 -1
- package/cjs/RelationTypeSelector/index.js +0 -5
- package/cjs/Roles/Roles.d.ts +0 -6
- package/cjs/Roles/Roles.js +0 -14
- package/cjs/Roles/Roles.test.d.ts +0 -1
- package/cjs/Roles/Roles.test.js +0 -20
- package/cjs/Roles/components/Role/Role.d.ts +0 -5
- package/cjs/Roles/components/Role/Role.js +0 -45
- package/cjs/Roles/components/Role/Role.test.d.ts +0 -1
- package/cjs/Roles/components/Role/Role.test.js +0 -60
- package/cjs/Roles/components/Role/index.d.ts +0 -1
- package/cjs/Roles/components/Role/index.js +0 -5
- package/cjs/Roles/components/Role/styles.d.ts +0 -1
- package/cjs/Roles/components/Role/styles.js +0 -23
- package/cjs/Roles/index.d.ts +0 -1
- package/cjs/Roles/index.js +0 -5
- package/cjs/RolesEditor/RolesEditor.d.ts +0 -8
- package/cjs/RolesEditor/RolesEditor.js +0 -73
- package/cjs/RolesEditor/RolesEditor.test.d.ts +0 -1
- package/cjs/RolesEditor/RolesEditor.test.js +0 -217
- package/cjs/RolesEditor/index.d.ts +0 -1
- package/cjs/RolesEditor/index.js +0 -5
- package/cjs/RowCellAutoSizer/RowCellAutoSizer.d.ts +0 -14
- package/cjs/RowCellAutoSizer/RowCellAutoSizer.js +0 -55
- package/cjs/RowCellAutoSizer/RowCellAutoSizer.test.d.ts +0 -1
- package/cjs/RowCellAutoSizer/RowCellAutoSizer.test.js +0 -142
- package/cjs/RowCellAutoSizer/index.d.ts +0 -1
- package/cjs/RowCellAutoSizer/index.js +0 -5
- package/cjs/ShowLess/ShowLess.d.ts +0 -5
- package/cjs/ShowLess/ShowLess.js +0 -19
- package/cjs/ShowLess/ShowLess.test.d.ts +0 -1
- package/cjs/ShowLess/ShowLess.test.js +0 -63
- package/cjs/ShowLess/index.d.ts +0 -1
- package/cjs/ShowLess/index.js +0 -5
- package/cjs/ShowLess/styles.d.ts +0 -1
- package/cjs/ShowLess/styles.js +0 -13
- package/cjs/ShowMore/ShowMore.d.ts +0 -7
- package/cjs/ShowMore/ShowMore.js +0 -21
- package/cjs/ShowMore/ShowMore.test.d.ts +0 -1
- package/cjs/ShowMore/ShowMore.test.js +0 -94
- package/cjs/ShowMore/index.d.ts +0 -1
- package/cjs/ShowMore/index.js +0 -5
- package/cjs/ShowMore/styles.d.ts +0 -1
- package/cjs/ShowMore/styles.js +0 -13
- package/cjs/SimpleAttribute/SimpleAttribute.d.ts +0 -9
- package/cjs/SimpleAttribute/SimpleAttribute.js +0 -67
- package/cjs/SimpleAttribute/SimpleAttribute.test.d.ts +0 -1
- package/cjs/SimpleAttribute/SimpleAttribute.test.js +0 -147
- package/cjs/SimpleAttribute/index.d.ts +0 -1
- package/cjs/SimpleAttribute/index.js +0 -5
- package/cjs/SimpleAttribute/styles.d.ts +0 -1
- package/cjs/SimpleAttribute/styles.js +0 -44
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +0 -19
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditor.js +0 -167
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditor.test.d.ts +0 -1
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditor.test.js +0 -544
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditorWithoutPermissions.test.d.ts +0 -1
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditorWithoutPermissions.test.js +0 -79
- package/cjs/SimpleAttributeEditor/helpers.d.ts +0 -1
- package/cjs/SimpleAttributeEditor/helpers.js +0 -13
- package/cjs/SimpleAttributeEditor/helpers.test.d.ts +0 -1
- package/cjs/SimpleAttributeEditor/helpers.test.js +0 -128
- package/cjs/SimpleAttributeEditor/index.d.ts +0 -1
- package/cjs/SimpleAttributeEditor/index.js +0 -8
- package/cjs/SimpleAttributeEditor/styles.d.ts +0 -1
- package/cjs/SimpleAttributeEditor/useAttributeValuePermissions.js +0 -14
- package/cjs/SimpleAttributeEditor/useAutopopulationContextValue.js +0 -21
- package/cjs/SimpleAttributeEditor/useAutopopulationContextValue.specs.d.ts +0 -1
- package/cjs/SimpleAttributeEditor/useAutopopulationContextValue.specs.js +0 -118
- package/cjs/SmallIconButton/SmallIconButton.d.ts +0 -8
- package/cjs/SmallIconButton/SmallIconButton.js +0 -61
- package/cjs/SmallIconButton/SmallIconButton.specs.d.ts +0 -1
- package/cjs/SmallIconButton/SmallIconButton.specs.js +0 -42
- package/cjs/SmallIconButton/constants.d.ts +0 -9
- package/cjs/SmallIconButton/constants.js +0 -12
- package/cjs/SmallIconButton/index.d.ts +0 -16
- package/cjs/SmallIconButton/index.js +0 -8
- package/cjs/SmallIconButton/styles.d.ts +0 -1
- package/cjs/SmallIconButton/styles.js +0 -49
- package/cjs/SourceIcon/SourceIcon.d.ts +0 -10
- package/cjs/SourceIcon/SourceIcon.js +0 -20
- package/cjs/SourceIcon/SourceIcon.spec.d.ts +0 -1
- package/cjs/SourceIcon/SourceIcon.spec.js +0 -65
- package/cjs/SourceIcon/index.d.ts +0 -1
- package/cjs/SourceIcon/index.js +0 -5
- package/cjs/SourceItem/SourceItem.d.ts +0 -9
- package/cjs/SourceItem/SourceItem.js +0 -31
- package/cjs/SourceItem/SourceItem.spec.d.ts +0 -1
- package/cjs/SourceItem/SourceItem.spec.js +0 -126
- package/cjs/SourceItem/index.d.ts +0 -1
- package/cjs/SourceItem/index.js +0 -5
- package/cjs/SourceItem/styles.d.ts +0 -8
- package/cjs/SourceItem/styles.js +0 -56
- package/cjs/SpecialAttributesArray/SpecialAttributesArray.d.ts +0 -9
- package/cjs/SpecialAttributesArray/SpecialAttributesArray.js +0 -34
- package/cjs/SpecialAttributesArray/SpecialAttributesArray.test.d.ts +0 -1
- package/cjs/SpecialAttributesArray/SpecialAttributesArray.test.js +0 -21
- package/cjs/SpecialAttributesArray/index.d.ts +0 -1
- package/cjs/SpecialAttributesArray/index.js +0 -5
- package/cjs/TableWithBars/TableWithBars.d.ts +0 -10
- package/cjs/TableWithBars/TableWithBars.js +0 -80
- package/cjs/TableWithBars/TableWithBars.test.d.ts +0 -1
- package/cjs/TableWithBars/TableWithBars.test.js +0 -80
- package/cjs/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.js +0 -30
- package/cjs/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.test.d.ts +0 -1
- package/cjs/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.test.js +0 -26
- package/cjs/TableWithBars/components/AttributeCellRenderer/index.d.ts +0 -1
- package/cjs/TableWithBars/components/AttributeCellRenderer/index.js +0 -8
- package/cjs/TableWithBars/components/AttributeCellRenderer/styles.d.ts +0 -1
- package/cjs/TableWithBars/components/AttributeCellRenderer/styles.js +0 -29
- package/cjs/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.d.ts +0 -8
- package/cjs/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.js +0 -41
- package/cjs/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.test.d.ts +0 -1
- package/cjs/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.test.js +0 -25
- package/cjs/TableWithBars/components/HeadCellRenderer/index.d.ts +0 -1
- package/cjs/TableWithBars/components/HeadCellRenderer/index.js +0 -5
- package/cjs/TableWithBars/components/HeadCellRenderer/styles.d.ts +0 -1
- package/cjs/TableWithBars/components/HeadCellRenderer/styles.js +0 -33
- package/cjs/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.d.ts +0 -8
- package/cjs/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.js +0 -21
- package/cjs/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.test.d.ts +0 -1
- package/cjs/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.test.js +0 -41
- package/cjs/TableWithBars/components/NumberCellValueRenderer/index.d.ts +0 -1
- package/cjs/TableWithBars/components/NumberCellValueRenderer/index.js +0 -5
- package/cjs/TableWithBars/components/NumberCellValueRenderer/styles.d.ts +0 -1
- package/cjs/TableWithBars/components/NumberCellValueRenderer/styles.js +0 -31
- package/cjs/TableWithBars/index.d.ts +0 -1
- package/cjs/TableWithBars/index.js +0 -5
- package/cjs/Tags/Tags.d.ts +0 -7
- package/cjs/Tags/Tags.js +0 -14
- package/cjs/Tags/Tags.test.d.ts +0 -1
- package/cjs/Tags/Tags.test.js +0 -20
- package/cjs/Tags/components/Tag/Tag.d.ts +0 -5
- package/cjs/Tags/components/Tag/Tag.js +0 -56
- package/cjs/Tags/components/Tag/Tag.test.d.ts +0 -1
- package/cjs/Tags/components/Tag/Tag.test.js +0 -75
- package/cjs/Tags/components/Tag/index.d.ts +0 -1
- package/cjs/Tags/components/Tag/index.js +0 -5
- package/cjs/Tags/components/Tag/styles.d.ts +0 -1
- package/cjs/Tags/components/Tag/styles.js +0 -23
- package/cjs/Tags/index.d.ts +0 -1
- package/cjs/Tags/index.js +0 -5
- package/cjs/TagsEditor/TagsEditor.d.ts +0 -8
- package/cjs/TagsEditor/TagsEditor.js +0 -118
- package/cjs/TagsEditor/TagsEditor.test.d.ts +0 -1
- package/cjs/TagsEditor/TagsEditor.test.js +0 -221
- package/cjs/TagsEditor/index.d.ts +0 -1
- package/cjs/TagsEditor/index.js +0 -5
- package/cjs/TreeChart/TreeChart.d.ts +0 -7
- package/cjs/TreeChart/TreeChart.js +0 -54
- package/cjs/TreeChart/TreeChart.test.d.ts +0 -1
- package/cjs/TreeChart/TreeChart.test.js +0 -91
- package/cjs/TreeChart/components/CustomizedContent/CustomizedContent.d.ts +0 -10
- package/cjs/TreeChart/components/CustomizedContent/CustomizedContent.js +0 -49
- package/cjs/TreeChart/components/CustomizedContent/index.d.ts +0 -1
- package/cjs/TreeChart/components/CustomizedContent/index.js +0 -5
- package/cjs/TreeChart/index.d.ts +0 -1
- package/cjs/TreeChart/index.js +0 -5
- package/cjs/TypeaheadEditor/TypeaheadEditor.d.ts +0 -21
- package/cjs/TypeaheadEditor/TypeaheadEditor.js +0 -265
- package/cjs/TypeaheadEditor/TypeaheadEditor.test.d.ts +0 -1
- package/cjs/TypeaheadEditor/TypeaheadEditor.test.js +0 -506
- package/cjs/TypeaheadEditor/index.d.ts +0 -1
- package/cjs/TypeaheadEditor/index.js +0 -5
- package/cjs/contexts/BasicTableContext/index.d.ts +0 -2
- package/cjs/contexts/BasicTableContext/index.js +0 -9
- package/cjs/contexts/RowCollapseContext/index.d.ts +0 -2
- package/cjs/features/activity-log/ActivitiesFactory/ActivitiesFactory.d.ts +0 -10
- package/cjs/features/activity-log/ActivitiesFactory/ActivitiesFactory.js +0 -128
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.d.ts +0 -7
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.js +0 -13
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.test.js +0 -33
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/index.js +0 -5
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.d.ts +0 -7
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.js +0 -20
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.test.js +0 -66
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/index.js +0 -5
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.d.ts +0 -7
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.js +0 -20
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.test.js +0 -113
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/index.js +0 -5
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/ObjectLabel.d.ts +0 -5
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/ObjectLabel.js +0 -14
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/index.js +0 -5
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/styles.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/styles.js +0 -11
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.d.ts +0 -7
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.js +0 -17
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.test.js +0 -60
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/index.js +0 -5
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.d.ts +0 -7
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.js +0 -20
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.test.js +0 -133
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/index.js +0 -5
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.d.ts +0 -7
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.js +0 -20
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.test.js +0 -143
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/index.js +0 -5
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.d.ts +0 -7
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.js +0 -51
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.test.js +0 -228
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/index.js +0 -5
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/styles.js +0 -12
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.d.ts +0 -7
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.js +0 -24
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.test.js +0 -50
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/index.js +0 -5
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/styles.js +0 -12
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.d.ts +0 -7
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.js +0 -27
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.test.js +0 -70
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/index.js +0 -5
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/styles.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/styles.js +0 -10
- package/cjs/features/activity-log/ActivitiesFactory/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivitiesFactory/index.js +0 -5
- package/cjs/features/activity-log/ActivityExportButton/ActivityExportButton.d.ts +0 -7
- package/cjs/features/activity-log/ActivityExportButton/ActivityExportButton.js +0 -81
- package/cjs/features/activity-log/ActivityExportButton/ActivityExportButton.specs.d.ts +0 -1
- package/cjs/features/activity-log/ActivityExportButton/ActivityExportButton.specs.js +0 -166
- package/cjs/features/activity-log/ActivityExportButton/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityExportButton/index.js +0 -5
- package/cjs/features/activity-log/ActivityFilterButton/ActivityFilterButton.d.ts +0 -9
- package/cjs/features/activity-log/ActivityFilterButton/ActivityFilterButton.js +0 -68
- package/cjs/features/activity-log/ActivityFilterButton/ActivityFilterButton.specs.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterButton/ActivityFilterButton.specs.js +0 -131
- package/cjs/features/activity-log/ActivityFilterButton/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterButton/index.js +0 -5
- package/cjs/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.d.ts +0 -13
- package/cjs/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.js +0 -76
- package/cjs/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.specs.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.specs.js +0 -258
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.d.ts +0 -8
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.js +0 -34
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.specs.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.specs.js +0 -158
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/index.js +0 -5
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.d.ts +0 -7
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.js +0 -125
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.specs.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.specs.js +0 -185
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/index.js +0 -5
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/styles.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/styles.js +0 -70
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.d.ts +0 -9
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.js +0 -27
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.specs.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.specs.js +0 -159
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/index.js +0 -5
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.d.ts +0 -8
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.js +0 -30
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.specs.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.specs.js +0 -65
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/index.js +0 -5
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.d.ts +0 -7
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.js +0 -30
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.specs.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.specs.js +0 -119
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/index.js +0 -5
- package/cjs/features/activity-log/ActivityFilterEditor/editor.test-data.d.ts +0 -25
- package/cjs/features/activity-log/ActivityFilterEditor/editor.test-data.js +0 -75
- package/cjs/features/activity-log/ActivityFilterEditor/helpers.js +0 -35
- package/cjs/features/activity-log/ActivityFilterEditor/helpers.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/helpers.test.js +0 -97
- package/cjs/features/activity-log/ActivityFilterEditor/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityFilterEditor/index.js +0 -5
- package/cjs/features/activity-log/ActivityFilterEditor/styles.d.ts +0 -5
- package/cjs/features/activity-log/ActivityLog/ActivityLog.d.ts +0 -7
- package/cjs/features/activity-log/ActivityLog/ActivityLog.js +0 -73
- package/cjs/features/activity-log/ActivityLog/ActivityLog.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivityLog/ActivityLog.test.js +0 -213
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.d.ts +0 -6
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.js +0 -28
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.test.js +0 -140
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/index.js +0 -5
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/GroupItem.d.ts +0 -7
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/GroupItem.js +0 -23
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/GroupItem.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/GroupItem.test.js +0 -41
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/index.js +0 -5
- package/cjs/features/activity-log/ActivityLog/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityLog/index.js +0 -5
- package/cjs/features/activity-log/ActivityLogFilter/ActivityLogFilter.d.ts +0 -11
- package/cjs/features/activity-log/ActivityLogFilter/ActivityLogFilter.js +0 -43
- package/cjs/features/activity-log/ActivityLogFilter/ActivityLogFilter.specs.d.ts +0 -1
- package/cjs/features/activity-log/ActivityLogFilter/ActivityLogFilter.specs.js +0 -88
- package/cjs/features/activity-log/ActivityLogFilter/helpers.specs.d.ts +0 -1
- package/cjs/features/activity-log/ActivityLogFilter/helpers.specs.js +0 -436
- package/cjs/features/activity-log/ActivityLogFilter/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityLogFilter/index.js +0 -5
- package/cjs/features/activity-log/ActivityLogFilter/styles.d.ts +0 -1
- package/cjs/features/activity-log/ActivityTitle/ActivityTitle.d.ts +0 -8
- package/cjs/features/activity-log/ActivityTitle/ActivityTitle.js +0 -17
- package/cjs/features/activity-log/ActivityTitle/ActivityTitle.test.d.ts +0 -1
- package/cjs/features/activity-log/ActivityTitle/ActivityTitle.test.js +0 -19
- package/cjs/features/activity-log/ActivityTitle/index.d.ts +0 -1
- package/cjs/features/activity-log/ActivityTitle/index.js +0 -5
- package/cjs/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.d.ts +0 -9
- package/cjs/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.js +0 -21
- package/cjs/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.test.d.ts +0 -1
- package/cjs/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.test.js +0 -94
- package/cjs/features/activity-log/CollapsibleActivityRecords/index.d.ts +0 -1
- package/cjs/features/activity-log/CollapsibleActivityRecords/index.js +0 -5
- package/cjs/features/activity-log/EntityObject/EntityObject.d.ts +0 -6
- package/cjs/features/activity-log/EntityObject/EntityObject.js +0 -20
- package/cjs/features/activity-log/EntityObject/EntityObject.test.d.ts +0 -1
- package/cjs/features/activity-log/EntityObject/EntityObject.test.js +0 -46
- package/cjs/features/activity-log/EntityObject/index.d.ts +0 -1
- package/cjs/features/activity-log/EntityObject/index.js +0 -5
- package/cjs/features/activity-log/EntityRecord/EntityRecord.d.ts +0 -6
- package/cjs/features/activity-log/EntityRecord/EntityRecord.js +0 -45
- package/cjs/features/activity-log/EntityRecord/EntityRecord.test.d.ts +0 -1
- package/cjs/features/activity-log/EntityRecord/EntityRecord.test.js +0 -247
- package/cjs/features/activity-log/EntityRecord/index.d.ts +0 -1
- package/cjs/features/activity-log/EntityRecord/index.js +0 -5
- package/cjs/features/activity-log/EntityRecord/styles.d.ts +0 -1
- package/cjs/features/activity-log/EntityRecord/styles.js +0 -14
- package/cjs/features/activity-log/Field/Field.d.ts +0 -7
- package/cjs/features/activity-log/Field/Field.js +0 -18
- package/cjs/features/activity-log/Field/index.d.ts +0 -1
- package/cjs/features/activity-log/Field/index.js +0 -5
- package/cjs/features/activity-log/Field/styles.d.ts +0 -1
- package/cjs/features/activity-log/Field/styles.js +0 -17
- package/cjs/features/activity-log/MoreItemsLink/MoreItemsLink.d.ts +0 -8
- package/cjs/features/activity-log/MoreItemsLink/index.d.ts +0 -1
- package/cjs/features/activity-log/MoreItemsLink/index.js +0 -5
- package/cjs/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.d.ts +0 -6
- package/cjs/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.js +0 -20
- package/cjs/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.test.d.ts +0 -1
- package/cjs/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.test.js +0 -57
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.d.ts +0 -6
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.js +0 -36
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.test.d.ts +0 -1
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.test.js +0 -179
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/helpers.d.ts +0 -2
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/helpers.js +0 -22
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/index.d.ts +0 -1
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/index.js +0 -5
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/styles.d.ts +0 -1
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/styles.js +0 -18
- package/cjs/features/activity-log/PotentialMatchRecord/index.d.ts +0 -1
- package/cjs/features/activity-log/PotentialMatchRecord/index.js +0 -5
- package/cjs/features/activity-log/Record/Record.d.ts +0 -6
- package/cjs/features/activity-log/Record/Record.js +0 -14
- package/cjs/features/activity-log/Record/index.d.ts +0 -1
- package/cjs/features/activity-log/Record/index.js +0 -5
- package/cjs/features/activity-log/Record/styles.d.ts +0 -1
- package/cjs/features/activity-log/Record/styles.js +0 -18
- package/cjs/features/activity-log/RecordLabel/RecordLabel.d.ts +0 -7
- package/cjs/features/activity-log/RecordLabel/RecordLabel.js +0 -17
- package/cjs/features/activity-log/RecordLabel/index.d.ts +0 -1
- package/cjs/features/activity-log/RecordLabel/index.js +0 -5
- package/cjs/features/activity-log/RecordLabel/styles.d.ts +0 -1
- package/cjs/features/activity-log/RecordLabel/styles.js +0 -15
- package/cjs/features/activity-log/RecordUpdates/RecordUpdates.d.ts +0 -7
- package/cjs/features/activity-log/RecordUpdates/RecordUpdates.js +0 -24
- package/cjs/features/activity-log/RecordUpdates/RecordUpdates.specs.d.ts +0 -1
- package/cjs/features/activity-log/RecordUpdates/RecordUpdates.specs.js +0 -150
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.d.ts +0 -6
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.js +0 -39
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.test.d.ts +0 -1
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.test.js +0 -124
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/index.d.ts +0 -1
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/index.js +0 -5
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/styles.d.ts +0 -1
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/styles.js +0 -36
- package/cjs/features/activity-log/RecordUpdates/index.d.ts +0 -1
- package/cjs/features/activity-log/RecordUpdates/index.js +0 -5
- package/cjs/features/activity-log/RecordUpdates/styles.d.ts +0 -1
- package/cjs/features/activity-log/RecordUpdates/styles.js +0 -9
- package/cjs/features/activity-log/RelationObject/RelationObject.d.ts +0 -6
- package/cjs/features/activity-log/RelationObject/RelationObject.js +0 -21
- package/cjs/features/activity-log/RelationObject/RelationObject.test.d.ts +0 -1
- package/cjs/features/activity-log/RelationObject/RelationObject.test.js +0 -39
- package/cjs/features/activity-log/RelationObject/index.d.ts +0 -1
- package/cjs/features/activity-log/RelationObject/index.js +0 -5
- package/cjs/features/activity-log/RelationRecord/RelationRecord.d.ts +0 -6
- package/cjs/features/activity-log/RelationRecord/RelationRecord.js +0 -22
- package/cjs/features/activity-log/RelationRecord/RelationRecord.test.d.ts +0 -1
- package/cjs/features/activity-log/RelationRecord/RelationRecord.test.js +0 -93
- package/cjs/features/activity-log/RelationRecord/index.d.ts +0 -1
- package/cjs/features/activity-log/RelationRecord/index.js +0 -5
- package/cjs/features/activity-log/contexts/CollapsibleItemsContext.d.ts +0 -14
- package/cjs/features/activity-log/hooks/useActivitiesLoader.js +0 -64
- package/cjs/features/activity-log/index.d.ts +0 -7
- package/cjs/features/activity-log/index.js +0 -15
- package/cjs/features/activity-log/types.d.ts +0 -98
- package/cjs/features/activity-log/types.js +0 -41
- package/cjs/features/activity-log/utils/activities.test.d.ts +0 -1
- package/cjs/features/activity-log/utils/activities.test.js +0 -605
- package/cjs/features/activity-log/utils/filters.test.d.ts +0 -1
- package/cjs/features/activity-log/utils/filters.test.js +0 -242
- package/cjs/helpers/attributesView.d.ts +0 -16
- package/cjs/helpers/attributesView.js +0 -80
- package/cjs/helpers/attributesView.test.d.ts +0 -1
- package/cjs/helpers/attributesView.test.js +0 -95
- package/cjs/helpers/basicTable.d.ts +0 -18
- package/cjs/helpers/basicTable.js +0 -78
- package/cjs/helpers/basicTable.test.d.ts +0 -1
- package/cjs/helpers/basicTable.test.js +0 -40
- package/cjs/helpers/charts.d.ts +0 -2
- package/cjs/helpers/charts.js +0 -21
- package/cjs/hooks/useBasicTableCellRenderer/CellRenderer.d.ts +0 -12
- package/cjs/hooks/useBasicTableCellRenderer/CellRenderer.js +0 -46
- package/cjs/hooks/useBasicTableCellRenderer/CellRenderer.test.d.ts +0 -1
- package/cjs/hooks/useBasicTableCellRenderer/CellRenderer.test.js +0 -56
- package/cjs/hooks/useBasicTableCellRenderer/index.d.ts +0 -2
- package/cjs/hooks/useBasicTableCellRenderer/index.js +0 -7
- package/cjs/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.d.ts +0 -22
- package/cjs/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.js +0 -33
- package/cjs/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.test.d.ts +0 -1
- package/cjs/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.test.js +0 -128
- package/cjs/hooks/useChartTooltipState.d.ts +0 -7
- package/cjs/hooks/useChartTooltipState.js +0 -31
- package/cjs/hooks/useClickableChartStyle.d.ts +0 -1
- package/cjs/hooks/useClickableChartStyle.js +0 -14
- package/cjs/hooks/useCollapsibleTableRows/dataHelpers.d.ts +0 -2
- package/cjs/hooks/useCollapsibleTableRows/dataHelpers.js +0 -95
- package/cjs/hooks/useCollapsibleTableRows/dataHelpers.test.d.ts +0 -1
- package/cjs/hooks/useCollapsibleTableRows/dataHelpers.test.js +0 -324
- package/cjs/hooks/useCollapsibleTableRows/index.d.ts +0 -1
- package/cjs/hooks/useCollapsibleTableRows/index.js +0 -5
- package/cjs/hooks/useCollapsibleTableRows/nestedHelpers.test.d.ts +0 -1
- package/cjs/hooks/useCollapsibleTableRows/nestedHelpers.test.js +0 -166
- package/cjs/hooks/useCollapsibleTableRows/useCollapsibleTableRows.d.ts +0 -19
- package/cjs/hooks/useCollapsibleTableRows/useCollapsibleTableRows.js +0 -49
- package/cjs/hooks/useCollapsibleTableRows/useCollapsibleTableRows.test.d.ts +0 -1
- package/cjs/hooks/useCollapsibleTableRows/useCollapsibleTableRows.test.js +0 -164
- package/cjs/hooks/useDynamicRowCellHeight.d.ts +0 -13
- package/cjs/hooks/useDynamicRowCellHeight.js +0 -44
- package/cjs/hooks/useScrollToAttribute/useScrollToAttribute.d.ts +0 -9
- package/cjs/test-utils/TestPerspectiveSettingsProvider.d.ts +0 -8
- package/cjs/test-utils/TestPerspectiveSettingsProvider.js +0 -55
- package/cjs/test-utils/TestStylesProvider.d.ts +0 -3
- package/cjs/test-utils/TestStylesProvider.js +0 -26
- package/cjs/test-utils/index.d.ts +0 -18
- package/cjs/test-utils/index.js +0 -119
- package/cjs/types/basicTable.d.ts +0 -82
- package/cjs/types/charts.d.ts +0 -16
- package/cjs/types/inlineAttributes.d.ts +0 -24
- package/esm/ActionButton/ActionButton.d.ts +0 -14
- package/esm/ActionButton/ActionButton.js +0 -66
- package/esm/ActionButton/ActionButton.spec.d.ts +0 -1
- package/esm/ActionButton/ActionButton.spec.js +0 -190
- package/esm/ActionButton/index.d.ts +0 -1
- package/esm/ActionButton/index.js +0 -1
- package/esm/ActionButton/styles.d.ts +0 -1
- package/esm/ActionButton/styles.js +0 -54
- package/esm/ActionsPanel/ActionsPanel.d.ts +0 -16
- package/esm/ActionsPanel/ActionsPanel.js +0 -48
- package/esm/ActionsPanel/ActionsPanel.test.d.ts +0 -1
- package/esm/ActionsPanel/ActionsPanel.test.js +0 -80
- package/esm/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.d.ts +0 -8
- package/esm/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.js +0 -32
- package/esm/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.spec.d.ts +0 -1
- package/esm/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.spec.js +0 -73
- package/esm/ActionsPanel/components/MenuItemRenderer/index.d.ts +0 -1
- package/esm/ActionsPanel/components/MenuItemRenderer/index.js +0 -1
- package/esm/ActionsPanel/index.d.ts +0 -1
- package/esm/ActionsPanel/index.js +0 -1
- package/esm/ActionsPanel/types.d.ts +0 -5
- package/esm/ActionsPanel/types.js +0 -1
- package/esm/ArrowExpandButton/ArrowExpandButton.d.ts +0 -7
- package/esm/ArrowExpandButton/ArrowExpandButton.js +0 -33
- package/esm/ArrowExpandButton/index.d.ts +0 -1
- package/esm/ArrowExpandButton/index.js +0 -1
- package/esm/AttributeGroupIcon/AttributeGroupIcon.d.ts +0 -10
- package/esm/AttributeGroupIcon/AttributeGroupIcon.js +0 -13
- package/esm/AttributeGroupIcon/AttributeGroupIcon.spec.d.ts +0 -1
- package/esm/AttributeGroupIcon/AttributeGroupIcon.spec.js +0 -51
- package/esm/AttributeGroupIcon/index.d.ts +0 -1
- package/esm/AttributeGroupIcon/index.js +0 -1
- package/esm/AttributeListItem/AttributeListItem.d.ts +0 -41
- package/esm/AttributeListItem/AttributeListItem.js +0 -45
- package/esm/AttributeListItem/AttributeListItem.spec.d.ts +0 -1
- package/esm/AttributeListItem/AttributeListItem.spec.js +0 -149
- package/esm/AttributeListItem/components/AttrTypeIcon/AttrTypeIcon.d.ts +0 -6
- package/esm/AttributeListItem/components/AttrTypeIcon/AttrTypeIcon.js +0 -23
- package/esm/AttributeListItem/components/AttrTypeIcon/index.d.ts +0 -1
- package/esm/AttributeListItem/components/AttrTypeIcon/index.js +0 -1
- package/esm/AttributeListItem/components/AttrTypeIcon/styles.js +0 -11
- package/esm/AttributeListItem/index.d.ts +0 -1
- package/esm/AttributeListItem/index.js +0 -1
- package/esm/AttributeListItem/styles.d.ts +0 -1
- package/esm/AttributeListItem/styles.js +0 -86
- package/esm/AttributeSelector/AttributeSelector.d.ts +0 -13
- package/esm/AttributeSelector/AttributeSelector.js +0 -77
- package/esm/AttributeSelector/AttributeSelector.specs.d.ts +0 -1
- package/esm/AttributeSelector/AttributeSelector.specs.js +0 -272
- package/esm/AttributeSelector/index.d.ts +0 -1
- package/esm/AttributeSelector/index.js +0 -1
- package/esm/AttributesErrorsPanel/AttributesErrorsPanel.d.ts +0 -6
- package/esm/AttributesErrorsPanel/AttributesErrorsPanel.js +0 -53
- package/esm/AttributesErrorsPanel/AttributesErrorsPanel.specs.d.ts +0 -1
- package/esm/AttributesErrorsPanel/AttributesErrorsPanel.specs.js +0 -115
- package/esm/AttributesErrorsPanel/components/Error/Error.js +0 -33
- package/esm/AttributesErrorsPanel/components/Error/Error.specs.d.ts +0 -1
- package/esm/AttributesErrorsPanel/components/Error/Error.specs.js +0 -245
- package/esm/AttributesErrorsPanel/components/Error/helpers.d.ts +0 -4
- package/esm/AttributesErrorsPanel/components/Error/helpers.js +0 -28
- package/esm/AttributesErrorsPanel/components/Error/index.d.ts +0 -1
- package/esm/AttributesErrorsPanel/components/Error/index.js +0 -1
- package/esm/AttributesErrorsPanel/components/Error/styles.d.ts +0 -1
- package/esm/AttributesErrorsPanel/components/Error/styles.js +0 -48
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.js +0 -25
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.specs.d.ts +0 -1
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.specs.js +0 -95
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/index.d.ts +0 -1
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/index.js +0 -1
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/styles.d.ts +0 -1
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/styles.js +0 -47
- package/esm/AttributesErrorsPanel/helpers.d.ts +0 -2
- package/esm/AttributesErrorsPanel/helpers.js +0 -7
- package/esm/AttributesErrorsPanel/index.d.ts +0 -1
- package/esm/AttributesErrorsPanel/index.js +0 -1
- package/esm/AttributesErrorsPanel/styles.d.ts +0 -1
- package/esm/AttributesErrorsPanel/styles.js +0 -26
- package/esm/AttributesErrorsPanel/useCachedErrors.js +0 -17
- package/esm/AttributesFilterSelector/AttributesFilterSelector.d.ts +0 -8
- package/esm/AttributesFilterSelector/AttributesFilterSelector.js +0 -35
- package/esm/AttributesFilterSelector/AttributesFilterSelector.test.d.ts +0 -1
- package/esm/AttributesFilterSelector/AttributesFilterSelector.test.js +0 -113
- package/esm/AttributesFilterSelector/index.d.ts +0 -1
- package/esm/AttributesFilterSelector/index.js +0 -1
- package/esm/AttributesFilterSelector/styles.d.ts +0 -1
- package/esm/AttributesFilterSelector/styles.js +0 -6
- package/esm/AttributesFiltersBuilder/AttributesFiltersBuilder.d.ts +0 -17
- package/esm/AttributesFiltersBuilder/AttributesFiltersBuilder.js +0 -100
- package/esm/AttributesFiltersBuilder/AttributesFiltersBuilder.test.d.ts +0 -1
- package/esm/AttributesFiltersBuilder/AttributesFiltersBuilder.test.js +0 -373
- package/esm/AttributesFiltersBuilder/attributes.test-data.d.ts +0 -49
- package/esm/AttributesFiltersBuilder/attributes.test-data.js +0 -80
- package/esm/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.js +0 -31
- package/esm/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.test.d.ts +0 -1
- package/esm/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.test.js +0 -101
- package/esm/AttributesFiltersBuilder/components/AttributeSelector/index.d.ts +0 -1
- package/esm/AttributesFiltersBuilder/components/AttributeSelector/index.js +0 -1
- package/esm/AttributesFiltersBuilder/components/RowActions/RowActions.js +0 -27
- package/esm/AttributesFiltersBuilder/components/RowActions/RowActions.test.d.ts +0 -1
- package/esm/AttributesFiltersBuilder/components/RowActions/RowActions.test.js +0 -106
- package/esm/AttributesFiltersBuilder/components/RowActions/index.d.ts +0 -1
- package/esm/AttributesFiltersBuilder/components/RowActions/index.js +0 -1
- package/esm/AttributesFiltersBuilder/helpers.d.ts +0 -13
- package/esm/AttributesFiltersBuilder/index.d.ts +0 -2
- package/esm/AttributesFiltersBuilder/index.js +0 -1
- package/esm/AttributesFiltersBuilder/metadata.test-data.d.ts +0 -62
- package/esm/AttributesFiltersBuilder/metadata.test-data.js +0 -58
- package/esm/AttributesFiltersBuilder/types.d.ts +0 -20
- package/esm/AttributesFiltersBuilder/types.js +0 -1
- package/esm/AttributesFiltersButton/AttributesFiltersButton.d.ts +0 -24
- package/esm/AttributesFiltersButton/AttributesFiltersButton.js +0 -66
- package/esm/AttributesFiltersButton/AttributesFiltersButton.test.d.ts +0 -1
- package/esm/AttributesFiltersButton/AttributesFiltersButton.test.js +0 -163
- package/esm/AttributesFiltersButton/components/ActionButtons/ActionButtons.d.ts +0 -7
- package/esm/AttributesFiltersButton/components/ActionButtons/ActionButtons.js +0 -12
- package/esm/AttributesFiltersButton/components/ActionButtons/ActionButtons.test.d.ts +0 -1
- package/esm/AttributesFiltersButton/components/ActionButtons/ActionButtons.test.js +0 -41
- package/esm/AttributesFiltersButton/components/ActionButtons/index.d.ts +0 -1
- package/esm/AttributesFiltersButton/components/ActionButtons/index.js +0 -1
- package/esm/AttributesFiltersButton/index.d.ts +0 -1
- package/esm/AttributesFiltersButton/index.js +0 -1
- package/esm/AttributesValuesEditor/AttributesValuesEditor.d.ts +0 -4
- package/esm/AttributesValuesEditor/AttributesValuesEditor.js +0 -38
- package/esm/AttributesValuesEditor/AttributesValuesEditor.test.d.ts +0 -1
- package/esm/AttributesValuesEditor/AttributesValuesEditor.test.js +0 -88
- package/esm/AttributesValuesEditor/index.d.ts +0 -1
- package/esm/AttributesValuesEditor/index.js +0 -1
- package/esm/AttributesView/AttributesView.d.ts +0 -12
- package/esm/AttributesView/AttributesView.js +0 -36
- package/esm/AttributesView/AttributesView.test.d.ts +0 -1
- package/esm/AttributesView/AttributesView.test.js +0 -56
- package/esm/AttributesView/index.d.ts +0 -1
- package/esm/AttributesView/index.js +0 -1
- package/esm/AutoSizeList/AutoSizeList.d.ts +0 -17
- package/esm/AutoSizeList/AutoSizeList.test.d.ts +0 -1
- package/esm/AutoSizeList/AutoSizeList.test.js +0 -99
- package/esm/AutoSizeList/index.d.ts +0 -1
- package/esm/AutoSizeList/index.js +0 -1
- package/esm/AvatarWithFallback/AvatarWithFallback.d.ts +0 -12
- package/esm/AvatarWithFallback/AvatarWithFallback.js +0 -50
- package/esm/AvatarWithFallback/AvatarWithFallback.specs.d.ts +0 -1
- package/esm/AvatarWithFallback/AvatarWithFallback.specs.js +0 -22
- package/esm/AvatarWithFallback/index.d.ts +0 -1
- package/esm/AvatarWithFallback/index.js +0 -1
- package/esm/AvatarWithFallback/types.d.ts +0 -5
- package/esm/AvatarWithFallback/types.js +0 -6
- package/esm/BarChart/BarChart.d.ts +0 -8
- package/esm/BarChart/BarChart.js +0 -31
- package/esm/BarChart/BarChart.test.d.ts +0 -1
- package/esm/BarChart/BarChart.test.js +0 -117
- package/esm/BarChart/helpers.d.ts +0 -13
- package/esm/BarChart/helpers.js +0 -51
- package/esm/BarChart/index.d.ts +0 -1
- package/esm/BarChart/index.js +0 -1
- package/esm/BasicAttributeSelector/BasicAttributeSelector.d.ts +0 -4
- package/esm/BasicAttributeSelector/BasicAttributeSelector.js +0 -68
- package/esm/BasicAttributeSelector/BasicAttributeSelector.spec.d.ts +0 -1
- package/esm/BasicAttributeSelector/BasicAttributeSelector.spec.js +0 -20
- package/esm/BasicAttributeSelector/components/AttributeTitle/AttributeTitle.d.ts +0 -13
- package/esm/BasicAttributeSelector/components/AttributeTitle/AttributeTitle.js +0 -21
- package/esm/BasicAttributeSelector/components/AttributeTitle/index.d.ts +0 -1
- package/esm/BasicAttributeSelector/components/AttributeTitle/index.js +0 -1
- package/esm/BasicAttributeSelector/components/AttributeTitle/styles.d.ts +0 -1
- package/esm/BasicAttributeSelector/components/AttributeTitle/styles.js +0 -41
- package/esm/BasicAttributeSelector/constants.d.ts +0 -3
- package/esm/BasicAttributeSelector/constants.js +0 -3
- package/esm/BasicAttributeSelector/helpers.d.ts +0 -20
- package/esm/BasicAttributeSelector/helpers.js +0 -69
- package/esm/BasicAttributeSelector/index.d.ts +0 -1
- package/esm/BasicAttributeSelector/index.js +0 -1
- package/esm/BasicAttributeSelector/styles.d.ts +0 -1
- package/esm/BasicAttributeSelector/styles.js +0 -12
- package/esm/BasicTable/BasicTable.d.ts +0 -2
- package/esm/BasicTable/BasicTable.js +0 -60
- package/esm/BasicTable/BasicTable.test.d.ts +0 -1
- package/esm/BasicTable/BasicTable.test.js +0 -277
- package/esm/BasicTable/IntegrationBasicTable.test.d.ts +0 -1
- package/esm/BasicTable/IntegrationBasicTable.test.js +0 -169
- package/esm/BasicTable/basicTableViewState.js +0 -80
- package/esm/BasicTable/basicTableViewState.test.d.ts +0 -1
- package/esm/BasicTable/basicTableViewState.test.js +0 -73
- package/esm/BasicTable/helpers.d.ts +0 -1
- package/esm/BasicTable/helpers.js +0 -27
- package/esm/BasicTable/helpers.test.d.ts +0 -1
- package/esm/BasicTable/helpers.test.js +0 -87
- package/esm/BasicTable/index.d.ts +0 -2
- package/esm/BasicTable/index.js +0 -2
- package/esm/BasicTablePagination/BasicTablePagination.js +0 -45
- package/esm/BasicTablePagination/BasicTablePagination.test.d.ts +0 -1
- package/esm/BasicTablePagination/BasicTablePagination.test.js +0 -117
- package/esm/BasicTablePagination/index.d.ts +0 -1
- package/esm/BasicTablePagination/index.js +0 -1
- package/esm/BasicView/BasicView.d.ts +0 -11
- package/esm/BasicView/BasicView.js +0 -31
- package/esm/BasicView/BasicView.test.d.ts +0 -1
- package/esm/BasicView/BasicView.test.js +0 -13
- package/esm/BasicView/index.d.ts +0 -1
- package/esm/BasicView/index.js +0 -1
- package/esm/BasicViewContent/BasicViewContent.d.ts +0 -4
- package/esm/BasicViewContent/BasicViewContent.js +0 -30
- package/esm/BasicViewContent/BasicViewContent.test.d.ts +0 -1
- package/esm/BasicViewContent/BasicViewContent.test.js +0 -12
- package/esm/BasicViewContent/index.d.ts +0 -1
- package/esm/BasicViewContent/index.js +0 -1
- package/esm/BasicViewHeader/BasicViewHeader.d.ts +0 -7
- package/esm/BasicViewHeader/BasicViewHeader.js +0 -34
- package/esm/BasicViewHeader/BasicViewHeader.test.d.ts +0 -1
- package/esm/BasicViewHeader/BasicViewHeader.test.js +0 -41
- package/esm/BasicViewHeader/index.d.ts +0 -1
- package/esm/BasicViewHeader/index.js +0 -1
- package/esm/BasicViewHeader/styles.d.ts +0 -1
- package/esm/BlobRenderer/BlobRenderer.d.ts +0 -6
- package/esm/BlobRenderer/BlobRenderer.js +0 -7
- package/esm/BlobRenderer/BlobRenderer.test.d.ts +0 -1
- package/esm/BlobRenderer/BlobRenderer.test.js +0 -18
- package/esm/BlobRenderer/index.d.ts +0 -1
- package/esm/BlobRenderer/index.js +0 -1
- package/esm/BlobRenderer/styles.d.ts +0 -1
- package/esm/BlobRenderer/styles.js +0 -13
- package/esm/BranchDecorator/BranchDecorator.d.ts +0 -9
- package/esm/BranchDecorator/BranchDecorator.js +0 -10
- package/esm/BranchDecorator/index.d.ts +0 -1
- package/esm/BranchDecorator/index.js +0 -1
- package/esm/BranchDecorator/styles.d.ts +0 -1
- package/esm/BubbleChart/BubbleChart.d.ts +0 -15
- package/esm/BubbleChart/BubbleChart.js +0 -58
- package/esm/BubbleChart/BubbleChart.test.d.ts +0 -1
- package/esm/BubbleChart/BubbleChart.test.js +0 -113
- package/esm/BubbleChart/helpers.d.ts +0 -6
- package/esm/BubbleChart/helpers.js +0 -24
- package/esm/BubbleChart/index.d.ts +0 -1
- package/esm/BubbleChart/index.js +0 -1
- package/esm/BubbleChart/types.d.ts +0 -9
- package/esm/BubbleChart/types.js +0 -1
- package/esm/BubbleChart/useBubbles.d.ts +0 -9
- package/esm/BubbleChart/useBubbles.js +0 -15
- package/esm/CardinalityMessage/CardinalityMessage.d.ts +0 -6
- package/esm/CardinalityMessage/CardinalityMessage.js +0 -10
- package/esm/CardinalityMessage/CardinalityMessage.test.d.ts +0 -1
- package/esm/CardinalityMessage/CardinalityMessage.test.js +0 -52
- package/esm/CardinalityMessage/helpers.d.ts +0 -1
- package/esm/CardinalityMessage/helpers.js +0 -54
- package/esm/CardinalityMessage/index.d.ts +0 -1
- package/esm/CardinalityMessage/index.js +0 -1
- package/esm/CardinalityMessage/styles.d.ts +0 -1
- package/esm/CardinalityMessage/styles.js +0 -7
- package/esm/ChartLegend/ChartLegend.d.ts +0 -6
- package/esm/ChartLegend/ChartLegend.js +0 -11
- package/esm/ChartLegend/helpers.d.ts +0 -2
- package/esm/ChartLegend/helpers.js +0 -17
- package/esm/ChartLegend/index.d.ts +0 -2
- package/esm/ChartLegend/index.js +0 -2
- package/esm/ChartLegend/styles.d.ts +0 -1
- package/esm/ChartTooltip/ChartTooltip.d.ts +0 -2
- package/esm/ChartTooltip/ChartTooltip.js +0 -22
- package/esm/ChartTooltip/index.d.ts +0 -1
- package/esm/ChartTooltip/index.js +0 -1
- package/esm/ChartsFactory/ChartsFactory.d.ts +0 -14
- package/esm/ChartsFactory/ChartsFactory.js +0 -51
- package/esm/ChartsFactory/ChartsFactory.test.d.ts +0 -1
- package/esm/ChartsFactory/ChartsFactory.test.js +0 -64
- package/esm/ChartsFactory/index.d.ts +0 -1
- package/esm/ChartsFactory/index.js +0 -1
- package/esm/CloudChart/CloudChart.d.ts +0 -15
- package/esm/CloudChart/CloudChart.js +0 -46
- package/esm/CloudChart/CloudChart.test.d.ts +0 -1
- package/esm/CloudChart/CloudChart.test.js +0 -57
- package/esm/CloudChart/index.d.ts +0 -1
- package/esm/CloudChart/index.js +0 -1
- package/esm/CloudChart/types.d.ts +0 -5
- package/esm/CloudChart/types.js +0 -1
- package/esm/CloudChart/useCloud.d.ts +0 -10
- package/esm/CloudChart/useCloud.js +0 -30
- package/esm/CollapseRowButton/CollapseRowButton.d.ts +0 -8
- package/esm/CollapseRowButton/CollapseRowButton.js +0 -17
- package/esm/CollapseRowButton/CollapseRowButton.test.d.ts +0 -1
- package/esm/CollapseRowButton/CollapseRowButton.test.js +0 -51
- package/esm/CollapseRowButton/index.d.ts +0 -1
- package/esm/CollapseRowButton/index.js +0 -1
- package/esm/CollapseRowButton/styles.d.ts +0 -1
- package/esm/ColorBar/ColorBar.d.ts +0 -7
- package/esm/ColorBar/ColorBar.js +0 -13
- package/esm/ColorBar/ColorBar.test.d.ts +0 -1
- package/esm/ColorBar/ColorBar.test.js +0 -40
- package/esm/ColorBar/index.d.ts +0 -1
- package/esm/ColorBar/index.js +0 -1
- package/esm/ColumnsSettings/ColumnsSettings.d.ts +0 -10
- package/esm/ColumnsSettings/ColumnsSettings.js +0 -23
- package/esm/ColumnsSettings/ColumnsSettings.test.d.ts +0 -1
- package/esm/ColumnsSettings/ColumnsSettings.test.js +0 -408
- package/esm/ColumnsSettings/components/ColumnListItem/ColumnListItem.d.ts +0 -26
- package/esm/ColumnsSettings/components/ColumnListItem/ColumnListItem.js +0 -25
- package/esm/ColumnsSettings/components/ColumnListItem/index.d.ts +0 -1
- package/esm/ColumnsSettings/components/ColumnListItem/index.js +0 -1
- package/esm/ColumnsSettings/components/ColumnListItem/styles.d.ts +0 -1
- package/esm/ColumnsSettings/components/ColumnListItem/styles.js +0 -6
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.d.ts +0 -14
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.js +0 -45
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.spec.d.ts +0 -1
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.spec.js +0 -221
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/index.d.ts +0 -1
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/index.js +0 -1
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/styles.d.ts +0 -1
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/styles.js +0 -6
- package/esm/ColumnsSettings/helpers.d.ts +0 -5
- package/esm/ColumnsSettings/index.d.ts +0 -2
- package/esm/ColumnsSettings/index.js +0 -2
- package/esm/ColumnsSettings/styles.d.ts +0 -1
- package/esm/ComplexAttributeLabel/ComplexAttributeLabel.js +0 -8
- package/esm/ComplexAttributeLabel/index.d.ts +0 -1
- package/esm/ComplexAttributeLabel/index.js +0 -1
- package/esm/ComplexAttributeLabel/styles.d.ts +0 -1
- package/esm/ComplexAttributeLabel/styles.js +0 -10
- package/esm/DefaultCellValueRenderer/DefaultCellValueRenderer.d.ts +0 -8
- package/esm/DefaultCellValueRenderer/DefaultCellValueRenderer.js +0 -30
- package/esm/DefaultCellValueRenderer/DefaultCellValueRenderer.test.d.ts +0 -1
- package/esm/DefaultCellValueRenderer/DefaultCellValueRenderer.test.js +0 -54
- package/esm/DefaultCellValueRenderer/index.d.ts +0 -1
- package/esm/DefaultCellValueRenderer/index.js +0 -1
- package/esm/DefaultCellValueRenderer/styles.d.ts +0 -1
- package/esm/DefaultCellValueRenderer/styles.js +0 -9
- package/esm/DeleteButton/DeleteButton.d.ts +0 -5
- package/esm/DeleteButton/DeleteButton.js +0 -8
- package/esm/DeleteButton/DeleteButton.spec.d.ts +0 -1
- package/esm/DeleteButton/DeleteButton.spec.js +0 -20
- package/esm/DeleteButton/index.d.ts +0 -1
- package/esm/DeleteButton/index.js +0 -1
- package/esm/DescriptionIcon/DescriptionIcon.d.ts +0 -7
- package/esm/DescriptionIcon/DescriptionIcon.js +0 -17
- package/esm/DescriptionIcon/DescriptionIcon.test.d.ts +0 -1
- package/esm/DescriptionIcon/DescriptionIcon.test.js +0 -89
- package/esm/DescriptionIcon/index.d.ts +0 -1
- package/esm/DescriptionIcon/index.js +0 -1
- package/esm/DescriptionIcon/styles.d.ts +0 -1
- package/esm/DropDownMenuButton/DropDownMenuButton.d.ts +0 -17
- package/esm/DropDownMenuButton/DropDownMenuButton.js +0 -48
- package/esm/DropDownMenuButton/DropDownMenuButton.spec.d.ts +0 -1
- package/esm/DropDownMenuButton/DropDownMenuButton.spec.js +0 -76
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.d.ts +0 -8
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.js +0 -21
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.spec.d.ts +0 -1
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.spec.js +0 -32
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/index.d.ts +0 -1
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/index.js +0 -1
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/styles.d.ts +0 -1
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/styles.js +0 -12
- package/esm/DropDownMenuButton/index.d.ts +0 -1
- package/esm/DropDownMenuButton/index.js +0 -1
- package/esm/DropDownMenuButton/styles.d.ts +0 -1
- package/esm/DropDownMenuButton/styles.js +0 -17
- package/esm/EditModeAttributesFactory/EditModeAttributesFactory.d.ts +0 -3
- package/esm/EditModeAttributesFactory/EditModeAttributesFactory.js +0 -36
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.d.ts +0 -6
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.js +0 -18
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.test.d.ts +0 -1
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.test.js +0 -106
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/index.d.ts +0 -1
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/index.js +0 -1
- package/esm/EditModeAttributesFactory/index.d.ts +0 -2
- package/esm/EditModeAttributesFactory/index.js +0 -2
- package/esm/EditModeAttributesList/EditModeAttributesList.js +0 -94
- package/esm/EditModeAttributesList/EditModeAttributesList.test.d.ts +0 -1
- package/esm/EditModeAttributesList/EditModeAttributesList.test.js +0 -353
- package/esm/EditModeAttributesList/attributes.test-data.d.ts +0 -28
- package/esm/EditModeAttributesList/attributes.test-data.js +0 -37
- package/esm/EditModeAttributesList/index.d.ts +0 -1
- package/esm/EditModeAttributesList/index.js +0 -1
- package/esm/EditModeAttributesPager/EditModeAttributesPager.d.ts +0 -4
- package/esm/EditModeAttributesPager/EditModeAttributesPager.js +0 -81
- package/esm/EditModeAttributesPager/EditModeAttributesPager.test.d.ts +0 -1
- package/esm/EditModeAttributesPager/EditModeAttributesPager.test.js +0 -277
- package/esm/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.d.ts +0 -17
- package/esm/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.js +0 -100
- package/esm/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.test.d.ts +0 -1
- package/esm/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.test.js +0 -336
- package/esm/EditModeAttributesPager/components/AttributeRenderer/IntegrationAttributeRenderer.test.d.ts +0 -1
- package/esm/EditModeAttributesPager/components/AttributeRenderer/IntegrationAttributeRenderer.test.js +0 -188
- package/esm/EditModeAttributesPager/components/AttributeRenderer/index.d.ts +0 -1
- package/esm/EditModeAttributesPager/components/AttributeRenderer/index.js +0 -1
- package/esm/EditModeAttributesPager/components/AttributeRenderer/store.test-data.d.ts +0 -4
- package/esm/EditModeAttributesPager/components/AttributeRenderer/store.test-data.js +0 -4
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.d.ts +0 -19
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.js +0 -30
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.d.ts +0 -1
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.js +0 -47
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/index.d.ts +0 -1
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/index.js +0 -1
- package/esm/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.d.ts +0 -18
- package/esm/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.js +0 -90
- package/esm/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.test.d.ts +0 -1
- package/esm/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.test.js +0 -204
- package/esm/EditModeAttributesPager/components/SpecialRenderer/index.d.ts +0 -1
- package/esm/EditModeAttributesPager/components/SpecialRenderer/index.js +0 -1
- package/esm/EditModeAttributesPager/helpers.d.ts +0 -1
- package/esm/EditModeAttributesPager/helpers.js +0 -3
- package/esm/EditModeAttributesPager/helpers.test.d.ts +0 -1
- package/esm/EditModeAttributesPager/helpers.test.js +0 -20
- package/esm/EditModeAttributesPager/index.d.ts +0 -1
- package/esm/EditModeAttributesPager/index.js +0 -1
- package/esm/EditModeAttributesPager/styles.d.ts +0 -1
- package/esm/EditModeAttributesPager/types.d.ts +0 -26
- package/esm/EditModeAttributesPager/types.js +0 -6
- package/esm/EditModeAttributesView/EditModeAttributesView.d.ts +0 -12
- package/esm/EditModeAttributesView/EditModeAttributesView.js +0 -29
- package/esm/EditModeAttributesView/EditModeAttributesView.test.d.ts +0 -1
- package/esm/EditModeAttributesView/EditModeAttributesView.test.js +0 -58
- package/esm/EditModeAttributesView/IntegrationEditModeAttributesView.test.d.ts +0 -1
- package/esm/EditModeAttributesView/IntegrationEditModeAttributesView.test.js +0 -236
- package/esm/EditModeAttributesView/index.d.ts +0 -1
- package/esm/EditModeAttributesView/index.js +0 -1
- package/esm/EditModeAttributesView/metadata.test-data.d.ts +0 -4
- package/esm/EditModeAttributesView/metadata.test-data.js +0 -119
- package/esm/EditModeComplexAttribute/EditModeComplexAttribute.js +0 -105
- package/esm/EditModeComplexAttribute/EditModeComplexAttribute.test.d.ts +0 -1
- package/esm/EditModeComplexAttribute/EditModeComplexAttribute.test.js +0 -373
- package/esm/EditModeComplexAttribute/index.d.ts +0 -1
- package/esm/EditModeComplexAttribute/index.js +0 -1
- package/esm/EditModeComplexAttribute/nestedAttrType.test-data.d.ts +0 -31
- package/esm/EditModeComplexAttribute/nestedAttrType.test-data.js +0 -71
- package/esm/EditModeComplexAttribute/nestedAttrValue.test-data.d.ts +0 -29
- package/esm/EditModeComplexAttribute/nestedAttrValue.test-data.js +0 -35
- package/esm/EntityCreator/EntityCreator.d.ts +0 -9
- package/esm/EntityCreator/EntityCreator.js +0 -13
- package/esm/EntityCreator/EntityCreator.test.d.ts +0 -1
- package/esm/EntityCreator/EntityCreator.test.js +0 -75
- package/esm/EntityCreator/entityType.test-data.d.ts +0 -52
- package/esm/EntityCreator/entityType.test-data.js +0 -188
- package/esm/EntityCreator/index.d.ts +0 -1
- package/esm/EntityCreator/index.js +0 -1
- package/esm/EntitySelector/EntitySelector.d.ts +0 -32
- package/esm/EntitySelector/EntitySelector.js +0 -93
- package/esm/EntitySelector/EntitySelector.test.d.ts +0 -1
- package/esm/EntitySelector/EntitySelector.test.js +0 -457
- package/esm/EntitySelector/components/ClearIndicator/ClearIndicator.d.ts +0 -7
- package/esm/EntitySelector/components/ClearIndicator/ClearIndicator.js +0 -14
- package/esm/EntitySelector/components/ClearIndicator/ClearIndicator.test.d.ts +0 -1
- package/esm/EntitySelector/components/ClearIndicator/ClearIndicator.test.js +0 -27
- package/esm/EntitySelector/components/ClearIndicator/index.d.ts +0 -1
- package/esm/EntitySelector/components/ClearIndicator/index.js +0 -1
- package/esm/EntitySelector/components/ClearIndicator/styles.d.ts +0 -1
- package/esm/EntitySelector/components/ClearIndicator/styles.js +0 -8
- package/esm/EntitySelector/components/EntityOption/EntityOption.d.ts +0 -22
- package/esm/EntitySelector/components/EntityOption/EntityOption.js +0 -54
- package/esm/EntitySelector/components/EntityOption/EntityOption.test.d.ts +0 -1
- package/esm/EntitySelector/components/EntityOption/EntityOption.test.js +0 -79
- package/esm/EntitySelector/components/EntityOption/index.d.ts +0 -1
- package/esm/EntitySelector/components/EntityOption/index.js +0 -1
- package/esm/EntitySelector/components/EntityOption/styles.d.ts +0 -1
- package/esm/EntitySelector/components/EntityOption/styles.js +0 -39
- package/esm/EntitySelector/components/Group/Group.d.ts +0 -9
- package/esm/EntitySelector/components/Group/Group.js +0 -34
- package/esm/EntitySelector/components/Group/Group.test.d.ts +0 -1
- package/esm/EntitySelector/components/Group/Group.test.js +0 -64
- package/esm/EntitySelector/components/Group/index.d.ts +0 -1
- package/esm/EntitySelector/components/Group/index.js +0 -1
- package/esm/EntitySelector/components/Group/styles.d.ts +0 -1
- package/esm/EntitySelector/components/Group/styles.js +0 -26
- package/esm/EntitySelector/components/SingleValue/SingleValue.d.ts +0 -14
- package/esm/EntitySelector/components/SingleValue/SingleValue.js +0 -57
- package/esm/EntitySelector/components/SingleValue/SingleValue.test.d.ts +0 -1
- package/esm/EntitySelector/components/SingleValue/SingleValue.test.js +0 -78
- package/esm/EntitySelector/components/SingleValue/index.d.ts +0 -1
- package/esm/EntitySelector/components/SingleValue/index.js +0 -1
- package/esm/EntitySelector/components/SingleValue/styles.d.ts +0 -1
- package/esm/EntitySelector/components/SingleValue/styles.js +0 -17
- package/esm/EntitySelector/helpers.d.ts +0 -1
- package/esm/EntitySelector/helpers.js +0 -44
- package/esm/EntitySelector/index.d.ts +0 -1
- package/esm/EntitySelector/index.js +0 -1
- package/esm/EntitySelector/styles.d.ts +0 -1
- package/esm/ExpandedValueTooltip/ExpandedValueTooltip.d.ts +0 -11
- package/esm/ExpandedValueTooltip/ExpandedValueTooltip.js +0 -40
- package/esm/ExpandedValueTooltip/ExpandedValueTooltip.test.d.ts +0 -1
- package/esm/ExpandedValueTooltip/ExpandedValueTooltip.test.js +0 -39
- package/esm/ExpandedValueTooltip/helpers.d.ts +0 -1
- package/esm/ExpandedValueTooltip/helpers.js +0 -5
- package/esm/ExpandedValueTooltip/index.d.ts +0 -1
- package/esm/ExpandedValueTooltip/index.js +0 -1
- package/esm/FacetViewHeader/FacetViewHeader.d.ts +0 -8
- package/esm/FacetViewHeader/FacetViewHeader.js +0 -9
- package/esm/FacetViewHeader/FacetViewHeader.test.d.ts +0 -1
- package/esm/FacetViewHeader/FacetViewHeader.test.js +0 -10
- package/esm/FacetViewHeader/index.d.ts +0 -1
- package/esm/FacetViewHeader/index.js +0 -1
- package/esm/FacetViewHeader/styles.d.ts +0 -1
- package/esm/FilterButton/FilterButton.d.ts +0 -6
- package/esm/FilterButton/FilterButton.js +0 -15
- package/esm/FilterButton/FilterButton.test.d.ts +0 -1
- package/esm/FilterButton/FilterButton.test.js +0 -108
- package/esm/FilterButton/index.d.ts +0 -1
- package/esm/FilterButton/index.js +0 -1
- package/esm/FilterButton/styles.d.ts +0 -1
- package/esm/FilterButton/styles.js +0 -15
- package/esm/HOCs/withAsyncMount/index.d.ts +0 -1
- package/esm/HOCs/withAsyncMount/index.js +0 -1
- package/esm/HOCs/withAsyncMount/withAsyncMount.test.d.ts +0 -1
- package/esm/HOCs/withAsyncMount/withAsyncMount.test.js +0 -90
- package/esm/HOCs/withChartDataPercents/index.d.ts +0 -1
- package/esm/HOCs/withChartDataPercents/index.js +0 -1
- package/esm/HOCs/withChartDataPercents/withChartDataPercents.d.ts +0 -10
- package/esm/HOCs/withChartDataPercents/withChartDataPercents.js +0 -33
- package/esm/HOCs/withContext/index.d.ts +0 -1
- package/esm/HOCs/withContext/index.js +0 -1
- package/esm/HOCs/withFilter/ColumnFilter.d.ts +0 -22
- package/esm/HOCs/withFilter/ColumnFilter.js +0 -92
- package/esm/HOCs/withFilter/ColumnFilter.spec.d.ts +0 -1
- package/esm/HOCs/withFilter/ColumnFilter.spec.js +0 -220
- package/esm/HOCs/withFilter/FilterChip.d.ts +0 -13
- package/esm/HOCs/withFilter/FilterChip.js +0 -25
- package/esm/HOCs/withFilter/FilterChip.test.d.ts +0 -1
- package/esm/HOCs/withFilter/FilterChip.test.js +0 -97
- package/esm/HOCs/withFilter/helpers.d.ts +0 -7
- package/esm/HOCs/withFilter/helpers.js +0 -4
- package/esm/HOCs/withFilter/index.d.ts +0 -1
- package/esm/HOCs/withFilter/index.js +0 -1
- package/esm/HOCs/withFilter/styles.d.ts +0 -1
- package/esm/HOCs/withFilter/styles.js +0 -23
- package/esm/HOCs/withFilter/withFilter.d.ts +0 -15
- package/esm/HOCs/withFilter/withFilter.js +0 -32
- package/esm/HOCs/withFilterAtBottom/index.d.ts +0 -1
- package/esm/HOCs/withFilterAtBottom/index.js +0 -1
- package/esm/HOCs/withFilterAtBottom/withFilterAtBottom.d.ts +0 -10
- package/esm/HOCs/withFilterAtBottom/withFilterAtBottom.js +0 -37
- package/esm/HOCs/withTableContext/index.d.ts +0 -1
- package/esm/HOCs/withTableContext/index.js +0 -1
- package/esm/HOCs/withTableContext/withTableContext.d.ts +0 -4
- package/esm/HOCs/withTableContext/withTableContext.js +0 -5
- package/esm/HOCs/withTableContext/withTableContext.test.d.ts +0 -1
- package/esm/HOCs/withTableContext/withTableContext.test.js +0 -41
- package/esm/HOCs/withTooltip/index.d.ts +0 -1
- package/esm/HOCs/withTooltip/index.js +0 -1
- package/esm/HOCs/withTooltip/styles.d.ts +0 -1
- package/esm/HOCs/withTooltip/styles.js +0 -7
- package/esm/IgnoreButton/IgnoreButton.d.ts +0 -7
- package/esm/IgnoreButton/IgnoreButton.js +0 -9
- package/esm/IgnoreButton/IgnoreButton.spec.d.ts +0 -1
- package/esm/IgnoreButton/IgnoreButton.spec.js +0 -29
- package/esm/IgnoreButton/index.d.ts +0 -1
- package/esm/IgnoreButton/index.js +0 -1
- package/esm/Image/Image.d.ts +0 -12
- package/esm/Image/Image.js +0 -58
- package/esm/Image/Image.test.d.ts +0 -1
- package/esm/Image/Image.test.js +0 -65
- package/esm/Image/constants.d.ts +0 -2
- package/esm/Image/constants.js +0 -18
- package/esm/Image/index.d.ts +0 -2
- package/esm/Image/index.js +0 -2
- package/esm/Image/styles.d.ts +0 -2
- package/esm/ImageActionsOverlay/ImageActionsOverlay.js +0 -59
- package/esm/ImageActionsOverlay/ImageActionsOverlay.test.d.ts +0 -1
- package/esm/ImageActionsOverlay/ImageActionsOverlay.test.js +0 -148
- package/esm/ImageActionsOverlay/components/CheckedIcon/CheckedIcon.d.ts +0 -7
- package/esm/ImageActionsOverlay/components/CheckedIcon/index.d.ts +0 -1
- package/esm/ImageActionsOverlay/components/CheckedIcon/index.js +0 -1
- package/esm/ImageActionsOverlay/index.d.ts +0 -1
- package/esm/ImageActionsOverlay/index.js +0 -1
- package/esm/ImageAttributesLine/ImageAttributesLine.d.ts +0 -21
- package/esm/ImageAttributesLine/ImageAttributesLine.js +0 -112
- package/esm/ImageAttributesLine/ImageAttributesLine.test.d.ts +0 -1
- package/esm/ImageAttributesLine/ImageAttributesLine.test.js +0 -283
- package/esm/ImageAttributesLine/constants.d.ts +0 -3
- package/esm/ImageAttributesLine/constants.js +0 -7
- package/esm/ImageAttributesLine/imageAttributeValues.test-data.d.ts +0 -2
- package/esm/ImageAttributesLine/imageAttributeValues.test-data.js +0 -68
- package/esm/ImageAttributesLine/index.d.ts +0 -5
- package/esm/ImageAttributesLine/index.js +0 -4
- package/esm/ImageAttributesLine/styles.d.ts +0 -2
- package/esm/ImageAttributesLine/types.d.ts +0 -8
- package/esm/ImageAttributesLine/types.js +0 -1
- package/esm/ImageAttributesLineEditor/ImageAttributesLineEditor.d.ts +0 -15
- package/esm/ImageAttributesLineEditor/ImageAttributesLineEditor.js +0 -80
- package/esm/ImageAttributesLineEditor/ImageAttributesLineEditor.test.d.ts +0 -1
- package/esm/ImageAttributesLineEditor/ImageAttributesLineEditor.test.js +0 -364
- package/esm/ImageAttributesLineEditor/index.d.ts +0 -1
- package/esm/ImageAttributesLineEditor/index.js +0 -1
- package/esm/ImageAttributesLineEditor/styles.d.ts +0 -2
- package/esm/InlineAttributesList/InlineAttributesList.d.ts +0 -19
- package/esm/InlineAttributesList/InlineAttributesList.js +0 -36
- package/esm/InlineAttributesList/InlineAttributesList.test.d.ts +0 -1
- package/esm/InlineAttributesList/InlineAttributesList.test.js +0 -91
- package/esm/InlineAttributesList/attributes.test-data.d.ts +0 -28
- package/esm/InlineAttributesList/attributes.test-data.js +0 -37
- package/esm/InlineAttributesList/index.d.ts +0 -1
- package/esm/InlineAttributesList/index.js +0 -1
- package/esm/InlineAttributesPager/InlineAttributesPager.d.ts +0 -22
- package/esm/InlineAttributesPager/InlineAttributesPager.js +0 -71
- package/esm/InlineAttributesPager/InlineAttributesPager.test.d.ts +0 -1
- package/esm/InlineAttributesPager/InlineAttributesPager.test.js +0 -308
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.d.ts +0 -19
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.js +0 -28
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.test.d.ts +0 -1
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.test.js +0 -104
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/index.d.ts +0 -1
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/index.js +0 -1
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.d.ts +0 -20
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.js +0 -38
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.test.d.ts +0 -1
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.test.js +0 -114
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/index.d.ts +0 -1
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/index.js +0 -1
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.d.ts +0 -19
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.js +0 -28
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.test.d.ts +0 -1
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.test.js +0 -177
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/index.d.ts +0 -1
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/index.js +0 -1
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.d.ts +0 -19
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.js +0 -59
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.test.d.ts +0 -1
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.test.js +0 -250
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/index.d.ts +0 -1
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/index.js +0 -1
- package/esm/InlineAttributesPager/index.d.ts +0 -1
- package/esm/InlineAttributesPager/index.js +0 -1
- package/esm/InlineComplexAttribute/InlineComplexAttribute.d.ts +0 -22
- package/esm/InlineComplexAttribute/InlineComplexAttribute.js +0 -50
- package/esm/InlineComplexAttribute/InlineComplexAttribute.test.d.ts +0 -1
- package/esm/InlineComplexAttribute/InlineComplexAttribute.test.js +0 -223
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.d.ts +0 -7
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.js +0 -16
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.spec.d.ts +0 -1
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.spec.js +0 -131
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/index.d.ts +0 -1
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/index.js +0 -1
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/styles.d.ts +0 -7
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/styles.js +0 -16
- package/esm/InlineComplexAttribute/index.d.ts +0 -1
- package/esm/InlineComplexAttribute/index.js +0 -1
- package/esm/InlineImageAttribute/InlineImageAttribute.d.ts +0 -18
- package/esm/InlineImageAttribute/InlineImageAttribute.js +0 -33
- package/esm/InlineImageAttribute/InlineImageAttribute.test.d.ts +0 -1
- package/esm/InlineImageAttribute/InlineImageAttribute.test.js +0 -73
- package/esm/InlineImageAttribute/index.d.ts +0 -1
- package/esm/InlineImageAttribute/index.js +0 -1
- package/esm/InlineNestedAttribute/InlineNestedAttribute.d.ts +0 -18
- package/esm/InlineNestedAttribute/InlineNestedAttribute.js +0 -31
- package/esm/InlineNestedAttribute/InlineNestedAttribute.test.d.ts +0 -1
- package/esm/InlineNestedAttribute/InlineNestedAttribute.test.js +0 -60
- package/esm/InlineNestedAttribute/index.d.ts +0 -1
- package/esm/InlineNestedAttribute/index.js +0 -1
- package/esm/InlineReferenceAttribute/InlineReferenceAttribute.d.ts +0 -18
- package/esm/InlineReferenceAttribute/InlineReferenceAttribute.js +0 -44
- package/esm/InlineReferenceAttribute/InlineReferenceAttribute.test.d.ts +0 -1
- package/esm/InlineReferenceAttribute/InlineReferenceAttribute.test.js +0 -131
- package/esm/InlineReferenceAttribute/index.d.ts +0 -1
- package/esm/InlineReferenceAttribute/index.js +0 -1
- package/esm/InlineSimpleAttribute/InlineSimpleAttribute.d.ts +0 -18
- package/esm/InlineSimpleAttribute/InlineSimpleAttribute.js +0 -94
- package/esm/InlineSimpleAttribute/InlineSimpleAttribute.spec.d.ts +0 -1
- package/esm/InlineSimpleAttribute/InlineSimpleAttribute.spec.js +0 -389
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.d.ts +0 -18
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.js +0 -20
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.spec.d.ts +0 -1
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.spec.js +0 -52
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/index.d.ts +0 -1
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/index.js +0 -1
- package/esm/InlineSimpleAttribute/index.d.ts +0 -1
- package/esm/InlineSimpleAttribute/index.js +0 -1
- package/esm/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.d.ts +0 -13
- package/esm/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.js +0 -74
- package/esm/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.test.d.ts +0 -1
- package/esm/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.test.js +0 -245
- package/esm/InlineSimpleAttributeEditor/index.d.ts +0 -1
- package/esm/InlineSimpleAttributeEditor/index.js +0 -1
- package/esm/InternalLink/InternalLink.d.ts +0 -2
- package/esm/InternalLink/InternalLink.js +0 -33
- package/esm/InternalLink/InternalLink.test.d.ts +0 -1
- package/esm/InternalLink/InternalLink.test.js +0 -24
- package/esm/InternalLink/index.d.ts +0 -1
- package/esm/InternalLink/index.js +0 -1
- package/esm/InternalLink/styles.d.ts +0 -1
- package/esm/LineChart/LineChart.d.ts +0 -8
- package/esm/LineChart/LineChart.js +0 -27
- package/esm/LineChart/LineChart.test.d.ts +0 -1
- package/esm/LineChart/LineChart.test.js +0 -84
- package/esm/LineChart/helpers.d.ts +0 -13
- package/esm/LineChart/helpers.js +0 -59
- package/esm/LineChart/index.d.ts +0 -1
- package/esm/LineChart/index.js +0 -1
- package/esm/MapChart/MapChart.d.ts +0 -10
- package/esm/MapChart/MapChart.js +0 -81
- package/esm/MapChart/MapChart.test.d.ts +0 -1
- package/esm/MapChart/MapChart.test.js +0 -325
- package/esm/MapChart/components/Legend/Legend.d.ts +0 -8
- package/esm/MapChart/components/Legend/Legend.js +0 -16
- package/esm/MapChart/components/Legend/index.d.ts +0 -1
- package/esm/MapChart/components/Legend/index.js +0 -1
- package/esm/MapChart/components/Legend/styles.d.ts +0 -6
- package/esm/MapChart/constants.d.ts +0 -3
- package/esm/MapChart/constants.js +0 -3
- package/esm/MapChart/index.d.ts +0 -1
- package/esm/MapChart/index.js +0 -1
- package/esm/MapChart/useGeography.js +0 -23
- package/esm/MoreAttributesButton/MoreAttributesButton.d.ts +0 -11
- package/esm/MoreAttributesButton/MoreAttributesButton.js +0 -71
- package/esm/MoreAttributesButton/MoreAttributesButton.test.d.ts +0 -1
- package/esm/MoreAttributesButton/MoreAttributesButton.test.js +0 -190
- package/esm/MoreAttributesButton/attributes.test-data.d.ts +0 -53
- package/esm/MoreAttributesButton/attributes.test-data.js +0 -73
- package/esm/MoreAttributesButton/constants.d.ts +0 -6
- package/esm/MoreAttributesButton/constants.js +0 -6
- package/esm/MoreAttributesButton/helpers.d.ts +0 -9
- package/esm/MoreAttributesButton/helpers.spec.d.ts +0 -1
- package/esm/MoreAttributesButton/helpers.spec.js +0 -44
- package/esm/MoreAttributesButton/index.d.ts +0 -1
- package/esm/MoreAttributesButton/index.js +0 -1
- package/esm/MoreAttributesButton/styles.d.ts +0 -1
- package/esm/MoreAttributesButton/useMoreAttributesItems.js +0 -62
- package/esm/NestedAttribute/NestedAttribute.js +0 -49
- package/esm/NestedAttribute/NestedAttribute.test.d.ts +0 -1
- package/esm/NestedAttribute/NestedAttribute.test.js +0 -76
- package/esm/NestedAttribute/index.d.ts +0 -1
- package/esm/NestedAttribute/index.js +0 -1
- package/esm/NestedAttribute/nestedAttrType.test-data.d.ts +0 -31
- package/esm/NestedAttribute/nestedAttrType.test-data.js +0 -71
- package/esm/NestedAttribute/nestedAttrValue.test-data.d.ts +0 -29
- package/esm/NestedAttribute/nestedAttrValue.test-data.js +0 -35
- package/esm/NestedAttributeEditor/NestedAttributeEditor.d.ts +0 -2
- package/esm/NestedAttributeEditor/NestedAttributeEditor.js +0 -21
- package/esm/NestedAttributeEditor/NestedAttributeEditor.test.d.ts +0 -1
- package/esm/NestedAttributeEditor/NestedAttributeEditor.test.js +0 -65
- package/esm/NestedAttributeEditor/index.d.ts +0 -1
- package/esm/NestedAttributeEditor/index.js +0 -1
- package/esm/OvIcon/OvIcon.d.ts +0 -38
- package/esm/OvIcon/OvIcon.js +0 -31
- package/esm/OvIcon/OvIcon.test.d.ts +0 -1
- package/esm/OvIcon/OvIcon.test.js +0 -267
- package/esm/OvIcon/helpers.d.ts +0 -4
- package/esm/OvIcon/helpers.js +0 -29
- package/esm/OvIcon/index.d.ts +0 -1
- package/esm/OvIcon/index.js +0 -1
- package/esm/OvIcon/styles.d.ts +0 -1
- package/esm/PieChart/PieChart.d.ts +0 -17
- package/esm/PieChart/PieChart.js +0 -43
- package/esm/PieChart/PieChart.test.d.ts +0 -1
- package/esm/PieChart/PieChart.test.js +0 -120
- package/esm/PieChart/components/ActiveShape/ActiveShape.d.ts +0 -9
- package/esm/PieChart/components/ActiveShape/ActiveShape.js +0 -46
- package/esm/PieChart/components/ActiveShape/index.d.ts +0 -1
- package/esm/PieChart/components/ActiveShape/index.js +0 -1
- package/esm/PieChart/index.d.ts +0 -1
- package/esm/PieChart/index.js +0 -1
- package/esm/PinButton/PinButton.d.ts +0 -7
- package/esm/PinButton/PinButton.js +0 -9
- package/esm/PinButton/PinButton.spec.d.ts +0 -1
- package/esm/PinButton/PinButton.spec.js +0 -29
- package/esm/PinButton/index.d.ts +0 -1
- package/esm/PinButton/index.js +0 -1
- package/esm/PivotingTooltip/IntegrationPivotingTooltip.test.d.ts +0 -1
- package/esm/PivotingTooltip/IntegrationPivotingTooltip.test.js +0 -356
- package/esm/PivotingTooltip/PivotingTooltip.js +0 -53
- package/esm/PivotingTooltip/PivotingTooltip.test.d.ts +0 -1
- package/esm/PivotingTooltip/PivotingTooltip.test.js +0 -285
- package/esm/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.d.ts +0 -11
- package/esm/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.js +0 -25
- package/esm/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.test.d.ts +0 -1
- package/esm/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.test.js +0 -206
- package/esm/PivotingTooltip/components/PivotingTooltipContent/index.d.ts +0 -1
- package/esm/PivotingTooltip/components/PivotingTooltipContent/index.js +0 -1
- package/esm/PivotingTooltip/components/PivotingTooltipContent/styles.d.ts +0 -1
- package/esm/PivotingTooltip/components/PivotingTooltipContent/styles.js +0 -76
- package/esm/PivotingTooltip/helpers.test.d.ts +0 -1
- package/esm/PivotingTooltip/helpers.test.js +0 -197
- package/esm/PivotingTooltip/index.d.ts +0 -1
- package/esm/PivotingTooltip/index.js +0 -1
- package/esm/PivotingTooltip/styles.d.ts +0 -2
- package/esm/PivotingTooltip/styles.js +0 -28
- package/esm/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.d.ts +0 -17
- package/esm/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.js +0 -49
- package/esm/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.test.d.ts +0 -1
- package/esm/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.test.js +0 -71
- package/esm/ReadOnlyAttributeValuesBlock/index.d.ts +0 -1
- package/esm/ReadOnlyAttributeValuesBlock/index.js +0 -1
- package/esm/ReadOnlyAttributesFactory/ReadOnlyAttributesFactory.d.ts +0 -3
- package/esm/ReadOnlyAttributesFactory/ReadOnlyAttributesFactory.js +0 -33
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.d.ts +0 -1
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.js +0 -5
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.test.d.ts +0 -1
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.test.js +0 -64
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/index.d.ts +0 -1
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/index.js +0 -1
- package/esm/ReadOnlyAttributesFactory/index.d.ts +0 -2
- package/esm/ReadOnlyAttributesFactory/index.js +0 -2
- package/esm/ReadOnlyAttributesList/ReadOnlyAttributesList.d.ts +0 -18
- package/esm/ReadOnlyAttributesList/ReadOnlyAttributesList.js +0 -48
- package/esm/ReadOnlyAttributesList/ReadOnlyAttributesList.test.d.ts +0 -1
- package/esm/ReadOnlyAttributesList/ReadOnlyAttributesList.test.js +0 -302
- package/esm/ReadOnlyAttributesList/attributes.test-data.d.ts +0 -28
- package/esm/ReadOnlyAttributesList/attributes.test-data.js +0 -37
- package/esm/ReadOnlyAttributesList/index.d.ts +0 -1
- package/esm/ReadOnlyAttributesList/index.js +0 -1
- package/esm/ReadOnlyAttributesPager/ReadOnlyAttributesPager.js +0 -60
- package/esm/ReadOnlyAttributesPager/ReadOnlyAttributesPager.test.d.ts +0 -1
- package/esm/ReadOnlyAttributesPager/ReadOnlyAttributesPager.test.js +0 -250
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.d.ts +0 -11
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.js +0 -15
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.d.ts +0 -1
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.js +0 -45
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/index.d.ts +0 -1
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/index.js +0 -1
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.d.ts +0 -16
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.js +0 -44
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.test.d.ts +0 -1
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.test.js +0 -114
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/index.d.ts +0 -1
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/index.js +0 -1
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.d.ts +0 -12
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.js +0 -27
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.d.ts +0 -1
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.js +0 -101
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/index.d.ts +0 -1
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/index.js +0 -1
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.d.ts +0 -7
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.js +0 -34
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.test.d.ts +0 -1
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.test.js +0 -72
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/index.d.ts +0 -1
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/index.js +0 -1
- package/esm/ReadOnlyAttributesPager/index.d.ts +0 -1
- package/esm/ReadOnlyAttributesPager/index.js +0 -1
- package/esm/ReadOnlyAttributesPager/styles.d.ts +0 -3
- package/esm/ReadOnlyAttributesView/ReadOnlyAttributesView.d.ts +0 -11
- package/esm/ReadOnlyAttributesView/ReadOnlyAttributesView.js +0 -32
- package/esm/ReadOnlyAttributesView/ReadOnlyAttributesView.test.d.ts +0 -1
- package/esm/ReadOnlyAttributesView/ReadOnlyAttributesView.test.js +0 -205
- package/esm/ReadOnlyAttributesView/index.d.ts +0 -1
- package/esm/ReadOnlyAttributesView/index.js +0 -1
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.d.ts +0 -45
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.js +0 -63
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.d.ts +0 -1
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.js +0 -258
- package/esm/ReadOnlyComplexAttribute/index.d.ts +0 -1
- package/esm/ReadOnlyComplexAttribute/index.js +0 -1
- package/esm/ReadOnlyComplexAttribute/nestedAttrType.test-data.d.ts +0 -31
- package/esm/ReadOnlyComplexAttribute/nestedAttrType.test-data.js +0 -71
- package/esm/ReadOnlyComplexAttribute/nestedAttrValue.test-data.d.ts +0 -29
- package/esm/ReadOnlyComplexAttribute/nestedAttrValue.test-data.js +0 -35
- package/esm/ReadOnlyComplexAttribute/styles.d.ts +0 -1
- package/esm/ReadOnlyComplexAttribute/styles.js +0 -21
- package/esm/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.d.ts +0 -13
- package/esm/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.js +0 -28
- package/esm/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.test.d.ts +0 -1
- package/esm/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.test.js +0 -112
- package/esm/ReadOnlyImageAttributesLine/index.d.ts +0 -1
- package/esm/ReadOnlyImageAttributesLine/index.js +0 -1
- package/esm/ReadOnlyImageAttributesLine/styles.d.ts +0 -2
- package/esm/ReadOnlyImageAttributesLine/styles.js +0 -86
- package/esm/ReferenceAttribute/ReferenceAttribute.d.ts +0 -25
- package/esm/ReferenceAttribute/ReferenceAttribute.js +0 -56
- package/esm/ReferenceAttribute/ReferenceAttribute.test.d.ts +0 -1
- package/esm/ReferenceAttribute/ReferenceAttribute.test.js +0 -269
- package/esm/ReferenceAttribute/index.d.ts +0 -1
- package/esm/ReferenceAttribute/index.js +0 -1
- package/esm/ReferenceAttribute/styles.d.ts +0 -2
- package/esm/ReferenceAttribute/styles.js +0 -24
- package/esm/ReferenceAttributeEditor/ReferenceAttributeEditor.js +0 -134
- package/esm/ReferenceAttributeEditor/ReferenceAttributeEditor.test.d.ts +0 -1
- package/esm/ReferenceAttributeEditor/ReferenceAttributeEditor.test.js +0 -665
- package/esm/ReferenceAttributeEditor/index.d.ts +0 -1
- package/esm/ReferenceAttributeEditor/index.js +0 -1
- package/esm/ReferenceAttributeEditor/metadata.test-data.d.ts +0 -52
- package/esm/ReferenceAttributeEditor/metadata.test-data.js +0 -76
- package/esm/ReferenceAttributeEditor/styles.d.ts +0 -1
- package/esm/RelationTypeSelector/RelationTypeSelector.d.ts +0 -27
- package/esm/RelationTypeSelector/RelationTypeSelector.js +0 -47
- package/esm/RelationTypeSelector/RelationTypeSelector.test.d.ts +0 -1
- package/esm/RelationTypeSelector/RelationTypeSelector.test.js +0 -20
- package/esm/RelationTypeSelector/components/RelationOption/RelationOption.d.ts +0 -20
- package/esm/RelationTypeSelector/components/RelationOption/RelationOption.js +0 -51
- package/esm/RelationTypeSelector/components/RelationOption/index.d.ts +0 -1
- package/esm/RelationTypeSelector/components/RelationOption/index.js +0 -1
- package/esm/RelationTypeSelector/components/RelationOption/styles.d.ts +0 -1
- package/esm/RelationTypeSelector/components/RelationOption/styles.js +0 -52
- package/esm/RelationTypeSelector/index.d.ts +0 -1
- package/esm/RelationTypeSelector/index.js +0 -1
- package/esm/Roles/Roles.d.ts +0 -6
- package/esm/Roles/Roles.js +0 -7
- package/esm/Roles/Roles.test.d.ts +0 -1
- package/esm/Roles/Roles.test.js +0 -15
- package/esm/Roles/components/Role/Role.d.ts +0 -5
- package/esm/Roles/components/Role/Role.js +0 -15
- package/esm/Roles/components/Role/Role.test.d.ts +0 -1
- package/esm/Roles/components/Role/Role.test.js +0 -55
- package/esm/Roles/components/Role/index.d.ts +0 -1
- package/esm/Roles/components/Role/index.js +0 -1
- package/esm/Roles/components/Role/styles.d.ts +0 -1
- package/esm/Roles/components/Role/styles.js +0 -20
- package/esm/Roles/index.d.ts +0 -1
- package/esm/Roles/index.js +0 -1
- package/esm/RolesEditor/RolesEditor.d.ts +0 -8
- package/esm/RolesEditor/RolesEditor.js +0 -43
- package/esm/RolesEditor/RolesEditor.test.d.ts +0 -1
- package/esm/RolesEditor/RolesEditor.test.js +0 -212
- package/esm/RolesEditor/index.d.ts +0 -1
- package/esm/RolesEditor/index.js +0 -1
- package/esm/RowCellAutoSizer/RowCellAutoSizer.d.ts +0 -14
- package/esm/RowCellAutoSizer/RowCellAutoSizer.js +0 -25
- package/esm/RowCellAutoSizer/RowCellAutoSizer.test.d.ts +0 -1
- package/esm/RowCellAutoSizer/RowCellAutoSizer.test.js +0 -137
- package/esm/RowCellAutoSizer/index.d.ts +0 -1
- package/esm/RowCellAutoSizer/index.js +0 -1
- package/esm/ShowLess/ShowLess.d.ts +0 -5
- package/esm/ShowLess/ShowLess.js +0 -12
- package/esm/ShowLess/ShowLess.test.d.ts +0 -1
- package/esm/ShowLess/ShowLess.test.js +0 -58
- package/esm/ShowLess/index.d.ts +0 -1
- package/esm/ShowLess/index.js +0 -1
- package/esm/ShowLess/styles.d.ts +0 -1
- package/esm/ShowLess/styles.js +0 -10
- package/esm/ShowMore/ShowMore.d.ts +0 -7
- package/esm/ShowMore/ShowMore.js +0 -14
- package/esm/ShowMore/ShowMore.test.d.ts +0 -1
- package/esm/ShowMore/ShowMore.test.js +0 -89
- package/esm/ShowMore/index.d.ts +0 -1
- package/esm/ShowMore/index.js +0 -1
- package/esm/ShowMore/styles.d.ts +0 -1
- package/esm/ShowMore/styles.js +0 -10
- package/esm/SimpleAttribute/SimpleAttribute.d.ts +0 -9
- package/esm/SimpleAttribute/SimpleAttribute.js +0 -37
- package/esm/SimpleAttribute/SimpleAttribute.test.d.ts +0 -1
- package/esm/SimpleAttribute/SimpleAttribute.test.js +0 -142
- package/esm/SimpleAttribute/index.d.ts +0 -1
- package/esm/SimpleAttribute/index.js +0 -1
- package/esm/SimpleAttribute/styles.d.ts +0 -1
- package/esm/SimpleAttribute/styles.js +0 -41
- package/esm/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +0 -19
- package/esm/SimpleAttributeEditor/SimpleAttributeEditor.js +0 -139
- package/esm/SimpleAttributeEditor/SimpleAttributeEditor.test.d.ts +0 -1
- package/esm/SimpleAttributeEditor/SimpleAttributeEditor.test.js +0 -516
- package/esm/SimpleAttributeEditor/SimpleAttributeEditorWithoutPermissions.test.d.ts +0 -1
- package/esm/SimpleAttributeEditor/SimpleAttributeEditorWithoutPermissions.test.js +0 -74
- package/esm/SimpleAttributeEditor/helpers.d.ts +0 -1
- package/esm/SimpleAttributeEditor/helpers.js +0 -10
- package/esm/SimpleAttributeEditor/helpers.test.d.ts +0 -1
- package/esm/SimpleAttributeEditor/helpers.test.js +0 -126
- package/esm/SimpleAttributeEditor/index.d.ts +0 -1
- package/esm/SimpleAttributeEditor/index.js +0 -1
- package/esm/SimpleAttributeEditor/styles.d.ts +0 -1
- package/esm/SimpleAttributeEditor/useAttributeValuePermissions.js +0 -10
- package/esm/SimpleAttributeEditor/useAutopopulationContextValue.js +0 -17
- package/esm/SimpleAttributeEditor/useAutopopulationContextValue.specs.d.ts +0 -1
- package/esm/SimpleAttributeEditor/useAutopopulationContextValue.specs.js +0 -113
- package/esm/SmallIconButton/SmallIconButton.d.ts +0 -8
- package/esm/SmallIconButton/SmallIconButton.js +0 -32
- package/esm/SmallIconButton/SmallIconButton.specs.d.ts +0 -1
- package/esm/SmallIconButton/SmallIconButton.specs.js +0 -37
- package/esm/SmallIconButton/constants.d.ts +0 -9
- package/esm/SmallIconButton/constants.js +0 -9
- package/esm/SmallIconButton/index.d.ts +0 -16
- package/esm/SmallIconButton/index.js +0 -4
- package/esm/SmallIconButton/styles.d.ts +0 -1
- package/esm/SmallIconButton/styles.js +0 -46
- package/esm/SourceIcon/SourceIcon.d.ts +0 -10
- package/esm/SourceIcon/SourceIcon.js +0 -13
- package/esm/SourceIcon/SourceIcon.spec.d.ts +0 -1
- package/esm/SourceIcon/SourceIcon.spec.js +0 -60
- package/esm/SourceIcon/index.d.ts +0 -1
- package/esm/SourceIcon/index.js +0 -1
- package/esm/SourceItem/SourceItem.d.ts +0 -9
- package/esm/SourceItem/SourceItem.js +0 -24
- package/esm/SourceItem/SourceItem.spec.d.ts +0 -1
- package/esm/SourceItem/SourceItem.spec.js +0 -121
- package/esm/SourceItem/index.d.ts +0 -1
- package/esm/SourceItem/index.js +0 -1
- package/esm/SourceItem/styles.d.ts +0 -8
- package/esm/SourceItem/styles.js +0 -53
- package/esm/SpecialAttributesArray/SpecialAttributesArray.d.ts +0 -9
- package/esm/SpecialAttributesArray/SpecialAttributesArray.js +0 -7
- package/esm/SpecialAttributesArray/SpecialAttributesArray.test.d.ts +0 -1
- package/esm/SpecialAttributesArray/SpecialAttributesArray.test.js +0 -16
- package/esm/SpecialAttributesArray/index.d.ts +0 -1
- package/esm/SpecialAttributesArray/index.js +0 -1
- package/esm/TableWithBars/TableWithBars.d.ts +0 -10
- package/esm/TableWithBars/TableWithBars.js +0 -50
- package/esm/TableWithBars/TableWithBars.test.d.ts +0 -1
- package/esm/TableWithBars/TableWithBars.test.js +0 -75
- package/esm/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.js +0 -23
- package/esm/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.test.d.ts +0 -1
- package/esm/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.test.js +0 -21
- package/esm/TableWithBars/components/AttributeCellRenderer/index.d.ts +0 -1
- package/esm/TableWithBars/components/AttributeCellRenderer/index.js +0 -1
- package/esm/TableWithBars/components/AttributeCellRenderer/styles.d.ts +0 -1
- package/esm/TableWithBars/components/AttributeCellRenderer/styles.js +0 -26
- package/esm/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.d.ts +0 -8
- package/esm/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.js +0 -34
- package/esm/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.test.d.ts +0 -1
- package/esm/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.test.js +0 -20
- package/esm/TableWithBars/components/HeadCellRenderer/index.d.ts +0 -1
- package/esm/TableWithBars/components/HeadCellRenderer/index.js +0 -1
- package/esm/TableWithBars/components/HeadCellRenderer/styles.d.ts +0 -1
- package/esm/TableWithBars/components/HeadCellRenderer/styles.js +0 -30
- package/esm/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.d.ts +0 -8
- package/esm/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.js +0 -14
- package/esm/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.test.d.ts +0 -1
- package/esm/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.test.js +0 -36
- package/esm/TableWithBars/components/NumberCellValueRenderer/index.d.ts +0 -1
- package/esm/TableWithBars/components/NumberCellValueRenderer/index.js +0 -1
- package/esm/TableWithBars/components/NumberCellValueRenderer/styles.d.ts +0 -1
- package/esm/TableWithBars/components/NumberCellValueRenderer/styles.js +0 -28
- package/esm/TableWithBars/index.d.ts +0 -1
- package/esm/TableWithBars/index.js +0 -1
- package/esm/Tags/Tags.d.ts +0 -7
- package/esm/Tags/Tags.js +0 -7
- package/esm/Tags/Tags.test.d.ts +0 -1
- package/esm/Tags/Tags.test.js +0 -15
- package/esm/Tags/components/Tag/Tag.d.ts +0 -5
- package/esm/Tags/components/Tag/Tag.js +0 -26
- package/esm/Tags/components/Tag/Tag.test.d.ts +0 -1
- package/esm/Tags/components/Tag/Tag.test.js +0 -70
- package/esm/Tags/components/Tag/index.d.ts +0 -1
- package/esm/Tags/components/Tag/index.js +0 -1
- package/esm/Tags/components/Tag/styles.d.ts +0 -1
- package/esm/Tags/components/Tag/styles.js +0 -20
- package/esm/Tags/index.d.ts +0 -1
- package/esm/Tags/index.js +0 -1
- package/esm/TagsEditor/TagsEditor.d.ts +0 -8
- package/esm/TagsEditor/TagsEditor.js +0 -88
- package/esm/TagsEditor/TagsEditor.test.d.ts +0 -1
- package/esm/TagsEditor/TagsEditor.test.js +0 -216
- package/esm/TagsEditor/index.d.ts +0 -1
- package/esm/TagsEditor/index.js +0 -1
- package/esm/TreeChart/TreeChart.d.ts +0 -7
- package/esm/TreeChart/TreeChart.js +0 -27
- package/esm/TreeChart/TreeChart.test.d.ts +0 -1
- package/esm/TreeChart/TreeChart.test.js +0 -86
- package/esm/TreeChart/components/CustomizedContent/CustomizedContent.d.ts +0 -10
- package/esm/TreeChart/components/CustomizedContent/CustomizedContent.js +0 -22
- package/esm/TreeChart/components/CustomizedContent/index.d.ts +0 -1
- package/esm/TreeChart/components/CustomizedContent/index.js +0 -1
- package/esm/TreeChart/index.d.ts +0 -1
- package/esm/TreeChart/index.js +0 -1
- package/esm/TypeaheadEditor/TypeaheadEditor.d.ts +0 -21
- package/esm/TypeaheadEditor/TypeaheadEditor.js +0 -235
- package/esm/TypeaheadEditor/TypeaheadEditor.test.d.ts +0 -1
- package/esm/TypeaheadEditor/TypeaheadEditor.test.js +0 -501
- package/esm/TypeaheadEditor/index.d.ts +0 -1
- package/esm/TypeaheadEditor/index.js +0 -1
- package/esm/contexts/BasicTableContext/index.d.ts +0 -2
- package/esm/contexts/BasicTableContext/index.js +0 -3
- package/esm/contexts/RowCollapseContext/index.d.ts +0 -2
- package/esm/features/activity-log/ActivitiesFactory/ActivitiesFactory.d.ts +0 -10
- package/esm/features/activity-log/ActivitiesFactory/ActivitiesFactory.js +0 -122
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.d.ts +0 -7
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.js +0 -6
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.test.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.test.js +0 -28
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/index.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/index.js +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.d.ts +0 -7
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.js +0 -13
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.test.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.test.js +0 -61
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/index.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/index.js +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.d.ts +0 -7
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.js +0 -13
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.test.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.test.js +0 -108
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/index.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/index.js +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/ObjectLabel.d.ts +0 -5
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/ObjectLabel.js +0 -7
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/index.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/index.js +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/styles.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/styles.js +0 -8
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.d.ts +0 -7
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.js +0 -10
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.test.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.test.js +0 -55
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/index.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/index.js +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.d.ts +0 -7
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.js +0 -13
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.test.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.test.js +0 -128
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/index.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/index.js +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.d.ts +0 -7
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.js +0 -13
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.test.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.test.js +0 -138
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/index.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/index.js +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.d.ts +0 -7
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.js +0 -21
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.test.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.test.js +0 -200
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/index.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/index.js +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/styles.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/styles.js +0 -9
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.d.ts +0 -7
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.js +0 -17
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.test.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.test.js +0 -45
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/index.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/index.js +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/styles.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/styles.js +0 -9
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.d.ts +0 -7
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.js +0 -20
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.test.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.test.js +0 -65
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/index.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/index.js +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/styles.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/styles.js +0 -7
- package/esm/features/activity-log/ActivitiesFactory/index.d.ts +0 -1
- package/esm/features/activity-log/ActivitiesFactory/index.js +0 -1
- package/esm/features/activity-log/ActivityExportButton/ActivityExportButton.d.ts +0 -7
- package/esm/features/activity-log/ActivityExportButton/ActivityExportButton.js +0 -51
- package/esm/features/activity-log/ActivityExportButton/ActivityExportButton.specs.d.ts +0 -1
- package/esm/features/activity-log/ActivityExportButton/ActivityExportButton.specs.js +0 -138
- package/esm/features/activity-log/ActivityExportButton/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityExportButton/index.js +0 -1
- package/esm/features/activity-log/ActivityFilterButton/ActivityFilterButton.d.ts +0 -9
- package/esm/features/activity-log/ActivityFilterButton/ActivityFilterButton.js +0 -38
- package/esm/features/activity-log/ActivityFilterButton/ActivityFilterButton.specs.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterButton/ActivityFilterButton.specs.js +0 -126
- package/esm/features/activity-log/ActivityFilterButton/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterButton/index.js +0 -1
- package/esm/features/activity-log/ActivityFilterButton/styles.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.d.ts +0 -13
- package/esm/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.js +0 -46
- package/esm/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.specs.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.specs.js +0 -253
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.d.ts +0 -8
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.js +0 -27
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.specs.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.specs.js +0 -153
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/index.js +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.d.ts +0 -7
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.js +0 -95
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.specs.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.specs.js +0 -180
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/index.js +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/styles.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/styles.js +0 -67
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.d.ts +0 -9
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.js +0 -20
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.specs.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.specs.js +0 -131
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/index.js +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.d.ts +0 -8
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.js +0 -23
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.specs.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.specs.js +0 -60
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/index.js +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.d.ts +0 -7
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.js +0 -23
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.specs.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.specs.js +0 -114
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/index.js +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/editor.test-data.d.ts +0 -25
- package/esm/features/activity-log/ActivityFilterEditor/editor.test-data.js +0 -72
- package/esm/features/activity-log/ActivityFilterEditor/helpers.js +0 -31
- package/esm/features/activity-log/ActivityFilterEditor/helpers.test.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/helpers.test.js +0 -95
- package/esm/features/activity-log/ActivityFilterEditor/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/index.js +0 -1
- package/esm/features/activity-log/ActivityFilterEditor/styles.d.ts +0 -5
- package/esm/features/activity-log/ActivityLog/ActivityLog.d.ts +0 -7
- package/esm/features/activity-log/ActivityLog/ActivityLog.js +0 -43
- package/esm/features/activity-log/ActivityLog/ActivityLog.test.d.ts +0 -1
- package/esm/features/activity-log/ActivityLog/ActivityLog.test.js +0 -208
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.d.ts +0 -6
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.js +0 -21
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.test.d.ts +0 -1
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.test.js +0 -135
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/index.js +0 -1
- package/esm/features/activity-log/ActivityLog/components/GroupItem/GroupItem.d.ts +0 -7
- package/esm/features/activity-log/ActivityLog/components/GroupItem/GroupItem.js +0 -16
- package/esm/features/activity-log/ActivityLog/components/GroupItem/GroupItem.test.d.ts +0 -1
- package/esm/features/activity-log/ActivityLog/components/GroupItem/GroupItem.test.js +0 -36
- package/esm/features/activity-log/ActivityLog/components/GroupItem/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityLog/components/GroupItem/index.js +0 -1
- package/esm/features/activity-log/ActivityLog/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityLog/index.js +0 -1
- package/esm/features/activity-log/ActivityLogFilter/ActivityLogFilter.d.ts +0 -11
- package/esm/features/activity-log/ActivityLogFilter/ActivityLogFilter.js +0 -36
- package/esm/features/activity-log/ActivityLogFilter/ActivityLogFilter.specs.d.ts +0 -1
- package/esm/features/activity-log/ActivityLogFilter/ActivityLogFilter.specs.js +0 -83
- package/esm/features/activity-log/ActivityLogFilter/helpers.specs.d.ts +0 -1
- package/esm/features/activity-log/ActivityLogFilter/helpers.specs.js +0 -434
- package/esm/features/activity-log/ActivityLogFilter/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityLogFilter/index.js +0 -1
- package/esm/features/activity-log/ActivityLogFilter/styles.d.ts +0 -1
- package/esm/features/activity-log/ActivityTitle/ActivityTitle.d.ts +0 -8
- package/esm/features/activity-log/ActivityTitle/ActivityTitle.js +0 -10
- package/esm/features/activity-log/ActivityTitle/ActivityTitle.test.d.ts +0 -1
- package/esm/features/activity-log/ActivityTitle/ActivityTitle.test.js +0 -14
- package/esm/features/activity-log/ActivityTitle/index.d.ts +0 -1
- package/esm/features/activity-log/ActivityTitle/index.js +0 -1
- package/esm/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.d.ts +0 -9
- package/esm/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.js +0 -14
- package/esm/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.test.d.ts +0 -1
- package/esm/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.test.js +0 -66
- package/esm/features/activity-log/CollapsibleActivityRecords/index.d.ts +0 -1
- package/esm/features/activity-log/CollapsibleActivityRecords/index.js +0 -1
- package/esm/features/activity-log/EntityObject/EntityObject.d.ts +0 -6
- package/esm/features/activity-log/EntityObject/EntityObject.js +0 -13
- package/esm/features/activity-log/EntityObject/EntityObject.test.d.ts +0 -1
- package/esm/features/activity-log/EntityObject/EntityObject.test.js +0 -41
- package/esm/features/activity-log/EntityObject/index.d.ts +0 -1
- package/esm/features/activity-log/EntityObject/index.js +0 -1
- package/esm/features/activity-log/EntityObject/styles.d.ts +0 -1
- package/esm/features/activity-log/EntityRecord/EntityRecord.d.ts +0 -6
- package/esm/features/activity-log/EntityRecord/EntityRecord.js +0 -38
- package/esm/features/activity-log/EntityRecord/EntityRecord.test.d.ts +0 -1
- package/esm/features/activity-log/EntityRecord/EntityRecord.test.js +0 -242
- package/esm/features/activity-log/EntityRecord/index.d.ts +0 -1
- package/esm/features/activity-log/EntityRecord/index.js +0 -1
- package/esm/features/activity-log/EntityRecord/styles.d.ts +0 -1
- package/esm/features/activity-log/EntityRecord/styles.js +0 -11
- package/esm/features/activity-log/Field/Field.d.ts +0 -7
- package/esm/features/activity-log/Field/Field.js +0 -11
- package/esm/features/activity-log/Field/index.d.ts +0 -1
- package/esm/features/activity-log/Field/index.js +0 -1
- package/esm/features/activity-log/Field/styles.d.ts +0 -1
- package/esm/features/activity-log/Field/styles.js +0 -14
- package/esm/features/activity-log/MoreItemsLink/MoreItemsLink.d.ts +0 -8
- package/esm/features/activity-log/MoreItemsLink/index.d.ts +0 -1
- package/esm/features/activity-log/MoreItemsLink/index.js +0 -1
- package/esm/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.d.ts +0 -6
- package/esm/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.js +0 -13
- package/esm/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.test.d.ts +0 -1
- package/esm/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.test.js +0 -52
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.d.ts +0 -6
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.js +0 -29
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.test.d.ts +0 -1
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.test.js +0 -151
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/helpers.d.ts +0 -2
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/helpers.js +0 -15
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/index.d.ts +0 -1
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/index.js +0 -1
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/styles.d.ts +0 -1
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/styles.js +0 -15
- package/esm/features/activity-log/PotentialMatchRecord/index.d.ts +0 -1
- package/esm/features/activity-log/PotentialMatchRecord/index.js +0 -1
- package/esm/features/activity-log/Record/Record.d.ts +0 -6
- package/esm/features/activity-log/Record/Record.js +0 -7
- package/esm/features/activity-log/Record/index.d.ts +0 -1
- package/esm/features/activity-log/Record/index.js +0 -1
- package/esm/features/activity-log/Record/styles.d.ts +0 -1
- package/esm/features/activity-log/Record/styles.js +0 -15
- package/esm/features/activity-log/RecordLabel/RecordLabel.d.ts +0 -7
- package/esm/features/activity-log/RecordLabel/RecordLabel.js +0 -10
- package/esm/features/activity-log/RecordLabel/index.d.ts +0 -1
- package/esm/features/activity-log/RecordLabel/index.js +0 -1
- package/esm/features/activity-log/RecordLabel/styles.d.ts +0 -1
- package/esm/features/activity-log/RecordLabel/styles.js +0 -12
- package/esm/features/activity-log/RecordUpdates/RecordUpdates.d.ts +0 -7
- package/esm/features/activity-log/RecordUpdates/RecordUpdates.js +0 -17
- package/esm/features/activity-log/RecordUpdates/RecordUpdates.specs.d.ts +0 -1
- package/esm/features/activity-log/RecordUpdates/RecordUpdates.specs.js +0 -122
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.d.ts +0 -6
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.js +0 -32
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.test.d.ts +0 -1
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.test.js +0 -119
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/index.d.ts +0 -1
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/index.js +0 -1
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/styles.d.ts +0 -1
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/styles.js +0 -33
- package/esm/features/activity-log/RecordUpdates/index.d.ts +0 -1
- package/esm/features/activity-log/RecordUpdates/index.js +0 -1
- package/esm/features/activity-log/RecordUpdates/styles.d.ts +0 -1
- package/esm/features/activity-log/RecordUpdates/styles.js +0 -6
- package/esm/features/activity-log/RelationObject/RelationObject.d.ts +0 -6
- package/esm/features/activity-log/RelationObject/RelationObject.js +0 -14
- package/esm/features/activity-log/RelationObject/RelationObject.test.d.ts +0 -1
- package/esm/features/activity-log/RelationObject/RelationObject.test.js +0 -34
- package/esm/features/activity-log/RelationObject/index.d.ts +0 -1
- package/esm/features/activity-log/RelationObject/index.js +0 -1
- package/esm/features/activity-log/RelationRecord/RelationRecord.d.ts +0 -6
- package/esm/features/activity-log/RelationRecord/RelationRecord.js +0 -15
- package/esm/features/activity-log/RelationRecord/RelationRecord.test.d.ts +0 -1
- package/esm/features/activity-log/RelationRecord/RelationRecord.test.js +0 -88
- package/esm/features/activity-log/RelationRecord/index.d.ts +0 -1
- package/esm/features/activity-log/RelationRecord/index.js +0 -1
- package/esm/features/activity-log/contexts/CollapsibleItemsContext.d.ts +0 -14
- package/esm/features/activity-log/hooks/useActivitiesLoader.js +0 -60
- package/esm/features/activity-log/index.d.ts +0 -7
- package/esm/features/activity-log/index.js +0 -6
- package/esm/features/activity-log/types.d.ts +0 -98
- package/esm/features/activity-log/types.js +0 -38
- package/esm/features/activity-log/utils/activities.test.d.ts +0 -1
- package/esm/features/activity-log/utils/activities.test.js +0 -600
- package/esm/features/activity-log/utils/filters.test.d.ts +0 -1
- package/esm/features/activity-log/utils/filters.test.js +0 -237
- package/esm/helpers/attributesView.d.ts +0 -16
- package/esm/helpers/attributesView.js +0 -69
- package/esm/helpers/attributesView.test.d.ts +0 -1
- package/esm/helpers/attributesView.test.js +0 -93
- package/esm/helpers/basicTable.d.ts +0 -18
- package/esm/helpers/basicTable.js +0 -68
- package/esm/helpers/basicTable.test.d.ts +0 -1
- package/esm/helpers/basicTable.test.js +0 -35
- package/esm/helpers/charts.d.ts +0 -2
- package/esm/helpers/charts.js +0 -17
- package/esm/hooks/useBasicTableCellRenderer/CellRenderer.d.ts +0 -12
- package/esm/hooks/useBasicTableCellRenderer/CellRenderer.js +0 -39
- package/esm/hooks/useBasicTableCellRenderer/CellRenderer.test.d.ts +0 -1
- package/esm/hooks/useBasicTableCellRenderer/CellRenderer.test.js +0 -51
- package/esm/hooks/useBasicTableCellRenderer/index.d.ts +0 -2
- package/esm/hooks/useBasicTableCellRenderer/index.js +0 -2
- package/esm/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.d.ts +0 -22
- package/esm/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.js +0 -29
- package/esm/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.test.d.ts +0 -1
- package/esm/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.test.js +0 -123
- package/esm/hooks/useChartTooltipState.d.ts +0 -7
- package/esm/hooks/useChartTooltipState.js +0 -27
- package/esm/hooks/useClickableChartStyle.d.ts +0 -1
- package/esm/hooks/useClickableChartStyle.js +0 -10
- package/esm/hooks/useCollapsibleTableRows/dataHelpers.d.ts +0 -2
- package/esm/hooks/useCollapsibleTableRows/dataHelpers.js +0 -91
- package/esm/hooks/useCollapsibleTableRows/dataHelpers.test.d.ts +0 -1
- package/esm/hooks/useCollapsibleTableRows/dataHelpers.test.js +0 -319
- package/esm/hooks/useCollapsibleTableRows/index.d.ts +0 -1
- package/esm/hooks/useCollapsibleTableRows/index.js +0 -1
- package/esm/hooks/useCollapsibleTableRows/nestedHelpers.test.d.ts +0 -1
- package/esm/hooks/useCollapsibleTableRows/nestedHelpers.test.js +0 -164
- package/esm/hooks/useCollapsibleTableRows/useCollapsibleTableRows.d.ts +0 -19
- package/esm/hooks/useCollapsibleTableRows/useCollapsibleTableRows.js +0 -45
- package/esm/hooks/useCollapsibleTableRows/useCollapsibleTableRows.test.d.ts +0 -1
- package/esm/hooks/useCollapsibleTableRows/useCollapsibleTableRows.test.js +0 -139
- package/esm/hooks/useDynamicRowCellHeight.d.ts +0 -13
- package/esm/hooks/useDynamicRowCellHeight.js +0 -40
- package/esm/hooks/useScrollToAttribute/useScrollToAttribute.d.ts +0 -9
- package/esm/test-utils/TestPerspectiveSettingsProvider.d.ts +0 -8
- package/esm/test-utils/TestPerspectiveSettingsProvider.js +0 -28
- package/esm/test-utils/TestStylesProvider.d.ts +0 -3
- package/esm/test-utils/TestStylesProvider.js +0 -19
- package/esm/test-utils/index.d.ts +0 -18
- package/esm/test-utils/index.js +0 -109
- package/esm/types/basicTable.d.ts +0 -82
- package/esm/types/basicTable.js +0 -1
- package/esm/types/charts.d.ts +0 -16
- package/esm/types/charts.js +0 -1
- package/esm/types/inlineAttributes.d.ts +0 -24
- package/esm/types/inlineAttributes.js +0 -1
- /package/cjs/{ArrowExpandButton → components/ArrowExpandButton}/styles.d.ts +0 -0
- /package/cjs/{ArrowExpandButton → components/ArrowExpandButton}/styles.js +0 -0
- /package/cjs/{AttributeGroupIcon → components/AttributeGroupIcon}/styles.d.ts +0 -0
- /package/cjs/{AttributeGroupIcon → components/AttributeGroupIcon}/styles.js +0 -0
- /package/cjs/{AttributeSelector → components/AttributeSelector}/styles.d.ts +0 -0
- /package/cjs/{AttributeSelector → components/AttributeSelector}/styles.js +0 -0
- /package/cjs/{AttributesErrorsPanel/components/Error → components/AttributesErrorsPanel/ErrorsPanel}/Error.d.ts +0 -0
- /package/cjs/{AttributesErrorsPanel/components → components/AttributesErrorsPanel}/ErrorsPanel/ErrorsPanel.d.ts +0 -0
- /package/cjs/{AttributesErrorsPanel → components/AttributesErrorsPanel}/useCachedErrors.d.ts +0 -0
- /package/cjs/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/components/AttributeSelector/AttributeSelector.d.ts +0 -0
- /package/cjs/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/components/RowActions/RowActions.d.ts +0 -0
- /package/cjs/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/components/RowActions/styles.d.ts +0 -0
- /package/cjs/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/components/RowActions/styles.js +0 -0
- /package/{esm/AttributesFiltersBuilder/components/RowActions/RowActions.d.ts → cjs/components/AttributesFiltersBuilder/components/ValuesEditor/ValuesEditor.d.ts} +0 -0
- /package/cjs/{AttributesValuesEditor → components/AttributesFiltersBuilder/components/ValuesEditor}/styles.d.ts +0 -0
- /package/cjs/{AttributesValuesEditor → components/AttributesFiltersBuilder/components/ValuesEditor}/styles.js +0 -0
- /package/cjs/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/helpers.js +0 -0
- /package/cjs/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/styles.d.ts +0 -0
- /package/cjs/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/styles.js +0 -0
- /package/cjs/{ActionsPanel → components/AttributesFiltersBuilder}/types.js +0 -0
- /package/cjs/{AttributesFiltersButton/components → components/AttributesFiltersButton}/ActionButtons/styles.d.ts +0 -0
- /package/cjs/{AttributesFiltersButton/components → components/AttributesFiltersButton}/ActionButtons/styles.js +0 -0
- /package/cjs/{AttributesFiltersButton → components/AttributesFiltersButton}/styles.d.ts +0 -0
- /package/cjs/{AttributesFiltersButton → components/AttributesFiltersButton}/styles.js +0 -0
- /package/cjs/{AutoSizeList → components/AutoSizeList}/AutoSizeList.js +0 -0
- /package/cjs/{AutoSizeList → components/AutoSizeList}/styles.d.ts +0 -0
- /package/cjs/{AutoSizeList → components/AutoSizeList}/styles.js +0 -0
- /package/cjs/{contexts/RowCollapseContext/index.js → components/BasicTableView/BasicTable/contexts/RowCollapseContext.js} +0 -0
- /package/cjs/{hooks/useCollapsibleTableRows → components/BasicTableView/BasicTable/helpers}/nestedHelpers.d.ts +0 -0
- /package/cjs/{hooks/useCollapsibleTableRows → components/BasicTableView/BasicTable/helpers}/nestedHelpers.js +0 -0
- /package/cjs/{ColumnsSettings/helpers.js → components/BasicTableView/BasicTableHeader/ColumnsSettings/columnHelpers.js} +0 -0
- /package/cjs/{ColumnsSettings → components/BasicTableView/BasicTableHeader/ColumnsSettings}/styles.js +0 -0
- /package/cjs/{BasicTablePagination → components/BasicTableView/BasicTablePagination}/BasicTablePagination.d.ts +0 -0
- /package/cjs/{BasicTablePagination → components/BasicTableView/BasicTablePagination}/styles.d.ts +0 -0
- /package/cjs/{BasicTablePagination → components/BasicTableView/BasicTablePagination}/styles.js +0 -0
- /package/cjs/{CollapseRowButton → components/BasicTableView/CollapseRowButton}/styles.js +0 -0
- /package/cjs/{AttributesFiltersBuilder/types.js → components/BasicTableView/types/index.js} +0 -0
- /package/cjs/{BasicTable → components/BasicTableView/viewState}/basicTableViewState.d.ts +0 -0
- /package/cjs/{BasicView → components/BasicView}/styles.d.ts +0 -0
- /package/cjs/{BasicView → components/BasicView}/styles.js +0 -0
- /package/cjs/{BasicViewContent → components/BasicViewContent}/styles.d.ts +0 -0
- /package/cjs/{BasicViewContent → components/BasicViewContent}/styles.js +0 -0
- /package/cjs/{BasicViewHeader → components/BasicViewHeader}/styles.js +0 -0
- /package/cjs/{ColorBar → components/ColorBar}/styles.d.ts +0 -0
- /package/cjs/{ColorBar → components/ColorBar}/styles.js +0 -0
- /package/cjs/{ExpandedValueTooltip → components/ExpandedValueTooltip}/styles.d.ts +0 -0
- /package/cjs/{ExpandedValueTooltip → components/ExpandedValueTooltip}/styles.js +0 -0
- /package/cjs/{FacetViewHeader → components/FacetViewHeader}/styles.js +0 -0
- /package/cjs/{ImageActionsOverlay/components → components/Image}/CheckedIcon/CheckedIcon.js +0 -0
- /package/cjs/{ImageActionsOverlay/components → components/Image}/CheckedIcon/styles.d.ts +0 -0
- /package/cjs/{ImageActionsOverlay/components → components/Image}/CheckedIcon/styles.js +0 -0
- /package/cjs/{ImageActionsOverlay → components/Image/ImageActionsOverlay}/ImageActionsOverlay.d.ts +0 -0
- /package/cjs/{ImageActionsOverlay → components/Image/ImageActionsOverlay}/styles.d.ts +0 -0
- /package/cjs/{ImageActionsOverlay → components/Image/ImageActionsOverlay}/styles.js +0 -0
- /package/cjs/{Image → components/Image}/styles.js +0 -0
- /package/cjs/{InternalLink → components/InternalLink}/styles.d.ts +0 -0
- /package/cjs/{InternalLink → components/InternalLink}/styles.js +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/ActivityExportButton/styles.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/ActivityExportButton/styles.js +0 -0
- /package/cjs/{AttributeListItem/components/AttrTypeIcon → components/activityLog/ActivityFilterButton}/styles.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/ActivityFilterButton/styles.js +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/ActivityFilterEditor/styles.js +0 -0
- /package/cjs/{features/activity-log/ActivityFilterEditor/helpers.d.ts → components/activityLog/ActivityFilterEditor/utils/getSelectorActivityTypes.d.ts} +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/ActivityLog/helpers.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/ActivityLog/helpers.js +0 -0
- /package/cjs/{features/activity-log/ActivityLog/components → components/activityLog/ActivityLog/items}/ActivityItem/styles.d.ts +0 -0
- /package/cjs/{features/activity-log/ActivityLog/components → components/activityLog/ActivityLog/items}/ActivityItem/styles.js +0 -0
- /package/cjs/{features/activity-log/ActivityLog/components → components/activityLog/ActivityLog/items}/GroupItem/styles.d.ts +0 -0
- /package/cjs/{features/activity-log/ActivityLog/components → components/activityLog/ActivityLog/items}/GroupItem/styles.js +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/ActivityLog/styles.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/ActivityLog/styles.js +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/ActivityLogFilter/helpers.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/ActivityLogFilter/helpers.js +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/ActivityLogFilter/styles.js +0 -0
- /package/cjs/{features/activity-log → components/activityLog/activities}/ActivityTitle/styles.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog/activities}/ActivityTitle/styles.js +0 -0
- /package/cjs/{features/activity-log/ActivitiesFactory/components/SearchActivity → components/activityLog/activities/EntityObject}/styles.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog/activities}/EntityObject/styles.js +0 -0
- /package/cjs/{features/activity-log → components/activityLog/activities}/MoreItemsLink/MoreItemsLink.js +0 -0
- /package/cjs/{features/activity-log → components/activityLog/activities}/RelationObject/styles.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog/activities}/RelationObject/styles.js +0 -0
- /package/cjs/{features/activity-log/contexts/CollapsibleItemsContext.js → components/activityLog/contexts/CollapsibleItemsContext/index.js} +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/hooks/useActivitiesLoader.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/hooks/useProfileActivitiesLoader.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/hooks/useProfileActivitiesLoader.js +0 -0
- /package/cjs/{BubbleChart/types.js → components/activityLog/types/ActivitiesFilter.js} +0 -0
- /package/cjs/{CloudChart/types.js → components/activityLog/types/ActivityData.js} +0 -0
- /package/cjs/{ImageAttributesLine/types.js → components/activityLog/types/ActivityDelta.js} +0 -0
- /package/cjs/{types/basicTable.js → components/activityLog/types/ActivityItem.js} +0 -0
- /package/cjs/{types/charts.js → components/activityLog/types/DeltaValue.js} +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/utils/activities.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/utils/activities.js +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/utils/filters.d.ts +0 -0
- /package/cjs/{features/activity-log → components/activityLog}/utils/filters.js +0 -0
- /package/cjs/{BranchDecorator → components/attributes/BranchDecorator}/styles.js +0 -0
- /package/cjs/{DescriptionIcon → components/attributes/DescriptionIcon}/styles.d.ts +0 -0
- /package/cjs/{DescriptionIcon → components/attributes/DescriptionIcon}/styles.js +0 -0
- /package/cjs/{ImageAttributesLine → components/attributes/ImageAttributesLine}/styles.js +0 -0
- /package/cjs/{OvIcon → components/attributes/OvIcon}/styles.js +0 -0
- /package/cjs/{PivotingTooltip → components/attributes/PivotingAttributes}/PivotingTooltip.d.ts +0 -0
- /package/cjs/{PivotingTooltip → components/attributes/PivotingAttributes}/helpers.d.ts +0 -0
- /package/cjs/{PivotingTooltip → components/attributes/PivotingAttributes}/helpers.js +0 -0
- /package/cjs/{EditModeAttributesList/EditModeAttributesList.d.ts → components/attributes/editMode/AttributesList/AttributesList.d.ts} +0 -0
- /package/cjs/{EditModeAttributesList → components/attributes/editMode/AttributesList}/helpers.d.ts +0 -0
- /package/cjs/{EditModeAttributesList → components/attributes/editMode/AttributesList}/helpers.js +0 -0
- /package/cjs/{EditModeAttributesPager → components/attributes/editMode/AttributesPager}/styles.js +0 -0
- /package/cjs/{types/inlineAttributes.js → components/attributes/editMode/AttributesPager/types.js} +0 -0
- /package/cjs/{EditModeAttributesView → components/attributes/editMode/AttributesView}/styles.d.ts +0 -0
- /package/cjs/{EditModeAttributesView → components/attributes/editMode/AttributesView}/styles.js +0 -0
- /package/cjs/{EditModeComplexAttribute/EditModeComplexAttribute.d.ts → components/attributes/editMode/ComplexAttribute/ComplexAttribute.d.ts} +0 -0
- /package/cjs/{EditModeComplexAttribute → components/attributes/editMode/ComplexAttribute}/styles.d.ts +0 -0
- /package/cjs/{EditModeComplexAttribute → components/attributes/editMode/ComplexAttribute}/styles.js +0 -0
- /package/cjs/{EntitySelector → components/attributes/editMode/EntitySelector}/styles.js +0 -0
- /package/cjs/{ImageAttributesLineEditor → components/attributes/editMode/ImageAttributesLine}/styles.js +0 -0
- /package/cjs/{MoreAttributesButton → components/attributes/editMode/MoreAttributesButton}/helpers.js +0 -0
- /package/cjs/{MoreAttributesButton → components/attributes/editMode/MoreAttributesButton}/styles.js +0 -0
- /package/cjs/{MoreAttributesButton → components/attributes/editMode/MoreAttributesButton}/useMoreAttributesItems.d.ts +0 -0
- /package/cjs/{ReferenceAttributeEditor/ReferenceAttributeEditor.d.ts → components/attributes/editMode/ReferenceAttribute/ReferenceAttribute.d.ts} +0 -0
- /package/cjs/{ReferenceAttributeEditor → components/attributes/editMode/ReferenceAttribute}/styles.js +0 -0
- /package/cjs/{RolesEditor → components/attributes/editMode/Roles}/styles.d.ts +0 -0
- /package/cjs/{RolesEditor → components/attributes/editMode/Roles}/styles.js +0 -0
- /package/cjs/{SimpleAttributeEditor → components/attributes/editMode/SimpleAttributeEditor}/styles.js +0 -0
- /package/cjs/{SimpleAttributeEditor → components/attributes/editMode/SimpleAttributeEditor}/useAttributeValuePermissions.d.ts +0 -0
- /package/cjs/{SimpleAttributeEditor → components/attributes/editMode/SimpleAttributeEditor}/useAutopopulationContextValue.d.ts +0 -0
- /package/cjs/{TagsEditor → components/attributes/editMode/Tags}/styles.d.ts +0 -0
- /package/cjs/{TagsEditor → components/attributes/editMode/Tags}/styles.js +0 -0
- /package/cjs/{contexts/HasDeletionsContext/index.d.ts → components/attributes/editMode/contexts/HasDeletionsContext.d.ts} +0 -0
- /package/cjs/{contexts/HasDeletionsContext/index.js → components/attributes/editMode/contexts/HasDeletionsContext.js} +0 -0
- /package/cjs/{contexts/PinnedAttributesContext/index.d.ts → components/attributes/editMode/contexts/PinnedAttributesContext.d.ts} +0 -0
- /package/cjs/{contexts/PinnedAttributesContext/index.js → components/attributes/editMode/contexts/PinnedAttributesContext.js} +0 -0
- /package/cjs/{hooks → components/attributes/editMode/hooks}/useScrollToAttribute/styles.d.ts +0 -0
- /package/cjs/{hooks → components/attributes/editMode/hooks}/useScrollToAttribute/styles.js +0 -0
- /package/cjs/{hooks → components/attributes/editMode/hooks}/useScrollToAttribute/useScrollToAttribute.js +0 -0
- /package/cjs/{ImageAttributesLine/helpers.d.ts → components/attributes/helpers/imageAttributes.d.ts} +0 -0
- /package/cjs/{ImageAttributesLine/helpers.js → components/attributes/helpers/imageAttributes.js} +0 -0
- /package/cjs/{InlineAttributesList → components/attributes/inline/AttributesList}/styles.d.ts +0 -0
- /package/cjs/{InlineAttributesList → components/attributes/inline/AttributesList}/styles.js +0 -0
- /package/cjs/{InlineAttributesPager → components/attributes/inline/AttributesPager}/styles.d.ts +0 -0
- /package/cjs/{InlineAttributesPager → components/attributes/inline/AttributesPager}/styles.js +0 -0
- /package/cjs/{InlineComplexAttribute → components/attributes/inline/ComplexAttribute}/styles.d.ts +0 -0
- /package/cjs/{InlineComplexAttribute → components/attributes/inline/ComplexAttribute}/styles.js +0 -0
- /package/cjs/{InlineImageAttribute → components/attributes/inline/ImageAttribute}/styles.d.ts +0 -0
- /package/cjs/{InlineImageAttribute → components/attributes/inline/ImageAttribute}/styles.js +0 -0
- /package/cjs/{InlineReferenceAttribute → components/attributes/inline/ReferenceAttribute}/styles.d.ts +0 -0
- /package/cjs/{InlineReferenceAttribute → components/attributes/inline/ReferenceAttribute}/styles.js +0 -0
- /package/cjs/{InlineSimpleAttribute/components → components/attributes/inline/SimpleAttribute}/CrosswalkMenuItem/styles.d.ts +0 -0
- /package/cjs/{InlineSimpleAttribute/components → components/attributes/inline/SimpleAttribute}/CrosswalkMenuItem/styles.js +0 -0
- /package/cjs/{InlineSimpleAttribute → components/attributes/inline/SimpleAttribute}/styles.d.ts +0 -0
- /package/cjs/{InlineSimpleAttribute → components/attributes/inline/SimpleAttribute}/styles.js +0 -0
- /package/cjs/{InlineSimpleAttributeEditor → components/attributes/inline/SimpleAttributeEditor}/styles.d.ts +0 -0
- /package/cjs/{InlineSimpleAttributeEditor → components/attributes/inline/SimpleAttributeEditor}/styles.js +0 -0
- /package/cjs/{InlineAttributesPager/components/InlineSimpleAttributesBlock → components/attributes/inline/SimpleAttributesBlock}/styles.d.ts +0 -0
- /package/cjs/{InlineAttributesPager/components/InlineSimpleAttributesBlock → components/attributes/inline/SimpleAttributesBlock}/styles.js +0 -0
- /package/cjs/{ComplexAttributeLabel → components/attributes/inline/common}/ComplexAttributeLabel.d.ts +0 -0
- /package/cjs/{hooks → components/attributes/inline/hooks}/useAttributeState.d.ts +0 -0
- /package/cjs/{hooks → components/attributes/inline/hooks}/useAttributeState.js +0 -0
- /package/cjs/{ReadOnlyAttributesPager/ReadOnlyAttributesPager.d.ts → components/attributes/readMode/AttributesPager/AttributesPager.d.ts} +0 -0
- /package/cjs/{ReadOnlyAttributesPager → components/attributes/readMode/AttributesPager}/styles.js +0 -0
- /package/cjs/{ReadOnlyAttributesView → components/attributes/readMode/AttributesView}/styles.d.ts +0 -0
- /package/cjs/{ReadOnlyAttributesView → components/attributes/readMode/AttributesView}/styles.js +0 -0
- /package/cjs/{NestedAttribute → components/attributes/readMode/NestedAttribute}/NestedAttribute.d.ts +0 -0
- /package/cjs/{NestedAttribute → components/attributes/readMode/NestedAttribute}/styles.d.ts +0 -0
- /package/cjs/{NestedAttribute → components/attributes/readMode/NestedAttribute}/styles.js +0 -0
- /package/cjs/{SpecialAttributesArray → components/attributes/readMode/SpecialAttributes}/styles.d.ts +0 -0
- /package/cjs/{SpecialAttributesArray → components/attributes/readMode/SpecialAttributes}/styles.js +0 -0
- /package/cjs/{BubbleChart → components/charts/BubbleChart}/helpers.js +0 -0
- /package/cjs/{BubbleChart → components/charts/BubbleChart}/styles.d.ts +0 -0
- /package/cjs/{BubbleChart → components/charts/BubbleChart}/styles.js +0 -0
- /package/cjs/{CloudChart → components/charts/CloudChart}/styles.d.ts +0 -0
- /package/cjs/{CloudChart → components/charts/CloudChart}/styles.js +0 -0
- /package/cjs/{ChartLegend → components/charts/CustomLegend}/styles.js +0 -0
- /package/cjs/{ChartTooltip → components/charts/CustomTooltip}/styles.d.ts +0 -0
- /package/cjs/{ChartTooltip → components/charts/CustomTooltip}/styles.js +0 -0
- /package/cjs/{MapChart/components → components/charts/MapChart}/Legend/styles.js +0 -0
- /package/cjs/{MapChart → components/charts/MapChart}/styles.d.ts +0 -0
- /package/cjs/{MapChart → components/charts/MapChart}/styles.js +0 -0
- /package/cjs/{MapChart → components/charts/MapChart}/useGeography.d.ts +0 -0
- /package/cjs/{PieChart → components/charts/PieChart}/styles.d.ts +0 -0
- /package/cjs/{PieChart → components/charts/PieChart}/styles.js +0 -0
- /package/cjs/{TableWithBars/components/AttributeCellRenderer → components/charts/TableWithBars/cell-renderers}/AttributeCellRenderer.d.ts +0 -0
- /package/cjs/{TableWithBars → components/charts/TableWithBars}/styles.d.ts +0 -0
- /package/cjs/{TableWithBars → components/charts/TableWithBars}/styles.js +0 -0
- /package/cjs/{TreeChart/components/CustomizedContent → components/charts/TreeChart}/styles.d.ts +0 -0
- /package/cjs/{TreeChart/components/CustomizedContent → components/charts/TreeChart}/styles.js +0 -0
- /package/cjs/{TypeaheadEditor → components/editors/TypeaheadEditor}/styles.d.ts +0 -0
- /package/cjs/{TypeaheadEditor → components/editors/TypeaheadEditor}/styles.js +0 -0
- /package/esm/{ArrowExpandButton → components/ArrowExpandButton}/styles.d.ts +0 -0
- /package/esm/{ArrowExpandButton → components/ArrowExpandButton}/styles.js +0 -0
- /package/{cjs/features/activity-log/ActivityFilterButton → esm/components/AttributeGroupIcon}/styles.d.ts +0 -0
- /package/esm/{AttributeGroupIcon → components/AttributeGroupIcon}/styles.js +0 -0
- /package/esm/{AttributeSelector → components/AttributeSelector}/styles.d.ts +0 -0
- /package/esm/{AttributeSelector → components/AttributeSelector}/styles.js +0 -0
- /package/esm/{AttributesErrorsPanel/components/Error → components/AttributesErrorsPanel/ErrorsPanel}/Error.d.ts +0 -0
- /package/esm/{AttributesErrorsPanel/components → components/AttributesErrorsPanel}/ErrorsPanel/ErrorsPanel.d.ts +0 -0
- /package/esm/{AttributesErrorsPanel → components/AttributesErrorsPanel}/useCachedErrors.d.ts +0 -0
- /package/esm/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/components/AttributeSelector/AttributeSelector.d.ts +0 -0
- /package/esm/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/components/RowActions/styles.d.ts +0 -0
- /package/esm/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/components/RowActions/styles.js +0 -0
- /package/esm/{AttributesValuesEditor → components/AttributesFiltersBuilder/components/ValuesEditor}/styles.d.ts +0 -0
- /package/esm/{AttributesValuesEditor → components/AttributesFiltersBuilder/components/ValuesEditor}/styles.js +0 -0
- /package/esm/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/helpers.js +0 -0
- /package/esm/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/styles.d.ts +0 -0
- /package/esm/{AttributesFiltersBuilder → components/AttributesFiltersBuilder}/styles.js +0 -0
- /package/{cjs/ActionButton/ActionButton.spec.d.ts → esm/components/AttributesFiltersBuilder/types.js} +0 -0
- /package/esm/{AttributesFiltersButton/components → components/AttributesFiltersButton}/ActionButtons/styles.d.ts +0 -0
- /package/esm/{AttributesFiltersButton/components → components/AttributesFiltersButton}/ActionButtons/styles.js +0 -0
- /package/esm/{AttributesFiltersButton → components/AttributesFiltersButton}/styles.d.ts +0 -0
- /package/esm/{AttributesFiltersButton → components/AttributesFiltersButton}/styles.js +0 -0
- /package/esm/{AutoSizeList → components/AutoSizeList}/AutoSizeList.js +0 -0
- /package/esm/{AutoSizeList → components/AutoSizeList}/styles.d.ts +0 -0
- /package/esm/{AutoSizeList → components/AutoSizeList}/styles.js +0 -0
- /package/esm/{contexts/RowCollapseContext/index.js → components/BasicTableView/BasicTable/contexts/RowCollapseContext.js} +0 -0
- /package/esm/{hooks/useCollapsibleTableRows → components/BasicTableView/BasicTable/helpers}/nestedHelpers.d.ts +0 -0
- /package/esm/{hooks/useCollapsibleTableRows → components/BasicTableView/BasicTable/helpers}/nestedHelpers.js +0 -0
- /package/esm/{ColumnsSettings/helpers.js → components/BasicTableView/BasicTableHeader/ColumnsSettings/columnHelpers.js} +0 -0
- /package/esm/{ColumnsSettings → components/BasicTableView/BasicTableHeader/ColumnsSettings}/styles.js +0 -0
- /package/esm/{BasicTablePagination → components/BasicTableView/BasicTablePagination}/BasicTablePagination.d.ts +0 -0
- /package/esm/{BasicTablePagination → components/BasicTableView/BasicTablePagination}/styles.d.ts +0 -0
- /package/esm/{BasicTablePagination → components/BasicTableView/BasicTablePagination}/styles.js +0 -0
- /package/esm/{CollapseRowButton → components/BasicTableView/CollapseRowButton}/styles.js +0 -0
- /package/{cjs/ActionsPanel/ActionsPanel.test.d.ts → esm/components/BasicTableView/types/index.js} +0 -0
- /package/esm/{BasicTable → components/BasicTableView/viewState}/basicTableViewState.d.ts +0 -0
- /package/esm/{BasicView → components/BasicView}/styles.d.ts +0 -0
- /package/esm/{BasicView → components/BasicView}/styles.js +0 -0
- /package/esm/{BasicViewContent → components/BasicViewContent}/styles.d.ts +0 -0
- /package/esm/{BasicViewContent → components/BasicViewContent}/styles.js +0 -0
- /package/esm/{BasicViewHeader → components/BasicViewHeader}/styles.js +0 -0
- /package/esm/{ColorBar → components/ColorBar}/styles.d.ts +0 -0
- /package/esm/{ColorBar → components/ColorBar}/styles.js +0 -0
- /package/esm/{ExpandedValueTooltip → components/ExpandedValueTooltip}/styles.d.ts +0 -0
- /package/esm/{ExpandedValueTooltip → components/ExpandedValueTooltip}/styles.js +0 -0
- /package/esm/{FacetViewHeader → components/FacetViewHeader}/styles.js +0 -0
- /package/esm/{ImageActionsOverlay/components → components/Image}/CheckedIcon/CheckedIcon.js +0 -0
- /package/esm/{ImageActionsOverlay/components → components/Image}/CheckedIcon/styles.d.ts +0 -0
- /package/esm/{ImageActionsOverlay/components → components/Image}/CheckedIcon/styles.js +0 -0
- /package/esm/{ImageActionsOverlay → components/Image/ImageActionsOverlay}/ImageActionsOverlay.d.ts +0 -0
- /package/esm/{ImageActionsOverlay → components/Image/ImageActionsOverlay}/styles.d.ts +0 -0
- /package/esm/{ImageActionsOverlay → components/Image/ImageActionsOverlay}/styles.js +0 -0
- /package/esm/{Image → components/Image}/styles.js +0 -0
- /package/{cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity → esm/components/InternalLink}/styles.d.ts +0 -0
- /package/esm/{InternalLink → components/InternalLink}/styles.js +0 -0
- /package/esm/{features/activity-log → components/activityLog}/ActivityExportButton/styles.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog}/ActivityExportButton/styles.js +0 -0
- /package/esm/{AttributeGroupIcon → components/activityLog/ActivityFilterButton}/styles.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog}/ActivityFilterButton/styles.js +0 -0
- /package/esm/{features/activity-log → components/activityLog}/ActivityFilterEditor/styles.js +0 -0
- /package/esm/{features/activity-log/ActivityFilterEditor/helpers.d.ts → components/activityLog/ActivityFilterEditor/utils/getSelectorActivityTypes.d.ts} +0 -0
- /package/esm/{features/activity-log → components/activityLog}/ActivityLog/helpers.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog}/ActivityLog/helpers.js +0 -0
- /package/esm/{features/activity-log/ActivityLog/components → components/activityLog/ActivityLog/items}/ActivityItem/styles.d.ts +0 -0
- /package/esm/{features/activity-log/ActivityLog/components → components/activityLog/ActivityLog/items}/ActivityItem/styles.js +0 -0
- /package/esm/{features/activity-log/ActivityLog/components → components/activityLog/ActivityLog/items}/GroupItem/styles.d.ts +0 -0
- /package/esm/{features/activity-log/ActivityLog/components → components/activityLog/ActivityLog/items}/GroupItem/styles.js +0 -0
- /package/esm/{features/activity-log → components/activityLog}/ActivityLog/styles.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog}/ActivityLog/styles.js +0 -0
- /package/esm/{features/activity-log → components/activityLog}/ActivityLogFilter/helpers.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog}/ActivityLogFilter/helpers.js +0 -0
- /package/esm/{features/activity-log → components/activityLog}/ActivityLogFilter/styles.js +0 -0
- /package/esm/{features/activity-log → components/activityLog/activities}/ActivityTitle/styles.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog/activities}/ActivityTitle/styles.js +0 -0
- /package/{cjs/features/activity-log → esm/components/activityLog/activities}/EntityObject/styles.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog/activities}/EntityObject/styles.js +0 -0
- /package/esm/{features/activity-log → components/activityLog/activities}/MoreItemsLink/MoreItemsLink.js +0 -0
- /package/esm/{features/activity-log → components/activityLog/activities}/RelationObject/styles.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog/activities}/RelationObject/styles.js +0 -0
- /package/esm/{features/activity-log/contexts/CollapsibleItemsContext.js → components/activityLog/contexts/CollapsibleItemsContext/index.js} +0 -0
- /package/esm/{features/activity-log → components/activityLog}/hooks/useActivitiesLoader.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog}/hooks/useProfileActivitiesLoader.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog}/hooks/useProfileActivitiesLoader.js +0 -0
- /package/{cjs/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.spec.d.ts → esm/components/activityLog/types/ActivitiesFilter.js} +0 -0
- /package/{cjs/AttributeGroupIcon/AttributeGroupIcon.spec.d.ts → esm/components/activityLog/types/ActivityData.js} +0 -0
- /package/{cjs/AttributeListItem/AttributeListItem.spec.d.ts → esm/components/activityLog/types/ActivityDelta.js} +0 -0
- /package/{cjs/AttributeSelector/AttributeSelector.specs.d.ts → esm/components/activityLog/types/ActivityItem.js} +0 -0
- /package/{cjs/AttributesErrorsPanel/AttributesErrorsPanel.specs.d.ts → esm/components/activityLog/types/DeltaValue.js} +0 -0
- /package/esm/{features/activity-log → components/activityLog}/utils/activities.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog}/utils/activities.js +0 -0
- /package/esm/{features/activity-log → components/activityLog}/utils/filters.d.ts +0 -0
- /package/esm/{features/activity-log → components/activityLog}/utils/filters.js +0 -0
- /package/esm/{BranchDecorator → components/attributes/BranchDecorator}/styles.js +0 -0
- /package/esm/{AttributeListItem/components/AttrTypeIcon → components/attributes/DescriptionIcon}/styles.d.ts +0 -0
- /package/esm/{DescriptionIcon → components/attributes/DescriptionIcon}/styles.js +0 -0
- /package/esm/{ImageAttributesLine → components/attributes/ImageAttributesLine}/styles.js +0 -0
- /package/esm/{OvIcon → components/attributes/OvIcon}/styles.js +0 -0
- /package/esm/{PivotingTooltip → components/attributes/PivotingAttributes}/PivotingTooltip.d.ts +0 -0
- /package/esm/{PivotingTooltip → components/attributes/PivotingAttributes}/helpers.d.ts +0 -0
- /package/esm/{PivotingTooltip → components/attributes/PivotingAttributes}/helpers.js +0 -0
- /package/esm/{EditModeAttributesList/EditModeAttributesList.d.ts → components/attributes/editMode/AttributesList/AttributesList.d.ts} +0 -0
- /package/esm/{EditModeAttributesList → components/attributes/editMode/AttributesList}/helpers.d.ts +0 -0
- /package/esm/{EditModeAttributesList → components/attributes/editMode/AttributesList}/helpers.js +0 -0
- /package/esm/{EditModeAttributesPager → components/attributes/editMode/AttributesPager}/styles.js +0 -0
- /package/{cjs/AttributesErrorsPanel/components/Error/Error.specs.d.ts → esm/components/attributes/editMode/AttributesPager/types.js} +0 -0
- /package/esm/{EditModeAttributesView → components/attributes/editMode/AttributesView}/styles.d.ts +0 -0
- /package/esm/{EditModeAttributesView → components/attributes/editMode/AttributesView}/styles.js +0 -0
- /package/esm/{EditModeComplexAttribute/EditModeComplexAttribute.d.ts → components/attributes/editMode/ComplexAttribute/ComplexAttribute.d.ts} +0 -0
- /package/esm/{EditModeComplexAttribute → components/attributes/editMode/ComplexAttribute}/styles.d.ts +0 -0
- /package/esm/{EditModeComplexAttribute → components/attributes/editMode/ComplexAttribute}/styles.js +0 -0
- /package/esm/{EntitySelector → components/attributes/editMode/EntitySelector}/styles.js +0 -0
- /package/esm/{ImageAttributesLineEditor → components/attributes/editMode/ImageAttributesLine}/styles.js +0 -0
- /package/esm/{MoreAttributesButton → components/attributes/editMode/MoreAttributesButton}/helpers.js +0 -0
- /package/esm/{MoreAttributesButton → components/attributes/editMode/MoreAttributesButton}/styles.js +0 -0
- /package/esm/{MoreAttributesButton → components/attributes/editMode/MoreAttributesButton}/useMoreAttributesItems.d.ts +0 -0
- /package/esm/{ReferenceAttributeEditor/ReferenceAttributeEditor.d.ts → components/attributes/editMode/ReferenceAttribute/ReferenceAttribute.d.ts} +0 -0
- /package/esm/{ReferenceAttributeEditor → components/attributes/editMode/ReferenceAttribute}/styles.js +0 -0
- /package/esm/{RolesEditor → components/attributes/editMode/Roles}/styles.d.ts +0 -0
- /package/esm/{RolesEditor → components/attributes/editMode/Roles}/styles.js +0 -0
- /package/esm/{SimpleAttributeEditor → components/attributes/editMode/SimpleAttributeEditor}/styles.js +0 -0
- /package/esm/{SimpleAttributeEditor → components/attributes/editMode/SimpleAttributeEditor}/useAttributeValuePermissions.d.ts +0 -0
- /package/esm/{SimpleAttributeEditor → components/attributes/editMode/SimpleAttributeEditor}/useAutopopulationContextValue.d.ts +0 -0
- /package/esm/{TagsEditor → components/attributes/editMode/Tags}/styles.d.ts +0 -0
- /package/esm/{TagsEditor → components/attributes/editMode/Tags}/styles.js +0 -0
- /package/esm/{contexts/HasDeletionsContext/index.d.ts → components/attributes/editMode/contexts/HasDeletionsContext.d.ts} +0 -0
- /package/esm/{contexts/HasDeletionsContext/index.js → components/attributes/editMode/contexts/HasDeletionsContext.js} +0 -0
- /package/esm/{contexts/PinnedAttributesContext/index.d.ts → components/attributes/editMode/contexts/PinnedAttributesContext.d.ts} +0 -0
- /package/esm/{contexts/PinnedAttributesContext/index.js → components/attributes/editMode/contexts/PinnedAttributesContext.js} +0 -0
- /package/esm/{hooks → components/attributes/editMode/hooks}/useScrollToAttribute/styles.d.ts +0 -0
- /package/esm/{hooks → components/attributes/editMode/hooks}/useScrollToAttribute/styles.js +0 -0
- /package/esm/{hooks → components/attributes/editMode/hooks}/useScrollToAttribute/useScrollToAttribute.js +0 -0
- /package/esm/{ImageAttributesLine/helpers.d.ts → components/attributes/helpers/imageAttributes.d.ts} +0 -0
- /package/esm/{ImageAttributesLine/helpers.js → components/attributes/helpers/imageAttributes.js} +0 -0
- /package/esm/{InlineAttributesList → components/attributes/inline/AttributesList}/styles.d.ts +0 -0
- /package/esm/{InlineAttributesList → components/attributes/inline/AttributesList}/styles.js +0 -0
- /package/esm/{InlineAttributesPager → components/attributes/inline/AttributesPager}/styles.d.ts +0 -0
- /package/esm/{InlineAttributesPager → components/attributes/inline/AttributesPager}/styles.js +0 -0
- /package/esm/{InlineComplexAttribute → components/attributes/inline/ComplexAttribute}/styles.d.ts +0 -0
- /package/esm/{InlineComplexAttribute → components/attributes/inline/ComplexAttribute}/styles.js +0 -0
- /package/esm/{InlineImageAttribute → components/attributes/inline/ImageAttribute}/styles.d.ts +0 -0
- /package/esm/{InlineImageAttribute → components/attributes/inline/ImageAttribute}/styles.js +0 -0
- /package/esm/{InlineReferenceAttribute → components/attributes/inline/ReferenceAttribute}/styles.d.ts +0 -0
- /package/esm/{InlineReferenceAttribute → components/attributes/inline/ReferenceAttribute}/styles.js +0 -0
- /package/esm/{InlineSimpleAttribute/components → components/attributes/inline/SimpleAttribute}/CrosswalkMenuItem/styles.d.ts +0 -0
- /package/esm/{InlineSimpleAttribute/components → components/attributes/inline/SimpleAttribute}/CrosswalkMenuItem/styles.js +0 -0
- /package/esm/{InlineSimpleAttribute → components/attributes/inline/SimpleAttribute}/styles.d.ts +0 -0
- /package/esm/{InlineSimpleAttribute → components/attributes/inline/SimpleAttribute}/styles.js +0 -0
- /package/esm/{InlineSimpleAttributeEditor → components/attributes/inline/SimpleAttributeEditor}/styles.d.ts +0 -0
- /package/esm/{InlineSimpleAttributeEditor → components/attributes/inline/SimpleAttributeEditor}/styles.js +0 -0
- /package/esm/{InlineAttributesPager/components/InlineSimpleAttributesBlock → components/attributes/inline/SimpleAttributesBlock}/styles.d.ts +0 -0
- /package/esm/{InlineAttributesPager/components/InlineSimpleAttributesBlock → components/attributes/inline/SimpleAttributesBlock}/styles.js +0 -0
- /package/esm/{ComplexAttributeLabel → components/attributes/inline/common}/ComplexAttributeLabel.d.ts +0 -0
- /package/esm/{hooks → components/attributes/inline/hooks}/useAttributeState.d.ts +0 -0
- /package/esm/{hooks → components/attributes/inline/hooks}/useAttributeState.js +0 -0
- /package/{cjs/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.specs.d.ts → esm/components/attributes/inline/types/AddAttributeEvent.js} +0 -0
- /package/{cjs/AttributesFilterSelector/AttributesFilterSelector.test.d.ts → esm/components/attributes/inline/types/CrosswalksMap.js} +0 -0
- /package/{cjs/AttributesFiltersBuilder/AttributesFiltersBuilder.test.d.ts → esm/components/attributes/inline/types/DeleteAttributeEvent.js} +0 -0
- /package/{cjs/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.test.d.ts → esm/components/attributes/inline/types/EditAttributeEvent.js} +0 -0
- /package/{cjs/AttributesFiltersBuilder/components/RowActions/RowActions.test.d.ts → esm/components/attributes/inline/types/IgnoreAttributeEvent.js} +0 -0
- /package/{cjs/AttributesFiltersButton/AttributesFiltersButton.test.d.ts → esm/components/attributes/inline/types/PinAttributeEvent.js} +0 -0
- /package/{cjs/AttributesFiltersButton/components/ActionButtons/ActionButtons.test.d.ts → esm/components/attributes/inline/types/index.js} +0 -0
- /package/esm/{ReadOnlyAttributesPager/ReadOnlyAttributesPager.d.ts → components/attributes/readMode/AttributesPager/AttributesPager.d.ts} +0 -0
- /package/esm/{ReadOnlyAttributesPager → components/attributes/readMode/AttributesPager}/styles.js +0 -0
- /package/esm/{ReadOnlyAttributesView → components/attributes/readMode/AttributesView}/styles.d.ts +0 -0
- /package/esm/{ReadOnlyAttributesView → components/attributes/readMode/AttributesView}/styles.js +0 -0
- /package/esm/{NestedAttribute → components/attributes/readMode/NestedAttribute}/NestedAttribute.d.ts +0 -0
- /package/esm/{NestedAttribute → components/attributes/readMode/NestedAttribute}/styles.d.ts +0 -0
- /package/esm/{NestedAttribute → components/attributes/readMode/NestedAttribute}/styles.js +0 -0
- /package/esm/{SpecialAttributesArray → components/attributes/readMode/SpecialAttributes}/styles.d.ts +0 -0
- /package/esm/{SpecialAttributesArray → components/attributes/readMode/SpecialAttributes}/styles.js +0 -0
- /package/{cjs/AttributesValuesEditor/AttributesValuesEditor.test.d.ts → esm/components/attributes/types/attributes.js} +0 -0
- /package/{cjs/AttributesView/AttributesView.test.d.ts → esm/components/attributes/types/attributesView.js} +0 -0
- /package/esm/{BubbleChart → components/charts/BubbleChart}/styles.d.ts +0 -0
- /package/esm/{BubbleChart → components/charts/BubbleChart}/styles.js +0 -0
- /package/esm/{CloudChart → components/charts/CloudChart}/styles.d.ts +0 -0
- /package/esm/{CloudChart → components/charts/CloudChart}/styles.js +0 -0
- /package/esm/{ChartLegend → components/charts/CustomLegend}/styles.js +0 -0
- /package/esm/{ChartTooltip → components/charts/CustomTooltip}/styles.d.ts +0 -0
- /package/esm/{ChartTooltip → components/charts/CustomTooltip}/styles.js +0 -0
- /package/esm/{MapChart/components → components/charts/MapChart}/Legend/styles.js +0 -0
- /package/esm/{MapChart → components/charts/MapChart}/styles.d.ts +0 -0
- /package/esm/{MapChart → components/charts/MapChart}/styles.js +0 -0
- /package/esm/{MapChart → components/charts/MapChart}/useGeography.d.ts +0 -0
- /package/esm/{PieChart → components/charts/PieChart}/styles.d.ts +0 -0
- /package/esm/{PieChart → components/charts/PieChart}/styles.js +0 -0
- /package/esm/{TableWithBars/components/AttributeCellRenderer → components/charts/TableWithBars/cell-renderers}/AttributeCellRenderer.d.ts +0 -0
- /package/esm/{TableWithBars → components/charts/TableWithBars}/styles.d.ts +0 -0
- /package/esm/{TableWithBars → components/charts/TableWithBars}/styles.js +0 -0
- /package/esm/{TreeChart/components/CustomizedContent → components/charts/TreeChart}/styles.d.ts +0 -0
- /package/esm/{TreeChart/components/CustomizedContent → components/charts/TreeChart}/styles.js +0 -0
- /package/{cjs/AutoSizeList/AutoSizeList.test.d.ts → esm/components/charts/types/charts.js} +0 -0
- /package/{cjs/AvatarWithFallback/AvatarWithFallback.specs.d.ts → esm/components/charts/types/index.js} +0 -0
- /package/esm/{TypeaheadEditor → components/editors/TypeaheadEditor}/styles.d.ts +0 -0
- /package/esm/{TypeaheadEditor → components/editors/TypeaheadEditor}/styles.js +0 -0
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
16
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
17
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
37
|
+
var t = {};
|
|
38
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
39
|
+
t[p] = s[p];
|
|
40
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
41
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
42
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
43
|
+
t[p[i]] = s[p[i]];
|
|
44
|
+
}
|
|
45
|
+
return t;
|
|
46
|
+
};
|
|
47
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
48
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
49
|
+
};
|
|
50
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51
|
+
var react_1 = __importStar(require("react"));
|
|
52
|
+
var prop_types_1 = __importDefault(require("prop-types"));
|
|
53
|
+
var classnames_1 = __importDefault(require("classnames"));
|
|
54
|
+
var ramda_1 = require("ramda");
|
|
55
|
+
var Add_1 = __importDefault(require("@mui/icons-material/Add"));
|
|
56
|
+
var Delete_1 = __importDefault(require("@mui/icons-material/Delete"));
|
|
57
|
+
var Typography_1 = __importDefault(require("@mui/material/Typography"));
|
|
58
|
+
var ui_i18n_1 = __importDefault(require("ui-i18n"));
|
|
59
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
60
|
+
var DataTypeValue_1 = __importDefault(require("../../../DataTypeValue/DataTypeValue"));
|
|
61
|
+
var DataTypeValueEditor_1 = __importDefault(require("../../../editors/DataTypeValueEditor/DataTypeValueEditor"));
|
|
62
|
+
var ErrorWrapper_1 = __importDefault(require("../../../ErrorWrapper/ErrorWrapper"));
|
|
63
|
+
var SmallIconButton_1 = __importDefault(require("../../../SmallIconButton/SmallIconButton"));
|
|
64
|
+
var utils_1 = require("./utils");
|
|
65
|
+
var withAsyncMount_1 = __importDefault(require("../../../../HOCs/withAsyncMount/withAsyncMount"));
|
|
66
|
+
var HOCs_1 = require("../../../../HOCs");
|
|
67
|
+
var contexts_1 = require("../../../../contexts");
|
|
68
|
+
var hooks_1 = require("../../../../hooks");
|
|
69
|
+
var useAutopopulationContextValue_1 = require("./useAutopopulationContextValue");
|
|
70
|
+
var useAttributeValuePermissions_1 = require("./useAttributeValuePermissions");
|
|
71
|
+
var styles_1 = require("./styles");
|
|
72
|
+
var AsyncMountPlaceholder = function () {
|
|
73
|
+
var styles = (0, styles_1.useStyles)();
|
|
74
|
+
return react_1.default.createElement("div", { className: styles.placeholder });
|
|
75
|
+
};
|
|
76
|
+
var SimpleAttributeEditor = function (_a) {
|
|
77
|
+
var _b, _c;
|
|
78
|
+
var className = _a.className, attributeValue = _a.attributeValue, attributeType = _a.attributeType, isReltioCrosswalk = _a.isReltioCrosswalk, ownError = _a.ownError, mode = _a.mode, onAddOneMore = _a.onAddOneMore, onDeleteAttribute = _a.onDeleteAttribute, onChangeAttribute = _a.onChangeAttribute, onDeactivateError = _a.onDeactivateError, additionalControlsRenderer = _a.additionalControlsRenderer, state = _a.state, highlightedError = _a.highlightedError, _d = _a.isEmptyEditor, isEmptyEditor = _d === void 0 ? false : _d, otherProps = __rest(_a, ["className", "attributeValue", "attributeType", "isReltioCrosswalk", "ownError", "mode", "onAddOneMore", "onDeleteAttribute", "onChangeAttribute", "onDeactivateError", "additionalControlsRenderer", "state", "highlightedError", "isEmptyEditor"]);
|
|
79
|
+
var styles = (0, styles_1.useStyles)();
|
|
80
|
+
var deleted = state === 'deleted';
|
|
81
|
+
var edited = state === 'edited';
|
|
82
|
+
var isEditableMode = (0, mdm_sdk_1.isEditableMode)(mode);
|
|
83
|
+
var _e = (0, useAttributeValuePermissions_1.useAttributeValuePermissions)({
|
|
84
|
+
attributeValue: attributeValue,
|
|
85
|
+
attributeType: attributeType,
|
|
86
|
+
mode: mode,
|
|
87
|
+
isReltioCrosswalk: isReltioCrosswalk
|
|
88
|
+
}), canCreate = _e.canCreate, canEdit = _e.canEdit, canDelete = _e.canDelete;
|
|
89
|
+
var showToEdit = canEdit && isEditableMode;
|
|
90
|
+
var errorMessage = (0, mdm_sdk_1.getErrorMessage)(ownError);
|
|
91
|
+
var dependentLookupEditorContext = (0, contexts_1.useMdmDependentLookupEditorContext)(attributeValue, attributeType);
|
|
92
|
+
var _f = (0, hooks_1.useScrollToAttributeError)({ highlightedError: highlightedError, isSimple: true }), ref = _f.ref, errorClassName = _f.errorClassName;
|
|
93
|
+
(0, react_1.useEffect)(function () {
|
|
94
|
+
// when editor is empty but has default lookup code, onChangeAttribute will be called by useLookupsResolver
|
|
95
|
+
if (isEmptyEditor && (0, mdm_sdk_1.isDependentLookupAttrType)(attributeType) && !(0, ramda_1.has)('lookupCode', attributeValue)) {
|
|
96
|
+
onChangeAttribute({
|
|
97
|
+
attributeType: attributeType,
|
|
98
|
+
uri: attributeValue.uri,
|
|
99
|
+
value: attributeValue.value,
|
|
100
|
+
silent: true
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
}, [isEmptyEditor]);
|
|
104
|
+
var dataTypeDefinition = (0, react_1.useMemo)(function () { return (0, mdm_sdk_1.getAttrDataTypeDefinition)(attributeType); }, [attributeType]);
|
|
105
|
+
var value = (0, react_1.useMemo)(function () { return (0, utils_1.attributeValueToEditorValue)(attributeValue, dataTypeDefinition); }, [attributeValue, dataTypeDefinition]);
|
|
106
|
+
var deactivateError = (0, react_1.useCallback)(function () {
|
|
107
|
+
if (ownError) {
|
|
108
|
+
onDeactivateError((0, mdm_sdk_1.getErrorId)(ownError));
|
|
109
|
+
}
|
|
110
|
+
}, [ownError, onDeactivateError]);
|
|
111
|
+
var onValueEditorChange = (0, react_1.useCallback)((0, ramda_1.pipe)((0, utils_1.prepareChangeData)(attributeValue, attributeType), onChangeAttribute, deactivateError), [attributeValue, attributeType, onChangeAttribute, deactivateError]);
|
|
112
|
+
var onDelete = function () {
|
|
113
|
+
onDeleteAttribute({ uri: attributeValue.uri, attributeType: attributeType });
|
|
114
|
+
if ((0, mdm_sdk_1.getErrorType)(ownError) !== mdm_sdk_1.ErrorType.missed) {
|
|
115
|
+
deactivateError();
|
|
116
|
+
}
|
|
117
|
+
};
|
|
118
|
+
var showAddButton = !!onAddOneMore && canCreate && !attributeType.singleValue;
|
|
119
|
+
var showDeleteButton = !deleted && !!onDeleteAttribute && canDelete;
|
|
120
|
+
var hasError = !!errorMessage;
|
|
121
|
+
var deletedProps = deleted ? { disabled: true, isCrossedOut: true } : {};
|
|
122
|
+
var isProfilePerspectiveView = (0, react_1.useContext)(contexts_1.ProfilePerspectiveViewContext);
|
|
123
|
+
var autopopulationContextValue = (0, useAutopopulationContextValue_1.useAutopopulationContextValue)({
|
|
124
|
+
enabled: isProfilePerspectiveView && (0, mdm_sdk_1.isDependentLookupAttrType)(attributeType),
|
|
125
|
+
attributeTypeUri: attributeType === null || attributeType === void 0 ? void 0 : attributeType.uri,
|
|
126
|
+
valueUri: attributeValue.uri
|
|
127
|
+
}).autopopulationContextValue;
|
|
128
|
+
return (react_1.default.createElement("div", { ref: ref, className: (0, classnames_1.default)(styles.editor, className, errorClassName) },
|
|
129
|
+
react_1.default.createElement(ErrorWrapper_1.default, { errorMessage: errorMessage, className: styles.errorWrapper },
|
|
130
|
+
react_1.default.createElement("div", { className: (0, classnames_1.default)(styles['editor-value'], (_b = {}, _b[styles.deleted] = deleted, _b), (_c = {}, _c[styles['editor-read-only-value']] = !showToEdit, _c)), "data-reltio-id": "reltio-attribute-value" }, showToEdit ? (react_1.default.createElement(contexts_1.DependentLookupAutopopulationContext.Provider, { value: autopopulationContextValue },
|
|
131
|
+
react_1.default.createElement(DataTypeValueEditor_1.default, __assign({ fieldName: (0, mdm_sdk_1.attributeUriToSearchUri)(attributeType.uri), value: value, dataTypeDefinition: dataTypeDefinition, error: hasError, onChange: onValueEditorChange, fullWidth: true }, dependentLookupEditorContext, otherProps, deletedProps)))) : (react_1.default.createElement(DataTypeValue_1.default, { value: (0, mdm_sdk_1.getAttributeValue)(attributeValue), dataTypeDefinition: dataTypeDefinition })))),
|
|
132
|
+
react_1.default.createElement("div", { className: styles['editor-actions'] },
|
|
133
|
+
edited && (react_1.default.createElement(Typography_1.default, { variant: "caption", className: styles.editedLabel },
|
|
134
|
+
"(",
|
|
135
|
+
ui_i18n_1.default.text('edited'),
|
|
136
|
+
")")),
|
|
137
|
+
showAddButton && (react_1.default.createElement(SmallIconButton_1.default, { icon: Add_1.default, onClick: onAddOneMore, size: "L", className: (0, classnames_1.default)(styles.addButton, styles.button), "data-reltio-id": "reltio-add-one-more-simple-attribute-button" })),
|
|
138
|
+
additionalControlsRenderer && additionalControlsRenderer({ attributeType: attributeType, attributeValue: attributeValue }),
|
|
139
|
+
showDeleteButton && (react_1.default.createElement(SmallIconButton_1.default, { className: styles.button, icon: Delete_1.default, onClick: onDelete, size: "L", "data-reltio-id": "reltio-delete-simple-attribute-button" })))));
|
|
140
|
+
};
|
|
141
|
+
SimpleAttributeEditor.propTypes = {
|
|
142
|
+
className: prop_types_1.default.string,
|
|
143
|
+
attributeValue: mdm_sdk_1.SimpleAttributeValueType,
|
|
144
|
+
attributeType: mdm_sdk_1.AttributeTypeType,
|
|
145
|
+
ownError: mdm_sdk_1.AttributeErrorType,
|
|
146
|
+
isReltioCrosswalk: prop_types_1.default.bool,
|
|
147
|
+
state: prop_types_1.default.oneOf(['deleted', 'edited']),
|
|
148
|
+
mode: mdm_sdk_1.ModeType,
|
|
149
|
+
onAddOneMore: prop_types_1.default.func,
|
|
150
|
+
onDeleteAttribute: prop_types_1.default.func,
|
|
151
|
+
onChangeAttribute: prop_types_1.default.func,
|
|
152
|
+
onDeactivateError: prop_types_1.default.func,
|
|
153
|
+
additionalControlsRenderer: prop_types_1.default.func,
|
|
154
|
+
highlightedError: prop_types_1.default.object,
|
|
155
|
+
isEmptyEditor: prop_types_1.default.bool
|
|
156
|
+
};
|
|
157
|
+
var SimpleAttributeEditorWithScrollToElementContext = (0, HOCs_1.withContext)(contexts_1.ScrollToElementContext, function (contextValue, _a) {
|
|
158
|
+
var attributeValue = _a.attributeValue;
|
|
159
|
+
var _b = contextValue || {}, element = _b.element, type = _b.type;
|
|
160
|
+
var isHighlighted = (0, contexts_1.isHighlightedErrorType)(type) && (element === null || element === void 0 ? void 0 : element.uri) === attributeValue.uri;
|
|
161
|
+
return { highlightedError: isHighlighted ? contextValue : null };
|
|
162
|
+
}, SimpleAttributeEditor);
|
|
163
|
+
exports.default = (0, withAsyncMount_1.default)(SimpleAttributeEditorWithScrollToElementContext, AsyncMountPlaceholder);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"deleted" | "button" | "placeholder" | "editor" | "wrapper" | "addButton" | "errorWrapper" | "editor-value" | "editor-read-only-value" | "editor-actions" | "editedLabel">;
|
package/cjs/components/attributes/editMode/SimpleAttributeEditor/useAttributeValuePermissions.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useAttributeValuePermissions = void 0;
|
|
4
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
5
|
+
var contexts_1 = require("../../../../contexts");
|
|
6
|
+
var useAttributeValuePermissions = function (_a) {
|
|
7
|
+
var attributeType = _a.attributeType, attributeValue = _a.attributeValue, isReltioCrosswalk = _a.isReltioCrosswalk, mode = _a.mode;
|
|
8
|
+
var _b = (0, contexts_1.useAttributeValueConfigPermissions)(attributeValue.uri), configCanCreate = _b.canCreate, configCanUpdate = _b.canUpdate, configCanDelete = _b.canDelete;
|
|
9
|
+
var canCreate = configCanCreate && (0, mdm_sdk_1.checkCanCreateAttribute)({ attributeType: attributeType, mode: mode });
|
|
10
|
+
var canEdit = configCanUpdate && (0, mdm_sdk_1.checkCanEditAttribute)({ attributeType: attributeType, attributeValue: attributeValue, mode: mode, isReltioCrosswalk: isReltioCrosswalk });
|
|
11
|
+
var canDelete = configCanDelete && (0, mdm_sdk_1.checkCanDeleteAttribute)({ attributeType: attributeType, attributeValue: attributeValue, mode: mode, isReltioCrosswalk: isReltioCrosswalk });
|
|
12
|
+
return { canCreate: canCreate, canEdit: canEdit, canDelete: canDelete };
|
|
13
|
+
};
|
|
14
|
+
exports.useAttributeValuePermissions = useAttributeValuePermissions;
|
package/cjs/components/attributes/editMode/SimpleAttributeEditor/useAutopopulationContextValue.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useAutopopulationContextValue = void 0;
|
|
4
|
+
var react_1 = require("react");
|
|
5
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
6
|
+
var contexts_1 = require("../../../../contexts");
|
|
7
|
+
var useAutopopulationContextValue = function (_a) {
|
|
8
|
+
var enabled = _a.enabled, attributeTypeUri = _a.attributeTypeUri, valueUri = _a.valueUri;
|
|
9
|
+
var dependentLookupsEditorTouched = (0, contexts_1.useMdmAction)('dependentLookupsEditorTouched');
|
|
10
|
+
var autocompleteConfig = (0, contexts_1.useMdmLookupAutocomplete)();
|
|
11
|
+
var dependentLookupEditorState = (0, contexts_1.useMdmDependentLookupEditorState)(valueUri);
|
|
12
|
+
var autopopulationEnabled = enabled && (0, mdm_sdk_1.isAutopopulationEnabled)(autocompleteConfig, attributeTypeUri);
|
|
13
|
+
var autopopulationId = autopopulationEnabled ? valueUri : null;
|
|
14
|
+
var _b = ((autopopulationEnabled && dependentLookupEditorState) || {}).isTouched, isTouched = _b === void 0 ? false : _b;
|
|
15
|
+
var onTouch = (0, react_1.useCallback)(function (valueUri) {
|
|
16
|
+
dependentLookupsEditorTouched({ uri: valueUri, isTouched: true });
|
|
17
|
+
}, [dependentLookupsEditorTouched]);
|
|
18
|
+
var autopopulationContextValue = (0, react_1.useMemo)(function () {
|
|
19
|
+
return autopopulationId
|
|
20
|
+
? {
|
|
21
|
+
id: autopopulationId,
|
|
22
|
+
isTouched: isTouched,
|
|
23
|
+
onTouch: onTouch
|
|
24
|
+
}
|
|
25
|
+
: null;
|
|
26
|
+
}, [autopopulationId, isTouched, onTouch]);
|
|
27
|
+
return { autopopulationContextValue: autopopulationContextValue };
|
|
28
|
+
};
|
|
29
|
+
exports.useAutopopulationContextValue = useAutopopulationContextValue;
|
|
@@ -0,0 +1,65 @@
|
|
|
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.prepareChangeData = exports.editorValueToAttributeValue = exports.attributeValueToEditorValue = void 0;
|
|
7
|
+
var moment_1 = __importDefault(require("moment"));
|
|
8
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
9
|
+
var ramda_1 = require("ramda");
|
|
10
|
+
var mdm_sdk_2 = require("@reltio/mdm-sdk");
|
|
11
|
+
var attributeValueToEditorValue = function (attributeValue, _a) {
|
|
12
|
+
if (attributeValue === void 0) { attributeValue = {}; }
|
|
13
|
+
var type = _a.type;
|
|
14
|
+
var value = attributeValue.value, lookupCode = attributeValue.lookupCode;
|
|
15
|
+
switch (type) {
|
|
16
|
+
case mdm_sdk_1.DataTypes.TYPE_BOOLEAN:
|
|
17
|
+
case mdm_sdk_1.DataTypes.TYPE_BOOLEAN_RADIO:
|
|
18
|
+
case mdm_sdk_1.DataTypes.TYPE_RDM_LOOKUPS_NOT_RESOLVED: {
|
|
19
|
+
return (0, mdm_sdk_1.parseBoolean)(value);
|
|
20
|
+
}
|
|
21
|
+
case mdm_sdk_1.DataTypes.TYPE_DATE:
|
|
22
|
+
return (value && mdm_sdk_2.utils.dates.toLocalDate(value)) || null;
|
|
23
|
+
case mdm_sdk_1.DataTypes.TYPE_LOCAL_DATE:
|
|
24
|
+
case mdm_sdk_1.DataTypes.TYPE_TIMESTAMP:
|
|
25
|
+
case mdm_sdk_1.DataTypes.TYPE_ACTIVENESS_DATE: {
|
|
26
|
+
return (value && new Date(value)) || null;
|
|
27
|
+
}
|
|
28
|
+
case mdm_sdk_1.DataTypes.TYPE_DEPENDENT_LOOKUP:
|
|
29
|
+
case mdm_sdk_1.DataTypes.TYPE_LOOKUP: {
|
|
30
|
+
return { value: value, lookupCode: lookupCode };
|
|
31
|
+
}
|
|
32
|
+
default:
|
|
33
|
+
return value;
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
exports.attributeValueToEditorValue = attributeValueToEditorValue;
|
|
37
|
+
var editorValueToAttributeValue = function (attributeType, editorValue) {
|
|
38
|
+
var type = (0, mdm_sdk_1.getAttrDataTypeDefinition)(attributeType).type;
|
|
39
|
+
switch (type) {
|
|
40
|
+
case mdm_sdk_1.DataTypes.TYPE_BOOLEAN:
|
|
41
|
+
case mdm_sdk_1.DataTypes.TYPE_BOOLEAN_RADIO:
|
|
42
|
+
case mdm_sdk_1.DataTypes.TYPE_RDM_LOOKUPS_NOT_RESOLVED:
|
|
43
|
+
return editorValue.toString();
|
|
44
|
+
case mdm_sdk_1.DataTypes.TYPE_DATE:
|
|
45
|
+
return (editorValue && (0, moment_1.default)(editorValue).format('YYYY-MM-DD')) || '';
|
|
46
|
+
case mdm_sdk_1.DataTypes.TYPE_TIMESTAMP: {
|
|
47
|
+
return (editorValue && (0, moment_1.default)(editorValue).utc().format()) || '';
|
|
48
|
+
}
|
|
49
|
+
case mdm_sdk_1.DataTypes.TYPE_ACTIVENESS_DATE:
|
|
50
|
+
case mdm_sdk_1.DataTypes.TYPE_LOCAL_DATE:
|
|
51
|
+
return editorValue && editorValue.valueOf();
|
|
52
|
+
default:
|
|
53
|
+
return editorValue || '';
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
exports.editorValueToAttributeValue = editorValueToAttributeValue;
|
|
57
|
+
var prepareChangeData = (0, ramda_1.curry)(function (attributeValue, attributeType, editorValue) {
|
|
58
|
+
var value = editorValueToAttributeValue(attributeType, editorValue);
|
|
59
|
+
return {
|
|
60
|
+
value: value,
|
|
61
|
+
uri: attributeValue.uri,
|
|
62
|
+
attributeType: attributeType
|
|
63
|
+
};
|
|
64
|
+
});
|
|
65
|
+
exports.prepareChangeData = prepareChangeData;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AttributeItem } from '@reltio/mdm-sdk';
|
|
3
|
+
export type Props = {
|
|
4
|
+
className?: string;
|
|
5
|
+
values: string[];
|
|
6
|
+
onChange: (param: AttributeItem) => void;
|
|
7
|
+
onDelete?: (param: AttributeItem) => void;
|
|
8
|
+
};
|
|
9
|
+
declare const Tags: ({ className, values, onChange, onDelete }: Props) => JSX.Element;
|
|
10
|
+
export default Tags;
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
16
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
17
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
37
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
38
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
39
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
40
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
41
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
42
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
43
|
+
});
|
|
44
|
+
};
|
|
45
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
46
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
47
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
48
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
49
|
+
function step(op) {
|
|
50
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
51
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
52
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
53
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
54
|
+
switch (op[0]) {
|
|
55
|
+
case 0: case 1: t = op; break;
|
|
56
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
57
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
58
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
59
|
+
default:
|
|
60
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
61
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
62
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
63
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
64
|
+
if (t[2]) _.ops.pop();
|
|
65
|
+
_.trys.pop(); continue;
|
|
66
|
+
}
|
|
67
|
+
op = body.call(thisArg, _);
|
|
68
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
69
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
70
|
+
}
|
|
71
|
+
};
|
|
72
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
73
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
74
|
+
};
|
|
75
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76
|
+
var react_1 = __importStar(require("react"));
|
|
77
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
78
|
+
var Delete_1 = __importDefault(require("@mui/icons-material/Delete"));
|
|
79
|
+
var TypeaheadEditor_1 = __importDefault(require("../../../editors/TypeaheadEditor/TypeaheadEditor"));
|
|
80
|
+
var SmallIconButton_1 = __importDefault(require("../../../SmallIconButton/SmallIconButton"));
|
|
81
|
+
var contexts_1 = require("../../../../contexts");
|
|
82
|
+
var styles_1 = require("./styles");
|
|
83
|
+
var Tags = function (_a) {
|
|
84
|
+
var className = _a.className, values = _a.values, onChange = _a.onChange, onDelete = _a.onDelete;
|
|
85
|
+
var styles = (0, styles_1.useStyles)();
|
|
86
|
+
var entityUri = (0, contexts_1.useMdmEntityUri)();
|
|
87
|
+
var globalSearchRequestOptions = (0, contexts_1.useMdmGlobalSearchRequestOptions)();
|
|
88
|
+
var getSuggestions = (0, react_1.useCallback)(function (searchValue, max, pageNo) { return __awaiter(void 0, void 0, void 0, function () {
|
|
89
|
+
var response;
|
|
90
|
+
return __generator(this, function (_a) {
|
|
91
|
+
switch (_a.label) {
|
|
92
|
+
case 0: return [4 /*yield*/, (0, mdm_sdk_1.getFacetedAttributeData)({
|
|
93
|
+
fieldName: 'tags',
|
|
94
|
+
searchValue: searchValue,
|
|
95
|
+
options: __assign(__assign({}, globalSearchRequestOptions), { max: max, pageNo: pageNo })
|
|
96
|
+
})];
|
|
97
|
+
case 1:
|
|
98
|
+
response = _a.sent();
|
|
99
|
+
return [2 /*return*/, Object.keys(response.tags)];
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
}); }, [globalSearchRequestOptions]);
|
|
103
|
+
var handleChange = (0, react_1.useCallback)(function (tags) {
|
|
104
|
+
onChange({
|
|
105
|
+
value: tags,
|
|
106
|
+
attributeType: mdm_sdk_1.EntityAttrTypes.tags,
|
|
107
|
+
uri: entityUri
|
|
108
|
+
});
|
|
109
|
+
}, [onChange, entityUri]);
|
|
110
|
+
var handleDelete = (0, react_1.useCallback)(function () {
|
|
111
|
+
onDelete({ uri: entityUri, attributeType: mdm_sdk_1.EntityAttrTypes.tags });
|
|
112
|
+
}, [entityUri, onDelete]);
|
|
113
|
+
return (react_1.default.createElement("div", { className: styles.container, "data-reltio-id": "reltio-attribute-value" },
|
|
114
|
+
react_1.default.createElement(TypeaheadEditor_1.default, { fullWidth: true, multiple: true, variant: "filled", className: className, value: values || [], onChange: handleChange, getSuggestions: getSuggestions }),
|
|
115
|
+
!!onDelete && (react_1.default.createElement(SmallIconButton_1.default, { "data-reltio-id": "reltio-tags-delete-button", className: styles.deleteButton, icon: Delete_1.default, onClick: handleDelete, size: "L" }))));
|
|
116
|
+
};
|
|
117
|
+
exports.default = Tags;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Tags';
|
|
@@ -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.default = void 0;
|
|
7
|
+
var Tags_1 = require("./Tags");
|
|
8
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(Tags_1).default; } });
|
package/cjs/components/attributes/editMode/hooks/useScrollToAttribute/useScrollToAttribute.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ContextType } from 'react';
|
|
2
|
+
import { ScrollToElementContext } from '../../../../../contexts';
|
|
3
|
+
export declare const useScrollToAttribute: (context?: ContextType<typeof ScrollToElementContext>) => {
|
|
4
|
+
ref: import("react").MutableRefObject<HTMLDivElement>;
|
|
5
|
+
highlightedClassName: string;
|
|
6
|
+
} | {
|
|
7
|
+
ref: import("react").MutableRefObject<HTMLDivElement>;
|
|
8
|
+
highlightedClassName?: undefined;
|
|
9
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AttributeType, Metadata, NestedAttributeValue, ReferenceAttributeValue, SimpleAttributeValue } from '@reltio/mdm-sdk';
|
|
2
|
+
export declare const getFilteredAttrTypes: (metadata: Metadata, type: string, includeUris: string[], excludeUris: string[]) => any;
|
|
3
|
+
type PagersData = {
|
|
4
|
+
attrType: AttributeType;
|
|
5
|
+
values: (SimpleAttributeValue | NestedAttributeValue | ReferenceAttributeValue | string | number)[];
|
|
6
|
+
};
|
|
7
|
+
export declare const splitPagersData: (alwaysVisibleTypeUris: string[], pagersData: PagersData[]) => [PagersData[], PagersData[]];
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.splitPagersData = exports.getFilteredAttrTypes = void 0;
|
|
4
|
+
var ramda_1 = require("ramda");
|
|
5
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
6
|
+
var getFilteredAttrTypes = function (metadata, type, includeUris, excludeUris) {
|
|
7
|
+
var attrTypes = (0, ramda_1.pipe)(mdm_sdk_1.getEntityType, (0, ramda_1.defaultTo)({}), (0, ramda_1.props)(['attributes', 'analyticsAttributes']), (0, ramda_1.reject)(ramda_1.isNil), ramda_1.flatten, (0, ramda_1.concat)(ramda_1.__, (0, ramda_1.pipe)(ramda_1.values, (0, ramda_1.reject)((0, ramda_1.propEq)('uri', mdm_sdk_1.EntityAttrTypes.id.uri)))(mdm_sdk_1.EntityAttrTypes)))(metadata, type);
|
|
8
|
+
return includeUris.length
|
|
9
|
+
? attrTypes.filter(function (_a) {
|
|
10
|
+
var uri = _a.uri;
|
|
11
|
+
return includeUris.includes(uri);
|
|
12
|
+
})
|
|
13
|
+
: attrTypes.filter(function (_a) {
|
|
14
|
+
var uri = _a.uri;
|
|
15
|
+
return !excludeUris.includes(uri);
|
|
16
|
+
});
|
|
17
|
+
};
|
|
18
|
+
exports.getFilteredAttrTypes = getFilteredAttrTypes;
|
|
19
|
+
var splitPagersData = function (alwaysVisibleTypeUris, pagersData) {
|
|
20
|
+
return (0, ramda_1.partition)((0, ramda_1.pipe)((0, ramda_1.path)(['attrType', 'uri']), (0, ramda_1.includes)(ramda_1.__, alwaysVisibleTypeUris)), pagersData);
|
|
21
|
+
};
|
|
22
|
+
exports.splitPagersData = splitPagersData;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AttributeType, RecordAttributesType } from '@reltio/mdm-sdk';
|
|
3
|
+
import { CrosswalksMap } from '../types';
|
|
4
|
+
import { DeleteAttributeEvent } from '../types/DeleteAttributeEvent';
|
|
5
|
+
import { PinAttributeEvent } from '../types/PinAttributeEvent';
|
|
6
|
+
import { IgnoreAttributeEvent } from '../types/IgnoreAttributeEvent';
|
|
7
|
+
import { EditAttributeEvent } from '../types/EditAttributeEvent';
|
|
8
|
+
import { AddAttributeEvent } from '../types/AddAttributeEvent';
|
|
9
|
+
type Props = {
|
|
10
|
+
attributeTypes: AttributeType[];
|
|
11
|
+
attributes: RecordAttributesType;
|
|
12
|
+
parentUri: string;
|
|
13
|
+
crosswalksMap: CrosswalksMap;
|
|
14
|
+
disableDelete?: boolean;
|
|
15
|
+
disableEdit?: boolean;
|
|
16
|
+
onPin: (event: PinAttributeEvent) => void;
|
|
17
|
+
onIgnore: (event: IgnoreAttributeEvent) => void;
|
|
18
|
+
onDelete: (event: DeleteAttributeEvent) => void;
|
|
19
|
+
onEdit: (event: EditAttributeEvent) => void;
|
|
20
|
+
onAdd: (event: AddAttributeEvent) => void;
|
|
21
|
+
emptyTempAttributeUris: string[];
|
|
22
|
+
};
|
|
23
|
+
declare const AttributesList: ({ attributeTypes, attributes, ...props }: Props) => JSX.Element;
|
|
24
|
+
export default AttributesList;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
var react_1 = __importDefault(require("react"));
|
|
29
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
30
|
+
var AttributesPager_1 = __importDefault(require("../AttributesPager/AttributesPager"));
|
|
31
|
+
var ramda_1 = require("ramda");
|
|
32
|
+
var Title_1 = __importDefault(require("../../../Title/Title"));
|
|
33
|
+
var BranchDecorator_1 = __importDefault(require("../../BranchDecorator/BranchDecorator"));
|
|
34
|
+
var styles_1 = require("./styles");
|
|
35
|
+
var AttributesList = function (_a) {
|
|
36
|
+
var attributeTypes = _a.attributeTypes, attributes = _a.attributes, props = __rest(_a, ["attributeTypes", "attributes"]);
|
|
37
|
+
var styles = (0, styles_1.useStyles)();
|
|
38
|
+
return (react_1.default.createElement(react_1.default.Fragment, null, attributeTypes.filter(mdm_sdk_1.isReadableAttribute).map(function (attributeType) { return (react_1.default.createElement(BranchDecorator_1.default, { key: attributeType.uri, enabled: true },
|
|
39
|
+
react_1.default.createElement(Title_1.default, { className: styles.title, label: attributeType.label }),
|
|
40
|
+
react_1.default.createElement(AttributesPager_1.default, __assign({ attributeType: attributeType, attributeValues: attributes[attributeType.name], paging: (0, ramda_1.path)(['paging', attributeType.uri], attributes) }, props)))); })));
|
|
41
|
+
};
|
|
42
|
+
exports.default = AttributesList;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AttributeType, AttributeValue, Paging } from '@reltio/mdm-sdk';
|
|
3
|
+
import { CrosswalksMap } from '../types';
|
|
4
|
+
import { DeleteAttributeEvent } from '../types/DeleteAttributeEvent';
|
|
5
|
+
import { PinAttributeEvent } from '../types/PinAttributeEvent';
|
|
6
|
+
import { IgnoreAttributeEvent } from '../types/IgnoreAttributeEvent';
|
|
7
|
+
import { EditAttributeEvent } from '../types/EditAttributeEvent';
|
|
8
|
+
import { AddAttributeEvent } from '../types/AddAttributeEvent';
|
|
9
|
+
type Props = {
|
|
10
|
+
attributeType: AttributeType;
|
|
11
|
+
attributeValues: AttributeValue[];
|
|
12
|
+
parentUri: string;
|
|
13
|
+
paging?: Paging;
|
|
14
|
+
max?: number;
|
|
15
|
+
crosswalksMap: CrosswalksMap;
|
|
16
|
+
disableDelete?: boolean;
|
|
17
|
+
disableEdit?: boolean;
|
|
18
|
+
onPin: (event: PinAttributeEvent) => void;
|
|
19
|
+
onIgnore: (event: IgnoreAttributeEvent) => void;
|
|
20
|
+
onDelete: (event: DeleteAttributeEvent) => void;
|
|
21
|
+
onEdit: (event: EditAttributeEvent) => void;
|
|
22
|
+
onAdd: (event: AddAttributeEvent) => void;
|
|
23
|
+
emptyTempAttributeUris: string[];
|
|
24
|
+
requestNextPage?: () => void;
|
|
25
|
+
};
|
|
26
|
+
declare const AttributesPager: ({ attributeType, attributeValues, paging, max, requestNextPage, ...props }: Props) => JSX.Element;
|
|
27
|
+
export default AttributesPager;
|