@energycap/components 0.39.9-schematics.20240307-1726 → 0.39.10-integ-billcapture-final.20240312-0851
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.
- package/esm2020/lib/controls/combobox/combobox.component.mjs +1 -1
- package/esm2020/lib/controls/form-control/form-control.component.mjs +2 -2
- package/esm2020/lib/controls/select/select.component.mjs +2 -2
- package/esm2020/lib/display/confirm/confirm.component.mjs +5 -3
- package/esm2020/lib/display/tags/tag.mjs +1 -1
- package/esm2020/lib/display/tags/tags.component.mjs +2 -2
- package/esm2020/lib/shared/page/page-view/page-view.component.mjs +7 -3
- package/fesm2015/energycap-components.mjs +16 -10
- package/fesm2015/energycap-components.mjs.map +1 -1
- package/fesm2020/energycap-components.mjs +16 -10
- package/fesm2020/energycap-components.mjs.map +1 -1
- package/lib/display/confirm/confirm.component.d.ts +2 -0
- package/lib/display/tags/tag.d.ts +1 -1
- package/lib/shared/page/page-view/page-view.component.d.ts +3 -1
- package/package.json +2 -3
- package/src/styles/mixins/_tags-base.scss +2 -1
- package/schematics/collection.json +0 -9
- package/schematics/ng-generate/rxjs-7-upgrade/index.d.ts +0 -2
- package/schematics/ng-generate/rxjs-7-upgrade/index.js +0 -140
- package/schematics/ng-generate/rxjs-7-upgrade/index.js.map +0 -1
@@ -51,6 +51,8 @@ export declare class ConfirmDialogContext {
|
|
51
51
|
saveButtonType?: ButtonType;
|
52
52
|
/** Optional cancel button label */
|
53
53
|
cancelLabel?: string;
|
54
|
+
/** Optional flag for hiding the cancel (secondary) button */
|
55
|
+
hideCancel?: boolean;
|
54
56
|
/** When true, adds the submit tag to the save button so hitting enter triggers the save */
|
55
57
|
saveOnEnter?: boolean;
|
56
58
|
/** Optional alternate save button label */
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/** Tag type used to style the tag */
|
2
|
-
export type TagType = "info" | "success" | "warning" | "danger" | "accent" | "chargeback" | "accrual" | "inverted";
|
2
|
+
export type TagType = "info" | "success" | "warning" | "danger" | "accent" | "chargeback" | "accrual" | "inverted" | "system";
|
3
3
|
/** Link target options, shared amongst tag, menu and item display */
|
4
4
|
export type LinkTarget = '_self' | '_blank' | '_parent' | '_top';
|
5
5
|
/** Tag contains a label and type. Type is default by default */
|
@@ -50,6 +50,8 @@ export declare class PageViewComponent {
|
|
50
50
|
*/
|
51
51
|
secondaryActionLabel?: string;
|
52
52
|
hideSecondaryAction: boolean;
|
53
|
+
/** Flag for hiding the tiny close button in the top-right corner of dialog while in pending state only */
|
54
|
+
hideCloseOnPending: boolean;
|
53
55
|
/**
|
54
56
|
* Label for the primary button in the header. Default is 'Save'
|
55
57
|
*/
|
@@ -92,5 +94,5 @@ export declare class PageViewComponent {
|
|
92
94
|
secondaryAction(event: any): void;
|
93
95
|
closeDialog(): void;
|
94
96
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageViewComponent, never>;
|
95
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageViewComponent, "ec-page-view", never, { "isDialog": "isDialog"; "readonly": "readonly"; "status": "status"; "showHeader": "showHeader"; "errors": "errors"; "breadcrumbs": "breadcrumbs"; "title": "title"; "titleIcon": "titleIcon"; "subTitle": "subTitle"; "subTitleUrl": "subTitleUrl"; "moreActionsLabel": "moreActionsLabel"; "moreActions": "moreActions"; "secondaryActionLabel": "secondaryActionLabel"; "hideSecondaryAction": "hideSecondaryAction"; "primaryActionLabel": "primaryActionLabel"; "hidePrimaryAction": "hidePrimaryAction"; "customTitleTemplate": "customTitleTemplate"; "customActionsTemplate": "customActionsTemplate"; "customHeaderTemplate": "customHeaderTemplate"; "footerTemplate": "footerTemplate"; "customErrorBannerTemplate": "customErrorBannerTemplate"; "stickyFooter": "stickyFooter"; "fitContent": "fitContent"; "bgContent": "bgContent"; }, { "onPrimaryAction": "onPrimaryAction"; "onSecondaryAction": "onSecondaryAction"; }, never, ["*"], false, never>;
|
97
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageViewComponent, "ec-page-view", never, { "isDialog": "isDialog"; "readonly": "readonly"; "status": "status"; "showHeader": "showHeader"; "errors": "errors"; "breadcrumbs": "breadcrumbs"; "title": "title"; "titleIcon": "titleIcon"; "subTitle": "subTitle"; "subTitleUrl": "subTitleUrl"; "moreActionsLabel": "moreActionsLabel"; "moreActions": "moreActions"; "secondaryActionLabel": "secondaryActionLabel"; "hideSecondaryAction": "hideSecondaryAction"; "hideCloseOnPending": "hideCloseOnPending"; "primaryActionLabel": "primaryActionLabel"; "hidePrimaryAction": "hidePrimaryAction"; "customTitleTemplate": "customTitleTemplate"; "customActionsTemplate": "customActionsTemplate"; "customHeaderTemplate": "customHeaderTemplate"; "footerTemplate": "footerTemplate"; "customErrorBannerTemplate": "customErrorBannerTemplate"; "stickyFooter": "stickyFooter"; "fitContent": "fitContent"; "bgContent": "bgContent"; }, { "onPrimaryAction": "onPrimaryAction"; "onSecondaryAction": "onSecondaryAction"; }, never, ["*"], false, never>;
|
96
98
|
}
|
package/package.json
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@energycap/components",
|
3
|
-
"version": "0.39.
|
4
|
-
"schematics": "./schematics/collection.json",
|
3
|
+
"version": "0.39.10-integ-billcapture-final.20240312-0851",
|
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": "
|
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"
|
@@ -7,7 +7,8 @@ $tag-colors: (
|
|
7
7
|
danger: (bg: var(--ec-color-red-1), border: var(--ec-color-danger)),
|
8
8
|
accent: (bg: var(--ec-color-purple-1), border: var(--ec-color-accent)),
|
9
9
|
chargeback: (bg: var(--ec-color-orange-1), border: var(--ec-color-orange-7)),
|
10
|
-
accrual: (bg: var(--ec-color-aqua-1), border: var(--ec-color-aqua-5))
|
10
|
+
accrual: (bg: var(--ec-color-aqua-1), border: var(--ec-color-aqua-5)),
|
11
|
+
system: (bg: var(--ec-color-gray-1), border: var(--ec-color-gray-4)),
|
11
12
|
);
|
12
13
|
|
13
14
|
@mixin tag-type($type) {
|
@@ -1,140 +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 core_1 = require("@angular-devkit/core");
|
14
|
-
const ast_utils_1 = require("@schematics/angular/utility/ast-utils");
|
15
|
-
const change_1 = require("@schematics/angular/utility/change");
|
16
|
-
const workspace_1 = require("@schematics/angular/utility/workspace");
|
17
|
-
const path_1 = require("path");
|
18
|
-
const ts = require("typescript");
|
19
|
-
function rxjs7Upgrade() {
|
20
|
-
return (tree) => __awaiter(this, void 0, void 0, function* () {
|
21
|
-
const workspaceHost = createWorkspaceHost(tree);
|
22
|
-
const { workspace } = yield core_1.workspaces.readWorkspace('/', workspaceHost);
|
23
|
-
// Get all tsconfig paths from the workspace, including test tsconfigs
|
24
|
-
const tsConfigPaths = getTsConfigPaths(workspace, tree);
|
25
|
-
// The base path in the file system for the workspace. This is needed for the typescript compiler to resolve files correctly.
|
26
|
-
const basePath = process.cwd().replace(/\\/g, '/');
|
27
|
-
tsConfigPaths.forEach(tsConfigPath => {
|
28
|
-
const program = createTsProgram(tree, tsConfigPath, basePath);
|
29
|
-
const checker = program.getTypeChecker();
|
30
|
-
for (const sourceFile of program.getSourceFiles()) {
|
31
|
-
// Skip declaration files and external library files
|
32
|
-
if (sourceFile.isDeclarationFile || program.isSourceFileFromExternalLibrary(sourceFile)) {
|
33
|
-
continue;
|
34
|
-
}
|
35
|
-
const observables = ['Observable', 'Subject', 'BehaviorSubject', 'ReplaySubject', 'AsyncSubject'];
|
36
|
-
const toPromiseCalls = (0, ast_utils_1.findNodes)(sourceFile, ts.isCallExpression, undefined, true).filter(node => {
|
37
|
-
if (ts.isPropertyAccessExpression(node.expression) && node.expression.name.text === 'toPromise') {
|
38
|
-
const symbol = checker.getTypeAtLocation(node.expression.expression).symbol;
|
39
|
-
return symbol && observables.includes(symbol.name);
|
40
|
-
}
|
41
|
-
return false;
|
42
|
-
});
|
43
|
-
if (toPromiseCalls.length) {
|
44
|
-
const fileToEdit = (0, path_1.relative)(basePath, sourceFile.fileName);
|
45
|
-
const recorder = tree.beginUpdate(fileToEdit);
|
46
|
-
const changes = [];
|
47
|
-
const printer = ts.createPrinter();
|
48
|
-
// Add import for lastValueFrom
|
49
|
-
changes.push((0, ast_utils_1.insertImport)(sourceFile, fileToEdit, 'lastValueFrom', 'rxjs'));
|
50
|
-
// Replace toPromise calls with lastValueFrom
|
51
|
-
toPromiseCalls.forEach(node => {
|
52
|
-
if (ts.isPropertyAccessExpression(node.expression)) {
|
53
|
-
const newCallExpression = ts.factory.createCallExpression(ts.factory.createIdentifier('lastValueFrom'), undefined, [node.expression.expression]);
|
54
|
-
const newNodeText = printer.printNode(ts.EmitHint.Unspecified, newCallExpression, sourceFile);
|
55
|
-
const change = new change_1.ReplaceChange(fileToEdit, node.getStart(), node.getText(), newNodeText);
|
56
|
-
changes.push(change);
|
57
|
-
}
|
58
|
-
});
|
59
|
-
(0, change_1.applyToUpdateRecorder)(recorder, changes);
|
60
|
-
tree.commitUpdate(recorder);
|
61
|
-
}
|
62
|
-
}
|
63
|
-
});
|
64
|
-
});
|
65
|
-
}
|
66
|
-
exports.rxjs7Upgrade = rxjs7Upgrade;
|
67
|
-
function createWorkspaceHost(tree) {
|
68
|
-
return {
|
69
|
-
readFile(path) {
|
70
|
-
return __awaiter(this, void 0, void 0, function* () {
|
71
|
-
const data = tree.read(path);
|
72
|
-
if (!data) {
|
73
|
-
throw new Error(`File not found: ${path}`);
|
74
|
-
}
|
75
|
-
return core_1.virtualFs.fileBufferToString(data);
|
76
|
-
});
|
77
|
-
},
|
78
|
-
writeFile(path, data) {
|
79
|
-
return __awaiter(this, void 0, void 0, function* () {
|
80
|
-
return tree.overwrite(path, data);
|
81
|
-
});
|
82
|
-
},
|
83
|
-
isDirectory(path) {
|
84
|
-
return __awaiter(this, void 0, void 0, function* () {
|
85
|
-
return !tree.exists(path) && tree.getDir(path).subfiles.length > 0;
|
86
|
-
});
|
87
|
-
},
|
88
|
-
isFile(path) {
|
89
|
-
return __awaiter(this, void 0, void 0, function* () {
|
90
|
-
return tree.exists(path);
|
91
|
-
});
|
92
|
-
}
|
93
|
-
};
|
94
|
-
}
|
95
|
-
function getTsConfigPaths(workspace, tree) {
|
96
|
-
const buildPaths = new Set();
|
97
|
-
const testPaths = new Set();
|
98
|
-
for (const [name, target] of (0, workspace_1.allWorkspaceTargets)(workspace)) {
|
99
|
-
if (name !== 'build' && name !== 'test') {
|
100
|
-
continue;
|
101
|
-
}
|
102
|
-
for (const [, options] of (0, workspace_1.allTargetOptions)(target)) {
|
103
|
-
if (options.tsConfig && typeof options.tsConfig === 'string' && tree.exists(options.tsConfig)) {
|
104
|
-
const normalizedPath = (0, core_1.normalize)(options.tsConfig);
|
105
|
-
name === 'build' ? buildPaths.add(normalizedPath) : testPaths.add(normalizedPath);
|
106
|
-
}
|
107
|
-
}
|
108
|
-
}
|
109
|
-
return [...buildPaths, ...testPaths];
|
110
|
-
}
|
111
|
-
function createTsProgram(tree, tsConfigPath, basePath) {
|
112
|
-
tsConfigPath = (0, path_1.resolve)(basePath, tsConfigPath);
|
113
|
-
const parsed = parseTsConfig(tsConfigPath, (0, path_1.dirname)(tsConfigPath));
|
114
|
-
const options = Object.assign(Object.assign({}, parsed.options), { skipLibCheck: true, skipDefaultLibCheck: true });
|
115
|
-
const host = createTsCompilerHost(tree, options, basePath);
|
116
|
-
return ts.createProgram(parsed.fileNames, options, host);
|
117
|
-
}
|
118
|
-
function parseTsConfig(tsConfigPath, basePath) {
|
119
|
-
const { config } = ts.readConfigFile(tsConfigPath, ts.sys.readFile);
|
120
|
-
const parseHost = {
|
121
|
-
useCaseSensitiveFileNames: ts.sys.useCaseSensitiveFileNames,
|
122
|
-
fileExists: ts.sys.fileExists,
|
123
|
-
readFile: ts.sys.readFile,
|
124
|
-
readDirectory: ts.sys.readDirectory
|
125
|
-
};
|
126
|
-
return ts.parseJsonConfigFileContent(config, parseHost, basePath, {});
|
127
|
-
}
|
128
|
-
function createTsCompilerHost(tree, options, basePath) {
|
129
|
-
const host = ts.createCompilerHost(options);
|
130
|
-
// Read files from the virtual tree to prevent conflicting changes between project migrations
|
131
|
-
host.readFile = (fileName) => {
|
132
|
-
var _a;
|
133
|
-
const relativePath = (0, path_1.relative)(basePath, fileName);
|
134
|
-
const result = (_a = tree.read(relativePath)) === null || _a === void 0 ? void 0 : _a.toString();
|
135
|
-
// Remove BOM header to prevent TSC parsing errors
|
136
|
-
return result === null || result === void 0 ? void 0 : result.replace(/^\uFEFF/, '');
|
137
|
-
};
|
138
|
-
return host;
|
139
|
-
}
|
140
|
-
//# sourceMappingURL=index.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../projects/components/schematics/ng-generate/rxjs-7-upgrade/index.ts"],"names":[],"mappings":"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"}
|