Releases: acrodata/gui
Releases · acrodata/gui
v2.1.2
v2.1.1
v2.1.0
v2.0.0
v1.1.1
v0.6.0
v1.1.0
Features
- add
GUI_ICONS_CONFIG
injection token to customize icons
export const appConfig: ApplicationConfig = {
providers: [
{
provide: GUI_ICONS_CONFIG,
useValue: {
horizontal: `<svg>...</svg>`,
vertical: `<svg>...</svg>`,
add: `<svg>...</svg>`,
delete: `<svg>...</svg>`,
copy: `<svg>...</svg>`,
link: `<svg>...</svg>`,
clear: `<svg>...</svg>`,
file: `<svg>...</svg>`,
upload: `<svg>...</svg>`,
} as GuiIconsConfig
}
]
}
v1.0.0
0.5.0
Features
- convert to self-closing tags
- form control components are available
<gui-field-group [config]="{name:'Text'}">
<gui-input-text [config]="{...}" />
</gui-field-group>
<gui-field-group [config]="{name:'Select'}">
<gui-select [config]="{options:[...]}" />
</gui-field-group>
https://github.com/acrodata/gui/blob/main/projects/dev-app/src/app/controls/controls.component.html
Bug Fixes
- image-select: fix appended element for dropdown panel
- inline-group: fix field label without config name