Skip to content

Commit 05ba2db

Browse files
authored
Merge branch 'master' into master
2 parents 405ec7a + 8b3e9a7 commit 05ba2db

File tree

204 files changed

+5110
-1902
lines changed

Some content is hidden

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

204 files changed

+5110
-1902
lines changed

.buildkite/pipeline.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
env:
2+
LC_ALL: 'en_US'
3+
steps:
4+
- block: ":rocket: Release!"
5+
prompt: "Fill out the details for release"
6+
if: 'build.message =~ /^release\$/i'
7+
fields:
8+
- select: "IS_SNAPSHOT_BUILD"
9+
key: "is-snapshot"
10+
hint: "Publish snapshot version"
11+
default: 'false'
12+
options:
13+
- label: "True"
14+
value: true
15+
- label: "False"
16+
value: false
17+
18+
- label: "Build"
19+
command: |
20+
nvm install
21+
npm install
22+
npm run test
23+
npm run build:ts
24+
if [[ $BUILDKITE_PULL_REQUEST == 'false' ]];then
25+
npm run release
26+
fi
File renamed without changes.

.eslintrc.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = {
99
it: true,
1010
describe: true
1111
},
12-
extends: ['eslint:recommended'],
12+
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
1313
parser: '@typescript-eslint/parser',
1414
parserOptions: {
1515
ecmaFeatures: {
@@ -22,10 +22,13 @@ module.exports = {
2222
rules: {
2323
'react-native/no-inline-styles': 1,
2424
'linebreak-style': ['error', 'unix'],
25-
'no-unused-vars': 2,
25+
'no-unused-vars': 1,
2626
'object-curly-spacing': ['error', 'never'],
2727
semi: ['error', 'always'],
2828
'react/jsx-uses-react': 2,
29-
'react/jsx-uses-vars': 2
29+
'react/jsx-uses-vars': 2,
30+
'@typescript-eslint/no-use-before-define': 0,
31+
'@typescript-eslint/no-var-requires': 0,
32+
'@typescript-eslint/explicit-function-return-type': 0
3033
}
3134
};

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ yarn.lock
55
.vscode
66
package-lock.json
77

8-
98
# OSX
109
#
1110
.DS_Store
@@ -37,6 +36,7 @@ build/
3736
.gradle
3837
local.properties
3938
*.iml
39+
*.hprof
4040

4141
# node.js
4242
#

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ test/
252252
ios/
253253
android/
254254
demo/
255+
docsRNC/
255256
.babelrc
256257
# eslint-rules/
257258
scripts/

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.17.0
1+
14

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -745,3 +745,52 @@
745745
## Changed
746746
- Use modern export keyword (PR #1615).
747747
- Remove global and move types to types.ts.
748+
749+
## [1.1268.0] - 2021-10-11
750+
751+
## Fixed
752+
- Demo app load.
753+
- ExpandableCalendar - add throttle to onVisibleMonthsChange callback.
754+
755+
## [1.1269.0] - 2021-11-17
756+
757+
## Fixed
758+
- Fix eslint config and fix lint errors.
759+
- CalendarConsumer - fix passed ref (PR #1674).
760+
- Agenda - fix style Typo (animatedContainer -> animatedContainer) (PR #1670).
761+
762+
## Changed
763+
- Migrating internal tools to TS.
764+
- Migrating demo files to TS.
765+
766+
## [1.1270.0] - 2021-11-29
767+
- testIDs - reverting to js file with module.exports.
768+
769+
## [1.1271.0] - 2021-12-7
770+
771+
## Fixed
772+
- ContextProvider - 'onDateChanged' return type (should be 'string' and not 'Date').
773+
774+
775+
## [1.1272.0] - 2021-12-13
776+
777+
## Added
778+
- ExpandableCalendar - Add 'closeOnDayPress' prop (PR #1673).
779+
- new theme prop - 'weekVerticalMargin' to control week row margin (PR #1682).
780+
- Calendar - add 'initialDate' prop to allow reset the calendar with new date.
781+
782+
## Fixed
783+
- README - 'try it out' section missing steps (PR #1624).
784+
- Day - fix accessibility label localization (PR #1694).
785+
- Agenda - renders only for the first item of the day (PR #1699).
786+
- ExpandableCalendar - Only hide extra days when vertical and open (PR #1705).
787+
- ts configuration.
788+
789+
## Changed
790+
- Replacing lodash 'invoke' with optional chaining.
791+
- Removing JS 'Date' as a type.
792+
- Calendar and CalendarList - removing unused parameter 'doNotTriggerListeners' from updateMonth().
793+
- 'input.js' - renaming 'velocityTracker'.
794+
- 'test.js' - renaming 'testUtils' and removing from folder.
795+
796+
*** End of changelog - please see release tags for notes ***

0 commit comments

Comments
 (0)