fix(config): update release configuration schema, refresh dependency versions, and document exported event types
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user