This repository was archived by the owner on May 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Demo - Build and Deploy
2+ on :
3+ push :
4+ tags :
5+ - release/*
6+ jobs :
7+ demo-deploy :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Checkout 🛎️
11+ uses : actions/checkout@v2.3.1
12+ - name : Install
13+ run : yarn install
14+ - name : Build
15+ run : yarn build
16+ - run : cp -R dist styleguide/
17+ - run : cp -R demo styleguide/
18+ - name : Deploy 🚀
19+ uses : JamesIves/github-pages-deploy-action@4.1.4
20+ with :
21+ branch : gh-pages
22+ folder : styleguide
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ node_modules/
55* .orig
66lib /
77NOTES.txt
8- styleguide /
98dist /
9+ styleguide /
Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ renderStaticRangeLabel(`DefinedRange`)| Function | | Callback f
140140staticRanges(` DefinedRange ` , ` DateRangePicker ` ) | Array | [ default preDefined ranges] ( https://github.com/hypeserver/react-date-range/blob/master/src/defaultRanges.js ) | -
141141inputRanges(` DefinedRange ` , ` DateRangePicker ` ) | Array | [ default input ranges] ( https://github.com/hypeserver/react-date-range/blob/master/src/defaultRanges.js ) | -
142142ariaLabels | Object | {} | inserts aria-label to inner elements
143+ dayContentRenderer | Function | null | Function to customize the rendering of Calendar Day. given a date is supposed to return what to render.
143144
144145 * shape of range:
145146 ``` js
You can’t perform that action at this time.
0 commit comments