@ornikar/kitt-universal 29.3.0 → 29.3.1

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.
@@ -6377,20 +6377,16 @@ function PlatformDateTimePicker({
6377
6377
  testID,
6378
6378
  onChange
6379
6379
  }) {
6380
- const theme = useTheme();
6381
6380
  const displayMode = getDatePickerDisplayMode();
6382
- const iosProps = reactNative.Platform.OS === 'ios' ? {
6383
- textColor: theme.kitt.colors.primary
6384
- } : {};
6385
6381
  return /*#__PURE__*/jsxRuntime.jsx(DateTimePicker__default, {
6386
6382
  is24Hour: true,
6387
6383
  testID: testID,
6388
6384
  value: value || defaultDate,
6389
6385
  mode: "date",
6386
+ themeVariant: "light",
6390
6387
  maximumDate: maximumDate,
6391
6388
  minimumDate: minimuDate,
6392
6389
  display: displayMode,
6393
- ...iosProps,
6394
6390
  onChange: (_event, date) => onChange(date)
6395
6391
  });
6396
6392
  }
@@ -13195,6 +13191,7 @@ function ModalDateTimePicker({
13195
13191
  minuteInterval: minuteInterval,
13196
13192
  testID: pickerTestID,
13197
13193
  value: currentValue,
13194
+ themeVariant: "light",
13198
13195
  mode: "time",
13199
13196
  display: reactNative.Platform.OS === 'ios' ? 'spinner' : 'default',
13200
13197
  onChange: (event, date) => handleChange(date)