@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
|
@@ -11781,6 +11781,31 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11781
11781
|
});
|
|
11782
11782
|
return unregisterCallbacks;
|
|
11783
11783
|
}
|
|
11784
|
+
function requestSubscriptionPurchase(params) {
|
|
11785
|
+
var options = params.options, onEvent = params.onEvent, onError = params.onError;
|
|
11786
|
+
var sku = options.sku, offerId = options.offerId;
|
|
11787
|
+
var unregisterCallbacks = INTERNAL__appBridgeHandler.invokeAppBridgeMethod("requestSubscriptionPurchase", {
|
|
11788
|
+
sku,
|
|
11789
|
+
offerId: offerId !== null && offerId !== void 0 ? offerId : null
|
|
11790
|
+
}, {
|
|
11791
|
+
onPurchased: function(params2) {
|
|
11792
|
+
onEvent({
|
|
11793
|
+
type: "purchased",
|
|
11794
|
+
data: params2
|
|
11795
|
+
});
|
|
11796
|
+
},
|
|
11797
|
+
onSuccess: function(result) {
|
|
11798
|
+
onEvent({
|
|
11799
|
+
type: "success",
|
|
11800
|
+
data: result
|
|
11801
|
+
});
|
|
11802
|
+
},
|
|
11803
|
+
onError: function(error) {
|
|
11804
|
+
onError(error);
|
|
11805
|
+
}
|
|
11806
|
+
});
|
|
11807
|
+
return unregisterCallbacks;
|
|
11808
|
+
}
|
|
11784
11809
|
function createOneTimePurchaseOrder(params) {
|
|
11785
11810
|
var _options_sku;
|
|
11786
11811
|
var isIAPSupported = isMinVersionSupported({
|
|
@@ -45979,38 +46004,6 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45979
46004
|
handler
|
|
45980
46005
|
]);
|
|
45981
46006
|
}
|
|
45982
|
-
function useCloseConfirm() {
|
|
45983
|
-
var brandDisplayName = getAppsInTossGlobals().brandDisplayName;
|
|
45984
|
-
var openConfirm = useDialog().openConfirm;
|
|
45985
|
-
return (0, import_react191.useCallback)(function(param) {
|
|
45986
|
-
var onEntered = param.onEntered;
|
|
45987
|
-
return _async_to_generator(function() {
|
|
45988
|
-
return __generator(this, function(_state) {
|
|
45989
|
-
switch (_state.label) {
|
|
45990
|
-
case 0:
|
|
45991
|
-
return [
|
|
45992
|
-
4,
|
|
45993
|
-
openConfirm({
|
|
45994
|
-
title: "".concat(josa(brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45995
|
-
leftButton: "\uB2EB\uAE30",
|
|
45996
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45997
|
-
closeOnDimmerClick: true,
|
|
45998
|
-
onEntered
|
|
45999
|
-
})
|
|
46000
|
-
];
|
|
46001
|
-
case 1:
|
|
46002
|
-
return [
|
|
46003
|
-
2,
|
|
46004
|
-
_state.sent()
|
|
46005
|
-
];
|
|
46006
|
-
}
|
|
46007
|
-
});
|
|
46008
|
-
})();
|
|
46009
|
-
}, [
|
|
46010
|
-
brandDisplayName,
|
|
46011
|
-
openConfirm
|
|
46012
|
-
]);
|
|
46013
|
-
}
|
|
46014
46007
|
function createEvent(event) {
|
|
46015
46008
|
return {
|
|
46016
46009
|
name: event,
|
|
@@ -46064,30 +46057,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46064
46057
|
})
|
|
46065
46058
|
});
|
|
46066
46059
|
};
|
|
46067
|
-
var logClosePopupShow = function() {
|
|
46068
|
-
sendLog({
|
|
46069
|
-
log_name: CLOSE_POPUP_SHOW_LOG_NAME,
|
|
46070
|
-
log_type: "popup",
|
|
46071
|
-
params: _object_spread_props(_object_spread({}, baseParams), {
|
|
46072
|
-
schema_id: CLOSE_POPUP_SHOW_SCHEMA_ID
|
|
46073
|
-
})
|
|
46074
|
-
});
|
|
46075
|
-
};
|
|
46076
|
-
var logClosePopupCtaClick = function(confirm) {
|
|
46077
|
-
sendLog({
|
|
46078
|
-
log_name: CLOSE_POPUP_CTA_CLICK_LOG_NAME,
|
|
46079
|
-
log_type: "event",
|
|
46080
|
-
params: _object_spread_props(_object_spread({}, baseParams), {
|
|
46081
|
-
close_yn: confirm ? "Y" : "N",
|
|
46082
|
-
schema_id: CLOSE_POPUP_CTA_CLICK_SCHEMA_ID,
|
|
46083
|
-
event_type: "click"
|
|
46084
|
-
})
|
|
46085
|
-
});
|
|
46086
|
-
};
|
|
46087
46060
|
return {
|
|
46088
46061
|
navBarImpression: logNavBarImpression,
|
|
46089
|
-
closePopupShow: logClosePopupShow,
|
|
46090
|
-
closePopupCtaClick: logClosePopupCtaClick,
|
|
46091
46062
|
closeButtonClick: logCloseButtonClick,
|
|
46092
46063
|
homeButtonClick: logHomeButtonClick
|
|
46093
46064
|
};
|
|
@@ -46096,33 +46067,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46096
46067
|
var backEventContext = useBackEventContext();
|
|
46097
46068
|
var logging = useNavigationBarLogging();
|
|
46098
46069
|
var navigation = useNavigation();
|
|
46099
|
-
var closeConfirm = useCloseConfirm();
|
|
46100
46070
|
return (0, import_react190.useMemo)(function() {
|
|
46101
|
-
var close = function() {
|
|
46102
|
-
return _async_to_generator(function() {
|
|
46103
|
-
var hasConfirmed;
|
|
46104
|
-
return __generator(this, function(_state) {
|
|
46105
|
-
switch (_state.label) {
|
|
46106
|
-
case 0:
|
|
46107
|
-
return [
|
|
46108
|
-
4,
|
|
46109
|
-
closeConfirm({
|
|
46110
|
-
onEntered: logging.closePopupShow
|
|
46111
|
-
})
|
|
46112
|
-
];
|
|
46113
|
-
case 1:
|
|
46114
|
-
hasConfirmed = _state.sent();
|
|
46115
|
-
logging.closePopupCtaClick(hasConfirmed);
|
|
46116
|
-
if (hasConfirmed) {
|
|
46117
|
-
closeView();
|
|
46118
|
-
}
|
|
46119
|
-
return [
|
|
46120
|
-
2
|
|
46121
|
-
];
|
|
46122
|
-
}
|
|
46123
|
-
});
|
|
46124
|
-
})();
|
|
46125
|
-
};
|
|
46126
46071
|
return {
|
|
46127
46072
|
handleBack: function() {
|
|
46128
46073
|
if (backEventContext.hasBackEvent) {
|
|
@@ -46130,7 +46075,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46130
46075
|
} else if (navigation.canGoBack()) {
|
|
46131
46076
|
navigation.goBack();
|
|
46132
46077
|
} else {
|
|
46133
|
-
|
|
46078
|
+
closeView();
|
|
46134
46079
|
}
|
|
46135
46080
|
},
|
|
46136
46081
|
handleHomeButtonClick: function() {
|
|
@@ -46143,13 +46088,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46143
46088
|
},
|
|
46144
46089
|
handleCloseButtonClick: function() {
|
|
46145
46090
|
logging.closeButtonClick();
|
|
46146
|
-
|
|
46091
|
+
closeView();
|
|
46147
46092
|
}
|
|
46148
46093
|
};
|
|
46149
46094
|
}, [
|
|
46150
46095
|
backEventContext,
|
|
46151
46096
|
navigation,
|
|
46152
|
-
closeConfirm,
|
|
46153
46097
|
logging
|
|
46154
46098
|
]);
|
|
46155
46099
|
}
|
|
@@ -46376,7 +46320,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46376
46320
|
function useMoreButtonBottomSheet() {
|
|
46377
46321
|
var globals = getAppsInTossGlobals();
|
|
46378
46322
|
var adaptive = useAdaptive();
|
|
46379
|
-
var _useState4 = _sliced_to_array((0,
|
|
46323
|
+
var _useState4 = _sliced_to_array((0, import_react191.useState)([]), 2), itemList = _useState4[0], setItemList = _useState4[1];
|
|
46380
46324
|
var appUpdateDialog = useAppUpdateDialog();
|
|
46381
46325
|
var logging = useMoreButtonBottomSheetLogging();
|
|
46382
46326
|
var overlay = useOverlay();
|
|
@@ -46385,7 +46329,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46385
46329
|
var isBottomSheetSupported = isMinVersionSupported(MIN_VERSION6.BOTTOM_SHEET);
|
|
46386
46330
|
var isShareListMenuSupported = isMinVersionSupported(MIN_VERSION6.SHARE_LIST_MENU);
|
|
46387
46331
|
var isSettingsMenuSupported = isMinVersionSupported(MIN_VERSION6.SETTINGS_MENU);
|
|
46388
|
-
(0,
|
|
46332
|
+
(0, import_react191.useEffect)(function() {
|
|
46389
46333
|
if (!isBottomSheetSupported) {
|
|
46390
46334
|
return;
|
|
46391
46335
|
}
|
|
@@ -46486,7 +46430,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46486
46430
|
function BottomSheetImpressionArea(param) {
|
|
46487
46431
|
var children = param.children;
|
|
46488
46432
|
var logging = useMoreButtonBottomSheetLogging();
|
|
46489
|
-
(0,
|
|
46433
|
+
(0, import_react191.useEffect)(function() {
|
|
46490
46434
|
logging.show();
|
|
46491
46435
|
}, [
|
|
46492
46436
|
logging
|
|
@@ -46506,9 +46450,9 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46506
46450
|
}
|
|
46507
46451
|
function NavigationBarImpressionArea(param) {
|
|
46508
46452
|
var children = param.children, withHomeButton = param.withHomeButton;
|
|
46509
|
-
var hasLogged = (0,
|
|
46453
|
+
var hasLogged = (0, import_react192.useRef)(false);
|
|
46510
46454
|
var logging = useNavigationBarLogging();
|
|
46511
|
-
(0,
|
|
46455
|
+
(0, import_react192.useEffect)(function() {
|
|
46512
46456
|
if (hasLogged.current === false) {
|
|
46513
46457
|
logging.navBarImpression({
|
|
46514
46458
|
home_icon_yn: withHomeButton ? "Y" : "N"
|
|
@@ -46737,42 +46681,21 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46737
46681
|
function GameWebviewNavigationBar() {
|
|
46738
46682
|
var safeAreaTop = useSafeAreaTop();
|
|
46739
46683
|
var openConfirm = useDialog().openConfirm;
|
|
46740
|
-
var global2 = getAppsInTossGlobals();
|
|
46741
46684
|
var logging = useNavigationBarLogging();
|
|
46742
46685
|
var _useMoreButtonBottomSheet = useMoreButtonBottomSheet(), openMoreButtonBottomSheet = _useMoreButtonBottomSheet.open;
|
|
46743
46686
|
var navigationRightButton = useNavigationBarContext().navigationRightButton;
|
|
46744
46687
|
var _useSafeAreaInsets2 = (0, react_native_safe_area_context_exports.useSafeAreaInsets)(), safeAreaRight = _useSafeAreaInsets2.right;
|
|
46745
|
-
var handleGameWebviewClose = (0,
|
|
46688
|
+
var handleGameWebviewClose = (0, import_react195.useCallback)(function() {
|
|
46746
46689
|
return _async_to_generator(function() {
|
|
46747
|
-
var isConfirmed;
|
|
46748
46690
|
return __generator(this, function(_state) {
|
|
46749
|
-
|
|
46750
|
-
|
|
46751
|
-
|
|
46752
|
-
|
|
46753
|
-
|
|
46754
|
-
openConfirm({
|
|
46755
|
-
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
46756
|
-
leftButton: "\uB2EB\uAE30",
|
|
46757
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46758
|
-
closeOnDimmerClick: true,
|
|
46759
|
-
onEntered: logging.closePopupShow
|
|
46760
|
-
})
|
|
46761
|
-
];
|
|
46762
|
-
case 1:
|
|
46763
|
-
isConfirmed = _state.sent();
|
|
46764
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
46765
|
-
if (isConfirmed) {
|
|
46766
|
-
closeView();
|
|
46767
|
-
}
|
|
46768
|
-
return [
|
|
46769
|
-
2
|
|
46770
|
-
];
|
|
46771
|
-
}
|
|
46691
|
+
logging.closeButtonClick();
|
|
46692
|
+
closeView();
|
|
46693
|
+
return [
|
|
46694
|
+
2
|
|
46695
|
+
];
|
|
46772
46696
|
});
|
|
46773
46697
|
})();
|
|
46774
46698
|
}, [
|
|
46775
|
-
global2.brandDisplayName,
|
|
46776
46699
|
logging,
|
|
46777
46700
|
openConfirm
|
|
46778
46701
|
]);
|
|
@@ -46813,45 +46736,23 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46813
46736
|
var _ref, _ref1;
|
|
46814
46737
|
var globals = getAppsInTossGlobals();
|
|
46815
46738
|
var logging = useNavigationBarLogging();
|
|
46816
|
-
var openConfirm = useDialog().openConfirm;
|
|
46817
46739
|
var _useMoreButtonBottomSheet = useMoreButtonBottomSheet(), openMoreButtonBottomSheet = _useMoreButtonBottomSheet.open;
|
|
46818
46740
|
var parsedNavigationBar = globals.navigationBar != null ? safeParseNavigationBar(globals.navigationBar) : null;
|
|
46819
46741
|
var withHomeButton = (_ref = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.withHomeButton) !== null && _ref !== void 0 ? _ref : false;
|
|
46820
46742
|
var withBackButton = (_ref1 = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.withBackButton) !== null && _ref1 !== void 0 ? _ref1 : true;
|
|
46821
46743
|
var navigationRightButton = useNavigationBarContext().navigationRightButton;
|
|
46822
|
-
var handleClose = (0,
|
|
46744
|
+
var handleClose = (0, import_react197.useCallback)(function() {
|
|
46823
46745
|
return _async_to_generator(function() {
|
|
46824
|
-
var isConfirmed;
|
|
46825
46746
|
return __generator(this, function(_state) {
|
|
46826
|
-
|
|
46827
|
-
|
|
46828
|
-
|
|
46829
|
-
|
|
46830
|
-
|
|
46831
|
-
openConfirm({
|
|
46832
|
-
title: "".concat(josa(globals.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
46833
|
-
leftButton: "\uB2EB\uAE30",
|
|
46834
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46835
|
-
closeOnDimmerClick: true,
|
|
46836
|
-
onEntered: logging.closePopupShow
|
|
46837
|
-
})
|
|
46838
|
-
];
|
|
46839
|
-
case 1:
|
|
46840
|
-
isConfirmed = _state.sent();
|
|
46841
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
46842
|
-
if (isConfirmed) {
|
|
46843
|
-
closeView();
|
|
46844
|
-
}
|
|
46845
|
-
return [
|
|
46846
|
-
2
|
|
46847
|
-
];
|
|
46848
|
-
}
|
|
46747
|
+
logging.closeButtonClick();
|
|
46748
|
+
closeView();
|
|
46749
|
+
return [
|
|
46750
|
+
2
|
|
46751
|
+
];
|
|
46849
46752
|
});
|
|
46850
46753
|
})();
|
|
46851
46754
|
}, [
|
|
46852
|
-
|
|
46853
|
-
logging,
|
|
46854
|
-
openConfirm
|
|
46755
|
+
logging
|
|
46855
46756
|
]);
|
|
46856
46757
|
return (0, import_jsx_runtime232.jsx)(NavigationBarImpressionArea, {
|
|
46857
46758
|
withHomeButton,
|
|
@@ -47300,8 +47201,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47300
47201
|
}
|
|
47301
47202
|
function useBridgeHandler(param) {
|
|
47302
47203
|
var onMessage = param.onMessage, constantHandlerMap = param.constantHandlerMap, asyncHandlerMap = param.asyncHandlerMap, eventListenerMap = param.eventListenerMap;
|
|
47303
|
-
var ref = (0,
|
|
47304
|
-
var injectedJavaScript = (0,
|
|
47204
|
+
var ref = (0, import_react198.useRef)(null);
|
|
47205
|
+
var injectedJavaScript = (0, import_react198.useMemo)(function() {
|
|
47305
47206
|
return "window.__CONSTANT_HANDLER_MAP = ".concat(JSON.stringify(Object.entries(constantHandlerMap).reduce(function(acc, param2) {
|
|
47306
47207
|
var _param = _sliced_to_array(param2, 2), key = _param[0], value = _param[1];
|
|
47307
47208
|
acc[key] = typeof value === "function" ? value() : value;
|
|
@@ -47310,7 +47211,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47310
47211
|
}, [
|
|
47311
47212
|
constantHandlerMap
|
|
47312
47213
|
]);
|
|
47313
|
-
(0,
|
|
47214
|
+
(0, import_react198.useEffect)(function() {
|
|
47314
47215
|
var _ref_current;
|
|
47315
47216
|
(_ref_current = ref.current) === null || _ref_current === void 0 ? void 0 : _ref_current.injectJavaScript(injectedJavaScript);
|
|
47316
47217
|
}, [
|
|
@@ -47329,7 +47230,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47329
47230
|
(_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 "));
|
|
47330
47231
|
};
|
|
47331
47232
|
};
|
|
47332
|
-
var $onMessage = (0,
|
|
47233
|
+
var $onMessage = (0, import_react198.useCallback)(function(e64) {
|
|
47333
47234
|
return _async_to_generator(function() {
|
|
47334
47235
|
var data, _eventListenerMap_data_functionName, handleOnEvent, handleOnError, remove, key, remove1, _ref_current;
|
|
47335
47236
|
return __generator(this, function(_state) {
|
|
@@ -47402,12 +47303,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47402
47303
|
}
|
|
47403
47304
|
function useSafeAreaInsetsEvent() {
|
|
47404
47305
|
var insets = (0, react_native_safe_area_context_exports.useSafeAreaInsets)();
|
|
47405
|
-
(0,
|
|
47306
|
+
(0, import_react199.useEffect)(function() {
|
|
47406
47307
|
safeAreaInsetsChange.emit(insets);
|
|
47407
47308
|
}, [
|
|
47408
47309
|
insets
|
|
47409
47310
|
]);
|
|
47410
|
-
(0,
|
|
47311
|
+
(0, import_react199.useEffect)(function() {
|
|
47411
47312
|
return function() {
|
|
47412
47313
|
return safeAreaInsetsChange.clearSubscriptions();
|
|
47413
47314
|
};
|
|
@@ -47457,8 +47358,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47457
47358
|
}
|
|
47458
47359
|
}
|
|
47459
47360
|
function useWebViewHistory() {
|
|
47460
|
-
var _useReducer = _sliced_to_array((0,
|
|
47461
|
-
var onNavigationStateChange = (0,
|
|
47361
|
+
var _useReducer = _sliced_to_array((0, import_react201.useReducer)(reducer, INITIAL_STATE), 2), state = _useReducer[0], dispatch = _useReducer[1];
|
|
47362
|
+
var onNavigationStateChange = (0, import_react201.useCallback)(function(param) {
|
|
47462
47363
|
var url = param.url, canGoForward2 = param.canGoForward;
|
|
47463
47364
|
dispatch({
|
|
47464
47365
|
type: "NAVIGATION_CHANGE",
|
|
@@ -47466,7 +47367,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47466
47367
|
canGoForward: canGoForward2
|
|
47467
47368
|
});
|
|
47468
47369
|
}, []);
|
|
47469
|
-
var _useMemo4 = (0,
|
|
47370
|
+
var _useMemo4 = (0, import_react201.useMemo)(function() {
|
|
47470
47371
|
var canBack = state.index > 0;
|
|
47471
47372
|
var canFwd = state.index >= 0 && state.index < state.stack.length - 1;
|
|
47472
47373
|
return {
|
|
@@ -47487,93 +47388,64 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47487
47388
|
var _useWebViewHistory = useWebViewHistory(), hasHistory = _useWebViewHistory.hasHistory, onNavigationStateChange = _useWebViewHistory.onNavigationStateChange;
|
|
47488
47389
|
var _useBackEventState = useBackEventState(), webBackHandlersRef = _useBackEventState.handlersRef, hasWebBackEvent = _useBackEventState.hasBackEvent, addWebBackEventListener = _useBackEventState.addEventListener, removeWebBackEventListener = _useBackEventState.removeEventListener;
|
|
47489
47390
|
var logging = useNavigationBarLogging();
|
|
47490
|
-
var
|
|
47491
|
-
var global2 = getAppsInTossGlobals();
|
|
47492
|
-
var addEventListener = (0, import_react201.useCallback)(function(handler) {
|
|
47391
|
+
var addEventListener = (0, import_react200.useCallback)(function(handler) {
|
|
47493
47392
|
addWebBackEventListener(handler);
|
|
47494
47393
|
}, [
|
|
47495
47394
|
addWebBackEventListener
|
|
47496
47395
|
]);
|
|
47497
|
-
var removeEventListener = (0,
|
|
47396
|
+
var removeEventListener = (0, import_react200.useCallback)(function(handler) {
|
|
47498
47397
|
removeWebBackEventListener(handler);
|
|
47499
47398
|
}, [
|
|
47500
47399
|
removeWebBackEventListener
|
|
47501
47400
|
]);
|
|
47502
|
-
var handleWebBack = (0,
|
|
47401
|
+
var handleWebBack = (0, import_react200.useCallback)(function() {
|
|
47503
47402
|
return _async_to_generator(function() {
|
|
47504
|
-
var _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, handler, _webViewRef_current
|
|
47403
|
+
var _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, handler, _webViewRef_current;
|
|
47505
47404
|
return __generator(this, function(_state) {
|
|
47506
|
-
|
|
47507
|
-
|
|
47508
|
-
|
|
47509
|
-
|
|
47510
|
-
|
|
47511
|
-
|
|
47512
|
-
handler = _step.value;
|
|
47513
|
-
handler();
|
|
47514
|
-
}
|
|
47515
|
-
} catch (err) {
|
|
47516
|
-
_didIteratorError = true;
|
|
47517
|
-
_iteratorError = err;
|
|
47518
|
-
} finally {
|
|
47519
|
-
try {
|
|
47520
|
-
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
47521
|
-
_iterator.return();
|
|
47522
|
-
}
|
|
47523
|
-
} finally {
|
|
47524
|
-
if (_didIteratorError) {
|
|
47525
|
-
throw _iteratorError;
|
|
47526
|
-
}
|
|
47527
|
-
}
|
|
47528
|
-
}
|
|
47529
|
-
return [
|
|
47530
|
-
2
|
|
47531
|
-
];
|
|
47405
|
+
if (hasWebBackEvent) {
|
|
47406
|
+
_iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;
|
|
47407
|
+
try {
|
|
47408
|
+
for (_iterator = webBackHandlersRef[Symbol.iterator](); !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
|
|
47409
|
+
handler = _step.value;
|
|
47410
|
+
handler();
|
|
47532
47411
|
}
|
|
47533
|
-
|
|
47534
|
-
|
|
47535
|
-
|
|
47536
|
-
|
|
47537
|
-
|
|
47538
|
-
|
|
47539
|
-
|
|
47540
|
-
|
|
47541
|
-
|
|
47542
|
-
|
|
47543
|
-
|
|
47544
|
-
|
|
47545
|
-
openConfirm({
|
|
47546
|
-
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
47547
|
-
leftButton: "\uB2EB\uAE30",
|
|
47548
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
47549
|
-
closeOnDimmerClick: true,
|
|
47550
|
-
onEntered: logging.closePopupShow
|
|
47551
|
-
})
|
|
47552
|
-
];
|
|
47553
|
-
case 2:
|
|
47554
|
-
isConfirmed = _state.sent();
|
|
47555
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
47556
|
-
if (isConfirmed) {
|
|
47557
|
-
closeView();
|
|
47412
|
+
} catch (err) {
|
|
47413
|
+
_didIteratorError = true;
|
|
47414
|
+
_iteratorError = err;
|
|
47415
|
+
} finally {
|
|
47416
|
+
try {
|
|
47417
|
+
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
47418
|
+
_iterator.return();
|
|
47419
|
+
}
|
|
47420
|
+
} finally {
|
|
47421
|
+
if (_didIteratorError) {
|
|
47422
|
+
throw _iteratorError;
|
|
47423
|
+
}
|
|
47558
47424
|
}
|
|
47559
|
-
|
|
47560
|
-
|
|
47561
|
-
|
|
47562
|
-
|
|
47563
|
-
];
|
|
47425
|
+
}
|
|
47426
|
+
return [
|
|
47427
|
+
2
|
|
47428
|
+
];
|
|
47564
47429
|
}
|
|
47430
|
+
if (hasHistory) {
|
|
47431
|
+
;
|
|
47432
|
+
(_webViewRef_current = webViewRef.current) === null || _webViewRef_current === void 0 ? void 0 : _webViewRef_current.injectJavaScript("window.history.back();");
|
|
47433
|
+
} else {
|
|
47434
|
+
closeView();
|
|
47435
|
+
}
|
|
47436
|
+
return [
|
|
47437
|
+
2
|
|
47438
|
+
];
|
|
47565
47439
|
});
|
|
47566
47440
|
})();
|
|
47567
47441
|
}, [
|
|
47568
|
-
global2.brandDisplayName,
|
|
47569
47442
|
hasHistory,
|
|
47570
47443
|
hasWebBackEvent,
|
|
47571
47444
|
webBackHandlersRef,
|
|
47572
47445
|
logging,
|
|
47573
|
-
openConfirm,
|
|
47574
47446
|
webViewRef
|
|
47575
47447
|
]);
|
|
47576
|
-
var handleWebHome = (0,
|
|
47448
|
+
var handleWebHome = (0, import_react200.useCallback)(function() {
|
|
47577
47449
|
var _webViewRef_current;
|
|
47578
47450
|
logging.homeButtonClick();
|
|
47579
47451
|
if (homeEvent.hasSubscriptions()) {
|
|
@@ -47588,7 +47460,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47588
47460
|
webViewInitialURL,
|
|
47589
47461
|
webViewRef
|
|
47590
47462
|
]);
|
|
47591
|
-
return (0,
|
|
47463
|
+
return (0, import_react200.useMemo)(function() {
|
|
47592
47464
|
return {
|
|
47593
47465
|
addEventListener,
|
|
47594
47466
|
removeEventListener,
|
|
@@ -47893,8 +47765,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47893
47765
|
if (!TYPES.includes(type)) {
|
|
47894
47766
|
throw new Error("Invalid WebView type: '".concat(type, "'"));
|
|
47895
47767
|
}
|
|
47896
|
-
var webViewRef = (0,
|
|
47897
|
-
var url = (0,
|
|
47768
|
+
var webViewRef = (0, import_react193.useRef)(null);
|
|
47769
|
+
var url = (0, import_react193.useMemo)(function() {
|
|
47898
47770
|
return getWebViewURL(local);
|
|
47899
47771
|
}, [
|
|
47900
47772
|
local
|
|
@@ -47906,7 +47778,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47906
47778
|
var global2 = getAppsInTossGlobals();
|
|
47907
47779
|
var navigationBarContext = useNavigationBarContext();
|
|
47908
47780
|
var safeAreaInsetsEvent = useSafeAreaInsetsEvent();
|
|
47909
|
-
var _useState6 = _sliced_to_array((0,
|
|
47781
|
+
var _useState6 = _sliced_to_array((0, import_react193.useState)(props.allowsBackForwardNavigationGestures), 2), allowsBackForwardNavigationGestures = _useState6[0], setAllowsBackForwardNavigationGestures = _useState6[1];
|
|
47910
47782
|
var handler = useBridgeHandler({
|
|
47911
47783
|
onMessage,
|
|
47912
47784
|
eventListenerMap: _object_spread_props(_object_spread({}, event_bridges_exports), {
|
|
@@ -47954,7 +47826,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47954
47826
|
showFullScreenAd,
|
|
47955
47827
|
fetchTossAd,
|
|
47956
47828
|
iapCreateOneTimePurchaseOrder: IAP.createOneTimePurchaseOrder,
|
|
47957
|
-
requestSubscriptionPurchase
|
|
47829
|
+
requestSubscriptionPurchase,
|
|
47958
47830
|
requestOneTimePurchase,
|
|
47959
47831
|
requestNotificationAgreement
|
|
47960
47832
|
}),
|
|
@@ -48049,7 +47921,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48049
47921
|
}
|
|
48050
47922
|
})
|
|
48051
47923
|
});
|
|
48052
|
-
var headerPropForExternalWebView = (0,
|
|
47924
|
+
var headerPropForExternalWebView = (0, import_react193.useMemo)(function() {
|
|
48053
47925
|
var _ref;
|
|
48054
47926
|
var parsedNavigationBar = global2.navigationBar != null ? safeParseNavigationBar(global2.navigationBar) : null;
|
|
48055
47927
|
var initialAccessoryButton = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.initialAccessoryButton;
|
|
@@ -48074,7 +47946,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48074
47946
|
colorPreference: "light"
|
|
48075
47947
|
});
|
|
48076
47948
|
var refs = mergeRefs3(handler.ref, webViewRef);
|
|
48077
|
-
(0,
|
|
47949
|
+
(0, import_react193.useEffect)(function() {
|
|
48078
47950
|
var callback = function() {
|
|
48079
47951
|
webBackHandler.handleWebBack();
|
|
48080
47952
|
return true;
|
|
@@ -48150,7 +48022,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48150
48022
|
onRenderProcessGone: handleWebViewProcessDidTerminate
|
|
48151
48023
|
}));
|
|
48152
48024
|
}
|
|
48153
|
-
var import_react_native187, import_react178, import_react179, import_jsx_runtime216, import_react180, import_jsx_runtime217, import_react181, import_react_native191, import_react182, import_react_native193, import_react183, import_react184, import_react_native196, import_react185, import_react186, import_react187, import_react188, import_jsx_runtime218, import_jsx_runtime219, import_react189, import_react_native199, import_react190, import_react191,
|
|
48025
|
+
var import_react_native187, import_react178, import_react179, import_jsx_runtime216, import_react180, import_jsx_runtime217, import_react181, import_react_native191, import_react182, import_react_native193, import_react183, import_react184, import_react_native196, import_react185, import_react186, import_react187, import_react188, import_jsx_runtime218, import_jsx_runtime219, import_react189, import_react_native199, import_react190, import_react191, import_react_native204, import_jsx_runtime220, import_jsx_runtime221, import_jsx_runtime222, import_jsx_runtime223, import_jsx_runtime224, import_react192, import_jsx_runtime225, import_jsx_runtime226, import_react_native207, import_jsx_runtime227, import_jsx_runtime228, import_jsx_runtime229, import_react193, import_react_native209, import_react194, import_react_native210, import_react195, import_react_native212, import_jsx_runtime230, import_jsx_runtime231, import_react196, import_react197, import_jsx_runtime232, import_jsx_runtime233, import_react198, import_react199, import_react200, import_react201, import_react_native218, import_react202, import_react203, import_jsx_runtime234, import_react204, import_react_native221, import_react205, import_react_native222, import_jsx_runtime235, import_react206, 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;
|
|
48154
48026
|
var init_dist8 = __esm({
|
|
48155
48027
|
"../../../.yarn/__virtual__/@apps-in-toss-framework-virtual-afbad361af/1/packages/apps-in-toss/framework/dist/index.js"() {
|
|
48156
48028
|
"use strict";
|
|
@@ -48217,15 +48089,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48217
48089
|
import_react_native199 = __toESM(require_react_native(), 1);
|
|
48218
48090
|
init_src3();
|
|
48219
48091
|
import_react190 = __toESM(require_react(), 1);
|
|
48220
|
-
init_esm7();
|
|
48221
|
-
init_dist6();
|
|
48222
|
-
import_react191 = __toESM(require_react(), 1);
|
|
48223
48092
|
init_src3();
|
|
48224
48093
|
init_dist5();
|
|
48225
48094
|
init_src3();
|
|
48226
48095
|
init_esm7();
|
|
48227
48096
|
init_private2();
|
|
48228
|
-
|
|
48097
|
+
import_react191 = __toESM(require_react(), 1);
|
|
48229
48098
|
init_dist5();
|
|
48230
48099
|
init_src3();
|
|
48231
48100
|
init_esm7();
|
|
@@ -48241,7 +48110,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48241
48110
|
init_src3();
|
|
48242
48111
|
import_jsx_runtime223 = __toESM(require_jsx_runtime(), 1);
|
|
48243
48112
|
import_jsx_runtime224 = __toESM(require_jsx_runtime(), 1);
|
|
48244
|
-
|
|
48113
|
+
import_react192 = __toESM(require_react(), 1);
|
|
48245
48114
|
import_jsx_runtime225 = __toESM(require_jsx_runtime(), 1);
|
|
48246
48115
|
import_jsx_runtime226 = __toESM(require_jsx_runtime(), 1);
|
|
48247
48116
|
init_react_native_safe_area_context();
|
|
@@ -48263,28 +48132,25 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48263
48132
|
init_src3();
|
|
48264
48133
|
init_esm7();
|
|
48265
48134
|
init_private2();
|
|
48266
|
-
|
|
48135
|
+
import_react193 = __toESM(require_react(), 1);
|
|
48267
48136
|
import_react_native209 = __toESM(require_react_native(), 1);
|
|
48268
48137
|
init_dist5();
|
|
48269
48138
|
init_react_native_webview();
|
|
48270
|
-
|
|
48139
|
+
import_react194 = __toESM(require_react(), 1);
|
|
48271
48140
|
import_react_native210 = __toESM(require_react_native(), 1);
|
|
48272
48141
|
init_react_native_safe_area_context();
|
|
48273
48142
|
init_src3();
|
|
48274
48143
|
init_esm7();
|
|
48275
48144
|
init_private2();
|
|
48276
|
-
|
|
48277
|
-
import_react196 = __toESM(require_react(), 1);
|
|
48145
|
+
import_react195 = __toESM(require_react(), 1);
|
|
48278
48146
|
import_react_native212 = __toESM(require_react_native(), 1);
|
|
48279
48147
|
import_jsx_runtime230 = __toESM(require_jsx_runtime(), 1);
|
|
48280
48148
|
import_jsx_runtime231 = __toESM(require_jsx_runtime(), 1);
|
|
48281
48149
|
init_react_native_webview();
|
|
48282
|
-
|
|
48150
|
+
import_react196 = __toESM(require_react(), 1);
|
|
48283
48151
|
init_src3();
|
|
48284
|
-
init_esm7();
|
|
48285
48152
|
init_private2();
|
|
48286
|
-
|
|
48287
|
-
import_react198 = __toESM(require_react(), 1);
|
|
48153
|
+
import_react197 = __toESM(require_react(), 1);
|
|
48288
48154
|
import_jsx_runtime232 = __toESM(require_jsx_runtime(), 1);
|
|
48289
48155
|
import_jsx_runtime233 = __toESM(require_jsx_runtime(), 1);
|
|
48290
48156
|
init_dist5();
|
|
@@ -48293,19 +48159,17 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48293
48159
|
init_dist5();
|
|
48294
48160
|
init_src3();
|
|
48295
48161
|
init_src3();
|
|
48296
|
-
|
|
48162
|
+
import_react198 = __toESM(require_react(), 1);
|
|
48297
48163
|
init_react_native_safe_area_context();
|
|
48298
|
-
|
|
48164
|
+
import_react199 = __toESM(require_react(), 1);
|
|
48299
48165
|
init_src3();
|
|
48300
|
-
|
|
48301
|
-
init_dist6();
|
|
48166
|
+
import_react200 = __toESM(require_react(), 1);
|
|
48302
48167
|
import_react201 = __toESM(require_react(), 1);
|
|
48303
|
-
import_react202 = __toESM(require_react(), 1);
|
|
48304
48168
|
init_dist5();
|
|
48305
48169
|
import_react_native218 = __toESM(require_react_native(), 1);
|
|
48306
48170
|
init_dist5();
|
|
48171
|
+
import_react202 = __toESM(require_react(), 1);
|
|
48307
48172
|
import_react203 = __toESM(require_react(), 1);
|
|
48308
|
-
import_react204 = __toESM(require_react(), 1);
|
|
48309
48173
|
init_dist5();
|
|
48310
48174
|
init_src3();
|
|
48311
48175
|
init_esm7();
|
|
@@ -48315,12 +48179,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48315
48179
|
init_dist5();
|
|
48316
48180
|
init_dist3();
|
|
48317
48181
|
init_dist3();
|
|
48318
|
-
|
|
48182
|
+
import_react204 = __toESM(require_react(), 1);
|
|
48319
48183
|
import_react_native221 = __toESM(require_react_native(), 1);
|
|
48320
|
-
|
|
48184
|
+
import_react205 = __toESM(require_react(), 1);
|
|
48321
48185
|
import_react_native222 = __toESM(require_react_native(), 1);
|
|
48322
48186
|
import_jsx_runtime235 = __toESM(require_jsx_runtime(), 1);
|
|
48323
|
-
|
|
48187
|
+
import_react206 = __toESM(require_react(), 1);
|
|
48324
48188
|
import_react_native223 = __toESM(require_react_native(), 1);
|
|
48325
48189
|
import_jsx_runtime236 = __toESM(require_jsx_runtime(), 1);
|
|
48326
48190
|
import_jsx_runtime237 = __toESM(require_jsx_runtime(), 1);
|
|
@@ -48875,12 +48739,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48875
48739
|
safeAreaInsetsChange = createEvent("safeAreaInsetsChange");
|
|
48876
48740
|
NAVI_BAR_IMPRESSION_SCHEMA_ID = 1596837;
|
|
48877
48741
|
NAVI_BAR_IMPRESSION_LOG_NAME = "appsintoss_app_visit__common_module::impression__navigation_bar";
|
|
48878
|
-
CLOSE_POPUP_SHOW_SCHEMA_ID = 1644490;
|
|
48879
|
-
CLOSE_POPUP_SHOW_LOG_NAME = "appsintoss_app_visit__common_module::popup__close_app";
|
|
48880
48742
|
CLOSE_BUTTON_CLICK_SCHEMA_ID = 1596831;
|
|
48881
48743
|
CLOSE_BUTTON_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::click__icon_close";
|
|
48882
|
-
CLOSE_POPUP_CTA_CLICK_SCHEMA_ID = 1644492;
|
|
48883
|
-
CLOSE_POPUP_CTA_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::popup__close_app::click__cta";
|
|
48884
48744
|
HOME_BUTTON_CLICK_SCHEMA_ID = 1596839;
|
|
48885
48745
|
HOME_BUTTON_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::click__icon_home";
|
|
48886
48746
|
BOTTOM_SHEET_SCHEMA_ID = 1596825;
|
|
@@ -48928,8 +48788,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48928
48788
|
AppsInToss = {
|
|
48929
48789
|
registerApp
|
|
48930
48790
|
};
|
|
48931
|
-
GameWebView = /* @__PURE__ */ (0,
|
|
48932
|
-
(0,
|
|
48791
|
+
GameWebView = /* @__PURE__ */ (0, import_react194.forwardRef)(function GameWebView2(props, ref) {
|
|
48792
|
+
(0, import_react194.useEffect)(function() {
|
|
48933
48793
|
if (import_react_native210.Platform.OS === "ios") {
|
|
48934
48794
|
setIosSwipeGestureEnabled({
|
|
48935
48795
|
isEnabled: false
|
|
@@ -48955,7 +48815,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48955
48815
|
]
|
|
48956
48816
|
});
|
|
48957
48817
|
});
|
|
48958
|
-
PartnerWebView = /* @__PURE__ */ (0,
|
|
48818
|
+
PartnerWebView = /* @__PURE__ */ (0, import_react196.forwardRef)(function PartnerWebViewScreen(_03, _1) {
|
|
48959
48819
|
var _ref = [
|
|
48960
48820
|
_03,
|
|
48961
48821
|
_1
|