libs/common/frame/src/core/small-print-marker/small-print-marker.module.ts
Mark any content with this directive and it will be transferred to an area below the action buttons, above the footer.
<div *talyFrameSmallPrint>
this content will appear below the action buttons, above the footer
</div>
import { NgModule } from '@angular/core';
import { TalyFrameSmallPrintMarkerDirective } from './small-print-marker.directive';
/**
* Mark any content with this directive and it will be transferred to an area below
* the action buttons, above the footer.
* ```
* <div *talyFrameSmallPrint>
* this content will appear below the action buttons, above the footer
* </div>
* ```
*/
@NgModule({
declarations: [TalyFrameSmallPrintMarkerDirective],
exports: [TalyFrameSmallPrintMarkerDirective],
imports: []
})
export class TalyFrameSmallPrintModule {}