Update to component groupings
This commit is contained in:
parent
86499c1323
commit
ea31f93cf2
|
@ -52,11 +52,9 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
padding: 20px 0px;
|
padding: 20px 0px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -10,15 +10,6 @@ export default {
|
||||||
name: "Basic",
|
name: "Basic",
|
||||||
isCategory: true,
|
isCategory: true,
|
||||||
children: [
|
children: [
|
||||||
{
|
|
||||||
_component: "##builtin/screenslot",
|
|
||||||
name: "Screenslot",
|
|
||||||
description:
|
|
||||||
"This component is a placeholder for the rendering of a screen within a page.",
|
|
||||||
icon: "ri-crop-2-fill",
|
|
||||||
commonProps: {},
|
|
||||||
children: [],
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
_component: "@budibase/standard-components/container",
|
_component: "@budibase/standard-components/container",
|
||||||
name: "Container",
|
name: "Container",
|
||||||
|
@ -222,6 +213,7 @@ export default {
|
||||||
valueKey: "checked",
|
valueKey: "checked",
|
||||||
control: Checkbox,
|
control: Checkbox,
|
||||||
},
|
},
|
||||||
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -248,21 +240,6 @@ export default {
|
||||||
children: [],
|
children: [],
|
||||||
properties: { design: { ...all } },
|
properties: { design: { ...all } },
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "Nav Bar",
|
|
||||||
_component: "@budibase/standard-components/Navigation",
|
|
||||||
description:
|
|
||||||
"A component for handling the navigation within your app.",
|
|
||||||
icon: "ri-navigation-fill",
|
|
||||||
children: [],
|
|
||||||
properties: { design: { ...all } },
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Data",
|
|
||||||
isCategory: true,
|
|
||||||
children: [
|
|
||||||
{
|
{
|
||||||
name: "Table",
|
name: "Table",
|
||||||
description: "A component that generates a table from your data.",
|
description: "A component that generates a table from your data.",
|
||||||
|
@ -283,22 +260,6 @@ export default {
|
||||||
},
|
},
|
||||||
children: [],
|
children: [],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
_component: "@budibase/standard-components/datatable",
|
|
||||||
name: "DataTable",
|
|
||||||
description: "A table for displaying data from the backend.",
|
|
||||||
icon: "ri-archive-drawer-fill",
|
|
||||||
properties: { design: { ...all } },
|
|
||||||
children: [],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
_component: "@budibase/standard-components/dataform",
|
|
||||||
name: "DataForm",
|
|
||||||
description: "Form stuff",
|
|
||||||
icon: "ri-file-edit-fill",
|
|
||||||
properties: { design: { ...all } },
|
|
||||||
children: [],
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Chart",
|
name: "Chart",
|
||||||
_component: "@budibase/standard-components/datachart",
|
_component: "@budibase/standard-components/datachart",
|
||||||
|
@ -325,5 +286,29 @@ export default {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "Layouts",
|
||||||
|
isCategory: true,
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
_component: "##builtin/screenslot",
|
||||||
|
name: "Screenslot",
|
||||||
|
description:
|
||||||
|
"This component is a placeholder for the rendering of a screen within a page.",
|
||||||
|
icon: "ri-crop-2-fill",
|
||||||
|
commonProps: {},
|
||||||
|
children: [],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Nav Bar",
|
||||||
|
_component: "@budibase/standard-components/Navigation",
|
||||||
|
description:
|
||||||
|
"A component for handling the navigation within your app.",
|
||||||
|
icon: "ri-navigation-fill",
|
||||||
|
children: [],
|
||||||
|
properties: { design: { ...all } },
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue