-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #244 from OnroerendErfgoed/develop
Release 0.16.0
- Loading branch information
Showing
69 changed files
with
1,087 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { DialogController, DialogService } from 'aurelia-dialog'; | ||
export declare class AuteurWidget { | ||
dialogService: DialogService; | ||
controller: DialogController; | ||
auteurType: string; | ||
service: unknown; | ||
auteursUrl: string; | ||
zoekterm: string; | ||
title: string; | ||
private gridOptions; | ||
private buttonActief; | ||
constructor(dialogService: DialogService, controller: DialogController); | ||
bind(): void; | ||
setRowData(): Promise<void>; | ||
onGridReady(): void; | ||
resize(): void; | ||
refresh(): void; | ||
search(): void; | ||
addAuteur(): void; | ||
private getColumnDefinitions; | ||
private actiesCellRenderer; | ||
private huidigeRelatiesCellRenderer; | ||
private setParameters; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<template><require from="./styles/auteur-widget.css"></require><ux-dialog class="oe-dialog auteur-toevoegen-dialog"><ux-dialog-header><h3>${title}</h3></ux-dialog-header><ux-dialog-body><div class="row"><div class="large-12 columns"><div class="placeholder-container"><input type="text" placeholder=" Zoek een auteur" value.bind="zoekterm" keydown.delegate="search() & debounce:300" style="font-family:FontAwesome,'Flanders Art Sans'"></div></div></div><div class="row auteur-toevoegen-grid-container"><ag-grid-aurelia class="ag-theme-balham large-12 columns" grid-size-changed.call="gridOptions.api.sizeColumnsToFit()" grid-ready.call="onGridReady()" grid-options.bind="gridOptions"></ag-grid-aurelia></div><div class="row auteur-toevoegen-grid-container-actions"><div class="large-3 columns push-9"><a href="${auteursUrl}/beheer/#/auteurs" target="_blank"><i class="fa fa-plus-circle"></i> Toevoegen</a> <a click.delegate="refresh()" class="menu-link"><i class="fa fa-refresh"></i> Vernieuwen</a></div></div></ux-dialog-body><ux-dialog-footer style="text-align:center"><button class="button tiny ${buttonActief ? '' : 'disabled'}" style="margin-right:15px" click.delegate="addAuteur()">Toevoegen</button> <button class="button tiny" click.delegate="controller.cancel()">Annuleren</button></ux-dialog-footer></ux-dialog></template> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { FrameworkConfiguration } from 'aurelia-framework'; | ||
export * from './auteur-widget'; | ||
export declare function configure(config: FrameworkConfiguration): void; |
Oops, something went wrong.