@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.
@@ -10178,6 +10178,7 @@ function ModalDateTimePicker({
10178
10178
  title,
10179
10179
  visible,
10180
10180
  value,
10181
+ minuteInterval,
10181
10182
  validateButtonLabel,
10182
10183
  testID,
10183
10184
  pickerTestID,
@@ -10212,6 +10213,7 @@ function ModalDateTimePicker({
10212
10213
  }) : null, /*#__PURE__*/jsxRuntime.jsx(CardModal.Body, {
10213
10214
  children: /*#__PURE__*/jsxRuntime.jsx(DateTimePicker__default, {
10214
10215
  is24Hour: true,
10216
+ minuteInterval: minuteInterval,
10215
10217
  testID: pickerTestID,
10216
10218
  value: currentValue,
10217
10219
  mode: "time",
@@ -10305,6 +10307,7 @@ const TimePicker = /*#__PURE__*/React.forwardRef(({
10305
10307
  disabled = false,
10306
10308
  stretch,
10307
10309
  value,
10310
+ minuteInterval,
10308
10311
  validateButtonLabel,
10309
10312
  isDefaultVisible,
10310
10313
  placeholder = '--:--',
@@ -10344,11 +10347,13 @@ const TimePicker = /*#__PURE__*/React.forwardRef(({
10344
10347
  is24Hour: true,
10345
10348
  testID: pickerTestID,
10346
10349
  value: pickerValue,
10350
+ minuteInterval: minuteInterval,
10347
10351
  mode: "time",
10348
10352
  display: "default",
10349
10353
  onChange: (event, date) => handleChange(date)
10350
10354
  }) : null, reactNative.Platform.OS !== 'android' ? /*#__PURE__*/jsxRuntime.jsx(ModalDateTimePicker, {
10351
10355
  visible: isPickerVisible,
10356
+ minuteInterval: minuteInterval,
10352
10357
  title: title,
10353
10358
  testID: modalTestID,
10354
10359
  pickerTestID: pickerTestID,