@reltio/components 1.4.844 → 1.4.848

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 (99) hide show
  1. package/components/AttributeSelector/AttributeSelector.d.ts +14 -0
  2. package/components/{activityLog/ActivityFilterEditor → AttributeSelector}/AttributeSelector.js +10 -10
  3. package/components/AttributeSelector/styles.d.ts +4 -0
  4. package/components/AttributeSelector/styles.js +41 -0
  5. package/components/DateIntervalSelector/DateIntervalSelector.d.ts +8 -0
  6. package/components/{activityLog/ActivityFilterEditor/IntervalSelector.js → DateIntervalSelector/DateIntervalSelector.js} +8 -17
  7. package/components/DateIntervalSelector/styles.d.ts +1 -0
  8. package/components/DateIntervalSelector/styles.js +25 -0
  9. package/components/DateRangePicker/styles.d.ts +1 -1
  10. package/components/ImageGalleryDialog/styles.d.ts +1 -1
  11. package/components/UploadImageDialog/ImageByUrlField/styles.d.ts +1 -1
  12. package/components/UserSelector/UserSelector.d.ts +9 -0
  13. package/components/{activityLog/ActivityFilterEditor → UserSelector}/UserSelector.js +6 -6
  14. package/components/UserSelector/styles.d.ts +5 -0
  15. package/components/UserSelector/styles.js +39 -0
  16. package/components/activityLog/ActivityFilterEditor/ActivityFilterEditor.js +4 -4
  17. package/components/activityLog/ActivityFilterEditor/DateRangeSelector.d.ts +3 -3
  18. package/components/activityLog/ActivityFilterEditor/DateRangeSelector.js +6 -6
  19. package/components/activityLog/ActivityFilterEditor/styles.d.ts +1 -1
  20. package/components/activityLog/ActivityFilterEditor/styles.js +3 -32
  21. package/components/activityLog/ActivityLogFilter/helpers.js +1 -1
  22. package/components/activityLog/types/ActivitiesFilter.d.ts +2 -7
  23. package/components/activityLog/types/index.d.ts +1 -3
  24. package/components/activityLog/types/index.js +1 -3
  25. package/components/activityLog/utils/filters.d.ts +2 -2
  26. package/components/activityLog/utils/filters.js +1 -1
  27. package/components/attributes/OvIcon/OvIcon.d.ts +3 -1
  28. package/components/attributes/OvIcon/OvIcon.js +4 -4
  29. package/components/attributes/editMode/AttributesFactory/AttributesFactory.js +3 -2
  30. package/components/attributes/editMode/AttributesList/AttributesList.d.ts +3 -1
  31. package/components/attributes/editMode/AttributesList/AttributesList.js +4 -8
  32. package/components/attributes/editMode/AttributesPager/AttributeRenderer.d.ts +1 -1
  33. package/components/attributes/editMode/AttributesPager/AttributeRenderer.js +8 -7
  34. package/components/attributes/editMode/AttributesPager/AttributesPager.d.ts +1 -1
  35. package/components/attributes/editMode/AttributesPager/AttributesPager.js +5 -5
  36. package/components/attributes/editMode/AttributesPager/index.d.ts +2 -1
  37. package/components/attributes/editMode/ComplexAttribute/ComplexAttribute.d.ts +3 -1
  38. package/components/attributes/editMode/ComplexAttribute/ComplexAttribute.js +2 -2
  39. package/components/attributes/editMode/NestedAttribute/NestedAttribute.d.ts +1 -0
  40. package/components/attributes/editMode/ReferenceAttribute/ReferenceAttribute.d.ts +1 -0
  41. package/components/attributes/editMode/ReferenceAttribute/index.d.ts +1 -0
  42. package/components/attributes/inline/SimpleAttributeEditor/styles.d.ts +1 -1
  43. package/components/attributes/readMode/AttributesList/AttributesList.d.ts +2 -1
  44. package/components/attributes/readMode/AttributesList/AttributesList.js +7 -3
  45. package/components/attributes/readMode/AttributesPager/AttributesPager.d.ts +2 -1
  46. package/components/attributes/readMode/AttributesPager/AttributesPager.js +13 -7
  47. package/components/attributes/readMode/AttributesPager/MultiLineRenderer.d.ts +5 -3
  48. package/components/attributes/readMode/AttributesPager/MultiLineRenderer.js +8 -8
  49. package/components/attributes/readMode/AttributesPager/OneLineRenderer.d.ts +4 -2
  50. package/components/attributes/readMode/AttributesPager/OneLineRenderer.js +3 -3
  51. package/components/attributes/readMode/AttributesPager/index.d.ts +3 -1
  52. package/components/attributes/readMode/ComplexAttribute/ComplexAttribute.d.ts +3 -1
  53. package/components/attributes/readMode/ComplexAttribute/ComplexAttribute.js +4 -3
  54. package/components/attributes/readMode/NestedAttribute/NestedAttribute.d.ts +1 -0
  55. package/components/attributes/readMode/ReferenceAttribute/ReferenceAttribute.d.ts +1 -0
  56. package/components/attributes/readMode/ReferenceAttribute/index.d.ts +1 -0
  57. package/components/{activityLog/ActivityFilterEditor/ActivityDateRangeEditor.d.ts → editors/CustomDateRangeEditor/CustomDateRangeEditor.d.ts} +3 -3
  58. package/components/{activityLog/ActivityFilterEditor/ActivityDateRangeEditor.js → editors/CustomDateRangeEditor/CustomDateRangeEditor.js} +6 -5
  59. package/components/editors/CustomDateRangeEditor/styles.d.ts +1 -0
  60. package/components/editors/CustomDateRangeEditor/styles.js +25 -0
  61. package/components/editors/DateRangeEditor/styles.d.ts +1 -1
  62. package/components/history/DateRangeSelector/DateRangeSelector.d.ts +9 -0
  63. package/components/history/DateRangeSelector/DateRangeSelector.js +91 -0
  64. package/components/history/DateRangeSelector/styles.d.ts +1 -0
  65. package/components/history/DateRangeSelector/styles.js +22 -0
  66. package/components/history/DateRangeSelector/utils.d.ts +3 -0
  67. package/components/history/DateRangeSelector/utils.js +19 -0
  68. package/components/history/HistoryActivitySelector/HistoryActivitySelector.d.ts +9 -0
  69. package/components/history/HistoryActivitySelector/HistoryActivitySelector.js +27 -0
  70. package/components/history/HistoryActivitySelector/styles.d.ts +4 -0
  71. package/components/history/HistoryActivitySelector/styles.js +42 -0
  72. package/components/history/HistoryActivitySelector/utils.d.ts +3 -0
  73. package/components/history/HistoryActivitySelector/utils.js +23 -0
  74. package/components/history/HistoryFilterButton/HistoryFilterButton.d.ts +10 -0
  75. package/components/history/HistoryFilterButton/HistoryFilterButton.js +87 -0
  76. package/components/history/HistoryFilterButton/styles.d.ts +1 -1
  77. package/components/history/HistoryFilterButton/styles.js +26 -0
  78. package/components/history/HistoryHeader/HistoryHeader.d.ts +6 -1
  79. package/components/history/HistoryHeader/HistoryHeader.js +3 -3
  80. package/components/history/index.d.ts +2 -1
  81. package/components/history/index.js +13 -2
  82. package/components/history/types/HistoryFilter.d.ts +12 -0
  83. package/components/history/types/HistoryFilter.js +9 -0
  84. package/components/history/types/index.d.ts +2 -0
  85. package/components/history/types/index.js +5 -0
  86. package/components/index.d.ts +1 -0
  87. package/components/index.js +3 -1
  88. package/package.json +3 -3
  89. package/types/index.d.ts +17 -0
  90. package/types/index.js +7 -0
  91. package/components/activityLog/ActivityFilterEditor/AttributeSelector.d.ts +0 -10
  92. package/components/activityLog/ActivityFilterEditor/IntervalSelector.d.ts +0 -8
  93. package/components/activityLog/ActivityFilterEditor/UserSelector.d.ts +0 -7
  94. package/components/activityLog/types/AttributeOption.d.ts +0 -8
  95. package/components/activityLog/types/AttributeOption.js +0 -2
  96. package/components/activityLog/types/DateRangeTypes.d.ts +0 -5
  97. package/components/activityLog/types/DateRangeTypes.js +0 -9
  98. package/components/history/HistoryFilterButton/HistoryFilterBitton.d.ts +0 -3
  99. package/components/history/HistoryFilterButton/HistoryFilterBitton.js +0 -14
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- declare type Props = {
3
- selectedUsers: string[];
4
- onChange: (activities: string[]) => void;
5
- };
6
- declare const UserSelector: ({ selectedUsers, onChange }: Props) => JSX.Element;
7
- export default UserSelector;
@@ -1,8 +0,0 @@
1
- import { AttributeType } from '@reltio/mdm-sdk';
2
- export declare type AttributeOption = {
3
- label: string;
4
- value: string;
5
- attrType: AttributeType;
6
- chipLabel: string;
7
- level: number;
8
- };
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +0,0 @@
1
- export declare enum DateRangeTypes {
2
- WITHIN = "within",
3
- AGO = "ago",
4
- BETWEEN = "between"
5
- }
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DateRangeTypes = void 0;
4
- var DateRangeTypes;
5
- (function (DateRangeTypes) {
6
- DateRangeTypes["WITHIN"] = "within";
7
- DateRangeTypes["AGO"] = "ago";
8
- DateRangeTypes["BETWEEN"] = "between";
9
- })(DateRangeTypes = exports.DateRangeTypes || (exports.DateRangeTypes = {}));
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- declare const HistoryFilterButton: () => JSX.Element;
3
- export default HistoryFilterButton;
@@ -1,14 +0,0 @@
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 FilterList_1 = __importDefault(require("@material-ui/icons/FilterList"));
8
- var SmallIconButton_1 = require("../../SmallIconButton");
9
- var styles_1 = require("./styles");
10
- var HistoryFilterButton = function () {
11
- var styles = styles_1.useStyles();
12
- return react_1.default.createElement(SmallIconButton_1.SmallIconButton, { icon: FilterList_1.default, size: "XS", onClick: function () { }, className: styles.icon });
13
- };
14
- exports.default = HistoryFilterButton;