awesome reusable react components.
Use with npm:
npm install ardesia --save
To serve the examples locally run:
npm run examples
Then visit 0.0.0.0:9001
To serve the website locally run:
npm run website
Then visit 0.0.0.0:9000
To deploy the website folder to the gh-pages branch run:
npm run gh-deploy
This API spec is not frozen and may change prior to the first stable release.
Set custom classes for component.
Fired when the value of the TextField changes.
Set custom inline style. This has the highest priority so use it if you need to override default inline styles.
TextField value. Default is the empty string.
Set button style to match the intent of the triggered action. Accepted values are:
"primary"
"success"
"warning"
"danger"
Defaults to "primary"
.
Fired when the button is clicked.
Set button size. Accepted values are:
"extraSmall"
"small"
"normal"
"large"
Defaults to "normal"
.
Set custom inline style. This has the highest priority so use it if you need to override default inline styles.
Set button appearance. Accepted values are:
"fill"
"hollow"
"link"
Defaults to "fill"
.
This layout pile up its children along the axis specified by the axis
prop.
Set the children alignment on the cross-axis. Accepted values are:
"start"
"center"
"end"
"stretch"
Defaults to "start"
.
Set the axis along which to pile the children. Accepted values are:
"horizontal"
"vertical"
Defaults to "vertical"
.
Set the spacing between children. The value should be a string that contains the value and a css unit (e.g. 10px
).