@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
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
14
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
15
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
16
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
17
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
18
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
19
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
20
|
+
});
|
|
21
|
+
};
|
|
22
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
23
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
24
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
25
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
26
|
+
function step(op) {
|
|
27
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
28
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
29
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
30
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
31
|
+
switch (op[0]) {
|
|
32
|
+
case 0: case 1: t = op; break;
|
|
33
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
34
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
35
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
36
|
+
default:
|
|
37
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
38
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
39
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
40
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
41
|
+
if (t[2]) _.ops.pop();
|
|
42
|
+
_.trys.pop(); continue;
|
|
43
|
+
}
|
|
44
|
+
op = body.call(thisArg, _);
|
|
45
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
46
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
50
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
51
|
+
};
|
|
52
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53
|
+
var react_1 = __importDefault(require("react"));
|
|
54
|
+
var react_2 = require("@testing-library/react");
|
|
55
|
+
var user_event_1 = __importDefault(require("@testing-library/user-event"));
|
|
56
|
+
var BasicTablePagination_1 = __importDefault(require("./BasicTablePagination"));
|
|
57
|
+
describe('BasicTablePagination tests', function () {
|
|
58
|
+
var resetScrollbarPositionSpy = jest.fn();
|
|
59
|
+
var tableElement = { resetScrollbarPosition: resetScrollbarPositionSpy };
|
|
60
|
+
var defaultProps = {
|
|
61
|
+
basicTableRef: { current: tableElement },
|
|
62
|
+
onChangePage: jest.fn(),
|
|
63
|
+
onChangeRowsPerPage: jest.fn(),
|
|
64
|
+
rowsPerPageOptions: [20, 30, 40],
|
|
65
|
+
rowsPerPage: 20,
|
|
66
|
+
count: 100,
|
|
67
|
+
page: 1
|
|
68
|
+
};
|
|
69
|
+
var setUp = function (props) {
|
|
70
|
+
if (props === void 0) { props = {}; }
|
|
71
|
+
var user = user_event_1.default.setup();
|
|
72
|
+
return __assign({ user: user }, (0, react_2.render)(react_1.default.createElement(BasicTablePagination_1.default, __assign({}, defaultProps, props))));
|
|
73
|
+
};
|
|
74
|
+
beforeEach(function () {
|
|
75
|
+
jest.clearAllMocks();
|
|
76
|
+
});
|
|
77
|
+
it('should render correctly', function () {
|
|
78
|
+
setUp();
|
|
79
|
+
expect(react_2.screen.getByRole('button', { name: 'Rows per page: 20' })).toBeInTheDocument();
|
|
80
|
+
expect(react_2.screen.getByText('21-40 of 100')).toBeInTheDocument();
|
|
81
|
+
expect(react_2.screen.getByRole('button', { name: 'Go to previous page' })).toBeInTheDocument();
|
|
82
|
+
expect(react_2.screen.getByRole('button', { name: 'Go to next page' })).toBeInTheDocument();
|
|
83
|
+
});
|
|
84
|
+
it('should support custom label for rows per page', function () {
|
|
85
|
+
setUp({ labelRowsPerPage: 'Custom label:' });
|
|
86
|
+
expect(react_2.screen.getByRole('button', { name: 'Custom label: 20' })).toBeInTheDocument();
|
|
87
|
+
});
|
|
88
|
+
it('should call resetScrollbarPosition when the page changed', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
89
|
+
var user;
|
|
90
|
+
return __generator(this, function (_a) {
|
|
91
|
+
switch (_a.label) {
|
|
92
|
+
case 0:
|
|
93
|
+
user = setUp().user;
|
|
94
|
+
return [4 /*yield*/, user.click(react_2.screen.getByRole('button', { name: 'Go to next page' }))];
|
|
95
|
+
case 1:
|
|
96
|
+
_a.sent();
|
|
97
|
+
expect(defaultProps.onChangePage).toHaveBeenCalledWith(2);
|
|
98
|
+
expect(resetScrollbarPositionSpy).toHaveBeenCalled();
|
|
99
|
+
return [2 /*return*/];
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
}); });
|
|
103
|
+
it('should call resetScrollbarPosition and onPageChange when the row per page changed', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
104
|
+
var user;
|
|
105
|
+
return __generator(this, function (_a) {
|
|
106
|
+
switch (_a.label) {
|
|
107
|
+
case 0:
|
|
108
|
+
user = setUp().user;
|
|
109
|
+
return [4 /*yield*/, user.click(react_2.screen.getByRole('button', { name: 'Rows per page: 20' }))];
|
|
110
|
+
case 1:
|
|
111
|
+
_a.sent();
|
|
112
|
+
return [4 /*yield*/, user.click(react_2.screen.getByRole('option', { name: '30' }))];
|
|
113
|
+
case 2:
|
|
114
|
+
_a.sent();
|
|
115
|
+
expect(defaultProps.onChangePage).toHaveBeenCalledWith(0);
|
|
116
|
+
expect(defaultProps.onChangeRowsPerPage).toHaveBeenCalledWith(30);
|
|
117
|
+
expect(resetScrollbarPositionSpy).toHaveBeenCalled();
|
|
118
|
+
return [2 /*return*/];
|
|
119
|
+
}
|
|
120
|
+
});
|
|
121
|
+
}); });
|
|
122
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as BasicTablePagination } from './BasicTablePagination';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.BasicTablePagination = void 0;
|
|
7
|
+
var BasicTablePagination_1 = require("./BasicTablePagination");
|
|
8
|
+
Object.defineProperty(exports, "BasicTablePagination", { enumerable: true, get: function () { return __importDefault(BasicTablePagination_1).default; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const BasicView: React.ForwardRefExoticComponent<Pick<{
|
|
3
|
+
children?: React.ReactNode;
|
|
4
|
+
classes?: Partial<import("@mui/material/Paper").PaperClasses>;
|
|
5
|
+
elevation?: number;
|
|
6
|
+
square?: boolean;
|
|
7
|
+
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
8
|
+
variant?: import("@mui/types").OverridableStringUnion<"elevation" | "outlined", import("@mui/material/Paper").PaperPropsVariantOverrides>;
|
|
9
|
+
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement> | "key"> & {
|
|
10
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
11
|
+
}, "square" | "children" | "sx" | keyof import("@mui/material/OverridableComponent").CommonProps | "elevation" | "variant">, "color" | "translate" | "hidden" | "square" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "sx" | keyof import("@mui/material/OverridableComponent").CommonProps | "elevation" | "variant"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
16
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
17
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
37
|
+
var t = {};
|
|
38
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
39
|
+
t[p] = s[p];
|
|
40
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
41
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
42
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
43
|
+
t[p[i]] = s[p[i]];
|
|
44
|
+
}
|
|
45
|
+
return t;
|
|
46
|
+
};
|
|
47
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
48
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
49
|
+
};
|
|
50
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51
|
+
exports.BasicView = void 0;
|
|
52
|
+
var react_1 = __importStar(require("react"));
|
|
53
|
+
var Paper_1 = __importDefault(require("@mui/material/Paper"));
|
|
54
|
+
var styles_1 = require("./styles");
|
|
55
|
+
exports.BasicView = (0, react_1.forwardRef)(function (_a, ref) {
|
|
56
|
+
var children = _a.children, className = _a.className, otherProps = __rest(_a, ["children", "className"]);
|
|
57
|
+
var styles = (0, styles_1.useStyles)();
|
|
58
|
+
return (react_1.default.createElement(Paper_1.default, __assign({ ref: ref, className: className, classes: { root: styles.basicViewPaper } }, otherProps), children));
|
|
59
|
+
});
|
|
60
|
+
exports.BasicView.displayName = 'BasicView';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
var react_1 = __importDefault(require("react"));
|
|
7
|
+
var react_2 = require("@testing-library/react");
|
|
8
|
+
var BasicView_1 = require("./BasicView");
|
|
9
|
+
describe('BasicView tests', function () {
|
|
10
|
+
it('should render styled paper with children', function () {
|
|
11
|
+
var className = 'myClass';
|
|
12
|
+
(0, react_2.render)(react_1.default.createElement(BasicView_1.BasicView, { className: className },
|
|
13
|
+
react_1.default.createElement("div", { "data-reltio-id": "child" })));
|
|
14
|
+
var child = react_2.screen.getByTestId('child');
|
|
15
|
+
expect(child).toBeInTheDocument();
|
|
16
|
+
expect(child.parentElement).toHaveClass(className);
|
|
17
|
+
});
|
|
18
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { BasicView } from './BasicView';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BasicView = void 0;
|
|
4
|
+
var BasicView_1 = require("./BasicView");
|
|
5
|
+
Object.defineProperty(exports, "BasicView", { enumerable: true, get: function () { return BasicView_1.BasicView; } });
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.BasicViewContent = void 0;
|
|
29
|
+
var react_1 = __importDefault(require("react"));
|
|
30
|
+
var classnames_1 = __importDefault(require("classnames"));
|
|
31
|
+
var styles_1 = require("./styles");
|
|
32
|
+
var BasicViewContent = function (_a) {
|
|
33
|
+
var children = _a.children, className = _a.className, otherProps = __rest(_a, ["children", "className"]);
|
|
34
|
+
var styles = (0, styles_1.useStyles)();
|
|
35
|
+
return (react_1.default.createElement("div", __assign({ className: (0, classnames_1.default)(styles['basic-view-content'], className) }, otherProps), children));
|
|
36
|
+
};
|
|
37
|
+
exports.BasicViewContent = BasicViewContent;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
var react_1 = __importDefault(require("react"));
|
|
7
|
+
var enzyme_1 = require("enzyme");
|
|
8
|
+
var BasicViewContent_1 = require("./BasicViewContent");
|
|
9
|
+
test('it should render styled div with children', function () {
|
|
10
|
+
var children = 123, className = 'class';
|
|
11
|
+
var wrapper = (0, enzyme_1.shallow)(react_1.default.createElement(BasicViewContent_1.BasicViewContent, { className: className }, children));
|
|
12
|
+
var content = wrapper.find('div');
|
|
13
|
+
expect(content).toHaveLength(1);
|
|
14
|
+
expect(content.prop('children')).toEqual(children);
|
|
15
|
+
expect(content.prop('className')).toContain(className);
|
|
16
|
+
expect(content.prop('className')).toContain('basic-view-content');
|
|
17
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { BasicViewContent } from './BasicViewContent';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BasicViewContent = void 0;
|
|
4
|
+
var BasicViewContent_1 = require("./BasicViewContent");
|
|
5
|
+
Object.defineProperty(exports, "BasicViewContent", { enumerable: true, get: function () { return BasicViewContent_1.BasicViewContent; } });
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ToolbarProps } from '@mui/material/Toolbar';
|
|
2
|
+
type Props = ToolbarProps & {
|
|
3
|
+
title?: string;
|
|
4
|
+
classes?: Partial<Record<'root' | 'title', string>>;
|
|
5
|
+
};
|
|
6
|
+
export declare const BasicViewHeader: ({ title, children, classes, ...otherProps }: Props) => JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.BasicViewHeader = void 0;
|
|
29
|
+
var react_1 = __importDefault(require("react"));
|
|
30
|
+
var ui_i18n_1 = __importDefault(require("ui-i18n"));
|
|
31
|
+
var Toolbar_1 = __importDefault(require("@mui/material/Toolbar"));
|
|
32
|
+
var Typography_1 = __importDefault(require("@mui/material/Typography"));
|
|
33
|
+
var styles_1 = require("./styles");
|
|
34
|
+
var BasicViewHeader = function (_a) {
|
|
35
|
+
var _b = _a.title, title = _b === void 0 ? '' : _b, _c = _a.children, children = _c === void 0 ? null : _c, _d = _a.classes, classes = _d === void 0 ? {} : _d, otherProps = __rest(_a, ["title", "children", "classes"]);
|
|
36
|
+
var styles = (0, styles_1.useStyles)();
|
|
37
|
+
return (react_1.default.createElement(Toolbar_1.default, __assign({ className: classes.root, classes: { root: styles.toolbar } }, otherProps),
|
|
38
|
+
title && (react_1.default.createElement(Typography_1.default, { className: classes.title, classes: { root: styles.title }, variant: "h6" }, ui_i18n_1.default.text(title))),
|
|
39
|
+
children));
|
|
40
|
+
};
|
|
41
|
+
exports.BasicViewHeader = BasicViewHeader;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
var react_1 = __importDefault(require("react"));
|
|
18
|
+
var react_2 = require("@testing-library/react");
|
|
19
|
+
var BasicViewHeader_1 = require("./BasicViewHeader");
|
|
20
|
+
describe('BasicViewHeader tests', function () {
|
|
21
|
+
var defaultProps = {
|
|
22
|
+
children: react_1.default.createElement("div", { "data-reltio-id": "children" }),
|
|
23
|
+
title: 'Title',
|
|
24
|
+
classes: { root: 'root', title: 'title' }
|
|
25
|
+
};
|
|
26
|
+
var setUp = function (_a) {
|
|
27
|
+
var _b = _a === void 0 ? {} : _a, _c = _b.props, props = _c === void 0 ? {} : _c;
|
|
28
|
+
return (0, react_2.render)(react_1.default.createElement(BasicViewHeader_1.BasicViewHeader, __assign({}, defaultProps, props)));
|
|
29
|
+
};
|
|
30
|
+
it('should render styled toolbar with title and children', function () {
|
|
31
|
+
var container = setUp().container;
|
|
32
|
+
var toolbar = container.querySelector('.toolbar');
|
|
33
|
+
var title = react_2.screen.getByText(defaultProps.title);
|
|
34
|
+
expect(toolbar).toBeInTheDocument();
|
|
35
|
+
expect(toolbar).toHaveClass(defaultProps.classes.root);
|
|
36
|
+
expect(title).toBeInTheDocument();
|
|
37
|
+
expect(title).toHaveClass(defaultProps.classes.title);
|
|
38
|
+
expect(react_2.screen.getByTestId('children')).toBeInTheDocument();
|
|
39
|
+
});
|
|
40
|
+
it('should render toolbar without title', function () {
|
|
41
|
+
var container = setUp({ props: { title: '' } }).container;
|
|
42
|
+
var title = container.querySelector('.title');
|
|
43
|
+
expect(title).not.toBeInTheDocument();
|
|
44
|
+
expect(react_2.screen.getByTestId('children')).toBeInTheDocument();
|
|
45
|
+
});
|
|
46
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { BasicViewHeader } from './BasicViewHeader';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BasicViewHeader = void 0;
|
|
4
|
+
var BasicViewHeader_1 = require("./BasicViewHeader");
|
|
5
|
+
Object.defineProperty(exports, "BasicViewHeader", { enumerable: true, get: function () { return BasicViewHeader_1.BasicViewHeader; } });
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"toolbar" | "title">;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.BlobRenderer = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
var styles_1 = require("./styles");
|
|
9
|
+
var BlobRenderer = function (_a) {
|
|
10
|
+
var value = _a.value;
|
|
11
|
+
var styles = (0, styles_1.useStyles)();
|
|
12
|
+
return (react_1.default.createElement("div", { className: styles.blobWrapper, onScroll: function (e) { return e.stopPropagation(); } }, value));
|
|
13
|
+
};
|
|
14
|
+
exports.BlobRenderer = BlobRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
var react_1 = __importDefault(require("react"));
|
|
7
|
+
var enzyme_1 = require("enzyme");
|
|
8
|
+
var BlobRenderer_1 = require("./BlobRenderer");
|
|
9
|
+
describe('BlobRenderer', function () {
|
|
10
|
+
it('should render value', function () {
|
|
11
|
+
var testValue = 'testValue';
|
|
12
|
+
var wrapper = (0, enzyme_1.shallow)(react_1.default.createElement(BlobRenderer_1.BlobRenderer, { value: testValue }));
|
|
13
|
+
expect(wrapper.html()).toContain(testValue);
|
|
14
|
+
});
|
|
15
|
+
it('should stop propagation scroll event', function () {
|
|
16
|
+
var testValue = 'testValue';
|
|
17
|
+
var scrollHandler = jest.fn();
|
|
18
|
+
var wrapper = (0, enzyme_1.mount)(react_1.default.createElement("div", { onScroll: scrollHandler },
|
|
19
|
+
react_1.default.createElement(BlobRenderer_1.BlobRenderer, { value: testValue })));
|
|
20
|
+
wrapper.find(BlobRenderer_1.BlobRenderer).simulate('scroll');
|
|
21
|
+
expect(scrollHandler).not.toHaveBeenCalled();
|
|
22
|
+
});
|
|
23
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { BlobRenderer } from './BlobRenderer';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BlobRenderer = void 0;
|
|
4
|
+
var BlobRenderer_1 = require("./BlobRenderer");
|
|
5
|
+
Object.defineProperty(exports, "BlobRenderer", { enumerable: true, get: function () { return BlobRenderer_1.BlobRenderer; } });
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"blobWrapper">;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useStyles = void 0;
|
|
4
|
+
var styles_1 = require("@mui/styles");
|
|
5
|
+
var BLOB_HEIGHT = 100;
|
|
6
|
+
exports.useStyles = (0, styles_1.makeStyles)({
|
|
7
|
+
blobWrapper: {
|
|
8
|
+
position: 'relative',
|
|
9
|
+
overflowY: 'auto',
|
|
10
|
+
overflowX: 'hidden',
|
|
11
|
+
whiteSpace: 'pre',
|
|
12
|
+
maxHeight: "".concat(BLOB_HEIGHT, "px"),
|
|
13
|
+
boxSizing: 'border-box',
|
|
14
|
+
padding: '15px 25px 0 25px'
|
|
15
|
+
}
|
|
16
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.BranchDecorator = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
var classnames_1 = __importDefault(require("classnames"));
|
|
9
|
+
var styles_1 = require("./styles");
|
|
10
|
+
var BranchDecorator = function (_a) {
|
|
11
|
+
var _b;
|
|
12
|
+
var className = _a.className, children = _a.children, _c = _a.plain, plain = _c === void 0 ? false : _c, _d = _a.enabled, enabled = _d === void 0 ? false : _d;
|
|
13
|
+
var styles = (0, styles_1.useStyles)();
|
|
14
|
+
return enabled ? (react_1.default.createElement("div", { "data-reltio-id": "branch-decorator", className: (0, classnames_1.default)(styles.decorator, (_b = {}, _b[styles.plain] = plain, _b), className) },
|
|
15
|
+
react_1.default.createElement("div", { className: styles.wrapper }, children))) : (react_1.default.createElement(react_1.default.Fragment, null, children));
|
|
16
|
+
};
|
|
17
|
+
exports.BranchDecorator = BranchDecorator;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { BranchDecorator } from './BranchDecorator';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BranchDecorator = void 0;
|
|
4
|
+
var BranchDecorator_1 = require("./BranchDecorator");
|
|
5
|
+
Object.defineProperty(exports, "BranchDecorator", { enumerable: true, get: function () { return BranchDecorator_1.BranchDecorator; } });
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"wrapper" | "decorator" | "plain">;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { BubbleChartOptions, ChartType } from '@reltio/mdm-sdk';
|
|
2
|
+
import { BaseChartProps } from '../types/charts';
|
|
3
|
+
type Props = BaseChartProps & {
|
|
4
|
+
chartType?: ChartType.BUBBLE;
|
|
5
|
+
options?: BubbleChartOptions;
|
|
6
|
+
};
|
|
7
|
+
export declare const BubbleChart: ({ width, height, data, options, onItemClick }: Props) => JSX.Element;
|
|
8
|
+
declare const _default: {
|
|
9
|
+
({ data, ...otherProps }: BaseChartProps & {
|
|
10
|
+
chartType?: ChartType.BUBBLE;
|
|
11
|
+
options?: BubbleChartOptions;
|
|
12
|
+
}): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default _default;
|