@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
|
@@ -10874,6 +10874,31 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
10874
10874
|
});
|
|
10875
10875
|
return unregisterCallbacks;
|
|
10876
10876
|
}
|
|
10877
|
+
function requestSubscriptionPurchase(params) {
|
|
10878
|
+
var options = params.options, onEvent = params.onEvent, onError = params.onError;
|
|
10879
|
+
var sku = options.sku, offerId = options.offerId;
|
|
10880
|
+
var unregisterCallbacks = INTERNAL__appBridgeHandler.invokeAppBridgeMethod("requestSubscriptionPurchase", {
|
|
10881
|
+
sku,
|
|
10882
|
+
offerId: offerId !== null && offerId !== void 0 ? offerId : null
|
|
10883
|
+
}, {
|
|
10884
|
+
onPurchased: function(params2) {
|
|
10885
|
+
onEvent({
|
|
10886
|
+
type: "purchased",
|
|
10887
|
+
data: params2
|
|
10888
|
+
});
|
|
10889
|
+
},
|
|
10890
|
+
onSuccess: function(result) {
|
|
10891
|
+
onEvent({
|
|
10892
|
+
type: "success",
|
|
10893
|
+
data: result
|
|
10894
|
+
});
|
|
10895
|
+
},
|
|
10896
|
+
onError: function(error) {
|
|
10897
|
+
onError(error);
|
|
10898
|
+
}
|
|
10899
|
+
});
|
|
10900
|
+
return unregisterCallbacks;
|
|
10901
|
+
}
|
|
10877
10902
|
function createOneTimePurchaseOrder(params) {
|
|
10878
10903
|
var _options_sku;
|
|
10879
10904
|
var isIAPSupported = isMinVersionSupported({
|
|
@@ -45005,38 +45030,6 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45005
45030
|
handler
|
|
45006
45031
|
]);
|
|
45007
45032
|
}
|
|
45008
|
-
function useCloseConfirm() {
|
|
45009
|
-
var brandDisplayName = getAppsInTossGlobals().brandDisplayName;
|
|
45010
|
-
var openConfirm = useDialog().openConfirm;
|
|
45011
|
-
return (0, import_react192.useCallback)(function(param) {
|
|
45012
|
-
var onEntered = param.onEntered;
|
|
45013
|
-
return _async_to_generator(function() {
|
|
45014
|
-
return __generator(this, function(_state) {
|
|
45015
|
-
switch (_state.label) {
|
|
45016
|
-
case 0:
|
|
45017
|
-
return [
|
|
45018
|
-
4,
|
|
45019
|
-
openConfirm({
|
|
45020
|
-
title: "".concat(josa(brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45021
|
-
leftButton: "\uB2EB\uAE30",
|
|
45022
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45023
|
-
closeOnDimmerClick: true,
|
|
45024
|
-
onEntered
|
|
45025
|
-
})
|
|
45026
|
-
];
|
|
45027
|
-
case 1:
|
|
45028
|
-
return [
|
|
45029
|
-
2,
|
|
45030
|
-
_state.sent()
|
|
45031
|
-
];
|
|
45032
|
-
}
|
|
45033
|
-
});
|
|
45034
|
-
})();
|
|
45035
|
-
}, [
|
|
45036
|
-
brandDisplayName,
|
|
45037
|
-
openConfirm
|
|
45038
|
-
]);
|
|
45039
|
-
}
|
|
45040
45033
|
function createEvent(event) {
|
|
45041
45034
|
return {
|
|
45042
45035
|
name: event,
|
|
@@ -45090,30 +45083,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45090
45083
|
})
|
|
45091
45084
|
});
|
|
45092
45085
|
};
|
|
45093
|
-
var logClosePopupShow = function() {
|
|
45094
|
-
sendLog({
|
|
45095
|
-
log_name: CLOSE_POPUP_SHOW_LOG_NAME,
|
|
45096
|
-
log_type: "popup",
|
|
45097
|
-
params: _object_spread_props(_object_spread({}, baseParams), {
|
|
45098
|
-
schema_id: CLOSE_POPUP_SHOW_SCHEMA_ID
|
|
45099
|
-
})
|
|
45100
|
-
});
|
|
45101
|
-
};
|
|
45102
|
-
var logClosePopupCtaClick = function(confirm) {
|
|
45103
|
-
sendLog({
|
|
45104
|
-
log_name: CLOSE_POPUP_CTA_CLICK_LOG_NAME,
|
|
45105
|
-
log_type: "event",
|
|
45106
|
-
params: _object_spread_props(_object_spread({}, baseParams), {
|
|
45107
|
-
close_yn: confirm ? "Y" : "N",
|
|
45108
|
-
schema_id: CLOSE_POPUP_CTA_CLICK_SCHEMA_ID,
|
|
45109
|
-
event_type: "click"
|
|
45110
|
-
})
|
|
45111
|
-
});
|
|
45112
|
-
};
|
|
45113
45086
|
return {
|
|
45114
45087
|
navBarImpression: logNavBarImpression,
|
|
45115
|
-
closePopupShow: logClosePopupShow,
|
|
45116
|
-
closePopupCtaClick: logClosePopupCtaClick,
|
|
45117
45088
|
closeButtonClick: logCloseButtonClick,
|
|
45118
45089
|
homeButtonClick: logHomeButtonClick
|
|
45119
45090
|
};
|
|
@@ -45122,33 +45093,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45122
45093
|
var backEventContext = useBackEventContext();
|
|
45123
45094
|
var logging = useNavigationBarLogging();
|
|
45124
45095
|
var navigation = useNavigation();
|
|
45125
|
-
var closeConfirm = useCloseConfirm();
|
|
45126
45096
|
return (0, import_react191.useMemo)(function() {
|
|
45127
|
-
var close = function() {
|
|
45128
|
-
return _async_to_generator(function() {
|
|
45129
|
-
var hasConfirmed;
|
|
45130
|
-
return __generator(this, function(_state) {
|
|
45131
|
-
switch (_state.label) {
|
|
45132
|
-
case 0:
|
|
45133
|
-
return [
|
|
45134
|
-
4,
|
|
45135
|
-
closeConfirm({
|
|
45136
|
-
onEntered: logging.closePopupShow
|
|
45137
|
-
})
|
|
45138
|
-
];
|
|
45139
|
-
case 1:
|
|
45140
|
-
hasConfirmed = _state.sent();
|
|
45141
|
-
logging.closePopupCtaClick(hasConfirmed);
|
|
45142
|
-
if (hasConfirmed) {
|
|
45143
|
-
closeView();
|
|
45144
|
-
}
|
|
45145
|
-
return [
|
|
45146
|
-
2
|
|
45147
|
-
];
|
|
45148
|
-
}
|
|
45149
|
-
});
|
|
45150
|
-
})();
|
|
45151
|
-
};
|
|
45152
45097
|
return {
|
|
45153
45098
|
handleBack: function() {
|
|
45154
45099
|
if (backEventContext.hasBackEvent) {
|
|
@@ -45156,7 +45101,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45156
45101
|
} else if (navigation.canGoBack()) {
|
|
45157
45102
|
navigation.goBack();
|
|
45158
45103
|
} else {
|
|
45159
|
-
|
|
45104
|
+
closeView();
|
|
45160
45105
|
}
|
|
45161
45106
|
},
|
|
45162
45107
|
handleHomeButtonClick: function() {
|
|
@@ -45169,13 +45114,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45169
45114
|
},
|
|
45170
45115
|
handleCloseButtonClick: function() {
|
|
45171
45116
|
logging.closeButtonClick();
|
|
45172
|
-
|
|
45117
|
+
closeView();
|
|
45173
45118
|
}
|
|
45174
45119
|
};
|
|
45175
45120
|
}, [
|
|
45176
45121
|
backEventContext,
|
|
45177
45122
|
navigation,
|
|
45178
|
-
closeConfirm,
|
|
45179
45123
|
logging
|
|
45180
45124
|
]);
|
|
45181
45125
|
}
|
|
@@ -45402,7 +45346,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45402
45346
|
function useMoreButtonBottomSheet() {
|
|
45403
45347
|
var globals = getAppsInTossGlobals();
|
|
45404
45348
|
var adaptive = useAdaptive();
|
|
45405
|
-
var _useState4 = _sliced_to_array((0,
|
|
45349
|
+
var _useState4 = _sliced_to_array((0, import_react192.useState)([]), 2), itemList = _useState4[0], setItemList = _useState4[1];
|
|
45406
45350
|
var appUpdateDialog = useAppUpdateDialog();
|
|
45407
45351
|
var logging = useMoreButtonBottomSheetLogging();
|
|
45408
45352
|
var overlay = useOverlay();
|
|
@@ -45411,7 +45355,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45411
45355
|
var isBottomSheetSupported = isMinVersionSupported(MIN_VERSION6.BOTTOM_SHEET);
|
|
45412
45356
|
var isShareListMenuSupported = isMinVersionSupported(MIN_VERSION6.SHARE_LIST_MENU);
|
|
45413
45357
|
var isSettingsMenuSupported = isMinVersionSupported(MIN_VERSION6.SETTINGS_MENU);
|
|
45414
|
-
(0,
|
|
45358
|
+
(0, import_react192.useEffect)(function() {
|
|
45415
45359
|
if (!isBottomSheetSupported) {
|
|
45416
45360
|
return;
|
|
45417
45361
|
}
|
|
@@ -45512,7 +45456,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45512
45456
|
function BottomSheetImpressionArea(param) {
|
|
45513
45457
|
var children = param.children;
|
|
45514
45458
|
var logging = useMoreButtonBottomSheetLogging();
|
|
45515
|
-
(0,
|
|
45459
|
+
(0, import_react192.useEffect)(function() {
|
|
45516
45460
|
logging.show();
|
|
45517
45461
|
}, [
|
|
45518
45462
|
logging
|
|
@@ -45532,9 +45476,9 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45532
45476
|
}
|
|
45533
45477
|
function NavigationBarImpressionArea(param) {
|
|
45534
45478
|
var children = param.children, withHomeButton = param.withHomeButton;
|
|
45535
|
-
var hasLogged = (0,
|
|
45479
|
+
var hasLogged = (0, import_react193.useRef)(false);
|
|
45536
45480
|
var logging = useNavigationBarLogging();
|
|
45537
|
-
(0,
|
|
45481
|
+
(0, import_react193.useEffect)(function() {
|
|
45538
45482
|
if (hasLogged.current === false) {
|
|
45539
45483
|
logging.navBarImpression({
|
|
45540
45484
|
home_icon_yn: withHomeButton ? "Y" : "N"
|
|
@@ -45763,42 +45707,21 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45763
45707
|
function GameWebviewNavigationBar() {
|
|
45764
45708
|
var safeAreaTop = useSafeAreaTop();
|
|
45765
45709
|
var openConfirm = useDialog().openConfirm;
|
|
45766
|
-
var global2 = getAppsInTossGlobals();
|
|
45767
45710
|
var logging = useNavigationBarLogging();
|
|
45768
45711
|
var _useMoreButtonBottomSheet = useMoreButtonBottomSheet(), openMoreButtonBottomSheet = _useMoreButtonBottomSheet.open;
|
|
45769
45712
|
var navigationRightButton = useNavigationBarContext().navigationRightButton;
|
|
45770
45713
|
var _useSafeAreaInsets2 = (0, react_native_safe_area_context_exports.useSafeAreaInsets)(), safeAreaRight = _useSafeAreaInsets2.right;
|
|
45771
|
-
var handleGameWebviewClose = (0,
|
|
45714
|
+
var handleGameWebviewClose = (0, import_react196.useCallback)(function() {
|
|
45772
45715
|
return _async_to_generator(function() {
|
|
45773
|
-
var isConfirmed;
|
|
45774
45716
|
return __generator(this, function(_state) {
|
|
45775
|
-
|
|
45776
|
-
|
|
45777
|
-
|
|
45778
|
-
|
|
45779
|
-
|
|
45780
|
-
openConfirm({
|
|
45781
|
-
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45782
|
-
leftButton: "\uB2EB\uAE30",
|
|
45783
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45784
|
-
closeOnDimmerClick: true,
|
|
45785
|
-
onEntered: logging.closePopupShow
|
|
45786
|
-
})
|
|
45787
|
-
];
|
|
45788
|
-
case 1:
|
|
45789
|
-
isConfirmed = _state.sent();
|
|
45790
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
45791
|
-
if (isConfirmed) {
|
|
45792
|
-
closeView();
|
|
45793
|
-
}
|
|
45794
|
-
return [
|
|
45795
|
-
2
|
|
45796
|
-
];
|
|
45797
|
-
}
|
|
45717
|
+
logging.closeButtonClick();
|
|
45718
|
+
closeView();
|
|
45719
|
+
return [
|
|
45720
|
+
2
|
|
45721
|
+
];
|
|
45798
45722
|
});
|
|
45799
45723
|
})();
|
|
45800
45724
|
}, [
|
|
45801
|
-
global2.brandDisplayName,
|
|
45802
45725
|
logging,
|
|
45803
45726
|
openConfirm
|
|
45804
45727
|
]);
|
|
@@ -45839,45 +45762,23 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45839
45762
|
var _ref, _ref1;
|
|
45840
45763
|
var globals = getAppsInTossGlobals();
|
|
45841
45764
|
var logging = useNavigationBarLogging();
|
|
45842
|
-
var openConfirm = useDialog().openConfirm;
|
|
45843
45765
|
var _useMoreButtonBottomSheet = useMoreButtonBottomSheet(), openMoreButtonBottomSheet = _useMoreButtonBottomSheet.open;
|
|
45844
45766
|
var parsedNavigationBar = globals.navigationBar != null ? safeParseNavigationBar(globals.navigationBar) : null;
|
|
45845
45767
|
var withHomeButton = (_ref = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.withHomeButton) !== null && _ref !== void 0 ? _ref : false;
|
|
45846
45768
|
var withBackButton = (_ref1 = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.withBackButton) !== null && _ref1 !== void 0 ? _ref1 : true;
|
|
45847
45769
|
var navigationRightButton = useNavigationBarContext().navigationRightButton;
|
|
45848
|
-
var handleClose = (0,
|
|
45770
|
+
var handleClose = (0, import_react198.useCallback)(function() {
|
|
45849
45771
|
return _async_to_generator(function() {
|
|
45850
|
-
var isConfirmed;
|
|
45851
45772
|
return __generator(this, function(_state) {
|
|
45852
|
-
|
|
45853
|
-
|
|
45854
|
-
|
|
45855
|
-
|
|
45856
|
-
|
|
45857
|
-
openConfirm({
|
|
45858
|
-
title: "".concat(josa(globals.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45859
|
-
leftButton: "\uB2EB\uAE30",
|
|
45860
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45861
|
-
closeOnDimmerClick: true,
|
|
45862
|
-
onEntered: logging.closePopupShow
|
|
45863
|
-
})
|
|
45864
|
-
];
|
|
45865
|
-
case 1:
|
|
45866
|
-
isConfirmed = _state.sent();
|
|
45867
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
45868
|
-
if (isConfirmed) {
|
|
45869
|
-
closeView();
|
|
45870
|
-
}
|
|
45871
|
-
return [
|
|
45872
|
-
2
|
|
45873
|
-
];
|
|
45874
|
-
}
|
|
45773
|
+
logging.closeButtonClick();
|
|
45774
|
+
closeView();
|
|
45775
|
+
return [
|
|
45776
|
+
2
|
|
45777
|
+
];
|
|
45875
45778
|
});
|
|
45876
45779
|
})();
|
|
45877
45780
|
}, [
|
|
45878
|
-
|
|
45879
|
-
logging,
|
|
45880
|
-
openConfirm
|
|
45781
|
+
logging
|
|
45881
45782
|
]);
|
|
45882
45783
|
return (0, import_jsx_runtime232.jsx)(NavigationBarImpressionArea, {
|
|
45883
45784
|
withHomeButton,
|
|
@@ -46326,8 +46227,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46326
46227
|
}
|
|
46327
46228
|
function useBridgeHandler(param) {
|
|
46328
46229
|
var onMessage = param.onMessage, constantHandlerMap = param.constantHandlerMap, asyncHandlerMap = param.asyncHandlerMap, eventListenerMap = param.eventListenerMap;
|
|
46329
|
-
var ref = (0,
|
|
46330
|
-
var injectedJavaScript = (0,
|
|
46230
|
+
var ref = (0, import_react199.useRef)(null);
|
|
46231
|
+
var injectedJavaScript = (0, import_react199.useMemo)(function() {
|
|
46331
46232
|
return "window.__CONSTANT_HANDLER_MAP = ".concat(JSON.stringify(Object.entries(constantHandlerMap).reduce(function(acc, param2) {
|
|
46332
46233
|
var _param = _sliced_to_array(param2, 2), key = _param[0], value = _param[1];
|
|
46333
46234
|
acc[key] = typeof value === "function" ? value() : value;
|
|
@@ -46336,7 +46237,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46336
46237
|
}, [
|
|
46337
46238
|
constantHandlerMap
|
|
46338
46239
|
]);
|
|
46339
|
-
(0,
|
|
46240
|
+
(0, import_react199.useEffect)(function() {
|
|
46340
46241
|
var _ref_current;
|
|
46341
46242
|
(_ref_current = ref.current) === null || _ref_current === void 0 ? void 0 : _ref_current.injectJavaScript(injectedJavaScript);
|
|
46342
46243
|
}, [
|
|
@@ -46355,7 +46256,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46355
46256
|
(_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 "));
|
|
46356
46257
|
};
|
|
46357
46258
|
};
|
|
46358
|
-
var $onMessage = (0,
|
|
46259
|
+
var $onMessage = (0, import_react199.useCallback)(function(e64) {
|
|
46359
46260
|
return _async_to_generator(function() {
|
|
46360
46261
|
var data, _eventListenerMap_data_functionName, handleOnEvent, handleOnError, remove, key, remove1, _ref_current;
|
|
46361
46262
|
return __generator(this, function(_state) {
|
|
@@ -46428,12 +46329,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46428
46329
|
}
|
|
46429
46330
|
function useSafeAreaInsetsEvent() {
|
|
46430
46331
|
var insets = (0, react_native_safe_area_context_exports.useSafeAreaInsets)();
|
|
46431
|
-
(0,
|
|
46332
|
+
(0, import_react200.useEffect)(function() {
|
|
46432
46333
|
safeAreaInsetsChange.emit(insets);
|
|
46433
46334
|
}, [
|
|
46434
46335
|
insets
|
|
46435
46336
|
]);
|
|
46436
|
-
(0,
|
|
46337
|
+
(0, import_react200.useEffect)(function() {
|
|
46437
46338
|
return function() {
|
|
46438
46339
|
return safeAreaInsetsChange.clearSubscriptions();
|
|
46439
46340
|
};
|
|
@@ -46483,8 +46384,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46483
46384
|
}
|
|
46484
46385
|
}
|
|
46485
46386
|
function useWebViewHistory() {
|
|
46486
|
-
var _useReducer = _sliced_to_array((0,
|
|
46487
|
-
var onNavigationStateChange = (0,
|
|
46387
|
+
var _useReducer = _sliced_to_array((0, import_react202.useReducer)(reducer, INITIAL_STATE), 2), state = _useReducer[0], dispatch = _useReducer[1];
|
|
46388
|
+
var onNavigationStateChange = (0, import_react202.useCallback)(function(param) {
|
|
46488
46389
|
var url = param.url, canGoForward2 = param.canGoForward;
|
|
46489
46390
|
dispatch({
|
|
46490
46391
|
type: "NAVIGATION_CHANGE",
|
|
@@ -46492,7 +46393,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46492
46393
|
canGoForward: canGoForward2
|
|
46493
46394
|
});
|
|
46494
46395
|
}, []);
|
|
46495
|
-
var _useMemo4 = (0,
|
|
46396
|
+
var _useMemo4 = (0, import_react202.useMemo)(function() {
|
|
46496
46397
|
var canBack = state.index > 0;
|
|
46497
46398
|
var canFwd = state.index >= 0 && state.index < state.stack.length - 1;
|
|
46498
46399
|
return {
|
|
@@ -46513,93 +46414,64 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46513
46414
|
var _useWebViewHistory = useWebViewHistory(), hasHistory = _useWebViewHistory.hasHistory, onNavigationStateChange = _useWebViewHistory.onNavigationStateChange;
|
|
46514
46415
|
var _useBackEventState = useBackEventState(), webBackHandlersRef = _useBackEventState.handlersRef, hasWebBackEvent = _useBackEventState.hasBackEvent, addWebBackEventListener = _useBackEventState.addEventListener, removeWebBackEventListener = _useBackEventState.removeEventListener;
|
|
46515
46416
|
var logging = useNavigationBarLogging();
|
|
46516
|
-
var
|
|
46517
|
-
var global2 = getAppsInTossGlobals();
|
|
46518
|
-
var addEventListener = (0, import_react202.useCallback)(function(handler) {
|
|
46417
|
+
var addEventListener = (0, import_react201.useCallback)(function(handler) {
|
|
46519
46418
|
addWebBackEventListener(handler);
|
|
46520
46419
|
}, [
|
|
46521
46420
|
addWebBackEventListener
|
|
46522
46421
|
]);
|
|
46523
|
-
var removeEventListener = (0,
|
|
46422
|
+
var removeEventListener = (0, import_react201.useCallback)(function(handler) {
|
|
46524
46423
|
removeWebBackEventListener(handler);
|
|
46525
46424
|
}, [
|
|
46526
46425
|
removeWebBackEventListener
|
|
46527
46426
|
]);
|
|
46528
|
-
var handleWebBack = (0,
|
|
46427
|
+
var handleWebBack = (0, import_react201.useCallback)(function() {
|
|
46529
46428
|
return _async_to_generator(function() {
|
|
46530
|
-
var _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, handler, _webViewRef_current
|
|
46429
|
+
var _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, handler, _webViewRef_current;
|
|
46531
46430
|
return __generator(this, function(_state) {
|
|
46532
|
-
|
|
46533
|
-
|
|
46534
|
-
|
|
46535
|
-
|
|
46536
|
-
|
|
46537
|
-
|
|
46538
|
-
handler = _step.value;
|
|
46539
|
-
handler();
|
|
46540
|
-
}
|
|
46541
|
-
} catch (err) {
|
|
46542
|
-
_didIteratorError = true;
|
|
46543
|
-
_iteratorError = err;
|
|
46544
|
-
} finally {
|
|
46545
|
-
try {
|
|
46546
|
-
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
46547
|
-
_iterator.return();
|
|
46548
|
-
}
|
|
46549
|
-
} finally {
|
|
46550
|
-
if (_didIteratorError) {
|
|
46551
|
-
throw _iteratorError;
|
|
46552
|
-
}
|
|
46553
|
-
}
|
|
46554
|
-
}
|
|
46555
|
-
return [
|
|
46556
|
-
2
|
|
46557
|
-
];
|
|
46431
|
+
if (hasWebBackEvent) {
|
|
46432
|
+
_iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;
|
|
46433
|
+
try {
|
|
46434
|
+
for (_iterator = webBackHandlersRef[Symbol.iterator](); !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
|
|
46435
|
+
handler = _step.value;
|
|
46436
|
+
handler();
|
|
46558
46437
|
}
|
|
46559
|
-
|
|
46560
|
-
|
|
46561
|
-
|
|
46562
|
-
|
|
46563
|
-
|
|
46564
|
-
|
|
46565
|
-
|
|
46566
|
-
|
|
46567
|
-
|
|
46568
|
-
|
|
46569
|
-
|
|
46570
|
-
|
|
46571
|
-
openConfirm({
|
|
46572
|
-
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
46573
|
-
leftButton: "\uB2EB\uAE30",
|
|
46574
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46575
|
-
closeOnDimmerClick: true,
|
|
46576
|
-
onEntered: logging.closePopupShow
|
|
46577
|
-
})
|
|
46578
|
-
];
|
|
46579
|
-
case 2:
|
|
46580
|
-
isConfirmed = _state.sent();
|
|
46581
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
46582
|
-
if (isConfirmed) {
|
|
46583
|
-
closeView();
|
|
46438
|
+
} catch (err) {
|
|
46439
|
+
_didIteratorError = true;
|
|
46440
|
+
_iteratorError = err;
|
|
46441
|
+
} finally {
|
|
46442
|
+
try {
|
|
46443
|
+
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
46444
|
+
_iterator.return();
|
|
46445
|
+
}
|
|
46446
|
+
} finally {
|
|
46447
|
+
if (_didIteratorError) {
|
|
46448
|
+
throw _iteratorError;
|
|
46449
|
+
}
|
|
46584
46450
|
}
|
|
46585
|
-
|
|
46586
|
-
|
|
46587
|
-
|
|
46588
|
-
|
|
46589
|
-
];
|
|
46451
|
+
}
|
|
46452
|
+
return [
|
|
46453
|
+
2
|
|
46454
|
+
];
|
|
46590
46455
|
}
|
|
46456
|
+
if (hasHistory) {
|
|
46457
|
+
;
|
|
46458
|
+
(_webViewRef_current = webViewRef.current) === null || _webViewRef_current === void 0 ? void 0 : _webViewRef_current.injectJavaScript("window.history.back();");
|
|
46459
|
+
} else {
|
|
46460
|
+
closeView();
|
|
46461
|
+
}
|
|
46462
|
+
return [
|
|
46463
|
+
2
|
|
46464
|
+
];
|
|
46591
46465
|
});
|
|
46592
46466
|
})();
|
|
46593
46467
|
}, [
|
|
46594
|
-
global2.brandDisplayName,
|
|
46595
46468
|
hasHistory,
|
|
46596
46469
|
hasWebBackEvent,
|
|
46597
46470
|
webBackHandlersRef,
|
|
46598
46471
|
logging,
|
|
46599
|
-
openConfirm,
|
|
46600
46472
|
webViewRef
|
|
46601
46473
|
]);
|
|
46602
|
-
var handleWebHome = (0,
|
|
46474
|
+
var handleWebHome = (0, import_react201.useCallback)(function() {
|
|
46603
46475
|
var _webViewRef_current;
|
|
46604
46476
|
logging.homeButtonClick();
|
|
46605
46477
|
if (homeEvent.hasSubscriptions()) {
|
|
@@ -46614,7 +46486,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46614
46486
|
webViewInitialURL,
|
|
46615
46487
|
webViewRef
|
|
46616
46488
|
]);
|
|
46617
|
-
return (0,
|
|
46489
|
+
return (0, import_react201.useMemo)(function() {
|
|
46618
46490
|
return {
|
|
46619
46491
|
addEventListener,
|
|
46620
46492
|
removeEventListener,
|
|
@@ -46919,8 +46791,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46919
46791
|
if (!TYPES.includes(type)) {
|
|
46920
46792
|
throw new Error("Invalid WebView type: '".concat(type, "'"));
|
|
46921
46793
|
}
|
|
46922
|
-
var webViewRef = (0,
|
|
46923
|
-
var url = (0,
|
|
46794
|
+
var webViewRef = (0, import_react194.useRef)(null);
|
|
46795
|
+
var url = (0, import_react194.useMemo)(function() {
|
|
46924
46796
|
return getWebViewURL(local);
|
|
46925
46797
|
}, [
|
|
46926
46798
|
local
|
|
@@ -46932,7 +46804,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46932
46804
|
var global2 = getAppsInTossGlobals();
|
|
46933
46805
|
var navigationBarContext = useNavigationBarContext();
|
|
46934
46806
|
var safeAreaInsetsEvent = useSafeAreaInsetsEvent();
|
|
46935
|
-
var _useState6 = _sliced_to_array((0,
|
|
46807
|
+
var _useState6 = _sliced_to_array((0, import_react194.useState)(props.allowsBackForwardNavigationGestures), 2), allowsBackForwardNavigationGestures = _useState6[0], setAllowsBackForwardNavigationGestures = _useState6[1];
|
|
46936
46808
|
var handler = useBridgeHandler({
|
|
46937
46809
|
onMessage,
|
|
46938
46810
|
eventListenerMap: _object_spread_props(_object_spread({}, event_bridges_exports), {
|
|
@@ -46980,7 +46852,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46980
46852
|
showFullScreenAd,
|
|
46981
46853
|
fetchTossAd,
|
|
46982
46854
|
iapCreateOneTimePurchaseOrder: IAP.createOneTimePurchaseOrder,
|
|
46983
|
-
requestSubscriptionPurchase
|
|
46855
|
+
requestSubscriptionPurchase,
|
|
46984
46856
|
requestOneTimePurchase,
|
|
46985
46857
|
requestNotificationAgreement
|
|
46986
46858
|
}),
|
|
@@ -47075,7 +46947,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47075
46947
|
}
|
|
47076
46948
|
})
|
|
47077
46949
|
});
|
|
47078
|
-
var headerPropForExternalWebView = (0,
|
|
46950
|
+
var headerPropForExternalWebView = (0, import_react194.useMemo)(function() {
|
|
47079
46951
|
var _ref;
|
|
47080
46952
|
var parsedNavigationBar = global2.navigationBar != null ? safeParseNavigationBar(global2.navigationBar) : null;
|
|
47081
46953
|
var initialAccessoryButton = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.initialAccessoryButton;
|
|
@@ -47100,7 +46972,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47100
46972
|
colorPreference: "light"
|
|
47101
46973
|
});
|
|
47102
46974
|
var refs = mergeRefs3(handler.ref, webViewRef);
|
|
47103
|
-
(0,
|
|
46975
|
+
(0, import_react194.useEffect)(function() {
|
|
47104
46976
|
var callback = function() {
|
|
47105
46977
|
webBackHandler.handleWebBack();
|
|
47106
46978
|
return true;
|
|
@@ -47176,7 +47048,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47176
47048
|
onRenderProcessGone: handleWebViewProcessDidTerminate
|
|
47177
47049
|
}));
|
|
47178
47050
|
}
|
|
47179
|
-
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,
|
|
47051
|
+
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;
|
|
47180
47052
|
var init_dist8 = __esm({
|
|
47181
47053
|
"../../../.yarn/__virtual__/@apps-in-toss-framework-virtual-afbad361af/1/packages/apps-in-toss/framework/dist/index.js"() {
|
|
47182
47054
|
"use strict";
|
|
@@ -47243,15 +47115,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47243
47115
|
import_react_native199 = __toESM(require_react_native(), 1);
|
|
47244
47116
|
init_src3();
|
|
47245
47117
|
import_react191 = __toESM(require_react(), 1);
|
|
47246
|
-
init_esm7();
|
|
47247
|
-
init_dist6();
|
|
47248
|
-
import_react192 = __toESM(require_react(), 1);
|
|
47249
47118
|
init_src3();
|
|
47250
47119
|
init_dist5();
|
|
47251
47120
|
init_src3();
|
|
47252
47121
|
init_esm7();
|
|
47253
47122
|
init_private2();
|
|
47254
|
-
|
|
47123
|
+
import_react192 = __toESM(require_react(), 1);
|
|
47255
47124
|
init_dist5();
|
|
47256
47125
|
init_src3();
|
|
47257
47126
|
init_esm7();
|
|
@@ -47267,7 +47136,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47267
47136
|
init_src3();
|
|
47268
47137
|
import_jsx_runtime223 = __toESM(require_jsx_runtime(), 1);
|
|
47269
47138
|
import_jsx_runtime224 = __toESM(require_jsx_runtime(), 1);
|
|
47270
|
-
|
|
47139
|
+
import_react193 = __toESM(require_react(), 1);
|
|
47271
47140
|
import_jsx_runtime225 = __toESM(require_jsx_runtime(), 1);
|
|
47272
47141
|
import_jsx_runtime226 = __toESM(require_jsx_runtime(), 1);
|
|
47273
47142
|
init_react_native_safe_area_context();
|
|
@@ -47289,28 +47158,25 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47289
47158
|
init_src3();
|
|
47290
47159
|
init_esm7();
|
|
47291
47160
|
init_private2();
|
|
47292
|
-
|
|
47161
|
+
import_react194 = __toESM(require_react(), 1);
|
|
47293
47162
|
import_react_native209 = __toESM(require_react_native(), 1);
|
|
47294
47163
|
init_dist5();
|
|
47295
47164
|
init_react_native_webview();
|
|
47296
|
-
|
|
47165
|
+
import_react195 = __toESM(require_react(), 1);
|
|
47297
47166
|
import_react_native210 = __toESM(require_react_native(), 1);
|
|
47298
47167
|
init_react_native_safe_area_context();
|
|
47299
47168
|
init_src3();
|
|
47300
47169
|
init_esm7();
|
|
47301
47170
|
init_private2();
|
|
47302
|
-
|
|
47303
|
-
import_react197 = __toESM(require_react(), 1);
|
|
47171
|
+
import_react196 = __toESM(require_react(), 1);
|
|
47304
47172
|
import_react_native212 = __toESM(require_react_native(), 1);
|
|
47305
47173
|
import_jsx_runtime230 = __toESM(require_jsx_runtime(), 1);
|
|
47306
47174
|
import_jsx_runtime231 = __toESM(require_jsx_runtime(), 1);
|
|
47307
47175
|
init_react_native_webview();
|
|
47308
|
-
|
|
47176
|
+
import_react197 = __toESM(require_react(), 1);
|
|
47309
47177
|
init_src3();
|
|
47310
|
-
init_esm7();
|
|
47311
47178
|
init_private2();
|
|
47312
|
-
|
|
47313
|
-
import_react199 = __toESM(require_react(), 1);
|
|
47179
|
+
import_react198 = __toESM(require_react(), 1);
|
|
47314
47180
|
import_jsx_runtime232 = __toESM(require_jsx_runtime(), 1);
|
|
47315
47181
|
import_jsx_runtime233 = __toESM(require_jsx_runtime(), 1);
|
|
47316
47182
|
init_dist5();
|
|
@@ -47319,19 +47185,17 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47319
47185
|
init_dist5();
|
|
47320
47186
|
init_src3();
|
|
47321
47187
|
init_src3();
|
|
47322
|
-
|
|
47188
|
+
import_react199 = __toESM(require_react(), 1);
|
|
47323
47189
|
init_react_native_safe_area_context();
|
|
47324
|
-
|
|
47190
|
+
import_react200 = __toESM(require_react(), 1);
|
|
47325
47191
|
init_src3();
|
|
47326
|
-
|
|
47327
|
-
init_dist6();
|
|
47192
|
+
import_react201 = __toESM(require_react(), 1);
|
|
47328
47193
|
import_react202 = __toESM(require_react(), 1);
|
|
47329
|
-
import_react203 = __toESM(require_react(), 1);
|
|
47330
47194
|
init_dist5();
|
|
47331
47195
|
import_react_native218 = __toESM(require_react_native(), 1);
|
|
47332
47196
|
init_dist5();
|
|
47197
|
+
import_react203 = __toESM(require_react(), 1);
|
|
47333
47198
|
import_react204 = __toESM(require_react(), 1);
|
|
47334
|
-
import_react205 = __toESM(require_react(), 1);
|
|
47335
47199
|
init_dist5();
|
|
47336
47200
|
init_src3();
|
|
47337
47201
|
init_esm7();
|
|
@@ -47341,12 +47205,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47341
47205
|
init_dist5();
|
|
47342
47206
|
init_dist3();
|
|
47343
47207
|
init_dist3();
|
|
47344
|
-
|
|
47208
|
+
import_react205 = __toESM(require_react(), 1);
|
|
47345
47209
|
import_react_native221 = __toESM(require_react_native(), 1);
|
|
47346
|
-
|
|
47210
|
+
import_react206 = __toESM(require_react(), 1);
|
|
47347
47211
|
import_react_native222 = __toESM(require_react_native(), 1);
|
|
47348
47212
|
import_jsx_runtime235 = __toESM(require_jsx_runtime(), 1);
|
|
47349
|
-
|
|
47213
|
+
import_react207 = __toESM(require_react(), 1);
|
|
47350
47214
|
import_react_native223 = __toESM(require_react_native(), 1);
|
|
47351
47215
|
import_jsx_runtime236 = __toESM(require_jsx_runtime(), 1);
|
|
47352
47216
|
import_jsx_runtime237 = __toESM(require_jsx_runtime(), 1);
|
|
@@ -47901,12 +47765,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47901
47765
|
safeAreaInsetsChange = createEvent("safeAreaInsetsChange");
|
|
47902
47766
|
NAVI_BAR_IMPRESSION_SCHEMA_ID = 1596837;
|
|
47903
47767
|
NAVI_BAR_IMPRESSION_LOG_NAME = "appsintoss_app_visit__common_module::impression__navigation_bar";
|
|
47904
|
-
CLOSE_POPUP_SHOW_SCHEMA_ID = 1644490;
|
|
47905
|
-
CLOSE_POPUP_SHOW_LOG_NAME = "appsintoss_app_visit__common_module::popup__close_app";
|
|
47906
47768
|
CLOSE_BUTTON_CLICK_SCHEMA_ID = 1596831;
|
|
47907
47769
|
CLOSE_BUTTON_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::click__icon_close";
|
|
47908
|
-
CLOSE_POPUP_CTA_CLICK_SCHEMA_ID = 1644492;
|
|
47909
|
-
CLOSE_POPUP_CTA_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::popup__close_app::click__cta";
|
|
47910
47770
|
HOME_BUTTON_CLICK_SCHEMA_ID = 1596839;
|
|
47911
47771
|
HOME_BUTTON_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::click__icon_home";
|
|
47912
47772
|
BOTTOM_SHEET_SCHEMA_ID = 1596825;
|
|
@@ -47954,8 +47814,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47954
47814
|
AppsInToss = {
|
|
47955
47815
|
registerApp
|
|
47956
47816
|
};
|
|
47957
|
-
GameWebView = /* @__PURE__ */ (0,
|
|
47958
|
-
(0,
|
|
47817
|
+
GameWebView = /* @__PURE__ */ (0, import_react195.forwardRef)(function GameWebView2(props, ref) {
|
|
47818
|
+
(0, import_react195.useEffect)(function() {
|
|
47959
47819
|
if (import_react_native210.Platform.OS === "ios") {
|
|
47960
47820
|
setIosSwipeGestureEnabled({
|
|
47961
47821
|
isEnabled: false
|
|
@@ -47981,7 +47841,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47981
47841
|
]
|
|
47982
47842
|
});
|
|
47983
47843
|
});
|
|
47984
|
-
PartnerWebView = /* @__PURE__ */ (0,
|
|
47844
|
+
PartnerWebView = /* @__PURE__ */ (0, import_react197.forwardRef)(function PartnerWebViewScreen(_03, _1) {
|
|
47985
47845
|
var _ref = [
|
|
47986
47846
|
_03,
|
|
47987
47847
|
_1
|