Skip to content

Commit 4464ecf

Browse files
authored
Merge branch '11.0.x' into simeonoff/css-vars-values
2 parents 83a9d95 + 255c41f commit 4464ecf

File tree

371 files changed

+11597
-10120
lines changed

Some content is hidden

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

371 files changed

+11597
-10120
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [10.x, 12.x, 14.x]
19+
node-version: [12.x, 14.x, 15.x]
2020

2121
steps:
2222
- uses: actions/checkout@v2

.github/workflows/npm-publish.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Npm.js deploy
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v1
13+
with:
14+
node-version: 12
15+
registry-url: 'https://registry.npmjs.org'
16+
- run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
17+
- run: echo ${VERSION}
18+
19+
- run: echo "NG_CLI_ANALYTICS=false" >> $GITHUB_ENV
20+
- run: echo "NODE_OPTIONS='--max_old_space_size=4096'" >> $GITHUB_ENV
21+
- run: npm ci
22+
23+
- run: npm run build:lib
24+
- run: npm run build:schematics
25+
- run: npm run build:migration
26+
27+
# define npm tag
28+
- run: if [[ ${VERSION} == *"alpha"* || ${VERSION} == *"beta"* || ${VERSION} == *"rc"* ]]; then echo "NPM_TAG=next"; else echo "NPM_TAG=latest"; fi >> $GITHUB_ENV
29+
- run: echo ${NPM_TAG}
30+
31+
# copy readme
32+
- run: cp ../../README.md README.md
33+
working-directory: dist/igniteui-angular
34+
35+
# create version and publish it to npmjs
36+
- run: npm version ${VERSION} --no-git-tag-version --save --verbose
37+
working-directory: dist/igniteui-angular
38+
39+
- run: npm publish --tag ${NPM_TAG}
40+
working-directory: dist/igniteui-angular
41+
env:
42+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

.travis.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,25 @@ script:
2828
- if [ -z "${TRAVIS_TAG}" ]; then npm run test:schematics; fi
2929
- if [ -z "${TRAVIS_TAG}" ] && [ "${TRAVIS_REPO_SLUG}" == "IgniteUI/igniteui-angular" ]; then cat ./coverage/lcov.info | coveralls; fi
3030

31-
before_deploy:
32-
- npm run build:schematics
33-
- npm run build:migration
34-
# move to dist
35-
- cd dist/igniteui-angular
36-
# update package versions
37-
- npm version "${TRAVIS_TAG}" --no-git-tag-version --save
38-
- if [[ "${TRAVIS_TAG}" == *"alpha"* || "${TRAVIS_TAG}" == *"beta"* || "${TRAVIS_TAG}" == *"rc"* ]]; then export NPM_TAG="next"; else export NPM_TAG="latest"; fi
31+
# before_deploy:
32+
# - npm run build:schematics
33+
# - npm run build:migration
34+
# # move to dist
35+
# - cd dist/igniteui-angular
36+
# # update package versions
37+
# - npm version "${TRAVIS_TAG}" --no-git-tag-version --save
38+
# - if [[ "${TRAVIS_TAG}" == *"alpha"* || "${TRAVIS_TAG}" == *"beta"* || "${TRAVIS_TAG}" == *"rc"* ]]; then export NPM_TAG="next"; else export NPM_TAG="latest"; fi
3939

40-
# copy readme
41-
- cp ../../README.md README.md
40+
# # copy readme
41+
# - cp ../../README.md README.md
4242

43-
deploy:
44-
provider: npm
45-
tag: "${NPM_TAG}"
46-
skip_cleanup: true
47-
48-
api_key:
49-
secure: DzxT8e3ryMBPMgx+6toU7+O+1nBLzjCAO4vyDQbze9Fi1jJ23PUUXuG9UmXqnzPUJ64uK4qzi40QiPdk4P0AsOiBr66fQtn02f/Yo1F42r13X9jKuqOdJlRl3dTWPGt5HOBO4YUq6BYA1HAh09/nsgLt670Wk2I8PMNpUiuTFI1F6vhGFsrjEaKbknrZhrQzfAxbTkbZe3RJmrEJQzU5CfFkZzoqsqpS20tFSSNiiPVy6G5OmAMW5f26klq5T0BZ0xBAf2AlXEmGo+LS+65Mbe+yQb1v/IUPk+YY4gwzQQEEh9d+MNU+tMOIVfkqyj5MIdILEIoLMlHKTtaqh8GsxOr2sFw6a4tTKpTqr4yBwuGspa/KjexC/41QVHQjaG0wAekuZluUOL+5I2jYzmVPAFSeiXhor4DFcp+Eh7uwEMaw1paX5DW8UiI8r2FU8RcHE75MN/EOSLE1+9He+RfxnHZW3MyOhOnvZt08+/WoFR6l1OpMM8mVVfHFFVvSk/QVbjFobbvzl5ecNMCS2H8EAJx8mYhwMgTxgf9Sw2AHKh0mgOlRBC9Ox17Hk2VKMcL7sgGY+7btP5mgqW1P/HHxXSAWaqS2e01L+GK5EG618R3Gz+Fphr6ZIyNqQ6BCc1UpJQZFJVVsPAJMMBg7Or5vcYJlxYPXOM5jLm8lzo9hSxA=
50-
on:
51-
tags: true
52-
repo: IgniteUI/igniteui-angular
43+
# deploy:
44+
# provider: npm
45+
# tag: "${NPM_TAG}"
46+
# skip_cleanup: true
47+
48+
# api_key:
49+
# secure: DzxT8e3ryMBPMgx+6toU7+O+1nBLzjCAO4vyDQbze9Fi1jJ23PUUXuG9UmXqnzPUJ64uK4qzi40QiPdk4P0AsOiBr66fQtn02f/Yo1F42r13X9jKuqOdJlRl3dTWPGt5HOBO4YUq6BYA1HAh09/nsgLt670Wk2I8PMNpUiuTFI1F6vhGFsrjEaKbknrZhrQzfAxbTkbZe3RJmrEJQzU5CfFkZzoqsqpS20tFSSNiiPVy6G5OmAMW5f26klq5T0BZ0xBAf2AlXEmGo+LS+65Mbe+yQb1v/IUPk+YY4gwzQQEEh9d+MNU+tMOIVfkqyj5MIdILEIoLMlHKTtaqh8GsxOr2sFw6a4tTKpTqr4yBwuGspa/KjexC/41QVHQjaG0wAekuZluUOL+5I2jYzmVPAFSeiXhor4DFcp+Eh7uwEMaw1paX5DW8UiI8r2FU8RcHE75MN/EOSLE1+9He+RfxnHZW3MyOhOnvZt08+/WoFR6l1OpMM8mVVfHFFVvSk/QVbjFobbvzl5ecNMCS2H8EAJx8mYhwMgTxgf9Sw2AHKh0mgOlRBC9Ox17Hk2VKMcL7sgGY+7btP5mgqW1P/HHxXSAWaqS2e01L+GK5EG618R3Gz+Fphr6ZIyNqQ6BCc1UpJQZFJVVsPAJMMBg7Or5vcYJlxYPXOM5jLm8lzo9hSxA=
50+
# on:
51+
# tags: true
52+
# repo: IgniteUI/igniteui-angular

CHANGELOG.md

Lines changed: 48 additions & 24 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 48 additions & 48 deletions
Large diffs are not rendered by default.

ROADMAP.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,23 @@
44

55
## Milestone 14 (Due by November, 2020)
66

7-
1. Grid Toolbar refactoring [#8055](https://github.com/IgniteUI/igniteui-angular/issues/8055)
8-
2. Expose an event that indicates that the Grid is fully loaded [#7924](https://github.com/IgniteUI/igniteui-angular/issues/7924)
9-
3. Igx-grid: Select all rows in a group [#7344](https://github.com/IgniteUI/igniteui-angular/issues/7344)
10-
4. Option to select columns instead of hide columns [#6858](https://github.com/IgniteUI/igniteui-angular/issues/6858)
11-
5. Calendar ARIA [#6272](https://github.com/IgniteUI/igniteui-angular/issues/6272)
12-
6. IgxInput directive to style file type input [#6544](https://github.com/IgniteUI/igniteui-angular/issues/6544)
7+
1. **[DONE]** Grid Toolbar refactoring [#8055](https://github.com/IgniteUI/igniteui-angular/issues/8055)
8+
2. **[DONE]** Expose an event that indicates that the Grid is fully loaded [#7924](https://github.com/IgniteUI/igniteui-angular/issues/7924)
9+
3. **[DONE]** Igx-grid: Select all rows in a group [#7344](https://github.com/IgniteUI/igniteui-angular/issues/7344)
10+
4. **[DONE]** Option to select columns instead of hide columns [#6858](https://github.com/IgniteUI/igniteui-angular/issues/6858)
11+
5. **[DONE]** Calendar ARIA [#6272](https://github.com/IgniteUI/igniteui-angular/issues/6272)
12+
6. **[DONE]** Make the ESF header icon templatable [#7878](https://github.com/IgniteUI/igniteui-angular/issues/7878)
13+
7. **[DONE]** A small badge option [#8188](https://github.com/IgniteUI/igniteui-angular/issues/8188)
14+
8. **[DONE]** Improve the chart color palette generation [#8447](https://github.com/IgniteUI/igniteui-angular/issues/8447)
15+
9. **[DONE]** Auto position strategy use wrong animation when flipped [#8238](https://github.com/IgniteUI/igniteui-angular/issues/8238)
1316

1417
## Going down the road
1518

1619
1. Tile Manager
1720
2. Visual Cell merging [#3514](https://github.com/IgniteUI/igniteui-angular/issues/3514)
1821
3. RTL Support across Ignite UI for Angular components [#5905](https://github.com/IgniteUI/igniteui-angular/issues/5905)
1922
4. Scheduler component [#8097](https://github.com/IgniteUI/igniteui-angular/pull/8479/files)
23+
5. IgxInput directive to style file type input [#6544](https://github.com/IgniteUI/igniteui-angular/issues/6544)
2024

2125
## Milestone 13 (Released October 20th, 2020)
2226

angular.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
"optimization": true,
5151
"outputHashing": "all",
5252
"sourceMap": false,
53-
"extractCss": true,
5453
"namedChunks": false,
5554
"extractLicenses": true,
5655
"vendorChunk": false,
@@ -162,7 +161,7 @@
162161
"prefix": "lib",
163162
"architect": {
164163
"build": {
165-
"builder": "@angular-devkit/build-ng-packagr:build",
164+
"builder": "@angular-devkit/build-angular:ng-packagr",
166165
"options": {
167166
"tsConfig": "projects/igniteui-angular/tsconfig.lib.json",
168167
"project": "projects/igniteui-angular/ng-package.json"

0 commit comments

Comments
 (0)