Skip to content

Commit c0b5704

Browse files
committed
Merge branch 'main' into feat/license-kit-visualizer
2 parents fd7e630 + 719497d commit c0b5704

8 files changed

Lines changed: 22 additions & 11 deletions

File tree

.changeset/gorgeous-pillows-ring.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/docs/docs/react-native.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function MyComponent() {
103103

104104
React.useEffect(() => {
105105
async function getLibraries() {
106-
const result = = await ReactNativeLegal.getLibrariesAsync();
106+
const result = await ReactNativeLegal.getLibrariesAsync();
107107

108108
setLibraries(result.data);
109109
}

docs/rspress.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ export default defineConfig({
3939
outDir: 'api',
4040
}),
4141
],
42-
globalStyles: path.join(__dirname, 'styles/globalStyles.css'),
42+
globalStyles: path.join(__dirname, 'theme/styles.css'),
4343
});
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,17 @@
4242
font-style: normal;
4343
font-weight: 400;
4444
font-display: swap;
45-
/* src: url('./fonts/alliance-no-2-regular.ttf') format('truetype'); */
45+
src: url("https://cdn.prod.website-files.com/67e6b7885e182e1054b556db/67e6b8ee4fb44f39145cf744_AllianceNo2-Regular.ttf")
46+
format("truetype");
4647
}
4748

4849
@font-face {
4950
font-family: "Alliance No. 2";
5051
font-style: normal;
5152
font-weight: 500;
5253
font-display: swap;
53-
/* src: url('./fonts/alliance-no-2-medium.ttf') format('truetype'); */
54+
src: url("https://cdn.prod.website-files.com/67e6b7885e182e1054b556db/67e6b8eed3d2262c4baebd90_AllianceNo2-Medium.ttf")
55+
format("truetype");
5456
}
5557

5658
/* Callstack rspress theme styles section end */

examples/common-ui/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# react-native-legal-common-example-ui
2+
3+
## 0.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`1e37d65`](https://github.com/callstackincubator/react-native-legal/commit/1e37d65863c4e6fb334a491a38bc18c2dacd434b)]:
8+
- react-native-legal@1.4.0

examples/common-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-legal-common-example-ui",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"private": true,
55
"main": "src/index",
66
"module": "src/index",

packages/react-native-legal/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# react-native-legal
22

3+
## 1.4.0
4+
5+
### Minor Changes
6+
7+
- [#33](https://github.com/callstackincubator/react-native-legal/pull/33) [`1e37d65`](https://github.com/callstackincubator/react-native-legal/commit/1e37d65863c4e6fb334a491a38bc18c2dacd434b) Thanks [@mateusz1913](https://github.com/mateusz1913)! - Method that retrieves license metadata from native to JS
8+
39
## 1.3.1
410

511
### Patch Changes

packages/react-native-legal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-legal",
3-
"version": "1.3.1",
3+
"version": "1.4.0",
44
"description": "Acknowledge OSS libraries used in your React Native app",
55
"keywords": [
66
"react-native",

0 commit comments

Comments
 (0)