@strands.gg/accui 1.1.2 → 1.1.4

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 (34) hide show
  1. package/dist/accui.css +21 -76
  2. package/dist/nuxt/runtime/composables/useStrandsAuth.cjs.js +1 -1
  3. package/dist/nuxt/runtime/composables/useStrandsAuth.es.js +1 -1
  4. package/dist/nuxt/runtime/plugin.client.cjs.js +1 -1
  5. package/dist/nuxt/runtime/plugin.client.es.js +1 -1
  6. package/dist/nuxt/runtime/plugin.server.cjs.js +1 -1
  7. package/dist/nuxt/runtime/plugin.server.es.js +1 -1
  8. package/dist/nuxt-v4/runtime/composables/useStrandsAuth.cjs.js +1 -1
  9. package/dist/nuxt-v4/runtime/composables/useStrandsAuth.es.js +1 -1
  10. package/dist/nuxt-v4/runtime/plugin.client.cjs.js +1 -1
  11. package/dist/nuxt-v4/runtime/plugin.client.es.js +1 -1
  12. package/dist/nuxt-v4/runtime/plugin.server.cjs.js +1 -1
  13. package/dist/nuxt-v4/runtime/plugin.server.es.js +1 -1
  14. package/dist/strands-auth-ui.cjs.js +478 -270
  15. package/dist/strands-auth-ui.cjs.js.map +1 -1
  16. package/dist/strands-auth-ui.es.js +480 -272
  17. package/dist/strands-auth-ui.es.js.map +1 -1
  18. package/dist/types/index.d.ts +1 -0
  19. package/dist/types/index.d.ts.map +1 -1
  20. package/dist/{useStrandsAuth-CZ7inSUU.js → useStrandsAuth-CQVn1lPb.js} +2 -2
  21. package/dist/{useStrandsAuth-CZ7inSUU.js.map → useStrandsAuth-CQVn1lPb.js.map} +1 -1
  22. package/dist/{useStrandsAuth-fa48rk-t.cjs → useStrandsAuth-DsgsSSDi.cjs} +2 -2
  23. package/dist/{useStrandsAuth-fa48rk-t.cjs.map → useStrandsAuth-DsgsSSDi.cjs.map} +1 -1
  24. package/dist/{useStrandsConfig-CtKyh8RT.cjs → useStrandsConfig-CjQTmiYi.cjs} +3 -1
  25. package/dist/useStrandsConfig-CjQTmiYi.cjs.map +1 -0
  26. package/dist/{useStrandsConfig-Cbpo8XZg.js → useStrandsConfig-EVnsLNNn.js} +3 -1
  27. package/dist/useStrandsConfig-EVnsLNNn.js.map +1 -0
  28. package/dist/vue/components/StrandsCompleteSignUp.vue.d.ts.map +1 -1
  29. package/dist/vue/components/StrandsMFASetup.vue.d.ts.map +1 -1
  30. package/dist/vue/components/StrandsUserProfile.vue.d.ts.map +1 -1
  31. package/dist/vue/composables/useStrandsConfig.d.ts.map +1 -1
  32. package/package.json +2 -1
  33. package/dist/useStrandsConfig-Cbpo8XZg.js.map +0 -1
  34. package/dist/useStrandsConfig-CtKyh8RT.cjs.map +0 -1
package/dist/accui.css CHANGED
@@ -742,6 +742,9 @@
742
742
  .border-yellow-300 {
743
743
  border-color: var(--color-yellow-300);
744
744
  }
745
+ .bg-\[var\(--strands-primary\)\] {
746
+ background-color: var(--strands-primary);
747
+ }
745
748
  .bg-black\/40 {
746
749
  background-color: color-mix(in srgb, #000 40%, transparent);
747
750
  @supports (color: color-mix(in lab, red, red)) {
@@ -932,6 +935,9 @@
932
935
  .text-left {
933
936
  text-align: left;
934
937
  }
938
+ .text-right {
939
+ text-align: right;
940
+ }
935
941
  .font-mono {
936
942
  font-family: var(--font-mono);
937
943
  }
@@ -986,6 +992,9 @@
986
992
  .break-all {
987
993
  word-break: break-all;
988
994
  }
995
+ .text-\[var\(--strands-primary\)\] {
996
+ color: var(--strands-primary);
997
+ }
989
998
  .text-black {
990
999
  color: var(--color-black);
991
1000
  }
@@ -1179,11 +1188,6 @@
1179
1188
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1180
1189
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1181
1190
  }
1182
- .transition-shadow {
1183
- transition-property: box-shadow;
1184
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1185
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1186
- }
1187
1191
  .duration-150 {
1188
1192
  --tw-duration: 150ms;
1189
1193
  transition-duration: 150ms;
@@ -1235,6 +1239,13 @@
1235
1239
  }
1236
1240
  }
1237
1241
  }
1242
+ .hover\:border-\[var\(--strands-primary\)\] {
1243
+ &:hover {
1244
+ @media (hover: hover) {
1245
+ border-color: var(--strands-primary);
1246
+ }
1247
+ }
1248
+ }
1238
1249
  .hover\:border-gray-300 {
1239
1250
  &:hover {
1240
1251
  @media (hover: hover) {
@@ -2814,80 +2825,14 @@ to {
2814
2825
  transform: translateY(0);
2815
2826
  }
2816
2827
 
2817
- /* Profile container - 80% of dynamic viewport height */
2828
+ /* Profile container - natural height, no constraints */
2818
2829
  .profile-container[data-v-9670e06b] {
2819
- max-height: 80dvh;
2820
- display: flex;
2821
- flex-direction: column;
2822
- overflow: hidden;
2830
+ /* Removed max-height and overflow constraints */
2823
2831
  }
2824
2832
 
2825
- /* Profile content - scrollable area */
2833
+ /* Profile content - natural flow */
2826
2834
  .profile-content[data-v-9670e06b] {
2827
- flex: 1;
2828
- overflow-y: auto;
2829
- overflow-x: hidden;
2830
- min-height: 0; /* Important for flex child scrolling */
2831
-
2832
- /* Custom scrollbar styling */
2833
- scrollbar-width: thin;
2834
- scrollbar-color: #cbd5e1 #f1f5f9;
2835
- }
2836
-
2837
- /* Webkit scrollbar styling */
2838
- .profile-content[data-v-9670e06b]::-webkit-scrollbar {
2839
- width: 6px;
2840
- }
2841
- .profile-content[data-v-9670e06b]::-webkit-scrollbar-track {
2842
- background: #f1f5f9;
2843
- border-radius: 3px;
2844
- }
2845
- .profile-content[data-v-9670e06b]::-webkit-scrollbar-thumb {
2846
- background: #cbd5e1;
2847
- border-radius: 3px;
2848
- -webkit-transition: background-color 0.2s ease;
2849
- transition: background-color 0.2s ease;
2850
- }
2851
- .profile-content[data-v-9670e06b]::-webkit-scrollbar-thumb:hover {
2852
- background: #94a3b8;
2835
+ /* Removed overflow and scrolling styles - let the window handle scrolling */
2853
2836
  }
2854
2837
 
2855
- /* Mobile: Touch-friendly scrolling */
2856
- @media (max-width: 768px) {
2857
- .profile-content[data-v-9670e06b] {
2858
- -webkit-overflow-scrolling: touch;
2859
- overscroll-behavior: contain;
2860
- scrollbar-width: auto; /* Let mobile decide */
2861
- }
2862
- .profile-content[data-v-9670e06b]::-webkit-scrollbar {
2863
- width: 4px; /* Thinner on mobile */
2864
- }
2865
- }
2866
-
2867
- /* Accessibility improvements */
2868
- @media (prefers-reduced-motion: reduce) {
2869
- .profile-content[data-v-9670e06b]::-webkit-scrollbar-thumb {
2870
- -webkit-transition: none;
2871
- transition: none;
2872
- }
2873
- }
2874
-
2875
- /* High contrast mode */
2876
- @media (prefers-contrast: high) {
2877
- .profile-content[data-v-9670e06b]::-webkit-scrollbar-thumb {
2878
- background: #1e293b;
2879
- }
2880
- }
2881
-
2882
- /* Dark mode support */
2883
- @media (prefers-color-scheme: dark) {
2884
- .profile-content[data-v-9670e06b]::-webkit-scrollbar-track {
2885
- background: #374151;
2886
- }
2887
- .profile-content[data-v-9670e06b]::-webkit-scrollbar-thumb {
2888
- background: #6b7280;
2889
- }
2890
- .profile-content[data-v-9670e06b]::-webkit-scrollbar-thumb:hover {
2891
- background: #9ca3af;
2892
- }
2893
- }
2838
+ /* Profile styles - window scrolling, no internal overflow */
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const app = require("nuxt/app");
4
- const useStrandsAuth$1 = require("../../../useStrandsAuth-fa48rk-t.cjs");
4
+ const useStrandsAuth$1 = require("../../../useStrandsAuth-DsgsSSDi.cjs");
5
5
  const useStrandsAuth = () => {
6
6
  const config = app.useRuntimeConfig().public["strandsAuth"];
7
7
  const vueAuth = useStrandsAuth$1.useStrandsAuth();
@@ -1,5 +1,5 @@
1
1
  import { useRuntimeConfig, navigateTo } from "nuxt/app";
2
- import { u as useStrandsAuth$1 } from "../../../useStrandsAuth-CZ7inSUU.js";
2
+ import { u as useStrandsAuth$1 } from "../../../useStrandsAuth-CQVn1lPb.js";
3
3
  const useStrandsAuth = () => {
4
4
  const config = useRuntimeConfig().public["strandsAuth"];
5
5
  const vueAuth = useStrandsAuth$1();
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  const app = require("nuxt/app");
3
- const useStrandsConfig = require("../../useStrandsConfig-CtKyh8RT.cjs");
3
+ const useStrandsConfig = require("../../useStrandsConfig-CjQTmiYi.cjs");
4
4
  const plugin_client = app.defineNuxtPlugin({
5
5
  name: "strands-auth-client",
6
6
  async setup() {
@@ -1,5 +1,5 @@
1
1
  import { defineNuxtPlugin, useRuntimeConfig } from "nuxt/app";
2
- import { p as provideStrandsConfig, S as STRANDS_AUTH_DEFAULTS } from "../../useStrandsConfig-Cbpo8XZg.js";
2
+ import { p as provideStrandsConfig, S as STRANDS_AUTH_DEFAULTS } from "../../useStrandsConfig-EVnsLNNn.js";
3
3
  const plugin_client = defineNuxtPlugin({
4
4
  name: "strands-auth-client",
5
5
  async setup() {
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  const app = require("nuxt/app");
3
- const useStrandsConfig = require("../../useStrandsConfig-CtKyh8RT.cjs");
3
+ const useStrandsConfig = require("../../useStrandsConfig-CjQTmiYi.cjs");
4
4
  const plugin_server = app.defineNuxtPlugin({
5
5
  name: "strands-auth-server",
6
6
  setup() {
@@ -1,5 +1,5 @@
1
1
  import { defineNuxtPlugin, useRuntimeConfig } from "nuxt/app";
2
- import { p as provideStrandsConfig, S as STRANDS_AUTH_DEFAULTS } from "../../useStrandsConfig-Cbpo8XZg.js";
2
+ import { p as provideStrandsConfig, S as STRANDS_AUTH_DEFAULTS } from "../../useStrandsConfig-EVnsLNNn.js";
3
3
  const plugin_server = defineNuxtPlugin({
4
4
  name: "strands-auth-server",
5
5
  setup() {
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const app = require("nuxt/app");
4
- const useStrandsAuth$1 = require("../../../useStrandsAuth-fa48rk-t.cjs");
4
+ const useStrandsAuth$1 = require("../../../useStrandsAuth-DsgsSSDi.cjs");
5
5
  const useStrandsAuth = () => {
6
6
  const config = app.useRuntimeConfig().public["strandsAuth"];
7
7
  const vueAuth = useStrandsAuth$1.useStrandsAuth();
@@ -1,5 +1,5 @@
1
1
  import { useRuntimeConfig, navigateTo } from "nuxt/app";
2
- import { u as useStrandsAuth$1 } from "../../../useStrandsAuth-CZ7inSUU.js";
2
+ import { u as useStrandsAuth$1 } from "../../../useStrandsAuth-CQVn1lPb.js";
3
3
  const useStrandsAuth = () => {
4
4
  const config = useRuntimeConfig().public["strandsAuth"];
5
5
  const vueAuth = useStrandsAuth$1();
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  const app = require("nuxt/app");
3
- const useStrandsConfig = require("../../useStrandsConfig-CtKyh8RT.cjs");
3
+ const useStrandsConfig = require("../../useStrandsConfig-CjQTmiYi.cjs");
4
4
  const plugin_client = app.defineNuxtPlugin({
5
5
  name: "strands-auth-client-v4",
6
6
  async setup() {
@@ -1,5 +1,5 @@
1
1
  import { defineNuxtPlugin, useRuntimeConfig } from "nuxt/app";
2
- import { p as provideStrandsConfig, S as STRANDS_AUTH_DEFAULTS } from "../../useStrandsConfig-Cbpo8XZg.js";
2
+ import { p as provideStrandsConfig, S as STRANDS_AUTH_DEFAULTS } from "../../useStrandsConfig-EVnsLNNn.js";
3
3
  const plugin_client = defineNuxtPlugin({
4
4
  name: "strands-auth-client-v4",
5
5
  async setup() {
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  const app = require("nuxt/app");
3
- const useStrandsConfig = require("../../useStrandsConfig-CtKyh8RT.cjs");
3
+ const useStrandsConfig = require("../../useStrandsConfig-CjQTmiYi.cjs");
4
4
  const plugin_server = app.defineNuxtPlugin({
5
5
  name: "strands-auth-server-v4",
6
6
  setup() {
@@ -1,5 +1,5 @@
1
1
  import { defineNuxtPlugin, useRuntimeConfig } from "nuxt/app";
2
- import { S as STRANDS_AUTH_DEFAULTS, p as provideStrandsConfig } from "../../useStrandsConfig-Cbpo8XZg.js";
2
+ import { S as STRANDS_AUTH_DEFAULTS, p as provideStrandsConfig } from "../../useStrandsConfig-EVnsLNNn.js";
3
3
  const plugin_server = defineNuxtPlugin({
4
4
  name: "strands-auth-server-v4",
5
5
  setup() {