@almadar/ui 5.24.0 → 5.25.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.
@@ -5,7 +5,8 @@ import type { DisplayStateProps } from '../organisms/types';
5
5
  * PropertyInspector — Storybook-style controls panel for a trait's `config`.
6
6
  *
7
7
  * Derives one control per declared config field directly from the schema
8
- * (`@almadar/core` `DeclaredTraitConfig`): `boolean Switch`, `string` with
8
+ * (`@almadar/core` `DeclaredTraitConfig`), dispatching on the field's `type`:
9
+ * `icon → IconPicker`, `asset → AssetPicker`, `boolean → Switch`, `string` with
9
10
  * `values → Select`, `number → numeric Input`, `string → Input`. Non-scalar
10
11
  * fields (array/object/node/SExpr) are shown read-only. Fields group + collapse
11
12
  * by `@tier`. The component is controlled — it emits `onChange(field, value)`;
@@ -22,7 +23,7 @@ export interface PropertyInspectorProps extends DisplayStateProps {
22
23
  onReset?: () => void;
23
24
  /** Panel heading (e.g. the trait name). */
24
25
  title?: string;
25
- /** Browsable asset catalog supplied to `control: 'asset'` fields. */
26
+ /** Browsable asset catalog supplied to `asset`-typed fields' AssetPicker. */
26
27
  assets?: AssetCatalog;
27
28
  }
28
29
  export declare const PropertyInspector: React.FC<PropertyInspectorProps>;
@@ -103,8 +103,8 @@ export { DocSearch, type DocSearchProps, type DocSearchResult } from './DocSearc
103
103
  export { DocSidebar, type DocSidebarProps, type DocSidebarItem } from './DocSidebar';
104
104
  export { DocTOC, type DocTOCProps, type DocTOCItem } from './DocTOC';
105
105
  export { GradientDivider, type GradientDividerProps } from './GradientDivider';
106
- export { MarketingFooter, type MarketingFooterProps, type FooterLinkColumn, type FooterLinkItem } from './MarketingFooter';
107
- export { PullQuote, type PullQuoteProps } from './PullQuote';
106
+ export { MarketingFooter, type MarketingFooterProps, type FooterLinkColumn, type FooterLinkItem } from '../../marketing/molecules/MarketingFooter';
107
+ export { PullQuote, type PullQuoteProps } from '../../marketing/molecules/PullQuote';
108
108
  export { BehaviorView, type BehaviorViewProps } from '../../avl/molecules/BehaviorView';
109
109
  export { ModuleCard, type ModuleCardProps } from '../../avl/molecules/ModuleCard';
110
110
  export { PageHeader, type PageHeaderProps, type PageBreadcrumb, } from "./PageHeader";
@@ -18,12 +18,12 @@ export { NotifyListener } from "./NotifyListener";
18
18
  export { Timeline, type TimelineProps, type TimelineItem, type TimelineItemStatus, } from "./Timeline";
19
19
  export { MediaGallery, type MediaGalleryProps, type MediaItem, } from "./MediaGallery";
20
20
  export { RuntimeDebugger, type RuntimeDebuggerProps, } from "./debug";
21
- export { HeroOrganism, type HeroOrganismProps, } from "./HeroOrganism";
22
- export { FeatureGridOrganism, type FeatureGridOrganismProps, } from "./FeatureGridOrganism";
21
+ export { HeroOrganism, type HeroOrganismProps, } from "../../marketing/organisms/HeroOrganism";
22
+ export { FeatureGridOrganism, type FeatureGridOrganismProps, } from "../../marketing/organisms/FeatureGridOrganism";
23
23
  export { PricingOrganism, type PricingOrganismProps, } from "../../marketing/organisms/PricingOrganism";
24
24
  export { StatsOrganism, type StatsOrganismProps, } from "../../marketing/organisms/StatsOrganism";
25
- export { StepFlowOrganism, type StepFlowOrganismProps, } from "./StepFlowOrganism";
26
- export { ShowcaseOrganism, type ShowcaseOrganismProps, } from "./ShowcaseOrganism";
25
+ export { StepFlowOrganism, type StepFlowOrganismProps, } from "../../marketing/organisms/StepFlowOrganism";
26
+ export { ShowcaseOrganism, type ShowcaseOrganismProps, } from "../../marketing/organisms/ShowcaseOrganism";
27
27
  export { TeamOrganism, type TeamOrganismProps, } from "../../marketing/organisms/TeamOrganism";
28
- export { CaseStudyOrganism, type CaseStudyOrganismProps, } from "./CaseStudyOrganism";
28
+ export { CaseStudyOrganism, type CaseStudyOrganismProps, } from "../../marketing/organisms/CaseStudyOrganism";
29
29
  export { FeatureRenderer, type FeatureRendererProps } from '../../game/organisms/three/renderers/FeatureRenderer';
@@ -1,6 +1,6 @@
1
1
  export type { TemplateProps } from './types';
2
2
  export { DashboardLayout, type DashboardLayoutProps, type NavItem } from './DashboardLayout';
3
- export { AuthLayout, type AuthLayoutProps } from './AuthLayout';
3
+ export { AuthLayout, type AuthLayoutProps } from '../../marketing/templates/AuthLayout';
4
4
  export { CounterTemplate, type CounterTemplateProps, type CounterSize, type CounterVariant } from './CounterTemplate';
5
5
  export { GameTemplate, type GameTemplateProps } from '../../game/templates/GameTemplate';
6
6
  export { GenericAppTemplate, type GenericAppTemplateProps } from './GenericAppTemplate';