(control: {
enabled: boolean;
readonly: boolean;
})
| 95 | }; |
| 96 | |
| 97 | export const isControlEditable = (control: { |
| 98 | enabled: boolean; |
| 99 | readonly: boolean; |
| 100 | }) => control.enabled && !control.readonly; |
| 101 | |
| 102 | /** |
| 103 | * Adds styles, appliedOptions and vuetifyProps |
no outgoing calls
no test coverage detected
searching dependent graphs…