Skip to content

Commit e5a5950

Browse files
Automated repository update
1 parent 69607b8 commit e5a5950

4,291 files changed

Lines changed: 46704 additions & 25795 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.

angular-demos/data-display/badge-dot-sample/.codesandbox/tasks.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@
77
}
88
],
99
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
10-
"tasks": {
11-
"node node_modules/@angular/cli/bin/ng serve": {
12-
"name": "Start Project",
13-
"command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve",
14-
"runAtStart": true
15-
}
10+
"tasks": {
11+
"start": {
12+
"name": "Start Project",
13+
"command": "node --max-old-space-size=4096 node_modules/@angular/cli/bin/ng serve --host 0.0.0.0 --port 4200 --allowed-hosts=all",
14+
"runAtStart": true,
15+
"preview": {
16+
"port": 4200
17+
}
1618
}
17-
}
19+
}
20+
}
Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,36 @@
11
{
2+
"name": "example-app",
3+
"version": "0.0.0",
4+
"scripts": {
5+
"ng": "ng",
6+
"start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve",
7+
"build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build"
8+
},
29
"dependencies": {
3-
"@angular/animations": "^21.0.0",
4-
"@angular/common": "^21.0.0",
5-
"@angular/compiler": "^21.0.0",
6-
"@angular/core": "^21.0.0",
7-
"@angular/forms": "^21.0.0",
8-
"@angular/platform-browser": "^21.0.0",
9-
"@angular/platform-browser-dynamic": "^21.0.0",
10-
"@angular/router": "^21.0.0",
10+
"@angular/animations": "^22.0.1",
11+
"@angular/cdk": "^22.0.1",
12+
"@angular/common": "^22.0.1",
13+
"@angular/compiler": "^22.0.1",
14+
"@angular/core": "^22.0.1",
15+
"@angular/forms": "^22.0.1",
16+
"@angular/platform-browser": "^22.0.1",
17+
"@angular/platform-browser-dynamic": "^22.0.1",
18+
"@angular/router": "^22.0.1",
1119
"@types/hammerjs": "^2.0.39",
1220
"hammerjs": "^2.0.8",
13-
"igniteui-angular": "21.1.1",
21+
"igniteui-angular": "^22.0.0",
1422
"rxjs": "^7.8.2",
1523
"tslib": "^2.6.1",
1624
"zone.js": "~0.15.0"
1725
},
1826
"devDependencies": {
19-
"@angular/build": "21.0.0",
20-
"@angular/cli": "21.0.0",
21-
"@angular/compiler-cli": "21.0.0",
22-
"@angular/language-service": "21.0.0",
23-
"@types/node": "18.18.0",
24-
"jasmine-core": "5.1.1",
25-
"ts-node": "10.9.1",
26-
"typescript": "5.9.3"
27+
"@angular/build": "^22.0.0",
28+
"@angular/cli": "^22.0.1",
29+
"@angular/compiler-cli": "^22.0.1",
30+
"@angular/language-service": "^22.0.1",
31+
"@types/node": "^25.9.3",
32+
"jasmine-core": "~5.1.1",
33+
"ts-node": "^10.9.1",
34+
"typescript": "6.0.3"
2735
}
2836
}
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
import { ApplicationConfig, importProvidersFrom } from '@angular/core';
2-
import { BrowserModule, HammerModule } from '@angular/platform-browser';
2+
import { BrowserModule } from '@angular/platform-browser';
33
import { FormsModule } from '@angular/forms';
44
import { provideAnimations } from '@angular/platform-browser/animations';
55
import { provideIgniteIntl } from 'igniteui-angular';
6+
import { provideRouter } from '@angular/router';
67

78

89

910
export const AppConfig: ApplicationConfig = {
1011
providers: [
1112
importProvidersFrom(
1213
BrowserModule,
13-
FormsModule,
14-
HammerModule
14+
FormsModule
1515
),
1616
provideAnimations(),
17-
provideIgniteIntl()
17+
provideIgniteIntl(),
18+
provideRouter([])
1819
]
1920
};
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
.wrapper {
2-
display: flex;
3-
position: relative;
4-
margin-top: 15px;
2+
display: flex;
3+
position: relative;
4+
margin: 15px 0 0 15px;
55

6-
igx-avatar {
7-
anchor-name: --avatar;
8-
}
6+
igx-avatar {
7+
anchor-name: --avatar;
8+
}
99

10-
igx-badge {
11-
position: absolute;
12-
position-anchor: --avatar;
13-
bottom: anchor(--avatar top);
14-
left: anchor(right);
15-
transform: translate(-75%, 75%);
16-
}
10+
igx-badge {
11+
position: absolute;
12+
position-anchor: --avatar;
13+
bottom: anchor(--avatar top);
14+
left: anchor(right);
15+
transform: translate(-75%, 75%);
16+
}
1717
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
import { Component } from '@angular/core';
1+
import { Component, ChangeDetectionStrategy } from '@angular/core';
22
import { IgxAvatarComponent } from 'igniteui-angular/avatar';
33
import { IgxBadgeComponent } from 'igniteui-angular/badge';
44

55
@Component({
66
selector: 'app-badge-dot-sample',
77
styleUrls: ['./badge-dot-sample.component.scss'],
88
templateUrl: './badge-dot-sample.component.html',
9+
changeDetection: ChangeDetectionStrategy.Eager,
910
imports: [IgxAvatarComponent, IgxBadgeComponent]
1011
})
1112
export class BadgeDotSampleComponent { }

angular-demos/data-display/badge-dot-sample/src/styles.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
@use 'igniteui-theming/tailwind/utilities/material.css';
44
@use 'variables' as *;
55
@use 'app-layout';
6-
@import "tailwindcss";
76

87
// Specifies large size for all components to match the previous defaults
98
// This may not be needed for your project. Please consult https://www.infragistics.com/products/ignite-ui-angular/angular/components/general/update-guide for more details.
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
{
22
"compileOnSave": false,
33
"compilerOptions": {
4-
"baseUrl": "./",
54
"outDir": "./dist/out-tsc",
65
"sourceMap": true,
76
"esModuleInterop": true,
87
"declaration": false,
9-
"experimentalDecorators": true,
10-
"module": "esnext",
8+
"module": "ES2022",
119
"moduleResolution": "bundler",
1210
"importHelpers": true,
1311
"target": "ES2022",
@@ -17,9 +15,11 @@
1715
"lib": [
1816
"es2022",
1917
"dom"
20-
]
21-
},
22-
"angularCompilerOptions": {
23-
"enableIvy": true
18+
],
19+
"skipLibCheck": true,
20+
"useDefineForClassFields": false,
21+
"strictPropertyInitialization": false,
22+
"strictNullChecks": false,
23+
"noImplicitAny": false
2424
}
2525
}

angular-demos/data-display/badge-icon/.codesandbox/tasks.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@
77
}
88
],
99
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
10-
"tasks": {
11-
"node node_modules/@angular/cli/bin/ng serve": {
12-
"name": "Start Project",
13-
"command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve",
14-
"runAtStart": true
15-
}
10+
"tasks": {
11+
"start": {
12+
"name": "Start Project",
13+
"command": "node --max-old-space-size=4096 node_modules/@angular/cli/bin/ng serve --host 0.0.0.0 --port 4200 --allowed-hosts=all",
14+
"runAtStart": true,
15+
"preview": {
16+
"port": 4200
17+
}
1618
}
17-
}
19+
}
20+
}
Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,36 @@
11
{
2+
"name": "example-app",
3+
"version": "0.0.0",
4+
"scripts": {
5+
"ng": "ng",
6+
"start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve",
7+
"build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build"
8+
},
29
"dependencies": {
3-
"@angular/animations": "^21.0.0",
4-
"@angular/common": "^21.0.0",
5-
"@angular/compiler": "^21.0.0",
6-
"@angular/core": "^21.0.0",
7-
"@angular/forms": "^21.0.0",
8-
"@angular/platform-browser": "^21.0.0",
9-
"@angular/platform-browser-dynamic": "^21.0.0",
10-
"@angular/router": "^21.0.0",
10+
"@angular/animations": "^22.0.1",
11+
"@angular/cdk": "^22.0.1",
12+
"@angular/common": "^22.0.1",
13+
"@angular/compiler": "^22.0.1",
14+
"@angular/core": "^22.0.1",
15+
"@angular/forms": "^22.0.1",
16+
"@angular/platform-browser": "^22.0.1",
17+
"@angular/platform-browser-dynamic": "^22.0.1",
18+
"@angular/router": "^22.0.1",
1119
"@types/hammerjs": "^2.0.39",
1220
"hammerjs": "^2.0.8",
13-
"igniteui-angular": "21.1.1",
21+
"igniteui-angular": "^22.0.0",
1422
"rxjs": "^7.8.2",
1523
"tslib": "^2.6.1",
1624
"zone.js": "~0.15.0"
1725
},
1826
"devDependencies": {
19-
"@angular/build": "21.0.0",
20-
"@angular/cli": "21.0.0",
21-
"@angular/compiler-cli": "21.0.0",
22-
"@angular/language-service": "21.0.0",
23-
"@types/node": "18.18.0",
24-
"jasmine-core": "5.1.1",
25-
"ts-node": "10.9.1",
26-
"typescript": "5.9.3"
27+
"@angular/build": "^22.0.0",
28+
"@angular/cli": "^22.0.1",
29+
"@angular/compiler-cli": "^22.0.1",
30+
"@angular/language-service": "^22.0.1",
31+
"@types/node": "^25.9.3",
32+
"jasmine-core": "~5.1.1",
33+
"ts-node": "^10.9.1",
34+
"typescript": "6.0.3"
2735
}
2836
}
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
import { ApplicationConfig, importProvidersFrom } from '@angular/core';
2-
import { BrowserModule, HammerModule } from '@angular/platform-browser';
2+
import { BrowserModule } from '@angular/platform-browser';
33
import { FormsModule } from '@angular/forms';
44
import { provideAnimations } from '@angular/platform-browser/animations';
55
import { provideIgniteIntl } from 'igniteui-angular';
6+
import { provideRouter } from '@angular/router';
67

78

89

910
export const AppConfig: ApplicationConfig = {
1011
providers: [
1112
importProvidersFrom(
1213
BrowserModule,
13-
FormsModule,
14-
HammerModule
14+
FormsModule
1515
),
1616
provideAnimations(),
17-
provideIgniteIntl()
17+
provideIgniteIntl(),
18+
provideRouter([])
1819
]
1920
};

0 commit comments

Comments
 (0)