raydit-editor 0.0.6 → 0.0.8

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.css ADDED
@@ -0,0 +1,276 @@
1
+ @charset "UTF-8";
2
+
3
+ /* src/index.scss */
4
+ .ProseMirror {
5
+ outline: none;
6
+ min-height: 300px;
7
+ line-height: 1.6;
8
+ font-size: 16px;
9
+ }
10
+ .ProseMirror p {
11
+ margin: 0.4rem 0;
12
+ }
13
+ .ProseMirror h1 {
14
+ font-size: 1.875rem;
15
+ font-weight: 700;
16
+ margin: 1.2rem 0 0.6rem;
17
+ }
18
+ .ProseMirror h2 {
19
+ font-size: 1.5rem;
20
+ font-weight: 600;
21
+ margin: 1rem 0 0.5rem;
22
+ }
23
+ .ProseMirror h3 {
24
+ font-size: 1.25rem;
25
+ font-weight: 600;
26
+ margin: 0.8rem 0 0.4rem;
27
+ }
28
+ .ProseMirror ul {
29
+ list-style-type: disc;
30
+ padding-left: 1.5rem;
31
+ }
32
+ .ProseMirror ol {
33
+ list-style-type: decimal;
34
+ padding-left: 1.5rem;
35
+ }
36
+ .ProseMirror li {
37
+ margin: 0.25rem 0;
38
+ }
39
+ .ProseMirror ul[data-type=taskList] {
40
+ list-style: none;
41
+ padding-left: 0;
42
+ }
43
+ .ProseMirror li[data-type=taskItem] {
44
+ display: flex;
45
+ align-items: flex-start;
46
+ }
47
+ .ProseMirror li[data-type=taskItem] > label {
48
+ margin-right: 0.5rem;
49
+ }
50
+ .ProseMirror blockquote {
51
+ border-left: 4px solid #e5e7eb;
52
+ padding-left: 1rem;
53
+ color: #4b5563;
54
+ margin: 0.75rem 0;
55
+ }
56
+ .ProseMirror code {
57
+ background-color: #f3f4f6;
58
+ padding: 0.15rem 0.3rem;
59
+ border-radius: 4px;
60
+ font-size: 0.875rem;
61
+ }
62
+ .ProseMirror pre {
63
+ background: #0f172a;
64
+ color: #e5e7eb;
65
+ padding: 1rem;
66
+ border-radius: 8px;
67
+ overflow-x: auto;
68
+ margin: 0.75rem 0;
69
+ }
70
+ .ProseMirror pre code {
71
+ background: none;
72
+ padding: 0;
73
+ color: inherit;
74
+ }
75
+ .ProseMirror table {
76
+ border-collapse: collapse;
77
+ width: 100%;
78
+ table-layout: fixed;
79
+ margin: 0.75rem 0;
80
+ }
81
+ .ProseMirror th,
82
+ .ProseMirror td {
83
+ border: 1px solid #e5e7eb;
84
+ padding: 0.5rem;
85
+ vertical-align: top;
86
+ }
87
+ .ProseMirror th {
88
+ background-color: #f9fafb;
89
+ font-weight: 600;
90
+ }
91
+ .ProseMirror td p,
92
+ .ProseMirror th p {
93
+ margin: 0;
94
+ }
95
+ .ProseMirror .column-resize-handle {
96
+ position: absolute;
97
+ right: -2px;
98
+ top: 0;
99
+ bottom: 0;
100
+ width: 4px;
101
+ background-color: #3b82f6;
102
+ pointer-events: none;
103
+ }
104
+ .ProseMirror.resize-cursor {
105
+ cursor: col-resize;
106
+ }
107
+ .ProseMirror hr {
108
+ border: none;
109
+ border-top: 1px solid #e5e7eb;
110
+ margin: 1.5rem 0;
111
+ }
112
+ .mention {
113
+ background-color: #eef2ff;
114
+ color: #4338ca;
115
+ padding: 0.1rem 0.4rem;
116
+ border-radius: 0.375rem;
117
+ font-weight: 500;
118
+ }
119
+ .ProseMirror a {
120
+ color: #2563eb;
121
+ text-decoration: underline;
122
+ }
123
+ .ProseMirror img {
124
+ max-width: 100%;
125
+ border-radius: 8px;
126
+ margin: 0.75rem 0;
127
+ }
128
+ .ProseMirror ::selection {
129
+ background: #c7d2fe;
130
+ }
131
+ .ProseMirror table {
132
+ border-collapse: collapse;
133
+ width: 100%;
134
+ table-layout: fixed;
135
+ margin: 1rem 0;
136
+ }
137
+ .ProseMirror th,
138
+ .ProseMirror td {
139
+ border: 1px solid #e5e7eb;
140
+ padding: 8px;
141
+ vertical-align: top;
142
+ position: relative;
143
+ }
144
+ .ProseMirror th {
145
+ background-color: #f9fafb;
146
+ font-weight: 600;
147
+ }
148
+ .ProseMirror .selectedCell {
149
+ background: rgba(59, 130, 246, 0.08);
150
+ }
151
+ .ProseMirror .column-resize-handle {
152
+ position: absolute;
153
+ right: -2px;
154
+ top: 0;
155
+ bottom: 0;
156
+ width: 4px;
157
+ background-color: #3b82f6;
158
+ pointer-events: none;
159
+ }
160
+ .ProseMirror table p {
161
+ margin: 0;
162
+ }
163
+ .table-menu button {
164
+ padding: 4px 8px;
165
+ border-radius: 4px;
166
+ font-size: 12px;
167
+ }
168
+ .table-menu button:hover {
169
+ background: #f3f4f6;
170
+ }
171
+ .ProseMirror ol {
172
+ list-style-type: decimal;
173
+ padding-left: 1.5rem;
174
+ }
175
+ .ProseMirror ol ol {
176
+ list-style-type: lower-alpha;
177
+ }
178
+ .ProseMirror ol ol ol {
179
+ list-style-type: lower-roman;
180
+ }
181
+ .ProseMirror ol ol ol ol {
182
+ list-style-type: decimal;
183
+ }
184
+ .ProseMirror li {
185
+ margin: 0.25rem 0;
186
+ }
187
+ .ProseMirror li > ol,
188
+ .ProseMirror li > ul {
189
+ margin-top: 0.25rem;
190
+ }
191
+ .ProseMirror p {
192
+ position: relative;
193
+ }
194
+ .ProseMirror p.is-empty::before {
195
+ content: attr(data-placeholder);
196
+ color: #9ca3af;
197
+ pointer-events: none;
198
+ position: absolute;
199
+ left: 0;
200
+ top: 0;
201
+ font-style: italic;
202
+ }
203
+ .ProseMirror:not(.ProseMirror-focused) p.is-empty::before {
204
+ content: "";
205
+ }
206
+ .mention {
207
+ color: #2563eb;
208
+ background-color: #e0e7ff;
209
+ padding: 2px 6px;
210
+ border-radius: 6px;
211
+ font-weight: 500;
212
+ }
213
+ .mention {
214
+ color: #2563eb;
215
+ cursor: pointer;
216
+ border-radius: 4px;
217
+ padding: 0 2px;
218
+ }
219
+ .mention:hover {
220
+ background: #eff6ff;
221
+ }
222
+ .tiptap p.is-empty::before,
223
+ .tiptap h1.is-empty::before,
224
+ .tiptap h2.is-empty::before,
225
+ .tiptap h3.is-empty::before {
226
+ content: attr(data-placeholder);
227
+ float: left;
228
+ color: #9ca3af;
229
+ pointer-events: none;
230
+ height: 0;
231
+ }
232
+ .tiptap h1 {
233
+ border-left: 3px solid transparent;
234
+ padding-left: 8px;
235
+ }
236
+ .tiptap h1.is-active {
237
+ border-left-color: #6366f1;
238
+ }
239
+ .tiptap .is-empty::before {
240
+ content: attr(data-placeholder);
241
+ color: #9ca3af;
242
+ float: left;
243
+ pointer-events: none;
244
+ height: 0;
245
+ }
246
+ .tiptap li.is-empty::before {
247
+ position: absolute;
248
+ }
249
+ ul[data-type=taskList] {
250
+ list-style: none;
251
+ padding-left: 0;
252
+ }
253
+ ul[data-type=taskList] li {
254
+ display: flex;
255
+ align-items: flex-start;
256
+ gap: 0.5rem;
257
+ }
258
+ ul[data-type=taskList] li > label {
259
+ flex-shrink: 0;
260
+ margin-top: 0.55rem;
261
+ user-select: none;
262
+ }
263
+ ul[data-type=taskList] li > label input[type=checkbox] {
264
+ cursor: pointer;
265
+ width: 1rem;
266
+ height: 1rem;
267
+ }
268
+ ul[data-type=taskList] li > div {
269
+ flex: 1;
270
+ }
271
+ ul[data-type=taskList] {
272
+ }
273
+ ul[data-type=taskList] ul[data-type=taskList] {
274
+ margin: 0.5rem 0 0 1.5rem;
275
+ }
276
+ /*# sourceMappingURL=index.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.scss"],"sourcesContent":["/* ===============================\r\n CORE EDITOR\r\n================================ */\r\n\r\n.ProseMirror {\r\n outline: none;\r\n min-height: 300px;\r\n line-height: 1.6;\r\n font-size: 16px;\r\n}\r\n\r\n/* Paragraph spacing */\r\n.ProseMirror p {\r\n margin: 0.4rem 0;\r\n}\r\n\r\n/* ===============================\r\n HEADINGS\r\n================================ */\r\n\r\n.ProseMirror h1 {\r\n font-size: 1.875rem;\r\n font-weight: 700;\r\n margin: 1.2rem 0 0.6rem;\r\n}\r\n\r\n.ProseMirror h2 {\r\n font-size: 1.5rem;\r\n font-weight: 600;\r\n margin: 1rem 0 0.5rem;\r\n}\r\n\r\n.ProseMirror h3 {\r\n font-size: 1.25rem;\r\n font-weight: 600;\r\n margin: 0.8rem 0 0.4rem;\r\n}\r\n\r\n/* ===============================\r\n LISTS\r\n================================ */\r\n\r\n.ProseMirror ul {\r\n list-style-type: disc;\r\n padding-left: 1.5rem;\r\n}\r\n\r\n.ProseMirror ol {\r\n list-style-type: decimal;\r\n padding-left: 1.5rem;\r\n}\r\n\r\n.ProseMirror li {\r\n margin: 0.25rem 0;\r\n}\r\n\r\n/* Task lists (checkbox) */\r\n.ProseMirror ul[data-type='taskList'] {\r\n list-style: none;\r\n padding-left: 0;\r\n}\r\n\r\n.ProseMirror li[data-type='taskItem'] {\r\n display: flex;\r\n align-items: flex-start;\r\n}\r\n\r\n.ProseMirror li[data-type='taskItem'] > label {\r\n margin-right: 0.5rem;\r\n}\r\n\r\n/* ===============================\r\n BLOCKQUOTE\r\n================================ */\r\n\r\n.ProseMirror blockquote {\r\n border-left: 4px solid #e5e7eb;\r\n padding-left: 1rem;\r\n color: #4b5563;\r\n margin: 0.75rem 0;\r\n}\r\n\r\n/* ===============================\r\n CODE\r\n================================ */\r\n\r\n.ProseMirror code {\r\n background-color: #f3f4f6;\r\n padding: 0.15rem 0.3rem;\r\n border-radius: 4px;\r\n font-size: 0.875rem;\r\n}\r\n\r\n/* Code block */\r\n.ProseMirror pre {\r\n background: #0f172a;\r\n color: #e5e7eb;\r\n padding: 1rem;\r\n border-radius: 8px;\r\n overflow-x: auto;\r\n margin: 0.75rem 0;\r\n}\r\n\r\n.ProseMirror pre code {\r\n background: none;\r\n padding: 0;\r\n color: inherit;\r\n}\r\n\r\n/* ===============================\r\n TABLES (CRITICAL)\r\n================================ */\r\n\r\n.ProseMirror table {\r\n border-collapse: collapse;\r\n width: 100%;\r\n table-layout: fixed;\r\n margin: 0.75rem 0;\r\n}\r\n\r\n.ProseMirror th,\r\n.ProseMirror td {\r\n border: 1px solid #e5e7eb;\r\n padding: 0.5rem;\r\n vertical-align: top;\r\n}\r\n\r\n.ProseMirror th {\r\n background-color: #f9fafb;\r\n font-weight: 600;\r\n}\r\n\r\n.ProseMirror td p,\r\n.ProseMirror th p {\r\n margin: 0;\r\n}\r\n\r\n/* Column resize */\r\n.ProseMirror .column-resize-handle {\r\n position: absolute;\r\n right: -2px;\r\n top: 0;\r\n bottom: 0;\r\n width: 4px;\r\n background-color: #3b82f6;\r\n pointer-events: none;\r\n}\r\n\r\n.ProseMirror.resize-cursor {\r\n cursor: col-resize;\r\n}\r\n\r\n/* ===============================\r\n HORIZONTAL RULE\r\n================================ */\r\n\r\n.ProseMirror hr {\r\n border: none;\r\n border-top: 1px solid #e5e7eb;\r\n margin: 1.5rem 0;\r\n}\r\n\r\n/* ===============================\r\n MENTIONS\r\n================================ */\r\n\r\n.mention {\r\n background-color: #eef2ff;\r\n color: #4338ca;\r\n padding: 0.1rem 0.4rem;\r\n border-radius: 0.375rem;\r\n font-weight: 500;\r\n}\r\n\r\n/* ===============================\r\n LINKS\r\n================================ */\r\n\r\n.ProseMirror a {\r\n color: #2563eb;\r\n text-decoration: underline;\r\n}\r\n\r\n/* ===============================\r\n IMAGES (if you add later)\r\n================================ */\r\n\r\n.ProseMirror img {\r\n max-width: 100%;\r\n border-radius: 8px;\r\n margin: 0.75rem 0;\r\n}\r\n\r\n/* ===============================\r\n SELECTION / CURSOR\r\n================================ */\r\n\r\n.ProseMirror ::selection {\r\n background: #c7d2fe;\r\n}\r\n\r\n/* ===== TABLE BASE ===== */\r\n.ProseMirror table {\r\n border-collapse: collapse;\r\n width: 100%;\r\n table-layout: fixed;\r\n margin: 1rem 0;\r\n}\r\n\r\n.ProseMirror th,\r\n.ProseMirror td {\r\n border: 1px solid #e5e7eb;\r\n padding: 8px;\r\n vertical-align: top;\r\n position: relative;\r\n}\r\n\r\n.ProseMirror th {\r\n background-color: #f9fafb;\r\n font-weight: 600;\r\n}\r\n\r\n/* ===== SELECTION ===== */\r\n.ProseMirror .selectedCell {\r\n background: rgba(59, 130, 246, 0.08);\r\n}\r\n\r\n/* ===== RESIZE HANDLE ===== */\r\n.ProseMirror .column-resize-handle {\r\n position: absolute;\r\n right: -2px;\r\n top: 0;\r\n bottom: 0;\r\n width: 4px;\r\n background-color: #3b82f6;\r\n pointer-events: none;\r\n}\r\n\r\n/* ===== TABLE WRAPPER ===== */\r\n.ProseMirror table p {\r\n margin: 0;\r\n}\r\n.table-menu button {\r\n padding: 4px 8px;\r\n border-radius: 4px;\r\n font-size: 12px;\r\n}\r\n\r\n.table-menu button:hover {\r\n background: #f3f4f6;\r\n}\r\n/* Ordered list nesting — Notion style */\r\n\r\n.ProseMirror ol {\r\n list-style-type: decimal;\r\n padding-left: 1.5rem;\r\n}\r\n\r\n.ProseMirror ol ol {\r\n list-style-type: lower-alpha;\r\n}\r\n\r\n.ProseMirror ol ol ol {\r\n list-style-type: lower-roman;\r\n}\r\n\r\n.ProseMirror ol ol ol ol {\r\n list-style-type: decimal;\r\n}\r\n.ProseMirror li {\r\n margin: 0.25rem 0;\r\n}\r\n\r\n.ProseMirror li > ol,\r\n.ProseMirror li > ul {\r\n margin-top: 0.25rem;\r\n}\r\n/* Show placeholder only on the focused empty paragraph */\r\n.ProseMirror p {\r\n position: relative;\r\n}\r\n\r\n.ProseMirror p.is-empty::before {\r\n content: attr(data-placeholder);\r\n color: #9ca3af;\r\n pointer-events: none;\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n font-style: italic;\r\n}\r\n\r\n/* Hide placeholder when editor is not focused */\r\n.ProseMirror:not(.ProseMirror-focused) p.is-empty::before {\r\n content: '';\r\n}\r\n\r\n.mention {\r\n color: #2563eb;\r\n background-color: #e0e7ff;\r\n padding: 2px 6px;\r\n border-radius: 6px;\r\n font-weight: 500;\r\n}\r\n.mention {\r\n color: #2563eb;\r\n cursor: pointer;\r\n border-radius: 4px;\r\n padding: 0 2px;\r\n}\r\n\r\n.mention:hover {\r\n background: #eff6ff;\r\n}\r\n.tiptap p.is-empty::before,\r\n.tiptap h1.is-empty::before,\r\n.tiptap h2.is-empty::before,\r\n.tiptap h3.is-empty::before {\r\n content: attr(data-placeholder);\r\n float: left;\r\n color: #9ca3af; /* subtle gray */\r\n pointer-events: none;\r\n height: 0;\r\n}\r\n.tiptap h1 {\r\n border-left: 3px solid transparent;\r\n padding-left: 8px;\r\n}\r\n\r\n.tiptap h1.is-active {\r\n border-left-color: #6366f1;\r\n}\r\n.tiptap .is-empty::before {\r\n content: attr(data-placeholder);\r\n color: #9ca3af;\r\n float: left;\r\n pointer-events: none;\r\n height: 0;\r\n}\r\n\r\n/* Fix for lists */\r\n.tiptap li.is-empty::before {\r\n position: absolute;\r\n}\r\n\r\n\r\n/* Task List Styles */\r\nul[data-type=\"taskList\"] {\r\n list-style: none;\r\n padding-left: 0;\r\n \r\n li {\r\n display: flex;\r\n align-items: flex-start;\r\n gap: 0.5rem;\r\n \r\n > label {\r\n flex-shrink: 0;\r\n margin-top: 0.55rem;\r\n user-select: none;\r\n \r\n input[type=\"checkbox\"] {\r\n cursor: pointer;\r\n width: 1rem;\r\n height: 1rem;\r\n }\r\n }\r\n \r\n > div {\r\n flex: 1;\r\n }\r\n }\r\n \r\n /* Nested task lists */\r\n ul[data-type=\"taskList\"] {\r\n margin: 0.5rem 0 0 1.5rem;\r\n }\r\n}\r\n\r\n// Task list styles\r\n// ul[data-type=\"taskList\"] {\r\n// // list-style: none;\r\n// // padding: 0;\r\n\r\n// // li {\r\n// // display: flex;\r\n// // align-items: flex-start;\r\n\r\n// // > label {\r\n// // flex: 0 0 auto;\r\n// // margin-right: 0.5rem;\r\n// // user-select: none;\r\n// // }\r\n\r\n// // > div {\r\n// // flex: 1 1 auto;\r\n// // }\r\n// // }\r\n\r\n// // Strike through completed tasks\r\n// li[data-checked=\"true\"] > div {\r\n// text-decoration: line-through;\r\n// color: #9ca3af; // gray-400\r\n// }\r\n// }"],"mappings":"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","names":[]}