@almadar/core 10.30.0 → 10.32.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.
@@ -1,7 +1,7 @@
1
- import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, e as Entity, E as EntityField, a as EntityPersistence, c as EventId, a4 as IdentityLedger, A as AnyPatternConfig, b as EntityRow } from './pattern-types-CLcOXOmW.js';
2
- import { d as TraitConfig, aZ as TraitConfigObject, aA as ServiceRef, b9 as TraitRef, J as EventPayloadField, b3 as TraitEntityField, aa as PayloadField, m as ConfigFieldDeclaration, aw as ServiceDefinition, c as Trait, bl as UISlot, E as Effect, aj as RenderBinding, am as RenderUIEffect, T as TraitEventListener, C as CallSiteConfig, b5 as TraitEventContract, a as TraitReference } from './trait-CwWjkU-1.js';
1
+ import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, bp as ServiceRef, e as Entity, E as EntityField, a as EntityPersistence, b as EventId, bj as ServiceDefinition, au as IdentityLedger, A as AnyPatternConfig, bW as UISlot, c as Effect, b1 as RenderBinding, b4 as RenderUIEffect, g as EntityRow } from './effect-8eas3tpU.js';
2
+ import { d as TraitConfig, N as TraitConfigObject, a2 as TraitRef, n as EventPayloadField, Y as TraitEntityField, P as PayloadField, f as ConfigFieldDeclaration, c as Trait, T as TraitEventListener, C as CallSiteConfig, _ as TraitEventContract, a as TraitReference } from './trait-CMGaEccZ.js';
3
3
  import { z } from 'zod';
4
- import { a as Expression, S as SExpr } from './expression-CB9R3KWk.js';
4
+ import { E as Expression, S as SExpr } from './expression-BlFrxmNB.js';
5
5
 
6
6
  /**
7
7
  * Page view types.
@@ -12,7 +12,7 @@ declare const ViewTypeSchema: z.ZodEnum<["list", "detail", "create", "edit", "da
12
12
  /**
13
13
  * Trait reference on a page.
14
14
  */
15
- interface PageTraitRef {
15
+ type PageTraitRef = {
16
16
  /** Trait name from library */
17
17
  ref: string;
18
18
  /** V4 dual-carry id sibling of `ref` — optional until the Phase-7 flip. */
@@ -23,7 +23,7 @@ interface PageTraitRef {
23
23
  linkedEntityId?: EntityId;
24
24
  /** Additional trait configuration */
25
25
  config?: TraitConfig;
26
- }
26
+ };
27
27
  declare const PageTraitRefSchema: z.ZodObject<{
28
28
  ref: z.ZodString;
29
29
  refId: z.ZodOptional<z.ZodEffects<z.ZodString, TraitId, string>>;
@@ -48,7 +48,7 @@ declare const PageTraitRefSchema: z.ZodObject<{
48
48
  *
49
49
  * TRAIT-DRIVEN: Pages must have traits array. Sections are NOT supported.
50
50
  */
51
- interface OrbitalPage {
51
+ type OrbitalPage = {
52
52
  /** V4 dual-carry id sibling of `name` — optional until the Phase-7 flip. */
53
53
  id?: PageId;
54
54
  /** Page name (PascalCase, e.g., "TasksPage") */
@@ -68,7 +68,7 @@ interface OrbitalPage {
68
68
  traits?: PageTraitRef[];
69
69
  /** Is this the initial page for navigation? */
70
70
  isInitial?: boolean;
71
- }
71
+ };
72
72
  /**
73
73
  * Strict Zod schema for trait-driven pages.
74
74
  * Rejects unknown properties like 'sections'.
@@ -293,7 +293,7 @@ declare const EntitySemanticRoleSchema: z.ZodEnum<["domain_core", "domain_suppor
293
293
  * Domain-specific vocabulary for naming conventions.
294
294
  * Maps generic terms to domain-appropriate labels.
295
295
  */
296
- interface DomainVocabulary {
296
+ type DomainVocabulary = {
297
297
  /** Label for items (e.g., "Task", "Cargo", "Patient") */
298
298
  item?: string;
299
299
  /** Label for collections (e.g., "Tasks", "Inventory", "Patients") */
@@ -306,19 +306,19 @@ interface DomainVocabulary {
306
306
  container?: string;
307
307
  /** Additional custom vocabulary */
308
308
  [key: string]: string | undefined;
309
- }
309
+ };
310
310
  declare const DomainVocabularySchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
311
311
  /**
312
312
  * User persona for UX decisions
313
313
  */
314
- interface UserPersona {
314
+ type UserPersona = {
315
315
  /** Persona name */
316
316
  name: string;
317
317
  /** Role for RBAC */
318
318
  role?: string;
319
319
  /** Primary device */
320
320
  device?: "mobile" | "tablet" | "desktop";
321
- }
321
+ };
322
322
  declare const UserPersonaSchema: z.ZodObject<{
323
323
  name: z.ZodString;
324
324
  role: z.ZodOptional<z.ZodString>;
@@ -335,7 +335,7 @@ declare const UserPersonaSchema: z.ZodObject<{
335
335
  /**
336
336
  * Domain context - user request + classification
337
337
  */
338
- interface DomainContext {
338
+ type DomainContext = {
339
339
  /** Original user request - verbatim (typically at schema level) */
340
340
  request: string;
341
341
  /**
@@ -367,7 +367,7 @@ interface DomainContext {
367
367
  personas?: UserPersona[];
368
368
  /** Domain-specific vocabulary for naming */
369
369
  vocabulary?: DomainVocabulary;
370
- }
370
+ };
371
371
  declare const DomainContextSchema: z.ZodObject<{
372
372
  request: z.ZodString;
373
373
  requestFragment: z.ZodOptional<z.ZodString>;
@@ -422,7 +422,7 @@ declare const DomainContextSchema: z.ZodObject<{
422
422
  * including 'dashboard-grid', 'none', etc. The subagent generator interprets these
423
423
  * flexibly to produce appropriate render-ui effects.
424
424
  */
425
- interface UXHints {
425
+ type UXHints = {
426
426
  /** Overall user flow pattern (e.g., 'hub-spoke', 'crud-cycle', 'linear') */
427
427
  flowPattern?: string;
428
428
  /** Pattern for displaying lists (e.g., 'entity-table', 'entity-cards', 'dashboard-grid', 'none') */
@@ -433,7 +433,7 @@ interface UXHints {
433
433
  detailPattern?: string;
434
434
  /** Cross-orbital navigation links */
435
435
  relatedLinks?: RelatedLink[];
436
- }
436
+ };
437
437
  declare const UXHintsSchema: z.ZodObject<{
438
438
  flowPattern: z.ZodOptional<z.ZodString>;
439
439
  listPattern: z.ZodOptional<z.ZodString>;
@@ -476,14 +476,14 @@ declare const UXHintsSchema: z.ZodObject<{
476
476
  /**
477
477
  * Related link for cross-orbital navigation.
478
478
  */
479
- interface RelatedLink {
479
+ type RelatedLink = {
480
480
  /** Field name of the relation (e.g., "customerId") */
481
481
  relation: string;
482
482
  /** Button/link text (e.g., "View Customer") */
483
483
  label: string;
484
484
  /** Target view type */
485
485
  targetView?: "list" | "detail";
486
- }
486
+ };
487
487
  declare const RelatedLinkSchema: z.ZodObject<{
488
488
  relation: z.ZodString;
489
489
  label: z.ZodString;
@@ -501,14 +501,14 @@ declare const RelatedLinkSchema: z.ZodObject<{
501
501
  * Suggested guard - natural language description for decomposition phase.
502
502
  * Generator converts these to S-expressions during generation.
503
503
  */
504
- interface SuggestedGuard {
504
+ type SuggestedGuard = {
505
505
  /** Unique identifier */
506
506
  id: string;
507
507
  /** Natural language description (e.g., "Weight must be under 1000kg") */
508
508
  description: string;
509
509
  /** Events this guard applies to (e.g., ["Cargo.CREATE", "Cargo.UPDATE"]) */
510
510
  appliesTo: string[];
511
- }
511
+ };
512
512
  declare const SuggestedGuardSchema: z.ZodObject<{
513
513
  id: z.ZodString;
514
514
  description: z.ZodString;
@@ -525,7 +525,7 @@ declare const SuggestedGuardSchema: z.ZodObject<{
525
525
  /**
526
526
  * Design preferences for visual styling
527
527
  */
528
- interface DesignPreferences {
528
+ type DesignPreferences = {
529
529
  /** Design style */
530
530
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive";
531
531
  /** Primary color (hex) */
@@ -536,7 +536,7 @@ interface DesignPreferences {
536
536
  darkMode?: boolean;
537
537
  /** UX hints for pattern selection */
538
538
  uxHints?: UXHints;
539
- }
539
+ };
540
540
  declare const DesignPreferencesSchema: z.ZodObject<{
541
541
  style: z.ZodOptional<z.ZodEnum<["minimal", "modern", "playful", "data-driven", "immersive"]>>;
542
542
  primaryColor: z.ZodOptional<z.ZodString>;
@@ -615,7 +615,7 @@ declare const DesignPreferencesSchema: z.ZodObject<{
615
615
  } | undefined;
616
616
  }>;
617
617
  /** Spacing scale entry — each step pairs with a CSS `--space-N` variable */
618
- interface SpacingScale {
618
+ type SpacingScale = {
619
619
  space0?: string;
620
620
  space1?: string;
621
621
  space2?: string;
@@ -629,7 +629,7 @@ interface SpacingScale {
629
629
  space10?: string;
630
630
  space11?: string;
631
631
  space12?: string;
632
- }
632
+ };
633
633
  declare const SpacingScaleSchema: z.ZodObject<{
634
634
  space0: z.ZodOptional<z.ZodString>;
635
635
  space1: z.ZodOptional<z.ZodString>;
@@ -677,7 +677,7 @@ declare const SpacingScaleSchema: z.ZodObject<{
677
677
  * Density axis — spacing rhythm + per-element heights and paddings.
678
678
  * Determines whether a UI feels compact (Linear), cozy (default), or spacious (Notion).
679
679
  */
680
- interface DensityTokens {
680
+ type DensityTokens = {
681
681
  spacing?: SpacingScale;
682
682
  buttonHeightSm?: string;
683
683
  buttonHeightMd?: string;
@@ -693,7 +693,7 @@ interface DensityTokens {
693
693
  cardPaddingLg?: string;
694
694
  dialogPadding?: string;
695
695
  sectionGap?: string;
696
- }
696
+ };
697
697
  declare const DensityTokensSchema: z.ZodObject<{
698
698
  spacing: z.ZodOptional<z.ZodObject<{
699
699
  space0: z.ZodOptional<z.ZodString>;
@@ -814,10 +814,10 @@ declare const DensityTokensSchema: z.ZodObject<{
814
814
  sectionGap?: string | undefined;
815
815
  }>;
816
816
  /** Single entry in the type scale — size + matching line-height */
817
- interface TypeScaleEntry {
817
+ type TypeScaleEntry = {
818
818
  size: string;
819
819
  lineHeight: string;
820
- }
820
+ };
821
821
  declare const TypeScaleEntrySchema: z.ZodObject<{
822
822
  size: z.ZodString;
823
823
  lineHeight: z.ZodString;
@@ -838,11 +838,11 @@ declare const TypeSizeKeySchema: z.ZodEnum<["xs", "sm", "base", "lg", "xl", "2xl
838
838
  type TypeWeight = "normal" | "medium" | "bold";
839
839
  declare const TypeWeightSchema: z.ZodEnum<["normal", "medium", "bold"]>;
840
840
  /** Intent → (slot, size, weight) mapping. Authors write intent in render-ui; skin resolves. */
841
- interface TypeIntent {
841
+ type TypeIntent = {
842
842
  slot: TypeSlot;
843
843
  size: TypeSizeKey;
844
844
  weight: TypeWeight;
845
- }
845
+ };
846
846
  declare const TypeIntentSchema: z.ZodObject<{
847
847
  slot: z.ZodEnum<["display", "body", "mono"]>;
848
848
  size: z.ZodEnum<["xs", "sm", "base", "lg", "xl", "2xl", "3xl", "4xl", "display-1", "display-2"]>;
@@ -856,7 +856,7 @@ declare const TypeIntentSchema: z.ZodObject<{
856
856
  size: "sm" | "lg" | "xl" | "xs" | "2xl" | "3xl" | "base" | "4xl" | "display-1" | "display-2";
857
857
  weight: "normal" | "medium" | "bold";
858
858
  }>;
859
- interface TypeScale {
859
+ type TypeScale = {
860
860
  xs?: TypeScaleEntry;
861
861
  sm?: TypeScaleEntry;
862
862
  base?: TypeScaleEntry;
@@ -867,7 +867,7 @@ interface TypeScale {
867
867
  "4xl"?: TypeScaleEntry;
868
868
  "display-1"?: TypeScaleEntry;
869
869
  "display-2"?: TypeScaleEntry;
870
- }
870
+ };
871
871
  declare const TypeScaleSchema: z.ZodObject<{
872
872
  xs: z.ZodOptional<z.ZodObject<{
873
873
  size: z.ZodString;
@@ -1052,7 +1052,7 @@ declare const TypeScaleSchema: z.ZodObject<{
1052
1052
  lineHeight: string;
1053
1053
  } | undefined;
1054
1054
  }>;
1055
- interface TypeIntentMap {
1055
+ type TypeIntentMap = {
1056
1056
  headingMajor?: TypeIntent;
1057
1057
  headingMinor?: TypeIntent;
1058
1058
  bodyEmphasis?: TypeIntent;
@@ -1060,7 +1060,7 @@ interface TypeIntentMap {
1060
1060
  bodyQuiet?: TypeIntent;
1061
1061
  caption?: TypeIntent;
1062
1062
  numeric?: TypeIntent;
1063
- }
1063
+ };
1064
1064
  declare const TypeIntentMapSchema: z.ZodObject<{
1065
1065
  headingMajor: z.ZodOptional<z.ZodObject<{
1066
1066
  slot: z.ZodEnum<["display", "body", "mono"]>;
@@ -1231,13 +1231,13 @@ declare const TypeIntentMapSchema: z.ZodObject<{
1231
1231
  * Determines whether a UI reads as editorial (serif display + sans body),
1232
1232
  * tech (sans + mono numeric), or dense (mono everywhere, tight leading).
1233
1233
  */
1234
- interface TypeScaleTokens {
1234
+ type TypeScaleTokens = {
1235
1235
  displayFamily?: string;
1236
1236
  bodyFamily?: string;
1237
1237
  monoFamily?: string;
1238
1238
  scale?: TypeScale;
1239
1239
  intents?: TypeIntentMap;
1240
- }
1240
+ };
1241
1241
  declare const TypeScaleTokensSchema: z.ZodObject<{
1242
1242
  displayFamily: z.ZodOptional<z.ZodString>;
1243
1243
  bodyFamily: z.ZodOptional<z.ZodString>;
@@ -1765,10 +1765,10 @@ declare const MotionDurationKeySchema: z.ZodEnum<["instant", "fast", "normal", "
1765
1765
  type MotionEasingKey = "linear" | "standard" | "emphasized" | "spring";
1766
1766
  declare const MotionEasingKeySchema: z.ZodEnum<["linear", "standard", "emphasized", "spring"]>;
1767
1767
  /** Per-intent motion specification (duration + easing) */
1768
- interface MotionIntent {
1768
+ type MotionIntent = {
1769
1769
  duration: MotionDurationKey;
1770
1770
  easing: MotionEasingKey;
1771
- }
1771
+ };
1772
1772
  declare const MotionIntentSchema: z.ZodObject<{
1773
1773
  duration: z.ZodEnum<["instant", "fast", "normal", "slow", "dramatic"]>;
1774
1774
  easing: z.ZodEnum<["linear", "standard", "emphasized", "spring"]>;
@@ -1779,13 +1779,13 @@ declare const MotionIntentSchema: z.ZodObject<{
1779
1779
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
1780
1780
  easing: "linear" | "standard" | "emphasized" | "spring";
1781
1781
  }>;
1782
- interface MotionDurationPalette {
1782
+ type MotionDurationPalette = {
1783
1783
  instant?: string;
1784
1784
  fast?: string;
1785
1785
  normal?: string;
1786
1786
  slow?: string;
1787
1787
  dramatic?: string;
1788
- }
1788
+ };
1789
1789
  declare const MotionDurationPaletteSchema: z.ZodObject<{
1790
1790
  instant: z.ZodOptional<z.ZodString>;
1791
1791
  fast: z.ZodOptional<z.ZodString>;
@@ -1805,12 +1805,12 @@ declare const MotionDurationPaletteSchema: z.ZodObject<{
1805
1805
  slow?: string | undefined;
1806
1806
  dramatic?: string | undefined;
1807
1807
  }>;
1808
- interface MotionEasingPalette {
1808
+ type MotionEasingPalette = {
1809
1809
  linear?: string;
1810
1810
  standard?: string;
1811
1811
  emphasized?: string;
1812
1812
  spring?: string;
1813
- }
1813
+ };
1814
1814
  declare const MotionEasingPaletteSchema: z.ZodObject<{
1815
1815
  linear: z.ZodOptional<z.ZodString>;
1816
1816
  standard: z.ZodOptional<z.ZodString>;
@@ -1827,14 +1827,14 @@ declare const MotionEasingPaletteSchema: z.ZodObject<{
1827
1827
  emphasized?: string | undefined;
1828
1828
  spring?: string | undefined;
1829
1829
  }>;
1830
- interface MotionIntentMap {
1830
+ type MotionIntentMap = {
1831
1831
  enter?: MotionIntent;
1832
1832
  exit?: MotionIntent;
1833
1833
  hover?: MotionIntent;
1834
1834
  press?: MotionIntent;
1835
1835
  expand?: MotionIntent;
1836
1836
  transition?: MotionIntent;
1837
- }
1837
+ };
1838
1838
  declare const MotionIntentMapSchema: z.ZodObject<{
1839
1839
  enter: z.ZodOptional<z.ZodObject<{
1840
1840
  duration: z.ZodEnum<["instant", "fast", "normal", "slow", "dramatic"]>;
@@ -1901,6 +1901,10 @@ declare const MotionIntentMapSchema: z.ZodObject<{
1901
1901
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
1902
1902
  easing: "linear" | "standard" | "emphasized" | "spring";
1903
1903
  } | undefined;
1904
+ transition?: {
1905
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
1906
+ easing: "linear" | "standard" | "emphasized" | "spring";
1907
+ } | undefined;
1904
1908
  enter?: {
1905
1909
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
1906
1910
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -1917,12 +1921,12 @@ declare const MotionIntentMapSchema: z.ZodObject<{
1917
1921
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
1918
1922
  easing: "linear" | "standard" | "emphasized" | "spring";
1919
1923
  } | undefined;
1920
- transition?: {
1924
+ }, {
1925
+ hover?: {
1921
1926
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
1922
1927
  easing: "linear" | "standard" | "emphasized" | "spring";
1923
1928
  } | undefined;
1924
- }, {
1925
- hover?: {
1929
+ transition?: {
1926
1930
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
1927
1931
  easing: "linear" | "standard" | "emphasized" | "spring";
1928
1932
  } | undefined;
@@ -1942,20 +1946,16 @@ declare const MotionIntentMapSchema: z.ZodObject<{
1942
1946
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
1943
1947
  easing: "linear" | "standard" | "emphasized" | "spring";
1944
1948
  } | undefined;
1945
- transition?: {
1946
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
1947
- easing: "linear" | "standard" | "emphasized" | "spring";
1948
- } | undefined;
1949
1949
  }>;
1950
1950
  /**
1951
1951
  * Motion axis — duration palette + easing palette + per-intent mapping.
1952
1952
  * Mechanical (linear, fast) vs organic (cubic-bezier, medium) vs dramatic (spring, slow).
1953
1953
  */
1954
- interface MotionTokens {
1954
+ type MotionTokens = {
1955
1955
  durations?: MotionDurationPalette;
1956
1956
  easings?: MotionEasingPalette;
1957
1957
  intents?: MotionIntentMap;
1958
- }
1958
+ };
1959
1959
  declare const MotionTokensSchema: z.ZodObject<{
1960
1960
  durations: z.ZodOptional<z.ZodObject<{
1961
1961
  instant: z.ZodOptional<z.ZodString>;
@@ -2058,6 +2058,10 @@ declare const MotionTokensSchema: z.ZodObject<{
2058
2058
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2059
2059
  easing: "linear" | "standard" | "emphasized" | "spring";
2060
2060
  } | undefined;
2061
+ transition?: {
2062
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2063
+ easing: "linear" | "standard" | "emphasized" | "spring";
2064
+ } | undefined;
2061
2065
  enter?: {
2062
2066
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2063
2067
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -2074,12 +2078,12 @@ declare const MotionTokensSchema: z.ZodObject<{
2074
2078
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2075
2079
  easing: "linear" | "standard" | "emphasized" | "spring";
2076
2080
  } | undefined;
2077
- transition?: {
2081
+ }, {
2082
+ hover?: {
2078
2083
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2079
2084
  easing: "linear" | "standard" | "emphasized" | "spring";
2080
2085
  } | undefined;
2081
- }, {
2082
- hover?: {
2086
+ transition?: {
2083
2087
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2084
2088
  easing: "linear" | "standard" | "emphasized" | "spring";
2085
2089
  } | undefined;
@@ -2099,10 +2103,6 @@ declare const MotionTokensSchema: z.ZodObject<{
2099
2103
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2100
2104
  easing: "linear" | "standard" | "emphasized" | "spring";
2101
2105
  } | undefined;
2102
- transition?: {
2103
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2104
- easing: "linear" | "standard" | "emphasized" | "spring";
2105
- } | undefined;
2106
2106
  }>>;
2107
2107
  }, "strip", z.ZodTypeAny, {
2108
2108
  intents?: {
@@ -2110,6 +2110,10 @@ declare const MotionTokensSchema: z.ZodObject<{
2110
2110
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2111
2111
  easing: "linear" | "standard" | "emphasized" | "spring";
2112
2112
  } | undefined;
2113
+ transition?: {
2114
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2115
+ easing: "linear" | "standard" | "emphasized" | "spring";
2116
+ } | undefined;
2113
2117
  enter?: {
2114
2118
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2115
2119
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -2126,10 +2130,6 @@ declare const MotionTokensSchema: z.ZodObject<{
2126
2130
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2127
2131
  easing: "linear" | "standard" | "emphasized" | "spring";
2128
2132
  } | undefined;
2129
- transition?: {
2130
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2131
- easing: "linear" | "standard" | "emphasized" | "spring";
2132
- } | undefined;
2133
2133
  } | undefined;
2134
2134
  durations?: {
2135
2135
  normal?: string | undefined;
@@ -2150,6 +2150,10 @@ declare const MotionTokensSchema: z.ZodObject<{
2150
2150
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2151
2151
  easing: "linear" | "standard" | "emphasized" | "spring";
2152
2152
  } | undefined;
2153
+ transition?: {
2154
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2155
+ easing: "linear" | "standard" | "emphasized" | "spring";
2156
+ } | undefined;
2153
2157
  enter?: {
2154
2158
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2155
2159
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -2166,10 +2170,6 @@ declare const MotionTokensSchema: z.ZodObject<{
2166
2170
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2167
2171
  easing: "linear" | "standard" | "emphasized" | "spring";
2168
2172
  } | undefined;
2169
- transition?: {
2170
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
2171
- easing: "linear" | "standard" | "emphasized" | "spring";
2172
- } | undefined;
2173
2173
  } | undefined;
2174
2174
  durations?: {
2175
2175
  normal?: string | undefined;
@@ -2192,11 +2192,11 @@ declare const IconFamilySchema: z.ZodEnum<["lucide", "phosphor-outline", "phosph
2192
2192
  * Iconography axis — icon set + stroke + default size.
2193
2193
  * Outline (Lucide) vs filled (Phosphor-fill) vs duotone (Phosphor-duotone).
2194
2194
  */
2195
- interface IconographyTokens {
2195
+ type IconographyTokens = {
2196
2196
  family?: IconFamily;
2197
2197
  strokeWidth?: string;
2198
2198
  defaultSize?: string;
2199
- }
2199
+ };
2200
2200
  declare const IconographyTokensSchema: z.ZodObject<{
2201
2201
  family: z.ZodOptional<z.ZodEnum<["lucide", "phosphor-outline", "phosphor-fill", "phosphor-duotone", "tabler", "fa-solid"]>>;
2202
2202
  strokeWidth: z.ZodOptional<z.ZodString>;
@@ -2214,12 +2214,12 @@ declare const IconographyTokensSchema: z.ZodObject<{
2214
2214
  * Elevation axis — per-layer shadow mapping.
2215
2215
  * Each value references a `--shadow-*` token or a raw CSS shadow value.
2216
2216
  */
2217
- interface ElevationTokens {
2217
+ type ElevationTokens = {
2218
2218
  cardElevation?: string;
2219
2219
  popoverElevation?: string;
2220
2220
  dialogElevation?: string;
2221
2221
  toastElevation?: string;
2222
- }
2222
+ };
2223
2223
  declare const ElevationTokensSchema: z.ZodObject<{
2224
2224
  cardElevation: z.ZodOptional<z.ZodString>;
2225
2225
  popoverElevation: z.ZodOptional<z.ZodString>;
@@ -2240,14 +2240,14 @@ declare const ElevationTokensSchema: z.ZodObject<{
2240
2240
  * Geometry axis — radius rhythm + border-width rhythm with intent.
2241
2241
  * Sharp (radius 0) vs soft (radius 8/12) vs pill (radius full on interactive).
2242
2242
  */
2243
- interface GeometryTokens {
2243
+ type GeometryTokens = {
2244
2244
  radiusContainer?: string;
2245
2245
  radiusInteractive?: string;
2246
2246
  radiusPill?: string;
2247
2247
  borderHairline?: string;
2248
2248
  borderStandard?: string;
2249
2249
  borderHeavy?: string;
2250
- }
2250
+ };
2251
2251
  declare const GeometryTokensSchema: z.ZodObject<{
2252
2252
  radiusContainer: z.ZodOptional<z.ZodString>;
2253
2253
  radiusInteractive: z.ZodOptional<z.ZodString>;
@@ -2278,7 +2278,7 @@ declare const GeometryTokensSchema: z.ZodObject<{
2278
2278
  * `--color-*` CSS custom property emitted by themes. All fields are optional
2279
2279
  * so a partial slice can layer onto a default (light/dark mode pair, etc.).
2280
2280
  */
2281
- interface ColorTokens {
2281
+ type ColorTokens = {
2282
2282
  primary?: string;
2283
2283
  primaryHover?: string;
2284
2284
  primaryForeground?: string;
@@ -2311,7 +2311,7 @@ interface ColorTokens {
2311
2311
  surfaceHover?: string;
2312
2312
  borderHover?: string;
2313
2313
  placeholder?: string;
2314
- }
2314
+ };
2315
2315
  declare const ColorTokensSchema: z.ZodObject<{
2316
2316
  primary: z.ZodOptional<z.ZodString>;
2317
2317
  primaryHover: z.ZodOptional<z.ZodString>;
@@ -2428,13 +2428,13 @@ declare const IllustrationStyleSchema: z.ZodEnum<["minimal", "illustrated", "pho
2428
2428
  * `style` selects the preset; the per-state `*Asset` fields are optional
2429
2429
  * overrides for skins that want to ship custom artwork.
2430
2430
  */
2431
- interface IllustrationTokens {
2431
+ type IllustrationTokens = {
2432
2432
  style?: IllustrationStyle;
2433
2433
  emptyAsset?: string;
2434
2434
  loadingAsset?: string;
2435
2435
  errorAsset?: string;
2436
2436
  onboardingAsset?: string;
2437
- }
2437
+ };
2438
2438
  declare const IllustrationTokensSchema: z.ZodObject<{
2439
2439
  style: z.ZodOptional<z.ZodEnum<["minimal", "illustrated", "photo", "text-only", "mascot"]>>;
2440
2440
  emptyAsset: z.ZodOptional<z.ZodString>;
@@ -2463,7 +2463,7 @@ declare const IllustrationTokensSchema: z.ZodObject<{
2463
2463
  * `iconography`, `elevation`, `geometry`) carry the structured token surface
2464
2464
  * that lets two themes feel like different products, not just different paint.
2465
2465
  */
2466
- interface ThemeTokens {
2466
+ type ThemeTokens = {
2467
2467
  /**
2468
2468
  * Color axis — typed semantic + surface + feedback colors.
2469
2469
  * Replaces the free-form `colors` Record below for new authors.
@@ -2493,7 +2493,7 @@ interface ThemeTokens {
2493
2493
  typography?: Record<string, string>;
2494
2494
  /** @deprecated Use `elevation` (typed per-layer mapping). */
2495
2495
  shadows?: Record<string, string>;
2496
- }
2496
+ };
2497
2497
  declare const ThemeTokensSchema: z.ZodObject<{
2498
2498
  color: z.ZodOptional<z.ZodObject<{
2499
2499
  primary: z.ZodOptional<z.ZodString>;
@@ -3336,6 +3336,10 @@ declare const ThemeTokensSchema: z.ZodObject<{
3336
3336
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3337
3337
  easing: "linear" | "standard" | "emphasized" | "spring";
3338
3338
  } | undefined;
3339
+ transition?: {
3340
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3341
+ easing: "linear" | "standard" | "emphasized" | "spring";
3342
+ } | undefined;
3339
3343
  enter?: {
3340
3344
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3341
3345
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -3352,12 +3356,12 @@ declare const ThemeTokensSchema: z.ZodObject<{
3352
3356
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3353
3357
  easing: "linear" | "standard" | "emphasized" | "spring";
3354
3358
  } | undefined;
3355
- transition?: {
3359
+ }, {
3360
+ hover?: {
3356
3361
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3357
3362
  easing: "linear" | "standard" | "emphasized" | "spring";
3358
3363
  } | undefined;
3359
- }, {
3360
- hover?: {
3364
+ transition?: {
3361
3365
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3362
3366
  easing: "linear" | "standard" | "emphasized" | "spring";
3363
3367
  } | undefined;
@@ -3377,10 +3381,6 @@ declare const ThemeTokensSchema: z.ZodObject<{
3377
3381
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3378
3382
  easing: "linear" | "standard" | "emphasized" | "spring";
3379
3383
  } | undefined;
3380
- transition?: {
3381
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3382
- easing: "linear" | "standard" | "emphasized" | "spring";
3383
- } | undefined;
3384
3384
  }>>;
3385
3385
  }, "strip", z.ZodTypeAny, {
3386
3386
  intents?: {
@@ -3388,6 +3388,10 @@ declare const ThemeTokensSchema: z.ZodObject<{
3388
3388
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3389
3389
  easing: "linear" | "standard" | "emphasized" | "spring";
3390
3390
  } | undefined;
3391
+ transition?: {
3392
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3393
+ easing: "linear" | "standard" | "emphasized" | "spring";
3394
+ } | undefined;
3391
3395
  enter?: {
3392
3396
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3393
3397
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -3404,10 +3408,6 @@ declare const ThemeTokensSchema: z.ZodObject<{
3404
3408
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3405
3409
  easing: "linear" | "standard" | "emphasized" | "spring";
3406
3410
  } | undefined;
3407
- transition?: {
3408
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3409
- easing: "linear" | "standard" | "emphasized" | "spring";
3410
- } | undefined;
3411
3411
  } | undefined;
3412
3412
  durations?: {
3413
3413
  normal?: string | undefined;
@@ -3428,6 +3428,10 @@ declare const ThemeTokensSchema: z.ZodObject<{
3428
3428
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3429
3429
  easing: "linear" | "standard" | "emphasized" | "spring";
3430
3430
  } | undefined;
3431
+ transition?: {
3432
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3433
+ easing: "linear" | "standard" | "emphasized" | "spring";
3434
+ } | undefined;
3431
3435
  enter?: {
3432
3436
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3433
3437
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -3444,10 +3448,6 @@ declare const ThemeTokensSchema: z.ZodObject<{
3444
3448
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3445
3449
  easing: "linear" | "standard" | "emphasized" | "spring";
3446
3450
  } | undefined;
3447
- transition?: {
3448
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3449
- easing: "linear" | "standard" | "emphasized" | "spring";
3450
- } | undefined;
3451
3451
  } | undefined;
3452
3452
  durations?: {
3453
3453
  normal?: string | undefined;
@@ -3703,6 +3703,10 @@ declare const ThemeTokensSchema: z.ZodObject<{
3703
3703
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3704
3704
  easing: "linear" | "standard" | "emphasized" | "spring";
3705
3705
  } | undefined;
3706
+ transition?: {
3707
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3708
+ easing: "linear" | "standard" | "emphasized" | "spring";
3709
+ } | undefined;
3706
3710
  enter?: {
3707
3711
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3708
3712
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -3719,10 +3723,6 @@ declare const ThemeTokensSchema: z.ZodObject<{
3719
3723
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3720
3724
  easing: "linear" | "standard" | "emphasized" | "spring";
3721
3725
  } | undefined;
3722
- transition?: {
3723
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3724
- easing: "linear" | "standard" | "emphasized" | "spring";
3725
- } | undefined;
3726
3726
  } | undefined;
3727
3727
  durations?: {
3728
3728
  normal?: string | undefined;
@@ -3925,6 +3925,10 @@ declare const ThemeTokensSchema: z.ZodObject<{
3925
3925
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3926
3926
  easing: "linear" | "standard" | "emphasized" | "spring";
3927
3927
  } | undefined;
3928
+ transition?: {
3929
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3930
+ easing: "linear" | "standard" | "emphasized" | "spring";
3931
+ } | undefined;
3928
3932
  enter?: {
3929
3933
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3930
3934
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -3941,10 +3945,6 @@ declare const ThemeTokensSchema: z.ZodObject<{
3941
3945
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3942
3946
  easing: "linear" | "standard" | "emphasized" | "spring";
3943
3947
  } | undefined;
3944
- transition?: {
3945
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
3946
- easing: "linear" | "standard" | "emphasized" | "spring";
3947
- } | undefined;
3948
3948
  } | undefined;
3949
3949
  durations?: {
3950
3950
  normal?: string | undefined;
@@ -3987,7 +3987,7 @@ declare const ThemeTokensSchema: z.ZodObject<{
3987
3987
  * Theme variant - overrides for a specific mode (e.g., dark mode).
3988
3988
  * Mirrors ThemeTokens fields with the same backward-compat + new-axis structure.
3989
3989
  */
3990
- interface ThemeVariant {
3990
+ type ThemeVariant = {
3991
3991
  /** Color axis overrides */
3992
3992
  color?: ColorTokens;
3993
3993
  /** Density axis overrides */
@@ -4014,7 +4014,7 @@ interface ThemeVariant {
4014
4014
  typography?: Record<string, string>;
4015
4015
  /** @deprecated */
4016
4016
  shadows?: Record<string, string>;
4017
- }
4017
+ };
4018
4018
  declare const ThemeVariantSchema: z.ZodObject<{
4019
4019
  color: z.ZodOptional<z.ZodObject<{
4020
4020
  primary: z.ZodOptional<z.ZodString>;
@@ -4857,6 +4857,10 @@ declare const ThemeVariantSchema: z.ZodObject<{
4857
4857
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4858
4858
  easing: "linear" | "standard" | "emphasized" | "spring";
4859
4859
  } | undefined;
4860
+ transition?: {
4861
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4862
+ easing: "linear" | "standard" | "emphasized" | "spring";
4863
+ } | undefined;
4860
4864
  enter?: {
4861
4865
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4862
4866
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -4873,12 +4877,12 @@ declare const ThemeVariantSchema: z.ZodObject<{
4873
4877
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4874
4878
  easing: "linear" | "standard" | "emphasized" | "spring";
4875
4879
  } | undefined;
4876
- transition?: {
4880
+ }, {
4881
+ hover?: {
4877
4882
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4878
4883
  easing: "linear" | "standard" | "emphasized" | "spring";
4879
4884
  } | undefined;
4880
- }, {
4881
- hover?: {
4885
+ transition?: {
4882
4886
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4883
4887
  easing: "linear" | "standard" | "emphasized" | "spring";
4884
4888
  } | undefined;
@@ -4898,10 +4902,6 @@ declare const ThemeVariantSchema: z.ZodObject<{
4898
4902
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4899
4903
  easing: "linear" | "standard" | "emphasized" | "spring";
4900
4904
  } | undefined;
4901
- transition?: {
4902
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4903
- easing: "linear" | "standard" | "emphasized" | "spring";
4904
- } | undefined;
4905
4905
  }>>;
4906
4906
  }, "strip", z.ZodTypeAny, {
4907
4907
  intents?: {
@@ -4909,6 +4909,10 @@ declare const ThemeVariantSchema: z.ZodObject<{
4909
4909
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4910
4910
  easing: "linear" | "standard" | "emphasized" | "spring";
4911
4911
  } | undefined;
4912
+ transition?: {
4913
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4914
+ easing: "linear" | "standard" | "emphasized" | "spring";
4915
+ } | undefined;
4912
4916
  enter?: {
4913
4917
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4914
4918
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -4925,10 +4929,6 @@ declare const ThemeVariantSchema: z.ZodObject<{
4925
4929
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4926
4930
  easing: "linear" | "standard" | "emphasized" | "spring";
4927
4931
  } | undefined;
4928
- transition?: {
4929
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4930
- easing: "linear" | "standard" | "emphasized" | "spring";
4931
- } | undefined;
4932
4932
  } | undefined;
4933
4933
  durations?: {
4934
4934
  normal?: string | undefined;
@@ -4949,6 +4949,10 @@ declare const ThemeVariantSchema: z.ZodObject<{
4949
4949
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4950
4950
  easing: "linear" | "standard" | "emphasized" | "spring";
4951
4951
  } | undefined;
4952
+ transition?: {
4953
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4954
+ easing: "linear" | "standard" | "emphasized" | "spring";
4955
+ } | undefined;
4952
4956
  enter?: {
4953
4957
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4954
4958
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -4965,10 +4969,6 @@ declare const ThemeVariantSchema: z.ZodObject<{
4965
4969
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4966
4970
  easing: "linear" | "standard" | "emphasized" | "spring";
4967
4971
  } | undefined;
4968
- transition?: {
4969
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
4970
- easing: "linear" | "standard" | "emphasized" | "spring";
4971
- } | undefined;
4972
4972
  } | undefined;
4973
4973
  durations?: {
4974
4974
  normal?: string | undefined;
@@ -5224,6 +5224,10 @@ declare const ThemeVariantSchema: z.ZodObject<{
5224
5224
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
5225
5225
  easing: "linear" | "standard" | "emphasized" | "spring";
5226
5226
  } | undefined;
5227
+ transition?: {
5228
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
5229
+ easing: "linear" | "standard" | "emphasized" | "spring";
5230
+ } | undefined;
5227
5231
  enter?: {
5228
5232
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
5229
5233
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -5240,10 +5244,6 @@ declare const ThemeVariantSchema: z.ZodObject<{
5240
5244
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
5241
5245
  easing: "linear" | "standard" | "emphasized" | "spring";
5242
5246
  } | undefined;
5243
- transition?: {
5244
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
5245
- easing: "linear" | "standard" | "emphasized" | "spring";
5246
- } | undefined;
5247
5247
  } | undefined;
5248
5248
  durations?: {
5249
5249
  normal?: string | undefined;
@@ -5446,6 +5446,10 @@ declare const ThemeVariantSchema: z.ZodObject<{
5446
5446
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
5447
5447
  easing: "linear" | "standard" | "emphasized" | "spring";
5448
5448
  } | undefined;
5449
+ transition?: {
5450
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
5451
+ easing: "linear" | "standard" | "emphasized" | "spring";
5452
+ } | undefined;
5449
5453
  enter?: {
5450
5454
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
5451
5455
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -5462,10 +5466,6 @@ declare const ThemeVariantSchema: z.ZodObject<{
5462
5466
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
5463
5467
  easing: "linear" | "standard" | "emphasized" | "spring";
5464
5468
  } | undefined;
5465
- transition?: {
5466
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
5467
- easing: "linear" | "standard" | "emphasized" | "spring";
5468
- } | undefined;
5469
5469
  } | undefined;
5470
5470
  durations?: {
5471
5471
  normal?: string | undefined;
@@ -5507,14 +5507,14 @@ declare const ThemeVariantSchema: z.ZodObject<{
5507
5507
  /**
5508
5508
  * Theme definition - design system for an orbital.
5509
5509
  */
5510
- interface ThemeDefinition {
5510
+ type ThemeDefinition = {
5511
5511
  /** Theme name */
5512
5512
  name: string;
5513
5513
  /** Base tokens */
5514
5514
  tokens: ThemeTokens;
5515
5515
  /** Named variants (e.g., "dark", "high-contrast") */
5516
5516
  variants?: Record<string, ThemeVariant>;
5517
- }
5517
+ };
5518
5518
  declare const ThemeDefinitionSchema: z.ZodObject<{
5519
5519
  name: z.ZodString;
5520
5520
  tokens: z.ZodObject<{
@@ -6359,6 +6359,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
6359
6359
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6360
6360
  easing: "linear" | "standard" | "emphasized" | "spring";
6361
6361
  } | undefined;
6362
+ transition?: {
6363
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6364
+ easing: "linear" | "standard" | "emphasized" | "spring";
6365
+ } | undefined;
6362
6366
  enter?: {
6363
6367
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6364
6368
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -6375,12 +6379,12 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
6375
6379
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6376
6380
  easing: "linear" | "standard" | "emphasized" | "spring";
6377
6381
  } | undefined;
6378
- transition?: {
6382
+ }, {
6383
+ hover?: {
6379
6384
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6380
6385
  easing: "linear" | "standard" | "emphasized" | "spring";
6381
6386
  } | undefined;
6382
- }, {
6383
- hover?: {
6387
+ transition?: {
6384
6388
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6385
6389
  easing: "linear" | "standard" | "emphasized" | "spring";
6386
6390
  } | undefined;
@@ -6400,10 +6404,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
6400
6404
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6401
6405
  easing: "linear" | "standard" | "emphasized" | "spring";
6402
6406
  } | undefined;
6403
- transition?: {
6404
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6405
- easing: "linear" | "standard" | "emphasized" | "spring";
6406
- } | undefined;
6407
6407
  }>>;
6408
6408
  }, "strip", z.ZodTypeAny, {
6409
6409
  intents?: {
@@ -6411,6 +6411,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
6411
6411
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6412
6412
  easing: "linear" | "standard" | "emphasized" | "spring";
6413
6413
  } | undefined;
6414
+ transition?: {
6415
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6416
+ easing: "linear" | "standard" | "emphasized" | "spring";
6417
+ } | undefined;
6414
6418
  enter?: {
6415
6419
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6416
6420
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -6427,10 +6431,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
6427
6431
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6428
6432
  easing: "linear" | "standard" | "emphasized" | "spring";
6429
6433
  } | undefined;
6430
- transition?: {
6431
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6432
- easing: "linear" | "standard" | "emphasized" | "spring";
6433
- } | undefined;
6434
6434
  } | undefined;
6435
6435
  durations?: {
6436
6436
  normal?: string | undefined;
@@ -6451,6 +6451,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
6451
6451
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6452
6452
  easing: "linear" | "standard" | "emphasized" | "spring";
6453
6453
  } | undefined;
6454
+ transition?: {
6455
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6456
+ easing: "linear" | "standard" | "emphasized" | "spring";
6457
+ } | undefined;
6454
6458
  enter?: {
6455
6459
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6456
6460
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -6467,10 +6471,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
6467
6471
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6468
6472
  easing: "linear" | "standard" | "emphasized" | "spring";
6469
6473
  } | undefined;
6470
- transition?: {
6471
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6472
- easing: "linear" | "standard" | "emphasized" | "spring";
6473
- } | undefined;
6474
6474
  } | undefined;
6475
6475
  durations?: {
6476
6476
  normal?: string | undefined;
@@ -6726,6 +6726,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
6726
6726
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6727
6727
  easing: "linear" | "standard" | "emphasized" | "spring";
6728
6728
  } | undefined;
6729
+ transition?: {
6730
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6731
+ easing: "linear" | "standard" | "emphasized" | "spring";
6732
+ } | undefined;
6729
6733
  enter?: {
6730
6734
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6731
6735
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -6742,10 +6746,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
6742
6746
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6743
6747
  easing: "linear" | "standard" | "emphasized" | "spring";
6744
6748
  } | undefined;
6745
- transition?: {
6746
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6747
- easing: "linear" | "standard" | "emphasized" | "spring";
6748
- } | undefined;
6749
6749
  } | undefined;
6750
6750
  durations?: {
6751
6751
  normal?: string | undefined;
@@ -6948,6 +6948,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
6948
6948
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6949
6949
  easing: "linear" | "standard" | "emphasized" | "spring";
6950
6950
  } | undefined;
6951
+ transition?: {
6952
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6953
+ easing: "linear" | "standard" | "emphasized" | "spring";
6954
+ } | undefined;
6951
6955
  enter?: {
6952
6956
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6953
6957
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -6964,10 +6968,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
6964
6968
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6965
6969
  easing: "linear" | "standard" | "emphasized" | "spring";
6966
6970
  } | undefined;
6967
- transition?: {
6968
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
6969
- easing: "linear" | "standard" | "emphasized" | "spring";
6970
- } | undefined;
6971
6971
  } | undefined;
6972
6972
  durations?: {
6973
6973
  normal?: string | undefined;
@@ -7848,6 +7848,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
7848
7848
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7849
7849
  easing: "linear" | "standard" | "emphasized" | "spring";
7850
7850
  } | undefined;
7851
+ transition?: {
7852
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7853
+ easing: "linear" | "standard" | "emphasized" | "spring";
7854
+ } | undefined;
7851
7855
  enter?: {
7852
7856
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7853
7857
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -7864,12 +7868,12 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
7864
7868
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7865
7869
  easing: "linear" | "standard" | "emphasized" | "spring";
7866
7870
  } | undefined;
7867
- transition?: {
7871
+ }, {
7872
+ hover?: {
7868
7873
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7869
7874
  easing: "linear" | "standard" | "emphasized" | "spring";
7870
7875
  } | undefined;
7871
- }, {
7872
- hover?: {
7876
+ transition?: {
7873
7877
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7874
7878
  easing: "linear" | "standard" | "emphasized" | "spring";
7875
7879
  } | undefined;
@@ -7889,10 +7893,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
7889
7893
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7890
7894
  easing: "linear" | "standard" | "emphasized" | "spring";
7891
7895
  } | undefined;
7892
- transition?: {
7893
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7894
- easing: "linear" | "standard" | "emphasized" | "spring";
7895
- } | undefined;
7896
7896
  }>>;
7897
7897
  }, "strip", z.ZodTypeAny, {
7898
7898
  intents?: {
@@ -7900,6 +7900,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
7900
7900
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7901
7901
  easing: "linear" | "standard" | "emphasized" | "spring";
7902
7902
  } | undefined;
7903
+ transition?: {
7904
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7905
+ easing: "linear" | "standard" | "emphasized" | "spring";
7906
+ } | undefined;
7903
7907
  enter?: {
7904
7908
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7905
7909
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -7916,10 +7920,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
7916
7920
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7917
7921
  easing: "linear" | "standard" | "emphasized" | "spring";
7918
7922
  } | undefined;
7919
- transition?: {
7920
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7921
- easing: "linear" | "standard" | "emphasized" | "spring";
7922
- } | undefined;
7923
7923
  } | undefined;
7924
7924
  durations?: {
7925
7925
  normal?: string | undefined;
@@ -7940,6 +7940,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
7940
7940
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7941
7941
  easing: "linear" | "standard" | "emphasized" | "spring";
7942
7942
  } | undefined;
7943
+ transition?: {
7944
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7945
+ easing: "linear" | "standard" | "emphasized" | "spring";
7946
+ } | undefined;
7943
7947
  enter?: {
7944
7948
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7945
7949
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -7956,10 +7960,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
7956
7960
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7957
7961
  easing: "linear" | "standard" | "emphasized" | "spring";
7958
7962
  } | undefined;
7959
- transition?: {
7960
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
7961
- easing: "linear" | "standard" | "emphasized" | "spring";
7962
- } | undefined;
7963
7963
  } | undefined;
7964
7964
  durations?: {
7965
7965
  normal?: string | undefined;
@@ -8215,6 +8215,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
8215
8215
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8216
8216
  easing: "linear" | "standard" | "emphasized" | "spring";
8217
8217
  } | undefined;
8218
+ transition?: {
8219
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8220
+ easing: "linear" | "standard" | "emphasized" | "spring";
8221
+ } | undefined;
8218
8222
  enter?: {
8219
8223
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8220
8224
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -8231,10 +8235,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
8231
8235
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8232
8236
  easing: "linear" | "standard" | "emphasized" | "spring";
8233
8237
  } | undefined;
8234
- transition?: {
8235
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8236
- easing: "linear" | "standard" | "emphasized" | "spring";
8237
- } | undefined;
8238
8238
  } | undefined;
8239
8239
  durations?: {
8240
8240
  normal?: string | undefined;
@@ -8437,6 +8437,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
8437
8437
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8438
8438
  easing: "linear" | "standard" | "emphasized" | "spring";
8439
8439
  } | undefined;
8440
+ transition?: {
8441
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8442
+ easing: "linear" | "standard" | "emphasized" | "spring";
8443
+ } | undefined;
8440
8444
  enter?: {
8441
8445
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8442
8446
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -8453,10 +8457,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
8453
8457
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8454
8458
  easing: "linear" | "standard" | "emphasized" | "spring";
8455
8459
  } | undefined;
8456
- transition?: {
8457
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8458
- easing: "linear" | "standard" | "emphasized" | "spring";
8459
- } | undefined;
8460
8460
  } | undefined;
8461
8461
  durations?: {
8462
8462
  normal?: string | undefined;
@@ -8662,6 +8662,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
8662
8662
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8663
8663
  easing: "linear" | "standard" | "emphasized" | "spring";
8664
8664
  } | undefined;
8665
+ transition?: {
8666
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8667
+ easing: "linear" | "standard" | "emphasized" | "spring";
8668
+ } | undefined;
8665
8669
  enter?: {
8666
8670
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8667
8671
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -8678,10 +8682,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
8678
8682
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8679
8683
  easing: "linear" | "standard" | "emphasized" | "spring";
8680
8684
  } | undefined;
8681
- transition?: {
8682
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8683
- easing: "linear" | "standard" | "emphasized" | "spring";
8684
- } | undefined;
8685
8685
  } | undefined;
8686
8686
  durations?: {
8687
8687
  normal?: string | undefined;
@@ -8885,6 +8885,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
8885
8885
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8886
8886
  easing: "linear" | "standard" | "emphasized" | "spring";
8887
8887
  } | undefined;
8888
+ transition?: {
8889
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8890
+ easing: "linear" | "standard" | "emphasized" | "spring";
8891
+ } | undefined;
8888
8892
  enter?: {
8889
8893
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8890
8894
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -8901,10 +8905,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
8901
8905
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8902
8906
  easing: "linear" | "standard" | "emphasized" | "spring";
8903
8907
  } | undefined;
8904
- transition?: {
8905
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
8906
- easing: "linear" | "standard" | "emphasized" | "spring";
8907
- } | undefined;
8908
8908
  } | undefined;
8909
8909
  durations?: {
8910
8910
  normal?: string | undefined;
@@ -9110,6 +9110,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
9110
9110
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
9111
9111
  easing: "linear" | "standard" | "emphasized" | "spring";
9112
9112
  } | undefined;
9113
+ transition?: {
9114
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
9115
+ easing: "linear" | "standard" | "emphasized" | "spring";
9116
+ } | undefined;
9113
9117
  enter?: {
9114
9118
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
9115
9119
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -9126,10 +9130,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
9126
9130
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
9127
9131
  easing: "linear" | "standard" | "emphasized" | "spring";
9128
9132
  } | undefined;
9129
- transition?: {
9130
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
9131
- easing: "linear" | "standard" | "emphasized" | "spring";
9132
- } | undefined;
9133
9133
  } | undefined;
9134
9134
  durations?: {
9135
9135
  normal?: string | undefined;
@@ -9333,6 +9333,10 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
9333
9333
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
9334
9334
  easing: "linear" | "standard" | "emphasized" | "spring";
9335
9335
  } | undefined;
9336
+ transition?: {
9337
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
9338
+ easing: "linear" | "standard" | "emphasized" | "spring";
9339
+ } | undefined;
9336
9340
  enter?: {
9337
9341
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
9338
9342
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -9349,10 +9353,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
9349
9353
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
9350
9354
  easing: "linear" | "standard" | "emphasized" | "spring";
9351
9355
  } | undefined;
9352
- transition?: {
9353
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
9354
- easing: "linear" | "standard" | "emphasized" | "spring";
9355
- } | undefined;
9356
9356
  } | undefined;
9357
9357
  durations?: {
9358
9358
  normal?: string | undefined;
@@ -10260,6 +10260,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
10260
10260
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10261
10261
  easing: "linear" | "standard" | "emphasized" | "spring";
10262
10262
  } | undefined;
10263
+ transition?: {
10264
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10265
+ easing: "linear" | "standard" | "emphasized" | "spring";
10266
+ } | undefined;
10263
10267
  enter?: {
10264
10268
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10265
10269
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -10276,12 +10280,12 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
10276
10280
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10277
10281
  easing: "linear" | "standard" | "emphasized" | "spring";
10278
10282
  } | undefined;
10279
- transition?: {
10283
+ }, {
10284
+ hover?: {
10280
10285
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10281
10286
  easing: "linear" | "standard" | "emphasized" | "spring";
10282
10287
  } | undefined;
10283
- }, {
10284
- hover?: {
10288
+ transition?: {
10285
10289
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10286
10290
  easing: "linear" | "standard" | "emphasized" | "spring";
10287
10291
  } | undefined;
@@ -10301,10 +10305,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
10301
10305
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10302
10306
  easing: "linear" | "standard" | "emphasized" | "spring";
10303
10307
  } | undefined;
10304
- transition?: {
10305
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10306
- easing: "linear" | "standard" | "emphasized" | "spring";
10307
- } | undefined;
10308
10308
  }>>;
10309
10309
  }, "strip", z.ZodTypeAny, {
10310
10310
  intents?: {
@@ -10312,6 +10312,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
10312
10312
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10313
10313
  easing: "linear" | "standard" | "emphasized" | "spring";
10314
10314
  } | undefined;
10315
+ transition?: {
10316
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10317
+ easing: "linear" | "standard" | "emphasized" | "spring";
10318
+ } | undefined;
10315
10319
  enter?: {
10316
10320
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10317
10321
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -10328,10 +10332,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
10328
10332
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10329
10333
  easing: "linear" | "standard" | "emphasized" | "spring";
10330
10334
  } | undefined;
10331
- transition?: {
10332
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10333
- easing: "linear" | "standard" | "emphasized" | "spring";
10334
- } | undefined;
10335
10335
  } | undefined;
10336
10336
  durations?: {
10337
10337
  normal?: string | undefined;
@@ -10352,6 +10352,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
10352
10352
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10353
10353
  easing: "linear" | "standard" | "emphasized" | "spring";
10354
10354
  } | undefined;
10355
+ transition?: {
10356
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10357
+ easing: "linear" | "standard" | "emphasized" | "spring";
10358
+ } | undefined;
10355
10359
  enter?: {
10356
10360
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10357
10361
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -10368,10 +10372,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
10368
10372
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10369
10373
  easing: "linear" | "standard" | "emphasized" | "spring";
10370
10374
  } | undefined;
10371
- transition?: {
10372
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10373
- easing: "linear" | "standard" | "emphasized" | "spring";
10374
- } | undefined;
10375
10375
  } | undefined;
10376
10376
  durations?: {
10377
10377
  normal?: string | undefined;
@@ -10627,6 +10627,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
10627
10627
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10628
10628
  easing: "linear" | "standard" | "emphasized" | "spring";
10629
10629
  } | undefined;
10630
+ transition?: {
10631
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10632
+ easing: "linear" | "standard" | "emphasized" | "spring";
10633
+ } | undefined;
10630
10634
  enter?: {
10631
10635
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10632
10636
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -10643,10 +10647,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
10643
10647
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10644
10648
  easing: "linear" | "standard" | "emphasized" | "spring";
10645
10649
  } | undefined;
10646
- transition?: {
10647
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10648
- easing: "linear" | "standard" | "emphasized" | "spring";
10649
- } | undefined;
10650
10650
  } | undefined;
10651
10651
  durations?: {
10652
10652
  normal?: string | undefined;
@@ -10849,6 +10849,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
10849
10849
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10850
10850
  easing: "linear" | "standard" | "emphasized" | "spring";
10851
10851
  } | undefined;
10852
+ transition?: {
10853
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10854
+ easing: "linear" | "standard" | "emphasized" | "spring";
10855
+ } | undefined;
10852
10856
  enter?: {
10853
10857
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10854
10858
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -10865,10 +10869,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
10865
10869
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10866
10870
  easing: "linear" | "standard" | "emphasized" | "spring";
10867
10871
  } | undefined;
10868
- transition?: {
10869
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
10870
- easing: "linear" | "standard" | "emphasized" | "spring";
10871
- } | undefined;
10872
10872
  } | undefined;
10873
10873
  durations?: {
10874
10874
  normal?: string | undefined;
@@ -11749,6 +11749,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
11749
11749
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11750
11750
  easing: "linear" | "standard" | "emphasized" | "spring";
11751
11751
  } | undefined;
11752
+ transition?: {
11753
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11754
+ easing: "linear" | "standard" | "emphasized" | "spring";
11755
+ } | undefined;
11752
11756
  enter?: {
11753
11757
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11754
11758
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -11765,12 +11769,12 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
11765
11769
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11766
11770
  easing: "linear" | "standard" | "emphasized" | "spring";
11767
11771
  } | undefined;
11768
- transition?: {
11772
+ }, {
11773
+ hover?: {
11769
11774
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11770
11775
  easing: "linear" | "standard" | "emphasized" | "spring";
11771
11776
  } | undefined;
11772
- }, {
11773
- hover?: {
11777
+ transition?: {
11774
11778
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11775
11779
  easing: "linear" | "standard" | "emphasized" | "spring";
11776
11780
  } | undefined;
@@ -11790,10 +11794,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
11790
11794
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11791
11795
  easing: "linear" | "standard" | "emphasized" | "spring";
11792
11796
  } | undefined;
11793
- transition?: {
11794
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11795
- easing: "linear" | "standard" | "emphasized" | "spring";
11796
- } | undefined;
11797
11797
  }>>;
11798
11798
  }, "strip", z.ZodTypeAny, {
11799
11799
  intents?: {
@@ -11801,6 +11801,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
11801
11801
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11802
11802
  easing: "linear" | "standard" | "emphasized" | "spring";
11803
11803
  } | undefined;
11804
+ transition?: {
11805
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11806
+ easing: "linear" | "standard" | "emphasized" | "spring";
11807
+ } | undefined;
11804
11808
  enter?: {
11805
11809
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11806
11810
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -11817,10 +11821,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
11817
11821
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11818
11822
  easing: "linear" | "standard" | "emphasized" | "spring";
11819
11823
  } | undefined;
11820
- transition?: {
11821
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11822
- easing: "linear" | "standard" | "emphasized" | "spring";
11823
- } | undefined;
11824
11824
  } | undefined;
11825
11825
  durations?: {
11826
11826
  normal?: string | undefined;
@@ -11841,6 +11841,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
11841
11841
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11842
11842
  easing: "linear" | "standard" | "emphasized" | "spring";
11843
11843
  } | undefined;
11844
+ transition?: {
11845
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11846
+ easing: "linear" | "standard" | "emphasized" | "spring";
11847
+ } | undefined;
11844
11848
  enter?: {
11845
11849
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11846
11850
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -11857,10 +11861,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
11857
11861
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11858
11862
  easing: "linear" | "standard" | "emphasized" | "spring";
11859
11863
  } | undefined;
11860
- transition?: {
11861
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
11862
- easing: "linear" | "standard" | "emphasized" | "spring";
11863
- } | undefined;
11864
11864
  } | undefined;
11865
11865
  durations?: {
11866
11866
  normal?: string | undefined;
@@ -12116,6 +12116,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
12116
12116
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12117
12117
  easing: "linear" | "standard" | "emphasized" | "spring";
12118
12118
  } | undefined;
12119
+ transition?: {
12120
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12121
+ easing: "linear" | "standard" | "emphasized" | "spring";
12122
+ } | undefined;
12119
12123
  enter?: {
12120
12124
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12121
12125
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -12132,10 +12136,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
12132
12136
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12133
12137
  easing: "linear" | "standard" | "emphasized" | "spring";
12134
12138
  } | undefined;
12135
- transition?: {
12136
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12137
- easing: "linear" | "standard" | "emphasized" | "spring";
12138
- } | undefined;
12139
12139
  } | undefined;
12140
12140
  durations?: {
12141
12141
  normal?: string | undefined;
@@ -12338,6 +12338,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
12338
12338
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12339
12339
  easing: "linear" | "standard" | "emphasized" | "spring";
12340
12340
  } | undefined;
12341
+ transition?: {
12342
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12343
+ easing: "linear" | "standard" | "emphasized" | "spring";
12344
+ } | undefined;
12341
12345
  enter?: {
12342
12346
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12343
12347
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -12354,10 +12358,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
12354
12358
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12355
12359
  easing: "linear" | "standard" | "emphasized" | "spring";
12356
12360
  } | undefined;
12357
- transition?: {
12358
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12359
- easing: "linear" | "standard" | "emphasized" | "spring";
12360
- } | undefined;
12361
12361
  } | undefined;
12362
12362
  durations?: {
12363
12363
  normal?: string | undefined;
@@ -12563,6 +12563,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
12563
12563
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12564
12564
  easing: "linear" | "standard" | "emphasized" | "spring";
12565
12565
  } | undefined;
12566
+ transition?: {
12567
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12568
+ easing: "linear" | "standard" | "emphasized" | "spring";
12569
+ } | undefined;
12566
12570
  enter?: {
12567
12571
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12568
12572
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -12579,10 +12583,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
12579
12583
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12580
12584
  easing: "linear" | "standard" | "emphasized" | "spring";
12581
12585
  } | undefined;
12582
- transition?: {
12583
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12584
- easing: "linear" | "standard" | "emphasized" | "spring";
12585
- } | undefined;
12586
12586
  } | undefined;
12587
12587
  durations?: {
12588
12588
  normal?: string | undefined;
@@ -12786,6 +12786,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
12786
12786
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12787
12787
  easing: "linear" | "standard" | "emphasized" | "spring";
12788
12788
  } | undefined;
12789
+ transition?: {
12790
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12791
+ easing: "linear" | "standard" | "emphasized" | "spring";
12792
+ } | undefined;
12789
12793
  enter?: {
12790
12794
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12791
12795
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -12802,10 +12806,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
12802
12806
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12803
12807
  easing: "linear" | "standard" | "emphasized" | "spring";
12804
12808
  } | undefined;
12805
- transition?: {
12806
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
12807
- easing: "linear" | "standard" | "emphasized" | "spring";
12808
- } | undefined;
12809
12809
  } | undefined;
12810
12810
  durations?: {
12811
12811
  normal?: string | undefined;
@@ -13011,6 +13011,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
13011
13011
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
13012
13012
  easing: "linear" | "standard" | "emphasized" | "spring";
13013
13013
  } | undefined;
13014
+ transition?: {
13015
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
13016
+ easing: "linear" | "standard" | "emphasized" | "spring";
13017
+ } | undefined;
13014
13018
  enter?: {
13015
13019
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
13016
13020
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -13027,10 +13031,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
13027
13031
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
13028
13032
  easing: "linear" | "standard" | "emphasized" | "spring";
13029
13033
  } | undefined;
13030
- transition?: {
13031
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
13032
- easing: "linear" | "standard" | "emphasized" | "spring";
13033
- } | undefined;
13034
13034
  } | undefined;
13035
13035
  durations?: {
13036
13036
  normal?: string | undefined;
@@ -13234,6 +13234,10 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
13234
13234
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
13235
13235
  easing: "linear" | "standard" | "emphasized" | "spring";
13236
13236
  } | undefined;
13237
+ transition?: {
13238
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
13239
+ easing: "linear" | "standard" | "emphasized" | "spring";
13240
+ } | undefined;
13237
13241
  enter?: {
13238
13242
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
13239
13243
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -13250,10 +13254,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
13250
13254
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
13251
13255
  easing: "linear" | "standard" | "emphasized" | "spring";
13252
13256
  } | undefined;
13253
- transition?: {
13254
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
13255
- easing: "linear" | "standard" | "emphasized" | "spring";
13256
- } | undefined;
13257
13257
  } | undefined;
13258
13258
  durations?: {
13259
13259
  normal?: string | undefined;
@@ -14148,6 +14148,10 @@ declare const SkinSpecSchema: z.ZodObject<{
14148
14148
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14149
14149
  easing: "linear" | "standard" | "emphasized" | "spring";
14150
14150
  } | undefined;
14151
+ transition?: {
14152
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14153
+ easing: "linear" | "standard" | "emphasized" | "spring";
14154
+ } | undefined;
14151
14155
  enter?: {
14152
14156
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14153
14157
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -14164,12 +14168,12 @@ declare const SkinSpecSchema: z.ZodObject<{
14164
14168
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14165
14169
  easing: "linear" | "standard" | "emphasized" | "spring";
14166
14170
  } | undefined;
14167
- transition?: {
14171
+ }, {
14172
+ hover?: {
14168
14173
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14169
14174
  easing: "linear" | "standard" | "emphasized" | "spring";
14170
14175
  } | undefined;
14171
- }, {
14172
- hover?: {
14176
+ transition?: {
14173
14177
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14174
14178
  easing: "linear" | "standard" | "emphasized" | "spring";
14175
14179
  } | undefined;
@@ -14189,10 +14193,6 @@ declare const SkinSpecSchema: z.ZodObject<{
14189
14193
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14190
14194
  easing: "linear" | "standard" | "emphasized" | "spring";
14191
14195
  } | undefined;
14192
- transition?: {
14193
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14194
- easing: "linear" | "standard" | "emphasized" | "spring";
14195
- } | undefined;
14196
14196
  }>>;
14197
14197
  }, "strip", z.ZodTypeAny, {
14198
14198
  intents?: {
@@ -14200,6 +14200,10 @@ declare const SkinSpecSchema: z.ZodObject<{
14200
14200
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14201
14201
  easing: "linear" | "standard" | "emphasized" | "spring";
14202
14202
  } | undefined;
14203
+ transition?: {
14204
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14205
+ easing: "linear" | "standard" | "emphasized" | "spring";
14206
+ } | undefined;
14203
14207
  enter?: {
14204
14208
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14205
14209
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -14216,10 +14220,6 @@ declare const SkinSpecSchema: z.ZodObject<{
14216
14220
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14217
14221
  easing: "linear" | "standard" | "emphasized" | "spring";
14218
14222
  } | undefined;
14219
- transition?: {
14220
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14221
- easing: "linear" | "standard" | "emphasized" | "spring";
14222
- } | undefined;
14223
14223
  } | undefined;
14224
14224
  durations?: {
14225
14225
  normal?: string | undefined;
@@ -14240,6 +14240,10 @@ declare const SkinSpecSchema: z.ZodObject<{
14240
14240
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14241
14241
  easing: "linear" | "standard" | "emphasized" | "spring";
14242
14242
  } | undefined;
14243
+ transition?: {
14244
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14245
+ easing: "linear" | "standard" | "emphasized" | "spring";
14246
+ } | undefined;
14243
14247
  enter?: {
14244
14248
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14245
14249
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -14256,10 +14260,6 @@ declare const SkinSpecSchema: z.ZodObject<{
14256
14260
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14257
14261
  easing: "linear" | "standard" | "emphasized" | "spring";
14258
14262
  } | undefined;
14259
- transition?: {
14260
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14261
- easing: "linear" | "standard" | "emphasized" | "spring";
14262
- } | undefined;
14263
14263
  } | undefined;
14264
14264
  durations?: {
14265
14265
  normal?: string | undefined;
@@ -14515,6 +14515,10 @@ declare const SkinSpecSchema: z.ZodObject<{
14515
14515
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14516
14516
  easing: "linear" | "standard" | "emphasized" | "spring";
14517
14517
  } | undefined;
14518
+ transition?: {
14519
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14520
+ easing: "linear" | "standard" | "emphasized" | "spring";
14521
+ } | undefined;
14518
14522
  enter?: {
14519
14523
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14520
14524
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -14531,10 +14535,6 @@ declare const SkinSpecSchema: z.ZodObject<{
14531
14535
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14532
14536
  easing: "linear" | "standard" | "emphasized" | "spring";
14533
14537
  } | undefined;
14534
- transition?: {
14535
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14536
- easing: "linear" | "standard" | "emphasized" | "spring";
14537
- } | undefined;
14538
14538
  } | undefined;
14539
14539
  durations?: {
14540
14540
  normal?: string | undefined;
@@ -14737,6 +14737,10 @@ declare const SkinSpecSchema: z.ZodObject<{
14737
14737
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14738
14738
  easing: "linear" | "standard" | "emphasized" | "spring";
14739
14739
  } | undefined;
14740
+ transition?: {
14741
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14742
+ easing: "linear" | "standard" | "emphasized" | "spring";
14743
+ } | undefined;
14740
14744
  enter?: {
14741
14745
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14742
14746
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -14753,10 +14757,6 @@ declare const SkinSpecSchema: z.ZodObject<{
14753
14757
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14754
14758
  easing: "linear" | "standard" | "emphasized" | "spring";
14755
14759
  } | undefined;
14756
- transition?: {
14757
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
14758
- easing: "linear" | "standard" | "emphasized" | "spring";
14759
- } | undefined;
14760
14760
  } | undefined;
14761
14761
  durations?: {
14762
14762
  normal?: string | undefined;
@@ -15637,6 +15637,10 @@ declare const SkinSpecSchema: z.ZodObject<{
15637
15637
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15638
15638
  easing: "linear" | "standard" | "emphasized" | "spring";
15639
15639
  } | undefined;
15640
+ transition?: {
15641
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15642
+ easing: "linear" | "standard" | "emphasized" | "spring";
15643
+ } | undefined;
15640
15644
  enter?: {
15641
15645
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15642
15646
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -15653,12 +15657,12 @@ declare const SkinSpecSchema: z.ZodObject<{
15653
15657
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15654
15658
  easing: "linear" | "standard" | "emphasized" | "spring";
15655
15659
  } | undefined;
15656
- transition?: {
15660
+ }, {
15661
+ hover?: {
15657
15662
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15658
15663
  easing: "linear" | "standard" | "emphasized" | "spring";
15659
15664
  } | undefined;
15660
- }, {
15661
- hover?: {
15665
+ transition?: {
15662
15666
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15663
15667
  easing: "linear" | "standard" | "emphasized" | "spring";
15664
15668
  } | undefined;
@@ -15678,10 +15682,6 @@ declare const SkinSpecSchema: z.ZodObject<{
15678
15682
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15679
15683
  easing: "linear" | "standard" | "emphasized" | "spring";
15680
15684
  } | undefined;
15681
- transition?: {
15682
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15683
- easing: "linear" | "standard" | "emphasized" | "spring";
15684
- } | undefined;
15685
15685
  }>>;
15686
15686
  }, "strip", z.ZodTypeAny, {
15687
15687
  intents?: {
@@ -15689,6 +15689,10 @@ declare const SkinSpecSchema: z.ZodObject<{
15689
15689
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15690
15690
  easing: "linear" | "standard" | "emphasized" | "spring";
15691
15691
  } | undefined;
15692
+ transition?: {
15693
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15694
+ easing: "linear" | "standard" | "emphasized" | "spring";
15695
+ } | undefined;
15692
15696
  enter?: {
15693
15697
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15694
15698
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -15705,10 +15709,6 @@ declare const SkinSpecSchema: z.ZodObject<{
15705
15709
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15706
15710
  easing: "linear" | "standard" | "emphasized" | "spring";
15707
15711
  } | undefined;
15708
- transition?: {
15709
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15710
- easing: "linear" | "standard" | "emphasized" | "spring";
15711
- } | undefined;
15712
15712
  } | undefined;
15713
15713
  durations?: {
15714
15714
  normal?: string | undefined;
@@ -15729,6 +15729,10 @@ declare const SkinSpecSchema: z.ZodObject<{
15729
15729
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15730
15730
  easing: "linear" | "standard" | "emphasized" | "spring";
15731
15731
  } | undefined;
15732
+ transition?: {
15733
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15734
+ easing: "linear" | "standard" | "emphasized" | "spring";
15735
+ } | undefined;
15732
15736
  enter?: {
15733
15737
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15734
15738
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -15745,10 +15749,6 @@ declare const SkinSpecSchema: z.ZodObject<{
15745
15749
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15746
15750
  easing: "linear" | "standard" | "emphasized" | "spring";
15747
15751
  } | undefined;
15748
- transition?: {
15749
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
15750
- easing: "linear" | "standard" | "emphasized" | "spring";
15751
- } | undefined;
15752
15752
  } | undefined;
15753
15753
  durations?: {
15754
15754
  normal?: string | undefined;
@@ -16004,6 +16004,10 @@ declare const SkinSpecSchema: z.ZodObject<{
16004
16004
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16005
16005
  easing: "linear" | "standard" | "emphasized" | "spring";
16006
16006
  } | undefined;
16007
+ transition?: {
16008
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16009
+ easing: "linear" | "standard" | "emphasized" | "spring";
16010
+ } | undefined;
16007
16011
  enter?: {
16008
16012
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16009
16013
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -16020,10 +16024,6 @@ declare const SkinSpecSchema: z.ZodObject<{
16020
16024
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16021
16025
  easing: "linear" | "standard" | "emphasized" | "spring";
16022
16026
  } | undefined;
16023
- transition?: {
16024
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16025
- easing: "linear" | "standard" | "emphasized" | "spring";
16026
- } | undefined;
16027
16027
  } | undefined;
16028
16028
  durations?: {
16029
16029
  normal?: string | undefined;
@@ -16226,6 +16226,10 @@ declare const SkinSpecSchema: z.ZodObject<{
16226
16226
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16227
16227
  easing: "linear" | "standard" | "emphasized" | "spring";
16228
16228
  } | undefined;
16229
+ transition?: {
16230
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16231
+ easing: "linear" | "standard" | "emphasized" | "spring";
16232
+ } | undefined;
16229
16233
  enter?: {
16230
16234
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16231
16235
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -16242,10 +16246,6 @@ declare const SkinSpecSchema: z.ZodObject<{
16242
16246
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16243
16247
  easing: "linear" | "standard" | "emphasized" | "spring";
16244
16248
  } | undefined;
16245
- transition?: {
16246
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16247
- easing: "linear" | "standard" | "emphasized" | "spring";
16248
- } | undefined;
16249
16249
  } | undefined;
16250
16250
  durations?: {
16251
16251
  normal?: string | undefined;
@@ -16451,6 +16451,10 @@ declare const SkinSpecSchema: z.ZodObject<{
16451
16451
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16452
16452
  easing: "linear" | "standard" | "emphasized" | "spring";
16453
16453
  } | undefined;
16454
+ transition?: {
16455
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16456
+ easing: "linear" | "standard" | "emphasized" | "spring";
16457
+ } | undefined;
16454
16458
  enter?: {
16455
16459
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16456
16460
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -16467,10 +16471,6 @@ declare const SkinSpecSchema: z.ZodObject<{
16467
16471
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16468
16472
  easing: "linear" | "standard" | "emphasized" | "spring";
16469
16473
  } | undefined;
16470
- transition?: {
16471
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16472
- easing: "linear" | "standard" | "emphasized" | "spring";
16473
- } | undefined;
16474
16474
  } | undefined;
16475
16475
  durations?: {
16476
16476
  normal?: string | undefined;
@@ -16674,6 +16674,10 @@ declare const SkinSpecSchema: z.ZodObject<{
16674
16674
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16675
16675
  easing: "linear" | "standard" | "emphasized" | "spring";
16676
16676
  } | undefined;
16677
+ transition?: {
16678
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16679
+ easing: "linear" | "standard" | "emphasized" | "spring";
16680
+ } | undefined;
16677
16681
  enter?: {
16678
16682
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16679
16683
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -16690,10 +16694,6 @@ declare const SkinSpecSchema: z.ZodObject<{
16690
16694
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16691
16695
  easing: "linear" | "standard" | "emphasized" | "spring";
16692
16696
  } | undefined;
16693
- transition?: {
16694
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16695
- easing: "linear" | "standard" | "emphasized" | "spring";
16696
- } | undefined;
16697
16697
  } | undefined;
16698
16698
  durations?: {
16699
16699
  normal?: string | undefined;
@@ -16899,6 +16899,10 @@ declare const SkinSpecSchema: z.ZodObject<{
16899
16899
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16900
16900
  easing: "linear" | "standard" | "emphasized" | "spring";
16901
16901
  } | undefined;
16902
+ transition?: {
16903
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16904
+ easing: "linear" | "standard" | "emphasized" | "spring";
16905
+ } | undefined;
16902
16906
  enter?: {
16903
16907
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16904
16908
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -16915,10 +16919,6 @@ declare const SkinSpecSchema: z.ZodObject<{
16915
16919
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16916
16920
  easing: "linear" | "standard" | "emphasized" | "spring";
16917
16921
  } | undefined;
16918
- transition?: {
16919
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
16920
- easing: "linear" | "standard" | "emphasized" | "spring";
16921
- } | undefined;
16922
16922
  } | undefined;
16923
16923
  durations?: {
16924
16924
  normal?: string | undefined;
@@ -17122,6 +17122,10 @@ declare const SkinSpecSchema: z.ZodObject<{
17122
17122
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
17123
17123
  easing: "linear" | "standard" | "emphasized" | "spring";
17124
17124
  } | undefined;
17125
+ transition?: {
17126
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
17127
+ easing: "linear" | "standard" | "emphasized" | "spring";
17128
+ } | undefined;
17125
17129
  enter?: {
17126
17130
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
17127
17131
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -17138,10 +17142,6 @@ declare const SkinSpecSchema: z.ZodObject<{
17138
17142
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
17139
17143
  easing: "linear" | "standard" | "emphasized" | "spring";
17140
17144
  } | undefined;
17141
- transition?: {
17142
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
17143
- easing: "linear" | "standard" | "emphasized" | "spring";
17144
- } | undefined;
17145
17145
  } | undefined;
17146
17146
  durations?: {
17147
17147
  normal?: string | undefined;
@@ -18074,6 +18074,10 @@ declare const MotionSliceSchema: z.ZodObject<{
18074
18074
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18075
18075
  easing: "linear" | "standard" | "emphasized" | "spring";
18076
18076
  } | undefined;
18077
+ transition?: {
18078
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18079
+ easing: "linear" | "standard" | "emphasized" | "spring";
18080
+ } | undefined;
18077
18081
  enter?: {
18078
18082
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18079
18083
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -18090,12 +18094,12 @@ declare const MotionSliceSchema: z.ZodObject<{
18090
18094
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18091
18095
  easing: "linear" | "standard" | "emphasized" | "spring";
18092
18096
  } | undefined;
18093
- transition?: {
18097
+ }, {
18098
+ hover?: {
18094
18099
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18095
18100
  easing: "linear" | "standard" | "emphasized" | "spring";
18096
18101
  } | undefined;
18097
- }, {
18098
- hover?: {
18102
+ transition?: {
18099
18103
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18100
18104
  easing: "linear" | "standard" | "emphasized" | "spring";
18101
18105
  } | undefined;
@@ -18115,10 +18119,6 @@ declare const MotionSliceSchema: z.ZodObject<{
18115
18119
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18116
18120
  easing: "linear" | "standard" | "emphasized" | "spring";
18117
18121
  } | undefined;
18118
- transition?: {
18119
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18120
- easing: "linear" | "standard" | "emphasized" | "spring";
18121
- } | undefined;
18122
18122
  }>>;
18123
18123
  }, "strip", z.ZodTypeAny, {
18124
18124
  intents?: {
@@ -18126,6 +18126,10 @@ declare const MotionSliceSchema: z.ZodObject<{
18126
18126
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18127
18127
  easing: "linear" | "standard" | "emphasized" | "spring";
18128
18128
  } | undefined;
18129
+ transition?: {
18130
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18131
+ easing: "linear" | "standard" | "emphasized" | "spring";
18132
+ } | undefined;
18129
18133
  enter?: {
18130
18134
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18131
18135
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -18142,10 +18146,6 @@ declare const MotionSliceSchema: z.ZodObject<{
18142
18146
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18143
18147
  easing: "linear" | "standard" | "emphasized" | "spring";
18144
18148
  } | undefined;
18145
- transition?: {
18146
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18147
- easing: "linear" | "standard" | "emphasized" | "spring";
18148
- } | undefined;
18149
18149
  } | undefined;
18150
18150
  durations?: {
18151
18151
  normal?: string | undefined;
@@ -18166,6 +18166,10 @@ declare const MotionSliceSchema: z.ZodObject<{
18166
18166
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18167
18167
  easing: "linear" | "standard" | "emphasized" | "spring";
18168
18168
  } | undefined;
18169
+ transition?: {
18170
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18171
+ easing: "linear" | "standard" | "emphasized" | "spring";
18172
+ } | undefined;
18169
18173
  enter?: {
18170
18174
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18171
18175
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -18182,10 +18186,6 @@ declare const MotionSliceSchema: z.ZodObject<{
18182
18186
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18183
18187
  easing: "linear" | "standard" | "emphasized" | "spring";
18184
18188
  } | undefined;
18185
- transition?: {
18186
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
18187
- easing: "linear" | "standard" | "emphasized" | "spring";
18188
- } | undefined;
18189
18189
  } | undefined;
18190
18190
  durations?: {
18191
18191
  normal?: string | undefined;
@@ -18343,7 +18343,7 @@ type CustomPatternMapInput = z.input<typeof CustomPatternMapSchema>;
18343
18343
  * }
18344
18344
  * ```
18345
18345
  */
18346
- interface UseDeclaration {
18346
+ type UseDeclaration = {
18347
18347
  /**
18348
18348
  * Import source path:
18349
18349
  * - "std/behaviors/game-core" - Standard library
@@ -18357,7 +18357,7 @@ interface UseDeclaration {
18357
18357
  * Used as namespace: Alias.entity, Alias.traits.X, Alias.pages.X
18358
18358
  */
18359
18359
  as: string;
18360
- }
18360
+ };
18361
18361
  declare const UseDeclarationSchema: z.ZodObject<{
18362
18362
  from: z.ZodString;
18363
18363
  as: z.ZodString;
@@ -18386,7 +18386,7 @@ declare const UseDeclarationSchema: z.ZodObject<{
18386
18386
  * }
18387
18387
  * ```
18388
18388
  */
18389
- interface EntityCall {
18389
+ type EntityCall = {
18390
18390
  /** Reference to the imported entity using the "extends" discriminator key */
18391
18391
  extends: string;
18392
18392
  /** V4 dual-carry id sibling of `extends` — optional until the Phase-7 flip. */
@@ -18399,7 +18399,7 @@ interface EntityCall {
18399
18399
  persistence?: EntityPersistence;
18400
18400
  /** Optional collection override */
18401
18401
  collection?: string;
18402
- }
18402
+ };
18403
18403
  /**
18404
18404
  * EntityRef - Entity can be inline definition OR reference to imported entity.
18405
18405
  *
@@ -18625,7 +18625,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
18625
18625
  * the imported page's entity and trait set, treating the page as a callable
18626
18626
  * function.
18627
18627
  */
18628
- interface PageRefObject {
18628
+ type PageRefObject = {
18629
18629
  /**
18630
18630
  * Reference to imported page: "Alias.pages.PageName"
18631
18631
  */
@@ -18660,7 +18660,7 @@ interface PageRefObject {
18660
18660
  traits?: TraitRef[];
18661
18661
  /** V4 dual-carry id sibling of `traits` — optional until the Phase-7 flip. */
18662
18662
  traitRefIds?: TraitId[];
18663
- }
18663
+ };
18664
18664
  /**
18665
18665
  * PageRef - Page can be inline definition OR reference to imported page.
18666
18666
  *
@@ -21139,14 +21139,14 @@ declare const EventListenerSchema: z.ZodObject<{
21139
21139
  /**
21140
21140
  * Source of an event - which trait/transition/tick emits it.
21141
21141
  */
21142
- interface EventSource {
21142
+ type EventSource = {
21143
21143
  /** Trait that emits this event */
21144
21144
  trait: string;
21145
21145
  /** Transition that emits this event (if applicable) */
21146
21146
  transition?: string;
21147
21147
  /** Tick that emits this event (if applicable) */
21148
21148
  tick?: string;
21149
- }
21149
+ };
21150
21150
  declare const EventSourceSchema: z.ZodObject<{
21151
21151
  trait: z.ZodString;
21152
21152
  transition: z.ZodOptional<z.ZodString>;
@@ -21164,7 +21164,7 @@ declare const EventSourceSchema: z.ZodObject<{
21164
21164
  * Computed event contract with source tracking.
21165
21165
  * Generated by aggregating trait-level emits with namespacing.
21166
21166
  */
21167
- interface ComputedEventContract {
21167
+ type ComputedEventContract = {
21168
21168
  /** Namespaced event: "TraitName.EVENT_NAME" */
21169
21169
  event: string;
21170
21170
  /** Original event name without namespace */
@@ -21175,7 +21175,7 @@ interface ComputedEventContract {
21175
21175
  description?: string;
21176
21176
  /** Payload schema */
21177
21177
  payload?: EventPayloadField[];
21178
- }
21178
+ };
21179
21179
  declare const ComputedEventContractSchema: z.ZodObject<{
21180
21180
  event: z.ZodString;
21181
21181
  originalEvent: z.ZodString;
@@ -21219,7 +21219,7 @@ declare const ComputedEventContractSchema: z.ZodObject<{
21219
21219
  * Computed event listener with source tracking.
21220
21220
  * Generated by aggregating trait-level listens.
21221
21221
  */
21222
- interface ComputedEventListener {
21222
+ type ComputedEventListener = {
21223
21223
  /** Event to listen for (may be namespaced) */
21224
21224
  event: string;
21225
21225
  /** Source trait that defines this listener */
@@ -21230,7 +21230,7 @@ interface ComputedEventListener {
21230
21230
  guard?: Expression;
21231
21231
  /** Payload field mapping */
21232
21232
  payloadMapping?: Record<string, string>;
21233
- }
21233
+ };
21234
21234
  declare const ComputedEventListenerSchema: z.ZodObject<{
21235
21235
  event: z.ZodString;
21236
21236
  source: z.ZodObject<{
@@ -21283,7 +21283,7 @@ declare const ComputedEventListenerSchema: z.ZodObject<{
21283
21283
  * Use `uses` to import other orbitals and access their components.
21284
21284
  */
21285
21285
  type Orbital = OrbitalDefinition;
21286
- interface OrbitalDefinition {
21286
+ type OrbitalDefinition = {
21287
21287
  /** V4 dual-carry id sibling of `name` — optional until the Phase-7 flip. */
21288
21288
  id?: OrbitalId;
21289
21289
  /** Human-readable name */
@@ -21410,7 +21410,7 @@ interface OrbitalDefinition {
21410
21410
  * Removed after generation - guards live in traits.
21411
21411
  */
21412
21412
  suggestedGuards?: SuggestedGuard[];
21413
- }
21413
+ };
21414
21414
  declare const OrbitalDefinitionSchema: z.ZodObject<{
21415
21415
  id: z.ZodOptional<z.ZodEffects<z.ZodString, OrbitalId, string>>;
21416
21416
  name: z.ZodString;
@@ -22270,6 +22270,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22270
22270
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22271
22271
  easing: "linear" | "standard" | "emphasized" | "spring";
22272
22272
  } | undefined;
22273
+ transition?: {
22274
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22275
+ easing: "linear" | "standard" | "emphasized" | "spring";
22276
+ } | undefined;
22273
22277
  enter?: {
22274
22278
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22275
22279
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -22286,12 +22290,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22286
22290
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22287
22291
  easing: "linear" | "standard" | "emphasized" | "spring";
22288
22292
  } | undefined;
22289
- transition?: {
22293
+ }, {
22294
+ hover?: {
22290
22295
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22291
22296
  easing: "linear" | "standard" | "emphasized" | "spring";
22292
22297
  } | undefined;
22293
- }, {
22294
- hover?: {
22298
+ transition?: {
22295
22299
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22296
22300
  easing: "linear" | "standard" | "emphasized" | "spring";
22297
22301
  } | undefined;
@@ -22311,10 +22315,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22311
22315
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22312
22316
  easing: "linear" | "standard" | "emphasized" | "spring";
22313
22317
  } | undefined;
22314
- transition?: {
22315
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22316
- easing: "linear" | "standard" | "emphasized" | "spring";
22317
- } | undefined;
22318
22318
  }>>;
22319
22319
  }, "strip", z.ZodTypeAny, {
22320
22320
  intents?: {
@@ -22322,6 +22322,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22322
22322
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22323
22323
  easing: "linear" | "standard" | "emphasized" | "spring";
22324
22324
  } | undefined;
22325
+ transition?: {
22326
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22327
+ easing: "linear" | "standard" | "emphasized" | "spring";
22328
+ } | undefined;
22325
22329
  enter?: {
22326
22330
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22327
22331
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -22338,10 +22342,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22338
22342
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22339
22343
  easing: "linear" | "standard" | "emphasized" | "spring";
22340
22344
  } | undefined;
22341
- transition?: {
22342
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22343
- easing: "linear" | "standard" | "emphasized" | "spring";
22344
- } | undefined;
22345
22345
  } | undefined;
22346
22346
  durations?: {
22347
22347
  normal?: string | undefined;
@@ -22362,6 +22362,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22362
22362
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22363
22363
  easing: "linear" | "standard" | "emphasized" | "spring";
22364
22364
  } | undefined;
22365
+ transition?: {
22366
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22367
+ easing: "linear" | "standard" | "emphasized" | "spring";
22368
+ } | undefined;
22365
22369
  enter?: {
22366
22370
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22367
22371
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -22378,10 +22382,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22378
22382
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22379
22383
  easing: "linear" | "standard" | "emphasized" | "spring";
22380
22384
  } | undefined;
22381
- transition?: {
22382
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22383
- easing: "linear" | "standard" | "emphasized" | "spring";
22384
- } | undefined;
22385
22385
  } | undefined;
22386
22386
  durations?: {
22387
22387
  normal?: string | undefined;
@@ -22637,6 +22637,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22637
22637
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22638
22638
  easing: "linear" | "standard" | "emphasized" | "spring";
22639
22639
  } | undefined;
22640
+ transition?: {
22641
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22642
+ easing: "linear" | "standard" | "emphasized" | "spring";
22643
+ } | undefined;
22640
22644
  enter?: {
22641
22645
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22642
22646
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -22653,10 +22657,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22653
22657
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22654
22658
  easing: "linear" | "standard" | "emphasized" | "spring";
22655
22659
  } | undefined;
22656
- transition?: {
22657
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22658
- easing: "linear" | "standard" | "emphasized" | "spring";
22659
- } | undefined;
22660
22660
  } | undefined;
22661
22661
  durations?: {
22662
22662
  normal?: string | undefined;
@@ -22859,6 +22859,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22859
22859
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22860
22860
  easing: "linear" | "standard" | "emphasized" | "spring";
22861
22861
  } | undefined;
22862
+ transition?: {
22863
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22864
+ easing: "linear" | "standard" | "emphasized" | "spring";
22865
+ } | undefined;
22862
22866
  enter?: {
22863
22867
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22864
22868
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -22875,10 +22879,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22875
22879
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22876
22880
  easing: "linear" | "standard" | "emphasized" | "spring";
22877
22881
  } | undefined;
22878
- transition?: {
22879
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
22880
- easing: "linear" | "standard" | "emphasized" | "spring";
22881
- } | undefined;
22882
22882
  } | undefined;
22883
22883
  durations?: {
22884
22884
  normal?: string | undefined;
@@ -23759,6 +23759,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
23759
23759
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23760
23760
  easing: "linear" | "standard" | "emphasized" | "spring";
23761
23761
  } | undefined;
23762
+ transition?: {
23763
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23764
+ easing: "linear" | "standard" | "emphasized" | "spring";
23765
+ } | undefined;
23762
23766
  enter?: {
23763
23767
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23764
23768
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -23775,12 +23779,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
23775
23779
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23776
23780
  easing: "linear" | "standard" | "emphasized" | "spring";
23777
23781
  } | undefined;
23778
- transition?: {
23782
+ }, {
23783
+ hover?: {
23779
23784
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23780
23785
  easing: "linear" | "standard" | "emphasized" | "spring";
23781
23786
  } | undefined;
23782
- }, {
23783
- hover?: {
23787
+ transition?: {
23784
23788
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23785
23789
  easing: "linear" | "standard" | "emphasized" | "spring";
23786
23790
  } | undefined;
@@ -23800,10 +23804,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
23800
23804
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23801
23805
  easing: "linear" | "standard" | "emphasized" | "spring";
23802
23806
  } | undefined;
23803
- transition?: {
23804
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23805
- easing: "linear" | "standard" | "emphasized" | "spring";
23806
- } | undefined;
23807
23807
  }>>;
23808
23808
  }, "strip", z.ZodTypeAny, {
23809
23809
  intents?: {
@@ -23811,6 +23811,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
23811
23811
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23812
23812
  easing: "linear" | "standard" | "emphasized" | "spring";
23813
23813
  } | undefined;
23814
+ transition?: {
23815
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23816
+ easing: "linear" | "standard" | "emphasized" | "spring";
23817
+ } | undefined;
23814
23818
  enter?: {
23815
23819
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23816
23820
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -23827,10 +23831,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
23827
23831
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23828
23832
  easing: "linear" | "standard" | "emphasized" | "spring";
23829
23833
  } | undefined;
23830
- transition?: {
23831
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23832
- easing: "linear" | "standard" | "emphasized" | "spring";
23833
- } | undefined;
23834
23834
  } | undefined;
23835
23835
  durations?: {
23836
23836
  normal?: string | undefined;
@@ -23851,6 +23851,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
23851
23851
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23852
23852
  easing: "linear" | "standard" | "emphasized" | "spring";
23853
23853
  } | undefined;
23854
+ transition?: {
23855
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23856
+ easing: "linear" | "standard" | "emphasized" | "spring";
23857
+ } | undefined;
23854
23858
  enter?: {
23855
23859
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23856
23860
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -23867,10 +23871,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
23867
23871
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23868
23872
  easing: "linear" | "standard" | "emphasized" | "spring";
23869
23873
  } | undefined;
23870
- transition?: {
23871
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
23872
- easing: "linear" | "standard" | "emphasized" | "spring";
23873
- } | undefined;
23874
23874
  } | undefined;
23875
23875
  durations?: {
23876
23876
  normal?: string | undefined;
@@ -24126,6 +24126,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
24126
24126
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24127
24127
  easing: "linear" | "standard" | "emphasized" | "spring";
24128
24128
  } | undefined;
24129
+ transition?: {
24130
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24131
+ easing: "linear" | "standard" | "emphasized" | "spring";
24132
+ } | undefined;
24129
24133
  enter?: {
24130
24134
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24131
24135
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -24142,10 +24146,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
24142
24146
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24143
24147
  easing: "linear" | "standard" | "emphasized" | "spring";
24144
24148
  } | undefined;
24145
- transition?: {
24146
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24147
- easing: "linear" | "standard" | "emphasized" | "spring";
24148
- } | undefined;
24149
24149
  } | undefined;
24150
24150
  durations?: {
24151
24151
  normal?: string | undefined;
@@ -24348,6 +24348,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
24348
24348
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24349
24349
  easing: "linear" | "standard" | "emphasized" | "spring";
24350
24350
  } | undefined;
24351
+ transition?: {
24352
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24353
+ easing: "linear" | "standard" | "emphasized" | "spring";
24354
+ } | undefined;
24351
24355
  enter?: {
24352
24356
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24353
24357
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -24364,10 +24368,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
24364
24368
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24365
24369
  easing: "linear" | "standard" | "emphasized" | "spring";
24366
24370
  } | undefined;
24367
- transition?: {
24368
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24369
- easing: "linear" | "standard" | "emphasized" | "spring";
24370
- } | undefined;
24371
24371
  } | undefined;
24372
24372
  durations?: {
24373
24373
  normal?: string | undefined;
@@ -24573,6 +24573,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
24573
24573
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24574
24574
  easing: "linear" | "standard" | "emphasized" | "spring";
24575
24575
  } | undefined;
24576
+ transition?: {
24577
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24578
+ easing: "linear" | "standard" | "emphasized" | "spring";
24579
+ } | undefined;
24576
24580
  enter?: {
24577
24581
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24578
24582
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -24589,10 +24593,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
24589
24593
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24590
24594
  easing: "linear" | "standard" | "emphasized" | "spring";
24591
24595
  } | undefined;
24592
- transition?: {
24593
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24594
- easing: "linear" | "standard" | "emphasized" | "spring";
24595
- } | undefined;
24596
24596
  } | undefined;
24597
24597
  durations?: {
24598
24598
  normal?: string | undefined;
@@ -24796,6 +24796,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
24796
24796
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24797
24797
  easing: "linear" | "standard" | "emphasized" | "spring";
24798
24798
  } | undefined;
24799
+ transition?: {
24800
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24801
+ easing: "linear" | "standard" | "emphasized" | "spring";
24802
+ } | undefined;
24799
24803
  enter?: {
24800
24804
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24801
24805
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -24812,10 +24816,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
24812
24816
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24813
24817
  easing: "linear" | "standard" | "emphasized" | "spring";
24814
24818
  } | undefined;
24815
- transition?: {
24816
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
24817
- easing: "linear" | "standard" | "emphasized" | "spring";
24818
- } | undefined;
24819
24819
  } | undefined;
24820
24820
  durations?: {
24821
24821
  normal?: string | undefined;
@@ -25021,6 +25021,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
25021
25021
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
25022
25022
  easing: "linear" | "standard" | "emphasized" | "spring";
25023
25023
  } | undefined;
25024
+ transition?: {
25025
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
25026
+ easing: "linear" | "standard" | "emphasized" | "spring";
25027
+ } | undefined;
25024
25028
  enter?: {
25025
25029
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
25026
25030
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -25037,10 +25041,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
25037
25041
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
25038
25042
  easing: "linear" | "standard" | "emphasized" | "spring";
25039
25043
  } | undefined;
25040
- transition?: {
25041
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
25042
- easing: "linear" | "standard" | "emphasized" | "spring";
25043
- } | undefined;
25044
25044
  } | undefined;
25045
25045
  durations?: {
25046
25046
  normal?: string | undefined;
@@ -25244,6 +25244,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
25244
25244
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
25245
25245
  easing: "linear" | "standard" | "emphasized" | "spring";
25246
25246
  } | undefined;
25247
+ transition?: {
25248
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
25249
+ easing: "linear" | "standard" | "emphasized" | "spring";
25250
+ } | undefined;
25247
25251
  enter?: {
25248
25252
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
25249
25253
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -25260,10 +25264,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
25260
25264
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
25261
25265
  easing: "linear" | "standard" | "emphasized" | "spring";
25262
25266
  } | undefined;
25263
- transition?: {
25264
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
25265
- easing: "linear" | "standard" | "emphasized" | "spring";
25266
- } | undefined;
25267
25267
  } | undefined;
25268
25268
  durations?: {
25269
25269
  normal?: string | undefined;
@@ -28273,6 +28273,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
28273
28273
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
28274
28274
  easing: "linear" | "standard" | "emphasized" | "spring";
28275
28275
  } | undefined;
28276
+ transition?: {
28277
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
28278
+ easing: "linear" | "standard" | "emphasized" | "spring";
28279
+ } | undefined;
28276
28280
  enter?: {
28277
28281
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
28278
28282
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -28289,10 +28293,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
28289
28293
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
28290
28294
  easing: "linear" | "standard" | "emphasized" | "spring";
28291
28295
  } | undefined;
28292
- transition?: {
28293
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
28294
- easing: "linear" | "standard" | "emphasized" | "spring";
28295
- } | undefined;
28296
28296
  } | undefined;
28297
28297
  durations?: {
28298
28298
  normal?: string | undefined;
@@ -28496,6 +28496,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
28496
28496
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
28497
28497
  easing: "linear" | "standard" | "emphasized" | "spring";
28498
28498
  } | undefined;
28499
+ transition?: {
28500
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
28501
+ easing: "linear" | "standard" | "emphasized" | "spring";
28502
+ } | undefined;
28499
28503
  enter?: {
28500
28504
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
28501
28505
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -28512,10 +28516,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
28512
28516
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
28513
28517
  easing: "linear" | "standard" | "emphasized" | "spring";
28514
28518
  } | undefined;
28515
- transition?: {
28516
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
28517
- easing: "linear" | "standard" | "emphasized" | "spring";
28518
- } | undefined;
28519
28519
  } | undefined;
28520
28520
  durations?: {
28521
28521
  normal?: string | undefined;
@@ -29187,6 +29187,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
29187
29187
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
29188
29188
  easing: "linear" | "standard" | "emphasized" | "spring";
29189
29189
  } | undefined;
29190
+ transition?: {
29191
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
29192
+ easing: "linear" | "standard" | "emphasized" | "spring";
29193
+ } | undefined;
29190
29194
  enter?: {
29191
29195
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
29192
29196
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -29203,10 +29207,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
29203
29207
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
29204
29208
  easing: "linear" | "standard" | "emphasized" | "spring";
29205
29209
  } | undefined;
29206
- transition?: {
29207
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
29208
- easing: "linear" | "standard" | "emphasized" | "spring";
29209
- } | undefined;
29210
29210
  } | undefined;
29211
29211
  durations?: {
29212
29212
  normal?: string | undefined;
@@ -29410,6 +29410,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
29410
29410
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
29411
29411
  easing: "linear" | "standard" | "emphasized" | "spring";
29412
29412
  } | undefined;
29413
+ transition?: {
29414
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
29415
+ easing: "linear" | "standard" | "emphasized" | "spring";
29416
+ } | undefined;
29413
29417
  enter?: {
29414
29418
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
29415
29419
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -29426,10 +29430,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
29426
29430
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
29427
29431
  easing: "linear" | "standard" | "emphasized" | "spring";
29428
29432
  } | undefined;
29429
- transition?: {
29430
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
29431
- easing: "linear" | "standard" | "emphasized" | "spring";
29432
- } | undefined;
29433
29433
  } | undefined;
29434
29434
  durations?: {
29435
29435
  normal?: string | undefined;
@@ -30435,6 +30435,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
30435
30435
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30436
30436
  easing: "linear" | "standard" | "emphasized" | "spring";
30437
30437
  } | undefined;
30438
+ transition?: {
30439
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30440
+ easing: "linear" | "standard" | "emphasized" | "spring";
30441
+ } | undefined;
30438
30442
  enter?: {
30439
30443
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30440
30444
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -30451,12 +30455,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
30451
30455
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30452
30456
  easing: "linear" | "standard" | "emphasized" | "spring";
30453
30457
  } | undefined;
30454
- transition?: {
30458
+ }, {
30459
+ hover?: {
30455
30460
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30456
30461
  easing: "linear" | "standard" | "emphasized" | "spring";
30457
30462
  } | undefined;
30458
- }, {
30459
- hover?: {
30463
+ transition?: {
30460
30464
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30461
30465
  easing: "linear" | "standard" | "emphasized" | "spring";
30462
30466
  } | undefined;
@@ -30476,10 +30480,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
30476
30480
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30477
30481
  easing: "linear" | "standard" | "emphasized" | "spring";
30478
30482
  } | undefined;
30479
- transition?: {
30480
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30481
- easing: "linear" | "standard" | "emphasized" | "spring";
30482
- } | undefined;
30483
30483
  }>>;
30484
30484
  }, "strip", z.ZodTypeAny, {
30485
30485
  intents?: {
@@ -30487,6 +30487,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
30487
30487
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30488
30488
  easing: "linear" | "standard" | "emphasized" | "spring";
30489
30489
  } | undefined;
30490
+ transition?: {
30491
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30492
+ easing: "linear" | "standard" | "emphasized" | "spring";
30493
+ } | undefined;
30490
30494
  enter?: {
30491
30495
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30492
30496
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -30503,10 +30507,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
30503
30507
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30504
30508
  easing: "linear" | "standard" | "emphasized" | "spring";
30505
30509
  } | undefined;
30506
- transition?: {
30507
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30508
- easing: "linear" | "standard" | "emphasized" | "spring";
30509
- } | undefined;
30510
30510
  } | undefined;
30511
30511
  durations?: {
30512
30512
  normal?: string | undefined;
@@ -30527,6 +30527,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
30527
30527
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30528
30528
  easing: "linear" | "standard" | "emphasized" | "spring";
30529
30529
  } | undefined;
30530
+ transition?: {
30531
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30532
+ easing: "linear" | "standard" | "emphasized" | "spring";
30533
+ } | undefined;
30530
30534
  enter?: {
30531
30535
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30532
30536
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -30543,10 +30547,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
30543
30547
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30544
30548
  easing: "linear" | "standard" | "emphasized" | "spring";
30545
30549
  } | undefined;
30546
- transition?: {
30547
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30548
- easing: "linear" | "standard" | "emphasized" | "spring";
30549
- } | undefined;
30550
30550
  } | undefined;
30551
30551
  durations?: {
30552
30552
  normal?: string | undefined;
@@ -30802,6 +30802,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
30802
30802
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30803
30803
  easing: "linear" | "standard" | "emphasized" | "spring";
30804
30804
  } | undefined;
30805
+ transition?: {
30806
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30807
+ easing: "linear" | "standard" | "emphasized" | "spring";
30808
+ } | undefined;
30805
30809
  enter?: {
30806
30810
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30807
30811
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -30818,10 +30822,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
30818
30822
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30819
30823
  easing: "linear" | "standard" | "emphasized" | "spring";
30820
30824
  } | undefined;
30821
- transition?: {
30822
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
30823
- easing: "linear" | "standard" | "emphasized" | "spring";
30824
- } | undefined;
30825
30825
  } | undefined;
30826
30826
  durations?: {
30827
30827
  normal?: string | undefined;
@@ -31024,6 +31024,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
31024
31024
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31025
31025
  easing: "linear" | "standard" | "emphasized" | "spring";
31026
31026
  } | undefined;
31027
+ transition?: {
31028
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31029
+ easing: "linear" | "standard" | "emphasized" | "spring";
31030
+ } | undefined;
31027
31031
  enter?: {
31028
31032
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31029
31033
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -31040,10 +31044,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
31040
31044
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31041
31045
  easing: "linear" | "standard" | "emphasized" | "spring";
31042
31046
  } | undefined;
31043
- transition?: {
31044
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31045
- easing: "linear" | "standard" | "emphasized" | "spring";
31046
- } | undefined;
31047
31047
  } | undefined;
31048
31048
  durations?: {
31049
31049
  normal?: string | undefined;
@@ -31924,6 +31924,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
31924
31924
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31925
31925
  easing: "linear" | "standard" | "emphasized" | "spring";
31926
31926
  } | undefined;
31927
+ transition?: {
31928
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31929
+ easing: "linear" | "standard" | "emphasized" | "spring";
31930
+ } | undefined;
31927
31931
  enter?: {
31928
31932
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31929
31933
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -31940,12 +31944,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
31940
31944
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31941
31945
  easing: "linear" | "standard" | "emphasized" | "spring";
31942
31946
  } | undefined;
31943
- transition?: {
31947
+ }, {
31948
+ hover?: {
31944
31949
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31945
31950
  easing: "linear" | "standard" | "emphasized" | "spring";
31946
31951
  } | undefined;
31947
- }, {
31948
- hover?: {
31952
+ transition?: {
31949
31953
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31950
31954
  easing: "linear" | "standard" | "emphasized" | "spring";
31951
31955
  } | undefined;
@@ -31965,10 +31969,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
31965
31969
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31966
31970
  easing: "linear" | "standard" | "emphasized" | "spring";
31967
31971
  } | undefined;
31968
- transition?: {
31969
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31970
- easing: "linear" | "standard" | "emphasized" | "spring";
31971
- } | undefined;
31972
31972
  }>>;
31973
31973
  }, "strip", z.ZodTypeAny, {
31974
31974
  intents?: {
@@ -31976,6 +31976,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
31976
31976
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31977
31977
  easing: "linear" | "standard" | "emphasized" | "spring";
31978
31978
  } | undefined;
31979
+ transition?: {
31980
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31981
+ easing: "linear" | "standard" | "emphasized" | "spring";
31982
+ } | undefined;
31979
31983
  enter?: {
31980
31984
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31981
31985
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -31992,10 +31996,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
31992
31996
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31993
31997
  easing: "linear" | "standard" | "emphasized" | "spring";
31994
31998
  } | undefined;
31995
- transition?: {
31996
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
31997
- easing: "linear" | "standard" | "emphasized" | "spring";
31998
- } | undefined;
31999
31999
  } | undefined;
32000
32000
  durations?: {
32001
32001
  normal?: string | undefined;
@@ -32016,6 +32016,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
32016
32016
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32017
32017
  easing: "linear" | "standard" | "emphasized" | "spring";
32018
32018
  } | undefined;
32019
+ transition?: {
32020
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32021
+ easing: "linear" | "standard" | "emphasized" | "spring";
32022
+ } | undefined;
32019
32023
  enter?: {
32020
32024
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32021
32025
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -32032,10 +32036,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
32032
32036
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32033
32037
  easing: "linear" | "standard" | "emphasized" | "spring";
32034
32038
  } | undefined;
32035
- transition?: {
32036
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32037
- easing: "linear" | "standard" | "emphasized" | "spring";
32038
- } | undefined;
32039
32039
  } | undefined;
32040
32040
  durations?: {
32041
32041
  normal?: string | undefined;
@@ -32291,6 +32291,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
32291
32291
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32292
32292
  easing: "linear" | "standard" | "emphasized" | "spring";
32293
32293
  } | undefined;
32294
+ transition?: {
32295
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32296
+ easing: "linear" | "standard" | "emphasized" | "spring";
32297
+ } | undefined;
32294
32298
  enter?: {
32295
32299
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32296
32300
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -32307,10 +32311,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
32307
32311
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32308
32312
  easing: "linear" | "standard" | "emphasized" | "spring";
32309
32313
  } | undefined;
32310
- transition?: {
32311
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32312
- easing: "linear" | "standard" | "emphasized" | "spring";
32313
- } | undefined;
32314
32314
  } | undefined;
32315
32315
  durations?: {
32316
32316
  normal?: string | undefined;
@@ -32513,6 +32513,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
32513
32513
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32514
32514
  easing: "linear" | "standard" | "emphasized" | "spring";
32515
32515
  } | undefined;
32516
+ transition?: {
32517
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32518
+ easing: "linear" | "standard" | "emphasized" | "spring";
32519
+ } | undefined;
32516
32520
  enter?: {
32517
32521
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32518
32522
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -32529,10 +32533,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
32529
32533
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32530
32534
  easing: "linear" | "standard" | "emphasized" | "spring";
32531
32535
  } | undefined;
32532
- transition?: {
32533
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32534
- easing: "linear" | "standard" | "emphasized" | "spring";
32535
- } | undefined;
32536
32536
  } | undefined;
32537
32537
  durations?: {
32538
32538
  normal?: string | undefined;
@@ -32738,6 +32738,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
32738
32738
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32739
32739
  easing: "linear" | "standard" | "emphasized" | "spring";
32740
32740
  } | undefined;
32741
+ transition?: {
32742
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32743
+ easing: "linear" | "standard" | "emphasized" | "spring";
32744
+ } | undefined;
32741
32745
  enter?: {
32742
32746
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32743
32747
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -32754,10 +32758,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
32754
32758
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32755
32759
  easing: "linear" | "standard" | "emphasized" | "spring";
32756
32760
  } | undefined;
32757
- transition?: {
32758
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32759
- easing: "linear" | "standard" | "emphasized" | "spring";
32760
- } | undefined;
32761
32761
  } | undefined;
32762
32762
  durations?: {
32763
32763
  normal?: string | undefined;
@@ -32961,6 +32961,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
32961
32961
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32962
32962
  easing: "linear" | "standard" | "emphasized" | "spring";
32963
32963
  } | undefined;
32964
+ transition?: {
32965
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32966
+ easing: "linear" | "standard" | "emphasized" | "spring";
32967
+ } | undefined;
32964
32968
  enter?: {
32965
32969
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32966
32970
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -32977,10 +32981,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
32977
32981
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32978
32982
  easing: "linear" | "standard" | "emphasized" | "spring";
32979
32983
  } | undefined;
32980
- transition?: {
32981
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
32982
- easing: "linear" | "standard" | "emphasized" | "spring";
32983
- } | undefined;
32984
32984
  } | undefined;
32985
32985
  durations?: {
32986
32986
  normal?: string | undefined;
@@ -33186,6 +33186,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
33186
33186
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
33187
33187
  easing: "linear" | "standard" | "emphasized" | "spring";
33188
33188
  } | undefined;
33189
+ transition?: {
33190
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
33191
+ easing: "linear" | "standard" | "emphasized" | "spring";
33192
+ } | undefined;
33189
33193
  enter?: {
33190
33194
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
33191
33195
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -33202,10 +33206,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
33202
33206
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
33203
33207
  easing: "linear" | "standard" | "emphasized" | "spring";
33204
33208
  } | undefined;
33205
- transition?: {
33206
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
33207
- easing: "linear" | "standard" | "emphasized" | "spring";
33208
- } | undefined;
33209
33209
  } | undefined;
33210
33210
  durations?: {
33211
33211
  normal?: string | undefined;
@@ -33409,6 +33409,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
33409
33409
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
33410
33410
  easing: "linear" | "standard" | "emphasized" | "spring";
33411
33411
  } | undefined;
33412
+ transition?: {
33413
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
33414
+ easing: "linear" | "standard" | "emphasized" | "spring";
33415
+ } | undefined;
33412
33416
  enter?: {
33413
33417
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
33414
33418
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -33425,10 +33429,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
33425
33429
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
33426
33430
  easing: "linear" | "standard" | "emphasized" | "spring";
33427
33431
  } | undefined;
33428
- transition?: {
33429
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
33430
- easing: "linear" | "standard" | "emphasized" | "spring";
33431
- } | undefined;
33432
33432
  } | undefined;
33433
33433
  durations?: {
33434
33434
  normal?: string | undefined;
@@ -36438,6 +36438,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
36438
36438
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
36439
36439
  easing: "linear" | "standard" | "emphasized" | "spring";
36440
36440
  } | undefined;
36441
+ transition?: {
36442
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
36443
+ easing: "linear" | "standard" | "emphasized" | "spring";
36444
+ } | undefined;
36441
36445
  enter?: {
36442
36446
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
36443
36447
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -36454,10 +36458,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
36454
36458
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
36455
36459
  easing: "linear" | "standard" | "emphasized" | "spring";
36456
36460
  } | undefined;
36457
- transition?: {
36458
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
36459
- easing: "linear" | "standard" | "emphasized" | "spring";
36460
- } | undefined;
36461
36461
  } | undefined;
36462
36462
  durations?: {
36463
36463
  normal?: string | undefined;
@@ -36661,6 +36661,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
36661
36661
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
36662
36662
  easing: "linear" | "standard" | "emphasized" | "spring";
36663
36663
  } | undefined;
36664
+ transition?: {
36665
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
36666
+ easing: "linear" | "standard" | "emphasized" | "spring";
36667
+ } | undefined;
36664
36668
  enter?: {
36665
36669
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
36666
36670
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -36677,10 +36681,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
36677
36681
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
36678
36682
  easing: "linear" | "standard" | "emphasized" | "spring";
36679
36683
  } | undefined;
36680
- transition?: {
36681
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
36682
- easing: "linear" | "standard" | "emphasized" | "spring";
36683
- } | undefined;
36684
36684
  } | undefined;
36685
36685
  durations?: {
36686
36686
  normal?: string | undefined;
@@ -37352,6 +37352,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
37352
37352
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
37353
37353
  easing: "linear" | "standard" | "emphasized" | "spring";
37354
37354
  } | undefined;
37355
+ transition?: {
37356
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
37357
+ easing: "linear" | "standard" | "emphasized" | "spring";
37358
+ } | undefined;
37355
37359
  enter?: {
37356
37360
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
37357
37361
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -37368,10 +37372,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
37368
37372
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
37369
37373
  easing: "linear" | "standard" | "emphasized" | "spring";
37370
37374
  } | undefined;
37371
- transition?: {
37372
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
37373
- easing: "linear" | "standard" | "emphasized" | "spring";
37374
- } | undefined;
37375
37375
  } | undefined;
37376
37376
  durations?: {
37377
37377
  normal?: string | undefined;
@@ -37575,6 +37575,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
37575
37575
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
37576
37576
  easing: "linear" | "standard" | "emphasized" | "spring";
37577
37577
  } | undefined;
37578
+ transition?: {
37579
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
37580
+ easing: "linear" | "standard" | "emphasized" | "spring";
37581
+ } | undefined;
37578
37582
  enter?: {
37579
37583
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
37580
37584
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -37591,10 +37595,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
37591
37595
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
37592
37596
  easing: "linear" | "standard" | "emphasized" | "spring";
37593
37597
  } | undefined;
37594
- transition?: {
37595
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
37596
- easing: "linear" | "standard" | "emphasized" | "spring";
37597
- } | undefined;
37598
37598
  } | undefined;
37599
37599
  durations?: {
37600
37600
  normal?: string | undefined;
@@ -38607,6 +38607,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
38607
38607
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38608
38608
  easing: "linear" | "standard" | "emphasized" | "spring";
38609
38609
  } | undefined;
38610
+ transition?: {
38611
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38612
+ easing: "linear" | "standard" | "emphasized" | "spring";
38613
+ } | undefined;
38610
38614
  enter?: {
38611
38615
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38612
38616
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -38623,12 +38627,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
38623
38627
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38624
38628
  easing: "linear" | "standard" | "emphasized" | "spring";
38625
38629
  } | undefined;
38626
- transition?: {
38630
+ }, {
38631
+ hover?: {
38627
38632
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38628
38633
  easing: "linear" | "standard" | "emphasized" | "spring";
38629
38634
  } | undefined;
38630
- }, {
38631
- hover?: {
38635
+ transition?: {
38632
38636
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38633
38637
  easing: "linear" | "standard" | "emphasized" | "spring";
38634
38638
  } | undefined;
@@ -38648,10 +38652,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
38648
38652
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38649
38653
  easing: "linear" | "standard" | "emphasized" | "spring";
38650
38654
  } | undefined;
38651
- transition?: {
38652
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38653
- easing: "linear" | "standard" | "emphasized" | "spring";
38654
- } | undefined;
38655
38655
  }>>;
38656
38656
  }, "strip", z.ZodTypeAny, {
38657
38657
  intents?: {
@@ -38659,6 +38659,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
38659
38659
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38660
38660
  easing: "linear" | "standard" | "emphasized" | "spring";
38661
38661
  } | undefined;
38662
+ transition?: {
38663
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38664
+ easing: "linear" | "standard" | "emphasized" | "spring";
38665
+ } | undefined;
38662
38666
  enter?: {
38663
38667
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38664
38668
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -38675,10 +38679,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
38675
38679
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38676
38680
  easing: "linear" | "standard" | "emphasized" | "spring";
38677
38681
  } | undefined;
38678
- transition?: {
38679
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38680
- easing: "linear" | "standard" | "emphasized" | "spring";
38681
- } | undefined;
38682
38682
  } | undefined;
38683
38683
  durations?: {
38684
38684
  normal?: string | undefined;
@@ -38699,6 +38699,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
38699
38699
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38700
38700
  easing: "linear" | "standard" | "emphasized" | "spring";
38701
38701
  } | undefined;
38702
+ transition?: {
38703
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38704
+ easing: "linear" | "standard" | "emphasized" | "spring";
38705
+ } | undefined;
38702
38706
  enter?: {
38703
38707
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38704
38708
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -38715,10 +38719,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
38715
38719
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38716
38720
  easing: "linear" | "standard" | "emphasized" | "spring";
38717
38721
  } | undefined;
38718
- transition?: {
38719
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38720
- easing: "linear" | "standard" | "emphasized" | "spring";
38721
- } | undefined;
38722
38722
  } | undefined;
38723
38723
  durations?: {
38724
38724
  normal?: string | undefined;
@@ -38974,6 +38974,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
38974
38974
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38975
38975
  easing: "linear" | "standard" | "emphasized" | "spring";
38976
38976
  } | undefined;
38977
+ transition?: {
38978
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38979
+ easing: "linear" | "standard" | "emphasized" | "spring";
38980
+ } | undefined;
38977
38981
  enter?: {
38978
38982
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38979
38983
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -38990,10 +38994,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
38990
38994
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38991
38995
  easing: "linear" | "standard" | "emphasized" | "spring";
38992
38996
  } | undefined;
38993
- transition?: {
38994
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
38995
- easing: "linear" | "standard" | "emphasized" | "spring";
38996
- } | undefined;
38997
38997
  } | undefined;
38998
38998
  durations?: {
38999
38999
  normal?: string | undefined;
@@ -39196,6 +39196,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
39196
39196
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
39197
39197
  easing: "linear" | "standard" | "emphasized" | "spring";
39198
39198
  } | undefined;
39199
+ transition?: {
39200
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
39201
+ easing: "linear" | "standard" | "emphasized" | "spring";
39202
+ } | undefined;
39199
39203
  enter?: {
39200
39204
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
39201
39205
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -39212,10 +39216,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
39212
39216
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
39213
39217
  easing: "linear" | "standard" | "emphasized" | "spring";
39214
39218
  } | undefined;
39215
- transition?: {
39216
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
39217
- easing: "linear" | "standard" | "emphasized" | "spring";
39218
- } | undefined;
39219
39219
  } | undefined;
39220
39220
  durations?: {
39221
39221
  normal?: string | undefined;
@@ -40096,6 +40096,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40096
40096
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40097
40097
  easing: "linear" | "standard" | "emphasized" | "spring";
40098
40098
  } | undefined;
40099
+ transition?: {
40100
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40101
+ easing: "linear" | "standard" | "emphasized" | "spring";
40102
+ } | undefined;
40099
40103
  enter?: {
40100
40104
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40101
40105
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -40112,12 +40116,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40112
40116
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40113
40117
  easing: "linear" | "standard" | "emphasized" | "spring";
40114
40118
  } | undefined;
40115
- transition?: {
40119
+ }, {
40120
+ hover?: {
40116
40121
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40117
40122
  easing: "linear" | "standard" | "emphasized" | "spring";
40118
40123
  } | undefined;
40119
- }, {
40120
- hover?: {
40124
+ transition?: {
40121
40125
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40122
40126
  easing: "linear" | "standard" | "emphasized" | "spring";
40123
40127
  } | undefined;
@@ -40137,10 +40141,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40137
40141
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40138
40142
  easing: "linear" | "standard" | "emphasized" | "spring";
40139
40143
  } | undefined;
40140
- transition?: {
40141
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40142
- easing: "linear" | "standard" | "emphasized" | "spring";
40143
- } | undefined;
40144
40144
  }>>;
40145
40145
  }, "strip", z.ZodTypeAny, {
40146
40146
  intents?: {
@@ -40148,6 +40148,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40148
40148
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40149
40149
  easing: "linear" | "standard" | "emphasized" | "spring";
40150
40150
  } | undefined;
40151
+ transition?: {
40152
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40153
+ easing: "linear" | "standard" | "emphasized" | "spring";
40154
+ } | undefined;
40151
40155
  enter?: {
40152
40156
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40153
40157
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -40164,10 +40168,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40164
40168
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40165
40169
  easing: "linear" | "standard" | "emphasized" | "spring";
40166
40170
  } | undefined;
40167
- transition?: {
40168
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40169
- easing: "linear" | "standard" | "emphasized" | "spring";
40170
- } | undefined;
40171
40171
  } | undefined;
40172
40172
  durations?: {
40173
40173
  normal?: string | undefined;
@@ -40188,6 +40188,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40188
40188
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40189
40189
  easing: "linear" | "standard" | "emphasized" | "spring";
40190
40190
  } | undefined;
40191
+ transition?: {
40192
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40193
+ easing: "linear" | "standard" | "emphasized" | "spring";
40194
+ } | undefined;
40191
40195
  enter?: {
40192
40196
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40193
40197
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -40204,10 +40208,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40204
40208
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40205
40209
  easing: "linear" | "standard" | "emphasized" | "spring";
40206
40210
  } | undefined;
40207
- transition?: {
40208
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40209
- easing: "linear" | "standard" | "emphasized" | "spring";
40210
- } | undefined;
40211
40211
  } | undefined;
40212
40212
  durations?: {
40213
40213
  normal?: string | undefined;
@@ -40463,6 +40463,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40463
40463
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40464
40464
  easing: "linear" | "standard" | "emphasized" | "spring";
40465
40465
  } | undefined;
40466
+ transition?: {
40467
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40468
+ easing: "linear" | "standard" | "emphasized" | "spring";
40469
+ } | undefined;
40466
40470
  enter?: {
40467
40471
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40468
40472
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -40479,10 +40483,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40479
40483
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40480
40484
  easing: "linear" | "standard" | "emphasized" | "spring";
40481
40485
  } | undefined;
40482
- transition?: {
40483
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40484
- easing: "linear" | "standard" | "emphasized" | "spring";
40485
- } | undefined;
40486
40486
  } | undefined;
40487
40487
  durations?: {
40488
40488
  normal?: string | undefined;
@@ -40685,6 +40685,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40685
40685
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40686
40686
  easing: "linear" | "standard" | "emphasized" | "spring";
40687
40687
  } | undefined;
40688
+ transition?: {
40689
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40690
+ easing: "linear" | "standard" | "emphasized" | "spring";
40691
+ } | undefined;
40688
40692
  enter?: {
40689
40693
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40690
40694
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -40701,10 +40705,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40701
40705
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40702
40706
  easing: "linear" | "standard" | "emphasized" | "spring";
40703
40707
  } | undefined;
40704
- transition?: {
40705
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40706
- easing: "linear" | "standard" | "emphasized" | "spring";
40707
- } | undefined;
40708
40708
  } | undefined;
40709
40709
  durations?: {
40710
40710
  normal?: string | undefined;
@@ -40910,6 +40910,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40910
40910
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40911
40911
  easing: "linear" | "standard" | "emphasized" | "spring";
40912
40912
  } | undefined;
40913
+ transition?: {
40914
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40915
+ easing: "linear" | "standard" | "emphasized" | "spring";
40916
+ } | undefined;
40913
40917
  enter?: {
40914
40918
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40915
40919
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -40926,10 +40930,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
40926
40930
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40927
40931
  easing: "linear" | "standard" | "emphasized" | "spring";
40928
40932
  } | undefined;
40929
- transition?: {
40930
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
40931
- easing: "linear" | "standard" | "emphasized" | "spring";
40932
- } | undefined;
40933
40933
  } | undefined;
40934
40934
  durations?: {
40935
40935
  normal?: string | undefined;
@@ -41133,6 +41133,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
41133
41133
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41134
41134
  easing: "linear" | "standard" | "emphasized" | "spring";
41135
41135
  } | undefined;
41136
+ transition?: {
41137
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41138
+ easing: "linear" | "standard" | "emphasized" | "spring";
41139
+ } | undefined;
41136
41140
  enter?: {
41137
41141
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41138
41142
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -41149,10 +41153,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
41149
41153
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41150
41154
  easing: "linear" | "standard" | "emphasized" | "spring";
41151
41155
  } | undefined;
41152
- transition?: {
41153
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41154
- easing: "linear" | "standard" | "emphasized" | "spring";
41155
- } | undefined;
41156
41156
  } | undefined;
41157
41157
  durations?: {
41158
41158
  normal?: string | undefined;
@@ -41358,6 +41358,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
41358
41358
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41359
41359
  easing: "linear" | "standard" | "emphasized" | "spring";
41360
41360
  } | undefined;
41361
+ transition?: {
41362
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41363
+ easing: "linear" | "standard" | "emphasized" | "spring";
41364
+ } | undefined;
41361
41365
  enter?: {
41362
41366
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41363
41367
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -41374,10 +41378,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
41374
41378
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41375
41379
  easing: "linear" | "standard" | "emphasized" | "spring";
41376
41380
  } | undefined;
41377
- transition?: {
41378
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41379
- easing: "linear" | "standard" | "emphasized" | "spring";
41380
- } | undefined;
41381
41381
  } | undefined;
41382
41382
  durations?: {
41383
41383
  normal?: string | undefined;
@@ -41581,6 +41581,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
41581
41581
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41582
41582
  easing: "linear" | "standard" | "emphasized" | "spring";
41583
41583
  } | undefined;
41584
+ transition?: {
41585
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41586
+ easing: "linear" | "standard" | "emphasized" | "spring";
41587
+ } | undefined;
41584
41588
  enter?: {
41585
41589
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41586
41590
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -41597,10 +41601,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
41597
41601
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41598
41602
  easing: "linear" | "standard" | "emphasized" | "spring";
41599
41603
  } | undefined;
41600
- transition?: {
41601
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
41602
- easing: "linear" | "standard" | "emphasized" | "spring";
41603
- } | undefined;
41604
41604
  } | undefined;
41605
41605
  durations?: {
41606
41606
  normal?: string | undefined;
@@ -44610,6 +44610,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
44610
44610
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
44611
44611
  easing: "linear" | "standard" | "emphasized" | "spring";
44612
44612
  } | undefined;
44613
+ transition?: {
44614
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
44615
+ easing: "linear" | "standard" | "emphasized" | "spring";
44616
+ } | undefined;
44613
44617
  enter?: {
44614
44618
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
44615
44619
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -44626,10 +44630,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
44626
44630
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
44627
44631
  easing: "linear" | "standard" | "emphasized" | "spring";
44628
44632
  } | undefined;
44629
- transition?: {
44630
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
44631
- easing: "linear" | "standard" | "emphasized" | "spring";
44632
- } | undefined;
44633
44633
  } | undefined;
44634
44634
  durations?: {
44635
44635
  normal?: string | undefined;
@@ -44833,6 +44833,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
44833
44833
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
44834
44834
  easing: "linear" | "standard" | "emphasized" | "spring";
44835
44835
  } | undefined;
44836
+ transition?: {
44837
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
44838
+ easing: "linear" | "standard" | "emphasized" | "spring";
44839
+ } | undefined;
44836
44840
  enter?: {
44837
44841
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
44838
44842
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -44849,10 +44853,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
44849
44853
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
44850
44854
  easing: "linear" | "standard" | "emphasized" | "spring";
44851
44855
  } | undefined;
44852
- transition?: {
44853
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
44854
- easing: "linear" | "standard" | "emphasized" | "spring";
44855
- } | undefined;
44856
44856
  } | undefined;
44857
44857
  durations?: {
44858
44858
  normal?: string | undefined;
@@ -45524,6 +45524,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
45524
45524
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
45525
45525
  easing: "linear" | "standard" | "emphasized" | "spring";
45526
45526
  } | undefined;
45527
+ transition?: {
45528
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
45529
+ easing: "linear" | "standard" | "emphasized" | "spring";
45530
+ } | undefined;
45527
45531
  enter?: {
45528
45532
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
45529
45533
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -45540,10 +45544,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
45540
45544
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
45541
45545
  easing: "linear" | "standard" | "emphasized" | "spring";
45542
45546
  } | undefined;
45543
- transition?: {
45544
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
45545
- easing: "linear" | "standard" | "emphasized" | "spring";
45546
- } | undefined;
45547
45547
  } | undefined;
45548
45548
  durations?: {
45549
45549
  normal?: string | undefined;
@@ -45747,6 +45747,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
45747
45747
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
45748
45748
  easing: "linear" | "standard" | "emphasized" | "spring";
45749
45749
  } | undefined;
45750
+ transition?: {
45751
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
45752
+ easing: "linear" | "standard" | "emphasized" | "spring";
45753
+ } | undefined;
45750
45754
  enter?: {
45751
45755
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
45752
45756
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -45763,10 +45767,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
45763
45767
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
45764
45768
  easing: "linear" | "standard" | "emphasized" | "spring";
45765
45769
  } | undefined;
45766
- transition?: {
45767
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
45768
- easing: "linear" | "standard" | "emphasized" | "spring";
45769
- } | undefined;
45770
45770
  } | undefined;
45771
45771
  durations?: {
45772
45772
  normal?: string | undefined;
@@ -47126,6 +47126,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
47126
47126
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47127
47127
  easing: "linear" | "standard" | "emphasized" | "spring";
47128
47128
  } | undefined;
47129
+ transition?: {
47130
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47131
+ easing: "linear" | "standard" | "emphasized" | "spring";
47132
+ } | undefined;
47129
47133
  enter?: {
47130
47134
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47131
47135
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -47142,12 +47146,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
47142
47146
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47143
47147
  easing: "linear" | "standard" | "emphasized" | "spring";
47144
47148
  } | undefined;
47145
- transition?: {
47149
+ }, {
47150
+ hover?: {
47146
47151
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47147
47152
  easing: "linear" | "standard" | "emphasized" | "spring";
47148
47153
  } | undefined;
47149
- }, {
47150
- hover?: {
47154
+ transition?: {
47151
47155
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47152
47156
  easing: "linear" | "standard" | "emphasized" | "spring";
47153
47157
  } | undefined;
@@ -47167,10 +47171,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
47167
47171
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47168
47172
  easing: "linear" | "standard" | "emphasized" | "spring";
47169
47173
  } | undefined;
47170
- transition?: {
47171
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47172
- easing: "linear" | "standard" | "emphasized" | "spring";
47173
- } | undefined;
47174
47174
  }>>;
47175
47175
  }, "strip", z.ZodTypeAny, {
47176
47176
  intents?: {
@@ -47178,6 +47178,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
47178
47178
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47179
47179
  easing: "linear" | "standard" | "emphasized" | "spring";
47180
47180
  } | undefined;
47181
+ transition?: {
47182
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47183
+ easing: "linear" | "standard" | "emphasized" | "spring";
47184
+ } | undefined;
47181
47185
  enter?: {
47182
47186
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47183
47187
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -47194,10 +47198,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
47194
47198
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47195
47199
  easing: "linear" | "standard" | "emphasized" | "spring";
47196
47200
  } | undefined;
47197
- transition?: {
47198
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47199
- easing: "linear" | "standard" | "emphasized" | "spring";
47200
- } | undefined;
47201
47201
  } | undefined;
47202
47202
  durations?: {
47203
47203
  normal?: string | undefined;
@@ -47218,6 +47218,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
47218
47218
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47219
47219
  easing: "linear" | "standard" | "emphasized" | "spring";
47220
47220
  } | undefined;
47221
+ transition?: {
47222
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47223
+ easing: "linear" | "standard" | "emphasized" | "spring";
47224
+ } | undefined;
47221
47225
  enter?: {
47222
47226
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47223
47227
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -47234,10 +47238,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
47234
47238
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47235
47239
  easing: "linear" | "standard" | "emphasized" | "spring";
47236
47240
  } | undefined;
47237
- transition?: {
47238
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47239
- easing: "linear" | "standard" | "emphasized" | "spring";
47240
- } | undefined;
47241
47241
  } | undefined;
47242
47242
  durations?: {
47243
47243
  normal?: string | undefined;
@@ -47493,6 +47493,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
47493
47493
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47494
47494
  easing: "linear" | "standard" | "emphasized" | "spring";
47495
47495
  } | undefined;
47496
+ transition?: {
47497
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47498
+ easing: "linear" | "standard" | "emphasized" | "spring";
47499
+ } | undefined;
47496
47500
  enter?: {
47497
47501
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47498
47502
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -47509,10 +47513,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
47509
47513
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47510
47514
  easing: "linear" | "standard" | "emphasized" | "spring";
47511
47515
  } | undefined;
47512
- transition?: {
47513
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47514
- easing: "linear" | "standard" | "emphasized" | "spring";
47515
- } | undefined;
47516
47516
  } | undefined;
47517
47517
  durations?: {
47518
47518
  normal?: string | undefined;
@@ -47715,6 +47715,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
47715
47715
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47716
47716
  easing: "linear" | "standard" | "emphasized" | "spring";
47717
47717
  } | undefined;
47718
+ transition?: {
47719
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47720
+ easing: "linear" | "standard" | "emphasized" | "spring";
47721
+ } | undefined;
47718
47722
  enter?: {
47719
47723
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47720
47724
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -47731,10 +47735,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
47731
47735
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47732
47736
  easing: "linear" | "standard" | "emphasized" | "spring";
47733
47737
  } | undefined;
47734
- transition?: {
47735
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
47736
- easing: "linear" | "standard" | "emphasized" | "spring";
47737
- } | undefined;
47738
47738
  } | undefined;
47739
47739
  durations?: {
47740
47740
  normal?: string | undefined;
@@ -48615,6 +48615,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
48615
48615
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48616
48616
  easing: "linear" | "standard" | "emphasized" | "spring";
48617
48617
  } | undefined;
48618
+ transition?: {
48619
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48620
+ easing: "linear" | "standard" | "emphasized" | "spring";
48621
+ } | undefined;
48618
48622
  enter?: {
48619
48623
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48620
48624
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -48631,12 +48635,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
48631
48635
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48632
48636
  easing: "linear" | "standard" | "emphasized" | "spring";
48633
48637
  } | undefined;
48634
- transition?: {
48638
+ }, {
48639
+ hover?: {
48635
48640
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48636
48641
  easing: "linear" | "standard" | "emphasized" | "spring";
48637
48642
  } | undefined;
48638
- }, {
48639
- hover?: {
48643
+ transition?: {
48640
48644
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48641
48645
  easing: "linear" | "standard" | "emphasized" | "spring";
48642
48646
  } | undefined;
@@ -48656,10 +48660,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
48656
48660
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48657
48661
  easing: "linear" | "standard" | "emphasized" | "spring";
48658
48662
  } | undefined;
48659
- transition?: {
48660
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48661
- easing: "linear" | "standard" | "emphasized" | "spring";
48662
- } | undefined;
48663
48663
  }>>;
48664
48664
  }, "strip", z.ZodTypeAny, {
48665
48665
  intents?: {
@@ -48667,6 +48667,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
48667
48667
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48668
48668
  easing: "linear" | "standard" | "emphasized" | "spring";
48669
48669
  } | undefined;
48670
+ transition?: {
48671
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48672
+ easing: "linear" | "standard" | "emphasized" | "spring";
48673
+ } | undefined;
48670
48674
  enter?: {
48671
48675
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48672
48676
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -48683,10 +48687,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
48683
48687
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48684
48688
  easing: "linear" | "standard" | "emphasized" | "spring";
48685
48689
  } | undefined;
48686
- transition?: {
48687
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48688
- easing: "linear" | "standard" | "emphasized" | "spring";
48689
- } | undefined;
48690
48690
  } | undefined;
48691
48691
  durations?: {
48692
48692
  normal?: string | undefined;
@@ -48707,6 +48707,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
48707
48707
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48708
48708
  easing: "linear" | "standard" | "emphasized" | "spring";
48709
48709
  } | undefined;
48710
+ transition?: {
48711
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48712
+ easing: "linear" | "standard" | "emphasized" | "spring";
48713
+ } | undefined;
48710
48714
  enter?: {
48711
48715
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48712
48716
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -48723,10 +48727,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
48723
48727
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48724
48728
  easing: "linear" | "standard" | "emphasized" | "spring";
48725
48729
  } | undefined;
48726
- transition?: {
48727
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48728
- easing: "linear" | "standard" | "emphasized" | "spring";
48729
- } | undefined;
48730
48730
  } | undefined;
48731
48731
  durations?: {
48732
48732
  normal?: string | undefined;
@@ -48982,6 +48982,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
48982
48982
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48983
48983
  easing: "linear" | "standard" | "emphasized" | "spring";
48984
48984
  } | undefined;
48985
+ transition?: {
48986
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48987
+ easing: "linear" | "standard" | "emphasized" | "spring";
48988
+ } | undefined;
48985
48989
  enter?: {
48986
48990
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48987
48991
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -48998,10 +49002,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
48998
49002
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
48999
49003
  easing: "linear" | "standard" | "emphasized" | "spring";
49000
49004
  } | undefined;
49001
- transition?: {
49002
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49003
- easing: "linear" | "standard" | "emphasized" | "spring";
49004
- } | undefined;
49005
49005
  } | undefined;
49006
49006
  durations?: {
49007
49007
  normal?: string | undefined;
@@ -49204,6 +49204,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
49204
49204
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49205
49205
  easing: "linear" | "standard" | "emphasized" | "spring";
49206
49206
  } | undefined;
49207
+ transition?: {
49208
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49209
+ easing: "linear" | "standard" | "emphasized" | "spring";
49210
+ } | undefined;
49207
49211
  enter?: {
49208
49212
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49209
49213
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -49220,10 +49224,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
49220
49224
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49221
49225
  easing: "linear" | "standard" | "emphasized" | "spring";
49222
49226
  } | undefined;
49223
- transition?: {
49224
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49225
- easing: "linear" | "standard" | "emphasized" | "spring";
49226
- } | undefined;
49227
49227
  } | undefined;
49228
49228
  durations?: {
49229
49229
  normal?: string | undefined;
@@ -49429,6 +49429,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
49429
49429
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49430
49430
  easing: "linear" | "standard" | "emphasized" | "spring";
49431
49431
  } | undefined;
49432
+ transition?: {
49433
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49434
+ easing: "linear" | "standard" | "emphasized" | "spring";
49435
+ } | undefined;
49432
49436
  enter?: {
49433
49437
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49434
49438
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -49445,10 +49449,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
49445
49449
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49446
49450
  easing: "linear" | "standard" | "emphasized" | "spring";
49447
49451
  } | undefined;
49448
- transition?: {
49449
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49450
- easing: "linear" | "standard" | "emphasized" | "spring";
49451
- } | undefined;
49452
49452
  } | undefined;
49453
49453
  durations?: {
49454
49454
  normal?: string | undefined;
@@ -49652,6 +49652,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
49652
49652
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49653
49653
  easing: "linear" | "standard" | "emphasized" | "spring";
49654
49654
  } | undefined;
49655
+ transition?: {
49656
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49657
+ easing: "linear" | "standard" | "emphasized" | "spring";
49658
+ } | undefined;
49655
49659
  enter?: {
49656
49660
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49657
49661
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -49668,10 +49672,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
49668
49672
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49669
49673
  easing: "linear" | "standard" | "emphasized" | "spring";
49670
49674
  } | undefined;
49671
- transition?: {
49672
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49673
- easing: "linear" | "standard" | "emphasized" | "spring";
49674
- } | undefined;
49675
49675
  } | undefined;
49676
49676
  durations?: {
49677
49677
  normal?: string | undefined;
@@ -49877,6 +49877,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
49877
49877
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49878
49878
  easing: "linear" | "standard" | "emphasized" | "spring";
49879
49879
  } | undefined;
49880
+ transition?: {
49881
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49882
+ easing: "linear" | "standard" | "emphasized" | "spring";
49883
+ } | undefined;
49880
49884
  enter?: {
49881
49885
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49882
49886
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -49893,10 +49897,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
49893
49897
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49894
49898
  easing: "linear" | "standard" | "emphasized" | "spring";
49895
49899
  } | undefined;
49896
- transition?: {
49897
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
49898
- easing: "linear" | "standard" | "emphasized" | "spring";
49899
- } | undefined;
49900
49900
  } | undefined;
49901
49901
  durations?: {
49902
49902
  normal?: string | undefined;
@@ -50100,6 +50100,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
50100
50100
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
50101
50101
  easing: "linear" | "standard" | "emphasized" | "spring";
50102
50102
  } | undefined;
50103
+ transition?: {
50104
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
50105
+ easing: "linear" | "standard" | "emphasized" | "spring";
50106
+ } | undefined;
50103
50107
  enter?: {
50104
50108
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
50105
50109
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -50116,10 +50120,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
50116
50120
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
50117
50121
  easing: "linear" | "standard" | "emphasized" | "spring";
50118
50122
  } | undefined;
50119
- transition?: {
50120
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
50121
- easing: "linear" | "standard" | "emphasized" | "spring";
50122
- } | undefined;
50123
50123
  } | undefined;
50124
50124
  durations?: {
50125
50125
  normal?: string | undefined;
@@ -53129,6 +53129,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
53129
53129
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
53130
53130
  easing: "linear" | "standard" | "emphasized" | "spring";
53131
53131
  } | undefined;
53132
+ transition?: {
53133
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
53134
+ easing: "linear" | "standard" | "emphasized" | "spring";
53135
+ } | undefined;
53132
53136
  enter?: {
53133
53137
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
53134
53138
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -53145,10 +53149,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
53145
53149
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
53146
53150
  easing: "linear" | "standard" | "emphasized" | "spring";
53147
53151
  } | undefined;
53148
- transition?: {
53149
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
53150
- easing: "linear" | "standard" | "emphasized" | "spring";
53151
- } | undefined;
53152
53152
  } | undefined;
53153
53153
  durations?: {
53154
53154
  normal?: string | undefined;
@@ -53352,6 +53352,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
53352
53352
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
53353
53353
  easing: "linear" | "standard" | "emphasized" | "spring";
53354
53354
  } | undefined;
53355
+ transition?: {
53356
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
53357
+ easing: "linear" | "standard" | "emphasized" | "spring";
53358
+ } | undefined;
53355
53359
  enter?: {
53356
53360
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
53357
53361
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -53368,10 +53372,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
53368
53372
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
53369
53373
  easing: "linear" | "standard" | "emphasized" | "spring";
53370
53374
  } | undefined;
53371
- transition?: {
53372
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
53373
- easing: "linear" | "standard" | "emphasized" | "spring";
53374
- } | undefined;
53375
53375
  } | undefined;
53376
53376
  durations?: {
53377
53377
  normal?: string | undefined;
@@ -54043,6 +54043,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
54043
54043
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
54044
54044
  easing: "linear" | "standard" | "emphasized" | "spring";
54045
54045
  } | undefined;
54046
+ transition?: {
54047
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
54048
+ easing: "linear" | "standard" | "emphasized" | "spring";
54049
+ } | undefined;
54046
54050
  enter?: {
54047
54051
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
54048
54052
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -54059,10 +54063,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
54059
54063
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
54060
54064
  easing: "linear" | "standard" | "emphasized" | "spring";
54061
54065
  } | undefined;
54062
- transition?: {
54063
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
54064
- easing: "linear" | "standard" | "emphasized" | "spring";
54065
- } | undefined;
54066
54066
  } | undefined;
54067
54067
  durations?: {
54068
54068
  normal?: string | undefined;
@@ -54266,6 +54266,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
54266
54266
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
54267
54267
  easing: "linear" | "standard" | "emphasized" | "spring";
54268
54268
  } | undefined;
54269
+ transition?: {
54270
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
54271
+ easing: "linear" | "standard" | "emphasized" | "spring";
54272
+ } | undefined;
54269
54273
  enter?: {
54270
54274
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
54271
54275
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -54282,10 +54286,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
54282
54286
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
54283
54287
  easing: "linear" | "standard" | "emphasized" | "spring";
54284
54288
  } | undefined;
54285
- transition?: {
54286
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
54287
- easing: "linear" | "standard" | "emphasized" | "spring";
54288
- } | undefined;
54289
54289
  } | undefined;
54290
54290
  durations?: {
54291
54291
  normal?: string | undefined;
@@ -55258,6 +55258,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
55258
55258
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
55259
55259
  easing: "linear" | "standard" | "emphasized" | "spring";
55260
55260
  } | undefined;
55261
+ transition?: {
55262
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
55263
+ easing: "linear" | "standard" | "emphasized" | "spring";
55264
+ } | undefined;
55261
55265
  enter?: {
55262
55266
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
55263
55267
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -55274,10 +55278,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
55274
55278
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
55275
55279
  easing: "linear" | "standard" | "emphasized" | "spring";
55276
55280
  } | undefined;
55277
- transition?: {
55278
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
55279
- easing: "linear" | "standard" | "emphasized" | "spring";
55280
- } | undefined;
55281
55281
  } | undefined;
55282
55282
  durations?: {
55283
55283
  normal?: string | undefined;
@@ -55481,6 +55481,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
55481
55481
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
55482
55482
  easing: "linear" | "standard" | "emphasized" | "spring";
55483
55483
  } | undefined;
55484
+ transition?: {
55485
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
55486
+ easing: "linear" | "standard" | "emphasized" | "spring";
55487
+ } | undefined;
55484
55488
  enter?: {
55485
55489
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
55486
55490
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -55497,10 +55501,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
55497
55501
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
55498
55502
  easing: "linear" | "standard" | "emphasized" | "spring";
55499
55503
  } | undefined;
55500
- transition?: {
55501
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
55502
- easing: "linear" | "standard" | "emphasized" | "spring";
55503
- } | undefined;
55504
55504
  } | undefined;
55505
55505
  durations?: {
55506
55506
  normal?: string | undefined;
@@ -56291,6 +56291,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
56291
56291
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
56292
56292
  easing: "linear" | "standard" | "emphasized" | "spring";
56293
56293
  } | undefined;
56294
+ transition?: {
56295
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
56296
+ easing: "linear" | "standard" | "emphasized" | "spring";
56297
+ } | undefined;
56294
56298
  enter?: {
56295
56299
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
56296
56300
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -56307,10 +56311,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
56307
56311
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
56308
56312
  easing: "linear" | "standard" | "emphasized" | "spring";
56309
56313
  } | undefined;
56310
- transition?: {
56311
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
56312
- easing: "linear" | "standard" | "emphasized" | "spring";
56313
- } | undefined;
56314
56314
  } | undefined;
56315
56315
  durations?: {
56316
56316
  normal?: string | undefined;
@@ -56514,6 +56514,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
56514
56514
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
56515
56515
  easing: "linear" | "standard" | "emphasized" | "spring";
56516
56516
  } | undefined;
56517
+ transition?: {
56518
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
56519
+ easing: "linear" | "standard" | "emphasized" | "spring";
56520
+ } | undefined;
56517
56521
  enter?: {
56518
56522
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
56519
56523
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -56530,10 +56534,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
56530
56534
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
56531
56535
  easing: "linear" | "standard" | "emphasized" | "spring";
56532
56536
  } | undefined;
56533
- transition?: {
56534
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
56535
- easing: "linear" | "standard" | "emphasized" | "spring";
56536
- } | undefined;
56537
56537
  } | undefined;
56538
56538
  durations?: {
56539
56539
  normal?: string | undefined;
@@ -57389,6 +57389,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
57389
57389
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
57390
57390
  easing: "linear" | "standard" | "emphasized" | "spring";
57391
57391
  } | undefined;
57392
+ transition?: {
57393
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
57394
+ easing: "linear" | "standard" | "emphasized" | "spring";
57395
+ } | undefined;
57392
57396
  enter?: {
57393
57397
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
57394
57398
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -57405,10 +57409,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
57405
57409
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
57406
57410
  easing: "linear" | "standard" | "emphasized" | "spring";
57407
57411
  } | undefined;
57408
- transition?: {
57409
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
57410
- easing: "linear" | "standard" | "emphasized" | "spring";
57411
- } | undefined;
57412
57412
  } | undefined;
57413
57413
  durations?: {
57414
57414
  normal?: string | undefined;
@@ -57612,6 +57612,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
57612
57612
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
57613
57613
  easing: "linear" | "standard" | "emphasized" | "spring";
57614
57614
  } | undefined;
57615
+ transition?: {
57616
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
57617
+ easing: "linear" | "standard" | "emphasized" | "spring";
57618
+ } | undefined;
57615
57619
  enter?: {
57616
57620
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
57617
57621
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -57628,10 +57632,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
57628
57632
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
57629
57633
  easing: "linear" | "standard" | "emphasized" | "spring";
57630
57634
  } | undefined;
57631
- transition?: {
57632
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
57633
- easing: "linear" | "standard" | "emphasized" | "spring";
57634
- } | undefined;
57635
57635
  } | undefined;
57636
57636
  durations?: {
57637
57637
  normal?: string | undefined;
@@ -58422,6 +58422,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
58422
58422
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
58423
58423
  easing: "linear" | "standard" | "emphasized" | "spring";
58424
58424
  } | undefined;
58425
+ transition?: {
58426
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
58427
+ easing: "linear" | "standard" | "emphasized" | "spring";
58428
+ } | undefined;
58425
58429
  enter?: {
58426
58430
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
58427
58431
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -58438,10 +58442,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
58438
58442
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
58439
58443
  easing: "linear" | "standard" | "emphasized" | "spring";
58440
58444
  } | undefined;
58441
- transition?: {
58442
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
58443
- easing: "linear" | "standard" | "emphasized" | "spring";
58444
- } | undefined;
58445
58445
  } | undefined;
58446
58446
  durations?: {
58447
58447
  normal?: string | undefined;
@@ -58645,6 +58645,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
58645
58645
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
58646
58646
  easing: "linear" | "standard" | "emphasized" | "spring";
58647
58647
  } | undefined;
58648
+ transition?: {
58649
+ duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
58650
+ easing: "linear" | "standard" | "emphasized" | "spring";
58651
+ } | undefined;
58648
58652
  enter?: {
58649
58653
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
58650
58654
  easing: "linear" | "standard" | "emphasized" | "spring";
@@ -58661,10 +58665,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
58661
58665
  duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
58662
58666
  easing: "linear" | "standard" | "emphasized" | "spring";
58663
58667
  } | undefined;
58664
- transition?: {
58665
- duration: "normal" | "instant" | "fast" | "slow" | "dramatic";
58666
- easing: "linear" | "standard" | "emphasized" | "spring";
58667
- } | undefined;
58668
58668
  } | undefined;
58669
58669
  durations?: {
58670
58670
  normal?: string | undefined;