Skip to content

Commit e6a03b1

Browse files
authored
Merge branch '17.0.x' into bpachilova/fix-13688-17.0.x
2 parents 568b842 + c5fdcb5 commit e6a03b1

File tree

9 files changed

+446
-160
lines changed

9 files changed

+446
-160
lines changed

angular.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -255,11 +255,11 @@
255255
"prefix": "app",
256256
"architect": {
257257
"build": {
258-
"builder": "@angular-devkit/build-angular:browser",
258+
"builder": "@angular-devkit/build-angular:application",
259259
"options": {
260260
"outputPath": "dist/bundle-test",
261261
"index": "projects/bundle-test/src/index.html",
262-
"main": "projects/bundle-test/src/main.ts",
262+
"browser": "projects/bundle-test/src/main.ts",
263263
"polyfills": [
264264
"zone.js"
265265
],
@@ -293,9 +293,7 @@
293293
"sourceMap": true
294294
},
295295
"development": {
296-
"buildOptimizer": false,
297296
"optimization": false,
298-
"vendorChunk": true,
299297
"extractLicenses": false,
300298
"sourceMap": true,
301299
"namedChunks": true

package-lock.json

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

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@
5454
},
5555
"private": true,
5656
"dependencies": {
57-
"@angular/animations": "^17.0.3",
58-
"@angular/common": "^17.0.3",
59-
"@angular/compiler": "^17.0.3",
60-
"@angular/core": "^17.0.3",
61-
"@angular/forms": "^17.0.3",
62-
"@angular/platform-browser": "^17.0.3",
63-
"@angular/platform-browser-dynamic": "^17.0.3",
64-
"@angular/platform-server": "^17.0.3",
65-
"@angular/router": "^17.0.3",
66-
"@angular/ssr": "^17.0.1",
57+
"@angular/animations": "^17.0.5",
58+
"@angular/common": "^17.0.5",
59+
"@angular/compiler": "^17.0.5",
60+
"@angular/core": "^17.0.5",
61+
"@angular/forms": "^17.0.5",
62+
"@angular/platform-browser": "^17.0.5",
63+
"@angular/platform-browser-dynamic": "^17.0.5",
64+
"@angular/platform-server": "^17.0.5",
65+
"@angular/router": "^17.0.5",
66+
"@angular/ssr": "^17.0.5",
6767
"@igniteui/material-icons-extended": "^3.0.0",
6868
"@types/hammerjs": "^2.0.40",
6969
"@types/source-map": "0.5.2",
@@ -79,16 +79,16 @@
7979
"zone.js": "~0.14.2"
8080
},
8181
"devDependencies": {
82-
"@angular-devkit/build-angular": "^17.0.1",
83-
"@angular-devkit/schematics": "^17.0.1",
82+
"@angular-devkit/build-angular": "^17.0.5",
83+
"@angular-devkit/schematics": "^17.0.5",
8484
"@angular-eslint/builder": "^17.1.0",
8585
"@angular-eslint/eslint-plugin": "^17.1.0",
8686
"@angular-eslint/eslint-plugin-template": "^17.1.0",
8787
"@angular-eslint/schematics": "^17.1.0",
8888
"@angular-eslint/template-parser": "^17.1.0",
89-
"@angular/cli": "^17.0.1",
90-
"@angular/compiler-cli": "^17.0.3",
91-
"@angular/language-service": "^17.0.3",
89+
"@angular/cli": "^17.0.5",
90+
"@angular/compiler-cli": "^17.0.5",
91+
"@angular/language-service": "^17.0.5",
9292
"@angularclass/hmr": "^3.0.0",
9393
"@types/estree": "^1.0.0",
9494
"@types/express": "^4.17.17",
@@ -138,4 +138,4 @@
138138
"typedoc-plugin-localization": "^3.0.3",
139139
"typescript": "5.2.2"
140140
}
141-
}
141+
}

projects/igniteui-angular/src/lib/accordion/public_api.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { IGX_EXPANSION_PANEL_DIRECTIVES } from '../expansion-panel/public_api';
21
import { IgxAccordionComponent } from './accordion.component';
32

43
export * from './accordion.component';
@@ -19,5 +18,10 @@ import {
1918
/* Accordion directives collection for ease-of-use import in standalone components scenario */
2019
export const IGX_ACCORDION_DIRECTIVES = [
2120
IgxAccordionComponent,
22-
...IGX_EXPANSION_PANEL_DIRECTIVES
21+
IgxExpansionPanelComponent,
22+
IgxExpansionPanelHeaderComponent,
23+
IgxExpansionPanelBodyComponent,
24+
IgxExpansionPanelDescriptionDirective,
25+
IgxExpansionPanelTitleDirective,
26+
IgxExpansionPanelIconDirective
2327
] as const;

projects/igniteui-angular/src/lib/action-strip/public_api.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ export const IGX_ACTION_STRIP_DIRECTIVES = [
1818

1919
/* Action-strip in grid directives collection for ease-of-use import in standalone components scenario */
2020
export const IGX_GRID_ACTION_STRIP_DIRECTIVES = [
21-
...IGX_ACTION_STRIP_DIRECTIVES,
21+
IgxActionStripComponent,
22+
IgxActionStripMenuItemDirective,
2223
IgxGridPinningActionsComponent,
2324
IgxGridEditingActionsComponent,
2425
IgxGridActionsBaseDirective,

projects/igniteui-angular/src/lib/grids/grid/public_api.ts

Lines changed: 80 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IGX_GRID_COMMON_DIRECTIVES, IGX_GRID_VALIDATION_DIRECTIVES, IgxRowAddTextDirective, IgxRowEditActionsDirective, IgxRowEditTabStopDirective, IgxRowEditTextDirective } from '../public_api';
1+
import { IgxRowAddTextDirective, IgxRowEditActionsDirective, IgxRowEditTabStopDirective, IgxRowEditTextDirective } from '../public_api';
22
import { IgxGridComponent } from './grid.component';
33
import { IgxGridDetailTemplateDirective, IgxGroupByRowTemplateDirective } from '../grid.directives';
44

@@ -77,8 +77,7 @@ import {
7777
IgxPageNavigationComponent,
7878
IgxPageSizeSelectorComponent,
7979
IgxPaginatorContentDirective,
80-
IgxPaginatorDirective,
81-
IGX_PAGINATOR_DIRECTIVES
80+
IgxPaginatorDirective
8281
} from '../../paginator/public_api';
8382

8483
export * from './grid.component';
@@ -92,7 +91,82 @@ export const IGX_GRID_DIRECTIVES = [
9291
IgxRowEditActionsDirective,
9392
IgxRowEditTextDirective,
9493
IgxRowEditTabStopDirective,
95-
...IGX_GRID_COMMON_DIRECTIVES,
96-
...IGX_GRID_VALIDATION_DIRECTIVES,
97-
...IGX_PAGINATOR_DIRECTIVES
94+
// IGX_GRID_COMMON_DIRECTIVES:
95+
IgxRowDirective,
96+
IgxGridFooterComponent,
97+
IgxAdvancedFilteringDialogComponent,
98+
IgxRowExpandedIndicatorDirective,
99+
IgxRowCollapsedIndicatorDirective,
100+
IgxHeaderExpandedIndicatorDirective,
101+
IgxHeaderCollapsedIndicatorDirective,
102+
IgxExcelStyleHeaderIconDirective,
103+
IgxSortAscendingHeaderIconDirective,
104+
IgxSortDescendingHeaderIconDirective,
105+
IgxSortHeaderIconDirective,
106+
IgxDragIndicatorIconDirective,
107+
IgxRowDragGhostDirective,
108+
IgxGridStateDirective,
109+
// IGX_GRID_HEADERS_DIRECTIVES:
110+
IgxGridHeaderComponent,
111+
IgxGridHeaderGroupComponent,
112+
IgxGridHeaderRowComponent,
113+
// IGX_GRID_COLUMN_DIRECTIVES:
114+
IgxFilterCellTemplateDirective,
115+
IgxSummaryTemplateDirective,
116+
IgxCellTemplateDirective,
117+
IgxCellValidationErrorDirective,
118+
IgxCellHeaderTemplateDirective,
119+
IgxCellFooterTemplateDirective,
120+
IgxCellEditorTemplateDirective,
121+
IgxCollapsibleIndicatorTemplateDirective,
122+
IgxColumnComponent,
123+
IgxColumnGroupComponent,
124+
IgxColumnLayoutComponent,
125+
// IGX_GRID_COLUMN_ACTIONS_DIRECTIVES:
126+
IgxColumnActionsComponent,
127+
IgxColumnHidingDirective,
128+
IgxColumnPinningDirective,
129+
// IGX_GRID_SELECTION_DIRECTIVES:
130+
IgxRowSelectorDirective,
131+
IgxGroupByRowSelectorDirective,
132+
IgxHeadSelectorDirective,
133+
// IGX_GRID_TOOLBAR_DIRECTIVES:
134+
IgxCSVTextDirective,
135+
IgxExcelTextDirective,
136+
IgxGridToolbarActionsComponent,
137+
IgxGridToolbarAdvancedFilteringComponent,
138+
IgxGridToolbarComponent,
139+
IgxGridToolbarExporterComponent,
140+
IgxGridToolbarHidingComponent,
141+
IgxGridToolbarPinningComponent,
142+
IgxGridToolbarTitleComponent,
143+
IgxGridToolbarDirective,
144+
// IGX_GRID_EXCEL_STYLE_FILTER_DIRECTIVES:
145+
IgxGridExcelStyleFilteringComponent,
146+
IgxExcelStyleHeaderComponent,
147+
IgxExcelStyleSortingComponent,
148+
IgxExcelStylePinningComponent,
149+
IgxExcelStyleHidingComponent,
150+
IgxExcelStyleSelectingComponent,
151+
IgxExcelStyleClearFiltersComponent,
152+
IgxExcelStyleConditionalFilterComponent,
153+
IgxExcelStyleMovingComponent,
154+
IgxExcelStyleSearchComponent,
155+
IgxExcelStyleColumnOperationsTemplateDirective,
156+
IgxExcelStyleFilterOperationsTemplateDirective,
157+
IgxExcelStyleLoadingValuesTemplateDirective,
158+
// IGX_GRID_VALIDATION_DIRECTIVES:
159+
IgxColumnRequiredValidatorDirective,
160+
IgxColumnMinValidatorDirective,
161+
IgxColumnMaxValidatorDirective,
162+
IgxColumnEmailValidatorDirective,
163+
IgxColumnMinLengthValidatorDirective,
164+
IgxColumnMaxLengthValidatorDirective,
165+
IgxColumPatternValidatorDirective,
166+
// IGX_PAGINATOR_DIRECTIVES:
167+
IgxPaginatorComponent,
168+
IgxPageNavigationComponent,
169+
IgxPageSizeSelectorComponent,
170+
IgxPaginatorContentDirective,
171+
IgxPaginatorDirective
98172
] as const;

projects/igniteui-angular/src/lib/grids/hierarchical-grid/public_api.ts

Lines changed: 78 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { IGX_GRID_COMMON_DIRECTIVES, IGX_GRID_VALIDATION_DIRECTIVES } from '../public_api';
21
import { IgxHierarchicalGridComponent } from './hierarchical-grid.component';
32
import { IgxRowIslandComponent } from './row-island.component';
43

@@ -97,7 +96,82 @@ export const IGX_HIERARCHICAL_GRID_DIRECTIVES = [
9796
IgxRowEditActionsDirective,
9897
IgxRowEditTextDirective,
9998
IgxRowEditTabStopDirective,
100-
...IGX_GRID_COMMON_DIRECTIVES,
101-
...IGX_GRID_VALIDATION_DIRECTIVES,
102-
...IGX_PAGINATOR_DIRECTIVES
99+
// IGX_GRID_COMMON_DIRECTIVES:
100+
IgxRowDirective,
101+
IgxGridFooterComponent,
102+
IgxAdvancedFilteringDialogComponent,
103+
IgxRowExpandedIndicatorDirective,
104+
IgxRowCollapsedIndicatorDirective,
105+
IgxHeaderExpandedIndicatorDirective,
106+
IgxHeaderCollapsedIndicatorDirective,
107+
IgxExcelStyleHeaderIconDirective,
108+
IgxSortAscendingHeaderIconDirective,
109+
IgxSortDescendingHeaderIconDirective,
110+
IgxSortHeaderIconDirective,
111+
IgxDragIndicatorIconDirective,
112+
IgxRowDragGhostDirective,
113+
IgxGridStateDirective,
114+
// IGX_GRID_HEADERS_DIRECTIVES:
115+
IgxGridHeaderComponent,
116+
IgxGridHeaderGroupComponent,
117+
IgxGridHeaderRowComponent,
118+
// IGX_GRID_COLUMN_DIRECTIVES:
119+
IgxFilterCellTemplateDirective,
120+
IgxSummaryTemplateDirective,
121+
IgxCellTemplateDirective,
122+
IgxCellValidationErrorDirective,
123+
IgxCellHeaderTemplateDirective,
124+
IgxCellFooterTemplateDirective,
125+
IgxCellEditorTemplateDirective,
126+
IgxCollapsibleIndicatorTemplateDirective,
127+
IgxColumnComponent,
128+
IgxColumnGroupComponent,
129+
IgxColumnLayoutComponent,
130+
// IGX_GRID_COLUMN_ACTIONS_DIRECTIVES:
131+
IgxColumnActionsComponent,
132+
IgxColumnHidingDirective,
133+
IgxColumnPinningDirective,
134+
// IGX_GRID_SELECTION_DIRECTIVES:
135+
IgxRowSelectorDirective,
136+
IgxGroupByRowSelectorDirective,
137+
IgxHeadSelectorDirective,
138+
// IGX_GRID_TOOLBAR_DIRECTIVES:
139+
IgxCSVTextDirective,
140+
IgxExcelTextDirective,
141+
IgxGridToolbarActionsComponent,
142+
IgxGridToolbarAdvancedFilteringComponent,
143+
IgxGridToolbarComponent,
144+
IgxGridToolbarExporterComponent,
145+
IgxGridToolbarHidingComponent,
146+
IgxGridToolbarPinningComponent,
147+
IgxGridToolbarTitleComponent,
148+
IgxGridToolbarDirective,
149+
// IGX_GRID_EXCEL_STYLE_FILTER_DIRECTIVES:
150+
IgxGridExcelStyleFilteringComponent,
151+
IgxExcelStyleHeaderComponent,
152+
IgxExcelStyleSortingComponent,
153+
IgxExcelStylePinningComponent,
154+
IgxExcelStyleHidingComponent,
155+
IgxExcelStyleSelectingComponent,
156+
IgxExcelStyleClearFiltersComponent,
157+
IgxExcelStyleConditionalFilterComponent,
158+
IgxExcelStyleMovingComponent,
159+
IgxExcelStyleSearchComponent,
160+
IgxExcelStyleColumnOperationsTemplateDirective,
161+
IgxExcelStyleFilterOperationsTemplateDirective,
162+
IgxExcelStyleLoadingValuesTemplateDirective,
163+
// IGX_GRID_VALIDATION_DIRECTIVES:
164+
IgxColumnRequiredValidatorDirective,
165+
IgxColumnMinValidatorDirective,
166+
IgxColumnMaxValidatorDirective,
167+
IgxColumnEmailValidatorDirective,
168+
IgxColumnMinLengthValidatorDirective,
169+
IgxColumnMaxLengthValidatorDirective,
170+
IgxColumPatternValidatorDirective,
171+
// IGX_PAGINATOR_DIRECTIVES:
172+
IgxPaginatorComponent,
173+
IgxPageNavigationComponent,
174+
IgxPageSizeSelectorComponent,
175+
IgxPaginatorContentDirective,
176+
IgxPaginatorDirective
103177
] as const;

projects/igniteui-angular/src/lib/grids/pivot-grid/public_api.ts

Lines changed: 64 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { IGX_GRID_COMMON_DIRECTIVES } from '../public_api';
21
import { IgxPivotDataSelectorComponent } from './pivot-data-selector.component';
32
import { IgxPivotGridComponent } from './pivot-grid.component';
43
import { IgxPivotValueChipTemplateDirective } from './pivot-grid.directives';
@@ -81,5 +80,68 @@ export const IGX_PIVOT_GRID_DIRECTIVES = [
8180
IgxPivotGridComponent,
8281
IgxPivotDataSelectorComponent,
8382
IgxPivotValueChipTemplateDirective,
84-
...IGX_GRID_COMMON_DIRECTIVES
83+
// IGX_GRID_COMMON_DIRECTIVES:
84+
IgxRowDirective,
85+
IgxGridFooterComponent,
86+
IgxAdvancedFilteringDialogComponent,
87+
IgxRowExpandedIndicatorDirective,
88+
IgxRowCollapsedIndicatorDirective,
89+
IgxHeaderExpandedIndicatorDirective,
90+
IgxHeaderCollapsedIndicatorDirective,
91+
IgxExcelStyleHeaderIconDirective,
92+
IgxSortAscendingHeaderIconDirective,
93+
IgxSortDescendingHeaderIconDirective,
94+
IgxSortHeaderIconDirective,
95+
IgxDragIndicatorIconDirective,
96+
IgxRowDragGhostDirective,
97+
IgxGridStateDirective,
98+
// IGX_GRID_HEADERS_DIRECTIVES:
99+
IgxGridHeaderComponent,
100+
IgxGridHeaderGroupComponent,
101+
IgxGridHeaderRowComponent,
102+
// IGX_GRID_COLUMN_DIRECTIVES:
103+
IgxFilterCellTemplateDirective,
104+
IgxSummaryTemplateDirective,
105+
IgxCellTemplateDirective,
106+
IgxCellValidationErrorDirective,
107+
IgxCellHeaderTemplateDirective,
108+
IgxCellFooterTemplateDirective,
109+
IgxCellEditorTemplateDirective,
110+
IgxCollapsibleIndicatorTemplateDirective,
111+
IgxColumnComponent,
112+
IgxColumnGroupComponent,
113+
IgxColumnLayoutComponent,
114+
// IGX_GRID_COLUMN_ACTIONS_DIRECTIVES:
115+
IgxColumnActionsComponent,
116+
IgxColumnHidingDirective,
117+
IgxColumnPinningDirective,
118+
// IGX_GRID_SELECTION_DIRECTIVES:
119+
IgxRowSelectorDirective,
120+
IgxGroupByRowSelectorDirective,
121+
IgxHeadSelectorDirective,
122+
// IGX_GRID_TOOLBAR_DIRECTIVES:
123+
IgxCSVTextDirective,
124+
IgxExcelTextDirective,
125+
IgxGridToolbarActionsComponent,
126+
IgxGridToolbarAdvancedFilteringComponent,
127+
IgxGridToolbarComponent,
128+
IgxGridToolbarExporterComponent,
129+
IgxGridToolbarHidingComponent,
130+
IgxGridToolbarPinningComponent,
131+
IgxGridToolbarTitleComponent,
132+
IgxGridToolbarDirective,
133+
// IGX_GRID_EXCEL_STYLE_FILTER_DIRECTIVES:
134+
IgxGridExcelStyleFilteringComponent,
135+
IgxExcelStyleHeaderComponent,
136+
IgxExcelStyleSortingComponent,
137+
IgxExcelStylePinningComponent,
138+
IgxExcelStyleHidingComponent,
139+
IgxExcelStyleSelectingComponent,
140+
IgxExcelStyleClearFiltersComponent,
141+
IgxExcelStyleConditionalFilterComponent,
142+
IgxExcelStyleMovingComponent,
143+
IgxExcelStyleSearchComponent,
144+
IgxExcelStyleColumnOperationsTemplateDirective,
145+
IgxExcelStyleFilterOperationsTemplateDirective,
146+
IgxExcelStyleLoadingValuesTemplateDirective
85147
] as const;

0 commit comments

Comments
 (0)