libs/common/frame/src/core/sidebar-marker/sidebar-marker.module.ts
Mark any content with this directive and it will be transferred to the sidebar if available/visible.
<div *talyFrameSidebar>
this content will appear in the sidebar of the frame if shown and hidden here
</div>
import { NgModule } from '@angular/core';
import { TalySidebarMarkerDirective } from './sidebar-marker.directive';
/**
* Mark any content with this directive and it will be transferred to the sidebar
* if available/visible.
* ```
* <div *talyFrameSidebar>
* this content will appear in the sidebar of the frame if shown and hidden here
* </div>
* ```
*/
@NgModule({
declarations: [TalySidebarMarkerDirective],
exports: [TalySidebarMarkerDirective],
imports: []
})
export class TalySidebarMarkerModule {}