themed-markdown 0.1.30 → 0.1.31
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
CHANGED
|
@@ -2694,14 +2694,17 @@ var createIndustryMarkdownComponents = ({
|
|
|
2694
2694
|
...props
|
|
2695
2695
|
}, children)));
|
|
2696
2696
|
}
|
|
2697
|
+
const cleanClassName = className?.replace(/hljs(-\w+)?/g, "")?.replace(/language-\w+/g, "")?.replace(/\s+/g, " ")?.trim();
|
|
2697
2698
|
return /* @__PURE__ */ React8.createElement("code", {
|
|
2698
2699
|
style: {
|
|
2699
2700
|
color: theme2.colors.accent,
|
|
2700
2701
|
fontSize: "0.875em",
|
|
2701
2702
|
fontFamily: theme2.fonts.monospace,
|
|
2703
|
+
backgroundColor: "transparent",
|
|
2704
|
+
padding: 0,
|
|
2702
2705
|
"--text-color": theme2.colors.accent
|
|
2703
2706
|
},
|
|
2704
|
-
className: `inline-code ${
|
|
2707
|
+
className: cleanClassName ? `inline-code ${cleanClassName}` : "inline-code",
|
|
2705
2708
|
...props
|
|
2706
2709
|
}, children);
|
|
2707
2710
|
}
|
|
@@ -3212,59 +3215,153 @@ function IndustryPlaceholderModal({
|
|
|
3212
3215
|
|
|
3213
3216
|
// industryMarkdown/components/IndustryMarkdownSlide.tsx
|
|
3214
3217
|
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-
|
|
3218
|
+
/* Remove backgrounds from all highlight.js classes in code blocks */
|
|
3219
|
+
pre code .hljs,
|
|
3220
|
+
pre code .hljs-keyword,
|
|
3221
|
+
pre code .hljs-selector-tag,
|
|
3222
|
+
pre code .hljs-literal,
|
|
3223
|
+
pre code .hljs-strong,
|
|
3224
|
+
pre code .hljs-name,
|
|
3225
|
+
pre code .hljs-variable,
|
|
3226
|
+
pre code .hljs-number,
|
|
3227
|
+
pre code .hljs-string,
|
|
3228
|
+
pre code .hljs-comment,
|
|
3229
|
+
pre code .hljs-type,
|
|
3230
|
+
pre code .hljs-built_in,
|
|
3231
|
+
pre code .hljs-builtin-name,
|
|
3232
|
+
pre code .hljs-meta,
|
|
3233
|
+
pre code .hljs-tag,
|
|
3234
|
+
pre code .hljs-title,
|
|
3235
|
+
pre code .hljs-attr,
|
|
3236
|
+
pre code .hljs-attribute,
|
|
3237
|
+
pre code .hljs-addition,
|
|
3238
|
+
pre code .hljs-deletion,
|
|
3239
|
+
pre code .hljs-link,
|
|
3240
|
+
pre code .hljs-doctag,
|
|
3241
|
+
pre code .hljs-formula,
|
|
3242
|
+
pre code .hljs-section,
|
|
3243
|
+
pre code .hljs-selector-class,
|
|
3244
|
+
pre code .hljs-selector-attr,
|
|
3245
|
+
pre code .hljs-selector-pseudo,
|
|
3246
|
+
pre code .hljs-symbol,
|
|
3247
|
+
pre code .hljs-bullet,
|
|
3248
|
+
pre code .hljs-selector-id,
|
|
3249
|
+
pre code .hljs-emphasis,
|
|
3250
|
+
pre code .hljs-quote,
|
|
3251
|
+
pre code .hljs-template-variable,
|
|
3252
|
+
pre code .hljs-regexp,
|
|
3253
|
+
pre code .hljs-subst {
|
|
3250
3254
|
background-color: transparent !important;
|
|
3251
3255
|
}
|
|
3252
|
-
|
|
3253
|
-
/*
|
|
3254
|
-
|
|
3256
|
+
|
|
3257
|
+
/* Aggressive removal of backgrounds and padding for inline code */
|
|
3258
|
+
p code,
|
|
3259
|
+
li code,
|
|
3260
|
+
td code,
|
|
3261
|
+
th code,
|
|
3262
|
+
h1 code,
|
|
3263
|
+
h2 code,
|
|
3264
|
+
h3 code,
|
|
3265
|
+
h4 code,
|
|
3266
|
+
h5 code,
|
|
3267
|
+
h6 code,
|
|
3268
|
+
blockquote code,
|
|
3269
|
+
.inline-code,
|
|
3270
|
+
code:not(pre code) {
|
|
3271
|
+
background: transparent !important;
|
|
3272
|
+
background-color: transparent !important;
|
|
3273
|
+
padding: 0 !important;
|
|
3274
|
+
border: none !important;
|
|
3275
|
+
box-shadow: none !important;
|
|
3276
|
+
color: var(--text-color, currentColor) !important;
|
|
3277
|
+
}
|
|
3278
|
+
|
|
3279
|
+
/* Ensure inline code uses its own color even with hljs classes */
|
|
3280
|
+
.inline-code,
|
|
3281
|
+
.inline-code[class*="hljs"],
|
|
3282
|
+
.inline-code[class*="language"] {
|
|
3255
3283
|
color: var(--text-color) !important;
|
|
3284
|
+
background: transparent !important;
|
|
3285
|
+
background-color: transparent !important;
|
|
3286
|
+
padding: 0 !important;
|
|
3256
3287
|
}
|
|
3257
|
-
|
|
3258
|
-
/*
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3288
|
+
|
|
3289
|
+
/* Override any highlight.js styles on inline code */
|
|
3290
|
+
p code[class*="hljs"],
|
|
3291
|
+
li code[class*="hljs"],
|
|
3292
|
+
td code[class*="hljs"],
|
|
3293
|
+
th code[class*="hljs"],
|
|
3294
|
+
p code[class*="language"],
|
|
3295
|
+
li code[class*="language"],
|
|
3296
|
+
td code[class*="language"],
|
|
3297
|
+
th code[class*="language"] {
|
|
3298
|
+
background: transparent !important;
|
|
3299
|
+
background-color: transparent !important;
|
|
3300
|
+
padding: 0 !important;
|
|
3301
|
+
border: none !important;
|
|
3302
|
+
box-shadow: none !important;
|
|
3303
|
+
color: var(--text-color) !important;
|
|
3304
|
+
}
|
|
3305
|
+
|
|
3306
|
+
/* Remove all hljs styling from any inline code - comprehensive override */
|
|
3307
|
+
:not(pre) > code.hljs,
|
|
3308
|
+
:not(pre) > code[class*="hljs"],
|
|
3309
|
+
:not(pre) > code[class*="language"] {
|
|
3310
|
+
all: unset !important;
|
|
3311
|
+
font-family: var(--monospace-font-family, monospace) !important;
|
|
3312
|
+
font-size: 0.875em !important;
|
|
3313
|
+
color: var(--text-color) !important;
|
|
3314
|
+
background: transparent !important;
|
|
3315
|
+
background-color: transparent !important;
|
|
3316
|
+
padding: 0 !important;
|
|
3317
|
+
margin: 0 !important;
|
|
3318
|
+
border: none !important;
|
|
3319
|
+
border-radius: 0 !important;
|
|
3320
|
+
box-shadow: none !important;
|
|
3321
|
+
text-shadow: none !important;
|
|
3322
|
+
}
|
|
3323
|
+
|
|
3324
|
+
/* Override all possible hljs token classes for inline code */
|
|
3325
|
+
:not(pre) > code .hljs-keyword,
|
|
3326
|
+
:not(pre) > code .hljs-selector-tag,
|
|
3327
|
+
:not(pre) > code .hljs-literal,
|
|
3328
|
+
:not(pre) > code .hljs-strong,
|
|
3329
|
+
:not(pre) > code .hljs-name,
|
|
3330
|
+
:not(pre) > code .hljs-variable,
|
|
3331
|
+
:not(pre) > code .hljs-number,
|
|
3332
|
+
:not(pre) > code .hljs-string,
|
|
3333
|
+
:not(pre) > code .hljs-comment,
|
|
3334
|
+
:not(pre) > code .hljs-type,
|
|
3335
|
+
:not(pre) > code .hljs-built_in,
|
|
3336
|
+
:not(pre) > code .hljs-builtin-name,
|
|
3337
|
+
:not(pre) > code .hljs-meta,
|
|
3338
|
+
:not(pre) > code .hljs-tag,
|
|
3339
|
+
:not(pre) > code .hljs-title,
|
|
3340
|
+
:not(pre) > code .hljs-attr,
|
|
3341
|
+
:not(pre) > code .hljs-attribute,
|
|
3342
|
+
:not(pre) > code .hljs-addition,
|
|
3343
|
+
:not(pre) > code .hljs-deletion,
|
|
3344
|
+
:not(pre) > code .hljs-link,
|
|
3345
|
+
:not(pre) > code .hljs-doctag,
|
|
3346
|
+
:not(pre) > code .hljs-formula,
|
|
3347
|
+
:not(pre) > code .hljs-section,
|
|
3348
|
+
:not(pre) > code .hljs-selector-class,
|
|
3349
|
+
:not(pre) > code .hljs-selector-attr,
|
|
3350
|
+
:not(pre) > code .hljs-selector-pseudo,
|
|
3351
|
+
:not(pre) > code .hljs-symbol,
|
|
3352
|
+
:not(pre) > code .hljs-bullet,
|
|
3353
|
+
:not(pre) > code .hljs-selector-id,
|
|
3354
|
+
:not(pre) > code .hljs-emphasis,
|
|
3355
|
+
:not(pre) > code .hljs-quote,
|
|
3356
|
+
:not(pre) > code .hljs-template-variable,
|
|
3357
|
+
:not(pre) > code .hljs-regexp,
|
|
3358
|
+
:not(pre) > code .hljs-subst {
|
|
3359
|
+
color: var(--text-color) !important;
|
|
3360
|
+
background: transparent !important;
|
|
3267
3361
|
background-color: transparent !important;
|
|
3362
|
+
font-weight: inherit !important;
|
|
3363
|
+
font-style: inherit !important;
|
|
3364
|
+
text-decoration: none !important;
|
|
3268
3365
|
}
|
|
3269
3366
|
`;
|
|
3270
3367
|
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;CA4S5D,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"}
|