Skip to content

sku@10.7.0

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 13 Oct 23:07
· 877 commits to master since this release
d36d559

Minor Changes

  • Playroom: Update to v0.22.0, add playroomScope option (#539)

    You can now use Playroom's new custom scope feature by providing a playroomScope file.

    EXAMPLE USAGE

    sku.config.js:

    module.exports = {
      playroomScope: './playroom/useScope.ts',
    };

    useScope.ts:

    import { useToast } from 'braid-design-system';
    
    export default function useScope() {
      return {
        showToast: useToast(),
      };
    }