@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.
@@ -12893,6 +12893,7 @@ function ModalDateTimePicker({
12893
12893
  visible,
12894
12894
  value,
12895
12895
  minuteInterval,
12896
+ timezoneName = 'UTC',
12896
12897
  validateButtonLabel,
12897
12898
  testID,
12898
12899
  pickerTestID,
@@ -12927,6 +12928,7 @@ function ModalDateTimePicker({
12927
12928
  }) : null, /*#__PURE__*/jsx(CardModal.Body, {
12928
12929
  children: /*#__PURE__*/jsx(DateTimePicker, {
12929
12930
  is24Hour: true,
12931
+ timeZoneName: timezoneName,
12930
12932
  minuteInterval: minuteInterval,
12931
12933
  testID: pickerTestID,
12932
12934
  value: currentValue,
@@ -13021,6 +13023,7 @@ const TimePicker = /*#__PURE__*/forwardRef(({
13021
13023
  disabled: _disabled = false,
13022
13024
  stretch,
13023
13025
  value,
13026
+ timezoneName: _timezoneName = 'UTC',
13024
13027
  minuteInterval,
13025
13028
  validateButtonLabel,
13026
13029
  isDefaultVisible,
@@ -13062,6 +13065,7 @@ const TimePicker = /*#__PURE__*/forwardRef(({
13062
13065
  testID: _pickerTestID,
13063
13066
  value: pickerValue,
13064
13067
  minuteInterval: minuteInterval,
13068
+ timeZoneName: _timezoneName,
13065
13069
  mode: "time",
13066
13070
  display: "spinner",
13067
13071
  onChange: (event, date) => handleChange(date)
@@ -13070,6 +13074,7 @@ const TimePicker = /*#__PURE__*/forwardRef(({
13070
13074
  minuteInterval: minuteInterval,
13071
13075
  title: title,
13072
13076
  testID: modalTestID,
13077
+ timezoneName: _timezoneName,
13073
13078
  pickerTestID: _pickerTestID,
13074
13079
  value: pickerValue,
13075
13080
  validateButtonLabel: validateButtonLabel,