sag_components 2.0.0-beta77 → 2.0.0-beta78

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/dist/index.esm.js CHANGED
@@ -23884,7 +23884,6 @@ const Label$2 = styled.label`
23884
23884
  font-size: 14px;
23885
23885
  font-weight: 500;
23886
23886
  color: ${props => props.disabled ? '#D0D0D0' : '212121'};
23887
- font-family: "Poppins";
23888
23887
  white-space: nowrap;
23889
23888
  `;
23890
23889
  const InputContainer$1 = styled.div`
@@ -23896,7 +23895,6 @@ const InputContainer$1 = styled.div`
23896
23895
  overflow: hidden;
23897
23896
  padding: 6px 16px;
23898
23897
  margin-bottom: 8px;
23899
- width: 256px;
23900
23898
  height: 24px;
23901
23899
  border: 1px solid
23902
23900
  ${props => props.disabled ? '#bdbdbd' : props.error ? 'red' : '#B1B1B1'};
@@ -23956,7 +23954,6 @@ const OptionsSubContainer$1 = styled.ul`
23956
23954
  left: 0;
23957
23955
  z-index: 101;
23958
23956
  width: calc(100% - 23px);
23959
- font-family: "Poppins";
23960
23957
  border-radius: 4px;
23961
23958
  background-color: white;
23962
23959
  display: ${props => props.showoptions && props.filteredoptions?.length > 0 ? 'block' : 'none'};
@@ -23968,9 +23965,7 @@ const OptionItem$1 = styled.li`
23968
23965
  padding: 10px;
23969
23966
  cursor: pointer;
23970
23967
  color: #212121;
23971
- font-family: "Poppins";
23972
23968
  font-size: 14px;
23973
- font-style: normal;
23974
23969
  font-weight: 400;
23975
23970
  transition: background-color 0.3s;
23976
23971
  background-color: ${props => props.selected ? '#C7E4FF' : '#fff'};