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
|
@@ -0,0 +1,2986 @@
|
|
|
1
|
+
# Mythik compiled wiki inventory
|
|
2
|
+
|
|
3
|
+
Generated from article frontmatter and Sources sections. `docs/consumer` is the canonical source layer.
|
|
4
|
+
|
|
5
|
+
## docs/consumer/WHERE-TO-LOOK.md
|
|
6
|
+
|
|
7
|
+
- [[@cli-existing-spec-edit-loop]] - Existing spec edit loop
|
|
8
|
+
- [[@concept-customize-action]] - Customize — write a custom action
|
|
9
|
+
- [[@concept-customize-cli-lint-rule]] - Customize — custom CLI lint rule (NOT extensible in v0.1)
|
|
10
|
+
- [[@concept-customize-expression-handler]] - Customize — custom expression handler (NOT extensible in v0.1)
|
|
11
|
+
- [[@concept-customize-plugin]] - Customize — custom plugin (auth-style)
|
|
12
|
+
- [[@concept-customize-server-middleware]] - Customize — custom server middleware (`mythik-server`)
|
|
13
|
+
- [[@concept-customize-spec-store]] - Customize — write a custom `SpecStore`
|
|
14
|
+
- [[@concept-customize-validator-rule]] - Customize — custom validator rule (NOT extensible in v0.1)
|
|
15
|
+
- [[@concept-customize-versioned-store]] - Customize — custom `VersionedSpecStore`
|
|
16
|
+
- [[@concept-debugging-runtime-pointers]] - Debugging runtime — source-file pointers
|
|
17
|
+
- [[@concept-package-layout]] - Package layout
|
|
18
|
+
- [[@concept-public-package-names]] - Public package names
|
|
19
|
+
- [[@concept-source-of-truth-references]] - Source-of-truth references
|
|
20
|
+
- [[@concept-source-reading-misleading]] - When source-reading is the wrong tool
|
|
21
|
+
- [[@concept-spec-store-interface]] - `SpecStore` interface — 4 methods
|
|
22
|
+
- [[@concept-where-to-look]] - Where-to-Look — source navigation map (overview)
|
|
23
|
+
|
|
24
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 1
|
|
25
|
+
|
|
26
|
+
- [[@concept-spec-store-interface]] - `SpecStore` interface — 4 methods
|
|
27
|
+
|
|
28
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 1 → custom CLI lint rule
|
|
29
|
+
|
|
30
|
+
- [[@concept-customize-cli-lint-rule]] - Customize — custom CLI lint rule (NOT extensible in v0.1)
|
|
31
|
+
|
|
32
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 1 → custom SpecStore
|
|
33
|
+
|
|
34
|
+
- [[@concept-customize-spec-store]] - Customize — write a custom `SpecStore`
|
|
35
|
+
|
|
36
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 1 → custom VersionedSpecStore
|
|
37
|
+
|
|
38
|
+
- [[@concept-customize-versioned-store]] - Customize — custom `VersionedSpecStore`
|
|
39
|
+
|
|
40
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 1 → custom action
|
|
41
|
+
|
|
42
|
+
- [[@concept-customize-action]] - Customize — write a custom action
|
|
43
|
+
|
|
44
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 1 → custom expression handler
|
|
45
|
+
|
|
46
|
+
- [[@concept-customize-expression-handler]] - Customize — custom expression handler (NOT extensible in v0.1)
|
|
47
|
+
|
|
48
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 1 → custom plugin
|
|
49
|
+
|
|
50
|
+
- [[@concept-customize-plugin]] - Customize — custom plugin (auth-style)
|
|
51
|
+
|
|
52
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 1 → custom server middleware
|
|
53
|
+
|
|
54
|
+
- [[@concept-customize-server-middleware]] - Customize — custom server middleware (`mythik-server`)
|
|
55
|
+
|
|
56
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 1 → custom validator rule
|
|
57
|
+
|
|
58
|
+
- [[@concept-customize-validator-rule]] - Customize — custom validator rule (NOT extensible in v0.1)
|
|
59
|
+
|
|
60
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 2
|
|
61
|
+
|
|
62
|
+
- [[@concept-debugging-runtime-pointers]] - Debugging runtime — source-file pointers
|
|
63
|
+
|
|
64
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 3
|
|
65
|
+
|
|
66
|
+
- [[@concept-source-of-truth-references]] - Source-of-truth references
|
|
67
|
+
|
|
68
|
+
## docs/consumer/WHERE-TO-LOOK.md § Section 4
|
|
69
|
+
|
|
70
|
+
- [[@concept-source-reading-misleading]] - When source-reading is the wrong tool
|
|
71
|
+
|
|
72
|
+
## docs/consumer/ai-context-api.md
|
|
73
|
+
|
|
74
|
+
- [[@concept-api-spec]] - ApiSpec — declarative backend
|
|
75
|
+
|
|
76
|
+
## docs/consumer/ai-context-api.md § Anti-pattern
|
|
77
|
+
|
|
78
|
+
- [[@antipattern-crud-id-collision]] - Anti-pattern — CRUD `:id` collision
|
|
79
|
+
|
|
80
|
+
## docs/consumer/ai-context-api.md § ApiSpec (Server)
|
|
81
|
+
|
|
82
|
+
- [[@concept-spec-types]] - Spec Types — Screen vs App vs Api
|
|
83
|
+
|
|
84
|
+
## docs/consumer/ai-context-api.md § Auth
|
|
85
|
+
|
|
86
|
+
- [[@concept-api-auth]] - API auth (`auth` block)
|
|
87
|
+
|
|
88
|
+
## docs/consumer/ai-context-api.md § Auth → scopeFilter
|
|
89
|
+
|
|
90
|
+
- [[@concept-api-scope-filter]] - `scopeFilter` — row-level security
|
|
91
|
+
|
|
92
|
+
## docs/consumer/ai-context-api.md § CRUD endpoint
|
|
93
|
+
|
|
94
|
+
- [[@concept-api-crud-endpoint]] - API CRUD endpoint — 1 declaration → 3 routes
|
|
95
|
+
|
|
96
|
+
## docs/consumer/ai-context-api.md § Catalogs
|
|
97
|
+
|
|
98
|
+
- [[@concept-api-catalogs]] - API catalogs — dropdown sources
|
|
99
|
+
|
|
100
|
+
## docs/consumer/ai-context-api.md § Endpoint properties
|
|
101
|
+
|
|
102
|
+
- [[@concept-api-endpoint-properties]] - API endpoint properties (full table)
|
|
103
|
+
|
|
104
|
+
## docs/consumer/ai-context-api.md § Endpoint properties → Param properties
|
|
105
|
+
|
|
106
|
+
- [[@concept-api-param-properties]] - API param properties
|
|
107
|
+
|
|
108
|
+
## docs/consumer/ai-context-api.md § Endpoints
|
|
109
|
+
|
|
110
|
+
- [[@concept-api-endpoints-overview]] - API endpoints — 4 patterns
|
|
111
|
+
|
|
112
|
+
## docs/consumer/ai-context-api.md § Endpoints → Audit properties
|
|
113
|
+
|
|
114
|
+
- [[@concept-api-audit]] - `audit` — auto-inject user + timestamp
|
|
115
|
+
|
|
116
|
+
## docs/consumer/ai-context-api.md § Endpoints → Handler endpoint
|
|
117
|
+
|
|
118
|
+
- [[@concept-api-handler-endpoint]] - API handler endpoint — complex logic
|
|
119
|
+
|
|
120
|
+
## docs/consumer/ai-context-api.md § Endpoints → Public endpoint
|
|
121
|
+
|
|
122
|
+
- [[@concept-api-public-endpoint]] - API public endpoint (`policy: "public"`)
|
|
123
|
+
|
|
124
|
+
## docs/consumer/ai-context-api.md § Endpoints → Query endpoint
|
|
125
|
+
|
|
126
|
+
- [[@concept-api-query-endpoint]] - API query endpoint — SQL-driven read
|
|
127
|
+
|
|
128
|
+
## docs/consumer/ai-context-api.md#apispec-server
|
|
129
|
+
|
|
130
|
+
- [[@concept-spec-types]] - Spec Types — Screen vs App vs Api
|
|
131
|
+
|
|
132
|
+
## docs/consumer/ai-context-api.md#auth
|
|
133
|
+
|
|
134
|
+
- [[@concept-api-auth]] - API auth (`auth` block)
|
|
135
|
+
- [[@concept-api-scope-filter]] - `scopeFilter` — row-level security
|
|
136
|
+
|
|
137
|
+
## docs/consumer/ai-context-api.md#catalogs
|
|
138
|
+
|
|
139
|
+
- [[@concept-api-catalogs]] - API catalogs — dropdown sources
|
|
140
|
+
|
|
141
|
+
## docs/consumer/ai-context-api.md#endpoint-properties
|
|
142
|
+
|
|
143
|
+
- [[@concept-api-endpoint-properties]] - API endpoint properties (full table)
|
|
144
|
+
- [[@concept-api-param-properties]] - API param properties
|
|
145
|
+
|
|
146
|
+
## docs/consumer/ai-context-api.md#endpoints
|
|
147
|
+
|
|
148
|
+
- [[@antipattern-crud-id-collision]] - Anti-pattern — CRUD `:id` collision
|
|
149
|
+
- [[@concept-api-audit]] - `audit` — auto-inject user + timestamp
|
|
150
|
+
- [[@concept-api-crud-endpoint]] - API CRUD endpoint — 1 declaration → 3 routes
|
|
151
|
+
- [[@concept-api-endpoints-overview]] - API endpoints — 4 patterns
|
|
152
|
+
- [[@concept-api-handler-endpoint]] - API handler endpoint — complex logic
|
|
153
|
+
- [[@concept-api-public-endpoint]] - API public endpoint (`policy: "public"`)
|
|
154
|
+
- [[@concept-api-query-endpoint]] - API query endpoint — SQL-driven read
|
|
155
|
+
|
|
156
|
+
## docs/consumer/ai-context-custom-elements.md
|
|
157
|
+
|
|
158
|
+
- [[@concept-custom-element-prop-cascade]] - `$prop` cascade in nested custom elements
|
|
159
|
+
- [[@concept-custom-elements]] - Custom elements (Layer 3)
|
|
160
|
+
- [[@concept-prop-cascade]] - `$prop` cascade — Layer 3 propagation
|
|
161
|
+
- [[@expression-prop]] - `$prop` — template/element-def prop reference
|
|
162
|
+
|
|
163
|
+
## docs/consumer/ai-context-custom-elements.md § Animation Cascade Inside Custom Elements
|
|
164
|
+
|
|
165
|
+
- [[@concept-animation-cascade]] - 5-level animation cascade
|
|
166
|
+
|
|
167
|
+
## docs/consumer/ai-context-custom-elements.md § Black-Box Contract
|
|
168
|
+
|
|
169
|
+
- [[@concept-custom-element-black-box]] - Custom element black-box contract
|
|
170
|
+
|
|
171
|
+
## docs/consumer/ai-context-custom-elements.md § Consumer-Supplied Event Handlers
|
|
172
|
+
|
|
173
|
+
- [[@concept-custom-element-action-props]] - Action-chain props (consumer-supplied event handlers)
|
|
174
|
+
|
|
175
|
+
## docs/consumer/ai-context-custom-elements.md § ElementDefinition Shape
|
|
176
|
+
|
|
177
|
+
- [[@concept-element-definition]] - `ElementDefinition` shape
|
|
178
|
+
|
|
179
|
+
## docs/consumer/ai-context-custom-elements.md § ElementRenderNode
|
|
180
|
+
|
|
181
|
+
- [[@concept-element-render-node]] - `ElementRenderNode` — render tree
|
|
182
|
+
|
|
183
|
+
## docs/consumer/ai-context-custom-elements.md § ElementRenderNode → "$children" slot
|
|
184
|
+
|
|
185
|
+
- [[@concept-element-children-slot]] - `"$children"` slot in custom element render trees
|
|
186
|
+
|
|
187
|
+
## docs/consumer/ai-context-custom-elements.md § ElementVariantSpec
|
|
188
|
+
|
|
189
|
+
- [[@concept-element-variants]] - Custom element variants — `ElementDefinition.variants`
|
|
190
|
+
|
|
191
|
+
## docs/consumer/ai-context-custom-elements.md § PropDefinition fields
|
|
192
|
+
|
|
193
|
+
- [[@concept-element-prop-definition]] - `PropDefinition` — declaring custom element props
|
|
194
|
+
|
|
195
|
+
## docs/consumer/ai-context-custom-elements.md#black-box-contract
|
|
196
|
+
|
|
197
|
+
- [[@concept-custom-element-black-box]] - Custom element black-box contract
|
|
198
|
+
|
|
199
|
+
## docs/consumer/ai-context-custom-elements.md#consumer-supplied-event-handlers-action-chain-props
|
|
200
|
+
|
|
201
|
+
- [[@concept-custom-element-action-props]] - Action-chain props (consumer-supplied event handlers)
|
|
202
|
+
|
|
203
|
+
## docs/consumer/ai-context-custom-elements.md#elementdefinition-shape
|
|
204
|
+
|
|
205
|
+
- [[@concept-element-definition]] - `ElementDefinition` shape
|
|
206
|
+
|
|
207
|
+
## docs/consumer/ai-context-custom-elements.md#elementrendernode
|
|
208
|
+
|
|
209
|
+
- [[@concept-element-children-slot]] - `"$children"` slot in custom element render trees
|
|
210
|
+
- [[@concept-element-render-node]] - `ElementRenderNode` — render tree
|
|
211
|
+
- [[@expression-prop]] - `$prop` — template/element-def prop reference
|
|
212
|
+
|
|
213
|
+
## docs/consumer/ai-context-custom-elements.md#elementvariantspec
|
|
214
|
+
|
|
215
|
+
- [[@concept-element-variants]] - Custom element variants — `ElementDefinition.variants`
|
|
216
|
+
|
|
217
|
+
## docs/consumer/ai-context-custom-elements.md#propdefinition-fields
|
|
218
|
+
|
|
219
|
+
- [[@concept-element-prop-definition]] - `PropDefinition` — declaring custom element props
|
|
220
|
+
|
|
221
|
+
## docs/consumer/ai-context-patterns.md
|
|
222
|
+
|
|
223
|
+
- [[@concept-action-chains]] - Action chains — sequential execution
|
|
224
|
+
|
|
225
|
+
## docs/consumer/ai-context-patterns.md § "all" filter is not a wildcard
|
|
226
|
+
|
|
227
|
+
- [[@antipattern-all-filter-wildcard]] - Anti-pattern — `"all"` is not a wildcard
|
|
228
|
+
|
|
229
|
+
## docs/consumer/ai-context-patterns.md § Action chains commit state between steps
|
|
230
|
+
|
|
231
|
+
- [[@concept-action-chains]] - Action chains — sequential execution
|
|
232
|
+
|
|
233
|
+
## docs/consumer/ai-context-patterns.md § Action chains don't stop on failure
|
|
234
|
+
|
|
235
|
+
- [[@action-submit-form]] - `submitForm` — validate + fetch + notify
|
|
236
|
+
- [[@antipattern-action-chain-no-stop]] - Anti-pattern — `validateForm` doesn't halt chains
|
|
237
|
+
|
|
238
|
+
## docs/consumer/ai-context-patterns.md § Derive only sees current page data
|
|
239
|
+
|
|
240
|
+
- [[@antipattern-derive-server-pagination]] - Anti-pattern — `derive` over server-paginated state
|
|
241
|
+
|
|
242
|
+
## docs/consumer/ai-context-patterns.md § Don't mix fetch and dataSources for the same target
|
|
243
|
+
|
|
244
|
+
- [[@antipattern-mix-fetch-and-datasources]] - Anti-pattern — mixing `fetch` + `dataSources` for same target
|
|
245
|
+
|
|
246
|
+
## docs/consumer/ai-context-patterns.md § Expression Resolution Contexts
|
|
247
|
+
|
|
248
|
+
- [[@concept-expression-contexts]] - Expression Resolution Contexts (where each expression works)
|
|
249
|
+
- [[@expression-item-index]] - `$item` / `$index` — repeat context
|
|
250
|
+
|
|
251
|
+
## docs/consumer/ai-context-patterns.md § Expression Resolution Contexts → Key traps
|
|
252
|
+
|
|
253
|
+
- [[@antipattern-row-template-capture]] - Anti-pattern — `$item` directly in `$template`
|
|
254
|
+
|
|
255
|
+
## docs/consumer/ai-context-patterns.md § Identity-Aware Spec Pattern
|
|
256
|
+
|
|
257
|
+
- [[@pattern-identity-aware-spec]] - Pattern — Identity-aware spec
|
|
258
|
+
|
|
259
|
+
## docs/consumer/ai-context-patterns.md § Reusable Components — Templates + Variants
|
|
260
|
+
|
|
261
|
+
- [[@concept-templates-vs-variants]] - Templates vs Variants — decision table
|
|
262
|
+
- [[@pattern-reusable-components]] - Pattern — Reusable components (templates + variants)
|
|
263
|
+
|
|
264
|
+
## docs/consumer/ai-context-patterns.md § Rule: don't duplicate style blocks across specs
|
|
265
|
+
|
|
266
|
+
- [[@antipattern-style-block-duplication]] - Anti-pattern — duplicate style blocks
|
|
267
|
+
|
|
268
|
+
## docs/consumer/ai-context-patterns.md § requiredIf is truthy-only
|
|
269
|
+
|
|
270
|
+
- [[@antipattern-required-if-equals]] - Anti-pattern — `requiredIf` with value comparison
|
|
271
|
+
- [[@pattern-form-validation-cross-field]] - Pattern — Cross-field validation (`derive` + `requiredIf`)
|
|
272
|
+
|
|
273
|
+
## docs/consumer/ai-context-patterns.md § submitForm in transaction.confirm is not recommended
|
|
274
|
+
|
|
275
|
+
- [[@antipattern-submit-form-in-tx-confirm]] - Anti-pattern — `submitForm` in `transaction.confirm`
|
|
276
|
+
|
|
277
|
+
## docs/consumer/ai-context-patterns.md#action-chains-dont-stop-on-failure
|
|
278
|
+
|
|
279
|
+
- [[@antipattern-action-chain-no-stop]] - Anti-pattern — `validateForm` doesn't halt chains
|
|
280
|
+
|
|
281
|
+
## docs/consumer/ai-context-patterns.md#all-filter-is-not-a-wildcard
|
|
282
|
+
|
|
283
|
+
- [[@antipattern-all-filter-wildcard]] - Anti-pattern — `"all"` is not a wildcard
|
|
284
|
+
|
|
285
|
+
## docs/consumer/ai-context-patterns.md#derive-only-sees-current-page-data
|
|
286
|
+
|
|
287
|
+
- [[@antipattern-derive-server-pagination]] - Anti-pattern — `derive` over server-paginated state
|
|
288
|
+
|
|
289
|
+
## docs/consumer/ai-context-patterns.md#dont-mix-fetch-and-datasources-for-the-same-target
|
|
290
|
+
|
|
291
|
+
- [[@antipattern-mix-fetch-and-datasources]] - Anti-pattern — mixing `fetch` + `dataSources` for same target
|
|
292
|
+
|
|
293
|
+
## docs/consumer/ai-context-patterns.md#expression-resolution-contexts
|
|
294
|
+
|
|
295
|
+
- [[@antipattern-row-template-capture]] - Anti-pattern — `$item` directly in `$template`
|
|
296
|
+
- [[@concept-expression-contexts]] - Expression Resolution Contexts (where each expression works)
|
|
297
|
+
|
|
298
|
+
## docs/consumer/ai-context-patterns.md#identity-aware-spec-pattern
|
|
299
|
+
|
|
300
|
+
- [[@pattern-identity-aware-spec]] - Pattern — Identity-aware spec
|
|
301
|
+
|
|
302
|
+
## docs/consumer/ai-context-patterns.md#requiredif-is-truthy-only
|
|
303
|
+
|
|
304
|
+
- [[@antipattern-required-if-equals]] - Anti-pattern — `requiredIf` with value comparison
|
|
305
|
+
- [[@pattern-form-validation-cross-field]] - Pattern — Cross-field validation (`derive` + `requiredIf`)
|
|
306
|
+
|
|
307
|
+
## docs/consumer/ai-context-patterns.md#reusable-components--templates--variants
|
|
308
|
+
|
|
309
|
+
- [[@concept-templates-vs-variants]] - Templates vs Variants — decision table
|
|
310
|
+
- [[@pattern-reusable-components]] - Pattern — Reusable components (templates + variants)
|
|
311
|
+
|
|
312
|
+
## docs/consumer/ai-context-patterns.md#rule-dont-duplicate-style-blocks-across-specs
|
|
313
|
+
|
|
314
|
+
- [[@antipattern-style-block-duplication]] - Anti-pattern — duplicate style blocks
|
|
315
|
+
|
|
316
|
+
## docs/consumer/ai-context-patterns.md#submitform-in-transactionconfirm-is-not-recommended
|
|
317
|
+
|
|
318
|
+
- [[@antipattern-submit-form-in-tx-confirm]] - Anti-pattern — `submitForm` in `transaction.confirm`
|
|
319
|
+
|
|
320
|
+
## docs/consumer/ai-context-primitives.md
|
|
321
|
+
|
|
322
|
+
- [[@concept-primitives-overview]] - Primitives — overview
|
|
323
|
+
- [[@concept-spatial-map-editor]] - Spatial-map editor workflow
|
|
324
|
+
- [[@concept-spatial-map-zones]] - Spatial-map zones and polygon editing
|
|
325
|
+
- [[@primitive-spatial-map]] - Primitive - spatial-map
|
|
326
|
+
|
|
327
|
+
## docs/consumer/ai-context-primitives.md § Table
|
|
328
|
+
|
|
329
|
+
- [[@antipattern-row-literal]] - Anti-pattern — `$row` literal
|
|
330
|
+
- [[@primitive-table]] - `table`
|
|
331
|
+
|
|
332
|
+
## docs/consumer/ai-context-primitives.md § accordion
|
|
333
|
+
|
|
334
|
+
- [[@primitive-accordion]] - `accordion` — collapsible section
|
|
335
|
+
|
|
336
|
+
## docs/consumer/ai-context-primitives.md § accordion (RN glass support note)
|
|
337
|
+
|
|
338
|
+
- [[@concept-identity-glass-rn]] - Glass surface on React Native — BlurView
|
|
339
|
+
|
|
340
|
+
## docs/consumer/ai-context-primitives.md § area-chart
|
|
341
|
+
|
|
342
|
+
- [[@primitive-area-chart]] - `area-chart`
|
|
343
|
+
|
|
344
|
+
## docs/consumer/ai-context-primitives.md § audio-player
|
|
345
|
+
|
|
346
|
+
- [[@primitive-audio-player]] - `audio-player`
|
|
347
|
+
|
|
348
|
+
## docs/consumer/ai-context-primitives.md § bar-chart
|
|
349
|
+
|
|
350
|
+
- [[@primitive-bar-chart]] - `bar-chart`
|
|
351
|
+
|
|
352
|
+
## docs/consumer/ai-context-primitives.md § box
|
|
353
|
+
|
|
354
|
+
- [[@primitive-box]] - `box` — generic container
|
|
355
|
+
|
|
356
|
+
## docs/consumer/ai-context-primitives.md § button
|
|
357
|
+
|
|
358
|
+
- [[@primitive-button]] - `button`
|
|
359
|
+
|
|
360
|
+
## docs/consumer/ai-context-primitives.md § camera
|
|
361
|
+
|
|
362
|
+
- [[@primitive-camera]] - `camera` — capture from camera
|
|
363
|
+
|
|
364
|
+
## docs/consumer/ai-context-primitives.md § checkbox
|
|
365
|
+
|
|
366
|
+
- [[@primitive-checkbox]] - `checkbox`
|
|
367
|
+
|
|
368
|
+
## docs/consumer/ai-context-primitives.md § checkbox, toggle
|
|
369
|
+
|
|
370
|
+
- [[@antipattern-checkbox-toggle-value]] - Anti-pattern — `value` on checkbox/toggle
|
|
371
|
+
|
|
372
|
+
## docs/consumer/ai-context-primitives.md § divider
|
|
373
|
+
|
|
374
|
+
- [[@primitive-divider]] - `divider` — visual separator
|
|
375
|
+
|
|
376
|
+
## docs/consumer/ai-context-primitives.md § drawer
|
|
377
|
+
|
|
378
|
+
- [[@primitive-drawer]] - `drawer` — side panel overlay
|
|
379
|
+
|
|
380
|
+
## docs/consumer/ai-context-primitives.md § file-upload
|
|
381
|
+
|
|
382
|
+
- [[@action-upload-file]] - `uploadFile` / `deleteFile`
|
|
383
|
+
- [[@concept-file-upload-overview]] - File upload — overview
|
|
384
|
+
- [[@primitive-file-upload]] - `file-upload`
|
|
385
|
+
|
|
386
|
+
## docs/consumer/ai-context-primitives.md § file-upload → Auto upload pattern
|
|
387
|
+
|
|
388
|
+
- [[@pattern-file-upload-auto]] - Pattern — Auto-upload (autoUpload: true)
|
|
389
|
+
|
|
390
|
+
## docs/consumer/ai-context-primitives.md § file-upload → Manual upload pattern
|
|
391
|
+
|
|
392
|
+
- [[@pattern-file-upload-manual]] - Pattern — Manual upload (autoUpload: false)
|
|
393
|
+
|
|
394
|
+
## docs/consumer/ai-context-primitives.md § grid
|
|
395
|
+
|
|
396
|
+
- [[@primitive-grid]] - `grid` — CSS grid container
|
|
397
|
+
|
|
398
|
+
## docs/consumer/ai-context-primitives.md § icon
|
|
399
|
+
|
|
400
|
+
- [[@primitive-icon]] - `icon` — icon glyph
|
|
401
|
+
|
|
402
|
+
## docs/consumer/ai-context-primitives.md § image
|
|
403
|
+
|
|
404
|
+
- [[@primitive-image]] - `image` — image
|
|
405
|
+
|
|
406
|
+
## docs/consumer/ai-context-primitives.md § input
|
|
407
|
+
|
|
408
|
+
- [[@antipattern-input-type-name]] - Anti-pattern — `inputType` instead of `type`
|
|
409
|
+
- [[@primitive-input]] - `input` — text input
|
|
410
|
+
|
|
411
|
+
## docs/consumer/ai-context-primitives.md § kanban-board
|
|
412
|
+
|
|
413
|
+
- [[@primitive-kanban-board]] - `kanban-board`
|
|
414
|
+
|
|
415
|
+
## docs/consumer/ai-context-primitives.md § line-chart
|
|
416
|
+
|
|
417
|
+
- [[@primitive-line-chart]] - `line-chart`
|
|
418
|
+
|
|
419
|
+
## docs/consumer/ai-context-primitives.md § list
|
|
420
|
+
|
|
421
|
+
- [[@primitive-list]] - `list` — list container
|
|
422
|
+
|
|
423
|
+
## docs/consumer/ai-context-primitives.md § modal
|
|
424
|
+
|
|
425
|
+
- [[@primitive-modal]] - `modal` — overlay dialog
|
|
426
|
+
|
|
427
|
+
## docs/consumer/ai-context-primitives.md § modal, drawer (Wrong/Right notes)
|
|
428
|
+
|
|
429
|
+
- [[@antipattern-modal-drawer-visible]] - Anti-pattern — `visible` on modal/drawer
|
|
430
|
+
|
|
431
|
+
## docs/consumer/ai-context-primitives.md § pie-chart
|
|
432
|
+
|
|
433
|
+
- [[@primitive-pie-chart]] - `pie-chart`
|
|
434
|
+
|
|
435
|
+
## docs/consumer/ai-context-primitives.md § screen
|
|
436
|
+
|
|
437
|
+
- [[@primitive-screen]] - `screen` — top-level screen wrapper
|
|
438
|
+
|
|
439
|
+
## docs/consumer/ai-context-primitives.md § screen-outlet
|
|
440
|
+
|
|
441
|
+
- [[@primitive-screen-outlet]] - `screen-outlet` — nested screen content slot
|
|
442
|
+
|
|
443
|
+
## docs/consumer/ai-context-primitives.md § scroll
|
|
444
|
+
|
|
445
|
+
- [[@primitive-scroll]] - `scroll` — scrollable container
|
|
446
|
+
|
|
447
|
+
## docs/consumer/ai-context-primitives.md § select
|
|
448
|
+
|
|
449
|
+
- [[@primitive-select]] - `select` — dropdown
|
|
450
|
+
|
|
451
|
+
## docs/consumer/ai-context-primitives.md § signature
|
|
452
|
+
|
|
453
|
+
- [[@primitive-signature]] - `signature` — signature pad
|
|
454
|
+
|
|
455
|
+
## docs/consumer/ai-context-primitives.md § skeleton
|
|
456
|
+
|
|
457
|
+
- [[@primitive-skeleton]] - `skeleton` — loading placeholder
|
|
458
|
+
|
|
459
|
+
## docs/consumer/ai-context-primitives.md § slider
|
|
460
|
+
|
|
461
|
+
- [[@primitive-slider]] - `slider` — numeric range
|
|
462
|
+
|
|
463
|
+
## docs/consumer/ai-context-primitives.md § spacer
|
|
464
|
+
|
|
465
|
+
- [[@primitive-spacer]] - `spacer` — empty space
|
|
466
|
+
|
|
467
|
+
## docs/consumer/ai-context-primitives.md § stack
|
|
468
|
+
|
|
469
|
+
- [[@primitive-stack]] - `stack` — flexbox container
|
|
470
|
+
|
|
471
|
+
## docs/consumer/ai-context-primitives.md § tabs
|
|
472
|
+
|
|
473
|
+
- [[@primitive-tabs]] - `tabs`
|
|
474
|
+
|
|
475
|
+
## docs/consumer/ai-context-primitives.md § text
|
|
476
|
+
|
|
477
|
+
- [[@primitive-text]] - `text` — text content
|
|
478
|
+
|
|
479
|
+
## docs/consumer/ai-context-primitives.md § textarea
|
|
480
|
+
|
|
481
|
+
- [[@primitive-textarea]] - `textarea` — multi-line text input
|
|
482
|
+
|
|
483
|
+
## docs/consumer/ai-context-primitives.md § toast-container
|
|
484
|
+
|
|
485
|
+
- [[@primitive-toast-container]] - `toast-container` — toast positioning override
|
|
486
|
+
|
|
487
|
+
## docs/consumer/ai-context-primitives.md § toggle
|
|
488
|
+
|
|
489
|
+
- [[@primitive-toggle]] - `toggle` — boolean switch
|
|
490
|
+
|
|
491
|
+
## docs/consumer/ai-context-primitives.md § touchable
|
|
492
|
+
|
|
493
|
+
- [[@primitive-touchable]] - `touchable` — invisible tap area
|
|
494
|
+
|
|
495
|
+
## docs/consumer/ai-context-primitives.md § wizard
|
|
496
|
+
|
|
497
|
+
- [[@primitive-wizard]] - `wizard` — multi-step flow
|
|
498
|
+
|
|
499
|
+
## docs/consumer/ai-context-primitives.md#accordion
|
|
500
|
+
|
|
501
|
+
- [[@concept-identity-glass-rn]] - Glass surface on React Native — BlurView
|
|
502
|
+
- [[@primitive-accordion]] - `accordion` — collapsible section
|
|
503
|
+
|
|
504
|
+
## docs/consumer/ai-context-primitives.md#area-chart
|
|
505
|
+
|
|
506
|
+
- [[@primitive-area-chart]] - `area-chart`
|
|
507
|
+
|
|
508
|
+
## docs/consumer/ai-context-primitives.md#audio-player
|
|
509
|
+
|
|
510
|
+
- [[@primitive-audio-player]] - `audio-player`
|
|
511
|
+
|
|
512
|
+
## docs/consumer/ai-context-primitives.md#bar-chart
|
|
513
|
+
|
|
514
|
+
- [[@primitive-bar-chart]] - `bar-chart`
|
|
515
|
+
|
|
516
|
+
## docs/consumer/ai-context-primitives.md#box
|
|
517
|
+
|
|
518
|
+
- [[@primitive-box]] - `box` — generic container
|
|
519
|
+
|
|
520
|
+
## docs/consumer/ai-context-primitives.md#button
|
|
521
|
+
|
|
522
|
+
- [[@primitive-button]] - `button`
|
|
523
|
+
|
|
524
|
+
## docs/consumer/ai-context-primitives.md#camera
|
|
525
|
+
|
|
526
|
+
- [[@primitive-camera]] - `camera` — capture from camera
|
|
527
|
+
|
|
528
|
+
## docs/consumer/ai-context-primitives.md#checkbox
|
|
529
|
+
|
|
530
|
+
- [[@antipattern-checkbox-toggle-value]] - Anti-pattern — `value` on checkbox/toggle
|
|
531
|
+
- [[@primitive-checkbox]] - `checkbox`
|
|
532
|
+
|
|
533
|
+
## docs/consumer/ai-context-primitives.md#divider
|
|
534
|
+
|
|
535
|
+
- [[@primitive-divider]] - `divider` — visual separator
|
|
536
|
+
|
|
537
|
+
## docs/consumer/ai-context-primitives.md#drawer
|
|
538
|
+
|
|
539
|
+
- [[@primitive-drawer]] - `drawer` — side panel overlay
|
|
540
|
+
|
|
541
|
+
## docs/consumer/ai-context-primitives.md#file-upload
|
|
542
|
+
|
|
543
|
+
- [[@action-upload-file]] - `uploadFile` / `deleteFile`
|
|
544
|
+
- [[@concept-file-upload-overview]] - File upload — overview
|
|
545
|
+
- [[@pattern-file-upload-auto]] - Pattern — Auto-upload (autoUpload: true)
|
|
546
|
+
- [[@pattern-file-upload-manual]] - Pattern — Manual upload (autoUpload: false)
|
|
547
|
+
- [[@primitive-file-upload]] - `file-upload`
|
|
548
|
+
|
|
549
|
+
## docs/consumer/ai-context-primitives.md#grid
|
|
550
|
+
|
|
551
|
+
- [[@primitive-grid]] - `grid` — CSS grid container
|
|
552
|
+
|
|
553
|
+
## docs/consumer/ai-context-primitives.md#icon
|
|
554
|
+
|
|
555
|
+
- [[@primitive-icon]] - `icon` — icon glyph
|
|
556
|
+
|
|
557
|
+
## docs/consumer/ai-context-primitives.md#image
|
|
558
|
+
|
|
559
|
+
- [[@primitive-image]] - `image` — image
|
|
560
|
+
|
|
561
|
+
## docs/consumer/ai-context-primitives.md#input
|
|
562
|
+
|
|
563
|
+
- [[@antipattern-input-type-name]] - Anti-pattern — `inputType` instead of `type`
|
|
564
|
+
- [[@primitive-input]] - `input` — text input
|
|
565
|
+
|
|
566
|
+
## docs/consumer/ai-context-primitives.md#kanban-board
|
|
567
|
+
|
|
568
|
+
- [[@primitive-kanban-board]] - `kanban-board`
|
|
569
|
+
|
|
570
|
+
## docs/consumer/ai-context-primitives.md#line-chart
|
|
571
|
+
|
|
572
|
+
- [[@primitive-line-chart]] - `line-chart`
|
|
573
|
+
|
|
574
|
+
## docs/consumer/ai-context-primitives.md#list
|
|
575
|
+
|
|
576
|
+
- [[@primitive-list]] - `list` — list container
|
|
577
|
+
|
|
578
|
+
## docs/consumer/ai-context-primitives.md#modal
|
|
579
|
+
|
|
580
|
+
- [[@antipattern-modal-drawer-visible]] - Anti-pattern — `visible` on modal/drawer
|
|
581
|
+
- [[@primitive-modal]] - `modal` — overlay dialog
|
|
582
|
+
|
|
583
|
+
## docs/consumer/ai-context-primitives.md#pie-chart
|
|
584
|
+
|
|
585
|
+
- [[@primitive-pie-chart]] - `pie-chart`
|
|
586
|
+
|
|
587
|
+
## docs/consumer/ai-context-primitives.md#screen
|
|
588
|
+
|
|
589
|
+
- [[@primitive-screen]] - `screen` — top-level screen wrapper
|
|
590
|
+
|
|
591
|
+
## docs/consumer/ai-context-primitives.md#screen-outlet
|
|
592
|
+
|
|
593
|
+
- [[@primitive-screen-outlet]] - `screen-outlet` — nested screen content slot
|
|
594
|
+
|
|
595
|
+
## docs/consumer/ai-context-primitives.md#scroll
|
|
596
|
+
|
|
597
|
+
- [[@primitive-scroll]] - `scroll` — scrollable container
|
|
598
|
+
|
|
599
|
+
## docs/consumer/ai-context-primitives.md#select
|
|
600
|
+
|
|
601
|
+
- [[@primitive-select]] - `select` — dropdown
|
|
602
|
+
|
|
603
|
+
## docs/consumer/ai-context-primitives.md#signature
|
|
604
|
+
|
|
605
|
+
- [[@primitive-signature]] - `signature` — signature pad
|
|
606
|
+
|
|
607
|
+
## docs/consumer/ai-context-primitives.md#skeleton
|
|
608
|
+
|
|
609
|
+
- [[@primitive-skeleton]] - `skeleton` — loading placeholder
|
|
610
|
+
|
|
611
|
+
## docs/consumer/ai-context-primitives.md#slider
|
|
612
|
+
|
|
613
|
+
- [[@primitive-slider]] - `slider` — numeric range
|
|
614
|
+
|
|
615
|
+
## docs/consumer/ai-context-primitives.md#spacer
|
|
616
|
+
|
|
617
|
+
- [[@primitive-spacer]] - `spacer` — empty space
|
|
618
|
+
|
|
619
|
+
## docs/consumer/ai-context-primitives.md#stack
|
|
620
|
+
|
|
621
|
+
- [[@primitive-stack]] - `stack` — flexbox container
|
|
622
|
+
|
|
623
|
+
## docs/consumer/ai-context-primitives.md#table
|
|
624
|
+
|
|
625
|
+
- [[@antipattern-row-literal]] - Anti-pattern — `$row` literal
|
|
626
|
+
- [[@primitive-table]] - `table`
|
|
627
|
+
|
|
628
|
+
## docs/consumer/ai-context-primitives.md#tabs
|
|
629
|
+
|
|
630
|
+
- [[@primitive-tabs]] - `tabs`
|
|
631
|
+
|
|
632
|
+
## docs/consumer/ai-context-primitives.md#text
|
|
633
|
+
|
|
634
|
+
- [[@primitive-text]] - `text` — text content
|
|
635
|
+
|
|
636
|
+
## docs/consumer/ai-context-primitives.md#textarea
|
|
637
|
+
|
|
638
|
+
- [[@primitive-textarea]] - `textarea` — multi-line text input
|
|
639
|
+
|
|
640
|
+
## docs/consumer/ai-context-primitives.md#toast-container
|
|
641
|
+
|
|
642
|
+
- [[@primitive-toast-container]] - `toast-container` — toast positioning override
|
|
643
|
+
|
|
644
|
+
## docs/consumer/ai-context-primitives.md#toggle
|
|
645
|
+
|
|
646
|
+
- [[@antipattern-checkbox-toggle-value]] - Anti-pattern — `value` on checkbox/toggle
|
|
647
|
+
- [[@primitive-toggle]] - `toggle` — boolean switch
|
|
648
|
+
|
|
649
|
+
## docs/consumer/ai-context-primitives.md#touchable
|
|
650
|
+
|
|
651
|
+
- [[@primitive-touchable]] - `touchable` — invisible tap area
|
|
652
|
+
|
|
653
|
+
## docs/consumer/ai-context-primitives.md#wizard
|
|
654
|
+
|
|
655
|
+
- [[@primitive-wizard]] - `wizard` — multi-step flow
|
|
656
|
+
|
|
657
|
+
## docs/consumer/ai-context-runtime-semantics.md
|
|
658
|
+
|
|
659
|
+
- [[@concept-editor-commit]] - editorCommit action
|
|
660
|
+
- [[@concept-editor-save]] - editorSave action
|
|
661
|
+
- [[@concept-editor-sessions]] - Editor sessions
|
|
662
|
+
- [[@concept-mythik-renderer]] - `MythikRenderer` - root mount
|
|
663
|
+
- [[@concept-navigation-dirty-guard]] - Navigation dirty guard
|
|
664
|
+
- [[@concept-render-error-visibility]] - Render error visibility
|
|
665
|
+
- [[@concept-spatial-map-editor]] - Spatial-map editor workflow
|
|
666
|
+
- [[@concept-spec-engine]] - `SpecEngine` - patch / validate / save flow
|
|
667
|
+
- [[@concept-spec-store-layering]] - SpecStore layering - `save` vs `saveVersion` vs CLI patch
|
|
668
|
+
- [[@pattern-push-vs-patch]] - Pattern - Push vs Patch (file-first vs DB-first)
|
|
669
|
+
|
|
670
|
+
## docs/consumer/ai-context-runtime-semantics.md § 1
|
|
671
|
+
|
|
672
|
+
- [[@concept-expression-timing]] - Expression Resolution Timing (eager vs lazy)
|
|
673
|
+
|
|
674
|
+
## docs/consumer/ai-context-runtime-semantics.md § 1.1
|
|
675
|
+
|
|
676
|
+
- [[@concept-initial-actions]] - `initialActions` — mount-time actions
|
|
677
|
+
|
|
678
|
+
## docs/consumer/ai-context-runtime-semantics.md § 1.3
|
|
679
|
+
|
|
680
|
+
- [[@concept-primitive-prop-schemas]] - `PRIMITIVE_PROP_SCHEMAS` — primitive metadata
|
|
681
|
+
|
|
682
|
+
## docs/consumer/ai-context-runtime-semantics.md § 1.4
|
|
683
|
+
|
|
684
|
+
- [[@concept-prop-cascade]] - `$prop` cascade — Layer 3 propagation
|
|
685
|
+
- [[@expression-prop]] - `$prop` — template/element-def prop reference
|
|
686
|
+
|
|
687
|
+
## docs/consumer/ai-context-runtime-semantics.md § 1.5
|
|
688
|
+
|
|
689
|
+
- [[@concept-template-interpolation]] - `$template` interpolation contract
|
|
690
|
+
- [[@expression-template]] - `$template` — string interpolation
|
|
691
|
+
|
|
692
|
+
## docs/consumer/ai-context-runtime-semantics.md § 1.6
|
|
693
|
+
|
|
694
|
+
- [[@concept-transaction-phase-timing]] - Transaction phase timing
|
|
695
|
+
- [[@concept-transaction-snapshot]] - Transaction snapshot — internal mechanism
|
|
696
|
+
|
|
697
|
+
## docs/consumer/ai-context-runtime-semantics.md § 2
|
|
698
|
+
|
|
699
|
+
- [[@concept-state-protection]] - State protection — protected paths
|
|
700
|
+
|
|
701
|
+
## docs/consumer/ai-context-runtime-semantics.md § 2.1
|
|
702
|
+
|
|
703
|
+
- [[@antipattern-row-literal]] - Anti-pattern — `$row` literal
|
|
704
|
+
- [[@path-ui-selected-row]] - `/ui/selectedRow` — table row magic path
|
|
705
|
+
|
|
706
|
+
## docs/consumer/ai-context-runtime-semantics.md § 2.2
|
|
707
|
+
|
|
708
|
+
- [[@path-ui-device]] - `/ui/device/*` — auto-tracked device context
|
|
709
|
+
|
|
710
|
+
## docs/consumer/ai-context-runtime-semantics.md § 2.3
|
|
711
|
+
|
|
712
|
+
- [[@path-ui-modals-drawers]] - `/ui/modals/{id}` and `/ui/drawers/{id}`
|
|
713
|
+
|
|
714
|
+
## docs/consumer/ai-context-runtime-semantics.md § 2.4
|
|
715
|
+
|
|
716
|
+
- [[@path-data-source-paths]] - DataSources auto-paths — `/{target}Loading`, `/{target}Error`, `/{target}Deferred`
|
|
717
|
+
- [[@path-ui-loading-error]] - `/ui/loading` and `/ui/lastError`
|
|
718
|
+
|
|
719
|
+
## docs/consumer/ai-context-runtime-semantics.md § 2.5
|
|
720
|
+
|
|
721
|
+
- [[@path-login]] - `/screens/login/*` and `/login/*`
|
|
722
|
+
|
|
723
|
+
## docs/consumer/ai-context-runtime-semantics.md § 2.6
|
|
724
|
+
|
|
725
|
+
- [[@concept-form-state-paths]] - Form state paths — `/ui/forms/{id}/*`
|
|
726
|
+
- [[@path-forms]] - `/ui/forms/{id}/*` — declarative form state
|
|
727
|
+
|
|
728
|
+
## docs/consumer/ai-context-runtime-semantics.md § 2.7
|
|
729
|
+
|
|
730
|
+
- [[@path-uploads]] - `/ui/uploads/*` — internal upload state
|
|
731
|
+
|
|
732
|
+
## docs/consumer/ai-context-runtime-semantics.md § 3.1
|
|
733
|
+
|
|
734
|
+
- [[@antipattern-crud-id-collision]] - Anti-pattern — CRUD `:id` collision
|
|
735
|
+
- [[@concept-api-crud-endpoint]] - API CRUD endpoint — 1 declaration → 3 routes
|
|
736
|
+
|
|
737
|
+
## docs/consumer/ai-context-runtime-semantics.md § 3.2
|
|
738
|
+
|
|
739
|
+
- [[@concept-api-login-body-contract]] - `/api/auth/login` body contract
|
|
740
|
+
- [[@pattern-login-body-template]] - Pattern — `loginBody` (email→username mapping)
|
|
741
|
+
|
|
742
|
+
## docs/consumer/ai-context-runtime-semantics.md § 3.3
|
|
743
|
+
|
|
744
|
+
- [[@concept-query-envelope]] - Query response envelope
|
|
745
|
+
|
|
746
|
+
## docs/consumer/ai-context-runtime-semantics.md § 3.4
|
|
747
|
+
|
|
748
|
+
- [[@concept-api-scope-filter]] - `scopeFilter` — row-level security
|
|
749
|
+
|
|
750
|
+
## docs/consumer/ai-context-runtime-semantics.md § 4.1
|
|
751
|
+
|
|
752
|
+
- [[@antipattern-auth-domains-port]] - Anti-pattern — `:port` in `authDomains`
|
|
753
|
+
- [[@concept-auth-domains]] - `authDomains` — hostname matcher
|
|
754
|
+
|
|
755
|
+
## docs/consumer/ai-context-runtime-semantics.md § 5.2
|
|
756
|
+
|
|
757
|
+
- [[@action-refresh-data-source]] - `refreshDataSource` — force re-fetch
|
|
758
|
+
- [[@concept-data-sources]] - `dataSources` — reactive GET fetching
|
|
759
|
+
- [[@concept-data-sources-lifecycle]] - DataSources lifecycle (mount, deps, skip-on-undefined)
|
|
760
|
+
|
|
761
|
+
## docs/consumer/ai-context-runtime-semantics.md § 5.3
|
|
762
|
+
|
|
763
|
+
- [[@concept-derive]] - `derive` — derived state
|
|
764
|
+
|
|
765
|
+
## docs/consumer/ai-context-runtime-semantics.md § 5.4
|
|
766
|
+
|
|
767
|
+
- [[@antipattern-store-save-bypass]] - Anti-pattern — `store.save()` bypass
|
|
768
|
+
- [[@concept-spec-store-interface]] - `SpecStore` interface — 4 methods
|
|
769
|
+
- [[@concept-spec-stores-catalog]] - Spec stores catalog
|
|
770
|
+
|
|
771
|
+
## docs/consumer/ai-context-runtime-semantics.md § 5.5
|
|
772
|
+
|
|
773
|
+
- [[@concept-transaction-rollback]] - Transaction rollback semantics
|
|
774
|
+
- [[@concept-transaction-snapshot]] - Transaction snapshot — internal mechanism
|
|
775
|
+
|
|
776
|
+
## docs/consumer/ai-context-runtime-semantics.md § 6.2
|
|
777
|
+
|
|
778
|
+
- [[@pattern-git-vs-db-versioning]] - Pattern — Git-backed vs DB-versioned history
|
|
779
|
+
|
|
780
|
+
## docs/consumer/ai-context-runtime-semantics.md § 9
|
|
781
|
+
|
|
782
|
+
- [[@concept-derive-datasources-mount-order]] - Derive + DataSources mount ordering
|
|
783
|
+
- [[@concept-mount-spec-runtime]] - `mountSpecRuntime` — internal mount helper
|
|
784
|
+
|
|
785
|
+
## docs/consumer/ai-context-runtime-semantics.md#1-expression-resolution-timing
|
|
786
|
+
|
|
787
|
+
- [[@concept-expression-timing]] - Expression Resolution Timing (eager vs lazy)
|
|
788
|
+
- [[@concept-initial-actions]] - `initialActions` — mount-time actions
|
|
789
|
+
|
|
790
|
+
## docs/consumer/ai-context-runtime-semantics.md#13-column-actions-lazy-resolution-at-press-time
|
|
791
|
+
|
|
792
|
+
- [[@concept-primitive-prop-schemas]] - `PRIMITIVE_PROP_SCHEMAS` — primitive metadata
|
|
793
|
+
|
|
794
|
+
## docs/consumer/ai-context-runtime-semantics.md#14-prop-cascade-layer-3-custom-elements
|
|
795
|
+
|
|
796
|
+
- [[@concept-prop-cascade]] - `$prop` cascade — Layer 3 propagation
|
|
797
|
+
- [[@expression-prop]] - `$prop` — template/element-def prop reference
|
|
798
|
+
|
|
799
|
+
## docs/consumer/ai-context-runtime-semantics.md#15-template-interpolation
|
|
800
|
+
|
|
801
|
+
- [[@concept-template-interpolation]] - `$template` interpolation contract
|
|
802
|
+
- [[@expression-template]] - `$template` — string interpolation
|
|
803
|
+
|
|
804
|
+
## docs/consumer/ai-context-runtime-semantics.md#16-transaction-phase-timing
|
|
805
|
+
|
|
806
|
+
- [[@concept-transaction-phase-timing]] - Transaction phase timing
|
|
807
|
+
- [[@concept-transaction-snapshot]] - Transaction snapshot — internal mechanism
|
|
808
|
+
|
|
809
|
+
## docs/consumer/ai-context-runtime-semantics.md#2-framework-reserved-state-paths
|
|
810
|
+
|
|
811
|
+
- [[@concept-state-protection]] - State protection — protected paths
|
|
812
|
+
|
|
813
|
+
## docs/consumer/ai-context-runtime-semantics.md#21-uiselectedrow--blocker-1
|
|
814
|
+
|
|
815
|
+
- [[@antipattern-row-literal]] - Anti-pattern — `$row` literal
|
|
816
|
+
- [[@path-ui-selected-row]] - `/ui/selectedRow` — table row magic path
|
|
817
|
+
|
|
818
|
+
## docs/consumer/ai-context-runtime-semantics.md#22-uidevice
|
|
819
|
+
|
|
820
|
+
- [[@path-ui-device]] - `/ui/device/*` — auto-tracked device context
|
|
821
|
+
|
|
822
|
+
## docs/consumer/ai-context-runtime-semantics.md#23-uimodalsid-and-uidrawersid
|
|
823
|
+
|
|
824
|
+
- [[@path-ui-modals-drawers]] - `/ui/modals/{id}` and `/ui/drawers/{id}`
|
|
825
|
+
|
|
826
|
+
## docs/consumer/ai-context-runtime-semantics.md#24-uiloading-uilasterror-and-datasources-loadingerror-paths
|
|
827
|
+
|
|
828
|
+
- [[@path-data-source-paths]] - DataSources auto-paths — `/{target}Loading`, `/{target}Error`, `/{target}Deferred`
|
|
829
|
+
- [[@path-ui-loading-error]] - `/ui/loading` and `/ui/lastError`
|
|
830
|
+
|
|
831
|
+
## docs/consumer/ai-context-runtime-semantics.md#25-login
|
|
832
|
+
|
|
833
|
+
- [[@path-login]] - `/screens/login/*` and `/login/*`
|
|
834
|
+
|
|
835
|
+
## docs/consumer/ai-context-runtime-semantics.md#26-forms-state-paths-formid
|
|
836
|
+
|
|
837
|
+
- [[@path-forms]] - `/ui/forms/{id}/*` — declarative form state
|
|
838
|
+
|
|
839
|
+
## docs/consumer/ai-context-runtime-semantics.md#27-upload-state-paths
|
|
840
|
+
|
|
841
|
+
- [[@path-uploads]] - `/ui/uploads/*` — internal upload state
|
|
842
|
+
|
|
843
|
+
## docs/consumer/ai-context-runtime-semantics.md#28-render-errors-and-securityexposeerrors
|
|
844
|
+
|
|
845
|
+
- [[@concept-render-error-visibility]] - Render error visibility
|
|
846
|
+
|
|
847
|
+
## docs/consumer/ai-context-runtime-semantics.md#31-crud--one-endpoint-three-routes--blocker-3
|
|
848
|
+
|
|
849
|
+
- [[@antipattern-crud-id-collision]] - Anti-pattern — CRUD `:id` collision
|
|
850
|
+
- [[@concept-api-crud-endpoint]] - API CRUD endpoint — 1 declaration → 3 routes
|
|
851
|
+
|
|
852
|
+
## docs/consumer/ai-context-runtime-semantics.md#32-apiauthlogin-body-contract
|
|
853
|
+
|
|
854
|
+
- [[@concept-api-login-body-contract]] - `/api/auth/login` body contract
|
|
855
|
+
- [[@pattern-login-body-template]] - Pattern — `loginBody` (email→username mapping)
|
|
856
|
+
|
|
857
|
+
## docs/consumer/ai-context-runtime-semantics.md#33-query-endpoint-response-envelope
|
|
858
|
+
|
|
859
|
+
- [[@concept-query-envelope]] - Query response envelope
|
|
860
|
+
|
|
861
|
+
## docs/consumer/ai-context-runtime-semantics.md#34-scopefilter--bypassroles
|
|
862
|
+
|
|
863
|
+
- [[@concept-api-scope-filter]] - `scopeFilter` — row-level security
|
|
864
|
+
|
|
865
|
+
## docs/consumer/ai-context-runtime-semantics.md#41-authdomains-hostname-only--blocker-5
|
|
866
|
+
|
|
867
|
+
- [[@antipattern-auth-domains-port]] - Anti-pattern — `:port` in `authDomains`
|
|
868
|
+
- [[@concept-auth-domains]] - `authDomains` — hostname matcher
|
|
869
|
+
|
|
870
|
+
## docs/consumer/ai-context-runtime-semantics.md#52-datasources-lifecycle
|
|
871
|
+
|
|
872
|
+
- [[@action-refresh-data-source]] - `refreshDataSource` — force re-fetch
|
|
873
|
+
- [[@concept-data-sources]] - `dataSources` — reactive GET fetching
|
|
874
|
+
- [[@concept-data-sources-lifecycle]] - DataSources lifecycle (mount, deps, skip-on-undefined)
|
|
875
|
+
|
|
876
|
+
## docs/consumer/ai-context-runtime-semantics.md#53-derive-evaluation-order
|
|
877
|
+
|
|
878
|
+
- [[@concept-derive]] - `derive` — derived state
|
|
879
|
+
- [[@concept-state-protection]] - State protection — protected paths
|
|
880
|
+
|
|
881
|
+
## docs/consumer/ai-context-runtime-semantics.md#54-specstore-layering--save-vs-saveversion-vs-cli-patch
|
|
882
|
+
|
|
883
|
+
- [[@antipattern-store-save-bypass]] - Anti-pattern — `store.save()` bypass
|
|
884
|
+
- [[@concept-spec-engine]] - `SpecEngine` - patch / validate / save flow
|
|
885
|
+
- [[@concept-spec-store-interface]] - `SpecStore` interface — 4 methods
|
|
886
|
+
- [[@concept-spec-store-layering]] - SpecStore layering - `save` vs `saveVersion` vs CLI patch
|
|
887
|
+
- [[@concept-spec-stores-catalog]] - Spec stores catalog
|
|
888
|
+
|
|
889
|
+
## docs/consumer/ai-context-runtime-semantics.md#55-transaction-rollback-mechanics
|
|
890
|
+
|
|
891
|
+
- [[@concept-transaction-rollback]] - Transaction rollback semantics
|
|
892
|
+
- [[@concept-transaction-snapshot]] - Transaction snapshot — internal mechanism
|
|
893
|
+
|
|
894
|
+
## docs/consumer/ai-context-runtime-semantics.md#61-push-vs-patch--file-first-vs-db-first
|
|
895
|
+
|
|
896
|
+
- [[@pattern-push-vs-patch]] - Pattern - Push vs Patch (file-first vs DB-first)
|
|
897
|
+
|
|
898
|
+
## docs/consumer/ai-context-runtime-semantics.md#62-git-backed-vs-db-versioned-history
|
|
899
|
+
|
|
900
|
+
- [[@pattern-git-vs-db-versioning]] - Pattern — Git-backed vs DB-versioned history
|
|
901
|
+
|
|
902
|
+
## docs/consumer/ai-context-runtime-semantics.md#9-derive-and-datasources-lifecycle-v010--item-e
|
|
903
|
+
|
|
904
|
+
- [[@concept-data-sources-lifecycle]] - DataSources lifecycle (mount, deps, skip-on-undefined)
|
|
905
|
+
- [[@concept-derive-datasources-mount-order]] - Derive + DataSources mount ordering
|
|
906
|
+
- [[@concept-mount-spec-runtime]] - `mountSpecRuntime` — internal mount helper
|
|
907
|
+
- [[@concept-mythik-renderer]] - `MythikRenderer` - root mount
|
|
908
|
+
- [[@path-data-source-paths]] - DataSources auto-paths — `/{target}Loading`, `/{target}Error`, `/{target}Deferred`
|
|
909
|
+
|
|
910
|
+
## docs/consumer/ai-context.md
|
|
911
|
+
|
|
912
|
+
- [[@action-apply-preset]] - `applyPreset` — apply curated DNA+Identity
|
|
913
|
+
- [[@cli-existing-spec-edit-loop]] - Existing spec edit loop
|
|
914
|
+
- [[@cli-overview]] - CLI overview - `mythik <command>`
|
|
915
|
+
- [[@cli-patch]] - `mythik patch` - RFC 6902 patches
|
|
916
|
+
- [[@concept-auth-config]] - AppSpec auth config
|
|
917
|
+
- [[@concept-auth-security]] - Auth security guarantees
|
|
918
|
+
- [[@concept-custom-jwt-provider]] - Custom JWT provider response mapping
|
|
919
|
+
- [[@concept-identity-color-scheme]] - `identity.colorScheme` - surface polarity
|
|
920
|
+
- [[@concept-identity-overview]] - Identity system - overview
|
|
921
|
+
- [[@concept-package-layout]] - Package layout
|
|
922
|
+
- [[@concept-public-package-names]] - Public package names
|
|
923
|
+
- [[@concept-spec-structure]] - Spec Structure (Flat Tree)
|
|
924
|
+
- [[@primitive-spatial-map]] - Primitive - spatial-map
|
|
925
|
+
|
|
926
|
+
## docs/consumer/ai-context.md § Actions
|
|
927
|
+
|
|
928
|
+
- [[@action-submit-form]] - `submitForm` — validate + fetch + notify
|
|
929
|
+
- [[@concept-action-chains]] - Action chains — sequential execution
|
|
930
|
+
- [[@concept-fire-and-forget]] - `fireAndForget` — background action dispatch
|
|
931
|
+
|
|
932
|
+
## docs/consumer/ai-context.md § Actions → Action Reference
|
|
933
|
+
|
|
934
|
+
- [[@action-copy-clipboard]] - `copyToClipboard`
|
|
935
|
+
- [[@action-drawer]] - `openDrawer` / `closeDrawer`
|
|
936
|
+
- [[@action-modal]] - `openModal` / `closeModal`
|
|
937
|
+
- [[@action-navigate]] - `navigateScreen` / `goBackScreen` (and low-level `navigate`/`goBack`)
|
|
938
|
+
- [[@action-open-url]] - `openUrl` — open external URL
|
|
939
|
+
- [[@action-set-locale]] - `setLocale` — change active locale
|
|
940
|
+
- [[@action-set-state]] - `setState` — write to state
|
|
941
|
+
- [[@action-show-notification]] - `showNotification` / `dismissNotification`
|
|
942
|
+
- [[@action-toggle-theme]] - `toggleTheme` — switch dark/light
|
|
943
|
+
|
|
944
|
+
## docs/consumer/ai-context.md § Actions → fetch Details
|
|
945
|
+
|
|
946
|
+
- [[@action-fetch]] - `fetch` — HTTP request
|
|
947
|
+
|
|
948
|
+
## docs/consumer/ai-context.md § ApiSpec (Server)
|
|
949
|
+
|
|
950
|
+
- [[@concept-api-spec]] - ApiSpec — declarative backend
|
|
951
|
+
|
|
952
|
+
## docs/consumer/ai-context.md § AppSpec & Navigation
|
|
953
|
+
|
|
954
|
+
- [[@concept-app-spec]] - AppSpec — multi-screen app
|
|
955
|
+
- [[@concept-screen-definition]] - ScreenDefinition — per-screen metadata
|
|
956
|
+
- [[@concept-screen-outlet]] - `screen-outlet` — nested screen content slot
|
|
957
|
+
- [[@concept-spec-types]] - Spec Types — Screen vs App vs Api
|
|
958
|
+
- [[@primitive-screen-outlet]] - `screen-outlet` — nested screen content slot
|
|
959
|
+
|
|
960
|
+
## docs/consumer/ai-context.md § AppSpec & Navigation → Access Control
|
|
961
|
+
|
|
962
|
+
- [[@concept-role-access]] - Access control — `roleAccess` vs ScreenDefinition.roles
|
|
963
|
+
|
|
964
|
+
## docs/consumer/ai-context.md § AppSpec & Navigation → Auth Config
|
|
965
|
+
|
|
966
|
+
- [[@concept-session-persistence]] - Session persistence — local / session / memory
|
|
967
|
+
|
|
968
|
+
## docs/consumer/ai-context.md § AppSpec & Navigation → Auto-Generated State
|
|
969
|
+
|
|
970
|
+
- [[@concept-app-auto-state-paths]] - AppSpec auto-state paths
|
|
971
|
+
|
|
972
|
+
## docs/consumer/ai-context.md § AppSpec & Navigation → Login Screen
|
|
973
|
+
|
|
974
|
+
- [[@action-login]] - `login` / `logout` / `refreshSession`
|
|
975
|
+
- [[@concept-auth-state-paths]] - Auth state paths — `/auth/*`
|
|
976
|
+
- [[@expression-auth]] - `$auth` — authenticated user data
|
|
977
|
+
- [[@pattern-login-screen]] - Pattern — Login screen
|
|
978
|
+
|
|
979
|
+
## docs/consumer/ai-context.md § AppSpec & Navigation → Navigation Properties
|
|
980
|
+
|
|
981
|
+
- [[@concept-navigation]] - Navigation config
|
|
982
|
+
|
|
983
|
+
## docs/consumer/ai-context.md § AppSpec & Navigation → State Policies
|
|
984
|
+
|
|
985
|
+
- [[@concept-state-policies]] - State policies — preserve / reset / reload
|
|
986
|
+
|
|
987
|
+
## docs/consumer/ai-context.md § Auto-Generated State
|
|
988
|
+
|
|
989
|
+
- [[@path-app-screens]] - `/app/screens` — accessible screens
|
|
990
|
+
- [[@path-navigation]] - `/navigation/*` — navigation state
|
|
991
|
+
|
|
992
|
+
## docs/consumer/ai-context.md § CLI Workflow
|
|
993
|
+
|
|
994
|
+
- [[@cli-elements]] - `mythik elements` — inspect specific elements
|
|
995
|
+
- [[@cli-manifest]] - `mythik manifest` — structural tree
|
|
996
|
+
- [[@cli-pull]] - `mythik pull` — export spec
|
|
997
|
+
- [[@cli-validate]] - `mythik validate`
|
|
998
|
+
|
|
999
|
+
## docs/consumer/ai-context.md § CLI is the only approved path for spec writes
|
|
1000
|
+
|
|
1001
|
+
- [[@antipattern-store-save-bypass]] - Anti-pattern — `store.save()` bypass
|
|
1002
|
+
- [[@cli-programmatic-api]] - Programmatic API — `mythik-cli/api`
|
|
1003
|
+
- [[@cli-push]] - `mythik push` — three approved write paths
|
|
1004
|
+
|
|
1005
|
+
## docs/consumer/ai-context.md § Component Variants
|
|
1006
|
+
|
|
1007
|
+
- [[@concept-component-variants]] - Component variants — `tokens.components.{type}.{variant}`
|
|
1008
|
+
|
|
1009
|
+
## docs/consumer/ai-context.md § Cross-Screen Data Flow
|
|
1010
|
+
|
|
1011
|
+
- [[@pattern-cross-screen-data-flow]] - Pattern — Cross-screen data flow
|
|
1012
|
+
|
|
1013
|
+
## docs/consumer/ai-context.md § Custom table names
|
|
1014
|
+
|
|
1015
|
+
- [[@concept-storage-custom-names]] - Storage — custom table names + identifier safety
|
|
1016
|
+
|
|
1017
|
+
## docs/consumer/ai-context.md § DataSources
|
|
1018
|
+
|
|
1019
|
+
- [[@action-refresh-data-source]] - `refreshDataSource` — force re-fetch
|
|
1020
|
+
- [[@concept-data-sources]] - `dataSources` — reactive GET fetching
|
|
1021
|
+
|
|
1022
|
+
## docs/consumer/ai-context.md § Deep Design Token System
|
|
1023
|
+
|
|
1024
|
+
- [[@concept-token-system]] - Token system — three-layer resolution
|
|
1025
|
+
- [[@expression-token]] - `$token` — design system reference
|
|
1026
|
+
|
|
1027
|
+
## docs/consumer/ai-context.md § Deep Design Token System → Auto dark mode
|
|
1028
|
+
|
|
1029
|
+
- [[@concept-auto-dark-mode]] - Auto dark mode
|
|
1030
|
+
|
|
1031
|
+
## docs/consumer/ai-context.md § Deep Design Token System → CLI inspection
|
|
1032
|
+
|
|
1033
|
+
- [[@concept-cli-tokens-inspect]] - `mythik tokens` — CLI inspection
|
|
1034
|
+
|
|
1035
|
+
## docs/consumer/ai-context.md § Deep Design Token System → DNA Seed
|
|
1036
|
+
|
|
1037
|
+
- [[@concept-dna-seeds]] - DNA seeds — 8 inputs that derive everything
|
|
1038
|
+
|
|
1039
|
+
## docs/consumer/ai-context.md § Deep Design Token System → Font loading
|
|
1040
|
+
|
|
1041
|
+
- [[@concept-font-loading]] - Font loading — project responsibility
|
|
1042
|
+
|
|
1043
|
+
## docs/consumer/ai-context.md § Deep Design Token System → Token categories
|
|
1044
|
+
|
|
1045
|
+
- [[@concept-token-categories]] - Token categories — `$token` paths
|
|
1046
|
+
|
|
1047
|
+
## docs/consumer/ai-context.md § Derived State
|
|
1048
|
+
|
|
1049
|
+
- [[@concept-derive]] - `derive` — derived state
|
|
1050
|
+
|
|
1051
|
+
## docs/consumer/ai-context.md § Derived State (warning paragraph)
|
|
1052
|
+
|
|
1053
|
+
- [[@antipattern-derive-server-pagination]] - Anti-pattern — `derive` over server-paginated state
|
|
1054
|
+
|
|
1055
|
+
## docs/consumer/ai-context.md § Expressions → Conditionals & Logic
|
|
1056
|
+
|
|
1057
|
+
- [[@expression-and-or-not]] - `$and` / `$or` / `$not` — boolean logic
|
|
1058
|
+
- [[@expression-cond]] - `$cond` / `$then` / `$else` — conditional value
|
|
1059
|
+
|
|
1060
|
+
## docs/consumer/ai-context.md § Expressions → Conditionals & Logic → $switch
|
|
1061
|
+
|
|
1062
|
+
- [[@expression-switch]] - `$switch` — multi-branch conditional
|
|
1063
|
+
|
|
1064
|
+
## docs/consumer/ai-context.md § Expressions → Group & Selection
|
|
1065
|
+
|
|
1066
|
+
- [[@expression-group]] - `$group` — group context (inside groupBy)
|
|
1067
|
+
- [[@expression-selection]] - `$selection` — selection state (inside repeat.selection)
|
|
1068
|
+
|
|
1069
|
+
## docs/consumer/ai-context.md § Expressions → Math & Data → $array
|
|
1070
|
+
|
|
1071
|
+
- [[@expression-array]] - `$array` — array operations
|
|
1072
|
+
|
|
1073
|
+
## docs/consumer/ai-context.md § Expressions → Math & Data → $date
|
|
1074
|
+
|
|
1075
|
+
- [[@expression-date]] - `$date` — date operations
|
|
1076
|
+
|
|
1077
|
+
## docs/consumer/ai-context.md § Expressions → Math & Data → $format
|
|
1078
|
+
|
|
1079
|
+
- [[@expression-format]] - `$format` — value formatting
|
|
1080
|
+
|
|
1081
|
+
## docs/consumer/ai-context.md § Expressions → Math & Data → $math
|
|
1082
|
+
|
|
1083
|
+
- [[@expression-math]] - `$math` — arithmetic operations
|
|
1084
|
+
|
|
1085
|
+
## docs/consumer/ai-context.md § Expressions → Named Bindings
|
|
1086
|
+
|
|
1087
|
+
- [[@expression-let-ref]] - `$let` / `$ref` — named bindings
|
|
1088
|
+
|
|
1089
|
+
## docs/consumer/ai-context.md § Expressions → Responsive & Cross-Platform → $breakpoint
|
|
1090
|
+
|
|
1091
|
+
- [[@expression-breakpoint]] - `$breakpoint` — responsive value
|
|
1092
|
+
|
|
1093
|
+
## docs/consumer/ai-context.md § Expressions → Responsive & Cross-Platform → $platform
|
|
1094
|
+
|
|
1095
|
+
- [[@expression-platform]] - `$platform` — cross-platform value
|
|
1096
|
+
|
|
1097
|
+
## docs/consumer/ai-context.md § Expressions → State & Binding
|
|
1098
|
+
|
|
1099
|
+
- [[@expression-binditem]] - `$bindItem` — two-way binding to repeat item
|
|
1100
|
+
- [[@expression-bindstate]] - `$bindState` — two-way binding
|
|
1101
|
+
- [[@expression-item-index]] - `$item` / `$index` — repeat context
|
|
1102
|
+
- [[@expression-state]] - `$state` — read from state
|
|
1103
|
+
|
|
1104
|
+
## docs/consumer/ai-context.md § Expressions → State & Binding → $prop
|
|
1105
|
+
|
|
1106
|
+
- [[@expression-prop]] - `$prop` — template/element-def prop reference
|
|
1107
|
+
|
|
1108
|
+
## docs/consumer/ai-context.md § Expressions → Values & Formatting → $computed
|
|
1109
|
+
|
|
1110
|
+
- [[@expression-computed]] - `$computed` — registered function
|
|
1111
|
+
|
|
1112
|
+
## docs/consumer/ai-context.md § Expressions → Values & Formatting → $i18n
|
|
1113
|
+
|
|
1114
|
+
- [[@expression-i18n]] - `$i18n` — translation key
|
|
1115
|
+
|
|
1116
|
+
## docs/consumer/ai-context.md § Expressions → Values & Formatting → $template
|
|
1117
|
+
|
|
1118
|
+
- [[@expression-template]] - `$template` — string interpolation
|
|
1119
|
+
|
|
1120
|
+
## docs/consumer/ai-context.md § Forms
|
|
1121
|
+
|
|
1122
|
+
- [[@action-form-control]] - `validateForm` / `touchField` / `resetForm`
|
|
1123
|
+
- [[@concept-forms]] - `forms` — declarative form validation
|
|
1124
|
+
- [[@pattern-form-validation]] - Pattern — Form validation overview
|
|
1125
|
+
|
|
1126
|
+
## docs/consumer/ai-context.md § Forms → Auto-generated state
|
|
1127
|
+
|
|
1128
|
+
- [[@concept-form-state-paths]] - Form state paths — `/ui/forms/{id}/*`
|
|
1129
|
+
|
|
1130
|
+
## docs/consumer/ai-context.md § Fullstack Coherence (API + Frontend)
|
|
1131
|
+
|
|
1132
|
+
- [[@pattern-fullstack-coherence]] - Pattern — Fullstack coherence (API + Frontend)
|
|
1133
|
+
|
|
1134
|
+
## docs/consumer/ai-context.md § Idempotency requirement
|
|
1135
|
+
|
|
1136
|
+
- [[@concept-storage-idempotency]] - Storage — idempotency requirement
|
|
1137
|
+
|
|
1138
|
+
## docs/consumer/ai-context.md § Identity System (Forge)
|
|
1139
|
+
|
|
1140
|
+
- [[@concept-identity-gradients]] - `identity.gradients` — gradient text + buttons
|
|
1141
|
+
- [[@concept-identity-heading-color]] - `identity.headingColor`
|
|
1142
|
+
- [[@concept-layer-background]] - `tokens.identity.background` — LayerBackground v2
|
|
1143
|
+
|
|
1144
|
+
## docs/consumer/ai-context.md § Identity System (Forge) → Accent Application
|
|
1145
|
+
|
|
1146
|
+
- [[@concept-identity-accent-application]] - `identity.accentApplication` — where accent appears
|
|
1147
|
+
|
|
1148
|
+
## docs/consumer/ai-context.md § Identity System (Forge) → Architecture
|
|
1149
|
+
|
|
1150
|
+
- [[@concept-identity-helpers]] - Identity helpers — resolve API
|
|
1151
|
+
|
|
1152
|
+
## docs/consumer/ai-context.md § Identity System (Forge) → Color Weight
|
|
1153
|
+
|
|
1154
|
+
- [[@concept-identity-color-weight]] - `identity.colorWeight` — where color appears
|
|
1155
|
+
|
|
1156
|
+
## docs/consumer/ai-context.md § Identity System (Forge) → Identity icons
|
|
1157
|
+
|
|
1158
|
+
- [[@concept-identity-icons]] - `identity.icons` — icon defaults
|
|
1159
|
+
|
|
1160
|
+
## docs/consumer/ai-context.md § Identity System (Forge) → Identity images
|
|
1161
|
+
|
|
1162
|
+
- [[@concept-identity-images]] - `identity.images` — image defaults
|
|
1163
|
+
|
|
1164
|
+
## docs/consumer/ai-context.md § Identity System (Forge) → Label Style
|
|
1165
|
+
|
|
1166
|
+
- [[@concept-identity-label-style]] - `identity.labelStyle` — form label formatting
|
|
1167
|
+
|
|
1168
|
+
## docs/consumer/ai-context.md § Identity System (Forge) → Radius Pattern
|
|
1169
|
+
|
|
1170
|
+
- [[@concept-identity-radius-pattern]] - `identity.radiusPattern` — 11 corner options
|
|
1171
|
+
|
|
1172
|
+
## docs/consumer/ai-context.md § Identity System (Forge) → Runtime identity changes
|
|
1173
|
+
|
|
1174
|
+
- [[@action-update-tokens]] - `updateTokens` — runtime token update
|
|
1175
|
+
|
|
1176
|
+
## docs/consumer/ai-context.md § Identity System (Forge) → Surface Treatment
|
|
1177
|
+
|
|
1178
|
+
- [[@concept-identity-surface]] - `identity.surface` — 6 surface types
|
|
1179
|
+
|
|
1180
|
+
## docs/consumer/ai-context.md § Identity System (Forge) → Text Decoration
|
|
1181
|
+
|
|
1182
|
+
- [[@concept-identity-text-decoration]] - `identity.textDecoration` — heading effects (multi-select)
|
|
1183
|
+
|
|
1184
|
+
## docs/consumer/ai-context.md § Identity System (Forge) → Typography Hierarchy
|
|
1185
|
+
|
|
1186
|
+
- [[@concept-identity-typography-hierarchy]] - `identity.typographyHierarchy` — 6 heading scales
|
|
1187
|
+
|
|
1188
|
+
## docs/consumer/ai-context.md § Interactive States & Animations
|
|
1189
|
+
|
|
1190
|
+
- [[@concept-animation-recipes]] - 15 animation recipes
|
|
1191
|
+
- [[@concept-css-vs-motion]] - CSS vs Motion — auto-detection
|
|
1192
|
+
|
|
1193
|
+
## docs/consumer/ai-context.md § Interactive States & Animations → Animation engine
|
|
1194
|
+
|
|
1195
|
+
- [[@concept-animations-engine]] - `animations` engine (preferred)
|
|
1196
|
+
|
|
1197
|
+
## docs/consumer/ai-context.md § Interactive States & Animations → Cascade
|
|
1198
|
+
|
|
1199
|
+
- [[@concept-animation-cascade]] - 5-level animation cascade
|
|
1200
|
+
|
|
1201
|
+
## docs/consumer/ai-context.md § Interactive States & Animations → Cascade level 1
|
|
1202
|
+
|
|
1203
|
+
- [[@concept-identity-animations]] - `identity.animations` — cascade level 1
|
|
1204
|
+
|
|
1205
|
+
## docs/consumer/ai-context.md § Interactive States & Animations → Hover/Active/Focus
|
|
1206
|
+
|
|
1207
|
+
- [[@concept-interactive-states]] - Interactive states — hover / active / focus / transition
|
|
1208
|
+
|
|
1209
|
+
## docs/consumer/ai-context.md § Interactive States & Animations → Null semantics
|
|
1210
|
+
|
|
1211
|
+
- [[@concept-animation-null-semantics]] - Animation null semantics
|
|
1212
|
+
|
|
1213
|
+
## docs/consumer/ai-context.md § Loading/Content/Empty Pattern
|
|
1214
|
+
|
|
1215
|
+
- [[@pattern-loading-content-empty]] - Pattern — Loading / Content / Empty / Error
|
|
1216
|
+
|
|
1217
|
+
## docs/consumer/ai-context.md § Mount/Exit Animations
|
|
1218
|
+
|
|
1219
|
+
- [[@concept-motion-field]] - `motion` field (legacy Framer-Motion)
|
|
1220
|
+
|
|
1221
|
+
## docs/consumer/ai-context.md § Postgres / Supabase: jsonb for spec and patches
|
|
1222
|
+
|
|
1223
|
+
- [[@concept-storage-postgres-jsonb]] - Storage — Postgres `jsonb` requirement
|
|
1224
|
+
|
|
1225
|
+
## docs/consumer/ai-context.md § Postgres / Supabase: triggers for screens.updated_at and screens.version
|
|
1226
|
+
|
|
1227
|
+
- [[@concept-storage-postgres-triggers]] - Storage — Postgres triggers for `screens`
|
|
1228
|
+
|
|
1229
|
+
## docs/consumer/ai-context.md § Pre-push linting
|
|
1230
|
+
|
|
1231
|
+
- [[@cli-lint]] - `mythik lint` — anti-pattern detection
|
|
1232
|
+
|
|
1233
|
+
## docs/consumer/ai-context.md § Presets System
|
|
1234
|
+
|
|
1235
|
+
- [[@concept-presets]] - Presets — `PresetDefinition`
|
|
1236
|
+
|
|
1237
|
+
## docs/consumer/ai-context.md § Primitives
|
|
1238
|
+
|
|
1239
|
+
- [[@concept-primitives-overview]] - Primitives — overview
|
|
1240
|
+
|
|
1241
|
+
## docs/consumer/ai-context.md § Repeat
|
|
1242
|
+
|
|
1243
|
+
- [[@concept-repeat]] - `repeat` — render an element per item
|
|
1244
|
+
|
|
1245
|
+
## docs/consumer/ai-context.md § Repeat Selection
|
|
1246
|
+
|
|
1247
|
+
- [[@action-selection]] - `toggleSelection` / `selectAll` / `selectNone`
|
|
1248
|
+
- [[@concept-repeat-selection]] - `repeat.selection` — multi-select pattern
|
|
1249
|
+
|
|
1250
|
+
## docs/consumer/ai-context.md § Repeat → Grouped Repeat
|
|
1251
|
+
|
|
1252
|
+
- [[@concept-repeat-grouped]] - `repeat.groupBy` — grouped lists
|
|
1253
|
+
|
|
1254
|
+
## docs/consumer/ai-context.md § Rules → rule 45
|
|
1255
|
+
|
|
1256
|
+
- [[@concept-element-key]] - Element `key` — forced remount
|
|
1257
|
+
|
|
1258
|
+
## docs/consumer/ai-context.md § Schema evolution
|
|
1259
|
+
|
|
1260
|
+
- [[@concept-storage-evolution]] - Storage — schema evolution policy
|
|
1261
|
+
|
|
1262
|
+
## docs/consumer/ai-context.md § Skeleton & Export
|
|
1263
|
+
|
|
1264
|
+
- [[@action-export]] - `export` — data export
|
|
1265
|
+
|
|
1266
|
+
## docs/consumer/ai-context.md § Spec Structure → Element Properties
|
|
1267
|
+
|
|
1268
|
+
- [[@concept-element-properties]] - Element Properties (full catalogue)
|
|
1269
|
+
|
|
1270
|
+
## docs/consumer/ai-context.md § Spec Structure → Top-Level Properties
|
|
1271
|
+
|
|
1272
|
+
- [[@concept-initial-actions]] - `initialActions` — mount-time actions
|
|
1273
|
+
|
|
1274
|
+
## docs/consumer/ai-context.md § Storage Setup
|
|
1275
|
+
|
|
1276
|
+
- [[@concept-customize-versioned-store]] - Customize — custom `VersionedSpecStore`
|
|
1277
|
+
- [[@concept-storage-overview]] - Storage setup — three tables
|
|
1278
|
+
|
|
1279
|
+
## docs/consumer/ai-context.md § Storage Setup → Table 0 — screens
|
|
1280
|
+
|
|
1281
|
+
- [[@concept-storage-table-screens]] - Storage — Table 0 `screens`
|
|
1282
|
+
|
|
1283
|
+
## docs/consumer/ai-context.md § Storage Setup → Table 1 — screen_versions
|
|
1284
|
+
|
|
1285
|
+
- [[@concept-storage-table-versions]] - Storage — Table 1 `screen_versions`
|
|
1286
|
+
|
|
1287
|
+
## docs/consumer/ai-context.md § Storage Setup → Table 2 — screen_environments
|
|
1288
|
+
|
|
1289
|
+
- [[@concept-storage-table-environments]] - Storage — Table 2 `screen_environments`
|
|
1290
|
+
|
|
1291
|
+
## docs/consumer/ai-context.md § Templates
|
|
1292
|
+
|
|
1293
|
+
- [[@concept-template-children-marker]] - `"$children"` — template children slot
|
|
1294
|
+
- [[@concept-templates]] - `templates` — reusable element definitions
|
|
1295
|
+
|
|
1296
|
+
## docs/consumer/ai-context.md § Transactions (Optimistic Updates)
|
|
1297
|
+
|
|
1298
|
+
- [[@concept-transactions]] - Transactions — optimistic CRUD with rollback
|
|
1299
|
+
|
|
1300
|
+
## docs/consumer/ai-context.md § Transactions (Optimistic Updates) → Confirm result access
|
|
1301
|
+
|
|
1302
|
+
- [[@path-tx-result-error]] - `/tx/result` and `/tx/error` — transaction state
|
|
1303
|
+
|
|
1304
|
+
## docs/consumer/ai-context.md § Transactions → CRUD variations
|
|
1305
|
+
|
|
1306
|
+
- [[@pattern-tx-create]] - Pattern — CREATE transaction
|
|
1307
|
+
- [[@pattern-tx-delete]] - Pattern — DELETE transaction
|
|
1308
|
+
- [[@pattern-tx-toggle]] - Pattern — TOGGLE transaction
|
|
1309
|
+
- [[@pattern-tx-update]] - Pattern — UPDATE transaction
|
|
1310
|
+
|
|
1311
|
+
## docs/consumer/ai-context.md § Validation
|
|
1312
|
+
|
|
1313
|
+
- [[@concept-validation-checks]] - Inline validation `checks`
|
|
1314
|
+
- [[@concept-validators-catalog]] - Validators catalog
|
|
1315
|
+
|
|
1316
|
+
## docs/consumer/ai-context.md § Verification (post-apply)
|
|
1317
|
+
|
|
1318
|
+
- [[@concept-storage-verification]] - Storage — post-apply verification
|
|
1319
|
+
|
|
1320
|
+
## docs/consumer/ai-context.md § Visibility
|
|
1321
|
+
|
|
1322
|
+
- [[@concept-visibility]] - `visible` — show/hide condition
|
|
1323
|
+
|
|
1324
|
+
## docs/consumer/ai-context.md § When to Use fetch vs dataSources
|
|
1325
|
+
|
|
1326
|
+
- [[@pattern-fetch-vs-datasources]] - Pattern — `fetch` vs `dataSources` decision
|
|
1327
|
+
|
|
1328
|
+
## docs/consumer/ai-context.md § rule 15
|
|
1329
|
+
|
|
1330
|
+
- [[@antipattern-overflow-hidden-with-shadow]] - Anti-pattern — `overflow: hidden` + `box-shadow` hover
|
|
1331
|
+
|
|
1332
|
+
## docs/consumer/ai-context.md § rule 53
|
|
1333
|
+
|
|
1334
|
+
- [[@concept-blob-layer]] - Blob layer v2 — preset + explicit
|
|
1335
|
+
|
|
1336
|
+
## docs/consumer/ai-context.md § rule 54
|
|
1337
|
+
|
|
1338
|
+
- [[@antipattern-motion-entrance-token]] - Anti-pattern — `identity.motionEntrance` / `motionHover`
|
|
1339
|
+
|
|
1340
|
+
## docs/consumer/ai-context.md § rule 56
|
|
1341
|
+
|
|
1342
|
+
- [[@antipattern-background-blobs-prop]] - Anti-pattern — `Box.backgroundBlobs` prop
|
|
1343
|
+
|
|
1344
|
+
## docs/consumer/ai-context.md § rule 57
|
|
1345
|
+
|
|
1346
|
+
- [[@antipattern-background-css-token]] - Anti-pattern — `$token: "backgroundCSS"`
|
|
1347
|
+
|
|
1348
|
+
## docs/consumer/ai-context.md § rule 58
|
|
1349
|
+
|
|
1350
|
+
- [[@concept-identity-border-elevation-override]] - Identity border + elevation overrides
|
|
1351
|
+
|
|
1352
|
+
## docs/consumer/ai-context.md § rule 61
|
|
1353
|
+
|
|
1354
|
+
- [[@antipattern-event-expression]] - Anti-pattern — `$event` expression
|
|
1355
|
+
|
|
1356
|
+
## docs/consumer/ai-context.md § rule 62
|
|
1357
|
+
|
|
1358
|
+
- [[@concept-preset-dropdown-pattern]] - Preset dropdown pattern (`$bindState` + `$state`)
|
|
1359
|
+
|
|
1360
|
+
## docs/consumer/ai-context.md § rule 67
|
|
1361
|
+
|
|
1362
|
+
- [[@antipattern-element-variant-top-level]] - Anti-pattern — top-level `variant` field
|
|
1363
|
+
|
|
1364
|
+
## docs/consumer/ai-context.md#access-control
|
|
1365
|
+
|
|
1366
|
+
- [[@concept-role-access]] - Access control — `roleAccess` vs ScreenDefinition.roles
|
|
1367
|
+
|
|
1368
|
+
## docs/consumer/ai-context.md#action-reference
|
|
1369
|
+
|
|
1370
|
+
- [[@action-copy-clipboard]] - `copyToClipboard`
|
|
1371
|
+
- [[@action-drawer]] - `openDrawer` / `closeDrawer`
|
|
1372
|
+
- [[@action-modal]] - `openModal` / `closeModal`
|
|
1373
|
+
- [[@action-navigate]] - `navigateScreen` / `goBackScreen` (and low-level `navigate`/`goBack`)
|
|
1374
|
+
- [[@action-open-url]] - `openUrl` — open external URL
|
|
1375
|
+
- [[@action-set-locale]] - `setLocale` — change active locale
|
|
1376
|
+
- [[@action-set-state]] - `setState` — write to state
|
|
1377
|
+
- [[@action-show-notification]] - `showNotification` / `dismissNotification`
|
|
1378
|
+
- [[@action-toggle-theme]] - `toggleTheme` — switch dark/light
|
|
1379
|
+
|
|
1380
|
+
## docs/consumer/ai-context.md#actions
|
|
1381
|
+
|
|
1382
|
+
- [[@action-submit-form]] - `submitForm` — validate + fetch + notify
|
|
1383
|
+
- [[@concept-action-chains]] - Action chains — sequential execution
|
|
1384
|
+
- [[@concept-fire-and-forget]] - `fireAndForget` — background action dispatch
|
|
1385
|
+
|
|
1386
|
+
## docs/consumer/ai-context.md#apispec-server
|
|
1387
|
+
|
|
1388
|
+
- [[@concept-api-spec]] - ApiSpec — declarative backend
|
|
1389
|
+
|
|
1390
|
+
## docs/consumer/ai-context.md#appspec--navigation
|
|
1391
|
+
|
|
1392
|
+
- [[@concept-app-spec]] - AppSpec — multi-screen app
|
|
1393
|
+
- [[@concept-navigation]] - Navigation config
|
|
1394
|
+
- [[@concept-screen-definition]] - ScreenDefinition — per-screen metadata
|
|
1395
|
+
- [[@concept-screen-outlet]] - `screen-outlet` — nested screen content slot
|
|
1396
|
+
- [[@concept-spec-types]] - Spec Types — Screen vs App vs Api
|
|
1397
|
+
- [[@primitive-screen-outlet]] - `screen-outlet` — nested screen content slot
|
|
1398
|
+
|
|
1399
|
+
## docs/consumer/ai-context.md#auth-config
|
|
1400
|
+
|
|
1401
|
+
- [[@concept-auth-config]] - AppSpec auth config
|
|
1402
|
+
- [[@concept-auth-security]] - Auth security guarantees
|
|
1403
|
+
- [[@concept-custom-jwt-provider]] - Custom JWT provider response mapping
|
|
1404
|
+
- [[@concept-session-persistence]] - Session persistence — local / session / memory
|
|
1405
|
+
|
|
1406
|
+
## docs/consumer/ai-context.md#auto-generated-state
|
|
1407
|
+
|
|
1408
|
+
- [[@concept-app-auto-state-paths]] - AppSpec auto-state paths
|
|
1409
|
+
- [[@path-app-screens]] - `/app/screens` — accessible screens
|
|
1410
|
+
- [[@path-navigation]] - `/navigation/*` — navigation state
|
|
1411
|
+
|
|
1412
|
+
## docs/consumer/ai-context.md#cli-is-the-only-approved-path-for-spec-writes
|
|
1413
|
+
|
|
1414
|
+
- [[@antipattern-store-save-bypass]] - Anti-pattern — `store.save()` bypass
|
|
1415
|
+
- [[@cli-programmatic-api]] - Programmatic API — `mythik-cli/api`
|
|
1416
|
+
- [[@cli-push]] - `mythik push` — three approved write paths
|
|
1417
|
+
|
|
1418
|
+
## docs/consumer/ai-context.md#cli-workflow
|
|
1419
|
+
|
|
1420
|
+
- [[@cli-docs]] - `mythik docs` — bundled AI documentation
|
|
1421
|
+
- [[@cli-elements]] - `mythik elements` — inspect specific elements
|
|
1422
|
+
- [[@cli-manifest]] - `mythik manifest` — structural tree
|
|
1423
|
+
- [[@cli-overview]] - CLI overview - `mythik <command>`
|
|
1424
|
+
- [[@cli-patch]] - `mythik patch` - RFC 6902 patches
|
|
1425
|
+
- [[@cli-pull]] - `mythik pull` — export spec
|
|
1426
|
+
- [[@cli-validate]] - `mythik validate`
|
|
1427
|
+
|
|
1428
|
+
## docs/consumer/ai-context.md#component-variants
|
|
1429
|
+
|
|
1430
|
+
- [[@concept-component-variants]] - Component variants — `tokens.components.{type}.{variant}`
|
|
1431
|
+
|
|
1432
|
+
## docs/consumer/ai-context.md#conditionals--logic
|
|
1433
|
+
|
|
1434
|
+
- [[@expression-and-or-not]] - `$and` / `$or` / `$not` — boolean logic
|
|
1435
|
+
- [[@expression-cond]] - `$cond` / `$then` / `$else` — conditional value
|
|
1436
|
+
- [[@expression-switch]] - `$switch` — multi-branch conditional
|
|
1437
|
+
|
|
1438
|
+
## docs/consumer/ai-context.md#cross-screen-data-flow
|
|
1439
|
+
|
|
1440
|
+
- [[@pattern-cross-screen-data-flow]] - Pattern — Cross-screen data flow
|
|
1441
|
+
|
|
1442
|
+
## docs/consumer/ai-context.md#custom-table-names
|
|
1443
|
+
|
|
1444
|
+
- [[@concept-storage-custom-names]] - Storage — custom table names + identifier safety
|
|
1445
|
+
|
|
1446
|
+
## docs/consumer/ai-context.md#datasources
|
|
1447
|
+
|
|
1448
|
+
- [[@action-refresh-data-source]] - `refreshDataSource` — force re-fetch
|
|
1449
|
+
- [[@concept-data-sources]] - `dataSources` — reactive GET fetching
|
|
1450
|
+
|
|
1451
|
+
## docs/consumer/ai-context.md#deep-design-token-system
|
|
1452
|
+
|
|
1453
|
+
- [[@concept-auto-dark-mode]] - Auto dark mode
|
|
1454
|
+
- [[@concept-cli-tokens-inspect]] - `mythik tokens` — CLI inspection
|
|
1455
|
+
- [[@concept-dna-seeds]] - DNA seeds — 8 inputs that derive everything
|
|
1456
|
+
- [[@concept-font-loading]] - Font loading — project responsibility
|
|
1457
|
+
- [[@concept-token-categories]] - Token categories — `$token` paths
|
|
1458
|
+
- [[@concept-token-system]] - Token system — three-layer resolution
|
|
1459
|
+
- [[@expression-token]] - `$token` — design system reference
|
|
1460
|
+
|
|
1461
|
+
## docs/consumer/ai-context.md#derived-state
|
|
1462
|
+
|
|
1463
|
+
- [[@antipattern-derive-server-pagination]] - Anti-pattern — `derive` over server-paginated state
|
|
1464
|
+
- [[@concept-derive]] - `derive` — derived state
|
|
1465
|
+
|
|
1466
|
+
## docs/consumer/ai-context.md#element-properties
|
|
1467
|
+
|
|
1468
|
+
- [[@concept-element-properties]] - Element Properties (full catalogue)
|
|
1469
|
+
|
|
1470
|
+
## docs/consumer/ai-context.md#expressions
|
|
1471
|
+
|
|
1472
|
+
- [[@expression-binditem]] - `$bindItem` — two-way binding to repeat item
|
|
1473
|
+
- [[@expression-bindstate]] - `$bindState` — two-way binding
|
|
1474
|
+
- [[@expression-item-index]] - `$item` / `$index` — repeat context
|
|
1475
|
+
- [[@expression-prop]] - `$prop` — template/element-def prop reference
|
|
1476
|
+
- [[@expression-state]] - `$state` — read from state
|
|
1477
|
+
|
|
1478
|
+
## docs/consumer/ai-context.md#fetch-details
|
|
1479
|
+
|
|
1480
|
+
- [[@action-fetch]] - `fetch` — HTTP request
|
|
1481
|
+
|
|
1482
|
+
## docs/consumer/ai-context.md#forms
|
|
1483
|
+
|
|
1484
|
+
- [[@action-form-control]] - `validateForm` / `touchField` / `resetForm`
|
|
1485
|
+
- [[@concept-form-state-paths]] - Form state paths — `/ui/forms/{id}/*`
|
|
1486
|
+
- [[@concept-forms]] - `forms` — declarative form validation
|
|
1487
|
+
- [[@pattern-form-validation]] - Pattern — Form validation overview
|
|
1488
|
+
|
|
1489
|
+
## docs/consumer/ai-context.md#fullstack-coherence-api--frontend
|
|
1490
|
+
|
|
1491
|
+
- [[@pattern-fullstack-coherence]] - Pattern — Fullstack coherence (API + Frontend)
|
|
1492
|
+
|
|
1493
|
+
## docs/consumer/ai-context.md#group--selection-inside-repeat
|
|
1494
|
+
|
|
1495
|
+
- [[@expression-group]] - `$group` — group context (inside groupBy)
|
|
1496
|
+
- [[@expression-selection]] - `$selection` — selection state (inside repeat.selection)
|
|
1497
|
+
|
|
1498
|
+
## docs/consumer/ai-context.md#grouped-repeat
|
|
1499
|
+
|
|
1500
|
+
- [[@concept-repeat-grouped]] - `repeat.groupBy` — grouped lists
|
|
1501
|
+
|
|
1502
|
+
## docs/consumer/ai-context.md#idempotency-requirement
|
|
1503
|
+
|
|
1504
|
+
- [[@concept-storage-idempotency]] - Storage — idempotency requirement
|
|
1505
|
+
|
|
1506
|
+
## docs/consumer/ai-context.md#identity-system-forge
|
|
1507
|
+
|
|
1508
|
+
- [[@action-update-tokens]] - `updateTokens` — runtime token update
|
|
1509
|
+
- [[@concept-identity-accent-application]] - `identity.accentApplication` — where accent appears
|
|
1510
|
+
- [[@concept-identity-border-elevation-override]] - Identity border + elevation overrides
|
|
1511
|
+
- [[@concept-identity-color-scheme]] - `identity.colorScheme` - surface polarity
|
|
1512
|
+
- [[@concept-identity-color-weight]] - `identity.colorWeight` — where color appears
|
|
1513
|
+
- [[@concept-identity-gradients]] - `identity.gradients` — gradient text + buttons
|
|
1514
|
+
- [[@concept-identity-heading-color]] - `identity.headingColor`
|
|
1515
|
+
- [[@concept-identity-helpers]] - Identity helpers — resolve API
|
|
1516
|
+
- [[@concept-identity-icons]] - `identity.icons` — icon defaults
|
|
1517
|
+
- [[@concept-identity-images]] - `identity.images` — image defaults
|
|
1518
|
+
- [[@concept-identity-label-style]] - `identity.labelStyle` — form label formatting
|
|
1519
|
+
- [[@concept-identity-overview]] - Identity system - overview
|
|
1520
|
+
- [[@concept-identity-radius-pattern]] - `identity.radiusPattern` — 11 corner options
|
|
1521
|
+
- [[@concept-identity-surface]] - `identity.surface` — 6 surface types
|
|
1522
|
+
- [[@concept-identity-text-decoration]] - `identity.textDecoration` — heading effects (multi-select)
|
|
1523
|
+
- [[@concept-identity-typography-hierarchy]] - `identity.typographyHierarchy` — 6 heading scales
|
|
1524
|
+
- [[@concept-layer-background]] - `tokens.identity.background` — LayerBackground v2
|
|
1525
|
+
|
|
1526
|
+
## docs/consumer/ai-context.md#interactive-states--animations
|
|
1527
|
+
|
|
1528
|
+
- [[@concept-animation-cascade]] - 5-level animation cascade
|
|
1529
|
+
- [[@concept-animation-null-semantics]] - Animation null semantics
|
|
1530
|
+
- [[@concept-animation-recipes]] - 15 animation recipes
|
|
1531
|
+
- [[@concept-animations-engine]] - `animations` engine (preferred)
|
|
1532
|
+
- [[@concept-css-vs-motion]] - CSS vs Motion — auto-detection
|
|
1533
|
+
- [[@concept-identity-animations]] - `identity.animations` — cascade level 1
|
|
1534
|
+
- [[@concept-interactive-states]] - Interactive states — hover / active / focus / transition
|
|
1535
|
+
|
|
1536
|
+
## docs/consumer/ai-context.md#loadingcontentempty-pattern
|
|
1537
|
+
|
|
1538
|
+
- [[@pattern-loading-content-empty]] - Pattern — Loading / Content / Empty / Error
|
|
1539
|
+
|
|
1540
|
+
## docs/consumer/ai-context.md#login-screen
|
|
1541
|
+
|
|
1542
|
+
- [[@action-login]] - `login` / `logout` / `refreshSession`
|
|
1543
|
+
- [[@concept-auth-state-paths]] - Auth state paths — `/auth/*`
|
|
1544
|
+
- [[@expression-auth]] - `$auth` — authenticated user data
|
|
1545
|
+
- [[@pattern-login-screen]] - Pattern — Login screen
|
|
1546
|
+
|
|
1547
|
+
## docs/consumer/ai-context.md#math--data
|
|
1548
|
+
|
|
1549
|
+
- [[@expression-array]] - `$array` — array operations
|
|
1550
|
+
- [[@expression-date]] - `$date` — date operations
|
|
1551
|
+
- [[@expression-format]] - `$format` — value formatting
|
|
1552
|
+
- [[@expression-math]] - `$math` — arithmetic operations
|
|
1553
|
+
|
|
1554
|
+
## docs/consumer/ai-context.md#mountexit-animations
|
|
1555
|
+
|
|
1556
|
+
- [[@concept-motion-field]] - `motion` field (legacy Framer-Motion)
|
|
1557
|
+
|
|
1558
|
+
## docs/consumer/ai-context.md#named-bindings
|
|
1559
|
+
|
|
1560
|
+
- [[@expression-let-ref]] - `$let` / `$ref` — named bindings
|
|
1561
|
+
|
|
1562
|
+
## docs/consumer/ai-context.md#postgres--supabase-jsonb-for-spec-and-patches
|
|
1563
|
+
|
|
1564
|
+
- [[@concept-storage-postgres-jsonb]] - Storage — Postgres `jsonb` requirement
|
|
1565
|
+
|
|
1566
|
+
## docs/consumer/ai-context.md#postgres--supabase-triggers-for-screensupdated_at-and-screensversion
|
|
1567
|
+
|
|
1568
|
+
- [[@concept-storage-postgres-triggers]] - Storage — Postgres triggers for `screens`
|
|
1569
|
+
|
|
1570
|
+
## docs/consumer/ai-context.md#pre-push-linting
|
|
1571
|
+
|
|
1572
|
+
- [[@cli-lint]] - `mythik lint` — anti-pattern detection
|
|
1573
|
+
|
|
1574
|
+
## docs/consumer/ai-context.md#presets-system
|
|
1575
|
+
|
|
1576
|
+
- [[@concept-presets]] - Presets — `PresetDefinition`
|
|
1577
|
+
|
|
1578
|
+
## docs/consumer/ai-context.md#primitives
|
|
1579
|
+
|
|
1580
|
+
- [[@concept-primitives-overview]] - Primitives — overview
|
|
1581
|
+
|
|
1582
|
+
## docs/consumer/ai-context.md#repeat
|
|
1583
|
+
|
|
1584
|
+
- [[@concept-repeat]] - `repeat` — render an element per item
|
|
1585
|
+
|
|
1586
|
+
## docs/consumer/ai-context.md#repeat-selection
|
|
1587
|
+
|
|
1588
|
+
- [[@action-selection]] - `toggleSelection` / `selectAll` / `selectNone`
|
|
1589
|
+
- [[@concept-repeat-selection]] - `repeat.selection` — multi-select pattern
|
|
1590
|
+
|
|
1591
|
+
## docs/consumer/ai-context.md#responsive--cross-platform
|
|
1592
|
+
|
|
1593
|
+
- [[@expression-breakpoint]] - `$breakpoint` — responsive value
|
|
1594
|
+
- [[@expression-platform]] - `$platform` — cross-platform value
|
|
1595
|
+
|
|
1596
|
+
## docs/consumer/ai-context.md#rule-15
|
|
1597
|
+
|
|
1598
|
+
- [[@antipattern-overflow-hidden-with-shadow]] - Anti-pattern — `overflow: hidden` + `box-shadow` hover
|
|
1599
|
+
|
|
1600
|
+
## docs/consumer/ai-context.md#rule-53
|
|
1601
|
+
|
|
1602
|
+
- [[@concept-blob-layer]] - Blob layer v2 — preset + explicit
|
|
1603
|
+
|
|
1604
|
+
## docs/consumer/ai-context.md#rule-54
|
|
1605
|
+
|
|
1606
|
+
- [[@antipattern-motion-entrance-token]] - Anti-pattern — `identity.motionEntrance` / `motionHover`
|
|
1607
|
+
|
|
1608
|
+
## docs/consumer/ai-context.md#rule-56
|
|
1609
|
+
|
|
1610
|
+
- [[@antipattern-background-blobs-prop]] - Anti-pattern — `Box.backgroundBlobs` prop
|
|
1611
|
+
|
|
1612
|
+
## docs/consumer/ai-context.md#rule-57
|
|
1613
|
+
|
|
1614
|
+
- [[@antipattern-background-css-token]] - Anti-pattern — `$token: "backgroundCSS"`
|
|
1615
|
+
|
|
1616
|
+
## docs/consumer/ai-context.md#rule-61
|
|
1617
|
+
|
|
1618
|
+
- [[@antipattern-event-expression]] - Anti-pattern — `$event` expression
|
|
1619
|
+
|
|
1620
|
+
## docs/consumer/ai-context.md#rule-62
|
|
1621
|
+
|
|
1622
|
+
- [[@concept-preset-dropdown-pattern]] - Preset dropdown pattern (`$bindState` + `$state`)
|
|
1623
|
+
|
|
1624
|
+
## docs/consumer/ai-context.md#rule-67
|
|
1625
|
+
|
|
1626
|
+
- [[@antipattern-element-variant-top-level]] - Anti-pattern — top-level `variant` field
|
|
1627
|
+
|
|
1628
|
+
## docs/consumer/ai-context.md#rules
|
|
1629
|
+
|
|
1630
|
+
- [[@concept-element-key]] - Element `key` — forced remount
|
|
1631
|
+
|
|
1632
|
+
## docs/consumer/ai-context.md#schema-evolution
|
|
1633
|
+
|
|
1634
|
+
- [[@concept-storage-evolution]] - Storage — schema evolution policy
|
|
1635
|
+
|
|
1636
|
+
## docs/consumer/ai-context.md#skeleton--export
|
|
1637
|
+
|
|
1638
|
+
- [[@action-export]] - `export` — data export
|
|
1639
|
+
|
|
1640
|
+
## docs/consumer/ai-context.md#spec-structure
|
|
1641
|
+
|
|
1642
|
+
- [[@concept-initial-actions]] - `initialActions` — mount-time actions
|
|
1643
|
+
- [[@concept-spec-structure]] - Spec Structure (Flat Tree)
|
|
1644
|
+
- [[@concept-spec-types]] - Spec Types — Screen vs App vs Api
|
|
1645
|
+
|
|
1646
|
+
## docs/consumer/ai-context.md#state-policies
|
|
1647
|
+
|
|
1648
|
+
- [[@concept-state-policies]] - State policies — preserve / reset / reload
|
|
1649
|
+
|
|
1650
|
+
## docs/consumer/ai-context.md#storage-setup
|
|
1651
|
+
|
|
1652
|
+
- [[@concept-storage-overview]] - Storage setup — three tables
|
|
1653
|
+
- [[@concept-storage-table-environments]] - Storage — Table 2 `screen_environments`
|
|
1654
|
+
- [[@concept-storage-table-screens]] - Storage — Table 0 `screens`
|
|
1655
|
+
- [[@concept-storage-table-versions]] - Storage — Table 1 `screen_versions`
|
|
1656
|
+
|
|
1657
|
+
## docs/consumer/ai-context.md#templates
|
|
1658
|
+
|
|
1659
|
+
- [[@concept-template-children-marker]] - `"$children"` — template children slot
|
|
1660
|
+
- [[@concept-templates]] - `templates` — reusable element definitions
|
|
1661
|
+
|
|
1662
|
+
## docs/consumer/ai-context.md#transactions-optimistic-updates
|
|
1663
|
+
|
|
1664
|
+
- [[@concept-transactions]] - Transactions — optimistic CRUD with rollback
|
|
1665
|
+
- [[@path-tx-result-error]] - `/tx/result` and `/tx/error` — transaction state
|
|
1666
|
+
- [[@pattern-tx-create]] - Pattern — CREATE transaction
|
|
1667
|
+
- [[@pattern-tx-delete]] - Pattern — DELETE transaction
|
|
1668
|
+
- [[@pattern-tx-toggle]] - Pattern — TOGGLE transaction
|
|
1669
|
+
- [[@pattern-tx-update]] - Pattern — UPDATE transaction
|
|
1670
|
+
|
|
1671
|
+
## docs/consumer/ai-context.md#validation
|
|
1672
|
+
|
|
1673
|
+
- [[@concept-validation-checks]] - Inline validation `checks`
|
|
1674
|
+
- [[@concept-validators-catalog]] - Validators catalog
|
|
1675
|
+
|
|
1676
|
+
## docs/consumer/ai-context.md#values--formatting
|
|
1677
|
+
|
|
1678
|
+
- [[@expression-computed]] - `$computed` — registered function
|
|
1679
|
+
- [[@expression-i18n]] - `$i18n` — translation key
|
|
1680
|
+
- [[@expression-template]] - `$template` — string interpolation
|
|
1681
|
+
|
|
1682
|
+
## docs/consumer/ai-context.md#verification-post-apply
|
|
1683
|
+
|
|
1684
|
+
- [[@concept-storage-verification]] - Storage — post-apply verification
|
|
1685
|
+
|
|
1686
|
+
## docs/consumer/ai-context.md#visibility
|
|
1687
|
+
|
|
1688
|
+
- [[@concept-visibility]] - `visible` — show/hide condition
|
|
1689
|
+
|
|
1690
|
+
## docs/consumer/ai-context.md#when-to-use-fetch-vs-datasources
|
|
1691
|
+
|
|
1692
|
+
- [[@pattern-fetch-vs-datasources]] - Pattern — `fetch` vs `dataSources` decision
|
|
1693
|
+
|
|
1694
|
+
## docs/consumer/reference-doc.md
|
|
1695
|
+
|
|
1696
|
+
- [[@cli-existing-spec-edit-loop]] - Existing spec edit loop
|
|
1697
|
+
- [[@cli-overview]] - CLI overview - `mythik <command>`
|
|
1698
|
+
- [[@cli-patch]] - `mythik patch` - RFC 6902 patches
|
|
1699
|
+
- [[@cli-toon]] - `--toon` - token-efficient format
|
|
1700
|
+
- [[@concept-auth-config]] - AppSpec auth config
|
|
1701
|
+
- [[@concept-auth-security]] - Auth security guarantees
|
|
1702
|
+
- [[@concept-custom-jwt-provider]] - Custom JWT provider response mapping
|
|
1703
|
+
- [[@concept-editor-commit]] - editorCommit action
|
|
1704
|
+
- [[@concept-editor-save]] - editorSave action
|
|
1705
|
+
- [[@concept-editor-sessions]] - Editor sessions
|
|
1706
|
+
- [[@concept-identity-color-scheme]] - `identity.colorScheme` - surface polarity
|
|
1707
|
+
- [[@concept-identity-overview]] - Identity system - overview
|
|
1708
|
+
- [[@concept-mythik-renderer]] - `MythikRenderer` - root mount
|
|
1709
|
+
- [[@concept-navigation-dirty-guard]] - Navigation dirty guard
|
|
1710
|
+
- [[@concept-render-error-visibility]] - Render error visibility
|
|
1711
|
+
- [[@concept-rules-catalog]] - Rules catalog - pointer to the 256 numbered rules
|
|
1712
|
+
- [[@concept-spatial-map-editor]] - Spatial-map editor workflow
|
|
1713
|
+
- [[@concept-spatial-map-zones]] - Spatial-map zones and polygon editing
|
|
1714
|
+
- [[@concept-spec-structure]] - Spec Structure (Flat Tree)
|
|
1715
|
+
- [[@pattern-fetch-vs-datasources]] - Pattern — `fetch` vs `dataSources` decision
|
|
1716
|
+
- [[@primitive-box]] - `box` — generic container
|
|
1717
|
+
- [[@primitive-spatial-map]] - Primitive - spatial-map
|
|
1718
|
+
|
|
1719
|
+
## docs/consumer/reference-doc.md § $path Token References
|
|
1720
|
+
|
|
1721
|
+
- [[@concept-path-references]] - `$path` references inside variants
|
|
1722
|
+
|
|
1723
|
+
## docs/consumer/reference-doc.md § Access Control
|
|
1724
|
+
|
|
1725
|
+
- [[@concept-role-access]] - Access control — `roleAccess` vs ScreenDefinition.roles
|
|
1726
|
+
|
|
1727
|
+
## docs/consumer/reference-doc.md § Action Middleware
|
|
1728
|
+
|
|
1729
|
+
- [[@concept-action-middleware]] - Action middleware
|
|
1730
|
+
|
|
1731
|
+
## docs/consumer/reference-doc.md § Actions → Action Reference
|
|
1732
|
+
|
|
1733
|
+
- [[@action-navigate]] - `navigateScreen` / `goBackScreen` (and low-level `navigate`/`goBack`)
|
|
1734
|
+
- [[@action-set-state]] - `setState` — write to state
|
|
1735
|
+
- [[@action-toggle-theme]] - `toggleTheme` — switch dark/light
|
|
1736
|
+
|
|
1737
|
+
## docs/consumer/reference-doc.md § Animation System
|
|
1738
|
+
|
|
1739
|
+
- [[@concept-animations-engine]] - `animations` engine (preferred)
|
|
1740
|
+
|
|
1741
|
+
## docs/consumer/reference-doc.md § Animations → Motion design tokens
|
|
1742
|
+
|
|
1743
|
+
- [[@concept-motion-field]] - `motion` field (legacy Framer-Motion)
|
|
1744
|
+
|
|
1745
|
+
## docs/consumer/reference-doc.md § App Spec & Screen Outlet
|
|
1746
|
+
|
|
1747
|
+
- [[@concept-app-spec]] - AppSpec — multi-screen app
|
|
1748
|
+
- [[@concept-navigation]] - Navigation config
|
|
1749
|
+
- [[@concept-spec-types]] - Spec Types — Screen vs App vs Api
|
|
1750
|
+
|
|
1751
|
+
## docs/consumer/reference-doc.md § AppSpec — App-Level Configuration
|
|
1752
|
+
|
|
1753
|
+
- [[@cli-app-spec]] - CLI on AppSpecs
|
|
1754
|
+
|
|
1755
|
+
## docs/consumer/reference-doc.md § AppSpec → AppSpec — App-Level Configuration
|
|
1756
|
+
|
|
1757
|
+
- [[@cli-elements]] - `mythik elements` — inspect specific elements
|
|
1758
|
+
|
|
1759
|
+
## docs/consumer/reference-doc.md § Audit (SP3)
|
|
1760
|
+
|
|
1761
|
+
- [[@concept-api-audit]] - `audit` — auto-inject user + timestamp
|
|
1762
|
+
|
|
1763
|
+
## docs/consumer/reference-doc.md § Auth State Paths
|
|
1764
|
+
|
|
1765
|
+
- [[@concept-auth-state-paths]] - Auth state paths — `/auth/*`
|
|
1766
|
+
|
|
1767
|
+
## docs/consumer/reference-doc.md § Authentication → Auth Actions
|
|
1768
|
+
|
|
1769
|
+
- [[@action-login]] - `login` / `logout` / `refreshSession`
|
|
1770
|
+
|
|
1771
|
+
## docs/consumer/reference-doc.md § Authentication → authDomains matcher behavior
|
|
1772
|
+
|
|
1773
|
+
- [[@concept-auth-domains]] - `authDomains` — hostname matcher
|
|
1774
|
+
|
|
1775
|
+
## docs/consumer/reference-doc.md § Auto Dark Mode
|
|
1776
|
+
|
|
1777
|
+
- [[@concept-auto-dark-mode]] - Auto dark mode
|
|
1778
|
+
|
|
1779
|
+
## docs/consumer/reference-doc.md § Auto-Generated State
|
|
1780
|
+
|
|
1781
|
+
- [[@concept-app-auto-state-paths]] - AppSpec auto-state paths
|
|
1782
|
+
|
|
1783
|
+
## docs/consumer/reference-doc.md § Auto-Skeleton (Zero Config)
|
|
1784
|
+
|
|
1785
|
+
- [[@concept-skeleton-auto]] - Auto-skeleton — zero-config loading state
|
|
1786
|
+
|
|
1787
|
+
## docs/consumer/reference-doc.md § CLI Token Inspection
|
|
1788
|
+
|
|
1789
|
+
- [[@cli-tokens]] - `mythik tokens` — DNA inspection
|
|
1790
|
+
- [[@concept-cli-tokens-inspect]] - `mythik tokens` — CLI inspection
|
|
1791
|
+
|
|
1792
|
+
## docs/consumer/reference-doc.md § CLI Workflow → Full Spec Lifecycle
|
|
1793
|
+
|
|
1794
|
+
- [[@cli-pull]] - `mythik pull` — export spec
|
|
1795
|
+
|
|
1796
|
+
## docs/consumer/reference-doc.md § Component Variants
|
|
1797
|
+
|
|
1798
|
+
- [[@concept-component-variants]] - Component variants — `tokens.components.{type}.{variant}`
|
|
1799
|
+
|
|
1800
|
+
## docs/consumer/reference-doc.md § Configuration — Never pass keys inline
|
|
1801
|
+
|
|
1802
|
+
- [[@cli-config]] - CLI config — `.mythikrc` + env vars
|
|
1803
|
+
|
|
1804
|
+
## docs/consumer/reference-doc.md § Cross-Tab Synchronization
|
|
1805
|
+
|
|
1806
|
+
- [[@concept-cross-tab-sync]] - Cross-tab synchronization
|
|
1807
|
+
|
|
1808
|
+
## docs/consumer/reference-doc.md § DNA Seeds
|
|
1809
|
+
|
|
1810
|
+
- [[@concept-dna-seeds]] - DNA seeds — 8 inputs that derive everything
|
|
1811
|
+
|
|
1812
|
+
## docs/consumer/reference-doc.md § Data Sources (dataSources)
|
|
1813
|
+
|
|
1814
|
+
- [[@concept-data-sources]] - `dataSources` — reactive GET fetching
|
|
1815
|
+
|
|
1816
|
+
## docs/consumer/reference-doc.md § Deep Design Token System
|
|
1817
|
+
|
|
1818
|
+
- [[@concept-token-system]] - Token system — three-layer resolution
|
|
1819
|
+
|
|
1820
|
+
## docs/consumer/reference-doc.md § Delete — With Safety Gate
|
|
1821
|
+
|
|
1822
|
+
- [[@cli-delete]] - `mythik delete` — with safety gate
|
|
1823
|
+
|
|
1824
|
+
## docs/consumer/reference-doc.md § Derived State (derive)
|
|
1825
|
+
|
|
1826
|
+
- [[@concept-derive]] - `derive` — derived state
|
|
1827
|
+
|
|
1828
|
+
## docs/consumer/reference-doc.md § Element Properties
|
|
1829
|
+
|
|
1830
|
+
- [[@concept-element-properties]] - Element Properties (full catalogue)
|
|
1831
|
+
|
|
1832
|
+
## docs/consumer/reference-doc.md § Element Properties (key row)
|
|
1833
|
+
|
|
1834
|
+
- [[@concept-element-key]] - Element `key` — forced remount
|
|
1835
|
+
|
|
1836
|
+
## docs/consumer/reference-doc.md § Element Templates (templates)
|
|
1837
|
+
|
|
1838
|
+
- [[@concept-templates]] - `templates` — reusable element definitions
|
|
1839
|
+
|
|
1840
|
+
## docs/consumer/reference-doc.md § Element Templates → Templates with children
|
|
1841
|
+
|
|
1842
|
+
- [[@concept-template-children-marker]] - `"$children"` — template children slot
|
|
1843
|
+
|
|
1844
|
+
## docs/consumer/reference-doc.md § Export Action
|
|
1845
|
+
|
|
1846
|
+
- [[@action-export]] - `export` — data export
|
|
1847
|
+
- [[@concept-export-action]] - Export — CSV + adapters
|
|
1848
|
+
|
|
1849
|
+
## docs/consumer/reference-doc.md § Expression Types → $and / $or / $not
|
|
1850
|
+
|
|
1851
|
+
- [[@expression-and-or-not]] - `$and` / `$or` / `$not` — boolean logic
|
|
1852
|
+
|
|
1853
|
+
## docs/consumer/reference-doc.md § Expression Types → $array
|
|
1854
|
+
|
|
1855
|
+
- [[@expression-array]] - `$array` — array operations
|
|
1856
|
+
|
|
1857
|
+
## docs/consumer/reference-doc.md § Expression Types → $auth
|
|
1858
|
+
|
|
1859
|
+
- [[@expression-auth]] - `$auth` — authenticated user data
|
|
1860
|
+
|
|
1861
|
+
## docs/consumer/reference-doc.md § Expression Types → $bindItem
|
|
1862
|
+
|
|
1863
|
+
- [[@expression-binditem]] - `$bindItem` — two-way binding to repeat item
|
|
1864
|
+
|
|
1865
|
+
## docs/consumer/reference-doc.md § Expression Types → $bindState
|
|
1866
|
+
|
|
1867
|
+
- [[@expression-bindstate]] - `$bindState` — two-way binding
|
|
1868
|
+
|
|
1869
|
+
## docs/consumer/reference-doc.md § Expression Types → $breakpoint
|
|
1870
|
+
|
|
1871
|
+
- [[@expression-breakpoint]] - `$breakpoint` — responsive value
|
|
1872
|
+
|
|
1873
|
+
## docs/consumer/reference-doc.md § Expression Types → $computed
|
|
1874
|
+
|
|
1875
|
+
- [[@expression-computed]] - `$computed` — registered function
|
|
1876
|
+
|
|
1877
|
+
## docs/consumer/reference-doc.md § Expression Types → $cond / $then / $else
|
|
1878
|
+
|
|
1879
|
+
- [[@expression-cond]] - `$cond` / `$then` / `$else` — conditional value
|
|
1880
|
+
|
|
1881
|
+
## docs/consumer/reference-doc.md § Expression Types → $date
|
|
1882
|
+
|
|
1883
|
+
- [[@expression-date]] - `$date` — date operations
|
|
1884
|
+
|
|
1885
|
+
## docs/consumer/reference-doc.md § Expression Types → $format
|
|
1886
|
+
|
|
1887
|
+
- [[@expression-format]] - `$format` — value formatting
|
|
1888
|
+
|
|
1889
|
+
## docs/consumer/reference-doc.md § Expression Types → $group
|
|
1890
|
+
|
|
1891
|
+
- [[@expression-group]] - `$group` — group context (inside groupBy)
|
|
1892
|
+
|
|
1893
|
+
## docs/consumer/reference-doc.md § Expression Types → $i18n
|
|
1894
|
+
|
|
1895
|
+
- [[@expression-i18n]] - `$i18n` — translation key
|
|
1896
|
+
|
|
1897
|
+
## docs/consumer/reference-doc.md § Expression Types → $item / $index
|
|
1898
|
+
|
|
1899
|
+
- [[@expression-item-index]] - `$item` / `$index` — repeat context
|
|
1900
|
+
|
|
1901
|
+
## docs/consumer/reference-doc.md § Expression Types → $let / $ref
|
|
1902
|
+
|
|
1903
|
+
- [[@expression-let-ref]] - `$let` / `$ref` — named bindings
|
|
1904
|
+
|
|
1905
|
+
## docs/consumer/reference-doc.md § Expression Types → $math
|
|
1906
|
+
|
|
1907
|
+
- [[@expression-math]] - `$math` — arithmetic operations
|
|
1908
|
+
|
|
1909
|
+
## docs/consumer/reference-doc.md § Expression Types → $platform
|
|
1910
|
+
|
|
1911
|
+
- [[@expression-platform]] - `$platform` — cross-platform value
|
|
1912
|
+
|
|
1913
|
+
## docs/consumer/reference-doc.md § Expression Types → $selection
|
|
1914
|
+
|
|
1915
|
+
- [[@expression-selection]] - `$selection` — selection state (inside repeat.selection)
|
|
1916
|
+
|
|
1917
|
+
## docs/consumer/reference-doc.md § Expression Types → $state
|
|
1918
|
+
|
|
1919
|
+
- [[@expression-state]] - `$state` — read from state
|
|
1920
|
+
|
|
1921
|
+
## docs/consumer/reference-doc.md § Expression Types → $switch
|
|
1922
|
+
|
|
1923
|
+
- [[@expression-switch]] - `$switch` — multi-branch conditional
|
|
1924
|
+
|
|
1925
|
+
## docs/consumer/reference-doc.md § Expression Types → $template
|
|
1926
|
+
|
|
1927
|
+
- [[@expression-template]] - `$template` — string interpolation
|
|
1928
|
+
|
|
1929
|
+
## docs/consumer/reference-doc.md § Expression Types → $token
|
|
1930
|
+
|
|
1931
|
+
- [[@expression-token]] - `$token` — design system reference
|
|
1932
|
+
|
|
1933
|
+
## docs/consumer/reference-doc.md § Fetch Interceptors
|
|
1934
|
+
|
|
1935
|
+
- [[@concept-fetch-interceptors]] - Fetch interceptors
|
|
1936
|
+
|
|
1937
|
+
## docs/consumer/reference-doc.md § File Upload
|
|
1938
|
+
|
|
1939
|
+
- [[@action-upload-file]] - `uploadFile` / `deleteFile`
|
|
1940
|
+
- [[@concept-file-upload-overview]] - File upload — overview
|
|
1941
|
+
- [[@primitive-file-upload]] - `file-upload`
|
|
1942
|
+
|
|
1943
|
+
## docs/consumer/reference-doc.md § Font Loading
|
|
1944
|
+
|
|
1945
|
+
- [[@concept-font-loading]] - Font loading — project responsibility
|
|
1946
|
+
|
|
1947
|
+
## docs/consumer/reference-doc.md § Form State (auto-generated)
|
|
1948
|
+
|
|
1949
|
+
- [[@concept-form-state-paths]] - Form state paths — `/ui/forms/{id}/*`
|
|
1950
|
+
|
|
1951
|
+
## docs/consumer/reference-doc.md § Form Validation (forms)
|
|
1952
|
+
|
|
1953
|
+
- [[@concept-forms]] - `forms` — declarative form validation
|
|
1954
|
+
|
|
1955
|
+
## docs/consumer/reference-doc.md § Form Validation → Form Actions
|
|
1956
|
+
|
|
1957
|
+
- [[@action-form-control]] - `validateForm` / `touchField` / `resetForm`
|
|
1958
|
+
- [[@action-submit-form]] - `submitForm` — validate + fetch + notify
|
|
1959
|
+
|
|
1960
|
+
## docs/consumer/reference-doc.md § Grouped Repeat (groupBy)
|
|
1961
|
+
|
|
1962
|
+
- [[@concept-repeat-grouped]] - `repeat.groupBy` — grouped lists
|
|
1963
|
+
|
|
1964
|
+
## docs/consumer/reference-doc.md § Icon Primitive
|
|
1965
|
+
|
|
1966
|
+
- [[@primitive-icon]] - `icon` — icon glyph
|
|
1967
|
+
|
|
1968
|
+
## docs/consumer/reference-doc.md § Interactive States
|
|
1969
|
+
|
|
1970
|
+
- [[@concept-interactive-states]] - Interactive states — hover / active / focus / transition
|
|
1971
|
+
|
|
1972
|
+
## docs/consumer/reference-doc.md § Interactive States → CSS vs Motion
|
|
1973
|
+
|
|
1974
|
+
- [[@concept-css-vs-motion]] - CSS vs Motion — auto-detection
|
|
1975
|
+
|
|
1976
|
+
## docs/consumer/reference-doc.md § Layer 3 Custom Elements
|
|
1977
|
+
|
|
1978
|
+
- [[@concept-custom-elements]] - Custom elements (Layer 3)
|
|
1979
|
+
|
|
1980
|
+
## docs/consumer/reference-doc.md § Loading/Content/Empty Pattern
|
|
1981
|
+
|
|
1982
|
+
- [[@pattern-loading-content-empty]] - Pattern — Loading / Content / Empty / Error
|
|
1983
|
+
|
|
1984
|
+
## docs/consumer/reference-doc.md § Login Screen Example
|
|
1985
|
+
|
|
1986
|
+
- [[@pattern-login-screen]] - Pattern — Login screen
|
|
1987
|
+
|
|
1988
|
+
## docs/consumer/reference-doc.md § Manual Skeleton
|
|
1989
|
+
|
|
1990
|
+
- [[@concept-skeleton-manual]] - Manual skeleton — `type: "skeleton"` element
|
|
1991
|
+
|
|
1992
|
+
## docs/consumer/reference-doc.md § Modal & Drawer Auto-Visibility
|
|
1993
|
+
|
|
1994
|
+
- [[@action-drawer]] - `openDrawer` / `closeDrawer`
|
|
1995
|
+
- [[@action-modal]] - `openModal` / `closeModal`
|
|
1996
|
+
- [[@antipattern-modal-drawer-visible]] - Anti-pattern — `visible` on modal/drawer
|
|
1997
|
+
- [[@primitive-modal]] - `modal` — overlay dialog
|
|
1998
|
+
|
|
1999
|
+
## docs/consumer/reference-doc.md § Multiple Actions (Sequential)
|
|
2000
|
+
|
|
2001
|
+
- [[@concept-action-chains]] - Action chains — sequential execution
|
|
2002
|
+
|
|
2003
|
+
## docs/consumer/reference-doc.md § Presets System
|
|
2004
|
+
|
|
2005
|
+
- [[@action-apply-preset]] - `applyPreset` — apply curated DNA+Identity
|
|
2006
|
+
- [[@concept-presets]] - Presets — `PresetDefinition`
|
|
2007
|
+
- [[@concept-register-presets]] - `plugins.registerPresets`
|
|
2008
|
+
- [[@path-presets-available]] - `/presets/available` — registered presets
|
|
2009
|
+
|
|
2010
|
+
## docs/consumer/reference-doc.md § Repeat (Lists)
|
|
2011
|
+
|
|
2012
|
+
- [[@concept-repeat]] - `repeat` — render an element per item
|
|
2013
|
+
|
|
2014
|
+
## docs/consumer/reference-doc.md § Repeat Selection (selection)
|
|
2015
|
+
|
|
2016
|
+
- [[@concept-repeat-selection]] - `repeat.selection` — multi-select pattern
|
|
2017
|
+
|
|
2018
|
+
## docs/consumer/reference-doc.md § Repeat Selection → Selection Helper Actions
|
|
2019
|
+
|
|
2020
|
+
- [[@action-selection]] - `toggleSelection` / `selectAll` / `selectNone`
|
|
2021
|
+
|
|
2022
|
+
## docs/consumer/reference-doc.md § Runtime Token Update
|
|
2023
|
+
|
|
2024
|
+
- [[@action-update-tokens]] - `updateTokens` — runtime token update
|
|
2025
|
+
|
|
2026
|
+
## docs/consumer/reference-doc.md § Screen Definition
|
|
2027
|
+
|
|
2028
|
+
- [[@concept-screen-definition]] - ScreenDefinition — per-screen metadata
|
|
2029
|
+
|
|
2030
|
+
## docs/consumer/reference-doc.md § Session Persistence
|
|
2031
|
+
|
|
2032
|
+
- [[@concept-session-persistence]] - Session persistence — local / session / memory
|
|
2033
|
+
|
|
2034
|
+
## docs/consumer/reference-doc.md § Skeleton Primitive
|
|
2035
|
+
|
|
2036
|
+
- [[@primitive-skeleton]] - `skeleton` — loading placeholder
|
|
2037
|
+
|
|
2038
|
+
## docs/consumer/reference-doc.md § State Policies
|
|
2039
|
+
|
|
2040
|
+
- [[@concept-state-policies]] - State policies — preserve / reset / reload
|
|
2041
|
+
|
|
2042
|
+
## docs/consumer/reference-doc.md § StorageAdapter Setup (Host App)
|
|
2043
|
+
|
|
2044
|
+
- [[@concept-storage-adapter]] - StorageAdapter (host-app)
|
|
2045
|
+
|
|
2046
|
+
## docs/consumer/reference-doc.md § Table Primitive (Enhanced)
|
|
2047
|
+
|
|
2048
|
+
- [[@primitive-table]] - `table`
|
|
2049
|
+
|
|
2050
|
+
## docs/consumer/reference-doc.md § Toast Notifications
|
|
2051
|
+
|
|
2052
|
+
- [[@action-show-notification]] - `showNotification` / `dismissNotification`
|
|
2053
|
+
- [[@primitive-toast-container]] - `toast-container` — toast positioning override
|
|
2054
|
+
|
|
2055
|
+
## docs/consumer/reference-doc.md § Token Categories & $token Paths
|
|
2056
|
+
|
|
2057
|
+
- [[@concept-token-categories]] - Token categories — `$token` paths
|
|
2058
|
+
|
|
2059
|
+
## docs/consumer/reference-doc.md § Transaction Templates → CREATE
|
|
2060
|
+
|
|
2061
|
+
- [[@pattern-tx-create]] - Pattern — CREATE transaction
|
|
2062
|
+
|
|
2063
|
+
## docs/consumer/reference-doc.md § Transaction Templates → DELETE
|
|
2064
|
+
|
|
2065
|
+
- [[@pattern-tx-delete]] - Pattern — DELETE transaction
|
|
2066
|
+
|
|
2067
|
+
## docs/consumer/reference-doc.md § Transaction Templates → TOGGLE
|
|
2068
|
+
|
|
2069
|
+
- [[@pattern-tx-toggle]] - Pattern — TOGGLE transaction
|
|
2070
|
+
|
|
2071
|
+
## docs/consumer/reference-doc.md § Transaction Templates → UPDATE
|
|
2072
|
+
|
|
2073
|
+
- [[@pattern-tx-update]] - Pattern — UPDATE transaction
|
|
2074
|
+
|
|
2075
|
+
## docs/consumer/reference-doc.md § Transactions (Optimistic Updates)
|
|
2076
|
+
|
|
2077
|
+
- [[@concept-transactions]] - Transactions — optimistic CRUD with rollback
|
|
2078
|
+
|
|
2079
|
+
## docs/consumer/reference-doc.md § Typed Contract (SP4)
|
|
2080
|
+
|
|
2081
|
+
- [[@cli-contract]] - `mythik contract` — frontend↔backend cross-validation
|
|
2082
|
+
|
|
2083
|
+
## docs/consumer/reference-doc.md § Validation
|
|
2084
|
+
|
|
2085
|
+
- [[@concept-validation-checks]] - Inline validation `checks`
|
|
2086
|
+
- [[@concept-validators-catalog]] - Validators catalog
|
|
2087
|
+
|
|
2088
|
+
## docs/consumer/reference-doc.md § Visibility Conditions
|
|
2089
|
+
|
|
2090
|
+
- [[@concept-visibility]] - `visible` — show/hide condition
|
|
2091
|
+
|
|
2092
|
+
## docs/consumer/reference-doc.md § Workflow: Manifest → Elements → Patch
|
|
2093
|
+
|
|
2094
|
+
- [[@cli-manifest]] - `mythik manifest` — structural tree
|
|
2095
|
+
|
|
2096
|
+
## docs/consumer/reference-doc.md § fetch Action Details
|
|
2097
|
+
|
|
2098
|
+
- [[@action-fetch]] - `fetch` — HTTP request
|
|
2099
|
+
|
|
2100
|
+
## docs/consumer/reference-doc.md § fireAndForget Mode
|
|
2101
|
+
|
|
2102
|
+
- [[@concept-fire-and-forget]] - `fireAndForget` — background action dispatch
|
|
2103
|
+
|
|
2104
|
+
## docs/consumer/reference-doc.md § rule 109
|
|
2105
|
+
|
|
2106
|
+
- [[@primitive-slider]] - `slider` — numeric range
|
|
2107
|
+
|
|
2108
|
+
## docs/consumer/reference-doc.md § rule 112-118, 140
|
|
2109
|
+
|
|
2110
|
+
- [[@concept-identity-surface]] - `identity.surface` — 6 surface types
|
|
2111
|
+
|
|
2112
|
+
## docs/consumer/reference-doc.md § rule 119
|
|
2113
|
+
|
|
2114
|
+
- [[@concept-identity-radius-pattern]] - `identity.radiusPattern` — 11 corner options
|
|
2115
|
+
|
|
2116
|
+
## docs/consumer/reference-doc.md § rule 120
|
|
2117
|
+
|
|
2118
|
+
- [[@concept-identity-typography-hierarchy]] - `identity.typographyHierarchy` — 6 heading scales
|
|
2119
|
+
|
|
2120
|
+
## docs/consumer/reference-doc.md § rule 121
|
|
2121
|
+
|
|
2122
|
+
- [[@concept-identity-label-style]] - `identity.labelStyle` — form label formatting
|
|
2123
|
+
|
|
2124
|
+
## docs/consumer/reference-doc.md § rule 122
|
|
2125
|
+
|
|
2126
|
+
- [[@concept-identity-text-decoration]] - `identity.textDecoration` — heading effects (multi-select)
|
|
2127
|
+
|
|
2128
|
+
## docs/consumer/reference-doc.md § rule 123
|
|
2129
|
+
|
|
2130
|
+
- [[@primitive-checkbox]] - `checkbox`
|
|
2131
|
+
|
|
2132
|
+
## docs/consumer/reference-doc.md § rule 133, 138
|
|
2133
|
+
|
|
2134
|
+
- [[@concept-identity-color-weight]] - `identity.colorWeight` — where color appears
|
|
2135
|
+
|
|
2136
|
+
## docs/consumer/reference-doc.md § rule 134
|
|
2137
|
+
|
|
2138
|
+
- [[@concept-identity-accent-application]] - `identity.accentApplication` — where accent appears
|
|
2139
|
+
|
|
2140
|
+
## docs/consumer/reference-doc.md § rule 141, 142
|
|
2141
|
+
|
|
2142
|
+
- [[@concept-identity-glass-rn]] - Glass surface on React Native — BlurView
|
|
2143
|
+
|
|
2144
|
+
## docs/consumer/reference-doc.md § rule 143
|
|
2145
|
+
|
|
2146
|
+
- [[@concept-identity-icons]] - `identity.icons` — icon defaults
|
|
2147
|
+
|
|
2148
|
+
## docs/consumer/reference-doc.md § rule 144
|
|
2149
|
+
|
|
2150
|
+
- [[@concept-identity-images]] - `identity.images` — image defaults
|
|
2151
|
+
|
|
2152
|
+
## docs/consumer/reference-doc.md § rule 149, 200
|
|
2153
|
+
|
|
2154
|
+
- [[@antipattern-motion-entrance-token]] - Anti-pattern — `identity.motionEntrance` / `motionHover`
|
|
2155
|
+
|
|
2156
|
+
## docs/consumer/reference-doc.md § rule 155, 222
|
|
2157
|
+
|
|
2158
|
+
- [[@antipattern-background-css-token]] - Anti-pattern — `$token: "backgroundCSS"`
|
|
2159
|
+
|
|
2160
|
+
## docs/consumer/reference-doc.md § rule 156
|
|
2161
|
+
|
|
2162
|
+
- [[@primitive-accordion]] - `accordion` — collapsible section
|
|
2163
|
+
|
|
2164
|
+
## docs/consumer/reference-doc.md § rule 159
|
|
2165
|
+
|
|
2166
|
+
- [[@action-copy-clipboard]] - `copyToClipboard`
|
|
2167
|
+
|
|
2168
|
+
## docs/consumer/reference-doc.md § rule 165
|
|
2169
|
+
|
|
2170
|
+
- [[@concept-identity-heading-color]] - `identity.headingColor`
|
|
2171
|
+
|
|
2172
|
+
## docs/consumer/reference-doc.md § rule 170
|
|
2173
|
+
|
|
2174
|
+
- [[@concept-custom-detection-pattern]] - Custom-detection pattern (preset → "custom" on edit)
|
|
2175
|
+
|
|
2176
|
+
## docs/consumer/reference-doc.md § rule 173
|
|
2177
|
+
|
|
2178
|
+
- [[@concept-background-recipes]] - 8 curated background recipes
|
|
2179
|
+
|
|
2180
|
+
## docs/consumer/reference-doc.md § rule 184, 199
|
|
2181
|
+
|
|
2182
|
+
- [[@concept-animation-recipes]] - 15 animation recipes
|
|
2183
|
+
|
|
2184
|
+
## docs/consumer/reference-doc.md § rule 187
|
|
2185
|
+
|
|
2186
|
+
- [[@concept-reduced-motion]] - Reduced motion — a11y policy
|
|
2187
|
+
|
|
2188
|
+
## docs/consumer/reference-doc.md § rule 188, 198
|
|
2189
|
+
|
|
2190
|
+
- [[@concept-animation-caps]] - Animation performance caps
|
|
2191
|
+
|
|
2192
|
+
## docs/consumer/reference-doc.md § rule 189
|
|
2193
|
+
|
|
2194
|
+
- [[@concept-state-change-animation]] - `stateChange` — state-driven animation
|
|
2195
|
+
|
|
2196
|
+
## docs/consumer/reference-doc.md § rule 198
|
|
2197
|
+
|
|
2198
|
+
- [[@concept-web-only-recipes]] - `WEB_ONLY_RECIPES`
|
|
2199
|
+
|
|
2200
|
+
## docs/consumer/reference-doc.md § rule 201-204, 229
|
|
2201
|
+
|
|
2202
|
+
- [[@concept-animation-cascade]] - 5-level animation cascade
|
|
2203
|
+
|
|
2204
|
+
## docs/consumer/reference-doc.md § rule 203
|
|
2205
|
+
|
|
2206
|
+
- [[@concept-animation-null-semantics]] - Animation null semantics
|
|
2207
|
+
|
|
2208
|
+
## docs/consumer/reference-doc.md § rule 210
|
|
2209
|
+
|
|
2210
|
+
- [[@concept-background-caps]] - `validateBackgroundCaps` — performance caps
|
|
2211
|
+
|
|
2212
|
+
## docs/consumer/reference-doc.md § rule 223
|
|
2213
|
+
|
|
2214
|
+
- [[@concept-identity-animations]] - `identity.animations` — cascade level 1
|
|
2215
|
+
|
|
2216
|
+
## docs/consumer/reference-doc.md § rule 230
|
|
2217
|
+
|
|
2218
|
+
- [[@concept-custom-element-black-box]] - Custom element black-box contract
|
|
2219
|
+
|
|
2220
|
+
## docs/consumer/reference-doc.md § rule 231
|
|
2221
|
+
|
|
2222
|
+
- [[@concept-custom-element-prop-cascade]] - `$prop` cascade in nested custom elements
|
|
2223
|
+
|
|
2224
|
+
## docs/consumer/reference-doc.md § rule 233
|
|
2225
|
+
|
|
2226
|
+
- [[@concept-custom-element-cache]] - Custom element cache invalidation
|
|
2227
|
+
|
|
2228
|
+
## docs/consumer/reference-doc.md § rule 234
|
|
2229
|
+
|
|
2230
|
+
- [[@concept-custom-element-error-boundary]] - Custom element error boundary
|
|
2231
|
+
|
|
2232
|
+
## docs/consumer/reference-doc.md § rule 235
|
|
2233
|
+
|
|
2234
|
+
- [[@concept-custom-element-repeat]] - Custom elements under `repeat`
|
|
2235
|
+
|
|
2236
|
+
## docs/consumer/reference-doc.md § rule 239
|
|
2237
|
+
|
|
2238
|
+
- [[@concept-custom-element-action-props]] - Action-chain props (consumer-supplied event handlers)
|
|
2239
|
+
|
|
2240
|
+
## docs/consumer/reference-doc.md § rule 240
|
|
2241
|
+
|
|
2242
|
+
- [[@antipattern-element-variant-top-level]] - Anti-pattern — top-level `variant` field
|
|
2243
|
+
- [[@concept-element-variants]] - Custom element variants — `ElementDefinition.variants`
|
|
2244
|
+
|
|
2245
|
+
## docs/consumer/reference-doc.md § rule 248
|
|
2246
|
+
|
|
2247
|
+
- [[@cli-push]] - `mythik push` — three approved write paths
|
|
2248
|
+
|
|
2249
|
+
## docs/consumer/reference-doc.md § rule 249
|
|
2250
|
+
|
|
2251
|
+
- [[@cli-lint]] - `mythik lint` — anti-pattern detection
|
|
2252
|
+
|
|
2253
|
+
## docs/consumer/reference-doc.md § rule 250
|
|
2254
|
+
|
|
2255
|
+
- [[@concept-storage-overview]] - Storage setup — three tables
|
|
2256
|
+
|
|
2257
|
+
## docs/consumer/reference-doc.md § rule 35
|
|
2258
|
+
|
|
2259
|
+
- [[@antipattern-overflow-hidden-with-shadow]] - Anti-pattern — `overflow: hidden` + `box-shadow` hover
|
|
2260
|
+
|
|
2261
|
+
## docs/consumer/reference-doc.md § rule 62
|
|
2262
|
+
|
|
2263
|
+
- [[@cli-app-spec]] - CLI on AppSpecs
|
|
2264
|
+
|
|
2265
|
+
## docs/consumer/reference-doc.md § rule 64
|
|
2266
|
+
|
|
2267
|
+
- [[@cli-validate]] - `mythik validate`
|
|
2268
|
+
|
|
2269
|
+
## docs/consumer/reference-doc.md § rule 69, 249
|
|
2270
|
+
|
|
2271
|
+
- [[@antipattern-row-literal]] - Anti-pattern — `$row` literal
|
|
2272
|
+
|
|
2273
|
+
## docs/consumer/reference-doc.md § rule 84
|
|
2274
|
+
|
|
2275
|
+
- [[@concept-environment-store]] - EnvironmentStore — version pointers
|
|
2276
|
+
|
|
2277
|
+
## docs/consumer/reference-doc.md § rule 88
|
|
2278
|
+
|
|
2279
|
+
- [[@concept-rollback]] - Rollback — `executeRollback`
|
|
2280
|
+
|
|
2281
|
+
## docs/consumer/reference-doc.md § rule 91
|
|
2282
|
+
|
|
2283
|
+
- [[@concept-storage-custom-names]] - Storage — custom table names + identifier safety
|
|
2284
|
+
|
|
2285
|
+
## docs/consumer/reference-doc.md § rules 114, 128, 129, 160
|
|
2286
|
+
|
|
2287
|
+
- [[@concept-identity-helpers]] - Identity helpers — resolve API
|
|
2288
|
+
|
|
2289
|
+
## docs/consumer/reference-doc.md § rules 117, 225
|
|
2290
|
+
|
|
2291
|
+
- [[@primitive-select]] - `select` — dropdown
|
|
2292
|
+
|
|
2293
|
+
## docs/consumer/reference-doc.md § rules 145-146, 150-151
|
|
2294
|
+
|
|
2295
|
+
- [[@concept-identity-gradients]] - `identity.gradients` — gradient text + buttons
|
|
2296
|
+
|
|
2297
|
+
## docs/consumer/reference-doc.md § rules 147, 152, 220, 222
|
|
2298
|
+
|
|
2299
|
+
- [[@concept-layer-background]] - `tokens.identity.background` — LayerBackground v2
|
|
2300
|
+
|
|
2301
|
+
## docs/consumer/reference-doc.md § rules 154, 222
|
|
2302
|
+
|
|
2303
|
+
- [[@antipattern-background-blobs-prop]] - Anti-pattern — `Box.backgroundBlobs` prop
|
|
2304
|
+
|
|
2305
|
+
## docs/consumer/reference-doc.md § rules 158, 224
|
|
2306
|
+
|
|
2307
|
+
- [[@path-tokens]] - `/tokens/raw` and `/tokens/resolved`
|
|
2308
|
+
|
|
2309
|
+
## docs/consumer/reference-doc.md § rules 161-162
|
|
2310
|
+
|
|
2311
|
+
- [[@concept-identity-border-elevation-override]] - Identity border + elevation overrides
|
|
2312
|
+
|
|
2313
|
+
## docs/consumer/reference-doc.md § rules 171-176, 217
|
|
2314
|
+
|
|
2315
|
+
- [[@concept-background-layer-kinds]] - Background layer kinds
|
|
2316
|
+
|
|
2317
|
+
## docs/consumer/reference-doc.md § rules 174, 179
|
|
2318
|
+
|
|
2319
|
+
- [[@concept-pattern-primitives]] - Pattern primitives (background `pattern` kind)
|
|
2320
|
+
|
|
2321
|
+
## docs/consumer/reference-doc.md § rules 178, 217-220
|
|
2322
|
+
|
|
2323
|
+
- [[@concept-background-stack]] - `BackgroundStack` — root mount
|
|
2324
|
+
|
|
2325
|
+
## docs/consumer/reference-doc.md § rules 180-181, 188
|
|
2326
|
+
|
|
2327
|
+
- [[@concept-animation-triggers]] - Animation triggers — 7 triggers
|
|
2328
|
+
|
|
2329
|
+
## docs/consumer/reference-doc.md § rules 182, 185, 186, 197
|
|
2330
|
+
|
|
2331
|
+
- [[@concept-keyframe-snapshot]] - `KeyframeSnapshot` schema
|
|
2332
|
+
|
|
2333
|
+
## docs/consumer/reference-doc.md § rules 185, 190
|
|
2334
|
+
|
|
2335
|
+
- [[@concept-animation-build-css]] - `buildCSSKeyframes` — web output
|
|
2336
|
+
|
|
2337
|
+
## docs/consumer/reference-doc.md § rules 186, 192
|
|
2338
|
+
|
|
2339
|
+
- [[@concept-animation-build-rn]] - `buildReanimatedSpec` — RN output
|
|
2340
|
+
|
|
2341
|
+
## docs/consumer/reference-doc.md § rules 205-206
|
|
2342
|
+
|
|
2343
|
+
- [[@concept-blob-shapes-catalog]] - `BLOB_CATALOG` — 6 curated shapes
|
|
2344
|
+
|
|
2345
|
+
## docs/consumer/reference-doc.md § rules 205-209, 219-220
|
|
2346
|
+
|
|
2347
|
+
- [[@concept-blob-layer]] - Blob layer v2 — preset + explicit
|
|
2348
|
+
|
|
2349
|
+
## docs/consumer/reference-doc.md § rules 208-209
|
|
2350
|
+
|
|
2351
|
+
- [[@concept-blob-motion]] - Blob motion — drift / rotate / scale
|
|
2352
|
+
|
|
2353
|
+
## docs/consumer/reference-doc.md § rules 211-213
|
|
2354
|
+
|
|
2355
|
+
- [[@concept-shape-animations]] - `useShapeAnimations` — Layer 3 SVG animations
|
|
2356
|
+
|
|
2357
|
+
## docs/consumer/reference-doc.md § rules 227, 236
|
|
2358
|
+
|
|
2359
|
+
- [[@concept-element-render-node]] - `ElementRenderNode` — render tree
|
|
2360
|
+
|
|
2361
|
+
## docs/consumer/reference-doc.md § rules 248, 249
|
|
2362
|
+
|
|
2363
|
+
- [[@antipattern-store-save-bypass]] - Anti-pattern — `store.save()` bypass
|
|
2364
|
+
|
|
2365
|
+
## docs/consumer/reference-doc.md § rules 50, 64
|
|
2366
|
+
|
|
2367
|
+
- [[@antipattern-input-type-name]] - Anti-pattern — `inputType` instead of `type`
|
|
2368
|
+
|
|
2369
|
+
## docs/consumer/reference-doc.md § rules 61, 169
|
|
2370
|
+
|
|
2371
|
+
- [[@antipattern-event-expression]] - Anti-pattern — `$event` expression
|
|
2372
|
+
- [[@concept-preset-dropdown-pattern]] - Preset dropdown pattern (`$bindState` + `$state`)
|
|
2373
|
+
|
|
2374
|
+
## docs/consumer/reference-doc.md § rules 70, 249
|
|
2375
|
+
|
|
2376
|
+
- [[@antipattern-crud-id-collision]] - Anti-pattern — CRUD `:id` collision
|
|
2377
|
+
|
|
2378
|
+
## docs/consumer/reference-doc.md § rules 71, 249
|
|
2379
|
+
|
|
2380
|
+
- [[@antipattern-auth-domains-port]] - Anti-pattern — `:port` in `authDomains`
|
|
2381
|
+
|
|
2382
|
+
## docs/consumer/reference-doc.md § rules 82-89
|
|
2383
|
+
|
|
2384
|
+
- [[@concept-versioned-store]] - VersionedSpecStore — snapshots + patch chain
|
|
2385
|
+
|
|
2386
|
+
## docs/consumer/reference-doc.md § rules 83, 85
|
|
2387
|
+
|
|
2388
|
+
- [[@concept-versioning-snapshots-patches]] - Versioning — snapshots + patch chain
|
|
2389
|
+
|
|
2390
|
+
## docs/consumer/reference-doc.md § rules 86-87
|
|
2391
|
+
|
|
2392
|
+
- [[@concept-promote-gate]] - Promote gate — cross-env validation
|
|
2393
|
+
|
|
2394
|
+
## docs/consumer/reference-doc.md § rules 92, 110
|
|
2395
|
+
|
|
2396
|
+
- [[@cli-versioning-author]] - `--author` flag — activates versioning
|
|
2397
|
+
|
|
2398
|
+
## docs/consumer/reference-doc.md § rules 92, 93
|
|
2399
|
+
|
|
2400
|
+
- [[@cli-history]] - `mythik history` — version history with diffs
|
|
2401
|
+
|
|
2402
|
+
## docs/consumer/reference-doc.md#access-control--roleaccess-vs-screen-roles
|
|
2403
|
+
|
|
2404
|
+
- [[@concept-role-access]] - Access control — `roleAccess` vs ScreenDefinition.roles
|
|
2405
|
+
|
|
2406
|
+
## docs/consumer/reference-doc.md#action-middleware
|
|
2407
|
+
|
|
2408
|
+
- [[@concept-action-middleware]] - Action middleware
|
|
2409
|
+
|
|
2410
|
+
## docs/consumer/reference-doc.md#action-reference
|
|
2411
|
+
|
|
2412
|
+
- [[@action-copy-clipboard]] - `copyToClipboard`
|
|
2413
|
+
- [[@action-navigate]] - `navigateScreen` / `goBackScreen` (and low-level `navigate`/`goBack`)
|
|
2414
|
+
- [[@action-set-state]] - `setState` — write to state
|
|
2415
|
+
- [[@action-toggle-theme]] - `toggleTheme` — switch dark/light
|
|
2416
|
+
|
|
2417
|
+
## docs/consumer/reference-doc.md#animation-system--infrastructure-plan-2-2026-04-18
|
|
2418
|
+
|
|
2419
|
+
- [[@concept-animation-build-css]] - `buildCSSKeyframes` — web output
|
|
2420
|
+
- [[@concept-animation-build-rn]] - `buildReanimatedSpec` — RN output
|
|
2421
|
+
- [[@concept-animation-caps]] - Animation performance caps
|
|
2422
|
+
- [[@concept-animation-recipes]] - 15 animation recipes
|
|
2423
|
+
- [[@concept-animation-triggers]] - Animation triggers — 7 triggers
|
|
2424
|
+
- [[@concept-animations-engine]] - `animations` engine (preferred)
|
|
2425
|
+
- [[@concept-keyframe-snapshot]] - `KeyframeSnapshot` schema
|
|
2426
|
+
- [[@concept-reduced-motion]] - Reduced motion — a11y policy
|
|
2427
|
+
- [[@concept-state-change-animation]] - `stateChange` — state-driven animation
|
|
2428
|
+
- [[@concept-web-only-recipes]] - `WEB_ONLY_RECIPES`
|
|
2429
|
+
|
|
2430
|
+
## docs/consumer/reference-doc.md#animations
|
|
2431
|
+
|
|
2432
|
+
- [[@concept-motion-field]] - `motion` field (legacy Framer-Motion)
|
|
2433
|
+
|
|
2434
|
+
## docs/consumer/reference-doc.md#app-spec--screen-outlet
|
|
2435
|
+
|
|
2436
|
+
- [[@concept-app-spec]] - AppSpec — multi-screen app
|
|
2437
|
+
- [[@concept-navigation]] - Navigation config
|
|
2438
|
+
- [[@concept-spec-types]] - Spec Types — Screen vs App vs Api
|
|
2439
|
+
|
|
2440
|
+
## docs/consumer/reference-doc.md#appspec--app-level-configuration
|
|
2441
|
+
|
|
2442
|
+
- [[@cli-app-spec]] - CLI on AppSpecs
|
|
2443
|
+
- [[@cli-elements]] - `mythik elements` — inspect specific elements
|
|
2444
|
+
|
|
2445
|
+
## docs/consumer/reference-doc.md#audit-sp3
|
|
2446
|
+
|
|
2447
|
+
- [[@concept-api-audit]] - `audit` — auto-inject user + timestamp
|
|
2448
|
+
|
|
2449
|
+
## docs/consumer/reference-doc.md#auth-actions
|
|
2450
|
+
|
|
2451
|
+
- [[@action-login]] - `login` / `logout` / `refreshSession`
|
|
2452
|
+
|
|
2453
|
+
## docs/consumer/reference-doc.md#auth-state-paths-read-only-auto-managed
|
|
2454
|
+
|
|
2455
|
+
- [[@concept-auth-state-paths]] - Auth state paths — `/auth/*`
|
|
2456
|
+
|
|
2457
|
+
## docs/consumer/reference-doc.md#authentication
|
|
2458
|
+
|
|
2459
|
+
- [[@concept-auth-config]] - AppSpec auth config
|
|
2460
|
+
- [[@concept-auth-domains]] - `authDomains` — hostname matcher
|
|
2461
|
+
- [[@expression-auth]] - `$auth` — authenticated user data
|
|
2462
|
+
|
|
2463
|
+
## docs/consumer/reference-doc.md#auto-dark-mode
|
|
2464
|
+
|
|
2465
|
+
- [[@concept-auto-dark-mode]] - Auto dark mode
|
|
2466
|
+
|
|
2467
|
+
## docs/consumer/reference-doc.md#auto-generated-state
|
|
2468
|
+
|
|
2469
|
+
- [[@concept-app-auto-state-paths]] - AppSpec auto-state paths
|
|
2470
|
+
|
|
2471
|
+
## docs/consumer/reference-doc.md#auto-skeleton-zero-config
|
|
2472
|
+
|
|
2473
|
+
- [[@concept-skeleton-auto]] - Auto-skeleton — zero-config loading state
|
|
2474
|
+
|
|
2475
|
+
## docs/consumer/reference-doc.md#cli--spec-modification-via-mythik-cli
|
|
2476
|
+
|
|
2477
|
+
- [[@cli-docs]] - `mythik docs` — bundled AI documentation
|
|
2478
|
+
- [[@cli-overview]] - CLI overview - `mythik <command>`
|
|
2479
|
+
- [[@cli-pull]] - `mythik pull` — export spec
|
|
2480
|
+
|
|
2481
|
+
## docs/consumer/reference-doc.md#cli-token-inspection
|
|
2482
|
+
|
|
2483
|
+
- [[@cli-tokens]] - `mythik tokens` — DNA inspection
|
|
2484
|
+
- [[@concept-cli-tokens-inspect]] - `mythik tokens` — CLI inspection
|
|
2485
|
+
|
|
2486
|
+
## docs/consumer/reference-doc.md#component-variants
|
|
2487
|
+
|
|
2488
|
+
- [[@concept-component-variants]] - Component variants — `tokens.components.{type}.{variant}`
|
|
2489
|
+
|
|
2490
|
+
## docs/consumer/reference-doc.md#configuration--never-pass-keys-inline
|
|
2491
|
+
|
|
2492
|
+
- [[@cli-config]] - CLI config — `.mythikrc` + env vars
|
|
2493
|
+
|
|
2494
|
+
## docs/consumer/reference-doc.md#create--add-item-to-list
|
|
2495
|
+
|
|
2496
|
+
- [[@pattern-tx-create]] - Pattern — CREATE transaction
|
|
2497
|
+
|
|
2498
|
+
## docs/consumer/reference-doc.md#cross-tab-synchronization
|
|
2499
|
+
|
|
2500
|
+
- [[@concept-cross-tab-sync]] - Cross-tab synchronization
|
|
2501
|
+
|
|
2502
|
+
## docs/consumer/reference-doc.md#data-sources-datasources
|
|
2503
|
+
|
|
2504
|
+
- [[@concept-data-sources]] - `dataSources` — reactive GET fetching
|
|
2505
|
+
|
|
2506
|
+
## docs/consumer/reference-doc.md#deep-design-token-system
|
|
2507
|
+
|
|
2508
|
+
- [[@concept-token-system]] - Token system — three-layer resolution
|
|
2509
|
+
|
|
2510
|
+
## docs/consumer/reference-doc.md#delete--remove-item-from-list
|
|
2511
|
+
|
|
2512
|
+
- [[@pattern-tx-delete]] - Pattern — DELETE transaction
|
|
2513
|
+
|
|
2514
|
+
## docs/consumer/reference-doc.md#delete--with-safety-gate
|
|
2515
|
+
|
|
2516
|
+
- [[@cli-delete]] - `mythik delete` — with safety gate
|
|
2517
|
+
|
|
2518
|
+
## docs/consumer/reference-doc.md#derived-state-derive
|
|
2519
|
+
|
|
2520
|
+
- [[@concept-derive]] - `derive` — derived state
|
|
2521
|
+
|
|
2522
|
+
## docs/consumer/reference-doc.md#dna-seeds
|
|
2523
|
+
|
|
2524
|
+
- [[@concept-dna-seeds]] - DNA seeds — 8 inputs that derive everything
|
|
2525
|
+
|
|
2526
|
+
## docs/consumer/reference-doc.md#element-properties
|
|
2527
|
+
|
|
2528
|
+
- [[@concept-element-key]] - Element `key` — forced remount
|
|
2529
|
+
- [[@concept-element-properties]] - Element Properties (full catalogue)
|
|
2530
|
+
|
|
2531
|
+
## docs/consumer/reference-doc.md#element-templates-templates
|
|
2532
|
+
|
|
2533
|
+
- [[@concept-template-children-marker]] - `"$children"` — template children slot
|
|
2534
|
+
- [[@concept-templates]] - `templates` — reusable element definitions
|
|
2535
|
+
|
|
2536
|
+
## docs/consumer/reference-doc.md#export-action
|
|
2537
|
+
|
|
2538
|
+
- [[@action-export]] - `export` — data export
|
|
2539
|
+
- [[@concept-export-action]] - Export — CSV + adapters
|
|
2540
|
+
|
|
2541
|
+
## docs/consumer/reference-doc.md#expression-types
|
|
2542
|
+
|
|
2543
|
+
- [[@expression-and-or-not]] - `$and` / `$or` / `$not` — boolean logic
|
|
2544
|
+
- [[@expression-array]] - `$array` — array operations
|
|
2545
|
+
- [[@expression-auth]] - `$auth` — authenticated user data
|
|
2546
|
+
- [[@expression-binditem]] - `$bindItem` — two-way binding to repeat item
|
|
2547
|
+
- [[@expression-bindstate]] - `$bindState` — two-way binding
|
|
2548
|
+
- [[@expression-breakpoint]] - `$breakpoint` — responsive value
|
|
2549
|
+
- [[@expression-computed]] - `$computed` — registered function
|
|
2550
|
+
- [[@expression-cond]] - `$cond` / `$then` / `$else` — conditional value
|
|
2551
|
+
- [[@expression-date]] - `$date` — date operations
|
|
2552
|
+
- [[@expression-format]] - `$format` — value formatting
|
|
2553
|
+
- [[@expression-group]] - `$group` — group context (inside groupBy)
|
|
2554
|
+
- [[@expression-i18n]] - `$i18n` — translation key
|
|
2555
|
+
- [[@expression-item-index]] - `$item` / `$index` — repeat context
|
|
2556
|
+
- [[@expression-let-ref]] - `$let` / `$ref` — named bindings
|
|
2557
|
+
- [[@expression-math]] - `$math` — arithmetic operations
|
|
2558
|
+
- [[@expression-platform]] - `$platform` — cross-platform value
|
|
2559
|
+
- [[@expression-selection]] - `$selection` — selection state (inside repeat.selection)
|
|
2560
|
+
- [[@expression-state]] - `$state` — read from state
|
|
2561
|
+
- [[@expression-switch]] - `$switch` — multi-branch conditional
|
|
2562
|
+
- [[@expression-token]] - `$token` — design system reference
|
|
2563
|
+
|
|
2564
|
+
## docs/consumer/reference-doc.md#fetch-action-details
|
|
2565
|
+
|
|
2566
|
+
- [[@action-fetch]] - `fetch` — HTTP request
|
|
2567
|
+
|
|
2568
|
+
## docs/consumer/reference-doc.md#fetch-interceptors
|
|
2569
|
+
|
|
2570
|
+
- [[@concept-fetch-interceptors]] - Fetch interceptors
|
|
2571
|
+
|
|
2572
|
+
## docs/consumer/reference-doc.md#file-upload
|
|
2573
|
+
|
|
2574
|
+
- [[@action-upload-file]] - `uploadFile` / `deleteFile`
|
|
2575
|
+
- [[@concept-file-upload-overview]] - File upload — overview
|
|
2576
|
+
- [[@primitive-file-upload]] - `file-upload`
|
|
2577
|
+
|
|
2578
|
+
## docs/consumer/reference-doc.md#fireandforget-mode
|
|
2579
|
+
|
|
2580
|
+
- [[@concept-fire-and-forget]] - `fireAndForget` — background action dispatch
|
|
2581
|
+
|
|
2582
|
+
## docs/consumer/reference-doc.md#font-loading
|
|
2583
|
+
|
|
2584
|
+
- [[@concept-font-loading]] - Font loading — project responsibility
|
|
2585
|
+
|
|
2586
|
+
## docs/consumer/reference-doc.md#form-actions
|
|
2587
|
+
|
|
2588
|
+
- [[@action-form-control]] - `validateForm` / `touchField` / `resetForm`
|
|
2589
|
+
|
|
2590
|
+
## docs/consumer/reference-doc.md#form-state-auto-generated
|
|
2591
|
+
|
|
2592
|
+
- [[@concept-form-state-paths]] - Form state paths — `/ui/forms/{id}/*`
|
|
2593
|
+
|
|
2594
|
+
## docs/consumer/reference-doc.md#form-validation-forms
|
|
2595
|
+
|
|
2596
|
+
- [[@action-submit-form]] - `submitForm` — validate + fetch + notify
|
|
2597
|
+
- [[@concept-forms]] - `forms` — declarative form validation
|
|
2598
|
+
|
|
2599
|
+
## docs/consumer/reference-doc.md#grouped-repeat-groupby
|
|
2600
|
+
|
|
2601
|
+
- [[@concept-repeat-grouped]] - `repeat.groupBy` — grouped lists
|
|
2602
|
+
|
|
2603
|
+
## docs/consumer/reference-doc.md#icon-primitive
|
|
2604
|
+
|
|
2605
|
+
- [[@primitive-icon]] - `icon` — icon glyph
|
|
2606
|
+
|
|
2607
|
+
## docs/consumer/reference-doc.md#identity-system--tokensidentity-controls-visual-identity-beyond-dna
|
|
2608
|
+
|
|
2609
|
+
- [[@concept-identity-overview]] - Identity system - overview
|
|
2610
|
+
|
|
2611
|
+
## docs/consumer/reference-doc.md#interactive-states
|
|
2612
|
+
|
|
2613
|
+
- [[@concept-css-vs-motion]] - CSS vs Motion — auto-detection
|
|
2614
|
+
- [[@concept-interactive-states]] - Interactive states — hover / active / focus / transition
|
|
2615
|
+
|
|
2616
|
+
## docs/consumer/reference-doc.md#layer-3-custom-elements-plan-custom-element-cascade
|
|
2617
|
+
|
|
2618
|
+
- [[@concept-animation-cascade]] - 5-level animation cascade
|
|
2619
|
+
- [[@concept-custom-elements]] - Custom elements (Layer 3)
|
|
2620
|
+
- [[@concept-shape-animations]] - `useShapeAnimations` — Layer 3 SVG animations
|
|
2621
|
+
|
|
2622
|
+
## docs/consumer/reference-doc.md#loadingcontentempty-pattern
|
|
2623
|
+
|
|
2624
|
+
- [[@pattern-loading-content-empty]] - Pattern — Loading / Content / Empty / Error
|
|
2625
|
+
|
|
2626
|
+
## docs/consumer/reference-doc.md#login-screen-example
|
|
2627
|
+
|
|
2628
|
+
- [[@pattern-login-screen]] - Pattern — Login screen
|
|
2629
|
+
|
|
2630
|
+
## docs/consumer/reference-doc.md#manual-skeleton
|
|
2631
|
+
|
|
2632
|
+
- [[@concept-skeleton-manual]] - Manual skeleton — `type: "skeleton"` element
|
|
2633
|
+
|
|
2634
|
+
## docs/consumer/reference-doc.md#modal--drawer-auto-visibility
|
|
2635
|
+
|
|
2636
|
+
- [[@action-drawer]] - `openDrawer` / `closeDrawer`
|
|
2637
|
+
- [[@action-modal]] - `openModal` / `closeModal`
|
|
2638
|
+
- [[@antipattern-modal-drawer-visible]] - Anti-pattern — `visible` on modal/drawer
|
|
2639
|
+
- [[@primitive-modal]] - `modal` — overlay dialog
|
|
2640
|
+
|
|
2641
|
+
## docs/consumer/reference-doc.md#multiple-actions-sequential
|
|
2642
|
+
|
|
2643
|
+
- [[@concept-action-chains]] - Action chains — sequential execution
|
|
2644
|
+
|
|
2645
|
+
## docs/consumer/reference-doc.md#null-semantics-decision-table-frozen
|
|
2646
|
+
|
|
2647
|
+
- [[@concept-animation-null-semantics]] - Animation null semantics
|
|
2648
|
+
|
|
2649
|
+
## docs/consumer/reference-doc.md#patch-input-file-vs-stdin
|
|
2650
|
+
|
|
2651
|
+
- [[@cli-patch]] - `mythik patch` - RFC 6902 patches
|
|
2652
|
+
|
|
2653
|
+
## docs/consumer/reference-doc.md#path-token-references
|
|
2654
|
+
|
|
2655
|
+
- [[@concept-path-references]] - `$path` references inside variants
|
|
2656
|
+
|
|
2657
|
+
## docs/consumer/reference-doc.md#presets-system
|
|
2658
|
+
|
|
2659
|
+
- [[@action-apply-preset]] - `applyPreset` — apply curated DNA+Identity
|
|
2660
|
+
- [[@concept-presets]] - Presets — `PresetDefinition`
|
|
2661
|
+
- [[@concept-register-presets]] - `plugins.registerPresets`
|
|
2662
|
+
- [[@path-presets-available]] - `/presets/available` — registered presets
|
|
2663
|
+
|
|
2664
|
+
## docs/consumer/reference-doc.md#render-error-visibility
|
|
2665
|
+
|
|
2666
|
+
- [[@concept-mythik-renderer]] - `MythikRenderer` - root mount
|
|
2667
|
+
- [[@concept-render-error-visibility]] - Render error visibility
|
|
2668
|
+
|
|
2669
|
+
## docs/consumer/reference-doc.md#repeat-lists
|
|
2670
|
+
|
|
2671
|
+
- [[@concept-repeat]] - `repeat` — render an element per item
|
|
2672
|
+
|
|
2673
|
+
## docs/consumer/reference-doc.md#repeat-selection-selection
|
|
2674
|
+
|
|
2675
|
+
- [[@action-selection]] - `toggleSelection` / `selectAll` / `selectNone`
|
|
2676
|
+
- [[@concept-repeat-selection]] - `repeat.selection` — multi-select pattern
|
|
2677
|
+
|
|
2678
|
+
## docs/consumer/reference-doc.md#rule-109
|
|
2679
|
+
|
|
2680
|
+
- [[@primitive-slider]] - `slider` — numeric range
|
|
2681
|
+
|
|
2682
|
+
## docs/consumer/reference-doc.md#rule-117
|
|
2683
|
+
|
|
2684
|
+
- [[@primitive-select]] - `select` — dropdown
|
|
2685
|
+
|
|
2686
|
+
## docs/consumer/reference-doc.md#rule-119
|
|
2687
|
+
|
|
2688
|
+
- [[@concept-identity-radius-pattern]] - `identity.radiusPattern` — 11 corner options
|
|
2689
|
+
|
|
2690
|
+
## docs/consumer/reference-doc.md#rule-120
|
|
2691
|
+
|
|
2692
|
+
- [[@concept-identity-typography-hierarchy]] - `identity.typographyHierarchy` — 6 heading scales
|
|
2693
|
+
|
|
2694
|
+
## docs/consumer/reference-doc.md#rule-121
|
|
2695
|
+
|
|
2696
|
+
- [[@concept-identity-label-style]] - `identity.labelStyle` — form label formatting
|
|
2697
|
+
|
|
2698
|
+
## docs/consumer/reference-doc.md#rule-122
|
|
2699
|
+
|
|
2700
|
+
- [[@concept-identity-text-decoration]] - `identity.textDecoration` — heading effects (multi-select)
|
|
2701
|
+
|
|
2702
|
+
## docs/consumer/reference-doc.md#rule-123
|
|
2703
|
+
|
|
2704
|
+
- [[@primitive-checkbox]] - `checkbox`
|
|
2705
|
+
|
|
2706
|
+
## docs/consumer/reference-doc.md#rule-130
|
|
2707
|
+
|
|
2708
|
+
- [[@concept-identity-color-scheme]] - `identity.colorScheme` - surface polarity
|
|
2709
|
+
|
|
2710
|
+
## docs/consumer/reference-doc.md#rule-133
|
|
2711
|
+
|
|
2712
|
+
- [[@concept-identity-color-weight]] - `identity.colorWeight` — where color appears
|
|
2713
|
+
|
|
2714
|
+
## docs/consumer/reference-doc.md#rule-134
|
|
2715
|
+
|
|
2716
|
+
- [[@concept-identity-accent-application]] - `identity.accentApplication` — where accent appears
|
|
2717
|
+
|
|
2718
|
+
## docs/consumer/reference-doc.md#rule-141
|
|
2719
|
+
|
|
2720
|
+
- [[@concept-identity-glass-rn]] - Glass surface on React Native — BlurView
|
|
2721
|
+
|
|
2722
|
+
## docs/consumer/reference-doc.md#rule-143
|
|
2723
|
+
|
|
2724
|
+
- [[@concept-identity-icons]] - `identity.icons` — icon defaults
|
|
2725
|
+
|
|
2726
|
+
## docs/consumer/reference-doc.md#rule-144
|
|
2727
|
+
|
|
2728
|
+
- [[@concept-identity-images]] - `identity.images` — image defaults
|
|
2729
|
+
|
|
2730
|
+
## docs/consumer/reference-doc.md#rule-149
|
|
2731
|
+
|
|
2732
|
+
- [[@antipattern-motion-entrance-token]] - Anti-pattern — `identity.motionEntrance` / `motionHover`
|
|
2733
|
+
|
|
2734
|
+
## docs/consumer/reference-doc.md#rule-155
|
|
2735
|
+
|
|
2736
|
+
- [[@antipattern-background-css-token]] - Anti-pattern — `$token: "backgroundCSS"`
|
|
2737
|
+
|
|
2738
|
+
## docs/consumer/reference-doc.md#rule-156
|
|
2739
|
+
|
|
2740
|
+
- [[@primitive-accordion]] - `accordion` — collapsible section
|
|
2741
|
+
|
|
2742
|
+
## docs/consumer/reference-doc.md#rule-165
|
|
2743
|
+
|
|
2744
|
+
- [[@concept-identity-heading-color]] - `identity.headingColor`
|
|
2745
|
+
|
|
2746
|
+
## docs/consumer/reference-doc.md#rule-169
|
|
2747
|
+
|
|
2748
|
+
- [[@concept-preset-dropdown-pattern]] - Preset dropdown pattern (`$bindState` + `$state`)
|
|
2749
|
+
|
|
2750
|
+
## docs/consumer/reference-doc.md#rule-170
|
|
2751
|
+
|
|
2752
|
+
- [[@concept-custom-detection-pattern]] - Custom-detection pattern (preset → "custom" on edit)
|
|
2753
|
+
|
|
2754
|
+
## docs/consumer/reference-doc.md#rule-173
|
|
2755
|
+
|
|
2756
|
+
- [[@concept-background-recipes]] - 8 curated background recipes
|
|
2757
|
+
|
|
2758
|
+
## docs/consumer/reference-doc.md#rule-205
|
|
2759
|
+
|
|
2760
|
+
- [[@concept-blob-shapes-catalog]] - `BLOB_CATALOG` — 6 curated shapes
|
|
2761
|
+
|
|
2762
|
+
## docs/consumer/reference-doc.md#rule-210
|
|
2763
|
+
|
|
2764
|
+
- [[@concept-background-caps]] - `validateBackgroundCaps` — performance caps
|
|
2765
|
+
|
|
2766
|
+
## docs/consumer/reference-doc.md#rule-223
|
|
2767
|
+
|
|
2768
|
+
- [[@concept-identity-animations]] - `identity.animations` — cascade level 1
|
|
2769
|
+
|
|
2770
|
+
## docs/consumer/reference-doc.md#rule-225
|
|
2771
|
+
|
|
2772
|
+
- [[@primitive-select]] - `select` — dropdown
|
|
2773
|
+
|
|
2774
|
+
## docs/consumer/reference-doc.md#rule-231
|
|
2775
|
+
|
|
2776
|
+
- [[@concept-custom-element-prop-cascade]] - `$prop` cascade in nested custom elements
|
|
2777
|
+
|
|
2778
|
+
## docs/consumer/reference-doc.md#rule-233
|
|
2779
|
+
|
|
2780
|
+
- [[@concept-custom-element-cache]] - Custom element cache invalidation
|
|
2781
|
+
|
|
2782
|
+
## docs/consumer/reference-doc.md#rule-234
|
|
2783
|
+
|
|
2784
|
+
- [[@concept-custom-element-error-boundary]] - Custom element error boundary
|
|
2785
|
+
|
|
2786
|
+
## docs/consumer/reference-doc.md#rule-235
|
|
2787
|
+
|
|
2788
|
+
- [[@concept-custom-element-repeat]] - Custom elements under `repeat`
|
|
2789
|
+
|
|
2790
|
+
## docs/consumer/reference-doc.md#rule-240
|
|
2791
|
+
|
|
2792
|
+
- [[@antipattern-element-variant-top-level]] - Anti-pattern — top-level `variant` field
|
|
2793
|
+
|
|
2794
|
+
## docs/consumer/reference-doc.md#rule-248
|
|
2795
|
+
|
|
2796
|
+
- [[@cli-push]] - `mythik push` — three approved write paths
|
|
2797
|
+
|
|
2798
|
+
## docs/consumer/reference-doc.md#rule-249
|
|
2799
|
+
|
|
2800
|
+
- [[@cli-lint]] - `mythik lint` — anti-pattern detection
|
|
2801
|
+
|
|
2802
|
+
## docs/consumer/reference-doc.md#rule-250
|
|
2803
|
+
|
|
2804
|
+
- [[@concept-storage-overview]] - Storage setup — three tables
|
|
2805
|
+
|
|
2806
|
+
## docs/consumer/reference-doc.md#rule-35
|
|
2807
|
+
|
|
2808
|
+
- [[@antipattern-overflow-hidden-with-shadow]] - Anti-pattern — `overflow: hidden` + `box-shadow` hover
|
|
2809
|
+
|
|
2810
|
+
## docs/consumer/reference-doc.md#rule-50
|
|
2811
|
+
|
|
2812
|
+
- [[@antipattern-input-type-name]] - Anti-pattern — `inputType` instead of `type`
|
|
2813
|
+
|
|
2814
|
+
## docs/consumer/reference-doc.md#rule-68
|
|
2815
|
+
|
|
2816
|
+
- [[@concept-custom-jwt-provider]] - Custom JWT provider response mapping
|
|
2817
|
+
|
|
2818
|
+
## docs/consumer/reference-doc.md#rule-69
|
|
2819
|
+
|
|
2820
|
+
- [[@antipattern-row-literal]] - Anti-pattern — `$row` literal
|
|
2821
|
+
|
|
2822
|
+
## docs/consumer/reference-doc.md#rule-70
|
|
2823
|
+
|
|
2824
|
+
- [[@antipattern-crud-id-collision]] - Anti-pattern — CRUD `:id` collision
|
|
2825
|
+
|
|
2826
|
+
## docs/consumer/reference-doc.md#rule-71
|
|
2827
|
+
|
|
2828
|
+
- [[@antipattern-auth-domains-port]] - Anti-pattern — `:port` in `authDomains`
|
|
2829
|
+
|
|
2830
|
+
## docs/consumer/reference-doc.md#rule-83
|
|
2831
|
+
|
|
2832
|
+
- [[@concept-versioning-snapshots-patches]] - Versioning — snapshots + patch chain
|
|
2833
|
+
|
|
2834
|
+
## docs/consumer/reference-doc.md#rule-84
|
|
2835
|
+
|
|
2836
|
+
- [[@concept-environment-store]] - EnvironmentStore — version pointers
|
|
2837
|
+
|
|
2838
|
+
## docs/consumer/reference-doc.md#rule-88
|
|
2839
|
+
|
|
2840
|
+
- [[@concept-rollback]] - Rollback — `executeRollback`
|
|
2841
|
+
|
|
2842
|
+
## docs/consumer/reference-doc.md#rule-93
|
|
2843
|
+
|
|
2844
|
+
- [[@cli-history]] - `mythik history` — version history with diffs
|
|
2845
|
+
|
|
2846
|
+
## docs/consumer/reference-doc.md#rules-114-129
|
|
2847
|
+
|
|
2848
|
+
- [[@concept-identity-helpers]] - Identity helpers — resolve API
|
|
2849
|
+
|
|
2850
|
+
## docs/consumer/reference-doc.md#rules-145-146-150-151
|
|
2851
|
+
|
|
2852
|
+
- [[@concept-identity-gradients]] - `identity.gradients` — gradient text + buttons
|
|
2853
|
+
|
|
2854
|
+
## docs/consumer/reference-doc.md#rules-147-152-220
|
|
2855
|
+
|
|
2856
|
+
- [[@concept-layer-background]] - `tokens.identity.background` — LayerBackground v2
|
|
2857
|
+
|
|
2858
|
+
## docs/consumer/reference-doc.md#rules-154-222
|
|
2859
|
+
|
|
2860
|
+
- [[@antipattern-background-blobs-prop]] - Anti-pattern — `Box.backgroundBlobs` prop
|
|
2861
|
+
|
|
2862
|
+
## docs/consumer/reference-doc.md#rules-158-224
|
|
2863
|
+
|
|
2864
|
+
- [[@path-tokens]] - `/tokens/raw` and `/tokens/resolved`
|
|
2865
|
+
|
|
2866
|
+
## docs/consumer/reference-doc.md#rules-161-162
|
|
2867
|
+
|
|
2868
|
+
- [[@concept-identity-border-elevation-override]] - Identity border + elevation overrides
|
|
2869
|
+
|
|
2870
|
+
## docs/consumer/reference-doc.md#rules-171-176-217
|
|
2871
|
+
|
|
2872
|
+
- [[@concept-background-layer-kinds]] - Background layer kinds
|
|
2873
|
+
|
|
2874
|
+
## docs/consumer/reference-doc.md#rules-174-179
|
|
2875
|
+
|
|
2876
|
+
- [[@concept-pattern-primitives]] - Pattern primitives (background `pattern` kind)
|
|
2877
|
+
|
|
2878
|
+
## docs/consumer/reference-doc.md#rules-178-218-220
|
|
2879
|
+
|
|
2880
|
+
- [[@concept-background-stack]] - `BackgroundStack` — root mount
|
|
2881
|
+
|
|
2882
|
+
## docs/consumer/reference-doc.md#rules-205-209-219-220
|
|
2883
|
+
|
|
2884
|
+
- [[@concept-blob-layer]] - Blob layer v2 — preset + explicit
|
|
2885
|
+
|
|
2886
|
+
## docs/consumer/reference-doc.md#rules-208-209
|
|
2887
|
+
|
|
2888
|
+
- [[@concept-blob-motion]] - Blob motion — drift / rotate / scale
|
|
2889
|
+
|
|
2890
|
+
## docs/consumer/reference-doc.md#rules-220-224
|
|
2891
|
+
|
|
2892
|
+
- [[@concept-mythik-renderer]] - `MythikRenderer` - root mount
|
|
2893
|
+
|
|
2894
|
+
## docs/consumer/reference-doc.md#rules-61-169
|
|
2895
|
+
|
|
2896
|
+
- [[@antipattern-event-expression]] - Anti-pattern — `$event` expression
|
|
2897
|
+
|
|
2898
|
+
## docs/consumer/reference-doc.md#rules-82-89
|
|
2899
|
+
|
|
2900
|
+
- [[@concept-versioned-store]] - VersionedSpecStore — snapshots + patch chain
|
|
2901
|
+
|
|
2902
|
+
## docs/consumer/reference-doc.md#rules-86-87
|
|
2903
|
+
|
|
2904
|
+
- [[@concept-promote-gate]] - Promote gate — cross-env validation
|
|
2905
|
+
|
|
2906
|
+
## docs/consumer/reference-doc.md#rules-92-110
|
|
2907
|
+
|
|
2908
|
+
- [[@cli-versioning-author]] - `--author` flag — activates versioning
|
|
2909
|
+
|
|
2910
|
+
## docs/consumer/reference-doc.md#runtime-token-update
|
|
2911
|
+
|
|
2912
|
+
- [[@action-update-tokens]] - `updateTokens` — runtime token update
|
|
2913
|
+
|
|
2914
|
+
## docs/consumer/reference-doc.md#screen-definition
|
|
2915
|
+
|
|
2916
|
+
- [[@concept-screen-definition]] - ScreenDefinition — per-screen metadata
|
|
2917
|
+
|
|
2918
|
+
## docs/consumer/reference-doc.md#security-guarantees
|
|
2919
|
+
|
|
2920
|
+
- [[@concept-auth-security]] - Auth security guarantees
|
|
2921
|
+
|
|
2922
|
+
## docs/consumer/reference-doc.md#session-persistence
|
|
2923
|
+
|
|
2924
|
+
- [[@concept-session-persistence]] - Session persistence — local / session / memory
|
|
2925
|
+
|
|
2926
|
+
## docs/consumer/reference-doc.md#skeleton-primitive
|
|
2927
|
+
|
|
2928
|
+
- [[@primitive-skeleton]] - `skeleton` — loading placeholder
|
|
2929
|
+
|
|
2930
|
+
## docs/consumer/reference-doc.md#spec-structure-flat-tree
|
|
2931
|
+
|
|
2932
|
+
- [[@concept-spec-structure]] - Spec Structure (Flat Tree)
|
|
2933
|
+
|
|
2934
|
+
## docs/consumer/reference-doc.md#state-policies
|
|
2935
|
+
|
|
2936
|
+
- [[@concept-state-policies]] - State policies — preserve / reset / reload
|
|
2937
|
+
|
|
2938
|
+
## docs/consumer/reference-doc.md#storageadapter-setup-host-app
|
|
2939
|
+
|
|
2940
|
+
- [[@concept-storage-adapter]] - StorageAdapter (host-app)
|
|
2941
|
+
|
|
2942
|
+
## docs/consumer/reference-doc.md#surface-treatment--6-types-transform-all-containers
|
|
2943
|
+
|
|
2944
|
+
- [[@concept-identity-surface]] - `identity.surface` — 6 surface types
|
|
2945
|
+
|
|
2946
|
+
## docs/consumer/reference-doc.md#table-primitive-enhanced
|
|
2947
|
+
|
|
2948
|
+
- [[@primitive-table]] - `table`
|
|
2949
|
+
|
|
2950
|
+
## docs/consumer/reference-doc.md#toast-notifications
|
|
2951
|
+
|
|
2952
|
+
- [[@action-show-notification]] - `showNotification` / `dismissNotification`
|
|
2953
|
+
- [[@primitive-toast-container]] - `toast-container` — toast positioning override
|
|
2954
|
+
|
|
2955
|
+
## docs/consumer/reference-doc.md#toggle--flip-a-boolean-value
|
|
2956
|
+
|
|
2957
|
+
- [[@pattern-tx-toggle]] - Pattern — TOGGLE transaction
|
|
2958
|
+
|
|
2959
|
+
## docs/consumer/reference-doc.md#token-categories--token-paths
|
|
2960
|
+
|
|
2961
|
+
- [[@concept-token-categories]] - Token categories — `$token` paths
|
|
2962
|
+
|
|
2963
|
+
## docs/consumer/reference-doc.md#toon-format-token-efficient-output
|
|
2964
|
+
|
|
2965
|
+
- [[@cli-toon]] - `--toon` - token-efficient format
|
|
2966
|
+
|
|
2967
|
+
## docs/consumer/reference-doc.md#transactions-optimistic-updates
|
|
2968
|
+
|
|
2969
|
+
- [[@concept-transactions]] - Transactions — optimistic CRUD with rollback
|
|
2970
|
+
|
|
2971
|
+
## docs/consumer/reference-doc.md#typed-contract-sp4
|
|
2972
|
+
|
|
2973
|
+
- [[@cli-contract]] - `mythik contract` — frontend↔backend cross-validation
|
|
2974
|
+
|
|
2975
|
+
## docs/consumer/reference-doc.md#update--edit-item-in-list
|
|
2976
|
+
|
|
2977
|
+
- [[@pattern-tx-update]] - Pattern — UPDATE transaction
|
|
2978
|
+
|
|
2979
|
+
## docs/consumer/reference-doc.md#validation
|
|
2980
|
+
|
|
2981
|
+
- [[@concept-validation-checks]] - Inline validation `checks`
|
|
2982
|
+
- [[@concept-validators-catalog]] - Validators catalog
|
|
2983
|
+
|
|
2984
|
+
## docs/consumer/reference-doc.md#visibility-conditions
|
|
2985
|
+
|
|
2986
|
+
- [[@concept-visibility]] - `visible` — show/hide condition
|