Skip to content

v1.1.0

Compare
Choose a tag to compare
@nzbin nzbin released this 04 Aug 03:27
· 22 commits to main since this release

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
    }
  ]
}