@apps-in-toss/framework 1.4.3 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +2 -2
- package/package.json +7 -7
package/dist/index.cjs
CHANGED
|
@@ -1931,7 +1931,7 @@ function useCreateUserAgent({
|
|
|
1931
1931
|
const platform = (0, import_native_modules15.getPlatformOS)();
|
|
1932
1932
|
const appVersion = (0, import_native_modules15.getTossAppVersion)();
|
|
1933
1933
|
const { fontScale } = (0, import_react_native28.useWindowDimensions)();
|
|
1934
|
-
const platformString = platform === "ios" ? "iPhone" : "Android";
|
|
1934
|
+
const platformString = platform === "ios" ? "iPhone" : "Android phone";
|
|
1935
1935
|
const fontA11y = mapFontScaleToCategory(fontScale, platform);
|
|
1936
1936
|
const normalizedFontScale = convertToAndroidStyleScale(fontScale, platform);
|
|
1937
1937
|
return [
|
package/dist/index.js
CHANGED
|
@@ -1314,10 +1314,10 @@ var AppsInToss = {
|
|
|
1314
1314
|
|
|
1315
1315
|
// src/components/WebView.tsx
|
|
1316
1316
|
import {
|
|
1317
|
+
AppsInTossModule,
|
|
1317
1318
|
GoogleAdMob,
|
|
1318
1319
|
IAP,
|
|
1319
1320
|
Storage,
|
|
1320
|
-
AppsInTossModule,
|
|
1321
1321
|
appsInTossEvent as appsInTossEvent4,
|
|
1322
1322
|
iapCreateOneTimePurchaseOrder,
|
|
1323
1323
|
processProductGrant,
|
|
@@ -1916,7 +1916,7 @@ function useCreateUserAgent({
|
|
|
1916
1916
|
const platform = getPlatformOS();
|
|
1917
1917
|
const appVersion = getTossAppVersion();
|
|
1918
1918
|
const { fontScale } = useWindowDimensions();
|
|
1919
|
-
const platformString = platform === "ios" ? "iPhone" : "Android";
|
|
1919
|
+
const platformString = platform === "ios" ? "iPhone" : "Android phone";
|
|
1920
1920
|
const fontA11y = mapFontScaleToCategory(fontScale, platform);
|
|
1921
1921
|
const normalizedFontScale = convertToAndroidStyleScale(fontScale, platform);
|
|
1922
1922
|
return [
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/framework",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.4",
|
|
5
5
|
"description": "The framework for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"prepack": "yarn build",
|
|
@@ -56,11 +56,11 @@
|
|
|
56
56
|
"ait": "./bin/ait.js"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@apps-in-toss/analytics": "1.4.
|
|
60
|
-
"@apps-in-toss/cli": "1.4.
|
|
61
|
-
"@apps-in-toss/native-modules": "1.4.
|
|
62
|
-
"@apps-in-toss/plugins": "1.4.
|
|
63
|
-
"@apps-in-toss/types": "1.4.
|
|
59
|
+
"@apps-in-toss/analytics": "1.4.4",
|
|
60
|
+
"@apps-in-toss/cli": "1.4.4",
|
|
61
|
+
"@apps-in-toss/native-modules": "1.4.4",
|
|
62
|
+
"@apps-in-toss/plugins": "1.4.4",
|
|
63
|
+
"@apps-in-toss/types": "1.4.4",
|
|
64
64
|
"es-hangul": "^2.3.2"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"publishConfig": {
|
|
97
97
|
"access": "public"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "1bc251a4943ff0fa455fad020ff54b60929f4964"
|
|
100
100
|
}
|