|
|
|
@ -8,7 +8,7 @@ import { fileDecoration } from '@remix-ui/file-decorators' |
|
|
|
|
const profile = { |
|
|
|
|
name: 'fileDecorator', |
|
|
|
|
desciption: 'Keeps decorators of the files', |
|
|
|
|
methods: ['setFileDecorators'], |
|
|
|
|
methods: ['setFileDecorators', 'clearFileDecorators'], |
|
|
|
|
events: ['fileDecoratorsChanged'], |
|
|
|
|
version: '0.0.1' |
|
|
|
|
} |
|
|
|
@ -52,4 +52,9 @@ export class FileDecorator extends Plugin { |
|
|
|
|
this.emit('fileDecoratorsChanged', this._fileStates) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
async clearFileDecorators() { |
|
|
|
|
this._fileStates = [] |
|
|
|
|
this.emit('fileDecoratorsChanged', []) |
|
|
|
|
} |
|
|
|
|
} |