@momo-kits/native-kits 0.164.1-beta.4-debug → 0.164.1-text.1-debug
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/.claude/settings.local.json +14 -0
- package/compose/build.gradle.kts +1 -1
- package/compose/compose.podspec +1 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +1 -1
- package/gradle.properties +1 -1
- package/ios/native-kits.podspec +1 -1
- package/ios-demo/MoMoUIKitsDemo.podspec +1 -1
- package/local.properties +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"WebSearch",
|
|
5
|
+
"Bash(./gradlew assembleDebug 2>&1)",
|
|
6
|
+
"Bash(./gradlew :sample:androidApp:installDebug 2>&1)",
|
|
7
|
+
"Bash(./gradlew :compose:compileCommonMainKotlinMetadata -q)",
|
|
8
|
+
"Bash(mkdir -p compose/src/commonMain/composeResources/files)",
|
|
9
|
+
"Bash(cp sample/shared/src/commonMain/composeResources/files/anim_processing_transaction.json sample/shared/src/commonMain/composeResources/files/dot_loading.json sample/shared/src/commonMain/composeResources/files/face_loading.json sample/shared/src/commonMain/composeResources/files/lottie_circle_loader.json compose/src/commonMain/composeResources/files/)",
|
|
10
|
+
"Bash(git rm *)",
|
|
11
|
+
"Bash(./gradlew :sample:androidApp:compileDebugKotlin -q)"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
package/compose/build.gradle.kts
CHANGED
package/compose/compose.podspec
CHANGED
|
@@ -94,7 +94,7 @@ fun Text(
|
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
// Memoize style copy operation
|
|
97
|
-
val optimizedStyle = remember(style) {
|
|
97
|
+
val optimizedStyle = remember(style, lineHeight) {
|
|
98
98
|
style.copy(
|
|
99
99
|
fontWeight = null,
|
|
100
100
|
lineHeight = if (lineHeight.value.isFinite() && lineHeight.value > 0) lineHeight else style.lineHeight
|
package/gradle.properties
CHANGED
package/ios/native-kits.podspec
CHANGED
package/local.properties
CHANGED
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
# Location of the SDK. This is only used by Gradle.
|
|
5
5
|
# For customization when using a Version Control System, please read the
|
|
6
6
|
# header note.
|
|
7
|
-
#
|
|
8
|
-
sdk.dir=/Users/
|
|
7
|
+
#Tue May 19 15:41:04 GMT+07:00 2026
|
|
8
|
+
sdk.dir=/Users/phuc/Library/Android/sdk
|