forked from jquense/react-big-calendar
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/jquense/react-big-calendar …
…into react-big-calendar-v0-28-6 * 'master' of https://github.com/jquense/react-big-calendar: (106 commits) fix: revert a bug that the height of the column is broken when displayed in IE11 (jquense#1789)" (jquense#1805) fix: bug with resize segments not being removed (jquense#1800) fix: preserve time on horizontal resizing (jquense#1795) Update README.md (jquense#1799) fix: enforce `resizable` prop (jquense#1796) fix: a bug that the height of the column is broken when displayed in IE11 (jquense#1789) Use main Reactiflux invite (jquense#1780) fix: item preview inside cell while dragging from outside not working… (jquense#1770) fix onKeyPressEvent should not be required (jquense#1767) feat: add onKeyPressEvent (jquense#1754) chore(deps): bump handlebars from 4.1.2 to 4.7.6 (jquense#1745) feat: add resourceId to handleSelectAllDaySlot fns slotInfo (jquense#1735) fix: Fix top part of 24hour event in week/day view (jquense#1732) intljusticemission renamed to jquense (jquense#1710) docs: little documentation clarification (jquense#1700) docs: update README.md (jquense#1690) feat: starting to hooks to avoid deprecation warnings (jquense#1687) docs: fixed return type for View parameter (jquense#1677) feat: add dragging ability from the monthly Popup component (jquense#1554) fix: hide indicator when current time is not in the interval (jquense#1639) ... # Conflicts: # .size-snapshot.json # src/Calendar.js # yarn.lock
- Loading branch information
Showing
106 changed files
with
22,980 additions
and
15,025 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
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,17 @@ | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 60 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 14 | ||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- pinned | ||
- security | ||
# Label to use when marking an issue as stale | ||
staleLabel: wontfix | ||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank you | ||
for your contributions. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: false |
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,41 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
release: | ||
name: release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12.x' | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
- name: Unit Test & Linting | ||
run: yarn test | ||
|
||
- name: Build | ||
run: yarn build | ||
|
||
- name: Semantic Release | ||
uses: cycjimmy/semantic-release-action@master | ||
id: semantic | ||
with: | ||
branch: master | ||
extra_plugins: | | ||
@semantic-release/git | ||
@semantic-release/changelog | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
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,26 @@ | ||
name: Test | ||
|
||
on: [pull_request] | ||
|
||
|
||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12.x' | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
- name: Unit Test & Linting | ||
run: yarn test | ||
|
||
- name: Build | ||
run: yarn build |
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 @@ | ||
import '@storybook/addon-actions/register' |
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,30 @@ | ||
import { create } from '@storybook/theming' | ||
|
||
export default create({ | ||
base: 'light', | ||
|
||
colorSecondary: 'white', | ||
|
||
// UI | ||
appBg: 'white', | ||
|
||
// Typography | ||
fontBase: '"Open Sans", sans-serif', | ||
fontCode: 'monospace', | ||
|
||
// Text colors | ||
textColor: 'black', | ||
textInverseColor: 'rgba(255,255,255,0.9)', | ||
|
||
// Toolbar default and active colors | ||
barTextColor: 'white', | ||
barBg: 'rgb(49, 116, 173)', | ||
|
||
// Form colors | ||
inputBg: 'white', | ||
inputTextColor: 'black', | ||
inputBorderRadius: 4, | ||
|
||
brandTitle: 'Big Calendar', | ||
brandUrl: 'http://intljusticemission.github.io/react-big-calendar/examples', | ||
}) |
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,11 +1,7 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- stable | ||
before_install: | ||
- export CHROME_BIN=chromium-browser | ||
- export DISPLAY=:99.0 | ||
- sh -e /etc/init.d/xvfb start | ||
- node | ||
branches: | ||
only: | ||
- master |
Oops, something went wrong.