Skip to content

Commit

Permalink
chore(angular-19): some build warning fixes on fusion-doc app
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyKIron committed Nov 28, 2024
1 parent 6c1df98 commit c508e26
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@
"styles": [
"projects/fusion-docs/src/styles.scss"
],
"stylePreprocessorOptions": {
"sass": {
"silenceDeprecations": ["import","mixed-decls"]
}
},
"scripts": [],
"extractLicenses": false,
"sourceMap": true,
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {TestIdsService} from '@ironsource/fusion-ui/services/test-ids';
@Component({
selector: 'fusion-search',
standalone: true, // todo: just for storybook to work, will be fixed in storybook 8.5.0
imports: [CommonModule, ReactiveFormsModule, InputComponent, GenericPipe],
imports: [CommonModule, ReactiveFormsModule, InputComponent],
host: {class: 'fusion-v4'},
templateUrl: './search-v4.component.html',
styleUrls: ['./search-v4.component.scss'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {TestIdsService} from '@ironsource/fusion-ui/services/test-ids';
selector: 'fusion-tooltip-content',
standalone: true, // todo: just for storybook to work, will be fixed in storybook 8.5.0
host: {class: 'fusion-v4'},
imports: [CommonModule, GenericPipe],
imports: [CommonModule],
template: ` <div class="fu-tooltip-component" [attr.data-testid]="testId">
<ng-container *ngIf="!tooltipInnerText" [ngTemplateOutlet]="temp"></ng-container>
<span *ngIf="tooltipInnerText">{{ tooltipInnerText }}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {TestIdsService} from '@ironsource/fusion-ui/services/test-ids';
selector: 'fusion-tooltip',
standalone: true, // todo: just for storybook to work, will be fixed in storybook 8.5.0
host: {class: 'fusion-v4'},
imports: [CommonModule, TooltipV4Directive, TooltipContentV4Directive, GenericPipe],
imports: [CommonModule, TooltipV4Directive, TooltipContentV4Directive],
template: `
<div class="tooltip-container" [attr.data-testid]="testId" [fusionTooltip]="tooltipText" [configuration]="tooltipConfig">
<div #tooltipTriggerElement style="width: 100%; display: block;">
Expand Down

0 comments on commit c508e26

Please sign in to comment.