forked from reach/reach-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
65 changed files
with
928 additions
and
1,703 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@types/react-native |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,11 @@ | |
"author": "React Training <[email protected]>", | ||
"scripts": { | ||
"start": "start-storybook -p 9001 -c .storybook", | ||
"test": "CI=true tsdx test packages", | ||
"test:watch": "tsdx test packages", | ||
"test:coverage": "CI=true tsdx test packages --coverage", | ||
"build:changed": "lerna run build --parallel --since origin/master", | ||
"build": "lerna run build --parallel", | ||
"test": "cross-env NODE_ENV=test CI=true tsdx test packages", | ||
"test:watch": "cross-env NODE_ENV=test tsdx test packages", | ||
"test:coverage": "cross-env NODE_ENV=test CI=true tsdx test packages --coverage", | ||
"build:changed": "lerna run build --since origin/master", | ||
"build": "lerna run build", | ||
"ver": "lerna version --no-push", | ||
"changes": "dotenv lerna-changelog", | ||
"clean": "git clean -e '!/.env' -e '!/website-deploy-key' -e '!/website-deploy-key.pub' -fdX .", | ||
|
@@ -28,13 +28,16 @@ | |
"@testing-library/react": "^9.4.0", | ||
"@types/escape-regexp": "^0.0.0", | ||
"@types/highlight-words-core": "^1.2.0", | ||
"@types/invariant": "^2.2.31", | ||
"@types/jest": "^24.0.25", | ||
"@types/match-sorter": "^2.3.0", | ||
"@types/react": "^16.9.16", | ||
"@types/react-dom": "^16.9.4", | ||
"@types/react-router-dom": "^5.1.3", | ||
"@types/react-test-renderer": "^16.9.1", | ||
"@types/styled-components": "^4.4.1", | ||
"@types/tabbable": "^3.1.0", | ||
"@types/warning": "^3.0.0", | ||
"@typescript-eslint/eslint-plugin": "2.x", | ||
"@typescript-eslint/parser": "2.x", | ||
"awesome-typescript-loader": "^5.2.1", | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@reach/alert-dialog", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"description": "Accessible React Alert Dialog.", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -10,18 +10,17 @@ | |
"author": "React Training <[email protected]>", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"umd:main": "dist/alert-dialog.umd.production.js", | ||
"module": "dist/alert-dialog.esm.js", | ||
"typings": "dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production tsdx build --format=cjs,esm,umd" | ||
"build": "cross-env NODE_ENV=production tsdx build --format=cjs,esm" | ||
}, | ||
"dependencies": { | ||
"@reach/auto-id": "^0.7.0", | ||
"@reach/dialog": "^0.7.0", | ||
"@reach/auto-id": "^0.7.1", | ||
"@reach/dialog": "^0.7.1", | ||
"@reach/utils": "^0.7.1", | ||
"invariant": "^2.2.4", | ||
"prop-types": "^15.7.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
let createConfig = require("../../build/createConfig"); | ||
module.exports = createConfig(); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@reach/combobox", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"description": "Accessible React Combobox (Autocomplete).", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -10,23 +10,22 @@ | |
"author": "React Training <[email protected]>", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"umd:main": "dist/combobox.umd.production.js", | ||
"module": "dist/combobox.esm.js", | ||
"typings": "dist/index.d.ts", | ||
"files": [ | ||
"dist", | ||
"styles.css" | ||
], | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production tsdx build --format=cjs,esm,umd" | ||
"build": "cross-env NODE_ENV=production tsdx build --format=cjs,esm" | ||
}, | ||
"dependencies": { | ||
"@reach/auto-id": "^0.7.0", | ||
"@reach/popover": "^0.7.0", | ||
"@reach/portal": "^0.7.0", | ||
"@reach/auto-id": "^0.7.1", | ||
"@reach/popover": "^0.7.1", | ||
"@reach/portal": "^0.7.1", | ||
"@reach/utils": "^0.7.1", | ||
"escape-regexp": "0.0.1", | ||
"highlight-words-core": "1.2.0", | ||
"highlight-words-core": "1.2.2", | ||
"prop-types": "^15.7.2" | ||
}, | ||
"peerDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.