@reltio/components 1.4.1824-hf → 1.4.1836-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/ActionButton/ActionButton.d.ts +14 -0
- package/cjs/ActionButton/ActionButton.js +95 -0
- package/cjs/ActionButton/ActionButton.spec.js +195 -0
- package/cjs/ActionButton/index.d.ts +1 -0
- package/cjs/ActionButton/index.js +5 -0
- package/cjs/ActionButton/styles.d.ts +1 -0
- package/cjs/ActionButton/styles.js +57 -0
- package/cjs/ActionsPanel/ActionsPanel.d.ts +16 -0
- package/cjs/ActionsPanel/ActionsPanel.js +55 -0
- package/cjs/ActionsPanel/ActionsPanel.test.js +85 -0
- package/cjs/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.d.ts +8 -0
- package/cjs/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.js +58 -0
- package/cjs/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.spec.js +78 -0
- package/cjs/ActionsPanel/components/MenuItemRenderer/index.d.ts +1 -0
- package/cjs/ActionsPanel/components/MenuItemRenderer/index.js +5 -0
- package/cjs/ActionsPanel/index.d.ts +1 -0
- package/cjs/ActionsPanel/index.js +5 -0
- package/cjs/ActionsPanel/types.d.ts +5 -0
- package/cjs/ArrowExpandButton/ArrowExpandButton.d.ts +7 -0
- package/cjs/ArrowExpandButton/ArrowExpandButton.js +40 -0
- package/cjs/ArrowExpandButton/index.d.ts +1 -0
- package/cjs/ArrowExpandButton/index.js +5 -0
- package/cjs/AttributeGroupIcon/AttributeGroupIcon.d.ts +10 -0
- package/cjs/AttributeGroupIcon/AttributeGroupIcon.js +20 -0
- package/cjs/AttributeGroupIcon/AttributeGroupIcon.spec.js +56 -0
- package/cjs/AttributeGroupIcon/index.d.ts +1 -0
- package/cjs/AttributeGroupIcon/index.js +5 -0
- package/cjs/AttributeListItem/AttributeListItem.d.ts +41 -0
- package/cjs/AttributeListItem/AttributeListItem.js +74 -0
- package/cjs/AttributeListItem/AttributeListItem.spec.js +177 -0
- package/cjs/AttributeListItem/components/AttrTypeIcon/AttrTypeIcon.d.ts +6 -0
- package/cjs/AttributeListItem/components/AttrTypeIcon/AttrTypeIcon.js +30 -0
- package/cjs/AttributeListItem/components/AttrTypeIcon/index.d.ts +1 -0
- package/cjs/AttributeListItem/components/AttrTypeIcon/index.js +5 -0
- package/cjs/AttributeListItem/components/AttrTypeIcon/styles.js +14 -0
- package/cjs/AttributeListItem/index.d.ts +1 -0
- package/cjs/AttributeListItem/index.js +8 -0
- package/cjs/AttributeListItem/styles.d.ts +1 -0
- package/cjs/AttributeListItem/styles.js +89 -0
- package/cjs/AttributeSelector/AttributeSelector.d.ts +13 -0
- package/cjs/AttributeSelector/AttributeSelector.js +107 -0
- package/cjs/AttributeSelector/AttributeSelector.specs.js +277 -0
- package/cjs/AttributeSelector/index.d.ts +1 -0
- package/cjs/AttributeSelector/index.js +5 -0
- package/cjs/AttributesErrorsPanel/AttributesErrorsPanel.d.ts +6 -0
- package/cjs/AttributesErrorsPanel/AttributesErrorsPanel.js +83 -0
- package/cjs/AttributesErrorsPanel/AttributesErrorsPanel.specs.js +120 -0
- package/cjs/AttributesErrorsPanel/components/Error/Error.js +62 -0
- package/cjs/AttributesErrorsPanel/components/Error/Error.specs.js +270 -0
- package/cjs/AttributesErrorsPanel/components/Error/helpers.d.ts +4 -0
- package/cjs/AttributesErrorsPanel/components/Error/helpers.js +37 -0
- package/cjs/AttributesErrorsPanel/components/Error/index.d.ts +1 -0
- package/cjs/AttributesErrorsPanel/components/Error/index.js +5 -0
- package/cjs/AttributesErrorsPanel/components/Error/styles.d.ts +1 -0
- package/cjs/AttributesErrorsPanel/components/Error/styles.js +51 -0
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.js +54 -0
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.specs.js +100 -0
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/index.d.ts +1 -0
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/index.js +5 -0
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/styles.d.ts +1 -0
- package/cjs/AttributesErrorsPanel/components/ErrorsPanel/styles.js +50 -0
- package/cjs/AttributesErrorsPanel/helpers.d.ts +2 -0
- package/cjs/AttributesErrorsPanel/helpers.js +11 -0
- package/cjs/AttributesErrorsPanel/index.d.ts +1 -0
- package/cjs/AttributesErrorsPanel/index.js +5 -0
- package/cjs/AttributesErrorsPanel/styles.d.ts +1 -0
- package/cjs/AttributesErrorsPanel/styles.js +29 -0
- package/cjs/AttributesErrorsPanel/useCachedErrors.js +21 -0
- package/cjs/AttributesFilterSelector/AttributesFilterSelector.d.ts +8 -0
- package/cjs/AttributesFilterSelector/AttributesFilterSelector.js +63 -0
- package/cjs/AttributesFilterSelector/AttributesFilterSelector.test.js +141 -0
- package/cjs/AttributesFilterSelector/index.d.ts +1 -0
- package/cjs/AttributesFilterSelector/index.js +8 -0
- package/cjs/AttributesFilterSelector/styles.d.ts +1 -0
- package/cjs/AttributesFilterSelector/styles.js +9 -0
- package/cjs/AttributesFiltersBuilder/AttributesFiltersBuilder.d.ts +17 -0
- package/cjs/AttributesFiltersBuilder/AttributesFiltersBuilder.js +128 -0
- package/cjs/AttributesFiltersBuilder/AttributesFiltersBuilder.test.js +378 -0
- package/cjs/AttributesFiltersBuilder/attributes.test-data.d.ts +49 -0
- package/cjs/AttributesFiltersBuilder/attributes.test-data.js +83 -0
- package/cjs/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.js +56 -0
- package/cjs/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.test.js +106 -0
- package/cjs/AttributesFiltersBuilder/components/AttributeSelector/index.d.ts +1 -0
- package/cjs/AttributesFiltersBuilder/components/AttributeSelector/index.js +8 -0
- package/cjs/AttributesFiltersBuilder/components/RowActions/RowActions.js +55 -0
- package/cjs/AttributesFiltersBuilder/components/RowActions/RowActions.test.js +111 -0
- package/cjs/AttributesFiltersBuilder/components/RowActions/index.d.ts +1 -0
- package/cjs/AttributesFiltersBuilder/components/RowActions/index.js +8 -0
- package/cjs/AttributesFiltersBuilder/helpers.d.ts +13 -0
- package/cjs/AttributesFiltersBuilder/index.d.ts +2 -0
- package/cjs/AttributesFiltersBuilder/index.js +8 -0
- package/cjs/AttributesFiltersBuilder/metadata.test-data.d.ts +62 -0
- package/cjs/AttributesFiltersBuilder/metadata.test-data.js +61 -0
- package/cjs/AttributesFiltersBuilder/types.d.ts +20 -0
- package/cjs/AttributesFiltersButton/AttributesFiltersButton.d.ts +24 -0
- package/cjs/AttributesFiltersButton/AttributesFiltersButton.js +94 -0
- package/cjs/AttributesFiltersButton/AttributesFiltersButton.test.js +168 -0
- package/cjs/AttributesFiltersButton/components/ActionButtons/ActionButtons.d.ts +7 -0
- package/cjs/AttributesFiltersButton/components/ActionButtons/ActionButtons.js +19 -0
- package/cjs/AttributesFiltersButton/components/ActionButtons/ActionButtons.test.js +46 -0
- package/cjs/AttributesFiltersButton/components/ActionButtons/index.d.ts +1 -0
- package/cjs/AttributesFiltersButton/components/ActionButtons/index.js +5 -0
- package/cjs/AttributesFiltersButton/index.d.ts +1 -0
- package/cjs/AttributesFiltersButton/index.js +8 -0
- package/cjs/AttributesValuesEditor/AttributesValuesEditor.d.ts +4 -0
- package/cjs/AttributesValuesEditor/AttributesValuesEditor.js +66 -0
- package/cjs/AttributesValuesEditor/AttributesValuesEditor.test.js +116 -0
- package/cjs/AttributesValuesEditor/index.d.ts +1 -0
- package/cjs/AttributesValuesEditor/index.js +8 -0
- package/cjs/AttributesView/AttributesView.d.ts +12 -0
- package/cjs/AttributesView/AttributesView.js +43 -0
- package/cjs/AttributesView/AttributesView.test.js +61 -0
- package/cjs/AttributesView/index.d.ts +1 -0
- package/cjs/AttributesView/index.js +5 -0
- package/cjs/AutoSizeList/AutoSizeList.d.ts +17 -0
- package/cjs/AutoSizeList/AutoSizeList.test.js +104 -0
- package/cjs/AutoSizeList/index.d.ts +1 -0
- package/cjs/AutoSizeList/index.js +8 -0
- package/cjs/AvatarWithFallback/AvatarWithFallback.d.ts +12 -0
- package/cjs/AvatarWithFallback/AvatarWithFallback.js +80 -0
- package/cjs/AvatarWithFallback/AvatarWithFallback.specs.js +27 -0
- package/cjs/AvatarWithFallback/index.d.ts +1 -0
- package/cjs/AvatarWithFallback/index.js +5 -0
- package/cjs/AvatarWithFallback/types.d.ts +5 -0
- package/cjs/AvatarWithFallback/types.js +9 -0
- package/cjs/BarChart/BarChart.d.ts +8 -0
- package/cjs/BarChart/BarChart.js +38 -0
- package/cjs/BarChart/BarChart.test.d.ts +1 -0
- package/cjs/BarChart/BarChart.test.js +122 -0
- package/cjs/BarChart/helpers.d.ts +13 -0
- package/cjs/BarChart/helpers.js +55 -0
- package/cjs/BarChart/index.d.ts +1 -0
- package/cjs/BarChart/index.js +5 -0
- package/cjs/BasicAttributeSelector/BasicAttributeSelector.d.ts +4 -0
- package/cjs/BasicAttributeSelector/BasicAttributeSelector.js +96 -0
- package/cjs/BasicAttributeSelector/BasicAttributeSelector.spec.d.ts +1 -0
- package/cjs/BasicAttributeSelector/BasicAttributeSelector.spec.js +25 -0
- package/cjs/BasicAttributeSelector/components/AttributeTitle/AttributeTitle.d.ts +13 -0
- package/cjs/BasicAttributeSelector/components/AttributeTitle/AttributeTitle.js +28 -0
- package/cjs/BasicAttributeSelector/components/AttributeTitle/index.d.ts +1 -0
- package/cjs/BasicAttributeSelector/components/AttributeTitle/index.js +5 -0
- package/cjs/BasicAttributeSelector/components/AttributeTitle/styles.d.ts +1 -0
- package/cjs/BasicAttributeSelector/components/AttributeTitle/styles.js +44 -0
- package/cjs/BasicAttributeSelector/constants.d.ts +3 -0
- package/cjs/BasicAttributeSelector/constants.js +6 -0
- package/cjs/BasicAttributeSelector/helpers.d.ts +20 -0
- package/cjs/BasicAttributeSelector/helpers.js +76 -0
- package/cjs/BasicAttributeSelector/index.d.ts +1 -0
- package/cjs/BasicAttributeSelector/index.js +8 -0
- package/cjs/BasicAttributeSelector/styles.d.ts +1 -0
- package/cjs/BasicAttributeSelector/styles.js +15 -0
- package/cjs/BasicTable/BasicTable.d.ts +2 -0
- package/cjs/BasicTable/BasicTable.js +89 -0
- package/cjs/BasicTable/BasicTable.test.d.ts +1 -0
- package/cjs/BasicTable/BasicTable.test.js +305 -0
- package/cjs/BasicTable/IntegrationBasicTable.test.d.ts +1 -0
- package/cjs/BasicTable/IntegrationBasicTable.test.js +174 -0
- package/cjs/BasicTable/basicTableViewState.js +85 -0
- package/cjs/BasicTable/basicTableViewState.test.d.ts +1 -0
- package/cjs/BasicTable/basicTableViewState.test.js +75 -0
- package/cjs/BasicTable/helpers.d.ts +1 -0
- package/cjs/BasicTable/helpers.js +34 -0
- package/cjs/BasicTable/helpers.test.d.ts +1 -0
- package/cjs/BasicTable/helpers.test.js +89 -0
- package/cjs/BasicTable/index.d.ts +2 -0
- package/cjs/BasicTable/index.js +10 -0
- package/cjs/BasicTablePagination/BasicTablePagination.js +73 -0
- package/cjs/BasicTablePagination/BasicTablePagination.test.d.ts +1 -0
- package/cjs/BasicTablePagination/BasicTablePagination.test.js +122 -0
- package/cjs/BasicTablePagination/index.d.ts +1 -0
- package/cjs/BasicTablePagination/index.js +8 -0
- package/cjs/BasicView/BasicView.d.ts +11 -0
- package/cjs/BasicView/BasicView.js +60 -0
- package/cjs/BasicView/BasicView.test.d.ts +1 -0
- package/cjs/BasicView/BasicView.test.js +18 -0
- package/cjs/BasicView/index.d.ts +1 -0
- package/cjs/BasicView/index.js +5 -0
- package/cjs/BasicViewContent/BasicViewContent.d.ts +4 -0
- package/cjs/BasicViewContent/BasicViewContent.js +37 -0
- package/cjs/BasicViewContent/BasicViewContent.test.d.ts +1 -0
- package/cjs/BasicViewContent/BasicViewContent.test.js +17 -0
- package/cjs/BasicViewContent/index.d.ts +1 -0
- package/cjs/BasicViewContent/index.js +5 -0
- package/cjs/BasicViewHeader/BasicViewHeader.d.ts +7 -0
- package/cjs/BasicViewHeader/BasicViewHeader.js +41 -0
- package/cjs/BasicViewHeader/BasicViewHeader.test.d.ts +1 -0
- package/cjs/BasicViewHeader/BasicViewHeader.test.js +46 -0
- package/cjs/BasicViewHeader/index.d.ts +1 -0
- package/cjs/BasicViewHeader/index.js +5 -0
- package/cjs/BasicViewHeader/styles.d.ts +1 -0
- package/cjs/BlobRenderer/BlobRenderer.d.ts +6 -0
- package/cjs/BlobRenderer/BlobRenderer.js +14 -0
- package/cjs/BlobRenderer/BlobRenderer.test.d.ts +1 -0
- package/cjs/BlobRenderer/BlobRenderer.test.js +23 -0
- package/cjs/BlobRenderer/index.d.ts +1 -0
- package/cjs/BlobRenderer/index.js +5 -0
- package/cjs/BlobRenderer/styles.d.ts +1 -0
- package/cjs/BlobRenderer/styles.js +16 -0
- package/cjs/BranchDecorator/BranchDecorator.d.ts +9 -0
- package/cjs/BranchDecorator/BranchDecorator.js +17 -0
- package/cjs/BranchDecorator/index.d.ts +1 -0
- package/cjs/BranchDecorator/index.js +5 -0
- package/cjs/BranchDecorator/styles.d.ts +1 -0
- package/cjs/BubbleChart/BubbleChart.d.ts +15 -0
- package/cjs/BubbleChart/BubbleChart.js +85 -0
- package/cjs/BubbleChart/BubbleChart.test.d.ts +1 -0
- package/cjs/BubbleChart/BubbleChart.test.js +141 -0
- package/cjs/BubbleChart/helpers.d.ts +6 -0
- package/cjs/BubbleChart/index.d.ts +1 -0
- package/cjs/BubbleChart/index.js +8 -0
- package/cjs/BubbleChart/types.d.ts +9 -0
- package/cjs/BubbleChart/useBubbles.d.ts +9 -0
- package/cjs/BubbleChart/useBubbles.js +19 -0
- package/cjs/CardinalityMessage/CardinalityMessage.d.ts +6 -0
- package/cjs/CardinalityMessage/CardinalityMessage.js +17 -0
- package/cjs/CardinalityMessage/CardinalityMessage.test.d.ts +1 -0
- package/cjs/CardinalityMessage/CardinalityMessage.test.js +57 -0
- package/cjs/CardinalityMessage/helpers.d.ts +1 -0
- package/cjs/CardinalityMessage/helpers.js +60 -0
- package/cjs/CardinalityMessage/index.d.ts +1 -0
- package/cjs/CardinalityMessage/index.js +5 -0
- package/cjs/CardinalityMessage/styles.d.ts +1 -0
- package/cjs/CardinalityMessage/styles.js +10 -0
- package/cjs/ChartLegend/ChartLegend.d.ts +6 -0
- package/cjs/ChartLegend/ChartLegend.js +18 -0
- package/cjs/ChartLegend/helpers.d.ts +2 -0
- package/cjs/ChartLegend/helpers.js +24 -0
- package/cjs/ChartLegend/index.d.ts +2 -0
- package/cjs/ChartLegend/index.js +7 -0
- package/cjs/ChartLegend/styles.d.ts +1 -0
- package/cjs/ChartTooltip/ChartTooltip.d.ts +2 -0
- package/cjs/ChartTooltip/ChartTooltip.js +29 -0
- package/cjs/ChartTooltip/index.d.ts +1 -0
- package/cjs/ChartTooltip/index.js +5 -0
- package/cjs/ChartsFactory/ChartsFactory.d.ts +14 -0
- package/cjs/ChartsFactory/ChartsFactory.js +57 -0
- package/cjs/ChartsFactory/ChartsFactory.test.d.ts +1 -0
- package/cjs/ChartsFactory/ChartsFactory.test.js +69 -0
- package/cjs/ChartsFactory/index.d.ts +1 -0
- package/cjs/ChartsFactory/index.js +5 -0
- package/cjs/CloudChart/CloudChart.d.ts +15 -0
- package/cjs/CloudChart/CloudChart.js +73 -0
- package/cjs/CloudChart/CloudChart.test.d.ts +1 -0
- package/cjs/CloudChart/CloudChart.test.js +62 -0
- package/cjs/CloudChart/index.d.ts +1 -0
- package/cjs/CloudChart/index.js +8 -0
- package/cjs/CloudChart/types.d.ts +5 -0
- package/cjs/CloudChart/useCloud.d.ts +10 -0
- package/cjs/CloudChart/useCloud.js +37 -0
- package/cjs/CollapseRowButton/CollapseRowButton.d.ts +8 -0
- package/cjs/CollapseRowButton/CollapseRowButton.js +47 -0
- package/cjs/CollapseRowButton/CollapseRowButton.test.d.ts +1 -0
- package/cjs/CollapseRowButton/CollapseRowButton.test.js +56 -0
- package/cjs/CollapseRowButton/index.d.ts +1 -0
- package/cjs/CollapseRowButton/index.js +5 -0
- package/cjs/CollapseRowButton/styles.d.ts +1 -0
- package/cjs/ColorBar/ColorBar.d.ts +7 -0
- package/cjs/ColorBar/ColorBar.js +43 -0
- package/cjs/ColorBar/ColorBar.test.d.ts +1 -0
- package/cjs/ColorBar/ColorBar.test.js +45 -0
- package/cjs/ColorBar/index.d.ts +1 -0
- package/cjs/ColorBar/index.js +5 -0
- package/cjs/ColumnsSettings/ColumnsSettings.d.ts +10 -0
- package/cjs/ColumnsSettings/ColumnsSettings.js +53 -0
- package/cjs/ColumnsSettings/ColumnsSettings.test.d.ts +1 -0
- package/cjs/ColumnsSettings/ColumnsSettings.test.js +413 -0
- package/cjs/ColumnsSettings/components/ColumnListItem/ColumnListItem.d.ts +26 -0
- package/cjs/ColumnsSettings/components/ColumnListItem/ColumnListItem.js +32 -0
- package/cjs/ColumnsSettings/components/ColumnListItem/index.d.ts +1 -0
- package/cjs/ColumnsSettings/components/ColumnListItem/index.js +5 -0
- package/cjs/ColumnsSettings/components/ColumnListItem/styles.d.ts +1 -0
- package/cjs/ColumnsSettings/components/ColumnListItem/styles.js +9 -0
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.d.ts +14 -0
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.js +75 -0
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.spec.d.ts +1 -0
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.spec.js +226 -0
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/index.d.ts +1 -0
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/index.js +5 -0
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/styles.d.ts +1 -0
- package/cjs/ColumnsSettings/components/ColumnsSettingsPopup/styles.js +9 -0
- package/cjs/ColumnsSettings/helpers.d.ts +5 -0
- package/cjs/ColumnsSettings/index.d.ts +2 -0
- package/cjs/ColumnsSettings/index.js +7 -0
- package/cjs/ColumnsSettings/styles.d.ts +1 -0
- package/cjs/ComplexAttributeLabel/ComplexAttributeLabel.js +15 -0
- package/cjs/ComplexAttributeLabel/index.d.ts +1 -0
- package/cjs/ComplexAttributeLabel/index.js +5 -0
- package/cjs/ComplexAttributeLabel/styles.d.ts +1 -0
- package/cjs/ComplexAttributeLabel/styles.js +13 -0
- package/cjs/DefaultCellValueRenderer/DefaultCellValueRenderer.d.ts +8 -0
- package/cjs/DefaultCellValueRenderer/DefaultCellValueRenderer.js +37 -0
- package/cjs/DefaultCellValueRenderer/DefaultCellValueRenderer.test.d.ts +1 -0
- package/cjs/DefaultCellValueRenderer/DefaultCellValueRenderer.test.js +59 -0
- package/cjs/DefaultCellValueRenderer/index.d.ts +1 -0
- package/cjs/DefaultCellValueRenderer/index.js +5 -0
- package/cjs/DefaultCellValueRenderer/styles.d.ts +1 -0
- package/cjs/DefaultCellValueRenderer/styles.js +12 -0
- package/cjs/DeleteButton/DeleteButton.d.ts +5 -0
- package/cjs/DeleteButton/DeleteButton.js +15 -0
- package/cjs/DeleteButton/DeleteButton.spec.d.ts +1 -0
- package/cjs/DeleteButton/DeleteButton.spec.js +25 -0
- package/cjs/DeleteButton/index.d.ts +1 -0
- package/cjs/DeleteButton/index.js +5 -0
- package/cjs/DescriptionIcon/DescriptionIcon.d.ts +7 -0
- package/cjs/DescriptionIcon/DescriptionIcon.js +47 -0
- package/cjs/DescriptionIcon/DescriptionIcon.test.d.ts +1 -0
- package/cjs/DescriptionIcon/DescriptionIcon.test.js +94 -0
- package/cjs/DescriptionIcon/index.d.ts +1 -0
- package/cjs/DescriptionIcon/index.js +5 -0
- package/cjs/DropDownMenuButton/DropDownMenuButton.d.ts +17 -0
- package/cjs/DropDownMenuButton/DropDownMenuButton.js +78 -0
- package/cjs/DropDownMenuButton/DropDownMenuButton.spec.d.ts +1 -0
- package/cjs/DropDownMenuButton/DropDownMenuButton.spec.js +81 -0
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.d.ts +8 -0
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.js +50 -0
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.spec.d.ts +1 -0
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.spec.js +37 -0
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/index.d.ts +1 -0
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/index.js +5 -0
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/styles.d.ts +1 -0
- package/cjs/DropDownMenuButton/components/DefaultMenuItemRenderer/styles.js +15 -0
- package/cjs/DropDownMenuButton/index.d.ts +1 -0
- package/cjs/DropDownMenuButton/index.js +5 -0
- package/cjs/DropDownMenuButton/styles.d.ts +1 -0
- package/cjs/DropDownMenuButton/styles.js +20 -0
- package/cjs/EditModeAttributesFactory/EditModeAttributesFactory.d.ts +3 -0
- package/cjs/EditModeAttributesFactory/EditModeAttributesFactory.js +42 -0
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.d.ts +6 -0
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.js +44 -0
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.test.d.ts +1 -0
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.test.js +134 -0
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/index.d.ts +1 -0
- package/cjs/EditModeAttributesFactory/components/EditModeAttribute/index.js +5 -0
- package/cjs/EditModeAttributesFactory/index.d.ts +2 -0
- package/cjs/EditModeAttributesFactory/index.js +7 -0
- package/cjs/EditModeAttributesList/EditModeAttributesList.js +122 -0
- package/cjs/EditModeAttributesList/EditModeAttributesList.test.d.ts +1 -0
- package/cjs/EditModeAttributesList/EditModeAttributesList.test.js +358 -0
- package/cjs/EditModeAttributesList/attributes.test-data.d.ts +28 -0
- package/cjs/EditModeAttributesList/attributes.test-data.js +40 -0
- package/cjs/EditModeAttributesList/index.d.ts +1 -0
- package/cjs/EditModeAttributesList/index.js +8 -0
- package/cjs/EditModeAttributesPager/EditModeAttributesPager.d.ts +4 -0
- package/cjs/EditModeAttributesPager/EditModeAttributesPager.js +86 -0
- package/cjs/EditModeAttributesPager/EditModeAttributesPager.test.d.ts +1 -0
- package/cjs/EditModeAttributesPager/EditModeAttributesPager.test.js +282 -0
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.d.ts +17 -0
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.js +128 -0
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.test.d.ts +1 -0
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.test.js +364 -0
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/IntegrationAttributeRenderer.test.d.ts +1 -0
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/IntegrationAttributeRenderer.test.js +193 -0
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/index.d.ts +1 -0
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/index.js +8 -0
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/store.test-data.d.ts +4 -0
- package/cjs/EditModeAttributesPager/components/AttributeRenderer/store.test-data.js +7 -0
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.d.ts +19 -0
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.js +60 -0
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.d.ts +1 -0
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.js +52 -0
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/index.d.ts +1 -0
- package/cjs/EditModeAttributesPager/components/ImageLineRenderer/index.js +5 -0
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.d.ts +18 -0
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.js +118 -0
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.test.d.ts +1 -0
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.test.js +209 -0
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/index.d.ts +1 -0
- package/cjs/EditModeAttributesPager/components/SpecialRenderer/index.js +8 -0
- package/cjs/EditModeAttributesPager/helpers.d.ts +1 -0
- package/cjs/EditModeAttributesPager/helpers.js +6 -0
- package/cjs/EditModeAttributesPager/helpers.test.d.ts +1 -0
- package/cjs/EditModeAttributesPager/helpers.test.js +22 -0
- package/cjs/EditModeAttributesPager/index.d.ts +1 -0
- package/cjs/EditModeAttributesPager/index.js +8 -0
- package/cjs/EditModeAttributesPager/styles.d.ts +1 -0
- package/cjs/EditModeAttributesPager/types.d.ts +26 -0
- package/cjs/EditModeAttributesPager/types.js +9 -0
- package/cjs/EditModeAttributesView/EditModeAttributesView.d.ts +12 -0
- package/cjs/EditModeAttributesView/EditModeAttributesView.js +59 -0
- package/cjs/EditModeAttributesView/EditModeAttributesView.test.d.ts +1 -0
- package/cjs/EditModeAttributesView/EditModeAttributesView.test.js +63 -0
- package/cjs/EditModeAttributesView/IntegrationEditModeAttributesView.test.d.ts +1 -0
- package/cjs/EditModeAttributesView/IntegrationEditModeAttributesView.test.js +264 -0
- package/cjs/EditModeAttributesView/index.d.ts +1 -0
- package/cjs/EditModeAttributesView/index.js +5 -0
- package/cjs/EditModeAttributesView/metadata.test-data.d.ts +4 -0
- package/cjs/EditModeAttributesView/metadata.test-data.js +123 -0
- package/cjs/EditModeComplexAttribute/EditModeComplexAttribute.js +133 -0
- package/cjs/EditModeComplexAttribute/EditModeComplexAttribute.test.d.ts +1 -0
- package/cjs/EditModeComplexAttribute/EditModeComplexAttribute.test.js +401 -0
- package/cjs/EditModeComplexAttribute/index.d.ts +1 -0
- package/cjs/EditModeComplexAttribute/index.js +8 -0
- package/cjs/EditModeComplexAttribute/nestedAttrType.test-data.d.ts +31 -0
- package/cjs/EditModeComplexAttribute/nestedAttrType.test-data.js +74 -0
- package/cjs/EditModeComplexAttribute/nestedAttrValue.test-data.d.ts +29 -0
- package/cjs/EditModeComplexAttribute/nestedAttrValue.test-data.js +38 -0
- package/cjs/EntityCreator/EntityCreator.d.ts +9 -0
- package/cjs/EntityCreator/EntityCreator.js +40 -0
- package/cjs/EntityCreator/EntityCreator.test.d.ts +1 -0
- package/cjs/EntityCreator/EntityCreator.test.js +80 -0
- package/cjs/EntityCreator/entityType.test-data.d.ts +52 -0
- package/cjs/EntityCreator/entityType.test-data.js +191 -0
- package/cjs/EntityCreator/index.d.ts +1 -0
- package/cjs/EntityCreator/index.js +5 -0
- package/cjs/EntitySelector/EntitySelector.d.ts +32 -0
- package/cjs/EntitySelector/EntitySelector.js +123 -0
- package/cjs/EntitySelector/EntitySelector.test.d.ts +1 -0
- package/cjs/EntitySelector/EntitySelector.test.js +485 -0
- package/cjs/EntitySelector/components/ClearIndicator/ClearIndicator.d.ts +7 -0
- package/cjs/EntitySelector/components/ClearIndicator/ClearIndicator.js +21 -0
- package/cjs/EntitySelector/components/ClearIndicator/ClearIndicator.test.d.ts +1 -0
- package/cjs/EntitySelector/components/ClearIndicator/ClearIndicator.test.js +32 -0
- package/cjs/EntitySelector/components/ClearIndicator/index.d.ts +1 -0
- package/cjs/EntitySelector/components/ClearIndicator/index.js +5 -0
- package/cjs/EntitySelector/components/ClearIndicator/styles.d.ts +1 -0
- package/cjs/EntitySelector/components/ClearIndicator/styles.js +11 -0
- package/cjs/EntitySelector/components/EntityOption/EntityOption.d.ts +22 -0
- package/cjs/EntitySelector/components/EntityOption/EntityOption.js +61 -0
- package/cjs/EntitySelector/components/EntityOption/EntityOption.test.d.ts +1 -0
- package/cjs/EntitySelector/components/EntityOption/EntityOption.test.js +84 -0
- package/cjs/EntitySelector/components/EntityOption/index.d.ts +1 -0
- package/cjs/EntitySelector/components/EntityOption/index.js +5 -0
- package/cjs/EntitySelector/components/EntityOption/styles.d.ts +1 -0
- package/cjs/EntitySelector/components/EntityOption/styles.js +42 -0
- package/cjs/EntitySelector/components/Group/Group.d.ts +9 -0
- package/cjs/EntitySelector/components/Group/Group.js +41 -0
- package/cjs/EntitySelector/components/Group/Group.test.d.ts +1 -0
- package/cjs/EntitySelector/components/Group/Group.test.js +69 -0
- package/cjs/EntitySelector/components/Group/index.d.ts +1 -0
- package/cjs/EntitySelector/components/Group/index.js +5 -0
- package/cjs/EntitySelector/components/Group/styles.d.ts +1 -0
- package/cjs/EntitySelector/components/Group/styles.js +29 -0
- package/cjs/EntitySelector/components/SingleValue/SingleValue.d.ts +14 -0
- package/cjs/EntitySelector/components/SingleValue/SingleValue.js +87 -0
- package/cjs/EntitySelector/components/SingleValue/SingleValue.test.d.ts +1 -0
- package/cjs/EntitySelector/components/SingleValue/SingleValue.test.js +83 -0
- package/cjs/EntitySelector/components/SingleValue/index.d.ts +1 -0
- package/cjs/EntitySelector/components/SingleValue/index.js +5 -0
- package/cjs/EntitySelector/components/SingleValue/styles.d.ts +1 -0
- package/cjs/EntitySelector/components/SingleValue/styles.js +20 -0
- package/cjs/EntitySelector/helpers.d.ts +1 -0
- package/cjs/EntitySelector/helpers.js +48 -0
- package/cjs/EntitySelector/index.d.ts +1 -0
- package/cjs/EntitySelector/index.js +5 -0
- package/cjs/EntitySelector/styles.d.ts +1 -0
- package/cjs/ExpandedValueTooltip/ExpandedValueTooltip.d.ts +11 -0
- package/cjs/ExpandedValueTooltip/ExpandedValueTooltip.js +70 -0
- package/cjs/ExpandedValueTooltip/ExpandedValueTooltip.test.d.ts +1 -0
- package/cjs/ExpandedValueTooltip/ExpandedValueTooltip.test.js +44 -0
- package/cjs/ExpandedValueTooltip/helpers.d.ts +1 -0
- package/cjs/ExpandedValueTooltip/helpers.js +9 -0
- package/cjs/ExpandedValueTooltip/index.d.ts +1 -0
- package/cjs/ExpandedValueTooltip/index.js +5 -0
- package/cjs/FacetViewHeader/FacetViewHeader.d.ts +8 -0
- package/cjs/FacetViewHeader/FacetViewHeader.js +16 -0
- package/cjs/FacetViewHeader/FacetViewHeader.test.d.ts +1 -0
- package/cjs/FacetViewHeader/FacetViewHeader.test.js +15 -0
- package/cjs/FacetViewHeader/index.d.ts +1 -0
- package/cjs/FacetViewHeader/index.js +5 -0
- package/cjs/FacetViewHeader/styles.d.ts +1 -0
- package/cjs/FilterButton/FilterButton.d.ts +6 -0
- package/cjs/FilterButton/FilterButton.js +22 -0
- package/cjs/FilterButton/FilterButton.test.d.ts +1 -0
- package/cjs/FilterButton/FilterButton.test.js +113 -0
- package/cjs/FilterButton/index.d.ts +1 -0
- package/cjs/FilterButton/index.js +5 -0
- package/cjs/FilterButton/styles.d.ts +1 -0
- package/cjs/FilterButton/styles.js +18 -0
- package/cjs/HOCs/index.d.ts +3 -3
- package/cjs/HOCs/index.js +5 -5
- package/cjs/HOCs/withAsyncMount/index.d.ts +1 -0
- package/cjs/HOCs/withAsyncMount/index.js +5 -0
- package/cjs/HOCs/withAsyncMount/withAsyncMount.d.ts +1 -2
- package/cjs/HOCs/withAsyncMount/withAsyncMount.js +2 -1
- package/cjs/HOCs/withAsyncMount/withAsyncMount.test.d.ts +1 -0
- package/cjs/HOCs/withAsyncMount/withAsyncMount.test.js +95 -0
- package/cjs/HOCs/withChartDataPercents/index.d.ts +1 -0
- package/cjs/HOCs/withChartDataPercents/index.js +5 -0
- package/cjs/HOCs/withChartDataPercents/withChartDataPercents.d.ts +10 -0
- package/cjs/HOCs/withChartDataPercents/withChartDataPercents.js +60 -0
- package/cjs/HOCs/withContext/index.d.ts +1 -0
- package/cjs/HOCs/withContext/index.js +5 -0
- package/cjs/HOCs/withFilter/ColumnFilter.d.ts +22 -0
- package/cjs/HOCs/withFilter/ColumnFilter.js +122 -0
- package/cjs/HOCs/withFilter/ColumnFilter.spec.d.ts +1 -0
- package/cjs/HOCs/withFilter/ColumnFilter.spec.js +225 -0
- package/cjs/HOCs/withFilter/FilterChip.d.ts +13 -0
- package/cjs/HOCs/withFilter/FilterChip.js +32 -0
- package/cjs/HOCs/withFilter/FilterChip.test.d.ts +1 -0
- package/cjs/HOCs/withFilter/FilterChip.test.js +102 -0
- package/cjs/HOCs/withFilter/helpers.d.ts +7 -0
- package/cjs/HOCs/withFilter/helpers.js +8 -0
- package/cjs/HOCs/withFilter/index.d.ts +1 -0
- package/cjs/HOCs/withFilter/index.js +5 -0
- package/cjs/HOCs/withFilter/styles.d.ts +1 -0
- package/cjs/HOCs/withFilter/styles.js +26 -0
- package/cjs/HOCs/withFilter/withFilter.d.ts +15 -0
- package/cjs/HOCs/withFilter/withFilter.js +39 -0
- package/cjs/HOCs/withFilterAtBottom/index.d.ts +1 -0
- package/cjs/HOCs/withFilterAtBottom/index.js +5 -0
- package/cjs/HOCs/withFilterAtBottom/withFilterAtBottom.d.ts +10 -0
- package/cjs/HOCs/withFilterAtBottom/withFilterAtBottom.js +44 -0
- package/cjs/HOCs/withTableContext/index.d.ts +1 -0
- package/cjs/HOCs/withTableContext/index.js +5 -0
- package/cjs/HOCs/withTableContext/withTableContext.d.ts +4 -0
- package/cjs/HOCs/withTableContext/withTableContext.js +9 -0
- package/cjs/HOCs/withTableContext/withTableContext.test.d.ts +1 -0
- package/cjs/HOCs/withTableContext/withTableContext.test.js +46 -0
- package/cjs/HOCs/withTooltip/index.d.ts +1 -0
- package/cjs/HOCs/withTooltip/index.js +5 -0
- package/cjs/HOCs/withTooltip/styles.d.ts +1 -0
- package/cjs/HOCs/withTooltip/styles.js +10 -0
- package/cjs/HOCs/withTooltip/withTooltip.d.ts +8 -2
- package/cjs/HOCs/withTooltip/withTooltip.js +9 -24
- package/cjs/IgnoreButton/IgnoreButton.d.ts +7 -0
- package/cjs/IgnoreButton/IgnoreButton.js +16 -0
- package/cjs/IgnoreButton/IgnoreButton.spec.d.ts +1 -0
- package/cjs/IgnoreButton/IgnoreButton.spec.js +34 -0
- package/cjs/IgnoreButton/index.d.ts +1 -0
- package/cjs/IgnoreButton/index.js +5 -0
- package/cjs/Image/Image.d.ts +12 -0
- package/cjs/Image/Image.js +86 -0
- package/cjs/Image/Image.test.d.ts +1 -0
- package/cjs/Image/Image.test.js +70 -0
- package/cjs/Image/constants.d.ts +2 -0
- package/cjs/Image/constants.js +21 -0
- package/cjs/Image/index.d.ts +2 -0
- package/cjs/Image/index.js +10 -0
- package/cjs/Image/styles.d.ts +2 -0
- package/cjs/ImageActionsOverlay/ImageActionsOverlay.js +87 -0
- package/cjs/ImageActionsOverlay/ImageActionsOverlay.test.d.ts +1 -0
- package/cjs/ImageActionsOverlay/ImageActionsOverlay.test.js +153 -0
- package/cjs/ImageActionsOverlay/components/CheckedIcon/CheckedIcon.d.ts +7 -0
- package/cjs/ImageActionsOverlay/components/CheckedIcon/index.d.ts +1 -0
- package/cjs/ImageActionsOverlay/components/CheckedIcon/index.js +5 -0
- package/cjs/ImageActionsOverlay/index.d.ts +1 -0
- package/cjs/ImageActionsOverlay/index.js +8 -0
- package/cjs/ImageAttributesLine/ImageAttributesLine.d.ts +21 -0
- package/cjs/ImageAttributesLine/ImageAttributesLine.js +142 -0
- package/cjs/ImageAttributesLine/ImageAttributesLine.test.d.ts +1 -0
- package/cjs/ImageAttributesLine/ImageAttributesLine.test.js +311 -0
- package/cjs/ImageAttributesLine/constants.d.ts +3 -0
- package/cjs/ImageAttributesLine/constants.js +10 -0
- package/cjs/ImageAttributesLine/imageAttributeValues.test-data.d.ts +2 -0
- package/cjs/ImageAttributesLine/imageAttributeValues.test-data.js +71 -0
- package/cjs/ImageAttributesLine/index.d.ts +5 -0
- package/cjs/ImageAttributesLine/index.js +11 -0
- package/cjs/ImageAttributesLine/styles.d.ts +2 -0
- package/cjs/ImageAttributesLine/types.d.ts +8 -0
- package/cjs/ImageAttributesLineEditor/ImageAttributesLineEditor.d.ts +15 -0
- package/cjs/ImageAttributesLineEditor/ImageAttributesLineEditor.js +110 -0
- package/cjs/ImageAttributesLineEditor/ImageAttributesLineEditor.test.d.ts +1 -0
- package/cjs/ImageAttributesLineEditor/ImageAttributesLineEditor.test.js +369 -0
- package/cjs/ImageAttributesLineEditor/index.d.ts +1 -0
- package/cjs/ImageAttributesLineEditor/index.js +5 -0
- package/cjs/ImageAttributesLineEditor/styles.d.ts +2 -0
- package/cjs/InlineAttributesList/InlineAttributesList.d.ts +19 -0
- package/cjs/InlineAttributesList/InlineAttributesList.js +43 -0
- package/cjs/InlineAttributesList/InlineAttributesList.test.d.ts +1 -0
- package/cjs/InlineAttributesList/InlineAttributesList.test.js +96 -0
- package/cjs/InlineAttributesList/attributes.test-data.d.ts +28 -0
- package/cjs/InlineAttributesList/attributes.test-data.js +40 -0
- package/cjs/InlineAttributesList/index.d.ts +1 -0
- package/cjs/InlineAttributesList/index.js +5 -0
- package/cjs/InlineAttributesPager/InlineAttributesPager.d.ts +22 -0
- package/cjs/InlineAttributesPager/InlineAttributesPager.js +98 -0
- package/cjs/InlineAttributesPager/InlineAttributesPager.test.d.ts +1 -0
- package/cjs/InlineAttributesPager/InlineAttributesPager.test.js +313 -0
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.d.ts +19 -0
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.js +35 -0
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.test.d.ts +1 -0
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.test.js +109 -0
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/index.d.ts +1 -0
- package/cjs/InlineAttributesPager/components/InlineImageAttributesBlock/index.js +5 -0
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.d.ts +20 -0
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.js +45 -0
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.test.d.ts +1 -0
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.test.js +119 -0
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/index.d.ts +1 -0
- package/cjs/InlineAttributesPager/components/InlineNestedAttributesBlock/index.js +5 -0
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.d.ts +19 -0
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.js +35 -0
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.test.d.ts +1 -0
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.test.js +182 -0
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/index.d.ts +1 -0
- package/cjs/InlineAttributesPager/components/InlineReferenceAttributesBlock/index.js +5 -0
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.d.ts +19 -0
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.js +66 -0
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.test.d.ts +1 -0
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.test.js +278 -0
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/index.d.ts +1 -0
- package/cjs/InlineAttributesPager/components/InlineSimpleAttributesBlock/index.js +5 -0
- package/cjs/InlineAttributesPager/index.d.ts +1 -0
- package/cjs/InlineAttributesPager/index.js +5 -0
- package/cjs/InlineComplexAttribute/InlineComplexAttribute.d.ts +22 -0
- package/cjs/InlineComplexAttribute/InlineComplexAttribute.js +80 -0
- package/cjs/InlineComplexAttribute/InlineComplexAttribute.test.d.ts +1 -0
- package/cjs/InlineComplexAttribute/InlineComplexAttribute.test.js +251 -0
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.d.ts +7 -0
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.js +23 -0
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.spec.d.ts +1 -0
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.spec.js +136 -0
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/index.d.ts +1 -0
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/index.js +5 -0
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/styles.d.ts +7 -0
- package/cjs/InlineComplexAttribute/components/CrosswalkIcon/styles.js +19 -0
- package/cjs/InlineComplexAttribute/index.d.ts +1 -0
- package/cjs/InlineComplexAttribute/index.js +5 -0
- package/cjs/InlineImageAttribute/InlineImageAttribute.d.ts +18 -0
- package/cjs/InlineImageAttribute/InlineImageAttribute.js +40 -0
- package/cjs/InlineImageAttribute/InlineImageAttribute.test.d.ts +1 -0
- package/cjs/InlineImageAttribute/InlineImageAttribute.test.js +78 -0
- package/cjs/InlineImageAttribute/index.d.ts +1 -0
- package/cjs/InlineImageAttribute/index.js +5 -0
- package/cjs/InlineNestedAttribute/InlineNestedAttribute.d.ts +18 -0
- package/cjs/InlineNestedAttribute/InlineNestedAttribute.js +38 -0
- package/cjs/InlineNestedAttribute/InlineNestedAttribute.test.d.ts +1 -0
- package/cjs/InlineNestedAttribute/InlineNestedAttribute.test.js +65 -0
- package/cjs/InlineNestedAttribute/index.d.ts +1 -0
- package/cjs/InlineNestedAttribute/index.js +5 -0
- package/cjs/InlineReferenceAttribute/InlineReferenceAttribute.d.ts +18 -0
- package/cjs/InlineReferenceAttribute/InlineReferenceAttribute.js +71 -0
- package/cjs/InlineReferenceAttribute/InlineReferenceAttribute.test.d.ts +1 -0
- package/cjs/InlineReferenceAttribute/InlineReferenceAttribute.test.js +136 -0
- package/cjs/InlineReferenceAttribute/index.d.ts +1 -0
- package/cjs/InlineReferenceAttribute/index.js +5 -0
- package/cjs/InlineSimpleAttribute/InlineSimpleAttribute.d.ts +18 -0
- package/cjs/InlineSimpleAttribute/InlineSimpleAttribute.js +124 -0
- package/cjs/InlineSimpleAttribute/InlineSimpleAttribute.spec.d.ts +1 -0
- package/cjs/InlineSimpleAttribute/InlineSimpleAttribute.spec.js +417 -0
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.d.ts +18 -0
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.js +49 -0
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.spec.d.ts +1 -0
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.spec.js +57 -0
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/index.d.ts +1 -0
- package/cjs/InlineSimpleAttribute/components/CrosswalkMenuItem/index.js +5 -0
- package/cjs/InlineSimpleAttribute/index.d.ts +1 -0
- package/cjs/InlineSimpleAttribute/index.js +5 -0
- package/cjs/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.d.ts +13 -0
- package/cjs/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.js +104 -0
- package/cjs/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.test.d.ts +1 -0
- package/cjs/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.test.js +250 -0
- package/cjs/InlineSimpleAttributeEditor/index.d.ts +1 -0
- package/cjs/InlineSimpleAttributeEditor/index.js +5 -0
- package/cjs/InternalLink/InternalLink.d.ts +2 -0
- package/cjs/InternalLink/InternalLink.js +40 -0
- package/cjs/InternalLink/InternalLink.test.d.ts +1 -0
- package/cjs/InternalLink/InternalLink.test.js +29 -0
- package/cjs/InternalLink/index.d.ts +1 -0
- package/cjs/InternalLink/index.js +5 -0
- package/cjs/LineChart/LineChart.d.ts +8 -0
- package/cjs/LineChart/LineChart.js +34 -0
- package/cjs/LineChart/LineChart.test.d.ts +1 -0
- package/cjs/LineChart/LineChart.test.js +89 -0
- package/cjs/LineChart/helpers.d.ts +13 -0
- package/cjs/LineChart/helpers.js +63 -0
- package/cjs/LineChart/index.d.ts +1 -0
- package/cjs/LineChart/index.js +5 -0
- package/cjs/MapChart/MapChart.d.ts +10 -0
- package/cjs/MapChart/MapChart.js +109 -0
- package/cjs/MapChart/MapChart.test.d.ts +1 -0
- package/cjs/MapChart/MapChart.test.js +330 -0
- package/cjs/MapChart/components/Legend/Legend.d.ts +8 -0
- package/cjs/MapChart/components/Legend/Legend.js +23 -0
- package/cjs/MapChart/components/Legend/index.d.ts +1 -0
- package/cjs/MapChart/components/Legend/index.js +5 -0
- package/cjs/MapChart/components/Legend/styles.d.ts +6 -0
- package/cjs/MapChart/constants.d.ts +3 -0
- package/cjs/MapChart/constants.js +6 -0
- package/cjs/MapChart/index.d.ts +1 -0
- package/cjs/MapChart/index.js +8 -0
- package/cjs/MapChart/useGeography.js +25 -0
- package/cjs/MoreAttributesButton/MoreAttributesButton.d.ts +11 -0
- package/cjs/MoreAttributesButton/MoreAttributesButton.js +101 -0
- package/cjs/MoreAttributesButton/MoreAttributesButton.test.d.ts +1 -0
- package/cjs/MoreAttributesButton/MoreAttributesButton.test.js +195 -0
- package/cjs/MoreAttributesButton/attributes.test-data.d.ts +53 -0
- package/cjs/MoreAttributesButton/attributes.test-data.js +76 -0
- package/cjs/MoreAttributesButton/constants.d.ts +6 -0
- package/cjs/MoreAttributesButton/constants.js +9 -0
- package/cjs/MoreAttributesButton/helpers.d.ts +9 -0
- package/cjs/MoreAttributesButton/helpers.spec.d.ts +1 -0
- package/cjs/MoreAttributesButton/helpers.spec.js +46 -0
- package/cjs/MoreAttributesButton/index.d.ts +1 -0
- package/cjs/MoreAttributesButton/index.js +5 -0
- package/cjs/MoreAttributesButton/styles.d.ts +1 -0
- package/cjs/MoreAttributesButton/useMoreAttributesItems.js +69 -0
- package/cjs/NestedAttribute/NestedAttribute.js +77 -0
- package/cjs/NestedAttribute/NestedAttribute.test.d.ts +1 -0
- package/cjs/NestedAttribute/NestedAttribute.test.js +81 -0
- package/cjs/NestedAttribute/index.d.ts +1 -0
- package/cjs/NestedAttribute/index.js +8 -0
- package/cjs/NestedAttribute/nestedAttrType.test-data.d.ts +31 -0
- package/cjs/NestedAttribute/nestedAttrType.test-data.js +74 -0
- package/cjs/NestedAttribute/nestedAttrValue.test-data.d.ts +29 -0
- package/cjs/NestedAttribute/nestedAttrValue.test-data.js +38 -0
- package/cjs/NestedAttributeEditor/NestedAttributeEditor.d.ts +2 -0
- package/cjs/NestedAttributeEditor/NestedAttributeEditor.js +47 -0
- package/cjs/NestedAttributeEditor/NestedAttributeEditor.test.d.ts +1 -0
- package/cjs/NestedAttributeEditor/NestedAttributeEditor.test.js +93 -0
- package/cjs/NestedAttributeEditor/index.d.ts +1 -0
- package/cjs/NestedAttributeEditor/index.js +5 -0
- package/cjs/OvIcon/OvIcon.d.ts +38 -0
- package/cjs/OvIcon/OvIcon.js +61 -0
- package/cjs/OvIcon/OvIcon.test.d.ts +1 -0
- package/cjs/OvIcon/OvIcon.test.js +272 -0
- package/cjs/OvIcon/helpers.d.ts +4 -0
- package/cjs/OvIcon/helpers.js +33 -0
- package/cjs/OvIcon/index.d.ts +1 -0
- package/cjs/OvIcon/index.js +5 -0
- package/cjs/OvIcon/styles.d.ts +1 -0
- package/cjs/PieChart/PieChart.d.ts +17 -0
- package/cjs/PieChart/PieChart.js +70 -0
- package/cjs/PieChart/PieChart.test.d.ts +1 -0
- package/cjs/PieChart/PieChart.test.js +148 -0
- package/cjs/PieChart/components/ActiveShape/ActiveShape.d.ts +9 -0
- package/cjs/PieChart/components/ActiveShape/ActiveShape.js +53 -0
- package/cjs/PieChart/components/ActiveShape/index.d.ts +1 -0
- package/cjs/PieChart/components/ActiveShape/index.js +5 -0
- package/cjs/PieChart/index.d.ts +1 -0
- package/cjs/PieChart/index.js +8 -0
- package/cjs/PinButton/PinButton.d.ts +7 -0
- package/cjs/PinButton/PinButton.js +16 -0
- package/cjs/PinButton/PinButton.spec.d.ts +1 -0
- package/cjs/PinButton/PinButton.spec.js +34 -0
- package/cjs/PinButton/index.d.ts +1 -0
- package/cjs/PinButton/index.js +5 -0
- package/cjs/PivotingTooltip/IntegrationPivotingTooltip.test.d.ts +1 -0
- package/cjs/PivotingTooltip/IntegrationPivotingTooltip.test.js +384 -0
- package/cjs/PivotingTooltip/PivotingTooltip.js +83 -0
- package/cjs/PivotingTooltip/PivotingTooltip.test.d.ts +1 -0
- package/cjs/PivotingTooltip/PivotingTooltip.test.js +290 -0
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.d.ts +11 -0
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.js +32 -0
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.test.d.ts +1 -0
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.test.js +234 -0
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/index.d.ts +1 -0
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/index.js +5 -0
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/styles.d.ts +1 -0
- package/cjs/PivotingTooltip/components/PivotingTooltipContent/styles.js +79 -0
- package/cjs/PivotingTooltip/helpers.test.d.ts +1 -0
- package/cjs/PivotingTooltip/helpers.test.js +199 -0
- package/cjs/PivotingTooltip/index.d.ts +1 -0
- package/cjs/PivotingTooltip/index.js +5 -0
- package/cjs/PivotingTooltip/styles.d.ts +2 -0
- package/cjs/PivotingTooltip/styles.js +31 -0
- package/cjs/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.d.ts +17 -0
- package/cjs/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.js +74 -0
- package/cjs/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.test.d.ts +1 -0
- package/cjs/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.test.js +76 -0
- package/cjs/ReadOnlyAttributeValuesBlock/index.d.ts +1 -0
- package/cjs/ReadOnlyAttributeValuesBlock/index.js +8 -0
- package/cjs/ReadOnlyAttributesFactory/ReadOnlyAttributesFactory.d.ts +3 -0
- package/cjs/ReadOnlyAttributesFactory/ReadOnlyAttributesFactory.js +39 -0
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.d.ts +1 -0
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.js +9 -0
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.test.d.ts +1 -0
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.test.js +69 -0
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/index.d.ts +1 -0
- package/cjs/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/index.js +5 -0
- package/cjs/ReadOnlyAttributesFactory/index.d.ts +2 -0
- package/cjs/ReadOnlyAttributesFactory/index.js +7 -0
- package/cjs/ReadOnlyAttributesList/ReadOnlyAttributesList.d.ts +18 -0
- package/cjs/ReadOnlyAttributesList/ReadOnlyAttributesList.js +73 -0
- package/cjs/ReadOnlyAttributesList/ReadOnlyAttributesList.test.d.ts +1 -0
- package/cjs/ReadOnlyAttributesList/ReadOnlyAttributesList.test.js +307 -0
- package/cjs/ReadOnlyAttributesList/attributes.test-data.d.ts +28 -0
- package/cjs/ReadOnlyAttributesList/attributes.test-data.js +40 -0
- package/cjs/ReadOnlyAttributesList/index.d.ts +1 -0
- package/cjs/ReadOnlyAttributesList/index.js +8 -0
- package/cjs/ReadOnlyAttributesPager/ReadOnlyAttributesPager.js +88 -0
- package/cjs/ReadOnlyAttributesPager/ReadOnlyAttributesPager.test.d.ts +1 -0
- package/cjs/ReadOnlyAttributesPager/ReadOnlyAttributesPager.test.js +255 -0
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.d.ts +11 -0
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.js +22 -0
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.d.ts +1 -0
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.js +50 -0
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/index.d.ts +1 -0
- package/cjs/ReadOnlyAttributesPager/components/ImageLineRenderer/index.js +5 -0
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.d.ts +16 -0
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.js +74 -0
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.test.d.ts +1 -0
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.test.js +119 -0
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/index.d.ts +1 -0
- package/cjs/ReadOnlyAttributesPager/components/MultiLineRenderer/index.js +5 -0
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.d.ts +12 -0
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.js +34 -0
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.d.ts +1 -0
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.js +106 -0
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/index.d.ts +1 -0
- package/cjs/ReadOnlyAttributesPager/components/OneLineRenderer/index.js +5 -0
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.d.ts +7 -0
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.js +41 -0
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.test.d.ts +1 -0
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.test.js +77 -0
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/index.d.ts +1 -0
- package/cjs/ReadOnlyAttributesPager/components/SpecialRenderer/index.js +5 -0
- package/cjs/ReadOnlyAttributesPager/index.d.ts +1 -0
- package/cjs/ReadOnlyAttributesPager/index.js +8 -0
- package/cjs/ReadOnlyAttributesPager/styles.d.ts +3 -0
- package/cjs/ReadOnlyAttributesView/ReadOnlyAttributesView.d.ts +11 -0
- package/cjs/ReadOnlyAttributesView/ReadOnlyAttributesView.js +62 -0
- package/cjs/ReadOnlyAttributesView/ReadOnlyAttributesView.test.d.ts +1 -0
- package/cjs/ReadOnlyAttributesView/ReadOnlyAttributesView.test.js +210 -0
- package/cjs/ReadOnlyAttributesView/index.d.ts +1 -0
- package/cjs/ReadOnlyAttributesView/index.js +5 -0
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.d.ts +45 -0
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.js +93 -0
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.d.ts +1 -0
- package/cjs/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.js +263 -0
- package/cjs/ReadOnlyComplexAttribute/index.d.ts +1 -0
- package/cjs/ReadOnlyComplexAttribute/index.js +5 -0
- package/cjs/ReadOnlyComplexAttribute/nestedAttrType.test-data.d.ts +31 -0
- package/cjs/ReadOnlyComplexAttribute/nestedAttrType.test-data.js +74 -0
- package/cjs/ReadOnlyComplexAttribute/nestedAttrValue.test-data.d.ts +29 -0
- package/cjs/ReadOnlyComplexAttribute/nestedAttrValue.test-data.js +38 -0
- package/cjs/ReadOnlyComplexAttribute/styles.d.ts +1 -0
- package/cjs/ReadOnlyComplexAttribute/styles.js +24 -0
- package/cjs/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.d.ts +13 -0
- package/cjs/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.js +58 -0
- package/cjs/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.test.d.ts +1 -0
- package/cjs/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.test.js +117 -0
- package/cjs/ReadOnlyImageAttributesLine/index.d.ts +1 -0
- package/cjs/ReadOnlyImageAttributesLine/index.js +5 -0
- package/cjs/ReadOnlyImageAttributesLine/styles.d.ts +2 -0
- package/cjs/ReadOnlyImageAttributesLine/styles.js +89 -0
- package/cjs/ReferenceAttribute/ReferenceAttribute.d.ts +25 -0
- package/cjs/ReferenceAttribute/ReferenceAttribute.js +85 -0
- package/cjs/ReferenceAttribute/ReferenceAttribute.test.d.ts +1 -0
- package/cjs/ReferenceAttribute/ReferenceAttribute.test.js +274 -0
- package/cjs/ReferenceAttribute/index.d.ts +1 -0
- package/cjs/ReferenceAttribute/index.js +5 -0
- package/cjs/ReferenceAttribute/styles.d.ts +2 -0
- package/cjs/ReferenceAttribute/styles.js +26 -0
- package/cjs/ReferenceAttributeEditor/ReferenceAttributeEditor.js +162 -0
- package/cjs/ReferenceAttributeEditor/ReferenceAttributeEditor.test.d.ts +1 -0
- package/cjs/ReferenceAttributeEditor/ReferenceAttributeEditor.test.js +693 -0
- package/cjs/ReferenceAttributeEditor/index.d.ts +1 -0
- package/cjs/ReferenceAttributeEditor/index.js +8 -0
- package/cjs/ReferenceAttributeEditor/metadata.test-data.d.ts +52 -0
- package/cjs/ReferenceAttributeEditor/metadata.test-data.js +79 -0
- package/cjs/ReferenceAttributeEditor/styles.d.ts +1 -0
- package/cjs/RelationTypeSelector/RelationTypeSelector.d.ts +27 -0
- package/cjs/RelationTypeSelector/RelationTypeSelector.js +77 -0
- package/cjs/RelationTypeSelector/RelationTypeSelector.test.d.ts +1 -0
- package/cjs/RelationTypeSelector/RelationTypeSelector.test.js +25 -0
- package/cjs/RelationTypeSelector/components/RelationOption/RelationOption.d.ts +20 -0
- package/cjs/RelationTypeSelector/components/RelationOption/RelationOption.js +58 -0
- package/cjs/RelationTypeSelector/components/RelationOption/index.d.ts +1 -0
- package/cjs/RelationTypeSelector/components/RelationOption/index.js +5 -0
- package/cjs/RelationTypeSelector/components/RelationOption/styles.d.ts +1 -0
- package/cjs/RelationTypeSelector/components/RelationOption/styles.js +55 -0
- package/cjs/RelationTypeSelector/index.d.ts +1 -0
- package/cjs/RelationTypeSelector/index.js +5 -0
- package/cjs/Roles/Roles.d.ts +6 -0
- package/cjs/Roles/Roles.js +14 -0
- package/cjs/Roles/Roles.test.d.ts +1 -0
- package/cjs/Roles/Roles.test.js +20 -0
- package/cjs/Roles/components/Role/Role.d.ts +5 -0
- package/cjs/Roles/components/Role/Role.js +45 -0
- package/cjs/Roles/components/Role/Role.test.d.ts +1 -0
- package/cjs/Roles/components/Role/Role.test.js +60 -0
- package/cjs/Roles/components/Role/index.d.ts +1 -0
- package/cjs/Roles/components/Role/index.js +5 -0
- package/cjs/Roles/components/Role/styles.d.ts +1 -0
- package/cjs/Roles/components/Role/styles.js +23 -0
- package/cjs/Roles/index.d.ts +1 -0
- package/cjs/Roles/index.js +5 -0
- package/cjs/RolesEditor/RolesEditor.d.ts +8 -0
- package/cjs/RolesEditor/RolesEditor.js +73 -0
- package/cjs/RolesEditor/RolesEditor.test.d.ts +1 -0
- package/cjs/RolesEditor/RolesEditor.test.js +217 -0
- package/cjs/RolesEditor/index.d.ts +1 -0
- package/cjs/RolesEditor/index.js +5 -0
- package/cjs/RowCellAutoSizer/RowCellAutoSizer.d.ts +14 -0
- package/cjs/RowCellAutoSizer/RowCellAutoSizer.js +55 -0
- package/cjs/RowCellAutoSizer/RowCellAutoSizer.test.d.ts +1 -0
- package/cjs/RowCellAutoSizer/RowCellAutoSizer.test.js +142 -0
- package/cjs/RowCellAutoSizer/index.d.ts +1 -0
- package/cjs/RowCellAutoSizer/index.js +5 -0
- package/cjs/ShowLess/ShowLess.d.ts +5 -0
- package/cjs/ShowLess/ShowLess.js +19 -0
- package/cjs/ShowLess/ShowLess.test.d.ts +1 -0
- package/cjs/ShowLess/ShowLess.test.js +63 -0
- package/cjs/ShowLess/index.d.ts +1 -0
- package/cjs/ShowLess/index.js +5 -0
- package/cjs/ShowLess/styles.d.ts +1 -0
- package/cjs/ShowLess/styles.js +13 -0
- package/cjs/ShowMore/ShowMore.d.ts +7 -0
- package/cjs/ShowMore/ShowMore.js +21 -0
- package/cjs/ShowMore/ShowMore.test.d.ts +1 -0
- package/cjs/ShowMore/ShowMore.test.js +94 -0
- package/cjs/ShowMore/index.d.ts +1 -0
- package/cjs/ShowMore/index.js +5 -0
- package/cjs/ShowMore/styles.d.ts +1 -0
- package/cjs/ShowMore/styles.js +13 -0
- package/cjs/SimpleAttribute/SimpleAttribute.d.ts +9 -0
- package/cjs/SimpleAttribute/SimpleAttribute.js +67 -0
- package/cjs/SimpleAttribute/SimpleAttribute.test.d.ts +1 -0
- package/cjs/SimpleAttribute/SimpleAttribute.test.js +147 -0
- package/cjs/SimpleAttribute/index.d.ts +1 -0
- package/cjs/SimpleAttribute/index.js +5 -0
- package/cjs/SimpleAttribute/styles.d.ts +1 -0
- package/cjs/SimpleAttribute/styles.js +44 -0
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +19 -0
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditor.js +167 -0
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditor.test.d.ts +1 -0
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditor.test.js +544 -0
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditorWithoutPermissions.test.d.ts +1 -0
- package/cjs/SimpleAttributeEditor/SimpleAttributeEditorWithoutPermissions.test.js +79 -0
- package/cjs/SimpleAttributeEditor/helpers.d.ts +1 -0
- package/cjs/SimpleAttributeEditor/helpers.js +13 -0
- package/cjs/SimpleAttributeEditor/helpers.test.d.ts +1 -0
- package/cjs/SimpleAttributeEditor/helpers.test.js +128 -0
- package/cjs/SimpleAttributeEditor/index.d.ts +1 -0
- package/cjs/SimpleAttributeEditor/index.js +8 -0
- package/cjs/SimpleAttributeEditor/styles.d.ts +1 -0
- package/cjs/SimpleAttributeEditor/useAttributeValuePermissions.js +14 -0
- package/cjs/SimpleAttributeEditor/useAutopopulationContextValue.js +21 -0
- package/cjs/SimpleAttributeEditor/useAutopopulationContextValue.specs.d.ts +1 -0
- package/cjs/SimpleAttributeEditor/useAutopopulationContextValue.specs.js +118 -0
- package/cjs/SmallIconButton/SmallIconButton.d.ts +8 -0
- package/cjs/SmallIconButton/SmallIconButton.js +61 -0
- package/cjs/SmallIconButton/SmallIconButton.specs.d.ts +1 -0
- package/cjs/SmallIconButton/SmallIconButton.specs.js +42 -0
- package/cjs/SmallIconButton/constants.d.ts +9 -0
- package/cjs/SmallIconButton/constants.js +12 -0
- package/cjs/SmallIconButton/index.d.ts +16 -0
- package/cjs/SmallIconButton/index.js +8 -0
- package/cjs/SmallIconButton/styles.d.ts +1 -0
- package/cjs/SmallIconButton/styles.js +49 -0
- package/cjs/SourceIcon/SourceIcon.d.ts +10 -0
- package/cjs/SourceIcon/SourceIcon.js +20 -0
- package/cjs/SourceIcon/SourceIcon.spec.d.ts +1 -0
- package/cjs/SourceIcon/SourceIcon.spec.js +65 -0
- package/cjs/SourceIcon/index.d.ts +1 -0
- package/cjs/SourceIcon/index.js +5 -0
- package/cjs/SourceItem/SourceItem.d.ts +9 -0
- package/cjs/SourceItem/SourceItem.js +31 -0
- package/cjs/SourceItem/SourceItem.spec.d.ts +1 -0
- package/cjs/SourceItem/SourceItem.spec.js +126 -0
- package/cjs/SourceItem/index.d.ts +1 -0
- package/cjs/SourceItem/index.js +5 -0
- package/cjs/SourceItem/styles.d.ts +8 -0
- package/cjs/SourceItem/styles.js +56 -0
- package/cjs/SpecialAttributesArray/SpecialAttributesArray.d.ts +9 -0
- package/cjs/SpecialAttributesArray/SpecialAttributesArray.js +34 -0
- package/cjs/SpecialAttributesArray/SpecialAttributesArray.test.d.ts +1 -0
- package/cjs/SpecialAttributesArray/SpecialAttributesArray.test.js +21 -0
- package/cjs/SpecialAttributesArray/index.d.ts +1 -0
- package/cjs/SpecialAttributesArray/index.js +5 -0
- package/cjs/TableWithBars/TableWithBars.d.ts +10 -0
- package/cjs/TableWithBars/TableWithBars.js +80 -0
- package/cjs/TableWithBars/TableWithBars.test.d.ts +1 -0
- package/cjs/TableWithBars/TableWithBars.test.js +80 -0
- package/cjs/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.js +30 -0
- package/cjs/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.test.d.ts +1 -0
- package/cjs/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.test.js +26 -0
- package/cjs/TableWithBars/components/AttributeCellRenderer/index.d.ts +1 -0
- package/cjs/TableWithBars/components/AttributeCellRenderer/index.js +8 -0
- package/cjs/TableWithBars/components/AttributeCellRenderer/styles.d.ts +1 -0
- package/cjs/TableWithBars/components/AttributeCellRenderer/styles.js +29 -0
- package/cjs/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.d.ts +8 -0
- package/cjs/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.js +41 -0
- package/cjs/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.test.d.ts +1 -0
- package/cjs/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.test.js +25 -0
- package/cjs/TableWithBars/components/HeadCellRenderer/index.d.ts +1 -0
- package/cjs/TableWithBars/components/HeadCellRenderer/index.js +5 -0
- package/cjs/TableWithBars/components/HeadCellRenderer/styles.d.ts +1 -0
- package/cjs/TableWithBars/components/HeadCellRenderer/styles.js +33 -0
- package/cjs/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.d.ts +8 -0
- package/cjs/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.js +21 -0
- package/cjs/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.test.d.ts +1 -0
- package/cjs/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.test.js +41 -0
- package/cjs/TableWithBars/components/NumberCellValueRenderer/index.d.ts +1 -0
- package/cjs/TableWithBars/components/NumberCellValueRenderer/index.js +5 -0
- package/cjs/TableWithBars/components/NumberCellValueRenderer/styles.d.ts +1 -0
- package/cjs/TableWithBars/components/NumberCellValueRenderer/styles.js +31 -0
- package/cjs/TableWithBars/index.d.ts +1 -0
- package/cjs/TableWithBars/index.js +5 -0
- package/cjs/Tags/Tags.d.ts +7 -0
- package/cjs/Tags/Tags.js +14 -0
- package/cjs/Tags/Tags.test.d.ts +1 -0
- package/cjs/Tags/Tags.test.js +20 -0
- package/cjs/Tags/components/Tag/Tag.d.ts +5 -0
- package/cjs/Tags/components/Tag/Tag.js +56 -0
- package/cjs/Tags/components/Tag/Tag.test.d.ts +1 -0
- package/cjs/Tags/components/Tag/Tag.test.js +75 -0
- package/cjs/Tags/components/Tag/index.d.ts +1 -0
- package/cjs/Tags/components/Tag/index.js +5 -0
- package/cjs/Tags/components/Tag/styles.d.ts +1 -0
- package/cjs/Tags/components/Tag/styles.js +23 -0
- package/cjs/Tags/index.d.ts +1 -0
- package/cjs/Tags/index.js +5 -0
- package/cjs/TagsEditor/TagsEditor.d.ts +8 -0
- package/cjs/TagsEditor/TagsEditor.js +118 -0
- package/cjs/TagsEditor/TagsEditor.test.d.ts +1 -0
- package/cjs/TagsEditor/TagsEditor.test.js +221 -0
- package/cjs/TagsEditor/index.d.ts +1 -0
- package/cjs/TagsEditor/index.js +5 -0
- package/cjs/TreeChart/TreeChart.d.ts +7 -0
- package/cjs/TreeChart/TreeChart.js +54 -0
- package/cjs/TreeChart/TreeChart.test.d.ts +1 -0
- package/cjs/TreeChart/TreeChart.test.js +91 -0
- package/cjs/TreeChart/components/CustomizedContent/CustomizedContent.d.ts +10 -0
- package/cjs/TreeChart/components/CustomizedContent/CustomizedContent.js +49 -0
- package/cjs/TreeChart/components/CustomizedContent/index.d.ts +1 -0
- package/cjs/TreeChart/components/CustomizedContent/index.js +5 -0
- package/cjs/TreeChart/index.d.ts +1 -0
- package/cjs/TreeChart/index.js +5 -0
- package/cjs/TypeaheadEditor/TypeaheadEditor.d.ts +21 -0
- package/cjs/TypeaheadEditor/TypeaheadEditor.js +265 -0
- package/cjs/TypeaheadEditor/TypeaheadEditor.test.d.ts +1 -0
- package/cjs/TypeaheadEditor/TypeaheadEditor.test.js +506 -0
- package/cjs/TypeaheadEditor/index.d.ts +1 -0
- package/cjs/TypeaheadEditor/index.js +5 -0
- package/cjs/components/ClickAwayProvider/ClickAwayProvider.d.ts +0 -1
- package/cjs/components/CollaborationItem/Avatar/Avatar.d.ts +0 -1
- package/cjs/components/CollaborationItem/Comment/Comment.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/CollaborationItem/CommentTarget/CommentTarget.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/CollaborationItem/TextFieldWithMentions/TextFieldWithMentions.js +1 -1
- package/cjs/components/CollaborationItem/TextFieldWithMentions/styles.js +1 -0
- 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/ColoredSourceIcon/ColoredSourceIcon.js +2 -2
- package/cjs/components/CommentsContainer/CommentsContainer.d.ts +0 -1
- package/cjs/components/ConfigureColumnsPopup/ConfigureColumnsPopup.js +2 -2
- package/cjs/components/ConfirmDeleteDialog/ConfirmDeleteDialog.d.ts +0 -1
- package/cjs/components/ConnectionEditor/ConnectionEditor.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/DateIntervalSelector/DateIntervalSelector.d.ts +0 -1
- package/cjs/components/Drawer/Drawer.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/EntityTypeBadge/EntityTypeBadge.d.ts +0 -1
- package/cjs/components/EntityTypeBadge/EntityTypeBadge.js +2 -2
- package/cjs/components/EntityTypeIcon/EntityTypeIcon.d.ts +0 -1
- package/cjs/components/EntityUriLink/EntityUriLink.d.ts +2 -2
- package/cjs/components/ErrorPopup/ErrorPopup.d.ts +0 -1
- package/cjs/components/ErrorWrapper/ErrorMessage.d.ts +0 -1
- package/cjs/components/ErrorWrapper/styles.d.ts +1 -1
- package/cjs/components/ExpandableSearchInput/ExpandableSearchInput.d.ts +0 -1
- package/cjs/components/ExpandableSearchInput/ExpandableSearchInput.js +1 -1
- package/cjs/components/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.d.ts +0 -1
- package/cjs/components/HierarchyNodeTitle/HierarchyNodeTitle.d.ts +0 -1
- package/cjs/components/HierarchyNodeTitle/styles.d.ts +1 -1
- package/cjs/components/Highlighter/Highlighter.d.ts +0 -1
- package/cjs/components/ImageAttributesGallery/GalleryView/GalleryView.d.ts +0 -1
- package/cjs/components/ImageAttributesGallery/GalleryView/GalleryView.js +4 -27
- package/cjs/components/ImageAttributesGallery/HeaderLeft/HeaderLeft.d.ts +0 -1
- package/cjs/components/ImageAttributesGallery/HeaderRight/HeaderRight.d.ts +0 -1
- package/cjs/components/ImageAttributesGallery/HeaderRight/HeaderRight.js +1 -1
- package/cjs/components/ImageAttributesGallery/ImageAttributesGallery.d.ts +0 -1
- package/cjs/components/ImageDetailsView/ImageDetailsView.d.ts +0 -1
- package/cjs/components/ImageDetailsView/ImageDetailsViewCarousel/ImageDetailsViewCarousel.d.ts +0 -1
- package/cjs/components/ImageDetailsView/ImageDetailsViewCarousel/ImageDetailsViewCarousel.js +5 -28
- package/cjs/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/Thumbnails.d.ts +0 -1
- package/cjs/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/Thumbnails.js +2 -2
- package/cjs/components/ImageDetailsView/ImageDetailsViewSidebar/ImageDetailsViewSidebar.d.ts +0 -1
- package/cjs/components/ImageDetailsView/ImageDetailsViewSidebar/styles.d.ts +1 -1
- package/cjs/components/ImageDetailsView/MetaInfo/MetaInfo.d.ts +0 -1
- package/cjs/components/ImageDetailsView/MetaInfoForm/MetaInfoForm.d.ts +0 -1
- package/cjs/components/ImageDetailsView/MetaInfoForm/MetaInfoForm.js +2 -2
- package/cjs/components/ImageDetailsView/MetaInfoHeader/MetaInfoHeader.d.ts +0 -1
- 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 +0 -1
- 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 +0 -1
- package/cjs/components/ImportButton/ImportButton.js +1 -1
- package/cjs/components/LightArrowTooltip/LightArrowTooltip.d.ts +0 -1
- package/cjs/components/LinearLoadIndicator/LinearLoadIndicator.d.ts +0 -1
- package/cjs/components/LoadingSpinner/LoadingSpinner.d.ts +0 -1
- package/cjs/components/LogicOperator/LogicOperator.d.ts +0 -1
- package/cjs/components/LogicOperator/LogicOperator.js +3 -3
- package/cjs/components/Marginator/Marginator.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/MatchRulesBlock/MatchRulesTitle.d.ts +0 -1
- package/cjs/components/MatchRulesBlock/MatchRulesTooltip/MatchRulesTooltip.d.ts +0 -1
- package/cjs/components/MatchRulesBlock/MatchRulesTooltip/styles.d.ts +1 -1
- package/cjs/components/MatchRulesBlock/NotMatchRule/NotMatchRule.d.ts +0 -1
- package/cjs/components/MatchRulesBlock/SimpleMatchRules/SimpleMatchRules.d.ts +0 -1
- package/cjs/components/MatchRulesBlock/SimpleMatchRules/styles.d.ts +1 -1
- package/cjs/components/MatchRulesBlock/SimpleMatchRules/styles.js +2 -1
- 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 +0 -1
- 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 +0 -1
- package/cjs/components/MatchRulesSelector/MatchRulesSelector.d.ts +0 -1
- package/cjs/components/MergeButton/MergeButton.d.ts +1 -1
- package/cjs/components/MergeButton/MergeButton.js +3 -2
- package/cjs/components/MetadataTypesSelector/ListLabel/ListLabel.d.ts +0 -1
- 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/MultipleInput/MultipleInput.d.ts +0 -1
- package/cjs/components/NotMatchButton/NotMatchButton.d.ts +2 -2
- package/cjs/components/NotMatchButton/NotMatchButton.js +5 -4
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- package/cjs/components/ProfilesList/ProfilesList.d.ts +0 -1
- package/cjs/components/ProfilesList/styles.d.ts +1 -1
- package/cjs/components/QueryBuilderRow/components/ReadOnlyFilter.d.ts +0 -1
- package/cjs/components/QueryBuilderRow/components/ReadOnlyLogicOperator.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/ReltioMap/MapControls/TopCenterMapControls/TopCenterMapControls.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/RequiredMark/RequiredMark.d.ts +0 -1
- package/cjs/components/ScrollableTabs/ScrollableTabs.js +2 -2
- package/cjs/components/ScrollableTabs/styles.d.ts +1 -1
- package/cjs/components/SearchHighlighter/SearchHighlighter.d.ts +0 -1
- package/cjs/components/SearchInput/SearchInput.js +2 -2
- package/cjs/components/SearchInput/WhiteSearchInput.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/SettingsMenu/SettingsMenu.js +3 -3
- package/cjs/components/SideIconPanel/SideButtonsPanel.d.ts +2 -7
- package/cjs/components/SideIconPanel/SideButtonsPanel.js +5 -4
- 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/SourceSystemsSelector/SourceSystemsSelector.d.ts +0 -1
- package/cjs/components/StepNavigation/StepNavigation.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/TenantLabel/TenantLabel.d.ts +0 -1
- package/cjs/components/TenantsDropDownSelector/TenantsDropDownSelector.d.ts +0 -1
- package/cjs/components/TenantsDropDownSelector/TenantsDropDownSelector.js +3 -2
- package/cjs/components/Title/Title.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/UploadImageDialog/DividerWithText/styles.d.ts +1 -1
- package/cjs/components/UploadImageDialog/ErrorSnackbar/ErrorSnackbar.d.ts +0 -1
- package/cjs/components/UploadImageDialog/ErrorSnackbar/ErrorSnackbar.js +1 -1
- package/cjs/components/UploadImageDialog/ImageByUrlField/ImageByUrlField.d.ts +0 -1
- package/cjs/components/UploadImageDialog/ImageByUrlField/styles.d.ts +1 -1
- package/cjs/components/UploadImageDialog/SelectImageButton/SelectImageButton.d.ts +0 -1
- package/cjs/components/UploadImageDialog/TargetBox/TargetBox.d.ts +0 -1
- package/cjs/components/UploadImageDialog/TargetBox/styles.d.ts +1 -1
- package/cjs/components/UploadImageDialog/UploadImageDialog.d.ts +0 -1
- package/cjs/components/UserSelector/UserSelector.d.ts +0 -1
- package/cjs/components/ValueChip/ValueChip.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/VerticalHeadingsTable/TableCellWithDnd/TableCellWithDnd.d.ts +0 -1
- package/cjs/components/VerticalHeadingsTable/TableColumnDragLayer/TableColumnDragLayer.d.ts +0 -1
- package/cjs/components/VerticalHeadingsTable/TableColumnDragLayer/TableColumnDragPreview.d.ts +0 -1
- package/cjs/components/VerticalHeadingsTable/TableRow/TableRow.d.ts +0 -1
- package/cjs/components/VerticalHeadingsTable/TableRowWithDnd/TableRowWithDnd.d.ts +0 -1
- package/cjs/components/VerticalHeadingsTable/types.d.ts +0 -1
- package/cjs/components/commonReactSelectComponents/DropdownIndicatorWithIconButton.js +2 -2
- package/cjs/components/commonReactSelectComponents/MenuList.d.ts +0 -1
- 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 +8 -6
- package/cjs/components/crosswalks/AttributesTable/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/DefaultCellValueRenderer.d.ts +0 -1
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/OvValuesRenderer.js +5 -2
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RowCellRenderer.d.ts +0 -1
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.d.ts +0 -1
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.js +3 -3
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/RuleTypeRenderer.d.ts +0 -1
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/WinnerSourcesRenderer.d.ts +0 -1
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- package/cjs/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.d.ts +0 -1
- package/cjs/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.js +2 -2
- package/cjs/components/crosswalks/CrosswalkEditor/CrosswalkEditor.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.d.ts +0 -1
- package/cjs/components/crosswalks/hooks/useAttributeActions.d.ts +1 -1
- package/cjs/components/crosswalks/hooks/useAttributeActions.js +1 -1
- package/cjs/components/crosswalks/hooks/useModifiedEntity.d.ts +3 -3
- package/cjs/components/crosswalks/types/AttributesTableData.d.ts +2 -3
- package/cjs/components/crosswalks/types/CrosswalksByOwnerTypeMap.d.ts +1 -1
- package/cjs/components/editors/BooleanRadioEditor/BooleanRadioEditor.d.ts +0 -1
- package/cjs/components/editors/CustomDateRangeEditor/CustomDateRangeEditor.d.ts +0 -1
- package/cjs/components/editors/DateEditor/DateEditor.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/editors/NumberEditor/NumberEditor.d.ts +0 -1
- package/cjs/components/editors/TimestampEditor/TimestampEditor.d.ts +0 -1
- package/cjs/components/history/ContributorsPanel/ContributorItem.d.ts +0 -1
- package/cjs/components/history/ContributorsPanel/ContributorsPanel.d.ts +0 -1
- package/cjs/components/history/DateRangeSelector/DateRangeSelector.d.ts +0 -1
- package/cjs/components/history/HistoryActivitySelector/HistoryActivitySelector.d.ts +0 -1
- package/cjs/components/history/HistoryFilterButton/HistoryFilterButton.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/history/HistoryHeader/HistoryHeader.d.ts +0 -1
- package/cjs/components/history/HistoryHeader/styles.d.ts +1 -1
- package/cjs/components/history/HistoryMenuButton/HistoryMenuButton.d.ts +0 -1
- package/cjs/components/history/HistoryMenuButton/HistoryMenuButton.js +3 -3
- package/cjs/components/history/HistoryPanelEmptyState/HistoryPanelEmptyState.d.ts +0 -1
- package/cjs/components/history/HistoryRow/HistoryRow.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/history/ProfileBandHistory/ProfileBandHistory.d.ts +0 -1
- package/cjs/components/history/hooks/useHistorySlice.js +22 -15
- 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 +0 -49
- package/cjs/components/index.js +3 -100
- package/cjs/components/workflow/cards/DataChangeRequestTaskCard/DataChangeRequestTaskCard.d.ts +0 -1
- package/cjs/components/workflow/cards/GenericWorkflowTaskCard/styles.d.ts +1 -1
- package/cjs/components/workflow/cards/PotentialMatchTaskCard/PotentialMatchTaskCard.d.ts +0 -1
- package/cjs/components/workflow/cards/WorkflowTaskCard.d.ts +0 -1
- package/cjs/components/workflow/cards/WorkflowTaskCardsFactory.d.ts +0 -1
- package/cjs/components/workflow/components/AddWorkflowButton/AddWorkflowButton.d.ts +0 -1
- package/cjs/components/workflow/components/AddWorkflowButton/styles.d.ts +1 -1
- package/cjs/components/workflow/components/AddWorkflowDialog/AddWorkflowDialog.d.ts +0 -1
- package/cjs/components/workflow/components/AddWorkflowDialog/styles.d.ts +1 -1
- package/cjs/components/workflow/components/AssigneeSelector/AssigneeSelector.d.ts +0 -1
- package/cjs/components/workflow/components/AttributesChanges/AttributesChanges.d.ts +0 -1
- package/cjs/components/workflow/components/AttributesChanges/components/ChangeView/styles.d.ts +1 -1
- package/cjs/components/workflow/components/AttributesChanges/components/DCRChangesList/DCRChangesList.d.ts +0 -1
- package/cjs/components/workflow/components/AttributesChanges/components/DiffRenderer/DiffRenderer.d.ts +0 -1
- package/cjs/components/workflow/components/AttributesChanges/components/ShowMoreLink/ShowMoreLink.d.ts +0 -1
- 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 +0 -1
- package/cjs/components/workflow/components/LineDecorator/styles.d.ts +1 -1
- package/cjs/components/workflow/components/PrioritySelector/PrioritySelector.d.ts +0 -1
- package/cjs/components/workflow/components/ReassignButton/ReassignButton.d.ts +0 -1
- package/cjs/components/workflow/components/ReassignButton/ReassignButton.js +1 -1
- package/cjs/components/workflow/components/ReassignButton/ReassignDialog.d.ts +0 -1
- package/cjs/components/workflow/components/ReassignButton/styles.d.ts +1 -1
- package/cjs/components/workflow/components/TaskActionButtons/TaskActionButtons.d.ts +0 -1
- package/cjs/components/workflow/components/TaskActions/TaskActions.d.ts +0 -1
- package/cjs/components/workflow/components/TaskActions/TaskActions.js +3 -3
- package/cjs/components/workflow/components/WorkflowComments/Comment.d.ts +0 -1
- package/cjs/components/workflow/components/WorkflowComments/ExpandedComments.d.ts +0 -1
- package/cjs/components/workflow/components/WorkflowComments/WorkflowComments.d.ts +0 -1
- package/cjs/components/workflow/components/WorkflowComments/WorkflowComments.js +1 -1
- package/cjs/components/workflow/components/WorkflowComments/styles.d.ts +2 -2
- package/cjs/contexts/BasicTableContext/index.d.ts +2 -0
- package/cjs/contexts/BasicTableContext/index.js +9 -0
- package/cjs/contexts/MdmModuleContext/hooks.d.ts +1 -0
- package/cjs/contexts/MdmModuleContext/hooks.js +7 -1
- package/cjs/contexts/MdmModuleContext/index.d.ts +1 -1
- package/cjs/contexts/MdmModuleContext/index.js +2 -1
- package/cjs/contexts/RowCollapseContext/index.d.ts +2 -0
- package/cjs/features/activity-log/ActivitiesFactory/ActivitiesFactory.d.ts +10 -0
- package/cjs/features/activity-log/ActivitiesFactory/ActivitiesFactory.js +128 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.d.ts +7 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.js +13 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.test.js +33 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/CommentActivity/index.js +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.d.ts +7 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.js +20 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.test.js +66 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/GroupActivity/index.js +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.d.ts +7 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.js +20 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.test.js +113 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/MergeActivity/index.js +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/ObjectLabel.d.ts +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/ObjectLabel.js +14 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/index.js +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/styles.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ObjectLabel/styles.js +11 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.d.ts +7 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.js +17 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.test.js +60 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/index.js +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.d.ts +7 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.js +20 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.test.js +133 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/ProfileActivity/index.js +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.d.ts +7 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.js +20 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.test.js +143 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/RelationActivity/index.js +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.d.ts +7 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.js +51 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.test.js +228 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/index.js +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SearchActivity/styles.js +12 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.d.ts +7 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.js +24 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.test.js +50 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/index.js +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity/styles.js +12 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.d.ts +7 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.js +27 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.test.js +70 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/index.js +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/styles.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/styles.js +10 -0
- package/cjs/features/activity-log/ActivitiesFactory/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/index.js +5 -0
- package/cjs/features/activity-log/ActivityExportButton/ActivityExportButton.d.ts +7 -0
- package/cjs/features/activity-log/ActivityExportButton/ActivityExportButton.js +81 -0
- package/cjs/features/activity-log/ActivityExportButton/ActivityExportButton.specs.d.ts +1 -0
- package/cjs/features/activity-log/ActivityExportButton/ActivityExportButton.specs.js +166 -0
- package/cjs/features/activity-log/ActivityExportButton/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityExportButton/index.js +5 -0
- package/cjs/features/activity-log/ActivityFilterButton/ActivityFilterButton.d.ts +9 -0
- package/cjs/features/activity-log/ActivityFilterButton/ActivityFilterButton.js +68 -0
- package/cjs/features/activity-log/ActivityFilterButton/ActivityFilterButton.specs.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterButton/ActivityFilterButton.specs.js +131 -0
- package/cjs/features/activity-log/ActivityFilterButton/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterButton/index.js +5 -0
- package/cjs/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.d.ts +13 -0
- package/cjs/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.js +76 -0
- package/cjs/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.specs.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.specs.js +258 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.d.ts +8 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.js +34 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.specs.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.specs.js +158 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/ActivitySelector/index.js +5 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.d.ts +7 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.js +125 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.specs.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.specs.js +185 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/index.js +5 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/styles.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/styles.js +70 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.d.ts +9 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.js +27 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.specs.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.specs.js +159 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/index.js +5 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.d.ts +8 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.js +30 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.specs.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.specs.js +65 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/index.js +5 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.d.ts +7 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.js +30 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.specs.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.specs.js +119 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/components/SourceSelector/index.js +5 -0
- package/cjs/features/activity-log/ActivityFilterEditor/editor.test-data.d.ts +25 -0
- package/cjs/features/activity-log/ActivityFilterEditor/editor.test-data.js +75 -0
- package/cjs/features/activity-log/ActivityFilterEditor/helpers.js +35 -0
- package/cjs/features/activity-log/ActivityFilterEditor/helpers.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/helpers.test.js +97 -0
- package/cjs/features/activity-log/ActivityFilterEditor/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityFilterEditor/index.js +5 -0
- package/cjs/features/activity-log/ActivityFilterEditor/styles.d.ts +5 -0
- package/cjs/features/activity-log/ActivityLog/ActivityLog.d.ts +7 -0
- package/cjs/features/activity-log/ActivityLog/ActivityLog.js +73 -0
- package/cjs/features/activity-log/ActivityLog/ActivityLog.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivityLog/ActivityLog.test.js +213 -0
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.d.ts +6 -0
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.js +28 -0
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.test.js +140 -0
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityLog/components/ActivityItem/index.js +5 -0
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/GroupItem.d.ts +7 -0
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/GroupItem.js +23 -0
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/GroupItem.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/GroupItem.test.js +41 -0
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityLog/components/GroupItem/index.js +5 -0
- package/cjs/features/activity-log/ActivityLog/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityLog/index.js +5 -0
- package/cjs/features/activity-log/ActivityLogFilter/ActivityLogFilter.d.ts +11 -0
- package/cjs/features/activity-log/ActivityLogFilter/ActivityLogFilter.js +43 -0
- package/cjs/features/activity-log/ActivityLogFilter/ActivityLogFilter.specs.d.ts +1 -0
- package/cjs/features/activity-log/ActivityLogFilter/ActivityLogFilter.specs.js +88 -0
- package/cjs/features/activity-log/ActivityLogFilter/helpers.specs.d.ts +1 -0
- package/cjs/features/activity-log/ActivityLogFilter/helpers.specs.js +436 -0
- package/cjs/features/activity-log/ActivityLogFilter/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityLogFilter/index.js +5 -0
- package/cjs/features/activity-log/ActivityLogFilter/styles.d.ts +1 -0
- package/cjs/features/activity-log/ActivityTitle/ActivityTitle.d.ts +8 -0
- package/cjs/features/activity-log/ActivityTitle/ActivityTitle.js +17 -0
- package/cjs/features/activity-log/ActivityTitle/ActivityTitle.test.d.ts +1 -0
- package/cjs/features/activity-log/ActivityTitle/ActivityTitle.test.js +19 -0
- package/cjs/features/activity-log/ActivityTitle/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivityTitle/index.js +5 -0
- package/cjs/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.d.ts +9 -0
- package/cjs/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.js +21 -0
- package/cjs/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.test.d.ts +1 -0
- package/cjs/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.test.js +94 -0
- package/cjs/features/activity-log/CollapsibleActivityRecords/index.d.ts +1 -0
- package/cjs/features/activity-log/CollapsibleActivityRecords/index.js +5 -0
- package/cjs/features/activity-log/EntityObject/EntityObject.d.ts +6 -0
- package/cjs/features/activity-log/EntityObject/EntityObject.js +20 -0
- package/cjs/features/activity-log/EntityObject/EntityObject.test.d.ts +1 -0
- package/cjs/features/activity-log/EntityObject/EntityObject.test.js +46 -0
- package/cjs/features/activity-log/EntityObject/index.d.ts +1 -0
- package/cjs/features/activity-log/EntityObject/index.js +5 -0
- package/cjs/features/activity-log/EntityRecord/EntityRecord.d.ts +6 -0
- package/cjs/features/activity-log/EntityRecord/EntityRecord.js +45 -0
- package/cjs/features/activity-log/EntityRecord/EntityRecord.test.d.ts +1 -0
- package/cjs/features/activity-log/EntityRecord/EntityRecord.test.js +247 -0
- package/cjs/features/activity-log/EntityRecord/index.d.ts +1 -0
- package/cjs/features/activity-log/EntityRecord/index.js +5 -0
- package/cjs/features/activity-log/EntityRecord/styles.d.ts +1 -0
- package/cjs/features/activity-log/EntityRecord/styles.js +14 -0
- package/cjs/features/activity-log/Field/Field.d.ts +7 -0
- package/cjs/features/activity-log/Field/Field.js +18 -0
- package/cjs/features/activity-log/Field/index.d.ts +1 -0
- package/cjs/features/activity-log/Field/index.js +5 -0
- package/cjs/features/activity-log/Field/styles.d.ts +1 -0
- package/cjs/features/activity-log/Field/styles.js +17 -0
- package/cjs/features/activity-log/MoreItemsLink/MoreItemsLink.d.ts +8 -0
- package/cjs/features/activity-log/MoreItemsLink/index.d.ts +1 -0
- package/cjs/features/activity-log/MoreItemsLink/index.js +5 -0
- package/cjs/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.d.ts +6 -0
- package/cjs/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.js +20 -0
- package/cjs/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.test.d.ts +1 -0
- package/cjs/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.test.js +57 -0
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.d.ts +6 -0
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.js +36 -0
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.test.d.ts +1 -0
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.test.js +179 -0
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/helpers.d.ts +2 -0
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/helpers.js +22 -0
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/index.d.ts +1 -0
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/index.js +5 -0
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/styles.d.ts +1 -0
- package/cjs/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/styles.js +18 -0
- package/cjs/features/activity-log/PotentialMatchRecord/index.d.ts +1 -0
- package/cjs/features/activity-log/PotentialMatchRecord/index.js +5 -0
- package/cjs/features/activity-log/Record/Record.d.ts +6 -0
- package/cjs/features/activity-log/Record/Record.js +14 -0
- package/cjs/features/activity-log/Record/index.d.ts +1 -0
- package/cjs/features/activity-log/Record/index.js +5 -0
- package/cjs/features/activity-log/Record/styles.d.ts +1 -0
- package/cjs/features/activity-log/Record/styles.js +18 -0
- package/cjs/features/activity-log/RecordLabel/RecordLabel.d.ts +7 -0
- package/cjs/features/activity-log/RecordLabel/RecordLabel.js +17 -0
- package/cjs/features/activity-log/RecordLabel/index.d.ts +1 -0
- package/cjs/features/activity-log/RecordLabel/index.js +5 -0
- package/cjs/features/activity-log/RecordLabel/styles.d.ts +1 -0
- package/cjs/features/activity-log/RecordLabel/styles.js +15 -0
- package/cjs/features/activity-log/RecordUpdates/RecordUpdates.d.ts +7 -0
- package/cjs/features/activity-log/RecordUpdates/RecordUpdates.js +24 -0
- package/cjs/features/activity-log/RecordUpdates/RecordUpdates.specs.d.ts +1 -0
- package/cjs/features/activity-log/RecordUpdates/RecordUpdates.specs.js +150 -0
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.d.ts +6 -0
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.js +39 -0
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.test.d.ts +1 -0
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.test.js +124 -0
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/index.d.ts +1 -0
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/index.js +5 -0
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/styles.d.ts +1 -0
- package/cjs/features/activity-log/RecordUpdates/components/DeltaField/styles.js +36 -0
- package/cjs/features/activity-log/RecordUpdates/index.d.ts +1 -0
- package/cjs/features/activity-log/RecordUpdates/index.js +5 -0
- package/cjs/features/activity-log/RecordUpdates/styles.d.ts +1 -0
- package/cjs/features/activity-log/RecordUpdates/styles.js +9 -0
- package/cjs/features/activity-log/RelationObject/RelationObject.d.ts +6 -0
- package/cjs/features/activity-log/RelationObject/RelationObject.js +21 -0
- package/cjs/features/activity-log/RelationObject/RelationObject.test.d.ts +1 -0
- package/cjs/features/activity-log/RelationObject/RelationObject.test.js +39 -0
- package/cjs/features/activity-log/RelationObject/index.d.ts +1 -0
- package/cjs/features/activity-log/RelationObject/index.js +5 -0
- package/cjs/features/activity-log/RelationRecord/RelationRecord.d.ts +6 -0
- package/cjs/features/activity-log/RelationRecord/RelationRecord.js +22 -0
- package/cjs/features/activity-log/RelationRecord/RelationRecord.test.d.ts +1 -0
- package/cjs/features/activity-log/RelationRecord/RelationRecord.test.js +93 -0
- package/cjs/features/activity-log/RelationRecord/index.d.ts +1 -0
- package/cjs/features/activity-log/RelationRecord/index.js +5 -0
- package/cjs/features/activity-log/contexts/CollapsibleItemsContext.d.ts +14 -0
- package/cjs/features/activity-log/hooks/useActivitiesLoader.js +64 -0
- package/cjs/features/activity-log/index.d.ts +7 -0
- package/cjs/features/activity-log/index.js +15 -0
- package/cjs/features/activity-log/types.d.ts +98 -0
- package/cjs/features/activity-log/types.js +41 -0
- package/cjs/features/activity-log/utils/activities.test.d.ts +1 -0
- package/cjs/features/activity-log/utils/activities.test.js +605 -0
- package/cjs/features/activity-log/utils/filters.test.d.ts +1 -0
- package/cjs/features/activity-log/utils/filters.test.js +242 -0
- package/cjs/helpers/attributesView.d.ts +16 -0
- package/cjs/helpers/attributesView.js +80 -0
- package/cjs/helpers/attributesView.test.d.ts +1 -0
- package/cjs/helpers/attributesView.test.js +95 -0
- package/cjs/helpers/basicTable.d.ts +18 -0
- package/cjs/helpers/basicTable.js +78 -0
- package/cjs/helpers/basicTable.test.d.ts +1 -0
- package/cjs/helpers/basicTable.test.js +40 -0
- package/cjs/helpers/charts.d.ts +2 -0
- package/cjs/helpers/charts.js +21 -0
- package/cjs/hooks/useBasicTableCellRenderer/CellRenderer.d.ts +12 -0
- package/cjs/hooks/useBasicTableCellRenderer/CellRenderer.js +46 -0
- package/cjs/hooks/useBasicTableCellRenderer/CellRenderer.test.d.ts +1 -0
- package/cjs/hooks/useBasicTableCellRenderer/CellRenderer.test.js +56 -0
- package/cjs/hooks/useBasicTableCellRenderer/index.d.ts +2 -0
- package/cjs/hooks/useBasicTableCellRenderer/index.js +7 -0
- package/cjs/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.d.ts +22 -0
- package/cjs/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.js +33 -0
- package/cjs/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.test.d.ts +1 -0
- package/cjs/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.test.js +128 -0
- package/cjs/hooks/useChartTooltipState.d.ts +7 -0
- package/cjs/hooks/useChartTooltipState.js +31 -0
- package/cjs/hooks/useClickableChartStyle.d.ts +1 -0
- package/cjs/hooks/useClickableChartStyle.js +14 -0
- package/cjs/hooks/useCollapsibleTableRows/dataHelpers.d.ts +2 -0
- package/cjs/hooks/useCollapsibleTableRows/dataHelpers.js +95 -0
- package/cjs/hooks/useCollapsibleTableRows/dataHelpers.test.d.ts +1 -0
- package/cjs/hooks/useCollapsibleTableRows/dataHelpers.test.js +324 -0
- package/cjs/hooks/useCollapsibleTableRows/index.d.ts +1 -0
- package/cjs/hooks/useCollapsibleTableRows/index.js +5 -0
- package/cjs/hooks/useCollapsibleTableRows/nestedHelpers.test.d.ts +1 -0
- package/cjs/hooks/useCollapsibleTableRows/nestedHelpers.test.js +166 -0
- package/cjs/hooks/useCollapsibleTableRows/useCollapsibleTableRows.d.ts +19 -0
- package/cjs/hooks/useCollapsibleTableRows/useCollapsibleTableRows.js +49 -0
- package/cjs/hooks/useCollapsibleTableRows/useCollapsibleTableRows.test.d.ts +1 -0
- package/cjs/hooks/useCollapsibleTableRows/useCollapsibleTableRows.test.js +164 -0
- package/cjs/hooks/useDynamicRowCellHeight.d.ts +13 -0
- package/cjs/hooks/useDynamicRowCellHeight.js +44 -0
- package/cjs/hooks/useLayoutResetter.d.ts +0 -1
- 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/useScrollToAttribute/useScrollToAttribute.d.ts +9 -0
- package/cjs/hooks/useSnackbar.d.ts +0 -1
- package/cjs/index.d.ts +83 -2
- package/cjs/index.js +180 -2
- package/cjs/test-utils/TestPerspectiveSettingsProvider.d.ts +8 -0
- package/cjs/test-utils/TestPerspectiveSettingsProvider.js +55 -0
- package/cjs/test-utils/TestStylesProvider.d.ts +3 -0
- package/cjs/test-utils/TestStylesProvider.js +26 -0
- package/cjs/test-utils/index.d.ts +18 -0
- package/cjs/test-utils/index.js +119 -0
- package/cjs/types/basicTable.d.ts +82 -0
- package/cjs/types/charts.d.ts +16 -0
- package/cjs/types/index.d.ts +22 -1
- package/cjs/types/index.js +7 -1
- package/cjs/types/inlineAttributes.d.ts +24 -0
- package/esm/ActionButton/ActionButton.d.ts +14 -0
- package/esm/ActionButton/ActionButton.js +66 -0
- package/esm/ActionButton/ActionButton.spec.d.ts +1 -0
- package/esm/ActionButton/ActionButton.spec.js +190 -0
- package/esm/ActionButton/index.d.ts +1 -0
- package/esm/ActionButton/index.js +1 -0
- package/esm/ActionButton/styles.d.ts +1 -0
- package/esm/ActionButton/styles.js +54 -0
- package/esm/ActionsPanel/ActionsPanel.d.ts +16 -0
- package/esm/ActionsPanel/ActionsPanel.js +48 -0
- package/esm/ActionsPanel/ActionsPanel.test.d.ts +1 -0
- package/esm/ActionsPanel/ActionsPanel.test.js +80 -0
- package/esm/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.d.ts +8 -0
- package/esm/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.js +32 -0
- package/esm/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.spec.d.ts +1 -0
- package/esm/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.spec.js +73 -0
- package/esm/ActionsPanel/components/MenuItemRenderer/index.d.ts +1 -0
- package/esm/ActionsPanel/components/MenuItemRenderer/index.js +1 -0
- package/esm/ActionsPanel/index.d.ts +1 -0
- package/esm/ActionsPanel/index.js +1 -0
- package/esm/ActionsPanel/types.d.ts +5 -0
- package/esm/ActionsPanel/types.js +1 -0
- package/esm/ArrowExpandButton/ArrowExpandButton.d.ts +7 -0
- package/esm/ArrowExpandButton/ArrowExpandButton.js +33 -0
- package/esm/ArrowExpandButton/index.d.ts +1 -0
- package/esm/ArrowExpandButton/index.js +1 -0
- package/esm/AttributeGroupIcon/AttributeGroupIcon.d.ts +10 -0
- package/esm/AttributeGroupIcon/AttributeGroupIcon.js +13 -0
- package/esm/AttributeGroupIcon/AttributeGroupIcon.spec.d.ts +1 -0
- package/esm/AttributeGroupIcon/AttributeGroupIcon.spec.js +51 -0
- package/esm/AttributeGroupIcon/index.d.ts +1 -0
- package/esm/AttributeGroupIcon/index.js +1 -0
- package/esm/AttributeListItem/AttributeListItem.d.ts +41 -0
- package/esm/AttributeListItem/AttributeListItem.js +45 -0
- package/esm/AttributeListItem/AttributeListItem.spec.d.ts +1 -0
- package/esm/AttributeListItem/AttributeListItem.spec.js +149 -0
- package/esm/AttributeListItem/components/AttrTypeIcon/AttrTypeIcon.d.ts +6 -0
- package/esm/AttributeListItem/components/AttrTypeIcon/AttrTypeIcon.js +23 -0
- package/esm/AttributeListItem/components/AttrTypeIcon/index.d.ts +1 -0
- package/esm/AttributeListItem/components/AttrTypeIcon/index.js +1 -0
- package/esm/AttributeListItem/components/AttrTypeIcon/styles.js +11 -0
- package/esm/AttributeListItem/index.d.ts +1 -0
- package/esm/AttributeListItem/index.js +1 -0
- package/esm/AttributeListItem/styles.d.ts +1 -0
- package/esm/AttributeListItem/styles.js +86 -0
- package/esm/AttributeSelector/AttributeSelector.d.ts +13 -0
- package/esm/AttributeSelector/AttributeSelector.js +77 -0
- package/esm/AttributeSelector/AttributeSelector.specs.d.ts +1 -0
- package/esm/AttributeSelector/AttributeSelector.specs.js +272 -0
- package/esm/AttributeSelector/index.d.ts +1 -0
- package/esm/AttributeSelector/index.js +1 -0
- package/esm/AttributesErrorsPanel/AttributesErrorsPanel.d.ts +6 -0
- package/esm/AttributesErrorsPanel/AttributesErrorsPanel.js +53 -0
- package/esm/AttributesErrorsPanel/AttributesErrorsPanel.specs.d.ts +1 -0
- package/esm/AttributesErrorsPanel/AttributesErrorsPanel.specs.js +115 -0
- package/esm/AttributesErrorsPanel/components/Error/Error.js +33 -0
- package/esm/AttributesErrorsPanel/components/Error/Error.specs.d.ts +1 -0
- package/esm/AttributesErrorsPanel/components/Error/Error.specs.js +245 -0
- package/esm/AttributesErrorsPanel/components/Error/helpers.d.ts +4 -0
- package/esm/AttributesErrorsPanel/components/Error/helpers.js +28 -0
- package/esm/AttributesErrorsPanel/components/Error/index.d.ts +1 -0
- package/esm/AttributesErrorsPanel/components/Error/index.js +1 -0
- package/esm/AttributesErrorsPanel/components/Error/styles.d.ts +1 -0
- package/esm/AttributesErrorsPanel/components/Error/styles.js +48 -0
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.js +25 -0
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.specs.d.ts +1 -0
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.specs.js +95 -0
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/index.d.ts +1 -0
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/index.js +1 -0
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/styles.d.ts +1 -0
- package/esm/AttributesErrorsPanel/components/ErrorsPanel/styles.js +47 -0
- package/esm/AttributesErrorsPanel/helpers.d.ts +2 -0
- package/esm/AttributesErrorsPanel/helpers.js +7 -0
- package/esm/AttributesErrorsPanel/index.d.ts +1 -0
- package/esm/AttributesErrorsPanel/index.js +1 -0
- package/esm/AttributesErrorsPanel/styles.d.ts +1 -0
- package/esm/AttributesErrorsPanel/styles.js +26 -0
- package/esm/AttributesErrorsPanel/useCachedErrors.js +17 -0
- package/esm/AttributesFilterSelector/AttributesFilterSelector.d.ts +8 -0
- package/esm/AttributesFilterSelector/AttributesFilterSelector.js +35 -0
- package/esm/AttributesFilterSelector/AttributesFilterSelector.test.d.ts +1 -0
- package/esm/AttributesFilterSelector/AttributesFilterSelector.test.js +113 -0
- package/esm/AttributesFilterSelector/index.d.ts +1 -0
- package/esm/AttributesFilterSelector/index.js +1 -0
- package/esm/AttributesFilterSelector/styles.d.ts +1 -0
- package/esm/AttributesFilterSelector/styles.js +6 -0
- package/esm/AttributesFiltersBuilder/AttributesFiltersBuilder.d.ts +17 -0
- package/esm/AttributesFiltersBuilder/AttributesFiltersBuilder.js +100 -0
- package/esm/AttributesFiltersBuilder/AttributesFiltersBuilder.test.d.ts +1 -0
- package/esm/AttributesFiltersBuilder/AttributesFiltersBuilder.test.js +373 -0
- package/esm/AttributesFiltersBuilder/attributes.test-data.d.ts +49 -0
- package/esm/AttributesFiltersBuilder/attributes.test-data.js +80 -0
- package/esm/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.js +31 -0
- package/esm/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.test.d.ts +1 -0
- package/esm/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.test.js +101 -0
- package/esm/AttributesFiltersBuilder/components/AttributeSelector/index.d.ts +1 -0
- package/esm/AttributesFiltersBuilder/components/AttributeSelector/index.js +1 -0
- package/esm/AttributesFiltersBuilder/components/RowActions/RowActions.js +27 -0
- package/esm/AttributesFiltersBuilder/components/RowActions/RowActions.test.d.ts +1 -0
- package/esm/AttributesFiltersBuilder/components/RowActions/RowActions.test.js +106 -0
- package/esm/AttributesFiltersBuilder/components/RowActions/index.d.ts +1 -0
- package/esm/AttributesFiltersBuilder/components/RowActions/index.js +1 -0
- package/esm/AttributesFiltersBuilder/helpers.d.ts +13 -0
- package/esm/AttributesFiltersBuilder/index.d.ts +2 -0
- package/esm/AttributesFiltersBuilder/index.js +1 -0
- package/esm/AttributesFiltersBuilder/metadata.test-data.d.ts +62 -0
- package/esm/AttributesFiltersBuilder/metadata.test-data.js +58 -0
- package/esm/AttributesFiltersBuilder/types.d.ts +20 -0
- package/esm/AttributesFiltersBuilder/types.js +1 -0
- package/esm/AttributesFiltersButton/AttributesFiltersButton.d.ts +24 -0
- package/esm/AttributesFiltersButton/AttributesFiltersButton.js +66 -0
- package/esm/AttributesFiltersButton/AttributesFiltersButton.test.d.ts +1 -0
- package/esm/AttributesFiltersButton/AttributesFiltersButton.test.js +163 -0
- package/esm/AttributesFiltersButton/components/ActionButtons/ActionButtons.d.ts +7 -0
- package/esm/AttributesFiltersButton/components/ActionButtons/ActionButtons.js +12 -0
- package/esm/AttributesFiltersButton/components/ActionButtons/ActionButtons.test.d.ts +1 -0
- package/esm/AttributesFiltersButton/components/ActionButtons/ActionButtons.test.js +41 -0
- package/esm/AttributesFiltersButton/components/ActionButtons/index.d.ts +1 -0
- package/esm/AttributesFiltersButton/components/ActionButtons/index.js +1 -0
- package/esm/AttributesFiltersButton/index.d.ts +1 -0
- package/esm/AttributesFiltersButton/index.js +1 -0
- package/esm/AttributesValuesEditor/AttributesValuesEditor.d.ts +4 -0
- package/esm/AttributesValuesEditor/AttributesValuesEditor.js +38 -0
- package/esm/AttributesValuesEditor/AttributesValuesEditor.test.d.ts +1 -0
- package/esm/AttributesValuesEditor/AttributesValuesEditor.test.js +88 -0
- package/esm/AttributesValuesEditor/index.d.ts +1 -0
- package/esm/AttributesValuesEditor/index.js +1 -0
- package/esm/AttributesView/AttributesView.d.ts +12 -0
- package/esm/AttributesView/AttributesView.js +36 -0
- package/esm/AttributesView/AttributesView.test.d.ts +1 -0
- package/esm/AttributesView/AttributesView.test.js +56 -0
- package/esm/AttributesView/index.d.ts +1 -0
- package/esm/AttributesView/index.js +1 -0
- package/esm/AutoSizeList/AutoSizeList.d.ts +17 -0
- package/esm/AutoSizeList/AutoSizeList.test.d.ts +1 -0
- package/esm/AutoSizeList/AutoSizeList.test.js +99 -0
- package/esm/AutoSizeList/index.d.ts +1 -0
- package/esm/AutoSizeList/index.js +1 -0
- package/esm/AvatarWithFallback/AvatarWithFallback.d.ts +12 -0
- package/esm/AvatarWithFallback/AvatarWithFallback.js +50 -0
- package/esm/AvatarWithFallback/AvatarWithFallback.specs.d.ts +1 -0
- package/esm/AvatarWithFallback/AvatarWithFallback.specs.js +22 -0
- package/esm/AvatarWithFallback/index.d.ts +1 -0
- package/esm/AvatarWithFallback/index.js +1 -0
- package/esm/AvatarWithFallback/types.d.ts +5 -0
- package/esm/AvatarWithFallback/types.js +6 -0
- package/esm/BarChart/BarChart.d.ts +8 -0
- package/esm/BarChart/BarChart.js +31 -0
- package/esm/BarChart/BarChart.test.d.ts +1 -0
- package/esm/BarChart/BarChart.test.js +117 -0
- package/esm/BarChart/helpers.d.ts +13 -0
- package/esm/BarChart/helpers.js +51 -0
- package/esm/BarChart/index.d.ts +1 -0
- package/esm/BarChart/index.js +1 -0
- package/esm/BasicAttributeSelector/BasicAttributeSelector.d.ts +4 -0
- package/esm/BasicAttributeSelector/BasicAttributeSelector.js +68 -0
- package/esm/BasicAttributeSelector/BasicAttributeSelector.spec.d.ts +1 -0
- package/esm/BasicAttributeSelector/BasicAttributeSelector.spec.js +20 -0
- package/esm/BasicAttributeSelector/components/AttributeTitle/AttributeTitle.d.ts +13 -0
- package/esm/BasicAttributeSelector/components/AttributeTitle/AttributeTitle.js +21 -0
- package/esm/BasicAttributeSelector/components/AttributeTitle/index.d.ts +1 -0
- package/esm/BasicAttributeSelector/components/AttributeTitle/index.js +1 -0
- package/esm/BasicAttributeSelector/components/AttributeTitle/styles.d.ts +1 -0
- package/esm/BasicAttributeSelector/components/AttributeTitle/styles.js +41 -0
- package/esm/BasicAttributeSelector/constants.d.ts +3 -0
- package/esm/BasicAttributeSelector/constants.js +3 -0
- package/esm/BasicAttributeSelector/helpers.d.ts +20 -0
- package/esm/BasicAttributeSelector/helpers.js +69 -0
- package/esm/BasicAttributeSelector/index.d.ts +1 -0
- package/esm/BasicAttributeSelector/index.js +1 -0
- package/esm/BasicAttributeSelector/styles.d.ts +1 -0
- package/esm/BasicAttributeSelector/styles.js +12 -0
- package/esm/BasicTable/BasicTable.d.ts +2 -0
- package/esm/BasicTable/BasicTable.js +60 -0
- package/esm/BasicTable/BasicTable.test.d.ts +1 -0
- package/esm/BasicTable/BasicTable.test.js +277 -0
- package/esm/BasicTable/IntegrationBasicTable.test.d.ts +1 -0
- package/esm/BasicTable/IntegrationBasicTable.test.js +169 -0
- package/esm/BasicTable/basicTableViewState.js +80 -0
- package/esm/BasicTable/basicTableViewState.test.d.ts +1 -0
- package/esm/BasicTable/basicTableViewState.test.js +73 -0
- package/esm/BasicTable/helpers.d.ts +1 -0
- package/esm/BasicTable/helpers.js +27 -0
- package/esm/BasicTable/helpers.test.d.ts +1 -0
- package/esm/BasicTable/helpers.test.js +87 -0
- package/esm/BasicTable/index.d.ts +2 -0
- package/esm/BasicTable/index.js +2 -0
- package/esm/BasicTablePagination/BasicTablePagination.js +45 -0
- package/esm/BasicTablePagination/BasicTablePagination.test.d.ts +1 -0
- package/esm/BasicTablePagination/BasicTablePagination.test.js +117 -0
- package/esm/BasicTablePagination/index.d.ts +1 -0
- package/esm/BasicTablePagination/index.js +1 -0
- package/esm/BasicView/BasicView.d.ts +11 -0
- package/esm/BasicView/BasicView.js +31 -0
- package/esm/BasicView/BasicView.test.d.ts +1 -0
- package/esm/BasicView/BasicView.test.js +13 -0
- package/esm/BasicView/index.d.ts +1 -0
- package/esm/BasicView/index.js +1 -0
- package/esm/BasicViewContent/BasicViewContent.d.ts +4 -0
- package/esm/BasicViewContent/BasicViewContent.js +30 -0
- package/esm/BasicViewContent/BasicViewContent.test.d.ts +1 -0
- package/esm/BasicViewContent/BasicViewContent.test.js +12 -0
- package/esm/BasicViewContent/index.d.ts +1 -0
- package/esm/BasicViewContent/index.js +1 -0
- package/esm/BasicViewHeader/BasicViewHeader.d.ts +7 -0
- package/esm/BasicViewHeader/BasicViewHeader.js +34 -0
- package/esm/BasicViewHeader/BasicViewHeader.test.d.ts +1 -0
- package/esm/BasicViewHeader/BasicViewHeader.test.js +41 -0
- package/esm/BasicViewHeader/index.d.ts +1 -0
- package/esm/BasicViewHeader/index.js +1 -0
- package/esm/BasicViewHeader/styles.d.ts +1 -0
- package/esm/BlobRenderer/BlobRenderer.d.ts +6 -0
- package/esm/BlobRenderer/BlobRenderer.js +7 -0
- package/esm/BlobRenderer/BlobRenderer.test.d.ts +1 -0
- package/esm/BlobRenderer/BlobRenderer.test.js +18 -0
- package/esm/BlobRenderer/index.d.ts +1 -0
- package/esm/BlobRenderer/index.js +1 -0
- package/esm/BlobRenderer/styles.d.ts +1 -0
- package/esm/BlobRenderer/styles.js +13 -0
- package/esm/BranchDecorator/BranchDecorator.d.ts +9 -0
- package/esm/BranchDecorator/BranchDecorator.js +10 -0
- package/esm/BranchDecorator/index.d.ts +1 -0
- package/esm/BranchDecorator/index.js +1 -0
- package/esm/BranchDecorator/styles.d.ts +1 -0
- package/esm/BubbleChart/BubbleChart.d.ts +15 -0
- package/esm/BubbleChart/BubbleChart.js +58 -0
- package/esm/BubbleChart/BubbleChart.test.d.ts +1 -0
- package/esm/BubbleChart/BubbleChart.test.js +113 -0
- package/esm/BubbleChart/helpers.d.ts +6 -0
- package/esm/BubbleChart/helpers.js +24 -0
- package/esm/BubbleChart/index.d.ts +1 -0
- package/esm/BubbleChart/index.js +1 -0
- package/esm/BubbleChart/types.d.ts +9 -0
- package/esm/BubbleChart/types.js +1 -0
- package/esm/BubbleChart/useBubbles.d.ts +9 -0
- package/esm/BubbleChart/useBubbles.js +15 -0
- package/esm/CardinalityMessage/CardinalityMessage.d.ts +6 -0
- package/esm/CardinalityMessage/CardinalityMessage.js +10 -0
- package/esm/CardinalityMessage/CardinalityMessage.test.d.ts +1 -0
- package/esm/CardinalityMessage/CardinalityMessage.test.js +52 -0
- package/esm/CardinalityMessage/helpers.d.ts +1 -0
- package/esm/CardinalityMessage/helpers.js +54 -0
- package/esm/CardinalityMessage/index.d.ts +1 -0
- package/esm/CardinalityMessage/index.js +1 -0
- package/esm/CardinalityMessage/styles.d.ts +1 -0
- package/esm/CardinalityMessage/styles.js +7 -0
- package/esm/ChartLegend/ChartLegend.d.ts +6 -0
- package/esm/ChartLegend/ChartLegend.js +11 -0
- package/esm/ChartLegend/helpers.d.ts +2 -0
- package/esm/ChartLegend/helpers.js +17 -0
- package/esm/ChartLegend/index.d.ts +2 -0
- package/esm/ChartLegend/index.js +2 -0
- package/esm/ChartLegend/styles.d.ts +1 -0
- package/esm/ChartTooltip/ChartTooltip.d.ts +2 -0
- package/esm/ChartTooltip/ChartTooltip.js +22 -0
- package/esm/ChartTooltip/index.d.ts +1 -0
- package/esm/ChartTooltip/index.js +1 -0
- package/esm/ChartsFactory/ChartsFactory.d.ts +14 -0
- package/esm/ChartsFactory/ChartsFactory.js +51 -0
- package/esm/ChartsFactory/ChartsFactory.test.d.ts +1 -0
- package/esm/ChartsFactory/ChartsFactory.test.js +64 -0
- package/esm/ChartsFactory/index.d.ts +1 -0
- package/esm/ChartsFactory/index.js +1 -0
- package/esm/CloudChart/CloudChart.d.ts +15 -0
- package/esm/CloudChart/CloudChart.js +46 -0
- package/esm/CloudChart/CloudChart.test.d.ts +1 -0
- package/esm/CloudChart/CloudChart.test.js +57 -0
- package/esm/CloudChart/index.d.ts +1 -0
- package/esm/CloudChart/index.js +1 -0
- package/esm/CloudChart/types.d.ts +5 -0
- package/esm/CloudChart/types.js +1 -0
- package/esm/CloudChart/useCloud.d.ts +10 -0
- package/esm/CloudChart/useCloud.js +30 -0
- package/esm/CollapseRowButton/CollapseRowButton.d.ts +8 -0
- package/esm/CollapseRowButton/CollapseRowButton.js +17 -0
- package/esm/CollapseRowButton/CollapseRowButton.test.d.ts +1 -0
- package/esm/CollapseRowButton/CollapseRowButton.test.js +51 -0
- package/esm/CollapseRowButton/index.d.ts +1 -0
- package/esm/CollapseRowButton/index.js +1 -0
- package/esm/CollapseRowButton/styles.d.ts +1 -0
- package/esm/ColorBar/ColorBar.d.ts +7 -0
- package/esm/ColorBar/ColorBar.js +13 -0
- package/esm/ColorBar/ColorBar.test.d.ts +1 -0
- package/esm/ColorBar/ColorBar.test.js +40 -0
- package/esm/ColorBar/index.d.ts +1 -0
- package/esm/ColorBar/index.js +1 -0
- package/esm/ColumnsSettings/ColumnsSettings.d.ts +10 -0
- package/esm/ColumnsSettings/ColumnsSettings.js +23 -0
- package/esm/ColumnsSettings/ColumnsSettings.test.d.ts +1 -0
- package/esm/ColumnsSettings/ColumnsSettings.test.js +408 -0
- package/esm/ColumnsSettings/components/ColumnListItem/ColumnListItem.d.ts +26 -0
- package/esm/ColumnsSettings/components/ColumnListItem/ColumnListItem.js +25 -0
- package/esm/ColumnsSettings/components/ColumnListItem/index.d.ts +1 -0
- package/esm/ColumnsSettings/components/ColumnListItem/index.js +1 -0
- package/esm/ColumnsSettings/components/ColumnListItem/styles.d.ts +1 -0
- package/esm/ColumnsSettings/components/ColumnListItem/styles.js +6 -0
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.d.ts +14 -0
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.js +45 -0
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.spec.d.ts +1 -0
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/ColumnsSettingsPopup.spec.js +221 -0
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/index.d.ts +1 -0
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/index.js +1 -0
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/styles.d.ts +1 -0
- package/esm/ColumnsSettings/components/ColumnsSettingsPopup/styles.js +6 -0
- package/esm/ColumnsSettings/helpers.d.ts +5 -0
- package/esm/ColumnsSettings/index.d.ts +2 -0
- package/esm/ColumnsSettings/index.js +2 -0
- package/esm/ColumnsSettings/styles.d.ts +1 -0
- package/esm/ComplexAttributeLabel/ComplexAttributeLabel.js +8 -0
- package/esm/ComplexAttributeLabel/index.d.ts +1 -0
- package/esm/ComplexAttributeLabel/index.js +1 -0
- package/esm/ComplexAttributeLabel/styles.d.ts +1 -0
- package/esm/ComplexAttributeLabel/styles.js +10 -0
- package/esm/DefaultCellValueRenderer/DefaultCellValueRenderer.d.ts +8 -0
- package/esm/DefaultCellValueRenderer/DefaultCellValueRenderer.js +30 -0
- package/esm/DefaultCellValueRenderer/DefaultCellValueRenderer.test.d.ts +1 -0
- package/esm/DefaultCellValueRenderer/DefaultCellValueRenderer.test.js +54 -0
- package/esm/DefaultCellValueRenderer/index.d.ts +1 -0
- package/esm/DefaultCellValueRenderer/index.js +1 -0
- package/esm/DefaultCellValueRenderer/styles.d.ts +1 -0
- package/esm/DefaultCellValueRenderer/styles.js +9 -0
- package/esm/DeleteButton/DeleteButton.d.ts +5 -0
- package/esm/DeleteButton/DeleteButton.js +8 -0
- package/esm/DeleteButton/DeleteButton.spec.d.ts +1 -0
- package/esm/DeleteButton/DeleteButton.spec.js +20 -0
- package/esm/DeleteButton/index.d.ts +1 -0
- package/esm/DeleteButton/index.js +1 -0
- package/esm/DescriptionIcon/DescriptionIcon.d.ts +7 -0
- package/esm/DescriptionIcon/DescriptionIcon.js +17 -0
- package/esm/DescriptionIcon/DescriptionIcon.test.d.ts +1 -0
- package/esm/DescriptionIcon/DescriptionIcon.test.js +89 -0
- package/esm/DescriptionIcon/index.d.ts +1 -0
- package/esm/DescriptionIcon/index.js +1 -0
- package/esm/DescriptionIcon/styles.d.ts +1 -0
- package/esm/DropDownMenuButton/DropDownMenuButton.d.ts +17 -0
- package/esm/DropDownMenuButton/DropDownMenuButton.js +48 -0
- package/esm/DropDownMenuButton/DropDownMenuButton.spec.d.ts +1 -0
- package/esm/DropDownMenuButton/DropDownMenuButton.spec.js +76 -0
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.d.ts +8 -0
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.js +21 -0
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.spec.d.ts +1 -0
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/DefaultMenuItemRenderer.spec.js +32 -0
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/index.d.ts +1 -0
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/index.js +1 -0
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/styles.d.ts +1 -0
- package/esm/DropDownMenuButton/components/DefaultMenuItemRenderer/styles.js +12 -0
- package/esm/DropDownMenuButton/index.d.ts +1 -0
- package/esm/DropDownMenuButton/index.js +1 -0
- package/esm/DropDownMenuButton/styles.d.ts +1 -0
- package/esm/DropDownMenuButton/styles.js +17 -0
- package/esm/EditModeAttributesFactory/EditModeAttributesFactory.d.ts +3 -0
- package/esm/EditModeAttributesFactory/EditModeAttributesFactory.js +36 -0
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.d.ts +6 -0
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.js +18 -0
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.test.d.ts +1 -0
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/EditModeAttribute.test.js +106 -0
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/index.d.ts +1 -0
- package/esm/EditModeAttributesFactory/components/EditModeAttribute/index.js +1 -0
- package/esm/EditModeAttributesFactory/index.d.ts +2 -0
- package/esm/EditModeAttributesFactory/index.js +2 -0
- package/esm/EditModeAttributesList/EditModeAttributesList.js +94 -0
- package/esm/EditModeAttributesList/EditModeAttributesList.test.d.ts +1 -0
- package/esm/EditModeAttributesList/EditModeAttributesList.test.js +353 -0
- package/esm/EditModeAttributesList/attributes.test-data.d.ts +28 -0
- package/esm/EditModeAttributesList/attributes.test-data.js +37 -0
- package/esm/EditModeAttributesList/index.d.ts +1 -0
- package/esm/EditModeAttributesList/index.js +1 -0
- package/esm/EditModeAttributesPager/EditModeAttributesPager.d.ts +4 -0
- package/esm/EditModeAttributesPager/EditModeAttributesPager.js +81 -0
- package/esm/EditModeAttributesPager/EditModeAttributesPager.test.d.ts +1 -0
- package/esm/EditModeAttributesPager/EditModeAttributesPager.test.js +277 -0
- package/esm/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.d.ts +17 -0
- package/esm/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.js +100 -0
- package/esm/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.test.d.ts +1 -0
- package/esm/EditModeAttributesPager/components/AttributeRenderer/AttributeRenderer.test.js +336 -0
- package/esm/EditModeAttributesPager/components/AttributeRenderer/IntegrationAttributeRenderer.test.d.ts +1 -0
- package/esm/EditModeAttributesPager/components/AttributeRenderer/IntegrationAttributeRenderer.test.js +188 -0
- package/esm/EditModeAttributesPager/components/AttributeRenderer/index.d.ts +1 -0
- package/esm/EditModeAttributesPager/components/AttributeRenderer/index.js +1 -0
- package/esm/EditModeAttributesPager/components/AttributeRenderer/store.test-data.d.ts +4 -0
- package/esm/EditModeAttributesPager/components/AttributeRenderer/store.test-data.js +4 -0
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.d.ts +19 -0
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.js +30 -0
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.d.ts +1 -0
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.js +47 -0
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/index.d.ts +1 -0
- package/esm/EditModeAttributesPager/components/ImageLineRenderer/index.js +1 -0
- package/esm/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.d.ts +18 -0
- package/esm/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.js +90 -0
- package/esm/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.test.d.ts +1 -0
- package/esm/EditModeAttributesPager/components/SpecialRenderer/SpecialRenderer.test.js +204 -0
- package/esm/EditModeAttributesPager/components/SpecialRenderer/index.d.ts +1 -0
- package/esm/EditModeAttributesPager/components/SpecialRenderer/index.js +1 -0
- package/esm/EditModeAttributesPager/helpers.d.ts +1 -0
- package/esm/EditModeAttributesPager/helpers.js +3 -0
- package/esm/EditModeAttributesPager/helpers.test.d.ts +1 -0
- package/esm/EditModeAttributesPager/helpers.test.js +20 -0
- package/esm/EditModeAttributesPager/index.d.ts +1 -0
- package/esm/EditModeAttributesPager/index.js +1 -0
- package/esm/EditModeAttributesPager/styles.d.ts +1 -0
- package/esm/EditModeAttributesPager/types.d.ts +26 -0
- package/esm/EditModeAttributesPager/types.js +6 -0
- package/esm/EditModeAttributesView/EditModeAttributesView.d.ts +12 -0
- package/esm/EditModeAttributesView/EditModeAttributesView.js +29 -0
- package/esm/EditModeAttributesView/EditModeAttributesView.test.d.ts +1 -0
- package/esm/EditModeAttributesView/EditModeAttributesView.test.js +58 -0
- package/esm/EditModeAttributesView/IntegrationEditModeAttributesView.test.d.ts +1 -0
- package/esm/EditModeAttributesView/IntegrationEditModeAttributesView.test.js +236 -0
- package/esm/EditModeAttributesView/index.d.ts +1 -0
- package/esm/EditModeAttributesView/index.js +1 -0
- package/esm/EditModeAttributesView/metadata.test-data.d.ts +4 -0
- package/esm/EditModeAttributesView/metadata.test-data.js +119 -0
- package/esm/EditModeComplexAttribute/EditModeComplexAttribute.js +105 -0
- package/esm/EditModeComplexAttribute/EditModeComplexAttribute.test.d.ts +1 -0
- package/esm/EditModeComplexAttribute/EditModeComplexAttribute.test.js +373 -0
- package/esm/EditModeComplexAttribute/index.d.ts +1 -0
- package/esm/EditModeComplexAttribute/index.js +1 -0
- package/esm/EditModeComplexAttribute/nestedAttrType.test-data.d.ts +31 -0
- package/esm/EditModeComplexAttribute/nestedAttrType.test-data.js +71 -0
- package/esm/EditModeComplexAttribute/nestedAttrValue.test-data.d.ts +29 -0
- package/esm/EditModeComplexAttribute/nestedAttrValue.test-data.js +35 -0
- package/esm/EntityCreator/EntityCreator.d.ts +9 -0
- package/esm/EntityCreator/EntityCreator.js +13 -0
- package/esm/EntityCreator/EntityCreator.test.d.ts +1 -0
- package/esm/EntityCreator/EntityCreator.test.js +75 -0
- package/esm/EntityCreator/entityType.test-data.d.ts +52 -0
- package/esm/EntityCreator/entityType.test-data.js +188 -0
- package/esm/EntityCreator/index.d.ts +1 -0
- package/esm/EntityCreator/index.js +1 -0
- package/esm/EntitySelector/EntitySelector.d.ts +32 -0
- package/esm/EntitySelector/EntitySelector.js +93 -0
- package/esm/EntitySelector/EntitySelector.test.d.ts +1 -0
- package/esm/EntitySelector/EntitySelector.test.js +457 -0
- package/esm/EntitySelector/components/ClearIndicator/ClearIndicator.d.ts +7 -0
- package/esm/EntitySelector/components/ClearIndicator/ClearIndicator.js +14 -0
- package/esm/EntitySelector/components/ClearIndicator/ClearIndicator.test.d.ts +1 -0
- package/esm/EntitySelector/components/ClearIndicator/ClearIndicator.test.js +27 -0
- package/esm/EntitySelector/components/ClearIndicator/index.d.ts +1 -0
- package/esm/EntitySelector/components/ClearIndicator/index.js +1 -0
- package/esm/EntitySelector/components/ClearIndicator/styles.d.ts +1 -0
- package/esm/EntitySelector/components/ClearIndicator/styles.js +8 -0
- package/esm/EntitySelector/components/EntityOption/EntityOption.d.ts +22 -0
- package/esm/EntitySelector/components/EntityOption/EntityOption.js +54 -0
- package/esm/EntitySelector/components/EntityOption/EntityOption.test.d.ts +1 -0
- package/esm/EntitySelector/components/EntityOption/EntityOption.test.js +79 -0
- package/esm/EntitySelector/components/EntityOption/index.d.ts +1 -0
- package/esm/EntitySelector/components/EntityOption/index.js +1 -0
- package/esm/EntitySelector/components/EntityOption/styles.d.ts +1 -0
- package/esm/EntitySelector/components/EntityOption/styles.js +39 -0
- package/esm/EntitySelector/components/Group/Group.d.ts +9 -0
- package/esm/EntitySelector/components/Group/Group.js +34 -0
- package/esm/EntitySelector/components/Group/Group.test.d.ts +1 -0
- package/esm/EntitySelector/components/Group/Group.test.js +64 -0
- package/esm/EntitySelector/components/Group/index.d.ts +1 -0
- package/esm/EntitySelector/components/Group/index.js +1 -0
- package/esm/EntitySelector/components/Group/styles.d.ts +1 -0
- package/esm/EntitySelector/components/Group/styles.js +26 -0
- package/esm/EntitySelector/components/SingleValue/SingleValue.d.ts +14 -0
- package/esm/EntitySelector/components/SingleValue/SingleValue.js +57 -0
- package/esm/EntitySelector/components/SingleValue/SingleValue.test.d.ts +1 -0
- package/esm/EntitySelector/components/SingleValue/SingleValue.test.js +78 -0
- package/esm/EntitySelector/components/SingleValue/index.d.ts +1 -0
- package/esm/EntitySelector/components/SingleValue/index.js +1 -0
- package/esm/EntitySelector/components/SingleValue/styles.d.ts +1 -0
- package/esm/EntitySelector/components/SingleValue/styles.js +17 -0
- package/esm/EntitySelector/helpers.d.ts +1 -0
- package/esm/EntitySelector/helpers.js +44 -0
- package/esm/EntitySelector/index.d.ts +1 -0
- package/esm/EntitySelector/index.js +1 -0
- package/esm/EntitySelector/styles.d.ts +1 -0
- package/esm/ExpandedValueTooltip/ExpandedValueTooltip.d.ts +11 -0
- package/esm/ExpandedValueTooltip/ExpandedValueTooltip.js +40 -0
- package/esm/ExpandedValueTooltip/ExpandedValueTooltip.test.d.ts +1 -0
- package/esm/ExpandedValueTooltip/ExpandedValueTooltip.test.js +39 -0
- package/esm/ExpandedValueTooltip/helpers.d.ts +1 -0
- package/esm/ExpandedValueTooltip/helpers.js +5 -0
- package/esm/ExpandedValueTooltip/index.d.ts +1 -0
- package/esm/ExpandedValueTooltip/index.js +1 -0
- package/esm/FacetViewHeader/FacetViewHeader.d.ts +8 -0
- package/esm/FacetViewHeader/FacetViewHeader.js +9 -0
- package/esm/FacetViewHeader/FacetViewHeader.test.d.ts +1 -0
- package/esm/FacetViewHeader/FacetViewHeader.test.js +10 -0
- package/esm/FacetViewHeader/index.d.ts +1 -0
- package/esm/FacetViewHeader/index.js +1 -0
- package/esm/FacetViewHeader/styles.d.ts +1 -0
- package/esm/FilterButton/FilterButton.d.ts +6 -0
- package/esm/FilterButton/FilterButton.js +15 -0
- package/esm/FilterButton/FilterButton.test.d.ts +1 -0
- package/esm/FilterButton/FilterButton.test.js +108 -0
- package/esm/FilterButton/index.d.ts +1 -0
- package/esm/FilterButton/index.js +1 -0
- package/esm/FilterButton/styles.d.ts +1 -0
- package/esm/FilterButton/styles.js +15 -0
- package/esm/HOCs/index.d.ts +3 -3
- package/esm/HOCs/index.js +3 -3
- package/esm/HOCs/withAsyncMount/index.d.ts +1 -0
- package/esm/HOCs/withAsyncMount/index.js +1 -0
- package/esm/HOCs/withAsyncMount/withAsyncMount.d.ts +1 -2
- package/esm/HOCs/withAsyncMount/withAsyncMount.js +1 -2
- package/esm/HOCs/withAsyncMount/withAsyncMount.test.d.ts +1 -0
- package/esm/HOCs/withAsyncMount/withAsyncMount.test.js +90 -0
- package/esm/HOCs/withChartDataPercents/index.d.ts +1 -0
- package/esm/HOCs/withChartDataPercents/index.js +1 -0
- package/esm/HOCs/withChartDataPercents/withChartDataPercents.d.ts +10 -0
- package/esm/HOCs/withChartDataPercents/withChartDataPercents.js +33 -0
- package/esm/HOCs/withContext/index.d.ts +1 -0
- package/esm/HOCs/withContext/index.js +1 -0
- package/esm/HOCs/withFilter/ColumnFilter.d.ts +22 -0
- package/esm/HOCs/withFilter/ColumnFilter.js +92 -0
- package/esm/HOCs/withFilter/ColumnFilter.spec.d.ts +1 -0
- package/esm/HOCs/withFilter/ColumnFilter.spec.js +220 -0
- package/esm/HOCs/withFilter/FilterChip.d.ts +13 -0
- package/esm/HOCs/withFilter/FilterChip.js +25 -0
- package/esm/HOCs/withFilter/FilterChip.test.d.ts +1 -0
- package/esm/HOCs/withFilter/FilterChip.test.js +97 -0
- package/esm/HOCs/withFilter/helpers.d.ts +7 -0
- package/esm/HOCs/withFilter/helpers.js +4 -0
- package/esm/HOCs/withFilter/index.d.ts +1 -0
- package/esm/HOCs/withFilter/index.js +1 -0
- package/esm/HOCs/withFilter/styles.d.ts +1 -0
- package/esm/HOCs/withFilter/styles.js +23 -0
- package/esm/HOCs/withFilter/withFilter.d.ts +15 -0
- package/esm/HOCs/withFilter/withFilter.js +32 -0
- package/esm/HOCs/withFilterAtBottom/index.d.ts +1 -0
- package/esm/HOCs/withFilterAtBottom/index.js +1 -0
- package/esm/HOCs/withFilterAtBottom/withFilterAtBottom.d.ts +10 -0
- package/esm/HOCs/withFilterAtBottom/withFilterAtBottom.js +37 -0
- package/esm/HOCs/withTableContext/index.d.ts +1 -0
- package/esm/HOCs/withTableContext/index.js +1 -0
- package/esm/HOCs/withTableContext/withTableContext.d.ts +4 -0
- package/esm/HOCs/withTableContext/withTableContext.js +5 -0
- package/esm/HOCs/withTableContext/withTableContext.test.d.ts +1 -0
- package/esm/HOCs/withTableContext/withTableContext.test.js +41 -0
- package/esm/HOCs/withTooltip/index.d.ts +1 -0
- package/esm/HOCs/withTooltip/index.js +1 -0
- package/esm/HOCs/withTooltip/styles.d.ts +1 -0
- package/esm/HOCs/withTooltip/styles.js +7 -0
- package/esm/HOCs/withTooltip/withTooltip.d.ts +8 -2
- package/esm/HOCs/withTooltip/withTooltip.js +7 -24
- package/esm/IgnoreButton/IgnoreButton.d.ts +7 -0
- package/esm/IgnoreButton/IgnoreButton.js +9 -0
- package/esm/IgnoreButton/IgnoreButton.spec.d.ts +1 -0
- package/esm/IgnoreButton/IgnoreButton.spec.js +29 -0
- package/esm/IgnoreButton/index.d.ts +1 -0
- package/esm/IgnoreButton/index.js +1 -0
- package/esm/Image/Image.d.ts +12 -0
- package/esm/Image/Image.js +58 -0
- package/esm/Image/Image.test.d.ts +1 -0
- package/esm/Image/Image.test.js +65 -0
- package/esm/Image/constants.d.ts +2 -0
- package/esm/Image/constants.js +18 -0
- package/esm/Image/index.d.ts +2 -0
- package/esm/Image/index.js +2 -0
- package/esm/Image/styles.d.ts +2 -0
- package/esm/ImageActionsOverlay/ImageActionsOverlay.js +59 -0
- package/esm/ImageActionsOverlay/ImageActionsOverlay.test.d.ts +1 -0
- package/esm/ImageActionsOverlay/ImageActionsOverlay.test.js +148 -0
- package/esm/ImageActionsOverlay/components/CheckedIcon/CheckedIcon.d.ts +7 -0
- package/esm/ImageActionsOverlay/components/CheckedIcon/index.d.ts +1 -0
- package/esm/ImageActionsOverlay/components/CheckedIcon/index.js +1 -0
- package/esm/ImageActionsOverlay/index.d.ts +1 -0
- package/esm/ImageActionsOverlay/index.js +1 -0
- package/esm/ImageAttributesLine/ImageAttributesLine.d.ts +21 -0
- package/esm/ImageAttributesLine/ImageAttributesLine.js +112 -0
- package/esm/ImageAttributesLine/ImageAttributesLine.test.d.ts +1 -0
- package/esm/ImageAttributesLine/ImageAttributesLine.test.js +283 -0
- package/esm/ImageAttributesLine/constants.d.ts +3 -0
- package/esm/ImageAttributesLine/constants.js +7 -0
- package/esm/ImageAttributesLine/imageAttributeValues.test-data.d.ts +2 -0
- package/esm/ImageAttributesLine/imageAttributeValues.test-data.js +68 -0
- package/esm/ImageAttributesLine/index.d.ts +5 -0
- package/esm/ImageAttributesLine/index.js +4 -0
- package/esm/ImageAttributesLine/styles.d.ts +2 -0
- package/esm/ImageAttributesLine/types.d.ts +8 -0
- package/esm/ImageAttributesLine/types.js +1 -0
- package/esm/ImageAttributesLineEditor/ImageAttributesLineEditor.d.ts +15 -0
- package/esm/ImageAttributesLineEditor/ImageAttributesLineEditor.js +80 -0
- package/esm/ImageAttributesLineEditor/ImageAttributesLineEditor.test.d.ts +1 -0
- package/esm/ImageAttributesLineEditor/ImageAttributesLineEditor.test.js +364 -0
- package/esm/ImageAttributesLineEditor/index.d.ts +1 -0
- package/esm/ImageAttributesLineEditor/index.js +1 -0
- package/esm/ImageAttributesLineEditor/styles.d.ts +2 -0
- package/esm/InlineAttributesList/InlineAttributesList.d.ts +19 -0
- package/esm/InlineAttributesList/InlineAttributesList.js +36 -0
- package/esm/InlineAttributesList/InlineAttributesList.test.d.ts +1 -0
- package/esm/InlineAttributesList/InlineAttributesList.test.js +91 -0
- package/esm/InlineAttributesList/attributes.test-data.d.ts +28 -0
- package/esm/InlineAttributesList/attributes.test-data.js +37 -0
- package/esm/InlineAttributesList/index.d.ts +1 -0
- package/esm/InlineAttributesList/index.js +1 -0
- package/esm/InlineAttributesPager/InlineAttributesPager.d.ts +22 -0
- package/esm/InlineAttributesPager/InlineAttributesPager.js +71 -0
- package/esm/InlineAttributesPager/InlineAttributesPager.test.d.ts +1 -0
- package/esm/InlineAttributesPager/InlineAttributesPager.test.js +308 -0
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.d.ts +19 -0
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.js +28 -0
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.test.d.ts +1 -0
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/InlineImageAttributesBlock.test.js +104 -0
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/index.d.ts +1 -0
- package/esm/InlineAttributesPager/components/InlineImageAttributesBlock/index.js +1 -0
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.d.ts +20 -0
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.js +38 -0
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.test.d.ts +1 -0
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/InlineNestedAttributesBlock.test.js +114 -0
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/index.d.ts +1 -0
- package/esm/InlineAttributesPager/components/InlineNestedAttributesBlock/index.js +1 -0
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.d.ts +19 -0
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.js +28 -0
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.test.d.ts +1 -0
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/InlineReferenceAttributesBlock.test.js +177 -0
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/index.d.ts +1 -0
- package/esm/InlineAttributesPager/components/InlineReferenceAttributesBlock/index.js +1 -0
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.d.ts +19 -0
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.js +59 -0
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.test.d.ts +1 -0
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/InlineSimpleAttributesBlock.test.js +250 -0
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/index.d.ts +1 -0
- package/esm/InlineAttributesPager/components/InlineSimpleAttributesBlock/index.js +1 -0
- package/esm/InlineAttributesPager/index.d.ts +1 -0
- package/esm/InlineAttributesPager/index.js +1 -0
- package/esm/InlineComplexAttribute/InlineComplexAttribute.d.ts +22 -0
- package/esm/InlineComplexAttribute/InlineComplexAttribute.js +50 -0
- package/esm/InlineComplexAttribute/InlineComplexAttribute.test.d.ts +1 -0
- package/esm/InlineComplexAttribute/InlineComplexAttribute.test.js +223 -0
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.d.ts +7 -0
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.js +16 -0
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.spec.d.ts +1 -0
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/CrosswalkIcon.spec.js +131 -0
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/index.d.ts +1 -0
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/index.js +1 -0
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/styles.d.ts +7 -0
- package/esm/InlineComplexAttribute/components/CrosswalkIcon/styles.js +16 -0
- package/esm/InlineComplexAttribute/index.d.ts +1 -0
- package/esm/InlineComplexAttribute/index.js +1 -0
- package/esm/InlineImageAttribute/InlineImageAttribute.d.ts +18 -0
- package/esm/InlineImageAttribute/InlineImageAttribute.js +33 -0
- package/esm/InlineImageAttribute/InlineImageAttribute.test.d.ts +1 -0
- package/esm/InlineImageAttribute/InlineImageAttribute.test.js +73 -0
- package/esm/InlineImageAttribute/index.d.ts +1 -0
- package/esm/InlineImageAttribute/index.js +1 -0
- package/esm/InlineNestedAttribute/InlineNestedAttribute.d.ts +18 -0
- package/esm/InlineNestedAttribute/InlineNestedAttribute.js +31 -0
- package/esm/InlineNestedAttribute/InlineNestedAttribute.test.d.ts +1 -0
- package/esm/InlineNestedAttribute/InlineNestedAttribute.test.js +60 -0
- package/esm/InlineNestedAttribute/index.d.ts +1 -0
- package/esm/InlineNestedAttribute/index.js +1 -0
- package/esm/InlineReferenceAttribute/InlineReferenceAttribute.d.ts +18 -0
- package/esm/InlineReferenceAttribute/InlineReferenceAttribute.js +44 -0
- package/esm/InlineReferenceAttribute/InlineReferenceAttribute.test.d.ts +1 -0
- package/esm/InlineReferenceAttribute/InlineReferenceAttribute.test.js +131 -0
- package/esm/InlineReferenceAttribute/index.d.ts +1 -0
- package/esm/InlineReferenceAttribute/index.js +1 -0
- package/esm/InlineSimpleAttribute/InlineSimpleAttribute.d.ts +18 -0
- package/esm/InlineSimpleAttribute/InlineSimpleAttribute.js +94 -0
- package/esm/InlineSimpleAttribute/InlineSimpleAttribute.spec.d.ts +1 -0
- package/esm/InlineSimpleAttribute/InlineSimpleAttribute.spec.js +389 -0
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.d.ts +18 -0
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.js +20 -0
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.spec.d.ts +1 -0
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/CrosswalkMenuItem.spec.js +52 -0
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/index.d.ts +1 -0
- package/esm/InlineSimpleAttribute/components/CrosswalkMenuItem/index.js +1 -0
- package/esm/InlineSimpleAttribute/index.d.ts +1 -0
- package/esm/InlineSimpleAttribute/index.js +1 -0
- package/esm/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.d.ts +13 -0
- package/esm/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.js +74 -0
- package/esm/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.test.d.ts +1 -0
- package/esm/InlineSimpleAttributeEditor/InlineSimpleAttributeEditor.test.js +245 -0
- package/esm/InlineSimpleAttributeEditor/index.d.ts +1 -0
- package/esm/InlineSimpleAttributeEditor/index.js +1 -0
- package/esm/InternalLink/InternalLink.d.ts +2 -0
- package/esm/InternalLink/InternalLink.js +33 -0
- package/esm/InternalLink/InternalLink.test.d.ts +1 -0
- package/esm/InternalLink/InternalLink.test.js +24 -0
- package/esm/InternalLink/index.d.ts +1 -0
- package/esm/InternalLink/index.js +1 -0
- package/esm/InternalLink/styles.d.ts +1 -0
- package/esm/LineChart/LineChart.d.ts +8 -0
- package/esm/LineChart/LineChart.js +27 -0
- package/esm/LineChart/LineChart.test.d.ts +1 -0
- package/esm/LineChart/LineChart.test.js +84 -0
- package/esm/LineChart/helpers.d.ts +13 -0
- package/esm/LineChart/helpers.js +59 -0
- package/esm/LineChart/index.d.ts +1 -0
- package/esm/LineChart/index.js +1 -0
- package/esm/MapChart/MapChart.d.ts +10 -0
- package/esm/MapChart/MapChart.js +81 -0
- package/esm/MapChart/MapChart.test.d.ts +1 -0
- package/esm/MapChart/MapChart.test.js +325 -0
- package/esm/MapChart/components/Legend/Legend.d.ts +8 -0
- package/esm/MapChart/components/Legend/Legend.js +16 -0
- package/esm/MapChart/components/Legend/index.d.ts +1 -0
- package/esm/MapChart/components/Legend/index.js +1 -0
- package/esm/MapChart/components/Legend/styles.d.ts +6 -0
- package/esm/MapChart/constants.d.ts +3 -0
- package/esm/MapChart/constants.js +3 -0
- package/esm/MapChart/index.d.ts +1 -0
- package/esm/MapChart/index.js +1 -0
- package/esm/MapChart/useGeography.js +23 -0
- package/esm/MoreAttributesButton/MoreAttributesButton.d.ts +11 -0
- package/esm/MoreAttributesButton/MoreAttributesButton.js +71 -0
- package/esm/MoreAttributesButton/MoreAttributesButton.test.d.ts +1 -0
- package/esm/MoreAttributesButton/MoreAttributesButton.test.js +190 -0
- package/esm/MoreAttributesButton/attributes.test-data.d.ts +53 -0
- package/esm/MoreAttributesButton/attributes.test-data.js +73 -0
- package/esm/MoreAttributesButton/constants.d.ts +6 -0
- package/esm/MoreAttributesButton/constants.js +6 -0
- package/esm/MoreAttributesButton/helpers.d.ts +9 -0
- package/esm/MoreAttributesButton/helpers.spec.d.ts +1 -0
- package/esm/MoreAttributesButton/helpers.spec.js +44 -0
- package/esm/MoreAttributesButton/index.d.ts +1 -0
- package/esm/MoreAttributesButton/index.js +1 -0
- package/esm/MoreAttributesButton/styles.d.ts +1 -0
- package/esm/MoreAttributesButton/useMoreAttributesItems.js +62 -0
- package/esm/NestedAttribute/NestedAttribute.js +49 -0
- package/esm/NestedAttribute/NestedAttribute.test.d.ts +1 -0
- package/esm/NestedAttribute/NestedAttribute.test.js +76 -0
- package/esm/NestedAttribute/index.d.ts +1 -0
- package/esm/NestedAttribute/index.js +1 -0
- package/esm/NestedAttribute/nestedAttrType.test-data.d.ts +31 -0
- package/esm/NestedAttribute/nestedAttrType.test-data.js +71 -0
- package/esm/NestedAttribute/nestedAttrValue.test-data.d.ts +29 -0
- package/esm/NestedAttribute/nestedAttrValue.test-data.js +35 -0
- package/esm/NestedAttributeEditor/NestedAttributeEditor.d.ts +2 -0
- package/esm/NestedAttributeEditor/NestedAttributeEditor.js +21 -0
- package/esm/NestedAttributeEditor/NestedAttributeEditor.test.d.ts +1 -0
- package/esm/NestedAttributeEditor/NestedAttributeEditor.test.js +65 -0
- package/esm/NestedAttributeEditor/index.d.ts +1 -0
- package/esm/NestedAttributeEditor/index.js +1 -0
- package/esm/OvIcon/OvIcon.d.ts +38 -0
- package/esm/OvIcon/OvIcon.js +31 -0
- package/esm/OvIcon/OvIcon.test.d.ts +1 -0
- package/esm/OvIcon/OvIcon.test.js +267 -0
- package/esm/OvIcon/helpers.d.ts +4 -0
- package/esm/OvIcon/helpers.js +29 -0
- package/esm/OvIcon/index.d.ts +1 -0
- package/esm/OvIcon/index.js +1 -0
- package/esm/OvIcon/styles.d.ts +1 -0
- package/esm/PieChart/PieChart.d.ts +17 -0
- package/esm/PieChart/PieChart.js +43 -0
- package/esm/PieChart/PieChart.test.d.ts +1 -0
- package/esm/PieChart/PieChart.test.js +120 -0
- package/esm/PieChart/components/ActiveShape/ActiveShape.d.ts +9 -0
- package/esm/PieChart/components/ActiveShape/ActiveShape.js +46 -0
- package/esm/PieChart/components/ActiveShape/index.d.ts +1 -0
- package/esm/PieChart/components/ActiveShape/index.js +1 -0
- package/esm/PieChart/index.d.ts +1 -0
- package/esm/PieChart/index.js +1 -0
- package/esm/PinButton/PinButton.d.ts +7 -0
- package/esm/PinButton/PinButton.js +9 -0
- package/esm/PinButton/PinButton.spec.d.ts +1 -0
- package/esm/PinButton/PinButton.spec.js +29 -0
- package/esm/PinButton/index.d.ts +1 -0
- package/esm/PinButton/index.js +1 -0
- package/esm/PivotingTooltip/IntegrationPivotingTooltip.test.d.ts +1 -0
- package/esm/PivotingTooltip/IntegrationPivotingTooltip.test.js +356 -0
- package/esm/PivotingTooltip/PivotingTooltip.js +53 -0
- package/esm/PivotingTooltip/PivotingTooltip.test.d.ts +1 -0
- package/esm/PivotingTooltip/PivotingTooltip.test.js +285 -0
- package/esm/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.d.ts +11 -0
- package/esm/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.js +25 -0
- package/esm/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.test.d.ts +1 -0
- package/esm/PivotingTooltip/components/PivotingTooltipContent/PivotingTooltipContent.test.js +206 -0
- package/esm/PivotingTooltip/components/PivotingTooltipContent/index.d.ts +1 -0
- package/esm/PivotingTooltip/components/PivotingTooltipContent/index.js +1 -0
- package/esm/PivotingTooltip/components/PivotingTooltipContent/styles.d.ts +1 -0
- package/esm/PivotingTooltip/components/PivotingTooltipContent/styles.js +76 -0
- package/esm/PivotingTooltip/helpers.test.d.ts +1 -0
- package/esm/PivotingTooltip/helpers.test.js +197 -0
- package/esm/PivotingTooltip/index.d.ts +1 -0
- package/esm/PivotingTooltip/index.js +1 -0
- package/esm/PivotingTooltip/styles.d.ts +2 -0
- package/esm/PivotingTooltip/styles.js +28 -0
- package/esm/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.d.ts +17 -0
- package/esm/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.js +49 -0
- package/esm/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.test.d.ts +1 -0
- package/esm/ReadOnlyAttributeValuesBlock/ReadOnlyAttributeValuesBlock.test.js +71 -0
- package/esm/ReadOnlyAttributeValuesBlock/index.d.ts +1 -0
- package/esm/ReadOnlyAttributeValuesBlock/index.js +1 -0
- package/esm/ReadOnlyAttributesFactory/ReadOnlyAttributesFactory.d.ts +3 -0
- package/esm/ReadOnlyAttributesFactory/ReadOnlyAttributesFactory.js +33 -0
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.d.ts +1 -0
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.js +5 -0
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.test.d.ts +1 -0
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/ReadOnlyAttribute.test.js +64 -0
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/index.d.ts +1 -0
- package/esm/ReadOnlyAttributesFactory/components/ReadOnlyAttribute/index.js +1 -0
- package/esm/ReadOnlyAttributesFactory/index.d.ts +2 -0
- package/esm/ReadOnlyAttributesFactory/index.js +2 -0
- package/esm/ReadOnlyAttributesList/ReadOnlyAttributesList.d.ts +18 -0
- package/esm/ReadOnlyAttributesList/ReadOnlyAttributesList.js +48 -0
- package/esm/ReadOnlyAttributesList/ReadOnlyAttributesList.test.d.ts +1 -0
- package/esm/ReadOnlyAttributesList/ReadOnlyAttributesList.test.js +302 -0
- package/esm/ReadOnlyAttributesList/attributes.test-data.d.ts +28 -0
- package/esm/ReadOnlyAttributesList/attributes.test-data.js +37 -0
- package/esm/ReadOnlyAttributesList/index.d.ts +1 -0
- package/esm/ReadOnlyAttributesList/index.js +1 -0
- package/esm/ReadOnlyAttributesPager/ReadOnlyAttributesPager.js +60 -0
- package/esm/ReadOnlyAttributesPager/ReadOnlyAttributesPager.test.d.ts +1 -0
- package/esm/ReadOnlyAttributesPager/ReadOnlyAttributesPager.test.js +250 -0
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.d.ts +11 -0
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.js +15 -0
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.d.ts +1 -0
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/ImageLineRenderer.test.js +45 -0
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/index.d.ts +1 -0
- package/esm/ReadOnlyAttributesPager/components/ImageLineRenderer/index.js +1 -0
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.d.ts +16 -0
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.js +44 -0
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.test.d.ts +1 -0
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/MultiLineRenderer.test.js +114 -0
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/index.d.ts +1 -0
- package/esm/ReadOnlyAttributesPager/components/MultiLineRenderer/index.js +1 -0
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.d.ts +12 -0
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.js +27 -0
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.d.ts +1 -0
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/OneLineRenderer.test.js +101 -0
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/index.d.ts +1 -0
- package/esm/ReadOnlyAttributesPager/components/OneLineRenderer/index.js +1 -0
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.d.ts +7 -0
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.js +34 -0
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.test.d.ts +1 -0
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/SpecialRenderer.test.js +72 -0
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/index.d.ts +1 -0
- package/esm/ReadOnlyAttributesPager/components/SpecialRenderer/index.js +1 -0
- package/esm/ReadOnlyAttributesPager/index.d.ts +1 -0
- package/esm/ReadOnlyAttributesPager/index.js +1 -0
- package/esm/ReadOnlyAttributesPager/styles.d.ts +3 -0
- package/esm/ReadOnlyAttributesView/ReadOnlyAttributesView.d.ts +11 -0
- package/esm/ReadOnlyAttributesView/ReadOnlyAttributesView.js +32 -0
- package/esm/ReadOnlyAttributesView/ReadOnlyAttributesView.test.d.ts +1 -0
- package/esm/ReadOnlyAttributesView/ReadOnlyAttributesView.test.js +205 -0
- package/esm/ReadOnlyAttributesView/index.d.ts +1 -0
- package/esm/ReadOnlyAttributesView/index.js +1 -0
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.d.ts +45 -0
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.js +63 -0
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.d.ts +1 -0
- package/esm/ReadOnlyComplexAttribute/ReadOnlyComplexAttribute.test.js +258 -0
- package/esm/ReadOnlyComplexAttribute/index.d.ts +1 -0
- package/esm/ReadOnlyComplexAttribute/index.js +1 -0
- package/esm/ReadOnlyComplexAttribute/nestedAttrType.test-data.d.ts +31 -0
- package/esm/ReadOnlyComplexAttribute/nestedAttrType.test-data.js +71 -0
- package/esm/ReadOnlyComplexAttribute/nestedAttrValue.test-data.d.ts +29 -0
- package/esm/ReadOnlyComplexAttribute/nestedAttrValue.test-data.js +35 -0
- package/esm/ReadOnlyComplexAttribute/styles.d.ts +1 -0
- package/esm/ReadOnlyComplexAttribute/styles.js +21 -0
- package/esm/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.d.ts +13 -0
- package/esm/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.js +28 -0
- package/esm/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.test.d.ts +1 -0
- package/esm/ReadOnlyImageAttributesLine/ReadOnlyImageAttributesLine.test.js +112 -0
- package/esm/ReadOnlyImageAttributesLine/index.d.ts +1 -0
- package/esm/ReadOnlyImageAttributesLine/index.js +1 -0
- package/esm/ReadOnlyImageAttributesLine/styles.d.ts +2 -0
- package/esm/ReadOnlyImageAttributesLine/styles.js +86 -0
- package/esm/ReferenceAttribute/ReferenceAttribute.d.ts +25 -0
- package/esm/ReferenceAttribute/ReferenceAttribute.js +56 -0
- package/esm/ReferenceAttribute/ReferenceAttribute.test.d.ts +1 -0
- package/esm/ReferenceAttribute/ReferenceAttribute.test.js +269 -0
- package/esm/ReferenceAttribute/index.d.ts +1 -0
- package/esm/ReferenceAttribute/index.js +1 -0
- package/esm/ReferenceAttribute/styles.d.ts +2 -0
- package/esm/ReferenceAttribute/styles.js +24 -0
- package/esm/ReferenceAttributeEditor/ReferenceAttributeEditor.js +134 -0
- package/esm/ReferenceAttributeEditor/ReferenceAttributeEditor.test.d.ts +1 -0
- package/esm/ReferenceAttributeEditor/ReferenceAttributeEditor.test.js +665 -0
- package/esm/ReferenceAttributeEditor/index.d.ts +1 -0
- package/esm/ReferenceAttributeEditor/index.js +1 -0
- package/esm/ReferenceAttributeEditor/metadata.test-data.d.ts +52 -0
- package/esm/ReferenceAttributeEditor/metadata.test-data.js +76 -0
- package/esm/ReferenceAttributeEditor/styles.d.ts +1 -0
- package/esm/RelationTypeSelector/RelationTypeSelector.d.ts +27 -0
- package/esm/RelationTypeSelector/RelationTypeSelector.js +47 -0
- package/esm/RelationTypeSelector/RelationTypeSelector.test.d.ts +1 -0
- package/esm/RelationTypeSelector/RelationTypeSelector.test.js +20 -0
- package/esm/RelationTypeSelector/components/RelationOption/RelationOption.d.ts +20 -0
- package/esm/RelationTypeSelector/components/RelationOption/RelationOption.js +51 -0
- package/esm/RelationTypeSelector/components/RelationOption/index.d.ts +1 -0
- package/esm/RelationTypeSelector/components/RelationOption/index.js +1 -0
- package/esm/RelationTypeSelector/components/RelationOption/styles.d.ts +1 -0
- package/esm/RelationTypeSelector/components/RelationOption/styles.js +52 -0
- package/esm/RelationTypeSelector/index.d.ts +1 -0
- package/esm/RelationTypeSelector/index.js +1 -0
- package/esm/Roles/Roles.d.ts +6 -0
- package/esm/Roles/Roles.js +7 -0
- package/esm/Roles/Roles.test.d.ts +1 -0
- package/esm/Roles/Roles.test.js +15 -0
- package/esm/Roles/components/Role/Role.d.ts +5 -0
- package/esm/Roles/components/Role/Role.js +15 -0
- package/esm/Roles/components/Role/Role.test.d.ts +1 -0
- package/esm/Roles/components/Role/Role.test.js +55 -0
- package/esm/Roles/components/Role/index.d.ts +1 -0
- package/esm/Roles/components/Role/index.js +1 -0
- package/esm/Roles/components/Role/styles.d.ts +1 -0
- package/esm/Roles/components/Role/styles.js +20 -0
- package/esm/Roles/index.d.ts +1 -0
- package/esm/Roles/index.js +1 -0
- package/esm/RolesEditor/RolesEditor.d.ts +8 -0
- package/esm/RolesEditor/RolesEditor.js +43 -0
- package/esm/RolesEditor/RolesEditor.test.d.ts +1 -0
- package/esm/RolesEditor/RolesEditor.test.js +212 -0
- package/esm/RolesEditor/index.d.ts +1 -0
- package/esm/RolesEditor/index.js +1 -0
- package/esm/RowCellAutoSizer/RowCellAutoSizer.d.ts +14 -0
- package/esm/RowCellAutoSizer/RowCellAutoSizer.js +25 -0
- package/esm/RowCellAutoSizer/RowCellAutoSizer.test.d.ts +1 -0
- package/esm/RowCellAutoSizer/RowCellAutoSizer.test.js +137 -0
- package/esm/RowCellAutoSizer/index.d.ts +1 -0
- package/esm/RowCellAutoSizer/index.js +1 -0
- package/esm/ShowLess/ShowLess.d.ts +5 -0
- package/esm/ShowLess/ShowLess.js +12 -0
- package/esm/ShowLess/ShowLess.test.d.ts +1 -0
- package/esm/ShowLess/ShowLess.test.js +58 -0
- package/esm/ShowLess/index.d.ts +1 -0
- package/esm/ShowLess/index.js +1 -0
- package/esm/ShowLess/styles.d.ts +1 -0
- package/esm/ShowLess/styles.js +10 -0
- package/esm/ShowMore/ShowMore.d.ts +7 -0
- package/esm/ShowMore/ShowMore.js +14 -0
- package/esm/ShowMore/ShowMore.test.d.ts +1 -0
- package/esm/ShowMore/ShowMore.test.js +89 -0
- package/esm/ShowMore/index.d.ts +1 -0
- package/esm/ShowMore/index.js +1 -0
- package/esm/ShowMore/styles.d.ts +1 -0
- package/esm/ShowMore/styles.js +10 -0
- package/esm/SimpleAttribute/SimpleAttribute.d.ts +9 -0
- package/esm/SimpleAttribute/SimpleAttribute.js +37 -0
- package/esm/SimpleAttribute/SimpleAttribute.test.d.ts +1 -0
- package/esm/SimpleAttribute/SimpleAttribute.test.js +142 -0
- package/esm/SimpleAttribute/index.d.ts +1 -0
- package/esm/SimpleAttribute/index.js +1 -0
- package/esm/SimpleAttribute/styles.d.ts +1 -0
- package/esm/SimpleAttribute/styles.js +41 -0
- package/esm/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +19 -0
- package/esm/SimpleAttributeEditor/SimpleAttributeEditor.js +139 -0
- package/esm/SimpleAttributeEditor/SimpleAttributeEditor.test.d.ts +1 -0
- package/esm/SimpleAttributeEditor/SimpleAttributeEditor.test.js +516 -0
- package/esm/SimpleAttributeEditor/SimpleAttributeEditorWithoutPermissions.test.d.ts +1 -0
- package/esm/SimpleAttributeEditor/SimpleAttributeEditorWithoutPermissions.test.js +74 -0
- package/esm/SimpleAttributeEditor/helpers.d.ts +1 -0
- package/esm/SimpleAttributeEditor/helpers.js +10 -0
- package/esm/SimpleAttributeEditor/helpers.test.d.ts +1 -0
- package/esm/SimpleAttributeEditor/helpers.test.js +126 -0
- package/esm/SimpleAttributeEditor/index.d.ts +1 -0
- package/esm/SimpleAttributeEditor/index.js +1 -0
- package/esm/SimpleAttributeEditor/styles.d.ts +1 -0
- package/esm/SimpleAttributeEditor/useAttributeValuePermissions.js +10 -0
- package/esm/SimpleAttributeEditor/useAutopopulationContextValue.js +17 -0
- package/esm/SimpleAttributeEditor/useAutopopulationContextValue.specs.d.ts +1 -0
- package/esm/SimpleAttributeEditor/useAutopopulationContextValue.specs.js +113 -0
- package/esm/SmallIconButton/SmallIconButton.d.ts +8 -0
- package/esm/SmallIconButton/SmallIconButton.js +32 -0
- package/esm/SmallIconButton/SmallIconButton.specs.d.ts +1 -0
- package/esm/SmallIconButton/SmallIconButton.specs.js +37 -0
- package/esm/SmallIconButton/constants.d.ts +9 -0
- package/esm/SmallIconButton/constants.js +9 -0
- package/esm/SmallIconButton/index.d.ts +16 -0
- package/esm/SmallIconButton/index.js +4 -0
- package/esm/SmallIconButton/styles.d.ts +1 -0
- package/esm/SmallIconButton/styles.js +46 -0
- package/esm/SourceIcon/SourceIcon.d.ts +10 -0
- package/esm/SourceIcon/SourceIcon.js +13 -0
- package/esm/SourceIcon/SourceIcon.spec.d.ts +1 -0
- package/esm/SourceIcon/SourceIcon.spec.js +60 -0
- package/esm/SourceIcon/index.d.ts +1 -0
- package/esm/SourceIcon/index.js +1 -0
- package/esm/SourceItem/SourceItem.d.ts +9 -0
- package/esm/SourceItem/SourceItem.js +24 -0
- package/esm/SourceItem/SourceItem.spec.d.ts +1 -0
- package/esm/SourceItem/SourceItem.spec.js +121 -0
- package/esm/SourceItem/index.d.ts +1 -0
- package/esm/SourceItem/index.js +1 -0
- package/esm/SourceItem/styles.d.ts +8 -0
- package/esm/SourceItem/styles.js +53 -0
- package/esm/SpecialAttributesArray/SpecialAttributesArray.d.ts +9 -0
- package/esm/SpecialAttributesArray/SpecialAttributesArray.js +7 -0
- package/esm/SpecialAttributesArray/SpecialAttributesArray.test.d.ts +1 -0
- package/esm/SpecialAttributesArray/SpecialAttributesArray.test.js +16 -0
- package/esm/SpecialAttributesArray/index.d.ts +1 -0
- package/esm/SpecialAttributesArray/index.js +1 -0
- package/esm/TableWithBars/TableWithBars.d.ts +10 -0
- package/esm/TableWithBars/TableWithBars.js +50 -0
- package/esm/TableWithBars/TableWithBars.test.d.ts +1 -0
- package/esm/TableWithBars/TableWithBars.test.js +75 -0
- package/esm/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.js +23 -0
- package/esm/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.test.d.ts +1 -0
- package/esm/TableWithBars/components/AttributeCellRenderer/AttributeCellRenderer.test.js +21 -0
- package/esm/TableWithBars/components/AttributeCellRenderer/index.d.ts +1 -0
- package/esm/TableWithBars/components/AttributeCellRenderer/index.js +1 -0
- package/esm/TableWithBars/components/AttributeCellRenderer/styles.d.ts +1 -0
- package/esm/TableWithBars/components/AttributeCellRenderer/styles.js +26 -0
- package/esm/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.d.ts +8 -0
- package/esm/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.js +34 -0
- package/esm/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.test.d.ts +1 -0
- package/esm/TableWithBars/components/HeadCellRenderer/HeadCellRenderer.test.js +20 -0
- package/esm/TableWithBars/components/HeadCellRenderer/index.d.ts +1 -0
- package/esm/TableWithBars/components/HeadCellRenderer/index.js +1 -0
- package/esm/TableWithBars/components/HeadCellRenderer/styles.d.ts +1 -0
- package/esm/TableWithBars/components/HeadCellRenderer/styles.js +30 -0
- package/esm/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.d.ts +8 -0
- package/esm/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.js +14 -0
- package/esm/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.test.d.ts +1 -0
- package/esm/TableWithBars/components/NumberCellValueRenderer/NumberCellValueRenderer.test.js +36 -0
- package/esm/TableWithBars/components/NumberCellValueRenderer/index.d.ts +1 -0
- package/esm/TableWithBars/components/NumberCellValueRenderer/index.js +1 -0
- package/esm/TableWithBars/components/NumberCellValueRenderer/styles.d.ts +1 -0
- package/esm/TableWithBars/components/NumberCellValueRenderer/styles.js +28 -0
- package/esm/TableWithBars/index.d.ts +1 -0
- package/esm/TableWithBars/index.js +1 -0
- package/esm/Tags/Tags.d.ts +7 -0
- package/esm/Tags/Tags.js +7 -0
- package/esm/Tags/Tags.test.d.ts +1 -0
- package/esm/Tags/Tags.test.js +15 -0
- package/esm/Tags/components/Tag/Tag.d.ts +5 -0
- package/esm/Tags/components/Tag/Tag.js +26 -0
- package/esm/Tags/components/Tag/Tag.test.d.ts +1 -0
- package/esm/Tags/components/Tag/Tag.test.js +70 -0
- package/esm/Tags/components/Tag/index.d.ts +1 -0
- package/esm/Tags/components/Tag/index.js +1 -0
- package/esm/Tags/components/Tag/styles.d.ts +1 -0
- package/esm/Tags/components/Tag/styles.js +20 -0
- package/esm/Tags/index.d.ts +1 -0
- package/esm/Tags/index.js +1 -0
- package/esm/TagsEditor/TagsEditor.d.ts +8 -0
- package/esm/TagsEditor/TagsEditor.js +88 -0
- package/esm/TagsEditor/TagsEditor.test.d.ts +1 -0
- package/esm/TagsEditor/TagsEditor.test.js +216 -0
- package/esm/TagsEditor/index.d.ts +1 -0
- package/esm/TagsEditor/index.js +1 -0
- package/esm/TreeChart/TreeChart.d.ts +7 -0
- package/esm/TreeChart/TreeChart.js +27 -0
- package/esm/TreeChart/TreeChart.test.d.ts +1 -0
- package/esm/TreeChart/TreeChart.test.js +86 -0
- package/esm/TreeChart/components/CustomizedContent/CustomizedContent.d.ts +10 -0
- package/esm/TreeChart/components/CustomizedContent/CustomizedContent.js +22 -0
- package/esm/TreeChart/components/CustomizedContent/index.d.ts +1 -0
- package/esm/TreeChart/components/CustomizedContent/index.js +1 -0
- package/esm/TreeChart/index.d.ts +1 -0
- package/esm/TreeChart/index.js +1 -0
- package/esm/TypeaheadEditor/TypeaheadEditor.d.ts +21 -0
- package/esm/TypeaheadEditor/TypeaheadEditor.js +235 -0
- package/esm/TypeaheadEditor/TypeaheadEditor.test.d.ts +1 -0
- package/esm/TypeaheadEditor/TypeaheadEditor.test.js +501 -0
- package/esm/TypeaheadEditor/index.d.ts +1 -0
- package/esm/TypeaheadEditor/index.js +1 -0
- package/esm/components/ClickAwayProvider/ClickAwayProvider.d.ts +0 -1
- package/esm/components/CollaborationItem/Avatar/Avatar.d.ts +0 -1
- package/esm/components/CollaborationItem/Comment/Comment.d.ts +0 -1
- 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 +0 -1
- package/esm/components/CollaborationItem/CommentTarget/CommentTarget.d.ts +0 -1
- 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 +0 -1
- package/esm/components/CollaborationItem/TextFieldWithMentions/TextFieldWithMentions.js +1 -1
- package/esm/components/CollaborationItem/TextFieldWithMentions/styles.js +1 -0
- 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/ColoredSourceIcon/ColoredSourceIcon.js +1 -1
- package/esm/components/CommentsContainer/CommentsContainer.d.ts +0 -1
- package/esm/components/ConfigureColumnsPopup/ConfigureColumnsPopup.js +1 -1
- package/esm/components/ConfirmDeleteDialog/ConfirmDeleteDialog.d.ts +0 -1
- package/esm/components/ConnectionEditor/ConnectionEditor.d.ts +0 -1
- 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 +0 -1
- package/esm/components/DateIntervalSelector/DateIntervalSelector.d.ts +0 -1
- package/esm/components/Drawer/Drawer.d.ts +0 -1
- 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 +0 -1
- package/esm/components/EntityTypeBadge/EntityTypeBadge.d.ts +0 -1
- package/esm/components/EntityTypeBadge/EntityTypeBadge.js +1 -1
- package/esm/components/EntityTypeIcon/EntityTypeIcon.d.ts +0 -1
- package/esm/components/EntityUriLink/EntityUriLink.d.ts +2 -2
- package/esm/components/ErrorPopup/ErrorPopup.d.ts +0 -1
- package/esm/components/ErrorWrapper/ErrorMessage.d.ts +0 -1
- package/esm/components/ErrorWrapper/styles.d.ts +1 -1
- package/esm/components/ExpandableSearchInput/ExpandableSearchInput.d.ts +0 -1
- package/esm/components/ExpandableSearchInput/ExpandableSearchInput.js +1 -1
- package/esm/components/HierarchicalAttributeTooltip/HierarchicalAttributeTooltip.d.ts +0 -1
- package/esm/components/HierarchyNodeTitle/HierarchyNodeTitle.d.ts +0 -1
- package/esm/components/HierarchyNodeTitle/styles.d.ts +1 -1
- package/esm/components/Highlighter/Highlighter.d.ts +0 -1
- package/esm/components/ImageAttributesGallery/GalleryView/GalleryView.d.ts +0 -1
- package/esm/components/ImageAttributesGallery/GalleryView/GalleryView.js +2 -2
- package/esm/components/ImageAttributesGallery/HeaderLeft/HeaderLeft.d.ts +0 -1
- package/esm/components/ImageAttributesGallery/HeaderRight/HeaderRight.d.ts +0 -1
- package/esm/components/ImageAttributesGallery/HeaderRight/HeaderRight.js +1 -1
- package/esm/components/ImageAttributesGallery/ImageAttributesGallery.d.ts +0 -1
- package/esm/components/ImageDetailsView/ImageDetailsView.d.ts +0 -1
- package/esm/components/ImageDetailsView/ImageDetailsViewCarousel/ImageDetailsViewCarousel.d.ts +0 -1
- package/esm/components/ImageDetailsView/ImageDetailsViewCarousel/ImageDetailsViewCarousel.js +4 -4
- package/esm/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/Thumbnails.d.ts +0 -1
- package/esm/components/ImageDetailsView/ImageDetailsViewCarousel/Thumbnails/Thumbnails.js +1 -1
- package/esm/components/ImageDetailsView/ImageDetailsViewSidebar/ImageDetailsViewSidebar.d.ts +0 -1
- package/esm/components/ImageDetailsView/ImageDetailsViewSidebar/styles.d.ts +1 -1
- package/esm/components/ImageDetailsView/MetaInfo/MetaInfo.d.ts +0 -1
- package/esm/components/ImageDetailsView/MetaInfoForm/MetaInfoForm.d.ts +0 -1
- package/esm/components/ImageDetailsView/MetaInfoForm/MetaInfoForm.js +2 -2
- package/esm/components/ImageDetailsView/MetaInfoHeader/MetaInfoHeader.d.ts +0 -1
- 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 +0 -1
- 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 +0 -1
- package/esm/components/ImportButton/ImportButton.js +1 -1
- package/esm/components/LightArrowTooltip/LightArrowTooltip.d.ts +0 -1
- package/esm/components/LinearLoadIndicator/LinearLoadIndicator.d.ts +0 -1
- package/esm/components/LoadingSpinner/LoadingSpinner.d.ts +0 -1
- package/esm/components/LogicOperator/LogicOperator.d.ts +0 -1
- package/esm/components/LogicOperator/LogicOperator.js +2 -2
- package/esm/components/Marginator/Marginator.d.ts +0 -1
- 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 +0 -1
- package/esm/components/MatchRulesBlock/MatchRulesTitle.d.ts +0 -1
- package/esm/components/MatchRulesBlock/MatchRulesTooltip/MatchRulesTooltip.d.ts +0 -1
- package/esm/components/MatchRulesBlock/MatchRulesTooltip/styles.d.ts +1 -1
- package/esm/components/MatchRulesBlock/NotMatchRule/NotMatchRule.d.ts +0 -1
- package/esm/components/MatchRulesBlock/SimpleMatchRules/SimpleMatchRules.d.ts +0 -1
- package/esm/components/MatchRulesBlock/SimpleMatchRules/styles.d.ts +1 -1
- package/esm/components/MatchRulesBlock/SimpleMatchRules/styles.js +2 -1
- 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 +0 -1
- 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 +0 -1
- package/esm/components/MatchRulesSelector/MatchRulesSelector.d.ts +0 -1
- package/esm/components/MergeButton/MergeButton.d.ts +1 -1
- package/esm/components/MergeButton/MergeButton.js +2 -1
- package/esm/components/MetadataTypesSelector/ListLabel/ListLabel.d.ts +0 -1
- 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/MultipleInput/MultipleInput.d.ts +0 -1
- package/esm/components/NotMatchButton/NotMatchButton.d.ts +2 -2
- package/esm/components/NotMatchButton/NotMatchButton.js +4 -3
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- package/esm/components/ProfilesList/ProfilesList.d.ts +0 -1
- package/esm/components/ProfilesList/styles.d.ts +1 -1
- package/esm/components/QueryBuilderRow/components/ReadOnlyFilter.d.ts +0 -1
- package/esm/components/QueryBuilderRow/components/ReadOnlyLogicOperator.d.ts +0 -1
- 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 +0 -1
- package/esm/components/ReltioMap/MapControls/TopCenterMapControls/TopCenterMapControls.d.ts +0 -1
- 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 +0 -1
- package/esm/components/RequiredMark/RequiredMark.d.ts +0 -1
- package/esm/components/ScrollableTabs/ScrollableTabs.js +1 -1
- package/esm/components/ScrollableTabs/styles.d.ts +1 -1
- package/esm/components/SearchHighlighter/SearchHighlighter.d.ts +0 -1
- package/esm/components/SearchInput/SearchInput.js +1 -1
- package/esm/components/SearchInput/WhiteSearchInput.d.ts +0 -1
- 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 +0 -1
- package/esm/components/SettingsMenu/SettingsMenu.js +2 -2
- package/esm/components/SideIconPanel/SideButtonsPanel.d.ts +2 -7
- package/esm/components/SideIconPanel/SideButtonsPanel.js +5 -4
- 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/SourceSystemsSelector/SourceSystemsSelector.d.ts +0 -1
- package/esm/components/StepNavigation/StepNavigation.d.ts +0 -1
- 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 +0 -1
- package/esm/components/TenantLabel/TenantLabel.d.ts +0 -1
- package/esm/components/TenantsDropDownSelector/TenantsDropDownSelector.d.ts +0 -1
- package/esm/components/TenantsDropDownSelector/TenantsDropDownSelector.js +2 -1
- package/esm/components/Title/Title.d.ts +0 -1
- 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 +0 -1
- package/esm/components/UploadImageDialog/DividerWithText/styles.d.ts +1 -1
- package/esm/components/UploadImageDialog/ErrorSnackbar/ErrorSnackbar.d.ts +0 -1
- package/esm/components/UploadImageDialog/ErrorSnackbar/ErrorSnackbar.js +1 -1
- package/esm/components/UploadImageDialog/ImageByUrlField/ImageByUrlField.d.ts +0 -1
- package/esm/components/UploadImageDialog/ImageByUrlField/styles.d.ts +1 -1
- package/esm/components/UploadImageDialog/SelectImageButton/SelectImageButton.d.ts +0 -1
- package/esm/components/UploadImageDialog/TargetBox/TargetBox.d.ts +0 -1
- package/esm/components/UploadImageDialog/TargetBox/styles.d.ts +1 -1
- package/esm/components/UploadImageDialog/UploadImageDialog.d.ts +0 -1
- package/esm/components/UserSelector/UserSelector.d.ts +0 -1
- package/esm/components/ValueChip/ValueChip.d.ts +0 -1
- 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 +0 -1
- package/esm/components/VerticalHeadingsTable/TableCellWithDnd/TableCellWithDnd.d.ts +0 -1
- package/esm/components/VerticalHeadingsTable/TableColumnDragLayer/TableColumnDragLayer.d.ts +0 -1
- package/esm/components/VerticalHeadingsTable/TableColumnDragLayer/TableColumnDragPreview.d.ts +0 -1
- package/esm/components/VerticalHeadingsTable/TableRow/TableRow.d.ts +0 -1
- package/esm/components/VerticalHeadingsTable/TableRowWithDnd/TableRowWithDnd.d.ts +0 -1
- package/esm/components/VerticalHeadingsTable/types.d.ts +0 -1
- package/esm/components/commonReactSelectComponents/DropdownIndicatorWithIconButton.js +1 -1
- package/esm/components/commonReactSelectComponents/MenuList.d.ts +0 -1
- 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 +4 -2
- package/esm/components/crosswalks/AttributesTable/ConfirmEditIgnoredDialog/ConfirmEditIgnoredDialog.d.ts +0 -1
- 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 +0 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/DefaultCellValueRenderer.d.ts +0 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/OvValuesRenderer.js +5 -2
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RowCellRenderer.d.ts +0 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.d.ts +0 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RuleTypeInfoButton.js +2 -2
- package/esm/components/crosswalks/AttributesTable/cell-renderers/RuleTypeRenderer.d.ts +0 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/WinnerSourcesRenderer.d.ts +0 -1
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- 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 +0 -1
- package/esm/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.d.ts +0 -1
- package/esm/components/crosswalks/CrosswalkDragLayer/CrosswalkDragPreview.js +1 -1
- package/esm/components/crosswalks/CrosswalkEditor/CrosswalkEditor.d.ts +0 -1
- 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 +0 -1
- package/esm/components/crosswalks/SourceCrosswalksRow/SourceCrosswalksRow.d.ts +0 -1
- package/esm/components/crosswalks/hooks/useAttributeActions.d.ts +1 -1
- package/esm/components/crosswalks/hooks/useAttributeActions.js +2 -2
- package/esm/components/crosswalks/hooks/useModifiedEntity.d.ts +3 -3
- package/esm/components/crosswalks/types/AttributesTableData.d.ts +2 -3
- package/esm/components/crosswalks/types/CrosswalksByOwnerTypeMap.d.ts +1 -1
- package/esm/components/editors/BooleanRadioEditor/BooleanRadioEditor.d.ts +0 -1
- package/esm/components/editors/CustomDateRangeEditor/CustomDateRangeEditor.d.ts +0 -1
- package/esm/components/editors/DateEditor/DateEditor.d.ts +0 -1
- 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 +0 -1
- package/esm/components/editors/NumberEditor/NumberEditor.d.ts +0 -1
- package/esm/components/editors/TimestampEditor/TimestampEditor.d.ts +0 -1
- package/esm/components/history/ContributorsPanel/ContributorItem.d.ts +0 -1
- package/esm/components/history/ContributorsPanel/ContributorsPanel.d.ts +0 -1
- package/esm/components/history/DateRangeSelector/DateRangeSelector.d.ts +0 -1
- package/esm/components/history/HistoryActivitySelector/HistoryActivitySelector.d.ts +0 -1
- package/esm/components/history/HistoryFilterButton/HistoryFilterButton.d.ts +0 -1
- 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 +0 -1
- package/esm/components/history/HistoryHeader/HistoryHeader.d.ts +0 -1
- package/esm/components/history/HistoryHeader/styles.d.ts +1 -1
- package/esm/components/history/HistoryMenuButton/HistoryMenuButton.d.ts +0 -1
- package/esm/components/history/HistoryMenuButton/HistoryMenuButton.js +2 -2
- package/esm/components/history/HistoryPanelEmptyState/HistoryPanelEmptyState.d.ts +0 -1
- package/esm/components/history/HistoryRow/HistoryRow.d.ts +0 -1
- 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 +0 -1
- package/esm/components/history/ProfileBandHistory/ProfileBandHistory.d.ts +0 -1
- package/esm/components/history/hooks/useHistorySlice.js +22 -15
- 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 +0 -49
- package/esm/components/index.js +0 -49
- package/esm/components/workflow/cards/DataChangeRequestTaskCard/DataChangeRequestTaskCard.d.ts +0 -1
- package/esm/components/workflow/cards/GenericWorkflowTaskCard/styles.d.ts +1 -1
- package/esm/components/workflow/cards/PotentialMatchTaskCard/PotentialMatchTaskCard.d.ts +0 -1
- package/esm/components/workflow/cards/WorkflowTaskCard.d.ts +0 -1
- package/esm/components/workflow/cards/WorkflowTaskCardsFactory.d.ts +0 -1
- package/esm/components/workflow/components/AddWorkflowButton/AddWorkflowButton.d.ts +0 -1
- package/esm/components/workflow/components/AddWorkflowButton/styles.d.ts +1 -1
- package/esm/components/workflow/components/AddWorkflowDialog/AddWorkflowDialog.d.ts +0 -1
- package/esm/components/workflow/components/AddWorkflowDialog/styles.d.ts +1 -1
- package/esm/components/workflow/components/AssigneeSelector/AssigneeSelector.d.ts +0 -1
- package/esm/components/workflow/components/AttributesChanges/AttributesChanges.d.ts +0 -1
- package/esm/components/workflow/components/AttributesChanges/components/ChangeView/styles.d.ts +1 -1
- package/esm/components/workflow/components/AttributesChanges/components/DCRChangesList/DCRChangesList.d.ts +0 -1
- package/esm/components/workflow/components/AttributesChanges/components/DiffRenderer/DiffRenderer.d.ts +0 -1
- package/esm/components/workflow/components/AttributesChanges/components/ShowMoreLink/ShowMoreLink.d.ts +0 -1
- 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 +0 -1
- package/esm/components/workflow/components/LineDecorator/styles.d.ts +1 -1
- package/esm/components/workflow/components/PrioritySelector/PrioritySelector.d.ts +0 -1
- package/esm/components/workflow/components/ReassignButton/ReassignButton.d.ts +0 -1
- package/esm/components/workflow/components/ReassignButton/ReassignButton.js +1 -1
- package/esm/components/workflow/components/ReassignButton/ReassignDialog.d.ts +0 -1
- package/esm/components/workflow/components/ReassignButton/styles.d.ts +1 -1
- package/esm/components/workflow/components/TaskActionButtons/TaskActionButtons.d.ts +0 -1
- package/esm/components/workflow/components/TaskActions/TaskActions.d.ts +0 -1
- package/esm/components/workflow/components/TaskActions/TaskActions.js +2 -2
- package/esm/components/workflow/components/WorkflowComments/Comment.d.ts +0 -1
- package/esm/components/workflow/components/WorkflowComments/ExpandedComments.d.ts +0 -1
- package/esm/components/workflow/components/WorkflowComments/WorkflowComments.d.ts +0 -1
- package/esm/components/workflow/components/WorkflowComments/WorkflowComments.js +1 -1
- package/esm/components/workflow/components/WorkflowComments/styles.d.ts +2 -2
- package/esm/contexts/BasicTableContext/index.d.ts +2 -0
- package/esm/contexts/BasicTableContext/index.js +3 -0
- package/esm/contexts/MdmModuleContext/hooks.d.ts +1 -0
- package/esm/contexts/MdmModuleContext/hooks.js +6 -1
- package/esm/contexts/MdmModuleContext/index.d.ts +1 -1
- package/esm/contexts/MdmModuleContext/index.js +1 -1
- package/esm/contexts/RowCollapseContext/index.d.ts +2 -0
- package/esm/features/activity-log/ActivitiesFactory/ActivitiesFactory.d.ts +10 -0
- package/esm/features/activity-log/ActivitiesFactory/ActivitiesFactory.js +122 -0
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.d.ts +7 -0
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.js +6 -0
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.test.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/CommentActivity.test.js +28 -0
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/index.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/CommentActivity/index.js +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.d.ts +7 -0
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.js +13 -0
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.test.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/GroupActivity.test.js +61 -0
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/index.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/GroupActivity/index.js +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.d.ts +7 -0
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.js +13 -0
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.test.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/MergeActivity.test.js +108 -0
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/index.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/MergeActivity/index.js +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/ObjectLabel.d.ts +5 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/ObjectLabel.js +7 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/index.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/index.js +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/styles.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ObjectLabel/styles.js +8 -0
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.d.ts +7 -0
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.js +10 -0
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.test.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/PotentialMatchActivity.test.js +55 -0
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/index.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/PotentialMatchActivity/index.js +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.d.ts +7 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.js +13 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.test.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/ProfileActivity.test.js +128 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/index.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/ProfileActivity/index.js +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.d.ts +7 -0
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.js +13 -0
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.test.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/RelationActivity.test.js +138 -0
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/index.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/RelationActivity/index.js +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.d.ts +7 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.js +21 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.test.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/SearchActivity.test.js +200 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/index.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/index.js +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/styles.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SearchActivity/styles.js +9 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.d.ts +7 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.js +17 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.test.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/SimpleActivity.test.js +45 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/index.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/index.js +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/styles.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SimpleActivity/styles.js +9 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.d.ts +7 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.js +20 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.test.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/SynchronizationIssuesActivity.test.js +65 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/index.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/index.js +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/styles.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/components/SynchronizationIssuesActivity/styles.js +7 -0
- package/esm/features/activity-log/ActivitiesFactory/index.d.ts +1 -0
- package/esm/features/activity-log/ActivitiesFactory/index.js +1 -0
- package/esm/features/activity-log/ActivityExportButton/ActivityExportButton.d.ts +7 -0
- package/esm/features/activity-log/ActivityExportButton/ActivityExportButton.js +51 -0
- package/esm/features/activity-log/ActivityExportButton/ActivityExportButton.specs.d.ts +1 -0
- package/esm/features/activity-log/ActivityExportButton/ActivityExportButton.specs.js +138 -0
- package/esm/features/activity-log/ActivityExportButton/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityExportButton/index.js +1 -0
- package/esm/features/activity-log/ActivityFilterButton/ActivityFilterButton.d.ts +9 -0
- package/esm/features/activity-log/ActivityFilterButton/ActivityFilterButton.js +38 -0
- package/esm/features/activity-log/ActivityFilterButton/ActivityFilterButton.specs.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterButton/ActivityFilterButton.specs.js +126 -0
- package/esm/features/activity-log/ActivityFilterButton/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterButton/index.js +1 -0
- package/esm/features/activity-log/ActivityFilterButton/styles.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.d.ts +13 -0
- package/esm/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.js +46 -0
- package/esm/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.specs.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/ActivityFilterEditor.specs.js +253 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.d.ts +8 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.js +27 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.specs.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/ActivitySelector.specs.js +153 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/ActivitySelector/index.js +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.d.ts +7 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.js +95 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.specs.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/DateRangeSelector.specs.js +180 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/index.js +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/styles.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/DateRangeSelector/styles.js +67 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.d.ts +9 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.js +20 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.specs.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/EntityChangedSelectors.specs.js +131 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityChangedSelectors/index.js +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.d.ts +8 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.js +23 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.specs.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/EntityTypesSelector.specs.js +60 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/EntityTypesSelector/index.js +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.d.ts +7 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.js +23 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.specs.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/SourceSelector.specs.js +114 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/components/SourceSelector/index.js +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/editor.test-data.d.ts +25 -0
- package/esm/features/activity-log/ActivityFilterEditor/editor.test-data.js +72 -0
- package/esm/features/activity-log/ActivityFilterEditor/helpers.js +31 -0
- package/esm/features/activity-log/ActivityFilterEditor/helpers.test.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/helpers.test.js +95 -0
- package/esm/features/activity-log/ActivityFilterEditor/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/index.js +1 -0
- package/esm/features/activity-log/ActivityFilterEditor/styles.d.ts +5 -0
- package/esm/features/activity-log/ActivityLog/ActivityLog.d.ts +7 -0
- package/esm/features/activity-log/ActivityLog/ActivityLog.js +43 -0
- package/esm/features/activity-log/ActivityLog/ActivityLog.test.d.ts +1 -0
- package/esm/features/activity-log/ActivityLog/ActivityLog.test.js +208 -0
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.d.ts +6 -0
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.js +21 -0
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.test.d.ts +1 -0
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/ActivityItem.test.js +135 -0
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityLog/components/ActivityItem/index.js +1 -0
- package/esm/features/activity-log/ActivityLog/components/GroupItem/GroupItem.d.ts +7 -0
- package/esm/features/activity-log/ActivityLog/components/GroupItem/GroupItem.js +16 -0
- package/esm/features/activity-log/ActivityLog/components/GroupItem/GroupItem.test.d.ts +1 -0
- package/esm/features/activity-log/ActivityLog/components/GroupItem/GroupItem.test.js +36 -0
- package/esm/features/activity-log/ActivityLog/components/GroupItem/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityLog/components/GroupItem/index.js +1 -0
- package/esm/features/activity-log/ActivityLog/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityLog/index.js +1 -0
- package/esm/features/activity-log/ActivityLogFilter/ActivityLogFilter.d.ts +11 -0
- package/esm/features/activity-log/ActivityLogFilter/ActivityLogFilter.js +36 -0
- package/esm/features/activity-log/ActivityLogFilter/ActivityLogFilter.specs.d.ts +1 -0
- package/esm/features/activity-log/ActivityLogFilter/ActivityLogFilter.specs.js +83 -0
- package/esm/features/activity-log/ActivityLogFilter/helpers.specs.d.ts +1 -0
- package/esm/features/activity-log/ActivityLogFilter/helpers.specs.js +434 -0
- package/esm/features/activity-log/ActivityLogFilter/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityLogFilter/index.js +1 -0
- package/esm/features/activity-log/ActivityLogFilter/styles.d.ts +1 -0
- package/esm/features/activity-log/ActivityTitle/ActivityTitle.d.ts +8 -0
- package/esm/features/activity-log/ActivityTitle/ActivityTitle.js +10 -0
- package/esm/features/activity-log/ActivityTitle/ActivityTitle.test.d.ts +1 -0
- package/esm/features/activity-log/ActivityTitle/ActivityTitle.test.js +14 -0
- package/esm/features/activity-log/ActivityTitle/index.d.ts +1 -0
- package/esm/features/activity-log/ActivityTitle/index.js +1 -0
- package/esm/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.d.ts +9 -0
- package/esm/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.js +14 -0
- package/esm/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.test.d.ts +1 -0
- package/esm/features/activity-log/CollapsibleActivityRecords/CollapsibleActivityRecords.test.js +66 -0
- package/esm/features/activity-log/CollapsibleActivityRecords/index.d.ts +1 -0
- package/esm/features/activity-log/CollapsibleActivityRecords/index.js +1 -0
- package/esm/features/activity-log/EntityObject/EntityObject.d.ts +6 -0
- package/esm/features/activity-log/EntityObject/EntityObject.js +13 -0
- package/esm/features/activity-log/EntityObject/EntityObject.test.d.ts +1 -0
- package/esm/features/activity-log/EntityObject/EntityObject.test.js +41 -0
- package/esm/features/activity-log/EntityObject/index.d.ts +1 -0
- package/esm/features/activity-log/EntityObject/index.js +1 -0
- package/esm/features/activity-log/EntityObject/styles.d.ts +1 -0
- package/esm/features/activity-log/EntityRecord/EntityRecord.d.ts +6 -0
- package/esm/features/activity-log/EntityRecord/EntityRecord.js +38 -0
- package/esm/features/activity-log/EntityRecord/EntityRecord.test.d.ts +1 -0
- package/esm/features/activity-log/EntityRecord/EntityRecord.test.js +242 -0
- package/esm/features/activity-log/EntityRecord/index.d.ts +1 -0
- package/esm/features/activity-log/EntityRecord/index.js +1 -0
- package/esm/features/activity-log/EntityRecord/styles.d.ts +1 -0
- package/esm/features/activity-log/EntityRecord/styles.js +11 -0
- package/esm/features/activity-log/Field/Field.d.ts +7 -0
- package/esm/features/activity-log/Field/Field.js +11 -0
- package/esm/features/activity-log/Field/index.d.ts +1 -0
- package/esm/features/activity-log/Field/index.js +1 -0
- package/esm/features/activity-log/Field/styles.d.ts +1 -0
- package/esm/features/activity-log/Field/styles.js +14 -0
- package/esm/features/activity-log/MoreItemsLink/MoreItemsLink.d.ts +8 -0
- package/esm/features/activity-log/MoreItemsLink/index.d.ts +1 -0
- package/esm/features/activity-log/MoreItemsLink/index.js +1 -0
- package/esm/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.d.ts +6 -0
- package/esm/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.js +13 -0
- package/esm/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.test.d.ts +1 -0
- package/esm/features/activity-log/PotentialMatchRecord/PotentialMatchRecord.test.js +52 -0
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.d.ts +6 -0
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.js +29 -0
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.test.d.ts +1 -0
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/PotentialMatchField.test.js +151 -0
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/helpers.d.ts +2 -0
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/helpers.js +15 -0
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/index.d.ts +1 -0
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/index.js +1 -0
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/styles.d.ts +1 -0
- package/esm/features/activity-log/PotentialMatchRecord/components/PotentialMatchField/styles.js +15 -0
- package/esm/features/activity-log/PotentialMatchRecord/index.d.ts +1 -0
- package/esm/features/activity-log/PotentialMatchRecord/index.js +1 -0
- package/esm/features/activity-log/Record/Record.d.ts +6 -0
- package/esm/features/activity-log/Record/Record.js +7 -0
- package/esm/features/activity-log/Record/index.d.ts +1 -0
- package/esm/features/activity-log/Record/index.js +1 -0
- package/esm/features/activity-log/Record/styles.d.ts +1 -0
- package/esm/features/activity-log/Record/styles.js +15 -0
- package/esm/features/activity-log/RecordLabel/RecordLabel.d.ts +7 -0
- package/esm/features/activity-log/RecordLabel/RecordLabel.js +10 -0
- package/esm/features/activity-log/RecordLabel/index.d.ts +1 -0
- package/esm/features/activity-log/RecordLabel/index.js +1 -0
- package/esm/features/activity-log/RecordLabel/styles.d.ts +1 -0
- package/esm/features/activity-log/RecordLabel/styles.js +12 -0
- package/esm/features/activity-log/RecordUpdates/RecordUpdates.d.ts +7 -0
- package/esm/features/activity-log/RecordUpdates/RecordUpdates.js +17 -0
- package/esm/features/activity-log/RecordUpdates/RecordUpdates.specs.d.ts +1 -0
- package/esm/features/activity-log/RecordUpdates/RecordUpdates.specs.js +122 -0
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.d.ts +6 -0
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.js +32 -0
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.test.d.ts +1 -0
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/DeltaField.test.js +119 -0
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/index.d.ts +1 -0
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/index.js +1 -0
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/styles.d.ts +1 -0
- package/esm/features/activity-log/RecordUpdates/components/DeltaField/styles.js +33 -0
- package/esm/features/activity-log/RecordUpdates/index.d.ts +1 -0
- package/esm/features/activity-log/RecordUpdates/index.js +1 -0
- package/esm/features/activity-log/RecordUpdates/styles.d.ts +1 -0
- package/esm/features/activity-log/RecordUpdates/styles.js +6 -0
- package/esm/features/activity-log/RelationObject/RelationObject.d.ts +6 -0
- package/esm/features/activity-log/RelationObject/RelationObject.js +14 -0
- package/esm/features/activity-log/RelationObject/RelationObject.test.d.ts +1 -0
- package/esm/features/activity-log/RelationObject/RelationObject.test.js +34 -0
- package/esm/features/activity-log/RelationObject/index.d.ts +1 -0
- package/esm/features/activity-log/RelationObject/index.js +1 -0
- package/esm/features/activity-log/RelationRecord/RelationRecord.d.ts +6 -0
- package/esm/features/activity-log/RelationRecord/RelationRecord.js +15 -0
- package/esm/features/activity-log/RelationRecord/RelationRecord.test.d.ts +1 -0
- package/esm/features/activity-log/RelationRecord/RelationRecord.test.js +88 -0
- package/esm/features/activity-log/RelationRecord/index.d.ts +1 -0
- package/esm/features/activity-log/RelationRecord/index.js +1 -0
- package/esm/features/activity-log/contexts/CollapsibleItemsContext.d.ts +14 -0
- package/esm/features/activity-log/hooks/useActivitiesLoader.js +60 -0
- package/esm/features/activity-log/index.d.ts +7 -0
- package/esm/features/activity-log/index.js +6 -0
- package/esm/features/activity-log/types.d.ts +98 -0
- package/esm/features/activity-log/types.js +38 -0
- package/esm/features/activity-log/utils/activities.test.d.ts +1 -0
- package/esm/features/activity-log/utils/activities.test.js +600 -0
- package/esm/features/activity-log/utils/filters.test.d.ts +1 -0
- package/esm/features/activity-log/utils/filters.test.js +237 -0
- package/esm/helpers/attributesView.d.ts +16 -0
- package/esm/helpers/attributesView.js +69 -0
- package/esm/helpers/attributesView.test.d.ts +1 -0
- package/esm/helpers/attributesView.test.js +93 -0
- package/esm/helpers/basicTable.d.ts +18 -0
- package/esm/helpers/basicTable.js +68 -0
- package/esm/helpers/basicTable.test.d.ts +1 -0
- package/esm/helpers/basicTable.test.js +35 -0
- package/esm/helpers/charts.d.ts +2 -0
- package/esm/helpers/charts.js +17 -0
- package/esm/hooks/useBasicTableCellRenderer/CellRenderer.d.ts +12 -0
- package/esm/hooks/useBasicTableCellRenderer/CellRenderer.js +39 -0
- package/esm/hooks/useBasicTableCellRenderer/CellRenderer.test.d.ts +1 -0
- package/esm/hooks/useBasicTableCellRenderer/CellRenderer.test.js +51 -0
- package/esm/hooks/useBasicTableCellRenderer/index.d.ts +2 -0
- package/esm/hooks/useBasicTableCellRenderer/index.js +2 -0
- package/esm/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.d.ts +22 -0
- package/esm/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.js +29 -0
- package/esm/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.test.d.ts +1 -0
- package/esm/hooks/useBasicTableCellRenderer/useBasicTableCellRenderer.test.js +123 -0
- package/esm/hooks/useChartTooltipState.d.ts +7 -0
- package/esm/hooks/useChartTooltipState.js +27 -0
- package/esm/hooks/useClickableChartStyle.d.ts +1 -0
- package/esm/hooks/useClickableChartStyle.js +10 -0
- package/esm/hooks/useCollapsibleTableRows/dataHelpers.d.ts +2 -0
- package/esm/hooks/useCollapsibleTableRows/dataHelpers.js +91 -0
- package/esm/hooks/useCollapsibleTableRows/dataHelpers.test.d.ts +1 -0
- package/esm/hooks/useCollapsibleTableRows/dataHelpers.test.js +319 -0
- package/esm/hooks/useCollapsibleTableRows/index.d.ts +1 -0
- package/esm/hooks/useCollapsibleTableRows/index.js +1 -0
- package/esm/hooks/useCollapsibleTableRows/nestedHelpers.test.d.ts +1 -0
- package/esm/hooks/useCollapsibleTableRows/nestedHelpers.test.js +164 -0
- package/esm/hooks/useCollapsibleTableRows/useCollapsibleTableRows.d.ts +19 -0
- package/esm/hooks/useCollapsibleTableRows/useCollapsibleTableRows.js +45 -0
- package/esm/hooks/useCollapsibleTableRows/useCollapsibleTableRows.test.d.ts +1 -0
- package/esm/hooks/useCollapsibleTableRows/useCollapsibleTableRows.test.js +139 -0
- package/esm/hooks/useDynamicRowCellHeight.d.ts +13 -0
- package/esm/hooks/useDynamicRowCellHeight.js +40 -0
- package/esm/hooks/useLayoutResetter.d.ts +0 -1
- 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/useScrollToAttribute/useScrollToAttribute.d.ts +9 -0
- package/esm/hooks/useSnackbar.d.ts +0 -1
- package/esm/index.d.ts +83 -2
- package/esm/index.js +85 -2
- package/esm/test-utils/TestPerspectiveSettingsProvider.d.ts +8 -0
- package/esm/test-utils/TestPerspectiveSettingsProvider.js +28 -0
- package/esm/test-utils/TestStylesProvider.d.ts +3 -0
- package/esm/test-utils/TestStylesProvider.js +19 -0
- package/esm/test-utils/index.d.ts +18 -0
- package/esm/test-utils/index.js +109 -0
- package/esm/types/basicTable.d.ts +82 -0
- package/esm/types/basicTable.js +1 -0
- package/esm/types/charts.d.ts +16 -0
- package/esm/types/charts.js +1 -0
- package/esm/types/index.d.ts +22 -1
- package/esm/types/index.js +6 -0
- package/esm/types/inlineAttributes.d.ts +24 -0
- package/esm/types/inlineAttributes.js +1 -0
- package/package.json +2 -2
- package/cjs/HOCs/withTooltip/propTypes.d.ts +0 -7
- package/cjs/HOCs/withTooltip/propTypes.js +0 -11
- package/cjs/components/ActionButton/ActionButton.d.ts +0 -16
- package/cjs/components/ActionButton/ActionButton.js +0 -94
- package/cjs/components/ActionButton/styles.d.ts +0 -1
- package/cjs/components/ActionButton/styles.js +0 -48
- package/cjs/components/ActionsPanel/ActionsPanel.d.ts +0 -21
- package/cjs/components/ActionsPanel/ActionsPanel.js +0 -42
- package/cjs/components/ActionsPanel/MenuItemRenderer.d.ts +0 -8
- package/cjs/components/ActionsPanel/MenuItemRenderer.js +0 -45
- package/cjs/components/ArrowExpandButton/ArrowExpandButton.d.ts +0 -8
- package/cjs/components/ArrowExpandButton/ArrowExpandButton.js +0 -39
- package/cjs/components/AttributeGroupIcon/AttributeGroupIcon.d.ts +0 -11
- package/cjs/components/AttributeGroupIcon/AttributeGroupIcon.js +0 -19
- package/cjs/components/AttributeListItem/AttrTypeIcon.d.ts +0 -7
- package/cjs/components/AttributeListItem/AttrTypeIcon.js +0 -29
- package/cjs/components/AttributeListItem/AttributeListItem.d.ts +0 -40
- package/cjs/components/AttributeListItem/AttributeListItem.js +0 -73
- package/cjs/components/AttributeListItem/styles.d.ts +0 -1
- package/cjs/components/AttributeListItem/styles.js +0 -97
- package/cjs/components/AttributeSelector/AttributeSelector.d.ts +0 -14
- package/cjs/components/AttributeSelector/AttributeSelector.js +0 -106
- package/cjs/components/AttributesErrorsPanel/AttributesErrorsPanel.d.ts +0 -7
- package/cjs/components/AttributesErrorsPanel/AttributesErrorsPanel.js +0 -83
- package/cjs/components/AttributesErrorsPanel/ErrorsPanel/Error.js +0 -61
- package/cjs/components/AttributesErrorsPanel/ErrorsPanel/ErrorsPanel.js +0 -54
- package/cjs/components/AttributesErrorsPanel/ErrorsPanel/helpers.d.ts +0 -5
- package/cjs/components/AttributesErrorsPanel/ErrorsPanel/helpers.js +0 -44
- package/cjs/components/AttributesErrorsPanel/styles.d.ts +0 -2
- package/cjs/components/AttributesErrorsPanel/styles.js +0 -115
- package/cjs/components/AttributesErrorsPanel/useCachedErrors.js +0 -21
- package/cjs/components/AttributesFiltersBuilder/AttributesFiltersBuilder.d.ts +0 -17
- package/cjs/components/AttributesFiltersBuilder/AttributesFiltersBuilder.js +0 -128
- package/cjs/components/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.js +0 -59
- package/cjs/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.d.ts +0 -8
- package/cjs/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.js +0 -63
- package/cjs/components/AttributesFiltersBuilder/components/FilterSelector/styles.d.ts +0 -2
- package/cjs/components/AttributesFiltersBuilder/components/FilterSelector/styles.js +0 -9
- package/cjs/components/AttributesFiltersBuilder/components/RowActions/RowActions.js +0 -55
- package/cjs/components/AttributesFiltersBuilder/components/ValuesEditor/ValuesEditor.d.ts +0 -4
- package/cjs/components/AttributesFiltersBuilder/components/ValuesEditor/ValuesEditor.js +0 -66
- package/cjs/components/AttributesFiltersBuilder/helpers.d.ts +0 -13
- package/cjs/components/AttributesFiltersBuilder/index.d.ts +0 -4
- package/cjs/components/AttributesFiltersBuilder/index.js +0 -12
- package/cjs/components/AttributesFiltersBuilder/types.d.ts +0 -20
- package/cjs/components/AttributesFiltersButton/ActionButtons/ActionButtons.d.ts +0 -8
- package/cjs/components/AttributesFiltersButton/ActionButtons/ActionButtons.js +0 -18
- package/cjs/components/AttributesFiltersButton/AttributesFiltersButton.d.ts +0 -24
- package/cjs/components/AttributesFiltersButton/AttributesFiltersButton.js +0 -94
- package/cjs/components/AutoSizeList/AutoSizeList.d.ts +0 -17
- package/cjs/components/AvatarWithFallback/AvatarWithFallback.d.ts +0 -13
- package/cjs/components/AvatarWithFallback/AvatarWithFallback.js +0 -84
- package/cjs/components/BasicAttributeSelector/AttributeTitle/AttributeTitle.d.ts +0 -14
- package/cjs/components/BasicAttributeSelector/AttributeTitle/AttributeTitle.js +0 -27
- package/cjs/components/BasicAttributeSelector/AttributeTitle/styles.d.ts +0 -2
- package/cjs/components/BasicAttributeSelector/AttributeTitle/styles.js +0 -44
- package/cjs/components/BasicAttributeSelector/BasicAttributeSelector.d.ts +0 -4
- package/cjs/components/BasicAttributeSelector/BasicAttributeSelector.js +0 -98
- package/cjs/components/BasicAttributeSelector/helpers.d.ts +0 -22
- package/cjs/components/BasicAttributeSelector/helpers.js +0 -80
- package/cjs/components/BasicAttributeSelector/styles.d.ts +0 -2
- package/cjs/components/BasicAttributeSelector/styles.js +0 -15
- package/cjs/components/BasicTableView/BasicTable/BasicTable.d.ts +0 -58
- package/cjs/components/BasicTableView/BasicTable/BasicTable.js +0 -120
- package/cjs/components/BasicTableView/BasicTable/CellRenderer/CellRenderer.d.ts +0 -13
- package/cjs/components/BasicTableView/BasicTable/CellRenderer/CellRenderer.js +0 -46
- package/cjs/components/BasicTableView/BasicTable/HOCs/withFilter.d.ts +0 -16
- package/cjs/components/BasicTableView/BasicTable/HOCs/withFilter.js +0 -38
- package/cjs/components/BasicTableView/BasicTable/HOCs/withFilterAtBottom.d.ts +0 -11
- package/cjs/components/BasicTableView/BasicTable/HOCs/withFilterAtBottom.js +0 -43
- package/cjs/components/BasicTableView/BasicTable/HOCs/withTableContext.d.ts +0 -4
- package/cjs/components/BasicTableView/BasicTable/HOCs/withTableContext.js +0 -8
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/BlobRenderer.d.ts +0 -10
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/BlobRenderer.js +0 -20
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.d.ts +0 -11
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.js +0 -43
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/index.d.ts +0 -1
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/index.js +0 -8
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/styles.d.ts +0 -2
- package/cjs/components/BasicTableView/BasicTable/cell-value-renderers/styles.js +0 -22
- package/cjs/components/BasicTableView/BasicTable/contexts/RowCollapseContext.d.ts +0 -2
- package/cjs/components/BasicTableView/BasicTable/contexts/TableContext.d.ts +0 -2
- package/cjs/components/BasicTableView/BasicTable/contexts/TableContext.js +0 -9
- package/cjs/components/BasicTableView/BasicTable/contexts/index.d.ts +0 -1
- package/cjs/components/BasicTableView/BasicTable/contexts/index.js +0 -5
- package/cjs/components/BasicTableView/BasicTable/helpers/dataHelpers.d.ts +0 -3
- package/cjs/components/BasicTableView/BasicTable/helpers/dataHelpers.js +0 -125
- package/cjs/components/BasicTableView/BasicTable/helpers/defaultGetRowCellHeight.d.ts +0 -5
- package/cjs/components/BasicTableView/BasicTable/helpers/defaultGetRowCellHeight.js +0 -22
- package/cjs/components/BasicTableView/BasicTable/helpers/defaultRenderRowCell.d.ts +0 -6
- package/cjs/components/BasicTableView/BasicTable/helpers/defaultRenderRowCell.js +0 -33
- package/cjs/components/BasicTableView/BasicTable/hooks/index.d.ts +0 -2
- package/cjs/components/BasicTableView/BasicTable/hooks/index.js +0 -10
- package/cjs/components/BasicTableView/BasicTable/hooks/useBasicTableCellRenderer.d.ts +0 -22
- package/cjs/components/BasicTableView/BasicTable/hooks/useBasicTableCellRenderer.js +0 -36
- package/cjs/components/BasicTableView/BasicTable/hooks/useCollapsibleTableRows.d.ts +0 -19
- package/cjs/components/BasicTableView/BasicTable/hooks/useCollapsibleTableRows.js +0 -47
- package/cjs/components/BasicTableView/BasicTable/hooks/useDynamicRowCellHeight.d.ts +0 -13
- package/cjs/components/BasicTableView/BasicTable/hooks/useDynamicRowCellHeight.js +0 -43
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnListItem.d.ts +0 -27
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnListItem.js +0 -31
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettings.d.ts +0 -11
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettings.js +0 -52
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettingsPopup.d.ts +0 -15
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettingsPopup.js +0 -75
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/columnHelpers.d.ts +0 -4
- package/cjs/components/BasicTableView/BasicTableHeader/ColumnsSettings/styles.d.ts +0 -1
- package/cjs/components/BasicTableView/BasicTableHeader/FilterButton/FilterButton.d.ts +0 -12
- package/cjs/components/BasicTableView/BasicTableHeader/FilterButton/FilterButton.js +0 -26
- package/cjs/components/BasicTableView/BasicTableHeader/FilterButton/styles.d.ts +0 -1
- package/cjs/components/BasicTableView/BasicTableHeader/FilterButton/styles.js +0 -18
- package/cjs/components/BasicTableView/BasicTablePagination/BasicTablePagination.js +0 -73
- package/cjs/components/BasicTableView/CollapseRowButton/CollapseRowButton.d.ts +0 -14
- package/cjs/components/BasicTableView/CollapseRowButton/CollapseRowButton.js +0 -52
- package/cjs/components/BasicTableView/CollapseRowButton/styles.d.ts +0 -1
- package/cjs/components/BasicTableView/ColumnFilter/ColumnFilter.d.ts +0 -23
- package/cjs/components/BasicTableView/ColumnFilter/ColumnFilter.js +0 -120
- package/cjs/components/BasicTableView/ColumnFilter/FilterChip/FilterChip.d.ts +0 -14
- package/cjs/components/BasicTableView/ColumnFilter/FilterChip/FilterChip.js +0 -31
- package/cjs/components/BasicTableView/ColumnFilter/FilterChip/styles.d.ts +0 -2
- package/cjs/components/BasicTableView/ColumnFilter/FilterChip/styles.js +0 -27
- package/cjs/components/BasicTableView/ColumnFilter/helpers.d.ts +0 -16
- package/cjs/components/BasicTableView/ColumnFilter/helpers.js +0 -33
- package/cjs/components/BasicTableView/ColumnFilter/styles.d.ts +0 -2
- package/cjs/components/BasicTableView/ColumnFilter/styles.js +0 -30
- package/cjs/components/BasicTableView/RowCellAutoSizer/RowCellAutoSizer.d.ts +0 -14
- package/cjs/components/BasicTableView/RowCellAutoSizer/RowCellAutoSizer.js +0 -54
- package/cjs/components/BasicTableView/index.d.ts +0 -20
- package/cjs/components/BasicTableView/index.js +0 -57
- package/cjs/components/BasicTableView/types/index.d.ts +0 -82
- package/cjs/components/BasicTableView/viewState/basicTableViewState.js +0 -85
- package/cjs/components/BasicView/BasicView.d.ts +0 -12
- package/cjs/components/BasicView/BasicView.js +0 -60
- package/cjs/components/BasicViewContent/BasicViewContent.d.ts +0 -4
- package/cjs/components/BasicViewContent/BasicViewContent.js +0 -36
- package/cjs/components/BasicViewHeader/BasicViewHeader.d.ts +0 -8
- package/cjs/components/BasicViewHeader/BasicViewHeader.js +0 -40
- package/cjs/components/BasicViewHeader/styles.d.ts +0 -1
- package/cjs/components/ColorBar/ColorBar.d.ts +0 -8
- package/cjs/components/ColorBar/ColorBar.js +0 -42
- package/cjs/components/DropDownMenuButton/DropDownMenuButton.d.ts +0 -20
- package/cjs/components/DropDownMenuButton/DropDownMenuButton.js +0 -78
- package/cjs/components/DropDownMenuButton/MenuItemRenderer.d.ts +0 -8
- package/cjs/components/DropDownMenuButton/MenuItemRenderer.js +0 -50
- package/cjs/components/DropDownMenuButton/styles.d.ts +0 -1
- package/cjs/components/DropDownMenuButton/styles.js +0 -29
- package/cjs/components/ExpandedValueTooltip/ExpandedValueTooltip.d.ts +0 -11
- package/cjs/components/ExpandedValueTooltip/ExpandedValueTooltip.js +0 -73
- package/cjs/components/FacetViewHeader/FacetViewHeader.d.ts +0 -8
- package/cjs/components/FacetViewHeader/FacetViewHeader.js +0 -15
- package/cjs/components/FacetViewHeader/styles.d.ts +0 -1
- package/cjs/components/Image/CheckedIcon/CheckedIcon.d.ts +0 -8
- package/cjs/components/Image/Image.d.ts +0 -33
- package/cjs/components/Image/Image.js +0 -108
- package/cjs/components/Image/ImageActionsOverlay/ImageActionsOverlay.js +0 -87
- package/cjs/components/Image/styles.d.ts +0 -2
- package/cjs/components/InternalLink/InternalLink.d.ts +0 -3
- package/cjs/components/InternalLink/InternalLink.js +0 -39
- package/cjs/components/MultilineMenuItem/MultilineMenuItem.d.ts +0 -11
- package/cjs/components/MultilineMenuItem/MultilineMenuItem.js +0 -49
- package/cjs/components/MultilineMenuItem/styles.d.ts +0 -1
- package/cjs/components/MultilineMenuItem/styles.js +0 -23
- package/cjs/components/SmallIconButton/SmallIconButton.d.ts +0 -9
- package/cjs/components/SmallIconButton/SmallIconButton.js +0 -113
- package/cjs/components/SmallIconButton/index.d.ts +0 -17
- package/cjs/components/SmallIconButton/index.js +0 -11
- package/cjs/components/SourceIcon/SourceIcon.d.ts +0 -11
- package/cjs/components/SourceIcon/SourceIcon.js +0 -19
- package/cjs/components/activityLog/ActivityExportButton/ActivityExportButton.d.ts +0 -8
- package/cjs/components/activityLog/ActivityExportButton/ActivityExportButton.js +0 -80
- package/cjs/components/activityLog/ActivityFilterButton/ActivityFilterButton.d.ts +0 -10
- package/cjs/components/activityLog/ActivityFilterButton/ActivityFilterButton.js +0 -67
- package/cjs/components/activityLog/ActivityFilterEditor/ActivityFilterEditor.d.ts +0 -14
- package/cjs/components/activityLog/ActivityFilterEditor/ActivityFilterEditor.js +0 -75
- package/cjs/components/activityLog/ActivityFilterEditor/ActivitySelector.d.ts +0 -9
- package/cjs/components/activityLog/ActivityFilterEditor/ActivitySelector.js +0 -33
- package/cjs/components/activityLog/ActivityFilterEditor/DateRangeSelector.d.ts +0 -8
- package/cjs/components/activityLog/ActivityFilterEditor/DateRangeSelector.js +0 -124
- package/cjs/components/activityLog/ActivityFilterEditor/EntityChangedSelectors.d.ts +0 -10
- package/cjs/components/activityLog/ActivityFilterEditor/EntityChangedSelectors.js +0 -26
- package/cjs/components/activityLog/ActivityFilterEditor/EntityTypesSelector.d.ts +0 -9
- package/cjs/components/activityLog/ActivityFilterEditor/EntityTypesSelector.js +0 -29
- package/cjs/components/activityLog/ActivityFilterEditor/SourceSelector.d.ts +0 -8
- package/cjs/components/activityLog/ActivityFilterEditor/SourceSelector.js +0 -29
- package/cjs/components/activityLog/ActivityFilterEditor/styles.d.ts +0 -5
- package/cjs/components/activityLog/ActivityFilterEditor/utils/getSelectorActivityTypes.js +0 -35
- package/cjs/components/activityLog/ActivityLog/ActivityLog.d.ts +0 -8
- package/cjs/components/activityLog/ActivityLog/ActivityLog.js +0 -72
- package/cjs/components/activityLog/ActivityLog/items/ActivityItem/ActivityItem.d.ts +0 -7
- package/cjs/components/activityLog/ActivityLog/items/ActivityItem/ActivityItem.js +0 -27
- package/cjs/components/activityLog/ActivityLog/items/GroupItem/GroupItem.d.ts +0 -8
- package/cjs/components/activityLog/ActivityLog/items/GroupItem/GroupItem.js +0 -22
- package/cjs/components/activityLog/ActivityLogFilter/ActivityLogFilter.d.ts +0 -12
- package/cjs/components/activityLog/ActivityLogFilter/ActivityLogFilter.js +0 -42
- package/cjs/components/activityLog/ActivityLogFilter/styles.d.ts +0 -1
- package/cjs/components/activityLog/activities/ActivitiesFactory.d.ts +0 -11
- package/cjs/components/activityLog/activities/ActivitiesFactory.js +0 -127
- package/cjs/components/activityLog/activities/ActivityTitle/ActivityTitle.d.ts +0 -8
- package/cjs/components/activityLog/activities/ActivityTitle/ActivityTitle.js +0 -16
- package/cjs/components/activityLog/activities/CommentActivity.d.ts +0 -8
- package/cjs/components/activityLog/activities/CommentActivity.js +0 -12
- package/cjs/components/activityLog/activities/EntityObject/EntityObject.d.ts +0 -7
- package/cjs/components/activityLog/activities/EntityObject/EntityObject.js +0 -19
- package/cjs/components/activityLog/activities/GroupActivity.d.ts +0 -8
- package/cjs/components/activityLog/activities/GroupActivity.js +0 -20
- package/cjs/components/activityLog/activities/MergeActivity.d.ts +0 -8
- package/cjs/components/activityLog/activities/MergeActivity.js +0 -19
- package/cjs/components/activityLog/activities/MoreItemsLink/MoreItemsLink.d.ts +0 -9
- package/cjs/components/activityLog/activities/PotentialMatchActivity.d.ts +0 -8
- package/cjs/components/activityLog/activities/PotentialMatchActivity.js +0 -16
- package/cjs/components/activityLog/activities/ProfileActivity.d.ts +0 -8
- package/cjs/components/activityLog/activities/ProfileActivity.js +0 -19
- package/cjs/components/activityLog/activities/RelationActivity.d.ts +0 -8
- package/cjs/components/activityLog/activities/RelationActivity.js +0 -19
- package/cjs/components/activityLog/activities/RelationObject/RelationObject.d.ts +0 -7
- package/cjs/components/activityLog/activities/RelationObject/RelationObject.js +0 -20
- package/cjs/components/activityLog/activities/SearchActivity.d.ts +0 -8
- package/cjs/components/activityLog/activities/SearchActivity.js +0 -50
- package/cjs/components/activityLog/activities/SimpleActivity.d.ts +0 -8
- package/cjs/components/activityLog/activities/SimpleActivity.js +0 -22
- package/cjs/components/activityLog/activities/SynchronizationIssuesActivity.d.ts +0 -8
- package/cjs/components/activityLog/activities/SynchronizationIssuesActivity.js +0 -25
- package/cjs/components/activityLog/activities/fields/DeltaField.d.ts +0 -7
- package/cjs/components/activityLog/activities/fields/DeltaField.js +0 -42
- package/cjs/components/activityLog/activities/fields/PotentialMatchField.d.ts +0 -7
- package/cjs/components/activityLog/activities/fields/PotentialMatchField.js +0 -52
- package/cjs/components/activityLog/activities/fields/commonStyles.d.ts +0 -1
- package/cjs/components/activityLog/activities/fields/commonStyles.js +0 -22
- package/cjs/components/activityLog/activities/fields/styles.d.ts +0 -1
- package/cjs/components/activityLog/activities/fields/styles.js +0 -42
- package/cjs/components/activityLog/activities/records/CollapsibleActivityRecords.d.ts +0 -9
- package/cjs/components/activityLog/activities/records/CollapsibleActivityRecords.js +0 -21
- package/cjs/components/activityLog/activities/records/EntityRecord.d.ts +0 -7
- package/cjs/components/activityLog/activities/records/EntityRecord.js +0 -44
- package/cjs/components/activityLog/activities/records/PotentialMatchRecord.d.ts +0 -7
- package/cjs/components/activityLog/activities/records/PotentialMatchRecord.js +0 -19
- package/cjs/components/activityLog/activities/records/RecordUpdates.d.ts +0 -8
- package/cjs/components/activityLog/activities/records/RecordUpdates.js +0 -23
- package/cjs/components/activityLog/activities/records/RelationRecord.d.ts +0 -7
- package/cjs/components/activityLog/activities/records/RelationRecord.js +0 -23
- package/cjs/components/activityLog/activities/records/styles.d.ts +0 -1
- package/cjs/components/activityLog/activities/records/styles.js +0 -38
- package/cjs/components/activityLog/activities/styles.d.ts +0 -1
- package/cjs/components/activityLog/activities/styles.js +0 -21
- package/cjs/components/activityLog/contexts/CollapsibleItemsContext/index.d.ts +0 -15
- package/cjs/components/activityLog/hooks/useActivitiesLoader.js +0 -64
- package/cjs/components/activityLog/index.d.ts +0 -5
- package/cjs/components/activityLog/index.js +0 -29
- package/cjs/components/activityLog/types/ActivitiesFilter.d.ts +0 -12
- package/cjs/components/activityLog/types/ActivityData.d.ts +0 -10
- package/cjs/components/activityLog/types/ActivityDelta.d.ts +0 -7
- package/cjs/components/activityLog/types/ActivityItem.d.ts +0 -27
- package/cjs/components/activityLog/types/ActivityTypes.d.ts +0 -31
- package/cjs/components/activityLog/types/ActivityTypes.js +0 -35
- package/cjs/components/activityLog/types/DeltaTypes.d.ts +0 -5
- package/cjs/components/activityLog/types/DeltaTypes.js +0 -9
- package/cjs/components/activityLog/types/DeltaValue.d.ts +0 -10
- package/cjs/components/activityLog/types/DeltaValue.js +0 -2
- package/cjs/components/activityLog/types/index.d.ts +0 -7
- package/cjs/components/activityLog/types/index.js +0 -7
- package/cjs/components/attributes/AttributesView/AttributesView.d.ts +0 -4
- package/cjs/components/attributes/AttributesView/AttributesView.js +0 -41
- package/cjs/components/attributes/BranchDecorator/BranchDecorator.d.ts +0 -9
- package/cjs/components/attributes/BranchDecorator/BranchDecorator.js +0 -16
- package/cjs/components/attributes/BranchDecorator/styles.d.ts +0 -1
- package/cjs/components/attributes/DescriptionIcon/DescriptionIcon.d.ts +0 -8
- package/cjs/components/attributes/DescriptionIcon/DescriptionIcon.js +0 -46
- package/cjs/components/attributes/DescriptionIcon/index.d.ts +0 -1
- package/cjs/components/attributes/DescriptionIcon/index.js +0 -8
- package/cjs/components/attributes/ImageAttributesLine/ImageAttributesLine.d.ts +0 -27
- package/cjs/components/attributes/ImageAttributesLine/ImageAttributesLine.js +0 -140
- package/cjs/components/attributes/ImageAttributesLine/constants.d.ts +0 -9
- package/cjs/components/attributes/ImageAttributesLine/constants.js +0 -9
- package/cjs/components/attributes/ImageAttributesLine/index.d.ts +0 -1
- package/cjs/components/attributes/ImageAttributesLine/index.js +0 -8
- package/cjs/components/attributes/ImageAttributesLine/styles.d.ts +0 -6
- package/cjs/components/attributes/OvIcon/OvIcon.d.ts +0 -38
- package/cjs/components/attributes/OvIcon/OvIcon.js +0 -60
- package/cjs/components/attributes/OvIcon/heplers.d.ts +0 -4
- package/cjs/components/attributes/OvIcon/heplers.js +0 -11
- package/cjs/components/attributes/OvIcon/index.d.ts +0 -1
- package/cjs/components/attributes/OvIcon/index.js +0 -8
- package/cjs/components/attributes/OvIcon/styles.d.ts +0 -1
- package/cjs/components/attributes/PivotingAttributes/PivotingTooltip.js +0 -82
- package/cjs/components/attributes/PivotingAttributes/PivotingTooltipContent.d.ts +0 -11
- package/cjs/components/attributes/PivotingAttributes/PivotingTooltipContent.js +0 -32
- package/cjs/components/attributes/PivotingAttributes/styles.d.ts +0 -2
- package/cjs/components/attributes/PivotingAttributes/styles.js +0 -104
- package/cjs/components/attributes/editMode/AttributesFactory/Attribute.d.ts +0 -7
- package/cjs/components/attributes/editMode/AttributesFactory/Attribute.js +0 -47
- package/cjs/components/attributes/editMode/AttributesFactory/AttributesFactory.d.ts +0 -3
- package/cjs/components/attributes/editMode/AttributesFactory/AttributesFactory.js +0 -52
- package/cjs/components/attributes/editMode/AttributesList/AttributesList.js +0 -121
- package/cjs/components/attributes/editMode/AttributesList/index.d.ts +0 -1
- package/cjs/components/attributes/editMode/AttributesList/index.js +0 -8
- package/cjs/components/attributes/editMode/AttributesPager/AttributeRenderer.d.ts +0 -17
- package/cjs/components/attributes/editMode/AttributesPager/AttributeRenderer.js +0 -128
- package/cjs/components/attributes/editMode/AttributesPager/AttributesPager.d.ts +0 -4
- package/cjs/components/attributes/editMode/AttributesPager/AttributesPager.js +0 -90
- package/cjs/components/attributes/editMode/AttributesPager/CardinalityMessage.d.ts +0 -7
- package/cjs/components/attributes/editMode/AttributesPager/CardinalityMessage.js +0 -69
- package/cjs/components/attributes/editMode/AttributesPager/ImageLineRenderer.d.ts +0 -19
- package/cjs/components/attributes/editMode/AttributesPager/ImageLineRenderer.js +0 -60
- package/cjs/components/attributes/editMode/AttributesPager/SpecialRenderer.d.ts +0 -19
- package/cjs/components/attributes/editMode/AttributesPager/SpecialRenderer.js +0 -120
- package/cjs/components/attributes/editMode/AttributesPager/index.d.ts +0 -2
- package/cjs/components/attributes/editMode/AttributesPager/index.js +0 -10
- package/cjs/components/attributes/editMode/AttributesPager/styles.d.ts +0 -1
- package/cjs/components/attributes/editMode/AttributesPager/types.d.ts +0 -21
- package/cjs/components/attributes/editMode/AttributesPager/utils.d.ts +0 -2
- package/cjs/components/attributes/editMode/AttributesPager/utils.js +0 -7
- package/cjs/components/attributes/editMode/AttributesView/AttributesView.d.ts +0 -5
- package/cjs/components/attributes/editMode/AttributesView/AttributesView.js +0 -58
- package/cjs/components/attributes/editMode/ComplexAttribute/ComplexAttribute.js +0 -132
- package/cjs/components/attributes/editMode/EntityCreator/EntityCreator.d.ts +0 -10
- package/cjs/components/attributes/editMode/EntityCreator/EntityCreator.js +0 -42
- package/cjs/components/attributes/editMode/EntitySelector/EntitySelector.d.ts +0 -33
- package/cjs/components/attributes/editMode/EntitySelector/EntitySelector.js +0 -152
- package/cjs/components/attributes/editMode/EntitySelector/components/ClearIndicator.d.ts +0 -8
- package/cjs/components/attributes/editMode/EntitySelector/components/ClearIndicator.js +0 -20
- package/cjs/components/attributes/editMode/EntitySelector/components/EntityOption.d.ts +0 -23
- package/cjs/components/attributes/editMode/EntitySelector/components/EntityOption.js +0 -60
- package/cjs/components/attributes/editMode/EntitySelector/components/EntityTypeOption.d.ts +0 -19
- package/cjs/components/attributes/editMode/EntitySelector/components/EntityTypeOption.js +0 -45
- package/cjs/components/attributes/editMode/EntitySelector/components/Group.d.ts +0 -10
- package/cjs/components/attributes/editMode/EntitySelector/components/Group.js +0 -40
- package/cjs/components/attributes/editMode/EntitySelector/components/SingleValue.d.ts +0 -15
- package/cjs/components/attributes/editMode/EntitySelector/components/SingleValue.js +0 -85
- package/cjs/components/attributes/editMode/EntitySelector/components/styles.d.ts +0 -4
- package/cjs/components/attributes/editMode/EntitySelector/components/styles.js +0 -90
- package/cjs/components/attributes/editMode/EntitySelector/styles.d.ts +0 -1
- package/cjs/components/attributes/editMode/ImageAttributesLine/ImageAttributesLine.d.ts +0 -16
- package/cjs/components/attributes/editMode/ImageAttributesLine/ImageAttributesLine.js +0 -109
- package/cjs/components/attributes/editMode/ImageAttributesLine/index.d.ts +0 -2
- package/cjs/components/attributes/editMode/ImageAttributesLine/index.js +0 -7
- package/cjs/components/attributes/editMode/ImageAttributesLine/styles.d.ts +0 -2
- package/cjs/components/attributes/editMode/MoreAttributesButton/MoreAttributesButton.d.ts +0 -12
- package/cjs/components/attributes/editMode/MoreAttributesButton/MoreAttributesButton.js +0 -105
- package/cjs/components/attributes/editMode/MoreAttributesButton/helpers.d.ts +0 -9
- package/cjs/components/attributes/editMode/MoreAttributesButton/index.d.ts +0 -1
- package/cjs/components/attributes/editMode/MoreAttributesButton/index.js +0 -8
- package/cjs/components/attributes/editMode/MoreAttributesButton/styles.d.ts +0 -1
- package/cjs/components/attributes/editMode/MoreAttributesButton/useMoreAttributesItems.js +0 -69
- package/cjs/components/attributes/editMode/NestedAttribute/NestedAttribute.d.ts +0 -121
- package/cjs/components/attributes/editMode/NestedAttribute/NestedAttribute.js +0 -49
- package/cjs/components/attributes/editMode/ReferenceAttribute/ReferenceAttribute.js +0 -160
- package/cjs/components/attributes/editMode/ReferenceAttribute/styles.d.ts +0 -1
- package/cjs/components/attributes/editMode/RelationTypeSelector/RelationTypeSelector.d.ts +0 -27
- package/cjs/components/attributes/editMode/RelationTypeSelector/RelationTypeSelector.js +0 -76
- package/cjs/components/attributes/editMode/RelationTypeSelector/components/RelationOption.d.ts +0 -21
- package/cjs/components/attributes/editMode/RelationTypeSelector/components/RelationOption.js +0 -57
- package/cjs/components/attributes/editMode/RelationTypeSelector/components/styles.d.ts +0 -1
- package/cjs/components/attributes/editMode/RelationTypeSelector/components/styles.js +0 -55
- package/cjs/components/attributes/editMode/Roles/Roles.d.ts +0 -9
- package/cjs/components/attributes/editMode/Roles/Roles.js +0 -73
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +0 -3
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor.js +0 -163
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/styles.d.ts +0 -1
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/useAttributeValuePermissions.js +0 -14
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/useAutopopulationContextValue.js +0 -29
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/utils.d.ts +0 -5
- package/cjs/components/attributes/editMode/SimpleAttributeEditor/utils.js +0 -65
- package/cjs/components/attributes/editMode/Tags/Tags.d.ts +0 -10
- package/cjs/components/attributes/editMode/Tags/Tags.js +0 -117
- package/cjs/components/attributes/editMode/Tags/index.d.ts +0 -1
- package/cjs/components/attributes/editMode/Tags/index.js +0 -8
- package/cjs/components/attributes/editMode/hooks/useScrollToAttribute/useScrollToAttribute.d.ts +0 -9
- package/cjs/components/attributes/helpers/attributesView.d.ts +0 -8
- package/cjs/components/attributes/helpers/attributesView.js +0 -22
- package/cjs/components/attributes/inline/AttributesList/AttributesList.d.ts +0 -24
- package/cjs/components/attributes/inline/AttributesList/AttributesList.js +0 -42
- package/cjs/components/attributes/inline/AttributesPager/AttributesPager.d.ts +0 -27
- package/cjs/components/attributes/inline/AttributesPager/AttributesPager.js +0 -100
- package/cjs/components/attributes/inline/ComplexAttribute/ComplexAttribute.d.ts +0 -26
- package/cjs/components/attributes/inline/ComplexAttribute/ComplexAttribute.js +0 -79
- package/cjs/components/attributes/inline/ImageAttribute/ImageAttribute.d.ts +0 -23
- package/cjs/components/attributes/inline/ImageAttribute/ImageAttribute.js +0 -39
- package/cjs/components/attributes/inline/ImageAttributesBlock/ImageAttributesBlock.d.ts +0 -24
- package/cjs/components/attributes/inline/ImageAttributesBlock/ImageAttributesBlock.js +0 -34
- package/cjs/components/attributes/inline/NestedAttribute/NestedAttribute.d.ts +0 -23
- package/cjs/components/attributes/inline/NestedAttribute/NestedAttribute.js +0 -37
- package/cjs/components/attributes/inline/NestedAttributesBlock/NestedAttributesBlock.d.ts +0 -25
- package/cjs/components/attributes/inline/NestedAttributesBlock/NestedAttributesBlock.js +0 -44
- package/cjs/components/attributes/inline/ReferenceAttribute/ReferenceAttribute.d.ts +0 -23
- package/cjs/components/attributes/inline/ReferenceAttribute/ReferenceAttribute.js +0 -72
- package/cjs/components/attributes/inline/ReferenceAttributesBlock/ReferenceAttributesBlock.d.ts +0 -24
- package/cjs/components/attributes/inline/ReferenceAttributesBlock/ReferenceAttributesBlock.js +0 -34
- package/cjs/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/CrosswalkMenuItem.d.ts +0 -18
- package/cjs/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/CrosswalkMenuItem.js +0 -54
- package/cjs/components/attributes/inline/SimpleAttribute/SimpleAttribute.d.ts +0 -22
- package/cjs/components/attributes/inline/SimpleAttribute/SimpleAttribute.js +0 -123
- package/cjs/components/attributes/inline/SimpleAttribute/index.d.ts +0 -1
- package/cjs/components/attributes/inline/SimpleAttribute/index.js +0 -8
- package/cjs/components/attributes/inline/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +0 -13
- package/cjs/components/attributes/inline/SimpleAttributeEditor/SimpleAttributeEditor.js +0 -104
- package/cjs/components/attributes/inline/SimpleAttributesBlock/SimpleAttributesBlock.d.ts +0 -24
- package/cjs/components/attributes/inline/SimpleAttributesBlock/SimpleAttributesBlock.js +0 -65
- package/cjs/components/attributes/inline/common/ComplexAttributeLabel.js +0 -15
- package/cjs/components/attributes/inline/common/CrosswalkIcon.d.ts +0 -8
- package/cjs/components/attributes/inline/common/CrosswalkIcon.js +0 -22
- package/cjs/components/attributes/inline/common/DeleteButton.d.ts +0 -6
- package/cjs/components/attributes/inline/common/DeleteButton.js +0 -14
- package/cjs/components/attributes/inline/common/IgnoreButton.d.ts +0 -8
- package/cjs/components/attributes/inline/common/IgnoreButton.js +0 -15
- package/cjs/components/attributes/inline/common/PinButton.d.ts +0 -8
- package/cjs/components/attributes/inline/common/PinButton.js +0 -15
- package/cjs/components/attributes/inline/common/SourceItem.d.ts +0 -10
- package/cjs/components/attributes/inline/common/SourceItem.js +0 -29
- package/cjs/components/attributes/inline/common/styles.d.ts +0 -9
- package/cjs/components/attributes/inline/common/styles.js +0 -65
- package/cjs/components/attributes/inline/index.d.ts +0 -5
- package/cjs/components/attributes/inline/index.js +0 -29
- package/cjs/components/attributes/inline/types/AddAttributeEvent.d.ts +0 -7
- package/cjs/components/attributes/inline/types/AddAttributeEvent.js +0 -2
- package/cjs/components/attributes/inline/types/CrosswalksMap.d.ts +0 -8
- package/cjs/components/attributes/inline/types/CrosswalksMap.js +0 -2
- package/cjs/components/attributes/inline/types/DeleteAttributeEvent.d.ts +0 -6
- package/cjs/components/attributes/inline/types/DeleteAttributeEvent.js +0 -2
- package/cjs/components/attributes/inline/types/EditAttributeEvent.d.ts +0 -7
- package/cjs/components/attributes/inline/types/EditAttributeEvent.js +0 -2
- package/cjs/components/attributes/inline/types/IgnoreAttributeEvent.d.ts +0 -4
- package/cjs/components/attributes/inline/types/IgnoreAttributeEvent.js +0 -2
- package/cjs/components/attributes/inline/types/PinAttributeEvent.d.ts +0 -4
- package/cjs/components/attributes/inline/types/PinAttributeEvent.js +0 -2
- package/cjs/components/attributes/inline/types/index.d.ts +0 -6
- package/cjs/components/attributes/inline/types/index.js +0 -2
- package/cjs/components/attributes/pagersCommon/ShowLess.d.ts +0 -6
- package/cjs/components/attributes/pagersCommon/ShowLess.js +0 -18
- package/cjs/components/attributes/pagersCommon/ShowMore.d.ts +0 -8
- package/cjs/components/attributes/pagersCommon/ShowMore.js +0 -20
- package/cjs/components/attributes/pagersCommon/styles.d.ts +0 -1
- package/cjs/components/attributes/pagersCommon/styles.js +0 -13
- package/cjs/components/attributes/readMode/AttributeValuesBlock/AttributeValuesBlock.d.ts +0 -17
- package/cjs/components/attributes/readMode/AttributeValuesBlock/AttributeValuesBlock.js +0 -77
- package/cjs/components/attributes/readMode/AttributesFactory/Attribute.d.ts +0 -2
- package/cjs/components/attributes/readMode/AttributesFactory/Attribute.js +0 -11
- package/cjs/components/attributes/readMode/AttributesFactory/AttributesFactory.d.ts +0 -3
- package/cjs/components/attributes/readMode/AttributesFactory/AttributesFactory.js +0 -38
- package/cjs/components/attributes/readMode/AttributesList/AttributesList.d.ts +0 -15
- package/cjs/components/attributes/readMode/AttributesList/AttributesList.js +0 -75
- package/cjs/components/attributes/readMode/AttributesList/index.d.ts +0 -1
- package/cjs/components/attributes/readMode/AttributesList/index.js +0 -8
- package/cjs/components/attributes/readMode/AttributesPager/AttributesPager.js +0 -88
- package/cjs/components/attributes/readMode/AttributesPager/ImageLineRenderer.d.ts +0 -12
- package/cjs/components/attributes/readMode/AttributesPager/ImageLineRenderer.js +0 -22
- package/cjs/components/attributes/readMode/AttributesPager/MultiLineRenderer.d.ts +0 -17
- package/cjs/components/attributes/readMode/AttributesPager/MultiLineRenderer.js +0 -73
- package/cjs/components/attributes/readMode/AttributesPager/OneLineRenderer.d.ts +0 -13
- package/cjs/components/attributes/readMode/AttributesPager/OneLineRenderer.js +0 -33
- package/cjs/components/attributes/readMode/AttributesPager/SpecialRenderer.d.ts +0 -8
- package/cjs/components/attributes/readMode/AttributesPager/SpecialRenderer.js +0 -40
- package/cjs/components/attributes/readMode/AttributesPager/styles.d.ts +0 -3
- package/cjs/components/attributes/readMode/AttributesView/AttributesView.d.ts +0 -5
- package/cjs/components/attributes/readMode/AttributesView/AttributesView.js +0 -60
- package/cjs/components/attributes/readMode/ComplexAttribute/ComplexAttribute.d.ts +0 -46
- package/cjs/components/attributes/readMode/ComplexAttribute/ComplexAttribute.js +0 -94
- package/cjs/components/attributes/readMode/ComplexAttribute/styles.d.ts +0 -1
- package/cjs/components/attributes/readMode/ComplexAttribute/styles.js +0 -23
- package/cjs/components/attributes/readMode/ImageAttributesLine/ImageAttributesLine.d.ts +0 -14
- package/cjs/components/attributes/readMode/ImageAttributesLine/ImageAttributesLine.js +0 -58
- package/cjs/components/attributes/readMode/ImageAttributesLine/cross.inline.svg.d.ts +0 -1
- package/cjs/components/attributes/readMode/ImageAttributesLine/cross.inline.svg.js +0 -4
- package/cjs/components/attributes/readMode/ImageAttributesLine/index.d.ts +0 -1
- package/cjs/components/attributes/readMode/ImageAttributesLine/index.js +0 -8
- package/cjs/components/attributes/readMode/ImageAttributesLine/styles.d.ts +0 -2
- package/cjs/components/attributes/readMode/ImageAttributesLine/styles.js +0 -89
- package/cjs/components/attributes/readMode/NestedAttribute/NestedAttribute.js +0 -77
- package/cjs/components/attributes/readMode/NestedAttribute/index.d.ts +0 -1
- package/cjs/components/attributes/readMode/NestedAttribute/index.js +0 -8
- package/cjs/components/attributes/readMode/ReferenceAttribute/ReferenceAttribute.d.ts +0 -5
- package/cjs/components/attributes/readMode/ReferenceAttribute/ReferenceAttribute.js +0 -84
- package/cjs/components/attributes/readMode/ReferenceAttribute/index.d.ts +0 -2
- package/cjs/components/attributes/readMode/ReferenceAttribute/index.js +0 -7
- package/cjs/components/attributes/readMode/ReferenceAttribute/styles.d.ts +0 -2
- package/cjs/components/attributes/readMode/ReferenceAttribute/styles.js +0 -25
- package/cjs/components/attributes/readMode/SimpleAttribute/SimpleAttribute.d.ts +0 -10
- package/cjs/components/attributes/readMode/SimpleAttribute/SimpleAttribute.js +0 -68
- package/cjs/components/attributes/readMode/SimpleAttribute/index.d.ts +0 -1
- package/cjs/components/attributes/readMode/SimpleAttribute/index.js +0 -8
- package/cjs/components/attributes/readMode/SimpleAttribute/styles.d.ts +0 -1
- package/cjs/components/attributes/readMode/SimpleAttribute/styles.js +0 -43
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/Role.d.ts +0 -6
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/Role.js +0 -44
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/Roles.d.ts +0 -7
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/Roles.js +0 -13
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/index.d.ts +0 -1
- package/cjs/components/attributes/readMode/SpecialAttributes/Roles/index.js +0 -8
- package/cjs/components/attributes/readMode/SpecialAttributes/SpecialAttributesArray.d.ts +0 -9
- package/cjs/components/attributes/readMode/SpecialAttributes/SpecialAttributesArray.js +0 -33
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/Tag.d.ts +0 -6
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/Tag.js +0 -52
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/Tags.d.ts +0 -8
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/Tags.js +0 -13
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/index.d.ts +0 -1
- package/cjs/components/attributes/readMode/SpecialAttributes/Tags/index.js +0 -8
- package/cjs/components/attributes/readMode/helpers/commonStyles.d.ts +0 -1
- package/cjs/components/attributes/readMode/helpers/commonStyles.js +0 -7
- package/cjs/components/attributes/types/attributes.d.ts +0 -24
- package/cjs/components/attributes/types/attributes.js +0 -2
- package/cjs/components/attributes/types/attributesView.d.ts +0 -11
- package/cjs/components/attributes/types/attributesView.js +0 -2
- package/cjs/components/attributes/types/index.d.ts +0 -2
- package/cjs/components/attributes/types/index.js +0 -18
- package/cjs/components/charts/ActiveShape/ActiveShape.d.ts +0 -10
- package/cjs/components/charts/ActiveShape/ActiveShape.js +0 -52
- package/cjs/components/charts/BarChart/BarChart.d.ts +0 -4
- package/cjs/components/charts/BarChart/BarChart.js +0 -37
- package/cjs/components/charts/BarChart/getBarChartSettings.d.ts +0 -13
- package/cjs/components/charts/BarChart/getBarChartSettings.js +0 -54
- package/cjs/components/charts/BubbleChart/BubbleChart.d.ts +0 -11
- package/cjs/components/charts/BubbleChart/BubbleChart.js +0 -88
- package/cjs/components/charts/BubbleChart/helpers.d.ts +0 -7
- package/cjs/components/charts/BubbleChart/useBubbles.d.ts +0 -14
- package/cjs/components/charts/BubbleChart/useBubbles.js +0 -18
- package/cjs/components/charts/ChartsFactory.d.ts +0 -5
- package/cjs/components/charts/ChartsFactory.js +0 -56
- package/cjs/components/charts/CloudChart/CloudChart.d.ts +0 -11
- package/cjs/components/charts/CloudChart/CloudChart.js +0 -76
- package/cjs/components/charts/CloudChart/useCloud.d.ts +0 -13
- package/cjs/components/charts/CloudChart/useCloud.js +0 -36
- package/cjs/components/charts/CustomLegend/CustomLegend.d.ts +0 -7
- package/cjs/components/charts/CustomLegend/CustomLegend.js +0 -17
- package/cjs/components/charts/CustomLegend/getLegendProps.d.ts +0 -3
- package/cjs/components/charts/CustomLegend/getLegendProps.js +0 -23
- package/cjs/components/charts/CustomLegend/styles.d.ts +0 -1
- package/cjs/components/charts/CustomTooltip/CustomTooltip.d.ts +0 -3
- package/cjs/components/charts/CustomTooltip/CustomTooltip.js +0 -29
- package/cjs/components/charts/HOCs/withPercents.d.ts +0 -11
- package/cjs/components/charts/HOCs/withPercents.js +0 -66
- package/cjs/components/charts/LineChart/LineChart.d.ts +0 -4
- package/cjs/components/charts/LineChart/LineChart.js +0 -33
- package/cjs/components/charts/LineChart/getLineChartSettings.d.ts +0 -13
- package/cjs/components/charts/LineChart/getLineChartSettings.js +0 -62
- package/cjs/components/charts/MapChart/Legend/Legend.d.ts +0 -9
- package/cjs/components/charts/MapChart/Legend/Legend.js +0 -22
- package/cjs/components/charts/MapChart/Legend/styles.d.ts +0 -6
- package/cjs/components/charts/MapChart/MapChart.d.ts +0 -12
- package/cjs/components/charts/MapChart/MapChart.js +0 -113
- package/cjs/components/charts/MapChart/useGeography.js +0 -25
- package/cjs/components/charts/PieChart/PieChart.d.ts +0 -12
- package/cjs/components/charts/PieChart/PieChart.js +0 -73
- package/cjs/components/charts/TableWithBars/TableWithBars.d.ts +0 -4
- package/cjs/components/charts/TableWithBars/TableWithBars.js +0 -79
- package/cjs/components/charts/TableWithBars/cell-renderers/AttributeCellRenderer.js +0 -30
- package/cjs/components/charts/TableWithBars/cell-renderers/HeadCellRenderer.d.ts +0 -9
- package/cjs/components/charts/TableWithBars/cell-renderers/HeadCellRenderer.js +0 -40
- package/cjs/components/charts/TableWithBars/cell-renderers/NumberCellValueRenderer.d.ts +0 -9
- package/cjs/components/charts/TableWithBars/cell-renderers/NumberCellValueRenderer.js +0 -20
- package/cjs/components/charts/TableWithBars/cell-renderers/styles.d.ts +0 -1
- package/cjs/components/charts/TableWithBars/cell-renderers/styles.js +0 -71
- package/cjs/components/charts/TreeChart/TreeChart.d.ts +0 -4
- package/cjs/components/charts/TreeChart/TreeChart.js +0 -72
- package/cjs/components/charts/hooks/useClickableStyle.d.ts +0 -1
- package/cjs/components/charts/hooks/useClickableStyle.js +0 -14
- package/cjs/components/charts/hooks/useTooltipState.d.ts +0 -8
- package/cjs/components/charts/hooks/useTooltipState.js +0 -30
- package/cjs/components/charts/index.d.ts +0 -8
- package/cjs/components/charts/index.js +0 -21
- package/cjs/components/charts/types/charts.d.ts +0 -51
- package/cjs/components/charts/types/index.d.ts +0 -1
- package/cjs/components/charts/types/index.js +0 -2
- package/cjs/components/editors/TypeaheadEditor/TypeaheadEditor.d.ts +0 -22
- package/cjs/components/editors/TypeaheadEditor/TypeaheadEditor.js +0 -264
- package/esm/HOCs/withTooltip/propTypes.d.ts +0 -7
- package/esm/HOCs/withTooltip/propTypes.js +0 -6
- package/esm/components/ActionButton/ActionButton.d.ts +0 -16
- package/esm/components/ActionButton/ActionButton.js +0 -65
- package/esm/components/ActionButton/styles.d.ts +0 -1
- package/esm/components/ActionButton/styles.js +0 -45
- package/esm/components/ActionsPanel/ActionsPanel.d.ts +0 -21
- package/esm/components/ActionsPanel/ActionsPanel.js +0 -37
- package/esm/components/ActionsPanel/MenuItemRenderer.d.ts +0 -8
- package/esm/components/ActionsPanel/MenuItemRenderer.js +0 -20
- package/esm/components/ArrowExpandButton/ArrowExpandButton.d.ts +0 -8
- package/esm/components/ArrowExpandButton/ArrowExpandButton.js +0 -34
- package/esm/components/AttributeGroupIcon/AttributeGroupIcon.d.ts +0 -11
- package/esm/components/AttributeGroupIcon/AttributeGroupIcon.js +0 -14
- package/esm/components/AttributeListItem/AttrTypeIcon.d.ts +0 -7
- package/esm/components/AttributeListItem/AttrTypeIcon.js +0 -24
- package/esm/components/AttributeListItem/AttributeListItem.d.ts +0 -40
- package/esm/components/AttributeListItem/AttributeListItem.js +0 -44
- package/esm/components/AttributeListItem/styles.d.ts +0 -1
- package/esm/components/AttributeListItem/styles.js +0 -94
- package/esm/components/AttributeSelector/AttributeSelector.d.ts +0 -14
- package/esm/components/AttributeSelector/AttributeSelector.js +0 -78
- package/esm/components/AttributesErrorsPanel/AttributesErrorsPanel.d.ts +0 -7
- package/esm/components/AttributesErrorsPanel/AttributesErrorsPanel.js +0 -53
- package/esm/components/AttributesErrorsPanel/ErrorsPanel/Error.js +0 -32
- package/esm/components/AttributesErrorsPanel/ErrorsPanel/ErrorsPanel.js +0 -25
- package/esm/components/AttributesErrorsPanel/ErrorsPanel/helpers.d.ts +0 -5
- package/esm/components/AttributesErrorsPanel/ErrorsPanel/helpers.js +0 -34
- package/esm/components/AttributesErrorsPanel/styles.d.ts +0 -2
- package/esm/components/AttributesErrorsPanel/styles.js +0 -113
- package/esm/components/AttributesErrorsPanel/useCachedErrors.js +0 -17
- package/esm/components/AttributesFiltersBuilder/AttributesFiltersBuilder.d.ts +0 -17
- package/esm/components/AttributesFiltersBuilder/AttributesFiltersBuilder.js +0 -100
- package/esm/components/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.js +0 -31
- package/esm/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.d.ts +0 -8
- package/esm/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.js +0 -35
- package/esm/components/AttributesFiltersBuilder/components/FilterSelector/styles.d.ts +0 -2
- package/esm/components/AttributesFiltersBuilder/components/FilterSelector/styles.js +0 -7
- package/esm/components/AttributesFiltersBuilder/components/RowActions/RowActions.js +0 -27
- package/esm/components/AttributesFiltersBuilder/components/ValuesEditor/ValuesEditor.d.ts +0 -4
- package/esm/components/AttributesFiltersBuilder/components/ValuesEditor/ValuesEditor.js +0 -38
- package/esm/components/AttributesFiltersBuilder/helpers.d.ts +0 -13
- package/esm/components/AttributesFiltersBuilder/index.d.ts +0 -4
- package/esm/components/AttributesFiltersBuilder/index.js +0 -3
- package/esm/components/AttributesFiltersBuilder/types.d.ts +0 -20
- package/esm/components/AttributesFiltersButton/ActionButtons/ActionButtons.d.ts +0 -8
- package/esm/components/AttributesFiltersButton/ActionButtons/ActionButtons.js +0 -13
- package/esm/components/AttributesFiltersButton/AttributesFiltersButton.d.ts +0 -24
- package/esm/components/AttributesFiltersButton/AttributesFiltersButton.js +0 -66
- package/esm/components/AutoSizeList/AutoSizeList.d.ts +0 -17
- package/esm/components/AvatarWithFallback/AvatarWithFallback.d.ts +0 -13
- package/esm/components/AvatarWithFallback/AvatarWithFallback.js +0 -56
- package/esm/components/BasicAttributeSelector/AttributeTitle/AttributeTitle.d.ts +0 -14
- package/esm/components/BasicAttributeSelector/AttributeTitle/AttributeTitle.js +0 -22
- package/esm/components/BasicAttributeSelector/AttributeTitle/styles.d.ts +0 -2
- package/esm/components/BasicAttributeSelector/AttributeTitle/styles.js +0 -42
- package/esm/components/BasicAttributeSelector/BasicAttributeSelector.d.ts +0 -4
- package/esm/components/BasicAttributeSelector/BasicAttributeSelector.js +0 -70
- package/esm/components/BasicAttributeSelector/helpers.d.ts +0 -22
- package/esm/components/BasicAttributeSelector/helpers.js +0 -72
- package/esm/components/BasicAttributeSelector/styles.d.ts +0 -2
- package/esm/components/BasicAttributeSelector/styles.js +0 -13
- package/esm/components/BasicTableView/BasicTable/BasicTable.d.ts +0 -58
- package/esm/components/BasicTableView/BasicTable/BasicTable.js +0 -91
- package/esm/components/BasicTableView/BasicTable/CellRenderer/CellRenderer.d.ts +0 -13
- package/esm/components/BasicTableView/BasicTable/CellRenderer/CellRenderer.js +0 -39
- package/esm/components/BasicTableView/BasicTable/HOCs/withFilter.d.ts +0 -16
- package/esm/components/BasicTableView/BasicTable/HOCs/withFilter.js +0 -33
- package/esm/components/BasicTableView/BasicTable/HOCs/withFilterAtBottom.d.ts +0 -11
- package/esm/components/BasicTableView/BasicTable/HOCs/withFilterAtBottom.js +0 -38
- package/esm/components/BasicTableView/BasicTable/HOCs/withTableContext.d.ts +0 -4
- package/esm/components/BasicTableView/BasicTable/HOCs/withTableContext.js +0 -6
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/BlobRenderer.d.ts +0 -10
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/BlobRenderer.js +0 -15
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.d.ts +0 -11
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.js +0 -38
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/index.d.ts +0 -1
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/index.js +0 -1
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/styles.d.ts +0 -2
- package/esm/components/BasicTableView/BasicTable/cell-value-renderers/styles.js +0 -19
- package/esm/components/BasicTableView/BasicTable/contexts/RowCollapseContext.d.ts +0 -2
- package/esm/components/BasicTableView/BasicTable/contexts/TableContext.d.ts +0 -2
- package/esm/components/BasicTableView/BasicTable/contexts/TableContext.js +0 -3
- package/esm/components/BasicTableView/BasicTable/contexts/index.d.ts +0 -1
- package/esm/components/BasicTableView/BasicTable/contexts/index.js +0 -1
- package/esm/components/BasicTableView/BasicTable/helpers/dataHelpers.d.ts +0 -3
- package/esm/components/BasicTableView/BasicTable/helpers/dataHelpers.js +0 -117
- package/esm/components/BasicTableView/BasicTable/helpers/defaultGetRowCellHeight.d.ts +0 -5
- package/esm/components/BasicTableView/BasicTable/helpers/defaultGetRowCellHeight.js +0 -20
- package/esm/components/BasicTableView/BasicTable/helpers/defaultRenderRowCell.d.ts +0 -6
- package/esm/components/BasicTableView/BasicTable/helpers/defaultRenderRowCell.js +0 -28
- package/esm/components/BasicTableView/BasicTable/hooks/index.d.ts +0 -2
- package/esm/components/BasicTableView/BasicTable/hooks/index.js +0 -2
- package/esm/components/BasicTableView/BasicTable/hooks/useBasicTableCellRenderer.d.ts +0 -22
- package/esm/components/BasicTableView/BasicTable/hooks/useBasicTableCellRenderer.js +0 -31
- package/esm/components/BasicTableView/BasicTable/hooks/useCollapsibleTableRows.d.ts +0 -19
- package/esm/components/BasicTableView/BasicTable/hooks/useCollapsibleTableRows.js +0 -45
- package/esm/components/BasicTableView/BasicTable/hooks/useDynamicRowCellHeight.d.ts +0 -13
- package/esm/components/BasicTableView/BasicTable/hooks/useDynamicRowCellHeight.js +0 -41
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnListItem.d.ts +0 -27
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnListItem.js +0 -26
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettings.d.ts +0 -11
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettings.js +0 -24
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettingsPopup.d.ts +0 -15
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/ColumnsSettingsPopup.js +0 -45
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/columnHelpers.d.ts +0 -4
- package/esm/components/BasicTableView/BasicTableHeader/ColumnsSettings/styles.d.ts +0 -1
- package/esm/components/BasicTableView/BasicTableHeader/FilterButton/FilterButton.d.ts +0 -12
- package/esm/components/BasicTableView/BasicTableHeader/FilterButton/FilterButton.js +0 -21
- package/esm/components/BasicTableView/BasicTableHeader/FilterButton/styles.d.ts +0 -1
- package/esm/components/BasicTableView/BasicTableHeader/FilterButton/styles.js +0 -15
- package/esm/components/BasicTableView/BasicTablePagination/BasicTablePagination.js +0 -45
- package/esm/components/BasicTableView/CollapseRowButton/CollapseRowButton.d.ts +0 -14
- package/esm/components/BasicTableView/CollapseRowButton/CollapseRowButton.js +0 -24
- package/esm/components/BasicTableView/CollapseRowButton/styles.d.ts +0 -1
- package/esm/components/BasicTableView/ColumnFilter/ColumnFilter.d.ts +0 -23
- package/esm/components/BasicTableView/ColumnFilter/ColumnFilter.js +0 -92
- package/esm/components/BasicTableView/ColumnFilter/FilterChip/FilterChip.d.ts +0 -14
- package/esm/components/BasicTableView/ColumnFilter/FilterChip/FilterChip.js +0 -26
- package/esm/components/BasicTableView/ColumnFilter/FilterChip/styles.d.ts +0 -2
- package/esm/components/BasicTableView/ColumnFilter/FilterChip/styles.js +0 -24
- package/esm/components/BasicTableView/ColumnFilter/helpers.d.ts +0 -16
- package/esm/components/BasicTableView/ColumnFilter/helpers.js +0 -28
- package/esm/components/BasicTableView/ColumnFilter/styles.d.ts +0 -2
- package/esm/components/BasicTableView/ColumnFilter/styles.js +0 -27
- package/esm/components/BasicTableView/RowCellAutoSizer/RowCellAutoSizer.d.ts +0 -14
- package/esm/components/BasicTableView/RowCellAutoSizer/RowCellAutoSizer.js +0 -26
- package/esm/components/BasicTableView/index.d.ts +0 -20
- package/esm/components/BasicTableView/index.js +0 -20
- package/esm/components/BasicTableView/types/index.d.ts +0 -82
- package/esm/components/BasicTableView/viewState/basicTableViewState.js +0 -80
- package/esm/components/BasicView/BasicView.d.ts +0 -12
- package/esm/components/BasicView/BasicView.js +0 -32
- package/esm/components/BasicViewContent/BasicViewContent.d.ts +0 -4
- package/esm/components/BasicViewContent/BasicViewContent.js +0 -31
- package/esm/components/BasicViewHeader/BasicViewHeader.d.ts +0 -8
- package/esm/components/BasicViewHeader/BasicViewHeader.js +0 -35
- package/esm/components/BasicViewHeader/styles.d.ts +0 -1
- package/esm/components/ColorBar/ColorBar.d.ts +0 -8
- package/esm/components/ColorBar/ColorBar.js +0 -14
- package/esm/components/DropDownMenuButton/DropDownMenuButton.d.ts +0 -20
- package/esm/components/DropDownMenuButton/DropDownMenuButton.js +0 -50
- package/esm/components/DropDownMenuButton/MenuItemRenderer.d.ts +0 -8
- package/esm/components/DropDownMenuButton/MenuItemRenderer.js +0 -22
- package/esm/components/DropDownMenuButton/styles.d.ts +0 -1
- package/esm/components/DropDownMenuButton/styles.js +0 -26
- package/esm/components/ExpandedValueTooltip/ExpandedValueTooltip.d.ts +0 -11
- package/esm/components/ExpandedValueTooltip/ExpandedValueTooltip.js +0 -45
- package/esm/components/FacetViewHeader/FacetViewHeader.d.ts +0 -8
- package/esm/components/FacetViewHeader/FacetViewHeader.js +0 -10
- package/esm/components/FacetViewHeader/styles.d.ts +0 -1
- package/esm/components/Image/CheckedIcon/CheckedIcon.d.ts +0 -8
- package/esm/components/Image/Image.d.ts +0 -33
- package/esm/components/Image/Image.js +0 -79
- package/esm/components/Image/ImageActionsOverlay/ImageActionsOverlay.js +0 -59
- package/esm/components/Image/styles.d.ts +0 -2
- package/esm/components/InternalLink/InternalLink.d.ts +0 -3
- package/esm/components/InternalLink/InternalLink.js +0 -34
- package/esm/components/MultilineMenuItem/MultilineMenuItem.d.ts +0 -11
- package/esm/components/MultilineMenuItem/MultilineMenuItem.js +0 -21
- package/esm/components/MultilineMenuItem/styles.d.ts +0 -1
- package/esm/components/MultilineMenuItem/styles.js +0 -20
- package/esm/components/SmallIconButton/SmallIconButton.d.ts +0 -9
- package/esm/components/SmallIconButton/SmallIconButton.js +0 -85
- package/esm/components/SmallIconButton/index.d.ts +0 -17
- package/esm/components/SmallIconButton/index.js +0 -4
- package/esm/components/SourceIcon/SourceIcon.d.ts +0 -11
- package/esm/components/SourceIcon/SourceIcon.js +0 -14
- package/esm/components/activityLog/ActivityExportButton/ActivityExportButton.d.ts +0 -8
- package/esm/components/activityLog/ActivityExportButton/ActivityExportButton.js +0 -52
- package/esm/components/activityLog/ActivityFilterButton/ActivityFilterButton.d.ts +0 -10
- package/esm/components/activityLog/ActivityFilterButton/ActivityFilterButton.js +0 -39
- package/esm/components/activityLog/ActivityFilterEditor/ActivityFilterEditor.d.ts +0 -14
- package/esm/components/activityLog/ActivityFilterEditor/ActivityFilterEditor.js +0 -47
- package/esm/components/activityLog/ActivityFilterEditor/ActivitySelector.d.ts +0 -9
- package/esm/components/activityLog/ActivityFilterEditor/ActivitySelector.js +0 -28
- package/esm/components/activityLog/ActivityFilterEditor/DateRangeSelector.d.ts +0 -8
- package/esm/components/activityLog/ActivityFilterEditor/DateRangeSelector.js +0 -96
- package/esm/components/activityLog/ActivityFilterEditor/EntityChangedSelectors.d.ts +0 -10
- package/esm/components/activityLog/ActivityFilterEditor/EntityChangedSelectors.js +0 -21
- package/esm/components/activityLog/ActivityFilterEditor/EntityTypesSelector.d.ts +0 -9
- package/esm/components/activityLog/ActivityFilterEditor/EntityTypesSelector.js +0 -24
- package/esm/components/activityLog/ActivityFilterEditor/SourceSelector.d.ts +0 -8
- package/esm/components/activityLog/ActivityFilterEditor/SourceSelector.js +0 -24
- package/esm/components/activityLog/ActivityFilterEditor/styles.d.ts +0 -5
- package/esm/components/activityLog/ActivityFilterEditor/utils/getSelectorActivityTypes.js +0 -31
- package/esm/components/activityLog/ActivityLog/ActivityLog.d.ts +0 -8
- package/esm/components/activityLog/ActivityLog/ActivityLog.js +0 -44
- package/esm/components/activityLog/ActivityLog/items/ActivityItem/ActivityItem.d.ts +0 -7
- package/esm/components/activityLog/ActivityLog/items/ActivityItem/ActivityItem.js +0 -22
- package/esm/components/activityLog/ActivityLog/items/GroupItem/GroupItem.d.ts +0 -8
- package/esm/components/activityLog/ActivityLog/items/GroupItem/GroupItem.js +0 -17
- package/esm/components/activityLog/ActivityLogFilter/ActivityLogFilter.d.ts +0 -12
- package/esm/components/activityLog/ActivityLogFilter/ActivityLogFilter.js +0 -37
- package/esm/components/activityLog/ActivityLogFilter/styles.d.ts +0 -1
- package/esm/components/activityLog/activities/ActivitiesFactory.d.ts +0 -11
- package/esm/components/activityLog/activities/ActivitiesFactory.js +0 -122
- package/esm/components/activityLog/activities/ActivityTitle/ActivityTitle.d.ts +0 -8
- package/esm/components/activityLog/activities/ActivityTitle/ActivityTitle.js +0 -11
- package/esm/components/activityLog/activities/CommentActivity.d.ts +0 -8
- package/esm/components/activityLog/activities/CommentActivity.js +0 -7
- package/esm/components/activityLog/activities/EntityObject/EntityObject.d.ts +0 -7
- package/esm/components/activityLog/activities/EntityObject/EntityObject.js +0 -14
- package/esm/components/activityLog/activities/GroupActivity.d.ts +0 -8
- package/esm/components/activityLog/activities/GroupActivity.js +0 -15
- package/esm/components/activityLog/activities/MergeActivity.d.ts +0 -8
- package/esm/components/activityLog/activities/MergeActivity.js +0 -14
- package/esm/components/activityLog/activities/MoreItemsLink/MoreItemsLink.d.ts +0 -9
- package/esm/components/activityLog/activities/PotentialMatchActivity.d.ts +0 -8
- package/esm/components/activityLog/activities/PotentialMatchActivity.js +0 -11
- package/esm/components/activityLog/activities/ProfileActivity.d.ts +0 -8
- package/esm/components/activityLog/activities/ProfileActivity.js +0 -14
- package/esm/components/activityLog/activities/RelationActivity.d.ts +0 -8
- package/esm/components/activityLog/activities/RelationActivity.js +0 -14
- package/esm/components/activityLog/activities/RelationObject/RelationObject.d.ts +0 -7
- package/esm/components/activityLog/activities/RelationObject/RelationObject.js +0 -15
- package/esm/components/activityLog/activities/SearchActivity.d.ts +0 -8
- package/esm/components/activityLog/activities/SearchActivity.js +0 -22
- package/esm/components/activityLog/activities/SimpleActivity.d.ts +0 -8
- package/esm/components/activityLog/activities/SimpleActivity.js +0 -17
- package/esm/components/activityLog/activities/SynchronizationIssuesActivity.d.ts +0 -8
- package/esm/components/activityLog/activities/SynchronizationIssuesActivity.js +0 -20
- package/esm/components/activityLog/activities/fields/DeltaField.d.ts +0 -7
- package/esm/components/activityLog/activities/fields/DeltaField.js +0 -37
- package/esm/components/activityLog/activities/fields/PotentialMatchField.d.ts +0 -7
- package/esm/components/activityLog/activities/fields/PotentialMatchField.js +0 -47
- package/esm/components/activityLog/activities/fields/commonStyles.d.ts +0 -1
- package/esm/components/activityLog/activities/fields/commonStyles.js +0 -19
- package/esm/components/activityLog/activities/fields/styles.d.ts +0 -1
- package/esm/components/activityLog/activities/fields/styles.js +0 -39
- package/esm/components/activityLog/activities/records/CollapsibleActivityRecords.d.ts +0 -9
- package/esm/components/activityLog/activities/records/CollapsibleActivityRecords.js +0 -14
- package/esm/components/activityLog/activities/records/EntityRecord.d.ts +0 -7
- package/esm/components/activityLog/activities/records/EntityRecord.js +0 -39
- package/esm/components/activityLog/activities/records/PotentialMatchRecord.d.ts +0 -7
- package/esm/components/activityLog/activities/records/PotentialMatchRecord.js +0 -14
- package/esm/components/activityLog/activities/records/RecordUpdates.d.ts +0 -8
- package/esm/components/activityLog/activities/records/RecordUpdates.js +0 -18
- package/esm/components/activityLog/activities/records/RelationRecord.d.ts +0 -7
- package/esm/components/activityLog/activities/records/RelationRecord.js +0 -18
- package/esm/components/activityLog/activities/records/styles.d.ts +0 -1
- package/esm/components/activityLog/activities/records/styles.js +0 -35
- package/esm/components/activityLog/activities/styles.d.ts +0 -1
- package/esm/components/activityLog/activities/styles.js +0 -18
- package/esm/components/activityLog/contexts/CollapsibleItemsContext/index.d.ts +0 -15
- package/esm/components/activityLog/hooks/useActivitiesLoader.js +0 -60
- package/esm/components/activityLog/index.d.ts +0 -5
- package/esm/components/activityLog/index.js +0 -5
- package/esm/components/activityLog/types/ActivitiesFilter.d.ts +0 -12
- package/esm/components/activityLog/types/ActivityData.d.ts +0 -10
- package/esm/components/activityLog/types/ActivityDelta.d.ts +0 -7
- package/esm/components/activityLog/types/ActivityItem.d.ts +0 -27
- package/esm/components/activityLog/types/ActivityTypes.d.ts +0 -31
- package/esm/components/activityLog/types/ActivityTypes.js +0 -32
- package/esm/components/activityLog/types/DeltaTypes.d.ts +0 -5
- package/esm/components/activityLog/types/DeltaTypes.js +0 -6
- package/esm/components/activityLog/types/DeltaValue.d.ts +0 -10
- package/esm/components/activityLog/types/index.d.ts +0 -7
- package/esm/components/activityLog/types/index.js +0 -2
- package/esm/components/attributes/AttributesView/AttributesView.d.ts +0 -4
- package/esm/components/attributes/AttributesView/AttributesView.js +0 -36
- package/esm/components/attributes/BranchDecorator/BranchDecorator.d.ts +0 -9
- package/esm/components/attributes/BranchDecorator/BranchDecorator.js +0 -11
- package/esm/components/attributes/BranchDecorator/styles.d.ts +0 -1
- package/esm/components/attributes/DescriptionIcon/DescriptionIcon.d.ts +0 -8
- package/esm/components/attributes/DescriptionIcon/DescriptionIcon.js +0 -18
- package/esm/components/attributes/DescriptionIcon/index.d.ts +0 -1
- package/esm/components/attributes/DescriptionIcon/index.js +0 -1
- package/esm/components/attributes/ImageAttributesLine/ImageAttributesLine.d.ts +0 -27
- package/esm/components/attributes/ImageAttributesLine/ImageAttributesLine.js +0 -112
- package/esm/components/attributes/ImageAttributesLine/constants.d.ts +0 -9
- package/esm/components/attributes/ImageAttributesLine/constants.js +0 -6
- package/esm/components/attributes/ImageAttributesLine/index.d.ts +0 -1
- package/esm/components/attributes/ImageAttributesLine/index.js +0 -1
- package/esm/components/attributes/ImageAttributesLine/styles.d.ts +0 -6
- package/esm/components/attributes/OvIcon/OvIcon.d.ts +0 -38
- package/esm/components/attributes/OvIcon/OvIcon.js +0 -31
- package/esm/components/attributes/OvIcon/heplers.d.ts +0 -4
- package/esm/components/attributes/OvIcon/heplers.js +0 -7
- package/esm/components/attributes/OvIcon/index.d.ts +0 -1
- package/esm/components/attributes/OvIcon/index.js +0 -1
- package/esm/components/attributes/OvIcon/styles.d.ts +0 -1
- package/esm/components/attributes/PivotingAttributes/PivotingTooltip.js +0 -52
- package/esm/components/attributes/PivotingAttributes/PivotingTooltipContent.d.ts +0 -11
- package/esm/components/attributes/PivotingAttributes/PivotingTooltipContent.js +0 -25
- package/esm/components/attributes/PivotingAttributes/styles.d.ts +0 -2
- package/esm/components/attributes/PivotingAttributes/styles.js +0 -101
- package/esm/components/attributes/editMode/AttributesFactory/Attribute.d.ts +0 -7
- package/esm/components/attributes/editMode/AttributesFactory/Attribute.js +0 -19
- package/esm/components/attributes/editMode/AttributesFactory/AttributesFactory.d.ts +0 -3
- package/esm/components/attributes/editMode/AttributesFactory/AttributesFactory.js +0 -47
- package/esm/components/attributes/editMode/AttributesList/AttributesList.js +0 -93
- package/esm/components/attributes/editMode/AttributesList/index.d.ts +0 -1
- package/esm/components/attributes/editMode/AttributesList/index.js +0 -1
- package/esm/components/attributes/editMode/AttributesPager/AttributeRenderer.d.ts +0 -17
- package/esm/components/attributes/editMode/AttributesPager/AttributeRenderer.js +0 -100
- package/esm/components/attributes/editMode/AttributesPager/AttributesPager.d.ts +0 -4
- package/esm/components/attributes/editMode/AttributesPager/AttributesPager.js +0 -85
- package/esm/components/attributes/editMode/AttributesPager/CardinalityMessage.d.ts +0 -7
- package/esm/components/attributes/editMode/AttributesPager/CardinalityMessage.js +0 -64
- package/esm/components/attributes/editMode/AttributesPager/ImageLineRenderer.d.ts +0 -19
- package/esm/components/attributes/editMode/AttributesPager/ImageLineRenderer.js +0 -30
- package/esm/components/attributes/editMode/AttributesPager/SpecialRenderer.d.ts +0 -19
- package/esm/components/attributes/editMode/AttributesPager/SpecialRenderer.js +0 -90
- package/esm/components/attributes/editMode/AttributesPager/index.d.ts +0 -2
- package/esm/components/attributes/editMode/AttributesPager/index.js +0 -2
- package/esm/components/attributes/editMode/AttributesPager/styles.d.ts +0 -1
- package/esm/components/attributes/editMode/AttributesPager/types.d.ts +0 -21
- package/esm/components/attributes/editMode/AttributesPager/utils.d.ts +0 -2
- package/esm/components/attributes/editMode/AttributesPager/utils.js +0 -4
- package/esm/components/attributes/editMode/AttributesView/AttributesView.d.ts +0 -5
- package/esm/components/attributes/editMode/AttributesView/AttributesView.js +0 -30
- package/esm/components/attributes/editMode/ComplexAttribute/ComplexAttribute.js +0 -104
- package/esm/components/attributes/editMode/EntityCreator/EntityCreator.d.ts +0 -10
- package/esm/components/attributes/editMode/EntityCreator/EntityCreator.js +0 -14
- package/esm/components/attributes/editMode/EntitySelector/EntitySelector.d.ts +0 -33
- package/esm/components/attributes/editMode/EntitySelector/EntitySelector.js +0 -124
- package/esm/components/attributes/editMode/EntitySelector/components/ClearIndicator.d.ts +0 -8
- package/esm/components/attributes/editMode/EntitySelector/components/ClearIndicator.js +0 -15
- package/esm/components/attributes/editMode/EntitySelector/components/EntityOption.d.ts +0 -23
- package/esm/components/attributes/editMode/EntitySelector/components/EntityOption.js +0 -55
- package/esm/components/attributes/editMode/EntitySelector/components/EntityTypeOption.d.ts +0 -19
- package/esm/components/attributes/editMode/EntitySelector/components/EntityTypeOption.js +0 -40
- package/esm/components/attributes/editMode/EntitySelector/components/Group.d.ts +0 -10
- package/esm/components/attributes/editMode/EntitySelector/components/Group.js +0 -35
- package/esm/components/attributes/editMode/EntitySelector/components/SingleValue.d.ts +0 -15
- package/esm/components/attributes/editMode/EntitySelector/components/SingleValue.js +0 -57
- package/esm/components/attributes/editMode/EntitySelector/components/styles.d.ts +0 -4
- package/esm/components/attributes/editMode/EntitySelector/components/styles.js +0 -87
- package/esm/components/attributes/editMode/EntitySelector/styles.d.ts +0 -1
- package/esm/components/attributes/editMode/ImageAttributesLine/ImageAttributesLine.d.ts +0 -16
- package/esm/components/attributes/editMode/ImageAttributesLine/ImageAttributesLine.js +0 -81
- package/esm/components/attributes/editMode/ImageAttributesLine/index.d.ts +0 -2
- package/esm/components/attributes/editMode/ImageAttributesLine/index.js +0 -2
- package/esm/components/attributes/editMode/ImageAttributesLine/styles.d.ts +0 -2
- package/esm/components/attributes/editMode/MoreAttributesButton/MoreAttributesButton.d.ts +0 -12
- package/esm/components/attributes/editMode/MoreAttributesButton/MoreAttributesButton.js +0 -77
- package/esm/components/attributes/editMode/MoreAttributesButton/helpers.d.ts +0 -9
- package/esm/components/attributes/editMode/MoreAttributesButton/index.d.ts +0 -1
- package/esm/components/attributes/editMode/MoreAttributesButton/index.js +0 -1
- package/esm/components/attributes/editMode/MoreAttributesButton/styles.d.ts +0 -1
- package/esm/components/attributes/editMode/MoreAttributesButton/useMoreAttributesItems.js +0 -62
- package/esm/components/attributes/editMode/NestedAttribute/NestedAttribute.d.ts +0 -121
- package/esm/components/attributes/editMode/NestedAttribute/NestedAttribute.js +0 -21
- package/esm/components/attributes/editMode/ReferenceAttribute/ReferenceAttribute.js +0 -132
- package/esm/components/attributes/editMode/ReferenceAttribute/styles.d.ts +0 -1
- package/esm/components/attributes/editMode/RelationTypeSelector/RelationTypeSelector.d.ts +0 -27
- package/esm/components/attributes/editMode/RelationTypeSelector/RelationTypeSelector.js +0 -48
- package/esm/components/attributes/editMode/RelationTypeSelector/components/RelationOption.d.ts +0 -21
- package/esm/components/attributes/editMode/RelationTypeSelector/components/RelationOption.js +0 -52
- package/esm/components/attributes/editMode/RelationTypeSelector/components/styles.d.ts +0 -1
- package/esm/components/attributes/editMode/RelationTypeSelector/components/styles.js +0 -52
- package/esm/components/attributes/editMode/Roles/Roles.d.ts +0 -9
- package/esm/components/attributes/editMode/Roles/Roles.js +0 -43
- package/esm/components/attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +0 -3
- package/esm/components/attributes/editMode/SimpleAttributeEditor/SimpleAttributeEditor.js +0 -135
- package/esm/components/attributes/editMode/SimpleAttributeEditor/styles.d.ts +0 -1
- package/esm/components/attributes/editMode/SimpleAttributeEditor/useAttributeValuePermissions.js +0 -10
- package/esm/components/attributes/editMode/SimpleAttributeEditor/useAutopopulationContextValue.js +0 -25
- package/esm/components/attributes/editMode/SimpleAttributeEditor/utils.d.ts +0 -5
- package/esm/components/attributes/editMode/SimpleAttributeEditor/utils.js +0 -57
- package/esm/components/attributes/editMode/Tags/Tags.d.ts +0 -10
- package/esm/components/attributes/editMode/Tags/Tags.js +0 -89
- package/esm/components/attributes/editMode/Tags/index.d.ts +0 -1
- package/esm/components/attributes/editMode/Tags/index.js +0 -1
- package/esm/components/attributes/editMode/hooks/useScrollToAttribute/useScrollToAttribute.d.ts +0 -9
- package/esm/components/attributes/helpers/attributesView.d.ts +0 -8
- package/esm/components/attributes/helpers/attributesView.js +0 -17
- package/esm/components/attributes/inline/AttributesList/AttributesList.d.ts +0 -24
- package/esm/components/attributes/inline/AttributesList/AttributesList.js +0 -37
- package/esm/components/attributes/inline/AttributesPager/AttributesPager.d.ts +0 -27
- package/esm/components/attributes/inline/AttributesPager/AttributesPager.js +0 -72
- package/esm/components/attributes/inline/ComplexAttribute/ComplexAttribute.d.ts +0 -26
- package/esm/components/attributes/inline/ComplexAttribute/ComplexAttribute.js +0 -51
- package/esm/components/attributes/inline/ImageAttribute/ImageAttribute.d.ts +0 -23
- package/esm/components/attributes/inline/ImageAttribute/ImageAttribute.js +0 -34
- package/esm/components/attributes/inline/ImageAttributesBlock/ImageAttributesBlock.d.ts +0 -24
- package/esm/components/attributes/inline/ImageAttributesBlock/ImageAttributesBlock.js +0 -29
- package/esm/components/attributes/inline/NestedAttribute/NestedAttribute.d.ts +0 -23
- package/esm/components/attributes/inline/NestedAttribute/NestedAttribute.js +0 -32
- package/esm/components/attributes/inline/NestedAttributesBlock/NestedAttributesBlock.d.ts +0 -25
- package/esm/components/attributes/inline/NestedAttributesBlock/NestedAttributesBlock.js +0 -39
- package/esm/components/attributes/inline/ReferenceAttribute/ReferenceAttribute.d.ts +0 -23
- package/esm/components/attributes/inline/ReferenceAttribute/ReferenceAttribute.js +0 -44
- package/esm/components/attributes/inline/ReferenceAttributesBlock/ReferenceAttributesBlock.d.ts +0 -24
- package/esm/components/attributes/inline/ReferenceAttributesBlock/ReferenceAttributesBlock.js +0 -29
- package/esm/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/CrosswalkMenuItem.d.ts +0 -18
- package/esm/components/attributes/inline/SimpleAttribute/CrosswalkMenuItem/CrosswalkMenuItem.js +0 -26
- package/esm/components/attributes/inline/SimpleAttribute/SimpleAttribute.d.ts +0 -22
- package/esm/components/attributes/inline/SimpleAttribute/SimpleAttribute.js +0 -95
- package/esm/components/attributes/inline/SimpleAttribute/index.d.ts +0 -1
- package/esm/components/attributes/inline/SimpleAttribute/index.js +0 -1
- package/esm/components/attributes/inline/SimpleAttributeEditor/SimpleAttributeEditor.d.ts +0 -13
- package/esm/components/attributes/inline/SimpleAttributeEditor/SimpleAttributeEditor.js +0 -74
- package/esm/components/attributes/inline/SimpleAttributesBlock/SimpleAttributesBlock.d.ts +0 -24
- package/esm/components/attributes/inline/SimpleAttributesBlock/SimpleAttributesBlock.js +0 -60
- package/esm/components/attributes/inline/common/ComplexAttributeLabel.js +0 -8
- package/esm/components/attributes/inline/common/CrosswalkIcon.d.ts +0 -8
- package/esm/components/attributes/inline/common/CrosswalkIcon.js +0 -17
- package/esm/components/attributes/inline/common/DeleteButton.d.ts +0 -6
- package/esm/components/attributes/inline/common/DeleteButton.js +0 -9
- package/esm/components/attributes/inline/common/IgnoreButton.d.ts +0 -8
- package/esm/components/attributes/inline/common/IgnoreButton.js +0 -10
- package/esm/components/attributes/inline/common/PinButton.d.ts +0 -8
- package/esm/components/attributes/inline/common/PinButton.js +0 -10
- package/esm/components/attributes/inline/common/SourceItem.d.ts +0 -10
- package/esm/components/attributes/inline/common/SourceItem.js +0 -24
- package/esm/components/attributes/inline/common/styles.d.ts +0 -9
- package/esm/components/attributes/inline/common/styles.js +0 -62
- package/esm/components/attributes/inline/index.d.ts +0 -5
- package/esm/components/attributes/inline/index.js +0 -5
- package/esm/components/attributes/inline/types/AddAttributeEvent.d.ts +0 -7
- package/esm/components/attributes/inline/types/CrosswalksMap.d.ts +0 -8
- package/esm/components/attributes/inline/types/DeleteAttributeEvent.d.ts +0 -6
- package/esm/components/attributes/inline/types/EditAttributeEvent.d.ts +0 -7
- package/esm/components/attributes/inline/types/IgnoreAttributeEvent.d.ts +0 -4
- package/esm/components/attributes/inline/types/PinAttributeEvent.d.ts +0 -4
- package/esm/components/attributes/inline/types/index.d.ts +0 -6
- package/esm/components/attributes/pagersCommon/ShowLess.d.ts +0 -6
- package/esm/components/attributes/pagersCommon/ShowLess.js +0 -13
- package/esm/components/attributes/pagersCommon/ShowMore.d.ts +0 -8
- package/esm/components/attributes/pagersCommon/ShowMore.js +0 -15
- package/esm/components/attributes/pagersCommon/styles.d.ts +0 -1
- package/esm/components/attributes/pagersCommon/styles.js +0 -10
- package/esm/components/attributes/readMode/AttributeValuesBlock/AttributeValuesBlock.d.ts +0 -17
- package/esm/components/attributes/readMode/AttributeValuesBlock/AttributeValuesBlock.js +0 -49
- package/esm/components/attributes/readMode/AttributesFactory/Attribute.d.ts +0 -2
- package/esm/components/attributes/readMode/AttributesFactory/Attribute.js +0 -6
- package/esm/components/attributes/readMode/AttributesFactory/AttributesFactory.d.ts +0 -3
- package/esm/components/attributes/readMode/AttributesFactory/AttributesFactory.js +0 -33
- package/esm/components/attributes/readMode/AttributesList/AttributesList.d.ts +0 -15
- package/esm/components/attributes/readMode/AttributesList/AttributesList.js +0 -47
- package/esm/components/attributes/readMode/AttributesList/index.d.ts +0 -1
- package/esm/components/attributes/readMode/AttributesList/index.js +0 -1
- package/esm/components/attributes/readMode/AttributesPager/AttributesPager.js +0 -60
- package/esm/components/attributes/readMode/AttributesPager/ImageLineRenderer.d.ts +0 -12
- package/esm/components/attributes/readMode/AttributesPager/ImageLineRenderer.js +0 -15
- package/esm/components/attributes/readMode/AttributesPager/MultiLineRenderer.d.ts +0 -17
- package/esm/components/attributes/readMode/AttributesPager/MultiLineRenderer.js +0 -45
- package/esm/components/attributes/readMode/AttributesPager/OneLineRenderer.d.ts +0 -13
- package/esm/components/attributes/readMode/AttributesPager/OneLineRenderer.js +0 -28
- package/esm/components/attributes/readMode/AttributesPager/SpecialRenderer.d.ts +0 -8
- package/esm/components/attributes/readMode/AttributesPager/SpecialRenderer.js +0 -35
- package/esm/components/attributes/readMode/AttributesPager/styles.d.ts +0 -3
- package/esm/components/attributes/readMode/AttributesView/AttributesView.d.ts +0 -5
- package/esm/components/attributes/readMode/AttributesView/AttributesView.js +0 -32
- package/esm/components/attributes/readMode/ComplexAttribute/ComplexAttribute.d.ts +0 -46
- package/esm/components/attributes/readMode/ComplexAttribute/ComplexAttribute.js +0 -66
- package/esm/components/attributes/readMode/ComplexAttribute/styles.d.ts +0 -1
- package/esm/components/attributes/readMode/ComplexAttribute/styles.js +0 -20
- package/esm/components/attributes/readMode/ImageAttributesLine/ImageAttributesLine.d.ts +0 -14
- package/esm/components/attributes/readMode/ImageAttributesLine/ImageAttributesLine.js +0 -30
- package/esm/components/attributes/readMode/ImageAttributesLine/cross.inline.svg.d.ts +0 -1
- package/esm/components/attributes/readMode/ImageAttributesLine/cross.inline.svg.js +0 -1
- package/esm/components/attributes/readMode/ImageAttributesLine/index.d.ts +0 -1
- package/esm/components/attributes/readMode/ImageAttributesLine/index.js +0 -1
- package/esm/components/attributes/readMode/ImageAttributesLine/styles.d.ts +0 -2
- package/esm/components/attributes/readMode/ImageAttributesLine/styles.js +0 -86
- package/esm/components/attributes/readMode/NestedAttribute/NestedAttribute.js +0 -49
- package/esm/components/attributes/readMode/NestedAttribute/index.d.ts +0 -1
- package/esm/components/attributes/readMode/NestedAttribute/index.js +0 -1
- package/esm/components/attributes/readMode/ReferenceAttribute/ReferenceAttribute.d.ts +0 -5
- package/esm/components/attributes/readMode/ReferenceAttribute/ReferenceAttribute.js +0 -56
- package/esm/components/attributes/readMode/ReferenceAttribute/index.d.ts +0 -2
- package/esm/components/attributes/readMode/ReferenceAttribute/index.js +0 -2
- package/esm/components/attributes/readMode/ReferenceAttribute/styles.d.ts +0 -2
- package/esm/components/attributes/readMode/ReferenceAttribute/styles.js +0 -23
- package/esm/components/attributes/readMode/SimpleAttribute/SimpleAttribute.d.ts +0 -10
- package/esm/components/attributes/readMode/SimpleAttribute/SimpleAttribute.js +0 -40
- package/esm/components/attributes/readMode/SimpleAttribute/index.d.ts +0 -1
- package/esm/components/attributes/readMode/SimpleAttribute/index.js +0 -1
- package/esm/components/attributes/readMode/SimpleAttribute/styles.d.ts +0 -1
- package/esm/components/attributes/readMode/SimpleAttribute/styles.js +0 -40
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/Role.d.ts +0 -6
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/Role.js +0 -16
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/Roles.d.ts +0 -7
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/Roles.js +0 -8
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/index.d.ts +0 -1
- package/esm/components/attributes/readMode/SpecialAttributes/Roles/index.js +0 -1
- package/esm/components/attributes/readMode/SpecialAttributes/SpecialAttributesArray.d.ts +0 -9
- package/esm/components/attributes/readMode/SpecialAttributes/SpecialAttributesArray.js +0 -8
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/Tag.d.ts +0 -6
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/Tag.js +0 -24
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/Tags.d.ts +0 -8
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/Tags.js +0 -8
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/index.d.ts +0 -1
- package/esm/components/attributes/readMode/SpecialAttributes/Tags/index.js +0 -1
- package/esm/components/attributes/readMode/helpers/commonStyles.d.ts +0 -1
- package/esm/components/attributes/readMode/helpers/commonStyles.js +0 -4
- package/esm/components/attributes/types/attributes.d.ts +0 -24
- package/esm/components/attributes/types/attributesView.d.ts +0 -11
- package/esm/components/attributes/types/index.d.ts +0 -2
- package/esm/components/attributes/types/index.js +0 -2
- package/esm/components/charts/ActiveShape/ActiveShape.d.ts +0 -10
- package/esm/components/charts/ActiveShape/ActiveShape.js +0 -47
- package/esm/components/charts/BarChart/BarChart.d.ts +0 -4
- package/esm/components/charts/BarChart/BarChart.js +0 -32
- package/esm/components/charts/BarChart/getBarChartSettings.d.ts +0 -13
- package/esm/components/charts/BarChart/getBarChartSettings.js +0 -52
- package/esm/components/charts/BubbleChart/BubbleChart.d.ts +0 -11
- package/esm/components/charts/BubbleChart/BubbleChart.js +0 -58
- package/esm/components/charts/BubbleChart/helpers.d.ts +0 -7
- package/esm/components/charts/BubbleChart/helpers.js +0 -25
- package/esm/components/charts/BubbleChart/useBubbles.d.ts +0 -14
- package/esm/components/charts/BubbleChart/useBubbles.js +0 -16
- package/esm/components/charts/ChartsFactory.d.ts +0 -5
- package/esm/components/charts/ChartsFactory.js +0 -51
- package/esm/components/charts/CloudChart/CloudChart.d.ts +0 -11
- package/esm/components/charts/CloudChart/CloudChart.js +0 -46
- package/esm/components/charts/CloudChart/useCloud.d.ts +0 -13
- package/esm/components/charts/CloudChart/useCloud.js +0 -31
- package/esm/components/charts/CustomLegend/CustomLegend.d.ts +0 -7
- package/esm/components/charts/CustomLegend/CustomLegend.js +0 -12
- package/esm/components/charts/CustomLegend/getLegendProps.d.ts +0 -3
- package/esm/components/charts/CustomLegend/getLegendProps.js +0 -18
- package/esm/components/charts/CustomLegend/styles.d.ts +0 -1
- package/esm/components/charts/CustomTooltip/CustomTooltip.d.ts +0 -3
- package/esm/components/charts/CustomTooltip/CustomTooltip.js +0 -22
- package/esm/components/charts/HOCs/withPercents.d.ts +0 -11
- package/esm/components/charts/HOCs/withPercents.js +0 -39
- package/esm/components/charts/LineChart/LineChart.d.ts +0 -4
- package/esm/components/charts/LineChart/LineChart.js +0 -28
- package/esm/components/charts/LineChart/getLineChartSettings.d.ts +0 -13
- package/esm/components/charts/LineChart/getLineChartSettings.js +0 -60
- package/esm/components/charts/MapChart/Legend/Legend.d.ts +0 -9
- package/esm/components/charts/MapChart/Legend/Legend.js +0 -17
- package/esm/components/charts/MapChart/Legend/styles.d.ts +0 -6
- package/esm/components/charts/MapChart/MapChart.d.ts +0 -12
- package/esm/components/charts/MapChart/MapChart.js +0 -83
- package/esm/components/charts/MapChart/useGeography.js +0 -23
- package/esm/components/charts/PieChart/PieChart.d.ts +0 -12
- package/esm/components/charts/PieChart/PieChart.js +0 -43
- package/esm/components/charts/TableWithBars/TableWithBars.d.ts +0 -4
- package/esm/components/charts/TableWithBars/TableWithBars.js +0 -51
- package/esm/components/charts/TableWithBars/cell-renderers/AttributeCellRenderer.js +0 -23
- package/esm/components/charts/TableWithBars/cell-renderers/HeadCellRenderer.d.ts +0 -9
- package/esm/components/charts/TableWithBars/cell-renderers/HeadCellRenderer.js +0 -35
- package/esm/components/charts/TableWithBars/cell-renderers/NumberCellValueRenderer.d.ts +0 -9
- package/esm/components/charts/TableWithBars/cell-renderers/NumberCellValueRenderer.js +0 -15
- package/esm/components/charts/TableWithBars/cell-renderers/styles.d.ts +0 -1
- package/esm/components/charts/TableWithBars/cell-renderers/styles.js +0 -68
- package/esm/components/charts/TreeChart/TreeChart.d.ts +0 -4
- package/esm/components/charts/TreeChart/TreeChart.js +0 -47
- package/esm/components/charts/hooks/useClickableStyle.d.ts +0 -1
- package/esm/components/charts/hooks/useClickableStyle.js +0 -10
- package/esm/components/charts/hooks/useTooltipState.d.ts +0 -8
- package/esm/components/charts/hooks/useTooltipState.js +0 -28
- package/esm/components/charts/index.d.ts +0 -8
- package/esm/components/charts/index.js +0 -7
- package/esm/components/charts/types/charts.d.ts +0 -51
- package/esm/components/charts/types/index.d.ts +0 -1
- package/esm/components/editors/TypeaheadEditor/TypeaheadEditor.d.ts +0 -22
- package/esm/components/editors/TypeaheadEditor/TypeaheadEditor.js +0 -236
- /package/{esm/components/AttributesFiltersBuilder/types.js → cjs/ActionButton/ActionButton.spec.d.ts} +0 -0
- /package/{esm/components/BasicTableView/types/index.js → cjs/ActionsPanel/ActionsPanel.test.d.ts} +0 -0
- /package/{esm/components/activityLog/types/ActivitiesFilter.js → cjs/ActionsPanel/components/MenuItemRenderer/MenuItemRenderer.spec.d.ts} +0 -0
- /package/cjs/{components/AttributesFiltersBuilder → ActionsPanel}/types.js +0 -0
- /package/cjs/{components/ArrowExpandButton → ArrowExpandButton}/styles.d.ts +0 -0
- /package/cjs/{components/ArrowExpandButton → ArrowExpandButton}/styles.js +0 -0
- /package/{esm/components/activityLog/types/ActivityData.js → cjs/AttributeGroupIcon/AttributeGroupIcon.spec.d.ts} +0 -0
- /package/cjs/{components/AttributeGroupIcon → AttributeGroupIcon}/styles.d.ts +0 -0
- /package/cjs/{components/AttributeGroupIcon → AttributeGroupIcon}/styles.js +0 -0
- /package/{esm/components/activityLog/types/ActivityDelta.js → cjs/AttributeListItem/AttributeListItem.spec.d.ts} +0 -0
- /package/cjs/{components/activityLog/ActivityFilterButton → AttributeListItem/components/AttrTypeIcon}/styles.d.ts +0 -0
- /package/{esm/components/activityLog/types/ActivityItem.js → cjs/AttributeSelector/AttributeSelector.specs.d.ts} +0 -0
- /package/cjs/{components/AttributeSelector → AttributeSelector}/styles.d.ts +0 -0
- /package/cjs/{components/AttributeSelector → AttributeSelector}/styles.js +0 -0
- /package/{esm/components/activityLog/types/DeltaValue.js → cjs/AttributesErrorsPanel/AttributesErrorsPanel.specs.d.ts} +0 -0
- /package/cjs/{components/AttributesErrorsPanel/ErrorsPanel → AttributesErrorsPanel/components/Error}/Error.d.ts +0 -0
- /package/{esm/components/attributes/editMode/AttributesPager/types.js → cjs/AttributesErrorsPanel/components/Error/Error.specs.d.ts} +0 -0
- /package/cjs/{components/AttributesErrorsPanel → AttributesErrorsPanel/components}/ErrorsPanel/ErrorsPanel.d.ts +0 -0
- /package/{esm/components/attributes/inline/types/AddAttributeEvent.js → cjs/AttributesErrorsPanel/components/ErrorsPanel/ErrorsPanel.specs.d.ts} +0 -0
- /package/cjs/{components/AttributesErrorsPanel → AttributesErrorsPanel}/useCachedErrors.d.ts +0 -0
- /package/{esm/components/attributes/inline/types/CrosswalksMap.js → cjs/AttributesFilterSelector/AttributesFilterSelector.test.d.ts} +0 -0
- /package/{esm/components/attributes/inline/types/DeleteAttributeEvent.js → cjs/AttributesFiltersBuilder/AttributesFiltersBuilder.test.d.ts} +0 -0
- /package/cjs/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/components/AttributeSelector/AttributeSelector.d.ts +0 -0
- /package/{esm/components/attributes/inline/types/EditAttributeEvent.js → cjs/AttributesFiltersBuilder/components/AttributeSelector/AttributeSelector.test.d.ts} +0 -0
- /package/cjs/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/components/RowActions/RowActions.d.ts +0 -0
- /package/{esm/components/attributes/inline/types/IgnoreAttributeEvent.js → cjs/AttributesFiltersBuilder/components/RowActions/RowActions.test.d.ts} +0 -0
- /package/cjs/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/components/RowActions/styles.d.ts +0 -0
- /package/cjs/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/components/RowActions/styles.js +0 -0
- /package/cjs/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/helpers.js +0 -0
- /package/cjs/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/styles.d.ts +0 -0
- /package/cjs/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/AttributesPager → AttributesFiltersBuilder}/types.js +0 -0
- /package/{esm/components/attributes/inline/types/PinAttributeEvent.js → cjs/AttributesFiltersButton/AttributesFiltersButton.test.d.ts} +0 -0
- /package/{esm/components/attributes/inline/types/index.js → cjs/AttributesFiltersButton/components/ActionButtons/ActionButtons.test.d.ts} +0 -0
- /package/cjs/{components/AttributesFiltersButton → AttributesFiltersButton/components}/ActionButtons/styles.d.ts +0 -0
- /package/cjs/{components/AttributesFiltersButton → AttributesFiltersButton/components}/ActionButtons/styles.js +0 -0
- /package/cjs/{components/AttributesFiltersButton → AttributesFiltersButton}/styles.d.ts +0 -0
- /package/cjs/{components/AttributesFiltersButton → AttributesFiltersButton}/styles.js +0 -0
- /package/{esm/components/attributes/types/attributes.js → cjs/AttributesValuesEditor/AttributesValuesEditor.test.d.ts} +0 -0
- /package/cjs/{components/AttributesFiltersBuilder/components/ValuesEditor → AttributesValuesEditor}/styles.d.ts +0 -0
- /package/cjs/{components/AttributesFiltersBuilder/components/ValuesEditor → AttributesValuesEditor}/styles.js +0 -0
- /package/{esm/components/attributes/types/attributesView.js → cjs/AttributesView/AttributesView.test.d.ts} +0 -0
- /package/cjs/{components/AutoSizeList → AutoSizeList}/AutoSizeList.js +0 -0
- /package/{esm/components/charts/types/charts.js → cjs/AutoSizeList/AutoSizeList.test.d.ts} +0 -0
- /package/cjs/{components/AutoSizeList → AutoSizeList}/styles.d.ts +0 -0
- /package/cjs/{components/AutoSizeList → AutoSizeList}/styles.js +0 -0
- /package/{esm/components/charts/types/index.js → cjs/AvatarWithFallback/AvatarWithFallback.specs.d.ts} +0 -0
- /package/cjs/{components/BasicTableView/viewState → BasicTable}/basicTableViewState.d.ts +0 -0
- /package/cjs/{components/BasicTableView/BasicTablePagination → BasicTablePagination}/BasicTablePagination.d.ts +0 -0
- /package/cjs/{components/BasicTableView/BasicTablePagination → BasicTablePagination}/styles.d.ts +0 -0
- /package/cjs/{components/BasicTableView/BasicTablePagination → BasicTablePagination}/styles.js +0 -0
- /package/cjs/{components/BasicView → BasicView}/styles.d.ts +0 -0
- /package/cjs/{components/BasicView → BasicView}/styles.js +0 -0
- /package/cjs/{components/BasicViewContent → BasicViewContent}/styles.d.ts +0 -0
- /package/cjs/{components/BasicViewContent → BasicViewContent}/styles.js +0 -0
- /package/cjs/{components/BasicViewHeader → BasicViewHeader}/styles.js +0 -0
- /package/cjs/{components/attributes/BranchDecorator → BranchDecorator}/styles.js +0 -0
- /package/cjs/{components/charts/BubbleChart → BubbleChart}/helpers.js +0 -0
- /package/cjs/{components/charts/BubbleChart → BubbleChart}/styles.d.ts +0 -0
- /package/cjs/{components/charts/BubbleChart → BubbleChart}/styles.js +0 -0
- /package/cjs/{components/BasicTableView/types/index.js → BubbleChart/types.js} +0 -0
- /package/cjs/{components/charts/CustomLegend → ChartLegend}/styles.js +0 -0
- /package/cjs/{components/charts/CustomTooltip → ChartTooltip}/styles.d.ts +0 -0
- /package/cjs/{components/charts/CustomTooltip → ChartTooltip}/styles.js +0 -0
- /package/cjs/{components/charts/CloudChart → CloudChart}/styles.d.ts +0 -0
- /package/cjs/{components/charts/CloudChart → CloudChart}/styles.js +0 -0
- /package/cjs/{components/activityLog/types/ActivitiesFilter.js → CloudChart/types.js} +0 -0
- /package/cjs/{components/BasicTableView/CollapseRowButton → CollapseRowButton}/styles.js +0 -0
- /package/cjs/{components/ColorBar → ColorBar}/styles.d.ts +0 -0
- /package/cjs/{components/ColorBar → ColorBar}/styles.js +0 -0
- /package/cjs/{components/BasicTableView/BasicTableHeader/ColumnsSettings/columnHelpers.js → ColumnsSettings/helpers.js} +0 -0
- /package/cjs/{components/BasicTableView/BasicTableHeader/ColumnsSettings → ColumnsSettings}/styles.js +0 -0
- /package/cjs/{components/attributes/inline/common → ComplexAttributeLabel}/ComplexAttributeLabel.d.ts +0 -0
- /package/cjs/{components/attributes/DescriptionIcon → DescriptionIcon}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/DescriptionIcon → DescriptionIcon}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/AttributesList/AttributesList.d.ts → EditModeAttributesList/EditModeAttributesList.d.ts} +0 -0
- /package/cjs/{components/attributes/editMode/AttributesList → EditModeAttributesList}/helpers.d.ts +0 -0
- /package/cjs/{components/attributes/editMode/AttributesList → EditModeAttributesList}/helpers.js +0 -0
- /package/cjs/{components/attributes/editMode/AttributesPager → EditModeAttributesPager}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/AttributesView → EditModeAttributesView}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/editMode/AttributesView → EditModeAttributesView}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/ComplexAttribute/ComplexAttribute.d.ts → EditModeComplexAttribute/EditModeComplexAttribute.d.ts} +0 -0
- /package/cjs/{components/attributes/editMode/ComplexAttribute → EditModeComplexAttribute}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/editMode/ComplexAttribute → EditModeComplexAttribute}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/EntitySelector → EntitySelector}/styles.js +0 -0
- /package/cjs/{components/ExpandedValueTooltip → ExpandedValueTooltip}/styles.d.ts +0 -0
- /package/cjs/{components/ExpandedValueTooltip → ExpandedValueTooltip}/styles.js +0 -0
- /package/cjs/{components/FacetViewHeader → FacetViewHeader}/styles.js +0 -0
- /package/cjs/{components/Image → Image}/styles.js +0 -0
- /package/cjs/{components/Image/ImageActionsOverlay → ImageActionsOverlay}/ImageActionsOverlay.d.ts +0 -0
- /package/cjs/{components/Image → ImageActionsOverlay/components}/CheckedIcon/CheckedIcon.js +0 -0
- /package/cjs/{components/Image → ImageActionsOverlay/components}/CheckedIcon/styles.d.ts +0 -0
- /package/cjs/{components/Image → ImageActionsOverlay/components}/CheckedIcon/styles.js +0 -0
- /package/cjs/{components/Image/ImageActionsOverlay → ImageActionsOverlay}/styles.d.ts +0 -0
- /package/cjs/{components/Image/ImageActionsOverlay → ImageActionsOverlay}/styles.js +0 -0
- /package/cjs/{components/attributes/helpers/imageAttributes.d.ts → ImageAttributesLine/helpers.d.ts} +0 -0
- /package/cjs/{components/attributes/helpers/imageAttributes.js → ImageAttributesLine/helpers.js} +0 -0
- /package/cjs/{components/attributes/ImageAttributesLine → ImageAttributesLine}/styles.js +0 -0
- /package/cjs/{components/activityLog/types/ActivityData.js → ImageAttributesLine/types.js} +0 -0
- /package/cjs/{components/attributes/editMode/ImageAttributesLine → ImageAttributesLineEditor}/styles.js +0 -0
- /package/cjs/{components/attributes/inline/AttributesList → InlineAttributesList}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/inline/AttributesList → InlineAttributesList}/styles.js +0 -0
- /package/cjs/{components/attributes/inline/SimpleAttributesBlock → InlineAttributesPager/components/InlineSimpleAttributesBlock}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/inline/SimpleAttributesBlock → InlineAttributesPager/components/InlineSimpleAttributesBlock}/styles.js +0 -0
- /package/cjs/{components/attributes/inline/AttributesPager → InlineAttributesPager}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/inline/AttributesPager → InlineAttributesPager}/styles.js +0 -0
- /package/cjs/{components/attributes/inline/ComplexAttribute → InlineComplexAttribute}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/inline/ComplexAttribute → InlineComplexAttribute}/styles.js +0 -0
- /package/cjs/{components/attributes/inline/ImageAttribute → InlineImageAttribute}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/inline/ImageAttribute → InlineImageAttribute}/styles.js +0 -0
- /package/cjs/{components/attributes/inline/ReferenceAttribute → InlineReferenceAttribute}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/inline/ReferenceAttribute → InlineReferenceAttribute}/styles.js +0 -0
- /package/cjs/{components/attributes/inline/SimpleAttribute → InlineSimpleAttribute/components}/CrosswalkMenuItem/styles.d.ts +0 -0
- /package/cjs/{components/attributes/inline/SimpleAttribute → InlineSimpleAttribute/components}/CrosswalkMenuItem/styles.js +0 -0
- /package/cjs/{components/attributes/inline/SimpleAttribute → InlineSimpleAttribute}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/inline/SimpleAttribute → InlineSimpleAttribute}/styles.js +0 -0
- /package/cjs/{components/attributes/inline/SimpleAttributeEditor → InlineSimpleAttributeEditor}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/inline/SimpleAttributeEditor → InlineSimpleAttributeEditor}/styles.js +0 -0
- /package/cjs/{components/InternalLink → InternalLink}/styles.d.ts +0 -0
- /package/cjs/{components/InternalLink → InternalLink}/styles.js +0 -0
- /package/cjs/{components/charts/MapChart → MapChart/components}/Legend/styles.js +0 -0
- /package/cjs/{components/charts/MapChart → MapChart}/styles.d.ts +0 -0
- /package/cjs/{components/charts/MapChart → MapChart}/styles.js +0 -0
- /package/cjs/{components/charts/MapChart → MapChart}/useGeography.d.ts +0 -0
- /package/cjs/{components/attributes/editMode/MoreAttributesButton → MoreAttributesButton}/helpers.js +0 -0
- /package/cjs/{components/attributes/editMode/MoreAttributesButton → MoreAttributesButton}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/MoreAttributesButton → MoreAttributesButton}/useMoreAttributesItems.d.ts +0 -0
- /package/cjs/{components/attributes/readMode/NestedAttribute → NestedAttribute}/NestedAttribute.d.ts +0 -0
- /package/cjs/{components/attributes/readMode/NestedAttribute → NestedAttribute}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/readMode/NestedAttribute → NestedAttribute}/styles.js +0 -0
- /package/cjs/{components/attributes/OvIcon → OvIcon}/styles.js +0 -0
- /package/cjs/{components/charts/PieChart → PieChart}/styles.d.ts +0 -0
- /package/cjs/{components/charts/PieChart → PieChart}/styles.js +0 -0
- /package/cjs/{components/attributes/PivotingAttributes → PivotingTooltip}/PivotingTooltip.d.ts +0 -0
- /package/cjs/{components/attributes/PivotingAttributes → PivotingTooltip}/helpers.d.ts +0 -0
- /package/cjs/{components/attributes/PivotingAttributes → PivotingTooltip}/helpers.js +0 -0
- /package/cjs/{components/attributes/readMode/AttributesPager/AttributesPager.d.ts → ReadOnlyAttributesPager/ReadOnlyAttributesPager.d.ts} +0 -0
- /package/cjs/{components/attributes/readMode/AttributesPager → ReadOnlyAttributesPager}/styles.js +0 -0
- /package/cjs/{components/attributes/readMode/AttributesView → ReadOnlyAttributesView}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/readMode/AttributesView → ReadOnlyAttributesView}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/ReferenceAttribute/ReferenceAttribute.d.ts → ReferenceAttributeEditor/ReferenceAttributeEditor.d.ts} +0 -0
- /package/cjs/{components/attributes/editMode/ReferenceAttribute → ReferenceAttributeEditor}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/Roles → RolesEditor}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/editMode/Roles → RolesEditor}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/SimpleAttributeEditor → SimpleAttributeEditor}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/SimpleAttributeEditor → SimpleAttributeEditor}/useAttributeValuePermissions.d.ts +0 -0
- /package/cjs/{components/attributes/editMode/SimpleAttributeEditor → SimpleAttributeEditor}/useAutopopulationContextValue.d.ts +0 -0
- /package/cjs/{components/attributes/readMode/SpecialAttributes → SpecialAttributesArray}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/readMode/SpecialAttributes → SpecialAttributesArray}/styles.js +0 -0
- /package/cjs/{components/charts/TableWithBars/cell-renderers → TableWithBars/components/AttributeCellRenderer}/AttributeCellRenderer.d.ts +0 -0
- /package/cjs/{components/charts/TableWithBars → TableWithBars}/styles.d.ts +0 -0
- /package/cjs/{components/charts/TableWithBars → TableWithBars}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/Tags → TagsEditor}/styles.d.ts +0 -0
- /package/cjs/{components/attributes/editMode/Tags → TagsEditor}/styles.js +0 -0
- /package/cjs/{components/charts/TreeChart → TreeChart/components/CustomizedContent}/styles.d.ts +0 -0
- /package/cjs/{components/charts/TreeChart → TreeChart/components/CustomizedContent}/styles.js +0 -0
- /package/cjs/{components/editors/TypeaheadEditor → TypeaheadEditor}/styles.d.ts +0 -0
- /package/cjs/{components/editors/TypeaheadEditor → TypeaheadEditor}/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/contexts/HasDeletionsContext.d.ts → contexts/HasDeletionsContext/index.d.ts} +0 -0
- /package/cjs/{components/attributes/editMode/contexts/HasDeletionsContext.js → contexts/HasDeletionsContext/index.js} +0 -0
- /package/cjs/{components/attributes/editMode/contexts/PinnedAttributesContext.d.ts → contexts/PinnedAttributesContext/index.d.ts} +0 -0
- /package/cjs/{components/attributes/editMode/contexts/PinnedAttributesContext.js → contexts/PinnedAttributesContext/index.js} +0 -0
- /package/cjs/{components/BasicTableView/BasicTable/contexts/RowCollapseContext.js → contexts/RowCollapseContext/index.js} +0 -0
- /package/cjs/{components/activityLog/activities/EntityObject → features/activity-log/ActivitiesFactory/components/SearchActivity}/styles.d.ts +0 -0
- /package/{esm/components/InternalLink → cjs/features/activity-log/ActivitiesFactory/components/SimpleActivity}/styles.d.ts +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/ActivityExportButton/styles.d.ts +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/ActivityExportButton/styles.js +0 -0
- /package/{esm/components/AttributeGroupIcon → cjs/features/activity-log/ActivityFilterButton}/styles.d.ts +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/ActivityFilterButton/styles.js +0 -0
- /package/cjs/{components/activityLog/ActivityFilterEditor/utils/getSelectorActivityTypes.d.ts → features/activity-log/ActivityFilterEditor/helpers.d.ts} +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/ActivityFilterEditor/styles.js +0 -0
- /package/cjs/{components/activityLog/ActivityLog/items → features/activity-log/ActivityLog/components}/ActivityItem/styles.d.ts +0 -0
- /package/cjs/{components/activityLog/ActivityLog/items → features/activity-log/ActivityLog/components}/ActivityItem/styles.js +0 -0
- /package/cjs/{components/activityLog/ActivityLog/items → features/activity-log/ActivityLog/components}/GroupItem/styles.d.ts +0 -0
- /package/cjs/{components/activityLog/ActivityLog/items → features/activity-log/ActivityLog/components}/GroupItem/styles.js +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/ActivityLog/helpers.d.ts +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/ActivityLog/helpers.js +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/ActivityLog/styles.d.ts +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/ActivityLog/styles.js +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/ActivityLogFilter/helpers.d.ts +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/ActivityLogFilter/helpers.js +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/ActivityLogFilter/styles.js +0 -0
- /package/cjs/{components/activityLog/activities → features/activity-log}/ActivityTitle/styles.d.ts +0 -0
- /package/cjs/{components/activityLog/activities → features/activity-log}/ActivityTitle/styles.js +0 -0
- /package/{esm/components/activityLog/activities → cjs/features/activity-log}/EntityObject/styles.d.ts +0 -0
- /package/cjs/{components/activityLog/activities → features/activity-log}/EntityObject/styles.js +0 -0
- /package/cjs/{components/activityLog/activities → features/activity-log}/MoreItemsLink/MoreItemsLink.js +0 -0
- /package/cjs/{components/activityLog/activities → features/activity-log}/RelationObject/styles.d.ts +0 -0
- /package/cjs/{components/activityLog/activities → features/activity-log}/RelationObject/styles.js +0 -0
- /package/cjs/{components/activityLog/contexts/CollapsibleItemsContext/index.js → features/activity-log/contexts/CollapsibleItemsContext.js} +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/hooks/useActivitiesLoader.d.ts +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/hooks/useProfileActivitiesLoader.d.ts +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/hooks/useProfileActivitiesLoader.js +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/utils/activities.d.ts +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/utils/activities.js +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/utils/filters.d.ts +0 -0
- /package/cjs/{components/activityLog → features/activity-log}/utils/filters.js +0 -0
- /package/cjs/{components/attributes/inline/hooks → hooks}/useAttributeState.d.ts +0 -0
- /package/cjs/{components/attributes/inline/hooks → hooks}/useAttributeState.js +0 -0
- /package/cjs/{components/BasicTableView/BasicTable/helpers → hooks/useCollapsibleTableRows}/nestedHelpers.d.ts +0 -0
- /package/cjs/{components/BasicTableView/BasicTable/helpers → hooks/useCollapsibleTableRows}/nestedHelpers.js +0 -0
- /package/cjs/{components/attributes/editMode/hooks → hooks}/useScrollToAttribute/styles.d.ts +0 -0
- /package/cjs/{components/attributes/editMode/hooks → hooks}/useScrollToAttribute/styles.js +0 -0
- /package/cjs/{components/attributes/editMode/hooks → hooks}/useScrollToAttribute/useScrollToAttribute.js +0 -0
- /package/cjs/{components/activityLog/types/ActivityDelta.js → types/basicTable.js} +0 -0
- /package/cjs/{components/charts/types → types}/charts.js +0 -0
- /package/cjs/{components/activityLog/types/ActivityItem.js → types/inlineAttributes.js} +0 -0
- /package/esm/{components/ArrowExpandButton → ArrowExpandButton}/styles.d.ts +0 -0
- /package/esm/{components/ArrowExpandButton → ArrowExpandButton}/styles.js +0 -0
- /package/esm/{components/activityLog/ActivityFilterButton → AttributeGroupIcon}/styles.d.ts +0 -0
- /package/esm/{components/AttributeGroupIcon → AttributeGroupIcon}/styles.js +0 -0
- /package/esm/{components/attributes/DescriptionIcon → AttributeListItem/components/AttrTypeIcon}/styles.d.ts +0 -0
- /package/esm/{components/AttributeSelector → AttributeSelector}/styles.d.ts +0 -0
- /package/esm/{components/AttributeSelector → AttributeSelector}/styles.js +0 -0
- /package/esm/{components/AttributesErrorsPanel/ErrorsPanel → AttributesErrorsPanel/components/Error}/Error.d.ts +0 -0
- /package/esm/{components/AttributesErrorsPanel → AttributesErrorsPanel/components}/ErrorsPanel/ErrorsPanel.d.ts +0 -0
- /package/esm/{components/AttributesErrorsPanel → AttributesErrorsPanel}/useCachedErrors.d.ts +0 -0
- /package/esm/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/components/AttributeSelector/AttributeSelector.d.ts +0 -0
- /package/esm/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/components/RowActions/RowActions.d.ts +0 -0
- /package/esm/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/components/RowActions/styles.d.ts +0 -0
- /package/esm/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/components/RowActions/styles.js +0 -0
- /package/esm/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/helpers.js +0 -0
- /package/esm/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/styles.d.ts +0 -0
- /package/esm/{components/AttributesFiltersBuilder → AttributesFiltersBuilder}/styles.js +0 -0
- /package/esm/{components/AttributesFiltersButton → AttributesFiltersButton/components}/ActionButtons/styles.d.ts +0 -0
- /package/esm/{components/AttributesFiltersButton → AttributesFiltersButton/components}/ActionButtons/styles.js +0 -0
- /package/esm/{components/AttributesFiltersButton → AttributesFiltersButton}/styles.d.ts +0 -0
- /package/esm/{components/AttributesFiltersButton → AttributesFiltersButton}/styles.js +0 -0
- /package/esm/{components/AttributesFiltersBuilder/components/ValuesEditor → AttributesValuesEditor}/styles.d.ts +0 -0
- /package/esm/{components/AttributesFiltersBuilder/components/ValuesEditor → AttributesValuesEditor}/styles.js +0 -0
- /package/esm/{components/AutoSizeList → AutoSizeList}/AutoSizeList.js +0 -0
- /package/esm/{components/AutoSizeList → AutoSizeList}/styles.d.ts +0 -0
- /package/esm/{components/AutoSizeList → AutoSizeList}/styles.js +0 -0
- /package/esm/{components/BasicTableView/viewState → BasicTable}/basicTableViewState.d.ts +0 -0
- /package/esm/{components/BasicTableView/BasicTablePagination → BasicTablePagination}/BasicTablePagination.d.ts +0 -0
- /package/esm/{components/BasicTableView/BasicTablePagination → BasicTablePagination}/styles.d.ts +0 -0
- /package/esm/{components/BasicTableView/BasicTablePagination → BasicTablePagination}/styles.js +0 -0
- /package/esm/{components/BasicView → BasicView}/styles.d.ts +0 -0
- /package/esm/{components/BasicView → BasicView}/styles.js +0 -0
- /package/esm/{components/BasicViewContent → BasicViewContent}/styles.d.ts +0 -0
- /package/esm/{components/BasicViewContent → BasicViewContent}/styles.js +0 -0
- /package/esm/{components/BasicViewHeader → BasicViewHeader}/styles.js +0 -0
- /package/esm/{components/attributes/BranchDecorator → BranchDecorator}/styles.js +0 -0
- /package/esm/{components/charts/BubbleChart → BubbleChart}/styles.d.ts +0 -0
- /package/esm/{components/charts/BubbleChart → BubbleChart}/styles.js +0 -0
- /package/esm/{components/charts/CustomLegend → ChartLegend}/styles.js +0 -0
- /package/esm/{components/charts/CustomTooltip → ChartTooltip}/styles.d.ts +0 -0
- /package/esm/{components/charts/CustomTooltip → ChartTooltip}/styles.js +0 -0
- /package/esm/{components/charts/CloudChart → CloudChart}/styles.d.ts +0 -0
- /package/esm/{components/charts/CloudChart → CloudChart}/styles.js +0 -0
- /package/esm/{components/BasicTableView/CollapseRowButton → CollapseRowButton}/styles.js +0 -0
- /package/esm/{components/ColorBar → ColorBar}/styles.d.ts +0 -0
- /package/esm/{components/ColorBar → ColorBar}/styles.js +0 -0
- /package/esm/{components/BasicTableView/BasicTableHeader/ColumnsSettings/columnHelpers.js → ColumnsSettings/helpers.js} +0 -0
- /package/esm/{components/BasicTableView/BasicTableHeader/ColumnsSettings → ColumnsSettings}/styles.js +0 -0
- /package/esm/{components/attributes/inline/common → ComplexAttributeLabel}/ComplexAttributeLabel.d.ts +0 -0
- /package/esm/{components/attributes/DescriptionIcon → DescriptionIcon}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/AttributesList/AttributesList.d.ts → EditModeAttributesList/EditModeAttributesList.d.ts} +0 -0
- /package/esm/{components/attributes/editMode/AttributesList → EditModeAttributesList}/helpers.d.ts +0 -0
- /package/esm/{components/attributes/editMode/AttributesList → EditModeAttributesList}/helpers.js +0 -0
- /package/esm/{components/attributes/editMode/AttributesPager → EditModeAttributesPager}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/AttributesView → EditModeAttributesView}/styles.d.ts +0 -0
- /package/esm/{components/attributes/editMode/AttributesView → EditModeAttributesView}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/ComplexAttribute/ComplexAttribute.d.ts → EditModeComplexAttribute/EditModeComplexAttribute.d.ts} +0 -0
- /package/esm/{components/attributes/editMode/ComplexAttribute → EditModeComplexAttribute}/styles.d.ts +0 -0
- /package/esm/{components/attributes/editMode/ComplexAttribute → EditModeComplexAttribute}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/EntitySelector → EntitySelector}/styles.js +0 -0
- /package/esm/{components/ExpandedValueTooltip → ExpandedValueTooltip}/styles.d.ts +0 -0
- /package/esm/{components/ExpandedValueTooltip → ExpandedValueTooltip}/styles.js +0 -0
- /package/esm/{components/FacetViewHeader → FacetViewHeader}/styles.js +0 -0
- /package/esm/{components/Image → Image}/styles.js +0 -0
- /package/esm/{components/Image/ImageActionsOverlay → ImageActionsOverlay}/ImageActionsOverlay.d.ts +0 -0
- /package/esm/{components/Image → ImageActionsOverlay/components}/CheckedIcon/CheckedIcon.js +0 -0
- /package/esm/{components/Image → ImageActionsOverlay/components}/CheckedIcon/styles.d.ts +0 -0
- /package/esm/{components/Image → ImageActionsOverlay/components}/CheckedIcon/styles.js +0 -0
- /package/esm/{components/Image/ImageActionsOverlay → ImageActionsOverlay}/styles.d.ts +0 -0
- /package/esm/{components/Image/ImageActionsOverlay → ImageActionsOverlay}/styles.js +0 -0
- /package/esm/{components/attributes/helpers/imageAttributes.d.ts → ImageAttributesLine/helpers.d.ts} +0 -0
- /package/esm/{components/attributes/helpers/imageAttributes.js → ImageAttributesLine/helpers.js} +0 -0
- /package/esm/{components/attributes/ImageAttributesLine → ImageAttributesLine}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/ImageAttributesLine → ImageAttributesLineEditor}/styles.js +0 -0
- /package/esm/{components/attributes/inline/AttributesList → InlineAttributesList}/styles.d.ts +0 -0
- /package/esm/{components/attributes/inline/AttributesList → InlineAttributesList}/styles.js +0 -0
- /package/esm/{components/attributes/inline/SimpleAttributesBlock → InlineAttributesPager/components/InlineSimpleAttributesBlock}/styles.d.ts +0 -0
- /package/esm/{components/attributes/inline/SimpleAttributesBlock → InlineAttributesPager/components/InlineSimpleAttributesBlock}/styles.js +0 -0
- /package/esm/{components/attributes/inline/AttributesPager → InlineAttributesPager}/styles.d.ts +0 -0
- /package/esm/{components/attributes/inline/AttributesPager → InlineAttributesPager}/styles.js +0 -0
- /package/esm/{components/attributes/inline/ComplexAttribute → InlineComplexAttribute}/styles.d.ts +0 -0
- /package/esm/{components/attributes/inline/ComplexAttribute → InlineComplexAttribute}/styles.js +0 -0
- /package/esm/{components/attributes/inline/ImageAttribute → InlineImageAttribute}/styles.d.ts +0 -0
- /package/esm/{components/attributes/inline/ImageAttribute → InlineImageAttribute}/styles.js +0 -0
- /package/esm/{components/attributes/inline/ReferenceAttribute → InlineReferenceAttribute}/styles.d.ts +0 -0
- /package/esm/{components/attributes/inline/ReferenceAttribute → InlineReferenceAttribute}/styles.js +0 -0
- /package/esm/{components/attributes/inline/SimpleAttribute → InlineSimpleAttribute/components}/CrosswalkMenuItem/styles.d.ts +0 -0
- /package/esm/{components/attributes/inline/SimpleAttribute → InlineSimpleAttribute/components}/CrosswalkMenuItem/styles.js +0 -0
- /package/esm/{components/attributes/inline/SimpleAttribute → InlineSimpleAttribute}/styles.d.ts +0 -0
- /package/esm/{components/attributes/inline/SimpleAttribute → InlineSimpleAttribute}/styles.js +0 -0
- /package/esm/{components/attributes/inline/SimpleAttributeEditor → InlineSimpleAttributeEditor}/styles.d.ts +0 -0
- /package/esm/{components/attributes/inline/SimpleAttributeEditor → InlineSimpleAttributeEditor}/styles.js +0 -0
- /package/esm/{components/InternalLink → InternalLink}/styles.js +0 -0
- /package/esm/{components/charts/MapChart → MapChart/components}/Legend/styles.js +0 -0
- /package/esm/{components/charts/MapChart → MapChart}/styles.d.ts +0 -0
- /package/esm/{components/charts/MapChart → MapChart}/styles.js +0 -0
- /package/esm/{components/charts/MapChart → MapChart}/useGeography.d.ts +0 -0
- /package/esm/{components/attributes/editMode/MoreAttributesButton → MoreAttributesButton}/helpers.js +0 -0
- /package/esm/{components/attributes/editMode/MoreAttributesButton → MoreAttributesButton}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/MoreAttributesButton → MoreAttributesButton}/useMoreAttributesItems.d.ts +0 -0
- /package/esm/{components/attributes/readMode/NestedAttribute → NestedAttribute}/NestedAttribute.d.ts +0 -0
- /package/esm/{components/attributes/readMode/NestedAttribute → NestedAttribute}/styles.d.ts +0 -0
- /package/esm/{components/attributes/readMode/NestedAttribute → NestedAttribute}/styles.js +0 -0
- /package/esm/{components/attributes/OvIcon → OvIcon}/styles.js +0 -0
- /package/esm/{components/charts/PieChart → PieChart}/styles.d.ts +0 -0
- /package/esm/{components/charts/PieChart → PieChart}/styles.js +0 -0
- /package/esm/{components/attributes/PivotingAttributes → PivotingTooltip}/PivotingTooltip.d.ts +0 -0
- /package/esm/{components/attributes/PivotingAttributes → PivotingTooltip}/helpers.d.ts +0 -0
- /package/esm/{components/attributes/PivotingAttributes → PivotingTooltip}/helpers.js +0 -0
- /package/esm/{components/attributes/readMode/AttributesPager/AttributesPager.d.ts → ReadOnlyAttributesPager/ReadOnlyAttributesPager.d.ts} +0 -0
- /package/esm/{components/attributes/readMode/AttributesPager → ReadOnlyAttributesPager}/styles.js +0 -0
- /package/esm/{components/attributes/readMode/AttributesView → ReadOnlyAttributesView}/styles.d.ts +0 -0
- /package/esm/{components/attributes/readMode/AttributesView → ReadOnlyAttributesView}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/ReferenceAttribute/ReferenceAttribute.d.ts → ReferenceAttributeEditor/ReferenceAttributeEditor.d.ts} +0 -0
- /package/esm/{components/attributes/editMode/ReferenceAttribute → ReferenceAttributeEditor}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/Roles → RolesEditor}/styles.d.ts +0 -0
- /package/esm/{components/attributes/editMode/Roles → RolesEditor}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/SimpleAttributeEditor → SimpleAttributeEditor}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/SimpleAttributeEditor → SimpleAttributeEditor}/useAttributeValuePermissions.d.ts +0 -0
- /package/esm/{components/attributes/editMode/SimpleAttributeEditor → SimpleAttributeEditor}/useAutopopulationContextValue.d.ts +0 -0
- /package/esm/{components/attributes/readMode/SpecialAttributes → SpecialAttributesArray}/styles.d.ts +0 -0
- /package/esm/{components/attributes/readMode/SpecialAttributes → SpecialAttributesArray}/styles.js +0 -0
- /package/esm/{components/charts/TableWithBars/cell-renderers → TableWithBars/components/AttributeCellRenderer}/AttributeCellRenderer.d.ts +0 -0
- /package/esm/{components/charts/TableWithBars → TableWithBars}/styles.d.ts +0 -0
- /package/esm/{components/charts/TableWithBars → TableWithBars}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/Tags → TagsEditor}/styles.d.ts +0 -0
- /package/esm/{components/attributes/editMode/Tags → TagsEditor}/styles.js +0 -0
- /package/esm/{components/charts/TreeChart → TreeChart/components/CustomizedContent}/styles.d.ts +0 -0
- /package/esm/{components/charts/TreeChart → TreeChart/components/CustomizedContent}/styles.js +0 -0
- /package/esm/{components/editors/TypeaheadEditor → TypeaheadEditor}/styles.d.ts +0 -0
- /package/esm/{components/editors/TypeaheadEditor → TypeaheadEditor}/styles.js +0 -0
- /package/esm/{components/attributes/editMode/contexts/HasDeletionsContext.d.ts → contexts/HasDeletionsContext/index.d.ts} +0 -0
- /package/esm/{components/attributes/editMode/contexts/HasDeletionsContext.js → contexts/HasDeletionsContext/index.js} +0 -0
- /package/esm/{components/attributes/editMode/contexts/PinnedAttributesContext.d.ts → contexts/PinnedAttributesContext/index.d.ts} +0 -0
- /package/esm/{components/attributes/editMode/contexts/PinnedAttributesContext.js → contexts/PinnedAttributesContext/index.js} +0 -0
- /package/esm/{components/BasicTableView/BasicTable/contexts/RowCollapseContext.js → contexts/RowCollapseContext/index.js} +0 -0
- /package/esm/{components/activityLog → features/activity-log}/ActivityExportButton/styles.d.ts +0 -0
- /package/esm/{components/activityLog → features/activity-log}/ActivityExportButton/styles.js +0 -0
- /package/esm/{components/activityLog → features/activity-log}/ActivityFilterButton/styles.js +0 -0
- /package/esm/{components/activityLog/ActivityFilterEditor/utils/getSelectorActivityTypes.d.ts → features/activity-log/ActivityFilterEditor/helpers.d.ts} +0 -0
- /package/esm/{components/activityLog → features/activity-log}/ActivityFilterEditor/styles.js +0 -0
- /package/esm/{components/activityLog/ActivityLog/items → features/activity-log/ActivityLog/components}/ActivityItem/styles.d.ts +0 -0
- /package/esm/{components/activityLog/ActivityLog/items → features/activity-log/ActivityLog/components}/ActivityItem/styles.js +0 -0
- /package/esm/{components/activityLog/ActivityLog/items → features/activity-log/ActivityLog/components}/GroupItem/styles.d.ts +0 -0
- /package/esm/{components/activityLog/ActivityLog/items → features/activity-log/ActivityLog/components}/GroupItem/styles.js +0 -0
- /package/esm/{components/activityLog → features/activity-log}/ActivityLog/helpers.d.ts +0 -0
- /package/esm/{components/activityLog → features/activity-log}/ActivityLog/helpers.js +0 -0
- /package/esm/{components/activityLog → features/activity-log}/ActivityLog/styles.d.ts +0 -0
- /package/esm/{components/activityLog → features/activity-log}/ActivityLog/styles.js +0 -0
- /package/esm/{components/activityLog → features/activity-log}/ActivityLogFilter/helpers.d.ts +0 -0
- /package/esm/{components/activityLog → features/activity-log}/ActivityLogFilter/helpers.js +0 -0
- /package/esm/{components/activityLog → features/activity-log}/ActivityLogFilter/styles.js +0 -0
- /package/esm/{components/activityLog/activities → features/activity-log}/ActivityTitle/styles.d.ts +0 -0
- /package/esm/{components/activityLog/activities → features/activity-log}/ActivityTitle/styles.js +0 -0
- /package/esm/{components/activityLog/activities → features/activity-log}/EntityObject/styles.js +0 -0
- /package/esm/{components/activityLog/activities → features/activity-log}/MoreItemsLink/MoreItemsLink.js +0 -0
- /package/esm/{components/activityLog/activities → features/activity-log}/RelationObject/styles.d.ts +0 -0
- /package/esm/{components/activityLog/activities → features/activity-log}/RelationObject/styles.js +0 -0
- /package/esm/{components/activityLog/contexts/CollapsibleItemsContext/index.js → features/activity-log/contexts/CollapsibleItemsContext.js} +0 -0
- /package/esm/{components/activityLog → features/activity-log}/hooks/useActivitiesLoader.d.ts +0 -0
- /package/esm/{components/activityLog → features/activity-log}/hooks/useProfileActivitiesLoader.d.ts +0 -0
- /package/esm/{components/activityLog → features/activity-log}/hooks/useProfileActivitiesLoader.js +0 -0
- /package/esm/{components/activityLog → features/activity-log}/utils/activities.d.ts +0 -0
- /package/esm/{components/activityLog → features/activity-log}/utils/activities.js +0 -0
- /package/esm/{components/activityLog → features/activity-log}/utils/filters.d.ts +0 -0
- /package/esm/{components/activityLog → features/activity-log}/utils/filters.js +0 -0
- /package/esm/{components/attributes/inline/hooks → hooks}/useAttributeState.d.ts +0 -0
- /package/esm/{components/attributes/inline/hooks → hooks}/useAttributeState.js +0 -0
- /package/esm/{components/BasicTableView/BasicTable/helpers → hooks/useCollapsibleTableRows}/nestedHelpers.d.ts +0 -0
- /package/esm/{components/BasicTableView/BasicTable/helpers → hooks/useCollapsibleTableRows}/nestedHelpers.js +0 -0
- /package/esm/{components/attributes/editMode/hooks → hooks}/useScrollToAttribute/styles.d.ts +0 -0
- /package/esm/{components/attributes/editMode/hooks → hooks}/useScrollToAttribute/styles.js +0 -0
- /package/esm/{components/attributes/editMode/hooks → hooks}/useScrollToAttribute/useScrollToAttribute.js +0 -0
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from '@mui/styles';
|
|
2
|
-
export var useStyles = makeStyles(function (theme) { return ({
|
|
3
|
-
container: {
|
|
4
|
-
backgroundColor: 'white',
|
|
5
|
-
width: '360px',
|
|
6
|
-
minWidth: '360px',
|
|
7
|
-
maxWidth: '720px'
|
|
8
|
-
},
|
|
9
|
-
header: {
|
|
10
|
-
display: 'flex',
|
|
11
|
-
height: '48px',
|
|
12
|
-
alignItems: 'center',
|
|
13
|
-
justifyContent: 'space-between',
|
|
14
|
-
paddingLeft: '16px'
|
|
15
|
-
},
|
|
16
|
-
title: {
|
|
17
|
-
color: theme.palette.text.primary,
|
|
18
|
-
fontSize: '16px',
|
|
19
|
-
letterSpacing: '0.15px',
|
|
20
|
-
lineHeight: '19px'
|
|
21
|
-
},
|
|
22
|
-
entityTypeLabel: {
|
|
23
|
-
color: 'rgba(0,0,0,0.67)',
|
|
24
|
-
fontSize: '14px',
|
|
25
|
-
paddingLeft: '16px',
|
|
26
|
-
paddingBottom: '12px',
|
|
27
|
-
lineHeight: '16px'
|
|
28
|
-
},
|
|
29
|
-
divider: {
|
|
30
|
-
height: '24px',
|
|
31
|
-
width: '1px',
|
|
32
|
-
backgroundColor: 'rgba(0,0,0,0.12)'
|
|
33
|
-
},
|
|
34
|
-
headerCount: {
|
|
35
|
-
color: theme.palette.text.secondary,
|
|
36
|
-
fontSize: '14px',
|
|
37
|
-
letterSpacing: '0.24px',
|
|
38
|
-
lineHeight: '28px',
|
|
39
|
-
width: '210px'
|
|
40
|
-
},
|
|
41
|
-
body: {
|
|
42
|
-
borderBottom: '1px solid rgba(0,0,0,0.12)',
|
|
43
|
-
padding: '0 16px 8px'
|
|
44
|
-
},
|
|
45
|
-
footer: {
|
|
46
|
-
display: 'flex',
|
|
47
|
-
alignItems: 'center',
|
|
48
|
-
height: '32px',
|
|
49
|
-
paddingLeft: '16px',
|
|
50
|
-
color: theme.palette.primary.main,
|
|
51
|
-
fontSize: '13px',
|
|
52
|
-
letterSpacing: '0',
|
|
53
|
-
lineHeight: '16px'
|
|
54
|
-
},
|
|
55
|
-
profileIcon: {
|
|
56
|
-
height: '16px',
|
|
57
|
-
width: '16px'
|
|
58
|
-
},
|
|
59
|
-
entityContainer: {
|
|
60
|
-
display: 'flex',
|
|
61
|
-
flexDirection: 'row',
|
|
62
|
-
alignItems: 'center'
|
|
63
|
-
},
|
|
64
|
-
entityLabel: {
|
|
65
|
-
color: theme.palette.primary.main,
|
|
66
|
-
fontSize: '13px',
|
|
67
|
-
letterSpacing: '0',
|
|
68
|
-
lineHeight: '15px',
|
|
69
|
-
textDecoration: 'none',
|
|
70
|
-
paddingLeft: '8px',
|
|
71
|
-
wordBreak: 'break-word'
|
|
72
|
-
},
|
|
73
|
-
icon: {
|
|
74
|
-
marginRight: '8px',
|
|
75
|
-
verticalAlign: 'middle',
|
|
76
|
-
width: '12px',
|
|
77
|
-
height: '12px'
|
|
78
|
-
},
|
|
79
|
-
content: {
|
|
80
|
-
color: theme.palette.primary.main,
|
|
81
|
-
cursor: 'pointer',
|
|
82
|
-
lineHeight: '16px'
|
|
83
|
-
},
|
|
84
|
-
seeAllButton: {
|
|
85
|
-
cursor: 'pointer'
|
|
86
|
-
}
|
|
87
|
-
}); });
|
|
88
|
-
export var usePivotingTooltipStyles = makeStyles({
|
|
89
|
-
tooltip: {
|
|
90
|
-
backgroundColor: 'white',
|
|
91
|
-
boxShadow: '0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2)',
|
|
92
|
-
padding: 0,
|
|
93
|
-
borderRadius: '4px',
|
|
94
|
-
maxWidth: 'none'
|
|
95
|
-
},
|
|
96
|
-
arrow: {
|
|
97
|
-
'&::before': {
|
|
98
|
-
backgroundColor: 'white'
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
});
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { AttributeType } from '@reltio/mdm-sdk';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
declare const Attribute: React.ForwardRefExoticComponent<Pick<{
|
|
4
|
-
className?: string;
|
|
5
|
-
attributeType: AttributeType;
|
|
6
|
-
} & Record<string, unknown>, string> & React.RefAttributes<HTMLDivElement>>;
|
|
7
|
-
export default Attribute;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
-
var t = {};
|
|
3
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
-
t[p] = s[p];
|
|
5
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
-
t[p[i]] = s[p[i]];
|
|
9
|
-
}
|
|
10
|
-
return t;
|
|
11
|
-
};
|
|
12
|
-
import React, { forwardRef } from 'react';
|
|
13
|
-
import EditModeAttributesFactory from './AttributesFactory';
|
|
14
|
-
var Attribute = forwardRef(function (props, ref) {
|
|
15
|
-
var className = props.className, otherProps = __rest(props, ["className"]);
|
|
16
|
-
return (React.createElement("div", { ref: ref, "data-reltio-id": "reltio-edit-attribute", className: className }, EditModeAttributesFactory.build(props.attributeType, otherProps)));
|
|
17
|
-
});
|
|
18
|
-
Attribute.displayName = 'Attribute';
|
|
19
|
-
export default Attribute;
|
|
@@ -1,47 +0,0 @@
|
|
|
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 React from 'react';
|
|
24
|
-
import { DataTypes, isReltioCrosswalk } from '@reltio/mdm-sdk';
|
|
25
|
-
import SimpleAttributeEditor from '../SimpleAttributeEditor/SimpleAttributeEditor';
|
|
26
|
-
import NestedAttribute from '../NestedAttribute/NestedAttribute';
|
|
27
|
-
import ReferenceAttribute from '../ReferenceAttribute/ReferenceAttribute';
|
|
28
|
-
var EditModeAttributesFactory = /** @class */ (function () {
|
|
29
|
-
function EditModeAttributesFactory() {
|
|
30
|
-
}
|
|
31
|
-
EditModeAttributesFactory.build = function (attributeType, props) {
|
|
32
|
-
if (props === void 0) { props = {}; }
|
|
33
|
-
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
34
|
-
var showEmptyEditors = props.showEmptyEditors, onAddAttributes = props.onAddAttributes, lazy = props.lazy, errors = props.errors, crosswalks = props.crosswalks, showNonOv = props.showNonOv, expanded = props.expanded, propsForSimpleAttribute = __rest(props, ["showEmptyEditors", "onAddAttributes", "lazy", "errors", "crosswalks", "showNonOv", "expanded"]);
|
|
35
|
-
/* eslint-enable @typescript-eslint/no-unused-vars */
|
|
36
|
-
switch (attributeType.type) {
|
|
37
|
-
case DataTypes.TYPE_NESTED:
|
|
38
|
-
return React.createElement(NestedAttribute, __assign({}, props));
|
|
39
|
-
case DataTypes.TYPE_REFERENCE:
|
|
40
|
-
return React.createElement(ReferenceAttribute, __assign({}, props));
|
|
41
|
-
default:
|
|
42
|
-
return (React.createElement(SimpleAttributeEditor, __assign({ isReltioCrosswalk: isReltioCrosswalk(crosswalks, props.attributeValue) }, propsForSimpleAttribute)));
|
|
43
|
-
}
|
|
44
|
-
};
|
|
45
|
-
return EditModeAttributesFactory;
|
|
46
|
-
}());
|
|
47
|
-
export default EditModeAttributesFactory;
|
|
@@ -1,93 +0,0 @@
|
|
|
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 React, { useCallback, useContext, useMemo, useState, useEffect } from 'react';
|
|
13
|
-
import PropTypes from 'prop-types';
|
|
14
|
-
import i18n from 'ui-i18n';
|
|
15
|
-
import { getCreatableAttributeTypes, getAttributesListForEditMode, ModeType, getParentUri, checkCanCreateAttribute } from '@reltio/mdm-sdk';
|
|
16
|
-
import { last, path } from 'ramda';
|
|
17
|
-
import AttributesPager from '../AttributesPager';
|
|
18
|
-
import BranchDecorator from '../../BranchDecorator/BranchDecorator';
|
|
19
|
-
import MoreAttributesButton from '../MoreAttributesButton';
|
|
20
|
-
import { ALWAYS_VISIBLE_TYPE_URIS } from '../../../../constants';
|
|
21
|
-
import { splitPagersData } from '../../helpers/attributesView';
|
|
22
|
-
import { getMoreAttrTypes } from './helpers';
|
|
23
|
-
import { PinnedAttributesContext } from '../contexts/PinnedAttributesContext';
|
|
24
|
-
import { HasDeletionsContext } from '../contexts/HasDeletionsContext';
|
|
25
|
-
import { withContext } from '../../../../HOCs';
|
|
26
|
-
import { ScrollType, ScrollToElementContext, ConfigPermissionsContext } from '../../../../contexts';
|
|
27
|
-
var AttributesList = function (_a) {
|
|
28
|
-
var parentAttributeType = _a.parentAttributeType, attrTypes = _a.attrTypes, entity = _a.entity, parentUri = _a.parentUri, showEmptyEditors = _a.showEmptyEditors, mode = _a.mode, crosswalks = _a.crosswalks, drawLines = _a.drawLines, children = _a.children, className = _a.className, _b = _a.alwaysVisibleTypeUris, alwaysVisibleTypeUris = _b === void 0 ? ALWAYS_VISIBLE_TYPE_URIS : _b, onAddAttributes = _a.onAddAttributes, onChangeAttribute = _a.onChangeAttribute, onDeleteAttribute = _a.onDeleteAttribute, additionalControlsRenderer = _a.additionalControlsRenderer, showNonOv = _a.showNonOv, highlightAttribute = _a.highlightAttribute;
|
|
29
|
-
var _c = entity.attributes, attributes = _c === void 0 ? {} : _c;
|
|
30
|
-
var _d = useState({}), hasDeletionsMap = _d[0], setHasDeletionsMap = _d[1];
|
|
31
|
-
var setHasDeletions = useCallback(function (attrTypeUri, value) {
|
|
32
|
-
setHasDeletionsMap(function (prevMap) {
|
|
33
|
-
var _a;
|
|
34
|
-
return (__assign(__assign({}, prevMap), (_a = {}, _a[attrTypeUri] = value, _a)));
|
|
35
|
-
});
|
|
36
|
-
}, []);
|
|
37
|
-
useEffect(function () {
|
|
38
|
-
setHasDeletionsMap({});
|
|
39
|
-
}, [parentUri]);
|
|
40
|
-
var canCreate = useContext(ConfigPermissionsContext).canCreate;
|
|
41
|
-
var canCreateParentAttrType = useMemo(function () { return canCreate && parentAttributeType && checkCanCreateAttribute({ attributeType: parentAttributeType, mode: mode }); }, [parentAttributeType, mode, canCreate]);
|
|
42
|
-
var creatableAttrTypes = useMemo(function () { return (canCreate ? getCreatableAttributeTypes(mode, attrTypes) : []); }, [attrTypes, mode, canCreate]);
|
|
43
|
-
var moreAttrTypes = getMoreAttrTypes(creatableAttrTypes, entity, showEmptyEditors, hasDeletionsMap);
|
|
44
|
-
var pinnedAttributes = useContext(PinnedAttributesContext);
|
|
45
|
-
var pagersData = useMemo(function () {
|
|
46
|
-
return getAttributesListForEditMode(attrTypes, mode, entity, showEmptyEditors, showNonOv, pinnedAttributes, canCreate);
|
|
47
|
-
}, [attrTypes, mode, entity, showEmptyEditors, showNonOv, pinnedAttributes, canCreate]);
|
|
48
|
-
var _e = useMemo(function () { return splitPagersData(alwaysVisibleTypeUris, pagersData); }, [pagersData, alwaysVisibleTypeUris]), alwaysVisiblePagersData = _e[0], regularPagersData = _e[1];
|
|
49
|
-
var onAddMoreAttributes = useCallback(function (attributeTypes) {
|
|
50
|
-
onAddAttributes(attributeTypes.map(function (attributeType) { return ({
|
|
51
|
-
attributeType: attributeType,
|
|
52
|
-
parentUri: attributeType === parentAttributeType ? getParentUri(parentUri) : parentUri
|
|
53
|
-
}); }));
|
|
54
|
-
highlightAttribute(last(attributeTypes), ScrollType.NewAttribute);
|
|
55
|
-
}, [onAddAttributes, parentUri, parentAttributeType]);
|
|
56
|
-
var decoratorProps = {
|
|
57
|
-
enabled: drawLines
|
|
58
|
-
};
|
|
59
|
-
var hasDeletionsContextValue = useMemo(function () { return ({
|
|
60
|
-
hasDeletionsMap: hasDeletionsMap,
|
|
61
|
-
setHasDeletions: setHasDeletions
|
|
62
|
-
}); }, [hasDeletionsMap, setHasDeletions]);
|
|
63
|
-
return (React.createElement("div", { className: className },
|
|
64
|
-
children && React.createElement(BranchDecorator, __assign({}, decoratorProps), children),
|
|
65
|
-
React.createElement(BranchDecorator, __assign({}, decoratorProps, { plain: true }), moreAttrTypes.length > 0 && (React.createElement(MoreAttributesButton, { label: i18n.text('More attributes'), onApply: onAddMoreAttributes, dense: drawLines, data: moreAttrTypes, parent: canCreateParentAttrType && parentAttributeType }))),
|
|
66
|
-
React.createElement(HasDeletionsContext.Provider, { value: hasDeletionsContextValue }, regularPagersData.concat(alwaysVisiblePagersData).map(function (_a) {
|
|
67
|
-
var attrType = _a.attrType, values = _a.values;
|
|
68
|
-
return (React.createElement(AttributesPager, { key: "".concat(attrType.uri, "_").concat(parentUri), attributeType: attrType, drawLines: drawLines, values: values, paging: path(['paging', attrType.uri], attributes), parentUri: parentUri, showEmptyEditors: showEmptyEditors, mode: mode, crosswalks: crosswalks, onAddAttributes: onAddAttributes, onChangeAttribute: onChangeAttribute, onDeleteAttribute: onDeleteAttribute, additionalControlsRenderer: additionalControlsRenderer, showNonOv: showNonOv }));
|
|
69
|
-
}))));
|
|
70
|
-
};
|
|
71
|
-
AttributesList.propTypes = {
|
|
72
|
-
parentAttributeType: PropTypes.object,
|
|
73
|
-
attrTypes: PropTypes.array,
|
|
74
|
-
entity: PropTypes.object,
|
|
75
|
-
parentUri: PropTypes.string,
|
|
76
|
-
children: PropTypes.node,
|
|
77
|
-
showEmptyEditors: PropTypes.bool,
|
|
78
|
-
mode: ModeType,
|
|
79
|
-
crosswalks: PropTypes.array,
|
|
80
|
-
drawLines: PropTypes.bool,
|
|
81
|
-
showNonOv: PropTypes.bool,
|
|
82
|
-
className: PropTypes.string,
|
|
83
|
-
alwaysVisibleTypeUris: PropTypes.array,
|
|
84
|
-
onAddAttributes: PropTypes.func,
|
|
85
|
-
onChangeAttribute: PropTypes.func,
|
|
86
|
-
onDeleteAttribute: PropTypes.func,
|
|
87
|
-
additionalControlsRenderer: PropTypes.func,
|
|
88
|
-
highlightAttribute: PropTypes.func
|
|
89
|
-
};
|
|
90
|
-
export default withContext(ScrollToElementContext, function (contextValue) {
|
|
91
|
-
var highlightAttribute = (contextValue || {}).highlightAttribute;
|
|
92
|
-
return { highlightAttribute: highlightAttribute };
|
|
93
|
-
}, AttributesList);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from "./AttributesList";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from './AttributesList';
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { AttributeValue, NestedAttributeValue, ReferenceAttributeValue, SimpleAttributeValue, AttributeError, RequestNextPageOfAttributeValuesPayload } from '@reltio/mdm-sdk';
|
|
3
|
-
import { AttributePagerProps } from './types';
|
|
4
|
-
type Props = Omit<AttributePagerProps, 'values'> & {
|
|
5
|
-
values?: (SimpleAttributeValue | NestedAttributeValue | ReferenceAttributeValue)[];
|
|
6
|
-
nonVisibleValues: AttributeValue[];
|
|
7
|
-
errorMessage?: string;
|
|
8
|
-
errors?: AttributeError[];
|
|
9
|
-
max?: number;
|
|
10
|
-
onDeactivateError?: (id: string) => void;
|
|
11
|
-
requestNextPageOfAttributeValues?: (payload: RequestNextPageOfAttributeValuesPayload) => void;
|
|
12
|
-
};
|
|
13
|
-
declare const _default: React.MemoExoticComponent<{
|
|
14
|
-
({ max, values, attributeType, parentUri, mode, drawLines, showEmptyEditors, errorMessage, errors, paging, crosswalks, showNonOv, nonVisibleValues, highlightedError, highlightedAttribute, onAddAttributes, onDeleteAttribute, onChangeAttribute, onDeactivateError, additionalControlsRenderer, requestNextPageOfAttributeValues }: Props): JSX.Element;
|
|
15
|
-
displayName: string;
|
|
16
|
-
}>;
|
|
17
|
-
export default _default;
|
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
import React, { useCallback, useRef, useState, useContext, useMemo, memo } from 'react';
|
|
2
|
-
import classNames from 'classnames';
|
|
3
|
-
import { createNewAttribute, getAttributeOwnError, isComplexAttribute, isEditableMode as checkIsEditableMode, isEmptyValue } from '@reltio/mdm-sdk';
|
|
4
|
-
import { add, always, has, ifElse, min, pipe, prop, T, omit } from 'ramda';
|
|
5
|
-
import BranchDecorator from '../../BranchDecorator/BranchDecorator';
|
|
6
|
-
import ErrorMessage from '../../../ErrorWrapper/ErrorMessage';
|
|
7
|
-
import Title from '../../../Title/Title';
|
|
8
|
-
import OvIcon from '../../OvIcon';
|
|
9
|
-
import ShowLess from '../../pagersCommon/ShowLess';
|
|
10
|
-
import ShowMore from '../../pagersCommon/ShowMore';
|
|
11
|
-
import Attribute from '../AttributesFactory/Attribute';
|
|
12
|
-
import Cardinality from './CardinalityMessage';
|
|
13
|
-
import { filterNewValues } from './utils';
|
|
14
|
-
import { PinnedAttributesContext } from '../contexts/PinnedAttributesContext';
|
|
15
|
-
import { useScrollToAttributeError } from '../../../../hooks';
|
|
16
|
-
import DescriptionIcon from '../../DescriptionIcon/DescriptionIcon';
|
|
17
|
-
import { useScrollToAttribute } from '../hooks/useScrollToAttribute/useScrollToAttribute';
|
|
18
|
-
import { useStyles } from './styles';
|
|
19
|
-
var AttributeRenderer = function (_a) {
|
|
20
|
-
var max = _a.max, values = _a.values, attributeType = _a.attributeType, parentUri = _a.parentUri, mode = _a.mode, drawLines = _a.drawLines, showEmptyEditors = _a.showEmptyEditors, errorMessage = _a.errorMessage, errors = _a.errors, paging = _a.paging, crosswalks = _a.crosswalks, showNonOv = _a.showNonOv, nonVisibleValues = _a.nonVisibleValues, highlightedError = _a.highlightedError, highlightedAttribute = _a.highlightedAttribute, onAddAttributes = _a.onAddAttributes, onDeleteAttribute = _a.onDeleteAttribute, onChangeAttribute = _a.onChangeAttribute, onDeactivateError = _a.onDeactivateError, additionalControlsRenderer = _a.additionalControlsRenderer, requestNextPageOfAttributeValues = _a.requestNextPageOfAttributeValues;
|
|
21
|
-
var styles = useStyles();
|
|
22
|
-
var _b = useState(max), visibleValuesCount = _b[0], setVisibleValuesCount = _b[1];
|
|
23
|
-
var _c = useState(false), hadDeletions = _c[0], setHadDeletions = _c[1];
|
|
24
|
-
var label = attributeType.label, isRequired = attributeType.required, cardinality = attributeType.cardinality, name = attributeType.name, attributeTypeUri = attributeType.uri, description = attributeType.description;
|
|
25
|
-
var isEditableMode = checkIsEditableMode(mode);
|
|
26
|
-
var _d = useScrollToAttributeError({ highlightedError: highlightedError }), errorRef = _d.ref, errorClassName = _d.errorClassName;
|
|
27
|
-
var _e = useScrollToAttribute(highlightedAttribute), attributeRef = _e.ref, highlightedClassName = _e.highlightedClassName;
|
|
28
|
-
var pinnedAttributes = useContext(PinnedAttributesContext);
|
|
29
|
-
var isPinned = useMemo(function () { return pinnedAttributes === null || pinnedAttributes === void 0 ? void 0 : pinnedAttributes.includes(attributeTypeUri); }, [attributeTypeUri, pinnedAttributes]);
|
|
30
|
-
var isEmptyValues = isEmptyValue(values);
|
|
31
|
-
var showEmpty = ((!hadDeletions && showEmptyEditors) || isRequired || isPinned) && isEmptyValues;
|
|
32
|
-
var emptyEditorValue = useRef(createNewAttribute({
|
|
33
|
-
parentUri: parentUri,
|
|
34
|
-
attributeType: omit(['defaultValue'], attributeType)
|
|
35
|
-
}));
|
|
36
|
-
var onAddOneMore = useCallback(function () {
|
|
37
|
-
setVisibleValuesCount(visibleValuesCount + 1);
|
|
38
|
-
var createAttribute = function (attributeType) { return ({
|
|
39
|
-
parentUri: parentUri,
|
|
40
|
-
index: visibleValuesCount,
|
|
41
|
-
attributeType: attributeType
|
|
42
|
-
}); };
|
|
43
|
-
if (showEmpty && !isComplexAttribute(attributeType.type)) {
|
|
44
|
-
var attributes = [createAttribute(omit(['defaultValue'], attributeType)), createAttribute(attributeType)];
|
|
45
|
-
return onAddAttributes(attributes);
|
|
46
|
-
}
|
|
47
|
-
return onAddAttributes([createAttribute(attributeType)]);
|
|
48
|
-
}, [visibleValuesCount, onAddAttributes, parentUri, attributeType, showEmpty]);
|
|
49
|
-
var onDelete = useCallback(pipe(onDeleteAttribute, T, setHadDeletions), [onDeleteAttribute, setHadDeletions]);
|
|
50
|
-
if (isEmptyValues && !showEmpty) {
|
|
51
|
-
return null;
|
|
52
|
-
}
|
|
53
|
-
if (showEmpty && isEmptyValues) {
|
|
54
|
-
values = [emptyEditorValue.current];
|
|
55
|
-
}
|
|
56
|
-
if (isEmptyValue(values)) {
|
|
57
|
-
return null;
|
|
58
|
-
}
|
|
59
|
-
var newValuesCount = (filterNewValues(values) || []).length;
|
|
60
|
-
var totalProp = showNonOv ? 'totalValues' : 'totalOvValues';
|
|
61
|
-
var totalVisibleValues = ifElse(has(totalProp), pipe(prop(totalProp), add(newValuesCount)), always(values.length))(paging);
|
|
62
|
-
var totalNonVisibleValues = (paging === null || paging === void 0 ? void 0 : paging.totalValues)
|
|
63
|
-
? paging.totalValues - totalVisibleValues
|
|
64
|
-
: nonVisibleValues === null || nonVisibleValues === void 0 ? void 0 : nonVisibleValues.length;
|
|
65
|
-
var hasPaging = max < totalVisibleValues;
|
|
66
|
-
var showMore = hasPaging && visibleValuesCount < totalVisibleValues;
|
|
67
|
-
var showLess = hasPaging && visibleValuesCount >= totalVisibleValues;
|
|
68
|
-
var onShowMore = function () {
|
|
69
|
-
if (values.length < totalVisibleValues) {
|
|
70
|
-
requestNextPageOfAttributeValues({
|
|
71
|
-
parentUri: parentUri,
|
|
72
|
-
attributeTypeUri: attributeTypeUri,
|
|
73
|
-
attributeTypeName: name,
|
|
74
|
-
values: values,
|
|
75
|
-
defaultMaxValues: max
|
|
76
|
-
});
|
|
77
|
-
}
|
|
78
|
-
setVisibleValuesCount(visibleValuesCount + max);
|
|
79
|
-
};
|
|
80
|
-
var onShowLess = function () {
|
|
81
|
-
setVisibleValuesCount(max);
|
|
82
|
-
};
|
|
83
|
-
var shownValues = values.slice(0, visibleValuesCount);
|
|
84
|
-
var lastIndex = shownValues ? shownValues.length - 1 : 0;
|
|
85
|
-
var hiddenValuesCount = totalVisibleValues - visibleValuesCount;
|
|
86
|
-
return (React.createElement(BranchDecorator, { enabled: drawLines },
|
|
87
|
-
React.createElement("div", { ref: errorRef, className: classNames(styles.wrapper, errorClassName) },
|
|
88
|
-
React.createElement("div", { className: styles.titleWrapper },
|
|
89
|
-
React.createElement(Title, { label: label, isRequired: isRequired, className: styles.title, "data-reltio-id": "reltio-attribute-label" }),
|
|
90
|
-
React.createElement(DescriptionIcon, { description: description }),
|
|
91
|
-
React.createElement(OvIcon, { nonOvValues: nonVisibleValues, attributeType: attributeType, className: styles.ovIcon, nonOvTotal: totalNonVisibleValues })),
|
|
92
|
-
isEditableMode && React.createElement(Cardinality, { cardinality: cardinality }),
|
|
93
|
-
isEditableMode && React.createElement(ErrorMessage, { message: errorMessage, className: styles.typeError }),
|
|
94
|
-
React.createElement("div", { className: styles.attributesWrapper },
|
|
95
|
-
shownValues.map(function (value, idx) { return (React.createElement(Attribute, { key: value.uri, attributeValue: value, attributeType: attributeType, lazy: showEmpty && !isRequired, showEmptyEditors: showEmptyEditors, errors: errors, ownError: getAttributeOwnError(value, idx, attributeType.uri, errors), mode: mode, crosswalks: crosswalks, onAddOneMore: lastIndex === idx ? onAddOneMore : null, onAddAttributes: onAddAttributes, onDeleteAttribute: onDelete, onChangeAttribute: onChangeAttribute, onDeactivateError: onDeactivateError, additionalControlsRenderer: additionalControlsRenderer, className: idx === 0 ? highlightedClassName : null, ref: idx === 0 ? attributeRef : null, isEmptyEditor: showEmpty })); }),
|
|
96
|
-
showMore && (React.createElement(ShowMore, { moreNumber: min(max, hiddenValuesCount), valueNumber: hiddenValuesCount, onClick: onShowMore })),
|
|
97
|
-
showLess && React.createElement(ShowLess, { onClick: onShowLess })))));
|
|
98
|
-
};
|
|
99
|
-
AttributeRenderer.displayName = 'AttributeRenderer';
|
|
100
|
-
export default memo(AttributeRenderer);
|
|
@@ -1,85 +0,0 @@
|
|
|
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 React from 'react';
|
|
13
|
-
import { getAttributeErrorByTypeUri, getAttributePagerActiveTypeErrorMessage, isAttributeTypeError, isImage, isOv, isSpecialAttribute, Mode } from '@reltio/mdm-sdk';
|
|
14
|
-
import { always, cond, T, partition } from 'ramda';
|
|
15
|
-
import BranchDecorator from '../../BranchDecorator/BranchDecorator';
|
|
16
|
-
import AttributeRenderer from './AttributeRenderer';
|
|
17
|
-
import SpecialRenderer from './SpecialRenderer';
|
|
18
|
-
import { ImageLineRenderer } from './ImageLineRenderer';
|
|
19
|
-
import { withContext } from '../../../../HOCs';
|
|
20
|
-
import { isHighlightedAttributeType, isHighlightedErrorType, ScrollToElementContext, useMdmAction, useMdmActiveErrorsForAttributesPager, useMdmMaxValuesInResponse, useMdmProfileErrors } from '../../../../contexts';
|
|
21
|
-
var RENDERER_TYPES;
|
|
22
|
-
(function (RENDERER_TYPES) {
|
|
23
|
-
RENDERER_TYPES["imageLine"] = "imageLine";
|
|
24
|
-
RENDERER_TYPES["special"] = "special";
|
|
25
|
-
RENDERER_TYPES["default"] = "default";
|
|
26
|
-
})(RENDERER_TYPES || (RENDERER_TYPES = {}));
|
|
27
|
-
var AttributesPager = function (_a) {
|
|
28
|
-
var _b;
|
|
29
|
-
var values = _a.values, attributeType = _a.attributeType, _c = _a.mode, mode = _c === void 0 ? Mode.Viewing : _c, crosswalks = _a.crosswalks, drawLines = _a.drawLines, _d = _a.paging, paging = _d === void 0 ? {} : _d, parentUri = _a.parentUri, maxProp = _a.max, showEmptyEditors = _a.showEmptyEditors, showNonOv = _a.showNonOv, highlightedError = _a.highlightedError, highlightedAttribute = _a.highlightedAttribute, onAddAttributes = _a.onAddAttributes, onDeleteAttribute = _a.onDeleteAttribute, onChangeAttribute = _a.onChangeAttribute, additionalControlsRenderer = _a.additionalControlsRenderer;
|
|
30
|
-
var onDeactivateError = useMdmAction('errorDeactivated');
|
|
31
|
-
var requestNextPageOfAttributeValues = useMdmAction('requestNextPageOfAttributeValues');
|
|
32
|
-
var activeErrors = useMdmActiveErrorsForAttributesPager(parentUri, attributeType);
|
|
33
|
-
var profileErrors = useMdmProfileErrors();
|
|
34
|
-
var maxValuesInResponse = useMdmMaxValuesInResponse();
|
|
35
|
-
var errorMessage = getAttributePagerActiveTypeErrorMessage(parentUri, attributeType, profileErrors);
|
|
36
|
-
var max = (_b = maxProp !== null && maxProp !== void 0 ? maxProp : maxValuesInResponse) !== null && _b !== void 0 ? _b : Infinity;
|
|
37
|
-
var partitionByOv = partition(isOv);
|
|
38
|
-
var _e = partitionByOv(values), ovValues = _e[0], nonOvValues = _e[1];
|
|
39
|
-
var visibleValues = showNonOv ? values : ovValues;
|
|
40
|
-
var nonVisibleValues = showNonOv ? [] : nonOvValues;
|
|
41
|
-
var commonProps = {
|
|
42
|
-
errorMessage: errorMessage,
|
|
43
|
-
errors: activeErrors,
|
|
44
|
-
mode: mode,
|
|
45
|
-
parentUri: parentUri,
|
|
46
|
-
onAddAttributes: onAddAttributes,
|
|
47
|
-
onDeleteAttribute: onDeleteAttribute,
|
|
48
|
-
onChangeAttribute: onChangeAttribute,
|
|
49
|
-
onDeactivateError: onDeactivateError,
|
|
50
|
-
additionalControlsRenderer: additionalControlsRenderer,
|
|
51
|
-
showEmptyEditors: showEmptyEditors,
|
|
52
|
-
highlightedError: highlightedError,
|
|
53
|
-
highlightedAttribute: highlightedAttribute
|
|
54
|
-
};
|
|
55
|
-
var renderAttribute = function () {
|
|
56
|
-
var type = cond([
|
|
57
|
-
[isSpecialAttribute, always(RENDERER_TYPES.special)],
|
|
58
|
-
[isImage, always(RENDERER_TYPES.imageLine)],
|
|
59
|
-
[T, always(RENDERER_TYPES.default)]
|
|
60
|
-
])(attributeType);
|
|
61
|
-
switch (type) {
|
|
62
|
-
case RENDERER_TYPES.special: {
|
|
63
|
-
return (React.createElement(BranchDecorator, { enabled: drawLines },
|
|
64
|
-
React.createElement(SpecialRenderer, __assign({ values: visibleValues, attributeType: attributeType }, commonProps))));
|
|
65
|
-
}
|
|
66
|
-
case RENDERER_TYPES.imageLine:
|
|
67
|
-
return (React.createElement(BranchDecorator, { enabled: drawLines },
|
|
68
|
-
React.createElement(ImageLineRenderer, { attributeValues: visibleValues, attributeType: attributeType, paging: paging, onDeleteAttribute: onDeleteAttribute, parentUri: parentUri, onChangeAttribute: onChangeAttribute, requestNextPageOfAttributeValues: requestNextPageOfAttributeValues, showNonOv: showNonOv, highlightedAttribute: highlightedAttribute, error: getAttributeErrorByTypeUri(attributeType.uri, activeErrors), highlightedError: highlightedError, onDeactivateError: onDeactivateError })));
|
|
69
|
-
default:
|
|
70
|
-
return (React.createElement(AttributeRenderer, __assign({ values: visibleValues, attributeType: attributeType, max: max, paging: paging, crosswalks: crosswalks, drawLines: drawLines, requestNextPageOfAttributeValues: requestNextPageOfAttributeValues, showNonOv: showNonOv, nonVisibleValues: nonVisibleValues }, commonProps)));
|
|
71
|
-
}
|
|
72
|
-
};
|
|
73
|
-
return renderAttribute();
|
|
74
|
-
};
|
|
75
|
-
export default withContext(ScrollToElementContext, function (contextValue, _a) {
|
|
76
|
-
var attributeType = _a.attributeType, parentUri = _a.parentUri;
|
|
77
|
-
var _b = contextValue || {}, element = _b.element, type = _b.type;
|
|
78
|
-
var isHighlightedAttribute = isHighlightedAttributeType(type) && element.uri === attributeType.uri;
|
|
79
|
-
var isHighlightedError = isHighlightedErrorType(type) &&
|
|
80
|
-
isAttributeTypeError(element, parentUri, attributeType.uri);
|
|
81
|
-
return {
|
|
82
|
-
highlightedAttribute: isHighlightedAttribute ? contextValue : null,
|
|
83
|
-
highlightedError: isHighlightedError ? contextValue : null
|
|
84
|
-
};
|
|
85
|
-
}, AttributesPager);
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import i18n from 'ui-i18n';
|
|
3
|
-
import Typography from '@mui/material/Typography';
|
|
4
|
-
import { allPass, always, cond, isNil, has, not, pipe, propSatisfies, T } from 'ramda';
|
|
5
|
-
import { useStyles } from './styles';
|
|
6
|
-
var valueCaption = function (value) {
|
|
7
|
-
return i18n.text('${value}', {
|
|
8
|
-
value: value === 1 ? i18n.text('value') : i18n.text('values')
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
var hasMinValue = has('minValue');
|
|
12
|
-
var hasMaxValue = has('maxValue');
|
|
13
|
-
var noMaxValue = pipe(hasMaxValue, not);
|
|
14
|
-
var minValueIsOne = propSatisfies(function (minValue) { return minValue === 1; }, 'minValue');
|
|
15
|
-
var exactCardinality = function (_a) {
|
|
16
|
-
var minValue = _a.minValue, maxValue = _a.maxValue;
|
|
17
|
-
return minValue && minValue === maxValue;
|
|
18
|
-
};
|
|
19
|
-
var generateMinCardinality = function (_a) {
|
|
20
|
-
var minValue = _a.minValue;
|
|
21
|
-
return i18n.text('This attribute can have minimum ${minValue} ${minValueCaption}', {
|
|
22
|
-
minValue: i18n.number(minValue, '0'),
|
|
23
|
-
minValueCaption: valueCaption(minValue)
|
|
24
|
-
});
|
|
25
|
-
};
|
|
26
|
-
var generateMaxCardinality = function (_a) {
|
|
27
|
-
var maxValue = _a.maxValue;
|
|
28
|
-
return i18n.text('This attribute can have maximum ${maxValue} ${maxValueCaption}', {
|
|
29
|
-
maxValue: i18n.number(maxValue, '0'),
|
|
30
|
-
maxValueCaption: valueCaption(maxValue)
|
|
31
|
-
});
|
|
32
|
-
};
|
|
33
|
-
var generateExactCardinality = function (_a) {
|
|
34
|
-
var minValue = _a.minValue;
|
|
35
|
-
return i18n.text('This attribute should have ${minValue} ${minValueCaption}', {
|
|
36
|
-
minValue: i18n.number(minValue, '0'),
|
|
37
|
-
minValueCaption: valueCaption(minValue)
|
|
38
|
-
});
|
|
39
|
-
};
|
|
40
|
-
var generateMinMaxCardinality = function (_a) {
|
|
41
|
-
var minValue = _a.minValue, maxValue = _a.maxValue;
|
|
42
|
-
return i18n.text('${minCardinality} and maximum ${maxValue} ${maxValueCaption}', {
|
|
43
|
-
minCardinality: generateMinCardinality({ minValue: minValue }),
|
|
44
|
-
maxValue: i18n.number(maxValue, '0'),
|
|
45
|
-
maxValueCaption: valueCaption(maxValue)
|
|
46
|
-
});
|
|
47
|
-
};
|
|
48
|
-
var getCardinalityMessage = cond([
|
|
49
|
-
[isNil, always('')],
|
|
50
|
-
[exactCardinality, generateExactCardinality],
|
|
51
|
-
[allPass([minValueIsOne, hasMaxValue]), generateMaxCardinality],
|
|
52
|
-
[allPass([minValueIsOne, noMaxValue]), always('')],
|
|
53
|
-
[allPass([hasMinValue, hasMaxValue]), generateMinMaxCardinality],
|
|
54
|
-
[hasMaxValue, generateMaxCardinality],
|
|
55
|
-
[hasMinValue, generateMinCardinality],
|
|
56
|
-
[T, always('')]
|
|
57
|
-
]);
|
|
58
|
-
var CardinalityMessage = function (_a) {
|
|
59
|
-
var cardinality = _a.cardinality;
|
|
60
|
-
var styles = useStyles();
|
|
61
|
-
var cardinalityMessage = getCardinalityMessage(cardinality);
|
|
62
|
-
return cardinalityMessage ? (React.createElement(Typography, { variant: "caption", className: styles.caption }, cardinalityMessage)) : null;
|
|
63
|
-
};
|
|
64
|
-
export default CardinalityMessage;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { AttributeError, AttributeItem, AttributeType, ImageAttributeValue, Paging, RequestNextPageOfAttributeValuesPayload } from '@reltio/mdm-sdk';
|
|
3
|
-
import { ScrollToElementContext } from '../../../../contexts';
|
|
4
|
-
type Props = {
|
|
5
|
-
attributeType: AttributeType;
|
|
6
|
-
attributeValues: ImageAttributeValue[];
|
|
7
|
-
paging?: Paging;
|
|
8
|
-
parentUri?: string;
|
|
9
|
-
showNonOv?: boolean;
|
|
10
|
-
onDeleteAttribute: (param: AttributeItem) => void;
|
|
11
|
-
onChangeAttribute: (param: AttributeItem) => void;
|
|
12
|
-
requestNextPageOfAttributeValues?: (payload: RequestNextPageOfAttributeValuesPayload) => void;
|
|
13
|
-
highlightedAttribute?: React.ContextType<typeof ScrollToElementContext>;
|
|
14
|
-
error?: AttributeError;
|
|
15
|
-
highlightedError?: React.ContextType<typeof ScrollToElementContext>;
|
|
16
|
-
onDeactivateError?: (id: string) => void;
|
|
17
|
-
};
|
|
18
|
-
export declare const ImageLineRenderer: ({ attributeType, attributeValues, paging, parentUri, showNonOv, onDeleteAttribute, onChangeAttribute, requestNextPageOfAttributeValues, highlightedAttribute, error, highlightedError, onDeactivateError }: Props) => JSX.Element;
|
|
19
|
-
export {};
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import React, { useCallback } from 'react';
|
|
2
|
-
import classnames from 'classnames';
|
|
3
|
-
import { pipe } from 'ramda';
|
|
4
|
-
import { getErrorId } from '@reltio/mdm-sdk';
|
|
5
|
-
import Title from '../../../Title/Title';
|
|
6
|
-
import DescriptionIcon from '../../DescriptionIcon';
|
|
7
|
-
import ImageAttributesLine from '../ImageAttributesLine';
|
|
8
|
-
import { useScrollToAttribute } from '../hooks/useScrollToAttribute/useScrollToAttribute';
|
|
9
|
-
import { useScrollToAttributeError } from '../../../../hooks';
|
|
10
|
-
import ErrorWrapper from '../../../ErrorWrapper/ErrorWrapper';
|
|
11
|
-
import { useStyles } from './styles';
|
|
12
|
-
export var ImageLineRenderer = function (_a) {
|
|
13
|
-
var attributeType = _a.attributeType, attributeValues = _a.attributeValues, paging = _a.paging, parentUri = _a.parentUri, showNonOv = _a.showNonOv, onDeleteAttribute = _a.onDeleteAttribute, onChangeAttribute = _a.onChangeAttribute, requestNextPageOfAttributeValues = _a.requestNextPageOfAttributeValues, highlightedAttribute = _a.highlightedAttribute, error = _a.error, highlightedError = _a.highlightedError, onDeactivateError = _a.onDeactivateError;
|
|
14
|
-
var styles = useStyles();
|
|
15
|
-
var label = attributeType.label, description = attributeType.description, isRequired = attributeType.required;
|
|
16
|
-
var _b = useScrollToAttribute(highlightedAttribute), highlightedRef = _b.ref, highlightedClassName = _b.highlightedClassName;
|
|
17
|
-
var _c = useScrollToAttributeError({ highlightedError: highlightedError }), errorRef = _c.ref, errorClassName = _c.errorClassName;
|
|
18
|
-
var deactivateError = useCallback(function () {
|
|
19
|
-
if (error && !!onDeactivateError) {
|
|
20
|
-
onDeactivateError(getErrorId(error));
|
|
21
|
-
}
|
|
22
|
-
}, [error, onDeactivateError]);
|
|
23
|
-
return (React.createElement("div", { ref: highlightedRef, className: classnames(styles.wrapper, highlightedClassName) },
|
|
24
|
-
React.createElement("div", { ref: errorRef, className: classnames(styles.imagesWrapper, errorClassName) },
|
|
25
|
-
React.createElement("div", { className: styles.titleWrapper },
|
|
26
|
-
React.createElement(Title, { className: styles.title, label: label, "data-reltio-id": "reltio-attribute-label", isRequired: isRequired }),
|
|
27
|
-
React.createElement(DescriptionIcon, { description: description })),
|
|
28
|
-
React.createElement(ErrorWrapper, { errorMessage: error === null || error === void 0 ? void 0 : error.message, className: styles.errorWrapper },
|
|
29
|
-
React.createElement(ImageAttributesLine, { attributeValues: attributeValues, attributeType: attributeType, paging: paging, onDeleteAttribute: onDeleteAttribute, parentUri: parentUri, onChangeAttribute: pipe(onChangeAttribute, deactivateError), requestNextPageOfAttributeValues: requestNextPageOfAttributeValues, showNonOv: showNonOv })))));
|
|
30
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { AttributeType, Mode, AttributeItem } from '@reltio/mdm-sdk';
|
|
3
|
-
import { ScrollToElementContext } from '../../../../contexts';
|
|
4
|
-
type Props = {
|
|
5
|
-
values: string[] | number[];
|
|
6
|
-
attributeType: AttributeType;
|
|
7
|
-
parentUri: string;
|
|
8
|
-
mode: Mode;
|
|
9
|
-
errorMessage?: string;
|
|
10
|
-
onDeleteAttribute: (param: AttributeItem) => void;
|
|
11
|
-
onChangeAttribute: (param: AttributeItem) => void;
|
|
12
|
-
showEmptyEditors?: boolean;
|
|
13
|
-
hasDeletions?: boolean;
|
|
14
|
-
setHasDeletions?: (attrTypeUri: string, value: boolean) => void;
|
|
15
|
-
highlightedAttribute?: React.ContextType<typeof ScrollToElementContext>;
|
|
16
|
-
};
|
|
17
|
-
export declare const SpecialRenderer: ({ values, attributeType, parentUri, mode, errorMessage, onDeleteAttribute, onChangeAttribute, showEmptyEditors, hasDeletions: hasDeletionsProp, setHasDeletions, highlightedAttribute, ...otherProps }: Props) => JSX.Element;
|
|
18
|
-
declare const _default: React.ComponentType<Props>;
|
|
19
|
-
export default _default;
|