@energycap/components 0.39.16-schematics.20240430-1745 → 0.39.17-ECAP-23124-menu-item-divider-improvements.20240523-1134

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/esm2020/lib/controls/checkbox/checkbox.component.mjs +5 -4
  2. package/esm2020/lib/controls/combobox/combobox.component.mjs +35 -42
  3. package/esm2020/lib/controls/file-upload/file-upload.component.mjs +3 -3
  4. package/esm2020/lib/controls/form-control/form-control.component.mjs +2 -2
  5. package/esm2020/lib/controls/form-control-base.mjs +10 -2
  6. package/esm2020/lib/controls/form-group/form-group.component.mjs +12 -3
  7. package/esm2020/lib/controls/menu/menu.component.mjs +67 -39
  8. package/esm2020/lib/controls/numericbox/numericbox.component.mjs +5 -4
  9. package/esm2020/lib/controls/radio-button/radio-button.component.mjs +5 -4
  10. package/esm2020/lib/controls/select/select.component.mjs +5 -4
  11. package/esm2020/lib/controls/textbox/textbox.component.mjs +4 -3
  12. package/fesm2015/energycap-components.mjs +1186 -1150
  13. package/fesm2015/energycap-components.mjs.map +1 -1
  14. package/fesm2020/energycap-components.mjs +1551 -1516
  15. package/fesm2020/energycap-components.mjs.map +1 -1
  16. package/lib/controls/combobox/combobox.component.d.ts +5 -0
  17. package/lib/controls/form-control-base.d.ts +10 -1
  18. package/lib/controls/form-group/form-group.component.d.ts +10 -1
  19. package/lib/controls/menu/menu.component.d.ts +26 -11
  20. package/package.json +2 -3
  21. package/schematics/collection.json +0 -10
  22. package/schematics/rxjs-7-upgrade/index.d.ts +0 -3
  23. package/schematics/rxjs-7-upgrade/index.js +0 -68
  24. package/schematics/rxjs-7-upgrade/index.js.map +0 -1
  25. package/schematics/rxjs-7-upgrade/schema.d.ts +0 -4
  26. package/schematics/rxjs-7-upgrade/schema.js +0 -3
  27. package/schematics/rxjs-7-upgrade/schema.js.map +0 -1
  28. package/schematics/rxjs-7-upgrade/schema.json +0 -14
  29. package/schematics/utilities/typescript.d.ts +0 -7
  30. package/schematics/utilities/typescript.js +0 -42
  31. package/schematics/utilities/typescript.js.map +0 -1
  32. package/schematics/utilities/workspace.d.ts +0 -8
  33. package/schematics/utilities/workspace.js +0 -72
  34. package/schematics/utilities/workspace.js.map +0 -1
@@ -212,6 +212,11 @@ export declare class ComboboxComponent extends FormControlBase implements OnInit
212
212
  * Number of filtered options to display in the footer. Excludes headings.
213
213
  */
214
214
  filteredOptionCount: number;
215
+ /**
216
+ * Flat list of selectable items in the combobox.
217
+ * Does not include headings or divider-section items.
218
+ */
219
+ private selectableItems;
215
220
  /**
216
221
  * Index of the currently-selected options
217
222
  */
@@ -3,6 +3,7 @@ import { AbstractControl } from "@angular/forms";
3
3
  import { Subject } from "rxjs";
4
4
  import { ValidationMessageService } from "../core/validation-message.service";
5
5
  import { FormGroupHelper } from '../shared/form-group.helper';
6
+ import { PopoverContentPosition } from './popover/popover.component';
6
7
  import * as i0 from "@angular/core";
7
8
  export type ControlLabelPosition = "top" | "bottom" | "left";
8
9
  /**
@@ -54,6 +55,14 @@ export declare abstract class FormControlBase implements OnInit, OnDestroy, OnCh
54
55
  * Conditionally show a tooltip on the form control's input.
55
56
  */
56
57
  tooltip?: string;
58
+ /**
59
+ * Conditionally show a help popover next to the controls label.
60
+ */
61
+ helpPopover?: string;
62
+ /**
63
+ * When a help popover is present, allows the popover to be positioned in different locations.
64
+ */
65
+ helpPopoverPosition?: PopoverContentPosition;
57
66
  /**
58
67
  * All current validation errors
59
68
  */
@@ -97,5 +106,5 @@ export declare abstract class FormControlBase implements OnInit, OnDestroy, OnCh
97
106
  */
98
107
  protected translateValidationMessages(data?: any): Promise<void>;
99
108
  static ɵfac: i0.ɵɵFactoryDeclaration<FormControlBase, never>;
100
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlBase, never, never, { "autofocus": "autofocus"; "formModel": "formModel"; "label": "label"; "labelPosition": "labelPosition"; "id": "id"; "pending": "pending"; "required": "required"; "tabindex": "tabindex"; "readonly": "readonly"; "tooltip": "tooltip"; }, {}, never, never, false, never>;
109
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlBase, never, never, { "autofocus": "autofocus"; "formModel": "formModel"; "label": "label"; "labelPosition": "labelPosition"; "id": "id"; "pending": "pending"; "required": "required"; "tabindex": "tabindex"; "readonly": "readonly"; "tooltip": "tooltip"; "helpPopover": "helpPopover"; "helpPopoverPosition": "helpPopoverPosition"; }, {}, never, never, false, never>;
101
110
  }
@@ -3,6 +3,7 @@ import { UntypedFormGroup, UntypedFormArray, AbstractControl } from "@angular/fo
3
3
  import { TranslateService } from "@ngx-translate/core";
4
4
  import { ValidationMessageService } from "../../core/validation-message.service";
5
5
  import { ControlLabelPosition } from "../form-control-base";
6
+ import { PopoverContentPosition } from "../popover/popover.component";
6
7
  import * as i0 from "@angular/core";
7
8
  /** Function to iterate over form controls and
8
9
  * ensure they contain unique values. If any are duplicated all offending
@@ -61,6 +62,14 @@ export declare class FormGroupComponent implements OnInit {
61
62
  /**An optional flag to hide the validation messages.
62
63
  */
63
64
  hideValidationMessage?: boolean;
65
+ /**
66
+ * Conditionally show a help popover next to the controls label.
67
+ */
68
+ helpPopover?: string;
69
+ /**
70
+ * When a help popover is present, allows the popover to be positioned in different locations.
71
+ */
72
+ helpPopoverPosition?: PopoverContentPosition;
64
73
  /**
65
74
  * All current validation errors
66
75
  *
@@ -92,5 +101,5 @@ export declare class FormGroupComponent implements OnInit {
92
101
  */
93
102
  private translateValidationMessages;
94
103
  static ɵfac: i0.ɵɵFactoryDeclaration<FormGroupComponent, never>;
95
- static ɵcmp: i0.ɵɵComponentDeclaration<FormGroupComponent, "ec-form-group", never, { "id": "id"; "label": "label"; "formGroup": "formGroup"; "labelPosition": "labelPosition"; "overrideValidationError": "overrideValidationError"; "hideValidationMessage": "hideValidationMessage"; }, {}, never, ["*"], false, never>;
104
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormGroupComponent, "ec-form-group", never, { "id": "id"; "label": "label"; "formGroup": "formGroup"; "labelPosition": "labelPosition"; "overrideValidationError": "overrideValidationError"; "hideValidationMessage": "hideValidationMessage"; "helpPopover": "helpPopover"; "helpPopoverPosition": "helpPopoverPosition"; }, {}, never, ["*"], false, never>;
96
105
  }
@@ -1,4 +1,4 @@
1
- import { AfterContentInit, ElementRef, EventEmitter, OnDestroy, Renderer2, TemplateRef } from '@angular/core';
1
+ import { AfterContentInit, ElementRef, EventEmitter, OnChanges, OnDestroy, Renderer2, SimpleChanges, TemplateRef } from '@angular/core';
2
2
  import { ScrollService } from '../../core/scroll.service';
3
3
  import { WindowService } from '../../core/window.service';
4
4
  import { LinkTarget } from '../../display/tags/tag';
@@ -11,7 +11,7 @@ export interface MenuItem<TValue = any, SItems = any> extends NavItem {
11
11
  caption?: string;
12
12
  items?: MenuItem<SItems>[];
13
13
  checked?: boolean;
14
- display?: 'default' | 'heading' | 'divider';
14
+ display?: 'default' | 'heading' | 'divider' | 'divided-section';
15
15
  value?: TValue;
16
16
  classList?: string;
17
17
  disabled?: boolean;
@@ -21,6 +21,7 @@ export interface MenuItem<TValue = any, SItems = any> extends NavItem {
21
21
  externalLink?: boolean;
22
22
  /** Optional text to display in-place of the default label when the MenuItem is selected. */
23
23
  selectedLabel?: string;
24
+ hideIfNoItems?: boolean;
24
25
  }
25
26
  export declare const menuAnimationSpeed = 350;
26
27
  /**
@@ -28,7 +29,7 @@ export declare const menuAnimationSpeed = 350;
28
29
  *
29
30
  * @export
30
31
  */
31
- export declare class MenuComponent implements AfterContentInit, OnDestroy {
32
+ export declare class MenuComponent implements AfterContentInit, OnDestroy, OnChanges {
32
33
  private el;
33
34
  private renderer;
34
35
  private windowService;
@@ -161,7 +162,29 @@ export declare class MenuComponent implements AfterContentInit, OnDestroy {
161
162
  * This allows us to prevent double-calls to selectItem() with the same input.
162
163
  */
163
164
  private lastSelected;
165
+ /**
166
+ * Flattened array of all selectable items in the menu. Makes it easier to keep track of the currently highlighted item for keyboard navigation.
167
+ */
168
+ private selectableItems;
169
+ /**
170
+ * Helper function to return a flat list of all selectable items in the provided menu items. Filters out headings and divided-sections.
171
+ * This makes it much easier to keep track of currently highlighted items for keyboard navigation.
172
+ */
173
+ static getSelectableItems(items: MenuItem[]): MenuItem[];
174
+ /**
175
+ * Returns an ID for the provided item based on its index in the provided items array. This mimics the behavior of the MenuComponent's
176
+ * generated IDs for items that don't have provided IDs. This is used in MenuComponent and ComboboxComponent to scroll to specific items.
177
+ * NOTE: If the items array does not match what is displayed in the menu, this function will not return the correct ID.
178
+ *
179
+ * Returns null if the not found
180
+ * @param items The MenuItems array to search through.
181
+ * @param item The item to generate the ID for.
182
+ * @param menuComponentId Used to prefix the generated ID. This should be the ID of the menu component the item is present in.
183
+ * @memberof MenuComponent
184
+ */
185
+ static getIndexedItemId(items: MenuItem[], item?: MenuItem | null, menuComponentId?: string): string | null;
164
186
  constructor(el: ElementRef, renderer: Renderer2, windowService: WindowService, scrollService: ScrollService);
187
+ ngOnChanges(changes: SimpleChanges): void;
165
188
  /**
166
189
  * Sets & displays the interalized template based on
167
190
  * the set template.
@@ -215,14 +238,6 @@ export declare class MenuComponent implements AfterContentInit, OnDestroy {
215
238
  */
216
239
  private scrollMenu;
217
240
  private scrollToHighlightedItem;
218
- /**
219
- * Find a given item's index in the filtered items array.
220
- *
221
- * Returns -1 if not found
222
- * @param itemToFind The matching item to find in the items array.
223
- * @memberof MenuComponent
224
- */
225
- private findItemIndex;
226
241
  private addKeydownListener;
227
242
  /**
228
243
  * Sets the menu item ids using its index if item doesn't already have one
package/package.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "name": "@energycap/components",
3
- "version": "0.39.16-schematics.20240430-1745",
4
- "schematics": "./schematics/collection.json",
3
+ "version": "0.39.17-ECAP-23124-menu-item-divider-improvements.20240523-1134",
5
4
  "dependencies": {
6
5
  "tslib": "^2.0.0"
7
6
  },
@@ -12,7 +11,7 @@
12
11
  "@angular/router": ">=15.2.0",
13
12
  "@angular/cdk": ">=15.2.0",
14
13
  "@ngx-translate/core": "^14.0.0",
15
- "popper.js": "^1.14.7",
14
+ "popper.js": "~1.11.1",
16
15
  "lodash": "^4.17.21",
17
16
  "moment": "^2.29.0",
18
17
  "ngx-clipboard": "^12.0.0"
@@ -1,10 +0,0 @@
1
- {
2
- "$schema": "../../../node_modules/@angular-devkit/schematics/collection-schema.json",
3
- "schematics": {
4
- "rxjs-7-upgrade": {
5
- "description": "Upgrade your project to RxJS 7",
6
- "factory": "./rxjs-7-upgrade/index#rxjs7Upgrade",
7
- "schema": "./rxjs-7-upgrade/schema.json"
8
- }
9
- }
10
- }
@@ -1,3 +0,0 @@
1
- import { Rule } from '@angular-devkit/schematics';
2
- import { Schema as RxJSUpgradeSchema } from './schema';
3
- export declare function rxjs7Upgrade(options: RxJSUpgradeSchema): Rule;
@@ -1,68 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.rxjs7Upgrade = void 0;
13
- const ast_utils_1 = require("@schematics/angular/utility/ast-utils");
14
- const change_1 = require("@schematics/angular/utility/change");
15
- const path_1 = require("path");
16
- const ts = require("typescript");
17
- const typescript_1 = require("../utilities/typescript");
18
- const workspace_1 = require("../utilities/workspace");
19
- function rxjs7Upgrade(options) {
20
- return (tree) => __awaiter(this, void 0, void 0, function* () {
21
- const path = options.path || '/';
22
- const workspace = yield (0, workspace_1.getWorkspace)(path, tree);
23
- // Get all tsconfig paths from the workspace, including test tsconfigs
24
- const tsConfigPaths = (0, workspace_1.getTsConfigPaths)(workspace, tree);
25
- // The base path in the file system for the path argument, replacing all backslashes with forward slashes (for cross-system compatibility).
26
- // The absolute file system path is needed for the typescript compiler to resolve files correctly.
27
- const basePath = process.cwd().replace(/\\/g, path);
28
- tsConfigPaths.forEach(tsConfigPath => {
29
- const program = (0, typescript_1.createTsProgram)(tree, tsConfigPath, basePath);
30
- const checker = program.getTypeChecker();
31
- for (const sourceFile of program.getSourceFiles()) {
32
- // Skip declaration files and external library files
33
- if (sourceFile.isDeclarationFile || program.isSourceFileFromExternalLibrary(sourceFile)) {
34
- continue;
35
- }
36
- const observableSymbols = ['Observable', 'Subject', 'BehaviorSubject', 'ReplaySubject', 'AsyncSubject'];
37
- const toPromiseCalls = (0, ast_utils_1.findNodes)(sourceFile, ts.isCallExpression, undefined, true).filter(node => {
38
- if (ts.isPropertyAccessExpression(node.expression) && node.expression.name.text === 'toPromise') {
39
- const symbol = checker.getTypeAtLocation(node.expression.expression).symbol;
40
- return symbol && observableSymbols.includes(symbol.name);
41
- }
42
- return false;
43
- });
44
- if (toPromiseCalls.length) {
45
- const fileToEdit = (0, path_1.relative)(basePath, sourceFile.fileName);
46
- const recorder = tree.beginUpdate(fileToEdit);
47
- const changes = [];
48
- const printer = ts.createPrinter();
49
- // Add import for lastValueFrom
50
- changes.push((0, ast_utils_1.insertImport)(sourceFile, fileToEdit, 'lastValueFrom', 'rxjs'));
51
- // Replace toPromise calls with lastValueFrom
52
- toPromiseCalls.forEach(node => {
53
- if (ts.isPropertyAccessExpression(node.expression)) {
54
- const newCallExpression = ts.factory.createCallExpression(ts.factory.createIdentifier('lastValueFrom'), undefined, [node.expression.expression]);
55
- const newNodeText = printer.printNode(ts.EmitHint.Unspecified, newCallExpression, sourceFile);
56
- const change = new change_1.ReplaceChange(fileToEdit, node.getStart(), node.getText(), newNodeText);
57
- changes.push(change);
58
- }
59
- });
60
- (0, change_1.applyToUpdateRecorder)(recorder, changes);
61
- tree.commitUpdate(recorder);
62
- }
63
- }
64
- });
65
- });
66
- }
67
- exports.rxjs7Upgrade = rxjs7Upgrade;
68
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../projects/components/schematics/rxjs-7-upgrade/index.ts"],"names":[],"mappings":"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"}
@@ -1,4 +0,0 @@
1
- export interface Schema {
2
- /** Path to the angular workspace. */
3
- path?: string;
4
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=schema.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../projects/components/schematics/rxjs-7-upgrade/schema.ts"],"names":[],"mappings":""}
@@ -1,14 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "$id": "EnergyCAP.RxJS7UpgradeSchema",
4
- "title": "RxJS 7 Upgrade Schema",
5
- "type": "object",
6
- "properties": {
7
- "path": {
8
- "type": "string",
9
- "format": "path",
10
- "description": "The path to complete the upgrade.",
11
- "visible": false
12
- }
13
- }
14
- }
@@ -1,7 +0,0 @@
1
- import { Tree } from '@angular-devkit/schematics';
2
- import * as ts from 'typescript';
3
- /** Parses the TSConfig file to be used in the TS Compiler Program. */
4
- export declare function parseTsConfig(absoluteTsConfigPath: string): ts.ParsedCommandLine;
5
- /** Creates a file host to be used with with a TS Compiler program. */
6
- export declare function createTsCompilerHost(tree: Tree, options: ts.CompilerOptions, basePath: string): ts.CompilerHost;
7
- export declare function createTsProgram(tree: Tree, tsConfigPath: string, basePath: string): ts.Program;
@@ -1,42 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createTsProgram = exports.createTsCompilerHost = exports.parseTsConfig = void 0;
4
- const path_1 = require("path");
5
- const ts = require("typescript");
6
- /** Parses the TSConfig file to be used in the TS Compiler Program. */
7
- function parseTsConfig(absoluteTsConfigPath) {
8
- const { config } = ts.readConfigFile(absoluteTsConfigPath, ts.sys.readFile);
9
- const parseHost = {
10
- useCaseSensitiveFileNames: ts.sys.useCaseSensitiveFileNames,
11
- fileExists: ts.sys.fileExists,
12
- readFile: ts.sys.readFile,
13
- readDirectory: ts.sys.readDirectory
14
- };
15
- return ts.parseJsonConfigFileContent(config, parseHost, (0, path_1.dirname)(absoluteTsConfigPath), {});
16
- }
17
- exports.parseTsConfig = parseTsConfig;
18
- /** Creates a file host to be used with with a TS Compiler program. */
19
- function createTsCompilerHost(tree, options, basePath) {
20
- const host = ts.createCompilerHost(options);
21
- // Read files from the virtual tree to prevent conflicting changes between project migrations
22
- host.readFile = (fileName) => {
23
- var _a;
24
- // The angular schematic tree reads files using paths relative to the project root
25
- const filePath = (0, path_1.relative)(basePath, fileName);
26
- const result = (_a = tree.read(filePath)) === null || _a === void 0 ? void 0 : _a.toString();
27
- // Remove BOM header to prevent TSC parsing errors
28
- return result === null || result === void 0 ? void 0 : result.replace(/^\uFEFF/, '');
29
- };
30
- return host;
31
- }
32
- exports.createTsCompilerHost = createTsCompilerHost;
33
- function createTsProgram(tree, tsConfigPath, basePath) {
34
- // Resolve the absolute file system path to the TSConfig file. This is needed for the TS Compiler to resolve files correctly.
35
- const absoluteTsConfigPath = (0, path_1.resolve)(basePath, tsConfigPath);
36
- const parsed = parseTsConfig(absoluteTsConfigPath);
37
- const options = Object.assign(Object.assign({}, parsed.options), { skipLibCheck: true, skipDefaultLibCheck: true });
38
- const host = createTsCompilerHost(tree, options, basePath);
39
- return ts.createProgram(parsed.fileNames, options, host);
40
- }
41
- exports.createTsProgram = createTsProgram;
42
- //# sourceMappingURL=typescript.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"typescript.js","sourceRoot":"","sources":["../../../../projects/components/schematics/utilities/typescript.ts"],"names":[],"mappings":";;;AACA,+BAAkD;AAClD,iCAAiC;AAEjC,sEAAsE;AACtE,SAAgB,aAAa,CAAC,oBAA4B;IACxD,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC,cAAc,CAAC,oBAAoB,EAAE,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IAC5E,MAAM,SAAS,GAAG;QAChB,yBAAyB,EAAE,EAAE,CAAC,GAAG,CAAC,yBAAyB;QAC3D,UAAU,EAAE,EAAE,CAAC,GAAG,CAAC,UAAU;QAC7B,QAAQ,EAAE,EAAE,CAAC,GAAG,CAAC,QAAQ;QACzB,aAAa,EAAE,EAAE,CAAC,GAAG,CAAC,aAAa;KACpC,CAAC;IAEF,OAAO,EAAE,CAAC,0BAA0B,CAAC,MAAM,EAAE,SAAS,EAAE,IAAA,cAAO,EAAC,oBAAoB,CAAC,EAAE,EAAE,CAAC,CAAC;AAC7F,CAAC;AAVD,sCAUC;AAED,sEAAsE;AACtE,SAAgB,oBAAoB,CAAC,IAAU,EAAE,OAA2B,EAAE,QAAgB;IAC5F,MAAM,IAAI,GAAG,EAAE,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAC5C,6FAA6F;IAC7F,IAAI,CAAC,QAAQ,GAAG,CAAC,QAAgB,EAAE,EAAE;;QACnC,kFAAkF;QAClF,MAAM,QAAQ,GAAG,IAAA,eAAQ,EAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;QAC9C,MAAM,MAAM,GAAG,MAAA,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,0CAAE,QAAQ,EAAE,CAAC;QAC/C,kDAAkD;QAClD,OAAO,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;IACxC,CAAC,CAAC;IACF,OAAO,IAAI,CAAC;AACd,CAAC;AAXD,oDAWC;AAGD,SAAgB,eAAe,CAAC,IAAU,EAAE,YAAoB,EAAE,QAAgB;IAChF,6HAA6H;IAC7H,MAAM,oBAAoB,GAAG,IAAA,cAAO,EAAC,QAAQ,EAAE,YAAY,CAAC,CAAC;IAC7D,MAAM,MAAM,GAAG,aAAa,CAAC,oBAAoB,CAAC,CAAC;IACnD,MAAM,OAAO,mCAAQ,MAAM,CAAC,OAAO,KAAE,YAAY,EAAE,IAAI,EAAE,mBAAmB,EAAE,IAAI,GAAE,CAAC;IACrF,MAAM,IAAI,GAAG,oBAAoB,CAAC,IAAI,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;IAC3D,OAAO,EAAE,CAAC,aAAa,CAAC,MAAM,CAAC,SAAS,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;AAC3D,CAAC;AAPD,0CAOC"}
@@ -1,8 +0,0 @@
1
- import { workspaces } from '@angular-devkit/core';
2
- import { Tree } from '@angular-devkit/schematics';
3
- /** Creates a file host to be used with Angular-Devkit's workspace utilities */
4
- export declare function createWorkspaceHost(tree: Tree): workspaces.WorkspaceHost;
5
- /** Returns the Angular workspace definition for the given path. The path must be a directory containing an angular.json or .angular.json file. */
6
- export declare function getWorkspace(path: string, tree: Tree): Promise<workspaces.WorkspaceDefinition>;
7
- /** Returns all tsconfig paths from the angular workspace, including testing tsconfigs. */
8
- export declare function getTsConfigPaths(workspace: workspaces.WorkspaceDefinition, tree: Tree): string[];
@@ -1,72 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.getTsConfigPaths = exports.getWorkspace = exports.createWorkspaceHost = void 0;
13
- const core_1 = require("@angular-devkit/core");
14
- const workspace_1 = require("@schematics/angular/utility/workspace");
15
- /** Creates a file host to be used with Angular-Devkit's workspace utilities */
16
- function createWorkspaceHost(tree) {
17
- return {
18
- readFile(path) {
19
- return __awaiter(this, void 0, void 0, function* () {
20
- const data = tree.read(path);
21
- if (!data) {
22
- throw new Error(`File not found: ${path}`);
23
- }
24
- return core_1.virtualFs.fileBufferToString(data);
25
- });
26
- },
27
- writeFile(path, data) {
28
- return __awaiter(this, void 0, void 0, function* () {
29
- return tree.overwrite(path, data);
30
- });
31
- },
32
- isDirectory(path) {
33
- return __awaiter(this, void 0, void 0, function* () {
34
- return !tree.exists(path) && tree.getDir(path).subfiles.length > 0;
35
- });
36
- },
37
- isFile(path) {
38
- return __awaiter(this, void 0, void 0, function* () {
39
- return tree.exists(path);
40
- });
41
- }
42
- };
43
- }
44
- exports.createWorkspaceHost = createWorkspaceHost;
45
- /** Returns the Angular workspace definition for the given path. The path must be a directory containing an angular.json or .angular.json file. */
46
- function getWorkspace(path, tree) {
47
- return __awaiter(this, void 0, void 0, function* () {
48
- const host = createWorkspaceHost(tree);
49
- const { workspace } = yield core_1.workspaces.readWorkspace(path, host);
50
- return workspace;
51
- });
52
- }
53
- exports.getWorkspace = getWorkspace;
54
- /** Returns all tsconfig paths from the angular workspace, including testing tsconfigs. */
55
- function getTsConfigPaths(workspace, tree) {
56
- const buildPaths = new Set();
57
- const testPaths = new Set();
58
- for (const [name, target] of (0, workspace_1.allWorkspaceTargets)(workspace)) {
59
- if (name !== 'build' && name !== 'test') {
60
- continue;
61
- }
62
- for (const [, options] of (0, workspace_1.allTargetOptions)(target)) {
63
- if (options.tsConfig && typeof options.tsConfig === 'string' && tree.exists(options.tsConfig)) {
64
- const normalizedPath = (0, core_1.normalize)(options.tsConfig);
65
- name === 'build' ? buildPaths.add(normalizedPath) : testPaths.add(normalizedPath);
66
- }
67
- }
68
- }
69
- return [...buildPaths, ...testPaths];
70
- }
71
- exports.getTsConfigPaths = getTsConfigPaths;
72
- //# sourceMappingURL=workspace.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"workspace.js","sourceRoot":"","sources":["../../../../projects/components/schematics/utilities/workspace.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAExE,qEAA8F;AAE9F,+EAA+E;AAC/E,SAAgB,mBAAmB,CAAC,IAAU;IAC5C,OAAO;QACC,QAAQ,CAAC,IAAY;;gBACzB,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gBAC7B,IAAI,CAAC,IAAI,EAAE;oBACT,MAAM,IAAI,KAAK,CAAC,mBAAmB,IAAI,EAAE,CAAC,CAAC;iBAC5C;gBACD,OAAO,gBAAS,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;YAC5C,CAAC;SAAA;QACK,SAAS,CAAC,IAAY,EAAE,IAAY;;gBACxC,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;YACpC,CAAC;SAAA;QACK,WAAW,CAAC,IAAY;;gBAC5B,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;YACrE,CAAC;SAAA;QACK,MAAM,CAAC,IAAY;;gBACvB,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;YAC3B,CAAC;SAAA;KACF,CAAA;AACH,CAAC;AAnBD,kDAmBC;AAED,kJAAkJ;AAClJ,SAAsB,YAAY,CAAC,IAAY,EAAE,IAAU;;QACzD,MAAM,IAAI,GAAG,mBAAmB,CAAC,IAAI,CAAC,CAAC;QACvC,MAAM,EAAE,SAAS,EAAE,GAAG,MAAM,iBAAU,CAAC,aAAa,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;QACjE,OAAO,SAAS,CAAC;IACnB,CAAC;CAAA;AAJD,oCAIC;AAED,0FAA0F;AAC1F,SAAgB,gBAAgB,CAAC,SAAyC,EAAE,IAAU;IACpF,MAAM,UAAU,GAAG,IAAI,GAAG,EAAU,CAAC;IACrC,MAAM,SAAS,GAAG,IAAI,GAAG,EAAU,CAAC;IAEpC,KAAK,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,IAAI,IAAA,+BAAmB,EAAC,SAAS,CAAC,EAAE;QAC3D,IAAI,IAAI,KAAK,OAAO,IAAI,IAAI,KAAK,MAAM,EAAE;YACvC,SAAS;SACV;QAED,KAAK,MAAM,CAAC,EAAE,OAAO,CAAC,IAAI,IAAA,4BAAgB,EAAC,MAAM,CAAC,EAAE;YAClD,IAAI,OAAO,CAAC,QAAQ,IAAI,OAAO,OAAO,CAAC,QAAQ,KAAK,QAAQ,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE;gBAC7F,MAAM,cAAc,GAAG,IAAA,gBAAS,EAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;gBACnD,IAAI,KAAK,OAAO,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;aACnF;SACF;KACF;IAED,OAAO,CAAC,GAAG,UAAU,EAAE,GAAG,SAAS,CAAC,CAAC;AACvC,CAAC;AAlBD,4CAkBC"}