
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
@uiowa/universal-workflow
Advanced tools
universal-workflow, uiowa-universal-workflow, universal workflow
This NPM package @uiowa/universal-workflow
serves as the standard way to display Universal Workflow widget and routing history in Angular. The package contains two components, workflow-widget
and uw-routing-history
, and a service WorkflowService
.
This package depends on @uiowa/spinner
which shows a loading placeholder while the Universal Workflow data is loading.
The Widget Component
@if(uwPermissions?.canSign){
<workflow-widget [packageId]="packageId" />
} @else {
<uw-routing-history [packageId]="packageId" />
}
ngOnInit(): void {
this.route.queryParamMap
.pipe(
switchMap((params: ParamMap) => {
if (!params) {
return of(null);
}
this.packageId = +(params.get('packageId') || '');
if (!this.packageId) {
return of(null);
}
this.loading = true;
return this.svc
.getMyForm(this.packageId)
.pipe(finalize(() => (this.loading = false)));
})
)
.subscribe((x) => {
if (x) {
this.dataRows = x.data;
this.uwPermissions = x.permissions;
}
});
}
The Routing History Component
<uw-routing-history [packageId]="13082237"></uw-routing-history>
The Workflow Service
By default, you don't need to touch the WorkflowService
. The service has two methods: getWorkflowWidgetConfig()
and getPackageRoutingHistory(packageId: number): Observable<string>
, which call backend API endpoints ${this.api}/widget-config
and ${this.api}/packages/${packageId}/routing-history
where protected readonly api: string = 'api/workflow'
.
If you decide to choose a different implementation, then you can follow the demo app in this solution to provide another service.
FAQs
universal-workflow, uiowa-universal-workflow, universal workflow
The npm package @uiowa/universal-workflow receives a total of 4 weekly downloads. As such, @uiowa/universal-workflow popularity was classified as not popular.
We found that @uiowa/universal-workflow demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.