Skip to content

Commit 49a37b1

Browse files
authoredNov 27, 2024
ci: update size test results (angular#30080)
Update the size tracking results post standalone default change.
1 parent 6962c85 commit 49a37b1

File tree

16 files changed

+30
-15
lines changed

16 files changed

+30
-15
lines changed
 

‎goldens/size-test.yaml

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
cdk/drag-drop/all-directives: 170299
2-
cdk/drag-drop/basic: 166324
3-
material/autocomplete/without-optgroup: 223062
4-
material/button-toggle/standalone: 147380
5-
material/chips/basic: 208741
6-
material/datepicker/range-picker/without-form-field: 364729
7-
material/expansion/without-accordion: 154530
8-
material/form-field/advanced: 223916
9-
material/form-field/basic: 222205
10-
material/list/nav-list: 153825
11-
material/menu/without-lazy-content: 221068
12-
material/radio/without-group: 150402
13-
material/select/basic: 269413
14-
material/tabs/advanced: 217500
15-
material/tabs/basic: 217357
1+
cdk/drag-drop/all-directives: 179236
2+
cdk/drag-drop/basic: 175100
3+
material/autocomplete/without-optgroup: 240989
4+
material/button-toggle/standalone: 159023
5+
material/chips/basic: 220624
6+
material/datepicker/range-picker/without-form-field: 389083
7+
material/expansion/without-accordion: 157841
8+
material/form-field/advanced: 237040
9+
material/form-field/basic: 235120
10+
material/list/nav-list: 162378
11+
material/menu/without-lazy-content: 236952
12+
material/radio/without-group: 160056
13+
material/select/basic: 288687
14+
material/tabs/advanced: 230594
15+
material/tabs/basic: 230451

‎integration/size-test/cdk/drag-drop/all-directives.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import {Component, NgModule} from '@angular/core';
33

44
/** Component using all parts of the drag-drop module. All directives should be preserved. */
55
@Component({
6+
standalone: false,
67
template: `
78
<div cdkDropListGroup>
89
<div cdkDropList>

‎integration/size-test/cdk/drag-drop/basic.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {Component, NgModule} from '@angular/core';
77
* `CdkDragHandle` are not used and should be tree-shaken away.
88
*/
99
@Component({
10+
standalone: false,
1011
template: `
1112
<div cdkDropList>
1213
<div cdkDrag></div>

‎integration/size-test/material/autocomplete/without-optgroup.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {MatAutocompleteModule} from '@angular/material/autocomplete';
66
* autocomplete like `MatOptgroup` are not used and should be tree-shaken away.
77
*/
88
@Component({
9+
standalone: false,
910
template: `
1011
<input [matAutocomplete]="myAutocomplete">
1112
<mat-autocomplete #myAutocomplete>

‎integration/size-test/material/button-toggle/standalone.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {MatButtonToggleModule} from '@angular/material/button-toggle';
66
* module such as `MatButtonToggleGroup` are not used and should be tree-shaken away.
77
*/
88
@Component({
9+
standalone: false,
910
template: `
1011
<mat-button-toggle>Center text</mat-button-toggle>
1112
`,

‎integration/size-test/material/chips/basic.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {MatChipsModule} from '@angular/material/chips';
66
* chip module such as `MatChipRemove` are not used and should be tree-shaken away.
77
*/
88
@Component({
9+
standalone: false,
910
template: `
1011
<mat-chip-listbox>
1112
<mat-chip-option>First</mat-chip-option>

‎integration/size-test/material/datepicker/range-picker/without-form-field.ts

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {MatDatepickerModule} from '@angular/material/datepicker';
88
* should be omitted.
99
*/
1010
@Component({
11+
standalone: false,
1112
template: `
1213
<mat-date-range-input [rangePicker]="picker">
1314
<input matStartDate>

‎integration/size-test/material/expansion/without-accordion.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {MatExpansionModule} from '@angular/material/expansion';
66
* the module such as `MatAccordion` or `CdkAccordion` should be tree-shaken away.
77
*/
88
@Component({
9+
standalone: false,
910
template: `
1011
<mat-expansion-panel>
1112
<mat-expansion-panel-header>Title</mat-expansion-panel-header>

‎integration/size-test/material/form-field/advanced.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {MatInputModule} from '@angular/material/input';
77
* directives such as `MatError`, `MatHint`, `MatPrefix` or `MatSuffix`.
88
*/
99
@Component({
10+
standalone: false,
1011
template: `
1112
<mat-form-field>
1213
<div matSuffix></div>

‎integration/size-test/material/form-field/basic.ts

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {MatInputModule} from '@angular/material/input';
88
* and should be tree-shaken away.
99
*/
1010
@Component({
11+
standalone: false,
1112
template: `
1213
<mat-form-field>
1314
<input matInput>

‎integration/size-test/material/list/nav-list.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {MatListModule} from '@angular/material/list';
77
* and should be tree-shaken away.
88
*/
99
@Component({
10+
standalone: false,
1011
template: `
1112
<mat-nav-list>
1213
<mat-list-item>

‎integration/size-test/material/menu/without-lazy-content.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {MatMenuModule} from '@angular/material/menu';
66
* specified, so it should be tree-shaken away.
77
*/
88
@Component({
9+
standalone: false,
910
template: `
1011
<button [matMenuTriggerFor]="menu">Open</button>
1112
<mat-menu #menu="matMenu"></mat-menu>

‎integration/size-test/material/radio/without-group.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {MatRadioModule} from '@angular/material/radio';
66
* should be tree-shaken away properly.
77
*/
88
@Component({
9+
standalone: false,
910
template: `
1011
<mat-radio-button value="hello"></mat-radio-button>
1112
`,

‎integration/size-test/material/select/basic.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {MatSelectModule} from '@angular/material/select';
77
* tree-shaken away.
88
*/
99
@Component({
10+
standalone: false,
1011
template: `
1112
<mat-select>
1213
<mat-option value="First">First</mat-option>

‎integration/size-test/material/tabs/advanced.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {MatTabsModule} from '@angular/material/tabs';
66
* lazy `MatTabContent` and `MatTabLabel`.
77
*/
88
@Component({
9+
standalone: false,
910
template: `
1011
<mat-tab-group>
1112
<mat-tab>

‎integration/size-test/material/tabs/basic.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {MatTabsModule} from '@angular/material/tabs';
77
* be tree-shaken away.
88
*/
99
@Component({
10+
standalone: false,
1011
template: `
1112
<mat-tab-group>
1213
<mat-tab label="Hello">Content</mat-tab>

0 commit comments

Comments
 (0)
Please sign in to comment.