Skip to content

Releases: acrodata/gui

v2.0.0

21 Aug 05:32
Compare
Choose a tag to compare

Features

  • update Angular and Material to 18.2
  • support Material 3 theme
  • convert the unit px to rem
  • remove redundant styles and imports

v1.1.1

16 Aug 05:49
Compare
Choose a tag to compare

Bug Fixes

  • expose all-control-colors mixin

v0.6.0

16 Aug 05:49
Compare
Choose a tag to compare
  • change delete svg icon
  • expose all-control-colors mixin

v1.1.0

04 Aug 03:27
Compare
Choose a tag to compare

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

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