@smartspace/chat-ui 1.13.1-pr.243.6b4d4ce
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 +264 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.ts +1286 -0
- package/dist/index.js +51343 -0
- package/dist/index.js.map +1 -0
- package/dist/test/index.d.ts +2 -0
- package/dist/test/index.js +3 -0
- package/dist/test/index.js.map +1 -0
- package/package.json +68 -0
package/dist/index.css
ADDED
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
/* src/shared/markdown/styles.css */
|
|
2
|
+
.md-editor {
|
|
3
|
+
position: relative;
|
|
4
|
+
}
|
|
5
|
+
.ss-attach {
|
|
6
|
+
display: inline-flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
vertical-align: middle;
|
|
10
|
+
border-radius: 6px;
|
|
11
|
+
background: color-mix(in srgb, var(--muted), white 80%);
|
|
12
|
+
border: 1px solid var(--border);
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
}
|
|
15
|
+
.ss-attach--image {
|
|
16
|
+
padding: 2px;
|
|
17
|
+
}
|
|
18
|
+
.ss-attach__img {
|
|
19
|
+
display: block;
|
|
20
|
+
-o-object-fit: contain;
|
|
21
|
+
object-fit: contain;
|
|
22
|
+
}
|
|
23
|
+
.md-editor .ProseMirror {
|
|
24
|
+
min-height: var(--md-min-height, 1.6em);
|
|
25
|
+
max-height: var(--md-max-height, none);
|
|
26
|
+
overflow: auto;
|
|
27
|
+
--md-pad-v: 12px;
|
|
28
|
+
--md-pad-h: 14px;
|
|
29
|
+
padding: var(--md-pad-v) var(--md-pad-h);
|
|
30
|
+
border: 1px solid #e3e3e3;
|
|
31
|
+
border-radius: 10px;
|
|
32
|
+
line-height: 1.6;
|
|
33
|
+
outline: none;
|
|
34
|
+
}
|
|
35
|
+
.md-editor .ProseMirror:focus {
|
|
36
|
+
border-color: #b9d6ff;
|
|
37
|
+
box-shadow: 0 0 0 3px rgba(70, 128, 255, 0.15);
|
|
38
|
+
}
|
|
39
|
+
.md-editor.md-editor--readonly .ProseMirror {
|
|
40
|
+
border: none;
|
|
41
|
+
padding: 0;
|
|
42
|
+
box-shadow: none;
|
|
43
|
+
}
|
|
44
|
+
.md-editor.md-editor--bare .ProseMirror {
|
|
45
|
+
border: none;
|
|
46
|
+
padding: 0;
|
|
47
|
+
box-shadow: none;
|
|
48
|
+
--md-pad-v: 0px;
|
|
49
|
+
--md-pad-h: 0px;
|
|
50
|
+
}
|
|
51
|
+
.md-editor .ProseMirror a {
|
|
52
|
+
color: #2563eb;
|
|
53
|
+
text-decoration: underline;
|
|
54
|
+
cursor: pointer;
|
|
55
|
+
}
|
|
56
|
+
.ss-markdown .ss-attach__img[data-error] {
|
|
57
|
+
background: rgba(220, 38, 38, 0.08);
|
|
58
|
+
}
|
|
59
|
+
.file-tag {
|
|
60
|
+
display: inline-block;
|
|
61
|
+
padding: 0 6px;
|
|
62
|
+
border-radius: 6px;
|
|
63
|
+
border: 1px solid #a7b7e9;
|
|
64
|
+
background: #eef2ff;
|
|
65
|
+
font-size: 0.9em;
|
|
66
|
+
color: #2b3a8a;
|
|
67
|
+
-webkit-user-select: text;
|
|
68
|
+
-moz-user-select: text;
|
|
69
|
+
user-select: text;
|
|
70
|
+
white-space: nowrap;
|
|
71
|
+
}
|
|
72
|
+
.md-editor__ghost {
|
|
73
|
+
position: absolute;
|
|
74
|
+
top: var(--md-pad-v);
|
|
75
|
+
left: var(--md-pad-h);
|
|
76
|
+
right: var(--md-pad-h);
|
|
77
|
+
color: #9aa2af;
|
|
78
|
+
pointer-events: none;
|
|
79
|
+
-webkit-user-select: none;
|
|
80
|
+
-moz-user-select: none;
|
|
81
|
+
user-select: none;
|
|
82
|
+
white-space: nowrap;
|
|
83
|
+
overflow: hidden;
|
|
84
|
+
text-overflow: ellipsis;
|
|
85
|
+
font: inherit;
|
|
86
|
+
line-height: inherit;
|
|
87
|
+
}
|
|
88
|
+
.md-editor .ProseMirror > :first-child {
|
|
89
|
+
margin-top: 0;
|
|
90
|
+
}
|
|
91
|
+
.mention {
|
|
92
|
+
background: #f0f9ff;
|
|
93
|
+
border: 1px solid #bae6fd;
|
|
94
|
+
border-radius: 6px;
|
|
95
|
+
padding: 0 6px;
|
|
96
|
+
color: #0369a1;
|
|
97
|
+
}
|
|
98
|
+
.md-editor .ss-code-block,
|
|
99
|
+
.ss-markdown .ss-code-block {
|
|
100
|
+
border: 1px solid var(--border, #e5e7eb);
|
|
101
|
+
border-radius: 8px;
|
|
102
|
+
background: #0b1020;
|
|
103
|
+
color: #e6edf3;
|
|
104
|
+
margin: 0.75em 0;
|
|
105
|
+
overflow: hidden;
|
|
106
|
+
}
|
|
107
|
+
.md-editor .ss-code-block__header,
|
|
108
|
+
.ss-markdown .ss-code-block__header {
|
|
109
|
+
display: flex;
|
|
110
|
+
align-items: center;
|
|
111
|
+
justify-content: space-between;
|
|
112
|
+
padding: 6px 10px;
|
|
113
|
+
background: rgba(255, 255, 255, 0.06);
|
|
114
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
115
|
+
font-size: 12px;
|
|
116
|
+
line-height: 1;
|
|
117
|
+
}
|
|
118
|
+
.md-editor .ss-code-block__lang,
|
|
119
|
+
.ss-markdown .ss-code-block__lang {
|
|
120
|
+
text-transform: uppercase;
|
|
121
|
+
letter-spacing: 0.04em;
|
|
122
|
+
color: #9ba3af;
|
|
123
|
+
font-family:
|
|
124
|
+
ui-monospace,
|
|
125
|
+
SFMono-Regular,
|
|
126
|
+
Menlo,
|
|
127
|
+
Consolas,
|
|
128
|
+
monospace;
|
|
129
|
+
}
|
|
130
|
+
.md-editor .ss-code-block__actions,
|
|
131
|
+
.ss-markdown .ss-code-block__actions {
|
|
132
|
+
display: flex;
|
|
133
|
+
align-items: center;
|
|
134
|
+
gap: 6px;
|
|
135
|
+
}
|
|
136
|
+
.md-editor .ss-code-block__toggle,
|
|
137
|
+
.md-editor .ss-code-block__copy,
|
|
138
|
+
.ss-markdown .ss-code-block__toggle,
|
|
139
|
+
.ss-markdown .ss-code-block__copy {
|
|
140
|
+
-webkit-appearance: none;
|
|
141
|
+
-moz-appearance: none;
|
|
142
|
+
appearance: none;
|
|
143
|
+
background: rgba(255, 255, 255, 0.1);
|
|
144
|
+
color: #e6edf3;
|
|
145
|
+
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
146
|
+
border-radius: 6px;
|
|
147
|
+
padding: 4px 10px;
|
|
148
|
+
font-size: 12px;
|
|
149
|
+
cursor: pointer;
|
|
150
|
+
font-family: inherit;
|
|
151
|
+
line-height: 1;
|
|
152
|
+
}
|
|
153
|
+
.md-editor .ss-code-block__toggle:hover,
|
|
154
|
+
.md-editor .ss-code-block__copy:hover,
|
|
155
|
+
.ss-markdown .ss-code-block__toggle:hover,
|
|
156
|
+
.ss-markdown .ss-code-block__copy:hover {
|
|
157
|
+
background: rgba(255, 255, 255, 0.18);
|
|
158
|
+
}
|
|
159
|
+
.md-editor .ss-code-block pre,
|
|
160
|
+
.ss-markdown .ss-code-block pre {
|
|
161
|
+
margin: 0;
|
|
162
|
+
padding: 12px 14px;
|
|
163
|
+
background: transparent;
|
|
164
|
+
color: inherit;
|
|
165
|
+
overflow-x: auto;
|
|
166
|
+
font-family:
|
|
167
|
+
ui-monospace,
|
|
168
|
+
SFMono-Regular,
|
|
169
|
+
Menlo,
|
|
170
|
+
Consolas,
|
|
171
|
+
monospace;
|
|
172
|
+
font-size: 13px;
|
|
173
|
+
line-height: 1.5;
|
|
174
|
+
white-space: pre;
|
|
175
|
+
}
|
|
176
|
+
.md-editor .ss-code-block pre code,
|
|
177
|
+
.ss-markdown .ss-code-block pre code {
|
|
178
|
+
background: transparent;
|
|
179
|
+
color: inherit;
|
|
180
|
+
padding: 0;
|
|
181
|
+
font: inherit;
|
|
182
|
+
}
|
|
183
|
+
.md-editor .ss-code-block__iframe,
|
|
184
|
+
.ss-markdown .ss-code-block__iframe {
|
|
185
|
+
display: block;
|
|
186
|
+
width: 100%;
|
|
187
|
+
height: 500px;
|
|
188
|
+
border: 0;
|
|
189
|
+
background: #ffffff;
|
|
190
|
+
vertical-align: top;
|
|
191
|
+
}
|
|
192
|
+
.ss-markdown :not(pre) > code {
|
|
193
|
+
background: rgba(135, 131, 120, 0.15);
|
|
194
|
+
color: #c7254e;
|
|
195
|
+
padding: 1px 5px;
|
|
196
|
+
border-radius: 4px;
|
|
197
|
+
font-family:
|
|
198
|
+
ui-monospace,
|
|
199
|
+
SFMono-Regular,
|
|
200
|
+
Menlo,
|
|
201
|
+
Consolas,
|
|
202
|
+
monospace;
|
|
203
|
+
font-size: 0.9em;
|
|
204
|
+
}
|
|
205
|
+
.ss-markdown a {
|
|
206
|
+
color: #2563eb;
|
|
207
|
+
text-decoration: underline;
|
|
208
|
+
}
|
|
209
|
+
.ss-markdown details {
|
|
210
|
+
margin: 0.75em 0;
|
|
211
|
+
}
|
|
212
|
+
.ss-markdown summary {
|
|
213
|
+
cursor: pointer;
|
|
214
|
+
font-weight: 600;
|
|
215
|
+
}
|
|
216
|
+
.md-editor .ProseMirror :not(pre) > code {
|
|
217
|
+
background: rgba(135, 131, 120, 0.15);
|
|
218
|
+
color: #c7254e;
|
|
219
|
+
padding: 1px 5px;
|
|
220
|
+
border-radius: 4px;
|
|
221
|
+
font-family:
|
|
222
|
+
ui-monospace,
|
|
223
|
+
SFMono-Regular,
|
|
224
|
+
Menlo,
|
|
225
|
+
Consolas,
|
|
226
|
+
monospace;
|
|
227
|
+
font-size: 0.9em;
|
|
228
|
+
}
|
|
229
|
+
.md-mention-menu {
|
|
230
|
+
background: hsl(var(--background, 0 0% 100%));
|
|
231
|
+
color: var(--foreground, #111);
|
|
232
|
+
border: 1px solid var(--border, #e5e7eb);
|
|
233
|
+
border-radius: 8px;
|
|
234
|
+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
|
|
235
|
+
min-width: 220px;
|
|
236
|
+
max-width: 320px;
|
|
237
|
+
overflow: hidden;
|
|
238
|
+
z-index: 1000;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/* src/chat-variables/VariablesForm.css */
|
|
242
|
+
.jsonforms-compact .ss-jsonforms-grid {
|
|
243
|
+
display: flex;
|
|
244
|
+
flex-wrap: wrap;
|
|
245
|
+
gap: 12px;
|
|
246
|
+
align-items: flex-start;
|
|
247
|
+
}
|
|
248
|
+
.jsonforms-compact .ss-jsonforms-cell {
|
|
249
|
+
flex: 0 0 auto;
|
|
250
|
+
min-width: 0;
|
|
251
|
+
}
|
|
252
|
+
.jsonforms-compact .ss-jsonforms-textarea {
|
|
253
|
+
flex: 1 1 100%;
|
|
254
|
+
}
|
|
255
|
+
.jsonforms-compact .compact-field {
|
|
256
|
+
width: 280px;
|
|
257
|
+
max-width: 100%;
|
|
258
|
+
}
|
|
259
|
+
@media (max-width: 480px) {
|
|
260
|
+
.jsonforms-compact .compact-field {
|
|
261
|
+
width: 100%;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
/*# sourceMappingURL=index.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/shared/markdown/styles.css","../src/chat-variables/VariablesForm.css"],"sourcesContent":["/* Base editor container */\n.md-editor {\n position: relative;\n}\n\n.ss-attach {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n vertical-align: middle;\n border-radius: 6px;\n background: color-mix(in srgb, var(--muted), white 80%);\n border: 1px solid var(--border);\n overflow: hidden;\n}\n\n.ss-attach--image {\n padding: 2px;\n}\n\n.ss-attach__img {\n display: block;\n -o-object-fit: contain;\n object-fit: contain;\n}\n\n.md-editor .ProseMirror {\n /* Height controls via CSS variables set on the root element */\n min-height: var(--md-min-height, 1.6em);\n max-height: var(--md-max-height, none);\n overflow: auto; /* will only scroll when max-height is exceeded */\n /* Expose padding as variables for consistent placeholder alignment */\n --md-pad-v: 12px;\n --md-pad-h: 14px;\n padding: var(--md-pad-v) var(--md-pad-h);\n border: 1px solid #e3e3e3;\n border-radius: 10px;\n line-height: 1.6;\n outline: none;\n}\n\n/* Focus ring */\n.md-editor .ProseMirror:focus {\n border-color: #b9d6ff;\n box-shadow: 0 0 0 3px rgba(70, 128, 255, 0.15);\n}\n\n/* Readonly appearance: remove border and padding to blend into bubbles */\n.md-editor.md-editor--readonly .ProseMirror {\n border: none;\n padding: 0;\n box-shadow: none;\n}\n\n/* Bare composer appearance (no border or padding regardless of editable) */\n.md-editor.md-editor--bare .ProseMirror {\n border: none;\n padding: 0;\n box-shadow: none;\n /* Ensure placeholder aligns to the start of content when bare */\n --md-pad-v: 0px;\n --md-pad-h: 0px;\n}\n\n/* Links (autolinked bare URLs and markdown-syntax links) */\n.md-editor .ProseMirror a {\n color: #2563eb;\n text-decoration: underline;\n cursor: pointer;\n}\n\n/* Read-only: error state for ss-file image attachments. The SsImage renderer\n sets `data-error` when the file resolver hook rejects. */\n.ss-markdown .ss-attach__img[data-error] {\n background: rgba(220, 38, 38, 0.08);\n}\n\n/* Custom inline file-tag */\n.file-tag {\n display: inline-block;\n padding: 0 6px;\n border-radius: 6px;\n border: 1px solid #a7b7e9;\n background: #eef2ff;\n font-size: 0.9em;\n color: #2b3a8a;\n -webkit-user-select: text;\n -moz-user-select: text;\n user-select: text; /* allow selection across it */\n white-space: nowrap;\n}\n\n/* Ghost placeholder for empty editable state */\n.md-editor__ghost {\n position: absolute;\n top: var(--md-pad-v); /* align with ProseMirror padding */\n left: var(--md-pad-h); /* align with ProseMirror padding */\n right: var(--md-pad-h);\n color: #9aa2af;\n pointer-events: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n font: inherit;\n line-height: inherit;\n}\n\n/* Normalize top margin so caret height is consistent when empty */\n.md-editor .ProseMirror > :first-child {\n margin-top: 0;\n}\n\n/* Mention (placeholder) – tweak as desired */\n.mention {\n background: #f0f9ff;\n border: 1px solid #bae6fd;\n border-radius: 6px;\n padding: 0 6px;\n color: #0369a1;\n}\n\n/* Code block wrapper — shared by the Milkdown editor node view\n (`.md-editor` scope) and the react-markdown read-only renderer\n (`.ss-markdown` scope). Keep selectors in sync. */\n.md-editor .ss-code-block,\n.ss-markdown .ss-code-block {\n border: 1px solid var(--border, #e5e7eb);\n border-radius: 8px;\n background: #0b1020;\n color: #e6edf3;\n margin: 0.75em 0;\n overflow: hidden;\n}\n\n.md-editor .ss-code-block__header,\n.ss-markdown .ss-code-block__header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 6px 10px;\n background: rgba(255, 255, 255, 0.06);\n border-bottom: 1px solid rgba(255, 255, 255, 0.08);\n font-size: 12px;\n line-height: 1;\n}\n\n.md-editor .ss-code-block__lang,\n.ss-markdown .ss-code-block__lang {\n text-transform: uppercase;\n letter-spacing: 0.04em;\n color: #9ba3af;\n font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;\n}\n\n.md-editor .ss-code-block__actions,\n.ss-markdown .ss-code-block__actions {\n display: flex;\n align-items: center;\n gap: 6px;\n}\n\n.md-editor .ss-code-block__toggle,\n.md-editor .ss-code-block__copy,\n.ss-markdown .ss-code-block__toggle,\n.ss-markdown .ss-code-block__copy {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n background: rgba(255, 255, 255, 0.1);\n color: #e6edf3;\n border: 1px solid rgba(255, 255, 255, 0.15);\n border-radius: 6px;\n padding: 4px 10px;\n font-size: 12px;\n cursor: pointer;\n font-family: inherit;\n line-height: 1;\n}\n\n.md-editor .ss-code-block__toggle:hover,\n.md-editor .ss-code-block__copy:hover,\n.ss-markdown .ss-code-block__toggle:hover,\n.ss-markdown .ss-code-block__copy:hover {\n background: rgba(255, 255, 255, 0.18);\n}\n\n.md-editor .ss-code-block pre,\n.ss-markdown .ss-code-block pre {\n margin: 0;\n padding: 12px 14px;\n background: transparent;\n color: inherit;\n overflow-x: auto;\n font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;\n font-size: 13px;\n line-height: 1.5;\n white-space: pre;\n}\n\n.md-editor .ss-code-block pre code,\n.ss-markdown .ss-code-block pre code {\n background: transparent;\n color: inherit;\n padding: 0;\n font: inherit;\n}\n\n.md-editor .ss-code-block__iframe,\n.ss-markdown .ss-code-block__iframe {\n display: block;\n width: 100%;\n /* Initial height before the height reporter postMessages in the real size\n (capped in JS by MAX_IFRAME_HEIGHT). */\n height: 500px;\n border: 0;\n background: #ffffff;\n /* Kill the baseline gap under replaced elements (iframe is inline by\n default), which otherwise adds ~4px of empty space below the preview. */\n vertical-align: top;\n}\n\n/* Inline code in read-only messages — matches the Milkdown editor's\n inline code treatment. */\n.ss-markdown :not(pre) > code {\n background: rgba(135, 131, 120, 0.15);\n color: #c7254e;\n padding: 1px 5px;\n border-radius: 4px;\n font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;\n font-size: 0.9em;\n}\n\n/* Read-only: anchors should feel clickable. */\n.ss-markdown a {\n color: #2563eb;\n text-decoration: underline;\n}\n\n/* Read-only: give <details>/<summary> sensible defaults. Most browser UAs\n already render the triangle, but we tidy spacing. */\n.ss-markdown details {\n margin: 0.75em 0;\n}\n\n.ss-markdown summary {\n cursor: pointer;\n font-weight: 600;\n}\n\n/* Inline code */\n.md-editor .ProseMirror :not(pre) > code {\n background: rgba(135, 131, 120, 0.15);\n color: #c7254e;\n padding: 1px 5px;\n border-radius: 4px;\n font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;\n font-size: 0.9em;\n}\n\n/* Mentions popup */\n.md-mention-menu {\n background: hsl(var(--background, 0 0% 100%));\n color: var(--foreground, #111);\n border: 1px solid var(--border, #e5e7eb);\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);\n min-width: 220px;\n max-width: 320px;\n overflow: hidden;\n z-index: 1000;\n}\n","/* Horizontal wrap layout for variables (no forced stretching) */\n.jsonforms-compact .ss-jsonforms-grid {\n display: flex;\n flex-wrap: wrap;\n gap: 12px;\n align-items: flex-start;\n}\n\n/* Each variable is its own flex item */\n.jsonforms-compact .ss-jsonforms-cell {\n flex: 0 0 auto;\n min-width: 0;\n}\n\n/* Let long/tall fields take a full row when present */\n.jsonforms-compact .ss-jsonforms-textarea {\n flex: 1 1 100%;\n}\n\n/* Keep compact fields at a comfortable fixed width */\n.jsonforms-compact .compact-field {\n width: 280px;\n max-width: 100%;\n}\n\n/* On very small screens, let it shrink gracefully */\n@media (max-width: 480px) {\n .jsonforms-compact .compact-field {\n width: 100%; /* full width on phones */\n }\n}\n"],"mappings":"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","names":[]}
|