@idds/react 1.5.33 → 1.5.34

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.es.js CHANGED
@@ -5526,7 +5526,10 @@ const SelectDropdown = ({
5526
5526
  "input",
5527
5527
  {
5528
5528
  type: "text",
5529
- className: "ina-select-dropdown__trigger-input",
5529
+ className: clsx(
5530
+ "ina-select-dropdown__trigger-input",
5531
+ triggerLabel !== placeholder && "ina-select-dropdown__trigger-input--selected"
5532
+ ),
5530
5533
  placeholder: triggerLabel,
5531
5534
  value: getInputValue(),
5532
5535
  onChange: onInputChange,