jest-expo 49.0.0-alpha.3 → 49.0.0-alpha.4
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 +2 -2
- package/src/preset/expoModules.js +103 -231
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jest-expo",
|
|
3
|
-
"version": "49.0.0-alpha.
|
|
3
|
+
"version": "49.0.0-alpha.4",
|
|
4
4
|
"description": "A Jest preset to painlessly test your Expo / React Native apps.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "src",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"url": "https://github.com/expo/expo/issues"
|
|
47
47
|
},
|
|
48
48
|
"homepage": "https://github.com/expo/expo/tree/main/packages/jest-expo",
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "0efde1d91bcf609c94a9f9b57f47afd9ef315e2d"
|
|
50
50
|
}
|
|
@@ -159,7 +159,7 @@ module.exports = {
|
|
|
159
159
|
{ name: 'startObserving', argumentsCount: 0, key: 'startObserving' },
|
|
160
160
|
{ name: 'stopObserving', argumentsCount: 0, key: 'stopObserving' },
|
|
161
161
|
],
|
|
162
|
-
ExpoBlurView: [
|
|
162
|
+
ExpoBlurView: [],
|
|
163
163
|
ExpoBrightness: [
|
|
164
164
|
{ name: 'getBrightnessAsync', argumentsCount: 0, key: 'getBrightnessAsync' },
|
|
165
165
|
{ name: 'getPermissionsAsync', argumentsCount: 0, key: 'getPermissionsAsync' },
|
|
@@ -282,9 +282,9 @@ module.exports = {
|
|
|
282
282
|
key: 'isRootedExperimentalAsync',
|
|
283
283
|
},
|
|
284
284
|
],
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
285
|
+
ExpoDocumentPicker: [
|
|
286
|
+
{ name: 'getDocumentAsync', argumentsCount: 1, key: 'getDocumentAsync' },
|
|
287
|
+
],
|
|
288
288
|
ExpoFontLoader: [{ name: 'loadAsync', argumentsCount: 2, key: 0 }],
|
|
289
289
|
ExpoHaptics: [
|
|
290
290
|
{ name: 'impactAsync', argumentsCount: 1, key: 'impactAsync' },
|
|
@@ -320,6 +320,8 @@ module.exports = {
|
|
|
320
320
|
{ name: 'getCalendars', argumentsCount: 0, key: 'getCalendars' },
|
|
321
321
|
{ name: 'getLocales', argumentsCount: 0, key: 'getLocales' },
|
|
322
322
|
{ name: 'getLocalizationAsync', argumentsCount: 0, key: 'getLocalizationAsync' },
|
|
323
|
+
{ name: 'startObserving', argumentsCount: 0, key: 'startObserving' },
|
|
324
|
+
{ name: 'stopObserving', argumentsCount: 0, key: 'stopObserving' },
|
|
323
325
|
],
|
|
324
326
|
ExpoLocation: [
|
|
325
327
|
{ name: 'watchPositionImplAsync', argumentsCount: 2, key: 0 },
|
|
@@ -504,24 +506,6 @@ module.exports = {
|
|
|
504
506
|
{ name: 'isAvailableAsync', argumentsCount: 0, key: 2 },
|
|
505
507
|
{ name: 'getStepCountAsync', argumentsCount: 2, key: 3 },
|
|
506
508
|
],
|
|
507
|
-
ExponentPrint: [
|
|
508
|
-
{ name: 'print', argumentsCount: 1, key: 0 },
|
|
509
|
-
{ name: 'selectPrinter', argumentsCount: 0, key: 1 },
|
|
510
|
-
{ name: 'printToFileAsync', argumentsCount: 1, key: 2 },
|
|
511
|
-
],
|
|
512
|
-
ExponentSpeech: [
|
|
513
|
-
{ name: 'speak', argumentsCount: 3, key: 0 },
|
|
514
|
-
{ name: 'stop', argumentsCount: 0, key: 1 },
|
|
515
|
-
{ name: 'pause', argumentsCount: 0, key: 2 },
|
|
516
|
-
{ name: 'resume', argumentsCount: 0, key: 3 },
|
|
517
|
-
{ name: 'isSpeaking', argumentsCount: 0, key: 4 },
|
|
518
|
-
{ name: 'getVoices', argumentsCount: 0, key: 5 },
|
|
519
|
-
],
|
|
520
|
-
ExponentSQLite: [
|
|
521
|
-
{ name: 'close', argumentsCount: 1, key: 0 },
|
|
522
|
-
{ name: 'exec', argumentsCount: 3, key: 1 },
|
|
523
|
-
{ name: 'deleteAsync', argumentsCount: 1, key: 2 },
|
|
524
|
-
],
|
|
525
509
|
ExpoNetwork: [
|
|
526
510
|
{ name: 'getIpAddressAsync', argumentsCount: 0, key: 'getIpAddressAsync' },
|
|
527
511
|
{ name: 'getNetworkStateAsync', argumentsCount: 0, key: 'getNetworkStateAsync' },
|
|
@@ -558,6 +542,11 @@ module.exports = {
|
|
|
558
542
|
{ name: 'getAsync', argumentsCount: 1, key: 0 },
|
|
559
543
|
{ name: 'askAsync', argumentsCount: 1, key: 1 },
|
|
560
544
|
],
|
|
545
|
+
ExpoPrint: [
|
|
546
|
+
{ name: 'print', argumentsCount: 1, key: 'print' },
|
|
547
|
+
{ name: 'printToFileAsync', argumentsCount: 1, key: 'printToFileAsync' },
|
|
548
|
+
{ name: 'selectPrinter', argumentsCount: 0, key: 'selectPrinter' },
|
|
549
|
+
],
|
|
561
550
|
ExpoPushTokenManager: [
|
|
562
551
|
{ name: 'getDevicePushTokenAsync', argumentsCount: 0, key: 0 },
|
|
563
552
|
{ name: 'unregisterForNotificationsAsync', argumentsCount: 0, key: 1 },
|
|
@@ -575,27 +564,50 @@ module.exports = {
|
|
|
575
564
|
{ name: 'allowScreenCapture', argumentsCount: 0, key: 1 },
|
|
576
565
|
],
|
|
577
566
|
ExpoScreenOrientation: [
|
|
578
|
-
{ name: '
|
|
579
|
-
{ name: '
|
|
580
|
-
{
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
567
|
+
{ name: 'getOrientationAsync', argumentsCount: 0, key: 'getOrientationAsync' },
|
|
568
|
+
{ name: 'getOrientationLockAsync', argumentsCount: 0, key: 'getOrientationLockAsync' },
|
|
569
|
+
{
|
|
570
|
+
name: 'getPlatformOrientationLockAsync',
|
|
571
|
+
argumentsCount: 0,
|
|
572
|
+
key: 'getPlatformOrientationLockAsync',
|
|
573
|
+
},
|
|
574
|
+
{ name: 'lockAsync', argumentsCount: 1, key: 'lockAsync' },
|
|
575
|
+
{ name: 'lockPlatformAsync', argumentsCount: 1, key: 'lockPlatformAsync' },
|
|
576
|
+
{ name: 'startObserving', argumentsCount: 0, key: 'startObserving' },
|
|
577
|
+
{ name: 'stopObserving', argumentsCount: 0, key: 'stopObserving' },
|
|
578
|
+
{
|
|
579
|
+
name: 'supportsOrientationLockAsync',
|
|
580
|
+
argumentsCount: 1,
|
|
581
|
+
key: 'supportsOrientationLockAsync',
|
|
582
|
+
},
|
|
584
583
|
],
|
|
585
584
|
ExpoSecureStore: [
|
|
586
|
-
{ name: '
|
|
587
|
-
{ name: '
|
|
588
|
-
{ name: 'setValueWithKeyAsync', argumentsCount: 3, key:
|
|
585
|
+
{ name: 'deleteValueWithKeyAsync', argumentsCount: 2, key: 'deleteValueWithKeyAsync' },
|
|
586
|
+
{ name: 'getValueWithKeyAsync', argumentsCount: 2, key: 'getValueWithKeyAsync' },
|
|
587
|
+
{ name: 'setValueWithKeyAsync', argumentsCount: 3, key: 'setValueWithKeyAsync' },
|
|
589
588
|
],
|
|
590
|
-
ExpoSharing: [{ name: 'shareAsync', argumentsCount: 2, key:
|
|
589
|
+
ExpoSharing: [{ name: 'shareAsync', argumentsCount: 2, key: 'shareAsync' }],
|
|
591
590
|
ExpoSMS: [
|
|
592
591
|
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
593
592
|
{ name: 'sendSMSAsync', argumentsCount: 3, key: 'sendSMSAsync' },
|
|
594
593
|
],
|
|
594
|
+
ExpoSpeech: [
|
|
595
|
+
{ name: 'getVoices', argumentsCount: 0, key: 'getVoices' },
|
|
596
|
+
{ name: 'isSpeaking', argumentsCount: 0, key: 'isSpeaking' },
|
|
597
|
+
{ name: 'pause', argumentsCount: 0, key: 'pause' },
|
|
598
|
+
{ name: 'resume', argumentsCount: 0, key: 'resume' },
|
|
599
|
+
{ name: 'speak', argumentsCount: 3, key: 'speak' },
|
|
600
|
+
{ name: 'stop', argumentsCount: 0, key: 'stop' },
|
|
601
|
+
],
|
|
595
602
|
ExpoSplashScreen: [
|
|
596
603
|
{ name: 'hideAsync', argumentsCount: 0, key: 0 },
|
|
597
604
|
{ name: 'preventAutoHideAsync', argumentsCount: 0, key: 1 },
|
|
598
605
|
],
|
|
606
|
+
ExpoSQLite: [
|
|
607
|
+
{ name: 'close', argumentsCount: 1, key: 'close' },
|
|
608
|
+
{ name: 'deleteAsync', argumentsCount: 1, key: 'deleteAsync' },
|
|
609
|
+
{ name: 'exec', argumentsCount: 3, key: 'exec' },
|
|
610
|
+
],
|
|
599
611
|
ExpoStoreReview: [
|
|
600
612
|
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
601
613
|
{ name: 'requestReview', argumentsCount: 0, key: 'requestReview' },
|
|
@@ -618,11 +630,13 @@ module.exports = {
|
|
|
618
630
|
{ name: 'requestPermissionsAsync', argumentsCount: 0, key: 'requestPermissionsAsync' },
|
|
619
631
|
],
|
|
620
632
|
ExpoUpdates: [
|
|
621
|
-
{ name: '
|
|
622
|
-
{ name: '
|
|
623
|
-
{ name: '
|
|
624
|
-
{ name: '
|
|
625
|
-
{ name: '
|
|
633
|
+
{ name: 'checkForUpdateAsync', argumentsCount: 0, key: 'checkForUpdateAsync' },
|
|
634
|
+
{ name: 'clearLogEntriesAsync', argumentsCount: 0, key: 'clearLogEntriesAsync' },
|
|
635
|
+
{ name: 'fetchUpdateAsync', argumentsCount: 0, key: 'fetchUpdateAsync' },
|
|
636
|
+
{ name: 'getExtraParamsAsync', argumentsCount: 0, key: 'getExtraParamsAsync' },
|
|
637
|
+
{ name: 'readLogEntriesAsync', argumentsCount: 1, key: 'readLogEntriesAsync' },
|
|
638
|
+
{ name: 'reload', argumentsCount: 0, key: 'reload' },
|
|
639
|
+
{ name: 'setExtraParamAsync', argumentsCount: 2, key: 'setExtraParamAsync' },
|
|
626
640
|
],
|
|
627
641
|
ExpoVideoThumbnails: [{ name: 'getThumbnail', argumentsCount: 2, key: 'getThumbnail' }],
|
|
628
642
|
ExpoVideoView: [{ name: 'setFullscreen', argumentsCount: 2, key: 'setFullscreen' }],
|
|
@@ -677,6 +691,7 @@ module.exports = {
|
|
|
677
691
|
ExpoDevice: {
|
|
678
692
|
brand: { type: 'string' },
|
|
679
693
|
deviceName: { type: 'string' },
|
|
694
|
+
deviceType: { type: 'number', mock: 1 },
|
|
680
695
|
deviceYearClass: { type: 'number', mock: 2023 },
|
|
681
696
|
isDevice: { type: 'boolean', mock: false },
|
|
682
697
|
manufacturer: { type: 'string' },
|
|
@@ -689,11 +704,7 @@ module.exports = {
|
|
|
689
704
|
supportedCpuArchitectures: { type: 'array' },
|
|
690
705
|
totalMemory: { type: 'number', mock: 17179869184 },
|
|
691
706
|
},
|
|
692
|
-
|
|
693
|
-
Classifications: { type: 'object' },
|
|
694
|
-
Landmarks: { type: 'object' },
|
|
695
|
-
Mode: { type: 'object' },
|
|
696
|
-
},
|
|
707
|
+
ExpoDocumentPicker: {},
|
|
697
708
|
ExpoHaptics: {},
|
|
698
709
|
ExpoImage: {},
|
|
699
710
|
ExpoImageManipulator: {},
|
|
@@ -760,9 +771,10 @@ module.exports = {
|
|
|
760
771
|
},
|
|
761
772
|
ExponentGLView: {},
|
|
762
773
|
ExponentImagePicker: {},
|
|
763
|
-
ExponentPrint: { Orientation: { type: 'object' } },
|
|
764
774
|
ExpoNetwork: {},
|
|
775
|
+
ExpoPrint: {},
|
|
765
776
|
ExpoRandom: {},
|
|
777
|
+
ExpoScreenOrientation: {},
|
|
766
778
|
ExpoSecureStore: {
|
|
767
779
|
AFTER_FIRST_UNLOCK: { type: 'number', mock: 0 },
|
|
768
780
|
AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY: { type: 'number', mock: 1 },
|
|
@@ -770,15 +782,19 @@ module.exports = {
|
|
|
770
782
|
ALWAYS_THIS_DEVICE_ONLY: { type: 'number', mock: 4 },
|
|
771
783
|
WHEN_PASSCODE_SET_THIS_DEVICE_ONLY: { type: 'number', mock: 3 },
|
|
772
784
|
WHEN_UNLOCKED: { type: 'number', mock: 5 },
|
|
773
|
-
WHEN_UNLOCKED_THIS_DEVICE_ONLY: { type: 'number', mock:
|
|
785
|
+
WHEN_UNLOCKED_THIS_DEVICE_ONLY: { type: 'number', mock: 3 },
|
|
774
786
|
},
|
|
787
|
+
ExpoSharing: {},
|
|
775
788
|
ExpoSMS: {},
|
|
789
|
+
ExpoSpeech: {},
|
|
790
|
+
ExpoSQLite: {},
|
|
776
791
|
ExpoStoreReview: {},
|
|
777
792
|
ExpoSystemUI: {},
|
|
778
793
|
ExpoTaskManager: { EVENT_NAME: { type: 'string' } },
|
|
779
794
|
ExpoTrackingTransparency: {},
|
|
780
795
|
ExpoUpdates: {
|
|
781
796
|
channel: { type: 'string' },
|
|
797
|
+
checkAutomatically: { type: 'string' },
|
|
782
798
|
isEmbeddedLaunch: { type: 'boolean', mock: false },
|
|
783
799
|
isEnabled: { type: 'boolean', mock: false },
|
|
784
800
|
isMissingRuntimeVersion: { type: 'boolean', mock: false },
|
|
@@ -801,6 +817,16 @@ module.exports = {
|
|
|
801
817
|
ExpoAppleAuthentication: { propsNames: ['buttonStyle', 'buttonType', 'cornerRadius'] },
|
|
802
818
|
ExpoBarCodeScanner: { propsNames: ['barCodeTypes', 'type'] },
|
|
803
819
|
ExpoBlurView: { propsNames: ['intensity', 'tint'] },
|
|
820
|
+
ExpoClipboard: {
|
|
821
|
+
propsNames: [
|
|
822
|
+
'acceptedContentTypes',
|
|
823
|
+
'backgroundColor',
|
|
824
|
+
'cornerStyle',
|
|
825
|
+
'displayMode',
|
|
826
|
+
'foregroundColor',
|
|
827
|
+
'imageOptions',
|
|
828
|
+
],
|
|
829
|
+
},
|
|
804
830
|
ExpoImage: {
|
|
805
831
|
propsNames: [
|
|
806
832
|
'accessibilityLabel',
|
|
@@ -813,6 +839,7 @@ module.exports = {
|
|
|
813
839
|
'placeholder',
|
|
814
840
|
'placeholderContentFit',
|
|
815
841
|
'priority',
|
|
842
|
+
'recyclingKey',
|
|
816
843
|
'source',
|
|
817
844
|
'tintColor',
|
|
818
845
|
'transition',
|
|
@@ -829,33 +856,22 @@ module.exports = {
|
|
|
829
856
|
'flashMode',
|
|
830
857
|
'focusDepth',
|
|
831
858
|
'pictureSize',
|
|
859
|
+
'responsiveOrientationWhenOrientationLocked',
|
|
832
860
|
'type',
|
|
833
861
|
'whiteBalance',
|
|
834
862
|
'zoom',
|
|
835
863
|
],
|
|
836
864
|
},
|
|
837
|
-
ExponentGLView: { propsNames: ['msaaSamples'] },
|
|
865
|
+
ExponentGLView: { propsNames: ['enableExperimentalWorkletSupport', 'msaaSamples'] },
|
|
838
866
|
ExpoVideoView: { propsNames: ['resizeMode', 'source', 'status', 'useNativeControls'] },
|
|
839
867
|
},
|
|
840
868
|
},
|
|
841
869
|
},
|
|
842
870
|
ReanimatedModule: {
|
|
843
871
|
addListener: { type: 'function', functionType: 'async' },
|
|
844
|
-
animateNextTransition: { type: 'function', functionType: 'async' },
|
|
845
|
-
attachEvent: { type: 'function', functionType: 'async' },
|
|
846
|
-
connectNodes: { type: 'function', functionType: 'async' },
|
|
847
|
-
connectNodeToView: { type: 'function', functionType: 'async' },
|
|
848
|
-
createNode: { type: 'function', functionType: 'async' },
|
|
849
|
-
detachEvent: { type: 'function', functionType: 'async' },
|
|
850
|
-
disconnectNodeFromView: { type: 'function', functionType: 'async' },
|
|
851
|
-
disconnectNodes: { type: 'function', functionType: 'async' },
|
|
852
|
-
dropNode: { type: 'function', functionType: 'async' },
|
|
853
872
|
getConstants: { type: 'function' },
|
|
854
|
-
|
|
855
|
-
installTurboModule: { type: 'function', functionType: 'async' },
|
|
873
|
+
installTurboModule: { type: 'function', functionType: 'sync' },
|
|
856
874
|
removeListeners: { type: 'function', functionType: 'async' },
|
|
857
|
-
setValue: { type: 'function', functionType: 'async' },
|
|
858
|
-
triggerRender: { type: 'function', functionType: 'async' },
|
|
859
875
|
},
|
|
860
876
|
RNAWSCognito: {
|
|
861
877
|
computeModPow: { type: 'function', functionType: 'async' },
|
|
@@ -944,7 +960,7 @@ module.exports = {
|
|
|
944
960
|
setPageWithoutAnimation: { type: 'function', functionType: 'async' },
|
|
945
961
|
setScrollEnabled: { type: 'function', functionType: 'async' },
|
|
946
962
|
},
|
|
947
|
-
|
|
963
|
+
RNCWebView: {
|
|
948
964
|
getConstants: { type: 'function' },
|
|
949
965
|
goBack: { type: 'function', functionType: 'async' },
|
|
950
966
|
goForward: { type: 'function', functionType: 'async' },
|
|
@@ -952,7 +968,7 @@ module.exports = {
|
|
|
952
968
|
postMessage: { type: 'function', functionType: 'async' },
|
|
953
969
|
reload: { type: 'function', functionType: 'async' },
|
|
954
970
|
requestFocus: { type: 'function', functionType: 'async' },
|
|
955
|
-
|
|
971
|
+
shouldStartLoadWithLockIdentifier: { type: 'function', functionType: 'async' },
|
|
956
972
|
stopLoading: { type: 'function', functionType: 'async' },
|
|
957
973
|
},
|
|
958
974
|
RNDateTimePickerManager: {},
|
|
@@ -986,122 +1002,32 @@ module.exports = {
|
|
|
986
1002
|
RNSScreenStackHeaderConfigManager: {},
|
|
987
1003
|
RNSScreenStackHeaderSubviewManager: {},
|
|
988
1004
|
RNSScreenStackManager: {},
|
|
989
|
-
RNSSearchBarManager: {
|
|
990
|
-
|
|
991
|
-
|
|
1005
|
+
RNSSearchBarManager: {
|
|
1006
|
+
blur: { type: 'function', functionType: 'async' },
|
|
1007
|
+
clearText: { type: 'function', functionType: 'async' },
|
|
1008
|
+
focus: { type: 'function', functionType: 'async' },
|
|
992
1009
|
getConstants: { type: 'function' },
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
996
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
997
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
998
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
999
|
-
},
|
|
1000
|
-
RNSVGClipPathManager: {
|
|
1001
|
-
getBBox: { type: 'function', functionType: 'sync' },
|
|
1002
|
-
getConstants: { type: 'function' },
|
|
1003
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1004
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1005
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1006
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1007
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1008
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1010
|
+
setText: { type: 'function', functionType: 'async' },
|
|
1011
|
+
toggleCancelButton: { type: 'function', functionType: 'async' },
|
|
1009
1012
|
},
|
|
1013
|
+
RNSVGCircleManager: {},
|
|
1014
|
+
RNSVGClipPathManager: {},
|
|
1010
1015
|
RNSVGDefsManager: {},
|
|
1011
|
-
RNSVGEllipseManager: {
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1016
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1017
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1018
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1019
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1020
|
-
},
|
|
1021
|
-
RNSVGForeignObjectManager: {
|
|
1022
|
-
getBBox: { type: 'function', functionType: 'sync' },
|
|
1023
|
-
getConstants: { type: 'function' },
|
|
1024
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1025
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1026
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1027
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1028
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1029
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1030
|
-
},
|
|
1031
|
-
RNSVGGroupManager: {
|
|
1032
|
-
getBBox: { type: 'function', functionType: 'sync' },
|
|
1033
|
-
getConstants: { type: 'function' },
|
|
1034
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1035
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1036
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1037
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1038
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1039
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1040
|
-
},
|
|
1041
|
-
RNSVGImageManager: {
|
|
1042
|
-
getBBox: { type: 'function', functionType: 'sync' },
|
|
1043
|
-
getConstants: { type: 'function' },
|
|
1044
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1045
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1046
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1047
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1048
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1049
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1050
|
-
},
|
|
1016
|
+
RNSVGEllipseManager: {},
|
|
1017
|
+
RNSVGForeignObjectManager: {},
|
|
1018
|
+
RNSVGGroupManager: {},
|
|
1019
|
+
RNSVGImageManager: {},
|
|
1051
1020
|
RNSVGLinearGradientManager: {},
|
|
1052
|
-
RNSVGLineManager: {
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1056
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1057
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1058
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1059
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1060
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1061
|
-
},
|
|
1062
|
-
RNSVGMarkerManager: {
|
|
1063
|
-
getBBox: { type: 'function', functionType: 'sync' },
|
|
1064
|
-
getConstants: { type: 'function' },
|
|
1065
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1066
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1067
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1068
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1069
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1070
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1071
|
-
},
|
|
1072
|
-
RNSVGMaskManager: {
|
|
1073
|
-
getBBox: { type: 'function', functionType: 'sync' },
|
|
1074
|
-
getConstants: { type: 'function' },
|
|
1075
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1076
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1077
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1078
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1079
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1080
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1081
|
-
},
|
|
1021
|
+
RNSVGLineManager: {},
|
|
1022
|
+
RNSVGMarkerManager: {},
|
|
1023
|
+
RNSVGMaskManager: {},
|
|
1082
1024
|
RNSVGNodeManager: {},
|
|
1083
|
-
RNSVGPathManager: {
|
|
1084
|
-
|
|
1085
|
-
getConstants: { type: 'function' },
|
|
1086
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1087
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1088
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1089
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1090
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1091
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1092
|
-
},
|
|
1093
|
-
RNSVGPatternManager: {
|
|
1094
|
-
getBBox: { type: 'function', functionType: 'sync' },
|
|
1095
|
-
getConstants: { type: 'function' },
|
|
1096
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1097
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1098
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1099
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1100
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1101
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1102
|
-
},
|
|
1025
|
+
RNSVGPathManager: {},
|
|
1026
|
+
RNSVGPatternManager: {},
|
|
1103
1027
|
RNSVGRadialGradientManager: {},
|
|
1104
|
-
RNSVGRectManager: {
|
|
1028
|
+
RNSVGRectManager: {},
|
|
1029
|
+
RNSVGRenderableManager: {},
|
|
1030
|
+
RNSVGRenderableModule: {
|
|
1105
1031
|
getBBox: { type: 'function', functionType: 'sync' },
|
|
1106
1032
|
getConstants: { type: 'function' },
|
|
1107
1033
|
getCTM: { type: 'function', functionType: 'sync' },
|
|
@@ -1111,70 +1037,16 @@ module.exports = {
|
|
|
1111
1037
|
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1112
1038
|
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1113
1039
|
},
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
getConstants: { type: 'function' },
|
|
1117
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1118
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1119
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1120
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1121
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1122
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1123
|
-
},
|
|
1124
|
-
RNSVGSvgViewManager: {
|
|
1040
|
+
RNSVGSvgViewManager: {},
|
|
1041
|
+
RNSVGSvgViewModule: {
|
|
1125
1042
|
getConstants: { type: 'function' },
|
|
1126
1043
|
toDataURL: { type: 'function', functionType: 'async' },
|
|
1127
1044
|
},
|
|
1128
|
-
RNSVGSymbolManager: {
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1134
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1135
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1136
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1137
|
-
},
|
|
1138
|
-
RNSVGTextManager: {
|
|
1139
|
-
getBBox: { type: 'function', functionType: 'sync' },
|
|
1140
|
-
getConstants: { type: 'function' },
|
|
1141
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1142
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1143
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1144
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1145
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1146
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1147
|
-
},
|
|
1148
|
-
RNSVGTextPathManager: {
|
|
1149
|
-
getBBox: { type: 'function', functionType: 'sync' },
|
|
1150
|
-
getConstants: { type: 'function' },
|
|
1151
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1152
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1153
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1154
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1155
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1156
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1157
|
-
},
|
|
1158
|
-
RNSVGTSpanManager: {
|
|
1159
|
-
getBBox: { type: 'function', functionType: 'sync' },
|
|
1160
|
-
getConstants: { type: 'function' },
|
|
1161
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1162
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1163
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1164
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1165
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1166
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1167
|
-
},
|
|
1168
|
-
RNSVGUseManager: {
|
|
1169
|
-
getBBox: { type: 'function', functionType: 'sync' },
|
|
1170
|
-
getConstants: { type: 'function' },
|
|
1171
|
-
getCTM: { type: 'function', functionType: 'sync' },
|
|
1172
|
-
getPointAtLength: { type: 'function', functionType: 'sync' },
|
|
1173
|
-
getScreenCTM: { type: 'function', functionType: 'sync' },
|
|
1174
|
-
getTotalLength: { type: 'function', functionType: 'sync' },
|
|
1175
|
-
isPointInFill: { type: 'function', functionType: 'sync' },
|
|
1176
|
-
isPointInStroke: { type: 'function', functionType: 'sync' },
|
|
1177
|
-
},
|
|
1045
|
+
RNSVGSymbolManager: {},
|
|
1046
|
+
RNSVGTextManager: {},
|
|
1047
|
+
RNSVGTextPathManager: {},
|
|
1048
|
+
RNSVGTSpanManager: {},
|
|
1049
|
+
RNSVGUseManager: {},
|
|
1178
1050
|
RNViewShot: {
|
|
1179
1051
|
captureRef: { type: 'function', functionType: 'promise' },
|
|
1180
1052
|
captureScreen: { type: 'function', functionType: 'promise' },
|