@odx/ui 4.3.0 → 4.3.1

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
@@ -1,5 +1,11 @@
1
1
  # @odx/ui
2
2
 
3
+ ## 4.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 429c76c: Reset button for datepicker inside mainfilter group
8
+
3
9
  ## 4.3.0
4
10
 
5
11
  ### Minor Changes
package/core-theme.css CHANGED
@@ -4919,20 +4919,20 @@ html body .odx-fs-italic {
4919
4919
  .odx-mainfilter-group .odx-form-field__hint {
4920
4920
  display: none;
4921
4921
  }
4922
- .odx-mainfilter-group .odx-button {
4922
+ .odx-mainfilter-group > .odx-button {
4923
4923
  margin-top: calc(var(--odx-vertical-rythm-base-size) * 0.8334);
4924
4924
  outline-offset: -1px;
4925
4925
  outline-width: var(--odx-v-outline-width);
4926
4926
  overflow: visible;
4927
4927
  position: relative;
4928
4928
  }
4929
- .odx-mainfilter-group .odx-button:not(:focus-visible) {
4929
+ .odx-mainfilter-group > .odx-button:not(:focus-visible) {
4930
4930
  outline-color: var(--odx-input-control-outline-color);
4931
4931
  }
4932
- .odx-mainfilter-group .odx-button:focus-visible {
4932
+ .odx-mainfilter-group > .odx-button:focus-visible {
4933
4933
  background-color: var(--odx-c-focus);
4934
4934
  }
4935
- .odx-mainfilter-group .odx-button::before {
4935
+ .odx-mainfilter-group > .odx-button::before {
4936
4936
  padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.125);
4937
4937
  padding-left: calc(var(--odx-vertical-rythm-base-size) * 0.125);
4938
4938
  padding-top: calc(var(--odx-vertical-rythm-base-size) * 0.0834);
@@ -4991,6 +4991,12 @@ html body .odx-fs-italic {
4991
4991
  .odx-mainfilter-group .odx-daterangepicker .odx-button::before {
4992
4992
  content: unset;
4993
4993
  }
4994
+ .odx-mainfilter-group .odx-datepicker + .odx-button,
4995
+ .odx-mainfilter-group .odx-daterangepicker + .odx-button {
4996
+ background-color: unset;
4997
+ margin: 0 0 0 calc(var(--odx-vertical-rythm-base-size) * -0.3333);
4998
+ outline: none;
4999
+ }
4994
5000
  .odx-mainfilter-group .odx-daterangepicker__trigger-wrapper .odx-button {
4995
5001
  margin-left: calc(var(--odx-vertical-rythm-base-size) * 0.5);
4996
5002
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odx/ui",
3
- "version": "4.3.0",
3
+ "version": "4.3.1",
4
4
  "author": "Drägerwerk AG & Co.KGaA",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "peerDependencies": {
@@ -73,7 +73,7 @@
73
73
  }
74
74
  }
75
75
 
76
- .odx-button {
76
+ > .odx-button {
77
77
  margin-top: calc(var(--odx-vertical-rythm-base-size) * 0.8334);
78
78
  outline-offset: -1px;
79
79
  outline-width: var(--odx-v-outline-width);
@@ -153,6 +153,12 @@
153
153
  content: unset;
154
154
  }
155
155
  }
156
+
157
+ + .odx-button {
158
+ background-color: unset;
159
+ margin: 0 0 0 dimensions.get-size(math.div(-8, 24));
160
+ outline: none;
161
+ }
156
162
  }
157
163
 
158
164
  .odx-daterangepicker {