@ornikar/bumper 2.0.1 → 2.0.2-canary.957d3d8f386f2e0996d63b54a6fb2bafdef96232.0
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 +11 -0
- package/dist/definitions/index.d.ts +6 -0
- package/dist/definitions/index.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +118 -3
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +118 -3
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +119 -0
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.js +119 -0
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +118 -3
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.mjs +118 -3
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +117 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +117 -3
- package/dist/index.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +12 -8
- package/src/index.ts +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ornikar/bumper",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2-canary.957d3d8f386f2e0996d63b54a6fb2bafdef96232.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "@ornikar/bumper",
|
|
@@ -11,9 +11,6 @@
|
|
|
11
11
|
"access": "public"
|
|
12
12
|
},
|
|
13
13
|
"sideEffects": false,
|
|
14
|
-
"bin": {
|
|
15
|
-
"run-transformers": "./scripts/run-transformers.js"
|
|
16
|
-
},
|
|
17
14
|
"engines": {
|
|
18
15
|
"node": ">=22.17.0"
|
|
19
16
|
},
|
|
@@ -21,7 +18,14 @@
|
|
|
21
18
|
"build": "ORNIKAR_ONLY=bumper yarn ../.. build",
|
|
22
19
|
"lint:eslint": "yarn ../.. eslint --report-unused-disable-directives --quiet @ornikar/bumper"
|
|
23
20
|
},
|
|
24
|
-
"ornikar": {
|
|
21
|
+
"ornikar": {
|
|
22
|
+
"entries": [
|
|
23
|
+
"index"
|
|
24
|
+
],
|
|
25
|
+
"extraEntries": [
|
|
26
|
+
"./src/tamagui.config.ts"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
25
29
|
"dependencies": {
|
|
26
30
|
"@babel/runtime": "^7.24.0",
|
|
27
31
|
"@tamagui/core": "1.135.6"
|
|
@@ -48,8 +52,7 @@
|
|
|
48
52
|
"@types/react": "18.3.27",
|
|
49
53
|
"react": "18.3.1",
|
|
50
54
|
"react-dom": "18.3.1",
|
|
51
|
-
"react-native": "0.76.9"
|
|
52
|
-
"tamagui-loader": "1.135.6"
|
|
55
|
+
"react-native": "0.76.9"
|
|
53
56
|
},
|
|
54
57
|
"expo": {},
|
|
55
58
|
"exports": {
|
|
@@ -70,7 +73,8 @@
|
|
|
70
73
|
"import": "./dist/index.es.web.js"
|
|
71
74
|
}
|
|
72
75
|
},
|
|
73
|
-
"./package.json": "./package.json"
|
|
76
|
+
"./package.json": "./package.json",
|
|
77
|
+
"./src/tamagui.config.ts": "./src/tamagui.config.ts"
|
|
74
78
|
},
|
|
75
79
|
"browser": "./dist/index.es",
|
|
76
80
|
"main": "./dist/index-node-22.17.es.mjs",
|
package/src/index.ts
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
export { BumperDecorator } from './core/BumperDecorator';
|
|
2
2
|
export { BumperProvider } from './core/BumperProvider';
|
|
3
3
|
|
|
4
|
+
// Primitives
|
|
5
|
+
export type { HStackProps, StackProps, VStackProps } from './components/primitives/Stacks';
|
|
6
|
+
export { HStack, Stack, VStack } from './components/primitives/Stacks';
|
|
7
|
+
export type { ViewProps } from './components/primitives/View';
|
|
8
|
+
export { View } from './components/primitives/View';
|
|
9
|
+
|
|
10
|
+
// Typography
|
|
11
|
+
export type { TypographyTextProps } from './components/typography/Typograhy';
|
|
12
|
+
export { Typography } from './components/typography/Typograhy';
|
|
13
|
+
|
|
4
14
|
// Breakpoints
|
|
5
15
|
export { useBreakpointValue } from './components/breakpoints/hooks/useBreakpointValue';
|
|
6
16
|
export { useCurrentBreakpointName } from './components/breakpoints/hooks/useCurrentBreakpointName';
|