themed-markdown 0.1.30 → 0.1.32
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/index.mjs +146 -51
- package/dist/industryMarkdown/components/IndustryMarkdownComponents.d.ts.map +1 -1
- package/dist/industryMarkdown/components/IndustryMarkdownSlide.d.ts.map +1 -1
- package/dist/industryMarkdown/components/IndustryMarkdownSlide.stories.d.ts +1 -0
- package/dist/industryMarkdown/components/IndustryMarkdownSlide.stories.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2520,7 +2520,6 @@ var createIndustryMarkdownComponents = ({
|
|
|
2520
2520
|
const bashCommands = isExecutable ? parseBashCommands(codeString) : [];
|
|
2521
2521
|
const containerStyle = isPrompt ? {
|
|
2522
2522
|
position: "relative",
|
|
2523
|
-
margin: `${theme2.space[4]}px 0`,
|
|
2524
2523
|
backgroundColor: darkMode ? theme2.colors.backgroundTertiary : theme2.colors.highlight,
|
|
2525
2524
|
border: `2px solid ${theme2.colors.accent}`,
|
|
2526
2525
|
borderRadius: theme2.radii[2],
|
|
@@ -2528,7 +2527,6 @@ var createIndustryMarkdownComponents = ({
|
|
|
2528
2527
|
boxShadow: theme2.shadows[2]
|
|
2529
2528
|
} : {
|
|
2530
2529
|
position: "relative",
|
|
2531
|
-
margin: `${theme2.space[4]}px 0`,
|
|
2532
2530
|
backgroundColor: theme2.colors.backgroundSecondary,
|
|
2533
2531
|
borderRadius: theme2.radii[2],
|
|
2534
2532
|
overflow: "hidden",
|
|
@@ -2694,14 +2692,17 @@ var createIndustryMarkdownComponents = ({
|
|
|
2694
2692
|
...props
|
|
2695
2693
|
}, children)));
|
|
2696
2694
|
}
|
|
2695
|
+
const cleanClassName = className?.replace(/hljs(-\w+)?/g, "")?.replace(/language-\w+/g, "")?.replace(/\s+/g, " ")?.trim();
|
|
2697
2696
|
return /* @__PURE__ */ React8.createElement("code", {
|
|
2698
2697
|
style: {
|
|
2699
2698
|
color: theme2.colors.accent,
|
|
2700
2699
|
fontSize: "0.875em",
|
|
2701
2700
|
fontFamily: theme2.fonts.monospace,
|
|
2701
|
+
backgroundColor: "transparent",
|
|
2702
|
+
padding: 0,
|
|
2702
2703
|
"--text-color": theme2.colors.accent
|
|
2703
2704
|
},
|
|
2704
|
-
className: `inline-code ${
|
|
2705
|
+
className: cleanClassName ? `inline-code ${cleanClassName}` : "inline-code",
|
|
2705
2706
|
...props
|
|
2706
2707
|
}, children);
|
|
2707
2708
|
}
|
|
@@ -3212,59 +3213,153 @@ function IndustryPlaceholderModal({
|
|
|
3212
3213
|
|
|
3213
3214
|
// industryMarkdown/components/IndustryMarkdownSlide.tsx
|
|
3214
3215
|
var highlightOverrides = `
|
|
3215
|
-
.
|
|
3216
|
-
.hljs
|
|
3217
|
-
.hljs-
|
|
3218
|
-
.hljs-
|
|
3219
|
-
.hljs-
|
|
3220
|
-
.hljs-
|
|
3221
|
-
.hljs-
|
|
3222
|
-
.hljs-
|
|
3223
|
-
.hljs-
|
|
3224
|
-
.hljs-
|
|
3225
|
-
.hljs-
|
|
3226
|
-
.hljs-
|
|
3227
|
-
.hljs-
|
|
3228
|
-
.hljs-
|
|
3229
|
-
.hljs-
|
|
3230
|
-
.hljs-
|
|
3231
|
-
.hljs-
|
|
3232
|
-
.hljs-
|
|
3233
|
-
.hljs-
|
|
3234
|
-
.hljs-
|
|
3235
|
-
.hljs-
|
|
3236
|
-
.hljs-
|
|
3237
|
-
.hljs-
|
|
3238
|
-
.hljs-
|
|
3239
|
-
.hljs-
|
|
3240
|
-
.hljs-selector-
|
|
3241
|
-
.hljs-selector-
|
|
3242
|
-
.hljs-
|
|
3243
|
-
.hljs-
|
|
3244
|
-
.hljs-
|
|
3245
|
-
.hljs-
|
|
3246
|
-
.hljs-
|
|
3247
|
-
.hljs-
|
|
3248
|
-
.hljs-
|
|
3249
|
-
.hljs-
|
|
3216
|
+
/* Remove backgrounds from all highlight.js classes in code blocks */
|
|
3217
|
+
pre code .hljs,
|
|
3218
|
+
pre code .hljs-keyword,
|
|
3219
|
+
pre code .hljs-selector-tag,
|
|
3220
|
+
pre code .hljs-literal,
|
|
3221
|
+
pre code .hljs-strong,
|
|
3222
|
+
pre code .hljs-name,
|
|
3223
|
+
pre code .hljs-variable,
|
|
3224
|
+
pre code .hljs-number,
|
|
3225
|
+
pre code .hljs-string,
|
|
3226
|
+
pre code .hljs-comment,
|
|
3227
|
+
pre code .hljs-type,
|
|
3228
|
+
pre code .hljs-built_in,
|
|
3229
|
+
pre code .hljs-builtin-name,
|
|
3230
|
+
pre code .hljs-meta,
|
|
3231
|
+
pre code .hljs-tag,
|
|
3232
|
+
pre code .hljs-title,
|
|
3233
|
+
pre code .hljs-attr,
|
|
3234
|
+
pre code .hljs-attribute,
|
|
3235
|
+
pre code .hljs-addition,
|
|
3236
|
+
pre code .hljs-deletion,
|
|
3237
|
+
pre code .hljs-link,
|
|
3238
|
+
pre code .hljs-doctag,
|
|
3239
|
+
pre code .hljs-formula,
|
|
3240
|
+
pre code .hljs-section,
|
|
3241
|
+
pre code .hljs-selector-class,
|
|
3242
|
+
pre code .hljs-selector-attr,
|
|
3243
|
+
pre code .hljs-selector-pseudo,
|
|
3244
|
+
pre code .hljs-symbol,
|
|
3245
|
+
pre code .hljs-bullet,
|
|
3246
|
+
pre code .hljs-selector-id,
|
|
3247
|
+
pre code .hljs-emphasis,
|
|
3248
|
+
pre code .hljs-quote,
|
|
3249
|
+
pre code .hljs-template-variable,
|
|
3250
|
+
pre code .hljs-regexp,
|
|
3251
|
+
pre code .hljs-subst {
|
|
3250
3252
|
background-color: transparent !important;
|
|
3251
3253
|
}
|
|
3252
|
-
|
|
3253
|
-
/*
|
|
3254
|
-
|
|
3254
|
+
|
|
3255
|
+
/* Aggressive removal of backgrounds and padding for inline code */
|
|
3256
|
+
p code,
|
|
3257
|
+
li code,
|
|
3258
|
+
td code,
|
|
3259
|
+
th code,
|
|
3260
|
+
h1 code,
|
|
3261
|
+
h2 code,
|
|
3262
|
+
h3 code,
|
|
3263
|
+
h4 code,
|
|
3264
|
+
h5 code,
|
|
3265
|
+
h6 code,
|
|
3266
|
+
blockquote code,
|
|
3267
|
+
.inline-code,
|
|
3268
|
+
code:not(pre code) {
|
|
3269
|
+
background: transparent !important;
|
|
3270
|
+
background-color: transparent !important;
|
|
3271
|
+
padding: 0 !important;
|
|
3272
|
+
border: none !important;
|
|
3273
|
+
box-shadow: none !important;
|
|
3274
|
+
color: var(--text-color, currentColor) !important;
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3277
|
+
/* Ensure inline code uses its own color even with hljs classes */
|
|
3278
|
+
.inline-code,
|
|
3279
|
+
.inline-code[class*="hljs"],
|
|
3280
|
+
.inline-code[class*="language"] {
|
|
3255
3281
|
color: var(--text-color) !important;
|
|
3282
|
+
background: transparent !important;
|
|
3283
|
+
background-color: transparent !important;
|
|
3284
|
+
padding: 0 !important;
|
|
3256
3285
|
}
|
|
3257
|
-
|
|
3258
|
-
/*
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3286
|
+
|
|
3287
|
+
/* Override any highlight.js styles on inline code */
|
|
3288
|
+
p code[class*="hljs"],
|
|
3289
|
+
li code[class*="hljs"],
|
|
3290
|
+
td code[class*="hljs"],
|
|
3291
|
+
th code[class*="hljs"],
|
|
3292
|
+
p code[class*="language"],
|
|
3293
|
+
li code[class*="language"],
|
|
3294
|
+
td code[class*="language"],
|
|
3295
|
+
th code[class*="language"] {
|
|
3296
|
+
background: transparent !important;
|
|
3297
|
+
background-color: transparent !important;
|
|
3298
|
+
padding: 0 !important;
|
|
3299
|
+
border: none !important;
|
|
3300
|
+
box-shadow: none !important;
|
|
3301
|
+
color: var(--text-color) !important;
|
|
3302
|
+
}
|
|
3303
|
+
|
|
3304
|
+
/* Remove all hljs styling from any inline code - comprehensive override */
|
|
3305
|
+
:not(pre) > code.hljs,
|
|
3306
|
+
:not(pre) > code[class*="hljs"],
|
|
3307
|
+
:not(pre) > code[class*="language"] {
|
|
3308
|
+
all: unset !important;
|
|
3309
|
+
font-family: var(--monospace-font-family, monospace) !important;
|
|
3310
|
+
font-size: 0.875em !important;
|
|
3311
|
+
color: var(--text-color) !important;
|
|
3312
|
+
background: transparent !important;
|
|
3313
|
+
background-color: transparent !important;
|
|
3314
|
+
padding: 0 !important;
|
|
3315
|
+
margin: 0 !important;
|
|
3316
|
+
border: none !important;
|
|
3317
|
+
border-radius: 0 !important;
|
|
3318
|
+
box-shadow: none !important;
|
|
3319
|
+
text-shadow: none !important;
|
|
3320
|
+
}
|
|
3321
|
+
|
|
3322
|
+
/* Override all possible hljs token classes for inline code */
|
|
3323
|
+
:not(pre) > code .hljs-keyword,
|
|
3324
|
+
:not(pre) > code .hljs-selector-tag,
|
|
3325
|
+
:not(pre) > code .hljs-literal,
|
|
3326
|
+
:not(pre) > code .hljs-strong,
|
|
3327
|
+
:not(pre) > code .hljs-name,
|
|
3328
|
+
:not(pre) > code .hljs-variable,
|
|
3329
|
+
:not(pre) > code .hljs-number,
|
|
3330
|
+
:not(pre) > code .hljs-string,
|
|
3331
|
+
:not(pre) > code .hljs-comment,
|
|
3332
|
+
:not(pre) > code .hljs-type,
|
|
3333
|
+
:not(pre) > code .hljs-built_in,
|
|
3334
|
+
:not(pre) > code .hljs-builtin-name,
|
|
3335
|
+
:not(pre) > code .hljs-meta,
|
|
3336
|
+
:not(pre) > code .hljs-tag,
|
|
3337
|
+
:not(pre) > code .hljs-title,
|
|
3338
|
+
:not(pre) > code .hljs-attr,
|
|
3339
|
+
:not(pre) > code .hljs-attribute,
|
|
3340
|
+
:not(pre) > code .hljs-addition,
|
|
3341
|
+
:not(pre) > code .hljs-deletion,
|
|
3342
|
+
:not(pre) > code .hljs-link,
|
|
3343
|
+
:not(pre) > code .hljs-doctag,
|
|
3344
|
+
:not(pre) > code .hljs-formula,
|
|
3345
|
+
:not(pre) > code .hljs-section,
|
|
3346
|
+
:not(pre) > code .hljs-selector-class,
|
|
3347
|
+
:not(pre) > code .hljs-selector-attr,
|
|
3348
|
+
:not(pre) > code .hljs-selector-pseudo,
|
|
3349
|
+
:not(pre) > code .hljs-symbol,
|
|
3350
|
+
:not(pre) > code .hljs-bullet,
|
|
3351
|
+
:not(pre) > code .hljs-selector-id,
|
|
3352
|
+
:not(pre) > code .hljs-emphasis,
|
|
3353
|
+
:not(pre) > code .hljs-quote,
|
|
3354
|
+
:not(pre) > code .hljs-template-variable,
|
|
3355
|
+
:not(pre) > code .hljs-regexp,
|
|
3356
|
+
:not(pre) > code .hljs-subst {
|
|
3357
|
+
color: var(--text-color) !important;
|
|
3358
|
+
background: transparent !important;
|
|
3267
3359
|
background-color: transparent !important;
|
|
3360
|
+
font-weight: inherit !important;
|
|
3361
|
+
font-style: inherit !important;
|
|
3362
|
+
text-decoration: none !important;
|
|
3268
3363
|
}
|
|
3269
3364
|
`;
|
|
3270
3365
|
var fontTransitionCSS = `
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IndustryMarkdownComponents.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/IndustryMarkdownComponents.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,cAAc,EAAqB,MAAM,sBAAsB,CAAC;AAEhH,OAAO,KAAoC,MAAM,OAAO,CAAC;AAEzD,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAC5C,OAAO,EACL,sBAAsB,EACtB,YAAY,EACZ,aAAa,EACb,SAAS,EACT,UAAU,EACV,SAAS,EACT,WAAW,EAEZ,MAAM,6BAA6B,CAAC;AAMrC,UAAU,+BAA+B;IACvC,KAAK,EAAE,KAAK,CAAC;IACb,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IACzD,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACtF,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACtC,eAAe,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IAC/E,aAAa,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,oBAAoB,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,EAAE,EAAE,aAAa,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/E,oBAAoB,CAAC,EAAE,CACrB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,kBAAkB,KACzB,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAChC,gBAAgB,EAAE,OAAO,CAAC;IAC1B,4BAA4B,CAAC,EAAE,MAAM,CAAC;IACtC,KAAK,EAAE,MAAM,CAAC;IACd,cAAc,CAAC,EAAE,cAAc,CAAC;CACjC;AAgKD;;;GAGG;AACH,eAAO,MAAM,gCAAgC,GAAI,uOAe9C,+BAA+B;iCAqBD,YAAY;iCAiBZ,YAAY;iCAiBZ,YAAY;gCAkBb,sBAAsB;iCAgBrB,sBAAsB;iCAgBtB,sBAAsB;iCAgBtB,aAAa;oCAuGV,sBAAsB;oCAsBtB,sBAAsB;iCAUzB,sBAAsB;iCActB,sBAAsB;sCAcjB,SAAS;kCAWb,UAAU;sCAWN,sBAAsB;oCAGxB,sBAAsB;2CAkBf,WAAW;oDAyBF,SAAS;
|
|
1
|
+
{"version":3,"file":"IndustryMarkdownComponents.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/IndustryMarkdownComponents.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,cAAc,EAAqB,MAAM,sBAAsB,CAAC;AAEhH,OAAO,KAAoC,MAAM,OAAO,CAAC;AAEzD,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAC5C,OAAO,EACL,sBAAsB,EACtB,YAAY,EACZ,aAAa,EACb,SAAS,EACT,UAAU,EACV,SAAS,EACT,WAAW,EAEZ,MAAM,6BAA6B,CAAC;AAMrC,UAAU,+BAA+B;IACvC,KAAK,EAAE,KAAK,CAAC;IACb,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IACzD,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACtF,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACtC,eAAe,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IAC/E,aAAa,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,oBAAoB,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,EAAE,EAAE,aAAa,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/E,oBAAoB,CAAC,EAAE,CACrB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,kBAAkB,KACzB,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAChC,gBAAgB,EAAE,OAAO,CAAC;IAC1B,4BAA4B,CAAC,EAAE,MAAM,CAAC;IACtC,KAAK,EAAE,MAAM,CAAC;IACd,cAAc,CAAC,EAAE,cAAc,CAAC;CACjC;AAgKD;;;GAGG;AACH,eAAO,MAAM,gCAAgC,GAAI,uOAe9C,+BAA+B;iCAqBD,YAAY;iCAiBZ,YAAY;iCAiBZ,YAAY;gCAkBb,sBAAsB;iCAgBrB,sBAAsB;iCAgBtB,sBAAsB;iCAgBtB,aAAa;oCAuGV,sBAAsB;oCAsBtB,sBAAsB;iCAUzB,sBAAsB;iCActB,sBAAsB;sCAcjB,SAAS;kCAWb,UAAU;sCAWN,sBAAsB;oCAGxB,sBAAsB;2CAkBf,WAAW;oDAyBF,SAAS;CA0S5D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IndustryMarkdownSlide.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/IndustryMarkdownSlide.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2DG;AAEH,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE7F,OAAO,KAA4D,MAAM,OAAO,CAAC;AAQjF,OAAO,EAAY,KAAK,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAUpD,MAAM,WAAW,0BAA0B;IAEzC,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IAGpB,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IACzD,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACtF,kBAAkB,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IACzE,oBAAoB,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9D,oBAAoB,CAAC,EAAE,CACrB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,kBAAkB,KACzB,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAChC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAGlD,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAG3B,WAAW,CAAC,EAAE,MAAM,CAAC;IAGrB,4BAA4B,CAAC,EAAE,MAAM,CAAC;IACtC,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,MAAM,CAAC;IAGxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IAGxB,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;IAG5C,cAAc,CAAC,EAAE,cAAc,CAAC;CACjC;
|
|
1
|
+
{"version":3,"file":"IndustryMarkdownSlide.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/IndustryMarkdownSlide.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2DG;AAEH,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE7F,OAAO,KAA4D,MAAM,OAAO,CAAC;AAQjF,OAAO,EAAY,KAAK,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAUpD,MAAM,WAAW,0BAA0B;IAEzC,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IAGpB,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IACzD,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACtF,kBAAkB,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IACzE,oBAAoB,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9D,oBAAoB,CAAC,EAAE,CACrB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,kBAAkB,KACzB,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAChC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAGlD,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAG3B,WAAW,CAAC,EAAE,MAAM,CAAC;IAGrB,4BAA4B,CAAC,EAAE,MAAM,CAAC;IACtC,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,MAAM,CAAC;IAGxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IAGxB,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;IAG5C,cAAc,CAAC,EAAE,cAAc,CAAC;CACjC;AAmOD,MAAM,WAAW,oBAAoB;IACnC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,IAAI,CAAC,EAAE;QACL,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;QACpB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;QACtB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;QAClB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;KACrB,CAAC;IACF,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAGD,wBAAgB,4BAA4B,CAAC,MAAM,CAAC,EAAE,oBAAoB,GAAG,eAAe,EAAE,CA8D7F;AAED,eAAO,MAAM,qBAAqB,wDA4nBhC,CAAC"}
|
|
@@ -14,5 +14,6 @@ export declare const WithTable: Story;
|
|
|
14
14
|
export declare const LongContent: Story;
|
|
15
15
|
export declare const WithASCIITable: Story;
|
|
16
16
|
export declare const WithResizeObserver: Story;
|
|
17
|
+
export declare const ProjectStructure: Story;
|
|
17
18
|
export declare const MermaidFontScaling: Story;
|
|
18
19
|
//# sourceMappingURL=IndustryMarkdownSlide.stories.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IndustryMarkdownSlide.stories.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/IndustryMarkdownSlide.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAKvD,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAEhE,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,qBAAqB,CAe5C,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAOrB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAmBtB,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KA4BvB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAkEzB,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KA2BjC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,KA+BpC,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAgB1B,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAavB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAyBzB,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,KA4E5B,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,KA8BhC,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,KAwFhC,CAAC"}
|
|
1
|
+
{"version":3,"file":"IndustryMarkdownSlide.stories.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/IndustryMarkdownSlide.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAKvD,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAEhE,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,qBAAqB,CAe5C,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAOrB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAmBtB,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KA4BvB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAkEzB,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KA2BjC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,KA+BpC,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAgB1B,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAavB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAyBzB,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,KA4E5B,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,KA8BhC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,KA+C9B,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,KAwFhC,CAAC"}
|