@saooti/octopus-sdk 29.0.25 → 29.0.26

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 CHANGED
@@ -492,4 +492,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
492
492
  * 29.0.23 Eslint
493
493
  * 29.0.24 Version stable vue3
494
494
  * 29.0.25 Specific category does not display in correct order
495
+ * 29.0.26 Snackbar position
495
496
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "29.0.25",
3
+ "version": "29.0.26",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -229,7 +229,7 @@ export default defineComponent({
229
229
  }
230
230
  if ('PAUSED' === newValue) {
231
231
  audioPlayer.pause();
232
- } else {
232
+ }else if ('PLAYING' === newValue){
233
233
  audioPlayer.play();
234
234
  }
235
235
  }
@@ -159,3 +159,8 @@ export default defineComponent({
159
159
  },
160
160
  })
161
161
  </script>
162
+ <style lang="scss">
163
+ .snack-bar-wrap{
164
+ bottom: 0px;
165
+ }
166
+ </style>