Skip to content

Commit

Permalink
chore(deps): update taiga-ui to v0.114.1 (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiga-family-bot authored Jul 13, 2024
1 parent 0aeca8e commit 164d18f
Show file tree
Hide file tree
Showing 6 changed files with 3,354 additions and 1,002 deletions.
4,336 changes: 3,344 additions & 992 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@
"@nx/workspace": "19.4.3",
"@release-it-plugins/workspaces": "4.2.0",
"@release-it/conventional-changelog": "8.0.1",
"@taiga-ui/browserslist-config": "0.104.0",
"@taiga-ui/commitlint-config": "0.104.0",
"@taiga-ui/eslint-plugin-experience": "0.104.0",
"@taiga-ui/prettier-config": "0.104.0",
"@taiga-ui/stylelint-config": "0.104.0",
"@taiga-ui/tsconfig": "0.104.0",
"@taiga-ui/browserslist-config": "0.114.1",
"@taiga-ui/commitlint-config": "0.114.1",
"@taiga-ui/eslint-plugin-experience": "0.114.1",
"@taiga-ui/prettier-config": "0.114.1",
"@taiga-ui/stylelint-config": "0.114.1",
"@taiga-ui/tsconfig": "0.114.1",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/node": "20.14.10",
Expand Down
2 changes: 1 addition & 1 deletion projects/demo/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ import {bootstrapApplication} from '@angular/platform-browser';
import {AppComponent} from './app/app.component';
import {appConfig} from './app/app.config';

bootstrapApplication(AppComponent, appConfig).catch(err => console.error(err));
bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));
2 changes: 1 addition & 1 deletion projects/ng-dompurify/lib/tokens/sanitize-style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import type {SanitizeStyle} from '../types/sanitize-style';
export const SANITIZE_STYLE = new InjectionToken<SanitizeStyle>(
'[SANITIZE_STYLE]: A function that sanitizes value for a CSS rule',
{
factory: () => value => value,
factory: () => (value) => value,
providedIn: 'root',
},
);
2 changes: 1 addition & 1 deletion projects/ng-dompurify/tests/ng-dompurify.pipe.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ describe('NgDompurifyPipe', () => {
expect(testComponent.element.nativeElement.getAttribute('style')).toBeNull();
});

it('throws error by using SCRIPT security context', done => {
it('throws error by using SCRIPT security context', (done) => {
try {
testComponent.context = SecurityContext.SCRIPT;
fixture.detectChanges();
Expand Down
2 changes: 1 addition & 1 deletion projects/ng-dompurify/tests/test-samples/sanitize-style.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import type {SanitizeStyle} from '../../lib/types/sanitize-style';

export const sanitizeStyle: SanitizeStyle = style => (style.includes('(') ? '' : style);
export const sanitizeStyle: SanitizeStyle = (style) => (style.includes('(') ? '' : style);

0 comments on commit 164d18f

Please sign in to comment.