- Oct 24, 2017
-
-
Joe Lencioni authored
These three files are used as entry points into the project, and we expect people to be importing them directly so they are at the top level for convenience. Because of this, they have not been getting run through Babel like the rest of the code here, so they were using older syntax. In this commit, I am moving these files into the src directory so they will be built into lib like the rest of the code here. In their place at the top level, I am creating some very light shims that simply bring in the built version of the module and re-export it if necessary. This gives us a couple of advantages. First, it makes more of our code consistent. Second, it makes it possible to produce two different kinds of builds, one for CommonJS consumers and another for ES modules consumers.
-
- Oct 23, 2017
-
-
Maja Wichrowska authored
Replace svg-loader with babel-plugin-inline-react-svg
-
Maja Wichrowska authored
Remove unused classnames dependency
-
Maja Wichrowska authored
Update consolidated-events usage to newer API
-
Joe Lencioni authored
I want to do some optimizations on how react-dates is built, to help reduce the bundle size impact of using this project. The first step I see is reducing the size of each of the components, which we can achieve by avoiding building them with webpack. From what I can tell, webpack was only brought in to support getting SVGs in these components. We can pretty easily replace this with a Babel transform that will achieve the same result, but with less complexity in our build, and a little less overhead in the resulting components. Before this change: ``` ~/react-dates ❯❯❯ du -hs lib/components 420K lib/components ``` After this change: ``` ~/react-dates ❯❯❯ du -hs lib/components 348K lib/components ```
-
Maja Wichrowska authored
-
Joe Lencioni authored
In v1.1.0, addEventListener returns a function that can be called to remove the event listener. https://github.com/lencioni/consolidated-events/blob/master/CHANGELOG.md#v110
-
Joe Lencioni authored
-
Maja Wichrowska authored
Fix some apparent a11y issues with react-dates
-
Maja Wichrowska authored
-
Maja Wichrowska authored
add verticalHeight prop for DayPicker
-
Giulio Grillanda authored
-
Maja Wichrowska authored
Fixed RTL navigations
-
Maja Wichrowska authored
Fix documentation theming spread
-
- Oct 22, 2017
-
-
Jordan Harband authored
[Dev Deps] update `sinon`, `moment`, `karma-webpack`, `eslint`, `eslint-config-airbnb`, `eslint-plugin-import`, `eslint-plugin-jsx-a11y`, `eslint-plugin-react`, `enzyme-adapter-react-15`, `enzyme`, `cross-env`, `coveralls`, `chai`, `babel-plugin-istanbul`, `aphrodite`
-
-
Jordan Harband authored
See https://github.com/angus-c/just/issues/70
-
Jordan Harband authored
See https://github.com/angus-c/just/issues/70
-
- Oct 21, 2017
-
-
Richard Venneman authored
-
- Oct 20, 2017
-
-
Richard Venneman authored
-
- Oct 17, 2017
-
-
Maja Wichrowska authored
-
Maja Wichrowska authored
Bump react-with-styles-interface-css version
-
- Oct 16, 2017
-
-
Maja Wichrowska authored
-
Sagiv ben giat authored
-
- Oct 14, 2017
-
-
Maja Wichrowska authored
-
Maja Wichrowska authored
-
- Oct 13, 2017
-
-
Maja Wichrowska authored
-
Maja Wichrowska authored
For for Issue #713 Unavailable Date phrase not reading on Screen Readers
-
Maja Wichrowska authored
-
Erin Doyle authored
Fix for Issue #713 by updating the way in which modifiers is checked for existence of the BLOCKED_MODIFIER now that modifiers is a Set and no longer an object.
-
Maja Wichrowska authored
-
Maja Wichrowska authored
Add missing customCloseIcon prop/usage to SingleDatePicker.
-
- Oct 12, 2017
-
-
Mark Maday authored
-
- Oct 11, 2017
-
-
Maja Wichrowska authored
-
- Oct 10, 2017
-
-
Maja Wichrowska authored
Update react-with-styles-interface-aphrodite to the latest version
-
Maja Wichrowska authored
Add eslint-plugin-react-with-styles, add root: true to .eslintrc
-
- Oct 09, 2017
-
-
Joe Lencioni authored
This will help prevent eslint from getting confused if there is a .eslintrc in a higher directory.
-
Joe Lencioni authored
These eslint rules will help protect this project from bad react-with-styles usage.
-
Maja Wichrowska authored
Changes css style specificity to 0
-