@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,38 @@
|
|
|
1
|
+
import React, { memo, useMemo, useCallback } from 'react';
|
|
2
|
+
import { checkIfOptionHasValues, getAttrDataTypeDefinition, getDataTypeDefinitionForFilterValue } from '@reltio/mdm-sdk';
|
|
3
|
+
import FilterValueEditor from '../../../editors/FilterEditor/FilterValueEditor';
|
|
4
|
+
import { useStyles } from './styles';
|
|
5
|
+
var ValuesEditor = function (_a) {
|
|
6
|
+
var rowData = _a.rowData, rowContext = _a.rowContext;
|
|
7
|
+
var styles = useStyles();
|
|
8
|
+
var canFilterAcceptValues = (rowData === null || rowData === void 0 ? void 0 : rowData.attribute) && checkIfOptionHasValues(rowData.filter);
|
|
9
|
+
var changeFilter = rowContext.changeFilter;
|
|
10
|
+
var _b = (rowData || {}), _c = _b.values, values = _c === void 0 ? [] : _c, _d = _b.attribute, _e = _d === void 0 ? {} : _d, attrType = _e.attrType, _f = _e.fieldName, fieldName = _f === void 0 ? null : _f, filter = _b.filter, id = _b.id, operator = _b.operator;
|
|
11
|
+
var valueDataTypeDefinition = attrType && getAttrDataTypeDefinition(attrType);
|
|
12
|
+
var filterValueDataTypeDefinition = valueDataTypeDefinition && getDataTypeDefinitionForFilterValue(valueDataTypeDefinition, filter);
|
|
13
|
+
var editorFilter = useMemo(function () { return ({
|
|
14
|
+
filter: filter,
|
|
15
|
+
fieldName: fieldName,
|
|
16
|
+
operator: operator,
|
|
17
|
+
values: values || []
|
|
18
|
+
}); }, [filter, fieldName, operator, values]);
|
|
19
|
+
var TextFieldProps = useMemo(function () { return ({
|
|
20
|
+
InputProps: {
|
|
21
|
+
classes: {
|
|
22
|
+
root: styles.input
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}); }, [styles]);
|
|
26
|
+
var editorClasses = useMemo(function () { return ({ root: styles.root }); }, [styles]);
|
|
27
|
+
var changeValue = useCallback(function (newValues) {
|
|
28
|
+
var newFilter = {
|
|
29
|
+
fieldName: fieldName,
|
|
30
|
+
filter: filter,
|
|
31
|
+
operator: operator,
|
|
32
|
+
values: newValues
|
|
33
|
+
};
|
|
34
|
+
changeFilter(newFilter, id);
|
|
35
|
+
}, [fieldName, filter, operator, changeFilter, id]);
|
|
36
|
+
return (React.createElement("div", { className: styles.valuesEditor }, (rowData === null || rowData === void 0 ? void 0 : rowData.attribute) && canFilterAcceptValues && (React.createElement(FilterValueEditor, { "data-reltio-id": "filter-value-editor", filter: editorFilter, onChange: changeValue, dataTypeDefinition: filterValueDataTypeDefinition, fullWidth: true, TextFieldProps: TextFieldProps, color: "primary", classes: editorClasses, orientation: "horizontal" }))));
|
|
37
|
+
};
|
|
38
|
+
export default memo(ValuesEditor);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AttributeType, Metadata, SearchFilter } from '@reltio/mdm-sdk';
|
|
2
|
+
import { AttributeSelectorItem, AttributeSelectorItemsGroup, AttributesTypesGroup } from '../../types';
|
|
3
|
+
import { FilterOption } from './types';
|
|
4
|
+
export declare const getAttributeSelectorItems: (attributesTypesGroups: AttributesTypesGroup[], metadata: Metadata) => AttributeSelectorItemsGroup[];
|
|
5
|
+
export declare const findValue: (options: FilterOption[], filter: string) => FilterOption;
|
|
6
|
+
export declare const getRowsDataFromFilters: (filters: SearchFilter[], attributesGroupArr: AttributeSelectorItemsGroup[]) => {
|
|
7
|
+
attribute: AttributeSelectorItem;
|
|
8
|
+
filter: string;
|
|
9
|
+
operator: import("@reltio/mdm-sdk").SearchOperator;
|
|
10
|
+
id: number;
|
|
11
|
+
values: import("@reltio/mdm-sdk").SearchValue[];
|
|
12
|
+
}[];
|
|
13
|
+
export declare const getEntityTypeFromAttrTypes: (attributeTypes: AttributeType[]) => any;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { default as AttributesFiltersBuilder } from './AttributesFiltersBuilder';
|
|
2
|
+
export { default as AttributesValuesEditor } from './components/ValuesEditor/ValuesEditor';
|
|
3
|
+
export { default as AttributesFilterSelector } from './components/FilterSelector/FilterSelector';
|
|
4
|
+
export type { AttributeFiltersComponentProps } from './types';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { SearchFilter, TEntityType } from '@reltio/mdm-sdk';
|
|
2
|
+
import { AttributeSelectionInfo, AttributeSelectorItemsGroup, FiltersRowData } from '../../types';
|
|
3
|
+
export type FilterOption = {
|
|
4
|
+
value: string;
|
|
5
|
+
label: string;
|
|
6
|
+
};
|
|
7
|
+
export type RowContext = {
|
|
8
|
+
attributeSelectorItemsGroups: AttributeSelectorItemsGroup[];
|
|
9
|
+
entityType: TEntityType;
|
|
10
|
+
addNewFilter: (newFilter: SearchFilter) => void;
|
|
11
|
+
addRowAfterIndex: (index: number) => void;
|
|
12
|
+
changeFilter: (newFilter: SearchFilter, id: number) => void;
|
|
13
|
+
duplicateRow: (index: number) => void;
|
|
14
|
+
removeRow: (index: number) => void;
|
|
15
|
+
onFilterAttributeChange?: (attrSelectInfo: AttributeSelectionInfo) => void;
|
|
16
|
+
};
|
|
17
|
+
export type AttributeFiltersComponentProps = {
|
|
18
|
+
rowData: FiltersRowData;
|
|
19
|
+
rowContext: RowContext;
|
|
20
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import i18n from 'ui-i18n';
|
|
3
|
+
import Button from '@mui/material/Button';
|
|
4
|
+
import { useStyles } from './styles';
|
|
5
|
+
var ActionButtons = function (_a) {
|
|
6
|
+
var onClear = _a.onClear, onCancel = _a.onCancel, onApply = _a.onApply;
|
|
7
|
+
var styles = useStyles();
|
|
8
|
+
return (React.createElement("div", { className: styles.buttonsWrapper },
|
|
9
|
+
React.createElement(Button, { onClick: onClear, variant: "text", className: styles.clearButon }, i18n.text('Clear all')),
|
|
10
|
+
React.createElement(Button, { onClick: onCancel, variant: "text", className: styles.cancelButton }, i18n.text('Cancel')),
|
|
11
|
+
React.createElement(Button, { onClick: onApply, variant: "text", color: "primary", className: styles.applyButton }, i18n.text('Apply'))));
|
|
12
|
+
};
|
|
13
|
+
export default ActionButtons;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SearchFilter } from '@reltio/mdm-sdk';
|
|
3
|
+
import { AttributeSelectionInfo, AttributesFilterComponentsClasses, AttributesTypesGroup } from '../../types';
|
|
4
|
+
type Props = {
|
|
5
|
+
classes?: AttributesFilterComponentsClasses;
|
|
6
|
+
filters: SearchFilter[];
|
|
7
|
+
onChange: (filters: SearchFilter[]) => void;
|
|
8
|
+
attributesTypesGroups: AttributesTypesGroup[];
|
|
9
|
+
components?: {
|
|
10
|
+
ValuesEditor?: React.ElementType;
|
|
11
|
+
FilterSelector?: React.ElementType;
|
|
12
|
+
LogicalOperator?: React.ElementType;
|
|
13
|
+
};
|
|
14
|
+
children?: React.ReactNode;
|
|
15
|
+
onTogglePopup?: (open: boolean) => void;
|
|
16
|
+
isFiltersApplied?: boolean;
|
|
17
|
+
dataReltioId?: string;
|
|
18
|
+
onFilterAttributeChange?: (attrSelectInfo: AttributeSelectionInfo) => void;
|
|
19
|
+
onClear?: () => void;
|
|
20
|
+
onCancel?: () => void;
|
|
21
|
+
onApply?: () => void;
|
|
22
|
+
};
|
|
23
|
+
declare const _default: React.MemoExoticComponent<({ filters: filtersProp, classes, attributesTypesGroups, onChange, components, children, onTogglePopup, isFiltersApplied: isFiltersAppliedProp, dataReltioId, onFilterAttributeChange, onCancel, onClear, onApply }: Props) => JSX.Element>;
|
|
24
|
+
export default _default;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import React, { useRef, useState, useEffect, useCallback, memo } from 'react';
|
|
2
|
+
import i18n from 'ui-i18n';
|
|
3
|
+
import Popover from '@mui/material/Popover';
|
|
4
|
+
import Button from '@mui/material/Button';
|
|
5
|
+
import FilterIcon from '@mui/icons-material/FilterList';
|
|
6
|
+
import Typography from '@mui/material/Typography';
|
|
7
|
+
import Divider from '@mui/material/Divider';
|
|
8
|
+
import classNames from 'classnames';
|
|
9
|
+
import { buildFilterQueryString } from '@reltio/mdm-sdk';
|
|
10
|
+
import AttributesFiltersBuilder from '../AttributesFiltersBuilder/AttributesFiltersBuilder';
|
|
11
|
+
import ActionButtons from './ActionButtons/ActionButtons';
|
|
12
|
+
import { useStyles } from './styles';
|
|
13
|
+
var AttributesFiltersButton = function (_a) {
|
|
14
|
+
var filtersProp = _a.filters, classes = _a.classes, attributesTypesGroups = _a.attributesTypesGroups, onChange = _a.onChange, components = _a.components, children = _a.children, onTogglePopup = _a.onTogglePopup, isFiltersAppliedProp = _a.isFiltersApplied, dataReltioId = _a.dataReltioId, onFilterAttributeChange = _a.onFilterAttributeChange, onCancel = _a.onCancel, onClear = _a.onClear, onApply = _a.onApply;
|
|
15
|
+
var styles = useStyles();
|
|
16
|
+
var buttonRef = useRef();
|
|
17
|
+
var _b = useState(false), isOpen = _b[0], setIsOpen = _b[1];
|
|
18
|
+
var _c = useState([]), filters = _c[0], setFilters = _c[1];
|
|
19
|
+
var isFiltersApplied = isFiltersAppliedProp !== null && isFiltersAppliedProp !== void 0 ? isFiltersAppliedProp : !!buildFilterQueryString()(filtersProp);
|
|
20
|
+
var buttonColor = isFiltersApplied ? 'primary' : 'inherit';
|
|
21
|
+
var togglePopup = function () {
|
|
22
|
+
if (onTogglePopup) {
|
|
23
|
+
onTogglePopup(!isOpen);
|
|
24
|
+
}
|
|
25
|
+
setIsOpen(function (open) { return !open; });
|
|
26
|
+
};
|
|
27
|
+
useEffect(function () {
|
|
28
|
+
if (isOpen) {
|
|
29
|
+
setFilters(filtersProp);
|
|
30
|
+
}
|
|
31
|
+
}, [filtersProp, isOpen]);
|
|
32
|
+
var applyButtonHandler = useCallback(function () {
|
|
33
|
+
onChange(filters);
|
|
34
|
+
onApply && onApply();
|
|
35
|
+
togglePopup();
|
|
36
|
+
}, [filters, onChange, onApply]);
|
|
37
|
+
var cancelButtonHandler = useCallback(function () {
|
|
38
|
+
onCancel && onCancel();
|
|
39
|
+
togglePopup();
|
|
40
|
+
}, [onCancel]);
|
|
41
|
+
var clearAllButtonHandler = useCallback(function () {
|
|
42
|
+
onClear && onClear();
|
|
43
|
+
setFilters([]);
|
|
44
|
+
}, [onClear]);
|
|
45
|
+
return (React.createElement(React.Fragment, null,
|
|
46
|
+
React.createElement(Button, { "data-reltio-id": dataReltioId, ref: buttonRef, color: buttonColor, classes: {
|
|
47
|
+
root: styles.triggerButton,
|
|
48
|
+
textPrimary: styles.changedFiltersIndicator
|
|
49
|
+
}, onClick: togglePopup },
|
|
50
|
+
React.createElement(FilterIcon, { color: buttonColor })),
|
|
51
|
+
React.createElement(Popover, { open: isOpen, classes: { paper: classNames(styles.popupContent, classes === null || classes === void 0 ? void 0 : classes.filterPopup) }, anchorEl: buttonRef.current, onClose: togglePopup, anchorOrigin: {
|
|
52
|
+
vertical: 'bottom',
|
|
53
|
+
horizontal: 'right'
|
|
54
|
+
}, transformOrigin: {
|
|
55
|
+
vertical: 'top',
|
|
56
|
+
horizontal: 'left'
|
|
57
|
+
} },
|
|
58
|
+
React.createElement(React.Fragment, null,
|
|
59
|
+
React.createElement(Typography, { variant: "h6" }, i18n.text('Filter')),
|
|
60
|
+
React.createElement("div", { className: styles.filtersBuilderWrapper },
|
|
61
|
+
children,
|
|
62
|
+
React.createElement(AttributesFiltersBuilder, { attributesTypesGroups: attributesTypesGroups, filters: filters, onChange: setFilters, components: components, onFilterAttributeChange: onFilterAttributeChange, classes: classes })),
|
|
63
|
+
React.createElement(Divider, { className: styles.divider }),
|
|
64
|
+
React.createElement(ActionButtons, { onApply: applyButtonHandler, onCancel: cancelButtonHandler, onClear: clearAllButtonHandler })))));
|
|
65
|
+
};
|
|
66
|
+
export default memo(AttributesFiltersButton);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React, { MutableRefObject } from 'react';
|
|
2
|
+
import { VariableSizeList as List } from 'react-window';
|
|
3
|
+
type Props<T> = {
|
|
4
|
+
width: number;
|
|
5
|
+
height: number;
|
|
6
|
+
data: T[];
|
|
7
|
+
defaultItemSize: number;
|
|
8
|
+
itemKey?: (index: number, data: T[]) => string;
|
|
9
|
+
children: ({ data, index }: {
|
|
10
|
+
data: T[];
|
|
11
|
+
index: number;
|
|
12
|
+
}) => React.ReactNode;
|
|
13
|
+
showNotMeasuredItems?: boolean;
|
|
14
|
+
listRef?: MutableRefObject<List>;
|
|
15
|
+
};
|
|
16
|
+
declare const _default: React.MemoExoticComponent<(<T = unknown>({ width, height, defaultItemSize, data, children, itemKey, showNotMeasuredItems, listRef: listRefProp }: Props<T>) => JSX.Element)>;
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
icon?: string;
|
|
5
|
+
avatarText?: string;
|
|
6
|
+
variant?: 'circular' | 'rounded' | 'square';
|
|
7
|
+
rootClasses?: {
|
|
8
|
+
iconRoot?: string;
|
|
9
|
+
textRoot?: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
declare const AvatarWithFallback: ({ className, icon, avatarText, rootClasses, ...otherProps }: Props) => JSX.Element;
|
|
13
|
+
export default AvatarWithFallback;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
13
|
+
var t = {};
|
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
15
|
+
t[p] = s[p];
|
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
19
|
+
t[p[i]] = s[p[i]];
|
|
20
|
+
}
|
|
21
|
+
return t;
|
|
22
|
+
};
|
|
23
|
+
import Avatar from '@mui/material/Avatar';
|
|
24
|
+
import classnames from 'classnames';
|
|
25
|
+
import React, { useEffect, useState } from 'react';
|
|
26
|
+
var AvatarStates;
|
|
27
|
+
(function (AvatarStates) {
|
|
28
|
+
AvatarStates[AvatarStates["ICON_MODE"] = 0] = "ICON_MODE";
|
|
29
|
+
AvatarStates[AvatarStates["TEXT_MODE"] = 1] = "TEXT_MODE";
|
|
30
|
+
AvatarStates[AvatarStates["ERROR_MODE"] = 2] = "ERROR_MODE";
|
|
31
|
+
})(AvatarStates || (AvatarStates = {}));
|
|
32
|
+
var AvatarWithFallback = function (_a) {
|
|
33
|
+
var className = _a.className, icon = _a.icon, avatarText = _a.avatarText, rootClasses = _a.rootClasses, otherProps = __rest(_a, ["className", "icon", "avatarText", "rootClasses"]);
|
|
34
|
+
var _b = useState(null), state = _b[0], setState = _b[1];
|
|
35
|
+
useEffect(function () {
|
|
36
|
+
if (icon) {
|
|
37
|
+
setState(AvatarStates.ICON_MODE);
|
|
38
|
+
}
|
|
39
|
+
else {
|
|
40
|
+
setState(AvatarStates.TEXT_MODE);
|
|
41
|
+
}
|
|
42
|
+
}, [icon, avatarText]);
|
|
43
|
+
var onImageLoadFail = function () {
|
|
44
|
+
setState(AvatarStates.ERROR_MODE);
|
|
45
|
+
};
|
|
46
|
+
switch (state) {
|
|
47
|
+
case AvatarStates.ICON_MODE:
|
|
48
|
+
return (React.createElement(Avatar, __assign({ className: classnames(className, rootClasses === null || rootClasses === void 0 ? void 0 : rootClasses.iconRoot), src: icon, onError: onImageLoadFail }, otherProps)));
|
|
49
|
+
case AvatarStates.TEXT_MODE:
|
|
50
|
+
case AvatarStates.ERROR_MODE:
|
|
51
|
+
return (React.createElement(Avatar, __assign({ className: classnames(className, rootClasses === null || rootClasses === void 0 ? void 0 : rootClasses.textRoot) }, otherProps), avatarText));
|
|
52
|
+
default:
|
|
53
|
+
return null;
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
export default AvatarWithFallback;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AttributeSelectorItem } from '../../../types';
|
|
3
|
+
type Value = {
|
|
4
|
+
fieldName: string;
|
|
5
|
+
title: string;
|
|
6
|
+
};
|
|
7
|
+
type Props = {
|
|
8
|
+
value: AttributeSelectorItem;
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
getLabel: (value: Value) => string;
|
|
11
|
+
onSelectAttributeClick: (event: any) => void;
|
|
12
|
+
};
|
|
13
|
+
declare const AttributeTitle: ({ value, getLabel, onSelectAttributeClick, disabled }: Props) => JSX.Element;
|
|
14
|
+
export default AttributeTitle;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import i18n from 'ui-i18n';
|
|
3
|
+
import classnames from 'classnames';
|
|
4
|
+
import { either, prop } from 'ramda';
|
|
5
|
+
import ArrowDropDownIcon from '@mui/icons-material/ArrowDropDown';
|
|
6
|
+
import ExpandedValueTooltip from '../../ExpandedValueTooltip/ExpandedValueTooltip';
|
|
7
|
+
import SmallIconButton from '../../SmallIconButton/SmallIconButton';
|
|
8
|
+
import useStyles from './styles';
|
|
9
|
+
var defaultGetLabel = either(prop('title'), prop('fieldName'));
|
|
10
|
+
var AttributeTitle = function (_a) {
|
|
11
|
+
var _b, _c, _d;
|
|
12
|
+
var value = _a.value, _e = _a.getLabel, getLabel = _e === void 0 ? defaultGetLabel : _e, onSelectAttributeClick = _a.onSelectAttributeClick, _f = _a.disabled, disabled = _f === void 0 ? false : _f;
|
|
13
|
+
var styles = useStyles();
|
|
14
|
+
var label = value && getLabel(value);
|
|
15
|
+
return (React.createElement("div", { onClick: disabled ? undefined : onSelectAttributeClick, className: classnames(styles.attribute, (_b = {},
|
|
16
|
+
_b[styles.attributeWithValue] = !!label,
|
|
17
|
+
_b), (_c = {}, _c[styles.disabled] = disabled, _c)) },
|
|
18
|
+
React.createElement(ExpandedValueTooltip, { value: label },
|
|
19
|
+
React.createElement("div", { className: classnames(styles.name, (_d = {}, _d[styles.disabled] = disabled, _d)) }, label || React.createElement("span", { className: styles.noSelect }, i18n.text('Select attribute')))),
|
|
20
|
+
React.createElement(SmallIconButton, { size: 'M', icon: ArrowDropDownIcon, disabled: disabled })));
|
|
21
|
+
};
|
|
22
|
+
export default AttributeTitle;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { makeStyles } from '@mui/styles';
|
|
2
|
+
var useStyles = makeStyles({
|
|
3
|
+
attribute: {
|
|
4
|
+
cursor: 'pointer',
|
|
5
|
+
lineHeight: '16px',
|
|
6
|
+
flexBasis: '100%',
|
|
7
|
+
display: 'flex',
|
|
8
|
+
alignItems: 'center',
|
|
9
|
+
padding: '0 10px 0 16px',
|
|
10
|
+
width: 'calc(100% - 32px)',
|
|
11
|
+
'&$attributeWithValue': {
|
|
12
|
+
borderBottom: '1px solid rgba(0,0,0,0.38)'
|
|
13
|
+
},
|
|
14
|
+
'&$disabled': {
|
|
15
|
+
cursor: 'default'
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
disabled: {},
|
|
19
|
+
attributeWithValue: {},
|
|
20
|
+
noSelect: {},
|
|
21
|
+
name: {
|
|
22
|
+
fontSize: '14px',
|
|
23
|
+
color: 'rgba(0,0,0,0.87)',
|
|
24
|
+
overflow: 'hidden',
|
|
25
|
+
whiteSpace: 'nowrap',
|
|
26
|
+
textOverflow: 'ellipsis',
|
|
27
|
+
direction: 'rtl',
|
|
28
|
+
textAlign: 'left',
|
|
29
|
+
flex: '1 0',
|
|
30
|
+
width: '0',
|
|
31
|
+
'& $noSelect': {
|
|
32
|
+
color: 'rgba(0,0,0,0.38)'
|
|
33
|
+
},
|
|
34
|
+
'&$disabled': {
|
|
35
|
+
color: 'rgba(0,0,0,0.26)',
|
|
36
|
+
'& $noSelect': {
|
|
37
|
+
color: 'rgba(0,0,0,0.26)'
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
export default useStyles;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BasicAttributeSelectorProps } from '../../types';
|
|
3
|
+
declare const _default: React.MemoExoticComponent<({ className, itemsGroups, value, getLabel, onSelect, onRestoreFocus, onOpenPopup, disableRestoreFocus, disableEnforceFocus, single, ungroup, disabled, hideCheckBox }: BasicAttributeSelectorProps) => JSX.Element>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import React, { memo, useCallback, useMemo, useRef, useState } from 'react';
|
|
2
|
+
import i18n from 'ui-i18n';
|
|
3
|
+
import classnames from 'classnames';
|
|
4
|
+
import { identity, pipe, tap, prop, flatten, pick, map, chain, when, always } from 'ramda';
|
|
5
|
+
import SelectionPopup from '../SelectionPopup/SelectionPopup';
|
|
6
|
+
import { useKeyboardNavigation } from '../SelectionPopup/helpers';
|
|
7
|
+
import AttributeTitle from './AttributeTitle/AttributeTitle';
|
|
8
|
+
import { filterSelectedAttributes, getAttributeIndex, getContainerWidth, getOnEnterHandler, prepareGroupsForSelectAttributeList } from './helpers';
|
|
9
|
+
import SelectAttributesList from '../SelectAttributesList/SelectAttributesList';
|
|
10
|
+
import { flattenGroupedItemsData } from '../VirtualGroupedList/helpers';
|
|
11
|
+
import useStyles from './styles';
|
|
12
|
+
var ATTRIBUTES_LIST_HEIGHT = 400;
|
|
13
|
+
var ATTRIBUTES_LIST_WIDTH = 308;
|
|
14
|
+
var ATTRIBUTES_POPUP_HEIGHT = 507;
|
|
15
|
+
var BasicAttributeSelector = function (_a) {
|
|
16
|
+
var className = _a.className, itemsGroups = _a.itemsGroups, value = _a.value, getLabel = _a.getLabel, onSelect = _a.onSelect, _b = _a.onRestoreFocus, onRestoreFocus = _b === void 0 ? identity : _b, _c = _a.onOpenPopup, onOpenPopup = _c === void 0 ? identity : _c, _d = _a.disableRestoreFocus, disableRestoreFocus = _d === void 0 ? false : _d, _e = _a.disableEnforceFocus, disableEnforceFocus = _e === void 0 ? false : _e, _f = _a.single, single = _f === void 0 ? false : _f, _g = _a.ungroup, ungroup = _g === void 0 ? false : _g, _h = _a.disabled, disabled = _h === void 0 ? false : _h, _j = _a.hideCheckBox, hideCheckBox = _j === void 0 ? false : _j;
|
|
17
|
+
var styles = useStyles();
|
|
18
|
+
var _k = useState(null), selectAnchor = _k[0], setSelectAnchor = _k[1];
|
|
19
|
+
var openPopup = function (event) {
|
|
20
|
+
onOpenPopup();
|
|
21
|
+
setSelectAnchor(event.currentTarget);
|
|
22
|
+
};
|
|
23
|
+
var closePopup = useCallback(function () { return setSelectAnchor(null); }, []);
|
|
24
|
+
var isPopupOpen = !!selectAnchor;
|
|
25
|
+
var _l = useState(''), filterText = _l[0], setFilterText = _l[1];
|
|
26
|
+
var clearFilterText = useCallback(function () { return setFilterText(''); }, []);
|
|
27
|
+
var _m = useState([]), selectedAttributes = _m[0], setSelectedAttributes = _m[1];
|
|
28
|
+
var clearSelectedAttributes = useCallback(function () { return setSelectedAttributes([]); }, []);
|
|
29
|
+
var filteredItemsGroups = useMemo(function () { return prepareGroupsForSelectAttributeList(filterText, itemsGroups); }, [itemsGroups, filterText]);
|
|
30
|
+
var items = useMemo(function () {
|
|
31
|
+
return pipe(when(always(ungroup), chain(pipe(prop('items'), flatten, map(pick(['item', 'level']))))), flattenGroupedItemsData)(filteredItemsGroups);
|
|
32
|
+
}, [ungroup, filteredItemsGroups]);
|
|
33
|
+
var containerWidth = useMemo(function () { return Math.max(getContainerWidth(filteredItemsGroups), ATTRIBUTES_LIST_WIDTH); }, [filteredItemsGroups]);
|
|
34
|
+
var handleOnClose = pipe(tap(pipe(clearSelectedAttributes, clearFilterText, closePopup)), onRestoreFocus);
|
|
35
|
+
var searchInputRef = useRef();
|
|
36
|
+
var onListItemClick = useCallback(function (attribute, checked) {
|
|
37
|
+
onSelect({
|
|
38
|
+
checked: checked,
|
|
39
|
+
attribute: attribute,
|
|
40
|
+
index: checked ? selectedAttributes.length : getAttributeIndex(selectedAttributes, attribute),
|
|
41
|
+
selectedAttributes: selectedAttributes
|
|
42
|
+
});
|
|
43
|
+
if (single) {
|
|
44
|
+
setSelectedAttributes(checked ? [attribute] : []);
|
|
45
|
+
handleOnClose({});
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
setSelectedAttributes(filterSelectedAttributes({ selectedAttributes: selectedAttributes, attribute: attribute, checked: checked }));
|
|
49
|
+
if (searchInputRef.current) {
|
|
50
|
+
searchInputRef.current.focus();
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}, [selectedAttributes, onSelect, single, handleOnClose, searchInputRef]);
|
|
54
|
+
var handleSearchOnEnter = useCallback(getOnEnterHandler({ onListItemClick: onListItemClick, selectedAttributes: selectedAttributes }), [
|
|
55
|
+
onListItemClick,
|
|
56
|
+
selectedAttributes
|
|
57
|
+
]);
|
|
58
|
+
var _o = useKeyboardNavigation({
|
|
59
|
+
items: items,
|
|
60
|
+
open: isPopupOpen,
|
|
61
|
+
onSelectFocusedItem: handleSearchOnEnter,
|
|
62
|
+
selectedItems: selectedAttributes,
|
|
63
|
+
onClose: handleOnClose
|
|
64
|
+
}), focusIndex = _o.focusIndex, handleKeyDown = _o.handleKeyDown;
|
|
65
|
+
return (React.createElement("div", { className: classnames(styles.selector, className), "data-reltio-id": "attribute-selector" },
|
|
66
|
+
React.createElement(AttributeTitle, { value: value, getLabel: getLabel, onSelectAttributeClick: openPopup, disabled: disabled }),
|
|
67
|
+
React.createElement(SelectionPopup, { open: isPopupOpen, anchorEl: selectAnchor, onClose: handleOnClose, onSearch: setFilterText, title: i18n.text('Select attribute'), containerWidth: containerWidth, containerHeight: ATTRIBUTES_POPUP_HEIGHT, searchInputOnKeyDown: handleKeyDown, anchorOrigin: { horizontal: 'right', vertical: 'bottom' }, searchInputRef: searchInputRef, disableRestoreFocus: disableRestoreFocus, disableEnforceFocus: disableEnforceFocus },
|
|
68
|
+
React.createElement(SelectAttributesList, { items: items, onItemClick: onListItemClick, selectedAttributes: selectedAttributes, width: containerWidth, height: ATTRIBUTES_LIST_HEIGHT, focusIndex: focusIndex, hideCheckBox: hideCheckBox }))));
|
|
69
|
+
};
|
|
70
|
+
export default memo(BasicAttributeSelector);
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { AttributeSelectorItem, AttributeSelectorItemsGroup } from '../../types';
|
|
2
|
+
export declare const isEqualAttributes: any;
|
|
3
|
+
export declare const checkAttributeIncludes: (attribute: AttributeSelectorItem, selectedAttributes: AttributeSelectorItem[]) => boolean;
|
|
4
|
+
export declare const filterItemsTree: (item: AttributeSelectorItem, filterText: string) => boolean;
|
|
5
|
+
export declare const filterSelectedAttributes: ({ attribute, selectedAttributes, checked }: {
|
|
6
|
+
attribute: AttributeSelectorItem;
|
|
7
|
+
selectedAttributes: AttributeSelectorItem[];
|
|
8
|
+
checked: boolean;
|
|
9
|
+
}) => AttributeSelectorItem[];
|
|
10
|
+
export declare const getAttributeIndex: (selectedAttributes: AttributeSelectorItem[], attribute: AttributeSelectorItem) => number;
|
|
11
|
+
export declare const getContainerWidth: (items: any) => any;
|
|
12
|
+
export declare const getOnEnterHandler: ({ onListItemClick, selectedAttributes }: {
|
|
13
|
+
selectedAttributes: AttributeSelectorItem[];
|
|
14
|
+
onListItemClick: (attribute: AttributeSelectorItem, checked: boolean) => void;
|
|
15
|
+
}) => ({ item, groupData }: {
|
|
16
|
+
item: any;
|
|
17
|
+
groupData: any;
|
|
18
|
+
}) => void;
|
|
19
|
+
export declare const prepareGroupsForSelectAttributeList: (filterText: string, groups: AttributeSelectorItemsGroup[]) => {
|
|
20
|
+
item: AttributeSelectorItemsGroup[];
|
|
21
|
+
items: AttributeSelectorItem[];
|
|
22
|
+
};
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { eqBy, pick, curry } from 'ramda';
|
|
13
|
+
import { getMaxItemWidth } from '@reltio/mdm-sdk';
|
|
14
|
+
export var isEqualAttributes = eqBy(pick(['fieldName', 'uri', 'entityTypeUri']));
|
|
15
|
+
export var checkAttributeIncludes = function (attribute, selectedAttributes) {
|
|
16
|
+
return selectedAttributes && !!selectedAttributes.find(isEqualAttributes(attribute));
|
|
17
|
+
};
|
|
18
|
+
var filterItem = function (item, filterText) {
|
|
19
|
+
return item.title.toLowerCase().includes(filterText.toLowerCase());
|
|
20
|
+
};
|
|
21
|
+
export var filterItemsTree = function (item, filterText) {
|
|
22
|
+
return filterItem(item, filterText) || (item.children || []).some(function (item) { return filterItemsTree(item, filterText); });
|
|
23
|
+
};
|
|
24
|
+
export var filterSelectedAttributes = function (_a) {
|
|
25
|
+
var attribute = _a.attribute, selectedAttributes = _a.selectedAttributes, checked = _a.checked;
|
|
26
|
+
return checked
|
|
27
|
+
? selectedAttributes.concat(attribute)
|
|
28
|
+
: selectedAttributes.filter(function (selectedAttribute) { return !isEqualAttributes(attribute, selectedAttribute); });
|
|
29
|
+
};
|
|
30
|
+
export var getAttributeIndex = function (selectedAttributes, attribute) {
|
|
31
|
+
return selectedAttributes.findIndex(isEqualAttributes(attribute));
|
|
32
|
+
};
|
|
33
|
+
export var getContainerWidth = getMaxItemWidth('title');
|
|
34
|
+
export var getOnEnterHandler = function (_a) {
|
|
35
|
+
var onListItemClick = _a.onListItemClick, selectedAttributes = _a.selectedAttributes;
|
|
36
|
+
return function (_a) {
|
|
37
|
+
var item = _a.item, groupData = _a.groupData;
|
|
38
|
+
var checked = checkAttributeIncludes(item, selectedAttributes);
|
|
39
|
+
onListItemClick(__assign(__assign({}, item), { groupName: groupData.groupName }), !checked);
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
var getAttributeGroupData = function (item, groupId, groupName, filterText, level, noFilter) {
|
|
43
|
+
if (level === void 0) { level = 0; }
|
|
44
|
+
if (noFilter === void 0) { noFilter = false; }
|
|
45
|
+
var isItemFiltered = filterItem(item, filterText);
|
|
46
|
+
return [
|
|
47
|
+
{
|
|
48
|
+
item: filterText ? __assign(__assign({}, item), { filterText: filterText }) : item,
|
|
49
|
+
level: level,
|
|
50
|
+
groupId: groupId,
|
|
51
|
+
groupName: groupName
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
.concat(item.children
|
|
55
|
+
? item.children
|
|
56
|
+
.filter(function (subItem) { return noFilter || isItemFiltered || filterItemsTree(subItem, filterText); })
|
|
57
|
+
.flatMap(function (subItem) {
|
|
58
|
+
return getAttributeGroupData(subItem, groupId, groupName, filterText, level + 1, noFilter || isItemFiltered);
|
|
59
|
+
})
|
|
60
|
+
: [])
|
|
61
|
+
.flat();
|
|
62
|
+
};
|
|
63
|
+
export var prepareGroupsForSelectAttributeList = curry(function (filterText, groups) {
|
|
64
|
+
return groups
|
|
65
|
+
.map(function (group) { return ({
|
|
66
|
+
item: group,
|
|
67
|
+
items: group.attributes
|
|
68
|
+
.filter(function (attribute) { return filterItemsTree(attribute, filterText); })
|
|
69
|
+
.map(function (item) { return getAttributeGroupData(item, group.id, group.title, filterText); })
|
|
70
|
+
}); })
|
|
71
|
+
.filter(function (group) { return group.items.length; });
|
|
72
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { makeStyles } from '@mui/styles';
|
|
2
|
+
var useStyles = makeStyles({
|
|
3
|
+
selector: {
|
|
4
|
+
minWidth: '200px',
|
|
5
|
+
width: '100%',
|
|
6
|
+
alignItems: 'stretch',
|
|
7
|
+
background: 'rgba(0,0,0, 0.0267)',
|
|
8
|
+
boxSizing: 'border-box',
|
|
9
|
+
borderRadius: '4px',
|
|
10
|
+
display: 'flex'
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
export default useStyles;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export namespace BasicTableType {
|
|
2
|
+
export let columnsData: PropTypes.Validator<PropTypes.InferProps<{
|
|
3
|
+
id: PropTypes.Requireable<string>;
|
|
4
|
+
label: PropTypes.Requireable<string>;
|
|
5
|
+
dataTypeDefinition: PropTypes.Requireable<object>;
|
|
6
|
+
resizable: PropTypes.Requireable<boolean>;
|
|
7
|
+
sortable: PropTypes.Requireable<boolean>;
|
|
8
|
+
filterable: PropTypes.Requireable<boolean>;
|
|
9
|
+
headCellRenderer: PropTypes.Requireable<(...args: any[]) => any>;
|
|
10
|
+
rowCellValueRenderer: PropTypes.Requireable<(...args: any[]) => any>;
|
|
11
|
+
nestedPath: PropTypes.Requireable<string[]>;
|
|
12
|
+
}>[]>;
|
|
13
|
+
export let rowsData: PropTypes.Validator<object[]>;
|
|
14
|
+
export let context: PropTypes.Requireable<object>;
|
|
15
|
+
export { SortingType as sorting };
|
|
16
|
+
export let onSort: PropTypes.Requireable<(...args: any[]) => any>;
|
|
17
|
+
export let filters: PropTypes.Requireable<{
|
|
18
|
+
[x: string]: PropTypes.InferProps<{
|
|
19
|
+
value: PropTypes.Requireable<NonNullable<NonNullable<NonNullable<string | number | boolean | PropTypes.InferProps<{
|
|
20
|
+
value: PropTypes.Requireable<string>;
|
|
21
|
+
lookupCode: PropTypes.Requireable<string>;
|
|
22
|
+
}>> | NonNullable<string | number | boolean | PropTypes.InferProps<{
|
|
23
|
+
value: PropTypes.Requireable<string>;
|
|
24
|
+
lookupCode: PropTypes.Requireable<string>;
|
|
25
|
+
}>>[]> | NonNullable<NonNullable<string | number | boolean | PropTypes.InferProps<{
|
|
26
|
+
value: PropTypes.Requireable<string>;
|
|
27
|
+
lookupCode: PropTypes.Requireable<string>;
|
|
28
|
+
}>> | NonNullable<string | number | boolean | PropTypes.InferProps<{
|
|
29
|
+
value: PropTypes.Requireable<string>;
|
|
30
|
+
lookupCode: PropTypes.Requireable<string>;
|
|
31
|
+
}>>[]>[]>>;
|
|
32
|
+
filter: PropTypes.Requireable<string>;
|
|
33
|
+
}>;
|
|
34
|
+
}>;
|
|
35
|
+
export let onFilter: PropTypes.Requireable<(...args: any[]) => any>;
|
|
36
|
+
export let renderRowCell: PropTypes.Requireable<(...args: any[]) => any>;
|
|
37
|
+
export let getRowCellHeight: PropTypes.Requireable<(...args: any[]) => any>;
|
|
38
|
+
export let headRowHeight: PropTypes.Requireable<number>;
|
|
39
|
+
export let maxRowValuesCount: PropTypes.Requireable<number>;
|
|
40
|
+
export let defaultColumnWidth: PropTypes.Requireable<number>;
|
|
41
|
+
export let defaultColumnMinWidth: PropTypes.Requireable<number>;
|
|
42
|
+
export let classes: PropTypes.Requireable<PropTypes.InferProps<{
|
|
43
|
+
highlightRow: PropTypes.Requireable<string>;
|
|
44
|
+
cellBorder: PropTypes.Requireable<string>;
|
|
45
|
+
dragColumnBody: PropTypes.Requireable<string>;
|
|
46
|
+
dragColumnHead: PropTypes.Requireable<string>;
|
|
47
|
+
draggableHeadCell: PropTypes.Requireable<string>;
|
|
48
|
+
cellWrapper: PropTypes.Requireable<string>;
|
|
49
|
+
cellContentWrapper: PropTypes.Requireable<string>;
|
|
50
|
+
hoveredRowRightContentContainer: PropTypes.Requireable<string>;
|
|
51
|
+
hoveredRowRightContentWrapper: PropTypes.Requireable<string>;
|
|
52
|
+
}>>;
|
|
53
|
+
}
|
|
54
|
+
export default BasicTable;
|
|
55
|
+
import PropTypes from 'prop-types';
|
|
56
|
+
import { SortingType } from '../../../constants/prop-types';
|
|
57
|
+
declare const BasicTable: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
58
|
+
import React from 'react';
|