@rfprodz/client-d3-charts 1.5.6 → 1.6.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +3 -9
  3. package/fesm2022/rfprodz-client-d3-charts.mjs +178 -239
  4. package/fesm2022/rfprodz-client-d3-charts.mjs.map +1 -1
  5. package/package.json +6 -6
  6. package/types/rfprodz-client-d3-charts.d.ts +722 -0
  7. package/index.d.ts +0 -4
  8. package/lib/components/_base/chart.base.d.ts +0 -16
  9. package/lib/components/bar-chart/bar-chart.component.d.ts +0 -37
  10. package/lib/components/chart-examples/chart-examples.component.d.ts +0 -5
  11. package/lib/components/chart-examples-bar/chart-examples-bar.component.d.ts +0 -21
  12. package/lib/components/chart-examples-force-directed/chart-examples-force-directed.component.d.ts +0 -23
  13. package/lib/components/chart-examples-gauge/chart-examples-gauge.component.d.ts +0 -37
  14. package/lib/components/chart-examples-line/chart-examples-line.component.d.ts +0 -38
  15. package/lib/components/chart-examples-pie/chart-examples-pie.component.d.ts +0 -24
  16. package/lib/components/chart-examples-radar/chart-examples-radar.component.d.ts +0 -21
  17. package/lib/components/force-directed-chart/force-directed-chart.component.d.ts +0 -37
  18. package/lib/components/gauge-chart/gauge-chart.component.d.ts +0 -39
  19. package/lib/components/index.d.ts +0 -7
  20. package/lib/components/line-chart/line-chart.component.d.ts +0 -39
  21. package/lib/components/pie-chart/pie-chart.component.d.ts +0 -37
  22. package/lib/components/radar-chart/radar-chart.component.d.ts +0 -37
  23. package/lib/d3-charts.module.d.ts +0 -20
  24. package/lib/interfaces/bar-chart.interface.d.ts +0 -25
  25. package/lib/interfaces/chart-component.interface.d.ts +0 -6
  26. package/lib/interfaces/force-directed-chart.interface.d.ts +0 -78
  27. package/lib/interfaces/gauge-chart.interface.d.ts +0 -43
  28. package/lib/interfaces/index.d.ts +0 -7
  29. package/lib/interfaces/line-chart.interface.d.ts +0 -62
  30. package/lib/interfaces/pie-chart.interface.d.ts +0 -35
  31. package/lib/interfaces/radar-chart.interface.d.ts +0 -48
  32. package/lib/providers/d3-chart-factory.provider.d.ts +0 -20
  33. package/lib/util/bar-chart.util.d.ts +0 -14
  34. package/lib/util/configuration.util.d.ts +0 -7
  35. package/lib/util/force-directed-chart.util.d.ts +0 -14
  36. package/lib/util/gauge-chart.util.d.ts +0 -14
  37. package/lib/util/index.d.ts +0 -6
  38. package/lib/util/line-chart.util.d.ts +0 -12
  39. package/lib/util/pie-chart.util.d.ts +0 -14
  40. package/lib/util/radar-chart.util.d.ts +0 -14
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2024 rfprod.
3
+ Copyright (c) 2026 rfprod.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -72,21 +72,15 @@ import {
72
72
  } from '@rfprodz/client-d3-charts';
73
73
  ```
74
74
 
75
- ### Chart examples
75
+ ### Examples
76
76
 
77
- See the chart eamples components
77
+ See the chart examples component
78
78
 
79
79
  ```typescript
80
80
  import { AppChartExamplesComponent } from '@rfprodz/client-d3-charts';
81
81
  ```
82
82
 
83
- or the [source code](https://github.com/rfprod/nx-ng-starter/blob/main/libs/client-d3-charts/src/lib/components/chart-examples/) of the chart examples component
84
-
85
- ## Developer commands reference
86
-
87
- ```bash
88
- npx nx run tools:help --search client-d3-charts:
89
- ```
83
+ or the [source code](https://github.com/rfprod/nx-ng-starter/blob/main/libs/client-d3-charts/src/lib/components/chart-examples/)
90
84
 
91
85
  ## References
92
86