@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,70 +0,0 @@
|
|
|
1
|
-
import React, { memo, useCallback, useMemo, useRef, useState } from 'react';
|
|
2
|
-
import i18n from 'ui-i18n';
|
|
3
|
-
import classnames from 'classnames';
|
|
4
|
-
import { identity, pipe, tap, prop, flatten, pick, map, chain, when, always } from 'ramda';
|
|
5
|
-
import SelectionPopup from '../SelectionPopup/SelectionPopup';
|
|
6
|
-
import { useKeyboardNavigation } from '../SelectionPopup/helpers';
|
|
7
|
-
import AttributeTitle from './AttributeTitle/AttributeTitle';
|
|
8
|
-
import { filterSelectedAttributes, getAttributeIndex, getContainerWidth, getOnEnterHandler, prepareGroupsForSelectAttributeList } from './helpers';
|
|
9
|
-
import SelectAttributesList from '../SelectAttributesList/SelectAttributesList';
|
|
10
|
-
import { flattenGroupedItemsData } from '../VirtualGroupedList/helpers';
|
|
11
|
-
import useStyles from './styles';
|
|
12
|
-
var ATTRIBUTES_LIST_HEIGHT = 400;
|
|
13
|
-
var ATTRIBUTES_LIST_WIDTH = 308;
|
|
14
|
-
var ATTRIBUTES_POPUP_HEIGHT = 507;
|
|
15
|
-
var BasicAttributeSelector = function (_a) {
|
|
16
|
-
var className = _a.className, itemsGroups = _a.itemsGroups, value = _a.value, getLabel = _a.getLabel, onSelect = _a.onSelect, _b = _a.onRestoreFocus, onRestoreFocus = _b === void 0 ? identity : _b, _c = _a.onOpenPopup, onOpenPopup = _c === void 0 ? identity : _c, _d = _a.disableRestoreFocus, disableRestoreFocus = _d === void 0 ? false : _d, _e = _a.disableEnforceFocus, disableEnforceFocus = _e === void 0 ? false : _e, _f = _a.single, single = _f === void 0 ? false : _f, _g = _a.ungroup, ungroup = _g === void 0 ? false : _g, _h = _a.disabled, disabled = _h === void 0 ? false : _h, _j = _a.hideCheckBox, hideCheckBox = _j === void 0 ? false : _j;
|
|
17
|
-
var styles = useStyles();
|
|
18
|
-
var _k = useState(null), selectAnchor = _k[0], setSelectAnchor = _k[1];
|
|
19
|
-
var openPopup = function (event) {
|
|
20
|
-
onOpenPopup();
|
|
21
|
-
setSelectAnchor(event.currentTarget);
|
|
22
|
-
};
|
|
23
|
-
var closePopup = useCallback(function () { return setSelectAnchor(null); }, []);
|
|
24
|
-
var isPopupOpen = !!selectAnchor;
|
|
25
|
-
var _l = useState(''), filterText = _l[0], setFilterText = _l[1];
|
|
26
|
-
var clearFilterText = useCallback(function () { return setFilterText(''); }, []);
|
|
27
|
-
var _m = useState([]), selectedAttributes = _m[0], setSelectedAttributes = _m[1];
|
|
28
|
-
var clearSelectedAttributes = useCallback(function () { return setSelectedAttributes([]); }, []);
|
|
29
|
-
var filteredItemsGroups = useMemo(function () { return prepareGroupsForSelectAttributeList(filterText, itemsGroups); }, [itemsGroups, filterText]);
|
|
30
|
-
var items = useMemo(function () {
|
|
31
|
-
return pipe(when(always(ungroup), chain(pipe(prop('items'), flatten, map(pick(['item', 'level']))))), flattenGroupedItemsData)(filteredItemsGroups);
|
|
32
|
-
}, [ungroup, filteredItemsGroups]);
|
|
33
|
-
var containerWidth = useMemo(function () { return Math.max(getContainerWidth(filteredItemsGroups), ATTRIBUTES_LIST_WIDTH); }, [filteredItemsGroups]);
|
|
34
|
-
var handleOnClose = pipe(tap(pipe(clearSelectedAttributes, clearFilterText, closePopup)), onRestoreFocus);
|
|
35
|
-
var searchInputRef = useRef();
|
|
36
|
-
var onListItemClick = useCallback(function (attribute, checked) {
|
|
37
|
-
onSelect({
|
|
38
|
-
checked: checked,
|
|
39
|
-
attribute: attribute,
|
|
40
|
-
index: checked ? selectedAttributes.length : getAttributeIndex(selectedAttributes, attribute),
|
|
41
|
-
selectedAttributes: selectedAttributes
|
|
42
|
-
});
|
|
43
|
-
if (single) {
|
|
44
|
-
setSelectedAttributes(checked ? [attribute] : []);
|
|
45
|
-
handleOnClose({});
|
|
46
|
-
}
|
|
47
|
-
else {
|
|
48
|
-
setSelectedAttributes(filterSelectedAttributes({ selectedAttributes: selectedAttributes, attribute: attribute, checked: checked }));
|
|
49
|
-
if (searchInputRef.current) {
|
|
50
|
-
searchInputRef.current.focus();
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
}, [selectedAttributes, onSelect, single, handleOnClose, searchInputRef]);
|
|
54
|
-
var handleSearchOnEnter = useCallback(getOnEnterHandler({ onListItemClick: onListItemClick, selectedAttributes: selectedAttributes }), [
|
|
55
|
-
onListItemClick,
|
|
56
|
-
selectedAttributes
|
|
57
|
-
]);
|
|
58
|
-
var _o = useKeyboardNavigation({
|
|
59
|
-
items: items,
|
|
60
|
-
open: isPopupOpen,
|
|
61
|
-
onSelectFocusedItem: handleSearchOnEnter,
|
|
62
|
-
selectedItems: selectedAttributes,
|
|
63
|
-
onClose: handleOnClose
|
|
64
|
-
}), focusIndex = _o.focusIndex, handleKeyDown = _o.handleKeyDown;
|
|
65
|
-
return (React.createElement("div", { className: classnames(styles.selector, className), "data-reltio-id": "attribute-selector" },
|
|
66
|
-
React.createElement(AttributeTitle, { value: value, getLabel: getLabel, onSelectAttributeClick: openPopup, disabled: disabled }),
|
|
67
|
-
React.createElement(SelectionPopup, { open: isPopupOpen, anchorEl: selectAnchor, onClose: handleOnClose, onSearch: setFilterText, title: i18n.text('Select attribute'), containerWidth: containerWidth, containerHeight: ATTRIBUTES_POPUP_HEIGHT, searchInputOnKeyDown: handleKeyDown, anchorOrigin: { horizontal: 'right', vertical: 'bottom' }, searchInputRef: searchInputRef, disableRestoreFocus: disableRestoreFocus, disableEnforceFocus: disableEnforceFocus },
|
|
68
|
-
React.createElement(SelectAttributesList, { items: items, onItemClick: onListItemClick, selectedAttributes: selectedAttributes, width: containerWidth, height: ATTRIBUTES_LIST_HEIGHT, focusIndex: focusIndex, hideCheckBox: hideCheckBox }))));
|
|
69
|
-
};
|
|
70
|
-
export default memo(BasicAttributeSelector);
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { AttributeSelectorItem, AttributeSelectorItemsGroup } from '../../types';
|
|
2
|
-
export declare const isEqualAttributes: any;
|
|
3
|
-
export declare const checkAttributeIncludes: (attribute: AttributeSelectorItem, selectedAttributes: AttributeSelectorItem[]) => boolean;
|
|
4
|
-
export declare const filterItemsTree: (item: AttributeSelectorItem, filterText: string) => boolean;
|
|
5
|
-
export declare const filterSelectedAttributes: ({ attribute, selectedAttributes, checked }: {
|
|
6
|
-
attribute: AttributeSelectorItem;
|
|
7
|
-
selectedAttributes: AttributeSelectorItem[];
|
|
8
|
-
checked: boolean;
|
|
9
|
-
}) => AttributeSelectorItem[];
|
|
10
|
-
export declare const getAttributeIndex: (selectedAttributes: AttributeSelectorItem[], attribute: AttributeSelectorItem) => number;
|
|
11
|
-
export declare const getContainerWidth: (items: any) => any;
|
|
12
|
-
export declare const getOnEnterHandler: ({ onListItemClick, selectedAttributes }: {
|
|
13
|
-
selectedAttributes: AttributeSelectorItem[];
|
|
14
|
-
onListItemClick: (attribute: AttributeSelectorItem, checked: boolean) => void;
|
|
15
|
-
}) => ({ item, groupData }: {
|
|
16
|
-
item: any;
|
|
17
|
-
groupData: any;
|
|
18
|
-
}) => void;
|
|
19
|
-
export declare const prepareGroupsForSelectAttributeList: (filterText: string, groups: AttributeSelectorItemsGroup[]) => {
|
|
20
|
-
item: AttributeSelectorItemsGroup[];
|
|
21
|
-
items: AttributeSelectorItem[];
|
|
22
|
-
};
|
|
@@ -1,72 +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 { eqBy, pick, curry } from 'ramda';
|
|
13
|
-
import { getMaxItemWidth } from '@reltio/mdm-sdk';
|
|
14
|
-
export var isEqualAttributes = eqBy(pick(['fieldName', 'uri', 'entityTypeUri']));
|
|
15
|
-
export var checkAttributeIncludes = function (attribute, selectedAttributes) {
|
|
16
|
-
return selectedAttributes && !!selectedAttributes.find(isEqualAttributes(attribute));
|
|
17
|
-
};
|
|
18
|
-
var filterItem = function (item, filterText) {
|
|
19
|
-
return item.title.toLowerCase().includes(filterText.toLowerCase());
|
|
20
|
-
};
|
|
21
|
-
export var filterItemsTree = function (item, filterText) {
|
|
22
|
-
return filterItem(item, filterText) || (item.children || []).some(function (item) { return filterItemsTree(item, filterText); });
|
|
23
|
-
};
|
|
24
|
-
export var filterSelectedAttributes = function (_a) {
|
|
25
|
-
var attribute = _a.attribute, selectedAttributes = _a.selectedAttributes, checked = _a.checked;
|
|
26
|
-
return checked
|
|
27
|
-
? selectedAttributes.concat(attribute)
|
|
28
|
-
: selectedAttributes.filter(function (selectedAttribute) { return !isEqualAttributes(attribute, selectedAttribute); });
|
|
29
|
-
};
|
|
30
|
-
export var getAttributeIndex = function (selectedAttributes, attribute) {
|
|
31
|
-
return selectedAttributes.findIndex(isEqualAttributes(attribute));
|
|
32
|
-
};
|
|
33
|
-
export var getContainerWidth = getMaxItemWidth('title');
|
|
34
|
-
export var getOnEnterHandler = function (_a) {
|
|
35
|
-
var onListItemClick = _a.onListItemClick, selectedAttributes = _a.selectedAttributes;
|
|
36
|
-
return function (_a) {
|
|
37
|
-
var item = _a.item, groupData = _a.groupData;
|
|
38
|
-
var checked = checkAttributeIncludes(item, selectedAttributes);
|
|
39
|
-
onListItemClick(__assign(__assign({}, item), { groupName: groupData.groupName }), !checked);
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
var getAttributeGroupData = function (item, groupId, groupName, filterText, level, noFilter) {
|
|
43
|
-
if (level === void 0) { level = 0; }
|
|
44
|
-
if (noFilter === void 0) { noFilter = false; }
|
|
45
|
-
var isItemFiltered = filterItem(item, filterText);
|
|
46
|
-
return [
|
|
47
|
-
{
|
|
48
|
-
item: filterText ? __assign(__assign({}, item), { filterText: filterText }) : item,
|
|
49
|
-
level: level,
|
|
50
|
-
groupId: groupId,
|
|
51
|
-
groupName: groupName
|
|
52
|
-
}
|
|
53
|
-
]
|
|
54
|
-
.concat(item.children
|
|
55
|
-
? item.children
|
|
56
|
-
.filter(function (subItem) { return noFilter || isItemFiltered || filterItemsTree(subItem, filterText); })
|
|
57
|
-
.flatMap(function (subItem) {
|
|
58
|
-
return getAttributeGroupData(subItem, groupId, groupName, filterText, level + 1, noFilter || isItemFiltered);
|
|
59
|
-
})
|
|
60
|
-
: [])
|
|
61
|
-
.flat();
|
|
62
|
-
};
|
|
63
|
-
export var prepareGroupsForSelectAttributeList = curry(function (filterText, groups) {
|
|
64
|
-
return groups
|
|
65
|
-
.map(function (group) { return ({
|
|
66
|
-
item: group,
|
|
67
|
-
items: group.attributes
|
|
68
|
-
.filter(function (attribute) { return filterItemsTree(attribute, filterText); })
|
|
69
|
-
.map(function (item) { return getAttributeGroupData(item, group.id, group.title, filterText); })
|
|
70
|
-
}); })
|
|
71
|
-
.filter(function (group) { return group.items.length; });
|
|
72
|
-
});
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from '@mui/styles';
|
|
2
|
-
var useStyles = makeStyles({
|
|
3
|
-
selector: {
|
|
4
|
-
minWidth: '200px',
|
|
5
|
-
width: '100%',
|
|
6
|
-
alignItems: 'stretch',
|
|
7
|
-
background: 'rgba(0,0,0, 0.0267)',
|
|
8
|
-
boxSizing: 'border-box',
|
|
9
|
-
borderRadius: '4px',
|
|
10
|
-
display: 'flex'
|
|
11
|
-
}
|
|
12
|
-
});
|
|
13
|
-
export default useStyles;
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
export namespace BasicTableType {
|
|
2
|
-
export let columnsData: PropTypes.Validator<PropTypes.InferProps<{
|
|
3
|
-
id: PropTypes.Requireable<string>;
|
|
4
|
-
label: PropTypes.Requireable<string>;
|
|
5
|
-
dataTypeDefinition: PropTypes.Requireable<object>;
|
|
6
|
-
resizable: PropTypes.Requireable<boolean>;
|
|
7
|
-
sortable: PropTypes.Requireable<boolean>;
|
|
8
|
-
filterable: PropTypes.Requireable<boolean>;
|
|
9
|
-
headCellRenderer: PropTypes.Requireable<(...args: any[]) => any>;
|
|
10
|
-
rowCellValueRenderer: PropTypes.Requireable<(...args: any[]) => any>;
|
|
11
|
-
nestedPath: PropTypes.Requireable<string[]>;
|
|
12
|
-
}>[]>;
|
|
13
|
-
export let rowsData: PropTypes.Validator<object[]>;
|
|
14
|
-
export let context: PropTypes.Requireable<object>;
|
|
15
|
-
export { SortingType as sorting };
|
|
16
|
-
export let onSort: PropTypes.Requireable<(...args: any[]) => any>;
|
|
17
|
-
export let filters: PropTypes.Requireable<{
|
|
18
|
-
[x: string]: PropTypes.InferProps<{
|
|
19
|
-
value: PropTypes.Requireable<NonNullable<NonNullable<NonNullable<string | number | boolean | PropTypes.InferProps<{
|
|
20
|
-
value: PropTypes.Requireable<string>;
|
|
21
|
-
lookupCode: PropTypes.Requireable<string>;
|
|
22
|
-
}>> | NonNullable<string | number | boolean | PropTypes.InferProps<{
|
|
23
|
-
value: PropTypes.Requireable<string>;
|
|
24
|
-
lookupCode: PropTypes.Requireable<string>;
|
|
25
|
-
}>>[]> | NonNullable<NonNullable<string | number | boolean | PropTypes.InferProps<{
|
|
26
|
-
value: PropTypes.Requireable<string>;
|
|
27
|
-
lookupCode: PropTypes.Requireable<string>;
|
|
28
|
-
}>> | NonNullable<string | number | boolean | PropTypes.InferProps<{
|
|
29
|
-
value: PropTypes.Requireable<string>;
|
|
30
|
-
lookupCode: PropTypes.Requireable<string>;
|
|
31
|
-
}>>[]>[]>>;
|
|
32
|
-
filter: PropTypes.Requireable<string>;
|
|
33
|
-
}>;
|
|
34
|
-
}>;
|
|
35
|
-
export let onFilter: PropTypes.Requireable<(...args: any[]) => any>;
|
|
36
|
-
export let renderRowCell: PropTypes.Requireable<(...args: any[]) => any>;
|
|
37
|
-
export let getRowCellHeight: PropTypes.Requireable<(...args: any[]) => any>;
|
|
38
|
-
export let headRowHeight: PropTypes.Requireable<number>;
|
|
39
|
-
export let maxRowValuesCount: PropTypes.Requireable<number>;
|
|
40
|
-
export let defaultColumnWidth: PropTypes.Requireable<number>;
|
|
41
|
-
export let defaultColumnMinWidth: PropTypes.Requireable<number>;
|
|
42
|
-
export let classes: PropTypes.Requireable<PropTypes.InferProps<{
|
|
43
|
-
highlightRow: PropTypes.Requireable<string>;
|
|
44
|
-
cellBorder: PropTypes.Requireable<string>;
|
|
45
|
-
dragColumnBody: PropTypes.Requireable<string>;
|
|
46
|
-
dragColumnHead: PropTypes.Requireable<string>;
|
|
47
|
-
draggableHeadCell: PropTypes.Requireable<string>;
|
|
48
|
-
cellWrapper: PropTypes.Requireable<string>;
|
|
49
|
-
cellContentWrapper: PropTypes.Requireable<string>;
|
|
50
|
-
hoveredRowRightContentContainer: PropTypes.Requireable<string>;
|
|
51
|
-
hoveredRowRightContentWrapper: PropTypes.Requireable<string>;
|
|
52
|
-
}>>;
|
|
53
|
-
}
|
|
54
|
-
export default BasicTable;
|
|
55
|
-
import PropTypes from 'prop-types';
|
|
56
|
-
import { SortingType } from '../../../constants/prop-types';
|
|
57
|
-
declare const BasicTable: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
58
|
-
import React from 'react';
|
|
@@ -1,91 +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, { useMemo, forwardRef, useCallback } from 'react';
|
|
24
|
-
import PropTypes from 'prop-types';
|
|
25
|
-
import Table from 'react-components/dist/Table/Table';
|
|
26
|
-
import defaultGetRowCellHeight from './helpers/defaultGetRowCellHeight';
|
|
27
|
-
import defaultRenderRowCell from './helpers/defaultRenderRowCell';
|
|
28
|
-
import { COLUMN_FILTER_HEIGHT } from '../ColumnFilter/styles';
|
|
29
|
-
import { ColumnDataType, ColumnFilterType, SortingType } from '../../../constants/prop-types';
|
|
30
|
-
import { getTableHeadData } from './helpers/dataHelpers';
|
|
31
|
-
import { TableContext } from './contexts/TableContext';
|
|
32
|
-
import { RowCollapseContext } from './contexts/RowCollapseContext';
|
|
33
|
-
import { prop } from 'ramda';
|
|
34
|
-
import useCollapsibleTableRows from './hooks/useCollapsibleTableRows';
|
|
35
|
-
var BasicTable = forwardRef(function (_a, ref) {
|
|
36
|
-
var columnsData = _a.columnsData, rowsData = _a.rowsData, context = _a.context, sorting = _a.sorting, onSort = _a.onSort, _b = _a.renderRowCell, renderRowCell = _b === void 0 ? defaultRenderRowCell : _b, _c = _a.getRowCellHeight, getRowCellHeight = _c === void 0 ? defaultGetRowCellHeight : _c, filters = _a.filters, onFilter = _a.onFilter, headRowHeight = _a.headRowHeight, _d = _a.maxRowValuesCount, maxRowValuesCount = _d === void 0 ? Infinity : _d, autosizing = _a.autosizing, maxHeight = _a.maxHeight, getIdFromRowValue = _a.getIdFromRowValue, otherProps = __rest(_a, ["columnsData", "rowsData", "context", "sorting", "onSort", "renderRowCell", "getRowCellHeight", "filters", "onFilter", "headRowHeight", "maxRowValuesCount", "autosizing", "maxHeight", "getIdFromRowValue"]);
|
|
37
|
-
var tableHeadData = useMemo(function () { return getTableHeadData(columnsData, filters, onFilter); }, [columnsData, filters, onFilter]);
|
|
38
|
-
var _e = useCollapsibleTableRows({
|
|
39
|
-
rowsData: rowsData,
|
|
40
|
-
columnsData: columnsData,
|
|
41
|
-
renderRowCell: renderRowCell,
|
|
42
|
-
getRowCellHeight: getRowCellHeight,
|
|
43
|
-
maxRowValuesCount: maxRowValuesCount,
|
|
44
|
-
getIdFromRowValue: getIdFromRowValue
|
|
45
|
-
}), tableRowsData = _e.tableRowsData, collapseContextValue = _e.collapseContextValue;
|
|
46
|
-
var toggleRowCollapse = collapseContextValue.toggleRowCollapse, getIsRowCollapsed = collapseContextValue.getIsRowCollapsed;
|
|
47
|
-
var onStartDragRow = useCallback(function () {
|
|
48
|
-
setTimeout(function () {
|
|
49
|
-
tableRowsData.forEach(function (_, index) {
|
|
50
|
-
if (!getIsRowCollapsed(index)) {
|
|
51
|
-
toggleRowCollapse(index);
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
}, 0);
|
|
55
|
-
}, [getIsRowCollapsed, toggleRowCollapse, tableRowsData]);
|
|
56
|
-
if (!tableHeadData.length) {
|
|
57
|
-
return null;
|
|
58
|
-
}
|
|
59
|
-
return (React.createElement(RowCollapseContext.Provider, { value: collapseContextValue },
|
|
60
|
-
React.createElement(TableContext.Provider, { value: context },
|
|
61
|
-
React.createElement(Table, __assign({ autosizing: autosizing, maxHeight: maxHeight, defaultRowHeight: 48, onStartDragRow: onStartDragRow }, otherProps, { fixHead: tableRowsData.length > 0, headData: tableHeadData, rowsData: tableRowsData, sortField: prop('field', sorting), sortOrder: prop('order', sorting), onSort: onSort, headRowHeight: filters ? headRowHeight + COLUMN_FILTER_HEIGHT : headRowHeight, shouldRenderDndProvider: false, ref: ref })))));
|
|
62
|
-
});
|
|
63
|
-
export var BasicTableType = {
|
|
64
|
-
columnsData: PropTypes.arrayOf(ColumnDataType).isRequired,
|
|
65
|
-
rowsData: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
66
|
-
context: PropTypes.object,
|
|
67
|
-
sorting: SortingType,
|
|
68
|
-
onSort: PropTypes.func,
|
|
69
|
-
filters: PropTypes.objectOf(ColumnFilterType),
|
|
70
|
-
onFilter: PropTypes.func,
|
|
71
|
-
renderRowCell: PropTypes.func,
|
|
72
|
-
getRowCellHeight: PropTypes.func,
|
|
73
|
-
headRowHeight: PropTypes.number,
|
|
74
|
-
maxRowValuesCount: PropTypes.number,
|
|
75
|
-
defaultColumnWidth: PropTypes.number,
|
|
76
|
-
defaultColumnMinWidth: PropTypes.number,
|
|
77
|
-
classes: PropTypes.shape({
|
|
78
|
-
highlightRow: PropTypes.string,
|
|
79
|
-
cellBorder: PropTypes.string,
|
|
80
|
-
dragColumnBody: PropTypes.string,
|
|
81
|
-
dragColumnHead: PropTypes.string,
|
|
82
|
-
draggableHeadCell: PropTypes.string,
|
|
83
|
-
cellWrapper: PropTypes.string,
|
|
84
|
-
cellContentWrapper: PropTypes.string,
|
|
85
|
-
hoveredRowRightContentContainer: PropTypes.string,
|
|
86
|
-
hoveredRowRightContentWrapper: PropTypes.string
|
|
87
|
-
})
|
|
88
|
-
};
|
|
89
|
-
BasicTable.propTypes = BasicTableType;
|
|
90
|
-
BasicTable.displayName = 'BasicTable';
|
|
91
|
-
export default BasicTable;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { CollapseContext, ColumnData, RowId, TableRowsData } from '../../types';
|
|
3
|
-
type Props = {
|
|
4
|
-
columnId: string;
|
|
5
|
-
rowIndex: number;
|
|
6
|
-
collapseContextValue: CollapseContext;
|
|
7
|
-
getRowHeight: (rowId: RowId) => number;
|
|
8
|
-
getHeightForSubRow: (rowId: RowId, columnIndex: number, subRowIndex: number) => number;
|
|
9
|
-
tableRowsData: TableRowsData;
|
|
10
|
-
columnsData: ColumnData[];
|
|
11
|
-
};
|
|
12
|
-
export declare const CellRenderer: ({ columnId, rowIndex, collapseContextValue, getRowHeight, tableRowsData, columnsData, getHeightForSubRow, ...otherProps }: Props) => JSX.Element;
|
|
13
|
-
export {};
|
|
@@ -1,39 +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 { propEq } from 'ramda';
|
|
24
|
-
import React from 'react';
|
|
25
|
-
import { RowCollapseContext } from '../contexts/RowCollapseContext';
|
|
26
|
-
import { getCellContentFromRowsData } from 'react-components/dist/Table/tableUtils';
|
|
27
|
-
export var CellRenderer = function (_a) {
|
|
28
|
-
var columnId = _a.columnId, rowIndex = _a.rowIndex, collapseContextValue = _a.collapseContextValue, getRowHeight = _a.getRowHeight, tableRowsData = _a.tableRowsData, columnsData = _a.columnsData, getHeightForSubRow = _a.getHeightForSubRow, otherProps = __rest(_a, ["columnId", "rowIndex", "collapseContextValue", "getRowHeight", "tableRowsData", "columnsData", "getHeightForSubRow"]);
|
|
29
|
-
var rowData = tableRowsData[rowIndex];
|
|
30
|
-
return (React.createElement(RowCollapseContext.Provider, { value: collapseContextValue },
|
|
31
|
-
React.createElement("div", __assign({}, otherProps, { style: { height: getRowHeight(rowData === null || rowData === void 0 ? void 0 : rowData.id) } }), tableRowsData.length > 0 &&
|
|
32
|
-
getCellContentFromRowsData({
|
|
33
|
-
columnIndex: columnsData.findIndex(propEq('id', columnId)),
|
|
34
|
-
headData: columnsData,
|
|
35
|
-
rowData: rowData,
|
|
36
|
-
id: rowData.id,
|
|
37
|
-
getHeightForSubRow: getHeightForSubRow
|
|
38
|
-
}))));
|
|
39
|
-
};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export default withFilter;
|
|
2
|
-
declare function withFilter({ filter, onFilter, filterable, filterOptions, dataTypeDefinition }: {
|
|
3
|
-
filter: any;
|
|
4
|
-
onFilter: any;
|
|
5
|
-
filterable: any;
|
|
6
|
-
filterOptions: any;
|
|
7
|
-
dataTypeDefinition: any;
|
|
8
|
-
}): (HeadCellRenderer: any) => {
|
|
9
|
-
(props: any): JSX.Element;
|
|
10
|
-
propTypes: {
|
|
11
|
-
headCellData: PropTypes.Requireable<PropTypes.InferProps<{
|
|
12
|
-
id: PropTypes.Requireable<string>;
|
|
13
|
-
}>>;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
|
-
import PropTypes from 'prop-types';
|
|
@@ -1,33 +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 PropTypes from 'prop-types';
|
|
14
|
-
import ColumnFilter from '../../ColumnFilter/ColumnFilter';
|
|
15
|
-
import { useStyles as useColumnFilterStyles } from '../../ColumnFilter/styles';
|
|
16
|
-
var withFilter = function (_a) {
|
|
17
|
-
var filter = _a.filter, onFilter = _a.onFilter, filterable = _a.filterable, filterOptions = _a.filterOptions, dataTypeDefinition = _a.dataTypeDefinition;
|
|
18
|
-
return function (HeadCellRenderer) {
|
|
19
|
-
var HeadCellRendererWithFilter = function (props) {
|
|
20
|
-
var columnId = props.headCellData.id;
|
|
21
|
-
var styles = useColumnFilterStyles();
|
|
22
|
-
var columnFilter = filterable ? (React.createElement(ColumnFilter, { columnId: columnId, dataTypeDefinition: dataTypeDefinition, filter: filter, filterOptionsData: filterOptions, onFilter: onFilter })) : (React.createElement("div", { className: styles.columnFilter }));
|
|
23
|
-
return React.createElement(HeadCellRenderer, __assign({}, props, { columnFilter: columnFilter }));
|
|
24
|
-
};
|
|
25
|
-
HeadCellRendererWithFilter.propTypes = {
|
|
26
|
-
headCellData: PropTypes.shape({
|
|
27
|
-
id: PropTypes.string
|
|
28
|
-
})
|
|
29
|
-
};
|
|
30
|
-
return HeadCellRendererWithFilter;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
export default withFilter;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export default withFilterAtBottom;
|
|
2
|
-
declare function withFilterAtBottom(HeadCellRenderer: any): {
|
|
3
|
-
({ columnFilter, ...otherProps }: {
|
|
4
|
-
[x: string]: any;
|
|
5
|
-
columnFilter: any;
|
|
6
|
-
}): JSX.Element;
|
|
7
|
-
propTypes: {
|
|
8
|
-
columnFilter: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
import PropTypes from 'prop-types';
|
|
@@ -1,38 +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 PropTypes from 'prop-types';
|
|
25
|
-
var withFilterAtBottom = function (HeadCellRenderer) {
|
|
26
|
-
var HeadCellRendererWithFilterAtBottom = function (_a) {
|
|
27
|
-
var columnFilter = _a.columnFilter, otherProps = __rest(_a, ["columnFilter"]);
|
|
28
|
-
return (React.createElement("div", { style: { display: 'flex', flexDirection: 'column', height: '100%' } },
|
|
29
|
-
React.createElement("div", { style: { display: 'flex', flex: 1 } },
|
|
30
|
-
React.createElement(HeadCellRenderer, __assign({}, otherProps))),
|
|
31
|
-
columnFilter));
|
|
32
|
-
};
|
|
33
|
-
HeadCellRendererWithFilterAtBottom.propTypes = {
|
|
34
|
-
columnFilter: PropTypes.node
|
|
35
|
-
};
|
|
36
|
-
return HeadCellRendererWithFilterAtBottom;
|
|
37
|
-
};
|
|
38
|
-
export default withFilterAtBottom;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { TableContext } from '../contexts/TableContext';
|
|
2
|
-
import { withContext } from '../../../../HOCs/withContext/withContext';
|
|
3
|
-
var withTableContext = function (contextSelector) { return function (CellRenderer) {
|
|
4
|
-
return withContext(TableContext, contextSelector, CellRenderer);
|
|
5
|
-
}; };
|
|
6
|
-
export default withTableContext;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export default BlobRenderer;
|
|
2
|
-
declare function BlobRenderer({ value }: {
|
|
3
|
-
value: any;
|
|
4
|
-
}): JSX.Element;
|
|
5
|
-
declare namespace BlobRenderer {
|
|
6
|
-
namespace propTypes {
|
|
7
|
-
let value: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
import PropTypes from 'prop-types';
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import PropTypes from 'prop-types';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import { useStyles } from './styles';
|
|
4
|
-
var stopPropagation = function (event) {
|
|
5
|
-
event.stopPropagation();
|
|
6
|
-
};
|
|
7
|
-
var BlobRenderer = function (_a) {
|
|
8
|
-
var value = _a.value;
|
|
9
|
-
var styles = useStyles();
|
|
10
|
-
return (React.createElement("div", { className: styles.blobWrapper, onScroll: stopPropagation }, value));
|
|
11
|
-
};
|
|
12
|
-
BlobRenderer.propTypes = {
|
|
13
|
-
value: PropTypes.node
|
|
14
|
-
};
|
|
15
|
-
export default BlobRenderer;
|
package/esm/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export default DefaultCellValueRenderer;
|
|
2
|
-
declare function DefaultCellValueRenderer(props: any): JSX.Element;
|
|
3
|
-
declare namespace DefaultCellValueRenderer {
|
|
4
|
-
namespace propTypes {
|
|
5
|
-
let value: PropTypes.Requireable<any>;
|
|
6
|
-
let columnData: PropTypes.Requireable<PropTypes.InferProps<{
|
|
7
|
-
dataTypeDefinition: PropTypes.Requireable<object>;
|
|
8
|
-
}>>;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
import PropTypes from 'prop-types';
|
package/esm/components/BasicTableView/BasicTable/cell-value-renderers/DefaultCellValueRenderer.js
DELETED
|
@@ -1,38 +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 BlobRenderer from './BlobRenderer';
|
|
13
|
-
import DataTypeValue from '../../../DataTypeValue/DataTypeValue';
|
|
14
|
-
import PropTypes from 'prop-types';
|
|
15
|
-
import React from 'react';
|
|
16
|
-
import { DataTypes } from '@reltio/mdm-sdk';
|
|
17
|
-
import { useStyles } from './styles';
|
|
18
|
-
import ExpandedValueTooltip from '../../../ExpandedValueTooltip/ExpandedValueTooltip';
|
|
19
|
-
var DefaultCellValueRenderer = function (props) {
|
|
20
|
-
var styles = useStyles();
|
|
21
|
-
var value = props.value, dataTypeDefinition = props.columnData.dataTypeDefinition;
|
|
22
|
-
switch (dataTypeDefinition.type) {
|
|
23
|
-
case DataTypes.TYPE_BLOB:
|
|
24
|
-
return React.createElement(BlobRenderer, __assign({}, props));
|
|
25
|
-
default: {
|
|
26
|
-
var dataTypeValue = React.createElement(DataTypeValue, { value: value, dataTypeDefinition: dataTypeDefinition });
|
|
27
|
-
return (React.createElement(ExpandedValueTooltip, { value: dataTypeValue },
|
|
28
|
-
React.createElement("div", { className: styles.defaultWrapper }, dataTypeValue)));
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
};
|
|
32
|
-
DefaultCellValueRenderer.propTypes = {
|
|
33
|
-
value: PropTypes.any,
|
|
34
|
-
columnData: PropTypes.shape({
|
|
35
|
-
dataTypeDefinition: PropTypes.object
|
|
36
|
-
})
|
|
37
|
-
};
|
|
38
|
-
export default DefaultCellValueRenderer;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as DefaultCellValueRenderer } from "./DefaultCellValueRenderer";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as DefaultCellValueRenderer } from './DefaultCellValueRenderer';
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from '@mui/styles';
|
|
2
|
-
export var BLOB_HEIGHT = 100;
|
|
3
|
-
export var useStyles = makeStyles({
|
|
4
|
-
defaultWrapper: {
|
|
5
|
-
whiteSpace: 'nowrap',
|
|
6
|
-
overflow: 'hidden',
|
|
7
|
-
textOverflow: 'ellipsis',
|
|
8
|
-
padding: '15px 25px 0 25px'
|
|
9
|
-
},
|
|
10
|
-
blobWrapper: {
|
|
11
|
-
position: 'relative',
|
|
12
|
-
overflowY: 'auto',
|
|
13
|
-
overflowX: 'hidden',
|
|
14
|
-
whiteSpace: 'pre',
|
|
15
|
-
maxHeight: "".concat(BLOB_HEIGHT, "px"),
|
|
16
|
-
boxSizing: 'border-box',
|
|
17
|
-
padding: '15px 25px 0 25px'
|
|
18
|
-
}
|
|
19
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { TableContext } from "./TableContext";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { TableContext } from './TableContext';
|