11import TypeHighlight from "../components/typeHighlight/TypeHighlight" ;
2+ import AnchorToTab from "../components/util-components/AnchorToTab" ;
23
3- export const ActionButtonsAPIRows = [
4- {
5- name : "position" ,
6- type : < >
7- < TypeHighlight np > { '"before"' } </ TypeHighlight > { " | " }
4+ export const ActionButtonsAPIRows = [
5+ {
6+ name : "position" ,
7+ type : (
8+ < >
9+ < TypeHighlight np > { '"before"' } </ TypeHighlight >
10+ { " | " }
811 < TypeHighlight np > { '"after"' } </ TypeHighlight >
9- </ > ,
10- default : < TypeHighlight np > </ TypeHighlight > ,
11- description : (
12- < >
13- The position of the action buttons. Before or after the component.
14- </ >
15- ) ,
16- } ,
17- {
18- name : "style" ,
19- type : < TypeHighlight np > React.CSSProperties</ TypeHighlight > ,
20- default : < TypeHighlight np > </ TypeHighlight > ,
21- description : < > The in-line style object applied to the main container.</ > ,
22- } ,
23- {
24- name : "className" ,
25- type : < TypeHighlight np > string</ TypeHighlight > ,
26- default : < TypeHighlight np > </ TypeHighlight > ,
27- description : (
28- < >
29- The classname to override the css styles in .css or .sass file instead
30- of using in-line styles. Classname is applied to the main container.
31- </ >
32- ) ,
33- } ,
34- {
35- name : "uploadingMessage" ,
36- type : < TypeHighlight np > { "string" } </ TypeHighlight > ,
37- default : < TypeHighlight np > </ TypeHighlight > ,
38- description : (
39- < >
40- A message to show in the footer when the uploading process takes place.
41- </ >
42- ) ,
43- } ,
44- ]
12+ </ >
13+ ) ,
14+ default : < TypeHighlight np > </ TypeHighlight > ,
15+ description : (
16+ < > The position of the action buttons. Before or after the component.</ >
17+ ) ,
18+ } ,
19+ {
20+ name : "style" ,
21+ type : < TypeHighlight np > React.CSSProperties</ TypeHighlight > ,
22+ default : < TypeHighlight np > </ TypeHighlight > ,
23+ description : < > The in-line style object applied to the main container.</ > ,
24+ } ,
25+ {
26+ name : "className" ,
27+ type : < TypeHighlight np > string</ TypeHighlight > ,
28+ default : < TypeHighlight np > </ TypeHighlight > ,
29+ description : (
30+ < >
31+ The classname to override the css styles in .css or .sass file instead
32+ of using in-line styles. Classname is applied to the main container.
33+ </ >
34+ ) ,
35+ } ,
36+ {
37+ name : "uploadButton" ,
38+ type : (
39+ < TypeHighlight np >
40+ < AnchorToTab href = "/types#actionbuttonitem" > { "ActionButtonItem" } </ AnchorToTab >
41+ </ TypeHighlight >
42+ ) ,
43+ default : < TypeHighlight np > </ TypeHighlight > ,
44+ description : (
45+ < >
46+ If set, the upload button will be shown. Specific props applied to the upload button.
47+ Type definition can be found{ " " }
48+ < AnchorToTab href = "/types#actionbuttonitem" > { "here" } </ AnchorToTab > .
49+ </ >
50+ ) ,
51+ } ,
52+ {
53+ name : "abortButton" ,
54+ type : (
55+ < TypeHighlight np >
56+ < AnchorToTab href = "/types#actionbuttonitem" > { "ActionButtonItem" } </ AnchorToTab >
57+ </ TypeHighlight >
58+ ) ,
59+ default : < TypeHighlight np > </ TypeHighlight > ,
60+ description : (
61+ < >
62+ If set, the abort button will be shown. Specific props applied to the abort button.
63+ Type definition can be found{ " " }
64+ < AnchorToTab href = "/types#actionbuttonitem" > { "here" } </ AnchorToTab > .
65+ </ >
66+ ) ,
67+ } ,
68+ {
69+ name : "deleteButton" ,
70+ type : (
71+ < TypeHighlight np >
72+ < AnchorToTab href = "/types#actionbuttonitem" > { "ActionButtonItem" } </ AnchorToTab >
73+ </ TypeHighlight >
74+ ) ,
75+ default : < TypeHighlight np > </ TypeHighlight > ,
76+ description : (
77+ < >
78+ If set, the delete button will be shown. Specific props applied to the delete button.
79+ Type definition can be found{ " " }
80+ < AnchorToTab href = "/types#actionbuttonitem" > { "here" } </ AnchorToTab > .
81+ </ >
82+ ) ,
83+ } ,
84+ {
85+ name : "cleanButton" ,
86+ type : (
87+ < TypeHighlight np >
88+ < AnchorToTab href = "/types#actionbuttonitem" > { "ActionButtonItem" } </ AnchorToTab >
89+ </ TypeHighlight >
90+ ) ,
91+ default : < TypeHighlight np > </ TypeHighlight > ,
92+ description : (
93+ < >
94+ If set, the clean button will be shown. Specific props applied to the clean button.
95+ Type definition can be found{ " " }
96+ < AnchorToTab href = "/types#actionbuttonitem" > { "here" } </ AnchorToTab > .
97+ </ >
98+ ) ,
99+ } ,
100+ ] ;
0 commit comments