@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.
@@ -12867,6 +12867,7 @@ function ModalDateTimePicker({
12867
12867
  visible,
12868
12868
  value,
12869
12869
  minuteInterval,
12870
+ timezoneName = 'UTC',
12870
12871
  validateButtonLabel,
12871
12872
  testID,
12872
12873
  pickerTestID,
@@ -12901,6 +12902,7 @@ function ModalDateTimePicker({
12901
12902
  }) : null, /*#__PURE__*/jsx(CardModal.Body, {
12902
12903
  children: /*#__PURE__*/jsx(DateTimePicker, {
12903
12904
  is24Hour: true,
12905
+ timeZoneName: timezoneName,
12904
12906
  minuteInterval: minuteInterval,
12905
12907
  testID: pickerTestID,
12906
12908
  value: currentValue,
@@ -12995,6 +12997,7 @@ const TimePicker = /*#__PURE__*/forwardRef(({
12995
12997
  disabled = false,
12996
12998
  stretch,
12997
12999
  value,
13000
+ timezoneName = 'UTC',
12998
13001
  minuteInterval,
12999
13002
  validateButtonLabel,
13000
13003
  isDefaultVisible,
@@ -13036,6 +13039,7 @@ const TimePicker = /*#__PURE__*/forwardRef(({
13036
13039
  testID: pickerTestID,
13037
13040
  value: pickerValue,
13038
13041
  minuteInterval: minuteInterval,
13042
+ timeZoneName: timezoneName,
13039
13043
  mode: "time",
13040
13044
  display: "spinner",
13041
13045
  onChange: (event, date) => handleChange(date)
@@ -13044,6 +13048,7 @@ const TimePicker = /*#__PURE__*/forwardRef(({
13044
13048
  minuteInterval: minuteInterval,
13045
13049
  title: title,
13046
13050
  testID: modalTestID,
13051
+ timezoneName: timezoneName,
13047
13052
  pickerTestID: pickerTestID,
13048
13053
  value: pickerValue,
13049
13054
  validateButtonLabel: validateButtonLabel,