@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
|
@@ -10865,6 +10865,31 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
10865
10865
|
});
|
|
10866
10866
|
return unregisterCallbacks;
|
|
10867
10867
|
}
|
|
10868
|
+
function requestSubscriptionPurchase(params) {
|
|
10869
|
+
var options = params.options, onEvent = params.onEvent, onError = params.onError;
|
|
10870
|
+
var sku = options.sku, offerId = options.offerId;
|
|
10871
|
+
var unregisterCallbacks = INTERNAL__appBridgeHandler.invokeAppBridgeMethod("requestSubscriptionPurchase", {
|
|
10872
|
+
sku,
|
|
10873
|
+
offerId: offerId !== null && offerId !== void 0 ? offerId : null
|
|
10874
|
+
}, {
|
|
10875
|
+
onPurchased: function(params2) {
|
|
10876
|
+
onEvent({
|
|
10877
|
+
type: "purchased",
|
|
10878
|
+
data: params2
|
|
10879
|
+
});
|
|
10880
|
+
},
|
|
10881
|
+
onSuccess: function(result) {
|
|
10882
|
+
onEvent({
|
|
10883
|
+
type: "success",
|
|
10884
|
+
data: result
|
|
10885
|
+
});
|
|
10886
|
+
},
|
|
10887
|
+
onError: function(error) {
|
|
10888
|
+
onError(error);
|
|
10889
|
+
}
|
|
10890
|
+
});
|
|
10891
|
+
return unregisterCallbacks;
|
|
10892
|
+
}
|
|
10868
10893
|
function createOneTimePurchaseOrder(params) {
|
|
10869
10894
|
var _options_sku;
|
|
10870
10895
|
var isIAPSupported = isMinVersionSupported({
|
|
@@ -44996,38 +45021,6 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
44996
45021
|
handler
|
|
44997
45022
|
]);
|
|
44998
45023
|
}
|
|
44999
|
-
function useCloseConfirm() {
|
|
45000
|
-
var brandDisplayName = getAppsInTossGlobals().brandDisplayName;
|
|
45001
|
-
var openConfirm = useDialog().openConfirm;
|
|
45002
|
-
return (0, import_react191.useCallback)(function(param) {
|
|
45003
|
-
var onEntered = param.onEntered;
|
|
45004
|
-
return _async_to_generator(function() {
|
|
45005
|
-
return __generator(this, function(_state) {
|
|
45006
|
-
switch (_state.label) {
|
|
45007
|
-
case 0:
|
|
45008
|
-
return [
|
|
45009
|
-
4,
|
|
45010
|
-
openConfirm({
|
|
45011
|
-
title: "".concat(josa(brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45012
|
-
leftButton: "\uB2EB\uAE30",
|
|
45013
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45014
|
-
closeOnDimmerClick: true,
|
|
45015
|
-
onEntered
|
|
45016
|
-
})
|
|
45017
|
-
];
|
|
45018
|
-
case 1:
|
|
45019
|
-
return [
|
|
45020
|
-
2,
|
|
45021
|
-
_state.sent()
|
|
45022
|
-
];
|
|
45023
|
-
}
|
|
45024
|
-
});
|
|
45025
|
-
})();
|
|
45026
|
-
}, [
|
|
45027
|
-
brandDisplayName,
|
|
45028
|
-
openConfirm
|
|
45029
|
-
]);
|
|
45030
|
-
}
|
|
45031
45024
|
function createEvent(event) {
|
|
45032
45025
|
return {
|
|
45033
45026
|
name: event,
|
|
@@ -45081,30 +45074,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45081
45074
|
})
|
|
45082
45075
|
});
|
|
45083
45076
|
};
|
|
45084
|
-
var logClosePopupShow = function() {
|
|
45085
|
-
sendLog({
|
|
45086
|
-
log_name: CLOSE_POPUP_SHOW_LOG_NAME,
|
|
45087
|
-
log_type: "popup",
|
|
45088
|
-
params: _object_spread_props(_object_spread({}, baseParams), {
|
|
45089
|
-
schema_id: CLOSE_POPUP_SHOW_SCHEMA_ID
|
|
45090
|
-
})
|
|
45091
|
-
});
|
|
45092
|
-
};
|
|
45093
|
-
var logClosePopupCtaClick = function(confirm) {
|
|
45094
|
-
sendLog({
|
|
45095
|
-
log_name: CLOSE_POPUP_CTA_CLICK_LOG_NAME,
|
|
45096
|
-
log_type: "event",
|
|
45097
|
-
params: _object_spread_props(_object_spread({}, baseParams), {
|
|
45098
|
-
close_yn: confirm ? "Y" : "N",
|
|
45099
|
-
schema_id: CLOSE_POPUP_CTA_CLICK_SCHEMA_ID,
|
|
45100
|
-
event_type: "click"
|
|
45101
|
-
})
|
|
45102
|
-
});
|
|
45103
|
-
};
|
|
45104
45077
|
return {
|
|
45105
45078
|
navBarImpression: logNavBarImpression,
|
|
45106
|
-
closePopupShow: logClosePopupShow,
|
|
45107
|
-
closePopupCtaClick: logClosePopupCtaClick,
|
|
45108
45079
|
closeButtonClick: logCloseButtonClick,
|
|
45109
45080
|
homeButtonClick: logHomeButtonClick
|
|
45110
45081
|
};
|
|
@@ -45113,33 +45084,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45113
45084
|
var backEventContext = useBackEventContext();
|
|
45114
45085
|
var logging = useNavigationBarLogging();
|
|
45115
45086
|
var navigation = useNavigation();
|
|
45116
|
-
var closeConfirm = useCloseConfirm();
|
|
45117
45087
|
return (0, import_react190.useMemo)(function() {
|
|
45118
|
-
var close = function() {
|
|
45119
|
-
return _async_to_generator(function() {
|
|
45120
|
-
var hasConfirmed;
|
|
45121
|
-
return __generator(this, function(_state) {
|
|
45122
|
-
switch (_state.label) {
|
|
45123
|
-
case 0:
|
|
45124
|
-
return [
|
|
45125
|
-
4,
|
|
45126
|
-
closeConfirm({
|
|
45127
|
-
onEntered: logging.closePopupShow
|
|
45128
|
-
})
|
|
45129
|
-
];
|
|
45130
|
-
case 1:
|
|
45131
|
-
hasConfirmed = _state.sent();
|
|
45132
|
-
logging.closePopupCtaClick(hasConfirmed);
|
|
45133
|
-
if (hasConfirmed) {
|
|
45134
|
-
closeView();
|
|
45135
|
-
}
|
|
45136
|
-
return [
|
|
45137
|
-
2
|
|
45138
|
-
];
|
|
45139
|
-
}
|
|
45140
|
-
});
|
|
45141
|
-
})();
|
|
45142
|
-
};
|
|
45143
45088
|
return {
|
|
45144
45089
|
handleBack: function() {
|
|
45145
45090
|
if (backEventContext.hasBackEvent) {
|
|
@@ -45147,7 +45092,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45147
45092
|
} else if (navigation.canGoBack()) {
|
|
45148
45093
|
navigation.goBack();
|
|
45149
45094
|
} else {
|
|
45150
|
-
|
|
45095
|
+
closeView();
|
|
45151
45096
|
}
|
|
45152
45097
|
},
|
|
45153
45098
|
handleHomeButtonClick: function() {
|
|
@@ -45160,13 +45105,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45160
45105
|
},
|
|
45161
45106
|
handleCloseButtonClick: function() {
|
|
45162
45107
|
logging.closeButtonClick();
|
|
45163
|
-
|
|
45108
|
+
closeView();
|
|
45164
45109
|
}
|
|
45165
45110
|
};
|
|
45166
45111
|
}, [
|
|
45167
45112
|
backEventContext,
|
|
45168
45113
|
navigation,
|
|
45169
|
-
closeConfirm,
|
|
45170
45114
|
logging
|
|
45171
45115
|
]);
|
|
45172
45116
|
}
|
|
@@ -45393,7 +45337,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45393
45337
|
function useMoreButtonBottomSheet() {
|
|
45394
45338
|
var globals = getAppsInTossGlobals();
|
|
45395
45339
|
var adaptive = useAdaptive();
|
|
45396
|
-
var _useState4 = _sliced_to_array((0,
|
|
45340
|
+
var _useState4 = _sliced_to_array((0, import_react191.useState)([]), 2), itemList = _useState4[0], setItemList = _useState4[1];
|
|
45397
45341
|
var appUpdateDialog = useAppUpdateDialog();
|
|
45398
45342
|
var logging = useMoreButtonBottomSheetLogging();
|
|
45399
45343
|
var overlay = useOverlay();
|
|
@@ -45402,7 +45346,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45402
45346
|
var isBottomSheetSupported = isMinVersionSupported(MIN_VERSION6.BOTTOM_SHEET);
|
|
45403
45347
|
var isShareListMenuSupported = isMinVersionSupported(MIN_VERSION6.SHARE_LIST_MENU);
|
|
45404
45348
|
var isSettingsMenuSupported = isMinVersionSupported(MIN_VERSION6.SETTINGS_MENU);
|
|
45405
|
-
(0,
|
|
45349
|
+
(0, import_react191.useEffect)(function() {
|
|
45406
45350
|
if (!isBottomSheetSupported) {
|
|
45407
45351
|
return;
|
|
45408
45352
|
}
|
|
@@ -45503,7 +45447,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45503
45447
|
function BottomSheetImpressionArea(param) {
|
|
45504
45448
|
var children = param.children;
|
|
45505
45449
|
var logging = useMoreButtonBottomSheetLogging();
|
|
45506
|
-
(0,
|
|
45450
|
+
(0, import_react191.useEffect)(function() {
|
|
45507
45451
|
logging.show();
|
|
45508
45452
|
}, [
|
|
45509
45453
|
logging
|
|
@@ -45523,9 +45467,9 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45523
45467
|
}
|
|
45524
45468
|
function NavigationBarImpressionArea(param) {
|
|
45525
45469
|
var children = param.children, withHomeButton = param.withHomeButton;
|
|
45526
|
-
var hasLogged = (0,
|
|
45470
|
+
var hasLogged = (0, import_react192.useRef)(false);
|
|
45527
45471
|
var logging = useNavigationBarLogging();
|
|
45528
|
-
(0,
|
|
45472
|
+
(0, import_react192.useEffect)(function() {
|
|
45529
45473
|
if (hasLogged.current === false) {
|
|
45530
45474
|
logging.navBarImpression({
|
|
45531
45475
|
home_icon_yn: withHomeButton ? "Y" : "N"
|
|
@@ -45754,42 +45698,21 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45754
45698
|
function GameWebviewNavigationBar() {
|
|
45755
45699
|
var safeAreaTop = useSafeAreaTop();
|
|
45756
45700
|
var openConfirm = useDialog().openConfirm;
|
|
45757
|
-
var global2 = getAppsInTossGlobals();
|
|
45758
45701
|
var logging = useNavigationBarLogging();
|
|
45759
45702
|
var _useMoreButtonBottomSheet = useMoreButtonBottomSheet(), openMoreButtonBottomSheet = _useMoreButtonBottomSheet.open;
|
|
45760
45703
|
var navigationRightButton = useNavigationBarContext().navigationRightButton;
|
|
45761
45704
|
var _useSafeAreaInsets2 = (0, react_native_safe_area_context_exports.useSafeAreaInsets)(), safeAreaRight = _useSafeAreaInsets2.right;
|
|
45762
|
-
var handleGameWebviewClose = (0,
|
|
45705
|
+
var handleGameWebviewClose = (0, import_react195.useCallback)(function() {
|
|
45763
45706
|
return _async_to_generator(function() {
|
|
45764
|
-
var isConfirmed;
|
|
45765
45707
|
return __generator(this, function(_state) {
|
|
45766
|
-
|
|
45767
|
-
|
|
45768
|
-
|
|
45769
|
-
|
|
45770
|
-
|
|
45771
|
-
openConfirm({
|
|
45772
|
-
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45773
|
-
leftButton: "\uB2EB\uAE30",
|
|
45774
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45775
|
-
closeOnDimmerClick: true,
|
|
45776
|
-
onEntered: logging.closePopupShow
|
|
45777
|
-
})
|
|
45778
|
-
];
|
|
45779
|
-
case 1:
|
|
45780
|
-
isConfirmed = _state.sent();
|
|
45781
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
45782
|
-
if (isConfirmed) {
|
|
45783
|
-
closeView();
|
|
45784
|
-
}
|
|
45785
|
-
return [
|
|
45786
|
-
2
|
|
45787
|
-
];
|
|
45788
|
-
}
|
|
45708
|
+
logging.closeButtonClick();
|
|
45709
|
+
closeView();
|
|
45710
|
+
return [
|
|
45711
|
+
2
|
|
45712
|
+
];
|
|
45789
45713
|
});
|
|
45790
45714
|
})();
|
|
45791
45715
|
}, [
|
|
45792
|
-
global2.brandDisplayName,
|
|
45793
45716
|
logging,
|
|
45794
45717
|
openConfirm
|
|
45795
45718
|
]);
|
|
@@ -45830,45 +45753,23 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45830
45753
|
var _ref, _ref1;
|
|
45831
45754
|
var globals = getAppsInTossGlobals();
|
|
45832
45755
|
var logging = useNavigationBarLogging();
|
|
45833
|
-
var openConfirm = useDialog().openConfirm;
|
|
45834
45756
|
var _useMoreButtonBottomSheet = useMoreButtonBottomSheet(), openMoreButtonBottomSheet = _useMoreButtonBottomSheet.open;
|
|
45835
45757
|
var parsedNavigationBar = globals.navigationBar != null ? safeParseNavigationBar(globals.navigationBar) : null;
|
|
45836
45758
|
var withHomeButton = (_ref = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.withHomeButton) !== null && _ref !== void 0 ? _ref : false;
|
|
45837
45759
|
var withBackButton = (_ref1 = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.withBackButton) !== null && _ref1 !== void 0 ? _ref1 : true;
|
|
45838
45760
|
var navigationRightButton = useNavigationBarContext().navigationRightButton;
|
|
45839
|
-
var handleClose = (0,
|
|
45761
|
+
var handleClose = (0, import_react197.useCallback)(function() {
|
|
45840
45762
|
return _async_to_generator(function() {
|
|
45841
|
-
var isConfirmed;
|
|
45842
45763
|
return __generator(this, function(_state) {
|
|
45843
|
-
|
|
45844
|
-
|
|
45845
|
-
|
|
45846
|
-
|
|
45847
|
-
|
|
45848
|
-
openConfirm({
|
|
45849
|
-
title: "".concat(josa(globals.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45850
|
-
leftButton: "\uB2EB\uAE30",
|
|
45851
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45852
|
-
closeOnDimmerClick: true,
|
|
45853
|
-
onEntered: logging.closePopupShow
|
|
45854
|
-
})
|
|
45855
|
-
];
|
|
45856
|
-
case 1:
|
|
45857
|
-
isConfirmed = _state.sent();
|
|
45858
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
45859
|
-
if (isConfirmed) {
|
|
45860
|
-
closeView();
|
|
45861
|
-
}
|
|
45862
|
-
return [
|
|
45863
|
-
2
|
|
45864
|
-
];
|
|
45865
|
-
}
|
|
45764
|
+
logging.closeButtonClick();
|
|
45765
|
+
closeView();
|
|
45766
|
+
return [
|
|
45767
|
+
2
|
|
45768
|
+
];
|
|
45866
45769
|
});
|
|
45867
45770
|
})();
|
|
45868
45771
|
}, [
|
|
45869
|
-
|
|
45870
|
-
logging,
|
|
45871
|
-
openConfirm
|
|
45772
|
+
logging
|
|
45872
45773
|
]);
|
|
45873
45774
|
return (0, import_jsx_runtime232.jsx)(NavigationBarImpressionArea, {
|
|
45874
45775
|
withHomeButton,
|
|
@@ -46317,8 +46218,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46317
46218
|
}
|
|
46318
46219
|
function useBridgeHandler(param) {
|
|
46319
46220
|
var onMessage = param.onMessage, constantHandlerMap = param.constantHandlerMap, asyncHandlerMap = param.asyncHandlerMap, eventListenerMap = param.eventListenerMap;
|
|
46320
|
-
var ref = (0,
|
|
46321
|
-
var injectedJavaScript = (0,
|
|
46221
|
+
var ref = (0, import_react198.useRef)(null);
|
|
46222
|
+
var injectedJavaScript = (0, import_react198.useMemo)(function() {
|
|
46322
46223
|
return "window.__CONSTANT_HANDLER_MAP = ".concat(JSON.stringify(Object.entries(constantHandlerMap).reduce(function(acc, param2) {
|
|
46323
46224
|
var _param = _sliced_to_array(param2, 2), key = _param[0], value = _param[1];
|
|
46324
46225
|
acc[key] = typeof value === "function" ? value() : value;
|
|
@@ -46327,7 +46228,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46327
46228
|
}, [
|
|
46328
46229
|
constantHandlerMap
|
|
46329
46230
|
]);
|
|
46330
|
-
(0,
|
|
46231
|
+
(0, import_react198.useEffect)(function() {
|
|
46331
46232
|
var _ref_current;
|
|
46332
46233
|
(_ref_current = ref.current) === null || _ref_current === void 0 ? void 0 : _ref_current.injectJavaScript(injectedJavaScript);
|
|
46333
46234
|
}, [
|
|
@@ -46346,7 +46247,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46346
46247
|
(_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 "));
|
|
46347
46248
|
};
|
|
46348
46249
|
};
|
|
46349
|
-
var $onMessage = (0,
|
|
46250
|
+
var $onMessage = (0, import_react198.useCallback)(function(e64) {
|
|
46350
46251
|
return _async_to_generator(function() {
|
|
46351
46252
|
var data, _eventListenerMap_data_functionName, handleOnEvent, handleOnError, remove, key, remove1, _ref_current;
|
|
46352
46253
|
return __generator(this, function(_state) {
|
|
@@ -46419,12 +46320,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46419
46320
|
}
|
|
46420
46321
|
function useSafeAreaInsetsEvent() {
|
|
46421
46322
|
var insets = (0, react_native_safe_area_context_exports.useSafeAreaInsets)();
|
|
46422
|
-
(0,
|
|
46323
|
+
(0, import_react199.useEffect)(function() {
|
|
46423
46324
|
safeAreaInsetsChange.emit(insets);
|
|
46424
46325
|
}, [
|
|
46425
46326
|
insets
|
|
46426
46327
|
]);
|
|
46427
|
-
(0,
|
|
46328
|
+
(0, import_react199.useEffect)(function() {
|
|
46428
46329
|
return function() {
|
|
46429
46330
|
return safeAreaInsetsChange.clearSubscriptions();
|
|
46430
46331
|
};
|
|
@@ -46474,8 +46375,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46474
46375
|
}
|
|
46475
46376
|
}
|
|
46476
46377
|
function useWebViewHistory() {
|
|
46477
|
-
var _useReducer = _sliced_to_array((0,
|
|
46478
|
-
var onNavigationStateChange = (0,
|
|
46378
|
+
var _useReducer = _sliced_to_array((0, import_react201.useReducer)(reducer, INITIAL_STATE), 2), state = _useReducer[0], dispatch = _useReducer[1];
|
|
46379
|
+
var onNavigationStateChange = (0, import_react201.useCallback)(function(param) {
|
|
46479
46380
|
var url = param.url, canGoForward2 = param.canGoForward;
|
|
46480
46381
|
dispatch({
|
|
46481
46382
|
type: "NAVIGATION_CHANGE",
|
|
@@ -46483,7 +46384,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46483
46384
|
canGoForward: canGoForward2
|
|
46484
46385
|
});
|
|
46485
46386
|
}, []);
|
|
46486
|
-
var _useMemo4 = (0,
|
|
46387
|
+
var _useMemo4 = (0, import_react201.useMemo)(function() {
|
|
46487
46388
|
var canBack = state.index > 0;
|
|
46488
46389
|
var canFwd = state.index >= 0 && state.index < state.stack.length - 1;
|
|
46489
46390
|
return {
|
|
@@ -46504,93 +46405,64 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46504
46405
|
var _useWebViewHistory = useWebViewHistory(), hasHistory = _useWebViewHistory.hasHistory, onNavigationStateChange = _useWebViewHistory.onNavigationStateChange;
|
|
46505
46406
|
var _useBackEventState = useBackEventState(), webBackHandlersRef = _useBackEventState.handlersRef, hasWebBackEvent = _useBackEventState.hasBackEvent, addWebBackEventListener = _useBackEventState.addEventListener, removeWebBackEventListener = _useBackEventState.removeEventListener;
|
|
46506
46407
|
var logging = useNavigationBarLogging();
|
|
46507
|
-
var
|
|
46508
|
-
var global2 = getAppsInTossGlobals();
|
|
46509
|
-
var addEventListener = (0, import_react201.useCallback)(function(handler) {
|
|
46408
|
+
var addEventListener = (0, import_react200.useCallback)(function(handler) {
|
|
46510
46409
|
addWebBackEventListener(handler);
|
|
46511
46410
|
}, [
|
|
46512
46411
|
addWebBackEventListener
|
|
46513
46412
|
]);
|
|
46514
|
-
var removeEventListener = (0,
|
|
46413
|
+
var removeEventListener = (0, import_react200.useCallback)(function(handler) {
|
|
46515
46414
|
removeWebBackEventListener(handler);
|
|
46516
46415
|
}, [
|
|
46517
46416
|
removeWebBackEventListener
|
|
46518
46417
|
]);
|
|
46519
|
-
var handleWebBack = (0,
|
|
46418
|
+
var handleWebBack = (0, import_react200.useCallback)(function() {
|
|
46520
46419
|
return _async_to_generator(function() {
|
|
46521
|
-
var _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, handler, _webViewRef_current
|
|
46420
|
+
var _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, handler, _webViewRef_current;
|
|
46522
46421
|
return __generator(this, function(_state) {
|
|
46523
|
-
|
|
46524
|
-
|
|
46525
|
-
|
|
46526
|
-
|
|
46527
|
-
|
|
46528
|
-
|
|
46529
|
-
handler = _step.value;
|
|
46530
|
-
handler();
|
|
46531
|
-
}
|
|
46532
|
-
} catch (err) {
|
|
46533
|
-
_didIteratorError = true;
|
|
46534
|
-
_iteratorError = err;
|
|
46535
|
-
} finally {
|
|
46536
|
-
try {
|
|
46537
|
-
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
46538
|
-
_iterator.return();
|
|
46539
|
-
}
|
|
46540
|
-
} finally {
|
|
46541
|
-
if (_didIteratorError) {
|
|
46542
|
-
throw _iteratorError;
|
|
46543
|
-
}
|
|
46544
|
-
}
|
|
46545
|
-
}
|
|
46546
|
-
return [
|
|
46547
|
-
2
|
|
46548
|
-
];
|
|
46422
|
+
if (hasWebBackEvent) {
|
|
46423
|
+
_iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;
|
|
46424
|
+
try {
|
|
46425
|
+
for (_iterator = webBackHandlersRef[Symbol.iterator](); !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
|
|
46426
|
+
handler = _step.value;
|
|
46427
|
+
handler();
|
|
46549
46428
|
}
|
|
46550
|
-
|
|
46551
|
-
|
|
46552
|
-
|
|
46553
|
-
|
|
46554
|
-
|
|
46555
|
-
|
|
46556
|
-
|
|
46557
|
-
|
|
46558
|
-
|
|
46559
|
-
|
|
46560
|
-
|
|
46561
|
-
|
|
46562
|
-
openConfirm({
|
|
46563
|
-
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
46564
|
-
leftButton: "\uB2EB\uAE30",
|
|
46565
|
-
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46566
|
-
closeOnDimmerClick: true,
|
|
46567
|
-
onEntered: logging.closePopupShow
|
|
46568
|
-
})
|
|
46569
|
-
];
|
|
46570
|
-
case 2:
|
|
46571
|
-
isConfirmed = _state.sent();
|
|
46572
|
-
logging.closePopupCtaClick(isConfirmed);
|
|
46573
|
-
if (isConfirmed) {
|
|
46574
|
-
closeView();
|
|
46429
|
+
} catch (err) {
|
|
46430
|
+
_didIteratorError = true;
|
|
46431
|
+
_iteratorError = err;
|
|
46432
|
+
} finally {
|
|
46433
|
+
try {
|
|
46434
|
+
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
46435
|
+
_iterator.return();
|
|
46436
|
+
}
|
|
46437
|
+
} finally {
|
|
46438
|
+
if (_didIteratorError) {
|
|
46439
|
+
throw _iteratorError;
|
|
46440
|
+
}
|
|
46575
46441
|
}
|
|
46576
|
-
|
|
46577
|
-
|
|
46578
|
-
|
|
46579
|
-
|
|
46580
|
-
];
|
|
46442
|
+
}
|
|
46443
|
+
return [
|
|
46444
|
+
2
|
|
46445
|
+
];
|
|
46581
46446
|
}
|
|
46447
|
+
if (hasHistory) {
|
|
46448
|
+
;
|
|
46449
|
+
(_webViewRef_current = webViewRef.current) === null || _webViewRef_current === void 0 ? void 0 : _webViewRef_current.injectJavaScript("window.history.back();");
|
|
46450
|
+
} else {
|
|
46451
|
+
closeView();
|
|
46452
|
+
}
|
|
46453
|
+
return [
|
|
46454
|
+
2
|
|
46455
|
+
];
|
|
46582
46456
|
});
|
|
46583
46457
|
})();
|
|
46584
46458
|
}, [
|
|
46585
|
-
global2.brandDisplayName,
|
|
46586
46459
|
hasHistory,
|
|
46587
46460
|
hasWebBackEvent,
|
|
46588
46461
|
webBackHandlersRef,
|
|
46589
46462
|
logging,
|
|
46590
|
-
openConfirm,
|
|
46591
46463
|
webViewRef
|
|
46592
46464
|
]);
|
|
46593
|
-
var handleWebHome = (0,
|
|
46465
|
+
var handleWebHome = (0, import_react200.useCallback)(function() {
|
|
46594
46466
|
var _webViewRef_current;
|
|
46595
46467
|
logging.homeButtonClick();
|
|
46596
46468
|
if (homeEvent.hasSubscriptions()) {
|
|
@@ -46605,7 +46477,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46605
46477
|
webViewInitialURL,
|
|
46606
46478
|
webViewRef
|
|
46607
46479
|
]);
|
|
46608
|
-
return (0,
|
|
46480
|
+
return (0, import_react200.useMemo)(function() {
|
|
46609
46481
|
return {
|
|
46610
46482
|
addEventListener,
|
|
46611
46483
|
removeEventListener,
|
|
@@ -46910,8 +46782,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46910
46782
|
if (!TYPES.includes(type)) {
|
|
46911
46783
|
throw new Error("Invalid WebView type: '".concat(type, "'"));
|
|
46912
46784
|
}
|
|
46913
|
-
var webViewRef = (0,
|
|
46914
|
-
var url = (0,
|
|
46785
|
+
var webViewRef = (0, import_react193.useRef)(null);
|
|
46786
|
+
var url = (0, import_react193.useMemo)(function() {
|
|
46915
46787
|
return getWebViewURL(local);
|
|
46916
46788
|
}, [
|
|
46917
46789
|
local
|
|
@@ -46923,7 +46795,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46923
46795
|
var global2 = getAppsInTossGlobals();
|
|
46924
46796
|
var navigationBarContext = useNavigationBarContext();
|
|
46925
46797
|
var safeAreaInsetsEvent = useSafeAreaInsetsEvent();
|
|
46926
|
-
var _useState6 = _sliced_to_array((0,
|
|
46798
|
+
var _useState6 = _sliced_to_array((0, import_react193.useState)(props.allowsBackForwardNavigationGestures), 2), allowsBackForwardNavigationGestures = _useState6[0], setAllowsBackForwardNavigationGestures = _useState6[1];
|
|
46927
46799
|
var handler = useBridgeHandler({
|
|
46928
46800
|
onMessage,
|
|
46929
46801
|
eventListenerMap: _object_spread_props(_object_spread({}, event_bridges_exports), {
|
|
@@ -46971,7 +46843,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46971
46843
|
showFullScreenAd,
|
|
46972
46844
|
fetchTossAd,
|
|
46973
46845
|
iapCreateOneTimePurchaseOrder: IAP.createOneTimePurchaseOrder,
|
|
46974
|
-
requestSubscriptionPurchase
|
|
46846
|
+
requestSubscriptionPurchase,
|
|
46975
46847
|
requestOneTimePurchase,
|
|
46976
46848
|
requestNotificationAgreement
|
|
46977
46849
|
}),
|
|
@@ -47066,7 +46938,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47066
46938
|
}
|
|
47067
46939
|
})
|
|
47068
46940
|
});
|
|
47069
|
-
var headerPropForExternalWebView = (0,
|
|
46941
|
+
var headerPropForExternalWebView = (0, import_react193.useMemo)(function() {
|
|
47070
46942
|
var _ref;
|
|
47071
46943
|
var parsedNavigationBar = global2.navigationBar != null ? safeParseNavigationBar(global2.navigationBar) : null;
|
|
47072
46944
|
var initialAccessoryButton = parsedNavigationBar === null || parsedNavigationBar === void 0 ? void 0 : parsedNavigationBar.initialAccessoryButton;
|
|
@@ -47091,7 +46963,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47091
46963
|
colorPreference: "light"
|
|
47092
46964
|
});
|
|
47093
46965
|
var refs = mergeRefs3(handler.ref, webViewRef);
|
|
47094
|
-
(0,
|
|
46966
|
+
(0, import_react193.useEffect)(function() {
|
|
47095
46967
|
var callback = function() {
|
|
47096
46968
|
webBackHandler.handleWebBack();
|
|
47097
46969
|
return true;
|
|
@@ -47167,7 +47039,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47167
47039
|
onRenderProcessGone: handleWebViewProcessDidTerminate
|
|
47168
47040
|
}));
|
|
47169
47041
|
}
|
|
47170
|
-
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,
|
|
47042
|
+
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;
|
|
47171
47043
|
var init_dist8 = __esm({
|
|
47172
47044
|
"../../../.yarn/__virtual__/@apps-in-toss-framework-virtual-afbad361af/1/packages/apps-in-toss/framework/dist/index.js"() {
|
|
47173
47045
|
"use strict";
|
|
@@ -47234,15 +47106,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47234
47106
|
import_react_native199 = __toESM(require_react_native(), 1);
|
|
47235
47107
|
init_src3();
|
|
47236
47108
|
import_react190 = __toESM(require_react(), 1);
|
|
47237
|
-
init_esm7();
|
|
47238
|
-
init_dist6();
|
|
47239
|
-
import_react191 = __toESM(require_react(), 1);
|
|
47240
47109
|
init_src3();
|
|
47241
47110
|
init_dist5();
|
|
47242
47111
|
init_src3();
|
|
47243
47112
|
init_esm7();
|
|
47244
47113
|
init_private2();
|
|
47245
|
-
|
|
47114
|
+
import_react191 = __toESM(require_react(), 1);
|
|
47246
47115
|
init_dist5();
|
|
47247
47116
|
init_src3();
|
|
47248
47117
|
init_esm7();
|
|
@@ -47258,7 +47127,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47258
47127
|
init_src3();
|
|
47259
47128
|
import_jsx_runtime223 = __toESM(require_jsx_runtime(), 1);
|
|
47260
47129
|
import_jsx_runtime224 = __toESM(require_jsx_runtime(), 1);
|
|
47261
|
-
|
|
47130
|
+
import_react192 = __toESM(require_react(), 1);
|
|
47262
47131
|
import_jsx_runtime225 = __toESM(require_jsx_runtime(), 1);
|
|
47263
47132
|
import_jsx_runtime226 = __toESM(require_jsx_runtime(), 1);
|
|
47264
47133
|
init_react_native_safe_area_context();
|
|
@@ -47280,28 +47149,25 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47280
47149
|
init_src3();
|
|
47281
47150
|
init_esm7();
|
|
47282
47151
|
init_private2();
|
|
47283
|
-
|
|
47152
|
+
import_react193 = __toESM(require_react(), 1);
|
|
47284
47153
|
import_react_native209 = __toESM(require_react_native(), 1);
|
|
47285
47154
|
init_dist5();
|
|
47286
47155
|
init_react_native_webview();
|
|
47287
|
-
|
|
47156
|
+
import_react194 = __toESM(require_react(), 1);
|
|
47288
47157
|
import_react_native210 = __toESM(require_react_native(), 1);
|
|
47289
47158
|
init_react_native_safe_area_context();
|
|
47290
47159
|
init_src3();
|
|
47291
47160
|
init_esm7();
|
|
47292
47161
|
init_private2();
|
|
47293
|
-
|
|
47294
|
-
import_react196 = __toESM(require_react(), 1);
|
|
47162
|
+
import_react195 = __toESM(require_react(), 1);
|
|
47295
47163
|
import_react_native212 = __toESM(require_react_native(), 1);
|
|
47296
47164
|
import_jsx_runtime230 = __toESM(require_jsx_runtime(), 1);
|
|
47297
47165
|
import_jsx_runtime231 = __toESM(require_jsx_runtime(), 1);
|
|
47298
47166
|
init_react_native_webview();
|
|
47299
|
-
|
|
47167
|
+
import_react196 = __toESM(require_react(), 1);
|
|
47300
47168
|
init_src3();
|
|
47301
|
-
init_esm7();
|
|
47302
47169
|
init_private2();
|
|
47303
|
-
|
|
47304
|
-
import_react198 = __toESM(require_react(), 1);
|
|
47170
|
+
import_react197 = __toESM(require_react(), 1);
|
|
47305
47171
|
import_jsx_runtime232 = __toESM(require_jsx_runtime(), 1);
|
|
47306
47172
|
import_jsx_runtime233 = __toESM(require_jsx_runtime(), 1);
|
|
47307
47173
|
init_dist5();
|
|
@@ -47310,19 +47176,17 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47310
47176
|
init_dist5();
|
|
47311
47177
|
init_src3();
|
|
47312
47178
|
init_src3();
|
|
47313
|
-
|
|
47179
|
+
import_react198 = __toESM(require_react(), 1);
|
|
47314
47180
|
init_react_native_safe_area_context();
|
|
47315
|
-
|
|
47181
|
+
import_react199 = __toESM(require_react(), 1);
|
|
47316
47182
|
init_src3();
|
|
47317
|
-
|
|
47318
|
-
init_dist6();
|
|
47183
|
+
import_react200 = __toESM(require_react(), 1);
|
|
47319
47184
|
import_react201 = __toESM(require_react(), 1);
|
|
47320
|
-
import_react202 = __toESM(require_react(), 1);
|
|
47321
47185
|
init_dist5();
|
|
47322
47186
|
import_react_native218 = __toESM(require_react_native(), 1);
|
|
47323
47187
|
init_dist5();
|
|
47188
|
+
import_react202 = __toESM(require_react(), 1);
|
|
47324
47189
|
import_react203 = __toESM(require_react(), 1);
|
|
47325
|
-
import_react204 = __toESM(require_react(), 1);
|
|
47326
47190
|
init_dist5();
|
|
47327
47191
|
init_src3();
|
|
47328
47192
|
init_esm7();
|
|
@@ -47332,12 +47196,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47332
47196
|
init_dist5();
|
|
47333
47197
|
init_dist3();
|
|
47334
47198
|
init_dist3();
|
|
47335
|
-
|
|
47199
|
+
import_react204 = __toESM(require_react(), 1);
|
|
47336
47200
|
import_react_native221 = __toESM(require_react_native(), 1);
|
|
47337
|
-
|
|
47201
|
+
import_react205 = __toESM(require_react(), 1);
|
|
47338
47202
|
import_react_native222 = __toESM(require_react_native(), 1);
|
|
47339
47203
|
import_jsx_runtime235 = __toESM(require_jsx_runtime(), 1);
|
|
47340
|
-
|
|
47204
|
+
import_react206 = __toESM(require_react(), 1);
|
|
47341
47205
|
import_react_native223 = __toESM(require_react_native(), 1);
|
|
47342
47206
|
import_jsx_runtime236 = __toESM(require_jsx_runtime(), 1);
|
|
47343
47207
|
import_jsx_runtime237 = __toESM(require_jsx_runtime(), 1);
|
|
@@ -47892,12 +47756,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47892
47756
|
safeAreaInsetsChange = createEvent("safeAreaInsetsChange");
|
|
47893
47757
|
NAVI_BAR_IMPRESSION_SCHEMA_ID = 1596837;
|
|
47894
47758
|
NAVI_BAR_IMPRESSION_LOG_NAME = "appsintoss_app_visit__common_module::impression__navigation_bar";
|
|
47895
|
-
CLOSE_POPUP_SHOW_SCHEMA_ID = 1644490;
|
|
47896
|
-
CLOSE_POPUP_SHOW_LOG_NAME = "appsintoss_app_visit__common_module::popup__close_app";
|
|
47897
47759
|
CLOSE_BUTTON_CLICK_SCHEMA_ID = 1596831;
|
|
47898
47760
|
CLOSE_BUTTON_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::click__icon_close";
|
|
47899
|
-
CLOSE_POPUP_CTA_CLICK_SCHEMA_ID = 1644492;
|
|
47900
|
-
CLOSE_POPUP_CTA_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::popup__close_app::click__cta";
|
|
47901
47761
|
HOME_BUTTON_CLICK_SCHEMA_ID = 1596839;
|
|
47902
47762
|
HOME_BUTTON_CLICK_LOG_NAME = "appsintoss_app_visit__common_module::click__icon_home";
|
|
47903
47763
|
BOTTOM_SHEET_SCHEMA_ID = 1596825;
|
|
@@ -47945,8 +47805,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47945
47805
|
AppsInToss = {
|
|
47946
47806
|
registerApp
|
|
47947
47807
|
};
|
|
47948
|
-
GameWebView = /* @__PURE__ */ (0,
|
|
47949
|
-
(0,
|
|
47808
|
+
GameWebView = /* @__PURE__ */ (0, import_react194.forwardRef)(function GameWebView2(props, ref) {
|
|
47809
|
+
(0, import_react194.useEffect)(function() {
|
|
47950
47810
|
if (import_react_native210.Platform.OS === "ios") {
|
|
47951
47811
|
setIosSwipeGestureEnabled({
|
|
47952
47812
|
isEnabled: false
|
|
@@ -47972,7 +47832,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47972
47832
|
]
|
|
47973
47833
|
});
|
|
47974
47834
|
});
|
|
47975
|
-
PartnerWebView = /* @__PURE__ */ (0,
|
|
47835
|
+
PartnerWebView = /* @__PURE__ */ (0, import_react196.forwardRef)(function PartnerWebViewScreen(_03, _1) {
|
|
47976
47836
|
var _ref = [
|
|
47977
47837
|
_03,
|
|
47978
47838
|
_1
|