Skip to content

Releases: acrodata/gui

v1.0.0

08 May 15:59
Compare
Choose a tag to compare

Features

  • update Angular and Material to v17
  • convert to standalone components
  • switch to built-in control flow
  • switch to styleUrl for single stylesheets

0.5.0

06 May 14:45
Compare
Choose a tag to compare

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

v0.4.2

04 May 14:25
Compare
Choose a tag to compare
  • peerDependencies: Angular should >= 16.0.0

v0.4.1

02 May 15:14
Compare
Choose a tag to compare

Bug Fixes

  • multiple: fix RTL

v0.4.0

01 May 01:21
Compare
Choose a tag to compare

Features

  • tabs: add copy button for copying the selected tab
  • tabs: allow select item by clicking the title for list mode

👉 https://acrodata.github.io/gui/group-controls#tabs

v0.3.1

16 Apr 14:40
Compare
Choose a tag to compare

Bug Fixes

  • multiple: fix label styles in inline-group

v0.3.0

15 Apr 08:46
Compare
Choose a tag to compare

Features

  • add showIf to control the visibility of the field
{
  ...
  "showIf": {
    "conditions": [
      ["path", "operator", "value"],
      ...
    ],
    "logicalType": "$or"
  }
}

👉 https://acrodata.github.io/gui/conditions

v0.2.5

05 Feb 09:57
Compare
Choose a tag to compare

Bug Fixes

  • fix peer dependency @angular/form undefined (#1)

v0.2.4

31 Dec 14:40
Compare
Choose a tag to compare
  • multiple: improve styles for some controls (tabs, fill, textarea)
  • uploader: add the missing style for focus state

v0.2.3

15 Nov 16:07
Compare
Choose a tag to compare

Bug Fixes

  • button-toggle: fix checked color when coexists with mat-button-toggle