@eui/tools 6.21.32 → 6.21.34
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/fallback.component.ts +3 -2
- package/scripts/csdr/init/remotes/19.x/full/common/app/module.ts +0 -2
- package/scripts/csdr/init/remotes/19.x/full/options/participant/app/module.component.ts +10 -2
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.34
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.21.34 (2025-01-13)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* v19 mapping adaptations MWP-11339 [MWP-11339](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11339) ([b42cfd02](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/b42cfd0280b0528d615f2f2655a0639e90e7ab35))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.21.33 (2025-01-13)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* v19 mapping adaptations MWP-11339 [MWP-11339](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11339) ([3c29f1aa](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/3c29f1aa45cc52ee277d3d93a4066b05ae82c121))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.21.32 (2025-01-13)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -4,12 +4,13 @@ import { EuiBlockContentModule } from '@eui/components/eui-block-content';
|
|
|
4
4
|
|
|
5
5
|
@Component({
|
|
6
6
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7
|
-
imports: [
|
|
7
|
+
imports: [
|
|
8
|
+
EuiBlockContentModule,
|
|
9
|
+
],
|
|
8
10
|
template: `
|
|
9
11
|
<eui-block-content [isBlocked]="true">
|
|
10
12
|
<div style="height: 100%"></div>
|
|
11
13
|
</eui-block-content>`,
|
|
12
|
-
standalone: false,
|
|
13
14
|
})
|
|
14
15
|
export class FallbackComponent {
|
|
15
16
|
}
|
|
@@ -7,7 +7,6 @@ import { createCustomElement } from '@angular/elements';
|
|
|
7
7
|
import { StoreModule, USER_PROVIDED_META_REDUCERS } from '@ngrx/store';
|
|
8
8
|
import { EffectsModule } from '@ngrx/effects';
|
|
9
9
|
import { StoreRouterConnectingModule } from '@ngrx/router-store';
|
|
10
|
-
import { StoreDevtoolsModule } from '@ngrx/store-devtools';
|
|
11
10
|
|
|
12
11
|
import { TranslateModule } from '@ngx-translate/core';
|
|
13
12
|
|
|
@@ -44,7 +43,6 @@ import { ModuleComponent } from './module.component';
|
|
|
44
43
|
BrowserModule,
|
|
45
44
|
StoreRouterConnectingModule.forRoot({ stateKey: 'router', serializer: CustomSerializer }),
|
|
46
45
|
EffectsModule.forRoot([]),
|
|
47
|
-
StoreDevtoolsModule.instrument({ name: appConfig.global.storeName, maxAge: 150, logOnly: environment.production }),
|
|
48
46
|
TranslateModule.forRoot(translateConfig),
|
|
49
47
|
|
|
50
48
|
CoreModule.forRoot(),
|
|
@@ -4,12 +4,21 @@ import { Subscription } from 'rxjs';
|
|
|
4
4
|
import { first } from 'rxjs/operators';
|
|
5
5
|
|
|
6
6
|
import { CONFIG_TOKEN } from '@eui/core';
|
|
7
|
+
import { EuiBlockContentModule } from '@eui/components/eui-block-content';
|
|
8
|
+
import { EuiButtonModule } from '@eui/components/eui-button';
|
|
9
|
+
import { EuiLabelModule } from '@eui/components/eui-label';
|
|
10
|
+
|
|
7
11
|
import { ElementLifeCycleService, ElementSetupService } from '@csdr/integration/element';
|
|
8
12
|
|
|
9
13
|
type StatusType = 'Loading' | 'Loaded' | 'Failed';
|
|
10
14
|
|
|
11
15
|
@Component({
|
|
12
16
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
17
|
+
imports: [
|
|
18
|
+
EuiBlockContentModule,
|
|
19
|
+
EuiButtonModule,
|
|
20
|
+
EuiLabelModule,
|
|
21
|
+
],
|
|
13
22
|
template: `
|
|
14
23
|
@if (status() === 'Loaded') {
|
|
15
24
|
<!-- BLOCK_CONTAINER_PLACEHOLDER -->
|
|
@@ -44,7 +53,6 @@ type StatusType = 'Loading' | 'Loaded' | 'Failed';
|
|
|
44
53
|
text-align: center
|
|
45
54
|
}
|
|
46
55
|
`],
|
|
47
|
-
standalone: false,
|
|
48
56
|
})
|
|
49
57
|
export class ModuleComponent implements OnInit, OnDestroy {
|
|
50
58
|
status = signal<StatusType | undefined>(undefined);
|
|
@@ -65,7 +73,7 @@ export class ModuleComponent implements OnInit, OnDestroy {
|
|
|
65
73
|
this.loadData();
|
|
66
74
|
}
|
|
67
75
|
|
|
68
|
-
ngOnDestroy()
|
|
76
|
+
ngOnDestroy() {
|
|
69
77
|
this.initSubscription?.unsubscribe();
|
|
70
78
|
this.elementLifeCycleService.cleanup();
|
|
71
79
|
}
|