Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V11.0.0 #5

Open
wants to merge 38 commits into
base: opsramp-master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
eb7972f
change # char in uri(#219)
mkg0 Jul 12, 2018
d894517
add disabledDates props and adapt styles
thijssteel Jul 17, 2018
abe904b
check if disabled when selecting
thijssteel Jul 17, 2018
6ad663d
better handling of invalid ranges
thijssteel Jul 17, 2018
83ac97c
cleanup
thijssteel Jul 17, 2018
fb0e92f
add postcss to dev deps
mkg0 Jul 25, 2018
ac2f59a
fix today mark for passive days
mkg0 Jul 30, 2018
ca5ddd8
add missing dep for building styles (#226)
mkg0 Jul 30, 2018
f035cc7
requested changes
thijssteel Aug 7, 2018
39f5c59
small cleanup and add to changelog and readme
thijssteel Aug 7, 2018
2ffa7c8
Merge pull request #221 from thijssteel/master
mkg0 Aug 7, 2018
c8ce7bd
'renderStaticRangeLabel' callback prop is added to DefinedRange compo…
mortargrind Jan 11, 2019
fb15e54
CONTRIBUTING.md is updated to use consistent guidelines for package.j…
mortargrind Jan 15, 2019
5e4eb44
Enzyme's shallow rendering is used instead of "react-test-renderer". …
mortargrind Jan 15, 2019
a423741
Merge pull request #271 from Adphorus/feature/support-for-customizabl…
keremciu Jan 21, 2019
0e886f1
Bump lodash from 4.17.4 to 4.17.15
dependabot[bot] Jul 23, 2019
81dec6e
Merge pull request #310 from Adphorus/dependabot/npm_and_yarn/lodash-…
keremciu Sep 5, 2019
0abcdb3
merged codebase from @opsrampjoe
opsrampjoe Feb 19, 2021
ab72b78
Merge pull request #2 from opsramp/master
opsrampjoe Feb 20, 2021
2ce33c4
Merge pull request #1 from opsrampjoe/master
opsrampjoe Feb 20, 2021
d0333cb
update to fix data-color warning
opsrampjoe Feb 22, 2021
ab6698e
Merge pull request #2 from opsramp/data-color-fix
opsrampjoe Feb 22, 2021
e538ad2
version 1.0.19
opsrampjoe Feb 22, 2021
03a8ed9
hide definedRange is component is passed "showDefaultRange={false}"
opsrampjoe Apr 19, 2021
4313630
updated demo
opsrampjoe Apr 19, 2021
ca25404
Merge pull request #3 from opsramp/51374-add-no-defined-ranges-option
opsrampjoe Apr 19, 2021
6177002
new version 1.0.20
opsrampjoe Apr 19, 2021
3510562
fix showDefinedRange
Apr 30, 2021
05eafbb
new version 1.0.24
opsrampjoe Apr 30, 2021
501121f
update the locale for default ranges in the date-time-range-picker
Jun 17, 2021
1313215
53590 localization of defaultRanges
opsrampjoe Jun 18, 2021
8a202bd
new version 1.0.25
opsrampjoe Jun 18, 2021
cdb1d51
remaking 1.0.25
opsrampjoe Jun 18, 2021
a4181bb
making v1.0.26
opsrampjoe Jul 15, 2021
5066be4
56627 updated react, removed some debugging
opsrampjoe Sep 17, 2021
c430ae7
making v1.0.27
opsrampjoe Sep 17, 2021
a4ab2cf
change to v10.1.0
opsrampjoe Sep 17, 2021
c36fdaa
made version v11.0.0, updated README
opsrampjoe Sep 20, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions . eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules/*
/lib/*
/dist/*
**/*.snap
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ Momentjs: `moment(dateString).toDate()`
- `specialDays` prop removed.

### Added
- `disabledDates` prop: It's a set of disabled dates.
- `DefinedRanges` component: It's a set of date presets. Receives `inputRanges`, `staticRanges` for setting date ranges.
- `DateRangePicker` component. It's combined version of `DateRange` with `DefinedRanges` component.
- Date range selection by drag.
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ Make sure your issue or feature doesn't have any related issue at [react-date-ra

3. Run `yarn` to install the dependencies.

4. Run `yarn dev` to start development server.
4. Run `yarn run dev` to start development server.

## Building

. Run `run test` and `run lint` for make sure tests passes and linter doesn't throw any error.
. Run `yarn run test` and `yarn run lint` for make sure tests passes and linter doesn't throw any error.

. Run `yarn build` compile the library and demo source.
. Run `yarn run build` compile the library and demo source.

. Push your changes and create a PR and apply code review decisions.

196 changes: 84 additions & 112 deletions README.md

Large diffs are not rendered by default.

Loading