@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.
@@ -10106,6 +10106,7 @@ function ModalDateTimePicker({
10106
10106
  title,
10107
10107
  visible,
10108
10108
  value,
10109
+ minuteInterval,
10109
10110
  validateButtonLabel,
10110
10111
  testID,
10111
10112
  pickerTestID,
@@ -10140,6 +10141,7 @@ function ModalDateTimePicker({
10140
10141
  }) : null, /*#__PURE__*/jsx(CardModal.Body, {
10141
10142
  children: /*#__PURE__*/jsx(DateTimePicker, {
10142
10143
  is24Hour: true,
10144
+ minuteInterval: minuteInterval,
10143
10145
  testID: pickerTestID,
10144
10146
  value: currentValue,
10145
10147
  mode: "time",
@@ -10233,6 +10235,7 @@ const TimePicker = /*#__PURE__*/forwardRef(({
10233
10235
  disabled: _disabled = false,
10234
10236
  stretch,
10235
10237
  value,
10238
+ minuteInterval,
10236
10239
  validateButtonLabel,
10237
10240
  isDefaultVisible,
10238
10241
  placeholder: _placeholder = '--:--',
@@ -10272,11 +10275,13 @@ const TimePicker = /*#__PURE__*/forwardRef(({
10272
10275
  is24Hour: true,
10273
10276
  testID: _pickerTestID,
10274
10277
  value: pickerValue,
10278
+ minuteInterval: minuteInterval,
10275
10279
  mode: "time",
10276
10280
  display: "default",
10277
10281
  onChange: (event, date) => handleChange(date)
10278
10282
  }) : null, Platform.OS !== 'android' ? /*#__PURE__*/jsx(ModalDateTimePicker, {
10279
10283
  visible: isPickerVisible,
10284
+ minuteInterval: minuteInterval,
10280
10285
  title: title,
10281
10286
  testID: modalTestID,
10282
10287
  pickerTestID: _pickerTestID,