-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deprecated `lyTheme` BREAKING CHANGE: for theming use LyThemeModule or MinimaThemeModule To set a new theme you should import LyThemeModule example: LyThemeModule.setTheme('minima-dark') examples for child theme: Before: ```ts @NgModule({ ... LyCommonModule, // <-- theme, bg, color, raised & others }) ` ```html <element lyTheme="minima-dark"> ` After: import theme ```ts @NgModule({ ... LyCommonModule, // <-- bg, color, raised & others MinimaThemeModule // <-- themes }) ` ```html <element ly-theme-minima-dark> `
- Loading branch information
Showing
11 changed files
with
10 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
...components/multiple-themes/multiple-themes-demo-01/child-theme/child-theme.component.html
This file was deleted.
Oops, something went wrong.
Empty file.
25 changes: 0 additions & 25 deletions
25
...ponents/multiple-themes/multiple-themes-demo-01/child-theme/child-theme.component.spec.ts
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
...p/components/multiple-themes/multiple-themes-demo-01/child-theme/child-theme.component.ts
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
...components/multiple-themes/multiple-themes-demo-01/child-theme/child-theme.module.spec.ts
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
src/app/components/multiple-themes/multiple-themes-demo-01/child-theme/child-theme.module.ts
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
src/app/components/multiple-themes/multiple-themes-demo-01/multiple-themes-routing.module.ts
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
src/app/components/multiple-themes/multiple-themes-routing.module.ts
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
src/app/components/multiple-themes/multiple-themes.module.ts
This file was deleted.
Oops, something went wrong.