(prefs, chart, role, column, signalName, signalValue)
| 19387 | } |
| 19388 | } |
| 19389 | function saveSignalValuePref(prefs, chart, role, column, signalName, signalValue) { |
| 19390 | const partialInsight = savePref(prefs, chart, role, column, { |
| 19391 | signalValues: {} |
| 19392 | }); |
| 19393 | partialInsight.signalValues[signalName] = signalValue; |
| 19394 | } |
| 19395 | function copyPrefToNewState(prefs, chart, role, columnName) { |
| 19396 | const specTypePrefs = (0, _sanddanceReact.SandDance).VegaDeckGl.util.deepMerge({}, prefs["*"], prefs[chart]); |
| 19397 | const rolePrefs = (0, _sanddanceReact.SandDance).VegaDeckGl.util.deepMerge({}, specTypePrefs["*"], specTypePrefs[role]); |
nothing calls this directly
no test coverage detected