@true-engineering/true-react-common-ui-kit 3.22.0 → 3.23.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@true-engineering/true-react-common-ui-kit",
3
- "version": "3.22.0",
3
+ "version": "3.23.0",
4
4
  "description": "True Engineering React UI Kit with theming support",
5
5
  "author": "True Engineering (https://trueengineering.ru)",
6
6
  "keywords": [
@@ -58,6 +58,7 @@ export const DatePicker = forwardRef<ReactDatePicker, IDatePickerProps>(
58
58
  isClearable,
59
59
  strictParsing,
60
60
  fixedHeight,
61
+ excludeScrollbar,
61
62
  focusSelectedMonth,
62
63
  disabledKeyboardNavigation,
63
64
  shouldRenderPopperInBody = false,
@@ -248,6 +249,7 @@ export const DatePicker = forwardRef<ReactDatePicker, IDatePickerProps>(
248
249
  inline={isInline}
249
250
  disabled={isDisabled}
250
251
  fixedHeight={fixedHeight}
252
+ excludeScrollbar={excludeScrollbar}
251
253
  showPreviousMonths={showPreviousMonths}
252
254
  focusSelectedMonth={focusSelectedMonth}
253
255
  monthsShown={monthsShown}
@@ -31,6 +31,7 @@ export type IDatePickerBaseProps = Pick<
31
31
  | 'strictParsing'
32
32
  | 'highlightDates'
33
33
  | 'fixedHeight'
34
+ | 'excludeScrollbar'
34
35
  > &
35
36
  Omit<
36
37
  IDateInputProps,