@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.
- package/dist/avl/index.cjs +1906 -1336
- package/dist/avl/index.js +840 -270
- package/dist/components/core/molecules/PropertyInspector.d.ts +3 -2
- package/dist/components/core/molecules/index.d.ts +2 -2
- package/dist/components/core/organisms/index.d.ts +5 -5
- package/dist/components/core/templates/index.d.ts +1 -1
- package/dist/components/index.cjs +1395 -1391
- package/dist/components/index.js +492 -488
- package/dist/components/{core → marketing}/organisms/CaseStudyOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/FeatureGridOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/HeroOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/ShowcaseOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/StepFlowOrganism.d.ts +1 -1
- package/dist/marketing/index.d.ts +4 -4
- package/dist/providers/index.cjs +1729 -1159
- package/dist/providers/index.js +814 -244
- package/dist/runtime/index.cjs +1769 -1199
- package/dist/runtime/index.js +818 -248
- package/package.json +2 -2
- /package/dist/components/{core → marketing}/molecules/MarketingFooter.d.ts +0 -0
- /package/dist/components/{core → marketing}/molecules/PullQuote.d.ts +0 -0
- /package/dist/components/{core → marketing}/templates/AuthLayout.d.ts +0 -0
|
@@ -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`)
|
|
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 `
|
|
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 '
|
|
107
|
-
export { PullQuote, type PullQuoteProps } from '
|
|
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 "
|
|
22
|
-
export { FeatureGridOrganism, type FeatureGridOrganismProps, } from "
|
|
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 "
|
|
26
|
-
export { ShowcaseOrganism, type ShowcaseOrganismProps, } from "
|
|
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 "
|
|
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 '
|
|
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';
|