forked from rsuite/rsuite
-
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.
Migrate from flow to typescript (rsuite#531)
* new branch: typescript * migrate to ts * migrate to ts * migrate to ts * Adjust the component's directory * Migrate from flow to typescript * Migrate from flow to typescript * Migrate from flow to typescript * Migrate from flow to typescript * Migrate from flow to typescript * Migrate from flow to typescript * Migrate from flow to typescript * Update for tests * refactor code and support IE10 (rsuite#501) * refactor code and support IE10 * changes for comments * add propTypes * add lifecycle tests remove prop: onSortMove * Migrate from flow to typescript * Migrate from flow to typescript * Move styles directories. (rsuite#503) * Move styles directories. * Rename some classname. * ignore es * Update scripts * Fix path separator for windows users. (rsuite#506) * Replace table with flex (rsuite#508) * Fixed input issue in IE. (rsuite#507) * Fix Cascader option value is not correct under controlled conditions * Style migration (rsuite#504) * sync rsuite#513 * sync rsuite#515 * Update lib path * sync rsuite#515 * Fix an internationalization issue with a wrong title on the calendar * innerRef is changed to ref on PickerToggleTrigger * Support for `open` and `close` methods on all pickers * Bugfix for migrate from flow to typescript * Fix rsuite#520 * fix: add default collection (rsuite#517) * fix: add default collection * fix: add Anchor to ignore tag type * format * Style migration (rsuite#516) * Fix: Namespaces are not supported * Update tests * Update scripts for build * remove gulp-typescript * Update karma.conf.js * Implement an option for showing week numbers in the datepickers (rsuite#526) I have verified it. * Update gulpfile.js * Fix DateRangePicker module undefined problem * Move style directories and added default theme. (rsuite#528) * Edit button styles variable. * Move style directories and added default theme. * Fixed some style issue about modularity (rsuite#529) * Update gulpfile.js * set displayName * Update XVFB (rsuite#530) * Add some generic type (rsuite#527) * Add some generic type * Add onCick to Button modify Whisper trigger type * add type for formInstance * Update XVFB (rsuite#530) * Add clean script for dev * Remove default props for TimeDropdown
- Loading branch information
Showing
1,473 changed files
with
44,550 additions
and
66,674 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 |
---|---|---|
|
@@ -4,6 +4,4 @@ lib | |
tools | ||
node_modules | ||
coverage | ||
flow | ||
flow-typed | ||
/.git |
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 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 |
---|---|---|
|
@@ -41,6 +41,7 @@ _build | |
build | ||
.DS_Store | ||
lib/ | ||
es/ | ||
.idea | ||
karma.sauce.conf.js | ||
dev-publish.sh | ||
|
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
printWidth: 100, | ||
tabWidth: 2, | ||
singleQuote: true | ||
}; |
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,2 +1 @@ | ||
test | ||
src |
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 @@ | ||
language: node_js | ||
node_js: | ||
# - 7 # 7 is not supported by NPM, it will fallback to npm@3, which does not run prepublishOnly hook | ||
# - 7 # 7 is not supported by NPM, it will fallback to npm@3, which does not run prepublishOnly hook | ||
- 8 # 8 is a LTS version with latest NPM packed | ||
|
||
env: | ||
|
@@ -11,30 +11,26 @@ cache: | |
directories: | ||
- node_modules | ||
|
||
|
||
before_install: | ||
- export CHROME_BIN=chromium-browser | ||
- export DISPLAY=:99.0 | ||
- sh -e /etc/init.d/xvfb start | ||
services: | ||
- xvfb | ||
|
||
on: | ||
branch: master | ||
tags: true | ||
|
||
|
||
jobs: | ||
include: | ||
- stage: "NPM publish" | ||
- stage: 'NPM publish' | ||
script: skip | ||
deploy: | ||
provider: npm | ||
email: "[email protected]" | ||
email: '[email protected]' | ||
api_key: $NPM_AUTH_TOKEN | ||
skip_cleanup: true | ||
on: | ||
tags: true | ||
|
||
stages: | ||
- test | ||
- name: "NPM publish" | ||
- name: 'NPM publish' | ||
if: tag IS present # only include deploy stage when it's a tagged commit |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.