This file contains hidden or 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
#chart text { | |
fill: white; | |
font: 10px Helvetica; | |
text-anchor: end; | |
} | |
line { | |
/*stroke: black;*/ | |
} | |
line:first-child.notify, | |
line:first-child.precheck, |
This file contains hidden or 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
<list usersData></list> | |
<chooser usersData></chooser> | |
<list ordersData></list> | |
<chooser ordersData></chooser> | |
<list productsData></list> | |
<thumbnail-grid productsData></thumbnail-grid> | |
<chooser productsData></chooser> |
This file contains hidden or 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
<user-list></user-list> | |
<user-chooser></user-chooser> | |
<orders-list></orders-list> | |
<order-chooser></order-chooser> | |
<products-list></products-list> | |
<products-thumbnail-grid></products-thumbnail-grid> | |
<product-chooser></product-chooser> |
This file contains hidden or 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
@Directive({ | |
exportAs: 'nqConnect', | |
selector: '[nqConnect]', | |
}) | |
export class ConnectRequestDirective implements OnInit, OnDestroy { | |
// tslint:disable-next-line:no-input-rename | |
@Input('nqConnect') | |
config: any = <ConnectRequestParams>undefined; | |
@Output() response: EventEmitter<any> = new EventEmitter(); |
This file contains hidden or 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
@Directive({ selector: '[rangerListData]' }) | |
export class RangerListDataDirective extends ConnectRequestDirective { | |
constructor(private connect: ConnectService, @Optional() public host: NqConnectedComponent) { | |
super(connect, host); | |
this.config = Object.assign( | |
{}, | |
// config object defining http request and how to store the response data in the local cache (i.e. ngrx store) | |
createGetRangerListQuery(), | |
{ selector: rangerListSelector } | |
); |
This file contains hidden or 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
export abstract class NqConnectedComponent { | |
nqData: any; | |
nqRefresh: EventEmitter<any>; | |
} | |
export function provideNqConnectedComponent(component: any, parentType?: any): Provider { | |
return { provide: parentType || NqConnectedComponent, useExisting: forwardRef(() => component) }; | |
}; |
This file contains hidden or 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
<list rangerListData></list> |
This file contains hidden or 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
<list #list (response)="list.someProperty = $event" | |
rangerDataList #nqConnect (customRefreshEvent)="nqConnect.forceRequest()"></list> |
This file contains hidden or 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
@Directive({ | |
exportAs: 'ngxToggle', | |
selector: 'ngxToggle', | |
}) | |
export class ToggleDirective { | |
defaultOn: boolean = false; | |
toggled: EventEmitter<boolean> = new EventEmitter(); | |
private _on: boolean; | |
@HostBinding('attr.aria-expanded') |
This file contains hidden or 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
{"lastUpload":"2017-12-13T14:47:09.856Z","extensionVersion":"v2.8.6"} |
OlderNewer