Skip to content

Commit 7056e06

Browse files
committed
Merge branch 'master' of https://github.com/IgniteUI/igniteui-angular into rivanova/fix-15020-master
2 parents 842ce53 + 09e3ffb commit 7056e06

File tree

525 files changed

+18279
-11448
lines changed

Some content is hidden

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

525 files changed

+18279
-11448
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, 19.0.x, 18.2.x, 17.2.x, 16.1.x, 15.1.x ]
16+
branches: [ master, 19.1.x, 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, 19.0.x, 18.2.x, 17.2.x, 16.1.x, 15.1.x ]
19+
branches: [ master, 19.1.x, 18.2.x, 17.2.x, 16.1.x, 15.1.x ]
2020
schedule:
2121
- cron: '33 4 * * 4'
2222

.github/workflows/nodejs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
npm run test:i18n
5353
env:
5454
NODE_OPTIONS: --max_old_space_size=4096
55+
TZ: America/New_York
5556
- name: Build i18n & validate output
5657
run: |
5758
npm run build:i18n

.vscode/settings.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"git.ignoreLimitWarning": true,
33
"javascript.preferences.quoteStyle": "single",
4-
"typescript.preferences.quoteStyle": "single"
5-
}
4+
"typescript.preferences.quoteStyle": "single",
5+
"cSpell.words": [
6+
"aria-describedby",
7+
"aria-haspopup",
8+
"aria-labelledby",
9+
"ghostclass",
10+
"groupable",
11+
"groupby",
12+
"maxlength",
13+
"ungroup"
14+
]
15+
}

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Ignite UI for Angular Change Log
22

33
All notable changes for each version of this project will be documented in this file.
4+
## 19.1.1
5+
### New Features
6+
- IgxListItem
7+
- Added a new `selected` input property, making it easier to indicate when a list item is selected by applying styling responsible for that state.
8+
49
## 19.1.0
510
### General
611
- `IgxCarousel`
@@ -15,6 +20,42 @@ All notable changes for each version of this project will be documented in this
1520
- Introduced a new `expanded` input property, enabling dynamic control over the banner's state. The banner can now be programmatically set to expanded (visible) or collapsed (hidden) both initially and at runtime. Animations will trigger during runtime updates — the **open animation** plays when `expanded` is set to `true`, and the **close animation** plays when set to `false`. However, no animations will trigger when the property is set initially.
1621
- The banner's event lifecycle (`opening`, `opened`, `closing`, `closed`) only triggers through **user interactions** (e.g., clicking to open/close). Programmatic updates using the `expanded` property will not fire any events.
1722
- If the `expanded` property changes during an ongoing animation, the current animation will **stop** and the opposite animation will begin from the **point where the previous animation left off**. For instance, if the open animation (10 seconds) is interrupted at 6 seconds and `expanded` is set to `false`, the close animation (5 seconds) will start from its 3rd second.
23+
- `IgxQueryBuilder` has new design that comes with updated appearance and new functionality
24+
- `IgxQueryBuilderComponent`
25+
- Introduced the ability to create nested queries by specifying IN/NOT IN operators.
26+
- Introduced the ability to reposition condition chips by dragging or using `Arrow Up/Down`.
27+
- Added the `entities` property that accepts an array of `EntityType` objects describing an entity with its name and an array of fields. The `fields` input property has been deprecated and will be removed in a future version. Automatic migrations are available and will be applied on `ng update`.
28+
- Added `disableEntityChange` property that can be used to disable the entity select on root level after the initial selection. Defaults to `false`.
29+
- Added `disableReturnFieldsChange` property that can be used to disable the fields combo on root level. Defaults to `false`.
30+
- Added the `canCommit`, `commit` and `discard` public methods that allows the user to save/discard the current state of the expression tree.
31+
- Added option to template the search value input:
32+
```
33+
<ng-template igxQueryBuilderSearchValue
34+
let-searchValue
35+
let-selectedField = "selectedField"
36+
let-selectedCondition = "selectedCondition"
37+
let-defaultSearchValueTemplate = "defaultSearchValueTemplate">
38+
@if (selectedField?.field === 'Id' && selectedCondition === 'equals'){
39+
<input type="text" required [(ngModel)]="searchValue.value"/>
40+
} @else {
41+
<ng-container #defaultTemplate *ngTemplateOutlet="defaultSearchValueTemplate"></ ng-container>
42+
}
43+
</ng-template>
44+
```
45+
- **Behavioral Changes**
46+
- Expression enters edit mode on single click, `Enter` or `Space`.
47+
- Selecting conditions inside the `IgxQueryBuilderComponent` is no longer supported. Grouping/ungrouping expressions is now achieved via the newly exposed Drag & Drop functionality.
48+
- Deleting multiple expressions through the context menu is no longer supported.
49+
- `IgxQueryBuilderHeaderComponent`
50+
- **Behavioral Change**
51+
- Legend is no longer shown.
52+
- If the `title` input property is not set, by default it would be empty string.
53+
- **Deprecation**
54+
- The `showLegend` and `resourceStrings` input properties have been deprecated and will be removed in a future version. Automatic migrations are available and will be applied on `ng update`.
55+
- `IFilteringExpression`
56+
- A new optional property called `conditionName` has been introduced. This would generally be equal to the existing `condition.name`.
57+
- `IFilteringOperation`
58+
- A new optional property called `isNestedQuery` has been introduced. It's used to indicate whether the condition leads to a nested query creation.
1859

1960
## 19.0.0
2061
### General

SECURITY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
| Version | Supported |
66
| -------- | ------------------ |
7-
| 19.0.x | :white_check_mark: |
7+
| 19.1.x | :white_check_mark: |
8+
| 19.0.x | :x: |
89
| 18.2.x | :white_check_mark: |
910
| 18.1.x | :x: |
1011
| 18.0.x | :x: |

0 commit comments

Comments
 (0)