@xenosystem/components 0.4.0 → 0.5.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.
@@ -163,4 +163,21 @@ interface GalleryEntry {
163
163
  }
164
164
  declare function gallery(): GalleryEntry[];
165
165
 
166
- export { AuthDoor, type AuthDoorProps, AuthHero, type AuthHeroProps, type AuthHeroStat, CREDENTIAL_STATES, type CredentialErrors, CredentialForm, type CredentialFormProps, type CredentialMode, type CredentialValues, EmailDisclosure, type EmailDisclosureProps, type GalleryEntry, LicencePlate, OrDivider, STATES, type SignInAction, SignInForm, type SignInFormProps, type SocialProvider, SocialSignIn, type SocialSignInProps, XenoMark, ensureAuthStyles, gallery };
166
+ /**
167
+ * `COMPONENTS` — the family's units by their `family/Unit` names, for a block declaration's registry
168
+ * (`@xenosystem/block-sdk`). A block names `auth/SignInForm`; the host resolves it here. One map per
169
+ * family, merged by the host; nothing is registered by hand elsewhere.
170
+ */
171
+
172
+ declare const COMPONENTS: {
173
+ readonly 'auth/AuthDoor': typeof AuthDoor;
174
+ readonly 'auth/AuthHero': typeof AuthHero;
175
+ readonly 'auth/SignInForm': typeof SignInForm;
176
+ readonly 'auth/CredentialForm': typeof CredentialForm;
177
+ readonly 'auth/SocialSignIn': typeof SocialSignIn;
178
+ readonly 'auth/EmailDisclosure': typeof EmailDisclosure;
179
+ readonly 'auth/OrDivider': typeof OrDivider;
180
+ readonly 'auth/XenoMark': typeof XenoMark;
181
+ };
182
+
183
+ export { AuthDoor, type AuthDoorProps, AuthHero, type AuthHeroProps, type AuthHeroStat, COMPONENTS, CREDENTIAL_STATES, type CredentialErrors, CredentialForm, type CredentialFormProps, type CredentialMode, type CredentialValues, EmailDisclosure, type EmailDisclosureProps, type GalleryEntry, LicencePlate, OrDivider, STATES, type SignInAction, SignInForm, type SignInFormProps, type SocialProvider, SocialSignIn, type SocialSignInProps, XenoMark, ensureAuthStyles, gallery };
@@ -357,9 +357,22 @@ function gallery() {
357
357
  out.push({ family: "auth", unit: "OrDivider", state: "default", stage: "form", render: () => /* @__PURE__ */ jsx9(OrDivider, {}) });
358
358
  return out;
359
359
  }
360
+
361
+ // src/auth/components.ts
362
+ var COMPONENTS = {
363
+ "auth/AuthDoor": AuthDoor,
364
+ "auth/AuthHero": AuthHero,
365
+ "auth/SignInForm": SignInForm,
366
+ "auth/CredentialForm": CredentialForm,
367
+ "auth/SocialSignIn": SocialSignIn,
368
+ "auth/EmailDisclosure": EmailDisclosure,
369
+ "auth/OrDivider": OrDivider,
370
+ "auth/XenoMark": XenoMark
371
+ };
360
372
  export {
361
373
  AuthDoor,
362
374
  AuthHero,
375
+ COMPONENTS,
363
376
  CREDENTIAL_STATES,
364
377
  CredentialForm,
365
378
  EmailDisclosure,
package/dist/index.d.ts CHANGED
@@ -3,6 +3,6 @@
3
3
  * Families are subpaths: `@xenosystem/components/auth`, `/navigation`, `/feedback`, `/data`.
4
4
  * This root re-exports nothing on purpose: import the family you use, so a bundle carries only it.
5
5
  */
6
- declare const COMPONENTS_VERSION = "0.4.0";
6
+ declare const COMPONENTS_VERSION = "0.5.0";
7
7
 
8
8
  export { COMPONENTS_VERSION };
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // src/index.ts
2
- var COMPONENTS_VERSION = "0.4.0";
2
+ var COMPONENTS_VERSION = "0.5.0";
3
3
  export {
4
4
  COMPONENTS_VERSION
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xenosystem/components",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "XENO Components — rung 2 of the front ladder: molecules composed from @xenosystem/elements, with no host contract. Families as subpaths: /auth, /navigation, /feedback, /data.",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",