Skip to content

Commit a6bc96c

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Merge from master.
2 parents 5e26871 + fe3a767 commit a6bc96c

Some content is hidden

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

55 files changed

+5650
-3402
lines changed
File renamed without changes.

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ All notable changes for each version of this project will be documented in this
2323
- `IgxSelect` support for `igxHint` directive added.
2424
- Allows the user to add `igxHint` to be displayed bellow the input element.
2525

26+
## 9.1.4
27+
28+
### New Features
29+
- `IgxList`
30+
- Added localization support.
31+
2632
## 9.1.1
2733

2834
### General
@@ -190,7 +196,6 @@ All notable changes for each version of this project will be documented in this
190196
- Added support for tabIndex attribute applied to the main chip element.
191197
- Added `tabIndex` input so it can support change detection as well.
192198

193-
194199
- `IgxHighlightDirective`
195200
- New `metadata` property was introduced, which allows adding additional, custom logic to the activation condition of a highlighted element.
196201

angular.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
"styles": [
3232
"src/styles/igniteui-theme.scss"
3333
],
34-
"scripts": [],
35-
"es5BrowserSupport": true
34+
"scripts": []
3635
},
3736
"configurations": {
3837
"production": {

e2e/tsconfig.e2e.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../tsconfig.json",
2+
"extends": "../tsconfig.base.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/app",
55
"module": "commonjs",

gulpfile.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ module.exports.copySchematics = (cb) => {
135135
};
136136

137137
const typedocBuildTheme = (cb) => {
138-
spawnSync(`typedoc`, [TYPEDOC.PROJECT_PATH], { stdio: 'inherit', shell: true });
138+
spawnSync(`typedoc`, [TYPEDOC.PROJECT_PATH,
139+
"--tsconfig",
140+
"tsconfig.base.json"], { stdio: 'inherit', shell: true });
139141
cb();
140142
};
141143
typedocBuildTheme.displayName = 'typedoc-build:theme';
@@ -208,7 +210,9 @@ function typedocBuildDocsJA (cb) {
208210
TYPEDOC.TEMPLATE_STRINGS_PATH,
209211
'--warns',
210212
'--localize',
211-
'jp'], { stdio: 'inherit', shell: true });
213+
'jp',
214+
"--tsconfig",
215+
"tsconfig.base.json"], { stdio: 'inherit', shell: true });
212216

213217
cb();
214218
}
@@ -217,7 +221,9 @@ function typedocBuildDocsEN (cb) {
217221
spawnSync('typedoc', [
218222
TYPEDOC.PROJECT_PATH,
219223
'--localize',
220-
'en'], { stdio: 'inherit', shell: true});
224+
'en',
225+
"--tsconfig",
226+
"tsconfig.base.json"], { stdio: 'inherit', shell: true});
221227

222228
cb();
223229
}

0 commit comments

Comments
 (0)