@expo/ui 0.0.0 → 0.0.1

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/CHANGELOG.md CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.0.1 — 2025-01-21
14
+
15
+ ### 💡 Others
16
+
17
+ - Rename to @expo/ui
18
+
13
19
  ## 0.0.0 — 2025-01-21
14
20
 
15
21
  ### 🎉 New features
package/README.md CHANGED
@@ -1,3 +1,3 @@
1
- # expo-ui
1
+ # @expo/ui
2
2
 
3
3
  A collection of UI components by Expo.
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'expo.modules.ui'
4
- version = '0.0.0'
4
+ version = '0.0.1'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -20,34 +20,13 @@ apply plugin: 'org.jetbrains.kotlin.plugin.compose'
20
20
 
21
21
  useCoreDependencies()
22
22
  useExpoPublishing()
23
-
24
- // If you want to use the managed Android SDK versions from expo-modules-core, set this to true.
25
- // The Android SDK versions will be bumped from time to time in SDK releases and may introduce breaking changes in your module code.
26
- // Most of the time, you may like to manage the Android SDK versions yourself.
27
- def useManagedAndroidSdkVersions = false
28
- if (useManagedAndroidSdkVersions) {
29
- useDefaultAndroidSdkVersions()
30
- } else {
31
- buildscript {
32
- // Simple helper that allows the root project to override versions declared by this library.
33
- ext.safeExtGet = { prop, fallback ->
34
- rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
35
- }
36
- }
37
- project.android {
38
- compileSdkVersion safeExtGet("compileSdkVersion", 34)
39
- defaultConfig {
40
- minSdkVersion safeExtGet("minSdkVersion", 21)
41
- targetSdkVersion safeExtGet("targetSdkVersion", 34)
42
- }
43
- }
44
- }
23
+ useDefaultAndroidSdkVersions()
45
24
 
46
25
  android {
47
26
  namespace "expo.modules.ui"
48
27
  defaultConfig {
49
28
  versionCode 1
50
- versionName "0.0.0"
29
+ versionName "0.0.1"
51
30
  }
52
31
  buildFeatures {
53
32
  compose true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/ui",
3
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
4
  "description": "A collection of UI components",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -35,5 +35,6 @@
35
35
  "expo": "*",
36
36
  "react": "*",
37
37
  "react-native": "*"
38
- }
38
+ },
39
+ "gitHead": "4a7f6884bd19ebbd7544a2c7d10d98588384f493"
39
40
  }