@ornikar/kitt-universal 23.0.2 → 23.1.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.
@@ -10156,6 +10156,7 @@ function ModalDateTimePicker({
10156
10156
  title,
10157
10157
  visible,
10158
10158
  value,
10159
+ minuteInterval,
10159
10160
  validateButtonLabel,
10160
10161
  testID,
10161
10162
  pickerTestID,
@@ -10190,6 +10191,7 @@ function ModalDateTimePicker({
10190
10191
  }) : null, /*#__PURE__*/jsx(CardModal.Body, {
10191
10192
  children: /*#__PURE__*/jsx(DateTimePicker, {
10192
10193
  is24Hour: true,
10194
+ minuteInterval: minuteInterval,
10193
10195
  testID: pickerTestID,
10194
10196
  value: currentValue,
10195
10197
  mode: "time",
@@ -10283,6 +10285,7 @@ const TimePicker = /*#__PURE__*/forwardRef(({
10283
10285
  disabled = false,
10284
10286
  stretch,
10285
10287
  value,
10288
+ minuteInterval,
10286
10289
  validateButtonLabel,
10287
10290
  isDefaultVisible,
10288
10291
  placeholder = '--:--',
@@ -10322,11 +10325,13 @@ const TimePicker = /*#__PURE__*/forwardRef(({
10322
10325
  is24Hour: true,
10323
10326
  testID: pickerTestID,
10324
10327
  value: pickerValue,
10328
+ minuteInterval: minuteInterval,
10325
10329
  mode: "time",
10326
10330
  display: "default",
10327
10331
  onChange: (event, date) => handleChange(date)
10328
10332
  }) : null, Platform.OS !== 'android' ? /*#__PURE__*/jsx(ModalDateTimePicker, {
10329
10333
  visible: isPickerVisible,
10334
+ minuteInterval: minuteInterval,
10330
10335
  title: title,
10331
10336
  testID: modalTestID,
10332
10337
  pickerTestID: pickerTestID,