Skip to content

Commit 83e0138

Browse files
authored
feat: update to 9.0.9 (#749)
* feat: update to 9.0.9 * feat: use rn types instead * v9.0.7-alpha.1
1 parent 0bb81f4 commit 83e0138

File tree

53 files changed

+303
-178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+303
-178
lines changed

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "9.0.7-alpha.0",
3+
"version": "9.0.7-alpha.1",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

examples/expo-example/.rnstorybook/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const StorybookUIRoot = view.getStorybookUI({
1313
getItem: AsyncStorage.getItem,
1414
setItem: AsyncStorage.setItem,
1515
},
16-
enableWebsockets: true,
16+
enableWebsockets: false,
1717
// onDeviceUI: !isScreenshotTesting,
1818
host: 'localhost',
1919
port: 7007,

examples/expo-example/.rnstorybook/preview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { View, Appearance } from 'react-native';
22
import { withBackgrounds } from '@storybook/addon-ondevice-backgrounds';
3-
import type { Preview } from '@storybook/react';
3+
import type { Preview } from '@storybook/react-native';
44

55
const preview: Preview = {
66
decorators: [

examples/expo-example/components/ActionExample/Actions.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Meta, StoryObj } from '@storybook/react';
1+
import type { Meta, StoryObj } from '@storybook/react-native';
22
import { ActionButton } from './Actions';
33
import { fn } from 'storybook/test';
44

examples/expo-example/components/BackgroundExample/BackgroundCsf.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { StoryObj, Meta } from '@storybook/react';
1+
import type { StoryObj, Meta } from '@storybook/react-native';
22
import { Text, StyleSheet } from 'react-native';
33

44
const Background = () => (

examples/expo-example/components/ControlExamples/Array/Array.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { StoryObj, Meta } from '@storybook/react';
1+
import type { StoryObj, Meta } from '@storybook/react-native';
22
import { Array } from './Array';
33

44
const meta = {

examples/expo-example/components/ControlExamples/Boolean/Boolean.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Meta, StoryObj } from '@storybook/react';
1+
import type { Meta, StoryObj } from '@storybook/react-native';
22
import { Switch } from './Boolean';
33

44
const meta = {

examples/expo-example/components/ControlExamples/Color/Color.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { StoryObj, Meta } from '@storybook/react';
1+
import type { StoryObj, Meta } from '@storybook/react-native';
22
import { Color } from './Color';
33

44
const meta = {

examples/expo-example/components/ControlExamples/ControlExample/ControlExample.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Meta, StoryObj } from '@storybook/react';
1+
import { Meta, StoryObj } from '@storybook/react-native';
22
import { ControlExample } from './ControlExample';
33

44
const meta = {

examples/expo-example/components/ControlExamples/Date/Date.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { StoryObj, Meta } from '@storybook/react';
1+
import type { StoryObj, Meta } from '@storybook/react-native';
22
import { DateString } from './Date';
33

44
const date = new Date(1983, 1, 25);

0 commit comments

Comments
 (0)