mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
Sankey Diagram (#2269)
* Enhance cash flow dashboard with new cash flow period handling and improved Sankey diagram rendering. Update D3 and related dependencies for better performance and features. * Fix Rubocop offenses * Refactor Sankey chart controller to use Number.parseFloat for value formatting and improve code readability by restructuring conditional logic for node shapes.
This commit is contained in:
parent
caf35701ef
commit
868d4ede6e
44 changed files with 451 additions and 20 deletions
|
@ -7,12 +7,12 @@ pin "@hotwired/stimulus-loading", to: "stimulus-loading.js"
|
|||
pin_all_from "app/javascript/controllers", under: "controllers"
|
||||
pin_all_from "app/components", under: "controllers", to: ""
|
||||
pin_all_from "app/javascript/services", under: "services", to: "services"
|
||||
pin "@github/hotkey", to: "@github--hotkey.js" # @3.1.0
|
||||
pin "@github/hotkey", to: "@github--hotkey.js" # @3.1.1
|
||||
pin "@simonwep/pickr", to: "@simonwep--pickr.js" # @1.9.1
|
||||
|
||||
# D3 packages
|
||||
pin "d3" # @7.8.5
|
||||
pin "d3-array" # @3.2.4
|
||||
pin "d3" # @7.9.0
|
||||
pin "d3-array", to: "shims/d3-array-default.js"
|
||||
pin "d3-axis" # @3.0.0
|
||||
pin "d3-brush" # @3.0.0
|
||||
pin "d3-chord" # @3.0.1
|
||||
|
@ -26,7 +26,7 @@ pin "d3-ease" # @3.0.1
|
|||
pin "d3-fetch" # @3.0.1
|
||||
pin "d3-force" # @3.0.0
|
||||
pin "d3-format" # @3.1.0
|
||||
pin "d3-geo" # @3.1.0
|
||||
pin "d3-geo" # @3.1.1
|
||||
pin "d3-hierarchy" # @3.1.2
|
||||
pin "d3-interpolate" # @3.0.1
|
||||
pin "d3-path" # @3.1.0
|
||||
|
@ -34,9 +34,9 @@ pin "d3-polygon" # @3.0.1
|
|||
pin "d3-quadtree" # @3.0.1
|
||||
pin "d3-random" # @3.0.1
|
||||
pin "d3-scale" # @4.0.2
|
||||
pin "d3-scale-chromatic" # @3.0.0
|
||||
pin "d3-scale-chromatic" # @3.1.0
|
||||
pin "d3-selection" # @3.0.0
|
||||
pin "d3-shape" # @3.2.0
|
||||
pin "d3-shape", to: "shims/d3-shape-default.js"
|
||||
pin "d3-time" # @3.1.0
|
||||
pin "d3-time-format" # @4.1.0
|
||||
pin "d3-timer" # @3.0.1
|
||||
|
@ -45,7 +45,10 @@ pin "d3-zoom" # @3.0.0
|
|||
pin "delaunator" # @5.0.1
|
||||
pin "internmap" # @2.0.3
|
||||
pin "robust-predicates" # @3.0.2
|
||||
pin "@floating-ui/dom", to: "@floating-ui--dom.js" # @1.6.9
|
||||
pin "@floating-ui/core", to: "@floating-ui--core.js" # @1.6.6
|
||||
pin "@floating-ui/utils", to: "@floating-ui--utils.js" # @0.2.6
|
||||
pin "@floating-ui/utils/dom", to: "@floating-ui--utils--dom.js" # @0.2.6
|
||||
pin "@floating-ui/dom", to: "@floating-ui--dom.js" # @1.7.0
|
||||
pin "@floating-ui/core", to: "@floating-ui--core.js" # @1.7.0
|
||||
pin "@floating-ui/utils", to: "@floating-ui--utils.js" # @0.2.9
|
||||
pin "@floating-ui/utils/dom", to: "@floating-ui--utils--dom.js" # @0.2.9
|
||||
pin "d3-sankey" # @0.12.3
|
||||
pin "d3-array-src", to: "d3-array.js"
|
||||
pin "d3-shape-src", to: "d3-shape.js"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue