fix(config): update release configuration schema, refresh dependency versions, and document exported event types

This commit is contained in:
2026-05-18 15:54:45 +00:00
parent 3992adbafa
commit c2bfaad3d6
5 changed files with 477 additions and 267 deletions
+11 -1
View File
@@ -30,6 +30,16 @@ Then compose the elements in HTML, Lit, or any framework that can render custom
<idp-mobile-showcase></idp-mobile-showcase>
```
The package also exports the TypeScript types for the interactive elements and admin shell events, so applications can strongly type `idp-submit`, `idp-select`, and account-management handlers.
```ts
import type {
IIdpFormSubmitEventDetail,
IIdpSelectOption,
IIdpAdminNavigateEventDetail,
} from '@idp.global/catalog';
```
## Element Surface
| Element | Purpose |
@@ -59,7 +69,7 @@ The catalog uses shared tokens from `ts_web/elements/tokens.ts` for color, type,
## Scope
This package is component-only. It does not perform authentication, store sessions, call the idp.global backend, or implement business logic. Use it together with `@idp.global/client` and `@idp.global/interfaces` when you need live identity behavior.
This package is component-only. It does not perform authentication, store sessions, call the idp.global backend, or implement business logic. Use it together with `@idp.global/sdk/browser` and `@idp.global/interfaces` when you need live identity behavior.
## Development