Skip to content

Commit 41d95bb

Browse files
committed
Merge branch 'dmdimitrov/query-builder-improvements' into mcherkasov/qb-rehydration
2 parents 4220d78 + 81916da commit 41d95bb

File tree

61 files changed

+1151
-291
lines changed

Some content is hidden

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

61 files changed

+1151
-291
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ All notable changes for each version of this project will be documented in this
1717
- `IgxQueryBuilder`
1818
- Introduced ability to create nested queries by specifying IN/NOT IN operators.
1919
- 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`.
20+
- Added the `canCommit`, `commit` and `discard` public methods that allows the user to save/discard the current state of the expression tree.
2021
- Added option to template the search value input:
2122
```
2223
<ng-template igxQueryBuilderSearchValue
@@ -58,6 +59,10 @@ All notable changes for each version of this project will be documented in this
5859
- `IgxDateTimeEditor`
5960
- Added a new `defaultFormatType` property (`date` | `time` | `dateTime`) which configures the date-time parts
6061
according to the target type that the editor mask includes. Defaults to `date`.
62+
- `IgxTabs`
63+
- 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.
64+
- `IgxGridState`
65+
- 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.
6166
6267
### Themes
6368
- `Palettes`
@@ -116,6 +121,11 @@ For Firefox users, we provide limited scrollbar styling options through the foll
116121
- **Behavioral Changes** - the `keyboardSupport` input property now defaults to `false`.
117122
- **Deprecation** - the `keyboardSupport` input property has been deprecated and will be removed in a future version. Keyboard navigation with `ArrowLeft`, `ArrowRight`, `Home`, and `End` keys will be supported when focusing the indicators' container via ` Tab`/`Shift+Tab`.
118123
124+
- `IgxCombo`:
125+
- **Breaking Change** The deprecated `filterable` property is replaced with `disableFiltering`.
126+
- The dropdown search field placeholder is now part of the Combo's localization resources. It now also uses two resource values depending on whether filtering is active, e.g. in the default `en` locale it remains `'Enter a Search Term'`, but changes to `'Add Item'` when `disableFiltering` and `allowCustomValues` are set to true. For that reason, the existing `searchPlaceholder` input is also **deprecated** in favor of the resources.
127+
- **Deprecation** - `filterable` from the `filteringOptions` has been deprecated in favor of `disableFiltering`.
128+
119129
- `IgxBadge`
120130
- **Breaking Change** The `$border-width` property has been removed from the badge theme.
121131
- New outlined variant of the badge component has been added. Users can switch to `outlined` by adding the newly created `outlined` property to a badge.

projects/igniteui-angular-i18n/src/i18n/BG/combo-resources.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { IComboResourceStrings } from 'igniteui-angular';
33
// exported below as re-cast to create declaration type with expanded properties
44
const ComboResourceStringsBG_: ExpandRequire<IComboResourceStrings> = {
55
igx_combo_empty_message: 'Списъкът е празен',
6+
igx_combo_filter_search_placeholder: 'Въведете термин за търсене',
67
igx_combo_addCustomValues_placeholder: 'Добавяне на елемент',
78
igx_combo_clearItems_placeholder: 'Изчистване на избора'
89
};

projects/igniteui-angular-i18n/src/i18n/CS/combo-resources.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { IComboResourceStrings } from 'igniteui-angular';
33
// exported below as re-cast to create declaration type with expanded properties
44
const ComboResourceStringsCS_: ExpandRequire<IComboResourceStrings> = {
55
igx_combo_empty_message: 'Seznam je prázdný',
6+
igx_combo_filter_search_placeholder: 'Zadejte hledaný výraz',
67
igx_combo_addCustomValues_placeholder: 'Přidat položku',
78
igx_combo_clearItems_placeholder: 'Vymazat výběr'
89
};

projects/igniteui-angular-i18n/src/i18n/DA/combo-resources.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { IComboResourceStrings } from 'igniteui-angular';
33
// exported below as re-cast to create declaration type with expanded properties
44
const ComboResourceStringsDA_: ExpandRequire<IComboResourceStrings> = {
55
igx_combo_empty_message: 'Listen er tom',
6+
igx_combo_filter_search_placeholder: 'Indtast en søgeterm',
67
igx_combo_addCustomValues_placeholder: 'Tilføj element',
78
igx_combo_clearItems_placeholder: 'Ryd markering'
89
};

projects/igniteui-angular-i18n/src/i18n/DE/combo-resources.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { IComboResourceStrings } from 'igniteui-angular';
33
// exported below as re-cast to create declaration type with expanded properties
44
const ComboResourceStringsDE_: ExpandRequire<IComboResourceStrings> = {
55
igx_combo_empty_message: 'Die Liste ist leer',
6+
igx_combo_filter_search_placeholder: 'Suchbegriff eingeben',
67
igx_combo_addCustomValues_placeholder: 'Element hinzufügen',
78
igx_combo_clearItems_placeholder: 'Auswahl löschen'
89
};

projects/igniteui-angular-i18n/src/i18n/ES/combo-resources.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { IComboResourceStrings } from 'igniteui-angular';
33
// exported below as re-cast to create declaration type with expanded properties
44
const ComboResourceStringsES_: ExpandRequire<IComboResourceStrings> = {
55
igx_combo_empty_message: 'La lista está vacía',
6+
igx_combo_filter_search_placeholder: 'Escriba un término de búsqueda',
67
igx_combo_addCustomValues_placeholder: 'Agregar elemento',
78
igx_combo_clearItems_placeholder: 'Borrar selección'
89
};

projects/igniteui-angular-i18n/src/i18n/FR/combo-resources.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { IComboResourceStrings } from 'igniteui-angular';
33
// exported below as re-cast to create declaration type with expanded properties
44
const ComboResourceStringsFR_: ExpandRequire<IComboResourceStrings> = {
55
igx_combo_empty_message: 'La liste est vide',
6+
igx_combo_filter_search_placeholder: 'Entrez un terme de recherche',
67
igx_combo_addCustomValues_placeholder: 'Ajouter un élément',
78
igx_combo_clearItems_placeholder: 'Effacer la sélection'
89
};

projects/igniteui-angular-i18n/src/i18n/HU/combo-resources.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { IComboResourceStrings } from 'igniteui-angular';
33
// exported below as re-cast to create declaration type with expanded properties
44
const ComboResourceStringsHU_: ExpandRequire<IComboResourceStrings> = {
55
igx_combo_empty_message: 'Üres a lista',
6+
igx_combo_filter_search_placeholder: 'Írjon be egy keresési kifejezést',
67
igx_combo_addCustomValues_placeholder: 'Elem hozzáadása',
78
igx_combo_clearItems_placeholder: 'Kiválasztás törlése'
89
};

projects/igniteui-angular-i18n/src/i18n/IT/combo-resources.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { IComboResourceStrings } from 'igniteui-angular';
33
// exported below as re-cast to create declaration type with expanded properties
44
const ComboResourceStringsIT_: ExpandRequire<IComboResourceStrings> = {
55
igx_combo_empty_message: 'L\'elenco è vuoto',
6+
igx_combo_filter_search_placeholder: 'Immettere il testo di ricerca',
67
igx_combo_addCustomValues_placeholder: 'Aggiungi elemento',
78
igx_combo_clearItems_placeholder: 'Cancella selezione'
89
};

projects/igniteui-angular-i18n/src/i18n/JA/combo-resources.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { IComboResourceStrings } from 'igniteui-angular';
33
// exported below as re-cast to create declaration type with expanded properties
44
const ComboResourceStringsJA_: ExpandRequire<IComboResourceStrings> = {
55
igx_combo_empty_message: 'リストが空です',
6+
igx_combo_filter_search_placeholder: '検索条件の入力',
67
igx_combo_addCustomValues_placeholder: '項目の追加',
78
igx_combo_clearItems_placeholder: '選択のクリア'
89
};

0 commit comments

Comments
 (0)