@utilitywarehouse/hearth-react-native 0.35.4 → 0.35.5
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/build/core/configure.d.ts +1 -0
- package/build/core/configure.js +11 -0
- package/build/core/index.js +0 -11
- package/build/index.d.ts +1 -0
- package/build/index.js +1 -0
- package/package.json +6 -4
- package/public/llms/docs/introduction.md +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { StyleSheet } from 'react-native-unistyles';
|
|
2
|
+
import { breakpoints } from './breakpoints';
|
|
3
|
+
import { themes } from './themes';
|
|
4
|
+
StyleSheet.configure({
|
|
5
|
+
breakpoints,
|
|
6
|
+
themes,
|
|
7
|
+
settings: {
|
|
8
|
+
initialTheme: 'light',
|
|
9
|
+
adaptiveThemes: false,
|
|
10
|
+
},
|
|
11
|
+
});
|
package/build/core/index.js
CHANGED
|
@@ -1,14 +1,3 @@
|
|
|
1
|
-
import { StyleSheet } from 'react-native-unistyles';
|
|
2
|
-
import { breakpoints } from './breakpoints';
|
|
3
|
-
import { themes } from './themes';
|
|
4
1
|
export { createUnistylesElement, Display, getServerUnistyles, Hide, hydrateServerUnistyles, mq, NavigationBar, resetServerUnistyles, ScopedTheme, StatusBar, StyleSheet, UnistylesRuntime, useServerUnistyles, useUnistyles, withUnistyles, } from 'react-native-unistyles';
|
|
5
2
|
export * from './breakpoints';
|
|
6
3
|
export * from './themes';
|
|
7
|
-
StyleSheet.configure({
|
|
8
|
-
breakpoints,
|
|
9
|
-
themes,
|
|
10
|
-
settings: {
|
|
11
|
-
initialTheme: 'light',
|
|
12
|
-
adaptiveThemes: false,
|
|
13
|
-
},
|
|
14
|
-
});
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@utilitywarehouse/hearth-react-native",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.5",
|
|
4
4
|
"description": "Utility Warehouse React Native UI library",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
"types": "build/index.d.ts",
|
|
13
13
|
"module": "build/index",
|
|
14
14
|
"type": "module",
|
|
15
|
-
"sideEffects":
|
|
15
|
+
"sideEffects": [
|
|
16
|
+
"build/core/configure.js"
|
|
17
|
+
],
|
|
16
18
|
"bin": {
|
|
17
19
|
"hearth-react-native": "./scripts/init-ai.js"
|
|
18
20
|
},
|
|
@@ -76,10 +78,10 @@
|
|
|
76
78
|
"vite": "^7.1.3",
|
|
77
79
|
"vite-plugin-svgr": "^4.5.0",
|
|
78
80
|
"vitest": "^4.1.7",
|
|
79
|
-
"@utilitywarehouse/hearth-
|
|
81
|
+
"@utilitywarehouse/hearth-react-icons": "^0.9.0",
|
|
80
82
|
"@utilitywarehouse/hearth-fonts": "^0.1.1",
|
|
83
|
+
"@utilitywarehouse/hearth-storybook-utils": "0.0.0",
|
|
81
84
|
"@utilitywarehouse/hearth-react-native-icons": "^0.9.0",
|
|
82
|
-
"@utilitywarehouse/hearth-react-icons": "^0.9.0",
|
|
83
85
|
"@utilitywarehouse/hearth-svg-assets": "^0.6.5",
|
|
84
86
|
"@utilitywarehouse/hearth-tokens": "^0.4.4"
|
|
85
87
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Hearth React Native
|
|
2
2
|
|
|
3
3
|
React Native component library for building UIs at Utility Warehouse.<br/>
|
|
4
|
-
Current version: v0.35.
|
|
4
|
+
Current version: v0.35.5
|
|
5
5
|
|
|
6
6
|
Hearth React Native is a comprehensive design system library for React Native, providing reusable components, consistent styling, and tools to streamline UI development. It is built to enhance productivity and maintain design consistency across projects.
|
|
7
7
|
|