@eui/tools 6.21.29 → 6.21.31

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.
Files changed (41) hide show
  1. package/.version.properties +1 -1
  2. package/CHANGELOG.md +18 -0
  3. package/package.json +1 -1
  4. package/scripts/csdr/init/remotes/19.x/base/angular.esbuild.json +73 -0
  5. package/scripts/csdr/init/remotes/19.x/base/angular.json +86 -0
  6. package/scripts/csdr/init/remotes/19.x/base/browserslist +6 -0
  7. package/scripts/csdr/init/remotes/19.x/base/package.json_TO_REPLACE +18 -0
  8. package/scripts/csdr/init/remotes/19.x/base/tsconfig.app.json +37 -0
  9. package/scripts/csdr/init/remotes/19.x/base/tsconfig.app.standalone.json +28 -0
  10. package/scripts/csdr/init/remotes/19.x/base/yarn.lock.old +14275 -0
  11. package/scripts/csdr/init/remotes/19.x/base/yarn.lock.old-2 +15691 -0
  12. package/scripts/csdr/init/remotes/19.x/full/common/app/eui-components.ts +9 -0
  13. package/scripts/csdr/init/remotes/19.x/full/common/app/fallback.component.ts +12 -0
  14. package/scripts/csdr/init/remotes/19.x/full/common/app/module.component.ts +91 -0
  15. package/scripts/csdr/init/remotes/19.x/full/common/app/module.ts +96 -0
  16. package/scripts/csdr/init/remotes/19.x/full/common/app/reducers/custom-route-serializer.ts +28 -0
  17. package/scripts/csdr/init/remotes/19.x/full/common/app/reducers/index.ts +51 -0
  18. package/scripts/csdr/init/remotes/19.x/full/common/app/routing.module.ts +29 -0
  19. package/scripts/csdr/init/remotes/19.x/full/common/assets/.gitkeep +0 -0
  20. package/scripts/csdr/init/remotes/19.x/full/common/config/global.ts +118 -0
  21. package/scripts/csdr/init/remotes/19.x/full/common/config/index.ts +10 -0
  22. package/scripts/csdr/init/remotes/19.x/full/common/config/modules.ts +3 -0
  23. package/scripts/csdr/init/remotes/19.x/full/common/environments/environment.prod.ts +3 -0
  24. package/scripts/csdr/init/remotes/19.x/full/common/environments/environment.ts +3 -0
  25. package/scripts/csdr/init/remotes/19.x/full/common/favicon.ico +0 -0
  26. package/scripts/csdr/init/remotes/19.x/full/common/index.html +10 -0
  27. package/scripts/csdr/init/remotes/19.x/full/common/main.ts +12 -0
  28. package/scripts/csdr/init/remotes/19.x/full/common/polyfills.ts +88 -0
  29. package/scripts/csdr/init/remotes/19.x/full/options/ag-grid/main.ts +17 -0
  30. package/scripts/csdr/init/remotes/19.x/full/options/all-locales/config/global.ts +122 -0
  31. package/scripts/csdr/init/remotes/19.x/full/options/definitions/dynamic-forms.json +4 -0
  32. package/scripts/csdr/init/remotes/19.x/full/options/definitions/dynatrace.json +4 -0
  33. package/scripts/csdr/init/remotes/19.x/full/options/definitions/participant.json +3 -0
  34. package/scripts/csdr/init/remotes/19.x/full/options/definitions/user-reducers.json +3 -0
  35. package/scripts/csdr/init/remotes/19.x/full/options/definitions/zipkin.json +5 -0
  36. package/scripts/csdr/init/remotes/19.x/full/options/extra-locales/config/global.ts +215 -0
  37. package/scripts/csdr/init/remotes/19.x/full/options/participant/app/module.component.ts +94 -0
  38. package/scripts/csdr/init/remotes/19.x/full/options/participant/app/routing.module.ts +21 -0
  39. package/scripts/csdr/init/remotes/19.x/full/options/participant/config/index.ts +10 -0
  40. package/scripts/csdr/init/remotes/19.x/full/options/user-reducers/app/reducers/index.ts +75 -0
  41. package/scripts/utils/build/package/element.js +5 -1
@@ -1 +1 @@
1
- 6.21.29
1
+ 6.21.31
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.21.31 (2025-01-13)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * adapt for v19 remotes build - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([cd3f1da7](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/cd3f1da7276ef994ebf7dc55f0f1dec18ace43f8))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.21.30 (2025-01-10)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * added skeleton for v19 remotes injection - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([9dee910e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/9dee910eddb94d54b38fa62517bb414d607b0283))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.21.29 (2025-01-10)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.29",
3
+ "version": "6.21.31",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -0,0 +1,73 @@
1
+ {
2
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
+ "version": 1,
4
+ "newProjectRoot": "apps",
5
+ "projects": {
6
+ "@remote.name@": {
7
+ "root": ".",
8
+ "sourceRoot": "src",
9
+ "projectType": "application",
10
+ "prefix": "app",
11
+ "schematics": {},
12
+ "architect": {
13
+ "build": {
14
+ "builder": "@angular-devkit/build-angular:application",
15
+ "options": {
16
+ "outputPath": "dist",
17
+ "index": "src/index.html",
18
+ "browser": "src/main.ts",
19
+ "polyfills": [
20
+ ],
21
+ "tsConfig": "tsconfig.app.json",
22
+ "scripts": [
23
+ ],
24
+ "assets": [
25
+ "src/assets",
26
+ {
27
+ "glob": "**/*",
28
+ "input": "node_modules/@eui/core/assets/",
29
+ "output": "./assets"
30
+ },
31
+ {
32
+ "glob": "**/*",
33
+ "input": "node_modules/@eui/styles/dist/assets/",
34
+ "output": "./assets"
35
+ }
36
+ ],
37
+ "styles": [
38
+ "node_modules/@eui/styles/dist/styles/eui.css",
39
+ "node_modules/@eui/styles/dist/styles/eui-extra-utilities.css",
40
+ "node_modules/@eui/styles/dist/styles/eui-legacy-bootstrap.css",
41
+ "node_modules/@eui/styles/dist/styles/eui-legacy-icons-font.css",
42
+ "node_modules/@eui/styles/dist/styles/eui-legacy-utilities.css"
43
+ ]
44
+ },
45
+ "configurations": {
46
+ "development": {
47
+ "optimization": false,
48
+ "extractLicenses": false,
49
+ "sourceMap": false,
50
+ "namedChunks": true
51
+ },
52
+ "production": {
53
+ "fileReplacements": [
54
+ {
55
+ "replace": "src/environments/environment.ts",
56
+ "with": "src/environments/environment.prod.ts"
57
+ }
58
+ ],
59
+ "outputHashing": "none",
60
+ "sourceMap": false
61
+ },
62
+ "serve-dist": {
63
+ "outputPath": "serve-dist"
64
+ }
65
+ }
66
+ }
67
+ }
68
+ }
69
+ },
70
+ "cli": {
71
+ "analytics": false
72
+ }
73
+ }
@@ -0,0 +1,86 @@
1
+ {
2
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
+ "version": 1,
4
+ "newProjectRoot": "apps",
5
+ "projects": {
6
+ "@remote.name@": {
7
+ "root": ".",
8
+ "sourceRoot": "src",
9
+ "projectType": "application",
10
+ "prefix": "app",
11
+ "schematics": {},
12
+ "architect": {
13
+ "build": {
14
+ "builder": "@angular-devkit/build-angular:browser",
15
+ "options": {
16
+ "outputPath": "dist",
17
+ "index": "src/index.html",
18
+ "main": "src/main.ts",
19
+ "polyfills": "src/polyfills.ts",
20
+ "tsConfig": "tsconfig.app.json",
21
+ "sourceMap": {
22
+ "scripts": true,
23
+ "styles": false,
24
+ "hidden": true,
25
+ "vendor": true
26
+ },
27
+ "scripts": [
28
+ ],
29
+ "assets": [
30
+ "src/assets",
31
+ {
32
+ "glob": "**/*",
33
+ "input": "node_modules/@eui/core/assets/",
34
+ "output": "./assets"
35
+ },
36
+ {
37
+ "glob": "**/*",
38
+ "input": "node_modules/@eui/styles/dist/assets/",
39
+ "output": "./assets"
40
+ }
41
+ ],
42
+ "styles": [
43
+ "node_modules/@eui/styles/dist/styles/eui.css",
44
+ "node_modules/@eui/styles/dist/styles/eui-extra-utilities.css",
45
+ "node_modules/@eui/styles/dist/styles/eui-legacy-bootstrap.css",
46
+ "node_modules/@eui/styles/dist/styles/eui-legacy-icons-font.css",
47
+ "node_modules/@eui/styles/dist/styles/eui-legacy-utilities.css"
48
+ ]
49
+ },
50
+ "configurations": {
51
+ "development": {
52
+ "buildOptimizer": false,
53
+ "optimization": false,
54
+ "vendorChunk": true,
55
+ "extractLicenses": false,
56
+ "sourceMap": false,
57
+ "namedChunks": true
58
+ },
59
+ "production": {
60
+ "fileReplacements": [
61
+ {
62
+ "replace": "src/environments/environment.ts",
63
+ "with": "src/environments/environment.prod.ts"
64
+ }
65
+ ],
66
+ "optimization": true,
67
+ "outputHashing": "all",
68
+ "sourceMap": false,
69
+ "namedChunks": false,
70
+ "aot": true,
71
+ "extractLicenses": true,
72
+ "vendorChunk": false,
73
+ "buildOptimizer": true
74
+ },
75
+ "serve-dist": {
76
+ "outputPath": "serve-dist"
77
+ }
78
+ }
79
+ }
80
+ }
81
+ }
82
+ },
83
+ "cli": {
84
+ "analytics": false
85
+ }
86
+ }
@@ -0,0 +1,6 @@
1
+ last 1 Chrome version
2
+ last 1 Firefox version
3
+ last 2 Edge major versions
4
+ last 2 Safari major versions
5
+ last 2 iOS major versions
6
+ Firefox ESR
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "generated",
3
+ "version": "1.0.0-SNAPSHOT.0",
4
+ "files": [
5
+ "bundles"
6
+ ],
7
+ "dependencies": {},
8
+ "resolutions": {
9
+ },
10
+ "browser": {
11
+ "os": false,
12
+ "http": false,
13
+ "https": false,
14
+ "url": false,
15
+ "util": false,
16
+ "node-fetch": false
17
+ }
18
+ }
@@ -0,0 +1,37 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "./out-tsc/app",
5
+ "target": "ES2022",
6
+ "module": "ES2022",
7
+ "skipLibCheck": true,
8
+ "esModuleInterop": true,
9
+ "declaration": false,
10
+ "experimentalDecorators": true,
11
+ "moduleResolution": "bundler",
12
+ "importHelpers": true,
13
+ "sourceMap": true,
14
+ "lib": [
15
+ "ES2022",
16
+ "dom"
17
+ ],
18
+ "types": [
19
+ "node"
20
+ ],
21
+ "paths": {
22
+ "os": [
23
+ "./node_modules/empty-module/index.js"
24
+ ],
25
+ "node-fetch": [
26
+ "./node_modules/empty-module/index.js"
27
+ ],
28
+ "zipkin": [
29
+ "./node_modules/zipkin/dist/zipkin.js"
30
+ ]
31
+ }
32
+ },
33
+ "exclude": [
34
+ "src/test.ts",
35
+ "**/*.spec.ts"
36
+ ]
37
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "compilerOptions": {
3
+ "baseUrl": ".",
4
+ "allowSyntheticDefaultImports": true,
5
+ "emitDecoratorMetadata": true,
6
+ "outDir": "./out-tsc/app",
7
+ "target": "ES2022",
8
+ "module": "ES2022",
9
+ "skipLibCheck": true,
10
+ "esModuleInterop": true,
11
+ "declaration": false,
12
+ "experimentalDecorators": true,
13
+ "moduleResolution": "bundler",
14
+ "importHelpers": true,
15
+ "sourceMap": true,
16
+ "lib": [
17
+ "ES2022",
18
+ "dom"
19
+ ],
20
+ "types": [
21
+ "node"
22
+ ]
23
+ },
24
+ "exclude": [
25
+ "src/test.ts",
26
+ "**/*.spec.ts"
27
+ ]
28
+ }