@planningcenter/emoji-keyboard 3.42.2 → 3.42.3-qa-staging.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@planningcenter/emoji-keyboard",
3
- "version": "3.42.2",
3
+ "version": "3.42.3-qa-staging.1",
4
4
  "description": "Vendored fork of rn-emoji-keyboard (MIT, The Widlarz Group) for Planning Center Chat",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -25,18 +25,18 @@
25
25
  "react-native-safe-area-context": ">=4.0.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@react-native/eslint-config": "~0.83.0",
28
+ "@react-native/eslint-config": "~0.86.0",
29
29
  "@types/jest": "^29.5.14",
30
- "@typescript-eslint/parser": "^8.36.0",
30
+ "@typescript-eslint/parser": "^8.63.0",
31
31
  "eslint": "8.57.1",
32
32
  "eslint-plugin-react-compiler": "^19.1.0-rc.2",
33
- "expo-module-scripts": "^55.0.0",
33
+ "expo-module-scripts": "^56.0.3",
34
34
  "jest": "^29.7.0",
35
35
  "prettier": "^3.4.2",
36
- "react": "19.2.0",
37
- "react-native": "0.83.6",
38
- "react-native-safe-area-context": "~5.6.2",
39
- "typescript": "~5.9.2"
36
+ "react": "19.2.3",
37
+ "react-native": "0.86.0",
38
+ "react-native-safe-area-context": "~5.7.0",
39
+ "typescript": "~6.0.3"
40
40
  },
41
- "gitHead": "c67ad284f4c7047831a37cc7826ff827e0637f2d"
41
+ "gitHead": "48ede676640452ac44550983b226a93e9ec697dc"
42
42
  }
@@ -1,4 +1,3 @@
1
- import * as React from 'react'
2
1
  import { EmojiStaticKeyboard } from './components/EmojiStaticKeyboard'
3
2
  import type { KeyboardProps } from './contexts/KeyboardContext'
4
3
  import { KeyboardProvider } from './contexts/KeyboardProvider'
@@ -1,4 +1,3 @@
1
- import * as React from 'react'
2
1
  import { Image } from 'react-native'
3
2
 
4
3
  type Props = {
@@ -1,4 +1,3 @@
1
- import * as React from 'react'
2
1
  import { Image, type ImageSourcePropType } from 'react-native'
3
2
 
4
3
  type Props = {
@@ -1,4 +1,4 @@
1
- import React, { type ReactNode } from 'react'
1
+ import type { ReactNode } from 'react'
2
2
  import { View, type ViewProps } from 'react-native'
3
3
  import { SafeAreaView } from 'react-native-safe-area-context'
4
4
 
@@ -1,5 +1,3 @@
1
- import * as React from 'react'
2
-
3
1
  import PngIcon from '../assets/icons/PngIcon'
4
2
  import type { IconNames } from '../types'
5
3
  import { exhaustiveTypeCheck } from '../utils/exhaustiveTypeCheck'