2020-01-27 11:59:56 +01:00
|
|
|
{
|
2020-01-28 14:00:05 +01:00
|
|
|
"_lib": "./dist/index.js",
|
2020-02-20 18:06:50 +01:00
|
|
|
"_templates": {
|
|
|
|
"indexDatatable": {
|
|
|
|
"description": "Datatable based on an Index",
|
|
|
|
"component": "Datatable"
|
2020-02-21 23:56:37 +01:00
|
|
|
},
|
|
|
|
"recordForm": {
|
|
|
|
"description": "Form for saving a record",
|
|
|
|
"component": "Form"
|
2020-02-20 18:06:50 +01:00
|
|
|
}
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Body1": {
|
|
|
|
"name": "Body1",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Body 1",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Body2": {
|
|
|
|
"name": "Body2",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Body 2",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Button": {
|
|
|
|
"name": "Button",
|
2020-02-21 12:43:21 +01:00
|
|
|
"children": false,
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "A Material Design button with different variations. It renders as an anchor if href is passed to it.",
|
2020-01-28 14:00:05 +01:00
|
|
|
"props": {
|
2020-02-17 15:00:37 +01:00
|
|
|
"onClick": "event",
|
2020-02-21 16:00:42 +01:00
|
|
|
"variant": {
|
|
|
|
"type": "options",
|
|
|
|
"options": ["text", "raised", "unelevated", "outlined"],
|
|
|
|
"default": "text"
|
|
|
|
},
|
|
|
|
"colour": {
|
|
|
|
"type": "options",
|
|
|
|
"options": ["primary", "secondary"],
|
|
|
|
"default": "primary"
|
|
|
|
},
|
|
|
|
"size": {
|
|
|
|
"type": "options",
|
|
|
|
"options": ["small", "medium", "large"],
|
|
|
|
"default": "medium"
|
|
|
|
},
|
2020-02-17 15:00:37 +01:00
|
|
|
"href": "string",
|
|
|
|
"icon": "string",
|
|
|
|
"trailingIcon": "bool",
|
|
|
|
"fullwidth": "bool",
|
2020-01-28 14:00:05 +01:00
|
|
|
"text": "string",
|
2020-02-17 15:00:37 +01:00
|
|
|
"disabled": "bool"
|
2020-01-28 14:00:05 +01:00
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Caption": {
|
|
|
|
"name": "Caption",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Caption",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Checkbox": {
|
|
|
|
"name": "Checkbox",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "A Material Design checkbox. Supports aligning label before or after checkbox.",
|
|
|
|
"props": {
|
|
|
|
"onClick": "event",
|
|
|
|
"id": "string",
|
|
|
|
"label": "string",
|
|
|
|
"disabled": "bool",
|
|
|
|
"alignEnd": "bool",
|
|
|
|
"indeterminate": "bool",
|
|
|
|
"checked": "bool"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Datatable": {
|
|
|
|
"name": "Datatable",
|
|
|
|
"description": "A Material Design component to represent tabular data.",
|
2020-02-21 23:56:37 +01:00
|
|
|
"props": {
|
|
|
|
"onLoad":"event"
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-20 18:06:50 +01:00
|
|
|
"DatatableHead": {
|
|
|
|
"name": "DatatableHead",
|
|
|
|
"description": "Material Design <thead>.",
|
|
|
|
"props": {}
|
|
|
|
},
|
|
|
|
"DatatableCell": {
|
|
|
|
"name": "DatatableCell",
|
|
|
|
"description": "Material Design <td>.",
|
|
|
|
"props": {}
|
|
|
|
},
|
|
|
|
"DatatableBody": {
|
|
|
|
"name": "DatatableBody",
|
|
|
|
"description": "Material Design <tbody>.",
|
|
|
|
"props": {}
|
|
|
|
},
|
|
|
|
"DatatableRow": {
|
|
|
|
"name": "DatatableRow",
|
|
|
|
"description": "Material Design <tr>.",
|
|
|
|
"props": {}
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"H1": {
|
|
|
|
"name": "H1",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Headline1",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"H2": {
|
|
|
|
"name": "H2",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Headline2",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"H3": {
|
|
|
|
"name": "H3",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Headline3",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"H4": {
|
|
|
|
"name": "H4",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Headline4",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"H5": {
|
|
|
|
"name": "H5",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Headline5",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"H6": {
|
|
|
|
"name": "H6",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Headline6",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Label": {
|
|
|
|
"name": "Label",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "A simple label component that displays its text in the standard Roboto Material Design font",
|
|
|
|
"props": {
|
|
|
|
"bold": "bool"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Overline": {
|
|
|
|
"name": "Overline",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Overline",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Radiobutton": {
|
|
|
|
"name": "Radiobutton",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "A Material Design radiobutton. Supports aligning label before or after radiobutton.",
|
|
|
|
"props": {
|
|
|
|
"onClick": "event",
|
|
|
|
"id": "string",
|
2020-02-21 16:00:42 +01:00
|
|
|
"label": "string",
|
2020-02-17 15:00:37 +01:00
|
|
|
"name": "string",
|
|
|
|
"checked": "bool",
|
|
|
|
"disabled": "bool",
|
|
|
|
"alignEnd": "bool"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Sub1": {
|
|
|
|
"name": "Sub1",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Subtitle1",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Sub2": {
|
|
|
|
"name": "Sub2",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "Sets the font properties as Roboto Subtitle2",
|
|
|
|
"props": {
|
|
|
|
"text": "string"
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
},
|
2020-02-18 16:05:09 +01:00
|
|
|
"Textfield": {
|
|
|
|
"name": "Textfield",
|
2020-02-17 15:00:37 +01:00
|
|
|
"description": "A Material Design textfield with multiple variants. Can also be converted to a text area / multine text field.",
|
2020-01-28 14:00:05 +01:00
|
|
|
"props": {
|
2020-02-17 15:00:37 +01:00
|
|
|
"onChange": "event",
|
2020-02-21 22:27:55 +01:00
|
|
|
"value": "string",
|
2020-02-17 15:00:37 +01:00
|
|
|
"label": "string",
|
2020-02-21 16:00:42 +01:00
|
|
|
"variant": {
|
|
|
|
"type": "options",
|
|
|
|
"options": ["standard", "outlined", "filled"],
|
|
|
|
"default": "standard"
|
|
|
|
},
|
2020-02-17 15:00:37 +01:00
|
|
|
"disabled": "bool",
|
|
|
|
"fullwidth": "bool",
|
2020-02-21 16:00:42 +01:00
|
|
|
"colour": {
|
|
|
|
"type": "options",
|
|
|
|
"options": ["primary", "secondary"],
|
|
|
|
"default": "primary"
|
|
|
|
},
|
|
|
|
"size":{
|
|
|
|
"type": "options",
|
|
|
|
"options": ["small", "medium", "large"],
|
|
|
|
"default": "medium"
|
|
|
|
},
|
|
|
|
"type": {
|
|
|
|
"type": "options",
|
|
|
|
"options": ["text", "password"],
|
|
|
|
"default": "text"
|
|
|
|
},
|
2020-02-17 15:00:37 +01:00
|
|
|
"required": "bool",
|
|
|
|
"minLength": "number",
|
|
|
|
"maxLength": "number",
|
|
|
|
"helperText": "string",
|
|
|
|
"errorText": "string",
|
|
|
|
"placeholder": "string",
|
|
|
|
"icon": "string",
|
|
|
|
"trailingIcon": "bool",
|
|
|
|
"textarea": "bool",
|
|
|
|
"rows": "number",
|
|
|
|
"cols": "number",
|
|
|
|
"validation": "bool",
|
|
|
|
"persistent": "bool"
|
2020-01-28 14:00:05 +01:00
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
}
|
|
|
|
}
|
2020-02-17 15:00:37 +01:00
|
|
|
|