Kui API Documentation - v11.0.0 / @kui-shell/core / EditableSpec
@kui-shell/core.EditableSpec
• clearable: boolean
Should we offer a Clear button? Default: false
packages/core/src/models/editable.ts:30
• readOnly: boolean
Should the editor be opened in read-only mode? Default: false
packages/core/src/models/editable.ts:27
• revert: Object
Button and Controller to handle reverts
Name | Type |
---|---|
label? |
string |
onRevert |
() => string | Promise <string > |
packages/core/src/models/editable.ts:39
• save: Object
Button and Controller to handle saves
Name | Type |
---|---|
label |
string |
onSave |
(data : string ) => Save | Promise <Save > |