truly-ui
Version:
Web Components for Desktop Applications.
41 lines (40 loc) • 872 B
text/typescript
/**
* Created by William on 23/06/2017.
*/
export const dataProperties = [
{
name: "labelGroup",
type: "string",
default: "Panel Group",
description: "Label of PanelGroup",
options: "any text"
},
{
name: "backgroundColor",
type: "string",
default: "null",
description: "The background color of the PanelGroup",
options: "Hexadecimal"
},
{
name: "borderColor",
type: "string",
default: "null",
description: "Color of PanelGroup border",
options: "Hexadecimal"
},
{
name: "fontColorCaption",
type: "string",
default: "null",
description: "Font color of caption of the PanelGroup",
options: "Hexadecimal"
},
{
name: "fontSizeCaption",
type: "string",
default: "null",
description: "Font size of caption of the PanelGroup",
options: "css measure"
}
];