@tapni/auth 0.0.12 → 0.0.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapni/auth",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "type": "module",
5
5
  "main": "./dist/TapniAuth.umd.js",
6
6
  "module": "./dist/TapniAuth.es.js",
package/src/App.vue CHANGED
@@ -132,7 +132,7 @@ export default {
132
132
  this.$emit('ssoLibraryReady');
133
133
  },
134
134
  ssoOutgoingEvent (data) {
135
- this.$emit('ssoEvent', data)
135
+ this.$emit('ssoEvent', data)
136
136
  },
137
137
  ssoIncomingEvent (data) {
138
138
  EventBus.$emit(data.name, data.data)
package/src/install.js CHANGED
@@ -2,6 +2,7 @@ import App from "./App.vue";
2
2
 
3
3
  // Export the component by default
4
4
  export default {
5
+ TapniAuth: App,
5
6
  install: (app, options) => {
6
7
  app.component('TapniAuth', App)
7
8
  }