@eui/tools 6.12.48 → 6.12.49
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/.version.properties +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/scripts/csdr/cli/skeletons/package/frontend/15.x/participant-default/src/lib/components/participant/participant.component.ts +1 -1
- package/scripts/csdr/cli/skeletons/package/frontend/15.x/participant-default/src/lib/module.ts +2 -2
- package/scripts/csdr/cli/skeletons/package/frontend/15.x/participant-ngrx/src/lib/blocks/sample/containers/container.component.ts +1 -1
- package/scripts/csdr/cli/skeletons/package/frontend/15.x/participant-ngrx/src/lib/blocks/sample/models/block.model.ts +1 -1
- package/scripts/csdr/cli/skeletons/package/frontend/15.x/participant-ngrx/src/lib/blocks/sample/module.ts +2 -2
- package/scripts/csdr/cli/skeletons/package/frontend/15.x/participant-ngrx/src/lib/main/containers/container.component.ts +1 -1
- package/scripts/csdr/cli/skeletons/package/frontend/15.x/participant-ngrx/src/lib/main/containers/generic-block-resolver.service.ts +1 -1
- package/scripts/csdr/cli/skeletons/package/frontend/15.x/participant-ngrx/src/lib/main/models/block.model.ts +1 -1
- package/scripts/csdr/cli/skeletons/package/frontend/15.x/participant-ngrx/src/lib/main/module.ts +2 -2
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.12.
|
|
1
|
+
6.12.49
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.12.49 (2023-08-30)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* update participants-v15 skeleton setup CCTASK-2953 [CCTASK-2953](https://webgate.ec.europa.eu/CITnet/jira/browse/CCTASK-2953) ([5378cd1e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/5378cd1eccf8eb68c64c81a086b4b31c27f3ae13))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.12.48 (2023-08-30)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
package/scripts/csdr/cli/skeletons/package/frontend/15.x/participant-default/src/lib/module.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { CommonModule } from '@angular/common';
|
|
|
3
3
|
|
|
4
4
|
import { TranslateModule } from '@ngx-translate/core';
|
|
5
5
|
|
|
6
|
-
import {
|
|
6
|
+
import { CcBlockModule } from '@cc/shared/block';
|
|
7
7
|
|
|
8
8
|
import { @module.class.name@Component } from './components/participant/participant.component';
|
|
9
9
|
|
|
@@ -11,7 +11,7 @@ import { @module.class.name@Component } from './components/participant/participa
|
|
|
11
11
|
imports: [
|
|
12
12
|
CommonModule,
|
|
13
13
|
TranslateModule,
|
|
14
|
-
|
|
14
|
+
CcBlockModule,
|
|
15
15
|
],
|
|
16
16
|
declarations: [
|
|
17
17
|
@module.class.name@Component,
|
|
@@ -3,7 +3,7 @@ import { CommonModule } from '@angular/common';
|
|
|
3
3
|
|
|
4
4
|
import { TranslateModule } from '@ngx-translate/core';
|
|
5
5
|
|
|
6
|
-
import {
|
|
6
|
+
import { CcBlockModule } from '@cc/shared/block';
|
|
7
7
|
|
|
8
8
|
// -- Components --
|
|
9
9
|
import { SampleComponent } from './components/sample.component';
|
|
@@ -23,7 +23,7 @@ const CONTAINERS = [
|
|
|
23
23
|
imports: [
|
|
24
24
|
CommonModule,
|
|
25
25
|
TranslateModule,
|
|
26
|
-
|
|
26
|
+
CcBlockModule,
|
|
27
27
|
],
|
|
28
28
|
declarations: [
|
|
29
29
|
...COMPONENTS,
|
|
@@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, Input, OnInit, OnDestroy } from '@a
|
|
|
2
2
|
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
|
|
5
|
-
import { BlockComponent, GENERIC_BLOCK_RESOLVER_TOKEN } from '@cc/shared';
|
|
5
|
+
import { BlockComponent, GENERIC_BLOCK_RESOLVER_TOKEN } from '@cc/shared/block';
|
|
6
6
|
|
|
7
7
|
import { Block } from '../models';
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@ import { Inject, Injectable } from '@angular/core';
|
|
|
2
2
|
|
|
3
3
|
import { CONFIG_TOKEN } from '@eui/core';
|
|
4
4
|
|
|
5
|
-
import { BlockConfig, IGenericBlock, UnknownBlockComponent } from '@cc/shared';
|
|
5
|
+
import { BlockConfig, IGenericBlock, UnknownBlockComponent } from '@cc/shared/block';
|
|
6
6
|
|
|
7
7
|
// BLOCKS
|
|
8
8
|
import { ContainerComponent } from '../../blocks/sample/containers/container.component';
|
package/scripts/csdr/cli/skeletons/package/frontend/15.x/participant-ngrx/src/lib/main/module.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { EffectsModule } from '@ngrx/effects';
|
|
|
5
5
|
|
|
6
6
|
import { TranslateModule } from '@ngx-translate/core';
|
|
7
7
|
|
|
8
|
-
import {
|
|
8
|
+
import { CcBlockModule } from '@cc/shared/block';
|
|
9
9
|
|
|
10
10
|
// -- Components --
|
|
11
11
|
import { @module.class.name@Component } from './components/sample.component';
|
|
@@ -42,7 +42,7 @@ import { namespace } from './constants';
|
|
|
42
42
|
EffectsModule.forFeature(EFFECTS),
|
|
43
43
|
TranslateModule,
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
CcBlockModule,
|
|
46
46
|
],
|
|
47
47
|
declarations: [
|
|
48
48
|
...COMPONENTS,
|