devextreme-internal-tools 16.5.2 → 18.0.0-beta.1

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 (36) hide show
  1. package/bin/DevExtreme.Declarations.Discoverer.dll +0 -0
  2. package/bin/DevExtreme.Declarations.Discoverer.exe +0 -0
  3. package/bin/DevExtreme.Declarations.IntegrityValidator.dll +0 -0
  4. package/bin/DevExtreme.Declarations.IntegrityValidator.exe +0 -0
  5. package/bin/DevExtreme.Declarations.dll +0 -0
  6. package/bin/DevExtreme.Descriptions.Injector.dll +0 -0
  7. package/bin/DevExtreme.Descriptions.Injector.exe +0 -0
  8. package/bin/DevExtreme.Infrastructure.dll +0 -0
  9. package/bin/DevExtreme.IntegrationDataGenerator.dll +0 -0
  10. package/bin/DevExtreme.IntegrationDataGenerator.exe +0 -0
  11. package/bin/DevExtreme.NgSmdGenerator.dll +0 -0
  12. package/bin/DevExtreme.NgSmdGenerator.exe +0 -0
  13. package/bin/DevExtreme.SmdCommon.dll +0 -0
  14. package/bin/DevExtreme.StrongMetaDataGenerator.dll +0 -0
  15. package/bin/DevExtreme.StrongMetaDataGenerator.exe +0 -0
  16. package/bin/DevExtreme.Topics.ExtraFilesGenerator.dll +0 -0
  17. package/bin/DevExtreme.Topics.ExtraFilesGenerator.exe +0 -0
  18. package/bin/DevExtreme.Topics.Generator.dll +0 -0
  19. package/bin/DevExtreme.Topics.Generator.exe +0 -0
  20. package/bin/DevExtreme.Topics.ModulesGuideValidator.dll +0 -0
  21. package/bin/DevExtreme.Topics.ModulesGuideValidator.exe +0 -0
  22. package/bin/DevExtreme.Topics.Validation.dll +0 -0
  23. package/bin/DevExtreme.Topics.Validation.exe +0 -0
  24. package/bin/DevExtreme.Topics.dll +0 -0
  25. package/bin/DevExtreme.WebSite.CompactDocsCreator.dll +0 -0
  26. package/bin/DevExtreme.WebSite.CompactDocsCreator.exe +0 -0
  27. package/bin/DevExtreme.WebSite.ContentMapCreator.dll +0 -0
  28. package/bin/DevExtreme.WebSite.ContentMapCreator.exe +0 -0
  29. package/bin/DevExtreme.WebSite.ContentMaps.dll +0 -0
  30. package/bin/DevExtreme.WebSite.LinksConverter.dll +0 -0
  31. package/bin/DevExtreme.WebSite.LinksConverter.exe +0 -0
  32. package/bin/DevExtreme.WebSite.SyntaxDataGenerator.dll +0 -0
  33. package/bin/DevExtreme.WebSite.SyntaxDataGenerator.exe +0 -0
  34. package/package.json +1 -1
  35. package/ts/angular-components-generator/templates/component.tst +6 -4
  36. package/ts/angular-components-generator/templates/nested-component.tst +4 -1
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "devextreme-internal-tools",
3
3
  "description": "DevExtreme internal tools",
4
4
  "author": "Developer Express Inc.",
5
- "version": "16.5.2",
5
+ "version": "18.0.0-beta.1",
6
6
  "license": "MIT",
7
7
  "main": "./index.js",
8
8
  "bin": {
@@ -81,9 +81,11 @@ const CUSTOM_VALUE_ACCESSOR_PROVIDER = {
81
81
  */<#?#>
82
82
  @Component({
83
83
  selector: '<#= it.selector #>',
84
+ standalone: true,
84
85
  template: '<#? it.isTranscludedContent #><ng-content></ng-content><#?#>',<#? it.isViz #>
85
86
  styles: [ ' :host { display: block; }'],<#?#>
86
87
  host: { ngSkipHydration: 'true' },
88
+ imports: [ DxIntegrationModule ],
87
89
  providers: [
88
90
  DxTemplateHost,
89
91
  WatcherHelper,<#? it.isEditor #>
@@ -242,15 +244,13 @@ export class <#= it.className #>Component<#= componentTypeParams #> extends <#=
242
244
  }
243
245
 
244
246
  @NgModule({
245
- imports: [<#~ it.legacyNestedComponents :component:i #>
247
+ imports: [
248
+ <#= it.className #>Component,<#~ it.legacyNestedComponents :component:i #>
246
249
  <#= component.className #>Module,<#~#><#~ it.nestedComponents :component:i #>
247
250
  <#= component.className #>Module,<#~#>
248
251
  DxIntegrationModule,
249
252
  DxTemplateModule
250
253
  ],
251
- declarations: [
252
- <#= it.className #>Component
253
- ],
254
254
  exports: [
255
255
  <#= it.className #>Component,<#~ it.legacyNestedComponents :component:i #>
256
256
  <#= component.className #>Module,<#~#><#~ it.nestedComponents :component:i #>
@@ -259,6 +259,8 @@ export class <#= it.className #>Component<#= componentTypeParams #> extends <#=
259
259
  ]
260
260
  })
261
261
  export class <#= it.className #>Module { }
262
+ <#? it.nestedComponents.length > 0 #>
263
+ export * from '<#= it.packageName #>/ui/<#= it.path #>/nested';<#?#>
262
264
  <#? it.renderReexports #>
263
265
  import type * as <#= it.className #>Types from "<#= it.module #>_types";
264
266
  export { <#= it.className #>Types };
@@ -27,6 +27,7 @@ import {
27
27
  <#? it.imports #><#~ it.imports :file #>import <#= file.importString #> from '<#= file.path #>';
28
28
  <#~#><#?#>
29
29
  import {
30
+ DxIntegrationModule,
30
31
  NestedOptionHost,<#? it.hasTemplate #>
31
32
  extractTemplate,<#?#><#? it.hasTemplate #>
32
33
  DxTemplateDirective,
@@ -39,8 +40,10 @@ import { <#= it.baseClass #> } from '<#= it.basePath #>';
39
40
 
40
41
  @Component({
41
42
  selector: '<#= it.selector #>',
43
+ standalone: true,
42
44
  template: '<#? it.hasTemplate #><ng-content></ng-content><#?#>',
43
45
  styles: ['<#? it.hasTemplate #>:host { display: block; }<#?#>'],
46
+ imports: [ DxIntegrationModule ],
44
47
  providers: [NestedOptionHost<#? it.hasTemplate #>, DxTemplateHost<#?#>]<#? it.inputs #>,
45
48
  inputs: [<#~ it.inputs :input:i #>
46
49
  '<#= input.name #>'<#? i < it.inputs.length-1 #>,<#?#><#~#>
@@ -130,7 +133,7 @@ export class <#= it.className #>Component extends <#= it.baseClass #><#? it.hasT
130
133
  }
131
134
 
132
135
  @NgModule({
133
- declarations: [
136
+ imports: [
134
137
  <#= it.className #>Component
135
138
  ],
136
139
  exports: [