Skip to content

Commit 2557a7f

Browse files
committed
Merge branch '18.2.x' of https://github.com/IgniteUI/igniteui-angular into gedinakova/qb-18.3.0-beta.2
2 parents 0c8ccd4 + c41fd9c commit 2557a7f

File tree

193 files changed

+2865
-1303
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+2865
-1303
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ master, 18.1.x, 17.2.x, 16.1.x, 15.1.x ]
16+
branches: [ master, 18.2.x, 17.2.x, 16.1.x, 15.1.x ]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [ master, 18.1.x, 17.2.x, 16.1.x, 15.1.x ]
19+
branches: [ master, 18.2.x, 17.2.x, 16.1.x, 15.1.x ]
2020
schedule:
2121
- cron: '33 4 * * 4'
2222

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,18 +63,18 @@ All notable changes for each version of this project will be documented in this
6363
- Added `activation` property to control tab selection. In `auto` mode (default), tabs are selected instantly with Arrow or Home/End keys. In `manual` mode, tabs are focused with keys but only selected with Enter or Space.
6464
- `IgxGridState`
6565
- When possible the state directive nows reuses the column that already exists on the grid when restoring the state, instead of creating new column instances every time. This removes the need to set any complex objects manually back on the column on `columnInit`. The only instance where this is still necessary is when the column (or its children in case of column groups) have no `field` property so there's no way to uniquely identify the matching column.
66-
66+
- Added support for persisting Multi-Row Layout.
6767
### Themes
68-
- `Palettes`
68+
- **Breaking Change** `Palettes`
6969
- All palette colors have been migrated to the [CSS relative colors syntax](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_colors/Relative_colors). This means that color consumed as CSS variables no longer need to be wrapped in an `hsl` function.
7070
7171
Example:
7272
```css
7373
/* 18.1.x and before: */
74-
background: hsl(var(--igx-primary-600));
74+
background: hsl(var(--ig-primary-600));
7575
7676
/* 18.2.0+: */
77-
background: var(--igx-primary-600);
77+
background: var(--ig-primary-600);
7878
```
7979
8080
This change also opens up the door for declaring the base (500) variants of each color in CSS from any color, including other CSS variables, whereas before the Sass `palette` function was needed to generate color shades from a base color.

0 commit comments

Comments
 (0)