devextreme-internal-tools 14.0.0-beta.2 → 14.0.0-beta.4

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 (37) 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/bin/Enums_24_1.json +19 -1
  35. package/package.json +1 -1
  36. package/ts/angular-components-generator/common-reexports-generator.js +9 -4
  37. package/ts/angular-components-generator/common-reexports-generator.js.map +1 -1
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -263,7 +263,25 @@
263
263
 
264
264
  "dxDiagram(.*)": {
265
265
  "Orientation": "DiagramDataLayoutOrientation",
266
- "PageOrientation": "DiagramPageOrientation"
266
+ "PageOrientation": "DiagramPageOrientation",
267
+ "AutoZoomMode": "DiagramAutoZoomMode",
268
+ "Command": "DiagramCommand",
269
+ "ConnectorLineEnd": "DiagramConnectorLineEnd",
270
+ "ConnectorLineType": "DiagramConnectorLineType",
271
+ "ConnectorPosition": "DiagramConnectorPosition",
272
+ "DataLayoutType": "DiagramDataLayoutType",
273
+ "ItemType": "DiagramItemType",
274
+ "ModelOperation": "DiagramModelOperation",
275
+ "PanelVisibility": "DiagramPanelVisibility",
276
+ "RequestEditOperationReason": "DiagramRequestEditOperationReason",
277
+ "ShapeCategory": "DiagramShapeCategory",
278
+ "ShapeType": "DiagramShapeType",
279
+ "ToolboxDisplayMode": "DiagramToolboxDisplayMode",
280
+ "Units": "DiagramUnits"
281
+ },
282
+
283
+ "CustomCommand(.*)": {
284
+ "Command": "DiagramCommand"
267
285
  },
268
286
 
269
287
  "(dxDataGrid|dxTreeList|dxGantt)(.*)": {
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": "14.0.0-beta.2",
5
+ "version": "14.0.0-beta.4",
6
6
  "license": "MIT",
7
7
  "main": "./index.js",
8
8
  "bin": {
@@ -22,10 +22,15 @@ var CommonReexportsGenerator = (function () {
22
22
  (0, fs_1.mkdirSync)(commonPath);
23
23
  }
24
24
  Object.keys(metadata.CommonReexports).forEach(function (key) {
25
- var targetFileName = key === commonTargetFolderName ? 'index.ts' : "".concat(key.replace("".concat(commonTargetFolderName, "/"), ''), ".ts");
26
- var fullPath = (0, path_1.join)(commonPath, targetFileName);
27
- (0, fs_1.mkdirSync)((0, path_1.dirname)(fullPath), { recursive: true });
28
- (0, fs_1.writeFileSync)(fullPath, _this.generateReexports("".concat(widgetsPackage, "/").concat(key), metadata.CommonReexports[key]), { encoding: 'utf8' });
25
+ var targetFolder = (0, path_1.join)(config.outputPath, key);
26
+ (0, fs_1.mkdirSync)(targetFolder, { recursive: true });
27
+ var fileContent = _this.generateReexports("".concat(widgetsPackage, "/").concat(key), metadata.CommonReexports[key]);
28
+ (0, fs_1.writeFileSync)((0, path_1.join)(targetFolder, 'index.ts'), fileContent, { encoding: 'utf8' });
29
+ (0, fs_1.writeFileSync)((0, path_1.join)(targetFolder, 'ng-package.json'), JSON.stringify({
30
+ lib: {
31
+ entryFile: 'index.ts',
32
+ },
33
+ }, null, ' '), { encoding: 'utf8' });
29
34
  });
30
35
  };
31
36
  CommonReexportsGenerator.prototype.generateReexports = function (module, reexports) {
@@ -1 +1 @@
1
- {"version":3,"file":"common-reexports-generator.js","sourceRoot":"","sources":["../../../ts/angular-components-generator/common-reexports-generator.ts"],"names":[],"mappings":";;;AAAA,yBAEY;AACZ,6BAAgE;AAChE,iDAA2D;AAE3D,IAAM,MAAM,GAA+D,IAAA,wCAAwB,EAAC,kGAInG,CAAC,QAAQ,EAAE,CAAC,CAAC;AAEd;IAAA;IA+BA,CAAC;IA9BC,2CAAQ,GAAR,UAAS,MAAM;QAAf,iBAuBC;;QAtBC,IAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,IAAA,iBAAY,EAAC,MAAM,CAAC,YAAY,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC;QAC1E,IAAM,cAAc,GAAG,MAAA,MAAM,CAAC,cAAc,mCAAI,YAAY,CAAC;QAE7D,IAAI,CAAC,QAAQ,CAAC,eAAe,EAAE;YAC7B,OAAO;SACR;QAED,IAAM,sBAAsB,GAAG,QAAQ,CAAC;QACxC,IAAM,UAAU,GAAG,IAAA,WAAS,EAAC,MAAM,CAAC,UAAU,EAAE,sBAAsB,CAAC,CAAC;QACxE,IAAI,CAAC,IAAA,eAAU,EAAC,UAAU,CAAC,EAAE;YAC3B,IAAA,cAAS,EAAC,UAAU,CAAC,CAAC;SACvB;QACD,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,OAAO,CAAC,UAAC,GAAG;YAChD,IAAM,cAAc,GAAG,GAAG,KAAK,sBAAsB,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,UAAG,GAAG,CAAC,OAAO,CAAC,UAAG,sBAAsB,MAAG,EAAE,EAAE,CAAC,QAAK,CAAC;YAC3H,IAAM,QAAQ,GAAG,IAAA,WAAS,EAAC,UAAU,EAAE,cAAc,CAAC,CAAC;YACvD,IAAA,cAAS,EAAC,IAAA,cAAU,EAAC,QAAQ,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;YACrD,IAAA,kBAAa,EACX,QAAQ,EACR,KAAI,CAAC,iBAAiB,CAAC,UAAG,cAAc,cAAI,GAAG,CAAE,EAAE,QAAQ,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC,EACjF,EAAE,QAAQ,EAAE,MAAM,EAAE,CACrB,CAAC;QACJ,CAAC,CAAC,CAAC;IACL,CAAC;IAGO,oDAAiB,GAAzB,UAA0B,MAAc,EAAE,SAAmB;QAC3D,IAAM,MAAM,GAAG,MAAM,CAAC,EAAE,MAAM,QAAA,EAAE,SAAS,WAAA,EAAE,CAAC,CAAC;QAC7C,OAAO,MAAM,CAAC;IAChB,CAAC;IACH,+BAAC;AAAD,CAAC,AA/BD,IA+BC;AA/BY,4DAAwB"}
1
+ {"version":3,"file":"common-reexports-generator.js","sourceRoot":"","sources":["../../../ts/angular-components-generator/common-reexports-generator.ts"],"names":[],"mappings":";;;AAAA,yBAEY;AACZ,6BAAyC;AACzC,iDAA2D;AAE3D,IAAM,MAAM,GAA+D,IAAA,wCAAwB,EAAC,kGAInG,CAAC,QAAQ,EAAE,CAAC,CAAC;AAEd;IAAA;IA0CA,CAAC;IAzCC,2CAAQ,GAAR,UAAS,MAAM;QAAf,iBAkCC;;QAjCC,IAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,IAAA,iBAAY,EAAC,MAAM,CAAC,YAAY,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC;QAC1E,IAAM,cAAc,GAAG,MAAA,MAAM,CAAC,cAAc,mCAAI,YAAY,CAAC;QAE7D,IAAI,CAAC,QAAQ,CAAC,eAAe,EAAE;YAC7B,OAAO;SACR;QAED,IAAM,sBAAsB,GAAG,QAAQ,CAAC;QACxC,IAAM,UAAU,GAAG,IAAA,WAAS,EAAC,MAAM,CAAC,UAAU,EAAE,sBAAsB,CAAC,CAAC;QAExE,IAAI,CAAC,IAAA,eAAU,EAAC,UAAU,CAAC,EAAE;YAC3B,IAAA,cAAS,EAAC,UAAU,CAAC,CAAC;SACvB;QAED,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,OAAO,CAAC,UAAC,GAAG;YAChD,IAAM,YAAY,GAAG,IAAA,WAAS,EAAC,MAAM,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;YAEvD,IAAA,cAAS,EAAC,YAAY,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;YAE7C,IAAM,WAAW,GAAG,KAAI,CAAC,iBAAiB,CAAC,UAAG,cAAc,cAAI,GAAG,CAAE,EAAE,QAAQ,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC,CAAC;YAEtG,IAAA,kBAAa,EACX,IAAA,WAAS,EAAC,YAAY,EAAE,UAAU,CAAC,EACnC,WAAW,EACX,EAAE,QAAQ,EAAE,MAAM,EAAE,CACrB,CAAC;YAEF,IAAA,kBAAa,EAAC,IAAA,WAAS,EAAC,YAAY,EAAE,iBAAiB,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC;gBACvE,GAAG,EAAE;oBACH,SAAS,EAAE,UAAU;iBACtB;aACF,EAAE,IAAI,EAAE,IAAI,CAAC,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC,CAAC;QACxC,CAAC,CAAC,CAAC;IACL,CAAC;IAGO,oDAAiB,GAAzB,UAA0B,MAAc,EAAE,SAAmB;QAC3D,IAAM,MAAM,GAAG,MAAM,CAAC,EAAE,MAAM,QAAA,EAAE,SAAS,WAAA,EAAE,CAAC,CAAC;QAC7C,OAAO,MAAM,CAAC;IAChB,CAAC;IACH,+BAAC;AAAD,CAAC,AA1CD,IA0CC;AA1CY,4DAAwB"}