@elastic/eui 81.1.0 → 81.2.0

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.
@@ -2894,47 +2894,51 @@ The following files still use the Sass version:
2894
2894
  min-width: 90px;
2895
2895
  }
2896
2896
 
2897
- .euiSuperDatePicker__flexWrapper {
2897
+ .euiSuperDatePicker {
2898
+ display: -webkit-flex;
2899
+ display: flex;
2900
+ gap: 8px;
2898
2901
  max-width: 100%;
2899
2902
  min-width: min(326px, 100%);
2900
2903
  width: 606px;
2901
2904
  }
2902
2905
  @media only screen and (max-width: 574px) {
2903
- .euiSuperDatePicker__flexWrapper {
2906
+ .euiSuperDatePicker {
2904
2907
  width: 100%;
2905
2908
  }
2906
2909
  }
2907
2910
  @media only screen and (min-width: 575px) and (max-width: 767px) {
2908
- .euiSuperDatePicker__flexWrapper {
2911
+ .euiSuperDatePicker {
2909
2912
  width: 100%;
2910
2913
  }
2911
2914
  }
2912
- .euiSuperDatePicker__flexWrapper.euiSuperDatePicker__flexWrapper--fullWidth {
2915
+ .euiSuperDatePicker--isAutoRefreshOnly {
2916
+ min-width: min(200px, 100%);
2917
+ width: 400px;
2918
+ }
2919
+ .euiSuperDatePicker--noUpdateButton {
2920
+ min-width: min(200px, 100%);
2921
+ width: 480px;
2922
+ }
2923
+ .euiSuperDatePicker--fullWidth {
2913
2924
  width: 100%;
2914
2925
  }
2915
- .euiSuperDatePicker__flexWrapper.euiSuperDatePicker__flexWrapper--isQuickSelectOnly {
2926
+ .euiSuperDatePicker--isQuickSelectOnly {
2916
2927
  min-width: 0;
2917
2928
  }
2918
- .euiSuperDatePicker__flexWrapper.euiSuperDatePicker__flexWrapper--autoWidth {
2929
+ .euiSuperDatePicker--autoWidth {
2919
2930
  display: -webkit-inline-flex;
2920
2931
  display: inline-flex;
2921
2932
  width: auto;
2922
2933
  }
2923
-
2924
- .euiSuperDatePicker__flexWrapper--isAutoRefreshOnly {
2925
- min-width: min(200px, 100%);
2926
- width: 400px;
2927
- }
2928
-
2929
- .euiSuperDatePicker__flexWrapper--noUpdateButton {
2930
- min-width: min(200px, 100%);
2931
- width: 480px;
2934
+ .euiSuperDatePicker .euiDatePickerRange {
2935
+ -webkit-flex-grow: 1;
2936
+ flex-grow: 1;
2932
2937
  }
2933
-
2934
- .euiSuperDatePicker {
2935
- max-width: 100% !important;
2938
+ .euiSuperDatePicker .euiFormControlLayout {
2939
+ max-width: 100%;
2936
2940
  }
2937
- .euiSuperDatePicker > .euiFormControlLayout__childrenWrapper {
2941
+ .euiSuperDatePicker .euiFormControlLayout__childrenWrapper {
2938
2942
  display: -webkit-flex;
2939
2943
  display: flex;
2940
2944
  -webkit-align-items: center;
@@ -2942,10 +2946,10 @@ The following files still use the Sass version:
2942
2946
  overflow: hidden;
2943
2947
  background-color: #16171c;
2944
2948
  }
2945
- .euiSuperDatePicker > .euiFormControlLayout__childrenWrapper:last-child {
2949
+ .euiSuperDatePicker .euiFormControlLayout__childrenWrapper:last-child {
2946
2950
  border-radius: 0 6px 6px 0;
2947
2951
  }
2948
- .euiSuperDatePicker > .euiFormControlLayout__childrenWrapper > .euiFormControlLayoutDelimited__input {
2952
+ .euiSuperDatePicker .euiFormControlLayout__childrenWrapper > .euiFormControlLayoutDelimited__input {
2949
2953
  -webkit-flex-grow: 1;
2950
2954
  flex-grow: 1;
2951
2955
  }
@@ -2997,14 +3001,13 @@ The following files still use the Sass version:
2997
3001
  /**
2998
3002
  * Make the arrow delimiter match the colors of `.euiDatePopoverButton-needsUpdating`
2999
3003
  */
3000
- .euiSuperDatePicker--needsUpdating.euiFormControlLayoutDelimited .euiFormControlLayout__childrenWrapper {
3004
+ .euiSuperDatePicker--needsUpdating .euiFormControlLayoutDelimited .euiFormControlLayout__childrenWrapper {
3001
3005
  background-color: #264341;
3002
3006
  }
3003
- .euiSuperDatePicker--needsUpdating.euiFormControlLayoutDelimited .euiFormControlLayoutDelimited__delimiter {
3007
+ .euiSuperDatePicker--needsUpdating .euiFormControlLayoutDelimited .euiFormControlLayoutDelimited__delimiter {
3004
3008
  color: #7DDED8;
3005
3009
  }
3006
-
3007
- .euiSuperDatePicker .euiFormControlLayout__childrenWrapper {
3010
+ .euiSuperDatePicker--needsUpdating .euiFormControlLayout__childrenWrapper {
3008
3011
  transition: background 150ms ease-in;
3009
3012
  }
3010
3013