Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 30 Jul 00:59
· 52 commits to main since this release

Major Changes

  • 53cc7ae: Restructured public API slightly to reduce bundle size and type complexity

Minor Changes

  • c3d964b: Switched typescript-log to use debug package, see readme for how to enable debug logging

  • 9a6621d: Upgraded dependencies

  • 9f335c8: Add ability for a composition to provide additional props to all components rendered inside it

    This opens up the possibility of compositions to pass width ratio information down to children, enabling sorta container queries

Patch Changes

  • 5bda5b9: Each component and composition must be wrapped in a layout.component() or layout.composition()

    This is because TypeScript does not yet support variadic types, meaning we can't accurately enforce the types on a ...rest style function.

    Before:

    {
        type: 'test-composition',
        contentAreas: {
            main: [
                {
                    type: 'test-with-data',
                    props: { dataDefinitionArgs: { dataArg: 'Foo' } },
                },
            ],
        },
        props: {},
    }
    

    After:

    layout.composition({
        type: 'test-composition',
        contentAreas: {
            main: [
                layout.component({
                    type: 'test-with-data',
                    props: { dataDefinitionArgs: { dataArg: 'Foo' } },
                }),
            ],
        },
        props: {},
    })
    
  • 2d4f44c: Fixed crash when using hooks inside useRuntimeParams

  • fac39be: Simplified types further

  • 97beb57: Fixed issue where middleware is violating the rules of hooks

  • cee52d7: Restore default generic param for DataDefinition type

  • b16bdac: Allow checked composition to be used as a nested composition

  • Updated dependencies [c3d964b]

  • Updated dependencies [5bda5b9]

  • Updated dependencies [2d4f44c]

  • Updated dependencies [9a6621d]

  • Updated dependencies [53cc7ae]

  • Updated dependencies [9f335c8]

  • Updated dependencies [fac39be]

  • Updated dependencies [97beb57]

  • Updated dependencies [cee52d7]

  • Updated dependencies [b16bdac]