()
| 98 | |
| 99 | /** Create an empty FormsData instance. */ |
| 100 | export function createFormsData(): FormsData { |
| 101 | return { |
| 102 | formsWithPendingChanges: new Set(), |
| 103 | formsWithUploads: new Set(), |
| 104 | submitButtons: new Map(), |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | const LOG = getLogger("WidgetStateManager") |
| 109 |
no outgoing calls
searching dependent graphs…