@synerise/ds-date-range-picker 0.24.2 → 0.24.4
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.24.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-date-range-picker@0.24.3...@synerise/ds-date-range-picker@0.24.4) (2023-09-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-date-range-picker
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.24.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-date-range-picker@0.24.2...@synerise/ds-date-range-picker@0.24.3) (2023-09-14)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **date-range-picker:** fixes event conflicts in drp and contentitem ([d80d8de](https://github.com/Synerise/synerise-design/commit/d80d8deb973235200e0ca8843dea40ec18efd366))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.24.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-date-range-picker@0.24.1...@synerise/ds-date-range-picker@0.24.2) (2023-09-08)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-date-range-picker
|
|
@@ -229,8 +229,8 @@ var MonthlyFilter = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
229
229
|
minWidth: '150px'
|
|
230
230
|
},
|
|
231
231
|
dropdownProps: {
|
|
232
|
-
getPopupContainer: function getPopupContainer() {
|
|
233
|
-
return
|
|
232
|
+
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
233
|
+
return triggerNode.closest('.monthly-wrapper') || document.body;
|
|
234
234
|
}
|
|
235
235
|
},
|
|
236
236
|
placeholder: intl.formatMessage({
|
|
@@ -281,8 +281,8 @@ var MonthlyFilter = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
281
281
|
disabled: disabled,
|
|
282
282
|
expanded: false,
|
|
283
283
|
dropdownProps: {
|
|
284
|
-
getPopupContainer: function getPopupContainer() {
|
|
285
|
-
return
|
|
284
|
+
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
285
|
+
return triggerNode.closest('.monthly-wrapper') || document.body;
|
|
286
286
|
}
|
|
287
287
|
},
|
|
288
288
|
dropdownOverlayStyle: {
|
|
@@ -369,6 +369,9 @@ var MonthlyFilter = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
369
369
|
// eslint-disable-next-line @typescript-eslint/ban-ts-ignore
|
|
370
370
|
// @ts-ignore
|
|
371
371
|
name: /*#__PURE__*/React.createElement(S.DropdownHeader, {
|
|
372
|
+
onClick: function onClick(event) {
|
|
373
|
+
return event.stopPropagation();
|
|
374
|
+
},
|
|
372
375
|
className: visible[item.id] ? 'dropdown-header-visible' : 'dropdown-header'
|
|
373
376
|
}, /*#__PURE__*/React.createElement(S.DropdownLabel, null, /*#__PURE__*/React.createElement(FormattedMessage, {
|
|
374
377
|
id: "DS.DATE-RANGE-PICKER.DAYS-OF",
|
|
@@ -37,7 +37,7 @@ export var AddButton = styled.div.withConfig({
|
|
|
37
37
|
export var Select = styled(InlineSelect).withConfig({
|
|
38
38
|
displayName: "MonthlyFilterstyles__Select",
|
|
39
39
|
componentId: "sc-5ul7nk-8"
|
|
40
|
-
})(["margin:2px 4px 0 4px;"]);
|
|
40
|
+
})(["margin:2px 4px 0 4px;padding-bottom:0;&&&:focus:not(:active),&&&:focus-within{background:none;}"]);
|
|
41
41
|
export var PeriodMode = styled.span.withConfig({
|
|
42
42
|
displayName: "MonthlyFilterstyles__PeriodMode",
|
|
43
43
|
componentId: "sc-5ul7nk-9"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-date-range-picker",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.4",
|
|
4
4
|
"description": "Date-Range-Picker UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -37,19 +37,19 @@
|
|
|
37
37
|
"@synerise/ds-button": "^0.18.1",
|
|
38
38
|
"@synerise/ds-button-group": "^0.6.29",
|
|
39
39
|
"@synerise/ds-data-format": "^0.4.2",
|
|
40
|
-
"@synerise/ds-date-picker": "^0.10.
|
|
41
|
-
"@synerise/ds-dropdown": "^0.17.
|
|
40
|
+
"@synerise/ds-date-picker": "^0.10.15",
|
|
41
|
+
"@synerise/ds-dropdown": "^0.17.78",
|
|
42
42
|
"@synerise/ds-icon": "^0.58.1",
|
|
43
|
-
"@synerise/ds-inline-edit": "^0.6.
|
|
44
|
-
"@synerise/ds-input": "^0.
|
|
43
|
+
"@synerise/ds-inline-edit": "^0.6.77",
|
|
44
|
+
"@synerise/ds-input": "^0.19.0",
|
|
45
45
|
"@synerise/ds-input-number": "^0.8.23",
|
|
46
|
-
"@synerise/ds-manageable-list": "^0.26.
|
|
46
|
+
"@synerise/ds-manageable-list": "^0.26.7",
|
|
47
47
|
"@synerise/ds-menu": "^0.17.17",
|
|
48
48
|
"@synerise/ds-scrollbar": "^0.6.6",
|
|
49
|
-
"@synerise/ds-select": "^0.15.
|
|
49
|
+
"@synerise/ds-select": "^0.15.17",
|
|
50
50
|
"@synerise/ds-slider": "^0.12.26",
|
|
51
|
-
"@synerise/ds-tags": "^0.8.
|
|
52
|
-
"@synerise/ds-time-picker": "^0.8.
|
|
51
|
+
"@synerise/ds-tags": "^0.8.12",
|
|
52
|
+
"@synerise/ds-time-picker": "^0.8.6",
|
|
53
53
|
"@synerise/ds-tooltip": "^0.14.3",
|
|
54
54
|
"@synerise/ds-utils": "^0.24.15",
|
|
55
55
|
"date-fns": "^2.16.1",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"@testing-library/user-event": "^10.3.1",
|
|
73
73
|
"@types/ramda": "^0.27.14"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "ef59143e0ab93cee5b9a738fa1fa9c60748ddffc"
|
|
76
76
|
}
|