
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@3dsource/source-ui
Advanced tools
A comprehensive library of Angular UI components designed specifically for 3D visualization applications. This library extends Angular Material with specialized components for 3D content interaction.
The Source UI library provides Angular components that are optimized for 3D applications, offering:
This library requires the following peer dependencies:
{
"@angular/common": ">=19.0.0",
"@angular/core": ">=19.0.0",
"@angular/material": ">=19.0.0",
"@3dsource/source-ui-native": ">=2.0.0",
"swiper": ">=11.2.6"
}
npm i @3dsource/source-ui
Import both styles for SourceUI Native and SourceUI in your style.scss
// Source UI Native
@use '../node_modules/@3dsource/source-ui-native/styles/source.ui.native.scss' as source-ui-native;
// Source UI
@use '../node_modules/@3dsource/source-ui/styles/source.ui.scss' as source-ui;
For correct styling provide neccessary outline option for form elements in your appConfig
{
provide: MAT_FORM_FIELD_DEFAULT_OPTIONS,
useValue: { appearance: 'outline' },
}
Import desired component and use it in template as described in components documentation.
import { ChangeDetectionStrategy, Component, signal } from '@angular/core';
import { SourceSliderGroupComponent } from '@3dsource/source-ui';
@Component({
selector: 'app-example',
imports: [SourceSliderGroupComponent],
template: ` <src-slider-group label="Slider Group" [min]="0" [max]="100" [step]="1" units="" [showRange]="true" [value]="value()" (groupValueChange)="onValueChange($event)" /> `,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class ExampleComponent {
value = signal(15);
onValueChange(value: number) {
this.value.set(value);
}
}
Customization provided in the same way as in SourceUI Native. Whole table of CSS custom properties is available in the documentation site.
You can see all available options and examples in documentation
FAQs
A bunch of ui elements with angular
We found that @3dsource/source-ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.