@momo-kits/native-kits 0.162.26 → 0.162.27-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 (150) hide show
  1. package/build.gradle.kts +11 -0
  2. package/compose/build.gradle.kts +190 -0
  3. package/compose/build.gradle.kts.backup +190 -0
  4. package/compose/compose.podspec +47 -0
  5. package/compose/src/androidMain/kotlin/vn/momo/kits/navigation/ScrollToTop.android.kt +6 -0
  6. package/compose/src/androidMain/kotlin/vn/momo/kits/platform/OsFontScale.android.kt +7 -0
  7. package/compose/src/androidMain/kotlin/vn/momo/kits/platform/Platform.android.kt +150 -0
  8. package/compose/src/commonMain/composeResources/font/momosignature.otf +0 -0
  9. package/compose/src/commonMain/composeResources/font/momotrustdisplay.otf +0 -0
  10. package/compose/src/commonMain/composeResources/font/sfprotext_black.otf +0 -0
  11. package/compose/src/commonMain/composeResources/font/sfprotext_black.ttf +0 -0
  12. package/compose/src/commonMain/composeResources/font/sfprotext_bold.ttf +0 -0
  13. package/compose/src/commonMain/composeResources/font/sfprotext_heavy.ttf +0 -0
  14. package/compose/src/commonMain/composeResources/font/sfprotext_light.ttf +0 -0
  15. package/compose/src/commonMain/composeResources/font/sfprotext_medium.ttf +0 -0
  16. package/compose/src/commonMain/composeResources/font/sfprotext_regular.ttf +0 -0
  17. package/compose/src/commonMain/composeResources/font/sfprotext_semibold.ttf +0 -0
  18. package/compose/src/commonMain/composeResources/font/sfprotext_thin.otf +0 -0
  19. package/compose/src/commonMain/composeResources/font/sfprotext_thin.ttf +0 -0
  20. package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.otf +0 -0
  21. package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.ttf +0 -0
  22. package/compose/src/commonMain/kotlin/vn/momo/kits/application/AnimationSearchInput.kt +52 -0
  23. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Context.kt +106 -0
  24. package/compose/src/commonMain/kotlin/vn/momo/kits/application/FloatingButton.kt +183 -0
  25. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Header.kt +207 -0
  26. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderAnimated.kt +39 -0
  27. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderBackground.kt +86 -0
  28. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderDefault.kt +76 -0
  29. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderExtended.kt +76 -0
  30. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderRight.kt +293 -0
  31. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderTitle.kt +33 -0
  32. package/compose/src/commonMain/kotlin/vn/momo/kits/application/LiteScreen.kt +826 -0
  33. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Localize.kt +269 -0
  34. package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +110 -0
  35. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Screen.kt +378 -0
  36. package/compose/src/commonMain/kotlin/vn/momo/kits/application/WidgetContainer.kt +56 -0
  37. package/compose/src/commonMain/kotlin/vn/momo/kits/application/useHeaderSearchAnimation.kt +69 -0
  38. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Avatar.kt +157 -0
  39. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Badge.kt +82 -0
  40. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeDot.kt +32 -0
  41. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeRibbon.kt +338 -0
  42. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BaselineView.kt +175 -0
  43. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Button.kt +356 -0
  44. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Carousel.kt +113 -0
  45. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CheckBox.kt +89 -0
  46. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Chip.kt +128 -0
  47. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Collapse.kt +209 -0
  48. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CupertinoOverscroll.kt +542 -0
  49. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Divider.kt +23 -0
  50. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Icon.kt +76 -0
  51. package/compose/src/commonMain/kotlin/vn/momo/kits/components/IconButton.kt +125 -0
  52. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Image.kt +231 -0
  53. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Information.kt +112 -0
  54. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Input.kt +477 -0
  55. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputDropDown.kt +114 -0
  56. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputMoney.kt +214 -0
  57. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputOTP.kt +240 -0
  58. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputPhoneNumber.kt +216 -0
  59. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputSearch.kt +259 -0
  60. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputTextArea.kt +182 -0
  61. package/compose/src/commonMain/kotlin/vn/momo/kits/components/LazyColumnWithBouncing.kt +343 -0
  62. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Loader.kt +108 -0
  63. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationDot.kt +56 -0
  64. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationNumber.kt +41 -0
  65. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationScroll.kt +84 -0
  66. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationWhiteDot.kt +40 -0
  67. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupNotify.kt +328 -0
  68. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupPromotion.kt +97 -0
  69. package/compose/src/commonMain/kotlin/vn/momo/kits/components/ProgressInfo.kt +310 -0
  70. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Radio.kt +59 -0
  71. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Rating.kt +87 -0
  72. package/compose/src/commonMain/kotlin/vn/momo/kits/components/ScaleSizeScope.kt +21 -0
  73. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Skeleton.kt +90 -0
  74. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Slider.kt +323 -0
  75. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Stepper.kt +217 -0
  76. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Steps.kt +473 -0
  77. package/compose/src/commonMain/kotlin/vn/momo/kits/components/SuggestAction.kt +122 -0
  78. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Swipe.kt +199 -0
  79. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Switch.kt +91 -0
  80. package/compose/src/commonMain/kotlin/vn/momo/kits/components/TabView.kt +470 -0
  81. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tag.kt +88 -0
  82. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +131 -0
  83. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Title.kt +203 -0
  84. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tooltip.kt +498 -0
  85. package/compose/src/commonMain/kotlin/vn/momo/kits/components/TrustBanner.kt +175 -0
  86. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Uploader.kt +182 -0
  87. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePicker.kt +193 -0
  88. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerTypes.kt +29 -0
  89. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerUtils.kt +234 -0
  90. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/WheelPicker.kt +188 -0
  91. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Colors.kt +325 -0
  92. package/compose/src/commonMain/kotlin/vn/momo/kits/const/KitFontScale.kt +22 -0
  93. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Radius.kt +12 -0
  94. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Spacing.kt +16 -0
  95. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Theme.kt +188 -0
  96. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +276 -0
  97. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Card.kt +52 -0
  98. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Item.kt +36 -0
  99. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Section.kt +39 -0
  100. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/AutomationId.kt +52 -0
  101. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Clickable.kt +66 -0
  102. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Conditional.kt +11 -0
  103. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/DeprecatedModifier.kt +104 -0
  104. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Shadow.kt +48 -0
  105. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Size.kt +51 -0
  106. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/BottomSheet.kt +252 -0
  107. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ModalScreen.kt +129 -0
  108. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +100 -0
  109. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +172 -0
  110. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigator.kt +360 -0
  111. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ScrollToTop.kt +8 -0
  112. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +581 -0
  113. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +156 -0
  114. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +225 -0
  115. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/CurvedContainer.kt +86 -0
  116. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/FloatingButton.kt +169 -0
  117. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +320 -0
  118. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderBackground.kt +81 -0
  119. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderRight.kt +309 -0
  120. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderTitle.kt +34 -0
  121. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderUser.kt +360 -0
  122. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/SnackBar.kt +132 -0
  123. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/tracking/ScreenTracker.kt +127 -0
  124. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/ComposeLottieAnimation.kt +91 -0
  125. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/OsFontScale.kt +9 -0
  126. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +69 -0
  127. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Icons.kt +1329 -0
  128. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Resources.kt +55 -0
  129. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Tracking.kt +15 -0
  130. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Utils.kt +105 -0
  131. package/compose/src/iosMain/kotlin/vn/momo/kits/navigation/ScrollToTop.ios.kt +32 -0
  132. package/compose/src/iosMain/kotlin/vn/momo/kits/platform/OsFontScale.ios.kt +66 -0
  133. package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +207 -0
  134. package/gradle/libs.versions.toml +69 -0
  135. package/gradle/wrapper/gradle-wrapper.jar +0 -0
  136. package/gradle/wrapper/gradle-wrapper.properties +8 -0
  137. package/gradle.properties +26 -0
  138. package/gradlew +252 -0
  139. package/gradlew.bat +94 -0
  140. package/ios/Application/Components.swift +14 -14
  141. package/ios/Application/HeaderRight.swift +45 -79
  142. package/ios/Application/Navigation/component/Header.swift +1 -1
  143. package/ios/Application/Navigation/component/HeaderRightWidthKey.swift +11 -0
  144. package/ios/Application/Navigation/component/NavigationHeaderRight.swift +196 -0
  145. package/ios/Button/Button.swift +14 -20
  146. package/ios/native-kits.podspec +1 -1
  147. package/ios-demo/MoMoUIKitsDemo.podspec +1 -1
  148. package/ios-demo/README.md +120 -0
  149. package/package.json +1 -1
  150. package/settings.gradle.kts +64 -0
@@ -0,0 +1,196 @@
1
+ import SwiftUI
2
+ import Foundation
3
+
4
+ /// Keyed (`@Environment(\.applicationEnvironment)`) variant of `HeaderRight`, for hosts
5
+ /// wired through `NavigationContainer`/`KitContainer` (the injection style introduced by
6
+ /// MR 227 / DS-637). Reuses the shared data types (`HeaderRightData`, `Tool`, `ToolGroup`)
7
+ /// and `NavigationButton` from `HeaderRight.swift`. The legacy `HeaderRight` there stays on
8
+ /// `@EnvironmentObject` for hosts that render `Screen` directly with
9
+ /// `.environmentObject(ApplicationEnvironment(...))`. Opt in per screen with
10
+ /// `headerRight: { NavigationHeaderRight() }`.
11
+ public struct NavigationHeaderRight: View {
12
+ public init(headerRight: HeaderRightData? = nil, tintColor: Color? = nil) {
13
+ self.headerRight = headerRight
14
+ self.tintColor = tintColor
15
+ }
16
+ var headerRight: HeaderRightData?
17
+ var tintColor: Color? = nil
18
+
19
+ public var body: some View {
20
+ HStack(alignment: .center) {
21
+ ToolkitNavigationHeaderRight(headerRight: headerRight, tintColor: tintColor)
22
+ }
23
+ }
24
+ }
25
+
26
+ struct ToolkitNavigationHeaderRight: View {
27
+ var headerRight: HeaderRightData?
28
+ var tintColor: Color?
29
+ @State private var isFavorite: Bool = false
30
+ @State private var isLoading: Bool = false
31
+ @Environment(\.applicationEnvironment) private var environment
32
+
33
+ private func apiValue(_ value: Any?) -> Any {
34
+ value ?? NSNull()
35
+ }
36
+
37
+ private var contextMap: [String: Any] {
38
+ let context = environment.applicationContext
39
+ return [
40
+ "appId": apiValue(context?.appId),
41
+ "code": apiValue(context?.appCode),
42
+ "name": apiValue(context?.appName),
43
+ "icon": apiValue(context?.appIcon),
44
+ "description": apiValue(context?.description),
45
+ "support": apiValue(context?.support),
46
+ "toolkitConfig": apiValue(context?.toolkitConfig),
47
+ "providerId": apiValue(context?.providerId),
48
+ "permissions": apiValue(context?.permissions)
49
+ ]
50
+ }
51
+
52
+ private var shouldShowShortcut: Bool {
53
+ headerRight?.useShortcut == true && !(headerRight?.useMore == true && environment.applicationContext == nil)
54
+ }
55
+
56
+ private func parseResponse(_ response: String) -> Any? {
57
+ guard let jsonData = response.data(using: .utf8),
58
+ let json = try? JSONSerialization.jsonObject(with: jsonData) as? [String: Any] else {
59
+ return nil
60
+ }
61
+ return json["response"]
62
+ }
63
+
64
+ // MARK: - Actions
65
+ private func loadFavoriteState() {
66
+ environment.composeApi?.request(
67
+ funcName: "isFavoriteApp",
68
+ params: ["code": apiValue(environment.applicationContext?.appCode)]
69
+ ) { response in
70
+ if let isFavorite = parseResponse(response) as? Bool {
71
+ self.isFavorite = isFavorite
72
+ }
73
+ }
74
+ }
75
+
76
+ private func onPressShortcut() {
77
+ environment.composeApi?.request(
78
+ funcName: "onToolAction",
79
+ params: [
80
+ "item": ["key": "onFavorite"],
81
+ "context": contextMap
82
+ ]
83
+ ) { response in
84
+ if let result = parseResponse(response) as? [String: Any],
85
+ result["success"] as? Bool == true {
86
+ isFavorite.toggle()
87
+ }
88
+ }
89
+ }
90
+
91
+ private func onPressHelpCenter() {
92
+ environment.composeApi?.request(
93
+ funcName: "showHelpCenter",
94
+ params: [
95
+ "appId": apiValue(environment.applicationContext?.appId),
96
+ "code": apiValue(environment.applicationContext?.appCode),
97
+ "name": apiValue(environment.applicationContext?.appName),
98
+ "icon": apiValue(environment.applicationContext?.appIcon),
99
+ "description": apiValue(environment.applicationContext?.description)
100
+ ]
101
+ ) { _ in }
102
+ }
103
+
104
+ private func onPressClose() {
105
+ environment.composeApi?.request(
106
+ funcName: "dismissAll",
107
+ params: nil
108
+ ) { _ in }
109
+ }
110
+
111
+ private func onPressMore() {
112
+ let params: [String: Any] = [
113
+ "useSystemTools": headerRight?.useSystemTools ?? true,
114
+ "tools": headerRight?.tools.map { $0.toMap() } ?? [],
115
+ "context": contextMap
116
+ ]
117
+ environment.composeApi?.request(
118
+ funcName: "showTools",
119
+ params: params
120
+ ) { response in
121
+ if let toolResponse = parseResponse(response) as? String {
122
+ headerRight?.toolCallback?(toolResponse)
123
+ }
124
+ }
125
+ }
126
+
127
+ private func getNavigationButtonConfig() -> NavigationButtonConfig {
128
+ let totalTools = headerRight?.tools.reduce(0) { $0 + $1.items.count } ?? 0
129
+ var icon = isFavorite ? "pin_star_checked" : "pin_star"
130
+ var onClickHandler: () -> Void = onPressShortcut
131
+
132
+ if totalTools > 1 || headerRight?.useMore == true {
133
+ icon = "navigation_more_icon"
134
+ onClickHandler = onPressMore
135
+ } else if totalTools == 1, let singleTool = headerRight?.tools.first?.items.first {
136
+ icon = singleTool.icon
137
+ onClickHandler = {
138
+ headerRight?.toolCallback?(singleTool.key)
139
+ }
140
+ }
141
+
142
+ return NavigationButtonConfig(icon: icon, onPress: onClickHandler)
143
+ }
144
+
145
+ var body: some View {
146
+ let backgroundButtonColor: Color = tintColor == Colors.black01 ? Colors.black20.opacity(0.6) : Colors.black01.opacity(0.6)
147
+ let borderColor: Color = tintColor == Colors.black01 ? Colors.black01.opacity(0.2) : Colors.black20.opacity(0.2)
148
+ let navButtonConfig = getNavigationButtonConfig()
149
+ let showBadge = headerRight?.tools.contains { group in
150
+ group.items.contains { $0.showBadge }
151
+ } ?? false
152
+
153
+ HStack(alignment: .center, spacing: 0) {
154
+ if shouldShowShortcut {
155
+ NavigationButton(
156
+ disabled: isLoading,
157
+ icon: navButtonConfig.icon,
158
+ showBadge: showBadge,
159
+ onClick: navButtonConfig.onPress,
160
+ tintColor: tintColor
161
+ )
162
+ }
163
+
164
+ HStack(alignment: .center, spacing: 0) {
165
+ if environment.applicationContext != nil {
166
+ Icon(source: "help_center", size: 20, color: tintColor ?? Colors.black17)
167
+ .padding(4)
168
+ .onTapGesture {
169
+ onPressHelpCenter()
170
+ }
171
+
172
+ Rectangle()
173
+ .fill(tintColor ?? Colors.black20)
174
+ .frame(width: 0.5, height: 12)
175
+ }
176
+
177
+ Icon(source: "16_basic_home", size: 20, color: tintColor ?? Colors.black17)
178
+ .padding(4)
179
+ .onTapGesture {
180
+ onPressClose()
181
+ }
182
+ }
183
+ .frame(width: 65, height: 28)
184
+ .background(backgroundButtonColor)
185
+ .cornerRadius(14)
186
+ .overlay(
187
+ RoundedRectangle(cornerRadius: 14)
188
+ .stroke(borderColor, lineWidth: 0.2)
189
+ )
190
+ .padding(.leading, Spacing.S)
191
+ }
192
+ .onAppear {
193
+ loadFavoriteState()
194
+ }
195
+ }
196
+ }
@@ -281,25 +281,19 @@ private struct ButtonPressFeedbackStyle: ButtonStyle {
281
281
  func makeBody(configuration: Configuration) -> some View {
282
282
  let pressed = configuration.isPressed && isEnabled
283
283
 
284
- ZStack {
285
- RoundedRectangle(cornerRadius: radius)
286
- .fill(background)
287
- .overlay(
288
- RoundedRectangle(cornerRadius: radius)
289
- .strokeBorder(border ?? .clear, lineWidth: border != nil ? borderWidth : 0)
290
- )
291
- .padding(.horizontal, pressed ? 2 : 0)
292
-
293
- configuration.label
294
- .opacity(pressed ? 0.5 : 1)
295
- }
296
- // Pin the whole button to its intended height explicitly: the bare
297
- // RoundedRectangle background has no intrinsic size of its own, so left
298
- // unconstrained in a ZStack inside a non-height-constraining container
299
- // (e.g. a footer VStack) it can report an oversized ideal height and
300
- // stretch the button — and its container — far taller than intended.
301
- .frame(height: height)
302
- .clipShape(RoundedRectangle(cornerRadius: radius))
303
- .animation(.easeInOut(duration: 0.1), value: pressed)
284
+ configuration.label
285
+ .opacity(pressed ? 0.5 : 1)
286
+ .background(
287
+ RoundedRectangle(cornerRadius: radius)
288
+ .fill(background)
289
+ .overlay(
290
+ RoundedRectangle(cornerRadius: radius)
291
+ .strokeBorder(border ?? .clear, lineWidth: border != nil ? borderWidth : 0)
292
+ )
293
+ .padding(.horizontal, pressed ? 2 : 0)
294
+ )
295
+ .frame(height: height)
296
+ .clipShape(RoundedRectangle(cornerRadius: radius))
297
+ .animation(.easeInOut(duration: 0.1), value: pressed)
304
298
  }
305
299
  }
@@ -1,6 +1,6 @@
1
1
  Pod::Spec.new do |s|
2
2
  s.name = 'MoMoUIKits'
3
- s.version = '0.163.1-sp.3'
3
+ s.version = '0.163.1-beta.16'
4
4
  s.summary = 'MoMoUIKits for iOS'
5
5
  s.homepage = 'https://momo.vn'
6
6
  s.license = { :type => 'MIT' }
@@ -1,6 +1,6 @@
1
1
  Pod::Spec.new do |s|
2
2
  s.name = 'MoMoUIKitsDemo'
3
- s.version = '0.163.1-sp.3'
3
+ s.version = '0.163.1-beta.16'
4
4
  s.summary = 'Demo browser for MoMoUIKits SwiftUI components'
5
5
  s.homepage = 'https://momo.vn'
6
6
  s.license = { :type => 'MIT' }
@@ -0,0 +1,120 @@
1
+ # MoMoUIKitsDemo
2
+
3
+ SwiftUI demo browser for `MoMoUIKits`.
4
+
5
+ The package can optionally host a Compose UIKits screen by receiving a
6
+ `UIViewController` factory from the host app. It does not import the KMP
7
+ `shared` module directly.
8
+
9
+ SwiftUI mode reuses the full demo screen set from
10
+ `sample/iosApp/iosApp/Demo`, including the sample `HomeView` registry and demo
11
+ screens for all currently available components.
12
+
13
+ ## CocoaPods
14
+
15
+ In the host app `Podfile`, include both local pods:
16
+
17
+ ```ruby
18
+ pod 'MoMoUIKits', :path => '../momo-native-kits/ios/native-kits.podspec'
19
+ pod 'MoMoUIKitsDemo', :path => '../momo-native-kits/ios-demo'
20
+ ```
21
+
22
+ Adjust the relative paths to match the host app checkout.
23
+
24
+ ## Host App Usage
25
+
26
+ ```swift
27
+ import MoMoUIKitsDemo
28
+ import shared
29
+
30
+ class UIKitsViewController: BaseComposeAppViewController {
31
+ override func getViewController() -> UIViewController? {
32
+ let params = self.application.data as? [String: Any]
33
+
34
+ return MoMoUIKitsDemoViewControllerFactory.make(
35
+ context: MoMoUIKitsDemoContext(
36
+ appId: params?["appId"] as? String ?? "",
37
+ appCode: params?["code"] as? String ?? "",
38
+ appName: params?["name"] as? String,
39
+ appIcon: params?["icon"] as? String ?? ""
40
+ ),
41
+ composeViewController: {
42
+ UIKitsScreenComposeViewControllerKt.UIKitsScreenComposeViewController(
43
+ params: params
44
+ )
45
+ }
46
+ )
47
+ }
48
+
49
+ override func viewDidDisappear(_ animated: Bool) {
50
+ super.viewDidDisappear(animated)
51
+ composeViewController = nil
52
+ }
53
+ }
54
+ ```
55
+
56
+ If the host does not pass `composeViewController`, the demo opens directly in
57
+ SwiftUI mode.
58
+
59
+ ## Included SwiftUI Demos
60
+
61
+ The pod includes the sample demo screens for:
62
+
63
+ - Animated Header
64
+ - Avatar
65
+ - Badge
66
+ - Baseline View
67
+ - Bottom Tab
68
+ - Button
69
+ - Carousel
70
+ - Checkbox
71
+ - Chip
72
+ - Collapse
73
+ - DateTimePicker
74
+ - Divider
75
+ - Header User
76
+ - Icon Button
77
+ - Image
78
+ - Information
79
+ - Input
80
+ - Input DropDown
81
+ - Input Money
82
+ - Input OTP
83
+ - Input Phone Number
84
+ - Input Search
85
+ - Input TextArea
86
+ - Loader
87
+ - Navigation
88
+ - Pagination
89
+ - Popup Display
90
+ - Popup Notify
91
+ - Popup Promotion
92
+ - Progress Info
93
+ - Radio
94
+ - Rating
95
+ - Skeleton
96
+ - Slider
97
+ - SnackBar
98
+ - Stepper
99
+ - Steps
100
+ - Suggest Action
101
+ - Swipe
102
+ - Switch
103
+ - TabView
104
+ - Tag
105
+ - Theme
106
+ - Title
107
+ - Tooltip
108
+ - Typography
109
+ - Uploader
110
+
111
+ ## Validation Notes
112
+
113
+ Validated locally with:
114
+
115
+ ```sh
116
+ pod ipc spec ios/MoMoUIKits.podspec
117
+ pod ipc spec ios-demo/MoMoUIKitsDemo.podspec
118
+ pod lib lint ios/MoMoUIKits.podspec --allow-warnings --skip-import-validation
119
+ pod lib lint ios-demo/MoMoUIKitsDemo.podspec --allow-warnings --skip-import-validation --include-podspecs=ios/MoMoUIKits.podspec
120
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/native-kits",
3
- "version": "0.162.26",
3
+ "version": "0.162.27-debug",
4
4
  "private": false,
5
5
  "dependencies": {},
6
6
  "devDependencies": {},
@@ -0,0 +1,64 @@
1
+ import org.gradle.kotlin.dsl.maven
2
+
3
+ rootProject.name = "momo-native-kits"
4
+ enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
5
+
6
+ pluginManagement {
7
+ repositories {
8
+ google {
9
+ mavenContent {
10
+ includeGroupAndSubgroups("androidx")
11
+ includeGroupAndSubgroups("com.android")
12
+ includeGroupAndSubgroups("com.google")
13
+ }
14
+ }
15
+ mavenCentral()
16
+ gradlePluginPortal()
17
+ maven {
18
+ url = uri("https://gitlab.mservice.com.vn/api/v4/projects/5400/packages/maven")
19
+ credentials {username = "download_packages"; password = "gldt-bjDqLpU_sPcHDuXau2ws" }
20
+ }
21
+ maven {
22
+ url = uri("https://artifacts.mservice.com.vn/repository/maven-momo-app/")
23
+ credentials {
24
+ username = "viewer"
25
+ password = "viewer"
26
+ }
27
+ isAllowInsecureProtocol = true
28
+ }
29
+ }
30
+ }
31
+
32
+ dependencyResolutionManagement {
33
+ repositories {
34
+ google {
35
+ mavenContent {
36
+ includeGroupAndSubgroups("androidx")
37
+ includeGroupAndSubgroups("com.android")
38
+ includeGroupAndSubgroups("com.google")
39
+ }
40
+ }
41
+ mavenCentral()
42
+ maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
43
+ maven {
44
+ url = uri("https://gitlab.mservice.com.vn/api/v4/projects/5400/packages/maven")
45
+ credentials {
46
+ username = "download_packages";
47
+ password = "gldt-bjDqLpU_sPcHDuXau2ws"
48
+ }
49
+ }
50
+ maven {
51
+ url = uri("https://artifacts.mservice.com.vn/repository/maven-momo-app/")
52
+ credentials {
53
+ username = "viewer"
54
+ password = "viewer"
55
+ }
56
+ isAllowInsecureProtocol = true
57
+ }
58
+ }
59
+ }
60
+
61
+ include(":compose")
62
+
63
+ include(":sample:androidApp")
64
+ include(":sample:shared")