Skip to content
Snippets Groups Projects

update deps

Merged Clayton, Brandon Scott requested to merge ghsc/users/bclayton/nshmp/disagg-d3:deps into main
8 files
+ 664
533
Compare changes
  • Side-by-side
  • Inline
Files
8
import { Component, ViewChild, ElementRef, OnInit, AfterViewInit } from '@angular/core';
import { DisaggResponse, Disaggregation, DisaggGraphView } from '@nshmp/disagg-d3/src/disagg';
import { Collection } from '@nshmp/disagg-d3/src/mvc';
import { DeaggResponseData } from '@ghsc/nshmp-utils/nshmp-haz';
import { nshmpHaz } from '@ghsc/nshmp-utils';
import * as deagg from '../assets/deagg.json';
@@ -13,7 +13,7 @@ import * as deagg from '../assets/deagg.json';
export class AppComponent implements AfterViewInit {
title = 'Disaggregation';
data = (deagg.response.pop() as any) as DeaggResponseData;
data = (deagg.response.pop() as any) as nshmpHaz.DeaggResponseData;
@ViewChild('example')
el: ElementRef<HTMLElement>;
Loading