From e95fdd387f7199f520830d5d292b553e9c810cde Mon Sep 17 00:00:00 2001 From: christophercr Date: Thu, 30 May 2019 14:33:08 +0200 Subject: [PATCH] refactor(stark-all): remove usages of starkSvgViewBox directive where it is no longer needed ISSUES CLOSED: #1245 --- packages/stark-ui/package.json | 2 +- .../modules/action-bar/action-bar.module.ts | 3 +- .../components/action-bar.component.html | 7 +- .../src/modules/app-data/app-data.module.ts | 3 +- .../components/app-data.component.html | 4 +- .../modules/app-logout/app-logout.module.ts | 3 +- .../components/app-logout.component.html | 2 +- .../src/modules/app-menu/app-menu.module.ts | 12 +-- .../components/app-menu-item.component.html | 8 +- .../components/collapsible.component.html | 2 +- .../components/alert-dialog.component.html | 2 +- .../generic-search.component.html | 10 +- .../components/message-pane.component.html | 12 +-- .../minimap/components/minimap.component.html | 4 +- .../src/modules/minimap/minimap.module.ts | 2 - .../components/pagination.component.html | 16 +-- .../modules/pagination/pagination.module.ts | 2 - .../components/route-search.component.html | 4 +- .../directives/svg-view-box.directive.spec.ts | 4 +- .../table/components/column.component.html | 13 +-- .../table/components/table.component.html | 16 +-- .../src/modules/table/table.module.ts | 2 - .../toast-notification.component.html | 6 +- showcase/package-lock.json | 18 ++-- showcase/src/app/app.component.html | 15 ++- showcase/src/app/demo-ui/demo-ui.module.ts | 2 - showcase/src/app/shared/shared.module.ts | 7 +- .../styleguide-button-page.component.html | 100 +++++++++--------- .../styleguide-header-page.component.ts | 18 ++-- .../styleguide-layout-page.component.html | 2 +- .../pages/home/home-page.component.html | 10 +- .../src/assets/examples/button/accent.html | 10 +- .../src/assets/examples/button/alert.html | 10 +- showcase/src/assets/examples/button/alt.html | 10 +- .../src/assets/examples/button/basic.html | 10 +- .../src/assets/examples/button/disabled.html | 10 +- .../src/assets/examples/button/neutral.html | 10 +- .../src/assets/examples/button/primary.html | 10 +- .../src/assets/examples/button/success.html | 10 +- showcase/src/assets/examples/button/warn.html | 10 +- .../src/assets/examples/button/white.html | 10 +- starter/src/app/app.component.html | 10 +- starter/src/app/app.module.ts | 2 - 43 files changed, 184 insertions(+), 239 deletions(-) diff --git a/packages/stark-ui/package.json b/packages/stark-ui/package.json index bb5c059e34..094173d675 100644 --- a/packages/stark-ui/package.json +++ b/packages/stark-ui/package.json @@ -27,7 +27,7 @@ }, "dependencies": { "@angular/material-moment-adapter": "^7.0.0", - "@mdi/angular-material": "^3.3.92", + "@mdi/angular-material": "^3.6.95", "@types/lodash-es": "^4.17.1", "@types/nouislider": "^9.0.4", "@types/prismjs": "^1.16.0", diff --git a/packages/stark-ui/src/modules/action-bar/action-bar.module.ts b/packages/stark-ui/src/modules/action-bar/action-bar.module.ts index 65e845fe67..4e0658d703 100644 --- a/packages/stark-ui/src/modules/action-bar/action-bar.module.ts +++ b/packages/stark-ui/src/modules/action-bar/action-bar.module.ts @@ -4,13 +4,12 @@ import { MatButtonModule } from "@angular/material/button"; import { MatIconModule } from "@angular/material/icon"; import { MatMenuModule } from "@angular/material/menu"; import { MatTooltipModule } from "@angular/material/tooltip"; -import { StarkSvgViewBoxModule } from "../svg-view-box/svg-view-box.module"; import { StarkActionBarComponent } from "./components"; import { TranslateModule } from "@ngx-translate/core"; @NgModule({ declarations: [StarkActionBarComponent], - imports: [CommonModule, StarkSvgViewBoxModule, MatButtonModule, MatIconModule, MatMenuModule, MatTooltipModule, TranslateModule], + imports: [CommonModule, MatButtonModule, MatIconModule, MatMenuModule, MatTooltipModule, TranslateModule], exports: [StarkActionBarComponent] }) export class StarkActionBarModule {} diff --git a/packages/stark-ui/src/modules/action-bar/components/action-bar.component.html b/packages/stark-ui/src/modules/action-bar/components/action-bar.component.html index c4728ef100..5d5820a96b 100644 --- a/packages/stark-ui/src/modules/action-bar/components/action-bar.component.html +++ b/packages/stark-ui/src/modules/action-bar/components/action-bar.component.html @@ -21,7 +21,6 @@ type="button" > @@ -46,7 +45,7 @@ (click)="toggleExtendedActionBar()" type="button" > - +
- + {{ action.label }}
diff --git a/packages/stark-ui/src/modules/app-data/app-data.module.ts b/packages/stark-ui/src/modules/app-data/app-data.module.ts index 1d3eb1e972..ba652083dc 100644 --- a/packages/stark-ui/src/modules/app-data/app-data.module.ts +++ b/packages/stark-ui/src/modules/app-data/app-data.module.ts @@ -10,11 +10,10 @@ import { mergeUiTranslations } from "../../common/translations"; import { translationsEn } from "./assets/translations/en"; import { translationsNl } from "./assets/translations/nl"; import { StarkLocale } from "@nationalbankbelgium/stark-core"; -import { StarkSvgViewBoxModule } from "../svg-view-box"; @NgModule({ declarations: [StarkAppDataComponent], - imports: [CommonModule, StarkSvgViewBoxModule, MatButtonModule, MatIconModule, MatTooltipModule, TranslateModule], + imports: [CommonModule, MatButtonModule, MatIconModule, MatTooltipModule, TranslateModule], exports: [StarkAppDataComponent] }) export class StarkAppDataModule { diff --git a/packages/stark-ui/src/modules/app-data/components/app-data.component.html b/packages/stark-ui/src/modules/app-data/components/app-data.component.html index 15c7afdd85..29b084fd13 100644 --- a/packages/stark-ui/src/modules/app-data/components/app-data.component.html +++ b/packages/stark-ui/src/modules/app-data/components/app-data.component.html @@ -10,7 +10,7 @@
@@ -25,7 +25,7 @@ mat-button [matTooltip]="'STARK.ICONS.APP_DATA' | translate" > - +
diff --git a/packages/stark-ui/src/modules/app-logout/app-logout.module.ts b/packages/stark-ui/src/modules/app-logout/app-logout.module.ts index 1a02149478..614dfba0d0 100644 --- a/packages/stark-ui/src/modules/app-logout/app-logout.module.ts +++ b/packages/stark-ui/src/modules/app-logout/app-logout.module.ts @@ -5,7 +5,6 @@ import { MatButtonModule } from "@angular/material/button"; import { TranslateModule, TranslateService } from "@ngx-translate/core"; import { StarkLocale } from "@nationalbankbelgium/stark-core"; import { StarkAppLogoutComponent } from "./components"; -import { StarkSvgViewBoxModule } from "../svg-view-box/svg-view-box.module"; import { translationsEn } from "./assets/translations/en"; import { translationsFr } from "./assets/translations/fr"; import { translationsNl } from "./assets/translations/nl"; @@ -14,7 +13,7 @@ import { mergeUiTranslations } from "../../common/translations"; @NgModule({ declarations: [StarkAppLogoutComponent], exports: [StarkAppLogoutComponent], - imports: [MatIconModule, StarkSvgViewBoxModule, TranslateModule, MatTooltipModule, MatButtonModule] + imports: [MatIconModule, TranslateModule, MatTooltipModule, MatButtonModule] }) export class StarkAppLogoutModule { /** diff --git a/packages/stark-ui/src/modules/app-logout/components/app-logout.component.html b/packages/stark-ui/src/modules/app-logout/components/app-logout.component.html index a2a255b633..1a26ff60c6 100644 --- a/packages/stark-ui/src/modules/app-logout/components/app-logout.component.html +++ b/packages/stark-ui/src/modules/app-logout/components/app-logout.component.html @@ -1,3 +1,3 @@ diff --git a/packages/stark-ui/src/modules/app-menu/app-menu.module.ts b/packages/stark-ui/src/modules/app-menu/app-menu.module.ts index 76366f9922..e7383d1971 100644 --- a/packages/stark-ui/src/modules/app-menu/app-menu.module.ts +++ b/packages/stark-ui/src/modules/app-menu/app-menu.module.ts @@ -7,20 +7,10 @@ import { MatListModule } from "@angular/material/list"; import { TranslateModule } from "@ngx-translate/core"; import { UIRouterModule } from "@uirouter/angular"; import { StarkAppMenuComponent, StarkAppMenuItemComponent } from "./components"; -import { StarkSvgViewBoxModule } from "../svg-view-box/svg-view-box.module"; @NgModule({ declarations: [StarkAppMenuComponent, StarkAppMenuItemComponent], - imports: [ - CommonModule, - MatListModule, - MatDividerModule, - MatExpansionModule, - MatIconModule, - StarkSvgViewBoxModule, - TranslateModule, - UIRouterModule - ], + imports: [CommonModule, MatListModule, MatDividerModule, MatExpansionModule, MatIconModule, TranslateModule, UIRouterModule], exports: [StarkAppMenuComponent, StarkAppMenuItemComponent] }) export class StarkAppMenuModule {} diff --git a/packages/stark-ui/src/modules/app-menu/components/app-menu-item.component.html b/packages/stark-ui/src/modules/app-menu/components/app-menu-item.component.html index 5b1984d655..31780c5e06 100644 --- a/packages/stark-ui/src/modules/app-menu/components/app-menu-item.component.html +++ b/packages/stark-ui/src/modules/app-menu/components/app-menu-item.component.html @@ -7,13 +7,7 @@ [disableRipple]="!menuGroup.isEnabled" (click)="onClick()" > - + {{ menuGroup.label }} diff --git a/packages/stark-ui/src/modules/collapsible/components/collapsible.component.html b/packages/stark-ui/src/modules/collapsible/components/collapsible.component.html index 6424a77588..b03c46c941 100644 --- a/packages/stark-ui/src/modules/collapsible/components/collapsible.component.html +++ b/packages/stark-ui/src/modules/collapsible/components/collapsible.component.html @@ -1,7 +1,7 @@ - + {{ titleLabel }} diff --git a/packages/stark-ui/src/modules/dialogs/components/alert-dialog.component.html b/packages/stark-ui/src/modules/dialogs/components/alert-dialog.component.html index 9277bac0e2..f5318b6351 100644 --- a/packages/stark-ui/src/modules/dialogs/components/alert-dialog.component.html +++ b/packages/stark-ui/src/modules/dialogs/components/alert-dialog.component.html @@ -1,5 +1,5 @@

-   +   {{ content.title || "" | translate }}

diff --git a/packages/stark-ui/src/modules/generic-search/components/generic-search/generic-search.component.html b/packages/stark-ui/src/modules/generic-search/components/generic-search/generic-search.component.html index 1e57b3e946..bf56246194 100644 --- a/packages/stark-ui/src/modules/generic-search/components/generic-search/generic-search.component.html +++ b/packages/stark-ui/src/modules/generic-search/components/generic-search/generic-search.component.html @@ -25,7 +25,6 @@ {{ normalizedFormButtonsConfig.new.label }} @@ -42,7 +41,6 @@ {{ normalizedFormButtonsConfig.reset.label }} @@ -57,7 +55,6 @@ {{ normalizedFormButtonsConfig.search.label }} @@ -72,12 +69,7 @@ (click)="formButton.onClick()" type="button" > - + {{ formButton.label | translate }} diff --git a/packages/stark-ui/src/modules/message-pane/components/message-pane.component.html b/packages/stark-ui/src/modules/message-pane/components/message-pane.component.html index 4fefaee626..bec7f3c90c 100644 --- a/packages/stark-ui/src/modules/message-pane/components/message-pane.component.html +++ b/packages/stark-ui/src/modules/message-pane/components/message-pane.component.html @@ -80,9 +80,9 @@
- +
diff --git a/packages/stark-ui/src/modules/minimap/minimap.module.ts b/packages/stark-ui/src/modules/minimap/minimap.module.ts index 652cfb5a58..b191395565 100644 --- a/packages/stark-ui/src/modules/minimap/minimap.module.ts +++ b/packages/stark-ui/src/modules/minimap/minimap.module.ts @@ -8,7 +8,6 @@ import { MatTooltipModule } from "@angular/material/tooltip"; import { CommonModule } from "@angular/common"; import { TranslateModule } from "@ngx-translate/core"; import { MatMenuModule } from "@angular/material/menu"; -import { StarkSvgViewBoxModule } from "../svg-view-box"; @NgModule({ declarations: [StarkMinimapComponent], @@ -20,7 +19,6 @@ import { StarkSvgViewBoxModule } from "../svg-view-box"; MatIconModule, MatTooltipModule, MatMenuModule, - StarkSvgViewBoxModule, TranslateModule ], exports: [StarkMinimapComponent] diff --git a/packages/stark-ui/src/modules/pagination/components/pagination.component.html b/packages/stark-ui/src/modules/pagination/components/pagination.component.html index 9e7b93b177..619bbbcd80 100644 --- a/packages/stark-ui/src/modules/pagination/components/pagination.component.html +++ b/packages/stark-ui/src/modules/pagination/components/pagination.component.html @@ -2,13 +2,13 @@
  • @@ -27,13 +27,13 @@
@@ -68,13 +68,13 @@
  • @@ -91,13 +91,13 @@
diff --git a/packages/stark-ui/src/modules/pagination/pagination.module.ts b/packages/stark-ui/src/modules/pagination/pagination.module.ts index 496ed280b0..d7628e9b03 100644 --- a/packages/stark-ui/src/modules/pagination/pagination.module.ts +++ b/packages/stark-ui/src/modules/pagination/pagination.module.ts @@ -7,7 +7,6 @@ import { MatButtonModule } from "@angular/material/button"; import { MatTooltipModule } from "@angular/material/tooltip"; import { MatPaginatorModule } from "@angular/material/paginator"; import { StarkPaginationComponent } from "./components"; -import { StarkSvgViewBoxModule } from "../svg-view-box/svg-view-box.module"; import { StarkRestrictInputDirectiveModule } from "../restrict-input-directive/restrict-input-directive.module"; import { StarkDropdownModule } from "../dropdown/dropdown.module"; @@ -23,7 +22,6 @@ import { StarkDropdownModule } from "../dropdown/dropdown.module"; MatPaginatorModule, MatTooltipModule, StarkRestrictInputDirectiveModule, - StarkSvgViewBoxModule, StarkDropdownModule ] }) diff --git a/packages/stark-ui/src/modules/route-search/components/route-search.component.html b/packages/stark-ui/src/modules/route-search/components/route-search.component.html index 7ecc89744d..e3175e35d0 100644 --- a/packages/stark-ui/src/modules/route-search/components/route-search.component.html +++ b/packages/stark-ui/src/modules/route-search/components/route-search.component.html @@ -7,7 +7,7 @@ (click)="show()" [matTooltip]="'STARK.ROUTE_SEARCH.ABOUT' | translate" > - +
@@ -21,7 +21,7 @@

{{ option.label }}

diff --git a/packages/stark-ui/src/modules/svg-view-box/directives/svg-view-box.directive.spec.ts b/packages/stark-ui/src/modules/svg-view-box/directives/svg-view-box.directive.spec.ts index f88197f357..7b818e6e8a 100644 --- a/packages/stark-ui/src/modules/svg-view-box/directives/svg-view-box.directive.spec.ts +++ b/packages/stark-ui/src/modules/svg-view-box/directives/svg-view-box.directive.spec.ts @@ -16,13 +16,13 @@ describe("SvgViewBoxDirective", () => { let fixture: ComponentFixture; function getTemplate(svgViewBoxDirective: string, viewBoxAttribute?: string): string { - return (` + return `
dummy icon
-`); +`; } function initializeComponentFixture(): void { diff --git a/packages/stark-ui/src/modules/table/components/column.component.html b/packages/stark-ui/src/modules/table/components/column.component.html index a3762659c6..f3f8c7ef1b 100644 --- a/packages/stark-ui/src/modules/table/components/column.component.html +++ b/packages/stark-ui/src/modules/table/components/column.component.html @@ -6,19 +6,14 @@
{{ headerLabel | translate }} - - - + + + {{ sortPriority }}
diff --git a/packages/stark-ui/src/modules/table/components/table.component.html b/packages/stark-ui/src/modules/table/components/table.component.html index ac8b054277..03d40051dc 100644 --- a/packages/stark-ui/src/modules/table/components/table.component.html +++ b/packages/stark-ui/src/modules/table/components/table.component.html @@ -10,17 +10,12 @@
@@ -34,12 +29,7 @@ />
diff --git a/packages/stark-ui/src/modules/table/table.module.ts b/packages/stark-ui/src/modules/table/table.module.ts index 51d670297c..251cf49b92 100644 --- a/packages/stark-ui/src/modules/table/table.module.ts +++ b/packages/stark-ui/src/modules/table/table.module.ts @@ -17,7 +17,6 @@ import { StarkTableColumnComponent, StarkTableComponent } from "./components"; import { StarkTableMultisortDialogComponent } from "./components/dialogs/multisort.component"; import { StarkActionBarModule } from "../action-bar/action-bar.module"; import { StarkPaginationModule } from "../pagination/pagination.module"; -import { StarkSvgViewBoxModule } from "../svg-view-box/svg-view-box.module"; import { StarkMinimapModule } from "../minimap/minimap.module"; import { translationsEn } from "./assets/translations/en"; import { translationsFr } from "./assets/translations/fr"; @@ -45,7 +44,6 @@ import { mergeUiTranslations } from "../../common/translations"; TranslateModule, StarkActionBarModule, StarkPaginationModule, - StarkSvgViewBoxModule, StarkMinimapModule ] }) diff --git a/packages/stark-ui/src/modules/toast-notification/components/toast-notification.component.html b/packages/stark-ui/src/modules/toast-notification/components/toast-notification.component.html index 608bdfadc9..7fc6c7e5ef 100644 --- a/packages/stark-ui/src/modules/toast-notification/components/toast-notification.component.html +++ b/packages/stark-ui/src/modules/toast-notification/components/toast-notification.component.html @@ -1,7 +1,7 @@
- - - + + + diff --git a/showcase/package-lock.json b/showcase/package-lock.json index 2f370fc276..313b09db99 100644 --- a/showcase/package-lock.json +++ b/showcase/package-lock.json @@ -1374,10 +1374,10 @@ "requires": { "@angular-builders/custom-webpack": "^7.3.1", "@angular-builders/dev-server": "^7.3.1", - "@angular-devkit/build-angular": "0.13.9", + "@angular-devkit/build-angular": "^0.13.0", "@babel/core": "^7.2.2", "@babel/preset-env": "^7.2.3", - "@types/webpack": "4.4.32", + "@types/webpack": "^4.4.24", "babel-loader": "^8.0.5", "base-href-webpack-plugin": "^2.0.0", "codelyzer": "^4.5.0", @@ -1408,7 +1408,7 @@ "@ngrx/store": "^7.1.0", "@ngrx/store-devtools": "^7.1.0", "@ngx-translate/core": "^11.0.1", - "@types/lodash-es": "4.17.3", + "@types/lodash-es": "^4.17.1", "@types/uuid": "^3.4.4", "@uirouter/angular": "^3.0.0", "cerialize": "^0.1.18", @@ -1424,7 +1424,7 @@ "version": "file:../dist/packages-dist/stark-rbac/nationalbankbelgium-stark-rbac-10.0.0-beta.7-e0b3ee03.tgz", "integrity": "sha512-JfZ0Y69RPXZKwphKx3YSkhgC+PbFr0vkgo4eMExW6PxuIYqpOoIRNxzG/gwP6ldVfHDA34ZgGpf+BXMMxxYFgw==", "requires": { - "@types/lodash-es": "4.17.3" + "@types/lodash-es": "^4.17.1" } }, "@nationalbankbelgium/stark-testing": { @@ -1432,8 +1432,8 @@ "integrity": "sha512-RRJ1XlICfL4jQ8qZbSQMoKkzxIqIHZTcFQx2wNymSlTciNGh8eWsajuLY4dMOXpae7heiNM53NymOlv5GHp7SQ==", "dev": true, "requires": { - "@types/jasmine": "3.3.13", - "@types/node": "8.10.48", + "@types/jasmine": "^3.3.12", + "@types/node": "^8.10.37", "coveralls": "^3.0.2", "istanbul-lib-instrument": "^3.0.0", "jasmine-core": "^3.3.0", @@ -1451,7 +1451,7 @@ "karma-typescript-angular2-transform": "^4.0.0", "karma-typescript-es6-transform": "^4.0.0", "protractor": "^5.4.2", - "puppeteer": "1.17.0" + "puppeteer": "^1.11.0" }, "dependencies": { "istanbul-lib-coverage": { @@ -1488,8 +1488,8 @@ "integrity": "sha512-TqXA1YrtC9Eixtx9E1bKuRWhCcgNORP/64e2dSVhzTi5uHTv7pQpUwnFjmhIptmoskOYz7oHm7n89OdWGfF7Bg==", "requires": { "@angular/material-moment-adapter": "^7.0.0", - "@mdi/angular-material": "^3.3.92", - "@types/lodash-es": "4.17.3", + "@mdi/angular-material": "^3.6.95", + "@types/lodash-es": "^4.17.1", "@types/nouislider": "^9.0.4", "@types/prismjs": "^1.16.0", "angular2-text-mask": "^9.0.0", diff --git a/showcase/src/app/app.component.html b/showcase/src/app/app.component.html index f1f5031bf8..269756e4c2 100644 --- a/showcase/src/app/app.component.html +++ b/showcase/src/app/app.component.html @@ -23,10 +23,10 @@
@@ -75,10 +75,10 @@
diff --git a/showcase/src/app/demo-ui/demo-ui.module.ts b/showcase/src/app/demo-ui/demo-ui.module.ts index 405fa635e6..8dec3f5f85 100644 --- a/showcase/src/app/demo-ui/demo-ui.module.ts +++ b/showcase/src/app/demo-ui/demo-ui.module.ts @@ -40,7 +40,6 @@ import { StarkProgressIndicatorModule, StarkRouteSearchModule, StarkSliderModule, - StarkSvgViewBoxModule, StarkTableModule, StarkTransformInputDirectiveModule } from "@nationalbankbelgium/stark-ui"; @@ -133,7 +132,6 @@ import { StarkPrettyPrintModule, StarkRouteSearchModule, StarkSliderModule, - StarkSvgViewBoxModule, StarkTableModule, StoreModule.forFeature("DemoGenericSearch", demoGenericSearchReducers) ], diff --git a/showcase/src/app/shared/shared.module.ts b/showcase/src/app/shared/shared.module.ts index 5fbe1c1116..3f29187b0b 100644 --- a/showcase/src/app/shared/shared.module.ts +++ b/showcase/src/app/shared/shared.module.ts @@ -7,7 +7,7 @@ import { MatTabsModule } from "@angular/material/tabs"; import { MatTooltipModule } from "@angular/material/tooltip"; import { CommonModule } from "@angular/common"; import { Inject, NgModule } from "@angular/core"; -import { StarkPrettyPrintModule, StarkSvgViewBoxModule } from "@nationalbankbelgium/stark-ui"; +import { StarkPrettyPrintModule } from "@nationalbankbelgium/stark-ui"; import { TranslateModule } from "@ngx-translate/core"; import { FlexLayoutModule } from "@angular/flex-layout"; import { @@ -33,13 +33,12 @@ import { FileService } from "./services"; MatTabsModule, CommonModule, StarkPrettyPrintModule, - TranslateModule, - StarkSvgViewBoxModule // is needed here for directive to work in the different modules + TranslateModule ], providers: [FileService], declarations: [ExampleViewerComponent, ReferenceBlockComponent, TableOfContentsComponent], entryComponents: [], - exports: [ExampleViewerComponent, ReferenceBlockComponent, TableOfContentsComponent, FlexLayoutModule, StarkSvgViewBoxModule] + exports: [ExampleViewerComponent, ReferenceBlockComponent, TableOfContentsComponent, FlexLayoutModule] }) export class SharedModule { public constructor( diff --git a/showcase/src/app/styleguide/pages/button/styleguide-button-page.component.html b/showcase/src/app/styleguide/pages/button/styleguide-button-page.component.html index 13ec12b0a9..6ffa05c9db 100644 --- a/showcase/src/app/styleguide/pages/button/styleguide-button-page.component.html +++ b/showcase/src/app/styleguide/pages/button/styleguide-button-page.component.html @@ -6,11 +6,11 @@

SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST

- - - - - + + + + +
@@ -19,11 +19,11 @@

SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST

- - - - - + + + + +
@@ -32,11 +32,11 @@

SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST

- - - - - + + + + + @@ -45,11 +45,11 @@

SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST

- - - - - + + + + + @@ -58,11 +58,11 @@

SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST

- - - - - + + + + + @@ -71,11 +71,11 @@

SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST

- - - - - + + + + + @@ -84,11 +84,11 @@

SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST

- - - - - + + + + + @@ -97,11 +97,11 @@

SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST

- - - - - + + + + + @@ -110,11 +110,11 @@

SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST

- - - - - + + + + + @@ -123,11 +123,11 @@

SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST

- - - - - + + + + + diff --git a/showcase/src/app/styleguide/pages/header/styleguide-header-page.component.ts b/showcase/src/app/styleguide/pages/header/styleguide-header-page.component.ts index 613ebe07ff..56fe4bb69a 100644 --- a/showcase/src/app/styleguide/pages/header/styleguide-header-page.component.ts +++ b/showcase/src/app/styleguide/pages/header/styleguide-header-page.component.ts @@ -12,13 +12,13 @@ export class StyleguideHeaderPageComponent {
@@ -40,17 +40,17 @@ export class StyleguideHeaderPageComponent { mat-icon-button [matTooltip]="'STARK.ICONS.APP_DATA' | translate" > - +
@@ -58,21 +58,21 @@ export class StyleguideHeaderPageComponent { mat-mini-fab [matTooltip]="'SHOWCASE.STYLEGUIDE.TITLE' | translate" > - +
diff --git a/showcase/src/app/styleguide/pages/layout/styleguide-layout-page.component.html b/showcase/src/app/styleguide/pages/layout/styleguide-layout-page.component.html index 737b895c45..40f880e166 100644 --- a/showcase/src/app/styleguide/pages/layout/styleguide-layout-page.component.html +++ b/showcase/src/app/styleguide/pages/layout/styleguide-layout-page.component.html @@ -16,7 +16,7 @@

SHOWCASE.STYLEGUIDE.LAYOUT.ANGULAR_FLEX_LAYO - + diff --git a/showcase/src/app/welcome/pages/home/home-page.component.html b/showcase/src/app/welcome/pages/home/home-page.component.html index 9a85166c2b..9cf078e015 100644 --- a/showcase/src/app/welcome/pages/home/home-page.component.html +++ b/showcase/src/app/welcome/pages/home/home-page.component.html @@ -14,7 +14,7 @@
- +

@@ -28,7 +28,7 @@

{{ "SHOWCASE.HOMEPAGE.CORE" | translate }}

- +

- +

{{ "SHOWCASE.HOMEPAGE.UI" | translate }}

@@ -84,7 +84,7 @@

{{ "SHOWCASE.HOMEPAGE.UI" | translate }}

{{ "SHOWCASE.HOMEPAGE.RBAC" | translate }}

- +
diff --git a/showcase/src/assets/examples/button/disabled.html b/showcase/src/assets/examples/button/disabled.html index 7eb333465d..d35e289366 100644 --- a/showcase/src/assets/examples/button/disabled.html +++ b/showcase/src/assets/examples/button/disabled.html @@ -3,18 +3,18 @@
diff --git a/showcase/src/assets/examples/button/neutral.html b/showcase/src/assets/examples/button/neutral.html index d2757da50a..c23a012340 100644 --- a/showcase/src/assets/examples/button/neutral.html +++ b/showcase/src/assets/examples/button/neutral.html @@ -3,18 +3,18 @@ diff --git a/showcase/src/assets/examples/button/primary.html b/showcase/src/assets/examples/button/primary.html index 9c08d2689d..b3511b9640 100644 --- a/showcase/src/assets/examples/button/primary.html +++ b/showcase/src/assets/examples/button/primary.html @@ -3,18 +3,18 @@ diff --git a/showcase/src/assets/examples/button/success.html b/showcase/src/assets/examples/button/success.html index c682c10475..b737800582 100644 --- a/showcase/src/assets/examples/button/success.html +++ b/showcase/src/assets/examples/button/success.html @@ -3,18 +3,18 @@ diff --git a/showcase/src/assets/examples/button/warn.html b/showcase/src/assets/examples/button/warn.html index d77b604796..49d9c689c9 100644 --- a/showcase/src/assets/examples/button/warn.html +++ b/showcase/src/assets/examples/button/warn.html @@ -3,18 +3,18 @@ diff --git a/showcase/src/assets/examples/button/white.html b/showcase/src/assets/examples/button/white.html index 7546f47875..8db55a3dd7 100644 --- a/showcase/src/assets/examples/button/white.html +++ b/showcase/src/assets/examples/button/white.html @@ -3,18 +3,18 @@ diff --git a/starter/src/app/app.component.html b/starter/src/app/app.component.html index ed23177467..cb0abf7a67 100644 --- a/starter/src/app/app.component.html +++ b/starter/src/app/app.component.html @@ -11,10 +11,10 @@
@@ -32,7 +32,7 @@ mat-icon-button [matTooltip]="'STARK.ICONS.APP_DATA' | translate" > - + @@ -41,10 +41,10 @@
diff --git a/starter/src/app/app.module.ts b/starter/src/app/app.module.ts index 91786ca9e4..7eecae52d8 100644 --- a/starter/src/app/app.module.ts +++ b/starter/src/app/app.module.ts @@ -51,7 +51,6 @@ import { StarkDatePickerModule, StarkLanguageSelectorModule, StarkSessionUiModule, - StarkSvgViewBoxModule, StarkToastNotificationModule } from "@nationalbankbelgium/stark-ui"; import { HomeModule } from "./home/home.module"; @@ -182,7 +181,6 @@ export const metaReducers: MetaReducer[] = ENV !== "production" ? [logger StarkAppSidebarModule.forRoot(), StarkErrorHandlingModule.forRoot(), StarkLanguageSelectorModule, - StarkSvgViewBoxModule, StarkDatePickerModule, StarkToastNotificationModule.forRoot({ delay: 5000,