@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.
@@ -1 +1 @@
1
- 6.12.48
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.12.48",
3
+ "version": "6.12.49",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -1,6 +1,6 @@
1
1
  import { Component, OnInit, Input } from '@angular/core';
2
2
 
3
- import { BlockComponent, ParticipantBlock } from '@cc/shared';
3
+ import { BlockComponent, ParticipantBlock } from '@cc/shared/block';
4
4
 
5
5
  @Component({
6
6
  selector: '@module.scope.string@-participant-cp',
@@ -3,7 +3,7 @@ import { CommonModule } from '@angular/common';
3
3
 
4
4
  import { TranslateModule } from '@ngx-translate/core';
5
5
 
6
- import { CcSharedModule } from '@cc/shared';
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
- CcSharedModule,
14
+ CcBlockModule,
15
15
  ],
16
16
  declarations: [
17
17
  @module.class.name@Component,
@@ -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 } from '@cc/shared';
5
+ import { BlockComponent } from '@cc/shared/block';
6
6
 
7
7
  import { Block } from '../models';
8
8
 
@@ -1,4 +1,4 @@
1
- import { ParticipantBlock } from '@cc/shared';
1
+ import { ParticipantBlock } from '@cc/shared/block';
2
2
 
3
3
  export interface Block extends ParticipantBlock {
4
4
 
@@ -3,7 +3,7 @@ import { CommonModule } from '@angular/common';
3
3
 
4
4
  import { TranslateModule } from '@ngx-translate/core';
5
5
 
6
- import { CcSharedModule } from '@cc/shared';
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
- CcSharedModule,
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';
@@ -1,4 +1,4 @@
1
- import { ParticipantBlock } from '@cc/shared';
1
+ import { ParticipantBlock } from '@cc/shared/block';
2
2
 
3
3
  import { BlockType } from './block-type.model';
4
4
 
@@ -5,7 +5,7 @@ import { EffectsModule } from '@ngrx/effects';
5
5
 
6
6
  import { TranslateModule } from '@ngx-translate/core';
7
7
 
8
- import { CcSharedModule } from '@cc/shared';
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
- CcSharedModule,
45
+ CcBlockModule,
46
46
  ],
47
47
  declarations: [
48
48
  ...COMPONENTS,