doraverse-auth-sidebar 0.0.9 → 0.0.10

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 (85) hide show
  1. package/dist/index.es.js +13064 -4576
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +132 -35
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/tsconfig.tsbuildinfo +1 -0
  6. package/dist/types/App.d.ts +3 -0
  7. package/dist/types/assets/images/index.d.ts +3 -0
  8. package/dist/types/components/Badge.d.ts +5 -0
  9. package/dist/types/components/icons/discord-icon.d.ts +3 -0
  10. package/dist/types/components/icons/index.d.ts +2 -0
  11. package/dist/types/components/icons/meeting-note-icon.d.ts +3 -0
  12. package/dist/types/components/shared/image.d.ts +7 -0
  13. package/dist/types/components/shared/index.d.ts +1 -0
  14. package/dist/types/components/theme-switcher.d.ts +1 -0
  15. package/dist/types/components/ui/avatar.d.ts +11 -0
  16. package/dist/types/components/ui/button.d.ts +10 -0
  17. package/dist/types/components/ui/carousel.d.ts +29 -0
  18. package/dist/types/components/ui/checkbox.d.ts +4 -0
  19. package/dist/types/components/ui/dialog.d.ts +17 -0
  20. package/dist/types/components/ui/dropdown-menu.d.ts +25 -0
  21. package/dist/types/components/ui/label.d.ts +4 -0
  22. package/dist/types/components/ui/popover.d.ts +10 -0
  23. package/dist/types/components/ui/select.d.ts +15 -0
  24. package/dist/types/components/ui/separator.d.ts +4 -0
  25. package/dist/types/components/ui/skeleton.d.ts +2 -0
  26. package/dist/types/components/ui/switch.d.ts +6 -0
  27. package/dist/types/components/ui/tabs.d.ts +11 -0
  28. package/dist/types/components/ui/tooltip.d.ts +7 -0
  29. package/dist/types/config/constants.d.ts +12 -0
  30. package/dist/types/config/env.d.ts +13 -0
  31. package/dist/types/config/index.d.ts +2 -0
  32. package/dist/types/core/http.d.ts +3 -0
  33. package/dist/types/core/i18n.d.ts +3 -0
  34. package/dist/types/core/index.d.ts +4 -0
  35. package/dist/types/core/theme.d.ts +3 -0
  36. package/dist/types/core/type.d.ts +44 -0
  37. package/dist/types/hooks/index.d.ts +1 -0
  38. package/dist/types/hooks/useInitAuth.d.ts +11 -0
  39. package/dist/types/index.d.ts +8 -210
  40. package/dist/types/lib/utils.d.ts +7 -0
  41. package/dist/types/locales/i18n.d.ts +146 -0
  42. package/dist/types/main.d.ts +1 -0
  43. package/dist/types/modules/auth/components/BetaTag.d.ts +1 -0
  44. package/dist/types/modules/auth/components/dora-account-settings.d.ts +15 -0
  45. package/dist/types/modules/auth/components/main-sidebar.d.ts +14 -0
  46. package/dist/types/modules/auth/components/setting-dialog.d.ts +5 -0
  47. package/dist/types/modules/auth/components/type.d.ts +37 -0
  48. package/dist/types/modules/auth/constants/index.d.ts +1 -0
  49. package/dist/types/modules/auth/services/http.d.ts +11 -0
  50. package/dist/types/modules/auth/stores/index.d.ts +2 -0
  51. package/dist/types/modules/auth/stores/setting.d.ts +12 -0
  52. package/dist/types/modules/auth/stores/type.d.ts +14 -0
  53. package/dist/types/modules/auth/utils/auth-handler.d.ts +14 -0
  54. package/dist/types/modules/workspace/domain/community.d.ts +9 -0
  55. package/dist/types/modules/workspace/domain/index.d.ts +5 -0
  56. package/dist/types/modules/workspace/domain/startup-config.d.ts +175 -0
  57. package/dist/types/modules/workspace/domain/user.d.ts +35 -0
  58. package/dist/types/modules/workspace/domain/workspace-info.d.ts +36 -0
  59. package/dist/types/modules/workspace/domain/workspace-metadata.d.ts +18 -0
  60. package/dist/types/modules/workspace/dtos/community.d.ts +21 -0
  61. package/dist/types/modules/workspace/dtos/index.d.ts +5 -0
  62. package/dist/types/modules/workspace/dtos/startup-config.d.ts +178 -0
  63. package/dist/types/modules/workspace/dtos/user.d.ts +32 -0
  64. package/dist/types/modules/workspace/dtos/workspace-info.d.ts +35 -0
  65. package/dist/types/modules/workspace/dtos/workspace-metadata.d.ts +26 -0
  66. package/dist/types/modules/workspace/index.d.ts +5 -0
  67. package/dist/types/modules/workspace/repositories/config.d.ts +7 -0
  68. package/dist/types/modules/workspace/repositories/index.d.ts +5 -0
  69. package/dist/types/modules/workspace/repositories/public.d.ts +7 -0
  70. package/dist/types/modules/workspace/repositories/type.d.ts +18 -0
  71. package/dist/types/modules/workspace/repositories/user.d.ts +7 -0
  72. package/dist/types/modules/workspace/repositories/workspace.d.ts +9 -0
  73. package/dist/types/modules/workspace/services/config.d.ts +11 -0
  74. package/dist/types/modules/workspace/services/index.d.ts +5 -0
  75. package/dist/types/modules/workspace/services/public.d.ts +11 -0
  76. package/dist/types/modules/workspace/services/type.d.ts +28 -0
  77. package/dist/types/modules/workspace/services/user.d.ts +11 -0
  78. package/dist/types/modules/workspace/services/workspace.d.ts +15 -0
  79. package/dist/types/modules/workspace/stores/community.d.ts +3 -0
  80. package/dist/types/modules/workspace/stores/config.d.ts +3 -0
  81. package/dist/types/modules/workspace/stores/index.d.ts +5 -0
  82. package/dist/types/modules/workspace/stores/type.d.ts +40 -0
  83. package/dist/types/modules/workspace/stores/user.d.ts +3 -0
  84. package/dist/types/modules/workspace/stores/workspace.d.ts +3 -0
  85. package/package.json +5 -3

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.