@eui/tools 6.21.51 → 6.21.53
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 +18 -0
- package/package.json +1 -1
- package/scripts/csdr/init/remotes/19.x/full/common/app/module.ts +1 -1
- package/scripts/csdr/init/remotes/19.x/full/options/definitions/participant.json +1 -1
- package/scripts/csdr/init/remotes/19.x/full/options/participant/app/module.component.ts +5 -0
- package/scripts/csdr/init/remotes.js +1 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.53
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.21.53 (2025-03-26)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* participant skeleton adaptation REGIOCCINT-1768 [REGIOCCINT-1768](https://webgate.ec.europa.eu/CITnet/jira/browse/REGIOCCINT-1768) ([15d82ec9](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/15d82ec99df5790bd65420b638b5349753ad5bd6))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.21.52 (2025-03-25)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* participant skeleton adaptation due to standalone: true by default REGIOCCINT-1768 [REGIOCCINT-1768](https://webgate.ec.europa.eu/CITnet/jira/browse/REGIOCCINT-1768) ([751cd303](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/751cd303a1d1999684d3cf400c0d9ca329777070))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.21.51 (2025-03-18)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -29,7 +29,7 @@ import { appConfig } from '../config';
|
|
|
29
29
|
|
|
30
30
|
import { @root.common.module@ as RootCommonModule } from '@root.npm.pkg@';
|
|
31
31
|
import { provideCsdrIntegrationElement } from '@csdr/integration/element';
|
|
32
|
-
import {
|
|
32
|
+
import { provideCsdrIntegrationParticipant } from '@csdr/integration/participant';
|
|
33
33
|
import { RoutingModule } from './routing.module';
|
|
34
34
|
|
|
35
35
|
import { ModuleComponent } from './module.component';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, ElementRef, inject, OnDestroy, OnInit, signal } from '@angular/core';
|
|
2
|
+
import { NgIf } from '@angular/common';
|
|
2
3
|
|
|
3
4
|
import { Subscription } from 'rxjs';
|
|
4
5
|
import { first } from 'rxjs/operators';
|
|
@@ -10,14 +11,18 @@ import { EuiLabelModule } from '@eui/components/eui-label';
|
|
|
10
11
|
|
|
11
12
|
import { ElementLifeCycleService, ElementSetupService } from '@csdr/integration/element';
|
|
12
13
|
|
|
14
|
+
import { @root.common.module@ as RootCommonModule } from '@root.npm.pkg@';
|
|
15
|
+
|
|
13
16
|
type StatusType = 'Loading' | 'Loaded' | 'Failed';
|
|
14
17
|
|
|
15
18
|
@Component({
|
|
16
19
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
17
20
|
imports: [
|
|
21
|
+
NgIf,
|
|
18
22
|
EuiBlockContentModule,
|
|
19
23
|
EuiButtonModule,
|
|
20
24
|
EuiLabelModule,
|
|
25
|
+
RootCommonModule,
|
|
21
26
|
],
|
|
22
27
|
template: `
|
|
23
28
|
@if (status() === 'Loaded') {
|
|
@@ -326,6 +326,7 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemotesConfigFlag = tru
|
|
|
326
326
|
});
|
|
327
327
|
}
|
|
328
328
|
tools.replaceInPath(remoteSrcPath, '<!-- BLOCK_CONTAINER_PLACEHOLDER -->', blockContainerPlaceholder);
|
|
329
|
+
tools.replaceInPath(remoteSrcPath, "@root.npm.pkg@", remote.skeletonConfig.rootNpmPkg);
|
|
329
330
|
}
|
|
330
331
|
}
|
|
331
332
|
|