@agentero/design-system 0.18.2 → 0.20.0

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.
@@ -576,13 +576,13 @@
576
576
  <header>
577
577
  <div class="wrap">
578
578
  <h1>Manifest Debugger</h1>
579
- <div class="summary"><a class="filter-pill all" data-k="all" href="#filter-all">All</a><span class="filter-pill ok" aria-disabled="true">19 components ok</span><span class="filter-pill ok" aria-disabled="true">160 stories ok</span></div>
579
+ <div class="summary"><a class="filter-pill all" data-k="all" href="#filter-all">All</a><span class="filter-pill ok" aria-disabled="true">21 components ok</span><span class="filter-pill ok" aria-disabled="true">170 stories ok</span></div>
580
580
  </div>
581
581
  </header>
582
582
  <main>
583
583
  <div class="wrap">
584
584
  <div class="note ok" style="margin-bottom: 16px;">
585
- Using <code>react-docgen-typescript</code>. Generation took <strong>3.0s</strong>.
585
+ Using <code>react-docgen-typescript</code>. Generation took <strong>3.1s</strong>.
586
586
  </div>
587
587
  <h2 class="section-title">Components</h2>
588
588
  <div class="grid" role="list">
@@ -2992,6 +2992,226 @@ label?: ReactNode</code></pre>
2992
2992
 
2993
2993
  </div>
2994
2994
  </article>
2995
+ <article
2996
+ class="card
2997
+ no-error
2998
+ no-info
2999
+ no-story-error
3000
+ no-doc-error"
3001
+ role="listitem"
3002
+ aria-label="HoverCard.Root">
3003
+ <div class="head">
3004
+ <div class="title">
3005
+ <h2><span class="status-dot dot-ok"></span> HoverCard.Root</h2>
3006
+ <div class="badges">
3007
+
3008
+
3009
+ <label for="c-8-components-hovercard-stories" class="badge ok as-toggle">6 stories</label>
3010
+
3011
+ </div>
3012
+ </div>
3013
+ <div class="meta" title="./src/hover-card/hover-card.stories.tsx">components-hovercard · ./src/hover-card/hover-card.stories.tsx</div>
3014
+
3015
+ <div class="hint">HoverCard reveals rich, sighted-user preview content anchored to a trigger on pointer hover or keyboard focus. Compose it from `Root` / `Trigger` / `Portal` / `Content`.</div>
3016
+
3017
+ </div>
3018
+
3019
+ <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
3020
+
3021
+
3022
+ <input id="c-8-components-hovercard-stories" class="tg tg-stories" type="checkbox" hidden />
3023
+
3024
+
3025
+
3026
+ <div class="panels">
3027
+
3028
+
3029
+
3030
+
3031
+ <div class="panel panel-stories">
3032
+
3033
+
3034
+
3035
+ <div class="note ok">
3036
+ <div class="row">
3037
+ <span class="ex-name">Imports</span>
3038
+ </div>
3039
+ <pre><code>import { Avatar, HoverCard } from "@agentero/design-system";</code></pre>
3040
+ </div>
3041
+
3042
+
3043
+ <div class="note ok">
3044
+ <div class="row">
3045
+ <span class="ex-name">Default</span>
3046
+ <span class="badge ok">story ok</span>
3047
+ </div>
3048
+
3049
+ <div class="hint">Default preview revealed on hover; hides again on unhover.</div>
3050
+ <pre><code>const Default = () =&gt; &lt;HoverCard.Root openDelay={0} closeDelay={0}&gt;
3051
+ &lt;HoverCard.Trigger asChild&gt;
3052
+ &lt;a
3053
+ href=&quot;https://agentero.com&quot;
3054
+ className=&quot;text-text-default-base-primary underline&quot;&gt;@agentero
3055
+ &lt;/a&gt;
3056
+ &lt;/HoverCard.Trigger&gt;
3057
+ &lt;HoverCard.Portal&gt;
3058
+ &lt;HoverCard.Content&gt;
3059
+ &lt;PreviewCard /&gt;
3060
+ &lt;/HoverCard.Content&gt;
3061
+ &lt;/HoverCard.Portal&gt;
3062
+ &lt;/HoverCard.Root&gt;;</code></pre>
3063
+ </div>
3064
+ <div class="note ok">
3065
+ <div class="row">
3066
+ <span class="ex-name">Opens On Focus</span>
3067
+ <span class="badge ok">story ok</span>
3068
+ </div>
3069
+
3070
+ <div class="hint">Opens on focus as a supplementary affordance. Note this is not the same as being keyboard-accessible: focus does not move into the card and it closes on blur, so any interactive content inside stays unreachable by keyboard — never put essential actions there.</div>
3071
+ <pre><code>const OpensOnFocus = () =&gt; &lt;HoverCard.Root openDelay={0} closeDelay={0}&gt;
3072
+ &lt;HoverCard.Trigger asChild&gt;
3073
+ &lt;a
3074
+ href=&quot;https://agentero.com&quot;
3075
+ className=&quot;text-text-default-base-primary underline&quot;&gt;@agentero
3076
+ &lt;/a&gt;
3077
+ &lt;/HoverCard.Trigger&gt;
3078
+ &lt;HoverCard.Portal&gt;
3079
+ &lt;HoverCard.Content&gt;
3080
+ &lt;PreviewCard /&gt;
3081
+ &lt;/HoverCard.Content&gt;
3082
+ &lt;/HoverCard.Portal&gt;
3083
+ &lt;/HoverCard.Root&gt;;</code></pre>
3084
+ </div>
3085
+ <div class="note ok">
3086
+ <div class="row">
3087
+ <span class="ex-name">Sides</span>
3088
+ <span class="badge ok">story ok</span>
3089
+ </div>
3090
+
3091
+ <div class="hint">`side` sets the preferred placement; it flips on viewport collision.</div>
3092
+ <pre><code>const Sides = args =&gt; (
3093
+ &lt;div className=&quot;grid grid-cols-2 gap-10&quot;&gt;
3094
+ {([&#39;top&#39;, &#39;right&#39;, &#39;bottom&#39;, &#39;left&#39;] as const).map(side =&gt; (
3095
+ &lt;HoverCard.Root key={side} {...args}&gt;
3096
+ &lt;HoverCard.Trigger asChild&gt;
3097
+ &lt;a href=&quot;https://agentero.com&quot; className=&quot;text-text-default-base-primary underline&quot;&gt;
3098
+ {side}
3099
+ &lt;/a&gt;
3100
+ &lt;/HoverCard.Trigger&gt;
3101
+ &lt;HoverCard.Portal&gt;
3102
+ &lt;HoverCard.Content side={side}&gt;
3103
+ &lt;PreviewCard /&gt;
3104
+ &lt;/HoverCard.Content&gt;
3105
+ &lt;/HoverCard.Portal&gt;
3106
+ &lt;/HoverCard.Root&gt;
3107
+ ))}
3108
+ &lt;/div&gt;
3109
+ );</code></pre>
3110
+ </div>
3111
+ <div class="note ok">
3112
+ <div class="row">
3113
+ <span class="ex-name">Rich Content</span>
3114
+ <span class="badge ok">story ok</span>
3115
+ </div>
3116
+
3117
+ <div class="hint">The whole point of a HoverCard over a Tooltip: freely laid-out content that may include its own links and actions. Still supplementary — never the only path to an action.</div>
3118
+ <pre><code>const RichContent = () =&gt; &lt;HoverCard.Root openDelay={0} closeDelay={0}&gt;
3119
+ &lt;HoverCard.Trigger asChild&gt;
3120
+ &lt;a
3121
+ href=&quot;https://agentero.com&quot;
3122
+ className=&quot;text-text-default-base-primary underline&quot;&gt;@agentero
3123
+ &lt;/a&gt;
3124
+ &lt;/HoverCard.Trigger&gt;
3125
+ &lt;HoverCard.Portal&gt;
3126
+ &lt;HoverCard.Content className=&quot;w-80&quot;&gt;
3127
+ &lt;div className=&quot;flex flex-col gap-3&quot;&gt;
3128
+ &lt;div className=&quot;flex gap-3&quot;&gt;
3129
+ &lt;Avatar fallback=&quot;AG&quot; colorize=&quot;Agentero&quot; type=&quot;initials&quot; size=&quot;lg&quot; /&gt;
3130
+ &lt;div className=&quot;flex flex-col gap-1&quot;&gt;
3131
+ &lt;p className=&quot;font-medium text-text-default-base-primary&quot;&gt;Agentero&lt;/p&gt;
3132
+ &lt;p className=&quot;text-text-default-base-tertiary&quot;&gt;Insurance marketplace for independent agents.
3133
+ &lt;/p&gt;
3134
+ &lt;/div&gt;
3135
+ &lt;/div&gt;
3136
+ &lt;div className=&quot;flex gap-4 text-text-default-base-secondary&quot;&gt;
3137
+ &lt;span&gt;
3138
+ &lt;span className=&quot;font-medium text-text-default-base-primary&quot;&gt;128&lt;/span&gt;carriers
3139
+ &lt;/span&gt;
3140
+ &lt;span&gt;
3141
+ &lt;span className=&quot;font-medium text-text-default-base-primary&quot;&gt;50&lt;/span&gt;states
3142
+ &lt;/span&gt;
3143
+ &lt;/div&gt;
3144
+ &lt;a
3145
+ href=&quot;https://agentero.com&quot;
3146
+ className=&quot;text-text-default-base-primary underline&quot;&gt;View profile
3147
+ &lt;/a&gt;
3148
+ &lt;/div&gt;
3149
+ &lt;/HoverCard.Content&gt;
3150
+ &lt;/HoverCard.Portal&gt;
3151
+ &lt;/HoverCard.Root&gt;;</code></pre>
3152
+ </div>
3153
+ <div class="note ok">
3154
+ <div class="row">
3155
+ <span class="ex-name">With Arrow</span>
3156
+ <span class="badge ok">story ok</span>
3157
+ </div>
3158
+
3159
+ <div class="hint">An optional `Arrow` points back at the trigger; render it inside `Content`. The arrow is filled with the card background (white), so it only reads against a surface that contrasts with the card — shown here on a muted backdrop.</div>
3160
+ <pre><code>const WithArrow = () =&gt; &lt;HoverCard.Root openDelay={0} closeDelay={0}&gt;
3161
+ &lt;HoverCard.Trigger asChild&gt;
3162
+ &lt;a
3163
+ href=&quot;https://agentero.com&quot;
3164
+ className=&quot;text-text-default-base-primary underline&quot;&gt;@agentero
3165
+ &lt;/a&gt;
3166
+ &lt;/HoverCard.Trigger&gt;
3167
+ &lt;HoverCard.Portal&gt;
3168
+ &lt;HoverCard.Content&gt;
3169
+ &lt;PreviewCard /&gt;
3170
+ &lt;HoverCard.Arrow /&gt;
3171
+ &lt;/HoverCard.Content&gt;
3172
+ &lt;/HoverCard.Portal&gt;
3173
+ &lt;/HoverCard.Root&gt;;</code></pre>
3174
+ </div>
3175
+ <div class="note ok">
3176
+ <div class="row">
3177
+ <span class="ex-name">Delays</span>
3178
+ <span class="badge ok">story ok</span>
3179
+ </div>
3180
+
3181
+ <div class="hint">`openDelay` / `closeDelay` tune the hover latency. Default is a deliberate `700ms` open so cards don&#39;t flash on incidental passes; drop it to `0` for trigger-dense UIs where an instant preview reads as more responsive.</div>
3182
+ <pre><code>const Delays = () =&gt; (
3183
+ &lt;div className=&quot;flex gap-10&quot;&gt;
3184
+ &lt;HoverCard.Root openDelay={700} closeDelay={300}&gt;
3185
+ &lt;HoverCard.Trigger asChild&gt;
3186
+ &lt;a href=&quot;https://agentero.com&quot; className=&quot;text-text-default-base-primary underline&quot;&gt;
3187
+ Default (700ms)
3188
+ &lt;/a&gt;
3189
+ &lt;/HoverCard.Trigger&gt;
3190
+ &lt;HoverCard.Portal&gt;
3191
+ &lt;HoverCard.Content&gt;
3192
+ &lt;PreviewCard /&gt;
3193
+ &lt;/HoverCard.Content&gt;
3194
+ &lt;/HoverCard.Portal&gt;
3195
+ &lt;/HoverCard.Root&gt;
3196
+ &lt;HoverCard.Root openDelay={0} closeDelay={0}&gt;
3197
+ &lt;HoverCard.Trigger asChild&gt;
3198
+ &lt;a href=&quot;https://agentero.com&quot; className=&quot;text-text-default-base-primary underline&quot;&gt;
3199
+ Instant (0ms)
3200
+ &lt;/a&gt;
3201
+ &lt;/HoverCard.Trigger&gt;
3202
+ &lt;HoverCard.Portal&gt;
3203
+ &lt;HoverCard.Content&gt;
3204
+ &lt;PreviewCard /&gt;
3205
+ &lt;/HoverCard.Content&gt;
3206
+ &lt;/HoverCard.Portal&gt;
3207
+ &lt;/HoverCard.Root&gt;
3208
+ &lt;/div&gt;
3209
+ );</code></pre>
3210
+ </div>
3211
+ </div>
3212
+
3213
+ </div>
3214
+ </article>
2995
3215
  <article
2996
3216
  class="card
2997
3217
  no-error
@@ -3004,9 +3224,9 @@ label?: ReactNode</code></pre>
3004
3224
  <div class="title">
3005
3225
  <h2><span class="status-dot dot-ok"></span> Loading</h2>
3006
3226
  <div class="badges">
3007
- <label for="c-8-components-loading-props" class="badge ok as-toggle">1 prop type</label>
3227
+ <label for="c-9-components-loading-props" class="badge ok as-toggle">1 prop type</label>
3008
3228
 
3009
- <label for="c-8-components-loading-stories" class="badge ok as-toggle">7 stories</label>
3229
+ <label for="c-9-components-loading-stories" class="badge ok as-toggle">7 stories</label>
3010
3230
 
3011
3231
  </div>
3012
3232
  </div>
@@ -3019,9 +3239,9 @@ label?: ReactNode</code></pre>
3019
3239
  <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
3020
3240
 
3021
3241
 
3022
- <input id="c-8-components-loading-stories" class="tg tg-stories" type="checkbox" hidden />
3242
+ <input id="c-9-components-loading-stories" class="tg tg-stories" type="checkbox" hidden />
3023
3243
 
3024
- <input id="c-8-components-loading-props" class="tg tg-props" type="checkbox" hidden />
3244
+ <input id="c-9-components-loading-props" class="tg tg-props" type="checkbox" hidden />
3025
3245
 
3026
3246
  <div class="panels">
3027
3247
 
@@ -3163,7 +3383,7 @@ size?: &quot;sm&quot; | &quot;md&quot; | &quot;lg&quot;</code></pre>
3163
3383
  <div class="badges">
3164
3384
 
3165
3385
 
3166
- <label for="c-9-components-modal-stories" class="badge ok as-toggle">4 stories</label>
3386
+ <label for="c-10-components-modal-stories" class="badge ok as-toggle">4 stories</label>
3167
3387
 
3168
3388
  </div>
3169
3389
  </div>
@@ -3176,7 +3396,7 @@ size?: &quot;sm&quot; | &quot;md&quot; | &quot;lg&quot;</code></pre>
3176
3396
  <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
3177
3397
 
3178
3398
 
3179
- <input id="c-9-components-modal-stories" class="tg tg-stories" type="checkbox" hidden />
3399
+ <input id="c-10-components-modal-stories" class="tg tg-stories" type="checkbox" hidden />
3180
3400
 
3181
3401
 
3182
3402
 
@@ -3301,9 +3521,9 @@ size?: &quot;sm&quot; | &quot;md&quot; | &quot;lg&quot;</code></pre>
3301
3521
  <div class="title">
3302
3522
  <h2><span class="status-dot dot-ok"></span> Pagination</h2>
3303
3523
  <div class="badges">
3304
- <label for="c-10-components-pagination-props" class="badge ok as-toggle">5 prop types</label>
3524
+ <label for="c-11-components-pagination-props" class="badge ok as-toggle">5 prop types</label>
3305
3525
 
3306
- <label for="c-10-components-pagination-stories" class="badge ok as-toggle">7 stories</label>
3526
+ <label for="c-11-components-pagination-stories" class="badge ok as-toggle">7 stories</label>
3307
3527
 
3308
3528
  </div>
3309
3529
  </div>
@@ -3316,9 +3536,9 @@ size?: &quot;sm&quot; | &quot;md&quot; | &quot;lg&quot;</code></pre>
3316
3536
  <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
3317
3537
 
3318
3538
 
3319
- <input id="c-10-components-pagination-stories" class="tg tg-stories" type="checkbox" hidden />
3539
+ <input id="c-11-components-pagination-stories" class="tg tg-stories" type="checkbox" hidden />
3320
3540
 
3321
- <input id="c-10-components-pagination-props" class="tg tg-props" type="checkbox" hidden />
3541
+ <input id="c-11-components-pagination-props" class="tg tg-props" type="checkbox" hidden />
3322
3542
 
3323
3543
  <div class="panels">
3324
3544
 
@@ -3450,6 +3670,155 @@ totalCount: number</code></pre>
3450
3670
 
3451
3671
  </div>
3452
3672
  </article>
3673
+ <article
3674
+ class="card
3675
+ no-error
3676
+ no-info
3677
+ no-story-error
3678
+ no-doc-error"
3679
+ role="listitem"
3680
+ aria-label="Popover.Root">
3681
+ <div class="head">
3682
+ <div class="title">
3683
+ <h2><span class="status-dot dot-ok"></span> Popover.Root</h2>
3684
+ <div class="badges">
3685
+
3686
+
3687
+ <label for="c-12-components-popover-stories" class="badge ok as-toggle">4 stories</label>
3688
+
3689
+ </div>
3690
+ </div>
3691
+ <div class="meta" title="./src/popover/popover.stories.tsx">components-popover · ./src/popover/popover.stories.tsx</div>
3692
+
3693
+ <div class="hint">Popover is a non-modal floating surface anchored to a trigger, used for rich interactive overlays such as forms, filters, and pickers. Compose it from `Root` / `Trigger` / `Content`, plus optional `Anchor` and `Close`. Built on Radix UI&#39;s Popover primitive, so focus management, dismissal, and collision detection come for free.</div>
3694
+
3695
+ </div>
3696
+
3697
+ <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
3698
+
3699
+
3700
+ <input id="c-12-components-popover-stories" class="tg tg-stories" type="checkbox" hidden />
3701
+
3702
+
3703
+
3704
+ <div class="panels">
3705
+
3706
+
3707
+
3708
+
3709
+ <div class="panel panel-stories">
3710
+
3711
+
3712
+
3713
+ <div class="note ok">
3714
+ <div class="row">
3715
+ <span class="ex-name">Imports</span>
3716
+ </div>
3717
+ <pre><code>import { Button, Popover } from "@agentero/design-system";</code></pre>
3718
+ </div>
3719
+
3720
+
3721
+ <div class="note ok">
3722
+ <div class="row">
3723
+ <span class="ex-name">Default</span>
3724
+ <span class="badge ok">story ok</span>
3725
+ </div>
3726
+ <div>Basic click-to-open popover surface</div>
3727
+ <div class="hint">A minimal Popover: a trigger button that reveals a short text surface on click and dismisses on outside click or Escape.</div>
3728
+ <pre><code>const Default = () =&gt; (
3729
+ &lt;Popover.Root&gt;
3730
+ &lt;Popover.Trigger asChild&gt;
3731
+ &lt;Button variant=&quot;secondary&quot;&gt;Open popover&lt;/Button&gt;
3732
+ &lt;/Popover.Trigger&gt;
3733
+ &lt;Popover.Content&gt;
3734
+ &lt;p className=&quot;text-sm text-text-default-base-primary&quot;&gt;
3735
+ This carrier is appointed for 3 lines of business.
3736
+ &lt;/p&gt;
3737
+ &lt;/Popover.Content&gt;
3738
+ &lt;/Popover.Root&gt;
3739
+ );</code></pre>
3740
+ </div>
3741
+ <div class="note ok">
3742
+ <div class="row">
3743
+ <span class="ex-name">Sides</span>
3744
+ <span class="badge ok">story ok</span>
3745
+ </div>
3746
+ <div>Popover placement on each of the four sides</div>
3747
+ <div class="hint">`side` sets the preferred placement; Radix flips it on viewport collision.</div>
3748
+ <pre><code>const Sides = () =&gt; (
3749
+ &lt;div className=&quot;grid grid-cols-2 gap-6&quot;&gt;
3750
+ {([&#39;top&#39;, &#39;right&#39;, &#39;bottom&#39;, &#39;left&#39;] as const).map(side =&gt; (
3751
+ &lt;Popover.Root key={side}&gt;
3752
+ &lt;Popover.Trigger asChild&gt;
3753
+ &lt;Button variant=&quot;secondary&quot;&gt;{side}&lt;/Button&gt;
3754
+ &lt;/Popover.Trigger&gt;
3755
+ &lt;Popover.Content side={side}&gt;
3756
+ &lt;p className=&quot;text-sm text-text-default-base-primary&quot;&gt;Opens on {side}&lt;/p&gt;
3757
+ &lt;/Popover.Content&gt;
3758
+ &lt;/Popover.Root&gt;
3759
+ ))}
3760
+ &lt;/div&gt;
3761
+ );</code></pre>
3762
+ </div>
3763
+ <div class="note ok">
3764
+ <div class="row">
3765
+ <span class="ex-name">With Form</span>
3766
+ <span class="badge ok">story ok</span>
3767
+ </div>
3768
+ <div>Popover holding an interactive form with a `Close` action</div>
3769
+ <div class="hint">Rich interactive content — the primary reason to reach for a Popover over a Tooltip. A `Close` inside the surface dismisses it after submitting.</div>
3770
+ <pre><code>const WithForm = () =&gt; (
3771
+ &lt;Popover.Root&gt;
3772
+ &lt;Popover.Trigger asChild&gt;
3773
+ &lt;Button variant=&quot;secondary&quot;&gt;Rename&lt;/Button&gt;
3774
+ &lt;/Popover.Trigger&gt;
3775
+ &lt;Popover.Content align=&quot;start&quot;&gt;
3776
+ &lt;div className=&quot;flex flex-col gap-3&quot;&gt;
3777
+ &lt;label className=&quot;flex flex-col gap-1 text-sm text-text-default-base-primary&quot;&gt;
3778
+ New name
3779
+ &lt;input
3780
+ type=&quot;text&quot;
3781
+ defaultValue=&quot;Untitled&quot;
3782
+ className=&quot;rounded-md border border-border-default-base-primary px-2 py-1 text-sm&quot;
3783
+ /&gt;
3784
+ &lt;/label&gt;
3785
+ &lt;Popover.Close asChild&gt;
3786
+ &lt;Button variant=&quot;primary&quot; size=&quot;sm&quot;&gt;
3787
+ Save
3788
+ &lt;/Button&gt;
3789
+ &lt;/Popover.Close&gt;
3790
+ &lt;/div&gt;
3791
+ &lt;/Popover.Content&gt;
3792
+ &lt;/Popover.Root&gt;
3793
+ );</code></pre>
3794
+ </div>
3795
+ <div class="note ok">
3796
+ <div class="row">
3797
+ <span class="ex-name">With Anchor</span>
3798
+ <span class="badge ok">story ok</span>
3799
+ </div>
3800
+ <div>Popover positioned against a separate `Anchor` element</div>
3801
+ <div class="hint">`Anchor` positions the Content against an element other than the Trigger — useful when the visual anchor differs from the toggle button.</div>
3802
+ <pre><code>const WithAnchor = () =&gt; (
3803
+ &lt;Popover.Root&gt;
3804
+ &lt;div className=&quot;flex flex-col items-center gap-4&quot;&gt;
3805
+ &lt;Popover.Anchor className=&quot;rounded-md border border-border-default-base-primary px-4 py-2 text-sm text-text-default-base-secondary&quot;&gt;
3806
+ Anchored here
3807
+ &lt;/Popover.Anchor&gt;
3808
+ &lt;Popover.Trigger asChild&gt;
3809
+ &lt;Button variant=&quot;secondary&quot;&gt;Toggle from below&lt;/Button&gt;
3810
+ &lt;/Popover.Trigger&gt;
3811
+ &lt;/div&gt;
3812
+ &lt;Popover.Content side=&quot;top&quot;&gt;
3813
+ &lt;p className=&quot;text-sm text-text-default-base-primary&quot;&gt;Positioned against the anchor&lt;/p&gt;
3814
+ &lt;/Popover.Content&gt;
3815
+ &lt;/Popover.Root&gt;
3816
+ );</code></pre>
3817
+ </div>
3818
+ </div>
3819
+
3820
+ </div>
3821
+ </article>
3453
3822
  <article
3454
3823
  class="card
3455
3824
  no-error
@@ -3462,9 +3831,9 @@ totalCount: number</code></pre>
3462
3831
  <div class="title">
3463
3832
  <h2><span class="status-dot dot-ok"></span> Progress</h2>
3464
3833
  <div class="badges">
3465
- <label for="c-11-components-progress-props" class="badge ok as-toggle">4 prop types</label>
3834
+ <label for="c-13-components-progress-props" class="badge ok as-toggle">4 prop types</label>
3466
3835
 
3467
- <label for="c-11-components-progress-stories" class="badge ok as-toggle">4 stories</label>
3836
+ <label for="c-13-components-progress-stories" class="badge ok as-toggle">4 stories</label>
3468
3837
 
3469
3838
  </div>
3470
3839
  </div>
@@ -3477,9 +3846,9 @@ totalCount: number</code></pre>
3477
3846
  <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
3478
3847
 
3479
3848
 
3480
- <input id="c-11-components-progress-stories" class="tg tg-stories" type="checkbox" hidden />
3849
+ <input id="c-13-components-progress-stories" class="tg tg-stories" type="checkbox" hidden />
3481
3850
 
3482
- <input id="c-11-components-progress-props" class="tg tg-props" type="checkbox" hidden />
3851
+ <input id="c-13-components-progress-props" class="tg tg-props" type="checkbox" hidden />
3483
3852
 
3484
3853
  <div class="panels">
3485
3854
 
@@ -3597,7 +3966,7 @@ percentage: number</code></pre>
3597
3966
  <div class="badges">
3598
3967
 
3599
3968
 
3600
- <label for="c-12-components-skeleton-stories" class="badge ok as-toggle">4 stories</label>
3969
+ <label for="c-14-components-skeleton-stories" class="badge ok as-toggle">4 stories</label>
3601
3970
 
3602
3971
  </div>
3603
3972
  </div>
@@ -3610,7 +3979,7 @@ percentage: number</code></pre>
3610
3979
  <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
3611
3980
 
3612
3981
 
3613
- <input id="c-12-components-skeleton-stories" class="tg tg-stories" type="checkbox" hidden />
3982
+ <input id="c-14-components-skeleton-stories" class="tg tg-stories" type="checkbox" hidden />
3614
3983
 
3615
3984
 
3616
3985
 
@@ -3704,9 +4073,9 @@ percentage: number</code></pre>
3704
4073
  <div class="title">
3705
4074
  <h2><span class="status-dot dot-ok"></span> Switch</h2>
3706
4075
  <div class="badges">
3707
- <label for="c-13-components-switch-props" class="badge ok as-toggle">4 prop types</label>
4076
+ <label for="c-15-components-switch-props" class="badge ok as-toggle">4 prop types</label>
3708
4077
 
3709
- <label for="c-13-components-switch-stories" class="badge ok as-toggle">7 stories</label>
4078
+ <label for="c-15-components-switch-stories" class="badge ok as-toggle">7 stories</label>
3710
4079
 
3711
4080
  </div>
3712
4081
  </div>
@@ -3719,9 +4088,9 @@ percentage: number</code></pre>
3719
4088
  <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
3720
4089
 
3721
4090
 
3722
- <input id="c-13-components-switch-stories" class="tg tg-stories" type="checkbox" hidden />
4091
+ <input id="c-15-components-switch-stories" class="tg tg-stories" type="checkbox" hidden />
3723
4092
 
3724
- <input id="c-13-components-switch-props" class="tg tg-props" type="checkbox" hidden />
4093
+ <input id="c-15-components-switch-props" class="tg tg-props" type="checkbox" hidden />
3725
4094
 
3726
4095
  <div class="panels">
3727
4096
 
@@ -3894,7 +4263,7 @@ size?: &quot;sm&quot; | &quot;md&quot;</code></pre>
3894
4263
  <div class="badges">
3895
4264
 
3896
4265
 
3897
- <label for="c-14-components-table-stories" class="badge ok as-toggle">9 stories</label>
4266
+ <label for="c-16-components-table-stories" class="badge ok as-toggle">9 stories</label>
3898
4267
 
3899
4268
  </div>
3900
4269
  </div>
@@ -3907,7 +4276,7 @@ size?: &quot;sm&quot; | &quot;md&quot;</code></pre>
3907
4276
  <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
3908
4277
 
3909
4278
 
3910
- <input id="c-14-components-table-stories" class="tg tg-stories" type="checkbox" hidden />
4279
+ <input id="c-16-components-table-stories" class="tg tg-stories" type="checkbox" hidden />
3911
4280
 
3912
4281
 
3913
4282
 
@@ -4083,7 +4452,7 @@ import { Fragment } from "react";</code></pre>
4083
4452
  <div class="badges">
4084
4453
 
4085
4454
 
4086
- <label for="c-15-components-tabs-stories" class="badge ok as-toggle">7 stories</label>
4455
+ <label for="c-17-components-tabs-stories" class="badge ok as-toggle">7 stories</label>
4087
4456
 
4088
4457
  </div>
4089
4458
  </div>
@@ -4096,7 +4465,7 @@ import { Fragment } from "react";</code></pre>
4096
4465
  <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
4097
4466
 
4098
4467
 
4099
- <input id="c-15-components-tabs-stories" class="tg tg-stories" type="checkbox" hidden />
4468
+ <input id="c-17-components-tabs-stories" class="tg tg-stories" type="checkbox" hidden />
4100
4469
 
4101
4470
 
4102
4471
 
@@ -4249,9 +4618,9 @@ import { Fragment } from "react";</code></pre>
4249
4618
  <div class="title">
4250
4619
  <h2><span class="status-dot dot-ok"></span> Tag</h2>
4251
4620
  <div class="badges">
4252
- <label for="c-16-components-tag-props" class="badge ok as-toggle">6 prop types</label>
4621
+ <label for="c-18-components-tag-props" class="badge ok as-toggle">6 prop types</label>
4253
4622
 
4254
- <label for="c-16-components-tag-stories" class="badge ok as-toggle">10 stories</label>
4623
+ <label for="c-18-components-tag-stories" class="badge ok as-toggle">10 stories</label>
4255
4624
 
4256
4625
  </div>
4257
4626
  </div>
@@ -4264,9 +4633,9 @@ import { Fragment } from "react";</code></pre>
4264
4633
  <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
4265
4634
 
4266
4635
 
4267
- <input id="c-16-components-tag-stories" class="tg tg-stories" type="checkbox" hidden />
4636
+ <input id="c-18-components-tag-stories" class="tg tg-stories" type="checkbox" hidden />
4268
4637
 
4269
- <input id="c-16-components-tag-props" class="tg tg-props" type="checkbox" hidden />
4638
+ <input id="c-18-components-tag-props" class="tg tg-props" type="checkbox" hidden />
4270
4639
 
4271
4640
  <div class="panels">
4272
4641
 
@@ -4623,9 +4992,9 @@ variant?: &quot;ghost&quot; | &quot;secondary&quot; | &quot;tertiary&quot; | &qu
4623
4992
  <div class="title">
4624
4993
  <h2><span class="status-dot dot-ok"></span> Toast</h2>
4625
4994
  <div class="badges">
4626
- <label for="c-17-components-toast-props" class="badge ok as-toggle">11 prop types</label>
4995
+ <label for="c-19-components-toast-props" class="badge ok as-toggle">11 prop types</label>
4627
4996
 
4628
- <label for="c-17-components-toast-stories" class="badge ok as-toggle">11 stories</label>
4997
+ <label for="c-19-components-toast-stories" class="badge ok as-toggle">11 stories</label>
4629
4998
 
4630
4999
  </div>
4631
5000
  </div>
@@ -4638,9 +5007,9 @@ variant?: &quot;ghost&quot; | &quot;secondary&quot; | &quot;tertiary&quot; | &qu
4638
5007
  <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
4639
5008
 
4640
5009
 
4641
- <input id="c-17-components-toast-stories" class="tg tg-stories" type="checkbox" hidden />
5010
+ <input id="c-19-components-toast-stories" class="tg tg-stories" type="checkbox" hidden />
4642
5011
 
4643
- <input id="c-17-components-toast-props" class="tg tg-props" type="checkbox" hidden />
5012
+ <input id="c-19-components-toast-props" class="tg tg-props" type="checkbox" hidden />
4644
5013
 
4645
5014
  <div class="panels">
4646
5015
 
@@ -5049,9 +5418,9 @@ visibleToasts?: number</code></pre>
5049
5418
  <div class="title">
5050
5419
  <h2><span class="status-dot dot-ok"></span> Tooltip</h2>
5051
5420
  <div class="badges">
5052
- <label for="c-18-components-tooltip-props" class="badge ok as-toggle">9 prop types</label>
5421
+ <label for="c-20-components-tooltip-props" class="badge ok as-toggle">9 prop types</label>
5053
5422
 
5054
- <label for="c-18-components-tooltip-stories" class="badge ok as-toggle">5 stories</label>
5423
+ <label for="c-20-components-tooltip-stories" class="badge ok as-toggle">5 stories</label>
5055
5424
 
5056
5425
  </div>
5057
5426
  </div>
@@ -5064,9 +5433,9 @@ visibleToasts?: number</code></pre>
5064
5433
  <!-- ⬇️ Hidden toggles must be siblings BEFORE .panels -->
5065
5434
 
5066
5435
 
5067
- <input id="c-18-components-tooltip-stories" class="tg tg-stories" type="checkbox" hidden />
5436
+ <input id="c-20-components-tooltip-stories" class="tg tg-stories" type="checkbox" hidden />
5068
5437
 
5069
- <input id="c-18-components-tooltip-props" class="tg tg-props" type="checkbox" hidden />
5438
+ <input id="c-20-components-tooltip-props" class="tg tg-props" type="checkbox" hidden />
5070
5439
 
5071
5440
  <div class="panels">
5072
5441