Initial commit: data-viz-elements-ui library

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Giuliano Silvestro
2026-02-13 22:06:35 +10:00
commit 0ce172bfc1
98 changed files with 8832 additions and 0 deletions

67
package.json Normal file
View File

@@ -0,0 +1,67 @@
{
"name": "@sda/data-viz-elements-ui",
"version": "0.1.0",
"description": "Angular components for data visualization, charts, and dashboard widgets powered by D3.js",
"keywords": [
"angular",
"data-visualization",
"charts",
"d3",
"dashboard",
"components",
"ui"
],
"repository": {
"type": "git",
"url": "https://git.sky-ai.com/ui-core-design/data-viz-elements-ui.git"
},
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "ng-packagr -p ng-package.json",
"build:dev": "./build-for-dev.sh"
},
"peerDependencies": {
"@angular/common": "^19.0.0",
"@angular/core": "^19.0.0",
"@sda/base-ui": "*"
},
"peerDependenciesMeta": {
"@sda/base-ui": {
"optional": true
}
},
"dependencies": {
"d3-array": "^3.2.0",
"d3-axis": "^3.0.0",
"d3-color": "^3.1.0",
"d3-format": "^3.1.0",
"d3-hierarchy": "^3.1.0",
"d3-interpolate": "^3.0.0",
"d3-scale": "^4.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-time-format": "^4.1.0",
"d3-transition": "^3.0.0"
},
"devDependencies": {
"@angular/common": "^19.1.0",
"@angular/compiler": "^19.1.0",
"@angular/compiler-cli": "^19.1.0",
"@angular/core": "^19.1.0",
"@angular/forms": "^19.2.18",
"@types/d3-array": "^3.2.0",
"@types/d3-axis": "^3.0.0",
"@types/d3-color": "^3.1.0",
"@types/d3-format": "^3.0.0",
"@types/d3-hierarchy": "^3.1.0",
"@types/d3-interpolate": "^3.0.0",
"@types/d3-scale": "^4.0.0",
"@types/d3-selection": "^3.0.0",
"@types/d3-shape": "^3.1.0",
"@types/d3-time-format": "^4.0.0",
"@types/d3-transition": "^3.0.0",
"ng-packagr": "^19.1.0",
"typescript": "~5.7.2"
}
}