@mittwald/flow-remote-elements 0.2.0-alpha.749 → 0.2.0-alpha.750
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/js/auto-generated/RemoteCodeBlockElement.mjs +1 -15
- package/dist/js/auto-generated/RemoteCodeBlockElement.mjs.map +1 -1
- package/dist/js/auto-generated/RemoteCodeEditorElement.mjs +324 -0
- package/dist/js/auto-generated/RemoteCodeEditorElement.mjs.map +1 -0
- package/dist/js/index.mjs +1 -0
- package/dist/js/index.mjs.map +1 -1
- package/dist/types/auto-generated/RemoteCodeBlockElement.d.ts +0 -14
- package/dist/types/auto-generated/RemoteCodeBlockElement.d.ts.map +1 -1
- package/dist/types/auto-generated/RemoteCodeEditorElement.d.ts +319 -0
- package/dist/types/auto-generated/RemoteCodeEditorElement.d.ts.map +1 -0
- package/dist/types/auto-generated/index.d.ts +1 -0
- package/dist/types/auto-generated/index.d.ts.map +1 -1
- package/package.json +5 -5
|
@@ -6,25 +6,11 @@ class RemoteCodeBlockElement extends FlowRemoteElement {
|
|
|
6
6
|
}
|
|
7
7
|
static get remoteProperties() {
|
|
8
8
|
return {
|
|
9
|
-
CodeTag: {},
|
|
10
|
-
PreTag: {},
|
|
11
9
|
className: {},
|
|
12
10
|
code: {},
|
|
13
|
-
codeTagProps: {},
|
|
14
|
-
color: {},
|
|
15
11
|
copyable: {},
|
|
16
|
-
customStyle: {},
|
|
17
12
|
language: {},
|
|
18
|
-
|
|
19
|
-
lineNumberStyle: {},
|
|
20
|
-
lineProps: {},
|
|
21
|
-
renderer: {},
|
|
22
|
-
showInlineLineNumbers: {},
|
|
23
|
-
showLineNumbers: {},
|
|
24
|
-
startingLineNumber: {},
|
|
25
|
-
useInlineStyles: {},
|
|
26
|
-
wrapLines: {},
|
|
27
|
-
wrapLongLines: {}
|
|
13
|
+
showLineNumbers: {}
|
|
28
14
|
};
|
|
29
15
|
}
|
|
30
16
|
static get remoteEvents() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RemoteCodeBlockElement.mjs","sources":["../../../src/auto-generated/RemoteCodeBlockElement.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\nimport { FlowRemoteElement } from \"@/lib/FlowRemoteElement\";\nimport type { CodeBlockProps as RemoteCodeBlockElementProps } from \"@mittwald/flow-react-components\";\nexport type { CodeBlockProps as RemoteCodeBlockElementProps } from \"@mittwald/flow-react-components\";\n\nexport class RemoteCodeBlockElement extends FlowRemoteElement<RemoteCodeBlockElementProps> {\n static override get remoteAttributes() {\n return [\"style\"];\n }\n\n static override get remoteProperties() {\n return {\n
|
|
1
|
+
{"version":3,"file":"RemoteCodeBlockElement.mjs","sources":["../../../src/auto-generated/RemoteCodeBlockElement.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\nimport { FlowRemoteElement } from \"@/lib/FlowRemoteElement\";\nimport type { CodeBlockProps as RemoteCodeBlockElementProps } from \"@mittwald/flow-react-components\";\nexport type { CodeBlockProps as RemoteCodeBlockElementProps } from \"@mittwald/flow-react-components\";\n\nexport class RemoteCodeBlockElement extends FlowRemoteElement<RemoteCodeBlockElementProps> {\n static override get remoteAttributes() {\n return [\"style\"];\n }\n\n static override get remoteProperties() {\n return {\n className: {},\n code: {},\n copyable: {},\n language: {},\n showLineNumbers: {},\n };\n }\n\n static override get remoteEvents() {\n return {};\n }\n\n static override get remoteSlots() {\n return [];\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n \"flr-code-block\": InstanceType<typeof RemoteCodeBlockElement>;\n }\n}\n\ncustomElements.define(\"flr-code-block\", RemoteCodeBlockElement);\n"],"names":[],"mappings":";;AAMO,MAAM,+BAA+B,iBAAA,CAA+C;AAAA,EACzF,WAAoB,gBAAA,GAAmB;AACrC,IAAA,OAAO,CAAC,OAAO,CAAA;AAAA,EACjB;AAAA,EAEA,WAAoB,gBAAA,GAAmB;AACrC,IAAA,OAAO;AAAA,MACL,WAAW,EAAC;AAAA,MACZ,MAAM,EAAC;AAAA,MACP,UAAU,EAAC;AAAA,MACX,UAAU,EAAC;AAAA,MACX,iBAAiB;AAAC,KACpB;AAAA,EACF;AAAA,EAEA,WAAoB,YAAA,GAAe;AACjC,IAAA,OAAO,EAAC;AAAA,EACV;AAAA,EAEA,WAAoB,WAAA,GAAc;AAChC,IAAA,OAAO,EAAC;AAAA,EACV;AACF;AAQA,cAAA,CAAe,MAAA,CAAO,kBAAkB,sBAAsB,CAAA;;;;"}
|
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
import { FlowRemoteElement } from '../lib/FlowRemoteElement.mjs';
|
|
2
|
+
|
|
3
|
+
class RemoteCodeEditorElement extends FlowRemoteElement {
|
|
4
|
+
static get remoteAttributes() {
|
|
5
|
+
return ["style"];
|
|
6
|
+
}
|
|
7
|
+
static get remoteProperties() {
|
|
8
|
+
return {
|
|
9
|
+
about: {},
|
|
10
|
+
accessKey: {},
|
|
11
|
+
"aria-activedescendant": {},
|
|
12
|
+
"aria-atomic": {},
|
|
13
|
+
"aria-autocomplete": {},
|
|
14
|
+
"aria-braillelabel": {},
|
|
15
|
+
"aria-brailleroledescription": {},
|
|
16
|
+
"aria-busy": {},
|
|
17
|
+
"aria-checked": {},
|
|
18
|
+
"aria-colcount": {},
|
|
19
|
+
"aria-colindex": {},
|
|
20
|
+
"aria-colindextext": {},
|
|
21
|
+
"aria-colspan": {},
|
|
22
|
+
"aria-controls": {},
|
|
23
|
+
"aria-current": {},
|
|
24
|
+
"aria-describedby": {},
|
|
25
|
+
"aria-description": {},
|
|
26
|
+
"aria-details": {},
|
|
27
|
+
"aria-disabled": {},
|
|
28
|
+
"aria-dropeffect": {},
|
|
29
|
+
"aria-errormessage": {},
|
|
30
|
+
"aria-expanded": {},
|
|
31
|
+
"aria-flowto": {},
|
|
32
|
+
"aria-grabbed": {},
|
|
33
|
+
"aria-haspopup": {},
|
|
34
|
+
"aria-hidden": {},
|
|
35
|
+
"aria-invalid": {},
|
|
36
|
+
"aria-keyshortcuts": {},
|
|
37
|
+
"aria-label": {},
|
|
38
|
+
"aria-labelledby": {},
|
|
39
|
+
"aria-level": {},
|
|
40
|
+
"aria-live": {},
|
|
41
|
+
"aria-modal": {},
|
|
42
|
+
"aria-multiline": {},
|
|
43
|
+
"aria-multiselectable": {},
|
|
44
|
+
"aria-orientation": {},
|
|
45
|
+
"aria-owns": {},
|
|
46
|
+
"aria-placeholder": {},
|
|
47
|
+
"aria-posinset": {},
|
|
48
|
+
"aria-pressed": {},
|
|
49
|
+
"aria-readonly": {},
|
|
50
|
+
"aria-relevant": {},
|
|
51
|
+
"aria-required": {},
|
|
52
|
+
"aria-roledescription": {},
|
|
53
|
+
"aria-rowcount": {},
|
|
54
|
+
"aria-rowindex": {},
|
|
55
|
+
"aria-rowindextext": {},
|
|
56
|
+
"aria-rowspan": {},
|
|
57
|
+
"aria-selected": {},
|
|
58
|
+
"aria-setsize": {},
|
|
59
|
+
"aria-sort": {},
|
|
60
|
+
"aria-valuemax": {},
|
|
61
|
+
"aria-valuemin": {},
|
|
62
|
+
"aria-valuenow": {},
|
|
63
|
+
"aria-valuetext": {},
|
|
64
|
+
autoCapitalize: {},
|
|
65
|
+
autoCorrect: {},
|
|
66
|
+
autoFocus: {},
|
|
67
|
+
autoSave: {},
|
|
68
|
+
className: {},
|
|
69
|
+
color: {},
|
|
70
|
+
content: {},
|
|
71
|
+
contentEditable: {},
|
|
72
|
+
contextMenu: {},
|
|
73
|
+
copyable: {},
|
|
74
|
+
datatype: {},
|
|
75
|
+
defaultChecked: {},
|
|
76
|
+
defaultValue: {},
|
|
77
|
+
dir: {},
|
|
78
|
+
draggable: {},
|
|
79
|
+
editable: {},
|
|
80
|
+
enterKeyHint: {},
|
|
81
|
+
exportparts: {},
|
|
82
|
+
extensions: {},
|
|
83
|
+
height: {},
|
|
84
|
+
hidden: {},
|
|
85
|
+
id: {},
|
|
86
|
+
indentWithTab: {},
|
|
87
|
+
inert: {},
|
|
88
|
+
initialState: {},
|
|
89
|
+
inlist: {},
|
|
90
|
+
inputMode: {},
|
|
91
|
+
is: {},
|
|
92
|
+
isInvalid: {},
|
|
93
|
+
isReadOnly: {},
|
|
94
|
+
isRequired: {},
|
|
95
|
+
itemID: {},
|
|
96
|
+
itemProp: {},
|
|
97
|
+
itemRef: {},
|
|
98
|
+
itemScope: {},
|
|
99
|
+
itemType: {},
|
|
100
|
+
language: {},
|
|
101
|
+
maxHeight: {},
|
|
102
|
+
maxWidth: {},
|
|
103
|
+
minHeight: {},
|
|
104
|
+
minWidth: {},
|
|
105
|
+
nonce: {},
|
|
106
|
+
part: {},
|
|
107
|
+
placeholder: {},
|
|
108
|
+
popover: {},
|
|
109
|
+
popoverTarget: {},
|
|
110
|
+
popoverTargetAction: {},
|
|
111
|
+
prefix: {},
|
|
112
|
+
property: {},
|
|
113
|
+
radioGroup: {},
|
|
114
|
+
rel: {},
|
|
115
|
+
resource: {},
|
|
116
|
+
results: {},
|
|
117
|
+
rev: {},
|
|
118
|
+
role: {},
|
|
119
|
+
root: {},
|
|
120
|
+
security: {},
|
|
121
|
+
selection: {},
|
|
122
|
+
showActiveLineMarker: {},
|
|
123
|
+
showCodeFolding: {},
|
|
124
|
+
showCodeIndentationMakers: {},
|
|
125
|
+
showLineNumbers: {},
|
|
126
|
+
showLinterMarkers: {},
|
|
127
|
+
slot: {},
|
|
128
|
+
spellCheck: {},
|
|
129
|
+
suppressContentEditableWarning: {},
|
|
130
|
+
suppressHydrationWarning: {},
|
|
131
|
+
tabIndex: {},
|
|
132
|
+
title: {},
|
|
133
|
+
translate: {},
|
|
134
|
+
typeof: {},
|
|
135
|
+
unselectable: {},
|
|
136
|
+
validationBehavior: {},
|
|
137
|
+
value: {},
|
|
138
|
+
vocab: {},
|
|
139
|
+
width: {}
|
|
140
|
+
};
|
|
141
|
+
}
|
|
142
|
+
static get remoteEvents() {
|
|
143
|
+
return {
|
|
144
|
+
abort: {},
|
|
145
|
+
abortCapture: {},
|
|
146
|
+
animationEnd: {},
|
|
147
|
+
animationEndCapture: {},
|
|
148
|
+
animationIteration: {},
|
|
149
|
+
animationIterationCapture: {},
|
|
150
|
+
animationStart: {},
|
|
151
|
+
animationStartCapture: {},
|
|
152
|
+
auxClick: {},
|
|
153
|
+
auxClickCapture: {},
|
|
154
|
+
beforeInput: {},
|
|
155
|
+
beforeInputCapture: {},
|
|
156
|
+
beforeToggle: {},
|
|
157
|
+
blur: {},
|
|
158
|
+
blurCapture: {},
|
|
159
|
+
canPlay: {},
|
|
160
|
+
canPlayCapture: {},
|
|
161
|
+
canPlayThrough: {},
|
|
162
|
+
canPlayThroughCapture: {},
|
|
163
|
+
change: {},
|
|
164
|
+
changeCapture: {},
|
|
165
|
+
click: {},
|
|
166
|
+
clickCapture: {},
|
|
167
|
+
compositionEnd: {},
|
|
168
|
+
compositionEndCapture: {},
|
|
169
|
+
compositionStart: {},
|
|
170
|
+
compositionStartCapture: {},
|
|
171
|
+
compositionUpdate: {},
|
|
172
|
+
compositionUpdateCapture: {},
|
|
173
|
+
contextMenu: {},
|
|
174
|
+
contextMenuCapture: {},
|
|
175
|
+
copy: {},
|
|
176
|
+
copyCapture: {},
|
|
177
|
+
createEditor: {},
|
|
178
|
+
cut: {},
|
|
179
|
+
cutCapture: {},
|
|
180
|
+
doubleClick: {},
|
|
181
|
+
doubleClickCapture: {},
|
|
182
|
+
drag: {},
|
|
183
|
+
dragCapture: {},
|
|
184
|
+
dragEnd: {},
|
|
185
|
+
dragEndCapture: {},
|
|
186
|
+
dragEnter: {},
|
|
187
|
+
dragEnterCapture: {},
|
|
188
|
+
dragExit: {},
|
|
189
|
+
dragExitCapture: {},
|
|
190
|
+
dragLeave: {},
|
|
191
|
+
dragLeaveCapture: {},
|
|
192
|
+
dragOver: {},
|
|
193
|
+
dragOverCapture: {},
|
|
194
|
+
dragStart: {},
|
|
195
|
+
dragStartCapture: {},
|
|
196
|
+
drop: {},
|
|
197
|
+
dropCapture: {},
|
|
198
|
+
durationChange: {},
|
|
199
|
+
durationChangeCapture: {},
|
|
200
|
+
emptied: {},
|
|
201
|
+
emptiedCapture: {},
|
|
202
|
+
encrypted: {},
|
|
203
|
+
encryptedCapture: {},
|
|
204
|
+
ended: {},
|
|
205
|
+
endedCapture: {},
|
|
206
|
+
error: {},
|
|
207
|
+
errorCapture: {},
|
|
208
|
+
focus: {},
|
|
209
|
+
focusCapture: {},
|
|
210
|
+
gotPointerCapture: {},
|
|
211
|
+
gotPointerCaptureCapture: {},
|
|
212
|
+
input: {},
|
|
213
|
+
inputCapture: {},
|
|
214
|
+
invalid: {},
|
|
215
|
+
invalidCapture: {},
|
|
216
|
+
keyDown: {},
|
|
217
|
+
keyDownCapture: {},
|
|
218
|
+
keyPress: {},
|
|
219
|
+
keyPressCapture: {},
|
|
220
|
+
keyUp: {},
|
|
221
|
+
keyUpCapture: {},
|
|
222
|
+
load: {},
|
|
223
|
+
loadCapture: {},
|
|
224
|
+
loadStart: {},
|
|
225
|
+
loadStartCapture: {},
|
|
226
|
+
loadedData: {},
|
|
227
|
+
loadedDataCapture: {},
|
|
228
|
+
loadedMetadata: {},
|
|
229
|
+
loadedMetadataCapture: {},
|
|
230
|
+
lostPointerCapture: {},
|
|
231
|
+
lostPointerCaptureCapture: {},
|
|
232
|
+
mouseDown: {},
|
|
233
|
+
mouseDownCapture: {},
|
|
234
|
+
mouseEnter: {},
|
|
235
|
+
mouseLeave: {},
|
|
236
|
+
mouseMove: {},
|
|
237
|
+
mouseMoveCapture: {},
|
|
238
|
+
mouseOut: {},
|
|
239
|
+
mouseOutCapture: {},
|
|
240
|
+
mouseOver: {},
|
|
241
|
+
mouseOverCapture: {},
|
|
242
|
+
mouseUp: {},
|
|
243
|
+
mouseUpCapture: {},
|
|
244
|
+
paste: {},
|
|
245
|
+
pasteCapture: {},
|
|
246
|
+
pause: {},
|
|
247
|
+
pauseCapture: {},
|
|
248
|
+
play: {},
|
|
249
|
+
playCapture: {},
|
|
250
|
+
playing: {},
|
|
251
|
+
playingCapture: {},
|
|
252
|
+
pointerCancel: {},
|
|
253
|
+
pointerCancelCapture: {},
|
|
254
|
+
pointerDown: {},
|
|
255
|
+
pointerDownCapture: {},
|
|
256
|
+
pointerEnter: {},
|
|
257
|
+
pointerLeave: {},
|
|
258
|
+
pointerMove: {},
|
|
259
|
+
pointerMoveCapture: {},
|
|
260
|
+
pointerOut: {},
|
|
261
|
+
pointerOutCapture: {},
|
|
262
|
+
pointerOver: {},
|
|
263
|
+
pointerOverCapture: {},
|
|
264
|
+
pointerUp: {},
|
|
265
|
+
pointerUpCapture: {},
|
|
266
|
+
progress: {},
|
|
267
|
+
progressCapture: {},
|
|
268
|
+
rateChange: {},
|
|
269
|
+
rateChangeCapture: {},
|
|
270
|
+
reset: {},
|
|
271
|
+
resetCapture: {},
|
|
272
|
+
scroll: {},
|
|
273
|
+
scrollCapture: {},
|
|
274
|
+
scrollEnd: {},
|
|
275
|
+
scrollEndCapture: {},
|
|
276
|
+
seeked: {},
|
|
277
|
+
seekedCapture: {},
|
|
278
|
+
seeking: {},
|
|
279
|
+
seekingCapture: {},
|
|
280
|
+
select: {},
|
|
281
|
+
selectCapture: {},
|
|
282
|
+
stalled: {},
|
|
283
|
+
stalledCapture: {},
|
|
284
|
+
statistics: {},
|
|
285
|
+
submit: {},
|
|
286
|
+
submitCapture: {},
|
|
287
|
+
suspend: {},
|
|
288
|
+
suspendCapture: {},
|
|
289
|
+
timeUpdate: {},
|
|
290
|
+
timeUpdateCapture: {},
|
|
291
|
+
toggle: {},
|
|
292
|
+
touchCancel: {},
|
|
293
|
+
touchCancelCapture: {},
|
|
294
|
+
touchEnd: {},
|
|
295
|
+
touchEndCapture: {},
|
|
296
|
+
touchMove: {},
|
|
297
|
+
touchMoveCapture: {},
|
|
298
|
+
touchStart: {},
|
|
299
|
+
touchStartCapture: {},
|
|
300
|
+
transitionCancel: {},
|
|
301
|
+
transitionCancelCapture: {},
|
|
302
|
+
transitionEnd: {},
|
|
303
|
+
transitionEndCapture: {},
|
|
304
|
+
transitionRun: {},
|
|
305
|
+
transitionRunCapture: {},
|
|
306
|
+
transitionStart: {},
|
|
307
|
+
transitionStartCapture: {},
|
|
308
|
+
update: {},
|
|
309
|
+
volumeChange: {},
|
|
310
|
+
volumeChangeCapture: {},
|
|
311
|
+
waiting: {},
|
|
312
|
+
waitingCapture: {},
|
|
313
|
+
wheel: {},
|
|
314
|
+
wheelCapture: {}
|
|
315
|
+
};
|
|
316
|
+
}
|
|
317
|
+
static get remoteSlots() {
|
|
318
|
+
return [];
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
customElements.define("flr-code-editor", RemoteCodeEditorElement);
|
|
322
|
+
|
|
323
|
+
export { RemoteCodeEditorElement };
|
|
324
|
+
//# sourceMappingURL=RemoteCodeEditorElement.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RemoteCodeEditorElement.mjs","sources":["../../../src/auto-generated/RemoteCodeEditorElement.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\nimport { FlowRemoteElement } from \"@/lib/FlowRemoteElement\";\nimport type { CodeEditorProps as RemoteCodeEditorElementProps } from \"@mittwald/flow-react-components\";\nexport type { CodeEditorProps as RemoteCodeEditorElementProps } from \"@mittwald/flow-react-components\";\n\nexport class RemoteCodeEditorElement extends FlowRemoteElement<RemoteCodeEditorElementProps> {\n static override get remoteAttributes() {\n return [\"style\"];\n }\n\n static override get remoteProperties() {\n return {\n about: {},\n accessKey: {},\n \"aria-activedescendant\": {},\n \"aria-atomic\": {},\n \"aria-autocomplete\": {},\n \"aria-braillelabel\": {},\n \"aria-brailleroledescription\": {},\n \"aria-busy\": {},\n \"aria-checked\": {},\n \"aria-colcount\": {},\n \"aria-colindex\": {},\n \"aria-colindextext\": {},\n \"aria-colspan\": {},\n \"aria-controls\": {},\n \"aria-current\": {},\n \"aria-describedby\": {},\n \"aria-description\": {},\n \"aria-details\": {},\n \"aria-disabled\": {},\n \"aria-dropeffect\": {},\n \"aria-errormessage\": {},\n \"aria-expanded\": {},\n \"aria-flowto\": {},\n \"aria-grabbed\": {},\n \"aria-haspopup\": {},\n \"aria-hidden\": {},\n \"aria-invalid\": {},\n \"aria-keyshortcuts\": {},\n \"aria-label\": {},\n \"aria-labelledby\": {},\n \"aria-level\": {},\n \"aria-live\": {},\n \"aria-modal\": {},\n \"aria-multiline\": {},\n \"aria-multiselectable\": {},\n \"aria-orientation\": {},\n \"aria-owns\": {},\n \"aria-placeholder\": {},\n \"aria-posinset\": {},\n \"aria-pressed\": {},\n \"aria-readonly\": {},\n \"aria-relevant\": {},\n \"aria-required\": {},\n \"aria-roledescription\": {},\n \"aria-rowcount\": {},\n \"aria-rowindex\": {},\n \"aria-rowindextext\": {},\n \"aria-rowspan\": {},\n \"aria-selected\": {},\n \"aria-setsize\": {},\n \"aria-sort\": {},\n \"aria-valuemax\": {},\n \"aria-valuemin\": {},\n \"aria-valuenow\": {},\n \"aria-valuetext\": {},\n autoCapitalize: {},\n autoCorrect: {},\n autoFocus: {},\n autoSave: {},\n className: {},\n color: {},\n content: {},\n contentEditable: {},\n contextMenu: {},\n copyable: {},\n datatype: {},\n defaultChecked: {},\n defaultValue: {},\n dir: {},\n draggable: {},\n editable: {},\n enterKeyHint: {},\n exportparts: {},\n extensions: {},\n height: {},\n hidden: {},\n id: {},\n indentWithTab: {},\n inert: {},\n initialState: {},\n inlist: {},\n inputMode: {},\n is: {},\n isInvalid: {},\n isReadOnly: {},\n isRequired: {},\n itemID: {},\n itemProp: {},\n itemRef: {},\n itemScope: {},\n itemType: {},\n language: {},\n maxHeight: {},\n maxWidth: {},\n minHeight: {},\n minWidth: {},\n nonce: {},\n part: {},\n placeholder: {},\n popover: {},\n popoverTarget: {},\n popoverTargetAction: {},\n prefix: {},\n property: {},\n radioGroup: {},\n rel: {},\n resource: {},\n results: {},\n rev: {},\n role: {},\n root: {},\n security: {},\n selection: {},\n showActiveLineMarker: {},\n showCodeFolding: {},\n showCodeIndentationMakers: {},\n showLineNumbers: {},\n showLinterMarkers: {},\n slot: {},\n spellCheck: {},\n suppressContentEditableWarning: {},\n suppressHydrationWarning: {},\n tabIndex: {},\n title: {},\n translate: {},\n typeof: {},\n unselectable: {},\n validationBehavior: {},\n value: {},\n vocab: {},\n width: {},\n };\n }\n\n static override get remoteEvents() {\n return {\n abort: {},\n abortCapture: {},\n animationEnd: {},\n animationEndCapture: {},\n animationIteration: {},\n animationIterationCapture: {},\n animationStart: {},\n animationStartCapture: {},\n auxClick: {},\n auxClickCapture: {},\n beforeInput: {},\n beforeInputCapture: {},\n beforeToggle: {},\n blur: {},\n blurCapture: {},\n canPlay: {},\n canPlayCapture: {},\n canPlayThrough: {},\n canPlayThroughCapture: {},\n change: {},\n changeCapture: {},\n click: {},\n clickCapture: {},\n compositionEnd: {},\n compositionEndCapture: {},\n compositionStart: {},\n compositionStartCapture: {},\n compositionUpdate: {},\n compositionUpdateCapture: {},\n contextMenu: {},\n contextMenuCapture: {},\n copy: {},\n copyCapture: {},\n createEditor: {},\n cut: {},\n cutCapture: {},\n doubleClick: {},\n doubleClickCapture: {},\n drag: {},\n dragCapture: {},\n dragEnd: {},\n dragEndCapture: {},\n dragEnter: {},\n dragEnterCapture: {},\n dragExit: {},\n dragExitCapture: {},\n dragLeave: {},\n dragLeaveCapture: {},\n dragOver: {},\n dragOverCapture: {},\n dragStart: {},\n dragStartCapture: {},\n drop: {},\n dropCapture: {},\n durationChange: {},\n durationChangeCapture: {},\n emptied: {},\n emptiedCapture: {},\n encrypted: {},\n encryptedCapture: {},\n ended: {},\n endedCapture: {},\n error: {},\n errorCapture: {},\n focus: {},\n focusCapture: {},\n gotPointerCapture: {},\n gotPointerCaptureCapture: {},\n input: {},\n inputCapture: {},\n invalid: {},\n invalidCapture: {},\n keyDown: {},\n keyDownCapture: {},\n keyPress: {},\n keyPressCapture: {},\n keyUp: {},\n keyUpCapture: {},\n load: {},\n loadCapture: {},\n loadStart: {},\n loadStartCapture: {},\n loadedData: {},\n loadedDataCapture: {},\n loadedMetadata: {},\n loadedMetadataCapture: {},\n lostPointerCapture: {},\n lostPointerCaptureCapture: {},\n mouseDown: {},\n mouseDownCapture: {},\n mouseEnter: {},\n mouseLeave: {},\n mouseMove: {},\n mouseMoveCapture: {},\n mouseOut: {},\n mouseOutCapture: {},\n mouseOver: {},\n mouseOverCapture: {},\n mouseUp: {},\n mouseUpCapture: {},\n paste: {},\n pasteCapture: {},\n pause: {},\n pauseCapture: {},\n play: {},\n playCapture: {},\n playing: {},\n playingCapture: {},\n pointerCancel: {},\n pointerCancelCapture: {},\n pointerDown: {},\n pointerDownCapture: {},\n pointerEnter: {},\n pointerLeave: {},\n pointerMove: {},\n pointerMoveCapture: {},\n pointerOut: {},\n pointerOutCapture: {},\n pointerOver: {},\n pointerOverCapture: {},\n pointerUp: {},\n pointerUpCapture: {},\n progress: {},\n progressCapture: {},\n rateChange: {},\n rateChangeCapture: {},\n reset: {},\n resetCapture: {},\n scroll: {},\n scrollCapture: {},\n scrollEnd: {},\n scrollEndCapture: {},\n seeked: {},\n seekedCapture: {},\n seeking: {},\n seekingCapture: {},\n select: {},\n selectCapture: {},\n stalled: {},\n stalledCapture: {},\n statistics: {},\n submit: {},\n submitCapture: {},\n suspend: {},\n suspendCapture: {},\n timeUpdate: {},\n timeUpdateCapture: {},\n toggle: {},\n touchCancel: {},\n touchCancelCapture: {},\n touchEnd: {},\n touchEndCapture: {},\n touchMove: {},\n touchMoveCapture: {},\n touchStart: {},\n touchStartCapture: {},\n transitionCancel: {},\n transitionCancelCapture: {},\n transitionEnd: {},\n transitionEndCapture: {},\n transitionRun: {},\n transitionRunCapture: {},\n transitionStart: {},\n transitionStartCapture: {},\n update: {},\n volumeChange: {},\n volumeChangeCapture: {},\n waiting: {},\n waitingCapture: {},\n wheel: {},\n wheelCapture: {},\n };\n }\n\n static override get remoteSlots() {\n return [];\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n \"flr-code-editor\": InstanceType<typeof RemoteCodeEditorElement>;\n }\n}\n\ncustomElements.define(\"flr-code-editor\", RemoteCodeEditorElement);\n"],"names":[],"mappings":"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"}
|
package/dist/js/index.mjs
CHANGED
|
@@ -24,6 +24,7 @@ export { RemoteCheckboxButtonElement } from './auto-generated/RemoteCheckboxButt
|
|
|
24
24
|
export { RemoteCheckboxGroupElement } from './auto-generated/RemoteCheckboxGroupElement.mjs';
|
|
25
25
|
export { RemoteClearPropsContextElement } from './auto-generated/RemoteClearPropsContextElement.mjs';
|
|
26
26
|
export { RemoteCodeBlockElement } from './auto-generated/RemoteCodeBlockElement.mjs';
|
|
27
|
+
export { RemoteCodeEditorElement } from './auto-generated/RemoteCodeEditorElement.mjs';
|
|
27
28
|
export { RemoteColorElement } from './auto-generated/RemoteColorElement.mjs';
|
|
28
29
|
export { RemoteColumnLayoutElement } from './auto-generated/RemoteColumnLayoutElement.mjs';
|
|
29
30
|
export { RemoteComboBoxElement } from './auto-generated/RemoteComboBoxElement.mjs';
|
package/dist/js/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -4,25 +4,11 @@ export type { CodeBlockProps as RemoteCodeBlockElementProps } from '@mittwald/fl
|
|
|
4
4
|
export declare class RemoteCodeBlockElement extends FlowRemoteElement<RemoteCodeBlockElementProps> {
|
|
5
5
|
static get remoteAttributes(): string[];
|
|
6
6
|
static get remoteProperties(): {
|
|
7
|
-
CodeTag: {};
|
|
8
|
-
PreTag: {};
|
|
9
7
|
className: {};
|
|
10
8
|
code: {};
|
|
11
|
-
codeTagProps: {};
|
|
12
|
-
color: {};
|
|
13
9
|
copyable: {};
|
|
14
|
-
customStyle: {};
|
|
15
10
|
language: {};
|
|
16
|
-
lineNumberContainerStyle: {};
|
|
17
|
-
lineNumberStyle: {};
|
|
18
|
-
lineProps: {};
|
|
19
|
-
renderer: {};
|
|
20
|
-
showInlineLineNumbers: {};
|
|
21
11
|
showLineNumbers: {};
|
|
22
|
-
startingLineNumber: {};
|
|
23
|
-
useInlineStyles: {};
|
|
24
|
-
wrapLines: {};
|
|
25
|
-
wrapLongLines: {};
|
|
26
12
|
};
|
|
27
13
|
static get remoteEvents(): {};
|
|
28
14
|
static get remoteSlots(): never[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RemoteCodeBlockElement.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/RemoteCodeBlockElement.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,KAAK,EAAE,cAAc,IAAI,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AACrG,YAAY,EAAE,cAAc,IAAI,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAErG,qBAAa,sBAAuB,SAAQ,iBAAiB,CAAC,2BAA2B,CAAC;IACxF,WAAoB,gBAAgB,aAEnC;IAED,WAAoB,gBAAgB
|
|
1
|
+
{"version":3,"file":"RemoteCodeBlockElement.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/RemoteCodeBlockElement.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,KAAK,EAAE,cAAc,IAAI,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AACrG,YAAY,EAAE,cAAc,IAAI,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAErG,qBAAa,sBAAuB,SAAQ,iBAAiB,CAAC,2BAA2B,CAAC;IACxF,WAAoB,gBAAgB,aAEnC;IAED,WAAoB,gBAAgB;;;;;;MAQnC;IAED,WAAoB,YAAY,OAE/B;IAED,WAAoB,WAAW,YAE9B;CACF;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,gBAAgB,EAAE,YAAY,CAAC,OAAO,sBAAsB,CAAC,CAAC;KAC/D;CACF"}
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
import { FlowRemoteElement } from '../lib/FlowRemoteElement';
|
|
2
|
+
import { CodeEditorProps as RemoteCodeEditorElementProps } from '@mittwald/flow-react-components';
|
|
3
|
+
export type { CodeEditorProps as RemoteCodeEditorElementProps } from '@mittwald/flow-react-components';
|
|
4
|
+
export declare class RemoteCodeEditorElement extends FlowRemoteElement<RemoteCodeEditorElementProps> {
|
|
5
|
+
static get remoteAttributes(): string[];
|
|
6
|
+
static get remoteProperties(): {
|
|
7
|
+
about: {};
|
|
8
|
+
accessKey: {};
|
|
9
|
+
"aria-activedescendant": {};
|
|
10
|
+
"aria-atomic": {};
|
|
11
|
+
"aria-autocomplete": {};
|
|
12
|
+
"aria-braillelabel": {};
|
|
13
|
+
"aria-brailleroledescription": {};
|
|
14
|
+
"aria-busy": {};
|
|
15
|
+
"aria-checked": {};
|
|
16
|
+
"aria-colcount": {};
|
|
17
|
+
"aria-colindex": {};
|
|
18
|
+
"aria-colindextext": {};
|
|
19
|
+
"aria-colspan": {};
|
|
20
|
+
"aria-controls": {};
|
|
21
|
+
"aria-current": {};
|
|
22
|
+
"aria-describedby": {};
|
|
23
|
+
"aria-description": {};
|
|
24
|
+
"aria-details": {};
|
|
25
|
+
"aria-disabled": {};
|
|
26
|
+
"aria-dropeffect": {};
|
|
27
|
+
"aria-errormessage": {};
|
|
28
|
+
"aria-expanded": {};
|
|
29
|
+
"aria-flowto": {};
|
|
30
|
+
"aria-grabbed": {};
|
|
31
|
+
"aria-haspopup": {};
|
|
32
|
+
"aria-hidden": {};
|
|
33
|
+
"aria-invalid": {};
|
|
34
|
+
"aria-keyshortcuts": {};
|
|
35
|
+
"aria-label": {};
|
|
36
|
+
"aria-labelledby": {};
|
|
37
|
+
"aria-level": {};
|
|
38
|
+
"aria-live": {};
|
|
39
|
+
"aria-modal": {};
|
|
40
|
+
"aria-multiline": {};
|
|
41
|
+
"aria-multiselectable": {};
|
|
42
|
+
"aria-orientation": {};
|
|
43
|
+
"aria-owns": {};
|
|
44
|
+
"aria-placeholder": {};
|
|
45
|
+
"aria-posinset": {};
|
|
46
|
+
"aria-pressed": {};
|
|
47
|
+
"aria-readonly": {};
|
|
48
|
+
"aria-relevant": {};
|
|
49
|
+
"aria-required": {};
|
|
50
|
+
"aria-roledescription": {};
|
|
51
|
+
"aria-rowcount": {};
|
|
52
|
+
"aria-rowindex": {};
|
|
53
|
+
"aria-rowindextext": {};
|
|
54
|
+
"aria-rowspan": {};
|
|
55
|
+
"aria-selected": {};
|
|
56
|
+
"aria-setsize": {};
|
|
57
|
+
"aria-sort": {};
|
|
58
|
+
"aria-valuemax": {};
|
|
59
|
+
"aria-valuemin": {};
|
|
60
|
+
"aria-valuenow": {};
|
|
61
|
+
"aria-valuetext": {};
|
|
62
|
+
autoCapitalize: {};
|
|
63
|
+
autoCorrect: {};
|
|
64
|
+
autoFocus: {};
|
|
65
|
+
autoSave: {};
|
|
66
|
+
className: {};
|
|
67
|
+
color: {};
|
|
68
|
+
content: {};
|
|
69
|
+
contentEditable: {};
|
|
70
|
+
contextMenu: {};
|
|
71
|
+
copyable: {};
|
|
72
|
+
datatype: {};
|
|
73
|
+
defaultChecked: {};
|
|
74
|
+
defaultValue: {};
|
|
75
|
+
dir: {};
|
|
76
|
+
draggable: {};
|
|
77
|
+
editable: {};
|
|
78
|
+
enterKeyHint: {};
|
|
79
|
+
exportparts: {};
|
|
80
|
+
extensions: {};
|
|
81
|
+
height: {};
|
|
82
|
+
hidden: {};
|
|
83
|
+
id: {};
|
|
84
|
+
indentWithTab: {};
|
|
85
|
+
inert: {};
|
|
86
|
+
initialState: {};
|
|
87
|
+
inlist: {};
|
|
88
|
+
inputMode: {};
|
|
89
|
+
is: {};
|
|
90
|
+
isInvalid: {};
|
|
91
|
+
isReadOnly: {};
|
|
92
|
+
isRequired: {};
|
|
93
|
+
itemID: {};
|
|
94
|
+
itemProp: {};
|
|
95
|
+
itemRef: {};
|
|
96
|
+
itemScope: {};
|
|
97
|
+
itemType: {};
|
|
98
|
+
language: {};
|
|
99
|
+
maxHeight: {};
|
|
100
|
+
maxWidth: {};
|
|
101
|
+
minHeight: {};
|
|
102
|
+
minWidth: {};
|
|
103
|
+
nonce: {};
|
|
104
|
+
part: {};
|
|
105
|
+
placeholder: {};
|
|
106
|
+
popover: {};
|
|
107
|
+
popoverTarget: {};
|
|
108
|
+
popoverTargetAction: {};
|
|
109
|
+
prefix: {};
|
|
110
|
+
property: {};
|
|
111
|
+
radioGroup: {};
|
|
112
|
+
rel: {};
|
|
113
|
+
resource: {};
|
|
114
|
+
results: {};
|
|
115
|
+
rev: {};
|
|
116
|
+
role: {};
|
|
117
|
+
root: {};
|
|
118
|
+
security: {};
|
|
119
|
+
selection: {};
|
|
120
|
+
showActiveLineMarker: {};
|
|
121
|
+
showCodeFolding: {};
|
|
122
|
+
showCodeIndentationMakers: {};
|
|
123
|
+
showLineNumbers: {};
|
|
124
|
+
showLinterMarkers: {};
|
|
125
|
+
slot: {};
|
|
126
|
+
spellCheck: {};
|
|
127
|
+
suppressContentEditableWarning: {};
|
|
128
|
+
suppressHydrationWarning: {};
|
|
129
|
+
tabIndex: {};
|
|
130
|
+
title: {};
|
|
131
|
+
translate: {};
|
|
132
|
+
typeof: {};
|
|
133
|
+
unselectable: {};
|
|
134
|
+
validationBehavior: {};
|
|
135
|
+
value: {};
|
|
136
|
+
vocab: {};
|
|
137
|
+
width: {};
|
|
138
|
+
};
|
|
139
|
+
static get remoteEvents(): {
|
|
140
|
+
abort: {};
|
|
141
|
+
abortCapture: {};
|
|
142
|
+
animationEnd: {};
|
|
143
|
+
animationEndCapture: {};
|
|
144
|
+
animationIteration: {};
|
|
145
|
+
animationIterationCapture: {};
|
|
146
|
+
animationStart: {};
|
|
147
|
+
animationStartCapture: {};
|
|
148
|
+
auxClick: {};
|
|
149
|
+
auxClickCapture: {};
|
|
150
|
+
beforeInput: {};
|
|
151
|
+
beforeInputCapture: {};
|
|
152
|
+
beforeToggle: {};
|
|
153
|
+
blur: {};
|
|
154
|
+
blurCapture: {};
|
|
155
|
+
canPlay: {};
|
|
156
|
+
canPlayCapture: {};
|
|
157
|
+
canPlayThrough: {};
|
|
158
|
+
canPlayThroughCapture: {};
|
|
159
|
+
change: {};
|
|
160
|
+
changeCapture: {};
|
|
161
|
+
click: {};
|
|
162
|
+
clickCapture: {};
|
|
163
|
+
compositionEnd: {};
|
|
164
|
+
compositionEndCapture: {};
|
|
165
|
+
compositionStart: {};
|
|
166
|
+
compositionStartCapture: {};
|
|
167
|
+
compositionUpdate: {};
|
|
168
|
+
compositionUpdateCapture: {};
|
|
169
|
+
contextMenu: {};
|
|
170
|
+
contextMenuCapture: {};
|
|
171
|
+
copy: {};
|
|
172
|
+
copyCapture: {};
|
|
173
|
+
createEditor: {};
|
|
174
|
+
cut: {};
|
|
175
|
+
cutCapture: {};
|
|
176
|
+
doubleClick: {};
|
|
177
|
+
doubleClickCapture: {};
|
|
178
|
+
drag: {};
|
|
179
|
+
dragCapture: {};
|
|
180
|
+
dragEnd: {};
|
|
181
|
+
dragEndCapture: {};
|
|
182
|
+
dragEnter: {};
|
|
183
|
+
dragEnterCapture: {};
|
|
184
|
+
dragExit: {};
|
|
185
|
+
dragExitCapture: {};
|
|
186
|
+
dragLeave: {};
|
|
187
|
+
dragLeaveCapture: {};
|
|
188
|
+
dragOver: {};
|
|
189
|
+
dragOverCapture: {};
|
|
190
|
+
dragStart: {};
|
|
191
|
+
dragStartCapture: {};
|
|
192
|
+
drop: {};
|
|
193
|
+
dropCapture: {};
|
|
194
|
+
durationChange: {};
|
|
195
|
+
durationChangeCapture: {};
|
|
196
|
+
emptied: {};
|
|
197
|
+
emptiedCapture: {};
|
|
198
|
+
encrypted: {};
|
|
199
|
+
encryptedCapture: {};
|
|
200
|
+
ended: {};
|
|
201
|
+
endedCapture: {};
|
|
202
|
+
error: {};
|
|
203
|
+
errorCapture: {};
|
|
204
|
+
focus: {};
|
|
205
|
+
focusCapture: {};
|
|
206
|
+
gotPointerCapture: {};
|
|
207
|
+
gotPointerCaptureCapture: {};
|
|
208
|
+
input: {};
|
|
209
|
+
inputCapture: {};
|
|
210
|
+
invalid: {};
|
|
211
|
+
invalidCapture: {};
|
|
212
|
+
keyDown: {};
|
|
213
|
+
keyDownCapture: {};
|
|
214
|
+
keyPress: {};
|
|
215
|
+
keyPressCapture: {};
|
|
216
|
+
keyUp: {};
|
|
217
|
+
keyUpCapture: {};
|
|
218
|
+
load: {};
|
|
219
|
+
loadCapture: {};
|
|
220
|
+
loadStart: {};
|
|
221
|
+
loadStartCapture: {};
|
|
222
|
+
loadedData: {};
|
|
223
|
+
loadedDataCapture: {};
|
|
224
|
+
loadedMetadata: {};
|
|
225
|
+
loadedMetadataCapture: {};
|
|
226
|
+
lostPointerCapture: {};
|
|
227
|
+
lostPointerCaptureCapture: {};
|
|
228
|
+
mouseDown: {};
|
|
229
|
+
mouseDownCapture: {};
|
|
230
|
+
mouseEnter: {};
|
|
231
|
+
mouseLeave: {};
|
|
232
|
+
mouseMove: {};
|
|
233
|
+
mouseMoveCapture: {};
|
|
234
|
+
mouseOut: {};
|
|
235
|
+
mouseOutCapture: {};
|
|
236
|
+
mouseOver: {};
|
|
237
|
+
mouseOverCapture: {};
|
|
238
|
+
mouseUp: {};
|
|
239
|
+
mouseUpCapture: {};
|
|
240
|
+
paste: {};
|
|
241
|
+
pasteCapture: {};
|
|
242
|
+
pause: {};
|
|
243
|
+
pauseCapture: {};
|
|
244
|
+
play: {};
|
|
245
|
+
playCapture: {};
|
|
246
|
+
playing: {};
|
|
247
|
+
playingCapture: {};
|
|
248
|
+
pointerCancel: {};
|
|
249
|
+
pointerCancelCapture: {};
|
|
250
|
+
pointerDown: {};
|
|
251
|
+
pointerDownCapture: {};
|
|
252
|
+
pointerEnter: {};
|
|
253
|
+
pointerLeave: {};
|
|
254
|
+
pointerMove: {};
|
|
255
|
+
pointerMoveCapture: {};
|
|
256
|
+
pointerOut: {};
|
|
257
|
+
pointerOutCapture: {};
|
|
258
|
+
pointerOver: {};
|
|
259
|
+
pointerOverCapture: {};
|
|
260
|
+
pointerUp: {};
|
|
261
|
+
pointerUpCapture: {};
|
|
262
|
+
progress: {};
|
|
263
|
+
progressCapture: {};
|
|
264
|
+
rateChange: {};
|
|
265
|
+
rateChangeCapture: {};
|
|
266
|
+
reset: {};
|
|
267
|
+
resetCapture: {};
|
|
268
|
+
scroll: {};
|
|
269
|
+
scrollCapture: {};
|
|
270
|
+
scrollEnd: {};
|
|
271
|
+
scrollEndCapture: {};
|
|
272
|
+
seeked: {};
|
|
273
|
+
seekedCapture: {};
|
|
274
|
+
seeking: {};
|
|
275
|
+
seekingCapture: {};
|
|
276
|
+
select: {};
|
|
277
|
+
selectCapture: {};
|
|
278
|
+
stalled: {};
|
|
279
|
+
stalledCapture: {};
|
|
280
|
+
statistics: {};
|
|
281
|
+
submit: {};
|
|
282
|
+
submitCapture: {};
|
|
283
|
+
suspend: {};
|
|
284
|
+
suspendCapture: {};
|
|
285
|
+
timeUpdate: {};
|
|
286
|
+
timeUpdateCapture: {};
|
|
287
|
+
toggle: {};
|
|
288
|
+
touchCancel: {};
|
|
289
|
+
touchCancelCapture: {};
|
|
290
|
+
touchEnd: {};
|
|
291
|
+
touchEndCapture: {};
|
|
292
|
+
touchMove: {};
|
|
293
|
+
touchMoveCapture: {};
|
|
294
|
+
touchStart: {};
|
|
295
|
+
touchStartCapture: {};
|
|
296
|
+
transitionCancel: {};
|
|
297
|
+
transitionCancelCapture: {};
|
|
298
|
+
transitionEnd: {};
|
|
299
|
+
transitionEndCapture: {};
|
|
300
|
+
transitionRun: {};
|
|
301
|
+
transitionRunCapture: {};
|
|
302
|
+
transitionStart: {};
|
|
303
|
+
transitionStartCapture: {};
|
|
304
|
+
update: {};
|
|
305
|
+
volumeChange: {};
|
|
306
|
+
volumeChangeCapture: {};
|
|
307
|
+
waiting: {};
|
|
308
|
+
waitingCapture: {};
|
|
309
|
+
wheel: {};
|
|
310
|
+
wheelCapture: {};
|
|
311
|
+
};
|
|
312
|
+
static get remoteSlots(): never[];
|
|
313
|
+
}
|
|
314
|
+
declare global {
|
|
315
|
+
interface HTMLElementTagNameMap {
|
|
316
|
+
"flr-code-editor": InstanceType<typeof RemoteCodeEditorElement>;
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
//# sourceMappingURL=RemoteCodeEditorElement.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RemoteCodeEditorElement.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/RemoteCodeEditorElement.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,KAAK,EAAE,eAAe,IAAI,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AACvG,YAAY,EAAE,eAAe,IAAI,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAEvG,qBAAa,uBAAwB,SAAQ,iBAAiB,CAAC,4BAA4B,CAAC;IAC1F,WAAoB,gBAAgB,aAEnC;IAED,WAAoB,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAsInC;IAED,WAAoB,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA8K/B;IAED,WAAoB,WAAW,YAE9B;CACF;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,iBAAiB,EAAE,YAAY,CAAC,OAAO,uBAAuB,CAAC,CAAC;KACjE;CACF"}
|
|
@@ -24,6 +24,7 @@ export * from './RemoteCheckboxButtonElement';
|
|
|
24
24
|
export * from './RemoteCheckboxGroupElement';
|
|
25
25
|
export * from './RemoteClearPropsContextElement';
|
|
26
26
|
export * from './RemoteCodeBlockElement';
|
|
27
|
+
export * from './RemoteCodeEditorElement';
|
|
27
28
|
export * from './RemoteColorElement';
|
|
28
29
|
export * from './RemoteColumnLayoutElement';
|
|
29
30
|
export * from './RemoteComboBoxElement';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/flow-remote-elements",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.750",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Flow compatible remote elements that can be used in a remote environment",
|
|
6
6
|
"homepage": "https://mittwald.github.io/flow",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"test:compile": "tsc --noEmit"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@mittwald/flow-remote-core": "0.2.0-alpha.
|
|
30
|
+
"@mittwald/flow-remote-core": "0.2.0-alpha.750",
|
|
31
31
|
"remeda": "^2.33.4",
|
|
32
32
|
"type-fest": "^5.4.3"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@mittwald/flow-react-components": "0.2.0-alpha.
|
|
35
|
+
"@mittwald/flow-react-components": "0.2.0-alpha.750",
|
|
36
36
|
"@mittwald/typescript-config": "",
|
|
37
37
|
"@types/node": "^24.10.9",
|
|
38
38
|
"nx": "^22.4.4",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"vite-plugin-externalize-deps": "^0.10.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@mittwald/flow-react-components": "0.2.0-alpha.
|
|
49
|
+
"@mittwald/flow-react-components": "0.2.0-alpha.749"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "2df990925da8edceaacb9c5a1ca6ca829f81a725"
|
|
52
52
|
}
|