@tapni/auth 0.0.1 → 0.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 (72) hide show
  1. package/dist/.vite/manifest.json +11 -0
  2. package/dist/TapniAuth.es.js +6806 -0
  3. package/dist/TapniAuth.umd.js +102 -0
  4. package/dist/style.css +1 -0
  5. package/package.json +5 -2
  6. package/.env.development +0 -5
  7. package/.env.production +0 -8
  8. package/.env.staging +0 -8
  9. package/.env.standalone +0 -4
  10. package/.vscode/extensions.json +0 -3
  11. package/index.html +0 -35
  12. package/jsconfig.json +0 -8
  13. package/src/App.vue +0 -269
  14. package/src/components/Language.vue +0 -158
  15. package/src/components/LinkIcon.vue +0 -288
  16. package/src/components/ModalOverlay.vue +0 -67
  17. package/src/components/SSO.vue +0 -126
  18. package/src/components/SSOPick.vue +0 -166
  19. package/src/install.js +0 -8
  20. package/src/main.js +0 -96
  21. package/src/mixins/apple.mixin.js +0 -60
  22. package/src/mixins/auth.mixin.js +0 -525
  23. package/src/mixins/facebook.mixin.js +0 -78
  24. package/src/mixins/global.mixin.js +0 -110
  25. package/src/mixins/google.mixin.js +0 -61
  26. package/src/mixins/microsoft.mixin.js +0 -88
  27. package/src/mixins/okta.mixin.js +0 -132
  28. package/src/mixins/qr-auth.mixin.js +0 -112
  29. package/src/mixins/saml.mixin.js +0 -84
  30. package/src/router/index.js +0 -9
  31. package/src/routes.js +0 -55
  32. package/src/services/Api.js +0 -55
  33. package/src/services/AuthService.js +0 -71
  34. package/src/services/CompanyService.js +0 -13
  35. package/src/services/DeviceService.js +0 -10
  36. package/src/services/UserService.js +0 -49
  37. package/src/services/UtilService.js +0 -221
  38. package/src/store/constants.js +0 -8
  39. package/src/store/event-bus.js +0 -30
  40. package/src/store/locales/cn.js +0 -462
  41. package/src/store/locales/de.js +0 -528
  42. package/src/store/locales/en.js +0 -514
  43. package/src/store/locales/es.js +0 -536
  44. package/src/store/locales/fr.js +0 -520
  45. package/src/store/locales/it.js +0 -518
  46. package/src/store/locales/kr.js +0 -496
  47. package/src/store/locales/lang.js +0 -47
  48. package/src/store/locales/sr.js +0 -497
  49. package/src/store/locales/tr.js +0 -491
  50. package/src/styles/framework.css +0 -4012
  51. package/src/styles/inter.ttf +0 -0
  52. package/src/styles/style.css +0 -618
  53. package/src/views/Callback.vue +0 -47
  54. package/src/views/Login.vue +0 -389
  55. package/src/views/QR.vue +0 -39
  56. package/src/views/Register.vue +0 -217
  57. package/src/views/Reset.vue +0 -155
  58. package/src/views/Verify.vue +0 -170
  59. package/src/views/Welcome.vue +0 -69
  60. package/vite.config.js +0 -58
  61. /package/{public → dist}/.gitkeep +0 -0
  62. /package/{public → dist}/.well-known/apple-app-site-association +0 -0
  63. /package/{public → dist}/.well-known/assetlinks.json +0 -0
  64. /package/{public → dist}/.well-known/microsoft-identity-association.json +0 -0
  65. /package/{public → dist}/android-chrome-192x192.png +0 -0
  66. /package/{public → dist}/android-chrome-512x512.png +0 -0
  67. /package/{public → dist}/apple-touch-icon.png +0 -0
  68. /package/{public → dist}/favicon-16x16.png +0 -0
  69. /package/{public → dist}/favicon-32x32.png +0 -0
  70. /package/{public → dist}/favicon.ico +0 -0
  71. /package/{public → dist}/icon.png +0 -0
  72. /package/{public → dist}/site.webmanifest +0 -0
@@ -0,0 +1,11 @@
1
+ {
2
+ "src/install.js": {
3
+ "file": "TapniAuth.umd.js",
4
+ "isEntry": true,
5
+ "src": "src/install.js"
6
+ },
7
+ "style.css": {
8
+ "file": "style.css",
9
+ "src": "style.css"
10
+ }
11
+ }