Merge branch 'feature/binding-interface' of github.com:Budibase/budibase into feature/binding-interface-frontend
This commit is contained in:
commit
99981bea79
|
@ -131,6 +131,7 @@
|
||||||
},
|
},
|
||||||
"select": {
|
"select": {
|
||||||
"name": "Select",
|
"name": "Select",
|
||||||
|
"bindable": "value",
|
||||||
"description": "An HTML <select> (dropdown)",
|
"description": "An HTML <select> (dropdown)",
|
||||||
"props": {
|
"props": {
|
||||||
"value": "string",
|
"value": "string",
|
||||||
|
@ -174,6 +175,7 @@
|
||||||
},
|
},
|
||||||
"checkbox": {
|
"checkbox": {
|
||||||
"name": "Checkbox",
|
"name": "Checkbox",
|
||||||
|
"bindable": "value",
|
||||||
"description": "A selectable checkbox component",
|
"description": "A selectable checkbox component",
|
||||||
"props": {
|
"props": {
|
||||||
"label": "string",
|
"label": "string",
|
||||||
|
@ -184,6 +186,7 @@
|
||||||
},
|
},
|
||||||
"radiobutton": {
|
"radiobutton": {
|
||||||
"name": "Radiobutton",
|
"name": "Radiobutton",
|
||||||
|
"bindable": "value",
|
||||||
"description": "A selectable radiobutton component",
|
"description": "A selectable radiobutton component",
|
||||||
"props": {
|
"props": {
|
||||||
"label": "string",
|
"label": "string",
|
||||||
|
@ -248,6 +251,7 @@
|
||||||
},
|
},
|
||||||
"list": {
|
"list": {
|
||||||
"description": "A configurable data list that attaches to your backend models.",
|
"description": "A configurable data list that attaches to your backend models.",
|
||||||
|
"context": "model",
|
||||||
"data": true,
|
"data": true,
|
||||||
"props": {
|
"props": {
|
||||||
"model": "models"
|
"model": "models"
|
||||||
|
@ -267,6 +271,7 @@
|
||||||
},
|
},
|
||||||
"recorddetail": {
|
"recorddetail": {
|
||||||
"description": "Loads a record, using an ID in the url",
|
"description": "Loads a record, using an ID in the url",
|
||||||
|
"context": "model",
|
||||||
"data": true,
|
"data": true,
|
||||||
"props": {
|
"props": {
|
||||||
"model": "models"
|
"model": "models"
|
||||||
|
|
Loading…
Reference in New Issue