Skip to content

Commit f355f11

Browse files
authored
Merge branch 'master' into ddincheva/monthPickerAnimation
2 parents 46db3f0 + e5b9418 commit f355f11

File tree

54 files changed

+4077
-3392
lines changed

Some content is hidden

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

54 files changed

+4077
-3392
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,21 @@
22

33
All notable changes for each version of this project will be documented in this file.
44
## 10.2.0
5-
- IgxInputGroup
5+
6+
### General
7+
- `IgxInputGroup`
68
- **Breaking Chage** - Removed `fluent`, `fluent_search`, `bootstrap`, and `indigo` as possible values for the `type` input property.
79
- **Behavioral Change** - The styling of the input group is now dictated by the theme being used. The remaining `types` - `line`, `border`, and `box` will only have effect on the styling when used with the `material` theme. The `search` type will affect styling when used with all themes. Changing the theme at runtime will not change the styling of the input group, a page refresh is required.
810

9-
## 10.2.0
10-
1111
### New Features
1212
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
1313
- When triggering an export of the grid via the toolbar and the export takes more than 500 milliseconds, the export button becomes disabled and an indeterminate progress bar is shown at the bottom of the toolbar until the export is finished.
1414
- ` IGX_INPUT_GROUP_TYPE` injection token
1515
- Allows for setting an input group `type` on a global level, so all input-group instances, including components using such an instance as a template will have their input group type set to the one specified by the token. It can be overridden on a component level by explicitly setting a `type`.
1616
- ` IgxExcelExporterService`
1717
- Added `worksheetName` property to the `IgxExcelExporterOptions`, that allows setting the name of the worksheet.
18+
- `IgxTimePicker`
19+
- Added a custom label functionality.
1820

1921
## 10.1.0
2022

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.base.json",
2+
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/app",
55
"module": "commonjs",

gulpfile.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ module.exports.copySchematics = (cb) => {
137137
const typedocBuildTheme = (cb) => {
138138
spawnSync(`typedoc`, [TYPEDOC.PROJECT_PATH,
139139
"--tsconfig",
140-
path.join(__dirname,"tsconfig.base.json")], { stdio: 'inherit', shell: true });
140+
path.join(__dirname,"tsconfig.json")], { stdio: 'inherit', shell: true });
141141
cb();
142142
};
143143
typedocBuildTheme.displayName = 'typedoc-build:theme';
@@ -187,7 +187,7 @@ function typedocBuildExportFn(cb) {
187187
"--tags",
188188
"--params",
189189
"--tsconfig",
190-
path.join(__dirname,"tsconfig.base.json")],
190+
path.join(__dirname,"tsconfig.json")],
191191
{ stdio: 'inherit', shell: true });
192192
cb();
193193
}
@@ -199,7 +199,7 @@ function typedocImportJsonFn(cb) {
199199
TYPEDOC.EXPORT_JSON_PATH,
200200
"--warns",
201201
"--tsconfig",
202-
path.join(__dirname,"tsconfig.base.json")],
202+
path.join(__dirname,"tsconfig.json")],
203203
{ stdio: 'inherit', shell: true});
204204
cb();
205205
}
@@ -225,7 +225,7 @@ function typedocBuildDocsJA (cb) {
225225
'--localize',
226226
'jp',
227227
"--tsconfig",
228-
path.join(__dirname,"tsconfig.base.json")], { stdio: 'inherit', shell: true });
228+
path.join(__dirname,"tsconfig.json")], { stdio: 'inherit', shell: true });
229229

230230
cb();
231231
}
@@ -236,7 +236,7 @@ function typedocBuildDocsEN (cb) {
236236
'--localize',
237237
'en',
238238
"--tsconfig",
239-
path.join(__dirname,"tsconfig.base.json")], { stdio: 'inherit', shell: true});
239+
path.join(__dirname,"tsconfig.json")], { stdio: 'inherit', shell: true});
240240

241241
cb();
242242
}

0 commit comments

Comments
 (0)