Skip to content

Commit a82fbcf

Browse files
committed
2 parents ea22a95 + a1066d1 commit a82fbcf

712 files changed

Lines changed: 282906 additions & 18051 deletions

File tree

Some content is hidden

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

.eslintrc.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
"createDefaultProgram": true
1717
},
1818
"extends": [
19-
"plugin:@angular-eslint/ng-cli-compat",
20-
"plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
19+
"plugin:@angular-eslint/recommended",
2120
"plugin:@angular-eslint/template/process-inline-templates"
2221
],
2322
"rules": {
@@ -40,7 +39,6 @@
4039
"comma-dangle": "error",
4140
"no-underscore-dangle": "off",
4241
"id-blacklist": "error",
43-
"import/no-extraneous-dependencies": "error",
4442
"import/no-internal-modules": "off",
4543
"no-bitwise": "off",
4644
"no-duplicate-case": "error",

.github/workflows/build-app-crm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v2
3434

3535
- name: Install dependencies
36-
run: npm ci
36+
run: npm ci --force
3737

3838
- name: Run lint
3939
run: npm run lint

.github/workflows/build-app-lob.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v2
3939

4040
- name: Install dependencies
41-
run: npm ci
41+
run: npm ci --force
4242

4343
- name: Run lint
4444
run: npm run lint

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
!.vscode/extensions.json
3333

3434
# misc
35+
/.angular/cache
3536
/.sass-cache
3637
/connect.lock
3738
/coverage

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[![Build Status](https://dev.azure.com/IgniteUI/igniteui-angular/_apis/build/status/IgniteUI.igniteui-angular-samples?branchName=master)](https://dev.azure.com/IgniteUI/igniteui-angular/_build/latest?definitionId=4&branchName=master)
2-
[![Build Status](https://travis-ci.org/IgniteUI/igniteui-angular-samples.svg?branch=master)](https://travis-ci.org/IgniteUI/igniteui-angular-samples)
1+
[![CI](https://github.com/IgniteUI/igniteui-angular-samples/actions/workflows/build-app-lob.yml/badge.svg)](https://github.com/IgniteUI/igniteui-angular-samples/actions/workflows/build-app-lob.yml)
2+
[![Build Status](https://dev.azure.com/IgniteUI/igniteui-angular/_apis/build/status/IgniteUI.igniteui-angular-samples?branchName=refs%2Fpull%2F2995%2Fmerge)](https://dev.azure.com/IgniteUI/igniteui-angular/_build/latest?definitionId=4&branchName=refs%2Fpull%2F2995%2Fmerge)
33

44
# Ignite UI for Angular - Samples
55

@@ -8,7 +8,7 @@ This project is using Ignite UI for Angular components to demonstrate different
88
The project is divided into two separate applications:
99

1010

11-
- A `default application`, which uses all the [igniteui-angular](https://travis-ci.org/IgniteUI/igniteui-angular) components to demonstrate sample applications
11+
- A `default application`, which uses all the [igniteui-angular](https://www.infragistics.com/products/ignite-ui-angular) components to demonstrate sample applications
1212

1313
- A `Line of Business` application, complemented with UI and functionality from the **Ignite UI for Angular Charts** and **Ignite UI for Angular Excel library**.
1414

@@ -34,12 +34,12 @@ To build the application project run:
3434
npm run build:app-lob
3535
```
3636

37-
### These commands will produce an AOT build and [live editing](https://github.com/IgniteUI/igniteui-angular-samples/blob/master/live-editing/README.md) samples supporting both Sass and CSS.
37+
### These commands will produce an AOT build and [live editing](https://github.com/IgniteUI/igniteui-live-editing/blob/master/README.md) samples supporting both Sass and CSS.
3838

3939
## Dev Server
4040

4141
### Default App
42-
To start the application dev server (including IE support) run:
42+
To start the application dev server run:
4343

4444
```
4545
npm run start
@@ -53,7 +53,7 @@ npm run start:es6
5353

5454
### Line of Business App
5555

56-
To start the application dev server (including IE support) run:
56+
To start the application dev server run:
5757
```
5858
npm run start:app-lob
5959
```
@@ -64,7 +64,7 @@ npm run start:app-lob
6464

6565
### Default App
6666

67-
To generate the live editing applications along with the dev server (including IE support) run:
67+
To generate the live editing applications along with the dev server run:
6868
```
6969
npm run start:live-editing
7070
```
@@ -76,14 +76,14 @@ npm run start:live-editing:es6
7676
```
7777

7878

79-
To generate live editing applications, using only **Sass** for styling (excluding IE and Edge support) run:
79+
To generate live editing applications, using only **Sass** for styling run:
8080
```
8181
npm run start:live-editing:noCss
8282
```
8383

8484
### Line of Business App
8585

86-
To generate the live editing applications along with the dev server (including IE support) run:
86+
To generate the live editing applications along with the dev server run:
8787
```
8888
npm run start:app-lob:live-editing
8989
```
@@ -100,7 +100,7 @@ Live-editing [documentation could be found here](https://github.com/IgniteUI/ign
100100

101101
One of the most important functionality is the Configurator Generator as each Ignite UI for Angular component has a separate configurations (config) generator - [read the following section if you are interested in the actual structure and how to configure it](https://github.com/IgniteUI/igniteui-live-editing#configuration-generator).
102102
### Live-Editing Watcher
103-
Use this command to start the server with capability to regenerate [live editing](https://github.com/IgniteUI/igniteui-angular-samples/blob/master/live-editing/README.md) JSON files (e.g. `"/src/assets/samples/avatar-sample-3.json"`) when a change related to the samples is made (including IE support):
103+
Use this command to start the server with capability to regenerate [live editing](https://github.com/IgniteUI/igniteui-angular-samples/blob/master/live-editing/README.md) JSON files (e.g. `"/src/assets/samples/avatar-sample-3.json"`) when a change related to the samples is made:
104104

105105
```
106106
npm run start:watch-live-editing
@@ -113,7 +113,7 @@ npm run start:watch-live-editing:es6
113113
```
114114

115115
### Generate Live-Editing JSON files
116-
To generate only the [live editing](https://github.com/IgniteUI/igniteui-angular-samples/blob/master/live-editing/README.md) samples files (e.g. `"/src/assets/samples/avatar-sample-3.json"`) run:
116+
To generate only the [live editing](https://github.com/IgniteUI/igniteui-live-editing/blob/master/README.md) samples files (e.g. `"/src/assets/samples/avatar-sample-3.json"`) run:
117117

118118
#### Default App
119119
With **CSS** styling generation

0 commit comments

Comments
 (0)