docs(tasks): complete phase 1 ui sessions decomposition and format subcomponents

This commit is contained in:
Tyler Gillispie 2026-08-25 16:22:32 -07:00
parent 9a90f4493c
commit 7df39bd27a
5 changed files with 14 additions and 14 deletions

View File

@ -151,8 +151,8 @@ export const DirectPassDrawer = ({
</summary> </summary>
<div style="margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem;"> <div style="margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem;">
<p style="margin: 0 0 0.5rem 0; font-size: 0.8rem; color: var(--text-secondary);"> <p style="margin: 0 0 0.5rem 0; font-size: 0.8rem; color: var(--text-secondary);">
Select which subsidiary microservices and IAM capabilities Select which subsidiary microservices and IAM capabilities this
this delegated token is permitted to access: delegated token is permitted to access:
</p> </p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.5rem;"> <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.5rem;">
@ -237,8 +237,8 @@ export const DirectPassDrawer = ({
<p style="font-size: 0.85rem; color: var(--text-secondary); margin: 0 0 1rem 0;"> <p style="font-size: 0.85rem; color: var(--text-secondary); margin: 0 0 1rem 0;">
Copy this token, 1-click magic link, or CLI export string. You can Copy this token, 1-click magic link, or CLI export string. You can
revoke or extend this session anytime from the active session revoke or extend this session anytime from the active session cards
cards below. below.
</p> </p>
<div style="display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem;"> <div style="display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem;">
@ -320,4 +320,4 @@ export const DirectPassDrawer = ({
</div> </div>
</div> </div>
); );
}; };

View File

@ -109,4 +109,4 @@ export const EventCockpitDeck = ({ eventPasses }: { eventPasses: any[] }) => {
</div> </div>
</div> </div>
); );
}; };

View File

@ -83,4 +83,4 @@ export const ScopeModal = ({ apps = [] }: { apps?: any[] }) => {
</div> </div>
</div> </div>
); );
}; };

View File

@ -2,9 +2,9 @@ export const WorkshopDrawer = ({ apps = [] }: { apps?: any[] }) => {
return ( return (
<div id="tabWorkshopPass" style="display: none;"> <div id="tabWorkshopPass" style="display: none;">
<p style="color: var(--text-secondary); font-size: 0.9rem; margin: 0 0 1rem 0;"> <p style="color: var(--text-secondary); font-size: 0.9rem; margin: 0 0 1rem 0;">
Generate a shared event pass with a universal 6-digit PIN, vanity Generate a shared event pass with a universal 6-digit PIN, vanity link
link (<code style="font-size: 0.8rem;">/e/slug</code>), and CLI (<code style="font-size: 0.8rem;">/e/slug</code>), and CLI 1-liner for
1-liner for workshops, hackathons, and multi-user kiosks. workshops, hackathons, and multi-user kiosks.
</p> </p>
<form <form
@ -215,9 +215,9 @@ export const WorkshopDrawer = ({ apps = [] }: { apps?: any[] }) => {
</div> </div>
<p style="font-size: 0.85rem; color: var(--text-secondary); margin: 0 0 1rem 0;"> <p style="font-size: 0.85rem; color: var(--text-secondary); margin: 0 0 1rem 0;">
Share the 6-digit PIN, 1-click link, or CLI 1-liner with Share the 6-digit PIN, 1-click link, or CLI 1-liner with attendees.
attendees. You can monitor live claimed seats and trigger the You can monitor live claimed seats and trigger the master kill switch
master kill switch from the Event Cockpit below. from the Event Cockpit below.
</p> </p>
<div style="display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem;"> <div style="display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem;">
@ -299,4 +299,4 @@ export const WorkshopDrawer = ({ apps = [] }: { apps?: any[] }) => {
</div> </div>
</div> </div>
); );
}; };