@jvs-milkdown/theme-nord 1.0.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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020-present Mirone
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @jvs-milkdown/theme-nord
2
+
3
+ THe nord theme of [milkdown](https://milkdown.dev/).
4
+
5
+ # Official Documentation
6
+
7
+ Documentation can be found on the [Milkdown website](https://milkdown.dev/).
8
+
9
+ # License
10
+
11
+ Milkdown is open sourced software licensed under [MIT license](https://github.com/Milkdown/milkdown/blob/main/LICENSE).
package/lib/index.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ import type { Ctx } from '@jvs-milkdown/ctx';
2
+ import './style.css';
3
+ export declare function nord(ctx: Ctx): void;
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAA;AAK5C,OAAO,aAAa,CAAA;AAEpB,wBAAgB,IAAI,CAAC,GAAG,EAAE,GAAG,GAAG,IAAI,CAqBnC"}
package/lib/index.js ADDED
@@ -0,0 +1,22 @@
1
+ import { editorViewOptionsCtx } from "@jvs-milkdown/core";
2
+ import clsx from "clsx";
3
+ //#region src/index.ts
4
+ function nord(ctx) {
5
+ ctx.update(editorViewOptionsCtx, (prev) => {
6
+ const prevClass = prev.attributes;
7
+ return {
8
+ ...prev,
9
+ attributes: (state) => {
10
+ const attrs = typeof prevClass === "function" ? prevClass(state) : prevClass;
11
+ return {
12
+ ...attrs,
13
+ class: clsx("prose dark:prose-invert", attrs?.class || "", "milkdown-theme-nord")
14
+ };
15
+ }
16
+ };
17
+ });
18
+ }
19
+ //#endregion
20
+ export { nord };
21
+
22
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":[],"sources":["../src/index.ts"],"sourcesContent":["import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewOptionsCtx } from '@jvs-milkdown/core'\nimport clsx from 'clsx'\n\nimport './style.css'\n\nexport function nord(ctx: Ctx): void {\n ctx.update(editorViewOptionsCtx, (prev) => {\n const prevClass = prev.attributes\n\n return {\n ...prev,\n attributes: (state) => {\n const attrs =\n typeof prevClass === 'function' ? prevClass(state) : prevClass\n\n return {\n ...attrs,\n class: clsx(\n 'prose dark:prose-invert',\n attrs?.class || '',\n 'milkdown-theme-nord'\n ),\n }\n },\n }\n })\n}\n"],"mappings":";;;AAOA,SAAgB,KAAK,KAAgB;AACnC,KAAI,OAAO,uBAAuB,SAAS;EACzC,MAAM,YAAY,KAAK;AAEvB,SAAO;GACL,GAAG;GACH,aAAa,UAAU;IACrB,MAAM,QACJ,OAAO,cAAc,aAAa,UAAU,MAAM,GAAG;AAEvD,WAAO;KACL,GAAG;KACH,OAAO,KACL,2BACA,OAAO,SAAS,IAChB,sBACD;KACF;;GAEJ;GACD"}
package/lib/style.css ADDED
@@ -0,0 +1,830 @@
1
+ /*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
2
+ @layer properties {
3
+ @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
4
+ *, :before, :after, ::backdrop {
5
+ --tw-rotate-x: initial;
6
+ --tw-rotate-y: initial;
7
+ --tw-rotate-z: initial;
8
+ --tw-skew-x: initial;
9
+ --tw-skew-y: initial;
10
+ --tw-border-style: solid;
11
+ --tw-font-weight: initial;
12
+ --tw-shadow: 0 0 #0000;
13
+ --tw-shadow-color: initial;
14
+ --tw-shadow-alpha: 100%;
15
+ --tw-inset-shadow: 0 0 #0000;
16
+ --tw-inset-shadow-color: initial;
17
+ --tw-inset-shadow-alpha: 100%;
18
+ --tw-ring-color: initial;
19
+ --tw-ring-shadow: 0 0 #0000;
20
+ --tw-inset-ring-color: initial;
21
+ --tw-inset-ring-shadow: 0 0 #0000;
22
+ --tw-ring-inset: initial;
23
+ --tw-ring-offset-width: 0px;
24
+ --tw-ring-offset-color: #fff;
25
+ --tw-ring-offset-shadow: 0 0 #0000;
26
+ --tw-leading: initial;
27
+ --tw-space-y-reverse: 0;
28
+ }
29
+ }
30
+ }
31
+
32
+ @layer theme {
33
+ :root, :host {
34
+ --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
35
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
36
+ --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
37
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
38
+ "Courier New", monospace;
39
+ --color-gray-50: oklch(98.5% .002 247.839);
40
+ --color-gray-100: oklch(96.7% .003 264.542);
41
+ --color-gray-200: oklch(92.8% .006 264.531);
42
+ --color-gray-600: oklch(44.6% .03 256.802);
43
+ --color-gray-700: oklch(37.3% .034 259.733);
44
+ --color-gray-800: oklch(27.8% .033 256.848);
45
+ --color-gray-900: oklch(21% .034 264.665);
46
+ --spacing: .25rem;
47
+ --text-sm: .875rem;
48
+ --text-sm--line-height: calc(1.25 / .875);
49
+ --text-base: 1rem;
50
+ --text-base--line-height: calc(1.5 / 1);
51
+ --text-xl: 1.25rem;
52
+ --text-xl--line-height: calc(1.75 / 1.25);
53
+ --text-2xl: 1.5rem;
54
+ --text-2xl--line-height: calc(2 / 1.5);
55
+ --text-3xl: 1.875rem;
56
+ --text-3xl--line-height: calc(2.25 / 1.875);
57
+ --font-weight-normal: 400;
58
+ --font-weight-medium: 500;
59
+ --font-weight-semibold: 600;
60
+ --font-weight-bold: 700;
61
+ --leading-tight: 1.25;
62
+ --leading-relaxed: 1.625;
63
+ --radius-lg: .5rem;
64
+ --default-font-family: var(--font-sans);
65
+ --default-mono-font-family: var(--font-mono);
66
+ --color-nord8: #88c0d0;
67
+ --color-nord10: #5e81ac;
68
+ }
69
+ }
70
+
71
+ @layer base {
72
+ *, :after, :before, ::backdrop {
73
+ box-sizing: border-box;
74
+ border: 0 solid;
75
+ margin: 0;
76
+ padding: 0;
77
+ }
78
+
79
+ ::file-selector-button {
80
+ box-sizing: border-box;
81
+ border: 0 solid;
82
+ margin: 0;
83
+ padding: 0;
84
+ }
85
+
86
+ html, :host {
87
+ -webkit-text-size-adjust: 100%;
88
+ tab-size: 4;
89
+ line-height: 1.5;
90
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
91
+ font-feature-settings: var(--default-font-feature-settings, normal);
92
+ font-variation-settings: var(--default-font-variation-settings, normal);
93
+ -webkit-tap-highlight-color: transparent;
94
+ }
95
+
96
+ hr {
97
+ height: 0;
98
+ color: inherit;
99
+ border-top-width: 1px;
100
+ }
101
+
102
+ abbr:where([title]) {
103
+ -webkit-text-decoration: underline dotted;
104
+ text-decoration: underline dotted;
105
+ }
106
+
107
+ h1, h2, h3, h4, h5, h6 {
108
+ font-size: inherit;
109
+ font-weight: inherit;
110
+ }
111
+
112
+ a {
113
+ color: inherit;
114
+ -webkit-text-decoration: inherit;
115
+ -webkit-text-decoration: inherit;
116
+ -webkit-text-decoration: inherit;
117
+ text-decoration: inherit;
118
+ }
119
+
120
+ b, strong {
121
+ font-weight: bolder;
122
+ }
123
+
124
+ code, kbd, samp, pre {
125
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
126
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
127
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
128
+ font-size: 1em;
129
+ }
130
+
131
+ small {
132
+ font-size: 80%;
133
+ }
134
+
135
+ sub, sup {
136
+ vertical-align: baseline;
137
+ font-size: 75%;
138
+ line-height: 0;
139
+ position: relative;
140
+ }
141
+
142
+ sub {
143
+ bottom: -.25em;
144
+ }
145
+
146
+ sup {
147
+ top: -.5em;
148
+ }
149
+
150
+ table {
151
+ text-indent: 0;
152
+ border-color: inherit;
153
+ border-collapse: collapse;
154
+ }
155
+
156
+ :-moz-focusring {
157
+ outline: auto;
158
+ }
159
+
160
+ progress {
161
+ vertical-align: baseline;
162
+ }
163
+
164
+ summary {
165
+ display: list-item;
166
+ }
167
+
168
+ ol, ul, menu {
169
+ list-style: none;
170
+ }
171
+
172
+ img, svg, video, canvas, audio, iframe, embed, object {
173
+ vertical-align: middle;
174
+ display: block;
175
+ }
176
+
177
+ img, video {
178
+ max-width: 100%;
179
+ height: auto;
180
+ }
181
+
182
+ button, input, select, optgroup, textarea {
183
+ font: inherit;
184
+ font-feature-settings: inherit;
185
+ font-variation-settings: inherit;
186
+ letter-spacing: inherit;
187
+ color: inherit;
188
+ opacity: 1;
189
+ background-color: #0000;
190
+ border-radius: 0;
191
+ }
192
+
193
+ ::file-selector-button {
194
+ font: inherit;
195
+ font-feature-settings: inherit;
196
+ font-variation-settings: inherit;
197
+ letter-spacing: inherit;
198
+ color: inherit;
199
+ opacity: 1;
200
+ background-color: #0000;
201
+ border-radius: 0;
202
+ }
203
+
204
+ :where(select:is([multiple], [size])) optgroup {
205
+ font-weight: bolder;
206
+ }
207
+
208
+ :where(select:is([multiple], [size])) optgroup option {
209
+ padding-inline-start: 20px;
210
+ }
211
+
212
+ ::file-selector-button {
213
+ margin-inline-end: 4px;
214
+ }
215
+
216
+ ::placeholder {
217
+ opacity: 1;
218
+ }
219
+
220
+ @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
221
+ ::placeholder {
222
+ color: currentColor;
223
+ }
224
+
225
+ @supports (color: color-mix(in lab, red, red)) {
226
+ ::placeholder {
227
+ color: color-mix(in oklab, currentcolor 50%, transparent);
228
+ }
229
+ }
230
+ }
231
+
232
+ textarea {
233
+ resize: vertical;
234
+ }
235
+
236
+ ::-webkit-search-decoration {
237
+ -webkit-appearance: none;
238
+ }
239
+
240
+ ::-webkit-date-and-time-value {
241
+ min-height: 1lh;
242
+ text-align: inherit;
243
+ }
244
+
245
+ ::-webkit-datetime-edit {
246
+ display: inline-flex;
247
+ }
248
+
249
+ ::-webkit-datetime-edit-fields-wrapper {
250
+ padding: 0;
251
+ }
252
+
253
+ ::-webkit-datetime-edit {
254
+ padding-block: 0;
255
+ }
256
+
257
+ ::-webkit-datetime-edit-year-field {
258
+ padding-block: 0;
259
+ }
260
+
261
+ ::-webkit-datetime-edit-month-field {
262
+ padding-block: 0;
263
+ }
264
+
265
+ ::-webkit-datetime-edit-day-field {
266
+ padding-block: 0;
267
+ }
268
+
269
+ ::-webkit-datetime-edit-hour-field {
270
+ padding-block: 0;
271
+ }
272
+
273
+ ::-webkit-datetime-edit-minute-field {
274
+ padding-block: 0;
275
+ }
276
+
277
+ ::-webkit-datetime-edit-second-field {
278
+ padding-block: 0;
279
+ }
280
+
281
+ ::-webkit-datetime-edit-millisecond-field {
282
+ padding-block: 0;
283
+ }
284
+
285
+ ::-webkit-datetime-edit-meridiem-field {
286
+ padding-block: 0;
287
+ }
288
+
289
+ ::-webkit-calendar-picker-indicator {
290
+ line-height: 1;
291
+ }
292
+
293
+ :-moz-ui-invalid {
294
+ box-shadow: none;
295
+ }
296
+
297
+ button, input:where([type="button"], [type="reset"], [type="submit"]) {
298
+ appearance: button;
299
+ }
300
+
301
+ ::file-selector-button {
302
+ appearance: button;
303
+ }
304
+
305
+ ::-webkit-inner-spin-button {
306
+ height: auto;
307
+ }
308
+
309
+ ::-webkit-outer-spin-button {
310
+ height: auto;
311
+ }
312
+
313
+ [hidden]:where(:not([hidden="until-found"])) {
314
+ display: none !important;
315
+ }
316
+ }
317
+
318
+ @layer components;
319
+
320
+ @layer utilities {
321
+ .block {
322
+ display: block;
323
+ }
324
+
325
+ .hidden {
326
+ display: none;
327
+ }
328
+
329
+ .inline {
330
+ display: inline;
331
+ }
332
+
333
+ .table {
334
+ display: table;
335
+ }
336
+
337
+ .transform {
338
+ transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
339
+ }
340
+ }
341
+
342
+ .ProseMirror {
343
+ word-wrap: break-word;
344
+ white-space: pre-wrap;
345
+ white-space: break-spaces;
346
+ -webkit-font-variant-ligatures: none;
347
+ font-variant-ligatures: none;
348
+ font-feature-settings: "liga" 0;
349
+ position: relative;
350
+ }
351
+
352
+ .ProseMirror pre {
353
+ white-space: pre-wrap;
354
+ }
355
+
356
+ .ProseMirror li {
357
+ position: relative;
358
+ }
359
+
360
+ .ProseMirror-hideselection ::selection {
361
+ background: none;
362
+ }
363
+
364
+ .ProseMirror-hideselection {
365
+ caret-color: #0000;
366
+ }
367
+
368
+ .ProseMirror [draggable][contenteditable="false"] {
369
+ -webkit-user-select: text;
370
+ user-select: text;
371
+ }
372
+
373
+ .ProseMirror-selectednode {
374
+ outline: 2px solid #8cf;
375
+ }
376
+
377
+ li.ProseMirror-selectednode {
378
+ outline: none;
379
+ }
380
+
381
+ li.ProseMirror-selectednode:after {
382
+ content: "";
383
+ pointer-events: none;
384
+ border: 2px solid #8cf;
385
+ position: absolute;
386
+ inset: -2px -2px -2px -32px;
387
+ }
388
+
389
+ img.ProseMirror-separator {
390
+ border: none !important;
391
+ margin: 0 !important;
392
+ display: inline !important;
393
+ }
394
+
395
+ .ProseMirror .tableWrapper {
396
+ overflow-x: auto;
397
+ }
398
+
399
+ .ProseMirror table {
400
+ border-collapse: collapse;
401
+ table-layout: fixed;
402
+ width: 100%;
403
+ overflow: hidden;
404
+ }
405
+
406
+ .ProseMirror td, .ProseMirror th {
407
+ vertical-align: top;
408
+ box-sizing: border-box;
409
+ position: relative;
410
+ }
411
+
412
+ .ProseMirror td:not([data-colwidth]):not(.column-resize-dragging), .ProseMirror th:not([data-colwidth]):not(.column-resize-dragging) {
413
+ min-width: var(--default-cell-min-width);
414
+ }
415
+
416
+ .ProseMirror .column-resize-handle {
417
+ z-index: 20;
418
+ pointer-events: none;
419
+ background-color: #adf;
420
+ width: 4px;
421
+ position: absolute;
422
+ top: 0;
423
+ bottom: 0;
424
+ right: -2px;
425
+ }
426
+
427
+ .ProseMirror.resize-cursor {
428
+ cursor: ew-resize;
429
+ cursor: col-resize;
430
+ }
431
+
432
+ .ProseMirror .selectedCell:after {
433
+ z-index: 2;
434
+ content: "";
435
+ pointer-events: none;
436
+ background: #c8c8ff66;
437
+ position: absolute;
438
+ inset: 0;
439
+ }
440
+
441
+ .milkdown-theme-nord {
442
+ --tw-outline-style: none;
443
+ outline-style: none;
444
+ }
445
+
446
+ .milkdown-theme-nord blockquote {
447
+ border-left-style: var(--tw-border-style);
448
+ border-left-width: 4px;
449
+ border-color: var(--color-nord10);
450
+ padding-left: calc(var(--spacing) * 4);
451
+ font-family: var(--font-serif);
452
+ font-style: normal;
453
+ }
454
+
455
+ .milkdown-theme-nord code {
456
+ font-family: var(--font-mono);
457
+ --tw-font-weight: var(--font-weight-normal);
458
+ font-weight: var(--font-weight-normal);
459
+ color: var(--color-nord10);
460
+ }
461
+
462
+ .milkdown-theme-nord pre code {
463
+ color: inherit;
464
+ }
465
+
466
+ .milkdown-theme-nord img {
467
+ max-width: 100%;
468
+ display: inline-block;
469
+ margin-block: calc(var(--spacing) * 0) !important;
470
+ }
471
+
472
+ .milkdown-theme-nord.prose :where(blockquote):not(:where([class~="not-prose"] *)) {
473
+ --tw-font-weight: var(--font-weight-normal);
474
+ font-weight: var(--font-weight-normal);
475
+ }
476
+
477
+ .milkdown-theme-nord.prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
478
+ color: var(--color-nord10);
479
+ }
480
+
481
+ .milkdown-theme-nord.prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
482
+ color: var(--color-nord10);
483
+ }
484
+
485
+ .milkdown-theme-nord.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *)):before, .milkdown-theme-nord.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *)):after, .milkdown-theme-nord.prose :where(code):not(:where([class~="not-prose"] *)):before, .milkdown-theme-nord.prose :where(code):not(:where([class~="not-prose"] *)):after {
486
+ content: "";
487
+ }
488
+
489
+ .milkdown-theme-nord.prose .tableWrapper {
490
+ position: relative;
491
+ overflow-x: auto;
492
+ }
493
+
494
+ .milkdown-theme-nord.prose table {
495
+ border-style: var(--tw-border-style);
496
+ font-size: var(--text-sm);
497
+ line-height: var(--tw-leading, var(--text-sm--line-height));
498
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
499
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
500
+ border-width: 1px;
501
+ }
502
+
503
+ @media (min-width: 40rem) {
504
+ .milkdown-theme-nord.prose table {
505
+ border-radius: var(--radius-lg);
506
+ }
507
+ }
508
+
509
+ .milkdown-theme-nord.prose td, .milkdown-theme-nord.prose th {
510
+ padding-inline: calc(var(--spacing) * 6) !important;
511
+ padding-block: calc(var(--spacing) * 3) !important;
512
+ }
513
+
514
+ .milkdown-theme-nord.prose tr {
515
+ border-bottom-style: var(--tw-border-style);
516
+ border-bottom-width: 1px;
517
+ border-color: var(--color-gray-200);
518
+ }
519
+
520
+ @media (prefers-color-scheme: dark) {
521
+ .milkdown-theme-nord.prose tr {
522
+ border-color: var(--color-gray-600);
523
+ }
524
+ }
525
+
526
+ .milkdown-theme-nord.prose :where(td, th) p {
527
+ margin: calc(var(--spacing) * 0) !important;
528
+ }
529
+
530
+ .milkdown-theme-nord.prose :where(td, th):nth-child(odd) {
531
+ background-color: var(--color-gray-50);
532
+ }
533
+
534
+ @media (prefers-color-scheme: dark) {
535
+ .milkdown-theme-nord.prose :where(td, th):nth-child(odd) {
536
+ background-color: var(--color-gray-900);
537
+ }
538
+ }
539
+
540
+ .milkdown-theme-nord.prose.ProseMirror .selectedCell:after {
541
+ background-color: #88c0d04d;
542
+ }
543
+
544
+ @supports (color: color-mix(in lab, red, red)) {
545
+ .milkdown-theme-nord.prose.ProseMirror .selectedCell:after {
546
+ background-color: color-mix(in oklab, var(--color-nord8) 30%, transparent);
547
+ }
548
+ }
549
+
550
+ .milkdown-theme-nord h1 {
551
+ margin-top: calc(var(--spacing) * 6);
552
+ font-size: var(--text-3xl);
553
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
554
+ --tw-leading: var(--leading-tight);
555
+ line-height: var(--leading-tight);
556
+ --tw-font-weight: var(--font-weight-bold);
557
+ font-weight: var(--font-weight-bold);
558
+ }
559
+
560
+ .milkdown-theme-nord h2 {
561
+ margin-top: calc(var(--spacing) * 5);
562
+ font-size: var(--text-2xl);
563
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
564
+ --tw-font-weight: var(--font-weight-semibold);
565
+ font-weight: var(--font-weight-semibold);
566
+ }
567
+
568
+ .milkdown-theme-nord h3 {
569
+ margin-top: calc(var(--spacing) * 4);
570
+ font-size: var(--text-xl);
571
+ line-height: var(--tw-leading, var(--text-xl--line-height));
572
+ --tw-font-weight: var(--font-weight-medium);
573
+ font-weight: var(--font-weight-medium);
574
+ }
575
+
576
+ .milkdown-theme-nord h4 {
577
+ margin-top: calc(var(--spacing) * 3);
578
+ font-size: var(--text-base);
579
+ line-height: var(--tw-leading, var(--text-base--line-height));
580
+ --tw-font-weight: var(--font-weight-medium);
581
+ font-weight: var(--font-weight-medium);
582
+ }
583
+
584
+ .milkdown-theme-nord h5, .milkdown-theme-nord h6 {
585
+ margin-top: calc(var(--spacing) * 2);
586
+ font-size: var(--text-sm);
587
+ line-height: var(--tw-leading, var(--text-sm--line-height));
588
+ --tw-font-weight: var(--font-weight-medium);
589
+ font-weight: var(--font-weight-medium);
590
+ }
591
+
592
+ .milkdown-theme-nord p {
593
+ font-size: var(--text-base);
594
+ line-height: var(--tw-leading, var(--text-base--line-height));
595
+ --tw-leading: var(--leading-relaxed);
596
+ line-height: var(--leading-relaxed);
597
+ }
598
+
599
+ .milkdown-theme-nord a {
600
+ text-decoration-line: underline;
601
+ }
602
+
603
+ .milkdown-theme-nord ul {
604
+ list-style-type: disc;
605
+ list-style-position: outside;
606
+ }
607
+
608
+ :where(.milkdown-theme-nord ul > :not(:last-child)) {
609
+ --tw-space-y-reverse: 0;
610
+ margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
611
+ margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
612
+ }
613
+
614
+ .milkdown-theme-nord ul {
615
+ padding-left: calc(var(--spacing) * 5);
616
+ }
617
+
618
+ .milkdown-theme-nord ol {
619
+ list-style-type: decimal;
620
+ list-style-position: outside;
621
+ }
622
+
623
+ :where(.milkdown-theme-nord ol > :not(:last-child)) {
624
+ --tw-space-y-reverse: 0;
625
+ margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
626
+ margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
627
+ }
628
+
629
+ .milkdown-theme-nord ol {
630
+ padding-left: calc(var(--spacing) * 5);
631
+ }
632
+
633
+ .milkdown-theme-nord li {
634
+ margin-bottom: calc(var(--spacing) * 1);
635
+ }
636
+
637
+ .milkdown-theme-nord pre {
638
+ border-radius: var(--radius-lg);
639
+ background-color: var(--color-gray-100);
640
+ padding: calc(var(--spacing) * 4);
641
+ font-size: var(--text-sm);
642
+ line-height: var(--tw-leading, var(--text-sm--line-height));
643
+ overflow-x: auto;
644
+ }
645
+
646
+ @media (prefers-color-scheme: dark) {
647
+ .milkdown-theme-nord pre {
648
+ background-color: var(--color-gray-800);
649
+ }
650
+ }
651
+
652
+ .milkdown-theme-nord code {
653
+ background-color: var(--color-gray-200);
654
+ padding-inline: calc(var(--spacing) * 1);
655
+ padding-block: calc(var(--spacing) * .5);
656
+ font-size: var(--text-sm);
657
+ line-height: var(--tw-leading, var(--text-sm--line-height));
658
+ border-radius: .25rem;
659
+ }
660
+
661
+ @media (prefers-color-scheme: dark) {
662
+ .milkdown-theme-nord code {
663
+ background-color: var(--color-gray-700);
664
+ }
665
+ }
666
+
667
+ .milkdown-theme-nord pre code {
668
+ background-color: #0000;
669
+ }
670
+
671
+ .milkdown-theme-nord img {
672
+ margin-block: calc(var(--spacing) * 4);
673
+ border-radius: var(--radius-lg);
674
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
675
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
676
+ }
677
+
678
+ .milkdown-theme-nord table {
679
+ border-collapse: collapse;
680
+ border-style: var(--tw-border-style);
681
+ width: 100%;
682
+ font-size: var(--text-sm);
683
+ line-height: var(--tw-leading, var(--text-sm--line-height));
684
+ border-width: 1px;
685
+ }
686
+
687
+ .milkdown-theme-nord th, .milkdown-theme-nord td {
688
+ border-style: var(--tw-border-style);
689
+ padding-inline: calc(var(--spacing) * 3);
690
+ padding-block: calc(var(--spacing) * 2);
691
+ border-width: 1px;
692
+ }
693
+
694
+ .milkdown-theme-nord th {
695
+ --tw-font-weight: var(--font-weight-semibold);
696
+ font-weight: var(--font-weight-semibold);
697
+ }
698
+
699
+ .milkdown-theme-nord hr {
700
+ margin-block: calc(var(--spacing) * 6);
701
+ border-top-style: var(--tw-border-style);
702
+ border-top-width: 1px;
703
+ }
704
+
705
+ @property --tw-rotate-x {
706
+ syntax: "*";
707
+ inherits: false
708
+ }
709
+
710
+ @property --tw-rotate-y {
711
+ syntax: "*";
712
+ inherits: false
713
+ }
714
+
715
+ @property --tw-rotate-z {
716
+ syntax: "*";
717
+ inherits: false
718
+ }
719
+
720
+ @property --tw-skew-x {
721
+ syntax: "*";
722
+ inherits: false
723
+ }
724
+
725
+ @property --tw-skew-y {
726
+ syntax: "*";
727
+ inherits: false
728
+ }
729
+
730
+ @property --tw-border-style {
731
+ syntax: "*";
732
+ inherits: false;
733
+ initial-value: solid;
734
+ }
735
+
736
+ @property --tw-font-weight {
737
+ syntax: "*";
738
+ inherits: false
739
+ }
740
+
741
+ @property --tw-shadow {
742
+ syntax: "*";
743
+ inherits: false;
744
+ initial-value: 0 0 #0000;
745
+ }
746
+
747
+ @property --tw-shadow-color {
748
+ syntax: "*";
749
+ inherits: false
750
+ }
751
+
752
+ @property --tw-shadow-alpha {
753
+ syntax: "<percentage>";
754
+ inherits: false;
755
+ initial-value: 100%;
756
+ }
757
+
758
+ @property --tw-inset-shadow {
759
+ syntax: "*";
760
+ inherits: false;
761
+ initial-value: 0 0 #0000;
762
+ }
763
+
764
+ @property --tw-inset-shadow-color {
765
+ syntax: "*";
766
+ inherits: false
767
+ }
768
+
769
+ @property --tw-inset-shadow-alpha {
770
+ syntax: "<percentage>";
771
+ inherits: false;
772
+ initial-value: 100%;
773
+ }
774
+
775
+ @property --tw-ring-color {
776
+ syntax: "*";
777
+ inherits: false
778
+ }
779
+
780
+ @property --tw-ring-shadow {
781
+ syntax: "*";
782
+ inherits: false;
783
+ initial-value: 0 0 #0000;
784
+ }
785
+
786
+ @property --tw-inset-ring-color {
787
+ syntax: "*";
788
+ inherits: false
789
+ }
790
+
791
+ @property --tw-inset-ring-shadow {
792
+ syntax: "*";
793
+ inherits: false;
794
+ initial-value: 0 0 #0000;
795
+ }
796
+
797
+ @property --tw-ring-inset {
798
+ syntax: "*";
799
+ inherits: false
800
+ }
801
+
802
+ @property --tw-ring-offset-width {
803
+ syntax: "<length>";
804
+ inherits: false;
805
+ initial-value: 0;
806
+ }
807
+
808
+ @property --tw-ring-offset-color {
809
+ syntax: "*";
810
+ inherits: false;
811
+ initial-value: #fff;
812
+ }
813
+
814
+ @property --tw-ring-offset-shadow {
815
+ syntax: "*";
816
+ inherits: false;
817
+ initial-value: 0 0 #0000;
818
+ }
819
+
820
+ @property --tw-leading {
821
+ syntax: "*";
822
+ inherits: false
823
+ }
824
+
825
+ @property --tw-space-y-reverse {
826
+ syntax: "*";
827
+ inherits: false;
828
+ initial-value: 0;
829
+ }
830
+ /*$vite$:1*/
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../ctx/lib/context/slice.d.ts","../../../ctx/lib/context/container.d.ts","../../../ctx/lib/context/index.d.ts","../../../ctx/lib/inspector/meta.d.ts","../../../ctx/lib/timer/timer.d.ts","../../../ctx/lib/timer/clock.d.ts","../../../ctx/lib/timer/index.d.ts","../../../ctx/lib/inspector/inspector.d.ts","../../../ctx/lib/inspector/index.d.ts","../../../ctx/lib/plugin/ctx.d.ts","../../../ctx/lib/plugin/types.d.ts","../../../ctx/lib/plugin/index.d.ts","../../../ctx/lib/index.d.ts","../../../../node_modules/.pnpm/orderedmap@2.1.1/node_modules/orderedmap/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-model@1.25.4/node_modules/prosemirror-model/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-transform@1.11.0/node_modules/prosemirror-transform/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-view@1.41.7/node_modules/prosemirror-view/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-state@1.4.4/node_modules/prosemirror-state/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-inputrules@1.5.1/node_modules/prosemirror-inputrules/dist/index.d.ts","../../../prose/lib/inputrules.d.ts","../../../prose/lib/state.d.ts","../../../prose/lib/view.d.ts","../../../prose/lib/model.d.ts","../../../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../../../../node_modules/.pnpm/@types+mdast@4.0.4/node_modules/@types/mdast/index.d.ts","../../../../node_modules/.pnpm/micromark-util-types@2.0.2/node_modules/micromark-util-types/index.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/lib/types.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.d.ts","../../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.d.ts","../../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.d.ts","../../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.d.ts","../../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.d.ts","../../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.d.ts","../../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/types.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.d.ts","../../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/lib/index.d.ts","../../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/index.d.ts","../../../../node_modules/.pnpm/remark@15.0.1/node_modules/remark/index.d.ts","../../../transformer/lib/utility/stack.d.ts","../../../transformer/lib/utility/index.d.ts","../../../transformer/lib/serializer/stack-element.d.ts","../../../transformer/lib/serializer/state.d.ts","../../../transformer/lib/serializer/types.d.ts","../../../transformer/lib/utility/types.d.ts","../../../transformer/lib/parser/stack-element.d.ts","../../../transformer/lib/parser/state.d.ts","../../../transformer/lib/parser/types.d.ts","../../../transformer/lib/parser/index.d.ts","../../../transformer/lib/serializer/index.d.ts","../../../transformer/lib/index.d.ts","../../../core/lib/internal-plugin/atoms.d.ts","../../../core/lib/internal-plugin/commands.d.ts","../../../core/lib/internal-plugin/config.d.ts","../../../core/lib/internal-plugin/editor-state.d.ts","../../../core/lib/internal-plugin/editor-view.d.ts","../../../core/lib/internal-plugin/init.d.ts","../../../core/lib/internal-plugin/parser.d.ts","../../../core/lib/internal-plugin/schema.d.ts","../../../core/lib/internal-plugin/serializer.d.ts","../../../core/lib/internal-plugin/keymap.d.ts","../../../core/lib/internal-plugin/paste-rule.d.ts","../../../core/lib/internal-plugin/index.d.ts","../../../core/lib/editor/editor.d.ts","../../../core/lib/editor/index.d.ts","../../../core/lib/index.d.ts","../../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/clsx.d.mts","../src/index.ts","../src/shim.d.ts"],"fileIdsList":[[82],[84,85,86,87],[83,84,85,87],[83,84,87],[99,100,120],[83,121],[83],[101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119],[82,83],[73,76],[72],[73,74,75],[73],[73,74,76],[83,84,87,96,97,98,123],[83,87,91,96,98,123],[83,96,98,121,122,123],[83,91,96,98,121,123],[83,96,98,123],[93],[91,95],[82,91,92,94,96,98,123],[88],[89,90],[82,89,91],[71,148],[149],[148,150],[71,78,79,80,123,136,150],[71,79],[71],[71,79,81,136],[71,80],[137,138,139,140,141,142,143,144,145,146,147],[71,150],[71,136],[71,80,81],[71,81,136],[59],[59,60],[60],[61,65,67,70],[62,66],[61,62,65],[61,65,67,71],[68,69],[67,68],[63],[63,64],[64],[71,151,152,154],[77],[76],[75],[126,134,135],[132,133],[81,126],[81,126,131,133],[81,130,132],[128,129],[126,136],[81,126,127,129],[81,128],[125,130],[81,96,98,123,124,129,133]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},"73cc073d7a102374d6b9bcdbde8072f3aa3c8f86767f562086b6a7a7df5f22c0","e66deb230968faf1a8f37ea6f217f319dd0dad7a39ead1bf5d4f54e2eb5ce4bd","13ee17bbdd42459d6450899cea1999aab64c723328e773c0be5e8a13b51b6259","f79062b892847b4e33d0b730bf9dcf66ac24fc3fe9df7bba4d0997c6bdf6cbde","20f3a5481b2c009533e9e6b864cbd4ae3c09ccfca0577918b3587cda295e7071","2797c77cc0da0836a37c8c1fe64942a999c73f811f5481d827ac7d8cb9ddedd3","5a40849c3a5d5a8c2aa754fc964830ea344c94bfeddd4b442bdeae899e2f5339","848836f528d4ac80a5b3212c719225a3ba09406d44fea755cb642299a68d7056","fae981646738728f2b882c14625b99c23c430400a21c081dc6888d9703bd6c68","45c8a077eb724bae4e1fc0d15f76618650e32e55c4582dc1f27153ecdeb66ca6","302c082712d8fe41be387cd34af45b163b5314c04ddeefe53b1cb57fe46d3221","0c1a84d7b974db1961c6e9ab71d5257dfa38d99fb6300f22de55750526c9daef","69bc40bb169ea922cab72dc2142f37e75b44095cf1e79ca1b2809164c284de57",{"version":"264f935450101e4b000eb351cf75c9d799ca20a278b260a9e5770303b5f2b6a3","impliedFormat":99},{"version":"f6f171b23ae6db93454343f1b788960f799c8f37043904874a752c0990c6fca6","impliedFormat":99},{"version":"089f9928e7ab1ca2c225e167a80ff1cb5ed0a71c98be7e81f040a51e2cc6bf5e","impliedFormat":99},{"version":"b11acc27c280988d7256bbd8ffe9f1cb5a0e5ed17cddf5335289ee0e81500369","affectsGlobalScope":true,"impliedFormat":99},{"version":"02ab5dbcaa58da1d58c46c7cdfa7f94792c5ccf0fc7c0622ef33755fe415366c","impliedFormat":99},{"version":"2a04530c2579ddcf996e1cf017caaba573e0ebf8a5b9e45d3bc25ba4489fb5a3","impliedFormat":99},"f41d91b2db1112fcc673a6862fe68cadcbdd0a66ed16b47ac74a0a6da8932bb4","e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556","1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2","478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35",{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},{"version":"a5dbd4c9941b614526619bad31047ddd5f504ec4cdad88d6117b549faef34dd3","impliedFormat":99},{"version":"d36518bd617ff673c7d9f372706f241932a43f27673187f2a8472e93c40041c6","impliedFormat":99},{"version":"f8eb2909590ec619643841ead2fc4b4b183fbd859848ef051295d35fef9d8469","impliedFormat":99},{"version":"fe784567dd721417e2c4c7c1d7306f4b8611a4f232f5b7ce734382cf34b417d2","impliedFormat":99},{"version":"2b37ba54ec067598bf912d56fcb81f6d8ad86a045c757e79440bdef97b52fe1b","impliedFormat":99},{"version":"1bc9dd465634109668661f998485a32da369755d9f32b5a55ed64a525566c94b","impliedFormat":99},{"version":"5702b3c2f5d248290ed99419d77ca1cc3e6c29db5847172377659c50e6303768","impliedFormat":99},{"version":"9764b2eb5b4fc0b8951468fb3dbd6cd922d7752343ef5fbf1a7cd3dfcd54a75e","impliedFormat":99},{"version":"1fc2d3fe8f31c52c802c4dee6c0157c5a1d1f6be44ece83c49174e316cf931ad","impliedFormat":99},{"version":"dc4aae103a0c812121d9db1f7a5ea98231801ed405bf577d1c9c46a893177e36","impliedFormat":99},{"version":"106d3f40907ba68d2ad8ce143a68358bad476e1cc4a5c710c11c7dbaac878308","impliedFormat":99},{"version":"42ad582d92b058b88570d5be95393cf0a6c09a29ba9aa44609465b41d39d2534","impliedFormat":99},{"version":"36e051a1e0d2f2a808dbb164d846be09b5d98e8b782b37922a3b75f57ee66698","impliedFormat":99},{"version":"4f7e6730a707b0d4971d96de3b562819ce304af770723707a58a578dd55a5e52","impliedFormat":99},{"version":"d1c1213e9176398b4d1d9aa543691181fd5ae23ae5415e80ede41f1ec1ccf72a","impliedFormat":99},{"version":"45d1e8fb4fd3e265b15f5a77866a8e21870eae4c69c473c33289a4b971e93704","impliedFormat":99},{"version":"cd40919f70c875ca07ecc5431cc740e366c008bcbe08ba14b8c78353fb4680df","impliedFormat":99},{"version":"ddfd9196f1f83997873bbe958ce99123f11b062f8309fc09d9c9667b2c284391","impliedFormat":99},{"version":"2999ba314a310f6a333199848166d008d088c6e36d090cbdcc69db67d8ae3154","impliedFormat":99},{"version":"62c1e573cd595d3204dfc02b96eba623020b181d2aa3ce6a33e030bc83bebb41","impliedFormat":99},{"version":"ca1616999d6ded0160fea978088a57df492b6c3f8c457a5879837a7e68d69033","impliedFormat":99},{"version":"835e3d95251bbc48918bb874768c13b8986b87ea60471ad8eceb6e38ddd8845e","impliedFormat":99},{"version":"de54e18f04dbcc892a4b4241b9e4c233cfce9be02ac5f43a631bbc25f479cd84","impliedFormat":99},{"version":"453fb9934e71eb8b52347e581b36c01d7751121a75a5cd1a96e3237e3fd9fc7e","impliedFormat":99},{"version":"bc1a1d0eba489e3eb5c2a4aa8cd986c700692b07a76a60b73a3c31e52c7ef983","impliedFormat":99},{"version":"4098e612efd242b5e203c5c0b9afbf7473209905ab2830598be5c7b3942643d0","impliedFormat":99},{"version":"28410cfb9a798bd7d0327fbf0afd4c4038799b1d6a3f86116dc972e31156b6d2","impliedFormat":99},{"version":"514ae9be6724e2164eb38f2a903ef56cf1d0e6ddb62d0d40f155f32d1317c116","impliedFormat":99},{"version":"970e5e94a9071fd5b5c41e2710c0ef7d73e7f7732911681592669e3f7bd06308","impliedFormat":99},{"version":"491fb8b0e0aef777cec1339cb8f5a1a599ed4973ee22a2f02812dd0f48bd78c1","impliedFormat":99},{"version":"6acf0b3018881977d2cfe4382ac3e3db7e103904c4b634be908f1ade06eb302d","impliedFormat":99},{"version":"2dbb2e03b4b7f6524ad5683e7b5aa2e6aef9c83cab1678afd8467fde6d5a3a92","impliedFormat":99},{"version":"135b12824cd5e495ea0a8f7e29aba52e1adb4581bb1e279fb179304ba60c0a44","impliedFormat":99},{"version":"e4c784392051f4bbb80304d3a909da18c98bc58b093456a09b3e3a1b7b10937f","impliedFormat":99},{"version":"2e87c3480512f057f2e7f44f6498b7e3677196e84e0884618fc9e8b6d6228bed","impliedFormat":99},{"version":"66984309d771b6b085e3369227077da237b40e798570f0a2ddbfea383db39812","impliedFormat":99},{"version":"e41be8943835ad083a4f8a558bd2a89b7fe39619ed99f1880187c75e231d033e","impliedFormat":99},{"version":"260558fff7344e4985cfc78472ae58cbc2487e406d23c1ddaf4d484618ce4cfd","impliedFormat":99},{"version":"e6274d956641c1cbd5a01a221a85a6671fd85104ed6b530f8d34ad3086804133","impliedFormat":99},{"version":"77516308358982bb05209e8c0ed6f321860e03393587d89f61055941e5bbcdd2","impliedFormat":99},{"version":"dc8652855a95ef9b9c12be8d2f5e6fc37b96aa2144f6c6f195cd1d2e07f721ee","impliedFormat":99},"e2cb25ca55e10ba874410188a53331a6b0b2bc13c0ee4d538bde50460a4e1b77","041afde4e1ac27e6fabdc2ca87882a3a766443fcfe1a1cfc3ed78bcc1c25b28a","c2049793874bbeafd60402bab915f3d285f4057e718dfdefe8a54ccc80c991dd","8a2b6f999a708119f4fa55fc58c5803ca9563340d0a54b9fe2a4fa14838f148c","2db5b1bbf946e20cef3c889cb7be46e3da384bdd1b4b53964253d97635718774","79e620484ae1a7011482631159563e4729f7f4d4c316b914125cb95f678ffbb9","6434c2976daf446cfd95935af4e0a0b6b369ce81af183579dab3ac6567dbbfd0","f50c1778b48a9275078ad81abaa5b4cb13a295b3889986f8e72fe61dd9cd8b86","6e935a5aec1b1f86cfa97fb93ec13c8759479712014d7dc4c13f140f7d409357","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","1b92de1f5b74cf4bda283aa7688c80781e9c7273f44a4ef2db084747a94be933","8c24aeb14985e8089f29e1fea075e95a7c8825077277079d5dc4130ceb6339de","ff041f34cc1936cb45f94de1924d396abd69b3d6e0cc887dfaa0b6ec176e27e1","6abd2f68e6651205f5d7763dcf7a5b5e5dc28b6194b097b467913d2cf19c1dd2","c04c352fc277c57e16519814a13e1b84e6c54c461b89ee63c8bff94ddf615555","e406a8398f12e8bb0d7661b9974a9ce78043a916cd2c652f7b82b7889e57f9e8","441c8ea68ff583cefd0f77d2a1699f6328d714ebfb9435ffedad5470392de2e7","cc60d13b9e2058908f082cca058357d2ebd83143b3dc4e3a01731e8a4b7ae2fe","5ca4d7a999b9fa8c7e2ef9746968eaeabb8e69a904cc62a3c18ac23b9664c8a8","bff722032fb479d76cdd167e0aa05e2e3ca9b728cff777e893aa694bad01e3a9","de54e6c6d074b3a521a47b0fbe17732a951a852ef704402daceabcd450134283","ad43cfeea2ffc4f26107e49ae92bed3fe01b0c2aa3e328e293d7b0dceb01300f","50e52950b1b92455f40c3fba61ee9a43e74bf9bdf6a25e01ad2e3a2226bbb2ec","cd2e2d6ffad8a1de80249fd4aa35f6c6f9160c18f69fbaf6507072eba208abda","3b8dd8f967501f6193f2d31f8a124e05186264f37f1b73d073cf39c6e123fe50","bc699cb86e1528d370a29ae99fe8f89e3a838bb620ad4071a4c9999a390c8361",{"version":"c57b441e0c0a9cbdfa7d850dae1f8a387d6f81cbffbc3cd0465d530084c2417d","impliedFormat":99},{"version":"b64cd74c580b593447476f6acb35f0e513ea13d3137b8d170ae3609c10a5de1d","signature":"660619c7218dee08ff559607421753d9aa3307b9ecbbc1cb776386cafd9b0762"},"ccfc86914e457fcf4348a14cb5d58aaf76bbd50ba136a3246df2e6de493037bb"],"root":[153,154],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":99,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"tsBuildInfoFile":"./tsconfig.tsbuildinfo","useUnknownInCatchVariables":true,"verbatimModuleSyntax":true},"referencedMap":[[83,1],[87,2],[86,3],[85,4],[121,5],[101,6],[102,6],[103,6],[104,6],[105,6],[106,6],[107,7],[109,6],[108,6],[120,8],[110,6],[112,6],[111,6],[114,6],[113,6],[115,6],[116,6],[117,6],[118,6],[119,6],[100,6],[99,9],[77,10],[73,11],[76,12],[74,13],[75,14],[98,15],[97,16],[123,17],[122,18],[124,19],[94,20],[96,21],[95,22],[89,23],[88,1],[91,24],[90,25],[149,26],[150,27],[151,28],[137,29],[138,30],[139,31],[140,32],[141,33],[148,34],[142,35],[146,30],[143,36],[147,37],[144,38],[145,36],[60,39],[61,40],[59,41],[71,42],[67,43],[66,44],[68,45],[70,46],[69,47],[64,48],[65,49],[63,50],[153,51],[78,52],[81,13],[79,53],[80,54],[136,55],[134,56],[131,57],[132,58],[133,59],[135,60],[127,61],[128,62],[129,63],[126,64],[130,65]],"latestChangedDtsFile":"./index.d.ts","version":"6.0.2"}
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@jvs-milkdown/theme-nord",
3
+ "version": "1.0.0",
4
+ "license": "MIT",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/Milkdown/milkdown.git",
8
+ "directory": "packages/plugins/utils"
9
+ },
10
+ "files": [
11
+ "lib",
12
+ "src"
13
+ ],
14
+ "type": "module",
15
+ "sideEffects": false,
16
+ "main": "./lib/index.js",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./lib/index.d.ts",
20
+ "import": "./lib/index.js"
21
+ },
22
+ "./style.css": "./lib/style.css"
23
+ },
24
+ "dependencies": {
25
+ "clsx": "^2.0.0",
26
+ "@jvs-milkdown/core": "1.0.0",
27
+ "@jvs-milkdown/ctx": "1.0.0",
28
+ "@jvs-milkdown/prose": "1.0.0"
29
+ },
30
+ "scripts": {
31
+ "build": "vite build"
32
+ },
33
+ "types": "./lib/index.d.ts"
34
+ }
package/src/index.ts ADDED
@@ -0,0 +1,29 @@
1
+ import type { Ctx } from '@jvs-milkdown/ctx'
2
+
3
+ import { editorViewOptionsCtx } from '@jvs-milkdown/core'
4
+ import clsx from 'clsx'
5
+
6
+ import './style.css'
7
+
8
+ export function nord(ctx: Ctx): void {
9
+ ctx.update(editorViewOptionsCtx, (prev) => {
10
+ const prevClass = prev.attributes
11
+
12
+ return {
13
+ ...prev,
14
+ attributes: (state) => {
15
+ const attrs =
16
+ typeof prevClass === 'function' ? prevClass(state) : prevClass
17
+
18
+ return {
19
+ ...attrs,
20
+ class: clsx(
21
+ 'prose dark:prose-invert',
22
+ attrs?.class || '',
23
+ 'milkdown-theme-nord'
24
+ ),
25
+ }
26
+ },
27
+ }
28
+ })
29
+ }
package/src/shim.d.ts ADDED
@@ -0,0 +1 @@
1
+ declare module '*.css'
package/src/style.css ADDED
@@ -0,0 +1,197 @@
1
+ @import 'tailwindcss';
2
+
3
+ @import '@jvs-milkdown/prose/view/style/prosemirror.css';
4
+ @import '@jvs-milkdown/prose/tables/style/tables.css';
5
+
6
+ @theme {
7
+ --color-nord0: #2e3440;
8
+ --color-nord1: #3b4252;
9
+ --color-nord2: #434c5e;
10
+ --color-nord3: #4c566a;
11
+ --color-nord4: #d8dee9;
12
+ --color-nord5: #e5e9f0;
13
+ --color-nord6: #eceff4;
14
+ --color-nord7: #8fbcbb;
15
+ --color-nord8: #88c0d0;
16
+ --color-nord9: #81a1c1;
17
+ --color-nord10: #5e81ac;
18
+ --color-nord11: #bf616a;
19
+ --color-nord12: #d08770;
20
+ --color-nord13: #ebcb8b;
21
+ --color-nord14: #a3be8c;
22
+ --color-nord15: #b48ead;
23
+
24
+ /* Tailwind-like Nord color names */
25
+ --color-nord-0: #2e3440;
26
+ --color-nord-1: #3b4252;
27
+ --color-nord-2: #434c5e;
28
+ --color-nord-3: #4c566a;
29
+ --color-nord-4: #d8dee9;
30
+ --color-nord-5: #e5e9f0;
31
+ --color-nord-6: #eceff4;
32
+ --color-nord-7: #8fbcbb;
33
+ --color-nord-8: #88c0d0;
34
+ --color-nord-9: #81a1c1;
35
+ --color-nord-10: #5e81ac;
36
+ --color-nord-11: #bf616a;
37
+ --color-nord-12: #d08770;
38
+ --color-nord-13: #ebcb8b;
39
+ --color-nord-14: #a3be8c;
40
+ --color-nord-15: #b48ead;
41
+ }
42
+
43
+ .milkdown-theme-nord {
44
+ @apply outline-none;
45
+ }
46
+
47
+ .milkdown-theme-nord blockquote {
48
+ @apply not-italic font-serif border-l-4 border-nord10 pl-4;
49
+ }
50
+
51
+ .milkdown-theme-nord code {
52
+ @apply text-nord10 font-mono font-normal;
53
+ }
54
+
55
+ .milkdown-theme-nord pre code {
56
+ @apply text-inherit;
57
+ }
58
+
59
+ .milkdown-theme-nord img {
60
+ @apply max-w-full !my-0 inline-block;
61
+ }
62
+
63
+ .milkdown-theme-nord.prose
64
+ :where(blockquote):not(:where([class~='not-prose'] *)) {
65
+ @apply font-normal;
66
+ }
67
+
68
+ .milkdown-theme-nord.prose
69
+ :where(ol > li):not(:where([class~='not-prose'] *))::marker,
70
+ .milkdown-theme-nord.prose
71
+ :where(ul > li):not(:where([class~='not-prose'] *))::marker {
72
+ @apply text-nord10;
73
+ }
74
+
75
+ .milkdown-theme-nord.prose
76
+ :where(blockquote p:first-of-type):not(
77
+ :where([class~='not-prose'] *)
78
+ )::before,
79
+ .milkdown-theme-nord.prose
80
+ :where(blockquote p:first-of-type):not(
81
+ :where([class~='not-prose'] *)
82
+ )::after {
83
+ content: '';
84
+ }
85
+
86
+ .milkdown-theme-nord.prose
87
+ :where(code):not(:where([class~='not-prose'] *))::before,
88
+ .milkdown-theme-nord.prose
89
+ :where(code):not(:where([class~='not-prose'] *))::after {
90
+ content: '';
91
+ }
92
+
93
+ .milkdown-theme-nord.prose .tableWrapper {
94
+ @apply overflow-x-auto relative;
95
+ }
96
+
97
+ .milkdown-theme-nord.prose table {
98
+ @apply text-sm border shadow-md sm:rounded-lg;
99
+ }
100
+
101
+ .milkdown-theme-nord.prose td,
102
+ .milkdown-theme-nord.prose th {
103
+ @apply !py-3 !px-6;
104
+ }
105
+
106
+ .milkdown-theme-nord.prose tr {
107
+ @apply border-b border-gray-200 dark:border-gray-600;
108
+ }
109
+
110
+ .milkdown-theme-nord.prose :where(td, th) p {
111
+ @apply !m-0;
112
+ }
113
+
114
+ .milkdown-theme-nord.prose :where(td, th):nth-child(odd) {
115
+ @apply bg-gray-50 dark:bg-gray-900;
116
+ }
117
+
118
+ .milkdown-theme-nord.prose.ProseMirror .selectedCell:after {
119
+ @apply bg-nord8/30;
120
+ }
121
+
122
+ .milkdown-theme-nord h1 {
123
+ @apply text-3xl font-bold leading-tight mt-6;
124
+ }
125
+
126
+ .milkdown-theme-nord h2 {
127
+ @apply text-2xl font-semibold mt-5;
128
+ }
129
+
130
+ .milkdown-theme-nord h3 {
131
+ @apply text-xl font-medium mt-4;
132
+ }
133
+
134
+ .milkdown-theme-nord h4 {
135
+ @apply text-base font-medium mt-3;
136
+ }
137
+
138
+ .milkdown-theme-nord h5 {
139
+ @apply text-sm font-medium mt-2;
140
+ }
141
+
142
+ .milkdown-theme-nord h6 {
143
+ @apply text-sm font-medium mt-2;
144
+ }
145
+
146
+ .milkdown-theme-nord p {
147
+ @apply text-base leading-relaxed;
148
+ }
149
+
150
+ .milkdown-theme-nord a {
151
+ @apply underline;
152
+ }
153
+
154
+ .milkdown-theme-nord ul {
155
+ @apply list-outside list-disc space-y-2 pl-5;
156
+ }
157
+
158
+ .milkdown-theme-nord ol {
159
+ @apply list-outside list-decimal space-y-2 pl-5;
160
+ }
161
+
162
+ .milkdown-theme-nord li {
163
+ @apply mb-1;
164
+ }
165
+
166
+ .milkdown-theme-nord pre {
167
+ @apply bg-gray-100 dark:bg-gray-800 text-sm p-4 rounded-lg overflow-x-auto;
168
+ }
169
+
170
+ .milkdown-theme-nord code {
171
+ @apply bg-gray-200 dark:bg-gray-700 px-1 py-0.5 rounded text-sm;
172
+ }
173
+
174
+ .milkdown-theme-nord pre code {
175
+ @apply bg-transparent;
176
+ }
177
+
178
+ .milkdown-theme-nord img {
179
+ @apply rounded-lg shadow-md my-4;
180
+ }
181
+
182
+ .milkdown-theme-nord table {
183
+ @apply w-full border-collapse border text-sm;
184
+ }
185
+
186
+ .milkdown-theme-nord th,
187
+ .milkdown-theme-nord td {
188
+ @apply border px-3 py-2;
189
+ }
190
+
191
+ .milkdown-theme-nord th {
192
+ @apply font-semibold;
193
+ }
194
+
195
+ .milkdown-theme-nord hr {
196
+ @apply border-t my-6;
197
+ }