Skip to content

Commit d474ab4

Browse files
authored
Merge pull request #3460 from IgniteUI/vnext
Updating master from vnext
2 parents d38fb98 + d4b84ea commit d474ab4

File tree

37 files changed

+287
-109
lines changed

37 files changed

+287
-109
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: npm config set ${{secrets.IG_SCOPE}}:_auth=${{secrets.IG_TOKEN}}
5050

5151
- name: Install dependencies
52-
run: npm ci
52+
run: npm ci --legacy-peer-deps
5353

5454
- name: Run lint
5555
run: npm run lint

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: npm config set ${{secrets.IG_SCOPE}}:_auth=${{secrets.IG_TOKEN}}
5555

5656
- name: Install dependencies
57-
run: npm ci
57+
run: npm ci --legacy-peer-deps
5858

5959
- name: Run lint
6060
run: npm run lint

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ steps:
1717
- task: Npm@1
1818
inputs:
1919
command: 'custom'
20-
customCommand: 'install'
20+
customCommand: 'install --legacy-peer-deps'
2121
customEndpoint: 'public proget'
2222
env:
2323
AZURE_PIPELINES: "true"

live-editing/configs/CalendarConfigGenerator.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import {IgxButtonModule,
2+
IgxButtonGroupModule,
23
IgxCalendarModule,
34
IgxCardModule,
45
IgxDialogModule,
@@ -102,6 +103,16 @@ export class CalendarConfigGenerator implements IConfigGenerator {
102103
shortenComponentPathBy: "/scheduling/calendar/"
103104
}));
104105

106+
configs.push(new Config({
107+
component: 'CalendarSample9Component',
108+
appModuleConfig: new AppModuleConfig({
109+
imports: ['IgxButtonModule', 'IgxButtonGroupModule', 'IgxCalendarModule', 'CalendarSample9Component'],
110+
ngDeclarations: ['CalendarSample9Component'],
111+
ngImports: ['IgxButtonModule', 'IgxButtonGroupModule', 'IgxCalendarModule']
112+
}),
113+
shortenComponentPathBy: "/scheduling/calendar/"
114+
}));
115+
105116
configs.push(new Config({
106117
component: 'CalendarStylingSampleComponent',
107118
appModuleConfig: new AppModuleConfig({

package-lock.json

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@
6565
"bootstrap": "5.3.2",
6666
"file-saver": "^2.0.2",
6767
"hammerjs": "^2.0.8",
68-
"igniteui-angular": "^17.1.4",
68+
"igniteui-angular": "^17.2.0",
6969
"igniteui-angular-charts": "^17.2.1",
7070
"igniteui-angular-core": "^17.2.1",
7171
"igniteui-angular-extras": "^17.1.5",
72-
"igniteui-angular-i18n": "^17.1.0",
72+
"igniteui-angular-i18n": "^17.2.0",
7373
"igniteui-dockmanager": "^1.14.2",
74-
"igniteui-live-editing": "^2.1.0",
74+
"igniteui-live-editing": "^2.2.0",
7575
"igniteui-webcomponents": "^4.7.0",
7676
"minireset.css": "0.0.6",
7777
"rxjs": "^7.8.1",
@@ -111,4 +111,4 @@
111111
"typescript": "5.3.3",
112112
"webpack-bundle-analyzer": "^4.10.0"
113113
}
114-
}
114+
}

src/app/app.module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { FormsModule } from '@angular/forms';
44
import { BrowserModule, HammerModule } from '@angular/platform-browser';
55
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
66
import {
7-
IgxAutocompleteModule, IgxButtonModule, IgxDropDownModule,
7+
IgxAutocompleteModule, IgxButtonModule, IgxButtonGroupModule, IgxDropDownModule,
88
IgxIconModule, IgxInputGroupModule, IgxLayoutModule, IgxNavbarModule, IgxNavigationDrawerModule, IgxRippleModule, IgxTreeModule
99
} from 'igniteui-angular';
1010
import { AppRoutingModule } from './app-routing.module';
@@ -35,6 +35,7 @@ import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
3535
BrowserModule,
3636
BrowserAnimationsModule,
3737
IgxButtonModule,
38+
IgxButtonGroupModule,
3839
FormsModule,
3940
HttpClientModule,
4041
HammerModule,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<span class="btn" igxButton="contained" igxButtonColor="black" igxButtonBackground="#72da67" igxRipple="white">Span</span>
1+
<span class="btn" igxButton="contained" igxRipple="white">Span</span>

src/app/grid/grid-editing-style-sample/grid-editing-style-sample.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $checkbox-theme: checkbox-theme(
1919
);
2020

2121
$datepicker-theme: calendar-theme(
22-
$date-selected-text-color: $white,
22+
$date-selected-foreground: $white,
2323
$date-selected-background: $blue
2424
);
2525

src/app/grid/grid-multi-row-layout-configuration/grid-multi-row-layout-configuration.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@
115115
</igx-chips-area>
116116
</div>
117117
<div style="width: 100%; text-align: center; margin: 10px;">
118-
<span igxButton="contained" class="bottomButton" (click)="resetCollections()" [igxButtonBackground]="'#ff134a'" [igxButtonColor]="'white'">Clear Layout</span>
119-
<span igxButton="contained" class="bottomButton" (click)="getColumnLayoutTemplate()" [igxButtonBackground]="'#1377d5'" [igxButtonColor]="'white'">Template</span>
120-
<span igxButton="contained" class="bottomButton" (click)="renderJson()" [igxButtonBackground]="'#1377d5'" [igxButtonColor]="'white'">JSON</span>
118+
<span igxButton="contained" class="bottomButton" (click)="resetCollections()">Clear Layout</span>
119+
<span igxButton="contained" class="bottomButton" (click)="getColumnLayoutTemplate()">Template</span>
120+
<span igxButton="contained" class="bottomButton" (click)="renderJson()">JSON</span>
121121
</div>
122122

123123
<igx-dialog #resultDialog title="Result"

0 commit comments

Comments
 (0)