Skip to content

Commit e6f947c

Browse files
committed
main - 1b721a0 build: update @angular/bazel for relative imports in ng_package (#30598)
1 parent 914f2c9 commit e6f947c

File tree

117 files changed

+384
-618
lines changed

Some content is hidden

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

117 files changed

+384
-618
lines changed

fesm2022/cdk-experimental/popover-edit.mjs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.1",
272272
args: [{ selector: 'cdk-popover-edit-vanilla-table-example', imports: [CdkPopoverEditModule, FormsModule], template: "<table editable class=\"example-table\">\n <!--\n This edit lens is specified outside of the cell and must explicitly declare\n its context. It could be reused in multiple cells.\n -->\n <ng-template #weightEdit let-element>\n <div style=\"background-color: white; width: 100%\">\n <form #f=\"ngForm\"\n cdkEditControl\n (ngSubmit)=\"onSubmitWeight(element, f)\"\n [cdkEditControlPreservedFormValue]=\"preservedWeightValues.get(element)\"\n (cdkEditControlPreservedFormValueChange)=\"preservedWeightValues.set(element, $event)\">\n Edit b:\n <input type=\"number\" [ngModel]=\"element.weight\" name=\"weight\" required>\n <br>\n <button type=\"submit\">Confirm</button>\n <button cdkEditRevert>Revert</button>\n <button cdkEditClose>Close</button>\n </form>\n </div>\n </ng-template>\n\n <tr>\n <th> No. </th>\n <th> Name </th>\n <th> Weight </th>\n <th> Symbol </th>\n </tr>\n\n @for (element of elements; track element) {\n <tr>\n <td> {{element.position}} </td>\n\n <td [cdkPopoverEdit]=\"nameEdit\">\n {{element.name}}\n\n <!-- This edit is defined in the cell and can implicitly access element -->\n <ng-template #nameEdit>\n <div style=\"background-color: white; width: 100%\">\n <form #f=\"ngForm\"\n cdkEditControl\n (ngSubmit)=\"onSubmitName(element, f)\"\n [cdkEditControlPreservedFormValue]=\"preservedNameValues.get(element)\"\n (cdkEditControlPreservedFormValueChange)=\"preservedNameValues.set(element, $event)\">\n Edit a:\n <input [ngModel]=\"element.name\" name=\"name\" required>\n <br>\n <button type=\"submit\">Confirm</button>\n <button cdkEditRevert>Revert</button>\n <button cdkEditClose>Close</button>\n </form>\n </div>\n </ng-template>\n\n <span *cdkRowHoverContent>\n <button cdkEditOpen>Edit</button>\n </span>\n </td>\n\n <td [cdkPopoverEdit]=\"weightEdit\" [cdkPopoverEditContext]=\"element\">\n {{element.weight}}\n\n <span *cdkRowHoverContent>\n <button cdkEditOpen>Edit</button>\n </span>\n </td>\n\n <td> {{element.symbol}} </td>\n </tr>\n }\n</table>\n", styles: [".example-table {\n width: 100%;\n}\n\n.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n min-width: 300px;\n width: 25%;\n}\n"] }]
273273
}] });
274274

275-
/**
276-
* Generated bundle index. Do not edit.
277-
*/
278-
279275
export { CdkPopoverEditCdkTableExample, CdkPopoverEditCdkTableFlexExample, CdkPopoverEditCellSpanVanillaTableExample, CdkPopoverEditTabOutVanillaTableExample, CdkPopoverEditVanillaTableExample };
280276
//# sourceMappingURL=popover-edit.mjs.map

fesm2022/cdk-experimental/popover-edit.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fesm2022/cdk-experimental/selection.mjs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,5 @@ const ELEMENT_SYMBOLS = [
121121
'Ca',
122122
];
123123

124-
/**
125-
* Generated bundle index. Do not edit.
126-
*/
127-
128124
export { CdkSelectionColumnExample, CdkSelectionListExample };
129125
//# sourceMappingURL=selection.mjs.map

fesm2022/cdk-experimental/selection.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fesm2022/cdk/a11y.mjs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.1",
9999
args: ['subtree']
100100
}] } });
101101

102-
/**
103-
* Generated bundle index. Do not edit.
104-
*/
105-
106102
export { FocusMonitorDirectivesExample, FocusMonitorFocusViaExample, FocusMonitorOverviewExample };
107103
//# sourceMappingURL=a11y.mjs.map

fesm2022/cdk/a11y.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fesm2022/cdk/accordion.mjs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.1",
1717
args: [{ selector: 'cdk-accordion-overview-example', imports: [CdkAccordionModule], template: "<cdk-accordion class=\"example-accordion\">\n @for (item of items; track item; let index = $index) {\n <cdk-accordion-item #accordionItem=\"cdkAccordionItem\" class=\"example-accordion-item\">\n <button\n class=\"example-accordion-item-header\"\n (click)=\"accordionItem.toggle()\"\n tabindex=\"0\"\n [attr.id]=\"'accordion-header-' + index\"\n [attr.aria-expanded]=\"accordionItem.expanded\"\n [attr.aria-controls]=\"'accordion-body-' + index\">\n {{ item }}\n <span class=\"example-accordion-item-description\">\n Click to {{ accordionItem.expanded ? 'close' : 'open' }}\n </span>\n </button>\n @if(accordionItem.expanded) {\n <div\n class=\"example-accordion-item-body\"\n role=\"region\"\n [style.display]=\"accordionItem.expanded ? '' : 'none'\"\n [attr.id]=\"'accordion-body-' + index\"\n [attr.aria-labelledby]=\"'accordion-header-' + index\"\n >\n Lorem ipsum dolor, sit amet, consectetur adipisicing elit. Perferendis excepturi incidunt ipsum\n deleniti labore, tempore non nam doloribus blanditiis veritatis illo autem iure aliquid ullam\n rem tenetur deserunt velit culpa?\n </div>\n }\n </cdk-accordion-item>\n }\n</cdk-accordion>\n", styles: [".example-accordion {\n display: block;\n max-width: 500px;\n}\n\n.example-accordion-item {\n display: block;\n border: solid 1px #ccc;\n}\n\n.example-accordion-item + .example-accordion-item {\n border-top: none;\n}\n\n.example-accordion-item-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n background: none;\n border: none;\n padding: 16px;\n text-align: left;\n\n}\n\n.example-accordion-item-description {\n font-size: 0.85em;\n color: #999;\n}\n\n.example-accordion-item-body {\n padding: 16px;\n}\n\n.example-accordion-item-header:hover {\n cursor: pointer;\n background-color: #eee;\n}\n\n.example-accordion-item:first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n\n.example-accordion-item:last-child {\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n"] }]
1818
}] });
1919

20-
/**
21-
* Generated bundle index. Do not edit.
22-
*/
23-
2420
export { CdkAccordionOverviewExample };
2521
//# sourceMappingURL=accordion.mjs.map

fesm2022/cdk/accordion.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fesm2022/cdk/clipboard.mjs

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import * as i0 from '@angular/core';
22
import { Component } from '@angular/core';
3-
import * as i2 from '@angular/cdk/clipboard';
3+
import * as i2$1 from '@angular/cdk/clipboard';
44
import { ClipboardModule } from '@angular/cdk/clipboard';
5-
import * as i1 from '@angular/forms';
5+
import * as i2 from '@angular/forms';
66
import { FormsModule } from '@angular/forms';
77

88
/**
@@ -19,16 +19,12 @@ class CdkClipboardOverviewExample {
1919
`Unfortunately, he taught his apprentice everything he knew, then his apprentice ` +
2020
`killed him in his sleep. Ironic. He could save others from death, but not himself.`;
2121
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.1", ngImport: i0, type: CdkClipboardOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component });
22-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-next.1", type: CdkClipboardOverviewExample, isStandalone: true, selector: "cdk-clipboard-overview-example", ngImport: i0, template: "<label for=\"clipboard-example-textarea\">Text to be copied</label>\n<textarea id=\"clipboard-example-textarea\" cols=\"30\" rows=\"10\" [(ngModel)]=\"value\"></textarea>\n<button [cdkCopyToClipboard]=\"value\">Copy to clipboard</button>\n", styles: ["textarea {\n display: block;\n margin: 4px 0 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: ClipboardModule }, { kind: "directive", type: i2.CdkCopyToClipboard, selector: "[cdkCopyToClipboard]", inputs: ["cdkCopyToClipboard", "cdkCopyToClipboardAttempts"], outputs: ["cdkCopyToClipboardCopied"] }] });
22+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-next.1", type: CdkClipboardOverviewExample, isStandalone: true, selector: "cdk-clipboard-overview-example", ngImport: i0, template: "<label for=\"clipboard-example-textarea\">Text to be copied</label>\n<textarea id=\"clipboard-example-textarea\" cols=\"30\" rows=\"10\" [(ngModel)]=\"value\"></textarea>\n<button [cdkCopyToClipboard]=\"value\">Copy to clipboard</button>\n", styles: ["textarea {\n display: block;\n margin: 4px 0 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: ClipboardModule }, { kind: "directive", type: i2$1.CdkCopyToClipboard, selector: "[cdkCopyToClipboard]", inputs: ["cdkCopyToClipboard", "cdkCopyToClipboardAttempts"], outputs: ["cdkCopyToClipboardCopied"] }] });
2323
}
2424
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.1", ngImport: i0, type: CdkClipboardOverviewExample, decorators: [{
2525
type: Component,
2626
args: [{ selector: 'cdk-clipboard-overview-example', imports: [FormsModule, ClipboardModule], template: "<label for=\"clipboard-example-textarea\">Text to be copied</label>\n<textarea id=\"clipboard-example-textarea\" cols=\"30\" rows=\"10\" [(ngModel)]=\"value\"></textarea>\n<button [cdkCopyToClipboard]=\"value\">Copy to clipboard</button>\n", styles: ["textarea {\n display: block;\n margin: 4px 0 8px;\n}\n"] }]
2727
}] });
2828

29-
/**
30-
* Generated bundle index. Do not edit.
31-
*/
32-
3329
export { CdkClipboardOverviewExample };
3430
//# sourceMappingURL=clipboard.mjs.map

0 commit comments

Comments
 (0)