@momo-kits/native-kits 0.162.6-debug → 0.163.1-beta.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.
Files changed (123) hide show
  1. package/CLAUDE.md +78 -0
  2. package/compose/build.gradle.kts +8 -11
  3. package/compose/build.gradle.kts.backup +7 -10
  4. package/compose/compose.podspec +1 -1
  5. package/compose/src/commonMain/kotlin/vn/momo/kits/application/AnimationSearchInput.kt +7 -2
  6. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Context.kt +5 -12
  7. package/compose/src/commonMain/kotlin/vn/momo/kits/application/FloatingButton.kt +24 -6
  8. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Header.kt +19 -4
  9. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderAnimated.kt +10 -1
  10. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderBackground.kt +2 -2
  11. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderDefault.kt +1 -1
  12. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderExtended.kt +1 -1
  13. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderRight.kt +16 -5
  14. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderTitle.kt +1 -1
  15. package/compose/src/commonMain/kotlin/vn/momo/kits/application/LiteScreen.kt +101 -6
  16. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Localize.kt +269 -0
  17. package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +15 -4
  18. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Screen.kt +33 -8
  19. package/compose/src/commonMain/kotlin/vn/momo/kits/application/useHeaderSearchAnimation.kt +1 -1
  20. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Badge.kt +25 -22
  21. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeRibbon.kt +29 -27
  22. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BaselineView.kt +26 -3
  23. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Button.kt +30 -27
  24. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Carousel.kt +13 -3
  25. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CheckBox.kt +5 -0
  26. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Chip.kt +11 -3
  27. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Collapse.kt +18 -3
  28. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CupertinoOverscroll.kt +11 -11
  29. package/compose/src/commonMain/kotlin/vn/momo/kits/components/IconButton.kt +11 -3
  30. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Information.kt +5 -1
  31. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Input.kt +59 -84
  32. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputDropDown.kt +71 -13
  33. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputMoney.kt +51 -10
  34. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputOTP.kt +1 -6
  35. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputPhoneNumber.kt +21 -4
  36. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputSearch.kt +1 -1
  37. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputTextArea.kt +75 -16
  38. package/compose/src/commonMain/kotlin/vn/momo/kits/components/LazyColumnWithBouncing.kt +26 -5
  39. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationDot.kt +1 -1
  40. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationScroll.kt +11 -3
  41. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupNotify.kt +36 -15
  42. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupPromotion.kt +9 -3
  43. package/compose/src/commonMain/kotlin/vn/momo/kits/components/ProgressInfo.kt +28 -0
  44. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Radio.kt +13 -2
  45. package/compose/src/commonMain/kotlin/vn/momo/kits/components/ScaleSizeScope.kt +17 -0
  46. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Skeleton.kt +10 -4
  47. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Slider.kt +28 -3
  48. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Stepper.kt +47 -8
  49. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Steps.kt +25 -4
  50. package/compose/src/commonMain/kotlin/vn/momo/kits/components/SuggestAction.kt +11 -2
  51. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Swipe.kt +17 -1
  52. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Switch.kt +6 -1
  53. package/compose/src/commonMain/kotlin/vn/momo/kits/components/TabView.kt +111 -50
  54. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tag.kt +5 -1
  55. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +8 -7
  56. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Title.kt +12 -1
  57. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tooltip.kt +96 -4
  58. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Uploader.kt +12 -2
  59. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePicker.kt +21 -9
  60. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerTypes.kt +2 -2
  61. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerUtils.kt +14 -9
  62. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/WheelPicker.kt +11 -8
  63. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Theme.kt +1 -1
  64. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +40 -24
  65. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Item.kt +1 -1
  66. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/AutomationId.kt +5 -0
  67. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Clickable.kt +2 -0
  68. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/DeprecatedModifier.kt +4 -94
  69. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Shadow.kt +2 -0
  70. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ModalScreen.kt +5 -1
  71. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +15 -5
  72. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +14 -65
  73. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigator.kt +33 -48
  74. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +55 -56
  75. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +9 -3
  76. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +31 -13
  77. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/CurvedContainer.kt +1 -1
  78. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/FloatingButton.kt +24 -6
  79. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +6 -11
  80. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderBackground.kt +1 -2
  81. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderRight.kt +3 -6
  82. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderTitle.kt +1 -1
  83. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderUser.kt +13 -3
  84. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/SnackBar.kt +2 -3
  85. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/tracking/ScreenTracker.kt +40 -1
  86. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/ComposeLottieAnimation.kt +2 -0
  87. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +8 -0
  88. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Resources.kt +17 -2
  89. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Tracking.kt +1 -1
  90. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Utils.kt +3 -3
  91. package/compose/src/iosMain/kotlin/vn/momo/kits/navigation/ScrollToTop.ios.kt +3 -2
  92. package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +2 -0
  93. package/example/ios/Example.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  94. package/example/ios/Example.xcworkspace/xcuserdata/huynhdung.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  95. package/example/ios/Example.xcworkspace/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +5 -0
  96. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/MoMoUIKits.xcscheme +58 -0
  97. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/Pods-Example.xcscheme +58 -0
  98. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SDWebImage.xcscheme +58 -0
  99. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SDWebImageSwiftUI.xcscheme +58 -0
  100. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SkeletonUI.xcscheme +58 -0
  101. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +46 -0
  102. package/gradle.properties +1 -1
  103. package/ios/Application/ApplicationEnvironment.swift +0 -1
  104. package/ios/Application/Components.swift +0 -1
  105. package/ios/Application/FloatingButton.swift +0 -1
  106. package/ios/Badge/Badge.swift +0 -1
  107. package/ios/Badge/BadgeRibbon.swift +0 -2
  108. package/ios/Button/Button.swift +1 -1
  109. package/ios/Checkbox/Checkbox.swift +0 -1
  110. package/ios/Input/Input.swift +0 -1
  111. package/ios/Input/InputPhoneNumber.swift +0 -1
  112. package/ios/Input/InputSearch.swift +0 -3
  113. package/ios/Input/InputTextArea.swift +0 -1
  114. package/ios/OTPKeyboard/KeyboardButton.swift +1 -1
  115. package/ios/Popup/PopupDisplay.swift +0 -6
  116. package/ios/Popup/PopupInput.swift +0 -2
  117. package/ios/Template/TrustBanner/TrustBanner.swift +0 -2
  118. package/ios/Typography/Text.swift +7 -13
  119. package/ios/Typography/Typography.swift +8 -22
  120. package/local.properties +8 -0
  121. package/package.json +1 -1
  122. package/ios/Application/FontScaleStore.swift +0 -59
  123. package/ios/Information/Information.swift +0 -151
package/CLAUDE.md ADDED
@@ -0,0 +1,78 @@
1
+ # CLAUDE.md
2
+
3
+ Guidance for working in this repo. Keep it accurate — update it when structure or commands change.
4
+
5
+ ## What this is
6
+
7
+ `momo-native-kits` — MoMo's design-system / UI-kit as a **Kotlin Multiplatform + Compose Multiplatform** library, published for Android (AAR/Maven) and iOS (static framework + CocoaPods). It is the Compose port of the React Native `momo-kits`. Consumed by mini-apps embedded in the host MoMo app.
8
+
9
+ - Artifact: `vn.momo.kits:kits` (version in `gradle.properties`). NPM mirror: `@momo-kits/native-kits`.
10
+ - Targets: `androidTarget` (JVM 17, compile/min/target SDK 36/24/36), `iosArm64`, `iosSimulatorArm64` (framework `baseName = "kits"`, `isStatic = true`).
11
+ - Kotlin 2.3.10, Compose MP 1.10.3.
12
+
13
+ ## Modules
14
+
15
+ - `:compose` — the published library. All real code lives here.
16
+ - `:sample:shared` + `:sample:androidApp` — demo app (`UIKitHome` lists all components). iOS demo in `sample/iosApp` (Xcode).
17
+
18
+ ## Source layout (`compose/src/commonMain/kotlin/vn/momo/kits/`)
19
+
20
+ - `components/` — ~50 UI components, **one file per component** (`Button.kt`, `Input*.kt`, `PopupNotify.kt`, …).
21
+ - `application/` — app-level context & config: `Context.kt` (CompositionLocals, `MiniAppContext`, `DesignSystemConfig`), `Localize.kt` (i18n: `LocalizationObject`, `Localize`, default dictionary), `Screen.kt`, header pieces. Also holds the **deprecated** `ApplicationContainer`.
22
+ - `navigation/` — `NavigationContainer.kt` (**canonical entry point**), `Navigator.kt`, `Navigation.kt`, `StackScreen.kt`, `bottomtab/`, `component/`, `tracking/`.
23
+ - `const/` — design tokens: `Theme.kt`, `Colors.kt`, `Typography.kt`, `Spacing.kt`, `Radius.kt`.
24
+ - `layout/`, `modifier/`, `utils/`.
25
+ - `platform/` — `Platform.kt` `expect` declarations, actualized in `androidMain` / `iosMain` (`Platform.android.kt`, `Platform.ios.kt`).
26
+
27
+ ## Build & verify
28
+
29
+ No unit-test suite is configured. Validate changes by compiling the relevant target(s); use the sample app for visual checks.
30
+
31
+ ```bash
32
+ ./gradlew :compose:compileCommonMainKotlinMetadata # validate commonMain (fast, do this first)
33
+ ./gradlew :compose:compileDebugKotlinAndroid # Android target
34
+ ./gradlew :compose:linkDebugFrameworkIosSimulatorArm64 # iOS framework (slow)
35
+ ./gradlew :sample:androidApp:installDebug # run demo on device/emulator
36
+ ```
37
+
38
+ Publishing is automated (`publish.sh` + GitLab CI on `[ci build]` / `main`). Do not publish manually unless asked: `sh publish.sh beta` / `sh publish.sh release` (Maven→GitLab + NPM).
39
+
40
+ ## Architecture essentials
41
+
42
+ - **Entry point:** wrap content in `NavigationContainer(...)` from `navigation/`. It builds the `Navigator`, takes a host-supplied `Localize` (falls back to an empty one), and provides the CompositionLocals below. **Do not use** `ApplicationContainer` (`application/NavigationContainer.kt`) — deprecated and does **not** wire `LocalLocalize` / `LocalNavigator` / `LocalMaxApi`.
43
+ - **Configuration flows via CompositionLocals**, not params. Public ones: `AppTheme`, `AppStatusBar`, `AppNavigationBar` (`const/Theme.kt`); `ApplicationContext`, `AppConfig`, `AppLanguage`, `LocalLocalize`, `ScaleSizeMaxRate` (`application/`); `LocalNavigator`, `LocalMaxApi` (`navigation/`). Read with `X.current`.
44
+ - **Platform code** goes through `expect`/`actual` in `platform/` — never reference Android/iOS APIs from `commonMain` directly.
45
+ - **Native bridge:** `IMaxApi` (`vn.momo.maxapi`, exposed as `LocalMaxApi`) is the host-app bridge (dismiss, tracking, device info, language).
46
+ - Navigation uses a runtime `DynamicScreenRegistry`; overlays (modal/bottom-sheet/snackbar) go through `Navigator` + `OverplayComponentRegistry`.
47
+
48
+ ## i18n / Localize (port of RN `Localize`)
49
+
50
+ - `application/Localize.kt`: everything i18n. `LocalizationObject` is a data class with required `vi` / `en` maps (`LocalizationObject(vi = mapOf(…), en = mapOf(…))`). `Localize` constructors take a `LocalizationObject` or a `(vi, en)` map pair; the constructor **merges** the kit defaults with the host data (host wins on key clash). Methods: `translate(key)` (missing/empty → returns the key), `translateData(map)` / `translateData(vi, en)`, `addTranslations` (existing keys win), `changeLanguage(lang)`. Default language `"vi"`, `"en"` only on exact match; language is snapshot state so a switch recomposes consumers.
51
+ - The default dictionary lives **inside `Localize`** (companion `defaultLanguage`), **generated 1:1 from `momo-kits` RN `Assets/language.json`** — do not hand-edit that block; edit the RN source and regenerate.
52
+ - The host creates one `Localize` and passes it in: `NavigationContainer(localize = myLocalize, …)`. There is **no** `language` param and `DesignSystemConfig` carries no translations — overrides go through the `Localize` constructor / `addTranslations`. Switch language at runtime with `myLocalize.changeLanguage("en")`.
53
+ - Access in a `@Composable`: `LocalLocalize.current.translate("errorCode")`. Language is host-controlled, never read from the OS locale. `AppLanguage` is still provided (derived from `Localize.currentLanguage`) for older components that read it.
54
+ - Some older components still do ad-hoc `AppLanguage.current` + `Map` lookups; new/changed code should use `LocalLocalize`.
55
+
56
+ ## Code conventions
57
+
58
+ - **Tokens, not literals:** use `Colors`, `Typography`, `Spacing`, `Radius` objects and `AppTheme.current` for colors/styles. Per-component sizing is bundled in enums (e.g. `Button.Size(val value: ButtonSpecs)`).
59
+ - **Composable signatures:** required params first, slot lambdas next, `modifier: Modifier = Modifier` **last**; give optional params sensible defaults.
60
+ - **Stability:** annotate token/config data classes `@Stable`/`@Immutable`; memoize derived colors/styles/handlers with `remember(keys) { … }`.
61
+ - **Custom modifiers** are preferred: `conditional(...)`, `setAutomationId(...)`, the `clickable` variants in `modifier/`.
62
+ - Match the surrounding file's style when adding code.
63
+
64
+ ## Writing docs in code (follow this)
65
+
66
+ Comments are **sparse and in English**. Document only what is **not obvious from the code** — non-obvious behavior, platform quirks, RN-parity semantics, memoization intent, or important gotchas worth flagging. Do **not**:
67
+
68
+ - write KDoc walls or restate what the signature/code already says;
69
+ - narrate obvious steps or add section-banner noise;
70
+ - use a language other than English in code comments.
71
+
72
+ Prefer one tight line at the surprising spot over a paragraph. Match the (low) comment density already in the codebase.
73
+
74
+ ## Gotchas
75
+
76
+ - **Resource qualifier drift:** the generated Compose `Res` namespace is `vn.momo.uikits.resources`, but `utils/Resources.kt` and `platform/Platform.ios.kt` reference `vn.momo.compose.resources`. Keep bundled strings/dictionaries as plain Kotlin (the `defaultLanguage` map in `Localize.kt`), not `composeResources/values`, to avoid iOS framework resource-loading issues.
77
+ - Prefer `NavigationContainer` over the deprecated `ApplicationContainer`; prefer `IMaxApi`/`LocalMaxApi` over the deprecated `PlatformApi`.
78
+ - iOS strings/maps must survive Kotlin/Native framework packaging — keep them compiled-in, not loaded from resource bundles.
@@ -12,14 +12,14 @@ plugins {
12
12
  kotlin("plugin.serialization")
13
13
  }
14
14
 
15
- val gitlabName: String = findProperty("name") as String? ?: ""
16
- val gitlabRepo: String = findProperty("repo") as String? ?: ""
17
- val gitlabUrl: String = findProperty("url") as String? ?: ""
18
- val gitlabGroup: String = findProperty("group") as String? ?: ""
15
+ val gitlabName: String? = findProperty("name") as String? ?: ""
16
+ val gitlabRepo: String? = findProperty("repo") as String? ?: ""
17
+ val gitlabUrl: String? = findProperty("url") as String? ?: ""
18
+ val gitlabGroup: String? = findProperty("group") as String? ?: ""
19
19
  val gitlabArtifactId: String = findProperty("artifact.id") as String? ?: ""
20
- val gitlabVersion: String = findProperty("version") as String? ?: ""
21
- val gitlabUser: String = findProperty("gitlab.user") as String? ?: ""
22
- val gitlabKey: String = findProperty("gitlab.password") as String? ?: ""
20
+ val gitlabVersion: String? = findProperty("version") as String? ?: ""
21
+ val gitlabUser: String? = findProperty("gitlab.user") as String? ?: ""
22
+ val gitlabKey: String? = findProperty("gitlab.password") as String? ?: ""
23
23
 
24
24
  kotlin {
25
25
  androidTarget {
@@ -40,7 +40,7 @@ kotlin {
40
40
  }
41
41
 
42
42
  cocoapods {
43
- version = "0.162.6-debug"
43
+ version = "0.163.1-beta.1-debug"
44
44
  summary = "IOS Shared module"
45
45
  homepage = "https://momo.vn"
46
46
  ios.deploymentTarget = "15.0"
@@ -58,9 +58,6 @@ kotlin {
58
58
  }
59
59
 
60
60
  sourceSets {
61
- all {
62
- languageSettings.optIn("vn.momo.kits.modifier.InternalApi")
63
- }
64
61
  commonMain.dependencies {
65
62
  implementation(compose.runtime)
66
63
  implementation(compose.material)
@@ -12,14 +12,14 @@ plugins {
12
12
  kotlin("plugin.serialization")
13
13
  }
14
14
 
15
- val gitlabName: String = findProperty("name") as String? ?: ""
16
- val gitlabRepo: String = findProperty("repo") as String? ?: ""
17
- val gitlabUrl: String = findProperty("url") as String? ?: ""
18
- val gitlabGroup: String = findProperty("group") as String? ?: ""
15
+ val gitlabName: String? = findProperty("name") as String? ?: ""
16
+ val gitlabRepo: String? = findProperty("repo") as String? ?: ""
17
+ val gitlabUrl: String? = findProperty("url") as String? ?: ""
18
+ val gitlabGroup: String? = findProperty("group") as String? ?: ""
19
19
  val gitlabArtifactId: String = findProperty("artifact.id") as String? ?: ""
20
- val gitlabVersion: String = findProperty("version") as String? ?: ""
21
- val gitlabUser: String = findProperty("gitlab.user") as String? ?: ""
22
- val gitlabKey: String = findProperty("gitlab.password") as String? ?: ""
20
+ val gitlabVersion: String? = findProperty("version") as String? ?: ""
21
+ val gitlabUser: String? = findProperty("gitlab.user") as String? ?: ""
22
+ val gitlabKey: String? = findProperty("gitlab.password") as String? ?: ""
23
23
 
24
24
  kotlin {
25
25
  androidTarget {
@@ -58,9 +58,6 @@ kotlin {
58
58
  }
59
59
 
60
60
  sourceSets {
61
- all {
62
- languageSettings.optIn("vn.momo.kits.modifier.InternalApi")
63
- }
64
61
  commonMain.dependencies {
65
62
  implementation(compose.runtime)
66
63
  implementation(compose.material)
@@ -1,6 +1,6 @@
1
1
  Pod::Spec.new do |spec|
2
2
  spec.name = 'compose'
3
- spec.version = '0.161.0-debug'
3
+ spec.version = '0.161.2-beta.15'
4
4
  spec.homepage = 'https://momo.vn'
5
5
  spec.source = { :http=> ''}
6
6
  spec.authors = ''
@@ -1,7 +1,12 @@
1
1
  package vn.momo.kits.application
2
2
 
3
3
  import androidx.compose.foundation.background
4
- import androidx.compose.foundation.layout.*
4
+ import androidx.compose.foundation.layout.Box
5
+ import androidx.compose.foundation.layout.fillMaxWidth
6
+ import androidx.compose.foundation.layout.height
7
+ import androidx.compose.foundation.layout.offset
8
+ import androidx.compose.foundation.layout.padding
9
+ import androidx.compose.foundation.layout.width
5
10
  import androidx.compose.foundation.shape.RoundedCornerShape
6
11
  import androidx.compose.runtime.Composable
7
12
  import androidx.compose.ui.Modifier
@@ -14,7 +19,7 @@ import vn.momo.kits.const.Radius
14
19
  import vn.momo.kits.const.Spacing
15
20
 
16
21
  @Composable
17
- internal fun AnimationSearchInput(
22
+ fun AnimationSearchInput(
18
23
  animations: HeaderAnimations,
19
24
  inputSearchProps: InputSearchProps
20
25
  ) {
@@ -10,7 +10,7 @@ data class FeatureFlags(
10
10
  )
11
11
 
12
12
  @Immutable
13
- data class KitConfig(
13
+ data class DesignSystemConfig(
14
14
  val trustBanner: TrustBannerData? = null,
15
15
  val headerBar: String? = null,
16
16
  val headerGradient: String? = null,
@@ -28,7 +28,7 @@ data class MiniAppContext(
28
28
  val providerId: String = "",
29
29
  val permissions: List<Map<String, Any>>? = emptyList(),
30
30
  val features: FeatureFlags? = null,
31
- val fontScaleConfig: FontScaleConfig? = null,
31
+ val scaleSizeMaxRate: Float? = null,
32
32
  ) {
33
33
  companion object {
34
34
 
@@ -60,7 +60,7 @@ data class MiniAppContext(
60
60
  providerId = parent.providerId.ifBlank { child.providerId },
61
61
  permissions = if (!parent.permissions.isNullOrEmpty()) parent.permissions else child.permissions,
62
62
  features = mergeFeatureFlags(parent.features, child.features),
63
- fontScaleConfig = parent.fontScaleConfig ?: child.fontScaleConfig,
63
+ scaleSizeMaxRate = parent.scaleSizeMaxRate ?: child.scaleSizeMaxRate,
64
64
  )
65
65
  }
66
66
 
@@ -94,7 +94,7 @@ val ApplicationContext = staticCompositionLocalOf<MiniAppContext?> {
94
94
  null
95
95
  }
96
96
 
97
- val AppConfig = staticCompositionLocalOf<KitConfig?> {
97
+ val AppConfig = staticCompositionLocalOf<DesignSystemConfig?> {
98
98
  null
99
99
  }
100
100
 
@@ -106,11 +106,4 @@ val LocalComponentInformation = staticCompositionLocalOf<ComponentInformation?>
106
106
  null
107
107
  }
108
108
 
109
- @Immutable
110
- data class FontScaleConfig(
111
- val useOSFontScale: Boolean = true,
112
- val userScaleRate: Float? = null,
113
- val osFontScale: Float? = null,
114
- )
115
-
116
- val LocalFontScaleConfig = staticCompositionLocalOf { FontScaleConfig() }
109
+ val ScaleSizeMaxRate = staticCompositionLocalOf<Float?> { null }
@@ -1,18 +1,37 @@
1
1
  package vn.momo.kits.application
2
2
 
3
- import androidx.compose.animation.*
3
+ import androidx.compose.animation.AnimatedVisibility
4
4
  import androidx.compose.animation.core.CubicBezierEasing
5
5
  import androidx.compose.animation.core.animateDpAsState
6
6
  import androidx.compose.animation.core.tween
7
+ import androidx.compose.animation.expandHorizontally
8
+ import androidx.compose.animation.fadeIn
9
+ import androidx.compose.animation.fadeOut
10
+ import androidx.compose.animation.shrinkHorizontally
7
11
  import androidx.compose.foundation.ScrollState
8
12
  import androidx.compose.foundation.background
9
13
  import androidx.compose.foundation.interaction.MutableInteractionSource
10
- import androidx.compose.foundation.layout.*
14
+ import androidx.compose.foundation.layout.Arrangement
15
+ import androidx.compose.foundation.layout.Box
16
+ import androidx.compose.foundation.layout.Row
17
+ import androidx.compose.foundation.layout.Spacer
18
+ import androidx.compose.foundation.layout.fillMaxSize
19
+ import androidx.compose.foundation.layout.height
20
+ import androidx.compose.foundation.layout.offset
21
+ import androidx.compose.foundation.layout.padding
22
+ import androidx.compose.foundation.layout.sizeIn
23
+ import androidx.compose.foundation.layout.width
11
24
  import androidx.compose.material3.AlertDialogDefaults.shape
12
25
  import androidx.compose.material3.FloatingActionButton
13
26
  import androidx.compose.material3.FloatingActionButtonDefaults
14
- import androidx.compose.runtime.*
27
+ import androidx.compose.runtime.Composable
28
+ import androidx.compose.runtime.LaunchedEffect
29
+ import androidx.compose.runtime.getValue
30
+ import androidx.compose.runtime.mutableStateOf
31
+ import androidx.compose.runtime.remember
32
+ import androidx.compose.runtime.rememberCoroutineScope
15
33
  import androidx.compose.runtime.saveable.rememberSaveable
34
+ import androidx.compose.runtime.setValue
16
35
  import androidx.compose.ui.Alignment
17
36
  import androidx.compose.ui.Modifier
18
37
  import androidx.compose.ui.graphics.Color
@@ -26,7 +45,6 @@ import kotlinx.coroutines.launch
26
45
  import vn.momo.kits.components.Icon
27
46
  import vn.momo.kits.components.Text
28
47
  import vn.momo.kits.const.Typography
29
- import kotlin.time.Duration.Companion.milliseconds
30
48
 
31
49
  enum class FABSize {
32
50
  SMALL,
@@ -51,7 +69,7 @@ data class FabProps(
51
69
 
52
70
  @Deprecated("Use vn.momo.kits.navigation.FloatingButton instead", ReplaceWith("vn.momo.kits.navigation.FloatingButton"))
53
71
  @Composable
54
- internal fun FloatingButton(
72
+ fun FloatingButton(
55
73
  scrollPosition: Int,
56
74
  bottom: Dp,
57
75
  onClick: () -> Unit,
@@ -94,7 +112,7 @@ internal fun FloatingButton(
94
112
  scrollPositionStateFlow
95
113
  .collectLatest { debouncedScrollPosition ->
96
114
  isExpanded = debouncedScrollPosition > lastScrollPosition
97
- delay(300.milliseconds)
115
+ delay(300)
98
116
  lastScrollPosition = debouncedScrollPosition
99
117
 
100
118
  }
@@ -4,9 +4,24 @@ import androidx.compose.animation.core.animateFloatAsState
4
4
  import androidx.compose.foundation.background
5
5
  import androidx.compose.foundation.border
6
6
  import androidx.compose.foundation.clickable
7
- import androidx.compose.foundation.layout.*
7
+ import androidx.compose.foundation.layout.Arrangement
8
+ import androidx.compose.foundation.layout.Box
9
+ import androidx.compose.foundation.layout.BoxWithConstraints
10
+ import androidx.compose.foundation.layout.Row
11
+ import androidx.compose.foundation.layout.Spacer
12
+ import androidx.compose.foundation.layout.fillMaxWidth
13
+ import androidx.compose.foundation.layout.height
14
+ import androidx.compose.foundation.layout.padding
15
+ import androidx.compose.foundation.layout.size
16
+ import androidx.compose.foundation.layout.width
8
17
  import androidx.compose.foundation.shape.RoundedCornerShape
9
- import androidx.compose.runtime.*
18
+ import androidx.compose.runtime.Composable
19
+ import androidx.compose.runtime.LaunchedEffect
20
+ import androidx.compose.runtime.getValue
21
+ import androidx.compose.runtime.mutableStateOf
22
+ import androidx.compose.runtime.remember
23
+ import androidx.compose.runtime.setValue
24
+ import androidx.compose.runtime.snapshotFlow
10
25
  import androidx.compose.ui.Alignment
11
26
  import androidx.compose.ui.Modifier
12
27
  import androidx.compose.ui.graphics.Color
@@ -59,7 +74,7 @@ fun getHeaderColor(animatedHeader: AnimatedHeader?, opacity: Float, tintColor: C
59
74
 
60
75
  @Deprecated("Use vn.momo.kits.navigation.component.Header instead", ReplaceWith("vn.momo.kits.navigation.component.Header"))
61
76
  @Composable
62
- internal fun Header(
77
+ fun Header(
63
78
  headerType: HeaderType = HeaderType.DEFAULT,
64
79
  titlePosition: TitlePosition,
65
80
  title: String,
@@ -199,7 +214,7 @@ internal fun Header(
199
214
  if (searchAnimationEnable) {
200
215
  AnimationSearchInput(
201
216
  animations = animations,
202
- inputSearchProps = inputSearchProps
217
+ inputSearchProps = inputSearchProps!!
203
218
  )
204
219
  }
205
220
  }
@@ -13,7 +13,7 @@ import vn.momo.kits.components.Image
13
13
 
14
14
  @Deprecated("Use vn.momo.kits.navigation.component.Header instead", ReplaceWith("vn.momo.kits.navigation.component.Header"))
15
15
  @Composable
16
- internal fun HeaderAnimated(image: String, scrollState: Int = 0) {
16
+ fun HeaderAnimated(image: String, scrollState: Int = 0) {
17
17
  // Scale animation
18
18
  val scale by animateFloatAsState(
19
19
  targetValue = when {
@@ -23,6 +23,15 @@ internal fun HeaderAnimated(image: String, scrollState: Int = 0) {
23
23
  }
24
24
  )
25
25
 
26
+ // Opacity animation
27
+ val opacity by animateFloatAsState(
28
+ targetValue = when {
29
+ scrollState.toFloat() in 0f..150f -> 1f - (scrollState / 300f)
30
+ scrollState.toFloat() in 150f..300f -> 0.5f - ((scrollState - 150f) / 300f)
31
+ else -> 1f
32
+ }
33
+ )
34
+
26
35
  // Translation Y animation
27
36
 
28
37
  Box(modifier = Modifier.fillMaxWidth().height(200.dp)
@@ -27,7 +27,7 @@ data class AnimatedHeader(
27
27
  val composable: @Composable (scrollState: Int) -> Unit = {}
28
28
  )
29
29
 
30
- internal fun animateColor(start: Color, stop: Color, fraction: Float): Color {
30
+ fun animateColor(start: Color, stop: Color, fraction: Float): Color {
31
31
  return Color(
32
32
  red = start.red + fraction * (stop.red - start.red),
33
33
  green = start.green + fraction * (stop.green - start.green),
@@ -38,7 +38,7 @@ internal fun animateColor(start: Color, stop: Color, fraction: Float): Color {
38
38
 
39
39
  @Deprecated("Use vn.momo.kits.navigation.component.HeaderBackground instead", ReplaceWith("vn.momo.kits.navigation.component.HeaderBackground"))
40
40
  @Composable
41
- internal fun HeaderBackground(
41
+ fun HeaderBackground(
42
42
  headerType: HeaderType = HeaderType.DEFAULT,
43
43
  scrollState: Int,
44
44
  headerTransparent: Boolean = false,
@@ -21,7 +21,7 @@ import vn.momo.kits.utils.bottomBorder
21
21
 
22
22
  @Deprecated("Use vn.momo.kits.navigation.component.Header instead", ReplaceWith("vn.momo.kits.navigation.component.Header"))
23
23
  @Composable
24
- internal fun HeaderDefault(
24
+ fun HeaderDefault(
25
25
  opacityAni: Float,
26
26
  statusBarHeight: Dp,
27
27
  backgroundColor: Color?,
@@ -21,7 +21,7 @@ import vn.momo.kits.utils.bottomBorder
21
21
 
22
22
  @Deprecated("Use vn.momo.kits.navigation.component.Header instead", ReplaceWith("vn.momo.kits.navigation.component.Header"))
23
23
  @Composable
24
- internal fun HeaderExtended(
24
+ fun HeaderExtended(
25
25
  opacityAni: Float,
26
26
  statusBarHeight: Dp,
27
27
  backgroundColor: Color
@@ -3,10 +3,22 @@ package vn.momo.kits.application
3
3
  import androidx.compose.foundation.background
4
4
  import androidx.compose.foundation.border
5
5
  import androidx.compose.foundation.clickable
6
- import androidx.compose.foundation.layout.*
6
+ import androidx.compose.foundation.layout.Arrangement
7
+ import androidx.compose.foundation.layout.Box
8
+ import androidx.compose.foundation.layout.Row
9
+ import androidx.compose.foundation.layout.height
10
+ import androidx.compose.foundation.layout.offset
11
+ import androidx.compose.foundation.layout.padding
12
+ import androidx.compose.foundation.layout.size
13
+ import androidx.compose.foundation.layout.width
7
14
  import androidx.compose.foundation.shape.CircleShape
8
15
  import androidx.compose.foundation.shape.RoundedCornerShape
9
- import androidx.compose.runtime.*
16
+ import androidx.compose.runtime.Composable
17
+ import androidx.compose.runtime.Stable
18
+ import androidx.compose.runtime.getValue
19
+ import androidx.compose.runtime.mutableStateOf
20
+ import androidx.compose.runtime.remember
21
+ import androidx.compose.runtime.setValue
10
22
  import androidx.compose.ui.Alignment
11
23
  import androidx.compose.ui.Modifier
12
24
  import androidx.compose.ui.draw.clip
@@ -96,7 +108,7 @@ private fun getNavigationButtonConfig(
96
108
  icon = "navigation_more_icon"
97
109
  onClickHandler = onPressMore
98
110
  } else if (totalTools == 1 && !headerRight?.tools.isNullOrEmpty()) {
99
- val singleTool = headerRight.tools.first().items.firstOrNull()
111
+ val singleTool = headerRight?.tools?.first()?.items?.firstOrNull()
100
112
  if (singleTool != null) {
101
113
  icon = singleTool.icon
102
114
  onClickHandler = {
@@ -139,7 +151,7 @@ private fun ToolkitHeaderRight(
139
151
  }
140
152
 
141
153
  fun onPressClose() {
142
- api?.request("dismissAll", "")
154
+ api?.request("dismissAll", "", { _ -> })
143
155
  }
144
156
 
145
157
  fun onPressMore() {
@@ -262,7 +274,6 @@ fun NavigationButton(
262
274
  modifier = Modifier
263
275
  .size(28.dp)
264
276
  .clickable(enabled = !disabled, onClick = onClick)
265
-
266
277
  ) {
267
278
  Box(
268
279
  modifier = Modifier
@@ -12,7 +12,7 @@ import vn.momo.kits.const.Typography
12
12
 
13
13
  @Deprecated("Use vn.momo.kits.navigation.component instead", ReplaceWith("vn.momo.kits.navigation.component"))
14
14
  @Composable
15
- internal fun HeaderTitle(
15
+ fun HeaderTitle(
16
16
  title: String = "",
17
17
  modifier: Modifier = Modifier,
18
18
  textAlign: TextAlign = TextAlign.Start,
@@ -2,16 +2,43 @@ package vn.momo.kits.application
2
2
 
3
3
  import androidx.annotation.FloatRange
4
4
  import androidx.compose.animation.animateContentSize
5
- import androidx.compose.foundation.*
5
+ import androidx.compose.foundation.ScrollState
6
+ import androidx.compose.foundation.background
7
+ import androidx.compose.foundation.border
6
8
  import androidx.compose.foundation.gestures.detectTapGestures
7
9
  import androidx.compose.foundation.interaction.FocusInteraction
8
10
  import androidx.compose.foundation.interaction.MutableInteractionSource
9
- import androidx.compose.foundation.layout.*
11
+ import androidx.compose.foundation.layout.Arrangement
12
+ import androidx.compose.foundation.layout.Box
13
+ import androidx.compose.foundation.layout.Row
14
+ import androidx.compose.foundation.layout.WindowInsets
15
+ import androidx.compose.foundation.layout.asPaddingValues
16
+ import androidx.compose.foundation.layout.fillMaxSize
17
+ import androidx.compose.foundation.layout.fillMaxWidth
18
+ import androidx.compose.foundation.layout.ime
19
+ import androidx.compose.foundation.layout.navigationBars
20
+ import androidx.compose.foundation.layout.offset
21
+ import androidx.compose.foundation.layout.padding
22
+ import androidx.compose.foundation.layout.size
23
+ import androidx.compose.foundation.rememberScrollState
10
24
  import androidx.compose.foundation.shape.CircleShape
11
25
  import androidx.compose.foundation.text.BasicTextField
12
26
  import androidx.compose.foundation.text.KeyboardActions
13
27
  import androidx.compose.foundation.text.KeyboardOptions
14
- import androidx.compose.runtime.*
28
+ import androidx.compose.foundation.verticalScroll
29
+ import androidx.compose.runtime.Composable
30
+ import androidx.compose.runtime.LaunchedEffect
31
+ import androidx.compose.runtime.MutableState
32
+ import androidx.compose.runtime.Stable
33
+ import androidx.compose.runtime.State
34
+ import androidx.compose.runtime.derivedStateOf
35
+ import androidx.compose.runtime.getValue
36
+ import androidx.compose.runtime.mutableStateOf
37
+ import androidx.compose.runtime.produceState
38
+ import androidx.compose.runtime.remember
39
+ import androidx.compose.runtime.rememberUpdatedState
40
+ import androidx.compose.runtime.snapshotFlow
41
+ import androidx.compose.runtime.staticCompositionLocalOf
15
42
  import androidx.compose.ui.Alignment
16
43
  import androidx.compose.ui.Modifier
17
44
  import androidx.compose.ui.composed
@@ -25,13 +52,25 @@ import androidx.compose.ui.graphics.Color
25
52
  import androidx.compose.ui.graphics.SolidColor
26
53
  import androidx.compose.ui.graphics.graphicsLayer
27
54
  import androidx.compose.ui.input.pointer.pointerInput
28
- import androidx.compose.ui.layout.*
55
+ import androidx.compose.ui.layout.Layout
56
+ import androidx.compose.ui.layout.Measurable
57
+ import androidx.compose.ui.layout.MeasurePolicy
58
+ import androidx.compose.ui.layout.MeasureResult
59
+ import androidx.compose.ui.layout.MeasureScope
60
+ import androidx.compose.ui.layout.Placeable
61
+ import androidx.compose.ui.layout.layoutId
29
62
  import androidx.compose.ui.platform.LocalDensity
30
63
  import androidx.compose.ui.platform.LocalFocusManager
31
64
  import androidx.compose.ui.platform.LocalSoftwareKeyboardController
32
65
  import androidx.compose.ui.text.TextStyle
33
66
  import androidx.compose.ui.text.style.TextOverflow
34
- import androidx.compose.ui.unit.*
67
+ import androidx.compose.ui.unit.Constraints
68
+ import androidx.compose.ui.unit.Dp
69
+ import androidx.compose.ui.unit.IntOffset
70
+ import androidx.compose.ui.unit.LayoutDirection
71
+ import androidx.compose.ui.unit.dp
72
+ import androidx.compose.ui.unit.lerp
73
+ import androidx.compose.ui.unit.sp
35
74
  import kotlinx.coroutines.flow.collectLatest
36
75
  import kotlinx.coroutines.flow.mapNotNull
37
76
  import vn.momo.kits.components.Icon
@@ -43,6 +82,7 @@ import vn.momo.kits.const.Typography
43
82
  import vn.momo.kits.modifier.kitsAutomationId
44
83
  import vn.momo.kits.modifier.noFeedbackClickable
45
84
  import vn.momo.kits.modifier.setAutomationId
85
+ import vn.momo.kits.modifier.shadow
46
86
  import vn.momo.kits.navigation.component.HEADER_HEIGHT
47
87
  import vn.momo.kits.utils.getAppStatusBarHeight
48
88
  import kotlin.math.max
@@ -83,7 +123,7 @@ fun LiteScreen(
83
123
  title: String? = null,
84
124
  inputSearchProps: LiteInputSearchProps? = null,
85
125
  goBack: (() -> Unit)? = null,
86
- headerRight: @Composable (() -> Unit)? = null,
126
+ headerRight: @Composable() (() -> Unit)? = null,
87
127
  useAnimationSearch: Boolean = true,
88
128
  titlePosition: TitlePosition = TitlePosition.LEFT,
89
129
  headerRightData: HeaderRightData? = null,
@@ -813,6 +853,61 @@ private fun LiteInputSearch(
813
853
  }
814
854
  }
815
855
 
856
+ @Composable
857
+ private fun footerOffset(
858
+ useAvoidKeyboard: Boolean = true,
859
+ ): State<IntOffset> {
860
+ if (!useAvoidKeyboard) return remember { mutableStateOf(IntOffset.Zero) }
861
+ val density = LocalDensity.current
862
+ val navPaddingValue = WindowInsets.navigationBars.asPaddingValues()
863
+ val keyboardSize = keyboardSizeState()
864
+
865
+ return produceState(IntOffset.Zero, density, navPaddingValue) {
866
+ val navSystemOffset = with(density) { navPaddingValue.calculateBottomPadding().roundToPx() }
867
+ snapshotFlow { keyboardSize.value }.collectLatest {
868
+ value = if (it == 0.dp) IntOffset.Zero
869
+ else IntOffset(
870
+ x = 0, y = with(density) {
871
+ navSystemOffset - it.roundToPx()
872
+ })
873
+ }
874
+ }
875
+ }
876
+
877
+ @Composable
878
+ fun keyboardSizeState(): State<Dp> {
879
+ val bottom = WindowInsets.ime.asPaddingValues()
880
+ return rememberUpdatedState(bottom.calculateBottomPadding())
881
+ }
882
+
883
+ @Composable
884
+ private fun Footer(
885
+ useAvoidKeyboard: Boolean,
886
+ footerContent: (@Composable () -> Unit)?,
887
+ ) {
888
+ footerContent ?: return
889
+ val theme = AppTheme.current
890
+ val navPaddingValue = WindowInsets.navigationBars.asPaddingValues()
891
+ val offsetMove = footerOffset(useAvoidKeyboard)
892
+
893
+ Box(
894
+ modifier = Modifier.padding(navPaddingValue).fillMaxWidth().offset {
895
+ offsetMove.value
896
+ }.shadow(
897
+ color = Colors.black_20.copy(alpha = 0.05f),
898
+ blurRadius = 24f,
899
+ offsetX = 0.dp,
900
+ offsetY = (-4).dp
901
+ ).background(theme.colors.background.surface).padding(
902
+ start = Spacing.M,
903
+ top = Spacing.M,
904
+ end = Spacing.M,
905
+ )
906
+ ) {
907
+ footerContent()
908
+ }
909
+ }
910
+
816
911
  fun Modifier.hideKeyboardOnTap() = composed {
817
912
  val focusManager = LocalFocusManager.current
818
913
  val keyboardManager = LocalSoftwareKeyboardController.current