Skip to content

Commit

Permalink
feat(ts): export interface THEME_APPEARANCE
Browse files Browse the repository at this point in the history
  • Loading branch information
Purii committed Jun 21, 2020
1 parent ea4a9a8 commit 996efeb
Show file tree
Hide file tree
Showing 4 changed files with 170 additions and 229 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file. See [standa

### ⚠ BREAKING CHANGES

- Default apperance is derived by the system settings.
- Default apperance is derived by the system settings. `TableView` depends on `useColorScheme` released with React-Native `0.62.0`

### Features

Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
],
"peerDependencies": {
"react": "*",
"react-native": "^0.59"
"react-native": "^0.62"
},
"bugs": {
"url": "https://github.com/Purii/react-native-tableview-simple/issues"
Expand All @@ -74,27 +74,27 @@
"url": "[email protected]:Purii/react-native-tableview-simple.git"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.35",
"@types/react-native": "^0.62.11",
"@types/react": "^16.9.38",
"@types/react-native": "^0.62.13",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"babel-jest": "26.0.1",
"babel-preset-react-native": "4.0.1",
"eslint": "^7.1.0",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "26.0.1",
"lint-staged": "^10.2.6",
"lint-staged": "^10.2.11",
"react": "16.13.1",
"react-native": "^0.62.2",
"react-test-renderer": "16.13.1",
"rimraf": "^3.0.2",
"standard-version": "^8.0.0",
"typescript": "^3.7.3"
"typescript": "^3.9.5"
}
}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ export { default as Cell } from './components/Cell';
export { default as Section } from './components/Section';
export { default as Separator } from './components/Separator';
export { default as TableView } from './components/TableView';
export * as Theme from './components/Theme';
export {THEME_APPEARANCE} from './components/Theme';
Loading

0 comments on commit 996efeb

Please sign in to comment.