forstok-ui-lib 6.7.2 → 6.7.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "6.7.2",
3
+ "version": "6.7.3",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -183,7 +183,7 @@ const SelectComponent = ({ type, isError=false, mode, customOption, customLabel,
183
183
  boxShadow: (state.isFocused) ? '-.0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .122) inset, .0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .122) inset, 0rem .125rem .0625rem 0rem rgba(26, 26, 26, .2) inset' : '0rem -.0625rem 0rem 0rem #b5b5b5 inset,0rem 0rem 0rem .0625rem rgba(0, 0, 0, .1) inset,0rem .03125rem 0rem .09375rem #FFF inset',
184
184
  borderColor: ((state.isFocused && mode !== 'filter') && !isError) ? 'var(--pri-clr-ln__fc)' : (isError ? 'var(--err-clr-ln)' : (mode ==='filter' ? '#ffffff' : ' var(--ck-clr-ln)' )),
185
185
  background: state.isFocused ? 'rgba(247, 247, 247, 1)' : '#ffffff',
186
- overflow: mode === 'picklist' ? 'hidden': (mode === 'orders' ? 'auto' : 'initial'),
186
+ overflow: mode === 'multi' ? 'auto' : (mode === 'picklist' ? 'hidden': (mode === 'orders' ? 'auto' : 'initial')),
187
187
  alignItems: mode === 'orders' ? 'start' : 'center',
188
188
  padding: mode === 'orders' ? '6px 0' : 'unset',
189
189
  color: 'rgba(74, 74, 74, 1)',
@@ -234,7 +234,7 @@ const SelectComponent = ({ type, isError=false, mode, customOption, customLabel,
234
234
  height: mode === 'multi' ? '44px' : '30px',
235
235
  maxHeight: mode === 'multi' ? '44px' : (mode === 'picklist' ? '46px': 'none'),
236
236
  minHeight: mode === 'multi' ? '44px' : (mode === 'picklist' ? '30px': '1px'),
237
- overflow: mode === 'picklist' ? 'auto': 'initial',
237
+ overflow: (mode === 'multi' || mode === 'picklist') ? 'auto': 'initial',
238
238
  paddingTop: '0',
239
239
  paddingBottom: '0',
240
240
  paddingRight: '2px',