@apps-in-toss/framework 2.10.1 → 2.10.3
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 +13 -6
- package/dist/index.js +13 -6
- package/package.json +7 -7
package/dist/index.cjs
CHANGED
|
@@ -1355,15 +1355,22 @@ function AppTitle({ title, iconUrl, theme = "light" }) {
|
|
|
1355
1355
|
},
|
|
1356
1356
|
children: [
|
|
1357
1357
|
iconUrl != null && iconUrl !== "" && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1358
|
-
|
|
1358
|
+
import_react_native24.View,
|
|
1359
1359
|
{
|
|
1360
|
-
source: { uri: iconUrl },
|
|
1361
1360
|
style: {
|
|
1362
|
-
width: 18,
|
|
1363
|
-
height: 18,
|
|
1364
1361
|
borderRadius: 6,
|
|
1365
1362
|
overflow: "hidden"
|
|
1366
|
-
}
|
|
1363
|
+
},
|
|
1364
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1365
|
+
import_react_native23.Image,
|
|
1366
|
+
{
|
|
1367
|
+
source: { uri: iconUrl },
|
|
1368
|
+
style: {
|
|
1369
|
+
width: 18,
|
|
1370
|
+
height: 18
|
|
1371
|
+
}
|
|
1372
|
+
}
|
|
1373
|
+
)
|
|
1367
1374
|
}
|
|
1368
1375
|
),
|
|
1369
1376
|
title != null && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
@@ -3273,7 +3280,7 @@ function resolveTossAppBundleId(os) {
|
|
|
3273
3280
|
var package_default = {
|
|
3274
3281
|
name: "@apps-in-toss/framework",
|
|
3275
3282
|
type: "module",
|
|
3276
|
-
version: "2.10.
|
|
3283
|
+
version: "2.10.3",
|
|
3277
3284
|
description: "The framework for Apps In Toss",
|
|
3278
3285
|
scripts: {
|
|
3279
3286
|
typecheck: "tsc --noEmit",
|
package/dist/index.js
CHANGED
|
@@ -1318,15 +1318,22 @@ function AppTitle({ title, iconUrl, theme = "light" }) {
|
|
|
1318
1318
|
},
|
|
1319
1319
|
children: [
|
|
1320
1320
|
iconUrl != null && iconUrl !== "" && /* @__PURE__ */ jsx13(
|
|
1321
|
-
|
|
1321
|
+
View5,
|
|
1322
1322
|
{
|
|
1323
|
-
source: { uri: iconUrl },
|
|
1324
1323
|
style: {
|
|
1325
|
-
width: 18,
|
|
1326
|
-
height: 18,
|
|
1327
1324
|
borderRadius: 6,
|
|
1328
1325
|
overflow: "hidden"
|
|
1329
|
-
}
|
|
1326
|
+
},
|
|
1327
|
+
children: /* @__PURE__ */ jsx13(
|
|
1328
|
+
Image,
|
|
1329
|
+
{
|
|
1330
|
+
source: { uri: iconUrl },
|
|
1331
|
+
style: {
|
|
1332
|
+
width: 18,
|
|
1333
|
+
height: 18
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
)
|
|
1330
1337
|
}
|
|
1331
1338
|
),
|
|
1332
1339
|
title != null && /* @__PURE__ */ jsx13(
|
|
@@ -3265,7 +3272,7 @@ function resolveTossAppBundleId(os) {
|
|
|
3265
3272
|
var package_default = {
|
|
3266
3273
|
name: "@apps-in-toss/framework",
|
|
3267
3274
|
type: "module",
|
|
3268
|
-
version: "2.10.
|
|
3275
|
+
version: "2.10.3",
|
|
3269
3276
|
description: "The framework for Apps In Toss",
|
|
3270
3277
|
scripts: {
|
|
3271
3278
|
typecheck: "tsc --noEmit",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/framework",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.10.
|
|
4
|
+
"version": "2.10.3",
|
|
5
5
|
"description": "The framework for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"typecheck": "tsc --noEmit",
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"ait": "./bin/ait.js"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@apps-in-toss/analytics": "2.10.
|
|
59
|
-
"@apps-in-toss/cli": "2.10.
|
|
60
|
-
"@apps-in-toss/native-modules": "2.10.
|
|
61
|
-
"@apps-in-toss/plugins": "2.10.
|
|
62
|
-
"@apps-in-toss/types": "2.10.
|
|
63
|
-
"@apps-in-toss/user-scripts": "^2.10.
|
|
58
|
+
"@apps-in-toss/analytics": "2.10.3",
|
|
59
|
+
"@apps-in-toss/cli": "2.10.3",
|
|
60
|
+
"@apps-in-toss/native-modules": "2.10.3",
|
|
61
|
+
"@apps-in-toss/plugins": "2.10.3",
|
|
62
|
+
"@apps-in-toss/types": "2.10.3",
|
|
63
|
+
"@apps-in-toss/user-scripts": "^2.10.3",
|
|
64
64
|
"es-hangul": "^2.3.2"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|