|
2 | 2 |
|
3 | 3 | All notable changes to this project will be documented in this file. Dates are displayed in UTC. |
4 | 4 |
|
5 | | -Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). |
| 5 | +#### [v21.9.0](https://github.com/theopenconversationkit/tock-react-kit/compare/v20.9.1...v21.9.0) |
6 | 6 |
|
7 | | -#### [20.9.1](https://github.com/theopenconversationkit/tock-react-kit/compare/v20.3.4...v20.9.1) |
8 | | - |
9 | | - |
10 | | -#### [20.3.4](https://github.com/theopenconversationkit/tock-react-kit/compare/v20.3.2...20.3.4) |
11 | | - |
12 | | -> 2 September 2020 |
13 | | -
|
14 | | -- **Breaking change:** resolve #34 : Theme migration documentation [`#34`](https://github.com/theopenconversationkit/tock-react-kit/issues/34) |
15 | | - |
16 | | -Theme model changed : |
17 | | - |
18 | | -Old theme |
19 | | - |
20 | | - const theme = { |
21 | | - fontFamily: '"Source Sans Pro", "Lucida Grande", sans-serif;', |
22 | | - fontSize: '1rem', |
23 | | - botColor: 'red', |
24 | | - cardColor: 'white', |
25 | | - borderRadius: '10px', |
26 | | - inputColor: 'white', |
27 | | - userColor: 'white', |
28 | | - styles: { |
29 | | - chat: ` |
30 | | - background: 'blue';` |
31 | | - }, |
32 | | - }; |
33 | | - |
34 | | -New theme |
35 | | - |
36 | | - const theme = createTheme({ |
37 | | - palette: { |
38 | | - text: { |
39 | | - user: 'black', |
40 | | - bot: 'black', |
41 | | - card: 'white', |
42 | | - input: 'black' |
43 | | - }, |
44 | | - background: { |
45 | | - user: 'white', |
46 | | - bot: 'red', |
47 | | - card: 'white', |
48 | | - input: 'white', |
49 | | - } |
50 | | - }, |
51 | | - sizing: { |
52 | | - loaderSize: '8px', |
53 | | - borderRadius: '10px', |
54 | | - conversation: { |
55 | | - width: '720px' |
56 | | - } |
57 | | - }, |
58 | | - typography: { |
59 | | - fontFamily: '"Source Sans Pro", "Lucida Grande", sans-serif;', |
60 | | - fontSize: '1rem' |
61 | | - }, |
62 | | - overrides: { |
63 | | - chat: ` |
64 | | - background: 'blue';` |
65 | | - }, |
66 | | - }; |
67 | | - |
68 | | - |
69 | | -- resolve #59 : quickreply enhancement [`#60`](https://github.com/theopenconversationkit/tock-react-kit/pull/60) |
70 | | -- resolve #55 : Input icon size on firefox android [`#58`](https://github.com/theopenconversationkit/tock-react-kit/pull/58) |
71 | | -- resolve #56 : Remove conversation scrollbar on firefox [`#57`](https://github.com/theopenconversationkit/tock-react-kit/pull/57) |
72 | | -- 34 Missing default theme [`#53`](https://github.com/theopenconversationkit/tock-react-kit/pull/53) |
73 | | -- resolve #59 : [`#59`](https://github.com/theopenconversationkit/tock-react-kit/issues/59) |
74 | | -- resolve #56 : Remove conversation scrollbar on firefox [`#56`](https://github.com/theopenconversationkit/tock-react-kit/issues/56) |
75 | | -- resolve #55 : Input icon size on firefox android [`#55`](https://github.com/theopenconversationkit/tock-react-kit/issues/55) |
76 | | -- resolve #52 : Add husky git hook [`#52`](https://github.com/theopenconversationkit/tock-react-kit/issues/52) |
77 | | -- resolve #52 : Adding ESLint and Prettier config [`#52`](https://github.com/theopenconversationkit/tock-react-kit/issues/52) |
78 | | -- Add default theme [`e9e3adb`](https://github.com/theopenconversationkit/tock-react-kit/commit/e9e3adbfeaba0ba964fd1fc1d20152e4c490fd4e) |
79 | | -- Normalize interface properties EOL [`44863eb`](https://github.com/theopenconversationkit/tock-react-kit/commit/44863ebeba9d259b8ca2ce03dbaf0ad1d6674d93) |
80 | | -- Add disabled input background to theme [`bbbb32b`](https://github.com/theopenconversationkit/tock-react-kit/commit/bbbb32b2f44f8929417aa1abe7f66e17390f2457) |
81 | | -- Fix Chat story FullscreenContainer scrollbar [`2fe291e`](https://github.com/theopenconversationkit/tock-react-kit/commit/2fe291ee0264a1cd7a4f226ced252c450790d665) |
82 | | -- Revert TockProvider to TockContext [`51e29ed`](https://github.com/theopenconversationkit/tock-react-kit/commit/51e29ede6b0deddde17e7203065f1be004738d80) |
83 | | -- Expose createTheme [`bb87869`](https://github.com/theopenconversationkit/tock-react-kit/commit/bb87869eddc3db660bb2c46d257633481e211df8) |
84 | | - |
85 | | -#### [v20.3.2](https://github.com/theopenconversationkit/tock-react-kit/compare/v20.3.1...v20.3.2) |
86 | | - |
87 | | -> 20 August 2020 |
88 | | -
|
89 | | -- resolve #50 : Carousel scrollbar appears in firefox [`#51`](https://github.com/theopenconversationkit/tock-react-kit/pull/51) |
90 | | -- Merge pull request #51 from theopenconversationkit/50-carousel-scrollbar-appears-in-firefox [`#50`](https://github.com/theopenconversationkit/tock-react-kit/issues/50) |
91 | | -- resolves #33 Fix carousel bad scroll behaviour [`#47`](https://github.com/theopenconversationkit/tock-react-kit/pull/47) |
92 | | -- resolve #50 : Carousel scrollbar appears in firefox [`#50`](https://github.com/theopenconversationkit/tock-react-kit/issues/50) |
93 | | -- Fix carousel scroll behavior [`fda4193`](https://github.com/theopenconversationkit/tock-react-kit/commit/fda419394a53fa6ffc53259444d2cffc78b82cdd) |
94 | | -- Fix Carousel scroll x & arrows visibility [`0620111`](https://github.com/theopenconversationkit/tock-react-kit/commit/062011198f0f6ea59c1c502baea18f444ebf0963) |
95 | | - |
96 | | -#### [v20.3.1](https://github.com/theopenconversationkit/tock-react-kit/compare/v20.3.1-1...v20.3.1) |
97 | | - |
98 | | -> 17 August 2020 |
99 | | -
|
100 | | -#### [v20.3.1-1](https://github.com/theopenconversationkit/tock-react-kit/compare/v20.3.1-0...v20.3.1-1) |
101 | | -- resolves #48 Created utility method for retrieving and saving data to local storage [`#49`](https://github.com/theopenconversationkit/tock-react-kit/pull/49) |
102 | | -- resolves #25 Send post messages only after opening the sse connection [`#45`](https://github.com/theopenconversationkit/tock-react-kit/pull/45) |
103 | | -- resolve #35 : Card component is not exported [`#36`](https://github.com/theopenconversationkit/tock-react-kit/pull/36) |
104 | | -- fix urlButton in message as quickReply [`#37`](https://github.com/theopenconversationkit/tock-react-kit/pull/37) |
105 | | -- resolves #43 Transform any string url in the bot message text into a clickable one [`#44`](https://github.com/theopenconversationkit/tock-react-kit/pull/44) |
106 | | -- resolve #38 : Add rollup watch command for dev purpose [`#39`](https://github.com/theopenconversationkit/tock-react-kit/pull/39) |
107 | | -- resolve #40 : Contribution guide [`#41`](https://github.com/theopenconversationkit/tock-react-kit/pull/41) |
108 | | -- resolves #48 Created utility method for retrieving and saving data to localstorage and used it for persisting the userId [`#48`](https://github.com/theopenconversationkit/tock-react-kit/issues/48) |
109 | | -- resolves #25 Send post messages only after opening the sse connection (#45) [`#25`](https://github.com/theopenconversationkit/tock-react-kit/issues/25) [`#25`](https://github.com/theopenconversationkit/tock-react-kit/issues/25) [`#25`](https://github.com/theopenconversationkit/tock-react-kit/issues/25) [`#25`](https://github.com/theopenconversationkit/tock-react-kit/issues/25) [`#25`](https://github.com/theopenconversationkit/tock-react-kit/issues/25) |
110 | | -- fix urlButton in message as quickReply (#37) [`#42`](https://github.com/theopenconversationkit/tock-react-kit/issues/42) [`#42`](https://github.com/theopenconversationkit/tock-react-kit/issues/42) [`#42`](https://github.com/theopenconversationkit/tock-react-kit/issues/42) [`#42`](https://github.com/theopenconversationkit/tock-react-kit/issues/42) |
111 | | -- resolve #35 : Card component is not exported [`#35`](https://github.com/theopenconversationkit/tock-react-kit/issues/35) |
112 | | -- resolves #43 [MessageBot] Transform any string url in the bot message text into a clickable url using linkifyjs [`#43`](https://github.com/theopenconversationkit/tock-react-kit/issues/43) |
113 | | -- resolve #38 : Add rollup watch and build command for development purpose [`#38`](https://github.com/theopenconversationkit/tock-react-kit/issues/38) [`#38`](https://github.com/theopenconversationkit/tock-react-kit/issues/38) |
114 | | -- resolve #40 : Contribution guide [`#40`](https://github.com/theopenconversationkit/tock-react-kit/issues/40) |
115 | | -- Update dependencies [`20c5dbb`](https://github.com/theopenconversationkit/tock-react-kit/commit/20c5dbbc0833f5ce371d97bae30dc1a985106868) |
116 | | - |
117 | | -#### v20.3.1-1 |
118 | | - |
119 | | -> 23 April 2020 |
120 | | -
|
121 | | -#### [v20.3.1-0](https://github.com/theopenconversationkit/tock-react-kit/compare/v20.3.0...v20.3.1-0) |
122 | | - |
123 | | -> 23 April 2020 |
124 | | -
|
125 | | -#### v20.3.0 |
126 | | - |
127 | | -> 15 April 2020 |
128 | | -- resolve #30 : support for postbackbutton (send payload instead of message) [`#31`](https://github.com/theopenconversationkit/tock-react-kit/pull/31) |
129 | | -- publish github action [`#29`](https://github.com/theopenconversationkit/tock-react-kit/pull/29) |
130 | | -- better release system [`#27`](https://github.com/theopenconversationkit/tock-react-kit/pull/27) |
131 | | -- fix scroll on ie and iphone, backport fix Baki [`#26`](https://github.com/theopenconversationkit/tock-react-kit/pull/26) |
132 | | -- fix #20 : Server-Sent Events (SSE) Support [`#21`](https://github.com/theopenconversationkit/tock-react-kit/pull/21) |
133 | | -- Add custom component into Chat [`#19`](https://github.com/theopenconversationkit/tock-react-kit/pull/19) |
134 | | -- fix #14 : Configure timeout before displaying message [`#16`](https://github.com/theopenconversationkit/tock-react-kit/pull/16) |
135 | | -- cherry pick some marvin features [`#13`](https://github.com/theopenconversationkit/tock-react-kit/pull/13) |
136 | | -- fix carousel card buttons [`#8`](https://github.com/theopenconversationkit/tock-react-kit/pull/8) |
137 | | -- Bump acorn from 6.3.0 to 6.4.1 [`#7`](https://github.com/theopenconversationkit/tock-react-kit/pull/7) |
138 | | -- fixes sendQuickReply userId parameter + referral Parameter [`#4`](https://github.com/theopenconversationkit/tock-react-kit/pull/4) |
139 | | -- feat(Card): Update Card styled component for manage more styles [`#6`](https://github.com/theopenconversationkit/tock-react-kit/pull/6) |
140 | | -- resolve #30 : support for postbackbutton (send payload instead of message) [`#30`](https://github.com/theopenconversationkit/tock-react-kit/issues/30) |
141 | | -- fix #23 : hide quickreplies after click [`#23`](https://github.com/theopenconversationkit/tock-react-kit/issues/23) |
142 | | -- fix #22 : Buttons bar is under input bar [`#22`](https://github.com/theopenconversationkit/tock-react-kit/issues/22) |
143 | | -- fix #20 : Server-Sent Events (SSE) Support [`#20`](https://github.com/theopenconversationkit/tock-react-kit/issues/20) |
144 | | -- fix #18 : Add custom component into Chat [`#18`](https://github.com/theopenconversationkit/tock-react-kit/issues/18) |
145 | | -- fix #17 : Add loading animation when referral parameter is sent [`#17`](https://github.com/theopenconversationkit/tock-react-kit/issues/17) |
146 | | -- fix #14 : Configure timeout before displaying message [`#14`](https://github.com/theopenconversationkit/tock-react-kit/issues/14) |
147 | | -- resolves #1 user id should be different at each browser refresh [`#1`](https://github.com/theopenconversationkit/tock-react-kit/issues/1) |
148 | | -- resolves #3 support carousel with cards < 3 and cards with subtitle html [`#3`](https://github.com/theopenconversationkit/tock-react-kit/issues/3) |
149 | | -- Add MessageBot and MessageUser [`5ccac35`](https://github.com/theopenconversationkit/tock-react-kit/commit/5ccac354b9b04bcf7469a191682bf04c75bab4f2) |
150 | | -- Add customization to ChatInput [`d2b3fa8`](https://github.com/theopenconversationkit/tock-react-kit/commit/d2b3fa8b8395252f4983f87ad395037c83753639) |
151 | | -- Add useTock support for cards, carousels and quick replies [`aa579a2`](https://github.com/theopenconversationkit/tock-react-kit/commit/aa579a27705f70409e70f05b0674808ef3f661f6) |
152 | | -- bump repo version [`e39f615`](https://github.com/theopenconversationkit/tock-react-kit/commit/e39f6150019153ed627cd4f185781e3904ab93be) |
153 | | -- margin message bot [`a9fa0e7`](https://github.com/theopenconversationkit/tock-react-kit/commit/a9fa0e77bacf358889fbec8f265b8725ddc50fdb) |
154 | | -- Add referalparameter & widget arguments to renderChat function [`5cdb2b1`](https://github.com/theopenconversationkit/tock-react-kit/commit/5cdb2b1ef77e145f24af2a85e26a5d79917e0560) |
155 | | -- Fix CTA/QR callbacks, changed Carousel justify-content to space-between (fixing scroll) [`28daaf8`](https://github.com/theopenconversationkit/tock-react-kit/commit/28daaf834652a33171d90a81a057bda8d8b53a40) |
156 | | -- Add Referral parameter [`f40c339`](https://github.com/theopenconversationkit/tock-react-kit/commit/f40c339137f07391f059bf65c885e1ad100c2077) |
157 | | -- handle pre release mode [`c016e25`](https://github.com/theopenconversationkit/tock-react-kit/commit/c016e252e779e27fdf5b69e615a568b78a9ccba7) |
158 | | -- fix version and prerealase [`2c2674e`](https://github.com/theopenconversationkit/tock-react-kit/commit/2c2674e5ebfb4aa35fff598e52f1bae1432bba4c) |
159 | | -- bump version [`db53349`](https://github.com/theopenconversationkit/tock-react-kit/commit/db53349c9a02663a08f07485edc29220e7aece3b) |
160 | | -- bump package version [`19f0145`](https://github.com/theopenconversationkit/tock-react-kit/commit/19f0145ba304c8afdceddb88fb77e8544015a99c) |
161 | | -- mode release github actions [`d0f0560`](https://github.com/theopenconversationkit/tock-react-kit/commit/d0f0560b3db8b9f6c92e890d81d57616f07cde1e) |
162 | | -- bump version, fix scroll [`073c0ed`](https://github.com/theopenconversationkit/tock-react-kit/commit/073c0ed6c5322b0c99fb8f6b876d0edd44209f6c) |
163 | | -- fixes sendQuickReply userId parameter [`36b31fb`](https://github.com/theopenconversationkit/tock-react-kit/commit/36b31fbbd462e327dafee05c4b4e7dbf741a4b52) |
164 | | -- bump package version, what's new : add see support [`1a327bc`](https://github.com/theopenconversationkit/tock-react-kit/commit/1a327bc3a0561ca8c78b28f2db70be3f320292ff) |
165 | | -- temporary remove git sign tag [`370fd6e`](https://github.com/theopenconversationkit/tock-react-kit/commit/370fd6ed4532babb89becb218852dee5934f6381) |
166 | | -- add publish action status [`917682c`](https://github.com/theopenconversationkit/tock-react-kit/commit/917682c1f5fe0b8343b9bab25ce4b43056eeeb42) |
167 | | -- fixes preserve white-space on bot message [`c8fbb74`](https://github.com/theopenconversationkit/tock-react-kit/commit/c8fbb74d345c3113a6f890c9bb011832ecc0f618) |
168 | | -- sign tag [`59e1454`](https://github.com/theopenconversationkit/tock-react-kit/commit/59e14548427fdbeddff569579acc87f7307db88a) |
169 | | - |
170 | | - |
171 | | - |
172 | | -- [FIX] np failed without npm test scripts [`44afbf5`](https://github.com/theopenconversationkit/tock-react-kit/commit/44afbf58499dc8a874edd47062ef2792a42282e1) |
| 7 | +- Additional GitHub Action for manual release [`865ce70`](https://github.com/theopenconversationkit/tock-react-kit/commit/865ce70aba770f60574f577b7481af614252139d) |
173 | 8 |
|
| 9 | +#### [v20.9.1](https://github.com/theopenconversationkit/tock-react-kit/compare/v20.3.4...v20.9.1) |
174 | 10 |
|
| 11 | +> 26 November 2020 |
175 | 12 |
|
176 | 13 | #### [v20.3.4](https://github.com/theopenconversationkit/tock-react-kit/compare/v20.3.2...v20.3.4) |
177 | 14 |
|
|
0 commit comments