@@ -30,7 +30,7 @@ yarn add react-xls --save
30
30
31
31
### 🎀 useExcelDownloader
32
32
33
- #### Button
33
+ #### 👨💻 Button
34
34
35
35
``` js
36
36
import React from ' react' ;
@@ -72,7 +72,7 @@ function App() {
72
72
export default App ;
73
73
```
74
74
75
- #### Link
75
+ #### 👨💻 Link
76
76
77
77
``` js
78
78
import React from ' react' ;
@@ -114,6 +114,28 @@ function App() {
114
114
export default App ;
115
115
```
116
116
117
+ #### 📖 useExcelDownloder Returned Object
118
+
119
+ | Object Properties | Description |
120
+ | :--- | :--- |
121
+ | ExcelDownloder | React component that render the link/button which is clicked to download the data provided in excel file. |
122
+ | Type | Constant object ( ` Type.Line ` && ` Type.Button ` ). |
123
+ | setData | Method that use to set data. |
124
+ | setFilename | Method that use to set filename. |
125
+ | setStyle | Method that use to set style. |
126
+ | setClassName | Method that use to set className. |
127
+
128
+ #### 📖 ExcelDownloder props
129
+
130
+ | Props | Type | Default | Description | Required |
131
+ | :--- | :--- | :--- | :--- | :--- |
132
+ | children | node | | React component, HTML element or string. | ✅ |
133
+ | data | object | | Downloaded data. | ✅ |
134
+ | filename | string | | Filename ( ` .xlsx ` extension is automatically added ). | ✅ |
135
+ | type | string | 'link' | If 'button', render button. | ❌ |
136
+ | style | object | {} | Inline style. | ❌ |
137
+ | className | string | '' | className | ❌ |
138
+
117
139
## 📜 Changelog
118
140
119
141
Latest version 0.1.0 (2021-08-15):
0 commit comments