@eui/tools 6.12.37 → 6.12.38

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 (46) hide show
  1. package/.version.properties +1 -1
  2. package/CHANGELOG.md +9 -0
  3. package/package.json +1 -1
  4. package/scripts/csdr/config/angular.js +5 -12
  5. package/scripts/csdr/init/remotes/17.x/base/angular.json +87 -0
  6. package/scripts/csdr/init/remotes/17.x/base/browserslist +6 -0
  7. package/scripts/csdr/init/remotes/17.x/base/package.json_TO_REPLACE +10 -0
  8. package/scripts/csdr/init/remotes/17.x/base/tsconfig.app.json +24 -0
  9. package/scripts/csdr/init/remotes/17.x/base/yarn.lock +14275 -0
  10. package/scripts/csdr/init/remotes/17.x/full/common/app/eui-components.ts +9 -0
  11. package/scripts/csdr/init/remotes/17.x/full/common/app/fallback.component.ts +11 -0
  12. package/scripts/csdr/init/remotes/17.x/full/common/app/module.component.ts +91 -0
  13. package/scripts/csdr/init/remotes/17.x/full/common/app/module.ts +96 -0
  14. package/scripts/csdr/init/remotes/17.x/full/common/app/reducers/custom-route-serializer.ts +28 -0
  15. package/scripts/csdr/init/remotes/17.x/full/common/app/reducers/index.ts +42 -0
  16. package/scripts/csdr/init/remotes/17.x/full/common/app/routing.module.ts +34 -0
  17. package/scripts/csdr/init/remotes/17.x/full/common/assets/.gitkeep +0 -0
  18. package/scripts/csdr/init/remotes/17.x/full/common/config/global.ts +54 -0
  19. package/scripts/csdr/init/remotes/17.x/full/common/config/index.ts +10 -0
  20. package/scripts/csdr/init/remotes/17.x/full/common/config/modules.ts +3 -0
  21. package/scripts/csdr/init/remotes/17.x/full/common/environments/environment.prod.ts +3 -0
  22. package/scripts/csdr/init/remotes/17.x/full/common/environments/environment.ts +3 -0
  23. package/scripts/csdr/init/remotes/17.x/full/common/favicon.ico +0 -0
  24. package/scripts/csdr/init/remotes/17.x/full/common/index.html +10 -0
  25. package/scripts/csdr/init/remotes/17.x/full/common/main.ts +11 -0
  26. package/scripts/csdr/init/remotes/17.x/full/common/polyfills.ts +88 -0
  27. package/scripts/csdr/init/remotes/17.x/full/common/test.ts +20 -0
  28. package/scripts/csdr/init/remotes/17.x/full/options/ag-grid/main.ts +17 -0
  29. package/scripts/csdr/init/remotes/17.x/full/options/all-locales/config/global.ts +122 -0
  30. package/scripts/csdr/init/remotes/17.x/full/options/definitions/dynamic-forms.json +4 -0
  31. package/scripts/csdr/init/remotes/17.x/full/options/definitions/dynatrace.json +4 -0
  32. package/scripts/csdr/init/remotes/17.x/full/options/definitions/participant.json +3 -0
  33. package/scripts/csdr/init/remotes/17.x/full/options/definitions/user-reducers.json +3 -0
  34. package/scripts/csdr/init/remotes/17.x/full/options/definitions/zipkin.json +5 -0
  35. package/scripts/csdr/init/remotes/17.x/full/options/participant/app/module.component.ts +94 -0
  36. package/scripts/csdr/init/remotes/17.x/full/options/participant/app/routing.module.ts +26 -0
  37. package/scripts/csdr/init/remotes/17.x/full/options/participant/config/index.ts +10 -0
  38. package/scripts/csdr/init/remotes/17.x/full/options/user-reducers/app/reducers/index.ts +66 -0
  39. package/scripts/csdr/init/resources/17.x/browserslistrc +6 -0
  40. package/scripts/csdr/init/resources/17.x/resolutions.json +5 -0
  41. package/scripts/csdr/init/resources/17.x/yarn.lock +13395 -0
  42. package/scripts/csdr/metadata/stats.js +1 -0
  43. package/scripts/utils/build/package/build-package-utils.js +1 -1
  44. package/scripts/utils/build/package/styles.js +2 -1
  45. package/scripts/utils/pre-build/injection/skeletons.js +1 -1
  46. package/scripts/utils/pre-build/projects.js +2 -0
@@ -467,6 +467,7 @@ module.exports.getRemoteAllStats = () => {
467
467
  })
468
468
  .then(() => {
469
469
  let remotesArray = [
470
+ ...configUtils.remotes.getCsdrRemotesArray('my-workplace', '17.x'),
470
471
  ...configUtils.remotes.getCsdrRemotesArray('my-workplace', '16.x'),
471
472
  ...configUtils.remotes.getCsdrRemotesArray('my-workplace', '15.x'),
472
473
  ];
@@ -217,7 +217,7 @@ module.exports.buildSubEntry = (pkg, subEntry) => {
217
217
  .then(() => {
218
218
  let packageEuiVersion = configUtils.packages.getPackageEuiVersion(pkg);
219
219
 
220
- if (packageEuiVersion === '15.x' || packageEuiVersion === '16.x') {
220
+ if (packageEuiVersion === '15.x' || packageEuiVersion === '16.x' || packageEuiVersion === '17.x') {
221
221
  const { skipTest } = tools.getArgs();
222
222
 
223
223
  if (!skipTest) {
@@ -180,7 +180,8 @@ const compileSassFile = (pkg, folder, filename, isNodeSassTildeImporterActive) =
180
180
  pkg.build.euiVersion === '13.x' ||
181
181
  pkg.build.euiVersion === '14.x' ||
182
182
  pkg.build.euiVersion === '15.x' ||
183
- pkg.build.euiVersion === '16.x'
183
+ pkg.build.euiVersion === '16.x' ||
184
+ pkg.build.euiVersion === '17.x'
184
185
  )) {
185
186
  return compileSassFileDartSass(folder, filename);
186
187
 
@@ -56,7 +56,7 @@ module.exports.injectCsdrFullSkeletonSources = (project, euiVersion) => {
56
56
  // copying skeleton sources
57
57
  if (euiVersion === '13.x') {
58
58
  tools.copydir(path.join(__dirname, 'app-sources-full-skeleton-eui13'), project.folder, false);
59
- } else if (euiVersion === '14.x' || euiVersion === '15.x' || euiVersion === '16.x') {
59
+ } else if (euiVersion === '14.x' || euiVersion === '15.x' || euiVersion === '16.x' || euiVersion === '17.x') {
60
60
  tools.copydir(path.join(__dirname, 'app-sources-full-skeleton-eui14'), project.folder, false);
61
61
  } else {
62
62
  tools.copydir(path.join(__dirname, 'app-sources-full-skeleton'), project.folder, false);
@@ -76,6 +76,8 @@ module.exports.preBuild = (project, envTarget, build, configEnvTarget) => {
76
76
  return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '15.x');
77
77
  } else if (project.build && project.build.euiVersion === '16.x') {
78
78
  return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '16.x');
79
+ } else if (project.build && project.build.euiVersion === '17.x') {
80
+ return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '17.x');
79
81
  } else {
80
82
  return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project);
81
83
  }