yumiamd 0.1.36 → 0.1.37
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.
- package/dist/bin.js +1 -1
- package/dist/{chunk-EZEUXKPI.js → chunk-D2QBFJPO.js} +5 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +10 -10
package/dist/bin.js
CHANGED
|
@@ -8573,8 +8573,9 @@ var HtmlRenderer = class {
|
|
|
8573
8573
|
.yumia-timeline {
|
|
8574
8574
|
display: flex;
|
|
8575
8575
|
gap: 16px;
|
|
8576
|
-
margin: 1.
|
|
8576
|
+
margin: 1.5rem 0 1.8rem 0;
|
|
8577
8577
|
width: 100%;
|
|
8578
|
+
box-sizing: border-box;
|
|
8578
8579
|
}
|
|
8579
8580
|
.yumia-timeline.layout-horizontal {
|
|
8580
8581
|
flex-direction: row;
|
|
@@ -8599,6 +8600,7 @@ var HtmlRenderer = class {
|
|
|
8599
8600
|
align-items: center;
|
|
8600
8601
|
text-align: center;
|
|
8601
8602
|
flex: 1;
|
|
8603
|
+
padding: 0 10px;
|
|
8602
8604
|
}
|
|
8603
8605
|
.yumia-timeline-dot {
|
|
8604
8606
|
width: 14px;
|
|
@@ -8626,6 +8628,7 @@ var HtmlRenderer = class {
|
|
|
8626
8628
|
font-size: 0.85rem;
|
|
8627
8629
|
color: var(--yumia-muted);
|
|
8628
8630
|
line-height: 1.4;
|
|
8631
|
+
max-width: 240px;
|
|
8629
8632
|
}
|
|
8630
8633
|
|
|
8631
8634
|
/* Compare Directive */
|
|
@@ -12117,7 +12120,7 @@ function startDevServer(filePath, options = {}) {
|
|
|
12117
12120
|
// src/cli.ts
|
|
12118
12121
|
import { mkdirSync, readFileSync as readFileSync3, watch as fsWatch, writeFileSync } from "fs";
|
|
12119
12122
|
import { basename, dirname, extname, join, resolve as resolve3 } from "path";
|
|
12120
|
-
var VERSION = "0.1.
|
|
12123
|
+
var VERSION = "0.1.37";
|
|
12121
12124
|
function printHelp() {
|
|
12122
12125
|
return `
|
|
12123
12126
|
YumiaMD \u2014 Markdown-based presentation compiler (v${VERSION})
|
package/dist/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export * from '@yumiamd/renderer-pptx';
|
|
|
9
9
|
export * from '@yumiamd/renderer-html';
|
|
10
10
|
export * from '@yumiamd/renderer-pdf';
|
|
11
11
|
|
|
12
|
-
declare const VERSION = "0.1.
|
|
12
|
+
declare const VERSION = "0.1.37";
|
|
13
13
|
declare function printHelp(): string;
|
|
14
14
|
declare function runCli(argv: string[]): Promise<{
|
|
15
15
|
exitCode: number;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yumiamd",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.37",
|
|
4
4
|
"description": "Command line interface and compiler for YumiaMD presentations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"tsup": "^8.5.1",
|
|
25
|
-
"@yumiamd/ast": "0.1.
|
|
26
|
-
"@yumiamd/layout": "0.1.
|
|
27
|
-
"@yumiamd/
|
|
28
|
-
"@yumiamd/
|
|
29
|
-
"@yumiamd/renderer": "0.1.
|
|
30
|
-
"@yumiamd/
|
|
31
|
-
"@yumiamd/
|
|
32
|
-
"@yumiamd/
|
|
33
|
-
"@yumiamd/
|
|
25
|
+
"@yumiamd/ast": "0.1.37",
|
|
26
|
+
"@yumiamd/layout": "0.1.37",
|
|
27
|
+
"@yumiamd/parser": "0.1.37",
|
|
28
|
+
"@yumiamd/renderer-html": "0.1.37",
|
|
29
|
+
"@yumiamd/renderer-pdf": "0.1.37",
|
|
30
|
+
"@yumiamd/renderer-pptx": "0.1.37",
|
|
31
|
+
"@yumiamd/theme": "0.1.37",
|
|
32
|
+
"@yumiamd/core": "0.1.37",
|
|
33
|
+
"@yumiamd/renderer": "0.1.37"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [
|
|
36
36
|
"yumia",
|