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.
Files changed (2) hide show
  1. package/README.md +2 -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
- | `noLyricsText` | Method | Function capable of changing the text defined for when there are no lyrics |
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
- | `noLyricsText` | `{ noLyricsText: text }` | When calling the `setNoLyricsText` method |
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?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kashi",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "Singing at the top of my lungs",
5
5
  "type": "module",
6
6
  "author": "lucasmc64",