@po-ui/ng-code-editor 5.22.0 → 6.0.0
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/{esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable-options.interface.js → esm2020/lib/components/po-code-editor/interfaces/po-code-editor-registerable-options.interface.mjs} +0 -0
- package/{esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable-suggestion.interface.js → esm2020/lib/components/po-code-editor/interfaces/po-code-editor-registerable-suggestion.interface.mjs} +0 -0
- package/{esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable-tokens.interface.js → esm2020/lib/components/po-code-editor/interfaces/po-code-editor-registerable-tokens.interface.mjs} +0 -0
- package/{esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable.interface.js → esm2020/lib/components/po-code-editor/interfaces/po-code-editor-registerable.interface.mjs} +0 -0
- package/esm2020/lib/components/po-code-editor/po-code-editor-base.component.mjs +261 -0
- package/esm2020/lib/components/po-code-editor/po-code-editor-register.service.mjs +66 -0
- package/esm2020/lib/components/po-code-editor/po-code-editor-suggestion.service.mjs +29 -0
- package/{esm2015/lib/components/po-code-editor/po-code-editor.component.js → esm2020/lib/components/po-code-editor/po-code-editor.component.mjs} +24 -20
- package/esm2020/lib/components/po-code-editor/po-code-editor.module.mjs +37 -0
- package/{esm2015/lib/index.js → esm2020/lib/index.mjs} +0 -0
- package/esm2020/po-ui-ng-code-editor.mjs +5 -0
- package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
- package/fesm2015/po-ui-ng-code-editor.mjs +632 -0
- package/fesm2015/po-ui-ng-code-editor.mjs.map +1 -0
- package/{fesm2015/po-ui-ng-code-editor.js → fesm2020/po-ui-ng-code-editor.mjs} +86 -63
- package/fesm2020/po-ui-ng-code-editor.mjs.map +1 -0
- package/lib/components/po-code-editor/po-code-editor-base.component.d.ts +3 -0
- package/lib/components/po-code-editor/po-code-editor-register.service.d.ts +3 -0
- package/lib/components/po-code-editor/po-code-editor-suggestion.service.d.ts +3 -0
- package/lib/components/po-code-editor/po-code-editor.component.d.ts +3 -0
- package/lib/components/po-code-editor/po-code-editor.module.d.ts +6 -0
- package/package.json +26 -14
- package/po-ui-ng-code-editor-6.0.0.tgz +0 -0
- package/po-ui-ng-code-editor.d.ts +1 -2
- package/schematics/ng-add/index.js +5 -5
- package/schematics/ng-add/index.js.map +1 -1
- package/schematics/ng-add/index.spec.js +23 -23
- package/schematics/ng-add/index.spec.js.map +1 -1
- package/bundles/po-ui-ng-code-editor.umd.js +0 -981
- package/bundles/po-ui-ng-code-editor.umd.js.map +0 -1
- package/esm2015/lib/components/po-code-editor/po-code-editor-base.component.js +0 -248
- package/esm2015/lib/components/po-code-editor/po-code-editor-register.service.js +0 -63
- package/esm2015/lib/components/po-code-editor/po-code-editor-suggestion.service.js +0 -28
- package/esm2015/lib/components/po-code-editor/po-code-editor.module.js +0 -31
- package/esm2015/po-ui-ng-code-editor.js +0 -7
- package/fesm2015/po-ui-ng-code-editor.js.map +0 -1
- package/po-ui-ng-code-editor-5.22.0.tgz +0 -0
- package/po-ui-ng-code-editor.metadata.json +0 -1
|
@@ -5,7 +5,7 @@ const testing_1 = require("@angular-devkit/schematics/testing");
|
|
|
5
5
|
const project_1 = require("@po-ui/ng-schematics/project");
|
|
6
6
|
const path = require("path");
|
|
7
7
|
const collectionPath = path.join(__dirname, '../collection.json');
|
|
8
|
-
|
|
8
|
+
xdescribe('Schematic: ng-add', () => {
|
|
9
9
|
const runner = new testing_1.SchematicTestRunner('schematics', collectionPath);
|
|
10
10
|
const workspaceOptions = {
|
|
11
11
|
name: 'workspace',
|
|
@@ -16,14 +16,14 @@ describe('Schematic: ng-add', () => {
|
|
|
16
16
|
name: 'po'
|
|
17
17
|
};
|
|
18
18
|
let appTree;
|
|
19
|
-
beforeEach(() => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
19
|
+
beforeEach(() => (0, tslib_1.__awaiter)(void 0, void 0, void 0, function* () {
|
|
20
20
|
appTree = yield runner.runExternalSchematicAsync('@schematics/angular', 'workspace', workspaceOptions).toPromise();
|
|
21
21
|
appTree = yield runner
|
|
22
22
|
.runExternalSchematicAsync('@schematics/angular', 'application', componentOptions, appTree)
|
|
23
23
|
.toPromise();
|
|
24
24
|
}));
|
|
25
25
|
describe('Dependencies:', () => {
|
|
26
|
-
it('should update package.json with @po-ui/ng-code-editor dependency and run nodePackageInstall', () => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
26
|
+
it('should update package.json with @po-ui/ng-code-editor dependency and run nodePackageInstall', () => (0, tslib_1.__awaiter)(void 0, void 0, void 0, function* () {
|
|
27
27
|
const tree = yield runner.runSchematicAsync('ng-add', componentOptions, appTree).toPromise();
|
|
28
28
|
const packageJson = JSON.parse(getFileContent(tree, '/package.json'));
|
|
29
29
|
const dependencies = packageJson.dependencies;
|
|
@@ -33,7 +33,7 @@ describe('Schematic: ng-add', () => {
|
|
|
33
33
|
}));
|
|
34
34
|
});
|
|
35
35
|
describe('Imports:', () => {
|
|
36
|
-
it('should add the PoCodeEditorModule to the project module', () => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
36
|
+
it('should add the PoCodeEditorModule to the project module', () => (0, tslib_1.__awaiter)(void 0, void 0, void 0, function* () {
|
|
37
37
|
const poCodeEditorModuleName = 'PoCodeEditorModule';
|
|
38
38
|
const tree = yield runner.runSchematicAsync('ng-add', componentOptions, appTree).toPromise();
|
|
39
39
|
const fileContent = getFileContent(tree, `projects/${componentOptions.name}/src/app/app.module.ts`);
|
|
@@ -42,20 +42,20 @@ describe('Schematic: ng-add', () => {
|
|
|
42
42
|
});
|
|
43
43
|
describe('Theme configuration:', () => {
|
|
44
44
|
const defaultThemePath = './node_modules/@po-ui/style/css/po-theme-default.min.css';
|
|
45
|
-
it('should add default theme in styles of build project', () => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
45
|
+
it('should add default theme in styles of build project', () => (0, tslib_1.__awaiter)(void 0, void 0, void 0, function* () {
|
|
46
46
|
var _a;
|
|
47
47
|
const tree = yield runner.runSchematicAsync('ng-add', componentOptions, appTree).toPromise();
|
|
48
|
-
const workspace = (_a = project_1.getWorkspaceConfigGracefully(tree)) !== null && _a !== void 0 ? _a : {};
|
|
49
|
-
const project = project_1.getProjectFromWorkspace(workspace);
|
|
48
|
+
const workspace = (_a = (0, project_1.getWorkspaceConfigGracefully)(tree)) !== null && _a !== void 0 ? _a : {};
|
|
49
|
+
const project = (0, project_1.getProjectFromWorkspace)(workspace);
|
|
50
50
|
expectProjectPropertyFile(project, defaultThemePath, 'styles');
|
|
51
51
|
}));
|
|
52
|
-
it('shouldn`t add a theme file in styles of build project multiple times', () => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
52
|
+
it('shouldn`t add a theme file in styles of build project multiple times', () => (0, tslib_1.__awaiter)(void 0, void 0, void 0, function* () {
|
|
53
53
|
var _b;
|
|
54
54
|
writePropertiesFileToWorkspace(appTree, defaultThemePath, 'styles');
|
|
55
55
|
const tree = yield runner.runSchematicAsync('ng-add', componentOptions, appTree).toPromise();
|
|
56
|
-
const workspace = (_b = project_1.getWorkspaceConfigGracefully(tree)) !== null && _b !== void 0 ? _b : {};
|
|
57
|
-
const project = project_1.getProjectFromWorkspace(workspace);
|
|
58
|
-
const styles = project_1.getProjectTargetOptions(project, 'build').styles;
|
|
56
|
+
const workspace = (_b = (0, project_1.getWorkspaceConfigGracefully)(tree)) !== null && _b !== void 0 ? _b : {};
|
|
57
|
+
const project = (0, project_1.getProjectFromWorkspace)(workspace);
|
|
58
|
+
const styles = (0, project_1.getProjectTargetOptions)(project, 'build').styles;
|
|
59
59
|
expect(styles).toEqual([`projects/${componentOptions.name}/src/styles.css`, defaultThemePath]);
|
|
60
60
|
}));
|
|
61
61
|
});
|
|
@@ -65,22 +65,22 @@ describe('Schematic: ng-add', () => {
|
|
|
65
65
|
'input': 'node_modules/monaco-editor/min',
|
|
66
66
|
'output': '/assets/monaco/'
|
|
67
67
|
};
|
|
68
|
-
it('should add assets of build project', () => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
68
|
+
it('should add assets of build project', () => (0, tslib_1.__awaiter)(void 0, void 0, void 0, function* () {
|
|
69
69
|
var _a;
|
|
70
70
|
const tree = yield runner.runSchematicAsync('ng-add', componentOptions, appTree).toPromise();
|
|
71
|
-
const workspace = (_a = project_1.getWorkspaceConfigGracefully(tree)) !== null && _a !== void 0 ? _a : {};
|
|
72
|
-
const project = project_1.getProjectFromWorkspace(workspace);
|
|
73
|
-
const assets = project_1.getProjectTargetOptions(project, 'build').assets;
|
|
71
|
+
const workspace = (_a = (0, project_1.getWorkspaceConfigGracefully)(tree)) !== null && _a !== void 0 ? _a : {};
|
|
72
|
+
const project = (0, project_1.getProjectFromWorkspace)(workspace);
|
|
73
|
+
const assets = (0, project_1.getProjectTargetOptions)(project, 'build').assets;
|
|
74
74
|
const hasMonacoAssets = assets.some(element => typeof element === 'object' && JSON.stringify(element) === JSON.stringify(defaultAssetsPath));
|
|
75
75
|
expect(hasMonacoAssets).toBe(true);
|
|
76
76
|
}));
|
|
77
|
-
it('shouldn`t add a monaco assets file in assets of build project multiple times', () => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
77
|
+
it('shouldn`t add a monaco assets file in assets of build project multiple times', () => (0, tslib_1.__awaiter)(void 0, void 0, void 0, function* () {
|
|
78
78
|
var _b;
|
|
79
79
|
writePropertiesFileToWorkspace(appTree, `${defaultAssetsPath}`, 'assets');
|
|
80
80
|
const tree = yield runner.runSchematicAsync('ng-add', componentOptions, appTree).toPromise();
|
|
81
|
-
const workspace = (_b = project_1.getWorkspaceConfigGracefully(tree)) !== null && _b !== void 0 ? _b : {};
|
|
82
|
-
const project = project_1.getProjectFromWorkspace(workspace);
|
|
83
|
-
const assets = project_1.getProjectTargetOptions(project, 'build').assets;
|
|
81
|
+
const workspace = (_b = (0, project_1.getWorkspaceConfigGracefully)(tree)) !== null && _b !== void 0 ? _b : {};
|
|
82
|
+
const project = (0, project_1.getProjectFromWorkspace)(workspace);
|
|
83
|
+
const assets = (0, project_1.getProjectTargetOptions)(project, 'build').assets;
|
|
84
84
|
const getMonacoAssets = assets.filter(element => JSON.stringify(element) === JSON.stringify(defaultAssetsPath));
|
|
85
85
|
expect(getMonacoAssets.length).toBe(1);
|
|
86
86
|
}));
|
|
@@ -96,13 +96,13 @@ function getFileContent(tree, filePath) {
|
|
|
96
96
|
}
|
|
97
97
|
/** Expects the given file to be in the property of the specified workspace project. */
|
|
98
98
|
function expectProjectPropertyFile(project, filePath, property) {
|
|
99
|
-
expect(project_1.getProjectTargetOptions(project, 'build')[property]).toContain(filePath, `Expected "${filePath}" to be added to the project ${property} in the workspace.`);
|
|
99
|
+
expect((0, project_1.getProjectTargetOptions)(project, 'build')[property]).toContain(filePath, `Expected "${filePath}" to be added to the project ${property} in the workspace.`);
|
|
100
100
|
}
|
|
101
101
|
function writePropertiesFileToWorkspace(tree, filePath, property) {
|
|
102
102
|
var _a;
|
|
103
|
-
const workspace = (_a = project_1.getWorkspaceConfigGracefully(tree)) !== null && _a !== void 0 ? _a : {};
|
|
104
|
-
const project = project_1.getProjectFromWorkspace(workspace);
|
|
105
|
-
const buildOptions = project_1.getProjectTargetOptions(project, 'build');
|
|
103
|
+
const workspace = (_a = (0, project_1.getWorkspaceConfigGracefully)(tree)) !== null && _a !== void 0 ? _a : {};
|
|
104
|
+
const project = (0, project_1.getProjectFromWorkspace)(workspace);
|
|
105
|
+
const buildOptions = (0, project_1.getProjectTargetOptions)(project, 'build');
|
|
106
106
|
if (!buildOptions[property]) {
|
|
107
107
|
buildOptions[property] = [filePath];
|
|
108
108
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.spec.js","sourceRoot":"","sources":["../../../../projects/code-editor/schematics/ng-add/index.spec.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"index.spec.js","sourceRoot":"","sources":["../../../../projects/code-editor/schematics/ng-add/index.spec.ts"],"names":[],"mappings":"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"}
|