kashi 3.0.1 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -240,7 +240,7 @@ The instance generated by `Kashi` has some public methods and attributes that ca
|
|
|
240
240
|
| `noLyricsText` | Attribute | Returns the text set for when there are no lyrics |
|
|
241
241
|
| `setFile` | Method | Function capable of changing the current lyrics file by passing the the new **file** |
|
|
242
242
|
| `setEmptyLineText` | Method | Function capable of changing the text defined for empty lines |
|
|
243
|
-
| `
|
|
243
|
+
| `setNoLyricsText` | Method | Function capable of changing the text defined for when there are no lyrics |
|
|
244
244
|
| `subscribe` | Method | Function capable of defining a callback to be executed when a given event is triggered |
|
|
245
245
|
| `unsubscribe` | Method | Function capable of making a callback to stop listening to an event |
|
|
246
246
|
| `notify` | Method | Function capable of triggering an event |
|
|
@@ -253,7 +253,7 @@ When creating a new instance using `Kashi` you will have access to the `subscrib
|
|
|
253
253
|
| ------------------- | --------------------------- | ------------------------------------------ |
|
|
254
254
|
| `fileSet` | `{ file: Blob }` | When calling the `setFile` method |
|
|
255
255
|
| `emptyLineTextSet` | `{ emptyLineText: string }` | When calling the `setEmptyLineText` method |
|
|
256
|
-
| `
|
|
256
|
+
| `noLyricsTextSet` | `{ noLyricsText: text }` | When calling the `setNoLyricsText` method |
|
|
257
257
|
| `lyricLinesUpdated` | `{ lyricLines: string[] }` | When inserting/updating lyrics in HTML |
|
|
258
258
|
|
|
259
259
|
## 🤔 How do I run the project on my machine?
|