mythik 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/NOTICE +4 -0
- package/README.md +97 -2
- package/dist/actions/dispatcher.d.ts +46 -0
- package/dist/actions/dispatcher.d.ts.map +1 -0
- package/dist/actions/dispatcher.js +366 -0
- package/dist/actions/dispatcher.js.map +1 -0
- package/dist/actions/middleware.d.ts +27 -0
- package/dist/actions/middleware.d.ts.map +1 -0
- package/dist/actions/middleware.js +37 -0
- package/dist/actions/middleware.js.map +1 -0
- package/dist/actions/transaction-engine.d.ts +13 -0
- package/dist/actions/transaction-engine.d.ts.map +1 -0
- package/dist/actions/transaction-engine.js +96 -0
- package/dist/actions/transaction-engine.js.map +1 -0
- package/dist/app/app-engine.d.ts +106 -0
- package/dist/app/app-engine.d.ts.map +1 -0
- package/dist/app/app-engine.js +413 -0
- package/dist/app/app-engine.js.map +1 -0
- package/dist/auth/cross-tab.d.ts +24 -0
- package/dist/auth/cross-tab.d.ts.map +1 -0
- package/dist/auth/cross-tab.js +117 -0
- package/dist/auth/cross-tab.js.map +1 -0
- package/dist/auth/engine.d.ts +16 -0
- package/dist/auth/engine.d.ts.map +1 -0
- package/dist/auth/engine.js +225 -0
- package/dist/auth/engine.js.map +1 -0
- package/dist/auth/persistence.d.ts +21 -0
- package/dist/auth/persistence.d.ts.map +1 -0
- package/dist/auth/persistence.js +97 -0
- package/dist/auth/persistence.js.map +1 -0
- package/dist/auth/providers/custom-jwt.d.ts +41 -0
- package/dist/auth/providers/custom-jwt.d.ts.map +1 -0
- package/dist/auth/providers/custom-jwt.js +165 -0
- package/dist/auth/providers/custom-jwt.js.map +1 -0
- package/dist/auth/providers/mock.d.ts +7 -0
- package/dist/auth/providers/mock.d.ts.map +1 -0
- package/dist/auth/providers/mock.js +52 -0
- package/dist/auth/providers/mock.js.map +1 -0
- package/dist/auth/providers/supabase.d.ts +90 -0
- package/dist/auth/providers/supabase.d.ts.map +1 -0
- package/dist/auth/providers/supabase.js +102 -0
- package/dist/auth/providers/supabase.js.map +1 -0
- package/dist/auth/rate-limiter.d.ts +29 -0
- package/dist/auth/rate-limiter.d.ts.map +1 -0
- package/dist/auth/rate-limiter.js +67 -0
- package/dist/auth/rate-limiter.js.map +1 -0
- package/dist/auth/refresh-engine.d.ts +25 -0
- package/dist/auth/refresh-engine.d.ts.map +1 -0
- package/dist/auth/refresh-engine.js +59 -0
- package/dist/auth/refresh-engine.js.map +1 -0
- package/dist/auth/types.d.ts +89 -0
- package/dist/auth/types.d.ts.map +1 -0
- package/dist/auth/types.js +2 -0
- package/dist/auth/types.js.map +1 -0
- package/dist/contract/endpoint-map.d.ts +20 -0
- package/dist/contract/endpoint-map.d.ts.map +1 -0
- package/dist/contract/endpoint-map.js +57 -0
- package/dist/contract/endpoint-map.js.map +1 -0
- package/dist/contract/engine.d.ts +12 -0
- package/dist/contract/engine.d.ts.map +1 -0
- package/dist/contract/engine.js +80 -0
- package/dist/contract/engine.js.map +1 -0
- package/dist/contract/extractor.d.ts +7 -0
- package/dist/contract/extractor.d.ts.map +1 -0
- package/dist/contract/extractor.js +133 -0
- package/dist/contract/extractor.js.map +1 -0
- package/dist/contract/index.d.ts +4 -0
- package/dist/contract/index.d.ts.map +1 -0
- package/dist/contract/index.js +2 -0
- package/dist/contract/index.js.map +1 -0
- package/dist/contract/matcher.d.ts +13 -0
- package/dist/contract/matcher.d.ts.map +1 -0
- package/dist/contract/matcher.js +57 -0
- package/dist/contract/matcher.js.map +1 -0
- package/dist/contract/rules/endpoints-exist.d.ts +3 -0
- package/dist/contract/rules/endpoints-exist.d.ts.map +1 -0
- package/dist/contract/rules/endpoints-exist.js +29 -0
- package/dist/contract/rules/endpoints-exist.js.map +1 -0
- package/dist/contract/rules/fields-valid.d.ts +3 -0
- package/dist/contract/rules/fields-valid.d.ts.map +1 -0
- package/dist/contract/rules/fields-valid.js +39 -0
- package/dist/contract/rules/fields-valid.js.map +1 -0
- package/dist/contract/rules/params-match.d.ts +3 -0
- package/dist/contract/rules/params-match.d.ts.map +1 -0
- package/dist/contract/rules/params-match.js +40 -0
- package/dist/contract/rules/params-match.js.map +1 -0
- package/dist/contract/rules/permissions-consistent.d.ts +3 -0
- package/dist/contract/rules/permissions-consistent.d.ts.map +1 -0
- package/dist/contract/rules/permissions-consistent.js +52 -0
- package/dist/contract/rules/permissions-consistent.js.map +1 -0
- package/dist/contract/types.d.ts +66 -0
- package/dist/contract/types.d.ts.map +1 -0
- package/dist/contract/types.js +2 -0
- package/dist/contract/types.js.map +1 -0
- package/dist/data/data-sources.d.ts +26 -0
- package/dist/data/data-sources.d.ts.map +1 -0
- package/dist/data/data-sources.js +218 -0
- package/dist/data/data-sources.js.map +1 -0
- package/dist/data/fetch.d.ts +29 -0
- package/dist/data/fetch.d.ts.map +1 -0
- package/dist/data/fetch.js +63 -0
- package/dist/data/fetch.js.map +1 -0
- package/dist/data/offline.d.ts +29 -0
- package/dist/data/offline.d.ts.map +1 -0
- package/dist/data/offline.js +48 -0
- package/dist/data/offline.js.map +1 -0
- package/dist/data/realtime.d.ts +21 -0
- package/dist/data/realtime.d.ts.map +1 -0
- package/dist/data/realtime.js +40 -0
- package/dist/data/realtime.js.map +1 -0
- package/dist/derive/evaluator.d.ts +19 -0
- package/dist/derive/evaluator.d.ts.map +1 -0
- package/dist/derive/evaluator.js +59 -0
- package/dist/derive/evaluator.js.map +1 -0
- package/dist/derive/topo-sort.d.ts +10 -0
- package/dist/derive/topo-sort.d.ts.map +1 -0
- package/dist/derive/topo-sort.js +36 -0
- package/dist/derive/topo-sort.js.map +1 -0
- package/dist/design/animation/cascade-types.d.ts +23 -0
- package/dist/design/animation/cascade-types.d.ts.map +1 -0
- package/dist/design/animation/cascade-types.js +2 -0
- package/dist/design/animation/cascade-types.js.map +1 -0
- package/dist/design/animation/cascade.d.ts +4 -0
- package/dist/design/animation/cascade.d.ts.map +1 -0
- package/dist/design/animation/cascade.js +73 -0
- package/dist/design/animation/cascade.js.map +1 -0
- package/dist/design/animation/css-keyframes.d.ts +8 -0
- package/dist/design/animation/css-keyframes.d.ts.map +1 -0
- package/dist/design/animation/css-keyframes.js +72 -0
- package/dist/design/animation/css-keyframes.js.map +1 -0
- package/dist/design/animation/index.d.ts +14 -0
- package/dist/design/animation/index.d.ts.map +1 -0
- package/dist/design/animation/index.js +9 -0
- package/dist/design/animation/index.js.map +1 -0
- package/dist/design/animation/keyframes-builder.d.ts +40 -0
- package/dist/design/animation/keyframes-builder.d.ts.map +1 -0
- package/dist/design/animation/keyframes-builder.js +140 -0
- package/dist/design/animation/keyframes-builder.js.map +1 -0
- package/dist/design/animation/reanimated-spec.d.ts +16 -0
- package/dist/design/animation/reanimated-spec.d.ts.map +1 -0
- package/dist/design/animation/reanimated-spec.js +162 -0
- package/dist/design/animation/reanimated-spec.js.map +1 -0
- package/dist/design/animation/reduced-motion.d.ts +3 -0
- package/dist/design/animation/reduced-motion.d.ts.map +1 -0
- package/dist/design/animation/reduced-motion.js +54 -0
- package/dist/design/animation/reduced-motion.js.map +1 -0
- package/dist/design/animation/resolver.d.ts +3 -0
- package/dist/design/animation/resolver.d.ts.map +1 -0
- package/dist/design/animation/resolver.js +86 -0
- package/dist/design/animation/resolver.js.map +1 -0
- package/dist/design/animation/types.d.ts +109 -0
- package/dist/design/animation/types.d.ts.map +1 -0
- package/dist/design/animation/types.js +7 -0
- package/dist/design/animation/types.js.map +1 -0
- package/dist/design/animation/validator.d.ts +44 -0
- package/dist/design/animation/validator.d.ts.map +1 -0
- package/dist/design/animation/validator.js +169 -0
- package/dist/design/animation/validator.js.map +1 -0
- package/dist/design/background/blobs/catalog.d.ts +10 -0
- package/dist/design/background/blobs/catalog.d.ts.map +1 -0
- package/dist/design/background/blobs/catalog.js +63 -0
- package/dist/design/background/blobs/catalog.js.map +1 -0
- package/dist/design/background/blobs/index.d.ts +4 -0
- package/dist/design/background/blobs/index.d.ts.map +1 -0
- package/dist/design/background/blobs/index.js +5 -0
- package/dist/design/background/blobs/index.js.map +1 -0
- package/dist/design/background/blobs/resolver.d.ts +16 -0
- package/dist/design/background/blobs/resolver.d.ts.map +1 -0
- package/dist/design/background/blobs/resolver.js +301 -0
- package/dist/design/background/blobs/resolver.js.map +1 -0
- package/dist/design/background/blobs/types.d.ts +112 -0
- package/dist/design/background/blobs/types.d.ts.map +1 -0
- package/dist/design/background/blobs/types.js +27 -0
- package/dist/design/background/blobs/types.js.map +1 -0
- package/dist/design/background/grain.d.ts +3 -0
- package/dist/design/background/grain.d.ts.map +1 -0
- package/dist/design/background/grain.js +23 -0
- package/dist/design/background/grain.js.map +1 -0
- package/dist/design/background/index.d.ts +8 -0
- package/dist/design/background/index.d.ts.map +1 -0
- package/dist/design/background/index.js +8 -0
- package/dist/design/background/index.js.map +1 -0
- package/dist/design/background/layers.d.ts +3 -0
- package/dist/design/background/layers.d.ts.map +1 -0
- package/dist/design/background/layers.js +23 -0
- package/dist/design/background/layers.js.map +1 -0
- package/dist/design/background/patterns/chevron.d.ts +8 -0
- package/dist/design/background/patterns/chevron.d.ts.map +1 -0
- package/dist/design/background/patterns/chevron.js +10 -0
- package/dist/design/background/patterns/chevron.js.map +1 -0
- package/dist/design/background/patterns/crosshatch.d.ts +8 -0
- package/dist/design/background/patterns/crosshatch.d.ts.map +1 -0
- package/dist/design/background/patterns/crosshatch.js +12 -0
- package/dist/design/background/patterns/crosshatch.js.map +1 -0
- package/dist/design/background/patterns/diagonal.d.ts +8 -0
- package/dist/design/background/patterns/diagonal.d.ts.map +1 -0
- package/dist/design/background/patterns/diagonal.js +7 -0
- package/dist/design/background/patterns/diagonal.js.map +1 -0
- package/dist/design/background/patterns/dots.d.ts +7 -0
- package/dist/design/background/patterns/dots.d.ts.map +1 -0
- package/dist/design/background/patterns/dots.js +9 -0
- package/dist/design/background/patterns/dots.js.map +1 -0
- package/dist/design/background/patterns/grid.d.ts +7 -0
- package/dist/design/background/patterns/grid.d.ts.map +1 -0
- package/dist/design/background/patterns/grid.js +8 -0
- package/dist/design/background/patterns/grid.js.map +1 -0
- package/dist/design/background/patterns/index.d.ts +8 -0
- package/dist/design/background/patterns/index.d.ts.map +1 -0
- package/dist/design/background/patterns/index.js +8 -0
- package/dist/design/background/patterns/index.js.map +1 -0
- package/dist/design/background/patterns/iso.d.ts +7 -0
- package/dist/design/background/patterns/iso.d.ts.map +1 -0
- package/dist/design/background/patterns/iso.js +11 -0
- package/dist/design/background/patterns/iso.js.map +1 -0
- package/dist/design/background/patterns/resolver.d.ts +3 -0
- package/dist/design/background/patterns/resolver.d.ts.map +1 -0
- package/dist/design/background/patterns/resolver.js +56 -0
- package/dist/design/background/patterns/resolver.js.map +1 -0
- package/dist/design/background/primitives/gradient.d.ts +3 -0
- package/dist/design/background/primitives/gradient.d.ts.map +1 -0
- package/dist/design/background/primitives/gradient.js +68 -0
- package/dist/design/background/primitives/gradient.js.map +1 -0
- package/dist/design/background/primitives/image.d.ts +3 -0
- package/dist/design/background/primitives/image.d.ts.map +1 -0
- package/dist/design/background/primitives/image.js +12 -0
- package/dist/design/background/primitives/image.js.map +1 -0
- package/dist/design/background/primitives/index.d.ts +4 -0
- package/dist/design/background/primitives/index.d.ts.map +1 -0
- package/dist/design/background/primitives/index.js +4 -0
- package/dist/design/background/primitives/index.js.map +1 -0
- package/dist/design/background/primitives/solid.d.ts +8 -0
- package/dist/design/background/primitives/solid.d.ts.map +1 -0
- package/dist/design/background/primitives/solid.js +15 -0
- package/dist/design/background/primitives/solid.js.map +1 -0
- package/dist/design/background/resolver.d.ts +3 -0
- package/dist/design/background/resolver.d.ts.map +1 -0
- package/dist/design/background/resolver.js +20 -0
- package/dist/design/background/resolver.js.map +1 -0
- package/dist/design/background/sanitizer.d.ts +2 -0
- package/dist/design/background/sanitizer.d.ts.map +1 -0
- package/dist/design/background/sanitizer.js +54 -0
- package/dist/design/background/sanitizer.js.map +1 -0
- package/dist/design/deep-tokens.d.ts +125 -0
- package/dist/design/deep-tokens.d.ts.map +1 -0
- package/dist/design/deep-tokens.js +115 -0
- package/dist/design/deep-tokens.js.map +1 -0
- package/dist/design/dna.d.ts +7 -0
- package/dist/design/dna.d.ts.map +1 -0
- package/dist/design/dna.js +210 -0
- package/dist/design/dna.js.map +1 -0
- package/dist/design/identity/color.d.ts +8 -0
- package/dist/design/identity/color.d.ts.map +1 -0
- package/dist/design/identity/color.js +64 -0
- package/dist/design/identity/color.js.map +1 -0
- package/dist/design/identity/elevation.d.ts +8 -0
- package/dist/design/identity/elevation.d.ts.map +1 -0
- package/dist/design/identity/elevation.js +31 -0
- package/dist/design/identity/elevation.js.map +1 -0
- package/dist/design/identity/index.d.ts +12 -0
- package/dist/design/identity/index.d.ts.map +1 -0
- package/dist/design/identity/index.js +14 -0
- package/dist/design/identity/index.js.map +1 -0
- package/dist/design/identity/shape.d.ts +4 -0
- package/dist/design/identity/shape.d.ts.map +1 -0
- package/dist/design/identity/shape.js +23 -0
- package/dist/design/identity/shape.js.map +1 -0
- package/dist/design/identity/surface.d.ts +18 -0
- package/dist/design/identity/surface.d.ts.map +1 -0
- package/dist/design/identity/surface.js +125 -0
- package/dist/design/identity/surface.js.map +1 -0
- package/dist/design/identity/types.d.ts +280 -0
- package/dist/design/identity/types.d.ts.map +1 -0
- package/dist/design/identity/types.js +21 -0
- package/dist/design/identity/types.js.map +1 -0
- package/dist/design/identity/typography.d.ts +7 -0
- package/dist/design/identity/typography.d.ts.map +1 -0
- package/dist/design/identity/typography.js +42 -0
- package/dist/design/identity/typography.js.map +1 -0
- package/dist/design/identity-resolver.d.ts +15 -0
- package/dist/design/identity-resolver.d.ts.map +1 -0
- package/dist/design/identity-resolver.js +52 -0
- package/dist/design/identity-resolver.js.map +1 -0
- package/dist/design/oklch.d.ts +10 -0
- package/dist/design/oklch.d.ts.map +1 -0
- package/dist/design/oklch.js +61 -0
- package/dist/design/oklch.js.map +1 -0
- package/dist/design/palette.d.ts +26 -0
- package/dist/design/palette.d.ts.map +1 -0
- package/dist/design/palette.js +73 -0
- package/dist/design/palette.js.map +1 -0
- package/dist/design/presets.d.ts +18 -0
- package/dist/design/presets.d.ts.map +1 -0
- package/dist/design/presets.js +2 -0
- package/dist/design/presets.js.map +1 -0
- package/dist/design/recipes/animations.d.ts +11 -0
- package/dist/design/recipes/animations.d.ts.map +1 -0
- package/dist/design/recipes/animations.js +180 -0
- package/dist/design/recipes/animations.js.map +1 -0
- package/dist/design/recipes/backgrounds.d.ts +3 -0
- package/dist/design/recipes/backgrounds.d.ts.map +1 -0
- package/dist/design/recipes/backgrounds.js +152 -0
- package/dist/design/recipes/backgrounds.js.map +1 -0
- package/dist/design/recipes/index.d.ts +2 -0
- package/dist/design/recipes/index.d.ts.map +1 -0
- package/dist/design/recipes/index.js +2 -0
- package/dist/design/recipes/index.js.map +1 -0
- package/dist/design/surface-to-css.d.ts +57 -0
- package/dist/design/surface-to-css.d.ts.map +1 -0
- package/dist/design/surface-to-css.js +130 -0
- package/dist/design/surface-to-css.js.map +1 -0
- package/dist/design/surface-to-rn.d.ts +57 -0
- package/dist/design/surface-to-rn.d.ts.map +1 -0
- package/dist/design/surface-to-rn.js +133 -0
- package/dist/design/surface-to-rn.js.map +1 -0
- package/dist/design/tokens.d.ts +67 -0
- package/dist/design/tokens.d.ts.map +1 -0
- package/dist/design/tokens.js +36 -0
- package/dist/design/tokens.js.map +1 -0
- package/dist/device/context.d.ts +13 -0
- package/dist/device/context.d.ts.map +1 -0
- package/dist/device/context.js +2 -0
- package/dist/device/context.js.map +1 -0
- package/dist/editor-session/clone.d.ts +4 -0
- package/dist/editor-session/clone.d.ts.map +1 -0
- package/dist/editor-session/clone.js +55 -0
- package/dist/editor-session/clone.js.map +1 -0
- package/dist/editor-session/engine.d.ts +21 -0
- package/dist/editor-session/engine.d.ts.map +1 -0
- package/dist/editor-session/engine.js +375 -0
- package/dist/editor-session/engine.js.map +1 -0
- package/dist/editor-session/persistence.d.ts +8 -0
- package/dist/editor-session/persistence.d.ts.map +1 -0
- package/dist/editor-session/persistence.js +89 -0
- package/dist/editor-session/persistence.js.map +1 -0
- package/dist/editor-session/types.d.ts +90 -0
- package/dist/editor-session/types.d.ts.map +1 -0
- package/dist/editor-session/types.js +2 -0
- package/dist/editor-session/types.js.map +1 -0
- package/dist/editor-session/validators.d.ts +5 -0
- package/dist/editor-session/validators.d.ts.map +1 -0
- package/dist/editor-session/validators.js +106 -0
- package/dist/editor-session/validators.js.map +1 -0
- package/dist/elements/composer.d.ts +109 -0
- package/dist/elements/composer.d.ts.map +1 -0
- package/dist/elements/composer.js +129 -0
- package/dist/elements/composer.js.map +1 -0
- package/dist/export/csv.d.ts +3 -0
- package/dist/export/csv.d.ts.map +1 -0
- package/dist/export/csv.js +16 -0
- package/dist/export/csv.js.map +1 -0
- package/dist/export/download.d.ts +2 -0
- package/dist/export/download.d.ts.map +1 -0
- package/dist/export/download.js +13 -0
- package/dist/export/download.js.map +1 -0
- package/dist/export/format.d.ts +3 -0
- package/dist/export/format.d.ts.map +1 -0
- package/dist/export/format.js +43 -0
- package/dist/export/format.js.map +1 -0
- package/dist/export/types.d.ts +22 -0
- package/dist/export/types.d.ts.map +1 -0
- package/dist/export/types.js +2 -0
- package/dist/export/types.js.map +1 -0
- package/dist/expressions/deep-resolve.d.ts +4 -0
- package/dist/expressions/deep-resolve.d.ts.map +1 -0
- package/dist/expressions/deep-resolve.js +20 -0
- package/dist/expressions/deep-resolve.js.map +1 -0
- package/dist/expressions/handlers/array.d.ts +19 -0
- package/dist/expressions/handlers/array.d.ts.map +1 -0
- package/dist/expressions/handlers/array.js +161 -0
- package/dist/expressions/handlers/array.js.map +1 -0
- package/dist/expressions/handlers/auth.d.ts +13 -0
- package/dist/expressions/handlers/auth.d.ts.map +1 -0
- package/dist/expressions/handlers/auth.js +90 -0
- package/dist/expressions/handlers/auth.js.map +1 -0
- package/dist/expressions/handlers/bind.d.ts +22 -0
- package/dist/expressions/handlers/bind.d.ts.map +1 -0
- package/dist/expressions/handlers/bind.js +57 -0
- package/dist/expressions/handlers/bind.js.map +1 -0
- package/dist/expressions/handlers/breakpoint.d.ts +10 -0
- package/dist/expressions/handlers/breakpoint.d.ts.map +1 -0
- package/dist/expressions/handlers/breakpoint.js +39 -0
- package/dist/expressions/handlers/breakpoint.js.map +1 -0
- package/dist/expressions/handlers/computed.d.ts +3 -0
- package/dist/expressions/handlers/computed.d.ts.map +1 -0
- package/dist/expressions/handlers/computed.js +20 -0
- package/dist/expressions/handlers/computed.js.map +1 -0
- package/dist/expressions/handlers/cond.d.ts +3 -0
- package/dist/expressions/handlers/cond.d.ts.map +1 -0
- package/dist/expressions/handlers/cond.js +57 -0
- package/dist/expressions/handlers/cond.js.map +1 -0
- package/dist/expressions/handlers/date.d.ts +14 -0
- package/dist/expressions/handlers/date.d.ts.map +1 -0
- package/dist/expressions/handlers/date.js +95 -0
- package/dist/expressions/handlers/date.js.map +1 -0
- package/dist/expressions/handlers/format.d.ts +19 -0
- package/dist/expressions/handlers/format.d.ts.map +1 -0
- package/dist/expressions/handlers/format.js +93 -0
- package/dist/expressions/handlers/format.js.map +1 -0
- package/dist/expressions/handlers/group.d.ts +25 -0
- package/dist/expressions/handlers/group.d.ts.map +1 -0
- package/dist/expressions/handlers/group.js +85 -0
- package/dist/expressions/handlers/group.js.map +1 -0
- package/dist/expressions/handlers/i18n.d.ts +8 -0
- package/dist/expressions/handlers/i18n.d.ts.map +1 -0
- package/dist/expressions/handlers/i18n.js +35 -0
- package/dist/expressions/handlers/i18n.js.map +1 -0
- package/dist/expressions/handlers/index.d.ts +4 -0
- package/dist/expressions/handlers/index.d.ts.map +1 -0
- package/dist/expressions/handlers/index.js +52 -0
- package/dist/expressions/handlers/index.js.map +1 -0
- package/dist/expressions/handlers/let.d.ts +4 -0
- package/dist/expressions/handlers/let.d.ts.map +1 -0
- package/dist/expressions/handlers/let.js +36 -0
- package/dist/expressions/handlers/let.js.map +1 -0
- package/dist/expressions/handlers/logic.d.ts +27 -0
- package/dist/expressions/handlers/logic.d.ts.map +1 -0
- package/dist/expressions/handlers/logic.js +52 -0
- package/dist/expressions/handlers/logic.js.map +1 -0
- package/dist/expressions/handlers/math.d.ts +13 -0
- package/dist/expressions/handlers/math.d.ts.map +1 -0
- package/dist/expressions/handlers/math.js +58 -0
- package/dist/expressions/handlers/math.js.map +1 -0
- package/dist/expressions/handlers/platform.d.ts +13 -0
- package/dist/expressions/handlers/platform.d.ts.map +1 -0
- package/dist/expressions/handlers/platform.js +37 -0
- package/dist/expressions/handlers/platform.js.map +1 -0
- package/dist/expressions/handlers/prop.d.ts +10 -0
- package/dist/expressions/handlers/prop.d.ts.map +1 -0
- package/dist/expressions/handlers/prop.js +18 -0
- package/dist/expressions/handlers/prop.js.map +1 -0
- package/dist/expressions/handlers/selection.d.ts +10 -0
- package/dist/expressions/handlers/selection.d.ts.map +1 -0
- package/dist/expressions/handlers/selection.js +33 -0
- package/dist/expressions/handlers/selection.js.map +1 -0
- package/dist/expressions/handlers/state.d.ts +3 -0
- package/dist/expressions/handlers/state.d.ts.map +1 -0
- package/dist/expressions/handlers/state.js +8 -0
- package/dist/expressions/handlers/state.js.map +1 -0
- package/dist/expressions/handlers/switch.d.ts +15 -0
- package/dist/expressions/handlers/switch.d.ts.map +1 -0
- package/dist/expressions/handlers/switch.js +31 -0
- package/dist/expressions/handlers/switch.js.map +1 -0
- package/dist/expressions/handlers/template.d.ts +3 -0
- package/dist/expressions/handlers/template.d.ts.map +1 -0
- package/dist/expressions/handlers/template.js +23 -0
- package/dist/expressions/handlers/template.js.map +1 -0
- package/dist/expressions/handlers/token.d.ts +3 -0
- package/dist/expressions/handlers/token.d.ts.map +1 -0
- package/dist/expressions/handlers/token.js +40 -0
- package/dist/expressions/handlers/token.js.map +1 -0
- package/dist/expressions/handlers/unique-id.d.ts +11 -0
- package/dist/expressions/handlers/unique-id.d.ts.map +1 -0
- package/dist/expressions/handlers/unique-id.js +52 -0
- package/dist/expressions/handlers/unique-id.js.map +1 -0
- package/dist/expressions/registry.d.ts +8 -0
- package/dist/expressions/registry.d.ts.map +1 -0
- package/dist/expressions/registry.js +35 -0
- package/dist/expressions/registry.js.map +1 -0
- package/dist/expressions/resolver.d.ts +15 -0
- package/dist/expressions/resolver.d.ts.map +1 -0
- package/dist/expressions/resolver.js +56 -0
- package/dist/expressions/resolver.js.map +1 -0
- package/dist/factory.d.ts +56 -0
- package/dist/factory.d.ts.map +1 -0
- package/dist/factory.js +265 -0
- package/dist/factory.js.map +1 -0
- package/dist/fetch/framework-fetch.d.ts +12 -0
- package/dist/fetch/framework-fetch.d.ts.map +1 -0
- package/dist/fetch/framework-fetch.js +36 -0
- package/dist/fetch/framework-fetch.js.map +1 -0
- package/dist/fetch/interceptors/auth.d.ts +19 -0
- package/dist/fetch/interceptors/auth.d.ts.map +1 -0
- package/dist/fetch/interceptors/auth.js +66 -0
- package/dist/fetch/interceptors/auth.js.map +1 -0
- package/dist/fetch/interceptors/logging.d.ts +8 -0
- package/dist/fetch/interceptors/logging.d.ts.map +1 -0
- package/dist/fetch/interceptors/logging.js +40 -0
- package/dist/fetch/interceptors/logging.js.map +1 -0
- package/dist/fetch/interceptors/retry.d.ts +20 -0
- package/dist/fetch/interceptors/retry.d.ts.map +1 -0
- package/dist/fetch/interceptors/retry.js +34 -0
- package/dist/fetch/interceptors/retry.js.map +1 -0
- package/dist/fetch/interceptors/timeout.d.ts +7 -0
- package/dist/fetch/interceptors/timeout.d.ts.map +1 -0
- package/dist/fetch/interceptors/timeout.js +20 -0
- package/dist/fetch/interceptors/timeout.js.map +1 -0
- package/dist/fetch/types.d.ts +30 -0
- package/dist/fetch/types.d.ts.map +1 -0
- package/dist/fetch/types.js +2 -0
- package/dist/fetch/types.js.map +1 -0
- package/dist/forms/engine.d.ts +3 -0
- package/dist/forms/engine.d.ts.map +1 -0
- package/dist/forms/engine.js +167 -0
- package/dist/forms/engine.js.map +1 -0
- package/dist/forms/types.d.ts +30 -0
- package/dist/forms/types.d.ts.map +1 -0
- package/dist/forms/types.js +2 -0
- package/dist/forms/types.js.map +1 -0
- package/dist/i18n/engine.d.ts +15 -0
- package/dist/i18n/engine.d.ts.map +1 -0
- package/dist/i18n/engine.js +61 -0
- package/dist/i18n/engine.js.map +1 -0
- package/dist/index.d.ts +161 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +106 -0
- package/dist/index.js.map +1 -0
- package/dist/interactions/data-operations.d.ts +51 -0
- package/dist/interactions/data-operations.d.ts.map +1 -0
- package/dist/interactions/data-operations.js +64 -0
- package/dist/interactions/data-operations.js.map +1 -0
- package/dist/interactions/drag-drop.d.ts +14 -0
- package/dist/interactions/drag-drop.d.ts.map +1 -0
- package/dist/interactions/drag-drop.js +35 -0
- package/dist/interactions/drag-drop.js.map +1 -0
- package/dist/interactions/export.d.ts +24 -0
- package/dist/interactions/export.d.ts.map +1 -0
- package/dist/interactions/export.js +44 -0
- package/dist/interactions/export.js.map +1 -0
- package/dist/interactions/history.d.ts +16 -0
- package/dist/interactions/history.d.ts.map +1 -0
- package/dist/interactions/history.js +52 -0
- package/dist/interactions/history.js.map +1 -0
- package/dist/motion/engine.d.ts +47 -0
- package/dist/motion/engine.d.ts.map +1 -0
- package/dist/motion/engine.js +81 -0
- package/dist/motion/engine.js.map +1 -0
- package/dist/navigation/router.d.ts +36 -0
- package/dist/navigation/router.d.ts.map +1 -0
- package/dist/navigation/router.js +51 -0
- package/dist/navigation/router.js.map +1 -0
- package/dist/permissions/evaluator.d.ts +15 -0
- package/dist/permissions/evaluator.d.ts.map +1 -0
- package/dist/permissions/evaluator.js +32 -0
- package/dist/permissions/evaluator.js.map +1 -0
- package/dist/plugins/loader.d.ts +30 -0
- package/dist/plugins/loader.d.ts.map +1 -0
- package/dist/plugins/loader.js +87 -0
- package/dist/plugins/loader.js.map +1 -0
- package/dist/reference/generator.d.ts +25 -0
- package/dist/reference/generator.d.ts.map +1 -0
- package/dist/reference/generator.js +808 -0
- package/dist/reference/generator.js.map +1 -0
- package/dist/renderer/deps.d.ts +24 -0
- package/dist/renderer/deps.d.ts.map +1 -0
- package/dist/renderer/deps.js +150 -0
- package/dist/renderer/deps.js.map +1 -0
- package/dist/renderer/engine.d.ts +15 -0
- package/dist/renderer/engine.d.ts.map +1 -0
- package/dist/renderer/engine.js +1097 -0
- package/dist/renderer/engine.js.map +1 -0
- package/dist/renderer/lazy-paths.d.ts +14 -0
- package/dist/renderer/lazy-paths.d.ts.map +1 -0
- package/dist/renderer/lazy-paths.js +63 -0
- package/dist/renderer/lazy-paths.js.map +1 -0
- package/dist/renderer/prop-schemas.d.ts +17 -0
- package/dist/renderer/prop-schemas.d.ts.map +1 -0
- package/dist/renderer/prop-schemas.js +81 -0
- package/dist/renderer/prop-schemas.js.map +1 -0
- package/dist/renderer/registry.d.ts +10 -0
- package/dist/renderer/registry.d.ts.map +1 -0
- package/dist/renderer/registry.js +22 -0
- package/dist/renderer/registry.js.map +1 -0
- package/dist/renderer/variants.d.ts +54 -0
- package/dist/renderer/variants.d.ts.map +1 -0
- package/dist/renderer/variants.js +105 -0
- package/dist/renderer/variants.js.map +1 -0
- package/dist/runtime/mount-spec-runtime.d.ts +59 -0
- package/dist/runtime/mount-spec-runtime.d.ts.map +1 -0
- package/dist/runtime/mount-spec-runtime.js +73 -0
- package/dist/runtime/mount-spec-runtime.js.map +1 -0
- package/dist/security/api-spec-validator.d.ts +13 -0
- package/dist/security/api-spec-validator.d.ts.map +1 -0
- package/dist/security/api-spec-validator.js +347 -0
- package/dist/security/api-spec-validator.js.map +1 -0
- package/dist/security/app-spec-validator.d.ts +4 -0
- package/dist/security/app-spec-validator.d.ts.map +1 -0
- package/dist/security/app-spec-validator.js +200 -0
- package/dist/security/app-spec-validator.js.map +1 -0
- package/dist/security/identifier-guard.d.ts +3 -0
- package/dist/security/identifier-guard.d.ts.map +1 -0
- package/dist/security/identifier-guard.js +15 -0
- package/dist/security/identifier-guard.js.map +1 -0
- package/dist/security/identity-token-validator.d.ts +3 -0
- package/dist/security/identity-token-validator.d.ts.map +1 -0
- package/dist/security/identity-token-validator.js +121 -0
- package/dist/security/identity-token-validator.js.map +1 -0
- package/dist/security/index.d.ts +14 -0
- package/dist/security/index.d.ts.map +1 -0
- package/dist/security/index.js +8 -0
- package/dist/security/index.js.map +1 -0
- package/dist/security/protection-registry.d.ts +24 -0
- package/dist/security/protection-registry.d.ts.map +1 -0
- package/dist/security/protection-registry.js +35 -0
- package/dist/security/protection-registry.js.map +1 -0
- package/dist/security/rate-limiter.d.ts +23 -0
- package/dist/security/rate-limiter.d.ts.map +1 -0
- package/dist/security/rate-limiter.js +44 -0
- package/dist/security/rate-limiter.js.map +1 -0
- package/dist/security/spec-signing.d.ts +23 -0
- package/dist/security/spec-signing.d.ts.map +1 -0
- package/dist/security/spec-signing.js +62 -0
- package/dist/security/spec-signing.js.map +1 -0
- package/dist/security/spec-validator.d.ts +60 -0
- package/dist/security/spec-validator.d.ts.map +1 -0
- package/dist/security/spec-validator.js +903 -0
- package/dist/security/spec-validator.js.map +1 -0
- package/dist/security/state-protection.d.ts +23 -0
- package/dist/security/state-protection.d.ts.map +1 -0
- package/dist/security/state-protection.js +49 -0
- package/dist/security/state-protection.js.map +1 -0
- package/dist/security/url-whitelist.d.ts +14 -0
- package/dist/security/url-whitelist.d.ts.map +1 -0
- package/dist/security/url-whitelist.js +37 -0
- package/dist/security/url-whitelist.js.map +1 -0
- package/dist/server.d.ts +6 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +8 -0
- package/dist/server.js.map +1 -0
- package/dist/spec-engine/app-elements.d.ts +5 -0
- package/dist/spec-engine/app-elements.d.ts.map +1 -0
- package/dist/spec-engine/app-elements.js +36 -0
- package/dist/spec-engine/app-elements.js.map +1 -0
- package/dist/spec-engine/app-manifest.d.ts +3 -0
- package/dist/spec-engine/app-manifest.d.ts.map +1 -0
- package/dist/spec-engine/app-manifest.js +132 -0
- package/dist/spec-engine/app-manifest.js.map +1 -0
- package/dist/spec-engine/elements.d.ts +8 -0
- package/dist/spec-engine/elements.d.ts.map +1 -0
- package/dist/spec-engine/elements.js +18 -0
- package/dist/spec-engine/elements.js.map +1 -0
- package/dist/spec-engine/engine.d.ts +3 -0
- package/dist/spec-engine/engine.d.ts.map +1 -0
- package/dist/spec-engine/engine.js +76 -0
- package/dist/spec-engine/engine.js.map +1 -0
- package/dist/spec-engine/handlers/api-handler.d.ts +5 -0
- package/dist/spec-engine/handlers/api-handler.d.ts.map +1 -0
- package/dist/spec-engine/handlers/api-handler.js +111 -0
- package/dist/spec-engine/handlers/api-handler.js.map +1 -0
- package/dist/spec-engine/handlers/app-handler.d.ts +4 -0
- package/dist/spec-engine/handlers/app-handler.d.ts.map +1 -0
- package/dist/spec-engine/handlers/app-handler.js +41 -0
- package/dist/spec-engine/handlers/app-handler.js.map +1 -0
- package/dist/spec-engine/handlers/index.d.ts +8 -0
- package/dist/spec-engine/handlers/index.d.ts.map +1 -0
- package/dist/spec-engine/handlers/index.js +17 -0
- package/dist/spec-engine/handlers/index.js.map +1 -0
- package/dist/spec-engine/handlers/screen-handler.d.ts +4 -0
- package/dist/spec-engine/handlers/screen-handler.d.ts.map +1 -0
- package/dist/spec-engine/handlers/screen-handler.js +34 -0
- package/dist/spec-engine/handlers/screen-handler.js.map +1 -0
- package/dist/spec-engine/manifest.d.ts +11 -0
- package/dist/spec-engine/manifest.d.ts.map +1 -0
- package/dist/spec-engine/manifest.js +76 -0
- package/dist/spec-engine/manifest.js.map +1 -0
- package/dist/spec-engine/types.d.ts +61 -0
- package/dist/spec-engine/types.d.ts.map +1 -0
- package/dist/spec-engine/types.js +2 -0
- package/dist/spec-engine/types.js.map +1 -0
- package/dist/spec-stores/file.d.ts +12 -0
- package/dist/spec-stores/file.d.ts.map +1 -0
- package/dist/spec-stores/file.js +32 -0
- package/dist/spec-stores/file.js.map +1 -0
- package/dist/spec-stores/memory-versioned.d.ts +22 -0
- package/dist/spec-stores/memory-versioned.d.ts.map +1 -0
- package/dist/spec-stores/memory-versioned.js +125 -0
- package/dist/spec-stores/memory-versioned.js.map +1 -0
- package/dist/spec-stores/memory.d.ts +10 -0
- package/dist/spec-stores/memory.d.ts.map +1 -0
- package/dist/spec-stores/memory.js +31 -0
- package/dist/spec-stores/memory.js.map +1 -0
- package/dist/spec-stores/sqlserver-versioned.d.ts +44 -0
- package/dist/spec-stores/sqlserver-versioned.d.ts.map +1 -0
- package/dist/spec-stores/sqlserver-versioned.js +253 -0
- package/dist/spec-stores/sqlserver-versioned.js.map +1 -0
- package/dist/spec-stores/sqlserver.d.ts +27 -0
- package/dist/spec-stores/sqlserver.d.ts.map +1 -0
- package/dist/spec-stores/sqlserver.js +78 -0
- package/dist/spec-stores/sqlserver.js.map +1 -0
- package/dist/spec-stores/supabase-versioned.d.ts +38 -0
- package/dist/spec-stores/supabase-versioned.d.ts.map +1 -0
- package/dist/spec-stores/supabase-versioned.js +197 -0
- package/dist/spec-stores/supabase-versioned.js.map +1 -0
- package/dist/spec-stores/supabase.d.ts +18 -0
- package/dist/spec-stores/supabase.d.ts.map +1 -0
- package/dist/spec-stores/supabase.js +68 -0
- package/dist/spec-stores/supabase.js.map +1 -0
- package/dist/state/reserved-paths.d.ts +41 -0
- package/dist/state/reserved-paths.d.ts.map +1 -0
- package/dist/state/reserved-paths.js +40 -0
- package/dist/state/reserved-paths.js.map +1 -0
- package/dist/state/store.d.ts +18 -0
- package/dist/state/store.d.ts.map +1 -0
- package/dist/state/store.js +114 -0
- package/dist/state/store.js.map +1 -0
- package/dist/storage/supabase.d.ts +37 -0
- package/dist/storage/supabase.d.ts.map +1 -0
- package/dist/storage/supabase.js +22 -0
- package/dist/storage/supabase.js.map +1 -0
- package/dist/storage/types.d.ts +22 -0
- package/dist/storage/types.d.ts.map +1 -0
- package/dist/storage/types.js +2 -0
- package/dist/storage/types.js.map +1 -0
- package/dist/storage/upload-action.d.ts +22 -0
- package/dist/storage/upload-action.d.ts.map +1 -0
- package/dist/storage/upload-action.js +117 -0
- package/dist/storage/upload-action.js.map +1 -0
- package/dist/storage/url.d.ts +17 -0
- package/dist/storage/url.d.ts.map +1 -0
- package/dist/storage/url.js +48 -0
- package/dist/storage/url.js.map +1 -0
- package/dist/streaming/compiler.d.ts +26 -0
- package/dist/streaming/compiler.d.ts.map +1 -0
- package/dist/streaming/compiler.js +54 -0
- package/dist/streaming/compiler.js.map +1 -0
- package/dist/streaming/patch.d.ts +19 -0
- package/dist/streaming/patch.d.ts.map +1 -0
- package/dist/streaming/patch.js +139 -0
- package/dist/streaming/patch.js.map +1 -0
- package/dist/types.d.ts +443 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +8 -0
- package/dist/types.js.map +1 -0
- package/dist/util/to-array.d.ts +2 -0
- package/dist/util/to-array.d.ts.map +1 -0
- package/dist/util/to-array.js +14 -0
- package/dist/util/to-array.js.map +1 -0
- package/dist/utils/levenshtein.d.ts +3 -0
- package/dist/utils/levenshtein.d.ts.map +1 -0
- package/dist/utils/levenshtein.js +29 -0
- package/dist/utils/levenshtein.js.map +1 -0
- package/dist/validation/validators.d.ts +20 -0
- package/dist/validation/validators.d.ts.map +1 -0
- package/dist/validation/validators.js +138 -0
- package/dist/validation/validators.js.map +1 -0
- package/dist/versioning/compute-patches.d.ts +7 -0
- package/dist/versioning/compute-patches.d.ts.map +1 -0
- package/dist/versioning/compute-patches.js +62 -0
- package/dist/versioning/compute-patches.js.map +1 -0
- package/dist/versioning/index.d.ts +12 -0
- package/dist/versioning/index.d.ts.map +1 -0
- package/dist/versioning/index.js +7 -0
- package/dist/versioning/index.js.map +1 -0
- package/dist/versioning/promote-gate.d.ts +12 -0
- package/dist/versioning/promote-gate.d.ts.map +1 -0
- package/dist/versioning/promote-gate.js +166 -0
- package/dist/versioning/promote-gate.js.map +1 -0
- package/dist/versioning/rollback.d.ts +26 -0
- package/dist/versioning/rollback.d.ts.map +1 -0
- package/dist/versioning/rollback.js +67 -0
- package/dist/versioning/rollback.js.map +1 -0
- package/dist/versioning/structural-diff.d.ts +8 -0
- package/dist/versioning/structural-diff.d.ts.map +1 -0
- package/dist/versioning/structural-diff.js +287 -0
- package/dist/versioning/structural-diff.js.map +1 -0
- package/dist/versioning/types.d.ts +90 -0
- package/dist/versioning/types.d.ts.map +1 -0
- package/dist/versioning/types.js +2 -0
- package/dist/versioning/types.js.map +1 -0
- package/dist/visibility/evaluator.d.ts +12 -0
- package/dist/visibility/evaluator.d.ts.map +1 -0
- package/dist/visibility/evaluator.js +76 -0
- package/dist/visibility/evaluator.js.map +1 -0
- package/dist/watchers/engine.d.ts +19 -0
- package/dist/watchers/engine.d.ts.map +1 -0
- package/dist/watchers/engine.js +24 -0
- package/dist/watchers/engine.js.map +1 -0
- package/docs/consumer/README.md +44 -0
- package/docs/consumer/WHERE-TO-LOOK.md +94 -0
- package/docs/consumer/ai-context-api.md +195 -0
- package/docs/consumer/ai-context-custom-elements.md +249 -0
- package/docs/consumer/ai-context-patterns.md +254 -0
- package/docs/consumer/ai-context-primitives.md +839 -0
- package/docs/consumer/ai-context-runtime-semantics.md +1075 -0
- package/docs/consumer/ai-context.md +1374 -0
- package/docs/consumer/reference-doc.md +3201 -0
- package/docs/llms.txt +17 -0
- package/docs/wiki/compiled/README.md +33 -0
- package/docs/wiki/compiled/_gaps.md +52 -0
- package/docs/wiki/compiled/_index.md +354 -0
- package/docs/wiki/compiled/_inventory.md +2986 -0
- package/docs/wiki/compiled/_lint.md +66 -0
- package/docs/wiki/compiled/_unmapped.md +3 -0
- package/docs/wiki/compiled/action-apply-preset.md +63 -0
- package/docs/wiki/compiled/action-copy-clipboard.md +45 -0
- package/docs/wiki/compiled/action-drawer.md +50 -0
- package/docs/wiki/compiled/action-export.md +66 -0
- package/docs/wiki/compiled/action-fetch.md +87 -0
- package/docs/wiki/compiled/action-form-control.md +55 -0
- package/docs/wiki/compiled/action-login.md +71 -0
- package/docs/wiki/compiled/action-modal.md +61 -0
- package/docs/wiki/compiled/action-navigate.md +72 -0
- package/docs/wiki/compiled/action-open-url.md +38 -0
- package/docs/wiki/compiled/action-refresh-data-source.md +51 -0
- package/docs/wiki/compiled/action-selection.md +55 -0
- package/docs/wiki/compiled/action-set-locale.md +44 -0
- package/docs/wiki/compiled/action-set-state.md +61 -0
- package/docs/wiki/compiled/action-show-notification.md +65 -0
- package/docs/wiki/compiled/action-submit-form.md +69 -0
- package/docs/wiki/compiled/action-toggle-theme.md +50 -0
- package/docs/wiki/compiled/action-update-tokens.md +63 -0
- package/docs/wiki/compiled/action-upload-file.md +87 -0
- package/docs/wiki/compiled/antipattern-action-chain-no-stop.md +49 -0
- package/docs/wiki/compiled/antipattern-all-filter-wildcard.md +59 -0
- package/docs/wiki/compiled/antipattern-auth-domains-port.md +47 -0
- package/docs/wiki/compiled/antipattern-background-blobs-prop.md +62 -0
- package/docs/wiki/compiled/antipattern-background-css-token.md +53 -0
- package/docs/wiki/compiled/antipattern-checkbox-toggle-value.md +42 -0
- package/docs/wiki/compiled/antipattern-crud-id-collision.md +66 -0
- package/docs/wiki/compiled/antipattern-derive-server-pagination.md +58 -0
- package/docs/wiki/compiled/antipattern-element-variant-top-level.md +57 -0
- package/docs/wiki/compiled/antipattern-event-expression.md +55 -0
- package/docs/wiki/compiled/antipattern-input-type-name.md +43 -0
- package/docs/wiki/compiled/antipattern-mix-fetch-and-datasources.md +48 -0
- package/docs/wiki/compiled/antipattern-modal-drawer-visible.md +57 -0
- package/docs/wiki/compiled/antipattern-motion-entrance-token.md +53 -0
- package/docs/wiki/compiled/antipattern-overflow-hidden-with-shadow.md +50 -0
- package/docs/wiki/compiled/antipattern-required-if-equals.md +59 -0
- package/docs/wiki/compiled/antipattern-row-literal.md +70 -0
- package/docs/wiki/compiled/antipattern-row-template-capture.md +42 -0
- package/docs/wiki/compiled/antipattern-store-save-bypass.md +72 -0
- package/docs/wiki/compiled/antipattern-style-block-duplication.md +56 -0
- package/docs/wiki/compiled/antipattern-submit-form-in-tx-confirm.md +56 -0
- package/docs/wiki/compiled/cli-app-spec.md +53 -0
- package/docs/wiki/compiled/cli-config.md +46 -0
- package/docs/wiki/compiled/cli-contract.md +73 -0
- package/docs/wiki/compiled/cli-delete.md +37 -0
- package/docs/wiki/compiled/cli-docs.md +44 -0
- package/docs/wiki/compiled/cli-elements.md +39 -0
- package/docs/wiki/compiled/cli-existing-spec-edit-loop.md +24 -0
- package/docs/wiki/compiled/cli-history.md +38 -0
- package/docs/wiki/compiled/cli-lint.md +77 -0
- package/docs/wiki/compiled/cli-manifest.md +43 -0
- package/docs/wiki/compiled/cli-overview.md +77 -0
- package/docs/wiki/compiled/cli-patch.md +85 -0
- package/docs/wiki/compiled/cli-programmatic-api.md +73 -0
- package/docs/wiki/compiled/cli-pull.md +39 -0
- package/docs/wiki/compiled/cli-push.md +91 -0
- package/docs/wiki/compiled/cli-tokens.md +38 -0
- package/docs/wiki/compiled/cli-toon.md +44 -0
- package/docs/wiki/compiled/cli-validate.md +52 -0
- package/docs/wiki/compiled/cli-versioning-author.md +58 -0
- package/docs/wiki/compiled/concept-action-chains.md +65 -0
- package/docs/wiki/compiled/concept-action-middleware.md +55 -0
- package/docs/wiki/compiled/concept-animation-build-css.md +43 -0
- package/docs/wiki/compiled/concept-animation-build-rn.md +44 -0
- package/docs/wiki/compiled/concept-animation-caps.md +38 -0
- package/docs/wiki/compiled/concept-animation-cascade.md +89 -0
- package/docs/wiki/compiled/concept-animation-null-semantics.md +55 -0
- package/docs/wiki/compiled/concept-animation-recipes.md +67 -0
- package/docs/wiki/compiled/concept-animation-triggers.md +54 -0
- package/docs/wiki/compiled/concept-animations-engine.md +78 -0
- package/docs/wiki/compiled/concept-api-audit.md +67 -0
- package/docs/wiki/compiled/concept-api-auth.md +67 -0
- package/docs/wiki/compiled/concept-api-catalogs.md +44 -0
- package/docs/wiki/compiled/concept-api-crud-endpoint.md +90 -0
- package/docs/wiki/compiled/concept-api-endpoint-properties.md +40 -0
- package/docs/wiki/compiled/concept-api-endpoints-overview.md +57 -0
- package/docs/wiki/compiled/concept-api-handler-endpoint.md +56 -0
- package/docs/wiki/compiled/concept-api-login-body-contract.md +47 -0
- package/docs/wiki/compiled/concept-api-param-properties.md +44 -0
- package/docs/wiki/compiled/concept-api-public-endpoint.md +33 -0
- package/docs/wiki/compiled/concept-api-query-endpoint.md +53 -0
- package/docs/wiki/compiled/concept-api-scope-filter.md +59 -0
- package/docs/wiki/compiled/concept-api-spec.md +70 -0
- package/docs/wiki/compiled/concept-app-auto-state-paths.md +59 -0
- package/docs/wiki/compiled/concept-app-spec.md +89 -0
- package/docs/wiki/compiled/concept-auth-config.md +71 -0
- package/docs/wiki/compiled/concept-auth-domains.md +55 -0
- package/docs/wiki/compiled/concept-auth-security.md +58 -0
- package/docs/wiki/compiled/concept-auth-state-paths.md +48 -0
- package/docs/wiki/compiled/concept-auto-dark-mode.md +55 -0
- package/docs/wiki/compiled/concept-background-caps.md +42 -0
- package/docs/wiki/compiled/concept-background-layer-kinds.md +80 -0
- package/docs/wiki/compiled/concept-background-recipes.md +53 -0
- package/docs/wiki/compiled/concept-background-stack.md +55 -0
- package/docs/wiki/compiled/concept-blob-layer.md +92 -0
- package/docs/wiki/compiled/concept-blob-motion.md +58 -0
- package/docs/wiki/compiled/concept-blob-shapes-catalog.md +45 -0
- package/docs/wiki/compiled/concept-cli-tokens-inspect.md +38 -0
- package/docs/wiki/compiled/concept-component-variants.md +89 -0
- package/docs/wiki/compiled/concept-cross-tab-sync.md +35 -0
- package/docs/wiki/compiled/concept-css-vs-motion.md +46 -0
- package/docs/wiki/compiled/concept-custom-detection-pattern.md +49 -0
- package/docs/wiki/compiled/concept-custom-element-action-props.md +81 -0
- package/docs/wiki/compiled/concept-custom-element-black-box.md +56 -0
- package/docs/wiki/compiled/concept-custom-element-cache.md +39 -0
- package/docs/wiki/compiled/concept-custom-element-error-boundary.md +33 -0
- package/docs/wiki/compiled/concept-custom-element-prop-cascade.md +60 -0
- package/docs/wiki/compiled/concept-custom-element-repeat.md +53 -0
- package/docs/wiki/compiled/concept-custom-elements.md +71 -0
- package/docs/wiki/compiled/concept-custom-jwt-provider.md +63 -0
- package/docs/wiki/compiled/concept-customize-action.md +33 -0
- package/docs/wiki/compiled/concept-customize-cli-lint-rule.md +30 -0
- package/docs/wiki/compiled/concept-customize-expression-handler.md +30 -0
- package/docs/wiki/compiled/concept-customize-plugin.md +43 -0
- package/docs/wiki/compiled/concept-customize-server-middleware.md +36 -0
- package/docs/wiki/compiled/concept-customize-spec-store.md +42 -0
- package/docs/wiki/compiled/concept-customize-validator-rule.md +35 -0
- package/docs/wiki/compiled/concept-customize-versioned-store.md +37 -0
- package/docs/wiki/compiled/concept-data-sources-lifecycle.md +61 -0
- package/docs/wiki/compiled/concept-data-sources.md +96 -0
- package/docs/wiki/compiled/concept-debugging-runtime-pointers.md +45 -0
- package/docs/wiki/compiled/concept-derive-datasources-mount-order.md +72 -0
- package/docs/wiki/compiled/concept-derive.md +67 -0
- package/docs/wiki/compiled/concept-dna-seeds.md +79 -0
- package/docs/wiki/compiled/concept-editor-commit.md +37 -0
- package/docs/wiki/compiled/concept-editor-save.md +18 -0
- package/docs/wiki/compiled/concept-editor-sessions.md +23 -0
- package/docs/wiki/compiled/concept-element-children-slot.md +54 -0
- package/docs/wiki/compiled/concept-element-definition.md +60 -0
- package/docs/wiki/compiled/concept-element-key.md +56 -0
- package/docs/wiki/compiled/concept-element-prop-definition.md +54 -0
- package/docs/wiki/compiled/concept-element-properties.md +81 -0
- package/docs/wiki/compiled/concept-element-render-node.md +62 -0
- package/docs/wiki/compiled/concept-element-variants.md +67 -0
- package/docs/wiki/compiled/concept-environment-store.md +46 -0
- package/docs/wiki/compiled/concept-export-action.md +56 -0
- package/docs/wiki/compiled/concept-expression-contexts.md +56 -0
- package/docs/wiki/compiled/concept-expression-timing.md +56 -0
- package/docs/wiki/compiled/concept-fetch-interceptors.md +49 -0
- package/docs/wiki/compiled/concept-file-upload-overview.md +55 -0
- package/docs/wiki/compiled/concept-fire-and-forget.md +45 -0
- package/docs/wiki/compiled/concept-font-loading.md +52 -0
- package/docs/wiki/compiled/concept-form-state-paths.md +55 -0
- package/docs/wiki/compiled/concept-forms.md +89 -0
- package/docs/wiki/compiled/concept-identity-accent-application.md +48 -0
- package/docs/wiki/compiled/concept-identity-animations.md +48 -0
- package/docs/wiki/compiled/concept-identity-border-elevation-override.md +56 -0
- package/docs/wiki/compiled/concept-identity-color-scheme.md +74 -0
- package/docs/wiki/compiled/concept-identity-color-weight.md +50 -0
- package/docs/wiki/compiled/concept-identity-glass-rn.md +46 -0
- package/docs/wiki/compiled/concept-identity-gradients.md +56 -0
- package/docs/wiki/compiled/concept-identity-heading-color.md +40 -0
- package/docs/wiki/compiled/concept-identity-helpers.md +61 -0
- package/docs/wiki/compiled/concept-identity-icons.md +46 -0
- package/docs/wiki/compiled/concept-identity-images.md +36 -0
- package/docs/wiki/compiled/concept-identity-label-style.md +36 -0
- package/docs/wiki/compiled/concept-identity-overview.md +72 -0
- package/docs/wiki/compiled/concept-identity-radius-pattern.md +39 -0
- package/docs/wiki/compiled/concept-identity-surface.md +62 -0
- package/docs/wiki/compiled/concept-identity-text-decoration.md +48 -0
- package/docs/wiki/compiled/concept-identity-typography-hierarchy.md +40 -0
- package/docs/wiki/compiled/concept-initial-actions.md +82 -0
- package/docs/wiki/compiled/concept-interactive-states.md +72 -0
- package/docs/wiki/compiled/concept-keyframe-snapshot.md +52 -0
- package/docs/wiki/compiled/concept-layer-background.md +80 -0
- package/docs/wiki/compiled/concept-motion-field.md +77 -0
- package/docs/wiki/compiled/concept-mount-spec-runtime.md +47 -0
- package/docs/wiki/compiled/concept-mythik-renderer.md +76 -0
- package/docs/wiki/compiled/concept-navigation-dirty-guard.md +23 -0
- package/docs/wiki/compiled/concept-navigation.md +75 -0
- package/docs/wiki/compiled/concept-package-layout.md +35 -0
- package/docs/wiki/compiled/concept-path-references.md +53 -0
- package/docs/wiki/compiled/concept-pattern-primitives.md +54 -0
- package/docs/wiki/compiled/concept-preset-dropdown-pattern.md +52 -0
- package/docs/wiki/compiled/concept-presets.md +49 -0
- package/docs/wiki/compiled/concept-primitive-prop-schemas.md +53 -0
- package/docs/wiki/compiled/concept-primitives-overview.md +49 -0
- package/docs/wiki/compiled/concept-promote-gate.md +47 -0
- package/docs/wiki/compiled/concept-prop-cascade.md +76 -0
- package/docs/wiki/compiled/concept-public-package-names.md +33 -0
- package/docs/wiki/compiled/concept-query-envelope.md +55 -0
- package/docs/wiki/compiled/concept-reduced-motion.md +38 -0
- package/docs/wiki/compiled/concept-register-presets.md +44 -0
- package/docs/wiki/compiled/concept-render-error-visibility.md +57 -0
- package/docs/wiki/compiled/concept-repeat-grouped.md +72 -0
- package/docs/wiki/compiled/concept-repeat-selection.md +61 -0
- package/docs/wiki/compiled/concept-repeat.md +81 -0
- package/docs/wiki/compiled/concept-role-access.md +61 -0
- package/docs/wiki/compiled/concept-rollback.md +36 -0
- package/docs/wiki/compiled/concept-rules-catalog.md +49 -0
- package/docs/wiki/compiled/concept-screen-definition.md +51 -0
- package/docs/wiki/compiled/concept-screen-outlet.md +46 -0
- package/docs/wiki/compiled/concept-session-persistence.md +41 -0
- package/docs/wiki/compiled/concept-shape-animations.md +66 -0
- package/docs/wiki/compiled/concept-skeleton-auto.md +58 -0
- package/docs/wiki/compiled/concept-skeleton-manual.md +47 -0
- package/docs/wiki/compiled/concept-source-of-truth-references.md +37 -0
- package/docs/wiki/compiled/concept-source-reading-misleading.md +37 -0
- package/docs/wiki/compiled/concept-spatial-map-editor.md +22 -0
- package/docs/wiki/compiled/concept-spatial-map-zones.md +18 -0
- package/docs/wiki/compiled/concept-spec-engine.md +47 -0
- package/docs/wiki/compiled/concept-spec-store-interface.md +59 -0
- package/docs/wiki/compiled/concept-spec-store-layering.md +51 -0
- package/docs/wiki/compiled/concept-spec-stores-catalog.md +66 -0
- package/docs/wiki/compiled/concept-spec-structure.md +94 -0
- package/docs/wiki/compiled/concept-spec-types.md +76 -0
- package/docs/wiki/compiled/concept-state-change-animation.md +73 -0
- package/docs/wiki/compiled/concept-state-policies.md +44 -0
- package/docs/wiki/compiled/concept-state-protection.md +51 -0
- package/docs/wiki/compiled/concept-storage-adapter.md +69 -0
- package/docs/wiki/compiled/concept-storage-custom-names.md +69 -0
- package/docs/wiki/compiled/concept-storage-evolution.md +32 -0
- package/docs/wiki/compiled/concept-storage-idempotency.md +35 -0
- package/docs/wiki/compiled/concept-storage-overview.md +81 -0
- package/docs/wiki/compiled/concept-storage-postgres-jsonb.md +53 -0
- package/docs/wiki/compiled/concept-storage-postgres-triggers.md +60 -0
- package/docs/wiki/compiled/concept-storage-table-environments.md +40 -0
- package/docs/wiki/compiled/concept-storage-table-screens.md +44 -0
- package/docs/wiki/compiled/concept-storage-table-versions.md +50 -0
- package/docs/wiki/compiled/concept-storage-verification.md +57 -0
- package/docs/wiki/compiled/concept-template-children-marker.md +56 -0
- package/docs/wiki/compiled/concept-template-interpolation.md +60 -0
- package/docs/wiki/compiled/concept-templates-vs-variants.md +80 -0
- package/docs/wiki/compiled/concept-templates.md +93 -0
- package/docs/wiki/compiled/concept-token-categories.md +58 -0
- package/docs/wiki/compiled/concept-token-system.md +61 -0
- package/docs/wiki/compiled/concept-transaction-phase-timing.md +47 -0
- package/docs/wiki/compiled/concept-transaction-rollback.md +38 -0
- package/docs/wiki/compiled/concept-transaction-snapshot.md +37 -0
- package/docs/wiki/compiled/concept-transactions.md +72 -0
- package/docs/wiki/compiled/concept-validation-checks.md +63 -0
- package/docs/wiki/compiled/concept-validators-catalog.md +76 -0
- package/docs/wiki/compiled/concept-versioned-store.md +65 -0
- package/docs/wiki/compiled/concept-versioning-snapshots-patches.md +61 -0
- package/docs/wiki/compiled/concept-visibility.md +55 -0
- package/docs/wiki/compiled/concept-web-only-recipes.md +37 -0
- package/docs/wiki/compiled/concept-where-to-look.md +78 -0
- package/docs/wiki/compiled/expression-and-or-not.md +68 -0
- package/docs/wiki/compiled/expression-array.md +111 -0
- package/docs/wiki/compiled/expression-auth.md +83 -0
- package/docs/wiki/compiled/expression-binditem.md +52 -0
- package/docs/wiki/compiled/expression-bindstate.md +63 -0
- package/docs/wiki/compiled/expression-breakpoint.md +71 -0
- package/docs/wiki/compiled/expression-computed.md +52 -0
- package/docs/wiki/compiled/expression-cond.md +78 -0
- package/docs/wiki/compiled/expression-date.md +66 -0
- package/docs/wiki/compiled/expression-format.md +79 -0
- package/docs/wiki/compiled/expression-group.md +84 -0
- package/docs/wiki/compiled/expression-i18n.md +53 -0
- package/docs/wiki/compiled/expression-item-index.md +72 -0
- package/docs/wiki/compiled/expression-let-ref.md +87 -0
- package/docs/wiki/compiled/expression-math.md +67 -0
- package/docs/wiki/compiled/expression-platform.md +68 -0
- package/docs/wiki/compiled/expression-prop.md +89 -0
- package/docs/wiki/compiled/expression-selection.md +58 -0
- package/docs/wiki/compiled/expression-state.md +70 -0
- package/docs/wiki/compiled/expression-switch.md +68 -0
- package/docs/wiki/compiled/expression-template.md +71 -0
- package/docs/wiki/compiled/expression-token.md +67 -0
- package/docs/wiki/compiled/path-app-screens.md +55 -0
- package/docs/wiki/compiled/path-data-source-paths.md +44 -0
- package/docs/wiki/compiled/path-forms.md +38 -0
- package/docs/wiki/compiled/path-login.md +57 -0
- package/docs/wiki/compiled/path-navigation.md +62 -0
- package/docs/wiki/compiled/path-presets-available.md +44 -0
- package/docs/wiki/compiled/path-tokens.md +56 -0
- package/docs/wiki/compiled/path-tx-result-error.md +56 -0
- package/docs/wiki/compiled/path-ui-device.md +53 -0
- package/docs/wiki/compiled/path-ui-loading-error.md +40 -0
- package/docs/wiki/compiled/path-ui-modals-drawers.md +46 -0
- package/docs/wiki/compiled/path-ui-selected-row.md +92 -0
- package/docs/wiki/compiled/path-uploads.md +32 -0
- package/docs/wiki/compiled/pattern-cross-screen-data-flow.md +83 -0
- package/docs/wiki/compiled/pattern-fetch-vs-datasources.md +63 -0
- package/docs/wiki/compiled/pattern-file-upload-auto.md +61 -0
- package/docs/wiki/compiled/pattern-file-upload-manual.md +59 -0
- package/docs/wiki/compiled/pattern-form-validation-cross-field.md +58 -0
- package/docs/wiki/compiled/pattern-form-validation.md +58 -0
- package/docs/wiki/compiled/pattern-fullstack-coherence.md +49 -0
- package/docs/wiki/compiled/pattern-git-vs-db-versioning.md +55 -0
- package/docs/wiki/compiled/pattern-identity-aware-spec.md +70 -0
- package/docs/wiki/compiled/pattern-loading-content-empty.md +66 -0
- package/docs/wiki/compiled/pattern-login-body-template.md +47 -0
- package/docs/wiki/compiled/pattern-login-screen.md +83 -0
- package/docs/wiki/compiled/pattern-push-vs-patch.md +54 -0
- package/docs/wiki/compiled/pattern-reusable-components.md +67 -0
- package/docs/wiki/compiled/pattern-tx-create.md +76 -0
- package/docs/wiki/compiled/pattern-tx-delete.md +50 -0
- package/docs/wiki/compiled/pattern-tx-toggle.md +45 -0
- package/docs/wiki/compiled/pattern-tx-update.md +68 -0
- package/docs/wiki/compiled/primitive-accordion.md +46 -0
- package/docs/wiki/compiled/primitive-area-chart.md +35 -0
- package/docs/wiki/compiled/primitive-audio-player.md +27 -0
- package/docs/wiki/compiled/primitive-bar-chart.md +34 -0
- package/docs/wiki/compiled/primitive-box.md +58 -0
- package/docs/wiki/compiled/primitive-button.md +55 -0
- package/docs/wiki/compiled/primitive-camera.md +39 -0
- package/docs/wiki/compiled/primitive-checkbox.md +62 -0
- package/docs/wiki/compiled/primitive-divider.md +31 -0
- package/docs/wiki/compiled/primitive-drawer.md +44 -0
- package/docs/wiki/compiled/primitive-file-upload.md +65 -0
- package/docs/wiki/compiled/primitive-grid.md +48 -0
- package/docs/wiki/compiled/primitive-icon.md +106 -0
- package/docs/wiki/compiled/primitive-image.md +49 -0
- package/docs/wiki/compiled/primitive-input.md +81 -0
- package/docs/wiki/compiled/primitive-kanban-board.md +30 -0
- package/docs/wiki/compiled/primitive-line-chart.md +33 -0
- package/docs/wiki/compiled/primitive-list.md +34 -0
- package/docs/wiki/compiled/primitive-modal.md +51 -0
- package/docs/wiki/compiled/primitive-pie-chart.md +32 -0
- package/docs/wiki/compiled/primitive-screen-outlet.md +42 -0
- package/docs/wiki/compiled/primitive-screen.md +43 -0
- package/docs/wiki/compiled/primitive-scroll.md +33 -0
- package/docs/wiki/compiled/primitive-select.md +76 -0
- package/docs/wiki/compiled/primitive-signature.md +40 -0
- package/docs/wiki/compiled/primitive-skeleton.md +48 -0
- package/docs/wiki/compiled/primitive-slider.md +47 -0
- package/docs/wiki/compiled/primitive-spacer.md +33 -0
- package/docs/wiki/compiled/primitive-spatial-map.md +26 -0
- package/docs/wiki/compiled/primitive-stack.md +46 -0
- package/docs/wiki/compiled/primitive-table.md +127 -0
- package/docs/wiki/compiled/primitive-tabs.md +52 -0
- package/docs/wiki/compiled/primitive-text.md +59 -0
- package/docs/wiki/compiled/primitive-textarea.md +44 -0
- package/docs/wiki/compiled/primitive-toast-container.md +44 -0
- package/docs/wiki/compiled/primitive-toggle.md +46 -0
- package/docs/wiki/compiled/primitive-touchable.md +40 -0
- package/docs/wiki/compiled/primitive-wizard.md +43 -0
- package/package.json +58 -8
package/docs/llms.txt
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Mythik AI documentation
|
|
2
|
+
|
|
3
|
+
This directory is bundled with the npm package `mythik` so AI agents can read the framework contract after installation.
|
|
4
|
+
|
|
5
|
+
Start here:
|
|
6
|
+
- consumer/ai-context.md
|
|
7
|
+
- consumer/ai-context-primitives.md
|
|
8
|
+
- consumer/ai-context-runtime-semantics.md
|
|
9
|
+
- consumer/reference-doc.md
|
|
10
|
+
- wiki/compiled/README.md
|
|
11
|
+
- wiki/compiled/_index.md
|
|
12
|
+
|
|
13
|
+
Required edit loop for existing persisted specs:
|
|
14
|
+
1. mythik manifest <spec-id>
|
|
15
|
+
2. mythik elements <spec-id> <element-ids>
|
|
16
|
+
3. mythik patch <spec-id> --from-file <patch.json>
|
|
17
|
+
4. mythik validate <spec-id>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Mythik - Compiled Wiki
|
|
2
|
+
|
|
3
|
+
Compiled from `docs/consumer/` into **327 atomic articles**. The wiki is optimized for AI consumption: each article is one concept, and `_index.md` is the flat searchable graph.
|
|
4
|
+
|
|
5
|
+
## Reading order for first-time spec authoring
|
|
6
|
+
|
|
7
|
+
1. [concept-spec-structure](concept-spec-structure.md) - flat tree shape, root, elements, and initial actions.
|
|
8
|
+
2. [concept-element-properties](concept-element-properties.md) - what every element accepts.
|
|
9
|
+
3. [concept-spec-types](concept-spec-types.md) - Screen vs AppSpec vs ApiSpec.
|
|
10
|
+
4. [concept-expression-contexts](concept-expression-contexts.md) and [concept-expression-timing](concept-expression-timing.md) - where expressions work and when they resolve.
|
|
11
|
+
5. [concept-primitives-overview](concept-primitives-overview.md) and [primitive-spatial-map](primitive-spatial-map.md) - primitives, including the spatial-map editor surface.
|
|
12
|
+
6. [cli-existing-spec-edit-loop](cli-existing-spec-edit-loop.md) - required loop for modifying existing persisted specs.
|
|
13
|
+
7. [cli-docs](cli-docs.md) - locate or copy the bundled AI documentation after `npm install`.
|
|
14
|
+
|
|
15
|
+
## Publish notes
|
|
16
|
+
|
|
17
|
+
- Public package names are unscoped: `mythik`, `mythik-react`, `mythik-cli`, `mythik-server`.
|
|
18
|
+
- React Native work is a repository preview track, not part of the initial npm publish surface.
|
|
19
|
+
- The wiki metadata folder is not publish content.
|
|
20
|
+
- `docs/consumer` remains the canonical source.
|
|
21
|
+
|
|
22
|
+
## Catalog
|
|
23
|
+
|
|
24
|
+
- [Actions](#actions) - 19
|
|
25
|
+
- [Anti-patterns](#anti-patterns) - 21
|
|
26
|
+
- [CLI](#cli) - 19
|
|
27
|
+
- [Concepts](#concepts) - 177
|
|
28
|
+
- [Expressions](#expressions) - 22
|
|
29
|
+
- [Paths](#paths) - 13
|
|
30
|
+
- [Patterns](#patterns) - 18
|
|
31
|
+
- [Primitives](#primitives) - 38
|
|
32
|
+
|
|
33
|
+
See [_index.md](_index.md) for the flat article graph and [_lint.md](_lint.md) for current health checks.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Documentation Gaps
|
|
2
|
+
|
|
3
|
+
This file tracks concepts the raw docs left **unclear** — where a faithful
|
|
4
|
+
compiled article would either fabricate detail or leave a question open.
|
|
5
|
+
Per the compilation rules: **never fabricate, surface as a gap.**
|
|
6
|
+
|
|
7
|
+
## Status: 0 gaps detected during compilation
|
|
8
|
+
|
|
9
|
+
All 326 articles were written from raw content present in the source
|
|
10
|
+
files. Every fact in the compiled wiki traces to a `docs/consumer/<file>.md`
|
|
11
|
+
section listed in the article's `sources:` frontmatter.
|
|
12
|
+
|
|
13
|
+
## Process for adding gaps
|
|
14
|
+
|
|
15
|
+
When an article cannot be written without invention, add an entry here
|
|
16
|
+
in this format:
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
## <concept-id>
|
|
20
|
+
|
|
21
|
+
**Where**: docs/consumer/<file>.md#<section>
|
|
22
|
+
|
|
23
|
+
**Gap**: <what's unclear — what fact would the article need to assert
|
|
24
|
+
that the raw doesn't support?>
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Then write the article anyway, citing the gap. Do NOT invent the missing
|
|
28
|
+
detail.
|
|
29
|
+
|
|
30
|
+
## Open observations (not gaps, just notes)
|
|
31
|
+
|
|
32
|
+
These were thin in raw but had enough material to write a faithful
|
|
33
|
+
article:
|
|
34
|
+
|
|
35
|
+
- **`primitive-kanban-board`** — raw covers props at a single line
|
|
36
|
+
(`Props: columns (column definitions). Board-style layout`). The
|
|
37
|
+
article notes this and points to source-of-truth files for column-shape
|
|
38
|
+
details.
|
|
39
|
+
- **`primitive-audio-player`** — minimal props (`src`, `label`); the
|
|
40
|
+
article reflects that.
|
|
41
|
+
- **`primitive-screen`** — RN-specific wrapper; raw confirms but doesn't
|
|
42
|
+
expand on its props beyond `title`.
|
|
43
|
+
- **`primitive-list`** — no props besides common; the article reflects that.
|
|
44
|
+
|
|
45
|
+
If consumers find these too thin, they should either point to better
|
|
46
|
+
detail in the framework source via [[@concept-where-to-look]] or open a
|
|
47
|
+
docs PR.
|
|
48
|
+
|
|
49
|
+
## Inferred content
|
|
50
|
+
|
|
51
|
+
Articles do **not** contain `> **Inferred:**` blockquotes — no extrapolation
|
|
52
|
+
beyond raw was needed during compilation.
|
|
@@ -0,0 +1,354 @@
|
|
|
1
|
+
# Mythik compiled wiki index
|
|
2
|
+
|
|
3
|
+
Flat catalog generated from `docs/wiki/compiled`. Use the article ID for wikilinks, for example `[[ @concept-spec-structure ]]` without the spaces.
|
|
4
|
+
|
|
5
|
+
## Actions (19)
|
|
6
|
+
|
|
7
|
+
@action-apply-preset :: action-apply-preset.md :: `applyPreset` — apply curated DNA+Identity
|
|
8
|
+
@action-copy-clipboard :: action-copy-clipboard.md :: `copyToClipboard`
|
|
9
|
+
@action-drawer :: action-drawer.md :: `openDrawer` / `closeDrawer`
|
|
10
|
+
@action-export :: action-export.md :: `export` — data export
|
|
11
|
+
@action-fetch :: action-fetch.md :: `fetch` — HTTP request
|
|
12
|
+
@action-form-control :: action-form-control.md :: `validateForm` / `touchField` / `resetForm`
|
|
13
|
+
@action-login :: action-login.md :: `login` / `logout` / `refreshSession`
|
|
14
|
+
@action-modal :: action-modal.md :: `openModal` / `closeModal`
|
|
15
|
+
@action-navigate :: action-navigate.md :: `navigateScreen` / `goBackScreen` (and low-level `navigate`/`goBack`)
|
|
16
|
+
@action-open-url :: action-open-url.md :: `openUrl` — open external URL
|
|
17
|
+
@action-refresh-data-source :: action-refresh-data-source.md :: `refreshDataSource` — force re-fetch
|
|
18
|
+
@action-selection :: action-selection.md :: `toggleSelection` / `selectAll` / `selectNone`
|
|
19
|
+
@action-set-locale :: action-set-locale.md :: `setLocale` — change active locale
|
|
20
|
+
@action-set-state :: action-set-state.md :: `setState` — write to state
|
|
21
|
+
@action-show-notification :: action-show-notification.md :: `showNotification` / `dismissNotification`
|
|
22
|
+
@action-submit-form :: action-submit-form.md :: `submitForm` — validate + fetch + notify
|
|
23
|
+
@action-toggle-theme :: action-toggle-theme.md :: `toggleTheme` — switch dark/light
|
|
24
|
+
@action-update-tokens :: action-update-tokens.md :: `updateTokens` — runtime token update
|
|
25
|
+
@action-upload-file :: action-upload-file.md :: `uploadFile` / `deleteFile`
|
|
26
|
+
|
|
27
|
+
## Anti-patterns (21)
|
|
28
|
+
|
|
29
|
+
@antipattern-action-chain-no-stop :: antipattern-action-chain-no-stop.md :: Anti-pattern — `validateForm` doesn't halt chains
|
|
30
|
+
@antipattern-all-filter-wildcard :: antipattern-all-filter-wildcard.md :: Anti-pattern — `"all"` is not a wildcard
|
|
31
|
+
@antipattern-auth-domains-port :: antipattern-auth-domains-port.md :: Anti-pattern — `:port` in `authDomains`
|
|
32
|
+
@antipattern-background-blobs-prop :: antipattern-background-blobs-prop.md :: Anti-pattern — `Box.backgroundBlobs` prop
|
|
33
|
+
@antipattern-background-css-token :: antipattern-background-css-token.md :: Anti-pattern — `$token: "backgroundCSS"`
|
|
34
|
+
@antipattern-checkbox-toggle-value :: antipattern-checkbox-toggle-value.md :: Anti-pattern — `value` on checkbox/toggle
|
|
35
|
+
@antipattern-crud-id-collision :: antipattern-crud-id-collision.md :: Anti-pattern — CRUD `:id` collision
|
|
36
|
+
@antipattern-derive-server-pagination :: antipattern-derive-server-pagination.md :: Anti-pattern — `derive` over server-paginated state
|
|
37
|
+
@antipattern-element-variant-top-level :: antipattern-element-variant-top-level.md :: Anti-pattern — top-level `variant` field
|
|
38
|
+
@antipattern-event-expression :: antipattern-event-expression.md :: Anti-pattern — `$event` expression
|
|
39
|
+
@antipattern-input-type-name :: antipattern-input-type-name.md :: Anti-pattern — `inputType` instead of `type`
|
|
40
|
+
@antipattern-mix-fetch-and-datasources :: antipattern-mix-fetch-and-datasources.md :: Anti-pattern — mixing `fetch` + `dataSources` for same target
|
|
41
|
+
@antipattern-modal-drawer-visible :: antipattern-modal-drawer-visible.md :: Anti-pattern — `visible` on modal/drawer
|
|
42
|
+
@antipattern-motion-entrance-token :: antipattern-motion-entrance-token.md :: Anti-pattern — `identity.motionEntrance` / `motionHover`
|
|
43
|
+
@antipattern-overflow-hidden-with-shadow :: antipattern-overflow-hidden-with-shadow.md :: Anti-pattern — `overflow: hidden` + `box-shadow` hover
|
|
44
|
+
@antipattern-required-if-equals :: antipattern-required-if-equals.md :: Anti-pattern — `requiredIf` with value comparison
|
|
45
|
+
@antipattern-row-literal :: antipattern-row-literal.md :: Anti-pattern — `$row` literal
|
|
46
|
+
@antipattern-row-template-capture :: antipattern-row-template-capture.md :: Anti-pattern — `$item` directly in `$template`
|
|
47
|
+
@antipattern-store-save-bypass :: antipattern-store-save-bypass.md :: Anti-pattern — `store.save()` bypass
|
|
48
|
+
@antipattern-style-block-duplication :: antipattern-style-block-duplication.md :: Anti-pattern — duplicate style blocks
|
|
49
|
+
@antipattern-submit-form-in-tx-confirm :: antipattern-submit-form-in-tx-confirm.md :: Anti-pattern — `submitForm` in `transaction.confirm`
|
|
50
|
+
|
|
51
|
+
## CLI (19)
|
|
52
|
+
|
|
53
|
+
@cli-app-spec :: cli-app-spec.md :: CLI on AppSpecs
|
|
54
|
+
@cli-config :: cli-config.md :: CLI config — `.mythikrc` + env vars
|
|
55
|
+
@cli-contract :: cli-contract.md :: `mythik contract` — frontend↔backend cross-validation
|
|
56
|
+
@cli-delete :: cli-delete.md :: `mythik delete` — with safety gate
|
|
57
|
+
@cli-docs :: cli-docs.md :: `mythik docs` — bundled AI documentation
|
|
58
|
+
@cli-elements :: cli-elements.md :: `mythik elements` — inspect specific elements
|
|
59
|
+
@cli-existing-spec-edit-loop :: cli-existing-spec-edit-loop.md :: Existing spec edit loop
|
|
60
|
+
@cli-history :: cli-history.md :: `mythik history` — version history with diffs
|
|
61
|
+
@cli-lint :: cli-lint.md :: `mythik lint` — anti-pattern detection
|
|
62
|
+
@cli-manifest :: cli-manifest.md :: `mythik manifest` — structural tree
|
|
63
|
+
@cli-overview :: cli-overview.md :: CLI overview - `mythik <command>`
|
|
64
|
+
@cli-patch :: cli-patch.md :: `mythik patch` - RFC 6902 patches
|
|
65
|
+
@cli-programmatic-api :: cli-programmatic-api.md :: Programmatic API — `mythik-cli/api`
|
|
66
|
+
@cli-pull :: cli-pull.md :: `mythik pull` — export spec
|
|
67
|
+
@cli-push :: cli-push.md :: `mythik push` — three approved write paths
|
|
68
|
+
@cli-tokens :: cli-tokens.md :: `mythik tokens` — DNA inspection
|
|
69
|
+
@cli-toon :: cli-toon.md :: `--toon` - token-efficient format
|
|
70
|
+
@cli-validate :: cli-validate.md :: `mythik validate`
|
|
71
|
+
@cli-versioning-author :: cli-versioning-author.md :: `--author` flag — activates versioning
|
|
72
|
+
|
|
73
|
+
## Concepts (177)
|
|
74
|
+
|
|
75
|
+
@concept-action-chains :: concept-action-chains.md :: Action chains — sequential execution
|
|
76
|
+
@concept-action-middleware :: concept-action-middleware.md :: Action middleware
|
|
77
|
+
@concept-animation-build-css :: concept-animation-build-css.md :: `buildCSSKeyframes` — web output
|
|
78
|
+
@concept-animation-build-rn :: concept-animation-build-rn.md :: `buildReanimatedSpec` — RN output
|
|
79
|
+
@concept-animation-caps :: concept-animation-caps.md :: Animation performance caps
|
|
80
|
+
@concept-animation-cascade :: concept-animation-cascade.md :: 5-level animation cascade
|
|
81
|
+
@concept-animation-null-semantics :: concept-animation-null-semantics.md :: Animation null semantics
|
|
82
|
+
@concept-animation-recipes :: concept-animation-recipes.md :: 15 animation recipes
|
|
83
|
+
@concept-animation-triggers :: concept-animation-triggers.md :: Animation triggers — 7 triggers
|
|
84
|
+
@concept-animations-engine :: concept-animations-engine.md :: `animations` engine (preferred)
|
|
85
|
+
@concept-api-audit :: concept-api-audit.md :: `audit` — auto-inject user + timestamp
|
|
86
|
+
@concept-api-auth :: concept-api-auth.md :: API auth (`auth` block)
|
|
87
|
+
@concept-api-catalogs :: concept-api-catalogs.md :: API catalogs — dropdown sources
|
|
88
|
+
@concept-api-crud-endpoint :: concept-api-crud-endpoint.md :: API CRUD endpoint — 1 declaration → 3 routes
|
|
89
|
+
@concept-api-endpoint-properties :: concept-api-endpoint-properties.md :: API endpoint properties (full table)
|
|
90
|
+
@concept-api-endpoints-overview :: concept-api-endpoints-overview.md :: API endpoints — 4 patterns
|
|
91
|
+
@concept-api-handler-endpoint :: concept-api-handler-endpoint.md :: API handler endpoint — complex logic
|
|
92
|
+
@concept-api-login-body-contract :: concept-api-login-body-contract.md :: `/api/auth/login` body contract
|
|
93
|
+
@concept-api-param-properties :: concept-api-param-properties.md :: API param properties
|
|
94
|
+
@concept-api-public-endpoint :: concept-api-public-endpoint.md :: API public endpoint (`policy: "public"`)
|
|
95
|
+
@concept-api-query-endpoint :: concept-api-query-endpoint.md :: API query endpoint — SQL-driven read
|
|
96
|
+
@concept-api-scope-filter :: concept-api-scope-filter.md :: `scopeFilter` — row-level security
|
|
97
|
+
@concept-api-spec :: concept-api-spec.md :: ApiSpec — declarative backend
|
|
98
|
+
@concept-app-auto-state-paths :: concept-app-auto-state-paths.md :: AppSpec auto-state paths
|
|
99
|
+
@concept-app-spec :: concept-app-spec.md :: AppSpec — multi-screen app
|
|
100
|
+
@concept-auth-config :: concept-auth-config.md :: AppSpec auth config
|
|
101
|
+
@concept-auth-domains :: concept-auth-domains.md :: `authDomains` — hostname matcher
|
|
102
|
+
@concept-auth-security :: concept-auth-security.md :: Auth security guarantees
|
|
103
|
+
@concept-auth-state-paths :: concept-auth-state-paths.md :: Auth state paths — `/auth/*`
|
|
104
|
+
@concept-auto-dark-mode :: concept-auto-dark-mode.md :: Auto dark mode
|
|
105
|
+
@concept-background-caps :: concept-background-caps.md :: `validateBackgroundCaps` — performance caps
|
|
106
|
+
@concept-background-layer-kinds :: concept-background-layer-kinds.md :: Background layer kinds
|
|
107
|
+
@concept-background-recipes :: concept-background-recipes.md :: 8 curated background recipes
|
|
108
|
+
@concept-background-stack :: concept-background-stack.md :: `BackgroundStack` — root mount
|
|
109
|
+
@concept-blob-layer :: concept-blob-layer.md :: Blob layer v2 — preset + explicit
|
|
110
|
+
@concept-blob-motion :: concept-blob-motion.md :: Blob motion — drift / rotate / scale
|
|
111
|
+
@concept-blob-shapes-catalog :: concept-blob-shapes-catalog.md :: `BLOB_CATALOG` — 6 curated shapes
|
|
112
|
+
@concept-cli-tokens-inspect :: concept-cli-tokens-inspect.md :: `mythik tokens` — CLI inspection
|
|
113
|
+
@concept-component-variants :: concept-component-variants.md :: Component variants — `tokens.components.{type}.{variant}`
|
|
114
|
+
@concept-cross-tab-sync :: concept-cross-tab-sync.md :: Cross-tab synchronization
|
|
115
|
+
@concept-css-vs-motion :: concept-css-vs-motion.md :: CSS vs Motion — auto-detection
|
|
116
|
+
@concept-custom-detection-pattern :: concept-custom-detection-pattern.md :: Custom-detection pattern (preset → "custom" on edit)
|
|
117
|
+
@concept-custom-element-action-props :: concept-custom-element-action-props.md :: Action-chain props (consumer-supplied event handlers)
|
|
118
|
+
@concept-custom-element-black-box :: concept-custom-element-black-box.md :: Custom element black-box contract
|
|
119
|
+
@concept-custom-element-cache :: concept-custom-element-cache.md :: Custom element cache invalidation
|
|
120
|
+
@concept-custom-element-error-boundary :: concept-custom-element-error-boundary.md :: Custom element error boundary
|
|
121
|
+
@concept-custom-element-prop-cascade :: concept-custom-element-prop-cascade.md :: `$prop` cascade in nested custom elements
|
|
122
|
+
@concept-custom-element-repeat :: concept-custom-element-repeat.md :: Custom elements under `repeat`
|
|
123
|
+
@concept-custom-elements :: concept-custom-elements.md :: Custom elements (Layer 3)
|
|
124
|
+
@concept-custom-jwt-provider :: concept-custom-jwt-provider.md :: Custom JWT provider response mapping
|
|
125
|
+
@concept-customize-action :: concept-customize-action.md :: Customize — write a custom action
|
|
126
|
+
@concept-customize-cli-lint-rule :: concept-customize-cli-lint-rule.md :: Customize — custom CLI lint rule (NOT extensible in v0.1)
|
|
127
|
+
@concept-customize-expression-handler :: concept-customize-expression-handler.md :: Customize — custom expression handler (NOT extensible in v0.1)
|
|
128
|
+
@concept-customize-plugin :: concept-customize-plugin.md :: Customize — custom plugin (auth-style)
|
|
129
|
+
@concept-customize-server-middleware :: concept-customize-server-middleware.md :: Customize — custom server middleware (`mythik-server`)
|
|
130
|
+
@concept-customize-spec-store :: concept-customize-spec-store.md :: Customize — write a custom `SpecStore`
|
|
131
|
+
@concept-customize-validator-rule :: concept-customize-validator-rule.md :: Customize — custom validator rule (NOT extensible in v0.1)
|
|
132
|
+
@concept-customize-versioned-store :: concept-customize-versioned-store.md :: Customize — custom `VersionedSpecStore`
|
|
133
|
+
@concept-data-sources :: concept-data-sources.md :: `dataSources` — reactive GET fetching
|
|
134
|
+
@concept-data-sources-lifecycle :: concept-data-sources-lifecycle.md :: DataSources lifecycle (mount, deps, skip-on-undefined)
|
|
135
|
+
@concept-debugging-runtime-pointers :: concept-debugging-runtime-pointers.md :: Debugging runtime — source-file pointers
|
|
136
|
+
@concept-derive :: concept-derive.md :: `derive` — derived state
|
|
137
|
+
@concept-derive-datasources-mount-order :: concept-derive-datasources-mount-order.md :: Derive + DataSources mount ordering
|
|
138
|
+
@concept-dna-seeds :: concept-dna-seeds.md :: DNA seeds — 8 inputs that derive everything
|
|
139
|
+
@concept-editor-commit :: concept-editor-commit.md :: editorCommit action
|
|
140
|
+
@concept-editor-save :: concept-editor-save.md :: editorSave action
|
|
141
|
+
@concept-editor-sessions :: concept-editor-sessions.md :: Editor sessions
|
|
142
|
+
@concept-element-children-slot :: concept-element-children-slot.md :: `"$children"` slot in custom element render trees
|
|
143
|
+
@concept-element-definition :: concept-element-definition.md :: `ElementDefinition` shape
|
|
144
|
+
@concept-element-key :: concept-element-key.md :: Element `key` — forced remount
|
|
145
|
+
@concept-element-prop-definition :: concept-element-prop-definition.md :: `PropDefinition` — declaring custom element props
|
|
146
|
+
@concept-element-properties :: concept-element-properties.md :: Element Properties (full catalogue)
|
|
147
|
+
@concept-element-render-node :: concept-element-render-node.md :: `ElementRenderNode` — render tree
|
|
148
|
+
@concept-element-variants :: concept-element-variants.md :: Custom element variants — `ElementDefinition.variants`
|
|
149
|
+
@concept-environment-store :: concept-environment-store.md :: EnvironmentStore — version pointers
|
|
150
|
+
@concept-export-action :: concept-export-action.md :: Export — CSV + adapters
|
|
151
|
+
@concept-expression-contexts :: concept-expression-contexts.md :: Expression Resolution Contexts (where each expression works)
|
|
152
|
+
@concept-expression-timing :: concept-expression-timing.md :: Expression Resolution Timing (eager vs lazy)
|
|
153
|
+
@concept-fetch-interceptors :: concept-fetch-interceptors.md :: Fetch interceptors
|
|
154
|
+
@concept-file-upload-overview :: concept-file-upload-overview.md :: File upload — overview
|
|
155
|
+
@concept-fire-and-forget :: concept-fire-and-forget.md :: `fireAndForget` — background action dispatch
|
|
156
|
+
@concept-font-loading :: concept-font-loading.md :: Font loading — project responsibility
|
|
157
|
+
@concept-form-state-paths :: concept-form-state-paths.md :: Form state paths — `/ui/forms/{id}/*`
|
|
158
|
+
@concept-forms :: concept-forms.md :: `forms` — declarative form validation
|
|
159
|
+
@concept-identity-accent-application :: concept-identity-accent-application.md :: `identity.accentApplication` — where accent appears
|
|
160
|
+
@concept-identity-animations :: concept-identity-animations.md :: `identity.animations` — cascade level 1
|
|
161
|
+
@concept-identity-border-elevation-override :: concept-identity-border-elevation-override.md :: Identity border + elevation overrides
|
|
162
|
+
@concept-identity-color-scheme :: concept-identity-color-scheme.md :: `identity.colorScheme` - surface polarity
|
|
163
|
+
@concept-identity-color-weight :: concept-identity-color-weight.md :: `identity.colorWeight` — where color appears
|
|
164
|
+
@concept-identity-glass-rn :: concept-identity-glass-rn.md :: Glass surface on React Native — BlurView
|
|
165
|
+
@concept-identity-gradients :: concept-identity-gradients.md :: `identity.gradients` — gradient text + buttons
|
|
166
|
+
@concept-identity-heading-color :: concept-identity-heading-color.md :: `identity.headingColor`
|
|
167
|
+
@concept-identity-helpers :: concept-identity-helpers.md :: Identity helpers — resolve API
|
|
168
|
+
@concept-identity-icons :: concept-identity-icons.md :: `identity.icons` — icon defaults
|
|
169
|
+
@concept-identity-images :: concept-identity-images.md :: `identity.images` — image defaults
|
|
170
|
+
@concept-identity-label-style :: concept-identity-label-style.md :: `identity.labelStyle` — form label formatting
|
|
171
|
+
@concept-identity-overview :: concept-identity-overview.md :: Identity system - overview
|
|
172
|
+
@concept-identity-radius-pattern :: concept-identity-radius-pattern.md :: `identity.radiusPattern` — 11 corner options
|
|
173
|
+
@concept-identity-surface :: concept-identity-surface.md :: `identity.surface` — 6 surface types
|
|
174
|
+
@concept-identity-text-decoration :: concept-identity-text-decoration.md :: `identity.textDecoration` — heading effects (multi-select)
|
|
175
|
+
@concept-identity-typography-hierarchy :: concept-identity-typography-hierarchy.md :: `identity.typographyHierarchy` — 6 heading scales
|
|
176
|
+
@concept-initial-actions :: concept-initial-actions.md :: `initialActions` — mount-time actions
|
|
177
|
+
@concept-interactive-states :: concept-interactive-states.md :: Interactive states — hover / active / focus / transition
|
|
178
|
+
@concept-keyframe-snapshot :: concept-keyframe-snapshot.md :: `KeyframeSnapshot` schema
|
|
179
|
+
@concept-layer-background :: concept-layer-background.md :: `tokens.identity.background` — LayerBackground v2
|
|
180
|
+
@concept-motion-field :: concept-motion-field.md :: `motion` field (legacy Framer-Motion)
|
|
181
|
+
@concept-mount-spec-runtime :: concept-mount-spec-runtime.md :: `mountSpecRuntime` — internal mount helper
|
|
182
|
+
@concept-mythik-renderer :: concept-mythik-renderer.md :: `MythikRenderer` - root mount
|
|
183
|
+
@concept-navigation :: concept-navigation.md :: Navigation config
|
|
184
|
+
@concept-navigation-dirty-guard :: concept-navigation-dirty-guard.md :: Navigation dirty guard
|
|
185
|
+
@concept-package-layout :: concept-package-layout.md :: Package layout
|
|
186
|
+
@concept-path-references :: concept-path-references.md :: `$path` references inside variants
|
|
187
|
+
@concept-pattern-primitives :: concept-pattern-primitives.md :: Pattern primitives (background `pattern` kind)
|
|
188
|
+
@concept-preset-dropdown-pattern :: concept-preset-dropdown-pattern.md :: Preset dropdown pattern (`$bindState` + `$state`)
|
|
189
|
+
@concept-presets :: concept-presets.md :: Presets — `PresetDefinition`
|
|
190
|
+
@concept-primitive-prop-schemas :: concept-primitive-prop-schemas.md :: `PRIMITIVE_PROP_SCHEMAS` — primitive metadata
|
|
191
|
+
@concept-primitives-overview :: concept-primitives-overview.md :: Primitives — overview
|
|
192
|
+
@concept-promote-gate :: concept-promote-gate.md :: Promote gate — cross-env validation
|
|
193
|
+
@concept-prop-cascade :: concept-prop-cascade.md :: `$prop` cascade — Layer 3 propagation
|
|
194
|
+
@concept-public-package-names :: concept-public-package-names.md :: Public package names
|
|
195
|
+
@concept-query-envelope :: concept-query-envelope.md :: Query response envelope
|
|
196
|
+
@concept-reduced-motion :: concept-reduced-motion.md :: Reduced motion — a11y policy
|
|
197
|
+
@concept-register-presets :: concept-register-presets.md :: `plugins.registerPresets`
|
|
198
|
+
@concept-render-error-visibility :: concept-render-error-visibility.md :: Render error visibility
|
|
199
|
+
@concept-repeat :: concept-repeat.md :: `repeat` — render an element per item
|
|
200
|
+
@concept-repeat-grouped :: concept-repeat-grouped.md :: `repeat.groupBy` — grouped lists
|
|
201
|
+
@concept-repeat-selection :: concept-repeat-selection.md :: `repeat.selection` — multi-select pattern
|
|
202
|
+
@concept-role-access :: concept-role-access.md :: Access control — `roleAccess` vs ScreenDefinition.roles
|
|
203
|
+
@concept-rollback :: concept-rollback.md :: Rollback — `executeRollback`
|
|
204
|
+
@concept-rules-catalog :: concept-rules-catalog.md :: Rules catalog - pointer to the 256 numbered rules
|
|
205
|
+
@concept-screen-definition :: concept-screen-definition.md :: ScreenDefinition — per-screen metadata
|
|
206
|
+
@concept-screen-outlet :: concept-screen-outlet.md :: `screen-outlet` — nested screen content slot
|
|
207
|
+
@concept-session-persistence :: concept-session-persistence.md :: Session persistence — local / session / memory
|
|
208
|
+
@concept-shape-animations :: concept-shape-animations.md :: `useShapeAnimations` — Layer 3 SVG animations
|
|
209
|
+
@concept-skeleton-auto :: concept-skeleton-auto.md :: Auto-skeleton — zero-config loading state
|
|
210
|
+
@concept-skeleton-manual :: concept-skeleton-manual.md :: Manual skeleton — `type: "skeleton"` element
|
|
211
|
+
@concept-source-of-truth-references :: concept-source-of-truth-references.md :: Source-of-truth references
|
|
212
|
+
@concept-source-reading-misleading :: concept-source-reading-misleading.md :: When source-reading is the wrong tool
|
|
213
|
+
@concept-spatial-map-editor :: concept-spatial-map-editor.md :: Spatial-map editor workflow
|
|
214
|
+
@concept-spatial-map-zones :: concept-spatial-map-zones.md :: Spatial-map zones and polygon editing
|
|
215
|
+
@concept-spec-engine :: concept-spec-engine.md :: `SpecEngine` - patch / validate / save flow
|
|
216
|
+
@concept-spec-store-interface :: concept-spec-store-interface.md :: `SpecStore` interface — 4 methods
|
|
217
|
+
@concept-spec-store-layering :: concept-spec-store-layering.md :: SpecStore layering - `save` vs `saveVersion` vs CLI patch
|
|
218
|
+
@concept-spec-stores-catalog :: concept-spec-stores-catalog.md :: Spec stores catalog
|
|
219
|
+
@concept-spec-structure :: concept-spec-structure.md :: Spec Structure (Flat Tree)
|
|
220
|
+
@concept-spec-types :: concept-spec-types.md :: Spec Types — Screen vs App vs Api
|
|
221
|
+
@concept-state-change-animation :: concept-state-change-animation.md :: `stateChange` — state-driven animation
|
|
222
|
+
@concept-state-policies :: concept-state-policies.md :: State policies — preserve / reset / reload
|
|
223
|
+
@concept-state-protection :: concept-state-protection.md :: State protection — protected paths
|
|
224
|
+
@concept-storage-adapter :: concept-storage-adapter.md :: StorageAdapter (host-app)
|
|
225
|
+
@concept-storage-custom-names :: concept-storage-custom-names.md :: Storage — custom table names + identifier safety
|
|
226
|
+
@concept-storage-evolution :: concept-storage-evolution.md :: Storage — schema evolution policy
|
|
227
|
+
@concept-storage-idempotency :: concept-storage-idempotency.md :: Storage — idempotency requirement
|
|
228
|
+
@concept-storage-overview :: concept-storage-overview.md :: Storage setup — three tables
|
|
229
|
+
@concept-storage-postgres-jsonb :: concept-storage-postgres-jsonb.md :: Storage — Postgres `jsonb` requirement
|
|
230
|
+
@concept-storage-postgres-triggers :: concept-storage-postgres-triggers.md :: Storage — Postgres triggers for `screens`
|
|
231
|
+
@concept-storage-table-environments :: concept-storage-table-environments.md :: Storage — Table 2 `screen_environments`
|
|
232
|
+
@concept-storage-table-screens :: concept-storage-table-screens.md :: Storage — Table 0 `screens`
|
|
233
|
+
@concept-storage-table-versions :: concept-storage-table-versions.md :: Storage — Table 1 `screen_versions`
|
|
234
|
+
@concept-storage-verification :: concept-storage-verification.md :: Storage — post-apply verification
|
|
235
|
+
@concept-template-children-marker :: concept-template-children-marker.md :: `"$children"` — template children slot
|
|
236
|
+
@concept-template-interpolation :: concept-template-interpolation.md :: `$template` interpolation contract
|
|
237
|
+
@concept-templates :: concept-templates.md :: `templates` — reusable element definitions
|
|
238
|
+
@concept-templates-vs-variants :: concept-templates-vs-variants.md :: Templates vs Variants — decision table
|
|
239
|
+
@concept-token-categories :: concept-token-categories.md :: Token categories — `$token` paths
|
|
240
|
+
@concept-token-system :: concept-token-system.md :: Token system — three-layer resolution
|
|
241
|
+
@concept-transaction-phase-timing :: concept-transaction-phase-timing.md :: Transaction phase timing
|
|
242
|
+
@concept-transaction-rollback :: concept-transaction-rollback.md :: Transaction rollback semantics
|
|
243
|
+
@concept-transaction-snapshot :: concept-transaction-snapshot.md :: Transaction snapshot — internal mechanism
|
|
244
|
+
@concept-transactions :: concept-transactions.md :: Transactions — optimistic CRUD with rollback
|
|
245
|
+
@concept-validation-checks :: concept-validation-checks.md :: Inline validation `checks`
|
|
246
|
+
@concept-validators-catalog :: concept-validators-catalog.md :: Validators catalog
|
|
247
|
+
@concept-versioned-store :: concept-versioned-store.md :: VersionedSpecStore — snapshots + patch chain
|
|
248
|
+
@concept-versioning-snapshots-patches :: concept-versioning-snapshots-patches.md :: Versioning — snapshots + patch chain
|
|
249
|
+
@concept-visibility :: concept-visibility.md :: `visible` — show/hide condition
|
|
250
|
+
@concept-web-only-recipes :: concept-web-only-recipes.md :: `WEB_ONLY_RECIPES`
|
|
251
|
+
@concept-where-to-look :: concept-where-to-look.md :: Where-to-Look — source navigation map (overview)
|
|
252
|
+
|
|
253
|
+
## Expressions (22)
|
|
254
|
+
|
|
255
|
+
@expression-and-or-not :: expression-and-or-not.md :: `$and` / `$or` / `$not` — boolean logic
|
|
256
|
+
@expression-array :: expression-array.md :: `$array` — array operations
|
|
257
|
+
@expression-auth :: expression-auth.md :: `$auth` — authenticated user data
|
|
258
|
+
@expression-binditem :: expression-binditem.md :: `$bindItem` — two-way binding to repeat item
|
|
259
|
+
@expression-bindstate :: expression-bindstate.md :: `$bindState` — two-way binding
|
|
260
|
+
@expression-breakpoint :: expression-breakpoint.md :: `$breakpoint` — responsive value
|
|
261
|
+
@expression-computed :: expression-computed.md :: `$computed` — registered function
|
|
262
|
+
@expression-cond :: expression-cond.md :: `$cond` / `$then` / `$else` — conditional value
|
|
263
|
+
@expression-date :: expression-date.md :: `$date` — date operations
|
|
264
|
+
@expression-format :: expression-format.md :: `$format` — value formatting
|
|
265
|
+
@expression-group :: expression-group.md :: `$group` — group context (inside groupBy)
|
|
266
|
+
@expression-i18n :: expression-i18n.md :: `$i18n` — translation key
|
|
267
|
+
@expression-item-index :: expression-item-index.md :: `$item` / `$index` — repeat context
|
|
268
|
+
@expression-let-ref :: expression-let-ref.md :: `$let` / `$ref` — named bindings
|
|
269
|
+
@expression-math :: expression-math.md :: `$math` — arithmetic operations
|
|
270
|
+
@expression-platform :: expression-platform.md :: `$platform` — cross-platform value
|
|
271
|
+
@expression-prop :: expression-prop.md :: `$prop` — template/element-def prop reference
|
|
272
|
+
@expression-selection :: expression-selection.md :: `$selection` — selection state (inside repeat.selection)
|
|
273
|
+
@expression-state :: expression-state.md :: `$state` — read from state
|
|
274
|
+
@expression-switch :: expression-switch.md :: `$switch` — multi-branch conditional
|
|
275
|
+
@expression-template :: expression-template.md :: `$template` — string interpolation
|
|
276
|
+
@expression-token :: expression-token.md :: `$token` — design system reference
|
|
277
|
+
|
|
278
|
+
## Paths (13)
|
|
279
|
+
|
|
280
|
+
@path-app-screens :: path-app-screens.md :: `/app/screens` — accessible screens
|
|
281
|
+
@path-data-source-paths :: path-data-source-paths.md :: DataSources auto-paths — `/{target}Loading`, `/{target}Error`, `/{target}Deferred`
|
|
282
|
+
@path-forms :: path-forms.md :: `/ui/forms/{id}/*` — declarative form state
|
|
283
|
+
@path-login :: path-login.md :: `/screens/login/*` and `/login/*`
|
|
284
|
+
@path-navigation :: path-navigation.md :: `/navigation/*` — navigation state
|
|
285
|
+
@path-presets-available :: path-presets-available.md :: `/presets/available` — registered presets
|
|
286
|
+
@path-tokens :: path-tokens.md :: `/tokens/raw` and `/tokens/resolved`
|
|
287
|
+
@path-tx-result-error :: path-tx-result-error.md :: `/tx/result` and `/tx/error` — transaction state
|
|
288
|
+
@path-ui-device :: path-ui-device.md :: `/ui/device/*` — auto-tracked device context
|
|
289
|
+
@path-ui-loading-error :: path-ui-loading-error.md :: `/ui/loading` and `/ui/lastError`
|
|
290
|
+
@path-ui-modals-drawers :: path-ui-modals-drawers.md :: `/ui/modals/{id}` and `/ui/drawers/{id}`
|
|
291
|
+
@path-ui-selected-row :: path-ui-selected-row.md :: `/ui/selectedRow` — table row magic path
|
|
292
|
+
@path-uploads :: path-uploads.md :: `/ui/uploads/*` — internal upload state
|
|
293
|
+
|
|
294
|
+
## Patterns (18)
|
|
295
|
+
|
|
296
|
+
@pattern-cross-screen-data-flow :: pattern-cross-screen-data-flow.md :: Pattern — Cross-screen data flow
|
|
297
|
+
@pattern-fetch-vs-datasources :: pattern-fetch-vs-datasources.md :: Pattern — `fetch` vs `dataSources` decision
|
|
298
|
+
@pattern-file-upload-auto :: pattern-file-upload-auto.md :: Pattern — Auto-upload (autoUpload: true)
|
|
299
|
+
@pattern-file-upload-manual :: pattern-file-upload-manual.md :: Pattern — Manual upload (autoUpload: false)
|
|
300
|
+
@pattern-form-validation :: pattern-form-validation.md :: Pattern — Form validation overview
|
|
301
|
+
@pattern-form-validation-cross-field :: pattern-form-validation-cross-field.md :: Pattern — Cross-field validation (`derive` + `requiredIf`)
|
|
302
|
+
@pattern-fullstack-coherence :: pattern-fullstack-coherence.md :: Pattern — Fullstack coherence (API + Frontend)
|
|
303
|
+
@pattern-git-vs-db-versioning :: pattern-git-vs-db-versioning.md :: Pattern — Git-backed vs DB-versioned history
|
|
304
|
+
@pattern-identity-aware-spec :: pattern-identity-aware-spec.md :: Pattern — Identity-aware spec
|
|
305
|
+
@pattern-loading-content-empty :: pattern-loading-content-empty.md :: Pattern — Loading / Content / Empty / Error
|
|
306
|
+
@pattern-login-body-template :: pattern-login-body-template.md :: Pattern — `loginBody` (email→username mapping)
|
|
307
|
+
@pattern-login-screen :: pattern-login-screen.md :: Pattern — Login screen
|
|
308
|
+
@pattern-push-vs-patch :: pattern-push-vs-patch.md :: Pattern - Push vs Patch (file-first vs DB-first)
|
|
309
|
+
@pattern-reusable-components :: pattern-reusable-components.md :: Pattern — Reusable components (templates + variants)
|
|
310
|
+
@pattern-tx-create :: pattern-tx-create.md :: Pattern — CREATE transaction
|
|
311
|
+
@pattern-tx-delete :: pattern-tx-delete.md :: Pattern — DELETE transaction
|
|
312
|
+
@pattern-tx-toggle :: pattern-tx-toggle.md :: Pattern — TOGGLE transaction
|
|
313
|
+
@pattern-tx-update :: pattern-tx-update.md :: Pattern — UPDATE transaction
|
|
314
|
+
|
|
315
|
+
## Primitives (38)
|
|
316
|
+
|
|
317
|
+
@primitive-accordion :: primitive-accordion.md :: `accordion` — collapsible section
|
|
318
|
+
@primitive-area-chart :: primitive-area-chart.md :: `area-chart`
|
|
319
|
+
@primitive-audio-player :: primitive-audio-player.md :: `audio-player`
|
|
320
|
+
@primitive-bar-chart :: primitive-bar-chart.md :: `bar-chart`
|
|
321
|
+
@primitive-box :: primitive-box.md :: `box` — generic container
|
|
322
|
+
@primitive-button :: primitive-button.md :: `button`
|
|
323
|
+
@primitive-camera :: primitive-camera.md :: `camera` — capture from camera
|
|
324
|
+
@primitive-checkbox :: primitive-checkbox.md :: `checkbox`
|
|
325
|
+
@primitive-divider :: primitive-divider.md :: `divider` — visual separator
|
|
326
|
+
@primitive-drawer :: primitive-drawer.md :: `drawer` — side panel overlay
|
|
327
|
+
@primitive-file-upload :: primitive-file-upload.md :: `file-upload`
|
|
328
|
+
@primitive-grid :: primitive-grid.md :: `grid` — CSS grid container
|
|
329
|
+
@primitive-icon :: primitive-icon.md :: `icon` — icon glyph
|
|
330
|
+
@primitive-image :: primitive-image.md :: `image` — image
|
|
331
|
+
@primitive-input :: primitive-input.md :: `input` — text input
|
|
332
|
+
@primitive-kanban-board :: primitive-kanban-board.md :: `kanban-board`
|
|
333
|
+
@primitive-line-chart :: primitive-line-chart.md :: `line-chart`
|
|
334
|
+
@primitive-list :: primitive-list.md :: `list` — list container
|
|
335
|
+
@primitive-modal :: primitive-modal.md :: `modal` — overlay dialog
|
|
336
|
+
@primitive-pie-chart :: primitive-pie-chart.md :: `pie-chart`
|
|
337
|
+
@primitive-screen :: primitive-screen.md :: `screen` — top-level screen wrapper
|
|
338
|
+
@primitive-screen-outlet :: primitive-screen-outlet.md :: `screen-outlet` — nested screen content slot
|
|
339
|
+
@primitive-scroll :: primitive-scroll.md :: `scroll` — scrollable container
|
|
340
|
+
@primitive-select :: primitive-select.md :: `select` — dropdown
|
|
341
|
+
@primitive-signature :: primitive-signature.md :: `signature` — signature pad
|
|
342
|
+
@primitive-skeleton :: primitive-skeleton.md :: `skeleton` — loading placeholder
|
|
343
|
+
@primitive-slider :: primitive-slider.md :: `slider` — numeric range
|
|
344
|
+
@primitive-spacer :: primitive-spacer.md :: `spacer` — empty space
|
|
345
|
+
@primitive-spatial-map :: primitive-spatial-map.md :: Primitive - spatial-map
|
|
346
|
+
@primitive-stack :: primitive-stack.md :: `stack` — flexbox container
|
|
347
|
+
@primitive-table :: primitive-table.md :: `table`
|
|
348
|
+
@primitive-tabs :: primitive-tabs.md :: `tabs`
|
|
349
|
+
@primitive-text :: primitive-text.md :: `text` — text content
|
|
350
|
+
@primitive-textarea :: primitive-textarea.md :: `textarea` — multi-line text input
|
|
351
|
+
@primitive-toast-container :: primitive-toast-container.md :: `toast-container` — toast positioning override
|
|
352
|
+
@primitive-toggle :: primitive-toggle.md :: `toggle` — boolean switch
|
|
353
|
+
@primitive-touchable :: primitive-touchable.md :: `touchable` — invisible tap area
|
|
354
|
+
@primitive-wizard :: primitive-wizard.md :: `wizard` — multi-step flow
|