@reltio/components 1.4.1193 → 1.4.1197

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.
Files changed (69) hide show
  1. package/cjs/components/ActionButton/styles.d.ts +1 -1
  2. package/cjs/components/AttributesFiltersBuilder/AttributesFiltersBuilder.d.ts +5 -1
  3. package/cjs/components/AttributesFiltersBuilder/AttributesFiltersBuilder.js +4 -3
  4. package/cjs/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.d.ts +3 -2
  5. package/cjs/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.js +5 -4
  6. package/cjs/components/AttributesFiltersBuilder/components/ValuesEditor/ValuesEditor.js +2 -11
  7. package/cjs/components/AttributesFiltersBuilder/index.d.ts +4 -0
  8. package/cjs/components/AttributesFiltersBuilder/index.js +12 -0
  9. package/cjs/components/AttributesFiltersButton/AttributesFiltersButton.d.ts +5 -1
  10. package/cjs/components/AttributesFiltersButton/AttributesFiltersButton.js +2 -2
  11. package/cjs/components/{AttributesFiltersBuilder/components/MatchRulesSelector → MatchRulesSelector}/MatchRulesSelector.d.ts +2 -6
  12. package/cjs/components/{AttributesFiltersBuilder/components/MatchRulesSelector → MatchRulesSelector}/MatchRulesSelector.js +1 -7
  13. package/cjs/components/{AttributesFiltersBuilder/components/MultiValueSelector → MultiValueSelector}/MultiValueSelector.d.ts +0 -0
  14. package/cjs/components/{AttributesFiltersBuilder/components/MultiValueSelector → MultiValueSelector}/MultiValueSelector.js +6 -6
  15. package/cjs/components/{AttributesFiltersBuilder/components/MultiValueSelector → MultiValueSelector}/styles.d.ts +0 -0
  16. package/cjs/components/{AttributesFiltersBuilder/components/MultiValueSelector → MultiValueSelector}/styles.js +0 -0
  17. package/cjs/components/ValueChip/styles.d.ts +1 -1
  18. package/cjs/components/attributes/ImageAttributesLine/styles.d.ts +1 -1
  19. package/cjs/components/attributes/editMode/MoreAttributesButton/styles.d.ts +1 -1
  20. package/cjs/components/commonReactSelectComponents/LoadMoreButton.d.ts +8 -0
  21. package/cjs/components/commonReactSelectComponents/LoadMoreButton.js +17 -0
  22. package/cjs/components/commonReactSelectComponents/MenuList.d.ts +3 -0
  23. package/cjs/components/commonReactSelectComponents/MenuList.js +25 -0
  24. package/cjs/components/commonReactSelectComponents/styles.d.ts +1 -0
  25. package/cjs/components/commonReactSelectComponents/styles.js +24 -0
  26. package/cjs/components/crosswalks/CrosswalkAttributes/styles.d.ts +1 -1
  27. package/cjs/components/editors/DataTypeValueEditor/useEditorContext.d.ts +8 -2
  28. package/cjs/components/editors/DataTypeValueEditor/useEditorContext.js +5 -4
  29. package/cjs/components/editors/DependentLookupEditor/DependentLookupEditor.js +52 -10
  30. package/cjs/components/editors/TypeaheadEditor/TypeaheadEditor.js +32 -7
  31. package/cjs/components/history/HistoryGraph/HistoryCircle.d.ts +1 -1
  32. package/cjs/components/history/HistoryGraph/HistoryGraph.d.ts +1 -1
  33. package/cjs/components/index.d.ts +5 -0
  34. package/cjs/components/index.js +12 -3
  35. package/esm/components/ActionButton/styles.d.ts +1 -1
  36. package/esm/components/AttributesFiltersBuilder/AttributesFiltersBuilder.d.ts +5 -1
  37. package/esm/components/AttributesFiltersBuilder/AttributesFiltersBuilder.js +4 -3
  38. package/esm/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.d.ts +3 -2
  39. package/esm/components/AttributesFiltersBuilder/components/FilterSelector/FilterSelector.js +5 -4
  40. package/esm/components/AttributesFiltersBuilder/components/ValuesEditor/ValuesEditor.js +3 -12
  41. package/esm/components/AttributesFiltersBuilder/index.d.ts +4 -0
  42. package/esm/components/AttributesFiltersBuilder/index.js +3 -0
  43. package/esm/components/AttributesFiltersButton/AttributesFiltersButton.d.ts +5 -1
  44. package/esm/components/AttributesFiltersButton/AttributesFiltersButton.js +2 -2
  45. package/esm/components/{AttributesFiltersBuilder/components/MatchRulesSelector → MatchRulesSelector}/MatchRulesSelector.d.ts +2 -6
  46. package/esm/components/{AttributesFiltersBuilder/components/MatchRulesSelector → MatchRulesSelector}/MatchRulesSelector.js +2 -7
  47. package/esm/components/{AttributesFiltersBuilder/components/MultiValueSelector → MultiValueSelector}/MultiValueSelector.d.ts +0 -0
  48. package/esm/components/{AttributesFiltersBuilder/components/MultiValueSelector → MultiValueSelector}/MultiValueSelector.js +6 -6
  49. package/esm/components/{AttributesFiltersBuilder/components/MultiValueSelector → MultiValueSelector}/styles.d.ts +0 -0
  50. package/esm/components/{AttributesFiltersBuilder/components/MultiValueSelector → MultiValueSelector}/styles.js +0 -0
  51. package/esm/components/ValueChip/styles.d.ts +1 -1
  52. package/esm/components/attributes/ImageAttributesLine/styles.d.ts +1 -1
  53. package/esm/components/attributes/editMode/MoreAttributesButton/styles.d.ts +1 -1
  54. package/esm/components/commonReactSelectComponents/LoadMoreButton.d.ts +8 -0
  55. package/esm/components/commonReactSelectComponents/LoadMoreButton.js +12 -0
  56. package/esm/components/commonReactSelectComponents/MenuList.d.ts +3 -0
  57. package/esm/components/commonReactSelectComponents/MenuList.js +20 -0
  58. package/esm/components/commonReactSelectComponents/styles.d.ts +1 -0
  59. package/esm/components/commonReactSelectComponents/styles.js +21 -0
  60. package/esm/components/crosswalks/CrosswalkAttributes/styles.d.ts +1 -1
  61. package/esm/components/editors/DataTypeValueEditor/useEditorContext.d.ts +8 -2
  62. package/esm/components/editors/DataTypeValueEditor/useEditorContext.js +5 -4
  63. package/esm/components/editors/DependentLookupEditor/DependentLookupEditor.js +54 -12
  64. package/esm/components/editors/TypeaheadEditor/TypeaheadEditor.js +34 -9
  65. package/esm/components/history/HistoryGraph/HistoryCircle.d.ts +1 -1
  66. package/esm/components/history/HistoryGraph/HistoryGraph.d.ts +1 -1
  67. package/esm/components/index.d.ts +5 -0
  68. package/esm/components/index.js +5 -0
  69. package/package.json +3 -3
@@ -20,16 +20,17 @@ var __rest = (this && this.__rest) || function (s, e) {
20
20
  }
21
21
  return t;
22
22
  };
23
- import React, { useCallback, useRef, useState } from 'react';
23
+ import React, { useCallback, useRef, useState, useEffect, useMemo } from 'react';
24
24
  import PropTypes from 'prop-types';
25
25
  import { debounce, LookupValueType } from '@reltio/mdm-sdk';
26
- import AsyncSelect from '../../ReactSelect/AsyncSelect';
27
- import { defaultTo, either, isEmpty, prop } from 'ramda';
26
+ import Select from '../../ReactSelect/Select';
27
+ import { concat, defaultTo, either, isEmpty, prop } from 'ramda';
28
28
  import { buildLookupOptions, getOptionLabel } from './helpers';
29
29
  import i18n from 'ui-i18n';
30
30
  import { EmptyStub } from '../../../core/utils';
31
31
  import DropdownIndicator from '../../commonReactSelectComponents/DropdownIndicator';
32
32
  import MenuWithPopper from '../../commonReactSelectComponents/MenuWithPopper';
33
+ import MenuList from '../../commonReactSelectComponents/MenuList';
33
34
  import { useStyles } from './styles';
34
35
  import useLookupsResolver from './useLookupsResolver';
35
36
  import MultiValueChip from '../commonComponents/MultiValueChip/MultiValueChip';
@@ -37,15 +38,18 @@ import OptionWithCheckIcon from '../../commonReactSelectComponents/OptionWithChe
37
38
  import useDefaultOptions from './useDefaultOptions';
38
39
  import useAutopopulation from './useAutopopulation';
39
40
  import useSavingFocus from './useSavingFocus';
41
+ import LoadMoreButton from '../../commonReactSelectComponents/LoadMoreButton';
40
42
  var SelectComponents = {
41
43
  IndicatorSeparator: EmptyStub,
42
44
  LoadingIndicator: EmptyStub,
43
45
  Option: OptionWithCheckIcon,
44
46
  DropdownIndicator: DropdownIndicator,
45
47
  Menu: MenuWithPopper,
48
+ MenuList: MenuList,
46
49
  MultiValue: MultiValueChip
47
50
  };
48
51
  export var DEBOUNCE_INTERVAL = 400;
52
+ var MAX_DEPENDENT_LOOKUP_VALUES = 50;
49
53
  var DependentLookupEditor = function (_a) {
50
54
  var multiple = _a.multiple, value = _a.value, lookupTypeCode = _a.lookupCode, TextFieldProps = _a.TextFieldProps, parents = _a.parents, onChange = _a.onChange, getLookups = _a.getLookups, _b = _a.lookups, lookups = _b === void 0 ? {} : _b, resolveLookups = _a.resolveLookups, fullWidth = _a.fullWidth, disabled = _a.disabled, placeholder = _a.placeholder, autopopulationId = _a.autopopulationId, otherProps = __rest(_a, ["multiple", "value", "lookupCode", "TextFieldProps", "parents", "onChange", "getLookups", "lookups", "resolveLookups", "fullWidth", "disabled", "placeholder", "autopopulationId"]);
51
55
  var inputRef = useRef(null);
@@ -59,16 +63,54 @@ var DependentLookupEditor = function (_a) {
59
63
  });
60
64
  useSavingFocus(selectRef, inputRef, disabled);
61
65
  var _c = useState(''), inputValue = _c[0], setInputValue = _c[1];
62
- var loadOptions = useCallback(function (value) { return getLookups(lookupTypeCode, parents, value).then(buildLookupOptions); }, [
63
- lookupTypeCode,
64
- parents
65
- ]);
66
+ var _d = useState([]), options = _d[0], setOptions = _d[1];
67
+ var _e = useState(1), pageNumber = _e[0], setPageNumber = _e[1];
68
+ var _f = useState(false), nextPageIsLoading = _f[0], setNextPageIsLoading = _f[1];
69
+ var handleInputChange = function (value) {
70
+ if (value !== inputValue) {
71
+ setInputValue(value);
72
+ setPageNumber(1);
73
+ debouncedLoadOptions(value, setOptions);
74
+ }
75
+ };
76
+ var loadOptions = useCallback(function (value, pageNumber) {
77
+ if (pageNumber === void 0) { pageNumber = 1; }
78
+ return getLookups({
79
+ type: lookupTypeCode,
80
+ parents: parents,
81
+ displayNamePrefix: value,
82
+ max: MAX_DEPENDENT_LOOKUP_VALUES + 1,
83
+ offset: (pageNumber - 1) * MAX_DEPENDENT_LOOKUP_VALUES
84
+ }).then(function (buildOptions) { return buildLookupOptions(buildOptions); });
85
+ }, [lookupTypeCode, parents]);
86
+ var loadMoreOptions = useCallback(function () {
87
+ setNextPageIsLoading(true);
88
+ loadOptions(inputValue, pageNumber + 1)
89
+ .then(function (buildOptions) {
90
+ setOptions(function (options) {
91
+ return concat(options.slice(0, pageNumber * MAX_DEPENDENT_LOOKUP_VALUES), buildOptions);
92
+ });
93
+ setPageNumber(function (page) { return page + 1; });
94
+ })
95
+ .catch(function () { return []; })
96
+ .finally(function () { return setNextPageIsLoading(false); });
97
+ }, [loadOptions, inputValue, pageNumber]);
66
98
  var debouncedLoadOptions = useCallback(debounce(function (value, callback) {
99
+ setNextPageIsLoading(true);
67
100
  loadOptions(value)
68
101
  .then(function (options) { return callback(options); })
69
- .catch(function () { return callback([]); });
102
+ .catch(function () { return callback([]); })
103
+ .finally(function () { return setNextPageIsLoading(false); });
70
104
  }, DEBOUNCE_INTERVAL), [loadOptions]);
71
- var _d = useDefaultOptions(loadOptions), defaultOptions = _d.defaultOptions, initialDefaultOptions = _d.initialDefaultOptions, isLoadingDefaultOptions = _d.isLoading;
105
+ var _g = useDefaultOptions(loadOptions), defaultOptions = _g.defaultOptions, initialDefaultOptions = _g.initialDefaultOptions, isLoadingDefaultOptions = _g.isLoading;
106
+ useEffect(function () {
107
+ setOptions(defaultOptions);
108
+ }, [defaultOptions]);
109
+ var displayedOptions = useMemo(function () { return options.slice(0, pageNumber * MAX_DEPENDENT_LOOKUP_VALUES); }, [
110
+ options,
111
+ pageNumber
112
+ ]);
113
+ var showMoreButton = options.length > displayedOptions.length;
72
114
  var isEmptyValue = multiple ? isEmpty(value) : !(value === null || value === void 0 ? void 0 : value.lookupCode) && !(value === null || value === void 0 ? void 0 : value.value);
73
115
  var markAsTouched = useAutopopulation({
74
116
  id: autopopulationId,
@@ -77,13 +119,13 @@ var DependentLookupEditor = function (_a) {
77
119
  multiple: multiple,
78
120
  onChange: onChange
79
121
  }).markAsTouched;
80
- return (React.createElement(AsyncSelect, __assign({}, otherProps, { isMulti: multiple, classes: styles, menuPortalTarget: document.body, menuPlacement: "auto", TextFieldProps: __assign(__assign({}, TextFieldProps), { ref: inputRef, disabled: (TextFieldProps === null || TextFieldProps === void 0 ? void 0 : TextFieldProps.disabled) || disabled }), inputRef: inputRef, innerRef: selectRef, styles: {
122
+ return (React.createElement(Select, __assign({}, otherProps, { isMulti: multiple, classes: styles, menuPortalTarget: document.body, menuPlacement: "auto", TextFieldProps: __assign(__assign({}, TextFieldProps), { ref: inputRef, disabled: (TextFieldProps === null || TextFieldProps === void 0 ? void 0 : TextFieldProps.disabled) || disabled }), inputRef: inputRef, innerRef: selectRef, styles: {
81
123
  menuPortal: function (base) { return (__assign(__assign({}, base), { zIndex: 1300 })); },
82
124
  container: function (base) { return (__assign(__assign({}, base), (fullWidth ? { width: '100%' } : {}))); }
83
- }, loadingMessage: function () { return i18n.text('Loading...'); }, noOptionsMessage: function () { return i18n.text('No results found'); }, components: SelectComponents, isClearable: true, isSearchable: true, inputValue: inputValue, onInputChange: setInputValue, isLoading: !inputValue && isLoadingDefaultOptions, defaultOptions: defaultOptions, hideSelectedOptions: false, placeholder: placeholder || '', isDisabled: disabled, loadOptions: debouncedLoadOptions, getOptionValue: either(prop('value'), prop('lookupCode')), getOptionLabel: getOptionLabel, onChange: function (value) {
125
+ }, loadingMessage: function () { return i18n.text('Loading...'); }, noOptionsMessage: function () { return i18n.text('No results found'); }, components: SelectComponents, isClearable: true, isSearchable: true, inputValue: inputValue, onInputChange: handleInputChange, isLoading: !inputValue && isLoadingDefaultOptions, hideSelectedOptions: false, placeholder: placeholder || '', isDisabled: disabled, options: displayedOptions, getOptionValue: either(prop('value'), prop('lookupCode')), getOptionLabel: getOptionLabel, onChange: function (value) {
84
126
  markAsTouched();
85
127
  onChange(value);
86
- }, value: defaultTo(multiple ? [] : null, value) })));
128
+ }, value: defaultTo(multiple ? [] : null, value), menuListFooter: showMoreButton && React.createElement(LoadMoreButton, { loading: nextPageIsLoading, onClick: loadMoreOptions }) })));
87
129
  };
88
130
  DependentLookupEditor.propTypes = {
89
131
  multiple: PropTypes.bool,
@@ -33,29 +33,52 @@ import MenuItem from '@material-ui/core/MenuItem';
33
33
  import Paper from '@material-ui/core/Paper';
34
34
  import Popper from '../../Popper/Popper';
35
35
  import PropTypes from 'prop-types';
36
- import React, { useCallback, useRef, useState } from 'react';
36
+ import React, { useCallback, useRef, useMemo, useState } from 'react';
37
37
  import { NoResults } from '../../../components/EmptySearchResult';
38
- import { always, andThen, both, defaultTo, F, identity, ifElse, isEmpty, nthArg, path, pipe, prop, propEq, remove, T, tap, trim, uniq } from 'ramda';
38
+ import { always, andThen, both, concat, defaultTo, F, identity, ifElse, isEmpty, nthArg, path, pipe, prop, propEq, remove, T, tap, trim, uniq } from 'ramda';
39
39
  import { debounce, isEmptyValue } from '@reltio/mdm-sdk';
40
40
  import { getValue } from '../../../core/utils';
41
41
  import { useStyles } from './styles';
42
42
  import ExpandedValueTooltip from '../../ExpandedValueTooltip/ExpandedValueTooltip';
43
43
  import ValueChip from '../../ValueChip/ValueChip';
44
+ import LoadMoreButton from '../../commonReactSelectComponents/LoadMoreButton';
45
+ import { useDidUpdateEffect } from '../../../hooks';
44
46
  var FETCH_DEBOUNCE_INTERVAL = 300;
47
+ var PAGE_SIZE = 50;
45
48
  var TypeaheadEditor = function (_a) {
46
49
  var value = _a.value, getSuggestions = _a.getSuggestions, onChange = _a.onChange, multiple = _a.multiple, fullWidth = _a.fullWidth, _b = _a.InputProps, InputProps = _b === void 0 ? {} : _b, inputProps = __rest(_a, ["value", "getSuggestions", "onChange", "multiple", "fullWidth", "InputProps"]);
47
50
  var _c = useState([]), suggestions = _c[0], setSuggestions = _c[1];
48
51
  var _d = useState(false), isPlaceholderVisible = _d[0], setPlaceholderVisibility = _d[1];
52
+ var _e = useState(1), pageNumber = _e[0], setPageNumber = _e[1];
53
+ var _f = useState(false), nextPageIsLoading = _f[0], setNextPageIsLoading = _f[1];
54
+ var pageSizeForRequest = PAGE_SIZE + 1;
55
+ var _g = useState(''), currentValue = _g[0], setCurrentValue = _g[1];
56
+ value = defaultTo(multiple ? [] : '', value);
57
+ var inputValue = multiple ? currentValue : value;
58
+ useDidUpdateEffect(function () {
59
+ setPageNumber(1);
60
+ }, [inputValue]);
49
61
  var inputRef = useRef();
50
62
  var styles = useStyles();
51
63
  var isFocused = function () { var _a; return ((_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.querySelector('input')) === document.activeElement; };
52
- var fetchSuggestions = pipe(prop('value'), trim, getSuggestions, andThen(pipe(tap(setSuggestions), both(isEmpty, isFocused), setPlaceholderVisibility)));
64
+ var fetchSuggestions = pipe(prop('value'), trim, function (value) { return getSuggestions(value, pageSizeForRequest); }, andThen(pipe(tap(setSuggestions), both(isEmpty, isFocused), setPlaceholderVisibility)));
65
+ var onLoadMoreSuggestions = function () {
66
+ setNextPageIsLoading(true);
67
+ getSuggestions(inputValue, pageSizeForRequest, pageNumber + 1)
68
+ .then(pipe(concat(suggestions), setSuggestions, always(pageNumber + 1), setPageNumber))
69
+ .finally(function () {
70
+ setNextPageIsLoading(false);
71
+ });
72
+ };
73
+ var onMouseDown = function (event) {
74
+ event.preventDefault();
75
+ };
53
76
  var debouncedFetchSuggestions = useCallback(debounce(fetchSuggestions, FETCH_DEBOUNCE_INTERVAL), [
54
77
  getSuggestions
55
78
  ]);
56
- value = defaultTo(multiple ? [] : '', value);
57
- var _e = useState(''), currentValue = _e[0], setCurrentValue = _e[1];
58
- var _f = useState(false), hasHighlightedItem = _f[0], setHasHighlightedItem = _f[1];
79
+ var displayedSuggestions = useMemo(function () { return suggestions.slice(0, pageNumber * PAGE_SIZE); }, [suggestions, pageNumber]);
80
+ var showMoreButton = suggestions.length > displayedSuggestions.length;
81
+ var _h = useState(false), hasHighlightedItem = _h[0], setHasHighlightedItem = _h[1];
59
82
  var onInputChange = function (_a) {
60
83
  var newValue = _a.newValue, method = _a.method;
61
84
  switch (method) {
@@ -89,11 +112,11 @@ var TypeaheadEditor = function (_a) {
89
112
  }
90
113
  }
91
114
  };
92
- return (React.createElement(Autosuggest, { suggestions: suggestions, shouldRenderSuggestions: T, inputProps: __assign(__assign({ value: multiple ? currentValue : value, onChange: pipe(nthArg(1), onInputChange), onKeyDown: function (event) {
115
+ return (React.createElement(Autosuggest, { suggestions: displayedSuggestions, shouldRenderSuggestions: T, inputProps: __assign(__assign({ value: inputValue, onChange: pipe(nthArg(1), onInputChange), onKeyDown: function (event) {
93
116
  if (event.keyCode === 13 && multiple && !hasHighlightedItem) {
94
117
  onInputChange({ method: 'enter', newValue: currentValue });
95
118
  }
96
- }, fullWidth: fullWidth }, inputProps), { autoComplete: 'nope' }), getSuggestionValue: identity, onSuggestionsFetchRequested: ifElse(propEq('reason', 'input-changed'), debouncedFetchSuggestions, fetchSuggestions), onSuggestionsClearRequested: pipe(always([]), setSuggestions, F, setPlaceholderVisibility), renderInputComponent: function (_a) {
119
+ }, fullWidth: fullWidth }, inputProps), { autoComplete: 'nope' }), getSuggestionValue: identity, onSuggestionsFetchRequested: ifElse(propEq('reason', 'input-changed'), debouncedFetchSuggestions, fetchSuggestions), onSuggestionsClearRequested: pipe(always([]), setSuggestions, F, setPlaceholderVisibility, always(1), setPageNumber), renderInputComponent: function (_a) {
97
120
  var _b;
98
121
  var ref = _a.ref, onInputChange = _a.onChange, otherProps = __rest(_a, ["ref", "onChange"]);
99
122
  var commonClasses = {
@@ -104,7 +127,9 @@ var TypeaheadEditor = function (_a) {
104
127
  }, renderSuggestionsContainer: function (_a) {
105
128
  var children = _a.children, _b = _a.containerProps, ref = _b.ref, restContainerProps = __rest(_b, ["ref"]);
106
129
  return (React.createElement(Popper, { anchorEl: inputRef.current, open: Boolean(children) || isPlaceholderVisible },
107
- React.createElement(Paper, __assign({ ref: ref, square: true }, restContainerProps, { style: { width: prop('clientWidth', inputRef.current) } }), children || React.createElement(NoResults, { className: styles['typeahead__suggestions-placeholder'] }))));
130
+ React.createElement(Paper, __assign({ ref: ref, square: true }, restContainerProps, { style: { width: prop('clientWidth', inputRef.current) } }),
131
+ children || React.createElement(NoResults, { className: styles['typeahead__suggestions-placeholder'] }),
132
+ showMoreButton && !isPlaceholderVisible && (React.createElement(LoadMoreButton, { onClick: onLoadMoreSuggestions, onMouseDown: onMouseDown, loading: nextPageIsLoading })))));
108
133
  }, renderSuggestion: function (suggestion, _a) {
109
134
  var isHighlighted = _a.isHighlighted;
110
135
  return (React.createElement(MenuItem, { className: styles['typeahead__suggestions-menuItem'], selected: isHighlighted, component: "div" },
@@ -9,5 +9,5 @@ declare const _default: React.ForwardRefExoticComponent<Pick<{
9
9
  isCollapsed?: boolean;
10
10
  showCollapseIcon?: boolean;
11
11
  showLine?: boolean;
12
- } & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "max" | "children" | "radius" | "order" | "offset" | "method" | "width" | "height" | "in" | "format" | "key" | "attributeName" | "name" | "mode" | "attributeType" | "direction" | "path" | "from" | "to" | "end" | "clipPath" | "color" | "cursor" | "display" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "imageRendering" | "letterSpacing" | "opacity" | "overflow" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "wordSpacing" | "writingMode" | "mask" | "textDecoration" | "clip" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "local" | "style" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "onScroll" | "className" | "y" | "d" | "origin" | "lang" | "tabIndex" | "role" | "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" | "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" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "href" | "media" | "target" | "min" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "numOctaves" | "orient" | "orientation" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "isDashed" | "isCollapsed" | "showCollapseIcon" | "showLine"> & React.RefAttributes<unknown>>;
12
+ } & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "max" | "offset" | "children" | "radius" | "order" | "method" | "width" | "height" | "in" | "format" | "key" | "attributeName" | "name" | "mode" | "attributeType" | "direction" | "path" | "from" | "to" | "end" | "clipPath" | "color" | "cursor" | "display" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "imageRendering" | "letterSpacing" | "opacity" | "overflow" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "wordSpacing" | "writingMode" | "mask" | "textDecoration" | "clip" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "local" | "style" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "onScroll" | "className" | "y" | "d" | "origin" | "lang" | "tabIndex" | "role" | "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" | "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" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "href" | "media" | "target" | "min" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "numOctaves" | "orient" | "orientation" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "isDashed" | "isCollapsed" | "showCollapseIcon" | "showLine"> & React.RefAttributes<unknown>>;
13
13
  export default _default;
@@ -16,7 +16,7 @@ export declare const HistoryCircleWithTooltip: React.ForwardRefExoticComponent<i
16
16
  isCollapsed?: boolean;
17
17
  showCollapseIcon?: boolean;
18
18
  showLine?: boolean;
19
- } & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "max" | "children" | "radius" | "order" | "offset" | "method" | "width" | "height" | "in" | "format" | "key" | "attributeName" | "name" | "mode" | "attributeType" | "direction" | "path" | "from" | "to" | "end" | "clipPath" | "color" | "cursor" | "display" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "imageRendering" | "letterSpacing" | "opacity" | "overflow" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "wordSpacing" | "writingMode" | "mask" | "textDecoration" | "clip" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "local" | "style" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "onScroll" | "className" | "y" | "d" | "origin" | "lang" | "tabIndex" | "role" | "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" | "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" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "href" | "media" | "target" | "min" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "numOctaves" | "orient" | "orientation" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "isDashed" | "isCollapsed" | "showCollapseIcon" | "showLine"> & React.RefAttributes<unknown>>;
19
+ } & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "max" | "offset" | "children" | "radius" | "order" | "method" | "width" | "height" | "in" | "format" | "key" | "attributeName" | "name" | "mode" | "attributeType" | "direction" | "path" | "from" | "to" | "end" | "clipPath" | "color" | "cursor" | "display" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "imageRendering" | "letterSpacing" | "opacity" | "overflow" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "wordSpacing" | "writingMode" | "mask" | "textDecoration" | "clip" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "local" | "style" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "onScroll" | "className" | "y" | "d" | "origin" | "lang" | "tabIndex" | "role" | "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" | "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" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "href" | "media" | "target" | "min" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "numOctaves" | "orient" | "orientation" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "isDashed" | "isCollapsed" | "showCollapseIcon" | "showLine"> & React.RefAttributes<unknown>>;
20
20
  declare type Props = {
21
21
  graphData: HistoryData;
22
22
  onHistoryCircleMouseOver?: (uri: string, timestamp: number, index: number) => void;
@@ -36,6 +36,8 @@ export { default as ColorBar } from './ColorBar/ColorBar';
36
36
  export { default as CommentsContainer } from './CommentsContainer/CommentsContainer';
37
37
  export { default as DropdownIndicator } from './commonReactSelectComponents/DropdownIndicator';
38
38
  export { default as DropdownIndicatorWithIconButton } from './commonReactSelectComponents/DropdownIndicatorWithIconButton';
39
+ export { default as LoadMoreButton } from './commonReactSelectComponents/LoadMoreButton';
40
+ export { default as MenuList } from './commonReactSelectComponents/MenuList';
39
41
  export { default as MenuWithPopper } from './commonReactSelectComponents/MenuWithPopper';
40
42
  export { default as ConfigureColumnsPopup } from './ConfigureColumnsPopup/ConfigureColumnsPopup';
41
43
  export { default as ConnectionRelationTypeSelector } from './ConnectionRelationTypeSelector/ConnectionRelationTypeSelector';
@@ -132,3 +134,6 @@ export { default as AttributesFiltersButton } from './AttributesFiltersButton/At
132
134
  export { default as AttributesFiltersBuilder } from './AttributesFiltersBuilder/AttributesFiltersBuilder';
133
135
  export { ConnectionEditor } from './ConnectionEditor';
134
136
  export { DragAndDrop } from './DragAndDrop/DragAndDrop';
137
+ export * from './AttributesFiltersBuilder';
138
+ export { default as MultiValueSelector } from './MultiValueSelector/MultiValueSelector';
139
+ export { default as MatchRulesSelector } from './MatchRulesSelector/MatchRulesSelector';
@@ -36,6 +36,8 @@ export { default as ColorBar } from './ColorBar/ColorBar';
36
36
  export { default as CommentsContainer } from './CommentsContainer/CommentsContainer';
37
37
  export { default as DropdownIndicator } from './commonReactSelectComponents/DropdownIndicator';
38
38
  export { default as DropdownIndicatorWithIconButton } from './commonReactSelectComponents/DropdownIndicatorWithIconButton';
39
+ export { default as LoadMoreButton } from './commonReactSelectComponents/LoadMoreButton';
40
+ export { default as MenuList } from './commonReactSelectComponents/MenuList';
39
41
  export { default as MenuWithPopper } from './commonReactSelectComponents/MenuWithPopper';
40
42
  export { default as ConfigureColumnsPopup } from './ConfigureColumnsPopup/ConfigureColumnsPopup';
41
43
  export { default as ConnectionRelationTypeSelector } from './ConnectionRelationTypeSelector/ConnectionRelationTypeSelector';
@@ -132,3 +134,6 @@ export { default as AttributesFiltersButton } from './AttributesFiltersButton/At
132
134
  export { default as AttributesFiltersBuilder } from './AttributesFiltersBuilder/AttributesFiltersBuilder';
133
135
  export { ConnectionEditor } from './ConnectionEditor';
134
136
  export { DragAndDrop } from './DragAndDrop/DragAndDrop';
137
+ export * from './AttributesFiltersBuilder';
138
+ export { default as MultiValueSelector } from './MultiValueSelector/MultiValueSelector';
139
+ export { default as MatchRulesSelector } from './MatchRulesSelector/MatchRulesSelector';
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@reltio/components",
3
- "version": "1.4.1193",
3
+ "version": "1.4.1197",
4
4
  "license": "SEE LICENSE IN LICENSE FILE",
5
5
  "main": "./cjs/index.js",
6
6
  "module": "./esm/index.js",
7
7
  "dependencies": {
8
8
  "@date-io/moment": "^1.3.5",
9
9
  "@react-google-maps/api": "2.7.0",
10
- "@reltio/mdm-module": "^1.4.1193",
11
- "@reltio/mdm-sdk": "^1.4.1193",
10
+ "@reltio/mdm-module": "^1.4.1197",
11
+ "@reltio/mdm-sdk": "^1.4.1197",
12
12
  "classnames": "^2.2.5",
13
13
  "d3-cloud": "^1.2.5",
14
14
  "d3-geo": "^2.0.1",