@apps-in-toss/web-framework 2.6.0 → 2.6.2
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/dist/prebuilt/dev.android.rn84.js +252 -304
- package/dist/prebuilt/dev.ios.rn84.js +252 -304
- package/dist/prebuilt/prod.android.rn72.js +115 -255
- package/dist/prebuilt/prod.android.rn84.js +115 -255
- package/dist/prebuilt/prod.ios.rn72.js +115 -255
- package/dist/prebuilt/prod.ios.rn84.js +115 -255
- package/package.json +8 -8
|
@@ -11790,6 +11790,31 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11790
11790
|
});
|
|
11791
11791
|
return unregisterCallbacks;
|
|
11792
11792
|
}
|
|
11793
|
+
function requestSubscriptionPurchase(params) {
|
|
11794
|
+
var options = params.options, onEvent = params.onEvent, onError = params.onError;
|
|
11795
|
+
var sku = options.sku, offerId = options.offerId;
|
|
11796
|
+
var unregisterCallbacks = INTERNAL__appBridgeHandler.invokeAppBridgeMethod("requestSubscriptionPurchase", {
|
|
11797
|
+
sku,
|
|
11798
|
+
offerId: offerId !== null && offerId !== void 0 ? offerId : null
|
|
11799
|
+
}, {
|
|
11800
|
+
onPurchased: function(params2) {
|
|
11801
|
+
onEvent({
|
|
11802
|
+
type: "purchased",
|
|
11803
|
+
data: params2
|
|
11804
|
+
});
|
|
11805
|
+
},
|
|
11806
|
+
onSuccess: function(result) {
|
|
11807
|
+
onEvent({
|
|
11808
|
+
type: "success",
|
|
11809
|
+
data: result
|
|
11810
|
+
});
|
|
11811
|
+
},
|
|
11812
|
+
onError: function(error) {
|
|
11813
|
+
onError(error);
|
|
11814
|
+
}
|
|
11815
|
+
});
|
|
11816
|
+
return unregisterCallbacks;
|
|
11817
|
+
}
|
|
11793
11818
|
function createOneTimePurchaseOrder(params) {
|
|
11794
11819
|
var _options_sku;
|
|
11795
11820
|
var isIAPSupported = isMinVersionSupported({
|
|
@@ -45988,38 +46013,6 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45988
46013
|
handler
|
|
45989
46014
|
]);
|
|
45990
46015
|
}
|
|
45991
|
-
function useCloseConfirm() {
|
|
45992
|
-
var brandDisplayName = getAppsInTossGlobals().brandDisplayName;
|
|
45993
|
-
var openConfirm = useDialog().openConfirm;
|
|
45994
|
-
return (0, import_react192.useCallback)(function(param) {
|
|
45995
|
-
var onEntered = param.onEntered;
|
|
45996
|
-
return _async_to_generator(function() {
|
|
45997
|
-
return __generator(this, function(_state) {
|
|
45998
|
-
switch (_state.label) {
|
|
45999
|
-
case 0:
|
|
46000
|
-
return [
|
|
46001
|
-
4,
|
|
46002
|
-
openConfirm({
|
|
46003
|
-
title: "".concat(josa(brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
46004
|
-
leftButton: "\uB2EB\uAE30",
|
|
46005
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46006
|
-
closeOnDimmerClick: true,
|
|
46007
|
-
onEntered
|
|
46008
|
-
})
|
|
46009
|
-
];
|
|
46010
|
-
case 1:
|
|
46011
|
-
return [
|
|
46012
|
-
2,
|
|
46013
|
-
_state.sent()
|
|
46014
|
-
];
|
|
46015
|
-
}
|
|
46016
|
-
});
|
|
46017
|
-
})();
|
|
46018
|
-
}, [
|
|
46019
|
-
brandDisplayName,
|
|
46020
|
-
openConfirm
|
|
46021
|
-
]);
|
|
46022
|
-
}
|
|
46023
46016
|
function createEvent(event) {
|
|
46024
46017
|
return {
|
|
46025
46018
|
name: event,
|
|
@@ -46073,30 +46066,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46073
46066
|
})
|
|
46074
46067
|
});
|
|
46075
46068
|
};
|
|
46076
|
-
var logClosePopupShow = function() {
|
|
46077
|
-
sendLog({
|
|
46078
|
-
log_name: CLOSE_POPUP_SHOW_LOG_NAME,
|
|
46079
|
-
log_type: "popup",
|
|
46080
|
-
params: _object_spread_props(_object_spread({}, baseParams), {
|
|
46081
|
-
schema_id: CLOSE_POPUP_SHOW_SCHEMA_ID
|
|
46082
|
-
})
|
|
46083
|
-
});
|
|
46084
|
-
};
|
|
46085
|
-
var logClosePopupCtaClick = function(confirm) {
|
|
46086
|
-
sendLog({
|
|
46087
|
-
log_name: CLOSE_POPUP_CTA_CLICK_LOG_NAME,
|
|
46088
|
-
log_type: "event",
|
|
46089
|
-
params: _object_spread_props(_object_spread({}, baseParams), {
|
|
46090
|
-
close_yn: confirm ? "Y" : "N",
|
|
46091
|
-
schema_id: CLOSE_POPUP_CTA_CLICK_SCHEMA_ID,
|
|
46092
|
-
event_type: "click"
|
|
46093
|
-
})
|
|
46094
|
-
});
|
|
46095
|
-
};
|
|
46096
46069
|
return {
|
|
46097
46070
|
navBarImpression: logNavBarImpression,
|
|
46098
|
-
closePopupShow: logClosePopupShow,
|
|
46099
|
-
closePopupCtaClick: logClosePopupCtaClick,
|
|
46100
46071
|
closeButtonClick: logCloseButtonClick,
|
|
46101
46072
|
homeButtonClick: logHomeButtonClick
|
|
46102
46073
|
};
|
|
@@ -46105,33 +46076,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46105
46076
|
var backEventContext = useBackEventContext();
|
|
46106
46077
|
var logging = useNavigationBarLogging();
|
|
46107
46078
|
var navigation = useNavigation();
|
|
46108
|
-
var closeConfirm = useCloseConfirm();
|
|
46109
46079
|
return (0, import_react191.useMemo)(function() {
|
|
46110
|
-
var close = function() {
|
|
46111
|
-
return _async_to_generator(function() {
|
|
46112
|
-
var hasConfirmed;
|
|
46113
|
-
return __generator(this, function(_state) {
|
|
46114
|
-
switch (_state.label) {
|
|
46115
|
-
case 0:
|
|
46116
|
-
return [
|
|
46117
|
-
4,
|
|
46118
|
-
closeConfirm({
|
|
46119
|
-
onEntered: logging.closePopupShow
|
|
46120
|
-
})
|
|
46121
|
-
];
|
|
46122
|
-
case 1:
|
|
46123
|
-
hasConfirmed = _state.sent();
|
|
46124
|
-
logging.closePopupCtaClick(hasConfirmed);
|
|
46125
|
-
if (hasConfirmed) {
|
|
46126
|
-
closeView();
|
|
46127
|
-
}
|
|
46128
|
-
return [
|
|
46129
|
-
2
|
|
46130
|
-
];
|
|
46131
|
-
}
|
|
46132
|
-
});
|
|
46133
|
-
})();
|
|
46134
|
-
};
|
|
46135
46080
|
return {
|
|
46136
46081
|
handleBack: function() {
|
|
46137
46082
|
if (backEventContext.hasBackEvent) {
|
|
@@ -46139,7 +46084,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46139
46084
|
} else if (navigation.canGoBack()) {
|
|
46140
46085
|
navigation.goBack();
|
|
46141
46086
|
} else {
|
|
46142
|
-
|
|
46087
|
+
closeView();
|
|
46143
46088
|
}
|
|
46144
46089
|
},
|
|
46145
46090
|
handleHomeButtonClick: function() {
|
|
@@ -46152,13 +46097,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46152
46097
|
},
|
|
46153
46098
|
handleCloseButtonClick: function() {
|
|
46154
46099
|
logging.closeButtonClick();
|
|
46155
|
-
|
|
46100
|
+
closeView();
|
|
46156
46101
|
}
|
|
46157
46102
|
};
|
|
46158
46103
|
}, [
|
|
46159
46104
|
backEventContext,
|
|
46160
46105
|
navigation,
|
|
46161
|
-
closeConfirm,
|
|
46162
46106
|
logging
|
|
46163
46107
|
]);
|
|
46164
46108
|
}
|
|
@@ -46385,7 +46329,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46385
46329
|
function useMoreButtonBottomSheet() {
|
|
46386
46330
|
var globals = getAppsInTossGlobals();
|
|
46387
46331
|
var adaptive = useAdaptive();
|
|
46388
|
-
var _useState4 = _sliced_to_array((0,
|
|
46332
|
+
var _useState4 = _sliced_to_array((0, import_react192.useState)([]), 2), itemList = _useState4[0], setItemList = _useState4[1];
|
|
46389
46333
|
var appUpdateDialog = useAppUpdateDialog();
|
|
46390
46334
|
var logging = useMoreButtonBottomSheetLogging();
|
|
46391
46335
|
var overlay = useOverlay();
|
|
@@ -46394,7 +46338,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46394
46338
|
var isBottomSheetSupported = isMinVersionSupported(MIN_VERSION6.BOTTOM_SHEET);
|
|
46395
46339
|
var isShareListMenuSupported = isMinVersionSupported(MIN_VERSION6.SHARE_LIST_MENU);
|
|
46396
46340
|
var isSettingsMenuSupported = isMinVersionSupported(MIN_VERSION6.SETTINGS_MENU);
|
|
46397
|
-
(0,
|
|
46341
|
+
(0, import_react192.useEffect)(function() {
|
|
46398
46342
|
if (!isBottomSheetSupported) {
|
|
46399
46343
|
return;
|
|
46400
46344
|
}
|
|
@@ -46495,7 +46439,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46495
46439
|
function BottomSheetImpressionArea(param) {
|
|
46496
46440
|
var children = param.children;
|
|
46497
46441
|
var logging = useMoreButtonBottomSheetLogging();
|
|
46498
|
-
(0,
|
|
46442
|
+
(0, import_react192.useEffect)(function() {
|
|
46499
46443
|
logging.show();
|
|
46500
46444
|
}, [
|
|
46501
46445
|
logging
|
|
@@ -46515,9 +46459,9 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46515
46459
|
}
|
|
46516
46460
|
function NavigationBarImpressionArea(param) {
|
|
46517
46461
|
var children = param.children, withHomeButton = param.withHomeButton;
|
|
46518
|
-
var hasLogged = (0,
|
|
46462
|
+
var hasLogged = (0, import_react193.useRef)(false);
|
|
46519
46463
|
var logging = useNavigationBarLogging();
|
|
46520
|
-
(0,
|
|
46464
|
+
(0, import_react193.useEffect)(function() {
|
|
46521
46465
|
if (hasLogged.current === false) {
|
|
46522
46466
|
logging.navBarImpression({
|
|
46523
46467
|
home_icon_yn: withHomeButton ? "Y" : "N"
|
|
@@ -46746,42 +46690,21 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46746
46690
|
function GameWebviewNavigationBar() {
|
|
46747
46691
|
var safeAreaTop = useSafeAreaTop();
|
|
46748
46692
|
var openConfirm = useDialog().openConfirm;
|
|
46749
|
-
var global2 = getAppsInTossGlobals();
|
|
46750
46693
|
var logging = useNavigationBarLogging();
|
|
46751
46694
|
var _useMoreButtonBottomSheet = useMoreButtonBottomSheet(), openMoreButtonBottomSheet = _useMoreButtonBottomSheet.open;
|
|
46752
46695
|
var navigationRightButton = useNavigationBarContext().navigationRightButton;
|
|
46753
46696
|
var _useSafeAreaInsets2 = (0, react_native_safe_area_context_exports.useSafeAreaInsets)(), safeAreaRight = _useSafeAreaInsets2.right;
|
|
46754
|
-
var handleGameWebviewClose = (0,
|
|
46697
|
+
var handleGameWebviewClose = (0, import_react196.useCallback)(function() {
|
|
46755
46698
|
return _async_to_generator(function() {
|
|
46756
|
-
var isConfirmed;
|
|
46757
46699
|
return __generator(this, function(_state) {
|
|
46758
|
-
|
|
46759
|
-
|
|
46760
|
-
|
|
46761
|
-
|
|
46762
|
-
|
|
46763
|
-
openConfirm({
|
|
46764
|
-
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
46765
|
-
leftButton: "\uB2EB\uAE30",
|
|
46766
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46767
|
-
closeOnDimmerClick: true,
|
|
46768
|
-
onEntered: logging.closePopupShow
|
|
46769
|
-
})
|
|
46770
|
-
];
|
|
46771
|
-
case 1:
|
|
46772
|
-
isConfirmed = _state.sent();
|
|
46773
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
46774
|
-
if (isConfirmed) {
|
|
46775
|
-
closeView();
|
|
46776
|
-
}
|
|
46777
|
-
return [
|
|
46778
|
-
2
|
|
46779
|
-
];
|
|
46780
|
-
}
|
|
46700
|
+
logging.closeButtonClick();
|
|
46701
|
+
closeView();
|
|
46702
|
+
return [
|
|
46703
|
+
2
|
|
46704
|
+
];
|
|
46781
46705
|
});
|
|
46782
46706
|
})();
|
|
46783
46707
|
}, [
|
|
46784
|
-
global2.brandDisplayName,
|
|
46785
46708
|
logging,
|
|
46786
46709
|
openConfirm
|
|
46787
46710
|
]);
|
|
@@ -46822,45 +46745,23 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46822
46745
|
var _ref, _ref1;
|
|
46823
46746
|
var globals = getAppsInTossGlobals();
|
|
46824
46747
|
var logging = useNavigationBarLogging();
|
|
46825
|
-
var openConfirm = useDialog().openConfirm;
|
|
46826
46748
|
var _useMoreButtonBottomSheet = useMoreButtonBottomSheet(), openMoreButtonBottomSheet = _useMoreButtonBottomSheet.open;
|
|
46827
46749
|
var parsedNavigationBar = globals.navigationBar != null ? safeParseNavigationBar(globals.navigationBar) : null;
|
|
46828
46750
|
var withHomeButton = (_ref = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.withHomeButton) !== null && _ref !== void 0 ? _ref : false;
|
|
46829
46751
|
var withBackButton = (_ref1 = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.withBackButton) !== null && _ref1 !== void 0 ? _ref1 : true;
|
|
46830
46752
|
var navigationRightButton = useNavigationBarContext().navigationRightButton;
|
|
46831
|
-
var handleClose = (0,
|
|
46753
|
+
var handleClose = (0, import_react198.useCallback)(function() {
|
|
46832
46754
|
return _async_to_generator(function() {
|
|
46833
|
-
var isConfirmed;
|
|
46834
46755
|
return __generator(this, function(_state) {
|
|
46835
|
-
|
|
46836
|
-
|
|
46837
|
-
|
|
46838
|
-
|
|
46839
|
-
|
|
46840
|
-
openConfirm({
|
|
46841
|
-
title: "".concat(josa(globals.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
46842
|
-
leftButton: "\uB2EB\uAE30",
|
|
46843
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46844
|
-
closeOnDimmerClick: true,
|
|
46845
|
-
onEntered: logging.closePopupShow
|
|
46846
|
-
})
|
|
46847
|
-
];
|
|
46848
|
-
case 1:
|
|
46849
|
-
isConfirmed = _state.sent();
|
|
46850
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
46851
|
-
if (isConfirmed) {
|
|
46852
|
-
closeView();
|
|
46853
|
-
}
|
|
46854
|
-
return [
|
|
46855
|
-
2
|
|
46856
|
-
];
|
|
46857
|
-
}
|
|
46756
|
+
logging.closeButtonClick();
|
|
46757
|
+
closeView();
|
|
46758
|
+
return [
|
|
46759
|
+
2
|
|
46760
|
+
];
|
|
46858
46761
|
});
|
|
46859
46762
|
})();
|
|
46860
46763
|
}, [
|
|
46861
|
-
|
|
46862
|
-
logging,
|
|
46863
|
-
openConfirm
|
|
46764
|
+
logging
|
|
46864
46765
|
]);
|
|
46865
46766
|
return (0, import_jsx_runtime232.jsx)(NavigationBarImpressionArea, {
|
|
46866
46767
|
withHomeButton,
|
|
@@ -47309,8 +47210,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47309
47210
|
}
|
|
47310
47211
|
function useBridgeHandler(param) {
|
|
47311
47212
|
var onMessage = param.onMessage, constantHandlerMap = param.constantHandlerMap, asyncHandlerMap = param.asyncHandlerMap, eventListenerMap = param.eventListenerMap;
|
|
47312
|
-
var ref = (0,
|
|
47313
|
-
var injectedJavaScript = (0,
|
|
47213
|
+
var ref = (0, import_react199.useRef)(null);
|
|
47214
|
+
var injectedJavaScript = (0, import_react199.useMemo)(function() {
|
|
47314
47215
|
return "window.__CONSTANT_HANDLER_MAP = ".concat(JSON.stringify(Object.entries(constantHandlerMap).reduce(function(acc, param2) {
|
|
47315
47216
|
var _param = _sliced_to_array(param2, 2), key = _param[0], value = _param[1];
|
|
47316
47217
|
acc[key] = typeof value === "function" ? value() : value;
|
|
@@ -47319,7 +47220,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47319
47220
|
}, [
|
|
47320
47221
|
constantHandlerMap
|
|
47321
47222
|
]);
|
|
47322
|
-
(0,
|
|
47223
|
+
(0, import_react199.useEffect)(function() {
|
|
47323
47224
|
var _ref_current;
|
|
47324
47225
|
(_ref_current = ref.current) === null || _ref_current === void 0 ? void 0 : _ref_current.injectJavaScript(injectedJavaScript);
|
|
47325
47226
|
}, [
|
|
@@ -47338,7 +47239,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47338
47239
|
(_ref_current = ref.current) === null || _ref_current === void 0 ? void 0 : _ref_current.injectJavaScript("\n window.__GRANITE_NATIVE_EMITTER.emit('".concat(functionName, "/onError/").concat(eventId, "', ").concat(serializedError, ");\n "));
|
|
47339
47240
|
};
|
|
47340
47241
|
};
|
|
47341
|
-
var $onMessage = (0,
|
|
47242
|
+
var $onMessage = (0, import_react199.useCallback)(function(e64) {
|
|
47342
47243
|
return _async_to_generator(function() {
|
|
47343
47244
|
var data, _eventListenerMap_data_functionName, handleOnEvent, handleOnError, remove, key, remove1, _ref_current;
|
|
47344
47245
|
return __generator(this, function(_state) {
|
|
@@ -47411,12 +47312,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47411
47312
|
}
|
|
47412
47313
|
function useSafeAreaInsetsEvent() {
|
|
47413
47314
|
var insets = (0, react_native_safe_area_context_exports.useSafeAreaInsets)();
|
|
47414
|
-
(0,
|
|
47315
|
+
(0, import_react200.useEffect)(function() {
|
|
47415
47316
|
safeAreaInsetsChange.emit(insets);
|
|
47416
47317
|
}, [
|
|
47417
47318
|
insets
|
|
47418
47319
|
]);
|
|
47419
|
-
(0,
|
|
47320
|
+
(0, import_react200.useEffect)(function() {
|
|
47420
47321
|
return function() {
|
|
47421
47322
|
return safeAreaInsetsChange.clearSubscriptions();
|
|
47422
47323
|
};
|
|
@@ -47466,8 +47367,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47466
47367
|
}
|
|
47467
47368
|
}
|
|
47468
47369
|
function useWebViewHistory() {
|
|
47469
|
-
var _useReducer = _sliced_to_array((0,
|
|
47470
|
-
var onNavigationStateChange = (0,
|
|
47370
|
+
var _useReducer = _sliced_to_array((0, import_react202.useReducer)(reducer, INITIAL_STATE), 2), state = _useReducer[0], dispatch = _useReducer[1];
|
|
47371
|
+
var onNavigationStateChange = (0, import_react202.useCallback)(function(param) {
|
|
47471
47372
|
var url = param.url, canGoForward2 = param.canGoForward;
|
|
47472
47373
|
dispatch({
|
|
47473
47374
|
type: "NAVIGATION_CHANGE",
|
|
@@ -47475,7 +47376,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47475
47376
|
canGoForward: canGoForward2
|
|
47476
47377
|
});
|
|
47477
47378
|
}, []);
|
|
47478
|
-
var _useMemo4 = (0,
|
|
47379
|
+
var _useMemo4 = (0, import_react202.useMemo)(function() {
|
|
47479
47380
|
var canBack = state.index > 0;
|
|
47480
47381
|
var canFwd = state.index >= 0 && state.index < state.stack.length - 1;
|
|
47481
47382
|
return {
|
|
@@ -47496,93 +47397,64 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47496
47397
|
var _useWebViewHistory = useWebViewHistory(), hasHistory = _useWebViewHistory.hasHistory, onNavigationStateChange = _useWebViewHistory.onNavigationStateChange;
|
|
47497
47398
|
var _useBackEventState = useBackEventState(), webBackHandlersRef = _useBackEventState.handlersRef, hasWebBackEvent = _useBackEventState.hasBackEvent, addWebBackEventListener = _useBackEventState.addEventListener, removeWebBackEventListener = _useBackEventState.removeEventListener;
|
|
47498
47399
|
var logging = useNavigationBarLogging();
|
|
47499
|
-
var
|
|
47500
|
-
var global2 = getAppsInTossGlobals();
|
|
47501
|
-
var addEventListener = (0, import_react202.useCallback)(function(handler) {
|
|
47400
|
+
var addEventListener = (0, import_react201.useCallback)(function(handler) {
|
|
47502
47401
|
addWebBackEventListener(handler);
|
|
47503
47402
|
}, [
|
|
47504
47403
|
addWebBackEventListener
|
|
47505
47404
|
]);
|
|
47506
|
-
var removeEventListener = (0,
|
|
47405
|
+
var removeEventListener = (0, import_react201.useCallback)(function(handler) {
|
|
47507
47406
|
removeWebBackEventListener(handler);
|
|
47508
47407
|
}, [
|
|
47509
47408
|
removeWebBackEventListener
|
|
47510
47409
|
]);
|
|
47511
|
-
var handleWebBack = (0,
|
|
47410
|
+
var handleWebBack = (0, import_react201.useCallback)(function() {
|
|
47512
47411
|
return _async_to_generator(function() {
|
|
47513
|
-
var _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, handler, _webViewRef_current
|
|
47412
|
+
var _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, handler, _webViewRef_current;
|
|
47514
47413
|
return __generator(this, function(_state) {
|
|
47515
|
-
|
|
47516
|
-
|
|
47517
|
-
|
|
47518
|
-
|
|
47519
|
-
|
|
47520
|
-
|
|
47521
|
-
handler = _step.value;
|
|
47522
|
-
handler();
|
|
47523
|
-
}
|
|
47524
|
-
} catch (err) {
|
|
47525
|
-
_didIteratorError = true;
|
|
47526
|
-
_iteratorError = err;
|
|
47527
|
-
} finally {
|
|
47528
|
-
try {
|
|
47529
|
-
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
47530
|
-
_iterator.return();
|
|
47531
|
-
}
|
|
47532
|
-
} finally {
|
|
47533
|
-
if (_didIteratorError) {
|
|
47534
|
-
throw _iteratorError;
|
|
47535
|
-
}
|
|
47536
|
-
}
|
|
47537
|
-
}
|
|
47538
|
-
return [
|
|
47539
|
-
2
|
|
47540
|
-
];
|
|
47414
|
+
if (hasWebBackEvent) {
|
|
47415
|
+
_iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;
|
|
47416
|
+
try {
|
|
47417
|
+
for (_iterator = webBackHandlersRef[Symbol.iterator](); !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
|
|
47418
|
+
handler = _step.value;
|
|
47419
|
+
handler();
|
|
47541
47420
|
}
|
|
47542
|
-
|
|
47543
|
-
|
|
47544
|
-
|
|
47545
|
-
|
|
47546
|
-
|
|
47547
|
-
|
|
47548
|
-
|
|
47549
|
-
|
|
47550
|
-
|
|
47551
|
-
|
|
47552
|
-
|
|
47553
|
-
|
|
47554
|
-
openConfirm({
|
|
47555
|
-
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
47556
|
-
leftButton: "\uB2EB\uAE30",
|
|
47557
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
47558
|
-
closeOnDimmerClick: true,
|
|
47559
|
-
onEntered: logging.closePopupShow
|
|
47560
|
-
})
|
|
47561
|
-
];
|
|
47562
|
-
case 2:
|
|
47563
|
-
isConfirmed = _state.sent();
|
|
47564
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
47565
|
-
if (isConfirmed) {
|
|
47566
|
-
closeView();
|
|
47421
|
+
} catch (err) {
|
|
47422
|
+
_didIteratorError = true;
|
|
47423
|
+
_iteratorError = err;
|
|
47424
|
+
} finally {
|
|
47425
|
+
try {
|
|
47426
|
+
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
47427
|
+
_iterator.return();
|
|
47428
|
+
}
|
|
47429
|
+
} finally {
|
|
47430
|
+
if (_didIteratorError) {
|
|
47431
|
+
throw _iteratorError;
|
|
47432
|
+
}
|
|
47567
47433
|
}
|
|
47568
|
-
|
|
47569
|
-
|
|
47570
|
-
|
|
47571
|
-
|
|
47572
|
-
];
|
|
47434
|
+
}
|
|
47435
|
+
return [
|
|
47436
|
+
2
|
|
47437
|
+
];
|
|
47573
47438
|
}
|
|
47439
|
+
if (hasHistory) {
|
|
47440
|
+
;
|
|
47441
|
+
(_webViewRef_current = webViewRef.current) === null || _webViewRef_current === void 0 ? void 0 : _webViewRef_current.injectJavaScript("window.history.back();");
|
|
47442
|
+
} else {
|
|
47443
|
+
closeView();
|
|
47444
|
+
}
|
|
47445
|
+
return [
|
|
47446
|
+
2
|
|
47447
|
+
];
|
|
47574
47448
|
});
|
|
47575
47449
|
})();
|
|
47576
47450
|
}, [
|
|
47577
|
-
global2.brandDisplayName,
|
|
47578
47451
|
hasHistory,
|
|
47579
47452
|
hasWebBackEvent,
|
|
47580
47453
|
webBackHandlersRef,
|
|
47581
47454
|
logging,
|
|
47582
|
-
openConfirm,
|
|
47583
47455
|
webViewRef
|
|
47584
47456
|
]);
|
|
47585
|
-
var handleWebHome = (0,
|
|
47457
|
+
var handleWebHome = (0, import_react201.useCallback)(function() {
|
|
47586
47458
|
var _webViewRef_current;
|
|
47587
47459
|
logging.homeButtonClick();
|
|
47588
47460
|
if (homeEvent.hasSubscriptions()) {
|
|
@@ -47597,7 +47469,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47597
47469
|
webViewInitialURL,
|
|
47598
47470
|
webViewRef
|
|
47599
47471
|
]);
|
|
47600
|
-
return (0,
|
|
47472
|
+
return (0, import_react201.useMemo)(function() {
|
|
47601
47473
|
return {
|
|
47602
47474
|
addEventListener,
|
|
47603
47475
|
removeEventListener,
|
|
@@ -47902,8 +47774,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47902
47774
|
if (!TYPES.includes(type)) {
|
|
47903
47775
|
throw new Error("Invalid WebView type: '".concat(type, "'"));
|
|
47904
47776
|
}
|
|
47905
|
-
var webViewRef = (0,
|
|
47906
|
-
var url = (0,
|
|
47777
|
+
var webViewRef = (0, import_react194.useRef)(null);
|
|
47778
|
+
var url = (0, import_react194.useMemo)(function() {
|
|
47907
47779
|
return getWebViewURL(local);
|
|
47908
47780
|
}, [
|
|
47909
47781
|
local
|
|
@@ -47915,7 +47787,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47915
47787
|
var global2 = getAppsInTossGlobals();
|
|
47916
47788
|
var navigationBarContext = useNavigationBarContext();
|
|
47917
47789
|
var safeAreaInsetsEvent = useSafeAreaInsetsEvent();
|
|
47918
|
-
var _useState6 = _sliced_to_array((0,
|
|
47790
|
+
var _useState6 = _sliced_to_array((0, import_react194.useState)(props.allowsBackForwardNavigationGestures), 2), allowsBackForwardNavigationGestures = _useState6[0], setAllowsBackForwardNavigationGestures = _useState6[1];
|
|
47919
47791
|
var handler = useBridgeHandler({
|
|
47920
47792
|
onMessage,
|
|
47921
47793
|
eventListenerMap: _object_spread_props(_object_spread({}, event_bridges_exports), {
|
|
@@ -47963,7 +47835,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47963
47835
|
showFullScreenAd,
|
|
47964
47836
|
fetchTossAd,
|
|
47965
47837
|
iapCreateOneTimePurchaseOrder: IAP.createOneTimePurchaseOrder,
|
|
47966
|
-
requestSubscriptionPurchase
|
|
47838
|
+
requestSubscriptionPurchase,
|
|
47967
47839
|
requestOneTimePurchase,
|
|
47968
47840
|
requestNotificationAgreement
|
|
47969
47841
|
}),
|
|
@@ -48058,7 +47930,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48058
47930
|
}
|
|
48059
47931
|
})
|
|
48060
47932
|
});
|
|
48061
|
-
var headerPropForExternalWebView = (0,
|
|
47933
|
+
var headerPropForExternalWebView = (0, import_react194.useMemo)(function() {
|
|
48062
47934
|
var _ref;
|
|
48063
47935
|
var parsedNavigationBar = global2.navigationBar != null ? safeParseNavigationBar(global2.navigationBar) : null;
|
|
48064
47936
|
var initialAccessoryButton = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.initialAccessoryButton;
|
|
@@ -48083,7 +47955,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48083
47955
|
colorPreference: "light"
|
|
48084
47956
|
});
|
|
48085
47957
|
var refs = mergeRefs3(handler.ref, webViewRef);
|
|
48086
|
-
(0,
|
|
47958
|
+
(0, import_react194.useEffect)(function() {
|
|
48087
47959
|
var callback = function() {
|
|
48088
47960
|
webBackHandler.handleWebBack();
|
|
48089
47961
|
return true;
|
|
@@ -48159,7 +48031,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48159
48031
|
onRenderProcessGone: handleWebViewProcessDidTerminate
|
|
48160
48032
|
}));
|
|
48161
48033
|
}
|
|
48162
|
-
var import_react_native187, import_react179, import_react180, import_jsx_runtime216, import_react181, import_jsx_runtime217, import_react182, import_react_native191, import_react183, import_react_native193, import_react184, import_react185, import_react_native196, import_react186, import_react187, import_react188, import_react189, import_jsx_runtime218, import_jsx_runtime219, import_react190, import_react_native199, import_react191, import_react192,
|
|
48034
|
+
var import_react_native187, import_react179, import_react180, import_jsx_runtime216, import_react181, import_jsx_runtime217, import_react182, import_react_native191, import_react183, import_react_native193, import_react184, import_react185, import_react_native196, import_react186, import_react187, import_react188, import_react189, import_jsx_runtime218, import_jsx_runtime219, import_react190, import_react_native199, import_react191, import_react192, import_react_native204, import_jsx_runtime220, import_jsx_runtime221, import_jsx_runtime222, import_jsx_runtime223, import_jsx_runtime224, import_react193, import_jsx_runtime225, import_jsx_runtime226, import_react_native207, import_jsx_runtime227, import_jsx_runtime228, import_jsx_runtime229, import_react194, import_react_native209, import_react195, import_react_native210, import_react196, import_react_native212, import_jsx_runtime230, import_jsx_runtime231, import_react197, import_react198, import_jsx_runtime232, import_jsx_runtime233, import_react199, import_react200, import_react201, import_react202, import_react_native218, import_react203, import_react204, import_jsx_runtime234, import_react205, import_react_native221, import_react206, import_react_native222, import_jsx_runtime235, import_react207, import_react_native223, import_jsx_runtime236, import_jsx_runtime237, __GlobalEventDeduplicator, __defProp2, __getOwnPropDesc2, __getOwnPropNames2, __hasOwnProp2, __copyProps2, __reExport2, env, DEFAULT_PIPELINES, AppEvent, UPDATE_SCHEME, NavigationBarContext, GAME_PROFILE_WEBVIEW_URL, GAME_MIN_VERSION, PLAYSTORE_LINK, APPSTORE_LINK, getMarketLink, UPDATE_DIALOG_SCHEMA_ID, UPDATE_DIALOG_LOG_NAME, UPDATE_DIALOG_CTA_CLICK_SCHEMA_ID, UPDATE_DIALOG_CTA_CLICK_LOG_NAME, DEFAULT_ERROR, useErrorAlert, INTERNAL__onVisibilityChangedByTransparentServiceWeb, openTransparentWebView, useTransparentWebview, useGameProfileToast, useGameCenterProfile, Z_INDEX, GameInitializer, overlayStyle, EventEmitter, eventEmitter, homeEvent, safeAreaInsetsChange, NAVI_BAR_IMPRESSION_SCHEMA_ID, NAVI_BAR_IMPRESSION_LOG_NAME, CLOSE_BUTTON_CLICK_SCHEMA_ID, CLOSE_BUTTON_CLICK_LOG_NAME, HOME_BUTTON_CLICK_SCHEMA_ID, HOME_BUTTON_CLICK_LOG_NAME, BOTTOM_SHEET_SCHEMA_ID, BOTTOM_SHEET_LOG_NAME, BOTTOM_SHEET_OPEN_SCHEMA_ID, BOTTOM_SHEET_OPEN_LOG_NAME, BOTTOM_SHEET_CLOSE_CLICK_SCHEMA_ID, BOTTOM_SHEET_CLOSE_CLICK_LOG_NAME, BOTTOM_SHEET_MENU_CLICK_SCHEMA_ID, BOTTOM_SHEET_MENU_CLICK_LOG_NAME, iconNameRegExp, iconURLRegExp, SHARE_SCHEME_REFERRER, APP_SHARE_MENU_INFO, APP_BRIDGE_METHOD_NAME, MIN_VERSION6, RNNavigationBar, bridge_entry_exports, AppsInToss, GameWebView, PartnerWebView, INVALID_AD_GROUP_ID_ERROR_MESSAGE, sessionId, ANDROID_FETCH_TOSS_AD_SUPPORTED_VERSION, IOS_FETCH_TOSS_AD_SUPPORTED_VERSION, UNSUPPORTED_ERROR_MESSAGE3, ENVIRONMENT3, OPERATIONAL_ENVIRONMENT, OS, APP_VER, ALPHA_EVENT_TRACKER_HTTP_ENDPOINT, LIVE_EVENT_TRACKER_HTTP_ENDPOINT, INTEGRATED_AD_SDK_VERSION, ANDROID_INTEGRATED_AD_SUPPORTED_VERSION, IOS_INTEGRATED_AD_SUPPORTED_VERSION, UNSUPPORTED_ERROR_MESSAGE22, INTG_AD_ADM_FALLBACK_RID_MAP, loadFullScreenAd, loadFullScreenAdForWeb, globalEventListenerMap, INITIAL_STATE, FontA11yCategory, androidFontScaleMap, iosScaleToAndroidScale, extractDateFromUUIDv7, getGroupId2, getReferrer22, trackScreen, operationalEnvironment, TYPES, WEBVIEW_TYPES, ERROR_CODES, _obj6, ERROR_MESSAGES, API_RESULT_ERROR_MAP, AD_STATUS_ERROR_MAP, GlobalEventDeduplicator, globalEventDeduplicator, styles3, styles22, styles32, Analytics2;
|
|
48163
48035
|
var init_dist8 = __esm({
|
|
48164
48036
|
"../../../.yarn/__virtual__/@apps-in-toss-framework-virtual-afbad361af/1/packages/apps-in-toss/framework/dist/index.js"() {
|
|
48165
48037
|
"use strict";
|
|
@@ -48226,15 +48098,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48226
48098
|
import_react_native199 = __toESM(require_react_native(), 1);
|
|
48227
48099
|
init_src3();
|
|
48228
48100
|
import_react191 = __toESM(require_react(), 1);
|
|
48229
|
-
init_esm7();
|
|
48230
|
-
init_dist6();
|
|
48231
|
-
import_react192 = __toESM(require_react(), 1);
|
|
48232
48101
|
init_src3();
|
|
48233
48102
|
init_dist5();
|
|
48234
48103
|
init_src3();
|
|
48235
48104
|
init_esm7();
|
|
48236
48105
|
init_private2();
|
|
48237
|
-
|
|
48106
|
+
import_react192 = __toESM(require_react(), 1);
|
|
48238
48107
|
init_dist5();
|
|
48239
48108
|
init_src3();
|
|
48240
48109
|
init_esm7();
|
|
@@ -48250,7 +48119,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48250
48119
|
init_src3();
|
|
48251
48120
|
import_jsx_runtime223 = __toESM(require_jsx_runtime(), 1);
|
|
48252
48121
|
import_jsx_runtime224 = __toESM(require_jsx_runtime(), 1);
|
|
48253
|
-
|
|
48122
|
+
import_react193 = __toESM(require_react(), 1);
|
|
48254
48123
|
import_jsx_runtime225 = __toESM(require_jsx_runtime(), 1);
|
|
48255
48124
|
import_jsx_runtime226 = __toESM(require_jsx_runtime(), 1);
|
|
48256
48125
|
init_react_native_safe_area_context();
|
|
@@ -48272,28 +48141,25 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48272
48141
|
init_src3();
|
|
48273
48142
|
init_esm7();
|
|
48274
48143
|
init_private2();
|
|
48275
|
-
|
|
48144
|
+
import_react194 = __toESM(require_react(), 1);
|
|
48276
48145
|
import_react_native209 = __toESM(require_react_native(), 1);
|
|
48277
48146
|
init_dist5();
|
|
48278
48147
|
init_react_native_webview();
|
|
48279
|
-
|
|
48148
|
+
import_react195 = __toESM(require_react(), 1);
|
|
48280
48149
|
import_react_native210 = __toESM(require_react_native(), 1);
|
|
48281
48150
|
init_react_native_safe_area_context();
|
|
48282
48151
|
init_src3();
|
|
48283
48152
|
init_esm7();
|
|
48284
48153
|
init_private2();
|
|
48285
|
-
|
|
48286
|
-
import_react197 = __toESM(require_react(), 1);
|
|
48154
|
+
import_react196 = __toESM(require_react(), 1);
|
|
48287
48155
|
import_react_native212 = __toESM(require_react_native(), 1);
|
|
48288
48156
|
import_jsx_runtime230 = __toESM(require_jsx_runtime(), 1);
|
|
48289
48157
|
import_jsx_runtime231 = __toESM(require_jsx_runtime(), 1);
|
|
48290
48158
|
init_react_native_webview();
|
|
48291
|
-
|
|
48159
|
+
import_react197 = __toESM(require_react(), 1);
|
|
48292
48160
|
init_src3();
|
|
48293
|
-
init_esm7();
|
|
48294
48161
|
init_private2();
|
|
48295
|
-
|
|
48296
|
-
import_react199 = __toESM(require_react(), 1);
|
|
48162
|
+
import_react198 = __toESM(require_react(), 1);
|
|
48297
48163
|
import_jsx_runtime232 = __toESM(require_jsx_runtime(), 1);
|
|
48298
48164
|
import_jsx_runtime233 = __toESM(require_jsx_runtime(), 1);
|
|
48299
48165
|
init_dist5();
|
|
@@ -48302,19 +48168,17 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48302
48168
|
init_dist5();
|
|
48303
48169
|
init_src3();
|
|
48304
48170
|
init_src3();
|
|
48305
|
-
|
|
48171
|
+
import_react199 = __toESM(require_react(), 1);
|
|
48306
48172
|
init_react_native_safe_area_context();
|
|
48307
|
-
|
|
48173
|
+
import_react200 = __toESM(require_react(), 1);
|
|
48308
48174
|
init_src3();
|
|
48309
|
-
|
|
48310
|
-
init_dist6();
|
|
48175
|
+
import_react201 = __toESM(require_react(), 1);
|
|
48311
48176
|
import_react202 = __toESM(require_react(), 1);
|
|
48312
|
-
import_react203 = __toESM(require_react(), 1);
|
|
48313
48177
|
init_dist5();
|
|
48314
48178
|
import_react_native218 = __toESM(require_react_native(), 1);
|
|
48315
48179
|
init_dist5();
|
|
48180
|
+
import_react203 = __toESM(require_react(), 1);
|
|
48316
48181
|
import_react204 = __toESM(require_react(), 1);
|
|
48317
|
-
import_react205 = __toESM(require_react(), 1);
|
|
48318
48182
|
init_dist5();
|
|
48319
48183
|
init_src3();
|
|
48320
48184
|
init_esm7();
|
|
@@ -48324,12 +48188,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48324
48188
|
init_dist5();
|
|
48325
48189
|
init_dist3();
|
|
48326
48190
|
init_dist3();
|
|
48327
|
-
|
|
48191
|
+
import_react205 = __toESM(require_react(), 1);
|
|
48328
48192
|
import_react_native221 = __toESM(require_react_native(), 1);
|
|
48329
|
-
|
|
48193
|
+
import_react206 = __toESM(require_react(), 1);
|
|
48330
48194
|
import_react_native222 = __toESM(require_react_native(), 1);
|
|
48331
48195
|
import_jsx_runtime235 = __toESM(require_jsx_runtime(), 1);
|
|
48332
|
-
|
|
48196
|
+
import_react207 = __toESM(require_react(), 1);
|
|
48333
48197
|
import_react_native223 = __toESM(require_react_native(), 1);
|
|
48334
48198
|
import_jsx_runtime236 = __toESM(require_jsx_runtime(), 1);
|
|
48335
48199
|
import_jsx_runtime237 = __toESM(require_jsx_runtime(), 1);
|
|
@@ -48884,12 +48748,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48884
48748
|
safeAreaInsetsChange = createEvent("safeAreaInsetsChange");
|
|
48885
48749
|
NAVI_BAR_IMPRESSION_SCHEMA_ID = 1596837;
|
|
48886
48750
|
NAVI_BAR_IMPRESSION_LOG_NAME = "appsintoss_app_visit__common_module::impression__navigation_bar";
|
|
48887
|
-
CLOSE_POPUP_SHOW_SCHEMA_ID = 1644490;
|
|
48888
|
-
CLOSE_POPUP_SHOW_LOG_NAME = "appsintoss_app_visit__common_module::popup__close_app";
|
|
48889
48751
|
CLOSE_BUTTON_CLICK_SCHEMA_ID = 1596831;
|
|
48890
48752
|
CLOSE_BUTTON_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::click__icon_close";
|
|
48891
|
-
CLOSE_POPUP_CTA_CLICK_SCHEMA_ID = 1644492;
|
|
48892
|
-
CLOSE_POPUP_CTA_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::popup__close_app::click__cta";
|
|
48893
48753
|
HOME_BUTTON_CLICK_SCHEMA_ID = 1596839;
|
|
48894
48754
|
HOME_BUTTON_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::click__icon_home";
|
|
48895
48755
|
BOTTOM_SHEET_SCHEMA_ID = 1596825;
|
|
@@ -48937,8 +48797,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48937
48797
|
AppsInToss = {
|
|
48938
48798
|
registerApp
|
|
48939
48799
|
};
|
|
48940
|
-
GameWebView = /* @__PURE__ */ (0,
|
|
48941
|
-
(0,
|
|
48800
|
+
GameWebView = /* @__PURE__ */ (0, import_react195.forwardRef)(function GameWebView2(props, ref) {
|
|
48801
|
+
(0, import_react195.useEffect)(function() {
|
|
48942
48802
|
if (import_react_native210.Platform.OS === "ios") {
|
|
48943
48803
|
setIosSwipeGestureEnabled({
|
|
48944
48804
|
isEnabled: false
|
|
@@ -48964,7 +48824,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48964
48824
|
]
|
|
48965
48825
|
});
|
|
48966
48826
|
});
|
|
48967
|
-
PartnerWebView = /* @__PURE__ */ (0,
|
|
48827
|
+
PartnerWebView = /* @__PURE__ */ (0, import_react197.forwardRef)(function PartnerWebViewScreen(_03, _1) {
|
|
48968
48828
|
var _ref = [
|
|
48969
48829
|
_03,
|
|
48970
48830
|
_1
|