@ebrains/angular 0.9.2-beta → 0.9.3-beta
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/esm2022/ebrains-angular.mjs +5 -0
- package/esm2022/generated/angular-component-lib/utils.mjs +59 -0
- package/esm2022/generated/components.mjs +1232 -0
- package/esm2022/index.mjs +2 -0
- package/fesm2022/ebrains-angular.mjs +1256 -0
- package/fesm2022/ebrains-angular.mjs.map +1 -0
- package/generated/angular-component-lib/utils.d.ts +9 -0
- package/generated/components.d.ts +422 -0
- package/package.json +18 -4
- package/.eslintrc.json +0 -48
- package/jest.config.ts +0 -22
- package/ng-package.json +0 -14
- package/project.json +0 -36
- package/src/generated/angular-component-lib/utils.ts +0 -65
- package/src/generated/components.ts +0 -1064
- package/src/generated/index.ts +0 -44
- package/src/lib/angular/angular.component.css +0 -0
- package/src/lib/angular/angular.component.html +0 -1
- package/src/lib/angular/angular.component.spec.ts +0 -21
- package/src/lib/angular/angular.component.ts +0 -11
- package/src/test-setup.ts +0 -8
- package/tsconfig.json +0 -28
- package/tsconfig.lib.json +0 -17
- package/tsconfig.lib.prod.json +0 -9
- package/tsconfig.spec.json +0 -16
- /package/{src/index.ts → index.d.ts} +0 -0
package/src/generated/index.ts
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import * as d from './components';
|
|
3
|
-
|
|
4
|
-
export const DIRECTIVES = [
|
|
5
|
-
d.EdsAccordion,
|
|
6
|
-
d.EdsAlert,
|
|
7
|
-
d.EdsAvatar,
|
|
8
|
-
d.EdsBlockBreak,
|
|
9
|
-
d.EdsBreadcrumb,
|
|
10
|
-
d.EdsButton,
|
|
11
|
-
d.EdsCardGeneric,
|
|
12
|
-
d.EdsCardSection,
|
|
13
|
-
d.EdsCodeBlock,
|
|
14
|
-
d.EdsDropdown,
|
|
15
|
-
d.EdsFeedback,
|
|
16
|
-
d.EdsFooter,
|
|
17
|
-
d.EdsForm,
|
|
18
|
-
d.EdsFullscreenMenu,
|
|
19
|
-
d.EdsHeader,
|
|
20
|
-
d.EdsIconWrapper,
|
|
21
|
-
d.EdsImg,
|
|
22
|
-
d.EdsInputField,
|
|
23
|
-
d.EdsLink,
|
|
24
|
-
d.EdsLogo,
|
|
25
|
-
d.EdsMatomoNotice,
|
|
26
|
-
d.EdsModal,
|
|
27
|
-
d.EdsPagination,
|
|
28
|
-
d.EdsProgressBar,
|
|
29
|
-
d.EdsRating,
|
|
30
|
-
d.EdsSectionCore,
|
|
31
|
-
d.EdsSocialNetworks,
|
|
32
|
-
d.EdsSpinner,
|
|
33
|
-
d.EdsSplashScreen,
|
|
34
|
-
d.EdsSteps,
|
|
35
|
-
d.EdsStepsV2,
|
|
36
|
-
d.EdsSwitch,
|
|
37
|
-
d.EdsTable,
|
|
38
|
-
d.EdsTabs,
|
|
39
|
-
d.EdsTag,
|
|
40
|
-
d.EdsTimeline,
|
|
41
|
-
d.EdsToast,
|
|
42
|
-
d.EdsTooltip,
|
|
43
|
-
d.EdsUser
|
|
44
|
-
];
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<p>angular works!</p>
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { AngularComponent } from './angular.component';
|
|
3
|
-
|
|
4
|
-
describe('AngularComponent', () => {
|
|
5
|
-
let component: AngularComponent;
|
|
6
|
-
let fixture: ComponentFixture<AngularComponent>;
|
|
7
|
-
|
|
8
|
-
beforeEach(async () => {
|
|
9
|
-
await TestBed.configureTestingModule({
|
|
10
|
-
imports: [AngularComponent]
|
|
11
|
-
}).compileComponents();
|
|
12
|
-
|
|
13
|
-
fixture = TestBed.createComponent(AngularComponent);
|
|
14
|
-
component = fixture.componentInstance;
|
|
15
|
-
fixture.detectChanges();
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
it('should create', () => {
|
|
19
|
-
expect(component).toBeTruthy();
|
|
20
|
-
});
|
|
21
|
-
});
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
|
|
4
|
-
@Component({
|
|
5
|
-
selector: 'lib-angular',
|
|
6
|
-
standalone: true,
|
|
7
|
-
imports: [CommonModule],
|
|
8
|
-
templateUrl: './angular.component.html',
|
|
9
|
-
styleUrl: './angular.component.css'
|
|
10
|
-
})
|
|
11
|
-
export class AngularComponent {}
|
package/src/test-setup.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
// @ts-expect-error https://thymikee.github.io/jest-preset-angular/docs/getting-started/test-environment
|
|
2
|
-
globalThis.ngJest = {
|
|
3
|
-
testEnvironmentOptions: {
|
|
4
|
-
errorOnUnknownElements: true,
|
|
5
|
-
errorOnUnknownProperties: true
|
|
6
|
-
}
|
|
7
|
-
};
|
|
8
|
-
import 'jest-preset-angular/setup-jest';
|
package/tsconfig.json
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "es2022",
|
|
4
|
-
"forceConsistentCasingInFileNames": true,
|
|
5
|
-
"strict": true,
|
|
6
|
-
"noImplicitOverride": true,
|
|
7
|
-
"noPropertyAccessFromIndexSignature": true,
|
|
8
|
-
"noImplicitReturns": true,
|
|
9
|
-
"noFallthroughCasesInSwitch": true
|
|
10
|
-
},
|
|
11
|
-
"files": [],
|
|
12
|
-
"include": [],
|
|
13
|
-
"references": [
|
|
14
|
-
{
|
|
15
|
-
"path": "./tsconfig.lib.json"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"path": "./tsconfig.spec.json"
|
|
19
|
-
}
|
|
20
|
-
],
|
|
21
|
-
"extends": "../../tsconfig.base.json",
|
|
22
|
-
"angularCompilerOptions": {
|
|
23
|
-
"enableI18nLegacyMessageIdFormat": false,
|
|
24
|
-
"strictInjectionParameters": true,
|
|
25
|
-
"strictInputAccessModifiers": true,
|
|
26
|
-
"strictTemplates": true
|
|
27
|
-
}
|
|
28
|
-
}
|
package/tsconfig.lib.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "../../dist/out-tsc",
|
|
5
|
-
"declaration": true,
|
|
6
|
-
"declarationMap": true,
|
|
7
|
-
"inlineSources": true,
|
|
8
|
-
"types": []
|
|
9
|
-
},
|
|
10
|
-
"exclude": [
|
|
11
|
-
"src/**/*.spec.ts",
|
|
12
|
-
"src/test-setup.ts",
|
|
13
|
-
"jest.config.ts",
|
|
14
|
-
"src/**/*.test.ts"
|
|
15
|
-
],
|
|
16
|
-
"include": ["src/**/*.ts"]
|
|
17
|
-
}
|
package/tsconfig.lib.prod.json
DELETED
package/tsconfig.spec.json
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "../../dist/out-tsc",
|
|
5
|
-
"module": "commonjs",
|
|
6
|
-
"target": "es2016",
|
|
7
|
-
"types": ["jest", "node"]
|
|
8
|
-
},
|
|
9
|
-
"files": ["src/test-setup.ts"],
|
|
10
|
-
"include": [
|
|
11
|
-
"jest.config.ts",
|
|
12
|
-
"src/**/*.test.ts",
|
|
13
|
-
"src/**/*.spec.ts",
|
|
14
|
-
"src/**/*.d.ts"
|
|
15
|
-
]
|
|
16
|
-
}
|
|
File without changes
|