@json-to-office/jto 1.0.0 → 1.2.0

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 (23) hide show
  1. package/dist/cli.js +4 -4
  2. package/dist/cli.js.map +1 -1
  3. package/dist/client/assets/{HomePage-D3vuZyJI.js → HomePage-jkIz_s7u.js} +4 -4
  4. package/dist/client/assets/{HomePage-D3vuZyJI.js.map → HomePage-jkIz_s7u.js.map} +1 -1
  5. package/dist/client/assets/{JsonEditorPage-Cqy_bBQ5.js → JsonEditorPage-DR8UoROz.js} +3 -3
  6. package/dist/client/assets/{JsonEditorPage-Cqy_bBQ5.js.map → JsonEditorPage-DR8UoROz.js.map} +1 -1
  7. package/dist/client/assets/{MonacoPluginProvider-BNFHf2Mg.js → MonacoPluginProvider-CE5NPGwN.js} +3 -3
  8. package/dist/client/assets/{MonacoPluginProvider-BNFHf2Mg.js.map → MonacoPluginProvider-CE5NPGwN.js.map} +1 -1
  9. package/dist/client/assets/{editor-CN0fauKm.js → editor-edmvhW9F.js} +2 -2
  10. package/dist/client/assets/{editor-CN0fauKm.js.map → editor-edmvhW9F.js.map} +1 -1
  11. package/dist/client/assets/{editor-monaco-json-HXjjUFz_.js → editor-monaco-json-CAlvfPc7.js} +2 -2
  12. package/dist/client/assets/{editor-monaco-json-HXjjUFz_.js.map → editor-monaco-json-CAlvfPc7.js.map} +1 -1
  13. package/dist/client/assets/{editor-refs-store-C7y0QHBG.js → editor-refs-store-DKOJcTAk.js} +2 -2
  14. package/dist/client/assets/{editor-refs-store-C7y0QHBG.js.map → editor-refs-store-DKOJcTAk.js.map} +1 -1
  15. package/dist/client/assets/index-DLlW4q4v.js +5 -0
  16. package/dist/client/assets/index-DLlW4q4v.js.map +1 -0
  17. package/dist/client/assets/{preview-BoIgsKxW.js → preview-zo-CHAU0.js} +2 -2
  18. package/dist/client/assets/{preview-BoIgsKxW.js.map → preview-zo-CHAU0.js.map} +1 -1
  19. package/dist/client/index.html +1 -1
  20. package/dist/client/templates/media/tech-report/fonts/OFL.txt +93 -0
  21. package/package.json +7 -7
  22. package/dist/client/assets/index-ClBlf8v3.js +0 -5
  23. package/dist/client/assets/index-ClBlf8v3.js.map +0 -1
package/dist/cli.js CHANGED
@@ -2590,7 +2590,7 @@ async function generateDocumentSchema(format, pluginNames) {
2590
2590
  });
2591
2591
  const unified = shared.generateUnifiedDocumentSchema({ customComponents });
2592
2592
  return shared.convertToJsonSchema(unified, {
2593
- $schema: "https://json-schema.org/draft-07/schema#",
2593
+ $schema: "http://json-schema.org/draft-07/schema#",
2594
2594
  $id: "https://json-to-office.dev/schema/document/v1.0.0",
2595
2595
  title: "JSON to DOCX Document Definition",
2596
2596
  description: "Schema for JSON to DOCX JSON document definitions"
@@ -2608,7 +2608,7 @@ async function generateDocumentSchema(format, pluginNames) {
2608
2608
  }));
2609
2609
  const unified = shared.generateUnifiedDocumentSchema({ customComponents });
2610
2610
  return shared.convertToJsonSchema(unified, {
2611
- $schema: "https://json-schema.org/draft-07/schema#",
2611
+ $schema: "http://json-schema.org/draft-07/schema#",
2612
2612
  $id: "https://json-to-office.dev/schema/presentation/v1.0.0",
2613
2613
  title: "JSON to PPTX Presentation Definition",
2614
2614
  description: "Schema for JSON to PPTX JSON presentation definitions"
@@ -2631,7 +2631,7 @@ async function generateThemeSchema(format) {
2631
2631
  cleanupTypeBoxIds(schema);
2632
2632
  return {
2633
2633
  ...schema,
2634
- $schema: "https://json-schema.org/draft-07/schema#",
2634
+ $schema: "http://json-schema.org/draft-07/schema#",
2635
2635
  $id: "https://json-to-office.dev/schemas/theme/v1.0.0",
2636
2636
  title: `JSON to ${label} Theme`,
2637
2637
  description: `Theme definition for JSON to ${label} ${format === "docx" ? "documents" : "presentations"}`
@@ -4182,7 +4182,7 @@ function createDevCommand(adapter) {
4182
4182
  }
4183
4183
 
4184
4184
  // src/cli.ts
4185
- var PACKAGE_VERSION = true ? "1.0.0" : "dev-mode";
4185
+ var PACKAGE_VERSION = true ? "1.2.0" : "dev-mode";
4186
4186
  var program = new Command2();
4187
4187
  program.name("jto").description("JSON to Office CLI - Generate .docx and .pptx from JSON").version(PACKAGE_VERSION);
4188
4188
  registerCoreCommands(program, {