@momo-kits/native-kits 0.163.1-beta.3-debug → 0.163.1-beta.7-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/compose/build.gradle.kts +1 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputTextArea.kt +3 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +3 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +2 -1
- package/gradle.properties +1 -1
- package/package.json +1 -1
package/compose/build.gradle.kts
CHANGED
|
@@ -21,9 +21,11 @@ import androidx.compose.ui.unit.sp
|
|
|
21
21
|
import androidx.compose.ui.zIndex
|
|
22
22
|
import vn.momo.kits.application.IsShowBaseLineDebug
|
|
23
23
|
import vn.momo.kits.const.*
|
|
24
|
+
import vn.momo.kits.modifier.InternalApi
|
|
24
25
|
import vn.momo.kits.modifier.conditional
|
|
25
26
|
|
|
26
|
-
|
|
27
|
+
@InternalApi
|
|
28
|
+
const val MAX_LENGTH = 300
|
|
27
29
|
internal val DEFAULT_HEIGHT = 104.dp
|
|
28
30
|
|
|
29
31
|
@Composable
|
|
@@ -23,12 +23,14 @@ import androidx.navigation.compose.currentBackStackEntryAsState
|
|
|
23
23
|
import vn.momo.kits.application.IsShowBaseLineDebug
|
|
24
24
|
import vn.momo.kits.components.*
|
|
25
25
|
import vn.momo.kits.const.*
|
|
26
|
+
import vn.momo.kits.modifier.InternalApi
|
|
26
27
|
import vn.momo.kits.modifier.conditional
|
|
27
28
|
import vn.momo.kits.modifier.noFeedbackClickable
|
|
28
29
|
import vn.momo.kits.platform.getScreenDimensions
|
|
29
30
|
|
|
30
31
|
internal val floatingButtonWidth = 75.dp
|
|
31
|
-
|
|
32
|
+
@InternalApi
|
|
33
|
+
const val BOTTOM_TAB_BAR_HEIGHT = 64
|
|
32
34
|
|
|
33
35
|
@Composable
|
|
34
36
|
internal fun BottomTabBar(
|
|
@@ -44,7 +44,8 @@ import vn.momo.kits.navigation.LocalOptions
|
|
|
44
44
|
import vn.momo.kits.navigation.LocalScrollState
|
|
45
45
|
import vn.momo.kits.navigation.getInputSearchType
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
@InternalApi
|
|
48
|
+
const val HEADER_HEIGHT = 52
|
|
48
49
|
internal enum class InputSearchType { None, Header, Animated }
|
|
49
50
|
enum class TitlePosition { LEFT, CENTER }
|
|
50
51
|
|
package/gradle.properties
CHANGED