@ornikar/kitt-universal 25.47.1 → 25.48.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.
@@ -12890,6 +12890,7 @@ function ModalDateTimePicker({
12890
12890
  visible,
12891
12891
  value,
12892
12892
  minuteInterval,
12893
+ timezoneName = 'UTC',
12893
12894
  validateButtonLabel,
12894
12895
  testID,
12895
12896
  pickerTestID,
@@ -12924,6 +12925,7 @@ function ModalDateTimePicker({
12924
12925
  }) : null, /*#__PURE__*/jsxRuntime.jsx(CardModal.Body, {
12925
12926
  children: /*#__PURE__*/jsxRuntime.jsx(DateTimePicker__default, {
12926
12927
  is24Hour: true,
12928
+ timeZoneName: timezoneName,
12927
12929
  minuteInterval: minuteInterval,
12928
12930
  testID: pickerTestID,
12929
12931
  value: currentValue,
@@ -13018,6 +13020,7 @@ const TimePicker = /*#__PURE__*/React.forwardRef(({
13018
13020
  disabled = false,
13019
13021
  stretch,
13020
13022
  value,
13023
+ timezoneName = 'UTC',
13021
13024
  minuteInterval,
13022
13025
  validateButtonLabel,
13023
13026
  isDefaultVisible,
@@ -13059,6 +13062,7 @@ const TimePicker = /*#__PURE__*/React.forwardRef(({
13059
13062
  testID: pickerTestID,
13060
13063
  value: pickerValue,
13061
13064
  minuteInterval: minuteInterval,
13065
+ timeZoneName: timezoneName,
13062
13066
  mode: "time",
13063
13067
  display: "spinner",
13064
13068
  onChange: (event, date) => handleChange(date)
@@ -13067,6 +13071,7 @@ const TimePicker = /*#__PURE__*/React.forwardRef(({
13067
13071
  minuteInterval: minuteInterval,
13068
13072
  title: title,
13069
13073
  testID: modalTestID,
13074
+ timezoneName: timezoneName,
13070
13075
  pickerTestID: pickerTestID,
13071
13076
  value: pickerValue,
13072
13077
  validateButtonLabel: validateButtonLabel,