diginet-core-ui 1.3.73-beta.5 → 1.3.73-beta.6

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.
@@ -1047,8 +1047,10 @@ const DateRangePickerV2 = /*#__PURE__*/memo( /*#__PURE__*/forwardRef(({
1047
1047
  disabled: disabled,
1048
1048
  required: required
1049
1049
  }, label), jsx(InputBase, {
1050
- placeholder: placeholder,
1051
- ...inputProps,
1050
+ inputProps: {
1051
+ placeholder: !readOnly && !disabled ? placeholder : '',
1052
+ ...inputProps
1053
+ },
1052
1054
  readOnly: true,
1053
1055
  ref: ipConRef,
1054
1056
  inputRef: ipRef,
@@ -1573,6 +1573,9 @@ const DropdownFormCSS = (viewType, multiple, disabled, placeholder, DropdownInpu
1573
1573
  span:empty:before {
1574
1574
  content: '${placeholder}';
1575
1575
  color: ${sub};
1576
+ height: 100%;
1577
+ ${flexRow};
1578
+ ${alignCenter};
1576
1579
  }
1577
1580
  &::placeholder {
1578
1581
  color: ${sub};
@@ -1622,6 +1625,13 @@ const DropdownFormCSS = (viewType, multiple, disabled, placeholder, DropdownInpu
1622
1625
  transform: rotateX(180deg);
1623
1626
  }
1624
1627
  }
1628
+ span:empty:before {
1629
+ content: '${placeholder}';
1630
+ color: ${sub};
1631
+ height: 100%;
1632
+ ${flexRow};
1633
+ ${alignCenter};
1634
+ }
1625
1635
  &::placeholder {
1626
1636
  color: ${sub};
1627
1637
  }